diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 9c381b9c..00000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.github/README.md b/.github/README.md index e2d39ff3..f414e014 100644 --- a/.github/README.md +++ b/.github/README.md @@ -55,7 +55,7 @@ To download from master (*not recommended*): ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev +$ npm install --omit=dev --legacy-peer-deps ``` #### Or: Update existing dependencies ``` @@ -63,7 +63,7 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev +$ npm install --omit=dev --legacy-peer-deps ``` #### Error on npm install @@ -95,7 +95,7 @@ Example RTL-Config.json: "index": 1, "lnNode": "LND Testnet", "lnImplementation": "LND", - "Authentication": { + "authentication": { "macaroonPath": "", "runePath": "", "lnApiPassword": "", @@ -103,7 +103,7 @@ Example RTL-Config.json: "boltzMacaroonPath": "", "configPath": "", }, - "Settings": { + "settings": { "userPersona": "OPERATOR", "themeMode": "DAY", "themeColor": "PURPLE", @@ -114,7 +114,8 @@ Example RTL-Config.json: "unannouncedChannels": false, "lnServerUrl": "", "swapServerUrl": "", - "boltzServerUrl": "" + "boltzServerUrl": "", + "blockExplorerUrl": "" } } ] diff --git a/.github/docs/Application_configurations.md b/.github/docs/Application_configurations.md index 7f73751b..2e89e958 100644 --- a/.github/docs/Application_configurations.md +++ b/.github/docs/Application_configurations.md @@ -20,7 +20,7 @@ parameters have `default` values for initial setup and can be updated after RTL "index": , "lnNode": "", "lnImplementation": "", - "Authentication": { + "authentication": { "macaroonPath": "", "runePath": "", "lnApiPassword": "" @@ -28,7 +28,7 @@ parameters have `default` values for initial setup and can be updated after RTL "boltzMacaroonPath": "", "configPath": "", }, - "Settings": { + "settings": { "userPersona": "", "themeMode": "", "themeColor": "", @@ -40,7 +40,8 @@ parameters have `default` values for initial setup and can be updated after RTL "unannouncedChannels": "lnServerUrl": " "swapServerUrl": "", - "boltzServerUrl": "" + "boltzServerUrl": "", + "blockExplorerUrl": "" } } ] diff --git a/.github/docs/Core_lightning_setup.md b/.github/docs/Core_lightning_setup.md index cf25af1c..46baeff3 100644 --- a/.github/docs/Core_lightning_setup.md +++ b/.github/docs/Core_lightning_setup.md @@ -33,7 +33,7 @@ To download from master (*not recommended*): ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev +$ npm install --omit=dev --legacy-peer-deps ``` #### Or: Update existing build @@ -42,7 +42,7 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev +$ npm install --omit=dev --legacy-peer-deps ``` #### Error on npm install @@ -77,11 +77,11 @@ Ensure that the follow values are correct per your config: "index": 1, "lnNode": "Core Lightning Testnet # 1", "lnImplementation": "CLN", - "Authentication": { + "authentication": { "runePath": "", "configPath": "" }, - "Settings": { + "settings": { "userPersona": "OPERATOR", "themeMode": "DAY", "themeColor": "PURPLE", @@ -89,7 +89,8 @@ Ensure that the follow values are correct per your config: "logLevel": "INFO", "fiatConversion": false, "unannouncedChannels": false, - "lnServerUrl": "https://:3001" + "lnServerUrl": "https://:3001", + "blockExplorerUrl": "" } } ] diff --git a/.github/docs/Eclair_setup.md b/.github/docs/Eclair_setup.md index a1208436..6b6ae8a6 100644 --- a/.github/docs/Eclair_setup.md +++ b/.github/docs/Eclair_setup.md @@ -28,7 +28,7 @@ To download from master (*not recommended*) follow the below instructions: ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev +$ npm install --omit=dev --legacy-peer-deps ``` #### Or: Update existing build ``` @@ -36,7 +36,7 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev +$ npm install --omit=dev --legacy-peer-deps ``` #### Error on npm install @@ -71,11 +71,11 @@ Ensure that the follow values are correct per your config: "index": 1, "lnNode": "Eclair Testnet # 1", "lnImplementation": "ECL", - "Authentication": { + "authentication": { "configPath": "", "lnApiPassword": "", }, - "Settings": { + "settings": { "userPersona": "OPERATOR", "themeMode": "DAY", "themeColor": "PURPLE", @@ -83,7 +83,8 @@ Ensure that the follow values are correct per your config: "logLevel": "INFO", "fiatConversion": false, "unannouncedChannels": false, - "lnServerUrl": "http://:port" + "lnServerUrl": "http://:port", + "blockExplorerUrl": "" } } ] diff --git a/.github/docs/RTL_setups.md b/.github/docs/RTL_setups.md index fe3de1a1..f3b48bcc 100644 --- a/.github/docs/RTL_setups.md +++ b/.github/docs/RTL_setups.md @@ -26,13 +26,13 @@ If your running RTL and LND on different devices on your local LAN, certain conf "index": 1, "lnNode": "LND Testnet", "lnImplementation": "LND", - "Authentication": { + "authentication": { "macaroonPath": "", "swapMacaroonPath": "", "boltzMacaroonPath": "", "configPath": "" }, - "Settings": { + "settings": { "userPersona": "OPERATOR", "themeMode": "DAY", "themeColor": "PURPLE", @@ -43,7 +43,8 @@ If your running RTL and LND on different devices on your local LAN, certain conf "unannouncedChannels": false, "lnServerUrl": ":8080; e.g. https://192.168.0.1:8080>", "swapServerUrl": ":8081>", - "boltzServerUrl": ":9003>" + "boltzServerUrl": ":9003>", + "blockExplorerUrl": "" } } ] diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6bea0d69..637285cf 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -33,7 +33,7 @@ jobs: - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --legacy-peer-deps lint: name: Lint @@ -57,7 +57,7 @@ jobs: - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --legacy-peer-deps - name: Lint Scripts run: npm run lint @@ -89,7 +89,7 @@ jobs: - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --legacy-peer-deps - name: Run tests run: npm run test diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30dc5513..e63809aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' - run: npm ci + run: npm ci --legacy-peer-deps - name: Cache build frontend uses: actions/cache@v2 diff --git a/Sample-RTL-Config.json b/Sample-RTL-Config.json index e2315653..dc4e7164 100644 --- a/Sample-RTL-Config.json +++ b/Sample-RTL-Config.json @@ -13,13 +13,13 @@ "index": 1, "lnNode": "Node 1", "lnImplementation": "LND", - "Authentication": { + "authentication": { "macaroonPath": "C:\\Users\\xyz\\AppData\\Local\\Lnd\\data\\chain\\bitcoin\\mainnet", "configPath": "C:\\Users\\xyz\\AppData\\Local\\Lnd\\lnd.conf", "swapMacaroonPath": "C:\\Users\\xyz\\AppData\\Local\\Loop\\mainnet", "boltzMacaroonPath": "C:\\Users\\xyz\\AppData\\Boltz\\mainnet" }, - "Settings": { + "settings": { "userPersona": "MERCHANT", "themeMode": "DAY", "themeColor": "PURPLE", @@ -29,7 +29,8 @@ "swapServerUrl": "https://127.0.0.1:8081", "boltzServerUrl": "https://127.0.0.1:9003", "fiatConversion": false, - "unannouncedChannels": false + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" } } ] diff --git a/backend/controllers/cln/channels.js b/backend/controllers/cln/channels.js index 78600fe2..15d7ae70 100644 --- a/backend/controllers/cln/channels.js +++ b/backend/controllers/cln/channels.js @@ -11,7 +11,7 @@ export const listPeerChannels = (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/listpeerchannels'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeerchannels'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Peer Channels List Received', data: body.channels }); return Promise.all(body.channels?.map((channel) => { @@ -33,7 +33,7 @@ export const openChannel = (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/fundchannel'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/fundchannel'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Open Channel Options', data: options.body }); request.post(options).then((body) => { @@ -50,7 +50,7 @@ export const setChannelFee = (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/setchannel'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/setchannel'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Update Channel Policy Options', data: options.body }); request.post(options).then((body) => { @@ -68,7 +68,7 @@ export const closeChannel = (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/close'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/close'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel', data: options.url }); request.post(options).then((body) => { @@ -80,16 +80,17 @@ export const closeChannel = (req, res, next) => { }); }; export const listForwards = (req, res, next) => { + const { status } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Channel List Forwards..' }); 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/listforwards'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listforwards'; options.body = req.body; request.post(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Forwarding History Received For Status ' + req.body.status, data: body }); - body.forwards = !body.forwards ? [] : (req.body.status === 'failed' || req.body.status === 'local_failed') ? body.forwards.slice(Math.max(0, body.forwards.length - 1000), Math.max(1000, body.forwards.length)).reverse() : body.forwards.reverse(); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Forwarding History Received For Status ' + status, data: body }); + body.forwards = !body.forwards ? [] : (status === 'failed' || status === 'local_failed') ? body.forwards.slice(Math.max(0, body.forwards.length - 1000), Math.max(1000, body.forwards.length)).reverse() : body.forwards.reverse(); res.status(200).json(body.forwards); }).catch((errRes) => { const err = common.handleError(errRes, 'Channels', 'Forwarding History Error', req.session.selectedNode); @@ -102,7 +103,7 @@ export const funderUpdatePolicy = (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/funderupdate'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/funderupdate'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Funder Update Body', data: options.body }); request.post(options).then((body) => { diff --git a/backend/controllers/cln/fees.js b/backend/controllers/cln/fees.js deleted file mode 100644 index d462f54e..00000000 --- a/backend/controllers/cln/fees.js +++ /dev/null @@ -1,23 +0,0 @@ -import request from 'request-promise'; -import { Logger } from '../../utils/logger.js'; -import { Common } from '../../utils/common.js'; -let options = null; -const logger = Logger; -const common = Common; -export const getFees = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Getting Fees..' }); - 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/getinfo'; - request.post(options).then((body) => { - const versionCompatible = common.isVersionCompatible(req.session.selectedNode.ln_version, '23.02'); - const feeData = { feeCollected: ((versionCompatible ? body.fees_collected_msat : body.msatoshi_fees_collected) || 0) }; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Fee Received', data: feeData }); - res.status(200).json(feeData); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Fees', 'Get Fees Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); -}; diff --git a/backend/controllers/cln/getInfo.js b/backend/controllers/cln/getInfo.js index 486a403f..9b917173 100644 --- a/backend/controllers/cln/getInfo.js +++ b/backend/controllers/cln/getInfo.js @@ -16,8 +16,8 @@ export const getInfo = (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/getinfo'; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.ln_node }); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/getinfo'; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.lnNode }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Calling Info from Core Lightning server url ' + options.url }); if (!options.headers || !options.headers.rune) { const errMsg = 'Core lightning get info failed due to missing rune!'; @@ -48,7 +48,7 @@ export const getInfo = (req, res, next) => { body.uris.push(body.id + '@' + addr.address + ':' + addr.port); }); } - req.session.selectedNode.ln_version = body.version || ''; + req.session.selectedNode.lnVersion = body.version || ''; req.session.selectedNode.api_version = body.api_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); diff --git a/backend/controllers/cln/invoices.js b/backend/controllers/cln/invoices.js index d7fdf280..2f26a949 100644 --- a/backend/controllers/cln/invoices.js +++ b/backend/controllers/cln/invoices.js @@ -10,7 +10,7 @@ export const deleteExpiredInvoice = (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/delexpiredinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/delexpiredinvoice'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoices Deleted', data: body }); @@ -26,7 +26,7 @@ export const listInvoices = (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/listinvoices'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listinvoices'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List URL', data: options.url }); request.post(options).then((body) => { @@ -43,7 +43,7 @@ export const addInvoice = (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/invoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoice'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Created', data: body }); diff --git a/backend/controllers/cln/network.js b/backend/controllers/cln/network.js index d4716995..81c72d29 100644 --- a/backend/controllers/cln/network.js +++ b/backend/controllers/cln/network.js @@ -10,7 +10,7 @@ export const getRoute = (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/getroute'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/getroute'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Routes Received', data: body }); @@ -29,7 +29,7 @@ export const listChannels = (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/listchannels'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listchannels'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Channel Lookup Finished', data: body }); @@ -40,15 +40,16 @@ export const listChannels = (req, res, next) => { }); }; export const feeRates = (req, res, next) => { + const { style } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Fee Rates..' }); 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/feerates'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/feerates'; options.body = req.body; request.post(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Fee Rates Received for ' + req.body.style, data: body }); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Fee Rates Received for ' + style, data: body }); res.status(200).json(body); }).catch((errRes) => { const err = common.handleError(errRes, 'Network', 'Fee Rates Error', req.session.selectedNode); @@ -56,14 +57,14 @@ export const feeRates = (req, res, next) => { }); }; export const listNodes = (req, res, next) => { + const filter_liquidity_ads = !!req.body.liquidity_ads; + delete req.body.liquidity_ads; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'List Nodes..' }); 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/listnodes'; - const filter_liquidity_ads = !!req.body.liquidity_ads; - delete req.body.liquidity_ads; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listnodes'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Network', msg: 'List Nodes URL' + options.url }); request.post(options).then((body) => { @@ -79,7 +80,7 @@ export const listNodes = (req, res, next) => { }); }; export const getAlias = (selNode, peer, id) => { - options.url = selNode.ln_server_url + '/v1/listnodes'; + options.url = selNode.settings.lnServerUrl + '/v1/listnodes'; if (!peer[id]) { logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Network', msg: 'Empty Peer ID' }); peer.alias = ''; diff --git a/backend/controllers/cln/offers.js b/backend/controllers/cln/offers.js index f6fd3c10..f427d538 100644 --- a/backend/controllers/cln/offers.js +++ b/backend/controllers/cln/offers.js @@ -18,10 +18,11 @@ export const listOfferBookmarks = (req, res, next) => { }); }; export const deleteOfferBookmark = (req, res, next) => { + const { offer_str } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Deleting Offer Bookmark..' }); - databaseService.remove(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, req.body.offer_str).then((deleteRes) => { + databaseService.remove(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, offer_str).then((deleteRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Bookmark Deleted', data: deleteRes }); - res.status(204).json(req.body.offer_str); + res.status(204).json(offer_str); }).catch((errRes) => { const err = common.handleError(errRes, 'Offers', 'Offer Bookmark Delete Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); @@ -33,7 +34,7 @@ export const listOffers = (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/listoffers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listoffers'; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Offers', msg: 'Offers List URL', data: options.url }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offers List Received', data: body }); @@ -49,7 +50,7 @@ export const createOffer = (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/offer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/offer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Created', data: body }); @@ -65,7 +66,7 @@ export const fetchOfferInvoice = (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/fetchinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/fetchinvoice'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Offers', msg: 'Offer Invoice Body', data: options.body }); request.post(options).then((body) => { @@ -82,7 +83,7 @@ export const disableOffer = (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/disableOffer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableOffer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Disabled', data: body }); diff --git a/backend/controllers/cln/onchain.js b/backend/controllers/cln/onchain.js index 5b39c870..f4615442 100644 --- a/backend/controllers/cln/onchain.js +++ b/backend/controllers/cln/onchain.js @@ -10,7 +10,7 @@ export const getNewAddress = (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/newaddr'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/newaddr'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'New Address Generated', data: body }); @@ -26,7 +26,7 @@ export const onChainWithdraw = (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/withdraw'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/withdraw'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'OnChain', msg: 'OnChain Withdraw Options', data: options.body }); request.post(options).then((body) => { @@ -43,7 +43,7 @@ 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'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listfunds'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Funds List Received', data: body }); // Local Remote Balance Calculation diff --git a/backend/controllers/cln/payments.js b/backend/controllers/cln/payments.js index 900aa192..6a756a00 100644 --- a/backend/controllers/cln/payments.js +++ b/backend/controllers/cln/payments.js @@ -8,7 +8,7 @@ const logger = Logger; const common = Common; const databaseService = Database; export const getMemo = (selNode, payment) => { - options.url = selNode.ln_server_url + '/v1/decode'; + options.url = selNode.settings.lnServerUrl + '/v1/decode'; options.body = { string: payment.bolt11 }; return request.post(options).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment Decode Received', data: res }); @@ -81,7 +81,7 @@ export const listPayments = (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/listsendpays'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listsendpays'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment List Received', data: body.payments }); body.payments = body.payments && body.payments.length && body.payments.length > 0 ? groupBy(body.payments) : []; @@ -95,14 +95,15 @@ export const listPayments = (req, res, next) => { }); }; export const postPayment = (req, res, next) => { + const { paymentType, saveToDB, bolt12, zeroAmtOffer, amount_msat, title, issuer, description } = req.body; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } const options_body = JSON.parse(JSON.stringify(req.body)); - if (req.body.paymentType === 'KEYSEND') { + if (paymentType === 'KEYSEND') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Keysend Payment..' }); - options.url = req.session.selectedNode.ln_server_url + '/v1/keysend'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/keysend'; delete options_body.uiMessage; delete options_body.fromDialog; delete options_body.paymentType; @@ -121,13 +122,13 @@ export const postPayment = (req, res, next) => { options.body = options_body; } else { - if (req.body.paymentType === 'OFFER') { + if (paymentType === 'OFFER') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Offer Payment..' }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Invoice Payment..' }); } - if (req.body.paymentType === 'OFFER') { + if (paymentType === 'OFFER') { // delete amount for zero amt offer also as fetchinvoice already has amount information delete options_body.amount_msat; } @@ -143,22 +144,22 @@ export const postPayment = (req, res, next) => { delete options_body.pubkey; delete options_body.saveToDB; options.body = options_body; - options.url = req.session.selectedNode.ln_server_url + '/v1/pay'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/pay'; } request.post(options).then((body) => { 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_msat), title: req.body.title, lastUpdatedAt: new Date(Date.now()).getTime() }; - if (req.body.issuer) { - offerToUpdate['issuer'] = req.body.issuer; + if (paymentType === 'OFFER') { + if (saveToDB && bolt12) { + const offerToUpdate = { bolt12: bolt12, amountMSat: (zeroAmtOffer ? 0 : amount_msat), title: title, lastUpdatedAt: new Date(Date.now()).getTime() }; + if (issuer) { + offerToUpdate['issuer'] = issuer; } - if (req.body.description) { - offerToUpdate['description'] = req.body.description; + if (description) { + offerToUpdate['description'] = description; } // 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) => { + return databaseService.update(req.session.selectedNode, CollectionsEnum.OFFERS, offerToUpdate, CollectionFieldsEnum.BOLT12, 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) => { @@ -174,10 +175,10 @@ export const postPayment = (req, res, next) => { return res.status(201).json({ paymentResponse: body, saveToDBResponse: 'NA' }); } } - if (req.body.paymentType === 'INVOICE') { + if (paymentType === 'INVOICE') { return res.status(201).json({ paymentResponse: body, saveToDBResponse: 'NA' }); } - if (req.body.paymentType === 'KEYSEND') { + if (paymentType === 'KEYSEND') { return res.status(201).json(body); } }).catch((errRes) => { diff --git a/backend/controllers/cln/peers.js b/backend/controllers/cln/peers.js index 70a01a33..dba0c304 100644 --- a/backend/controllers/cln/peers.js +++ b/backend/controllers/cln/peers.js @@ -11,7 +11,7 @@ export const getPeers = (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/listpeers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; @@ -30,12 +30,12 @@ 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/connect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/connect'; options.body = req.body; request.post(options).then((connectRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: connectRes }); const listOptions = common.getOptions(req); - listOptions.url = req.session.selectedNode.ln_server_url + '/v1/listpeers'; + listOptions.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(listOptions).then((listPeersRes) => { const peers = listPeersRes && listPeersRes.peers ? common.newestOnTop(listPeersRes.peers, 'id', connectRes.id) : []; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); @@ -55,7 +55,7 @@ export const deletePeer = (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/disconnect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disconnect'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peer Disconnected', data: body }); diff --git a/backend/controllers/cln/utility.js b/backend/controllers/cln/utility.js index 2cace758..5a10dcdc 100644 --- a/backend/controllers/cln/utility.js +++ b/backend/controllers/cln/utility.js @@ -10,7 +10,7 @@ export const decodePayment = (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/decode'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/decode'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Decoded', data: body }); @@ -26,7 +26,7 @@ export const signMessage = (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/signmessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/signmessage'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Signed', data: body }); @@ -42,7 +42,7 @@ export const verifyMessage = (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/checkmessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/checkmessage'; options.body = req.body; request.post(options, (error, response, body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); @@ -58,7 +58,7 @@ export const listConfigs = (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/listconfigs'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listconfigs'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Utility', msg: 'List Configs Received', data: body }); res.status(200).json(body); diff --git a/backend/controllers/cln/webSocketClient.js b/backend/controllers/cln/webSocketClient.js index 5fb91a0b..5749ff92 100644 --- a/backend/controllers/cln/webSocketClient.js +++ b/backend/controllers/cln/webSocketClient.js @@ -27,14 +27,14 @@ export class CLWebSocketClient { try { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (!clientExists) { - if (selectedNode.ln_server_url) { + if (selectedNode.settings.lnServerUrl) { const newWebSocketClient = { selectedNode: selectedNode, reConnect: true, webSocketClient: null }; this.connectWithClient(newWebSocketClient); this.webSocketClients.push(newWebSocketClient); } } else { - if ((!clientExists.webSocketClient || !clientExists.webSocketClient.connected) && selectedNode.ln_server_url) { + if ((!clientExists.webSocketClient || !clientExists.webSocketClient.connected) && selectedNode.settings.lnServerUrl) { clientExists.reConnect = true; this.connectWithClient(clientExists); } @@ -47,11 +47,11 @@ export class CLWebSocketClient { this.connectWithClient = (clWsClt) => { this.logger.log({ selectedNode: clWsClt.selectedNode, level: 'INFO', fileName: 'CLWebSocket', msg: 'Connecting to the Core Lightning\'s Websocket Server..' }); try { - if (!clWsClt.selectedNode.rune_value) { - clWsClt.selectedNode.rune_value = this.common.getRuneValue(clWsClt.selectedNode.rune_path); + if (!clWsClt.selectedNode.authentication.runeValue) { + clWsClt.selectedNode.authentication.runeValue = this.common.getRuneValue(clWsClt.selectedNode.authentication.runePath); } - clWsClt.webSocketClient = socketIOClient(clWsClt.selectedNode.ln_server_url, { - extraHeaders: { rune: clWsClt.selectedNode.rune_value }, + clWsClt.webSocketClient = socketIOClient(clWsClt.selectedNode.settings.lnServerUrl, { + extraHeaders: { rune: clWsClt.selectedNode.authentication.runeValue }, transports: ['websocket'], secure: true, rejectUnauthorized: false @@ -65,7 +65,7 @@ export class CLWebSocketClient { this.waitTime = 0.5; }); clWsClt.webSocketClient.on('disconnect', (reason) => { - if (clWsClt && clWsClt.selectedNode && clWsClt.selectedNode.ln_implementation === 'CLN') { + if (clWsClt && clWsClt.selectedNode && clWsClt.selectedNode.lnImplementation === 'CLN') { this.logger.log({ selectedNode: clWsClt.selectedNode, level: 'INFO', fileName: 'CLWebSocket', msg: 'Web socket disconnected, will reconnect again...', data: reason }); clWsClt.webSocketClient.close(); if (clWsClt.reConnect) { diff --git a/backend/controllers/eclair/channels.js b/backend/controllers/eclair/channels.js index 3a6b7851..e4bbfca8 100644 --- a/backend/controllers/eclair/channels.js +++ b/backend/controllers/eclair/channels.js @@ -27,7 +27,7 @@ export const simplifyAllChannels = (selNode, channels) => { }); }); channelNodeIds = channelNodeIds.substring(1); - options.url = selNode.ln_server_url + '/nodes'; + options.url = selNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: channelNodeIds }; logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Node Ids to find alias', data: channelNodeIds }); return request.post(options).then((nodes) => { @@ -47,7 +47,7 @@ export const getChannels = (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 + '/channels'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/channels'; options.form = {}; if (req.query && req.query.nodeId) { options.form = req.query; @@ -55,7 +55,7 @@ export const getChannels = (req, res, next) => { } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: options }); if (common.read_dummy_data) { - common.getDummyData('Channels', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(data); }); + common.getDummyData('Channels', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } else { request.post(options).then((body) => { @@ -83,7 +83,7 @@ export const getChannelStats = (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 + '/channelstats'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/channelstats'; const today = new Date(Date.now()); const tillToday = (Math.round(today.getTime() / 1000)).toString(); const fromLastMonth = (Math.round(new Date(today.getFullYear(), today.getMonth() - 1, today.getDate() + 1, 0, 0, 0).getTime() / 1000)).toString(); @@ -105,7 +105,7 @@ export const openChannel = (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 + '/open'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/open'; options.form = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Open Channel Params', data: options.form }); request.post(options).then((body) => { @@ -122,7 +122,7 @@ export const updateChannelRelayFee = (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 + '/updaterelayfee'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/updaterelayfee'; options.form = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Update Relay Fee Params', data: options.form }); request.post(options).then((body) => { @@ -140,11 +140,11 @@ export const closeChannel = (req, res, next) => { } if (req.query.force !== 'true') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closing Channel..' }); - options.url = req.session.selectedNode.ln_server_url + '/close'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/close'; } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Force Closing Channel..' }); - options.url = req.session.selectedNode.ln_server_url + '/forceclose'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/forceclose'; } options.form = { channelId: req.query.channelId }; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Close URL', data: options.url }); @@ -158,7 +158,8 @@ export const closeChannel = (req, res, next) => { }); }; export const circularRebalance = (req, res, next) => { - const crInvDescription = 'Circular rebalancing invoice for ' + (req.body.amountMsat / 1000) + ' Sats'; + const { amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format, sourceShortChannelId, targetShortChannelId } = req.body; + const crInvDescription = 'Circular rebalancing invoice for ' + (amountMsat / 1000) + ' Sats'; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); @@ -168,22 +169,22 @@ export const circularRebalance = (req, res, next) => { const tillToday = (Math.round(new Date(Date.now()).getTime() / 1000)).toString(); // Check if unpaid Invoice exists already listPendingInvoicesRequestCall(req.session.selectedNode).then((callRes) => { - const foundExistingInvoice = callRes.find((inv) => inv.description.includes(crInvDescription) && inv.amount === req.body.amountMsat && inv.expiry && inv.timestamp && ((inv.expiry + inv.timestamp) >= tillToday)); + const foundExistingInvoice = callRes.find((inv) => inv.description.includes(crInvDescription) && inv.amount === amountMsat && inv.expiry && inv.timestamp && ((inv.expiry + inv.timestamp) >= tillToday)); // Create new invoice if doesn't exist already const requestCalls = foundExistingInvoice && foundExistingInvoice.serialized ? - [findRouteBetweenNodesRequestCall(req.session.selectedNode, req.body.amountMsat, req.body.sourceNodeId, req.body.targetNodeId, req.body.ignoreNodeIds, req.body.format)] : - [findRouteBetweenNodesRequestCall(req.session.selectedNode, req.body.amountMsat, req.body.sourceNodeId, req.body.targetNodeId, req.body.ignoreNodeIds, req.body.format), createInvoiceRequestCall(req.session.selectedNode, crInvDescription, req.body.amountMsat)]; + [findRouteBetweenNodesRequestCall(req.session.selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format)] : + [findRouteBetweenNodesRequestCall(req.session.selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format), createInvoiceRequestCall(req.session.selectedNode, crInvDescription, amountMsat)]; Promise.all(requestCalls).then((values) => { // eslint-disable-next-line arrow-body-style const routes = values[0]?.routes?.filter((route) => { - return !((route.shortChannelIds[0] === req.body.sourceShortChannelId && route.shortChannelIds[1] === req.body.targetShortChannelId) || - (route.shortChannelIds[1] === req.body.sourceShortChannelId && route.shortChannelIds[0] === req.body.targetShortChannelId)); + return !((route.shortChannelIds[0] === sourceShortChannelId && route.shortChannelIds[1] === targetShortChannelId) || + (route.shortChannelIds[1] === sourceShortChannelId && route.shortChannelIds[0] === targetShortChannelId)); }); const firstRoute = routes[0].shortChannelIds.join() || ''; - const shortChannelIds = req.body.sourceShortChannelId + ',' + firstRoute + ',' + req.body.targetShortChannelId; + const shortChannelIds = sourceShortChannelId + ',' + firstRoute + ',' + targetShortChannelId; const invoice = (foundExistingInvoice && foundExistingInvoice.serialized ? foundExistingInvoice.serialized : (values[1] ? values[1].serialized : '')) || ''; const paymentHash = (foundExistingInvoice && foundExistingInvoice.paymentHash ? foundExistingInvoice.paymentHash : (values[1] ? values[1].paymentHash : '') || ''); - return sendPaymentToRouteRequestCall(req.session.selectedNode, shortChannelIds, invoice, req.body.amountMsat).then((payToRouteCallRes) => { + return sendPaymentToRouteRequestCall(req.session.selectedNode, shortChannelIds, invoice, amountMsat).then((payToRouteCallRes) => { // eslint-disable-next-line arrow-body-style setTimeout(() => { return getSentInfoFromPaymentRequest(req.session.selectedNode, paymentHash).then((sentInfoCallRes) => { diff --git a/backend/controllers/eclair/fees.js b/backend/controllers/eclair/fees.js index 7c60516f..0b4f4018 100644 --- a/backend/controllers/eclair/fees.js +++ b/backend/controllers/eclair/fees.js @@ -11,23 +11,24 @@ export const arrangeFees = (selNode, body, current_time) => { let fee = 0; body.relayed.forEach((relayedEle) => { fee = Math.round((relayedEle.amountIn - relayedEle.amountOut) / 1000); - if (relayedEle.timestamp) { - if (relayedEle.timestamp.unix) { - if ((relayedEle.timestamp.unix * 1000) >= day_start_time) { + const relayedEleTimestamp = relayedEle.settledAt ? relayedEle.settledAt : relayedEle.timestamp; + if (relayedEleTimestamp) { + if (relayedEleTimestamp.unix) { + if ((relayedEleTimestamp.unix * 1000) >= day_start_time) { fees.daily_fee = fees.daily_fee + fee; fees.daily_txs = fees.daily_txs + 1; } - if ((relayedEle.timestamp.unix * 1000) >= week_start_time) { + if ((relayedEleTimestamp.unix * 1000) >= week_start_time) { fees.weekly_fee = fees.weekly_fee + fee; fees.weekly_txs = fees.weekly_txs + 1; } } else { - if (relayedEle.timestamp >= day_start_time) { + if (relayedEleTimestamp >= day_start_time) { fees.daily_fee = fees.daily_fee + fee; fees.daily_txs = fees.daily_txs + 1; } - if (relayedEle.timestamp >= week_start_time) { + if (relayedEleTimestamp >= week_start_time) { fees.weekly_fee = fees.weekly_fee + fee; fees.weekly_txs = fees.weekly_txs + 1; } @@ -78,9 +79,10 @@ export const arrangePayments = (selNode, body) => { } }); payments.relayed.forEach((relayedEle) => { - if (relayedEle.timestamp.unix) { - relayedEle.timestamp = relayedEle.timestamp.unix * 1000; - } + // Changing the timestamp value to keep the response backward compatible. + // ECL < 0.7.0 sent timestamp in unix milliseconds, then in {"iso", "unix"} object. + // From v0.10.0, it sends settledAt in {"iso", "unix"} object too. + relayedEle.timestamp = relayedEle.settledAt && relayedEle.settledAt.unix ? relayedEle.settledAt.unix * 1000 : relayedEle.timestamp && relayedEle.timestamp.unix ? relayedEle.timestamp.unix * 1000 : relayedEle.timestamp; if (relayedEle.amountIn) { relayedEle.amountIn = Math.round(relayedEle.amountIn / 1000); } @@ -97,7 +99,7 @@ export const getFees = (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 + '/audit'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/audit'; const today = new Date(Date.now()); const tillToday = (Math.round(today.getTime() / 1000)).toString(); const fromLastMonth = (Math.round(new Date(today.getFullYear(), today.getMonth() - 1, today.getDate() + 1, 0, 0, 0).getTime() / 1000)).toString(); @@ -107,7 +109,7 @@ export const getFees = (req, res, next) => { }; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Fees', msg: 'Fee Audit Options', data: options.form }); if (common.read_dummy_data) { - common.getDummyData('Fees', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(arrangeFees(req.session.selectedNode, data, Math.round((new Date().getTime())))); }); + common.getDummyData('Fees', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(arrangeFees(req.session.selectedNode, data, Math.round((new Date().getTime())))); }); } else { request.post(options).then((body) => { @@ -125,11 +127,17 @@ export const getPayments = (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 + '/audit'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/audit'; const tillToday = (Math.round(new Date(Date.now()).getTime() / 1000)).toString(); options.form = { from: 0, to: tillToday }; + if (req.query.count) { + options.form.count = req.query.count; + } + if (req.query.skip) { + options.form.skip = req.query.skip; + } if (common.read_dummy_data) { - common.getDummyData('Payments', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(arrangePayments(req.session.selectedNode, data)); }); + common.getDummyData('Payments', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(arrangePayments(req.session.selectedNode, data)); }); } else { request.post(options).then((body) => { diff --git a/backend/controllers/eclair/getInfo.js b/backend/controllers/eclair/getInfo.js index cae4a8cb..eb2ccf8b 100644 --- a/backend/controllers/eclair/getInfo.js +++ b/backend/controllers/eclair/getInfo.js @@ -16,12 +16,12 @@ export const getInfo = (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 + '/getinfo'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/getinfo'; options.form = {}; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.ln_node }); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.lnNode }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Calling Info from Eclair server url ' + options.url }); if (common.read_dummy_data) { - common.getDummyData('GetInfo', req.session.selectedNode.ln_implementation).then((data) => { + common.getDummyData('GetInfo', req.session.selectedNode.lnImplementation).then((data) => { data.lnImplementation = 'Eclair'; return res.status(200).json(data); }); @@ -36,7 +36,7 @@ export const getInfo = (req, res, next) => { return request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Connecting to the Eclair\'s Websocket Server.' }); body.lnImplementation = 'Eclair'; - req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; + req.session.selectedNode.lnVersion = body.version.split('-')[0] || ''; eclWsClient.updateSelectedNode(req.session.selectedNode); 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/eclair/invoices.js b/backend/controllers/eclair/invoices.js index 45310605..f3d48cd3 100644 --- a/backend/controllers/eclair/invoices.js +++ b/backend/controllers/eclair/invoices.js @@ -39,7 +39,7 @@ export const getInvoice = (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 + '/getinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/getinvoice'; options.form = { paymentHash: req.params.paymentHash }; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Found', data: body }); @@ -53,11 +53,18 @@ export const getInvoice = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; -export const listPendingInvoicesRequestCall = (selectedNode) => { +export const listPendingInvoicesRequestCall = (selectedNode, count, skip) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'List Pending Invoices..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/listpendinginvoices'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/listpendinginvoices'; options.form = { from: 0, to: (Math.round(new Date(Date.now()).getTime() / 1000)).toString() }; + // Limit the number of invoices till provided count + if (count) { + options.form.count = count; + } + if (skip) { + options.form.skip = skip; + } return new Promise((resolve, reject) => { request.post(options).then((pendingInvoicesResponse) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Pending Invoices List ', data: pendingInvoicesResponse }); @@ -74,29 +81,33 @@ export const listInvoices = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } const tillToday = (Math.round(new Date(Date.now()).getTime() / 1000)).toString(); - options.form = { from: 0, to: tillToday }; const options1 = JSON.parse(JSON.stringify(options)); - options1.url = req.session.selectedNode.ln_server_url + '/listinvoices'; + options1.url = req.session.selectedNode.settings.lnServerUrl + '/listinvoices'; options1.form = { from: 0, to: tillToday }; + if (req.query.count) { + options1.form.count = req.query.count; + } + if (req.query.skip) { + options1.form.skip = req.query.skip; + } const options2 = JSON.parse(JSON.stringify(options)); - options2.url = req.session.selectedNode.ln_server_url + '/listpendinginvoices'; + options2.url = req.session.selectedNode.settings.lnServerUrl + '/listpendinginvoices'; options2.form = { from: 0, to: tillToday }; if (common.read_dummy_data) { - return common.getDummyData('Invoices', req.session.selectedNode.ln_implementation).then((body) => { - 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))). + return common.getDummyData('Invoices', req.session.selectedNode.lnImplementation).then(([invoices, pendingInvoicesRes]) => { + pendingInvoices = pendingInvoicesRes; + return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.settings.lnServerUrl, invoice))). then((values) => res.status(200).json(invoices)); }); } else { return Promise.all([request(options1), request(options2)]). - then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body }); - const invoices = (!body[0] || body[0].length <= 0) ? [] : body[0]; - pendingInvoices = (!body[1] || body[1].length <= 0) ? [] : body[1]; + then(([invoices, pendingInvoicesRes]) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: invoices }); + // pendingInvoices will be used to get the status (paid/unpaid) of the invoice via getReceivedPaymentInfo + pendingInvoices = pendingInvoicesRes; if (invoices && invoices.length > 0) { - return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.ln_server_url, invoice))). + return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.settings.lnServerUrl, invoice))). then((values) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Sorted Invoices List Received', data: invoices }); return res.status(200).json(invoices); @@ -119,8 +130,8 @@ export const listInvoices = (req, res, next) => { }; export const createInvoiceRequestCall = (selectedNode, description, amount) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/createinvoice'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/createinvoice'; options.form = { description: description, amountMsat: amount }; return new Promise((resolve, reject) => { request.post(options).then((invResponse) => { @@ -135,12 +146,13 @@ export const createInvoiceRequestCall = (selectedNode, description, amount) => { }); }; export const createInvoice = (req, res, next) => { + const { description, amountMsat } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - createInvoiceRequestCall(req.session.selectedNode, req.body.description, req.body.amountMsat).then((invRes) => { + createInvoiceRequestCall(req.session.selectedNode, description, amountMsat).then((invRes) => { res.status(201).json(invRes); }).catch((err) => res.status(err.statusCode).json({ message: err.message, error: err.error })); }; diff --git a/backend/controllers/eclair/network.js b/backend/controllers/eclair/network.js index 1cd0aae3..c9924fd4 100644 --- a/backend/controllers/eclair/network.js +++ b/backend/controllers/eclair/network.js @@ -10,7 +10,7 @@ export const getNodes = (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 + '/nodes'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: req.params.id }; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Node Lookup Finished', data: body }); @@ -22,8 +22,8 @@ export const getNodes = (req, res, next) => { }; export const findRouteBetweenNodesRequestCall = (selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds = [], format = 'shortChannelId') => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Network', msg: 'Find Route Between Nodes..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/findroutebetweennodes'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/findroutebetweennodes'; options.form = { amountMsat: amountMsat, sourceNodeId: sourceNodeId, targetNodeId: targetNodeId, ignoreNodeIds: ignoreNodeIds, format: format }; return new Promise((resolve, reject) => { request.post(options).then((body) => { @@ -35,11 +35,12 @@ export const findRouteBetweenNodesRequestCall = (selectedNode, amountMsat, sourc }); }; export const findRouteBetweenNodes = (req, res, next) => { + const { amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format } = req.body; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - findRouteBetweenNodesRequestCall(req.session.selectedNode, req.body.amountMsat, req.body.sourceNodeId, req.body.targetNodeId, req.body.ignoreNodeIds, req.body.format).then((callRes) => { + findRouteBetweenNodesRequestCall(req.session.selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format).then((callRes) => { res.status(200).json(callRes); }).catch((err) => res.status(err.statusCode).json({ message: err.message, error: err.error })); }; diff --git a/backend/controllers/eclair/onchain.js b/backend/controllers/eclair/onchain.js index d69b1de2..858e3e0e 100644 --- a/backend/controllers/eclair/onchain.js +++ b/backend/controllers/eclair/onchain.js @@ -21,7 +21,7 @@ export const getNewAddress = (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 + '/getnewaddress'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/getnewaddress'; options.form = {}; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'New Address Generated', data: body }); @@ -37,10 +37,10 @@ export const getBalance = (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 + '/onchainbalance'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/onchainbalance'; options.form = {}; if (common.read_dummy_data) { - common.getDummyData('OnChainBalance', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(arrangeBalances(data)); }); + common.getDummyData('OnChainBalance', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(arrangeBalances(data)); }); } else { request.post(options).then((body) => { @@ -59,7 +59,7 @@ export const getTransactions = (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 + '/onchaintransactions'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/onchaintransactions'; options.form = { count: req.query.count, skip: req.query.skip @@ -74,17 +74,14 @@ export const getTransactions = (req, res, next) => { }); }; export const sendFunds = (req, res, next) => { + const { address, amount, blocks } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Sending On Chain Funds..' }); 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 + '/sendonchain'; - options.form = { - address: req.body.address, - amountSatoshis: req.body.amount, - confirmationTarget: req.body.blocks - }; + options.url = req.session.selectedNode.settings.lnServerUrl + '/sendonchain'; + options.form = { address: address, amountSatoshis: amount, confirmationTarget: blocks }; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Onchain', msg: 'Send Funds Options', data: options.form }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Onchain', msg: 'On Chain Funds Sent', data: body }); diff --git a/backend/controllers/eclair/payments.js b/backend/controllers/eclair/payments.js index 38922282..25f6d974 100644 --- a/backend/controllers/eclair/payments.js +++ b/backend/controllers/eclair/payments.js @@ -5,7 +5,7 @@ let options = null; const logger = Logger; const common = Common; export const getSentInfoFromPaymentRequest = (selNode, payment) => { - options.url = selNode.ln_server_url + '/getsentinfo'; + options.url = selNode.settings.lnServerUrl + '/getsentinfo'; options.form = { paymentHash: payment }; return request.post(options).then((body) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment Sent Information Received', data: body }); @@ -21,7 +21,7 @@ export const getSentInfoFromPaymentRequest = (selNode, payment) => { }).catch((err) => err); }; export const getQueryNodes = (selNode, nodeIds) => { - options.url = selNode.ln_server_url + '/nodes'; + options.url = selNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: nodeIds?.reduce((acc, curr) => acc + ',' + curr) }; return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Payments', msg: 'Query Nodes Received', data: nodes }); @@ -34,7 +34,7 @@ export const decodePayment = (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 + '/parseinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/parseinvoice'; options.form = { invoice: req.params.invoice }; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Decoded', data: body }); @@ -53,7 +53,7 @@ export const postPayment = (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 + '/payinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/payinvoice'; options.form = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment Options', data: options.form }); request.post(options).then((body) => { @@ -70,7 +70,7 @@ export const queryPaymentRoute = (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 + '/findroutetonode'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/findroutetonode'; options.form = { nodeId: req.query.nodeId, amountMsat: req.query.amountMsat @@ -104,13 +104,14 @@ export const queryPaymentRoute = (req, res, next) => { }); }; export const getSentPaymentsInformation = (req, res, next) => { + const { payments } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Getting Sent Payment Information..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - if (req.body.payments) { - const paymentsArr = req.body.payments.split(','); + if (payments) { + const paymentsArr = payments.split(','); return Promise.all(paymentsArr?.map((payment) => getSentInfoFromPaymentRequest(req.session.selectedNode, payment))). then((values) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent Information Received', data: values }); @@ -128,8 +129,8 @@ export const getSentPaymentsInformation = (req, res, next) => { }; export const sendPaymentToRouteRequestCall = (selectedNode, shortChannelIds, invoice, amountMsat) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/sendtoroute'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/sendtoroute'; options.form = { shortChannelIds: shortChannelIds, amountMsat: amountMsat, invoice: invoice }; return new Promise((resolve, reject) => { logger.log({ selectedNode: selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment To Route Options', data: options.form }); @@ -142,12 +143,13 @@ export const sendPaymentToRouteRequestCall = (selectedNode, shortChannelIds, inv }); }; export const sendPaymentToRoute = (req, res, next) => { + const { shortChannelIds, invoice, amountMsat } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Send Payment To Route..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - sendPaymentToRouteRequestCall(req.session.selectedNode, req.body.shortChannelIds, req.body.invoice, req.body.amountMsat).then((callRes) => { + sendPaymentToRouteRequestCall(req.session.selectedNode, shortChannelIds, invoice, amountMsat).then((callRes) => { res.status(200).json(callRes); }).catch((err) => res.status(err.statusCode).json({ message: err.message, error: err.error })); }; diff --git a/backend/controllers/eclair/peers.js b/backend/controllers/eclair/peers.js index 0436f2ec..c29f4e22 100644 --- a/backend/controllers/eclair/peers.js +++ b/backend/controllers/eclair/peers.js @@ -5,7 +5,7 @@ let options = null; const logger = Logger; const common = Common; export const getFilteredNodes = (selNode, peersNodeIds) => { - options.url = selNode.ln_server_url + '/nodes'; + options.url = selNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: peersNodeIds }; return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Peers', msg: 'Filtered Nodes Received', data: nodes }); @@ -18,10 +18,10 @@ export const getPeers = (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 + '/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/peers'; options.form = {}; if (common.read_dummy_data) { - common.getDummyData('Peers', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(data); }); + common.getDummyData('Peers', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } else { request.post(options).then((body) => { @@ -58,7 +58,7 @@ export const connectPeer = (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 + '/connect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/connect'; options.form = {}; if (req.query) { options.form = req.query; @@ -74,7 +74,7 @@ export const connectPeer = (req, res, next) => { const err = common.handleError({ statusCode: 500, message: 'Connect Peer Error', error: body }, 'Peers', body, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); } - options.url = req.session.selectedNode.ln_server_url + '/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/peers'; options.form = {}; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List after Connect', data: body }); @@ -112,7 +112,7 @@ export const deletePeer = (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 + '/disconnect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/disconnect'; options.form = {}; if (req.params.nodeId) { options.form = { nodeId: req.params.nodeId }; diff --git a/backend/controllers/eclair/webSocketClient.js b/backend/controllers/eclair/webSocketClient.js index 20539a65..6c692c3a 100644 --- a/backend/controllers/eclair/webSocketClient.js +++ b/backend/controllers/eclair/webSocketClient.js @@ -28,14 +28,14 @@ export class ECLWebSocketClient { try { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (!clientExists) { - if (selectedNode.ln_server_url) { + if (selectedNode.settings.lnServerUrl) { const newWebSocketClient = { selectedNode: selectedNode, reConnect: true, webSocketClient: null }; this.connectWithClient(newWebSocketClient); this.webSocketClients.push(newWebSocketClient); } } else { - if ((!clientExists.webSocketClient || clientExists.webSocketClient.readyState !== WebSocket.OPEN) && selectedNode.ln_server_url) { + if ((!clientExists.webSocketClient || clientExists.webSocketClient.readyState !== WebSocket.OPEN) && selectedNode.settings.lnServerUrl) { clientExists.reConnect = true; this.connectWithClient(clientExists); } @@ -47,9 +47,9 @@ export class ECLWebSocketClient { }; this.connectWithClient = (eclWsClt) => { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Connecting to the Eclair\'s Websocket Server..' }); - const UpdatedLNServerURL = (eclWsClt.selectedNode.ln_server_url)?.replace(/^http/, 'ws'); + const UpdatedLNServerURL = (eclWsClt.selectedNode.settings.lnServerUrl)?.replace(/^http/, 'ws'); const firstSubStrIndex = (UpdatedLNServerURL.indexOf('//') + 2); - const WS_LINK = UpdatedLNServerURL.slice(0, firstSubStrIndex) + ':' + eclWsClt.selectedNode.ln_api_password + '@' + UpdatedLNServerURL.slice(firstSubStrIndex) + '/ws'; + const WS_LINK = UpdatedLNServerURL.slice(0, firstSubStrIndex) + ':' + eclWsClt.selectedNode.authentication.lnApiPassword + '@' + UpdatedLNServerURL.slice(firstSubStrIndex) + '/ws'; eclWsClt.webSocketClient = new WebSocket(WS_LINK); eclWsClt.webSocketClient.onopen = () => { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Connected to the Eclair\'s Websocket Server..' }); @@ -57,7 +57,7 @@ export class ECLWebSocketClient { this.heartbeat(eclWsClt); }; eclWsClt.webSocketClient.onclose = (e) => { - if (eclWsClt && eclWsClt.selectedNode && eclWsClt.selectedNode.ln_implementation === 'ECL') { + if (eclWsClt && eclWsClt.selectedNode && eclWsClt.selectedNode.lnImplementation === 'ECL') { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Web socket disconnected, will reconnect again...' }); eclWsClt.webSocketClient.close(); if (eclWsClt.reConnect) { @@ -75,7 +75,7 @@ export class ECLWebSocketClient { } }; eclWsClt.webSocketClient.onerror = (err) => { - if (eclWsClt.selectedNode.ln_version === '' || !eclWsClt.selectedNode.ln_version || this.common.isVersionCompatible(eclWsClt.selectedNode.ln, '0.5.0')) { + if (eclWsClt.selectedNode.lnVersion === '' || !eclWsClt.selectedNode.lnVersion || this.common.isVersionCompatible(eclWsClt.selectedNode.ln, '0.5.0')) { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'ERROR', fileName: 'ECLWebSocket', msg: 'Web socket error', error: err }); const errStr = ((typeof err === 'object' && err.message) ? JSON.stringify({ error: err.message }) : (typeof err === 'object') ? JSON.stringify({ error: err }) : ('{ "error": ' + err + ' }')); this.wsServer.sendErrorToAllLNClients(errStr, eclWsClt.selectedNode); diff --git a/backend/controllers/lnd/balance.js b/backend/controllers/lnd/balance.js index a73898d5..b49f7a02 100644 --- a/backend/controllers/lnd/balance.js +++ b/backend/controllers/lnd/balance.js @@ -10,7 +10,7 @@ export const getBlockchainBalance = (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/balance/blockchain'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/balance/blockchain'; options.qs = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Balance', msg: 'Request params', data: req.params }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Balance', msg: 'Request Query', data: req.query }); diff --git a/backend/controllers/lnd/channels.js b/backend/controllers/lnd/channels.js index eaccd798..66d091e0 100644 --- a/backend/controllers/lnd/channels.js +++ b/backend/controllers/lnd/channels.js @@ -6,7 +6,7 @@ const logger = Logger; const common = Common; export const getAliasForChannel = (selNode, channel) => { const pubkey = (channel.remote_pubkey) ? channel.remote_pubkey : (channel.remote_node_pub) ? channel.remote_node_pub : ''; - options.url = selNode.ln_server_url + '/v1/graph/node/' + pubkey; + options.url = selNode.settings.lnServerUrl + '/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 && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); @@ -22,7 +22,7 @@ export const getAllChannels = (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'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels'; options.qs = req.query; let local = 0; let remote = 0; @@ -60,7 +60,7 @@ export const getPendingChannels = (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/pending'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/pending'; options.qs = req.query; request(options).then((body) => { if (!body.total_limbo_balance) { @@ -98,7 +98,7 @@ export const getClosedChannels = (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/closed'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/closed'; options.qs = req.query; request(options).then((body) => { if (body.channels && body.channels.length > 0) { @@ -123,26 +123,27 @@ export const getClosedChannels = (req, res, next) => { }); }; export const postChannel = (req, res, next) => { + const { node_pubkey, private: privateChannel, spend_unconfirmed, local_funding_amount, trans_type, trans_type_value, commitment_type } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Opening Channel..' }); 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'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels'; options.form = { - node_pubkey_string: req.body.node_pubkey, - local_funding_amount: req.body.local_funding_amount, - private: req.body.private, - spend_unconfirmed: req.body.spend_unconfirmed + node_pubkey_string: node_pubkey, + local_funding_amount: local_funding_amount, + private: privateChannel, + spend_unconfirmed: spend_unconfirmed }; - if (req.body.trans_type === '1') { - options.form.target_conf = req.body.trans_type_value; + if (trans_type === '1') { + options.form.target_conf = trans_type_value; } - else if (req.body.trans_type === '2') { - options.form.sat_per_byte = req.body.trans_type_value; + else if (trans_type === '2') { + options.form.sat_per_byte = trans_type_value; } - if (req.body.commitment_type) { - options.form.commitment_type = req.body.commitment_type; + if (commitment_type) { + options.form.commitment_type = commitment_type; } options.form = JSON.stringify(options.form); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channel Open Options', data: options.form }); @@ -155,27 +156,28 @@ export const postChannel = (req, res, next) => { }); }; export const postTransactions = (req, res, next) => { + const { paymentReq, paymentAmount, feeLimit, outgoingChannel, allowSelfPayment, lastHopPubkey } = req.body; 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/transaction-stream'; - options.form = { payment_request: req.body.paymentReq }; - if (req.body.paymentAmount) { - options.form.amt = req.body.paymentAmount; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/transaction-stream'; + options.form = { payment_request: paymentReq }; + if (paymentAmount) { + options.form.amt = paymentAmount; } - if (req.body.feeLimit) { - options.form.fee_limit = req.body.feeLimit; + if (feeLimit) { + options.form.fee_limit = feeLimit; } - if (req.body.outgoingChannel) { - options.form.outgoing_chan_id = req.body.outgoingChannel; + if (outgoingChannel) { + options.form.outgoing_chan_id = outgoingChannel; } - if (req.body.allowSelfPayment) { - options.form.allow_self_payment = req.body.allowSelfPayment; + if (allowSelfPayment) { + options.form.allow_self_payment = allowSelfPayment; } - if (req.body.lastHopPubkey) { - options.form.last_hop_pubkey = Buffer.from(req.body.lastHopPubkey, 'hex').toString('base64'); + if (lastHopPubkey) { + options.form.last_hop_pubkey = Buffer.from(lastHopPubkey, 'hex').toString('base64'); } options.form = JSON.stringify(options.form); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Send Payment Options', data: options.form }); @@ -206,7 +208,7 @@ export const closeChannel = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } const channelpoint = req.params.channelPoint?.replace(':', '/'); - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/' + channelpoint + '?force=' + req.query.force; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/' + channelpoint + '?force=' + req.query.force; if (req.query.target_conf) { options.url = options.url + '&target_conf=' + req.query.target_conf; } @@ -224,35 +226,36 @@ export const closeChannel = (req, res, next) => { } }; export const postChanPolicy = (req, res, next) => { + const { chanPoint, baseFeeMsat, feeRate, timeLockDelta, max_htlc_msat, min_htlc_msat } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Updating Channel Policy..' }); 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/chanpolicy'; - if (req.body.chanPoint === 'all') { + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/chanpolicy'; + if (chanPoint === 'all') { options.form = JSON.stringify({ global: true, - base_fee_msat: req.body.baseFeeMsat, - fee_rate: parseFloat((req.body.feeRate / 1000000).toString()), - time_lock_delta: parseInt(req.body.timeLockDelta) + base_fee_msat: baseFeeMsat, + fee_rate: parseFloat((feeRate / 1000000).toString()), + time_lock_delta: parseInt(timeLockDelta) }); } else { - const breakPoint = req.body.chanPoint.indexOf(':'); - const txid_str = req.body.chanPoint.substring(0, breakPoint); - const output_idx = req.body.chanPoint.substring(breakPoint + 1, req.body.chanPoint.length); + const breakPoint = chanPoint.indexOf(':'); + const txid_str = chanPoint.substring(0, breakPoint); + const output_idx = chanPoint.substring(breakPoint + 1, chanPoint.length); const optionsBody = { - base_fee_msat: req.body.baseFeeMsat, - fee_rate: parseFloat((req.body.feeRate / 1000000).toString()), - time_lock_delta: parseInt(req.body.timeLockDelta), + base_fee_msat: baseFeeMsat, + fee_rate: parseFloat((feeRate / 1000000).toString()), + time_lock_delta: parseInt(timeLockDelta), chan_point: { funding_txid_str: txid_str, output_index: parseInt(output_idx) } }; - if (req.body.max_htlc_msat) { - optionsBody['max_htlc_msat'] = req.body.max_htlc_msat; + if (max_htlc_msat) { + optionsBody['max_htlc_msat'] = max_htlc_msat; } - if (req.body.min_htlc_msat) { - optionsBody['min_htlc_msat'] = req.body.min_htlc_msat; + if (min_htlc_msat) { + optionsBody['min_htlc_msat'] = min_htlc_msat; optionsBody['min_htlc_msat_specified'] = true; } options.form = JSON.stringify(optionsBody); diff --git a/backend/controllers/lnd/channelsBackup.js b/backend/controllers/lnd/channelsBackup.js index 489deb5f..a00a8074 100644 --- a/backend/controllers/lnd/channelsBackup.js +++ b/backend/controllers/lnd/channelsBackup.js @@ -39,15 +39,15 @@ export const getBackup = (req, res, next) => { let channel_backup_file = ''; let message = ''; if (req.params.channelPoint === 'ALL') { - channel_backup_file = req.session.selectedNode.channel_backup_path + sep + 'channel-all.bak'; + channel_backup_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-all.bak'; message = 'All Channels Backup Successful.'; - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/backup'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup'; } else { - channel_backup_file = req.session.selectedNode.channel_backup_path + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; + channel_backup_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; message = 'Channel Backup Successful.'; const channelpoint = req.params.channelPoint?.replace(':', '/'); - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/backup/' + channelpoint; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup/' + channelpoint; const exists = fs.existsSync(channel_backup_file); if (exists) { fs.writeFile(channel_backup_file, '', () => { }); @@ -86,13 +86,13 @@ export const postBackupVerify = (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/backup/verify'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup/verify'; let channel_verify_file = ''; let message = ''; let verify_backup = ''; if (req.params.channelPoint === 'ALL') { message = 'All Channels Verify Successful.'; - channel_verify_file = req.session.selectedNode.channel_backup_path + sep + 'channel-all.bak'; + channel_verify_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-all.bak'; const exists = fs.existsSync(channel_verify_file); if (exists) { verify_backup = fs.readFileSync(channel_verify_file, 'utf-8'); @@ -116,7 +116,7 @@ export const postBackupVerify = (req, res, next) => { } else { message = 'Channel Verify Successful.'; - channel_verify_file = req.session.selectedNode.channel_backup_path + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; + channel_verify_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; const exists = fs.existsSync(channel_verify_file); if (exists) { verify_backup = fs.readFileSync(channel_verify_file, 'utf-8'); @@ -146,13 +146,13 @@ export const postRestore = (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/backup/restore'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup/restore'; let channel_restore_file = ''; let message = ''; let restore_backup = ''; if (req.params.channelPoint === 'ALL') { message = 'All Channels Restore Successful.'; - channel_restore_file = req.session.selectedNode.channel_backup_path + sep + 'restore' + sep; + channel_restore_file = req.session.selectedNode.settings.channelBackupPath + sep + 'restore' + sep; const exists = fs.existsSync(channel_restore_file + 'channel-all.bak'); const downloaded_exists = fs.existsSync(channel_restore_file + 'backup-channel-all.bak'); if (exists) { @@ -188,7 +188,7 @@ export const postRestore = (req, res, next) => { } else { message = 'Channel Restore Successful.'; - channel_restore_file = req.session.selectedNode.channel_backup_path + sep + 'restore' + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; + channel_restore_file = req.session.selectedNode.settings.channelBackupPath + sep + 'restore' + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; const exists = fs.existsSync(channel_restore_file); if (exists) { restore_backup = fs.readFileSync(channel_restore_file, 'utf-8'); @@ -208,7 +208,7 @@ export const postRestore = (req, res, next) => { channel_restore_file = channel_restore_file + 'channel-all.bak'; } fs.rename(channel_restore_file, channel_restore_file + '.restored', () => { - getFilesList(req.session.selectedNode.channel_backup_path, (getFilesListRes) => { + getFilesList(req.session.selectedNode.settings.channelBackupPath, (getFilesListRes) => { if (getFilesListRes.error) { const errMsg = getFilesListRes.error; const err = common.handleError({ statusCode: 500, message: 'Restore Channel Error', error: errMsg }, 'ChannelBackup', errMsg, req.session.selectedNode); @@ -228,7 +228,7 @@ export const postRestore = (req, res, next) => { } }; export const getRestoreList = (req, res, next) => { - getFilesList(req.session.selectedNode.channel_backup_path, (getFilesListRes) => { + getFilesList(req.session.selectedNode.settings.channelBackupPath, (getFilesListRes) => { if (getFilesListRes.error) { return res.status(getFilesListRes.statusCode).json(getFilesListRes); } diff --git a/backend/controllers/lnd/fees.js b/backend/controllers/lnd/fees.js index 68766789..643a5e91 100644 --- a/backend/controllers/lnd/fees.js +++ b/backend/controllers/lnd/fees.js @@ -11,7 +11,7 @@ export const getFees = (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/fees'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/fees'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Fee Received', data: body }); const today = new Date(Date.now()); diff --git a/backend/controllers/lnd/getInfo.js b/backend/controllers/lnd/getInfo.js index 461f3d10..fbc72493 100644 --- a/backend/controllers/lnd/getInfo.js +++ b/backend/controllers/lnd/getInfo.js @@ -16,8 +16,8 @@ export const getInfo = (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/getinfo'; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.ln_node }); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/getinfo'; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.lnNode }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Calling Info from LND server url ' + options.url }); if (!options.headers || !options.headers['Grpc-Metadata-macaroon']) { const errMsg = 'LND Get info failed due to bad or missing macaroon! Please check RTL-Config.json to verify the setup!'; @@ -26,7 +26,7 @@ export const getInfo = (req, res, next) => { } else { common.nodes?.map((node) => { - if (node.ln_implementation === 'LND') { + if (node.lnImplementation === 'LND') { common.getAllNodeAllChannelBackup(node); } return node; @@ -42,7 +42,7 @@ export const getInfo = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } else { - req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; + req.session.selectedNode.lnVersion = body.version.split('-')[0] || ''; lndWsClient.updateSelectedNode(req.session.selectedNode); 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 37f99221..7d008e40 100644 --- a/backend/controllers/lnd/graph.js +++ b/backend/controllers/lnd/graph.js @@ -5,7 +5,7 @@ let options = null; const logger = Logger; const common = Common; export const getAliasFromPubkey = (selNode, pubkey) => { - options.url = selNode.ln_server_url + '/v1/graph/node/' + pubkey; + options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; return request(options).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; @@ -18,7 +18,7 @@ export const getDescribeGraph = (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/graph'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph'; request.get(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Network Graph Received', data: body }); res.status(200).json(body); @@ -33,7 +33,7 @@ export const getGraphInfo = (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/graph/info'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/info'; request.get(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Information Received', data: body }); res.status(200).json(body); @@ -48,7 +48,7 @@ export const getGraphNode = (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/graph/node/' + req.params.pubKey; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/node/' + req.params.pubKey; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Node Information Received', data: body }); res.status(200).json(body); @@ -63,7 +63,7 @@ export const getGraphEdge = (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/graph/edge/' + req.params.chanid; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/edge/' + req.params.chanid; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Edge Information Received', data: body }); res.status(200).json(body); @@ -78,7 +78,7 @@ export const getQueryRoutes = (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/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; if (req.query.outgoing_chan_id) { options.url = options.url + '?outgoing_chan_id=' + req.query.outgoing_chan_id; } @@ -116,7 +116,7 @@ export const getRemoteFeePolicy = (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/graph/edge/' + req.params.chanid; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/edge/' + req.params.chanid; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Edge Info Received', data: body }); let remoteNodeFee = {}; diff --git a/backend/controllers/lnd/invoices.js b/backend/controllers/lnd/invoices.js index 433f398e..59601ab9 100644 --- a/backend/controllers/lnd/invoices.js +++ b/backend/controllers/lnd/invoices.js @@ -12,7 +12,7 @@ export const invoiceLookup = (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 + '/v2/invoices/lookup'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/invoices/lookup'; if (req.query.payment_addr) { options.url = options.url + '?payment_addr=' + req.query.payment_addr; } @@ -36,7 +36,7 @@ export const listInvoices = (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/invoices?num_max_invoices=' + req.query.num_max_invoices + '&index_offset=' + req.query.index_offset + + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoices?num_max_invoices=' + req.query.num_max_invoices + '&index_offset=' + req.query.index_offset + '&reversed=' + req.query.reversed; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body }); @@ -60,7 +60,7 @@ export const addInvoice = (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/invoices'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoices'; 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 }); diff --git a/backend/controllers/lnd/message.js b/backend/controllers/lnd/message.js index 19a62aa3..65a1328f 100644 --- a/backend/controllers/lnd/message.js +++ b/backend/controllers/lnd/message.js @@ -5,14 +5,15 @@ let options = null; const logger = Logger; const common = Common; export const signMessage = (req, res, next) => { + const { message } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Signing Message..' }); 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/signmessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/signmessage'; options.form = JSON.stringify({ - msg: Buffer.from(req.body.message).toString('base64') + msg: Buffer.from(message).toString('base64') }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Signed', data: body }); @@ -23,15 +24,16 @@ export const signMessage = (req, res, next) => { }); }; export const verifyMessage = (req, res, next) => { + const { message, signature } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Verifying Message..' }); 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/verifymessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/verifymessage'; options.form = JSON.stringify({ - msg: Buffer.from(req.body.message).toString('base64'), - signature: req.body.signature + msg: Buffer.from(message).toString('base64'), + signature: signature }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); diff --git a/backend/controllers/lnd/newAddress.js b/backend/controllers/lnd/newAddress.js index ac2f9e15..b8857064 100644 --- a/backend/controllers/lnd/newAddress.js +++ b/backend/controllers/lnd/newAddress.js @@ -10,7 +10,7 @@ export const getNewAddress = (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/newaddress?type=' + req.query.type; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/newaddress?type=' + req.query.type; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'NewAddress', msg: 'New Address Generated', data: body }); res.status(200).json(body); diff --git a/backend/controllers/lnd/payments.js b/backend/controllers/lnd/payments.js index 1e34ce95..208a1883 100644 --- a/backend/controllers/lnd/payments.js +++ b/backend/controllers/lnd/payments.js @@ -5,7 +5,7 @@ let options = null; const logger = Logger; const common = Common; export const decodePaymentFromPaymentRequest = (selNode, payment) => { - options.url = selNode.ln_server_url + '/v1/payreq/' + payment; + options.url = selNode.settings.lnServerUrl + '/v1/payreq/' + payment; return request(options).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'PayReq', msg: 'Description Received', data: res.description }); return res; @@ -17,7 +17,7 @@ export const decodePayment = (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/payreq/' + req.params.payRequest; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/payreq/' + req.params.payRequest; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Payment Decoded', data: body }); res.status(200).json(body); @@ -27,13 +27,14 @@ export const decodePayment = (req, res, next) => { }); }; export const decodePayments = (req, res, next) => { + const { payments } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Decoding Payments List..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - if (req.body.payments) { - const paymentsArr = req.body.payments.split(','); + if (payments) { + const paymentsArr = payments.split(','); return Promise.all(paymentsArr?.map((payment) => decodePaymentFromPaymentRequest(req.session.selectedNode, payment))). then((values) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Payment List Decoded', data: values }); @@ -55,7 +56,7 @@ export const getPayments = (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/payments?max_payments=' + req.query.max_payments + '&index_offset=' + req.query.index_offset + '&reversed=' + req.query.reversed; + options.url = req.session.selectedNode.settings.lnServerUrl + '/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 }); res.status(200).json(body); @@ -68,8 +69,8 @@ export const getAllLightningTransactions = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Getting All Lightning Transactions..' }); const options1 = JSON.parse(JSON.stringify(common.getOptions(req))); const options2 = JSON.parse(JSON.stringify(common.getOptions(req))); - // options1.url = req.session.selectedNode.ln_server_url + '/v1/payments?max_payments=100000&index_offset=0&reversed=true'; - options2.url = req.session.selectedNode.ln_server_url + '/v1/invoices?num_max_invoices=100000&index_offset=0&reversed=true'; + // options1.url = req.session.selectedNode.settings.lnServerUrl + '/v1/payments?max_payments=100000&index_offset=0&reversed=true'; + options2.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoices?num_max_invoices=100000&index_offset=0&reversed=true'; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'All Payments Options', data: options1 }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'All Invoices Options', data: options2 }); // return Promise.all([request(options1), request(options2)]).then((values) => { @@ -87,7 +88,7 @@ export const paymentLookup = (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 + '/v2/router/track/' + req.params.paymentHash; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/track/' + req.params.paymentHash; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Information Received for ' + req.params.paymentHash, data: body }); res.status(200).json(body.result || body); diff --git a/backend/controllers/lnd/peers.js b/backend/controllers/lnd/peers.js index 9920860a..104dc753 100644 --- a/backend/controllers/lnd/peers.js +++ b/backend/controllers/lnd/peers.js @@ -5,7 +5,7 @@ let options = null; const logger = Logger; const common = Common; export const getAliasForPeers = (selNode, peer) => { - options.url = selNode.ln_server_url + '/v1/graph/node/' + peer.pub_key; + options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + peer.pub_key; return request(options).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Peers', msg: 'Alias Received', data: aliasBody.node.alias }); peer.alias = aliasBody.node.alias; @@ -21,7 +21,7 @@ export const getPeers = (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/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; @@ -35,24 +35,25 @@ export const getPeers = (req, res, next) => { }); }; export const postPeer = (req, res, next) => { + const { host, pubkey, perm } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Connecting Peer..' }); 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/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; options.form = JSON.stringify({ - addr: { host: req.body.host, pubkey: req.body.pubkey }, - perm: req.body.perm + addr: { host: host, pubkey: pubkey }, + perm: perm }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: body }); - options.url = req.session.selectedNode.ln_server_url + '/v1/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { 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.newestOnTop(body.peers, 'pub_key', req.body.pubkey); + body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); } res.status(201).json(body.peers); @@ -75,7 +76,7 @@ export const deletePeer = (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/peers/' + req.params.peerPubKey; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers/' + req.params.peerPubKey; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peer Disconnect Pubkey', data: req.params.peerPubKey }); request.delete(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peer Disconneted', data: body }); diff --git a/backend/controllers/lnd/switch.js b/backend/controllers/lnd/switch.js index fb16f1d4..a8571941 100644 --- a/backend/controllers/lnd/switch.js +++ b/backend/controllers/lnd/switch.js @@ -7,7 +7,8 @@ const common = Common; const responseData = { switch: { forwarding_events: [], last_offset_index: 0 }, fees: { forwarding_events: [], last_offset_index: 0 } }; const num_max_events = 100; export const forwardingHistory = (req, res, next) => { - getAllForwardingEvents(req, req.body.start_time, req.body.end_time, 0, 'switch', (eventsResponse) => { + const { start_time, end_time } = req.body; + getAllForwardingEvents(req, start_time, end_time, 0, 'switch', (eventsResponse) => { if (eventsResponse.error) { res.status(eventsResponse.error.statusCode).json(eventsResponse); } @@ -26,7 +27,7 @@ export const getAllForwardingEvents = (req, start, end, offset, caller, callback return callback({ message: err.message, error: err.error, statusCode: err.statusCode }); } options = common.getOptions(req); - options.url = req.session.selectedNode.ln_server_url + '/v1/switch'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/switch'; options.form = {}; if (start) { options.form.start_time = start; diff --git a/backend/controllers/lnd/transactions.js b/backend/controllers/lnd/transactions.js index 0b4684d8..cb715822 100644 --- a/backend/controllers/lnd/transactions.js +++ b/backend/controllers/lnd/transactions.js @@ -10,7 +10,7 @@ export const getTransactions = (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/transactions'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/transactions'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Transactions', msg: 'Transactions List Received', data: body }); res.status(200).json(body.transactions); @@ -20,20 +20,21 @@ export const getTransactions = (req, res, next) => { }); }; export const postTransactions = (req, res, next) => { + const { amount, address, fees, blocks, sendAll } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Transactions', msg: 'Sending Transaction..' }); 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/transactions'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/transactions'; options.form = { - amount: req.body.amount, - addr: req.body.address, - sat_per_byte: req.body.fees, - target_conf: req.body.blocks + amount: amount, + addr: address, + sat_per_byte: fees, + target_conf: blocks }; - if (req.body.sendAll) { - options.form.send_all = req.body.sendAll; + if (sendAll) { + options.form.send_all = sendAll; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/backend/controllers/lnd/wallet.js b/backend/controllers/lnd/wallet.js index 61b1c4e4..be5a7296 100644 --- a/backend/controllers/lnd/wallet.js +++ b/backend/controllers/lnd/wallet.js @@ -12,10 +12,10 @@ export const genSeed = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } if (req.params.passphrase) { - options.url = req.session.selectedNode.ln_server_url + '/v1/genseed?aezeed_passphrase=' + Buffer.from(atob(req.params.passphrase)).toString('base64'); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/genseed?aezeed_passphrase=' + Buffer.from(atob(req.params.passphrase)).toString('base64'); } else { - options.url = req.session.selectedNode.ln_server_url + '/v1/genseed'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/genseed'; } request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Seed Generated', data: body }); @@ -26,6 +26,7 @@ export const genSeed = (req, res, next) => { }); }; export const operateWallet = (req, res, next) => { + const { wallet_password, aezeed_passphrase, cipher_seed_mnemonic } = req.body; let err_message = ''; options = common.getOptions(req); if (options.error) { @@ -34,26 +35,26 @@ export const operateWallet = (req, res, next) => { options.method = 'POST'; if (!req.params.operation || req.params.operation === 'unlockwallet') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Unlocking Wallet..' }); - options.url = req.session.selectedNode.ln_server_url + '/v1/unlockwallet'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/unlockwallet'; options.form = JSON.stringify({ - wallet_password: Buffer.from(atob(req.body.wallet_password)).toString('base64') + wallet_password: Buffer.from(atob(wallet_password)).toString('base64') }); err_message = 'Unlocking wallet failed! Verify that lnd is running and the wallet is locked!'; } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Initializing Wallet..' }); - options.url = req.session.selectedNode.ln_server_url + '/v1/initwallet'; - if (req.body.aezeed_passphrase && req.body.aezeed_passphrase !== '') { + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/initwallet'; + if (aezeed_passphrase && aezeed_passphrase !== '') { options.form = JSON.stringify({ - wallet_password: Buffer.from(atob(req.body.wallet_password)).toString('base64'), - cipher_seed_mnemonic: req.body.cipher_seed_mnemonic, - aezeed_passphrase: Buffer.from(atob(req.body.aezeed_passphrase)).toString('base64') + wallet_password: Buffer.from(atob(wallet_password)).toString('base64'), + cipher_seed_mnemonic: cipher_seed_mnemonic, + aezeed_passphrase: Buffer.from(atob(aezeed_passphrase)).toString('base64') }); } else { options.form = JSON.stringify({ - wallet_password: Buffer.from(atob(req.body.wallet_password)).toString('base64'), - cipher_seed_mnemonic: req.body.cipher_seed_mnemonic + wallet_password: Buffer.from(atob(wallet_password)).toString('base64'), + cipher_seed_mnemonic: cipher_seed_mnemonic }); } err_message = 'Initializing wallet failed!'; @@ -103,8 +104,8 @@ 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 + '/v2/wallet/utxos'; - if (common.isVersionCompatible(req.session.selectedNode.ln_version, '0.14.0')) { + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/utxos'; + if (common.isVersionCompatible(req.session.selectedNode.lnVersion, '0.14.0')) { options.form = JSON.stringify({ max_confs: req.query.max_confs }); } else { @@ -119,22 +120,23 @@ export const getUTXOs = (req, res, next) => { }); }; export const bumpFee = (req, res, next) => { + const { txid, outputIndex, targetConf, satPerByte } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Bumping Fee..' }); 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 + '/v2/wallet/bumpfee'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/bumpfee'; options.form = {}; options.form.outpoint = { - txid_str: req.body.txid, - output_index: req.body.outputIndex + txid_str: txid, + output_index: outputIndex }; - if (req.body.targetConf) { - options.form.target_conf = req.body.targetConf; + if (targetConf) { + options.form.target_conf = targetConf; } - else if (req.body.satPerByte) { - options.form.sat_per_byte = req.body.satPerByte; + else if (satPerByte) { + options.form.sat_per_byte = satPerByte; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { @@ -151,12 +153,8 @@ export const labelTransaction = (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 + '/v2/wallet/tx/label'; - options.form = {}; - options.form.txid = req.body.txid; - options.form.label = req.body.label; - options.form.overwrite = req.body.overwrite; - options.form = JSON.stringify(options.form); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/tx/label'; + options.form = JSON.stringify(req.body); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Wallet', msg: 'Label Transaction Options', data: options.form }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Transaction Labelled', data: body }); @@ -167,17 +165,18 @@ export const labelTransaction = (req, res, next) => { }); }; export const leaseUTXO = (req, res, next) => { + const { txid, outputIndex } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Leasing UTXO..' }); 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 + '/v2/wallet/utxos/lease'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/utxos/lease'; options.form = {}; - options.form.id = req.body.txid; + options.form.id = txid; options.form.outpoint = { - txid_bytes: req.body.txid, - output_index: req.body.outputIndex + txid_bytes: txid, + output_index: outputIndex }; options.form = JSON.stringify(options.form); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Wallet', msg: 'UTXO Lease Options', data: options.form }); @@ -190,17 +189,18 @@ export const leaseUTXO = (req, res, next) => { }); }; export const releaseUTXO = (req, res, next) => { + const { txid, outputIndex } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Releasing UTXO..' }); 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 + '/v2/wallet/utxos/release'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/utxos/release'; options.form = {}; - options.form.id = req.body.txid; + options.form.id = txid; options.form.outpoint = { - txid_bytes: req.body.txid, - output_index: req.body.outputIndex + txid_bytes: txid, + output_index: outputIndex }; options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/backend/controllers/lnd/webSocketClient.js b/backend/controllers/lnd/webSocketClient.js index 450eb2b3..0519da4f 100644 --- a/backend/controllers/lnd/webSocketClient.js +++ b/backend/controllers/lnd/webSocketClient.js @@ -13,7 +13,7 @@ export class LNDWebSocketClient { this.connect = (selectedNode) => { try { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); - if (!clientExists && selectedNode.ln_server_url) { + if (!clientExists && selectedNode.settings.lnServerUrl) { const newWebSocketClient = { selectedNode: selectedNode }; this.webSocketClients.push(newWebSocketClient); } @@ -25,7 +25,7 @@ export class LNDWebSocketClient { this.fetchUnpaidInvoices = (selectedNode) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Getting Unpaid Invoices..' }); const options = this.setOptionsForSelNode(selectedNode); - options.url = selectedNode.ln_server_url + '/v1/invoices?pending_only=true'; + options.url = selectedNode.settings.lnServerUrl + '/v1/invoices?pending_only=true'; return request(options).then((body) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Unpaid Invoices Received', data: body }); if (body.invoices && body.invoices.length > 0) { @@ -44,7 +44,7 @@ export class LNDWebSocketClient { this.subscribeToInvoice = (options, selectedNode, rHash) => { rHash = rHash?.replace(/\+/g, '-')?.replace(/[/]/g, '_'); this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Invoice ' + rHash + ' ..' }); - options.url = selectedNode.ln_server_url + '/v2/invoices/subscribe/' + rHash; + options.url = selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Invoice Information Received for ' + rHash }); if (typeof msg === 'string') { @@ -67,7 +67,7 @@ export class LNDWebSocketClient { }; this.subscribeToPayment = (options, selectedNode, paymentHash) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Payment ' + paymentHash + ' ..' }); - options.url = selectedNode.ln_server_url + '/v2/router/track/' + paymentHash; + options.url = selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Payment Information Received for ' + paymentHash }); msg['type'] = 'payment'; @@ -84,7 +84,7 @@ export class LNDWebSocketClient { this.setOptionsForSelNode = (selectedNode) => { const options = { url: '', rejectUnauthorized: false, json: true, form: null }; try { - options['headers'] = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(selectedNode.macaroon_path, 'admin.macaroon')).toString('hex') }; + options['headers'] = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(selectedNode.authentication.macaroonPath, 'admin.macaroon')).toString('hex') }; } catch (err) { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: 'WebSocketClient', msg: 'Set Options Error', error: JSON.stringify(err) }); @@ -107,7 +107,7 @@ export class LNDWebSocketClient { } newClient.selectedNode = JSON.parse(JSON.stringify(newSelectedNode)); this.webSocketClients[clientIdx] = newClient; - if (this.webSocketClients[clientIdx].selectedNode.ln_version === '' || !this.webSocketClients[clientIdx].selectedNode.ln_version || this.common.isVersionCompatible(this.webSocketClients[clientIdx].selectedNode.ln_version, '0.11.0')) { + if (this.webSocketClients[clientIdx].selectedNode.lnVersion === '' || !this.webSocketClients[clientIdx].selectedNode.lnVersion || this.common.isVersionCompatible(this.webSocketClients[clientIdx].selectedNode.lnVersion, '0.11.0')) { this.fetchUnpaidInvoices(this.webSocketClients[clientIdx].selectedNode); } }; diff --git a/backend/controllers/shared/RTLConf.js b/backend/controllers/shared/RTLConf.js index 55225e28..a24934ce 100644 --- a/backend/controllers/shared/RTLConf.js +++ b/backend/controllers/shared/RTLConf.js @@ -1,3 +1,4 @@ +import jwt from 'jsonwebtoken'; import * as fs from 'fs'; import { sep } from 'path'; import ini from 'ini'; @@ -7,15 +8,136 @@ import { Database } from '../../utils/database.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; +import { Authentication, SSO } from '../../models/config.model.js'; const options = { url: '' }; const logger = Logger; const common = Common; const wsServer = WSServer; const databaseService = Database; +// Set local block explorer URL after first API call +// if the selected node block explorer has working REST API suite +// otherwise set it to mempool.space +let blockExplorerUrl = ''; +export const getExplorerFeesRecommended = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Recommended Fee Rates..' }); + options.url = (blockExplorerUrl === '') ? + req.session.selectedNode.settings.blockExplorerUrl + '/api/v1/fees/recommended' : + blockExplorerUrl + '/api/v1/fees/recommended'; + request(options).then((body) => { + blockExplorerUrl = req.session.selectedNode.settings.blockExplorerUrl; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Recommended Fee Rates Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + blockExplorerUrl = 'https://mempool.space'; + options.url = blockExplorerUrl + '/api/v1/fees/recommended'; + return request(options).then((body) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Recommended Fee Rates Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + const errMsg = 'Get Recommended Fee Rates Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + }); + }); +}; +export const getExplorerTransaction = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Transaction From Block Explorer..' }); + options.url = (blockExplorerUrl === '') ? + req.session.selectedNode.settings.blockExplorerUrl + '/api/tx/' + req.params.txid : + blockExplorerUrl + '/api/tx/' + req.params.txid; + request(options).then((body) => { + blockExplorerUrl = req.session.selectedNode.settings.blockExplorerUrl; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Transaction From Block Explorer Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + blockExplorerUrl = 'https://mempool.space'; + options.url = blockExplorerUrl + '/api/tx/' + req.params.txid; + return request(options).then((body) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Transaction From Block Explorer Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + const errMsg = 'Get Transaction From Block Explorer Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + }); + }); +}; +export const getCurrencyRates = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Currency Rates..' }); + options.url = 'https://blockchain.info/ticker'; + request(options).then((body) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Currency Rates Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + const errMsg = 'Get Rates Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + }); +}; +export const getFile = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); + const file = req.query.path ? req.query.path : (req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); + fs.readFile(file, 'utf8', (errRes, data) => { + if (errRes) { + if (errRes.code && errRes.code === 'ENOENT') { + errRes.code = 'File Not Found!'; + } + const errMsg = 'Reading File Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + } + else { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); + res.status(200).json(data); + } + }); +}; +export const getApplicationSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting RTL Configuration..' }); + const confFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; + fs.readFile(confFile, 'utf8', (errRes, data) => { + if (errRes) { + const errMsg = 'Get Node Config Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + } + else { + const appConfData = common.removeSecureData(JSON.parse(data)); + appConfData.allowPasswordUpdate = common.appConfig.allowPasswordUpdate; + appConfData.enable2FA = common.appConfig.enable2FA; + appConfData.selectedNodeIndex = (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.selectedNode.index); + common.appConfig.selectedNodeIndex = appConfData.selectedNodeIndex; + const token = req.headers.authorization ? req.headers.authorization.split(' ')[1] : ''; + jwt.verify(token, common.secret_key, (err, user) => { + if (err) { + // Delete unnecessary data for initial response (without security token) + const selNodeIdx = appConfData.nodes.findIndex((node) => node.index === appConfData.selectedNodeIndex) || 0; + appConfData.SSO = new SSO(); + appConfData.secret2FA = ''; + appConfData.dbDirectoryPath = ''; + appConfData.nodes[selNodeIdx].authentication = new Authentication(); + delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; + delete appConfData.nodes[selNodeIdx].settings.lnServerUrl; + delete appConfData.nodes[selNodeIdx].settings.swapServerUrl; + delete appConfData.nodes[selNodeIdx].settings.boltzServerUrl; + delete appConfData.nodes[selNodeIdx].settings.enableOffers; + delete appConfData.nodes[selNodeIdx].settings.enablePeerswap; + delete appConfData.nodes[selNodeIdx].settings.channelBackupPath; + appConfData.nodes = [appConfData.nodes[selNodeIdx]]; + } + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: appConfData }); + res.status(200).json(appConfData); + }); + } + }); +}; export const updateSelectedNode = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Selected Node..' }); - const selNodeIndex = req.params.currNodeIndex ? +req.params.currNodeIndex : common.initSelectedNode ? +common.initSelectedNode.index : 1; + const selNodeIndex = req.params.currNodeIndex ? +req.params.currNodeIndex : common.selectedNode ? +common.selectedNode.index : 1; req.session.selectedNode = common.findNode(selNodeIndex); + common.selectedNode = req.session.selectedNode; 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') { @@ -25,192 +147,9 @@ export const updateSelectedNode = (req, res, next) => { databaseService.loadDatabase(req.session); } } - const responseVal = !req.session.selectedNode.ln_node ? '' : req.session.selectedNode.ln_node; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Selected Node Updated To ' + responseVal }); - res.status(200).json({ status: 'Selected Node Updated To: ' + JSON.stringify(responseVal) + '!' }); -}; -export const getRTLConfigInitial = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Initial RTL Configuration..' }); - const confFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - fs.readFile(confFile, 'utf8', (errRes, data) => { - if (errRes) { - if (errRes.code === 'ENOENT') { - logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'RTLConf', msg: 'Node config does not exist!', error: { error: 'Node config does not exist.' } }); - res.status(200).json({ defaultNodeIndex: 0, selectedNodeIndex: 0, sso: {}, nodes: [] }); - } - else { - const errMsg = 'Get Node Config Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } - } - else { - const nodeConfData = JSON.parse(data); - const sso = { rtlSSO: common.rtl_sso, logoutRedirectLink: common.logout_redirect_link }; - const enable2FA = !!common.rtl_secret2fa; - const allowPasswordUpdate = common.flg_allow_password_update; - const nodesArr = []; - if (common.nodes && common.nodes.length > 0) { - common.nodes.forEach((node, i) => { - 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({ - index: node.index, - lnNode: node.ln_node, - lnImplementation: node.ln_implementation, - settings: settings, - authentication: {} - }); - }); - } - const body = { defaultNodeIndex: nodeConfData.defaultNodeIndex, selectedNodeIndex: (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.initSelectedNode.index), sso: sso, enable2FA: enable2FA, allowPasswordUpdate: allowPasswordUpdate, nodes: nodesArr }; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Initial RTL Configuration Received', data: body }); - res.status(200).json(body); - } - }); -}; -export const getRTLConfig = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting RTL Configuration..' }); - const confFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - fs.readFile(confFile, 'utf8', (errRes, data) => { - if (errRes) { - if (errRes.code === 'ENOENT') { - logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'RTLConf', msg: 'Node config does not exist!', error: { error: 'Node config does not exist.' } }); - res.status(200).json({ defaultNodeIndex: 0, selectedNodeIndex: 0, sso: {}, nodes: [] }); - } - else { - const errMsg = 'Get Node Config Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } - } - else { - const nodeConfData = JSON.parse(data); - const sso = { rtlSSO: common.rtl_sso, logoutRedirectLink: common.logout_redirect_link }; - const enable2FA = !!common.rtl_secret2fa; - const allowPasswordUpdate = common.flg_allow_password_update; - const nodesArr = []; - if (common.nodes && common.nodes.length > 0) { - common.nodes.forEach((node, i) => { - const authentication = {}; - 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 = { 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'; - settings.lnServerUrl = node.ln_server_url; - 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({ - index: node.index, - lnNode: node.ln_node, - lnImplementation: node.ln_implementation, - settings: settings, - authentication: authentication - }); - }); - } - const body = { defaultNodeIndex: nodeConfData.defaultNodeIndex, selectedNodeIndex: (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.initSelectedNode.index), sso: sso, enable2FA: enable2FA, allowPasswordUpdate: allowPasswordUpdate, nodes: nodesArr }; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: body }); - res.status(200).json(body); - } - }); -}; -export const updateUISettings = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating UI Settings..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); - if (node && node.Settings) { - 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'; - } - else { - delete node.Settings.currencyUnit; - } - const selectedNode = common.findNode(req.session.selectedNode.index); - 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'; - } - else { - delete selectedNode.currency_unit; - } - common.replaceNode(req, selectedNode); - } - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'UI Settings Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'Node Settings Updated Successfully' }); - } - catch (errRes) { - const errMsg = 'Update Node Settings Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } -}; -export const update2FASettings = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating 2FA Settings..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - if (req.body.secret2fa && req.body.secret2fa.trim() !== '') { - config.secret2fa = req.body.secret2fa; - } - else { - delete config.secret2fa; - } - const message = req.body.secret2fa.trim() === '' ? 'Two factor authentication disabled successfully.' : 'Two factor authentication enabled successfully.'; - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - common.rtl_secret2fa = config.secret2fa; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: message }); - res.status(201).json({ message: message }); - } - catch (errRes) { - const errMsg = 'Update 2FA Settings Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } -}; -export const updateDefaultNode = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Default Node..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - config.defaultNodeIndex = req.body.defaultNodeIndex; - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Default Node Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'Default Node Updated Successfully' }); - } - catch (errRes) { - const errMsg = 'Update Default Node Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } + blockExplorerUrl = ''; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Selected Node Updated To ' + req.session.selectedNode.lnNode || '' }); + res.status(200).json(common.removeAuthSecureData(JSON.parse(JSON.stringify(req.session.selectedNode)))); }; export const getConfig = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Reading Configuration File..' }); @@ -218,14 +157,14 @@ export const getConfig = (req, res, next) => { let fileFormat = 'INI'; switch (req.params.nodeType) { case 'ln': - confFile = req.session.selectedNode.config_path; + confFile = req.session.selectedNode.authentication.configPath; break; case 'bitcoind': - confFile = req.session.selectedNode.bitcoind_config_path; + confFile = req.session.selectedNode.settings.bitcoindConfigPath; break; case 'rtl': fileFormat = 'JSON'; - confFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; + confFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; break; default: confFile = ''; @@ -251,144 +190,77 @@ export const getConfig = (req, res, next) => { if (jsonConfig['Application Options'] && jsonConfig['Application Options'].color) { jsonConfig['Application Options'].color = '#' + jsonConfig['Application Options'].color; } - if (req.params.nodeType === 'ln' && req.session.selectedNode.ln_implementation === 'ECL' && !jsonConfig['eclair.api.password']) { + if (req.params.nodeType === 'ln' && req.session.selectedNode.lnImplementation === 'ECL' && !jsonConfig['eclair.api.password']) { fileFormat = 'HOCON'; jsonConfig = parseHocon(data); } } - jsonConfig = maskPasswords(jsonConfig); + jsonConfig = common.maskPasswords(jsonConfig); const responseJSON = (fileFormat === 'JSON') ? jsonConfig : ini.stringify(jsonConfig)?.replace('color=\\#', 'color=#'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Configuration File Data Received', data: responseJSON }); res.status(200).json({ format: fileFormat, data: responseJSON }); } }); }; -export const getFile = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); - const file = req.query.path ? req.query.path : (req.session.selectedNode.channel_backup_path + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); - fs.readFile(file, 'utf8', (errRes, data) => { - if (errRes) { - if (errRes.code && errRes.code === 'ENOENT') { - errRes.code = 'File Not Found!'; - } - const errMsg = 'Reading File Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); +export const updateNodeSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Node Settings..' }); + const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; + const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); + if (node && node.settings) { + node.settings = req.body.settings; + if (req.body.authentication.boltzMacaroonPath) { + node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); - res.status(200).json(data); + delete node.authentication.boltzMacaroonPath; } - }); -}; -export const getCurrencyRates = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Currency Rates..' }); - options.url = 'https://blockchain.info/ticker'; - request(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Currency Rates Received', data: body }); - res.status(200).json(JSON.parse(body)); - }).catch((errRes) => { - const errMsg = 'Get Rates Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - }); -}; -export const updateSSO = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating SSO Settings..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - delete config.SSO; - config.SSO = req.body.SSO; + if (req.body.authentication.swapMacaroonPath) { + node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } + else { + delete node.authentication.swapMacaroonPath; + } + } try { fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'SSO Setting Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'SSO Updated Successfully' }); - } - catch (errRes) { - const errMsg = 'Update SSO Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } -}; -export const updateServiceSettings = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Service Settings..' }); - 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.forEach((node) => { - if (node.index === req.session.selectedNode.index) { - switch (req.body.service) { - case 'LOOP': - if (req.body.settings.enable) { - node.Settings.swapServerUrl = req.body.settings.serverUrl; - node.Authentication.swapMacaroonPath = req.body.settings.macaroonPath; - selectedNode.swap_server_url = req.body.settings.serverUrl; - selectedNode.swap_macaroon_path = req.body.settings.macaroonPath; - } - else { - delete node.Settings.swapServerUrl; - delete node.Authentication.swapMacaroonPath; - delete selectedNode.swap_server_url; - delete selectedNode.swap_macaroon_path; - } - break; - case 'BOLTZ': - if (req.body.settings.enable) { - node.Settings.boltzServerUrl = req.body.settings.serverUrl; - node.Authentication.boltzMacaroonPath = req.body.settings.macaroonPath; - selectedNode.boltz_server_url = req.body.settings.serverUrl; - selectedNode.boltz_macaroon_path = req.body.settings.macaroonPath; - } - else { - delete node.Settings.boltzServerUrl; - delete node.Authentication.boltzMacaroonPath; - delete selectedNode.boltz_server_url; - delete selectedNode.boltz_macaroon_path; - } - break; - case 'OFFERS': - 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; - } + const selectedNode = common.findNode(req.session.selectedNode.index); + if (selectedNode && selectedNode.settings) { + selectedNode.settings = req.body.settings; + selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; common.replaceNode(req, selectedNode); } - return node; - }); - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Service Settings Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'Service Settings Updated Successfully' }); + let responseNode = JSON.parse(JSON.stringify(common.selectedNode)); + responseNode = common.removeAuthSecureData(responseNode); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Node Settings Updated', data: responseNode }); + res.status(201).json(responseNode); } catch (errRes) { - const errMsg = 'Update Service Settings Error'; + const errMsg = 'Update Node Settings Error'; const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.error, error: err.error }); } }; -export const maskPasswords = (obj) => { - const keys = Object.keys(obj); - const length = keys.length; - if (length !== 0) { - for (let i = 0; i < length; i++) { - if (typeof obj[keys[i]] === 'object') { - keys[keys[i]] = maskPasswords(obj[keys[i]]); - } - 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('rpcuser'))) { - obj[keys[i]] = '********************'; - } - } +export const updateApplicationSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Application Settings..' }); + const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; + try { + const config = common.addSecureData(req.body); + common.appConfig = JSON.parse(JSON.stringify(config)); + delete config.selectedNodeIndex; + delete config.enable2FA; + delete config.allowPasswordUpdate; + delete config.rtlConfFilePath; + delete config.rtlPass; + fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); + const newConfig = JSON.parse(JSON.stringify(common.appConfig)); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.maskPasswords(newConfig) }); + res.status(201).json(common.removeSecureData(newConfig)); + } + catch (errRes) { + const errMsg = 'Update Default Node Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); } - return obj; }; diff --git a/backend/controllers/shared/authenticate.js b/backend/controllers/shared/authenticate.js index ff5e71ad..3dbf8a1e 100644 --- a/backend/controllers/shared/authenticate.js +++ b/backend/controllers/shared/authenticate.js @@ -44,19 +44,20 @@ const handleMultipleFailedAttemptsError = (failed, currentTime, errMsg) => { }; } }; -export const verifyToken = (twoFAToken) => !!(common.rtl_secret2fa && common.rtl_secret2fa !== '' && otplib.authenticator.check(twoFAToken, common.rtl_secret2fa)); +export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && otplib.authenticator.check(twoFAToken, common.appConfig.secret2FA)); export const authenticateUser = (req, res, next) => { + const { authenticateWith, authenticationValue, twoFAToken } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Authenticating User..' }); - if (+common.rtl_sso) { - if (req.body.authenticateWith === 'JWT' && jwt.verify(req.body.authenticationValue, common.secret_key)) { + if (+common.appConfig.SSO.rtlSso) { + if (authenticateWith === 'JWT' && jwt.verify(authenticationValue, common.secret_key)) { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(406).json({ message: 'SSO Authentication Error', error: 'Login with Password is not allowed with SSO.' }); } - else if (req.body.authenticateWith === 'PASSWORD') { - if (common.cookie_value.trim().length >= 32 && crypto.timingSafeEqual(Buffer.from(crypto.createHash('sha256').update(common.cookie_value).digest('hex'), 'utf-8'), Buffer.from(req.body.authenticationValue, 'utf-8'))) { + else if (authenticateWith === 'PASSWORD') { + if (common.appConfig.SSO.cookieValue.trim().length >= 32 && crypto.timingSafeEqual(Buffer.from(crypto.createHash('sha256').update(common.appConfig.SSO.cookieValue).digest('hex'), 'utf-8'), Buffer.from(authenticationValue, 'utf-8'))) { common.refreshCookie(); if (!req.session.selectedNode) { - req.session.selectedNode = common.initSelectedNode; + req.session.selectedNode = common.selectedNode; } const token = jwt.sign({ user: 'SSO_USER' }, common.secret_key); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); @@ -73,10 +74,10 @@ export const authenticateUser = (req, res, next) => { const currentTime = new Date().getTime(); const reqIP = common.getRequestIP(req); const failed = getFailedInfo(reqIP, currentTime); - const password = req.body.authenticationValue; - if (common.rtl_pass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { - if (req.body.twoFAToken && req.body.twoFAToken !== '') { - if (!verifyToken(req.body.twoFAToken)) { + const password = authenticationValue; + if (common.appConfig.rtlPass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { + if (twoFAToken && twoFAToken !== '') { + if (!verifyToken(twoFAToken)) { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Token! Failed IP ' + reqIP, error: { error: 'Invalid token.' } }); failed.count = failed.count + 1; failed.lastTried = currentTime; @@ -84,7 +85,7 @@ export const authenticateUser = (req, res, next) => { } } if (!req.session.selectedNode) { - req.session.selectedNode = common.initSelectedNode; + req.session.selectedNode = common.selectedNode; } delete failedLoginAttempts[reqIP]; const token = jwt.sign({ user: 'NODE_USER' }, common.secret_key); @@ -93,23 +94,23 @@ export const authenticateUser = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Password! Failed IP ' + reqIP, error: { error: 'Invalid password.' } }); - failed.count = common.rtl_pass !== password ? (failed.count + 1) : failed.count; - failed.lastTried = common.rtl_pass !== password ? currentTime : failed.lastTried; + failed.count = common.appConfig.rtlPass !== password ? (failed.count + 1) : failed.count; + failed.lastTried = common.appConfig.rtlPass !== password ? currentTime : failed.lastTried; return res.status(401).json(handleMultipleFailedAttemptsError(failed, currentTime, 'Invalid Password!')); } } }; export const resetPassword = (req, res, next) => { + const { currPassword, newPassword } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Resetting Password..' }); - if (+common.rtl_sso) { + if (+common.appConfig.SSO.rtlSso) { const errMsg = 'Password cannot be reset for SSO authentication'; const err = common.handleError({ statusCode: 401, message: 'Password Reset Error', error: errMsg }, 'Authenticate', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); } else { - const currPassword = req.body.currPassword; - if (common.rtl_pass === currPassword) { - common.rtl_pass = common.replacePasswordWithHash(req.body.newPassword); + if (common.appConfig.rtlPass === currPassword) { + common.appConfig.rtlPass = common.replacePasswordWithHash(newPassword); const token = jwt.sign({ user: 'NODE_USER' }, common.secret_key); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Password Reset Successful' }); res.status(200).json({ token: token }); diff --git a/backend/controllers/shared/boltz.js b/backend/controllers/shared/boltz.js index 716b9fc7..6af21b1b 100644 --- a/backend/controllers/shared/boltz.js +++ b/backend/controllers/shared/boltz.js @@ -79,6 +79,7 @@ export const getSwapInfo = (req, res, next) => { }); }; export const createSwap = (req, res, next) => { + const { amount, sendFromInternal, address } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Swap..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -87,9 +88,12 @@ export const createSwap = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createswap'; - options.body = { amount: req.body.amount }; - if (req.body.address !== '') { - options.body.address = req.body.address; + options.body = { amount: amount }; + if (sendFromInternal) { + options.body.send_from_internal = sendFromInternal; + } + if (address && address !== '') { + options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Swap Options Body', data: options.body }); request.post(options).then((createSwapRes) => { @@ -101,6 +105,7 @@ export const createSwap = (req, res, next) => { }); }; export const createReverseSwap = (req, res, next) => { + const { amount, acceptZeroConf, address } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Reverse Swap..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -109,9 +114,9 @@ export const createReverseSwap = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createreverseswap'; - options.body = { amount: req.body.amount }; - if (req.body.address !== '') { - options.body.address = req.body.address; + options.body = { amount: amount, accept_zero_conf: acceptZeroConf || false }; + if (address && address !== '') { + options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Reverse Swap Body', data: options.body }); request.post(options).then((createReverseSwapRes) => { @@ -123,6 +128,7 @@ export const createReverseSwap = (req, res, next) => { }); }; export const createChannel = (req, res, next) => { + const { amount, address } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Boltz Channel..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -131,9 +137,9 @@ export const createChannel = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createchannel'; - options.body = { amount: req.body.amount }; - if (req.body.address !== '') { - options.body.address = req.body.address; + options.body = { amount: amount }; + if (address && address !== '') { + options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Channel Options Body', data: options.body }); request.post(options).then((createChannelRes) => { diff --git a/backend/controllers/shared/loop.js b/backend/controllers/shared/loop.js index f0160b04..525b635d 100644 --- a/backend/controllers/shared/loop.js +++ b/backend/controllers/shared/loop.js @@ -5,24 +5,25 @@ let options = null; const logger = Logger; const common = Common; export const loopOut = (req, res, next) => { + const { amount, targetConf, swapRoutingFee, minerFee, prepayRoutingFee, prepayAmt, swapFee, swapPublicationDeadline, chanId, destAddress } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Looping Out..' }); options.uri = '/v1/loop/out'; options.body = { - amt: req.body.amount, - sweep_conf_target: req.body.targetConf, - max_swap_routing_fee: req.body.swapRoutingFee, - max_miner_fee: req.body.minerFee, - max_prepay_routing_fee: req.body.prepayRoutingFee, - max_prepay_amt: req.body.prepayAmt, - max_swap_fee: req.body.swapFee, - swap_publication_deadline: req.body.swapPublicationDeadline, + amt: amount, + sweep_conf_target: targetConf, + max_swap_routing_fee: swapRoutingFee, + max_miner_fee: minerFee, + max_prepay_routing_fee: prepayRoutingFee, + max_prepay_amt: prepayAmt, + max_swap_fee: swapFee, + swap_publication_deadline: swapPublicationDeadline, initiator: 'RTL' }; - if (req.body.chanId !== '') { - options.body['loop_out_channel'] = req.body.chanId; + if (chanId !== '') { + options.body['loop_out_channel'] = chanId; } - if (req.body.destAddress !== '') { - options.body['dest'] = req.body.destAddress; + if (destAddress !== '') { + options.body['dest'] = destAddress; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Loop', msg: 'Loop Out Body', data: options.body }); request.post(options).then((loopOutRes) => { @@ -87,12 +88,13 @@ export const loopOutTermsAndQuotes = (req, res, next) => { }); }; export const loopIn = (req, res, next) => { + const { amount, swapFee, minerFee } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Looping In..' }); options.uri = '/v1/loop/in'; options.body = { - amt: req.body.amount, - max_swap_fee: req.body.swapFee, - max_miner_fee: req.body.minerFee, + amt: amount, + max_swap_fee: swapFee, + max_miner_fee: minerFee, initiator: 'RTL' }; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Loop In Body', data: options.body }); diff --git a/backend/models/config.model.js b/backend/models/config.model.js index a4f23777..c3cb8ead 100644 --- a/backend/models/config.model.js +++ b/backend/models/config.model.js @@ -1,62 +1,72 @@ -export class CommonSelectedNode { - constructor(options, ln_server_url, macaroon_path, macaroon_value, rune_path, rune_value, 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; - this.macaroon_value = macaroon_value; - this.rune_path = rune_path; - this.rune_value = rune_value; - this.ln_api_password = ln_api_password; - this.swap_server_url = swap_server_url; - this.boltz_server_url = boltz_server_url; - this.config_path = config_path; - this.rtl_conf_file_path = rtl_conf_file_path; - this.swap_macaroon_path = swap_macaroon_path; - this.boltz_macaroon_path = boltz_macaroon_path; - this.bitcoind_config_path = bitcoind_config_path; - this.channel_backup_path = channel_backup_path; - this.log_level = log_level; - this.log_file = log_file; - this.index = index; - this.ln_node = ln_node; - this.ln_implementation = ln_implementation; - 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 SSO { + constructor(rtlSso, rtlCookiePath, logoutRedirectLink, cookieValue) { + this.rtlSso = rtlSso; + this.rtlCookiePath = rtlCookiePath; + this.logoutRedirectLink = logoutRedirectLink; + this.cookieValue = cookieValue; } } -export class AuthenticationConfiguration { - constructor(configPath, swapMacaroonPath, boltzMacaroonPath) { - this.configPath = configPath; - this.swapMacaroonPath = swapMacaroonPath; - this.boltzMacaroonPath = boltzMacaroonPath; - } -} -export class NodeSettingsConfiguration { - constructor(userPersona, themeMode, themeColor, unannouncedChannels, fiatConversion, currencyUnit, bitcoindConfigPath, logLevel, lnServerUrl, swapServerUrl, boltzServerUrl, channelBackupPath, enableOffers, enablePeerswap) { +export class Settings { + constructor(blockExplorerUrl, lnServerUrl, swapServerUrl, boltzServerUrl, bitcoindConfigPath, channelBackupPath, logLevel, logFile, userPersona, themeMode, themeColor, unannouncedChannels, fiatConversion, currencyUnit, enableOffers, enablePeerswap) { + this.blockExplorerUrl = blockExplorerUrl; + this.lnServerUrl = lnServerUrl; + this.swapServerUrl = swapServerUrl; + this.boltzServerUrl = boltzServerUrl; + this.bitcoindConfigPath = bitcoindConfigPath; + this.channelBackupPath = channelBackupPath; + this.logLevel = logLevel; + this.logFile = logFile; this.userPersona = userPersona; this.themeMode = themeMode; this.themeColor = themeColor; this.unannouncedChannels = unannouncedChannels; this.fiatConversion = fiatConversion; this.currencyUnit = currencyUnit; - this.bitcoindConfigPath = bitcoindConfigPath; - this.logLevel = logLevel; - this.lnServerUrl = lnServerUrl; - this.swapServerUrl = swapServerUrl; - this.boltzServerUrl = boltzServerUrl; - this.channelBackupPath = channelBackupPath; this.enableOffers = enableOffers; this.enablePeerswap = enablePeerswap; } } +export class Authentication { + constructor(options, configPath, macaroonPath, macaroonValue, runePath, runeValue, lnApiPassword, swapMacaroonPath, boltzMacaroonPath) { + this.options = options; + this.configPath = configPath; + this.macaroonPath = macaroonPath; + this.macaroonValue = macaroonValue; + this.runePath = runePath; + this.runeValue = runeValue; + this.lnApiPassword = lnApiPassword; + this.swapMacaroonPath = swapMacaroonPath; + this.boltzMacaroonPath = boltzMacaroonPath; + } +} +export class ApplicationConfig { + constructor(defaultNodeIndex, selectedNodeIndex, dbDirectoryPath, rtlConfFilePath, rtlPass, multiPass, multiPassHashed, allowPasswordUpdate, enable2FA, secret2FA, SSO, nodes) { + this.defaultNodeIndex = defaultNodeIndex; + this.selectedNodeIndex = selectedNodeIndex; + this.dbDirectoryPath = dbDirectoryPath; + this.rtlConfFilePath = rtlConfFilePath; + this.rtlPass = rtlPass; + this.multiPass = multiPass; + this.multiPassHashed = multiPassHashed; + this.allowPasswordUpdate = allowPasswordUpdate; + this.enable2FA = enable2FA; + this.secret2FA = secret2FA; + this.SSO = SSO; + this.nodes = nodes; + } +} +export class SelectedNode { + constructor(logLevel, logFile, index, lnNode, lnImplementation, lnVersion, settings, authentication) { + this.logLevel = logLevel; + this.logFile = logFile; + this.index = index; + this.lnNode = lnNode; + this.lnImplementation = lnImplementation; + this.lnVersion = lnVersion; + this.settings = settings; + this.authentication = authentication; + } +} export class LogJSONObj { constructor(level, msg, data, error, fileName, selectedNode) { this.level = level; diff --git a/backend/routes/cln/balance.js b/backend/routes/cln/balance.js deleted file mode 100644 index 67cb7945..00000000 --- a/backend/routes/cln/balance.js +++ /dev/null @@ -1,7 +0,0 @@ -import exprs from 'express'; -const { Router } = exprs; -import { isAuthenticated } from '../../utils/authCheck.js'; -import { getBalance } from '../../controllers/cln/balance.js'; -const router = Router(); -router.get('/', isAuthenticated, getBalance); -export default router; diff --git a/backend/routes/cln/fees.js b/backend/routes/cln/fees.js deleted file mode 100644 index 8dbf71d3..00000000 --- a/backend/routes/cln/fees.js +++ /dev/null @@ -1,7 +0,0 @@ -import exprs from 'express'; -const { Router } = exprs; -import { isAuthenticated } from '../../utils/authCheck.js'; -import { getFees } from '../../controllers/cln/fees.js'; -const router = Router(); -router.get('/', isAuthenticated, getFees); -export default router; diff --git a/backend/routes/shared/RTLConf.js b/backend/routes/shared/RTLConf.js index d783092d..0e7d2bf3 100644 --- a/backend/routes/shared/RTLConf.js +++ b/backend/routes/shared/RTLConf.js @@ -1,17 +1,15 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { getRTLConfigInitial, getRTLConfig, updateUISettings, update2FASettings, getConfig, getFile, updateSelectedNode, updateDefaultNode, updateServiceSettings, updateSSO, getCurrencyRates } from '../../controllers/shared/RTLConf.js'; +import { updateNodeSettings, getConfig, getFile, updateSelectedNode, updateApplicationSettings, getCurrencyRates, getApplicationSettings, getExplorerFeesRecommended, getExplorerTransaction } from '../../controllers/shared/RTLConf.js'; const router = Router(); -router.get('/rtlconfinit', getRTLConfigInitial); -router.get('/rtlconf', isAuthenticated, getRTLConfig); -router.post('/', isAuthenticated, updateUISettings); -router.post('/update2FA', isAuthenticated, update2FASettings); -router.get('/config/:nodeType', isAuthenticated, getConfig); +router.get('/', getApplicationSettings); +router.get('/rates', getCurrencyRates); router.get('/file', isAuthenticated, getFile); router.get('/updateSelNode/:currNodeIndex/:prevNodeIndex', updateSelectedNode); -router.post('/updateDefaultNode', updateDefaultNode); -router.post('/updateServiceSettings', updateServiceSettings); -router.post('/updateSSO', updateSSO); -router.get('/rates', getCurrencyRates); +router.get('/config/:nodeType', isAuthenticated, getConfig); +router.post('/node', isAuthenticated, updateNodeSettings); +router.post('/application', isAuthenticated, updateApplicationSettings); +router.get('/explorerFeesRecommended', getExplorerFeesRecommended); +router.get('/explorerTransaction/:txid', getExplorerTransaction); export default router; diff --git a/backend/utils/app.js b/backend/utils/app.js index 8df632ac..5471cf88 100644 --- a/backend/utils/app.js +++ b/backend/utils/app.js @@ -30,7 +30,7 @@ export class ExpressApplication { this.setCORS = () => { CORS.mount(this.app); }; this.setCSRF = () => { CSRF.mount(this.app); }; this.setApplicationRoutes = () => { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Setting up Application Routes..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Setting up Application Routes..' }); this.app.use(this.common.baseHref + '/api', sharedRoutes); this.app.use(this.common.baseHref + '/api/lnd', lndRoutes); this.app.use(this.common.baseHref + '/api/cln', clnRoutes); @@ -45,33 +45,33 @@ export class ExpressApplication { this.handleApplicationErrors(err, res); next(); }); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; this.handleApplicationErrors = (err, res) => { switch (err.code) { case 'EACCES': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); res.status(406).send('Server requires elevated privileges.'); break; case 'EADDRINUSE': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is already in use' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is already in use' }); res.status(409).send('Server is already in use.'); break; case 'ECONNREFUSED': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is down/locked' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is down/locked' }); res.status(401).send('Server is down/locked.'); break; case 'EBADCSRFTOKEN': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); res.status(403).send('Invalid CSRF token, form tempered.'); break; default: - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'DEFUALT ERROR', error: err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'DEFUALT ERROR', error: err }); res.status(400).send(JSON.stringify(err)); break; } }; - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Starting Express Application..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Starting Express Application..' }); this.app.set('trust proxy', true); this.app.use(sessions({ secret: this.common.secret_key, saveUninitialized: true, cookie: { secure: false, maxAge: ONE_DAY }, resave: false })); this.app.use(cookieParser(this.common.secret_key)); diff --git a/backend/utils/authCheck.js b/backend/utils/authCheck.js index aa3d4e04..e6ee9dd1 100644 --- a/backend/utils/authCheck.js +++ b/backend/utils/authCheck.js @@ -46,7 +46,7 @@ export const verifyWSUser = (info, next) => { catch (err) { cookies = {}; updatedReq['cookies'] = JSON.parse(cookies); - logger.log({ selectedNode: common.initSelectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to read CSRF token cookie', data: err }); + logger.log({ selectedNode: common.selectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to read CSRF token cookie', data: err }); } csurfProtection(updatedReq, null, (err) => { if (err) { @@ -58,7 +58,7 @@ export const verifyWSUser = (info, next) => { }); } catch (err) { - logger.log({ selectedNode: common.initSelectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to verify CSRF token', data: err }); + logger.log({ selectedNode: common.selectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to verify CSRF token', data: err }); next(true); } } diff --git a/backend/utils/common.js b/backend/utils/common.js index 66193343..de988150 100644 --- a/backend/utils/common.js +++ b/backend/utils/common.js @@ -8,20 +8,11 @@ export class CommonService { constructor() { this.logger = Logger; this.nodes = []; - this.initSelectedNode = null; - this.rtl_conf_file_path = ''; + this.selectedNode = null; + this.ssoInit = { rtlSso: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }; + this.appConfig = { defaultNodeIndex: 0, selectedNodeIndex: 0, rtlConfFilePath: '', dbDirectoryPath: join(dirname(fileURLToPath(import.meta.url)), '..', '..'), rtlPass: '', allowPasswordUpdate: true, enable2FA: false, secret2FA: '', SSO: this.ssoInit, nodes: [] }; this.port = 3000; this.host = ''; - this.db_directory_path = join(dirname(fileURLToPath(import.meta.url)), '..', '..'); - this.rtl_pass = ''; - this.flg_allow_password_update = true; - this.rtl_secret2fa = ''; - this.rtl_sso = 0; - this.rtl_cookie_path = ''; - this.logout_redirect_link = ''; - this.cookie_value = ''; - this.ln_version = ''; - this.api_version = ''; this.secret_key = crypto.randomBytes(64).toString('hex'); this.read_dummy_data = false; this.baseHref = '/rtl'; @@ -30,98 +21,160 @@ export class CommonService { { 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.maskPasswords = (obj) => { + const keys = Object.keys(obj); + const length = keys.length; + if (length !== 0) { + for (let i = 0; i < length; i++) { + if (typeof obj[keys[i]] === 'object') { + keys[keys[i]] = this.maskPasswords(obj[keys[i]]); + } + if (typeof keys[i] === 'string' && + ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser'))) { + obj[keys[i]] = '*'.repeat(20); + } + } + } + return obj; + }; + this.removeAuthSecureData = (node) => { + delete node.authentication.macaroonPath; + delete node.authentication.runePath; + delete node.authentication.runeValue; + delete node.authentication.lnApiPassword; + delete node.authentication.options; + return node; + }; + this.removeSecureData = (config) => { + delete config.rtlConfFilePath; + delete config.rtlPass; + delete config.multiPass; + delete config.multiPassHashed; + delete config.secret2FA; + config.nodes?.map((node) => this.removeAuthSecureData(node)); + return config; + }; + this.addSecureData = (config) => { + config.rtlConfFilePath = this.appConfig.rtlConfFilePath; + config.rtlPass = this.appConfig.rtlPass; + config.multiPassHashed = this.appConfig.multiPassHashed; + config.SSO.rtlCookiePath = this.appConfig.SSO.rtlCookiePath; + if (this.appConfig.multiPass) { + config.multiPass = this.appConfig.multiPass; + } + if (config.secret2FA === this.appConfig.secret2FA) { + config.secret2FA = this.appConfig.secret2FA; + } + config.nodes.map((node, i) => { + if (this.appConfig && this.appConfig.nodes && this.appConfig.nodes.length > i && this.appConfig.nodes[i].authentication) { + if (this.appConfig.nodes[i].authentication.macaroonPath) { + node.authentication.macaroonPath = this.appConfig.nodes[i].authentication.macaroonPath; + } + if (this.appConfig.nodes[i].authentication.runePath) { + node.authentication.runePath = this.appConfig.nodes[i].authentication.runePath; + } + if (this.appConfig.nodes[i].authentication.lnApiPassword) { + node.authentication.lnApiPassword = this.appConfig.nodes[i].authentication.lnApiPassword; + } + } + return node; + }); + return config; + }; this.setSwapServerOptions = (req) => { const swapOptions = { - baseUrl: req.session.selectedNode.swap_server_url, + baseUrl: req.session.selectedNode.settings.swapServerUrl, uri: '', rejectUnauthorized: false, json: true, headers: { 'Grpc-Metadata-macaroon': '' } }; - if (req.session.selectedNode.swap_macaroon_path) { + if (req.session.selectedNode.authentication.swapMacaroonPath) { try { - swapOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.swap_macaroon_path, 'loop.macaroon')).toString('hex') }; + swapOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.authentication.swapMacaroonPath, 'loop.macaroon')).toString('hex') }; } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); return swapOptions; }; this.getBoltzServerOptions = (req) => { const boltzOptions = { - url: req.session.selectedNode.boltz_server_url, + url: req.session.selectedNode.settings.boltzServerUrl, rejectUnauthorized: false, json: true, headers: { 'Grpc-Metadata-macaroon': '' } }; - if (req.session.selectedNode.boltz_macaroon_path) { + if (req.session.selectedNode.authentication.boltzMacaroonPath) { try { - boltzOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.boltz_macaroon_path, 'admin.macaroon')).toString('hex') }; + boltzOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.authentication.boltzMacaroonPath, 'admin.macaroon')).toString('hex') }; } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); return boltzOptions; }; this.getOptions = (req) => { - if (req.session.selectedNode && req.session.selectedNode.options) { - req.session.selectedNode.options.method = (req.session.selectedNode.ln_implementation && req.session.selectedNode.ln_implementation.toUpperCase() === 'LND') ? 'GET' : 'POST'; - delete req.session.selectedNode.options.form; - delete req.session.selectedNode.options.body; - req.session.selectedNode.options.qs = {}; - return req.session.selectedNode.options; + if (req.session.selectedNode && req.session.selectedNode.authentication.options) { + req.session.selectedNode.authentication.options.method = (req.session.selectedNode.lnImplementation && req.session.selectedNode.lnImplementation.toUpperCase() === 'LND') ? 'GET' : 'POST'; + delete req.session.selectedNode.authentication.options.form; + delete req.session.selectedNode.authentication.options.body; + req.session.selectedNode.authentication.options.qs = {}; + return req.session.selectedNode.authentication.options; } - return this.handleError({ statusCode: 401, message: 'Session expired after a day\'s inactivity' }, 'Session Expired', 'Session Expiry Error', this.initSelectedNode); + return this.handleError({ statusCode: 401, message: 'Session expired after a day\'s inactivity' }, 'Session Expired', 'Session Expiry Error', this.selectedNode); }; this.updateSelectedNodeOptions = (req) => { if (!req.session.selectedNode) { req.session.selectedNode = {}; } - req.session.selectedNode.options = { + req.session.selectedNode.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: null }; try { - if (req.session.selectedNode && req.session.selectedNode.ln_implementation) { - switch (req.session.selectedNode.ln_implementation.toUpperCase()) { + if (req.session.selectedNode && req.session.selectedNode.lnImplementation) { + switch (req.session.selectedNode.lnImplementation.toUpperCase()) { case 'CLN': try { - if (!req.session.selectedNode.rune_value) { - req.session.selectedNode.rune_value = this.getRuneValue(req.session.selectedNode.rune_path); + if (!req.session.selectedNode.authentication.runeValue) { + req.session.selectedNode.authentication.runeValue = this.getRuneValue(req.session.selectedNode.authentication.runePath); } - req.session.selectedNode.options.headers = { rune: req.session.selectedNode.rune_value }; + req.session.selectedNode.authentication.options.headers = { rune: req.session.selectedNode.authentication.runeValue }; } catch (err) { throw new Error(err); } break; case 'ECL': - req.session.selectedNode.options.headers = { authorization: 'Basic ' + Buffer.from(':' + req.session.selectedNode.ln_api_password).toString('base64') }; + req.session.selectedNode.authentication.options.headers = { authorization: 'Basic ' + Buffer.from(':' + req.session.selectedNode.authentication.lnApiPassword).toString('base64') }; break; default: - req.session.selectedNode.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.macaroon_path, 'admin.macaroon')).toString('hex') }; + req.session.selectedNode.authentication.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.authentication.macaroonPath, 'admin.macaroon')).toString('hex') }; break; } } if (req.session.selectedNode) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.ln_node, data: req.session.selectedNode.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode, data: req.session.selectedNode.authentication.options }); } return { status: 200, message: 'Updated Successfully' }; } catch (err) { - req.session.selectedNode.options = { + req.session.selectedNode.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: null }; - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Update Selected Node Options Error', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Update Selected Node Options Error', error: err }); return { status: 502, message: err }; } }; @@ -137,50 +190,50 @@ export class CommonService { } }; this.setOptions = (req) => { - if (this.nodes[0].options && this.nodes[0].options.headers) { + if (this.nodes[0].authentication.options && this.nodes[0].authentication.options.headers) { return; } if (this.nodes && this.nodes.length > 0) { this.nodes.forEach((node) => { - node.options = { + node.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: null }; try { - if (node.ln_implementation) { - switch (node.ln_implementation.toUpperCase()) { + if (node.lnImplementation) { + switch (node.lnImplementation.toUpperCase()) { case 'CLN': try { - if (!node.rune_value) { - node.rune_value = this.getRuneValue(node.rune_path); + if (!node.authentication.runeValue) { + node.authentication.runeValue = this.getRuneValue(node.authentication.runePath); } - node.options.headers = { rune: node.rune_value }; + node.authentication.options.headers = { rune: node.authentication.runeValue }; } catch (err) { throw new Error(err); } break; case 'ECL': - node.options.headers = { authorization: 'Basic ' + Buffer.from(':' + node.ln_api_password).toString('base64') }; + node.authentication.options.headers = { authorization: 'Basic ' + Buffer.from(':' + node.authentication.lnApiPassword).toString('base64') }; break; default: - node.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(node.macaroon_path, 'admin.macaroon')).toString('hex') }; + node.authentication.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(node.authentication.macaroonPath, 'admin.macaroon')).toString('hex') }; break; } } } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Common Set Options Error', error: err }); - node.options = { + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Common Set Options Error', error: err }); + node.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: '' }; } - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.ln_node, data: node.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode, data: node.authentication.options }); }); this.updateSelectedNodeOptions(req); } @@ -250,19 +303,11 @@ export class CommonService { } }; this.handleError = (errRes, fileName, errMsg, selectedNode) => { - let err = JSON.parse(JSON.stringify(errRes)); - if (err && err.error && Object.keys(err.error).length === 0 && errRes.error && (errRes.error.stack || errRes.error.message)) { - errRes.error = errRes.error.stack || errRes.error.message; - err = JSON.parse(JSON.stringify(errRes)); - } - else if (errRes.message || errRes.stack) { - errRes.error = errRes.message || errRes.stack; - err = JSON.parse(JSON.stringify(errRes)); - } + const err = JSON.parse(JSON.stringify(errRes)); if (!selectedNode) { - selectedNode = this.initSelectedNode; + selectedNode = this.selectedNode; } - switch (selectedNode.ln_implementation) { + switch (selectedNode.lnImplementation) { case 'LND': if (err.options && err.options.headers && err.options.headers['Grpc-Metadata-macaroon']) { delete err.options.headers['Grpc-Metadata-macaroon']; @@ -272,11 +317,11 @@ export class CommonService { } break; case 'CLN': - if (err.options && err.options.headers && err.options.headers.macaroon) { - delete err.options.headers.macaroon; + if (err.options && err.options.headers && err.options.headers.rune) { + delete err.options.headers.rune; } - if (err.response && err.response.request && err.response.request.headers && err.response.request.headers.macaroon) { - delete err.response.request.headers.macaroon; + if (err.response && err.response.request && err.response.request.headers && err.response.request.headers.rune) { + delete err.response.request.headers.rune; } break; case 'ECL': @@ -314,7 +359,7 @@ export class CommonService { (err.message && typeof err.message === 'string') ? err.message : (typeof err === 'string') ? err : 'Unknown Error') }; } - if (selectedNode.ln_implementation === 'ECL' && err.message && err.message.indexOf('Authentication Error') < 0 && err.name && err.name === 'StatusCodeError') { + if (selectedNode.lnImplementation === 'ECL' && err.message && err.message.indexOf('Authentication Error') < 0 && err.name && err.name === 'StatusCodeError') { newErrorObj.statusCode = 500; } return newErrorObj; @@ -325,16 +370,16 @@ export class CommonService { req.socket.remoteAddress || (req.connection.socket ? req.connection.socket.remoteAddress : null)); this.getDummyData = (dataKey, lnImplementation) => { - const dummyDataFile = this.rtl_conf_file_path + sep + 'ECLDummyData.log'; + const dummyDataFile = this.appConfig.rtlConfFilePath + sep + 'ECLDummyData.log'; return new Promise((resolve, reject) => { if (this.dummy_data_array_from_file.length === 0) { fs.readFile(dummyDataFile, 'utf8', (err, data) => { if (err) { if (err.code === 'ENOENT') { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Dummy data file does not exist' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Dummy data file does not exist' }); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Getting dummy data failed' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Getting dummy data failed' }); } } else { @@ -349,36 +394,36 @@ export class CommonService { }); }; this.readCookie = () => { - const exists = fs.existsSync(this.rtl_cookie_path); + const exists = fs.existsSync(this.appConfig.SSO.rtlCookiePath); if (exists) { try { - this.cookie_value = fs.readFileSync(this.rtl_cookie_path, 'utf-8'); + this.appConfig.SSO.cookieValue = fs.readFileSync(this.appConfig.SSO.rtlCookiePath, 'utf-8'); } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading cookie: \n' + err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading cookie: \n' + err }); throw new Error(err); } } else { try { - const directoryName = dirname(this.rtl_cookie_path); + const directoryName = dirname(this.appConfig.SSO.rtlCookiePath); this.createDirectory(directoryName); - fs.writeFileSync(this.rtl_cookie_path, crypto.randomBytes(64).toString('hex')); - this.cookie_value = fs.readFileSync(this.rtl_cookie_path, 'utf-8'); + fs.writeFileSync(this.appConfig.SSO.rtlCookiePath, crypto.randomBytes(64).toString('hex')); + this.appConfig.SSO.cookieValue = fs.readFileSync(this.appConfig.SSO.rtlCookiePath, 'utf-8'); } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading the cookie: \n' + err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading the cookie: \n' + err }); throw new Error(err); } } }; this.refreshCookie = () => { try { - fs.writeFileSync(this.rtl_cookie_path, crypto.randomBytes(64).toString('hex')); - this.cookie_value = fs.readFileSync(this.rtl_cookie_path, 'utf-8'); + fs.writeFileSync(this.appConfig.SSO.rtlCookiePath, crypto.randomBytes(64).toString('hex')); + this.appConfig.SSO.cookieValue = fs.readFileSync(this.appConfig.SSO.rtlCookiePath, 'utf-8'); } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while refreshing cookie', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while refreshing cookie', error: err }); throw new Error(err); } }; @@ -405,50 +450,50 @@ export class CommonService { }, initDir); }; this.replacePasswordWithHash = (multiPassHashed) => { - this.rtl_conf_file_path = process.env.RTL_CONFIG_PATH ? process.env.RTL_CONFIG_PATH : join(dirname(fileURLToPath(import.meta.url)), '../..'); + this.appConfig.rtlConfFilePath = process.env.RTL_CONFIG_PATH ? process.env.RTL_CONFIG_PATH : join(dirname(fileURLToPath(import.meta.url)), '../..'); try { - const RTLConfFile = this.rtl_conf_file_path + sep + 'RTL-Config.json'; + const RTLConfFile = this.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); config.multiPassHashed = multiPassHashed; delete config.multiPass; fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Please note that, RTL has encrypted the plaintext password into its corresponding hash' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Please note that, RTL has encrypted the plaintext password into its corresponding hash' }); return config.multiPassHashed; } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Password hashing failed', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Password hashing failed', error: err }); } }; this.getAllNodeAllChannelBackup = (node) => { - const channel_backup_file = node.channel_backup_path + sep + 'channel-all.bak'; + const channel_backup_file = node.settings.channelBackupPath + sep + 'channel-all.bak'; const options = { - url: node.ln_server_url + '/v1/channels/backup', + url: node.settings.lnServerUrl + '/v1/channels/backup', rejectUnauthorized: false, json: true, - headers: { 'Grpc-Metadata-macaroon': fs.readFileSync(node.macaroon_path + '/admin.macaroon').toString('hex') } + headers: { 'Grpc-Metadata-macaroon': fs.readFileSync(node.authentication.macaroonPath + '/admin.macaroon').toString('hex') } }; - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Getting Channel Backup for Node ' + node.ln_node + '..' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Getting Channel Backup for Node ' + node.lnNode + '..' }); request(options).then((body) => { fs.writeFile(channel_backup_file, JSON.stringify(body), (err) => { if (err) { - if (node.ln_node) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.ln_node, error: err }); + if (node.lnNode) { + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.lnNode, error: err }); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for File ' + channel_backup_file, error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for File ' + channel_backup_file, error: err }); } } else { - if (node.ln_node) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for Node ' + node.ln_node, data: body }); + if (node.lnNode) { + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for Node ' + node.lnNode, data: body }); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for File ' + channel_backup_file, data: body }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for File ' + channel_backup_file, data: body }); } } }); }, (err) => { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.ln_node, error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.lnNode, error: err }); fs.writeFile(channel_backup_file, '', () => { }); }); }; @@ -458,8 +503,8 @@ export class CommonService { const pattern = /v?(\d+(\.\d+)*)/; const match = currentVersion.match(pattern); if (match && match.length && match.length > 1) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Global Version ' + match[1] }); - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Checking Compatiblility with Version ' + checkVersion }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Global Version ' + match[1] }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Checking Compatiblility with Version ' + checkVersion }); const currentVersionArr = match[1].split('.') || []; currentVersionArr[1] = currentVersionArr[1].substring(0, 2); const checkVersionsArr = checkVersion.split('.'); @@ -469,7 +514,7 @@ export class CommonService { (+currentVersionArr[0] === +checkVersionsArr[0] && +currentVersionArr[1] === +checkVersionsArr[1] && +currentVersionArr[2] >= +checkVersionsArr[2]); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Invalid Version String ' + currentVersion }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Invalid Version String ' + currentVersion }); return false; } } @@ -479,18 +524,8 @@ export class CommonService { this.logEnvVariables = (req) => { const selNode = req.session.selectedNode; if (selNode && selNode.index) { - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'PORT: ' + this.port }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'HOST: ' + this.host }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'DB_DIRECTORY_PATH: ' + this.db_directory_path }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.rtl_sso }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'DEFAULT NODE INDEX: ' + selNode.index }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'INDEX: ' + selNode.index }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LN NODE: ' + selNode.ln_node }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LN IMPLEMENTATION: ' + selNode.ln_implementation }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'FIAT CONVERSION: ' + selNode.fiat_conversion }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'CURRENCY UNIT: ' + selNode.currency_unit }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LN SERVER URL: ' + selNode.ln_server_url }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LOGOUT REDIRECT LINK: ' + this.logout_redirect_link + '\r\n' }); + this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup:', msg: JSON.stringify(this.removeSecureData(JSON.parse(JSON.stringify(this.appConfig)))) }); + this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.appConfig.SSO.rtlSso }); } }; this.filterData = (dataKey, lnImplementation) => { diff --git a/backend/utils/config.js b/backend/utils/config.js index 9f657249..c34f8a23 100644 --- a/backend/utils/config.js +++ b/backend/utils/config.js @@ -61,11 +61,11 @@ export class ConfigService { index: 1, lnNode: 'Node 1', lnImplementation: 'LND', - Authentication: { + authentication: { macaroonPath: macaroonPath, configPath: configPath }, - Settings: { + settings: { userPersona: 'MERCHANT', themeMode: 'DAY', themeColor: 'PURPLE', @@ -73,7 +73,8 @@ export class ConfigService { logLevel: 'ERROR', lnServerUrl: 'https://127.0.0.1:8080', fiatConversion: false, - unannouncedChannels: false + unannouncedChannels: false, + blockExplorerUrl: 'https://mempool.space' } } ] @@ -95,15 +96,15 @@ export class ConfigService { }; this.updateLogByLevel = () => { let updateLogFlag = false; - this.common.rtl_conf_file_path = process?.env?.RTL_CONFIG_PATH ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); + this.common.appConfig.rtlConfFilePath = process?.env?.RTL_CONFIG_PATH ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); try { - const RTLConfFile = this.common.rtl_conf_file_path + sep + 'RTL-Config.json'; + const RTLConfFile = this.common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); config.nodes.forEach((node) => { - if (node.Settings.hasOwnProperty('enableLogging')) { + if (node.settings.hasOwnProperty('enableLogging')) { updateLogFlag = true; - node.Settings.logLevel = node.Settings.enableLogging ? 'INFO' : 'ERROR'; - delete node.Settings.enableLogging; + node.settings.logLevel = node.settings.enableLogging ? 'INFO' : 'ERROR'; + delete node.settings.enableLogging; } }); if (updateLogFlag) { @@ -115,21 +116,22 @@ export class ConfigService { } }; this.validateNodeConfig = (config) => { + config.allowPasswordUpdate = true; if ((process?.env?.RTL_SSO && +process?.env?.RTL_SSO === 0) || (typeof process?.env?.RTL_SSO === 'undefined' && +config.SSO.rtlSSO === 0)) { if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { - this.common.rtl_pass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); - this.common.flg_allow_password_update = false; + config.rtlPass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); + config.allowPasswordUpdate = false; } else if (config.multiPassHashed && config.multiPassHashed !== '') { - this.common.rtl_pass = config.multiPassHashed; + config.rtlPass = config.multiPassHashed; } else if (config.multiPass && config.multiPass !== '') { - this.common.rtl_pass = this.common.replacePasswordWithHash(this.hash.update(config.multiPass).digest('hex')); + config.rtlPass = this.common.replacePasswordWithHash(this.hash.update(config.multiPass).digest('hex')); } else { this.errMsg = this.errMsg + '\nNode Authentication can be set with multiPass only. Please set multiPass in RTL-Config.json'; } - this.common.rtl_secret2fa = config.secret2fa; + config.enable2FA = !!config.secret2FA; } else { if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { @@ -138,23 +140,23 @@ export class ConfigService { } this.common.port = (process?.env?.PORT) ? this.normalizePort(process?.env?.PORT) : (config.port) ? this.normalizePort(config.port) : 3000; this.common.host = (process?.env?.HOST) ? process?.env?.HOST : (config.host) ? config.host : null; - this.common.db_directory_path = (process?.env?.DB_DIRECTORY_PATH) ? process?.env?.DB_DIRECTORY_PATH : (config.dbDirectoryPath) ? config.dbDirectoryPath : join(dirname(fileURLToPath(import.meta.url)), '..', '..'); + config.dbDirectoryPath = (process?.env?.DB_DIRECTORY_PATH) ? process?.env?.DB_DIRECTORY_PATH : (config.dbDirectoryPath) ? config.dbDirectoryPath : join(dirname(fileURLToPath(import.meta.url)), '..', '..'); if (config.nodes && config.nodes.length > 0) { config.nodes.forEach((node, idx) => { - this.common.nodes[idx] = {}; + this.common.nodes[idx] = { settings: { blockExplorerUrl: '' }, authentication: {} }; this.common.nodes[idx].index = node.index; - this.common.nodes[idx].ln_node = node.lnNode; - this.common.nodes[idx].ln_implementation = (process?.env?.LN_IMPLEMENTATION) ? process?.env?.LN_IMPLEMENTATION : node.lnImplementation ? node.lnImplementation : 'LND'; - if (this.common.nodes[idx].ln_implementation === 'CLT') { - this.common.nodes[idx].ln_implementation = 'CLN'; + this.common.nodes[idx].lnNode = node.lnNode; + this.common.nodes[idx].lnImplementation = (process?.env?.lnImplementation) ? process?.env?.lnImplementation : node.lnImplementation ? node.lnImplementation : 'LND'; + if (this.common.nodes[idx].lnImplementation === 'CLT') { + this.common.nodes[idx].lnImplementation = 'CLN'; } - switch (this.common.nodes[idx].ln_implementation) { + switch (this.common.nodes[idx].lnImplementation) { case 'CLN': if (process?.env?.RUNE_PATH && process?.env?.RUNE_PATH.trim() !== '') { - this.common.nodes[idx].rune_path = process?.env?.RUNE_PATH; + this.common.nodes[idx].authentication.runePath = process?.env?.RUNE_PATH; } - else if (node.Authentication && node.Authentication.runePath && node.Authentication.runePath.trim() !== '') { - this.common.nodes[idx].rune_path = node.Authentication.runePath; + else if (node.authentication && node.authentication.runePath && node.authentication.runePath.trim() !== '') { + this.common.nodes[idx].authentication.runePath = node.authentication.runePath; } else { this.errMsg = 'Please set rune path for node index ' + node.index + ' in RTL-Config.json!'; @@ -162,21 +164,21 @@ export class ConfigService { break; case 'ECL': if (process?.env?.LN_API_PASSWORD) { - this.common.nodes[idx].ln_api_password = process?.env?.LN_API_PASSWORD; + this.common.nodes[idx].authentication.lnApiPassword = process?.env?.LN_API_PASSWORD; } - else if (node.Authentication && node.Authentication.lnApiPassword) { - this.common.nodes[idx].ln_api_password = node.Authentication.lnApiPassword; + else if (node.authentication && node.authentication.lnApiPassword) { + this.common.nodes[idx].authentication.lnApiPassword = node.authentication.lnApiPassword; } else { - this.common.nodes[idx].ln_api_password = ''; + this.common.nodes[idx].authentication.lnApiPassword = ''; } break; default: if (process?.env?.MACAROON_PATH && process?.env?.MACAROON_PATH.trim() !== '') { - this.common.nodes[idx].macaroon_path = process?.env?.MACAROON_PATH; + this.common.nodes[idx].authentication.macaroonPath = process?.env?.MACAROON_PATH; } - else if (node.Authentication && node.Authentication.macaroonPath && node.Authentication.macaroonPath.trim() !== '') { - this.common.nodes[idx].macaroon_path = node.Authentication.macaroonPath; + else if (node.authentication && node.authentication.macaroonPath && node.authentication.macaroonPath.trim() !== '') { + this.common.nodes[idx].authentication.macaroonPath = node.authentication.macaroonPath; } else { this.errMsg = 'Please set macaroon path for node index ' + node.index + ' in RTL-Config.json!'; @@ -184,114 +186,115 @@ export class ConfigService { break; } if (process?.env?.CONFIG_PATH) { - this.common.nodes[idx].config_path = process?.env?.CONFIG_PATH; + this.common.nodes[idx].authentication.configPath = process?.env?.CONFIG_PATH; } - else if (node.Authentication && node.Authentication.configPath) { - this.common.nodes[idx].config_path = node.Authentication.configPath; + else if (node.authentication && node.authentication.configPath) { + this.common.nodes[idx].authentication.configPath = node.authentication.configPath; } else { - this.common.nodes[idx].config_path = ''; + this.common.nodes[idx].authentication.configPath = ''; } - if (this.common.nodes[idx].ln_implementation === 'ECL' && this.common.nodes[idx].ln_api_password === '' && this.common.nodes[idx].config_path !== '') { + if (this.common.nodes[idx].lnImplementation === 'ECL' && this.common.nodes[idx].authentication.lnApiPassword === '' && this.common.nodes[idx].authentication.configPath !== '') { try { - const exists = fs.existsSync(this.common.nodes[idx].config_path || ''); + const exists = fs.existsSync(this.common.nodes[idx].authentication.configPath || ''); if (exists) { try { - const configFile = fs.readFileSync((this.common.nodes[idx].config_path || ''), 'utf-8'); + const configFile = fs.readFileSync((this.common.nodes[idx].authentication.configPath || ''), 'utf-8'); const iniParsed = ini.parse(configFile); - this.common.nodes[idx].ln_api_password = iniParsed['eclair.api.password'] ? iniParsed['eclair.api.password'] : parseHocon(configFile).eclair.api.password; + this.common.nodes[idx].authentication.lnApiPassword = iniParsed['eclair.api.password'] ? iniParsed['eclair.api.password'] : parseHocon(configFile).eclair.api.password; } catch (err) { this.errMsg = this.errMsg + '\nSomething went wrong while reading config file: \n' + err; } } else { - this.errMsg = this.errMsg + '\nInvalid config path: ' + this.common.nodes[idx].config_path; + this.errMsg = this.errMsg + '\nInvalid config path: ' + this.common.nodes[idx].authentication.configPath; } } catch (err) { this.errMsg = this.errMsg + '\nUnable to read config file: \n' + err; } } - if (this.common.nodes[idx].ln_implementation === 'ECL' && this.common.nodes[idx].ln_api_password === '') { + if (this.common.nodes[idx].lnImplementation === 'ECL' && this.common.nodes[idx].authentication.lnApiPassword === '') { this.errMsg = this.errMsg + '\nPlease set config path Or api password for node index ' + node.index + ' in RTL-Config.json! It is mandatory for Eclair authentication!'; } if (process?.env?.LN_SERVER_URL && process?.env?.LN_SERVER_URL.trim() !== '') { - this.common.nodes[idx].ln_server_url = process?.env?.LN_SERVER_URL.endsWith('/v1') ? process?.env?.LN_SERVER_URL.slice(0, -3) : process?.env?.LN_SERVER_URL; + this.common.nodes[idx].settings.lnServerUrl = process?.env?.LN_SERVER_URL.endsWith('/v1') ? process?.env?.LN_SERVER_URL.slice(0, -3) : process?.env?.LN_SERVER_URL; } else if (process?.env?.LND_SERVER_URL && process?.env?.LND_SERVER_URL.trim() !== '') { - this.common.nodes[idx].ln_server_url = process?.env?.LND_SERVER_URL.endsWith('/v1') ? process?.env?.LND_SERVER_URL.slice(0, -3) : process?.env?.LND_SERVER_URL; + this.common.nodes[idx].settings.lnServerUrl = process?.env?.LND_SERVER_URL.endsWith('/v1') ? process?.env?.LND_SERVER_URL.slice(0, -3) : process?.env?.LND_SERVER_URL; } - else if (node.Settings.lnServerUrl && node.Settings.lnServerUrl.trim() !== '') { - this.common.nodes[idx].ln_server_url = node.Settings.lnServerUrl.endsWith('/v1') ? node.Settings.lnServerUrl.slice(0, -3) : node.Settings.lnServerUrl; + else if (node.settings.lnServerUrl && node.settings.lnServerUrl.trim() !== '') { + this.common.nodes[idx].settings.lnServerUrl = node.settings.lnServerUrl.endsWith('/v1') ? node.settings.lnServerUrl.slice(0, -3) : node.settings.lnServerUrl; } - else if (node.Settings.lndServerUrl && node.Settings.lndServerUrl.trim() !== '') { - this.common.nodes[idx].ln_server_url = node.Settings.lndServerUrl.endsWith('/v1') ? node.Settings.lndServerUrl.slice(0, -3) : node.Settings.lndServerUrl; + else if (node.settings.lndServerUrl && node.settings.lndServerUrl.trim() !== '') { + this.common.nodes[idx].settings.lnServerUrl = node.settings.lndServerUrl.endsWith('/v1') ? node.settings.lndServerUrl.slice(0, -3) : node.settings.lndServerUrl; } else { this.errMsg = this.errMsg + '\nPlease set LN Server URL for node index ' + node.index + ' in RTL-Config.json!'; } - 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) { - this.common.nodes[idx].currency_unit = node.Settings.currencyUnit ? node.Settings.currencyUnit : 'USD'; + this.common.nodes[idx].settings.userPersona = node.settings.userPersona ? node.settings.userPersona : 'MERCHANT'; + this.common.nodes[idx].settings.themeMode = node.settings.themeMode ? node.settings.themeMode : 'DAY'; + this.common.nodes[idx].settings.themeColor = node.settings.themeColor ? node.settings.themeColor : 'PURPLE'; + this.common.nodes[idx].settings.unannouncedChannels = node.settings.unannouncedChannels ? !!node.settings.unannouncedChannels : false; + this.common.nodes[idx].settings.logLevel = node.settings.logLevel ? node.settings.logLevel : 'ERROR'; + this.common.nodes[idx].settings.fiatConversion = node.settings.fiatConversion ? !!node.settings.fiatConversion : false; + if (this.common.nodes[idx].settings.fiatConversion) { + this.common.nodes[idx].settings.currencyUnit = node.settings.currencyUnit ? node.settings.currencyUnit : 'USD'; } if (process?.env?.SWAP_SERVER_URL && process?.env?.SWAP_SERVER_URL.trim() !== '') { - this.common.nodes[idx].swap_server_url = process?.env?.SWAP_SERVER_URL.endsWith('/v1') ? process?.env?.SWAP_SERVER_URL.slice(0, -3) : process?.env?.SWAP_SERVER_URL; - this.common.nodes[idx].swap_macaroon_path = process?.env?.SWAP_MACAROON_PATH; + this.common.nodes[idx].settings.swapServerUrl = process?.env?.SWAP_SERVER_URL.endsWith('/v1') ? process?.env?.SWAP_SERVER_URL.slice(0, -3) : process?.env?.SWAP_SERVER_URL; + this.common.nodes[idx].authentication.swapMacaroonPath = process?.env?.SWAP_MACAROON_PATH; } - else if (node.Settings.swapServerUrl && node.Settings.swapServerUrl.trim() !== '') { - this.common.nodes[idx].swap_server_url = node.Settings.swapServerUrl.endsWith('/v1') ? node.Settings.swapServerUrl.slice(0, -3) : node.Settings.swapServerUrl; - this.common.nodes[idx].swap_macaroon_path = node.Authentication.swapMacaroonPath ? node.Authentication.swapMacaroonPath : ''; + else if (node.settings.swapServerUrl && node.settings.swapServerUrl.trim() !== '') { + this.common.nodes[idx].settings.swapServerUrl = node.settings.swapServerUrl.endsWith('/v1') ? node.settings.swapServerUrl.slice(0, -3) : node.settings.swapServerUrl; + this.common.nodes[idx].authentication.swapMacaroonPath = node.authentication.swapMacaroonPath ? node.authentication.swapMacaroonPath : ''; } else { - this.common.nodes[idx].swap_server_url = ''; - this.common.nodes[idx].swap_macaroon_path = ''; + this.common.nodes[idx].settings.swapServerUrl = ''; + this.common.nodes[idx].authentication.swapMacaroonPath = ''; } if (process?.env?.BOLTZ_SERVER_URL && process?.env?.BOLTZ_SERVER_URL.trim() !== '') { - this.common.nodes[idx].boltz_server_url = process?.env?.BOLTZ_SERVER_URL.endsWith('/v1') ? process?.env?.BOLTZ_SERVER_URL.slice(0, -3) : process?.env?.BOLTZ_SERVER_URL; - this.common.nodes[idx].boltz_macaroon_path = process?.env?.BOLTZ_MACAROON_PATH; + this.common.nodes[idx].settings.boltzServerUrl = process?.env?.BOLTZ_SERVER_URL.endsWith('/v1') ? process?.env?.BOLTZ_SERVER_URL.slice(0, -3) : process?.env?.BOLTZ_SERVER_URL; + this.common.nodes[idx].authentication.boltzMacaroonPath = process?.env?.BOLTZ_MACAROON_PATH; } - else if (node.Settings.boltzServerUrl && node.Settings.boltzServerUrl.trim() !== '') { - this.common.nodes[idx].boltz_server_url = node.Settings.boltzServerUrl.endsWith('/v1') ? node.Settings.boltzServerUrl.slice(0, -3) : node.Settings.boltzServerUrl; - this.common.nodes[idx].boltz_macaroon_path = node.Authentication.boltzMacaroonPath ? node.Authentication.boltzMacaroonPath : ''; + else if (node.settings.boltzServerUrl && node.settings.boltzServerUrl.trim() !== '') { + this.common.nodes[idx].settings.boltzServerUrl = node.settings.boltzServerUrl.endsWith('/v1') ? node.settings.boltzServerUrl.slice(0, -3) : node.settings.boltzServerUrl; + this.common.nodes[idx].authentication.boltzMacaroonPath = node.authentication.boltzMacaroonPath ? node.authentication.boltzMacaroonPath : ''; } else { - this.common.nodes[idx].boltz_server_url = ''; - this.common.nodes[idx].boltz_macaroon_path = ''; + this.common.nodes[idx].settings.boltzServerUrl = ''; + this.common.nodes[idx].authentication.boltzMacaroonPath = ''; } - 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; + this.common.nodes[idx].settings.enableOffers = process?.env?.ENABLE_OFFERS ? process?.env?.ENABLE_OFFERS : (node.settings.enableOffers) ? node.settings.enableOffers : false; + this.common.nodes[idx].settings.enablePeerswap = process?.env?.ENABLE_PEERSWAP ? process?.env?.ENABLE_PEERSWAP : (node.settings.enablePeerswap) ? node.settings.enablePeerswap : false; + this.common.nodes[idx].settings.bitcoindConfigPath = process?.env?.BITCOIND_CONFIG_PATH ? process?.env?.BITCOIND_CONFIG_PATH : (node.settings.bitcoindConfigPath) ? node.settings.bitcoindConfigPath : ''; + this.common.nodes[idx].settings.channelBackupPath = process?.env?.CHANNEL_BACKUP_PATH ? process?.env?.CHANNEL_BACKUP_PATH : (node.settings.channelBackupPath) ? node.settings.channelBackupPath : this.common.appConfig.rtlConfFilePath + sep + 'channels-backup' + sep + 'node-' + node.index; + this.common.nodes[idx].settings.blockExplorerUrl = process?.env?.BLOCK_EXPLORER_URL ? process.env.BLOCK_EXPLORER_URL : (node.settings.blockExplorerUrl) ? node.settings.blockExplorerUrl : 'https://mempool.space'; try { - this.common.createDirectory(this.common.nodes[idx].channel_backup_path); - const exists = fs.existsSync(this.common.nodes[idx].channel_backup_path + sep + 'channel-all.bak'); + this.common.createDirectory(this.common.nodes[idx].settings.channelBackupPath); + const exists = fs.existsSync(this.common.nodes[idx].settings.channelBackupPath + sep + 'channel-all.bak'); if (!exists) { try { - if (this.common.nodes[idx].ln_implementation === 'LND') { + if (this.common.nodes[idx].lnImplementation === 'LND') { this.common.getAllNodeAllChannelBackup(this.common.nodes[idx]); } else { - const createStream = fs.createWriteStream(this.common.nodes[idx].channel_backup_path + sep + 'channel-all.bak'); + const createStream = fs.createWriteStream(this.common.nodes[idx].settings.channelBackupPath + sep + 'channel-all.bak'); createStream.end(); } } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating backup file: \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating backup file: \n' + err }); } } } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); } - this.common.nodes[idx].log_file = this.common.rtl_conf_file_path + '/logs/RTL-Node-' + node.index + '.log'; - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); - const log_file = this.common.nodes[idx].log_file; + this.common.nodes[idx].settings.logFile = config.rtlConfFilePath + '/logs/RTL-Node-' + node.index + '.log'; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); + const log_file = this.common.nodes[idx].settings.logFile; if (fs.existsSync(log_file || '')) { fs.writeFile((log_file || ''), '', () => { }); } @@ -303,7 +306,7 @@ export class ConfigService { createStream.end(); } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating log file ' + log_file + ': \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating log file ' + log_file + ': \n' + err }); } } }); @@ -315,28 +318,28 @@ export class ConfigService { }; this.setSSOParams = (config) => { if (process?.env?.RTL_SSO) { - this.common.rtl_sso = +process?.env?.RTL_SSO; + config.SSO.rtlSso = +process?.env?.RTL_SSO; } else if (config.SSO && config.SSO.rtlSSO) { - this.common.rtl_sso = config.SSO.rtlSSO; + config.SSO.rtlSso = config.SSO.rtlSSO; } if (process?.env?.RTL_COOKIE_PATH) { - this.common.rtl_cookie_path = process?.env?.RTL_COOKIE_PATH; + config.SSO.rtlCookiePath = process?.env?.RTL_COOKIE_PATH; } else if (config.SSO && config.SSO.rtlCookiePath) { - this.common.rtl_cookie_path = config.SSO.rtlCookiePath; + config.SSO.rtlCookiePath = config.SSO.rtlCookiePath; } else { - this.common.rtl_cookie_path = ''; + config.SSO.rtlCookiePath = ''; } if (process?.env?.LOGOUT_REDIRECT_LINK) { - this.common.logout_redirect_link = process?.env?.LOGOUT_REDIRECT_LINK; + config.SSO.logoutRedirectLink = process?.env?.LOGOUT_REDIRECT_LINK; } else if (config.SSO && config.SSO.logoutRedirectLink) { - this.common.logout_redirect_link = config.SSO.logoutRedirectLink; + config.SSO.logoutRedirectLink = config.SSO.logoutRedirectLink; } - if (+this.common.rtl_sso) { - if (!this.common.rtl_cookie_path || this.common.rtl_cookie_path.trim() === '') { + if (+config.SSO.rtlSso) { + if (!config.SSO.rtlCookiePath || config.SSO.rtlCookiePath.trim() === '') { this.errMsg = 'Please set rtlCookiePath value for single sign on option!'; } else { @@ -346,26 +349,49 @@ export class ConfigService { }; this.setSelectedNode = (config) => { if (config.defaultNodeIndex) { - this.common.initSelectedNode = this.common.findNode(config.defaultNodeIndex) || {}; + this.common.selectedNode = this.common.findNode(config.defaultNodeIndex) || {}; } else { - this.common.initSelectedNode = this.common.findNode(this.common.nodes[0].index) || {}; + this.common.selectedNode = this.common.findNode(this.common.nodes[0].index) || {}; } }; + this.updateConfig = (confFileFullPath, config) => { + // Update Config file to change Settings to settings and Authentication to authentication + // Added in v0.15.1, remove in a year? + if (!config.nodes) { + return; + } + config.nodes.map((node) => { + if (node.Authentication) { + node.authentication = JSON.parse(JSON.stringify(node.Authentication)); + delete node.Authentication; + } + if (node.Settings) { + node.settings = JSON.parse(JSON.stringify(node.Settings)); + delete node.Settings; + } + return node; + }); + fs.writeFileSync(confFileFullPath, JSON.stringify(config, null, 2), 'utf-8'); + }; this.setServerConfiguration = () => { + const rtlConfFilePath = (process?.env?.RTL_CONFIG_PATH) ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); + const confFileFullPath = rtlConfFilePath + sep + 'RTL-Config.json'; try { - this.common.rtl_conf_file_path = (process?.env?.RTL_CONFIG_PATH) ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); - const confFileFullPath = this.common.rtl_conf_file_path + sep + 'RTL-Config.json'; if (!fs.existsSync(confFileFullPath)) { - fs.writeFileSync(confFileFullPath, JSON.stringify(this.setDefaultConfig())); + fs.writeFileSync(confFileFullPath, JSON.stringify(this.setDefaultConfig(), null, 2), 'utf-8'); } const config = JSON.parse(fs.readFileSync(confFileFullPath, 'utf-8')); + this.updateConfig(confFileFullPath, config); + config.rtlConfFilePath = rtlConfFilePath; this.updateLogByLevel(); this.validateNodeConfig(config); this.setSelectedNode(config); + this.common.appConfig = config; } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while configuring the node server: \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Config file path: ' + confFileFullPath }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while configuring the node server: \n' + err }); throw new Error(err); } }; diff --git a/backend/utils/cors.js b/backend/utils/cors.js index 4137b13d..b9f6f8a5 100644 --- a/backend/utils/cors.js +++ b/backend/utils/cors.js @@ -6,7 +6,7 @@ class CORS { this.common = Common; } mount(app) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CORS', msg: 'Setting up CORS..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CORS', msg: 'Setting up CORS..' }); app.use((req, res, next) => { res.setHeader('Cache-Control', 'no-cache'); res.setHeader('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization, filePath'); @@ -17,7 +17,7 @@ class CORS { } next(); }); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CORS', msg: 'CORS Set' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CORS', msg: 'CORS Set' }); return app; } ; diff --git a/backend/utils/csrf.js b/backend/utils/csrf.js index bca5ab20..94c3b41d 100644 --- a/backend/utils/csrf.js +++ b/backend/utils/csrf.js @@ -8,11 +8,11 @@ class CSRF { this.common = Common; } mount(app) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); if (process.env.NODE_ENV !== 'development') { app.use((req, res, next) => this.csrfProtection(req, res, next)); } - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CSRF', msg: 'CSRF Set' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'CSRF Set' }); return app; } ; diff --git a/backend/utils/database.js b/backend/utils/database.js index 84949bfc..8e5301e2 100644 --- a/backend/utils/database.js +++ b/backend/utils/database.js @@ -7,12 +7,12 @@ export class DatabaseService { constructor() { this.common = Common; this.logger = Logger; - this.dbDirectory = join(this.common.db_directory_path, 'database'); + this.dbDirectory = join(this.common.appConfig.dbDirectoryPath, 'database'); this.nodeDatabase = {}; } migrateDatabase() { this.common.nodes?.map((node) => { - if (node.ln_implementation === 'ECL') { + if (node.lnImplementation === 'ECL') { this.nodeDatabase[node.index] = { adapter: null, data: {} }; this.nodeDatabase[node.index].adapter = new DatabaseAdapter(this.dbDirectory, node); this.fetchNodeData(node); @@ -80,7 +80,7 @@ export class DatabaseService { } } fetchNodeData(selectedNode) { - switch (selectedNode.ln_implementation) { + switch (selectedNode.lnImplementation) { case 'CLN': for (const collectionName in CLNCollection) { if (CLNCollection.hasOwnProperty(collectionName)) { @@ -250,14 +250,14 @@ export class DatabaseAdapter { 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)) { + if (selNode.lnImplementation === 'CLN' && fs.existsSync(oldFilePath)) { this.renameOldDB(oldFilePath, selNode); } // For backward compatibility End this.insertSession(id); } renameOldDB(oldFilePath, selNode = null) { - const newFilePath = this.dbFilePath + sep + 'rtldb-' + selNode.ln_implementation + '-Offers.json'; + const newFilePath = this.dbFilePath + sep + 'rtldb-' + selNode.lnImplementation + '-Offers.json'; try { this.common.createDirectory(this.dbFilePath); const oldOffers = JSON.parse(fs.readFileSync(oldFilePath, 'utf-8')); @@ -277,7 +277,7 @@ export class DatabaseAdapter { catch (err) { throw new Error(JSON.stringify(err)); } - const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.lnImplementation + '-' + collectionName + '.json'; try { if (!fs.existsSync(collectionFilePath)) { fs.writeFileSync(collectionFilePath, '[]'); @@ -290,15 +290,15 @@ export class DatabaseAdapter { const otherFiles = fs.readdirSync(this.dbFilePath); otherFiles.forEach((oFileName) => { let collectionValid = false; - switch (this.selNode.ln_implementation) { + switch (this.selNode.lnImplementation) { case 'CLN': - collectionValid = CLNCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + collectionValid = CLNCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.lnImplementation + '-' + collection + '.json'), false); break; case 'ECL': - collectionValid = ECLCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + collectionValid = ECLCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.lnImplementation + '-' + collection + '.json'), false); break; default: - collectionValid = LNDCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + collectionValid = LNDCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.lnImplementation + '-' + collection + '.json'), false); break; } if (oFileName.endsWith('.json') && !collectionValid) { @@ -324,7 +324,7 @@ export class DatabaseAdapter { saveData(collectionName, collectionData) { try { if (collectionData) { - const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.lnImplementation + '-' + collectionName + '.json'; const tempFile = collectionFilePath + '.tmp'; fs.writeFileSync(tempFile, JSON.stringify(collectionData, null, 2)); fs.renameSync(tempFile, collectionFilePath); diff --git a/backend/utils/logger.js b/backend/utils/logger.js index e2fc12c6..7ce9dbb1 100644 --- a/backend/utils/logger.js +++ b/backend/utils/logger.js @@ -16,15 +16,15 @@ export class LoggerService { msgStr = msgStr + '.\r\n'; } console.error(msgStr); - if (msgJSON.selectedNode && msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } break; case 'WARN': msgStr = prepMsgData(msgJSON, msgStr); - if (!msgJSON.selectedNode || msgJSON.selectedNode.log_level === 'WARN' || msgJSON.selectedNode.log_level === 'INFO' || msgJSON.selectedNode.log_level === 'DEBUG') { - if (msgJSON.selectedNode && msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (!msgJSON.selectedNode || msgJSON.selectedNode.settings.logLevel === 'WARN' || msgJSON.selectedNode.settings.logLevel === 'INFO' || msgJSON.selectedNode.settings.logLevel === 'DEBUG') { + if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } break; @@ -32,18 +32,18 @@ export class LoggerService { if (!msgJSON.selectedNode && msgJSON.fileName === 'RTL') { console.log(msgStr + '.\r\n'); } - else if (msgJSON.selectedNode && msgJSON.selectedNode.log_level === 'INFO') { + else if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logLevel === 'INFO') { msgStr = msgStr + '.\r\n'; console.log(msgStr); - if (msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } - else if (msgJSON.selectedNode && msgJSON.selectedNode.log_level === 'DEBUG') { + else if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logLevel === 'DEBUG') { msgStr = prepMsgData(msgJSON, msgStr); console.log(msgStr); - if (msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } break; @@ -51,11 +51,11 @@ export class LoggerService { if (!msgJSON.selectedNode) { console.log(msgStr + '.\r\n'); } - else if (msgJSON.selectedNode && msgJSON.selectedNode.log_level === 'DEBUG') { + else if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logLevel === 'DEBUG') { msgStr = prepMsgData(msgJSON, msgStr); console.log(msgStr); - if (msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } break; diff --git a/backend/utils/webSocketServer.js b/backend/utils/webSocketServer.js index 590201f5..e30e7671 100644 --- a/backend/utils/webSocketServer.js +++ b/backend/utils/webSocketServer.js @@ -28,7 +28,7 @@ export class RTLWebSocketServer { } }, 1000 * 60 * 60); // Terminate broken connections every hour this.mount = (httpServer) => { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connecting Websocket Server..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connecting Websocket Server..' }); this.webSocketServer = new WebSocketServer({ noServer: true, path: this.common.baseHref + '/api/ws', verifyClient: (process.env.NODE_ENV === 'development') ? null : verifyWSUser }); httpServer.on('upgrade', (request, socket, head) => { if (request.headers['upgrade'] !== 'websocket') { @@ -46,7 +46,7 @@ export class RTLWebSocketServer { }); this.webSocketServer.on('connection', this.mountEventsOnConnection); this.webSocketServer.on('close', () => clearInterval(this.pingInterval)); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Websocket Server Connected' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Websocket Server Connected' }); }; this.upgradeCallback = (websocket, request) => { this.webSocketServer.emit('connection', websocket, request); @@ -58,13 +58,13 @@ export class RTLWebSocketServer { websocket.isAlive = true; 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 }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connected: ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); websocket.on('error', this.sendErrorToAllLNClients); websocket.on('message', this.sendEventsToAllLNClients); websocket.on('pong', () => { websocket.isAlive = true; }); websocket.on('close', (code, reason) => { this.updateLNWSClientDetails(websocket.sessionId, -1, websocket.clientNodeIndex); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Disconnected due to ' + code + ' : ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Disconnected due to ' + code + ' : ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); }); }; this.updateLNWSClientDetails = (sessionId, currNodeIndex, prevNodeIndex) => { @@ -85,7 +85,7 @@ export class RTLWebSocketServer { } else { const selectedNode = this.common.findNode(currNodeIndex); - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Invalid Node Selection. Previous and current node indices can not be less than zero.' }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Invalid Node Selection. Previous and current node indices can not be less than zero.' }); } }; this.disconnectFromNodeClient = (sessionId, prevNodeIndex) => { @@ -99,8 +99,8 @@ export class RTLWebSocketServer { const foundClientIdx = this.clientDetails.findIndex((clientDetail) => clientDetail.index === +prevNodeIndex); this.clientDetails.splice(foundClientIdx, 1); const prevSelectedNode = this.common.findNode(prevNodeIndex); - if (prevSelectedNode && prevSelectedNode.ln_implementation) { - switch (prevSelectedNode.ln_implementation) { + if (prevSelectedNode && prevSelectedNode.lnImplementation) { + switch (prevSelectedNode.lnImplementation) { case 'LND': this.eventEmitterLND.emit('DISCONNECT', prevNodeIndex); break; @@ -129,8 +129,8 @@ export class RTLWebSocketServer { const currSelectedNode = this.common.findNode(currNodeIndex); foundClient = { index: currNodeIndex, sessionIds: [sessionId] }; this.clientDetails.push(foundClient); - if (currSelectedNode && currSelectedNode.ln_implementation) { - switch (currSelectedNode.ln_implementation) { + if (currSelectedNode && currSelectedNode.lnImplementation) { + switch (currSelectedNode.lnImplementation) { case 'LND': this.eventEmitterLND.emit('CONNECT', currNodeIndex); break; @@ -149,27 +149,27 @@ export class RTLWebSocketServer { this.sendErrorToAllLNClients = (serverError, selectedNode) => { try { this.webSocketServer.clients.forEach((client) => { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Broadcasting error to clients...: ' + serverError }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Broadcasting error to clients...: ' + serverError }); if (+client.clientNodeIndex === +selectedNode.index) { client.send(serverError); } }); } catch (err) { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); } }; this.sendEventsToAllLNClients = (newMessage, selectedNode) => { try { this.webSocketServer.clients.forEach((client) => { if (+client.clientNodeIndex === +selectedNode.index) { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'DEBUG', fileName: 'WebSocketServer', msg: 'Broadcasting message to client...: ' + client.clientId + ', Message: ' + newMessage }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'DEBUG', fileName: 'WebSocketServer', msg: 'Broadcasting message to client...: ' + client.clientId + ', Message: ' + newMessage }); client.send(newMessage); } }); } catch (err) { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); } }; this.generateAcceptValue = (acceptKey) => crypto.createHash('sha1').update(acceptKey + '258EAFA5-E914-47DA-95CA-C5AB0DC85B11', 'binary').digest('base64'); diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 4e218274..0f2e11d8 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /RTL COPY package.json /RTL/package.json COPY package-lock.json /RTL/package-lock.json -RUN npm install +RUN npm install --legacy-peer-deps # --------------- # Build App diff --git a/dockerfiles/Dockerfile.arm32v7 b/dockerfiles/Dockerfile.arm32v7 index 95f65572..b3841c55 100644 --- a/dockerfiles/Dockerfile.arm32v7 +++ b/dockerfiles/Dockerfile.arm32v7 @@ -12,7 +12,7 @@ WORKDIR /RTL COPY package.json /RTL/package.json COPY package-lock.json /RTL/package-lock.json -RUN npm install +RUN npm install --legacy-peer-deps # --------------- # Build App diff --git a/dockerfiles/Dockerfile.arm64v8 b/dockerfiles/Dockerfile.arm64v8 index d98abc12..9d977df3 100644 --- a/dockerfiles/Dockerfile.arm64v8 +++ b/dockerfiles/Dockerfile.arm64v8 @@ -11,7 +11,7 @@ WORKDIR /RTL COPY package.json /RTL/package.json COPY package-lock.json /RTL/package-lock.json -RUN npm install +RUN npm install --legacy-peer-deps # --------------- # Build App diff --git a/frontend/125.708b87b4f08ae30f.js b/frontend/125.708b87b4f08ae30f.js deleted file mode 100644 index 0a58d648..00000000 --- a/frontend/125.708b87b4f08ae30f.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[125],{7125:(zl,br,Rt)=>{"use strict";Rt.r(br),Rt.d(br,{CLNModule:()=>hC});var ot=Rt(6814),ce=Rt(4190),N=Rt(5256),A=Rt(9212),n=Rt(3814),u=Rt(6007);function a(i,x){1&i&&A._UZ(0,"mat-progress-bar",3)}let o=(()=>{class i{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(l=>{switch(!0){case l instanceof ce.OD:this.loading=!0;break;case l instanceof ce.m2:case l instanceof ce.gk:case l instanceof ce.Q3:this.loading=!1}})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0))};static#t=this.\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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,a,1,0,"mat-progress-bar",1),A._UZ(2,"router-outlet",null,2),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf",B.loading))},dependencies:[ot.O5,n.xw,n.Wh,n.yH,u.pW,ce.lC],data:{animation:[N.g]}})}return i})();var s=Rt(8645),g=Rt(9773),h=Rt(1449),E=Rt(590),r=Rt(2154),c=Rt(3468),Q=Rt(5980),C=Rt(4221),w=Rt(6339),e=Rt(5597),f=Rt(7509),p=Rt(2296),v=Rt(5195),S=Rt(3176),I=Rt(617),M=Rt(7988),y=Rt(4104),F=Rt(2181),Y=Rt(1476),D=Rt(3566),d=Rt(5313),H=Rt(7700),z=Rt(234),aA=Rt(5154),K=Rt(6223),$=Rt(2032),nA=Rt(5683),uA=Rt(8525),wA=Rt(3680),NA=Rt(2599),yA=Rt(2596),TA=Rt(6985),kA=Rt(6082);function W(i,x){if(1&i&&(A.TgZ(0,"mat-option",27),A._uU(1),A.ALo(2,"titlecase"),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(A.lcZ(2,2,t))}}function fA(i,x){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 iA(i,x){if(1&i&&(A.TgZ(0,"div",28),A._UZ(1,"fa-icon",29),A.YNc(2,fA,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 eA=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.dialogRef=t,this.data=l,this.store=B,this.decimalPipe=Z,this.commonService=LA,this.actions=yt,this.faExclamationTriangle=E.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 s.x,new s.x,new s.x,new s.x,new s.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(c.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,g.R)(this.unSubs[2]),(0,F.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 l=this.expiry?this.expiry:r.$Y;this.selTimeUnit!==r.Qk.SECS&&this.expiry&&(l=this.commonService.convertTime(this.expiry,this.selTimeUnit,r.Qk.SECS)),this.store.dispatch((0,z.Rd)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels: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="= "+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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(C.yh),A.Y36(ot.JJ),A.Y36(w.v),A.Y36(aA.eX))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-create-invoices"]],decls:45,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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invoiceValue",3,"step","min","ngModel","ngModelChange","keyup"],["matSuffix",""],["fxLayout","column","fxFlex","30"],["matInput","","name","expiry","type","number","tabindex","4",3,"step","min","ngModel","ngModelChange"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"ml-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(l,B){if(1&l){const Z=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,"mat-label"),A._uU(13,"Description"),A.qZA(),A.TgZ(14,"input",10),A.NdJ("ngModelChange",function(yt){return B.description=yt}),A.qZA()(),A.TgZ(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A._uU(18,"Amount"),A.qZA(),A.TgZ(19,"input",13),A.NdJ("ngModelChange",function(yt){return B.invoiceValue=yt})("keyup",function(){return B.onInvoiceValueChange()}),A.qZA(),A.TgZ(20,"span",14),A._uU(21," Sats "),A.qZA(),A.TgZ(22,"mat-hint"),A._uU(23),A.qZA()(),A.TgZ(24,"mat-form-field",15)(25,"mat-label"),A._uU(26,"Expiry"),A.qZA(),A.TgZ(27,"input",16),A.NdJ("ngModelChange",function(yt){return B.expiry=yt}),A.qZA(),A.TgZ(28,"span",14),A._uU(29),A.ALo(30,"titlecase"),A.qZA()(),A.TgZ(31,"mat-form-field",17)(32,"mat-select",18),A.NdJ("selectionChange",function(yt){return B.onTimeUnitChange(yt)}),A.YNc(33,W,3,4,"mat-option",19),A.qZA()()(),A.TgZ(34,"div",20)(35,"mat-slide-toggle",21),A.NdJ("ngModelChange",function(yt){return B.private=yt}),A._uU(36,"Private Routing Hints"),A.qZA(),A.TgZ(37,"mat-icon",22),A._uU(38,"info_outline"),A.qZA()(),A.YNc(39,iA,3,2,"div",23),A.TgZ(40,"div",24)(41,"button",25),A.NdJ("click",function(){return B.resetData()}),A._uU(42,"Clear Field"),A.qZA(),A.TgZ(43,"button",26),A.NdJ("click",function(){A.CHM(Z);const yt=A.MAs(10);return A.KtG(B.onAddInvoice(yt))}),A._uU(44,"Create Invoice"),A.qZA()()()()()()}2&l&&(A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(8),A.Q6J("ngModel",B.description),A.xp6(5),A.Q6J("step",100)("min",1)("ngModel",B.invoiceValue),A.xp6(4),A.Oqu(B.invoiceValueHint),A.xp6(4),A.Q6J("step",B.selTimeUnit===B.timeUnitEnum.SECS?300:B.selTimeUnit===B.timeUnitEnum.MINS?10:B.selTimeUnit===B.timeUnitEnum.HOURS?2:1)("min",1)("ngModel",B.expiry),A.xp6(2),A.hij("",A.lcZ(30,14,B.selTimeUnit)," "),A.xp6(3),A.Q6J("value",B.selTimeUnit),A.xp6(1),A.Q6J("ngForOf",B.timeUnits),A.xp6(2),A.Q6J("ngModel",B.private),A.xp6(4),A.Q6J("ngIf",""!==B.invoiceError))},dependencies:[ot.sg,ot.O5,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.qQ,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,H.ZT,p.lW,v.dn,v.dk,I.Hw,$.Nt,nA.KE,nA.hX,nA.bx,nA.R9,uA.gD,wA.ey,NA.Rr,yA.gM,TA.h,kA.q,ot.rS]})}return i})();var EA=Rt(6820),mA=Rt(9103),GA=Rt(2703),j=Rt(2995),b=Rt(2159);function rA(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"mat-label"),A._uU(4,"Description"),A.qZA(),A.TgZ(5,"input",7),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.description=B)}),A.qZA()(),A.TgZ(6,"mat-form-field",8)(7,"mat-label"),A._uU(8,"Amount"),A.qZA(),A.TgZ(9,"input",9),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.invoiceValue=B)})("keyup",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onInvoiceValueChange())}),A.qZA(),A.TgZ(10,"span",10),A._uU(11," Sats "),A.qZA(),A.TgZ(12,"mat-hint"),A._uU(13),A.qZA()(),A.TgZ(14,"div",11)(15,"button",12),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.resetData())}),A._uU(16,"Clear Field"),A.qZA(),A.TgZ(17,"button",13),A.NdJ("click",function(){A.CHM(t);const B=A.MAs(1),Z=A.oxw();return A.KtG(Z.onAddInvoice(B))}),A._uU(18,"Create Invoice"),A.qZA()()()}if(2&i){const t=A.oxw();A.xp6(5),A.Q6J("ngModel",t.description),A.xp6(4),A.Q6J("step",100)("min",1)("ngModel",t.invoiceValue),A.xp6(4),A.Oqu(t.invoiceValueHint)}}function oA(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",14)(1,"button",15),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDeleteExpiredInvoices())}),A._uU(2,"Delete Expired"),A.qZA(),A.TgZ(3,"button",16),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.openCreateInvoiceModal())}),A._uU(4,"Create Invoice"),A.qZA()()}}function pA(i,x){if(1&i&&(A.TgZ(0,"mat-option",54),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function xA(i,x){1&i&&A._UZ(0,"mat-progress-bar",55)}function gA(i,x){1&i&&A._UZ(0,"th",56)}const CA=i=>({"mr-0":i});function DA(i,x){if(1&i&&A._UZ(0,"span",61),2&i){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,CA,t.screenSize===t.screenSizeEnum.XS))}}function YA(i,x){if(1&i&&A._UZ(0,"span",62),2&i){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,CA,t.screenSize===t.screenSizeEnum.XS))}}function zA(i,x){if(1&i&&A._UZ(0,"span",63),2&i){const t=A.oxw(3);A.Q6J("ngClass",A.VKq(1,CA,t.screenSize===t.screenSizeEnum.XS))}}function IA(i,x){if(1&i&&(A.TgZ(0,"td",57),A.YNc(1,DA,1,3,"span",58)(2,YA,1,3,"span",59)(3,zA,1,3,"span",60),A.qZA()),2&i){const t=x.$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 jA(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Expiry Date"),A.qZA())}function ut(i,x){if(1&i&&(A.TgZ(0,"td",57),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,1e3*(null==t?null:t.expires_at),"dd/MMM/y HH:mm")," ")}}function Ct(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Date Settled"),A.qZA())}function ct(i,x){if(1&i&&(A.TgZ(0,"td",57),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.paid_at),"dd/MMM/y HH:mm")||"-")}}function pt(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Type"),A.qZA())}function Yt(i,x){if(1&i&&(A.TgZ(0,"td",57),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11&&t.label.includes("keysend-")?"Keysend":"Bolt11")}}function KA(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Description"),A.qZA())}const ZA=i=>({width:i});function Qt(i,x){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ZA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.description)}}function ft(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Label"),A.qZA())}function Dt(i,x){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ZA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.label)}}function Nt(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Payment Hash"),A.qZA())}function vA(i,x){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ZA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function gt(i,x){1&i&&(A.TgZ(0,"th",64),A._uU(1,"Invoice"),A.qZA())}function q(i,x){if(1&i&&(A.TgZ(0,"td",57)(1,"div",65)(2,"span",66),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ZA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.bolt11)}}function J(i,x){1&i&&(A.TgZ(0,"th",67),A._uU(1,"Amount (Sats)"),A.qZA())}function L(i,x){if(1&i&&(A.TgZ(0,"td",57)(1,"span",68),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function hA(i,x){1&i&&(A.TgZ(0,"th",67),A._uU(1,"Amount Settled (Sats)"),A.qZA())}function _(i,x){if(1&i&&(A.TgZ(0,"td",57)(1,"span",68),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.amount_received_msat)/1e3,(null==t?null:t.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function HA(i,x){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(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function $A(i,x){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 Z=A.CHM(t).$implicit,LA=A.oxw(2);return A.KtG(LA.onInvoiceClick(Z))}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",72),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(2);return A.KtG(LA.onRefreshInvoice(Z))}),A._uU(7,"Refresh"),A.qZA()()()()}}function O(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No invoice available."),A.qZA())}function qA(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting invoices..."),A.qZA())}function et(i,x){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 MA(i,x){if(1&i&&(A.TgZ(0,"td",75),A.YNc(1,O,2,0,"p",76)(2,qA,2,0,"p",76)(3,et,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 OA=i=>({"display-none":i});function st(i,x){if(1&i&&A._UZ(0,"tr",77),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,OA,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function Ut(i,x){1&i&&A._UZ(0,"tr",78)}function xt(i,x){1&i&&A._UZ(0,"tr",79)}const bt=()=>["all"],Lt=i=>({"error-border":i}),an=()=>["no_invoice"];function Ae(i,x){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-label"),A._uU(9,"Filter By"),A.qZA(),A.TgZ(10,"mat-select",24),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilterBy=B)})("selectionChange",function(){A.CHM(t);const B=A.oxw();return B.selFilter="",A.KtG(B.applyFilter())}),A.TgZ(11,"perfect-scrollbar"),A.YNc(12,pA,2,2,"mat-option",25),A.qZA()()(),A.TgZ(13,"mat-form-field",23)(14,"mat-label"),A._uU(15,"Filter"),A.qZA(),A.TgZ(16,"input",26),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilter=B)})("input",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())})("keyup",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())}),A.qZA()()()(),A.TgZ(17,"div",27),A.YNc(18,xA,1,0,"mat-progress-bar",28),A.TgZ(19,"table",29,30),A.ynx(21,31),A.YNc(22,gA,1,0,"th",32)(23,IA,4,3,"td",33),A.BQk(),A.ynx(24,34),A.YNc(25,jA,2,0,"th",35)(26,ut,3,4,"td",33),A.BQk(),A.ynx(27,36),A.YNc(28,Ct,2,0,"th",35)(29,ct,3,4,"td",33),A.BQk(),A.ynx(30,37),A.YNc(31,pt,2,0,"th",35)(32,Yt,2,1,"td",33),A.BQk(),A.ynx(33,38),A.YNc(34,KA,2,0,"th",35)(35,Qt,4,4,"td",33),A.BQk(),A.ynx(36,39),A.YNc(37,ft,2,0,"th",35)(38,Dt,4,4,"td",33),A.BQk(),A.ynx(39,40),A.YNc(40,Nt,2,0,"th",35)(41,vA,4,4,"td",33),A.BQk(),A.ynx(42,41),A.YNc(43,gt,2,0,"th",35)(44,q,4,4,"td",33),A.BQk(),A.ynx(45,42),A.YNc(46,J,2,0,"th",43)(47,L,4,4,"td",33),A.BQk(),A.ynx(48,44),A.YNc(49,hA,2,0,"th",43)(50,_,4,4,"td",33),A.BQk(),A.ynx(51,45),A.YNc(52,HA,6,0,"th",46)(53,$A,8,0,"td",47),A.BQk(),A.ynx(54,48),A.YNc(55,MA,4,3,"td",49),A.BQk(),A.YNc(56,st,1,3,"tr",50)(57,Ut,1,0,"tr",51)(58,xt,1,0,"tr",52),A.qZA()(),A._UZ(59,"mat-paginator",53),A.qZA()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("icon",t.faHistory),A.xp6(7),A.Q6J("ngModel",t.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(15,bt).concat(t.displayedColumns.slice(0,-1))),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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",A.VKq(16,Lt,""!==t.errorMessage)),A.xp6(37),A.Q6J("matFooterRowDef",A.DdM(18,an)),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 Wt=(()=>{class i{constructor(t,l,B,Z,LA,yt,ln,Ce){this.logger=t,this.store=l,this.decimalPipe=B,this.commonService=Z,this.rtlEffects=LA,this.datePipe=yt,this.actions=ln,this.camelCaseWithReplace=Ce,this.calledFrom="transactions",this.faHistory=E.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 d.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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(c.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(c.AS).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||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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.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,F.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.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,mA.qR)({payload:{data:{pageSize:this.pageSize,component:eA}}}))}onAddInvoice(t){this.invoiceValue||(this.invoiceValue=0);const l=this.expiry?this.expiry:r.$Y;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,z.Rd)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,mA.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,z.g6)({payload:null}))})}onInvoiceClick(t){this.store.dispatch((0,mA.qR)({payload:{data:{invoice:{amount_msat:t.amount_msat,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,amount_received_msat:t.amount_received_msat},newlyAdded:!1,component:EA.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 l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=this.datePipe.transform(new Date(1e3*(t.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(t.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":B="paid"===t?.status?"paid":"unpaid"===t?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":B=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":B=t?.bolt12?"bolt12":t?.bolt11&&t?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":B=((t.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":B=((t.amount_received_msat||0)/1e3).toString()||"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}onInvoiceValueChange(){this.selNode&&this.selNode.fiatConversion&&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[6])).subscribe({next:t=>{this.invoiceValueHint="= "+this.decimalPipe.transform(t.OTHER,r.Xz.OTHER)+" "+t.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onRefreshInvoice(t){this.store.dispatch((0,z.n7)({payload:t.label}))}updateInvoicesData(t){this.invoiceJSONArr=this.invoiceJSONArr?.map(l=>l.label===t.label?t:l)}loadInvoicesTable(t){this.invoices=new d.by(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(l,B)=>{switch(B){case"msatoshi":return l.amount_msat;case"msatoshi_received":return l.amount_received_msat;default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(ot.JJ),A.Y36(w.v),A.Y36(GA.V),A.Y36(ot.uU),A.Y36(aA.eX),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},inputs:{calledFrom:"calledFrom"},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description",3,"ngModel","ngModelChange"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","name","invoiceValue","type","number","tabindex","3",3,"step","min","ngModel","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,rA,19,5,"form",1)(2,oA,5,0,"div",2)(3,Ae,60,19,"div",3),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf","home"===B.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===B.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===B.calledFrom))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.qQ,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,nA.bx,nA.R9,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V,kA.q,ot.JJ,ot.uU],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();var oe=Rt(8180),De=Rt(6046),Ye=Rt(5986),gn=Rt(7466);const mn=["sendPaymentForm"],ne=["paymentAmt"],An=["offerAmt"],Re=["paymentReq"],Ze=["offerReq"];function Ue(i,x){if(1&i&&(A.TgZ(0,"mat-radio-button",21),A._uU(1,"Offer"),A.qZA()),2&i){const t=A.oxw();A.s9C("value",t.paymentTypes.OFFER)}}function Rn(i,x){1&i&&A.GkF(0)}function zn(i,x){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 Jt(i,x){if(1&i&&(A.TgZ(0,"div",22),A._UZ(1,"fa-icon",23),A.YNc(2,zn,2,1,"span",24),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 zt(i,x){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 Vt(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment request is required."),A.qZA())}function se(i,x){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 pn(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment amount is required."),A.qZA())}function Qn(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"mat-label"),A._uU(2,"Amount (Sats)"),A.qZA(),A.TgZ(3,"input",29,30),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.paymentAmount=B)})("change",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.onAmountChange(B))}),A.qZA(),A.TgZ(5,"mat-hint"),A._uU(6,"It is a zero amount invoice, enter amount to be paid."),A.qZA(),A.YNc(7,pn,2,0,"mat-error",24),A.qZA()}if(2&i){const t=A.oxw(2);A.xp6(3),A.Q6J("ngModel",t.paymentAmount),A.xp6(4),A.Q6J("ngIf",!t.paymentAmount)}}function Nn(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",25)(1,"mat-label"),A._uU(2,"Payment Request"),A.qZA(),A.TgZ(3,"textarea",26,27),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onPaymentRequestEntry(B))})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(5,zt,2,1,"mat-hint",24)(6,Vt,2,0,"mat-error",24)(7,se,2,1,"mat-error",24),A.qZA(),A.YNc(8,Qn,8,2,"mat-form-field",28)}if(2&i){const t=A.MAs(4),l=A.oxw();A.xp6(3),A.Q6J("ngModel",l.paymentRequest),A.xp6(2),A.Q6J("ngIf",l.paymentRequest&&""!==l.paymentDecodedHint),A.xp6(1),A.Q6J("ngIf",!l.paymentRequest),A.xp6(1),A.Q6J("ngIf",null==t.errors?null:t.errors.decodeError),A.xp6(1),A.Q6J("ngIf",l.zeroAmtInvoice)}}function Wn(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Pubkey is required."),A.qZA())}function ei(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Keysend amount is required."),A.qZA())}function yn(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",25)(1,"mat-label"),A._uU(2,"Pubkey"),A.qZA(),A.TgZ(3,"input",31),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.pubkey=B)}),A.qZA(),A.YNc(4,Wn,2,0,"mat-error",24),A.qZA(),A.TgZ(5,"mat-form-field",25)(6,"mat-label"),A._uU(7,"Amount (Sats)"),A.qZA(),A.TgZ(8,"input",32,33),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.keysendAmount=B)}),A.qZA(),A.YNc(10,ei,2,0,"mat-error",24),A.qZA()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("ngModel",t.pubkey),A.xp6(1),A.Q6J("ngIf",!t.pubkey),A.xp6(4),A.Q6J("ngModel",t.keysendAmount),A.xp6(2),A.Q6J("ngIf",!t.keysendAmount)}}function XA(i,x){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 FA(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Offer request is required."),A.qZA())}function nt(i,x){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 UA(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Offer amount is required."),A.qZA())}function bA(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"mat-label"),A._uU(2,"Amount (Sats)"),A.qZA(),A.TgZ(3,"input",40,41),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.offerAmount=B)})("change",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.onAmountChange(B))}),A.qZA(),A.TgZ(5,"mat-hint"),A._uU(6,"It is a zero amount offer, enter amount to be paid."),A.qZA(),A.YNc(7,UA,2,0,"mat-error",24),A.qZA()}if(2&i){const t=A.oxw(2);A.xp6(3),A.Q6J("ngModel",t.offerAmount),A.xp6(4),A.Q6J("ngIf",!t.offerAmount)}}function PA(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",42)(1,"mat-label"),A._uU(2,"Title to Save"),A.qZA(),A.TgZ(3,"input",43),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.offerTitle=B)}),A.qZA()()}if(2&i){const t=A.oxw(2);A.xp6(3),A.Q6J("ngModel",t.offerTitle)}}function JA(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",25)(1,"mat-label"),A._uU(2,"Offer Request"),A.qZA(),A.TgZ(3,"textarea",34,35),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onPaymentRequestEntry(B))})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(5,XA,2,1,"mat-hint",24)(6,FA,2,0,"mat-error",24)(7,nt,2,1,"mat-error",24),A.qZA(),A.YNc(8,bA,8,2,"mat-form-field",28),A.TgZ(9,"div",36)(10,"mat-checkbox",37),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.flgSaveToDB=B)}),A._uU(11,"Bookmark Offer"),A.qZA(),A.TgZ(12,"mat-icon",38),A._uU(13,"info_outline"),A.qZA()(),A.YNc(14,PA,4,1,"mat-form-field",39)}if(2&i){const t=A.MAs(4),l=A.oxw();A.xp6(3),A.Q6J("ngModel",l.offerRequest),A.xp6(2),A.Q6J("ngIf",l.offerRequest&&""!==l.offerDecodedHint),A.xp6(1),A.Q6J("ngIf",!l.offerRequest),A.xp6(1),A.Q6J("ngIf",null==t.errors?null:t.errors.decodeError),A.xp6(1),A.Q6J("ngIf",l.zeroAmtOffer),A.xp6(2),A.Q6J("ngModel",l.flgSaveToDB),A.xp6(4),A.Q6J("ngIf",l.flgSaveToDB||""!==l.offerTitle)}}let At=(()=>{class i{set payReq(t){t&&(this.paymentReq=t)}set offrReq(t){t&&(this.offerReq=t)}constructor(t,l,B,Z,LA,yt,ln,Ce){this.dialogRef=t,this.data=l,this.store=B,this.logger=Z,this.commonService=LA,this.decimalPipe=yt,this.actions=ln,this.dataService=Ce,this.faExclamationTriangle=E.eHv,this.paymentTypes=r.IX,this.paymentType=r.IX.INVOICE,this.selNode={},this.offerDecoded={},this.offerRequest="",this.offerDecodedHint="",this.offerDescription="",this.offerIssuer="",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.unSubs=[new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x]}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(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(c.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,F.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.amount_msat,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,z.oV)({payload:{uiMessage:r.m6.SEND_KEYSEND,paymentType:r.IX.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===r.IX.INVOICE?this.store.dispatch((0,z.oV)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===r.IX.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,z.oV)({payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.OFFER,bolt11:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount_msat:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,issuer:this.offerIssuer,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,z.eM)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat: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(l=>{this.paymentType===r.IX.INVOICE?"bolt12 offer"===l.type&&l.offer_id?(this.paymentDecodedHint="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=l,this.setPaymentDecodedDetails()):this.paymentType===r.IX.OFFER&&("bolt11 invoice"===l.type&&l.payment_hash?(this.offerDecodedHint="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=l,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.amount_msat,this.paymentDecoded.amount_msat=+t.target.value),this.paymentType===r.IX.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=t.target.value)}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHint="",this.offerDecodedHint="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat?(this.offerDecoded.offer_amount_msat=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.offerDecodedHint="Zero Amount Offer | Description: "+this.offerDecoded.offer_description):(this.zeroAmtOffer=!1,this.offerAmount=this.offerDecoded.offer_amount_msat?this.offerDecoded.offer_amount_msat/1e3:0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_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 ("+this.decimalPipe.transform(t.OTHER?t.OTHER:0,r.Xz.OTHER)+" "+t.unit+") | Description: "+this.offerDecoded.offer_description},error:t=>{this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description+". Unable to convert currency."}}):this.offerDecodedHint="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description)}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.amount_msat?(this.paymentDecoded.amount_msat=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.amount_msat?this.paymentDecoded.amount_msat/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.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats ("+this.decimalPipe.transform(t.OTHER?t.OTHER:0,r.Xz.OTHER)+" "+t.unit+") | Memo: "+this.paymentDecoded.description},error:t=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(C.yh),A.Y36(Q.mQ),A.Y36(w.v),A.Y36(ot.JJ),A.Y36(aA.eX),A.Y36(De.D))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(l,B){if(1&l&&(A.Gf(mn,5),A.Gf(ne,5),A.Gf(An,5),A.Gf(Re,5),A.Gf(Ze,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.first),A.iGM(Z=A.CRH())&&(B.paymentAmt=Z.first),A.iGM(Z=A.CRH())&&(B.offerAmt=Z.first),A.iGM(Z=A.CRH())&&(B.payReq=Z.first),A.iGM(Z=A.CRH())&&(B.offrReq=Z.first)}},decls:30,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","12","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["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"],["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",""],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],["fxFlex","100",4,"ngIf"],["matInput","","name","amount","tabindex","5","required","",3,"ngModel","ngModelChange","change"],["paymentAmt","ngModel"],["autoFocus","","matInput","","name","pubkey","tabindex","4","required","",3,"ngModel","ngModelChange"],["matInput","","name","keysendAmount","tabindex","5","required","",3,"ngModel","ngModelChange"],["keysendAmt","ngModel"],["autoFocus","","matInput","","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","","name","amountoffer","tabindex","5","required","",3,"ngModel","ngModelChange","change"],["offerAmt","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","tabindex","7",3,"ngModel","ngModelChange"]],template:function(l,B){if(1&l&&(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)(9,"mat-radio-group",7),A.NdJ("ngModelChange",function(LA){return B.paymentType=LA})("change",function(){return B.onPaymentTypeChange()}),A.TgZ(10,"mat-radio-button",8),A._uU(11,"Invoice"),A.qZA(),A.TgZ(12,"mat-radio-button",9),A._uU(13,"Keysend"),A.qZA(),A.YNc(14,Ue,2,1,"mat-radio-button",10),A.qZA(),A.TgZ(15,"form",11,12),A.NdJ("submit",function(){return B.onSendPayment()})("reset",function(){return B.resetData()}),A.YNc(17,Rn,1,0,"ng-container",13)(18,Jt,3,2,"div",14),A.TgZ(19,"div",15)(20,"button",16),A._uU(21,"Clear Fields"),A.qZA(),A.TgZ(22,"button",17),A._uU(23,"Send Payment"),A.qZA()()()()()(),A.YNc(24,Nn,9,5,"ng-template",null,18,A.W1O)(26,yn,11,4,"ng-template",null,19,A.W1O)(28,JA,15,7,"ng-template",null,20,A.W1O)),2&l){const Z=A.MAs(25),LA=A.MAs(27),yt=A.MAs(29);A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(3),A.Q6J("ngModel",B.paymentType),A.xp6(1),A.s9C("value",B.paymentTypes.INVOICE),A.xp6(2),A.s9C("value",B.paymentTypes.KEYSEND),A.xp6(2),A.Q6J("ngIf",B.selNode.enableOffers),A.xp6(3),A.Q6J("ngTemplateOutlet",B.paymentType===B.paymentTypes.KEYSEND?LA:B.paymentType===B.paymentTypes.OFFER?yt:Z),A.xp6(1),A.Q6J("ngIf",""!==B.paymentError)}},dependencies:[ot.O5,ot.tP,K._Y,K.Fj,K.JJ,K.JL,K.Q7,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,H.ZT,p.lW,v.dn,v.dk,Ye.oG,I.Hw,$.Nt,nA.KE,nA.hX,nA.bx,nA.TO,gn.VQ,gn.U0,yA.gM,TA.h]})}return i})();const RA=["sendPaymentForm"];function rt(i,x){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 VA(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Payment request is required."),A.qZA())}function wt(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"mat-label"),A._uU(4,"Payment Request"),A.qZA(),A.TgZ(5,"textarea",7,8),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onPaymentRequestEntry(B))})("matTextareaAutosize",function(){return!0}),A.qZA(),A.YNc(7,rt,2,1,"mat-hint",9)(8,VA,2,0,"mat-error",9),A.qZA(),A.TgZ(9,"div",10)(10,"button",11),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.resetData())}),A._uU(11,"Clear Field"),A.qZA(),A.TgZ(12,"button",12),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onSendPayment())}),A._uU(13,"Send Payment"),A.qZA()()()}if(2&i){const t=A.oxw();A.xp6(5),A.Q6J("ngModel",t.paymentRequest),A.xp6(2),A.Q6J("ngIf",t.paymentRequest&&""!==t.paymentDecodedHint),A.xp6(1),A.Q6J("ngIf",!t.paymentRequest)}}function Ft(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",13)(1,"button",12),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.openSendPaymentModal())}),A._uU(2,"Send Payment"),A.qZA()()}}function Tt(i,x){if(1&i&&(A.TgZ(0,"mat-option",63),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function Ot(i,x){1&i&&A._UZ(0,"mat-progress-bar",64)}function Xt(i,x){1&i&&A._UZ(0,"th",65)}function ie(i,x){1&i&&A._UZ(0,"span",69)}function ht(i,x){1&i&&A._UZ(0,"span",70)}function St(i,x){if(1&i&&(A.TgZ(0,"td",66),A.YNc(1,ie,1,0,"span",67)(2,ht,1,0,"span",68),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status)}}function qt(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Created At"),A.qZA())}function Ht(i,x){if(1&i&&(A.TgZ(0,"td",66),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,1e3*(null==t?null:t.created_at),"dd/MMM/y HH:mm")," ")}}function re(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Type"),A.qZA())}function Zt(i,x){if(1&i&&(A.TgZ(0,"td",66),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function ue(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Payment Hash"),A.qZA())}const jt=i=>({width:i});function Ie(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function Oe(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Invoice"),A.qZA())}function Te(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.bolt11)}}function ye(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Label"),A.qZA())}function Ne(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.label)}}function Xe(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Destination"),A.qZA())}function In(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.destination)}}function tn(i,x){1&i&&(A.TgZ(0,"th",71),A._uU(1,"Memo"),A.qZA())}function dn(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",72)(2,"span",73),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.memo)}}function xn(i,x){1&i&&(A.TgZ(0,"th",74),A._uU(1,"Sats Sent"),A.qZA())}function en(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",75),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.amount_sent_msat)/1e3,"1.0-4"))}}function Bn(i,x){1&i&&(A.TgZ(0,"th",74),A._uU(1,"Sats Received"),A.qZA())}function on(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",75),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.xi3(3,1,(null==t?null:t.amount_msat)/1e3,"1.0-4"))}}function vi(i,x){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(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function yi(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",80)(1,"button",81),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(2);return A.KtG(LA.onPaymentClick(Z))}),A._uU(2,"View Info"),A.qZA()()}}function Vn(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No payment available."),A.qZA())}function xi(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting payments..."),A.qZA())}function Fi(i,x){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 kn(i,x){if(1&i&&(A.TgZ(0,"td",82),A.YNc(1,Vn,2,0,"p",9)(2,xi,2,0,"p",9)(3,Fi,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 di(i,x){1&i&&A._UZ(0,"span",69)}function ni(i,x){1&i&&A._UZ(0,"span",70)}function Fn(i,x){1&i&&A._UZ(0,"span",69)}function sa(i,x){1&i&&A._UZ(0,"span",70)}function QA(i,x){if(1&i&&(A.TgZ(0,"span",83),A.YNc(1,Fn,1,0,"span",67)(2,sa,1,0,"span",68),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf","complete"===t.status),A.xp6(1),A.Q6J("ngIf","complete"!==t.status)}}function G(i,x){if(1&i&&(A.ynx(0),A.YNc(1,QA,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 U(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",83),A.YNc(2,di,1,0,"span",67)(3,ni,1,0,"span",68),A.qZA(),A.YNc(4,G,2,1,"ng-container",9),A.qZA()),2&i){const t=x.$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 X(i,x){if(1&i&&(A.TgZ(0,"span",83),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,1e3*t.created_at,"dd/MMM/y HH:mm")," ")}}function k(i,x){if(1&i&&(A.ynx(0),A.YNc(1,X,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 BA(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",83),A._uU(2),A.qZA(),A.YNc(3,k,2,1,"ng-container",9),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" Total Attempts: ",null==t?null:t.total_parts," "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function dA(i,x){1&i&&A._UZ(0,"span",83)}function tt(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,dA,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 it(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",83),A._uU(2),A.qZA(),A.YNc(3,tt,2,1,"span",9),A.qZA()),2&i){const t=x.$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 Bt(i,x){if(1&i&&(A.TgZ(0,"span",83),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" Part ID ",t.partid?t.partid:0," ")}}function Et(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Bt,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 Mt(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,Et,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function It(i,x){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,jt,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function vt(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,It,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 kt(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,vt,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.bolt11),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Kt(i,x){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,jt,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function te(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Kt,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 Be(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,te,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.label),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function xe(i,x){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,jt,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Ve(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,xe,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 de(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,Ve,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.destination),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function ke(i,x){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,jt,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function En(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,ke,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 je(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",85)(2,"span",73),A._uU(3),A.qZA()(),A.YNc(4,En,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(3,jt,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.memo),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Cn(i,x){if(1&i&&(A.TgZ(0,"span",88),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,t.amount_sent_msat/1e3,t.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function Dn(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Cn,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 Zn(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",88),A._uU(2),A.ALo(3,"number"),A.qZA(),A.YNc(4,Dn,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.xi3(3,2,(null==t?null:t.amount_sent_msat)/1e3,(null==t?null:t.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.xp6(2),A.Q6J("ngIf",t.is_expanded)}}function jn(i,x){if(1&i&&(A.TgZ(0,"span",88),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,t.amount_msat/1e3,t.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function Ri(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,jn,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 Kn(i,x){if(1&i&&(A.TgZ(0,"td",66)(1,"span",88),A._uU(2),A.ALo(3,"number"),A.qZA(),A.YNc(4,Ri,2,1,"span",9),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.xi3(3,2,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0")),A.xp6(2),A.Q6J("ngIf",t.is_expanded)}}function ii(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",93)(1,"button",94),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(4);return A.KtG(LA.onPaymentClick(Z))}),A._uU(2),A.qZA()()}if(2&i){const t=x.$implicit;A.xp6(2),A.hij("View ",t.partid?t.partid:0,"")}}function Xn(i,x){if(1&i&&(A.TgZ(0,"div"),A.YNc(1,ii,3,1,"div",92),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.mpps)}}function qn(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",66)(1,"span",90)(2,"button",91),A.NdJ("click",function(){const Z=A.CHM(t).$implicit;return A.KtG(Z.is_expanded=!Z.is_expanded)}),A._uU(3),A.qZA()(),A.YNc(4,Xn,2,1,"div",9),A.qZA()}if(2&i){const t=x.$implicit;A.xp6(3),A.Oqu(t.is_expanded?"Hide":"Show"),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Gn(i,x){1&i&&A._UZ(0,"tr",95)}const zi=i=>({"display-none":i});function Gi(i,x){if(1&i&&A._UZ(0,"tr",96),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,zi,(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 Hi(i,x){1&i&&A._UZ(0,"tr",97)}function Yi(i,x){1&i&&A._UZ(0,"tr",95)}const Ji=()=>["all"],Oi=i=>({"error-border":i}),ar=()=>["no_payment"];function ki(i,x){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-label"),A._uU(9,"Filter By"),A.qZA(),A.TgZ(10,"mat-select",21),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilterBy=B)})("selectionChange",function(){A.CHM(t);const B=A.oxw();return B.selFilter="",A.KtG(B.applyFilter())}),A.TgZ(11,"perfect-scrollbar"),A.YNc(12,Tt,2,2,"mat-option",22),A.qZA()()(),A.TgZ(13,"mat-form-field",20)(14,"mat-label"),A._uU(15,"Filter"),A.qZA(),A.TgZ(16,"input",23),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilter=B)})("input",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())})("keyup",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())}),A.qZA()()()(),A.TgZ(17,"div",24)(18,"div",25),A.YNc(19,Ot,1,0,"mat-progress-bar",26),A.TgZ(20,"table",27,28),A.ynx(22,29),A.YNc(23,Xt,1,0,"th",30)(24,St,3,2,"td",31),A.BQk(),A.ynx(25,32),A.YNc(26,qt,2,0,"th",33)(27,Ht,3,4,"td",31),A.BQk(),A.ynx(28,34),A.YNc(29,re,2,0,"th",33)(30,Zt,2,1,"td",31),A.BQk(),A.ynx(31,35),A.YNc(32,ue,2,0,"th",33)(33,Ie,4,4,"td",31),A.BQk(),A.ynx(34,36),A.YNc(35,Oe,2,0,"th",33)(36,Te,4,4,"td",31),A.BQk(),A.ynx(37,37),A.YNc(38,ye,2,0,"th",33)(39,Ne,4,4,"td",31),A.BQk(),A.ynx(40,38),A.YNc(41,Xe,2,0,"th",33)(42,In,4,4,"td",31),A.BQk(),A.ynx(43,39),A.YNc(44,tn,2,0,"th",33)(45,dn,4,4,"td",31),A.BQk(),A.ynx(46,40),A.YNc(47,xn,2,0,"th",41)(48,en,4,4,"td",31),A.BQk(),A.ynx(49,42),A.YNc(50,Bn,2,0,"th",41)(51,on,4,4,"td",31),A.BQk(),A.ynx(52,43),A.YNc(53,vi,6,0,"th",44)(54,yi,3,0,"td",45),A.BQk(),A.ynx(55,46),A.YNc(56,kn,4,3,"td",47),A.BQk(),A.ynx(57,48),A.YNc(58,U,5,3,"td",31),A.BQk(),A.ynx(59,49),A.YNc(60,BA,4,2,"td",31),A.BQk(),A.ynx(61,50),A.YNc(62,it,4,2,"td",31),A.BQk(),A.ynx(63,51),A.YNc(64,Mt,5,5,"td",31),A.BQk(),A.ynx(65,52),A.YNc(66,kt,5,5,"td",31),A.BQk(),A.ynx(67,53),A.YNc(68,Be,5,5,"td",31),A.BQk(),A.ynx(69,54),A.YNc(70,de,5,5,"td",31),A.BQk(),A.ynx(71,55),A.YNc(72,je,5,5,"td",31),A.BQk(),A.ynx(73,56),A.YNc(74,Zn,5,5,"td",31),A.BQk(),A.ynx(75,57),A.YNc(76,Kn,5,5,"td",31),A.BQk(),A.ynx(77,58),A.YNc(78,qn,5,2,"td",31),A.BQk(),A.YNc(79,Gn,1,0,"tr",59)(80,Gi,1,3,"tr",60)(81,Hi,1,0,"tr",61)(82,Yi,1,0,"tr",59),A.qZA()()(),A._UZ(83,"mat-paginator",62),A.qZA()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("icon",t.faHistory),A.xp6(7),A.Q6J("ngModel",t.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(18,Ji).concat(t.displayedColumns.slice(0,-1))),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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",A.VKq(19,Oi,""!==t.errorMessage)),A.xp6(59),A.Q6J("matRowDefColumns",t.mppColumns)("matRowDefWhen",t.is_group),A.xp6(1),A.Q6J("matFooterRowDef",A.DdM(21,ar)),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 Hn=(()=>{class i{constructor(t,l,B,Z,LA,yt,ln,Ce,cn){this.logger=t,this.commonService=l,this.store=B,this.rtlEffects=Z,this.decimalPipe=LA,this.titleCasePipe=yt,this.datePipe=ln,this.dataService=Ce,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=E.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.payments=new d.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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(c.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(c.AS).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||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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(l=>this.mppColumns.push("group_"+l)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(c.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(t,l){return l.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.amount_msat||(this.paymentDecoded.amount_msat=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded?.payment_hash||"",this.paymentDecoded.amount_msat&&0!==this.paymentDecoded.amount_msat?(this.store.dispatch((0,mA.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.amount_msat/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,oe.q)(1)).subscribe(l=>{l&&(this.store.dispatch((0,z.oV)({payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,mA.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,oe.q)(1)).subscribe(B=>{B&&(this.paymentDecoded.amount_msat=B[0].inputValue,this.store.dispatch((0,z.oV)({payload:{uiMessage:r.m6.SEND_PAYMENT,paymentType:r.IX.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*B[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(l=>{this.paymentDecoded=l,this.paymentDecoded.amount_msat?this.selNode?.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/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:B=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats ("+this.decimalPipe.transform(B.OTHER?B.OTHER:0,r.Xz.OTHER)+" "+B.unit+") | Memo: "+this.paymentDecoded.description},error:B=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency."}}):this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description:this.paymentDecodedHint="Zero Amount Invoice | Memo: "+this.paymentDecoded.description})}openSendPaymentModal(){this.store.dispatch((0,mA.qR)({payload:{data:{component:At}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(t){const l=[[{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:"amount_msat",value:t.amount_msat,title:"Amount (mSats)",width:50,type:r.Gi.NUMBER},{key:"amount_sent_msat",value:t.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:r.Gi.NUMBER}]];t.bolt11&&""!==t.bolt11&&l?.unshift([{key:"bolt11",value:t.bolt11,title:"Bolt 11",width:100,type:r.Gi.STRING}]),t.bolt12&&""!==t.bolt12&&l?.unshift([{key:"bolt12",value:t.bolt12,title:"Bolt 12",width:100,type:r.Gi.STRING}]),t.memo&&""!==t.memo&&l?.splice(2,0,[{key:"memo",value:t.memo,title:"Memo",width:100,type:r.Gi.STRING}]),t.hasOwnProperty("partid")?l?.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}]):l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}]),this.store.dispatch((0,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Payment Information",message:l}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.created_at?this.datePipe.transform(new Date(1e3*t.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":B="complete"===t?.status?"completed":"incomplete/failed";break;case"created_at":B=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":B=((t.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":B=((t.amount_msat||0)/1e3).toString()||"";break;case"type":B=t?.bolt12?"bolt12":t?.bolt11?"bolt11":"keysend";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}loadPaymentsTable(t){this.payments=new d.by(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(l,B)=>{switch(B){case"msatoshi_sent":return l.amount_sent_msat;case"msatoshi":return l.amount_msat;default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const l=JSON.parse(JSON.stringify(this.payments.data))?.reduce((B,Z)=>Z.mpps?B.concat(Z.mpps):(delete Z.is_group,delete Z.is_expanded,delete Z.total_parts,B.concat(Z)),[]);this.commonService.downloadFile(l,"Payments")}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(GA.V),A.Y36(ot.JJ),A.Y36(ot.rS),A.Y36(ot.uU),A.Y36(De.D),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(l,B){if(1&l&&(A.Gf(RA,5),A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.first),A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},inputs:{calledFrom:"calledFrom"},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.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"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"perfectScrollbar","ngModel","ngModelChange","matTextareaAutosize"],["paymentReq","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-3"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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"],["fxLayoutAlign","end center",1,"mpp-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["class","mpp-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-details"],["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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,wt,14,3,"form",1)(2,Ft,3,0,"div",2)(3,ki,84,22,"div",3),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf","home"===B.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===B.calledFrom),A.xp6(1),A.Q6J("ngIf","transactions"===B.calledFrom))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K._Y,K.Fj,K.JJ,K.JL,K.Q7,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,nA.bx,nA.TO,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V,ot.JJ,ot.uU],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.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:2rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:3rem}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:11rem}"]})}return i})();const Ti=i=>({backgroundColor:i});function ri(i,x){if(1&i&&A._UZ(0,"span",6),2&i){const t=A.oxw();A.Q6J("ngStyle",A.VKq(1,Ti,"#"+(null==t.information?null:t.information.color)))}}function Lr(i,x){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,Ti,"#"+(null==t.information?null:t.information.color))),A.xp6(1),A.hij(" ",A.lcZ(6,2,null==t.information?null:t.information.color)," ")}}function Pr(i,x){if(1&i&&(A.TgZ(0,"span",2),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t)}}let la=(()=>{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||""))}))}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(w.v))};static#t=this.\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,"mt-2"],[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(l,B){1&l&&(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,ri,1,3,"span",3),A.qZA()(),A.YNc(7,Lr,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,Pr,2,1,"span",5),A.qZA()()),2&l&&(A.xp6(5),A.hij(" ",null==B.information?null:B.information.alias," "),A.xp6(1),A.Q6J("ngIf",!B.showColorFieldSeparately),A.xp6(1),A.Q6J("ngIf",B.showColorFieldSeparately),A.xp6(5),A.Oqu(null!=B.information&&B.information.lnImplementation||null!=B.information&&B.information.version?(null==B.information?null:B.information.lnImplementation)+" "+(null==B.information?null:B.information.version):""),A.xp6(4),A.Q6J("ngForOf",B.chains))},dependencies:[ot.sg,ot.O5,ot.PC,n.xw,n.Wh,n.yH,f.Zl,ot.gd]})}return i})();function so(i,x){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.xi3(6,5,t.balances.lightning,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",t.balances.lightning/t.balances.total*100),A.xp6(5),A.hij("",A.xi3(13,8,t.balances.onchain,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",t.balances.onchain/t.balances.total*100),A.xp6(5),A.hij("",A.xi3(20,11,t.balances.total,"1.0-0")," Sats")}}function lo(i,x){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 co=(()=>{class i{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["class","mt-1","fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["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(l,B){if(1&l&&A.YNc(0,so,21,14,"div",0)(1,lo,3,1,"ng-template",null,1,A.W1O),2&l){const Z=A.MAs(2);A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.O5,n.xw,n.Wh,n.yH,u.pW,ot.JJ]})}return i})();function go(i,x){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))}}const ca=()=>["../routing"];function Bo(i,x){1&i&&(A.TgZ(0,"div")(1,"h4",4),A._uU(2,"Transactions"),A.qZA(),A.TgZ(3,"a",8),A._uU(4," Go to Routing "),A.qZA()()),2&i&&(A.xp6(3),A.Q6J("routerLink",A.DdM(1,ca)))}function ga(i,x){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,go,6,3,"div",7)(10,Bo,5,2,"div",7),A.qZA()()),2&i){const t=A.oxw();A.xp6(6),A.hij("",A.lcZ(7,3,(null==t.fees?null:t.fees.feeCollected)/1e3)," Sats"),A.xp6(3),A.Q6J("ngIf",null==t.fees?null:t.fees.totalTxCount),A.xp6(1),A.Q6J("ngIf",!(null!=t.fees&&t.fees.totalTxCount))}}function Ba(i,x){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 ua=(()=>{class i{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["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"],[1,"overflow-wrap","dashboard-info-value",3,"routerLink"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,B){if(1&l&&A.YNc(0,ga,11,5,"div",0)(1,Ba,3,1,"ng-template",null,1,A.W1O),2&l){const Z=A.MAs(2);A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.O5,n.xw,n.Wh,n.yH,ce.rH,ot.JJ]})}return i})();function uo(i,x){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.xi3(29,12,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.xp6(6),A.hij("",A.xi3(35,15,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.xp6(6),A.hij("",A.xi3(41,18,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function fo(i,x){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 fa=(()=>{class i{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["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(l,B){if(1&l&&A.YNc(0,uo,42,21,"div",0)(1,fo,3,1,"ng-template",null,1,A.W1O),2&l){const Z=A.MAs(2);A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.O5,n.xw,n.Wh,n.yH,ot.JJ]})}return i})();var ai=Rt(6385);const ho=()=>["../connections/channels/open"],Eo=(i,x)=>({filterColumn:i,filterValue:x});function Co(i,x){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=x.$implicit,l=A.oxw(3);A.xp6(1),A.s9C("matTooltip",t.alias||t.peer_id),A.s9C("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Q6J("routerLink",A.DdM(23,ho))("state",A.WLB(24,Eo,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.xp6(1),A.AsE(" ",A.Dn7(3,11,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.xp6(6),A.hij("",A.xi3(9,15,t.to_us_msat/1e3||0,"1.0-0")," Sats"),A.xp6(3),A.Q6J("icon",l.faBalanceScale),A.xp6(1),A.hij(" (",A.lcZ(13,18,t.balancedness||0),") "),A.xp6(5),A.hij("",A.xi3(18,20,t.to_them_msat/1e3||0,"1.0-0")," Sats"),A.xp6(2),A.s9C("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function wo(i,x){if(1&i&&(A.TgZ(0,"div",17),A.YNc(1,Co,20,27,"div",18),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngForOf",t.activeChannels)}}function Qo(i,x){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,wo,2,1,"div",16),A.qZA()()),2&i){const t=A.oxw(),l=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",l)}}function ha(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.goToChannels())}),A._uU(3,"Open Channel"),A.qZA()()}}function po(i,x){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 Mo=(()=>{class i{constructor(t){this.router=t,this.faBalanceScale=E.DL8,this.faDumbbell=E.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0))};static#t=this.\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","8","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(l,B){if(1&l&&A.YNc(0,Qo,24,15,"div",0)(1,ha,4,0,"ng-template",null,1,A.W1O)(3,po,3,1,"ng-template",null,2,A.W1O),2&l){const Z=A.MAs(4);A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.sg,ot.O5,e.BN,n.xw,n.Wh,n.yH,p.lW,nA.bx,ai.d,u.pW,yA.gM,b.$V,ce.rH,ot.OU,ot.JJ],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return i})();function mo(i,x){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.to_them_msat/1e3||0,"1.0-0")," Sats")}}function Io(i,x){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.to_us_msat/1e3||0,"1.0-0")," Sats")}}function _n(i,x){if(1&i&&A._UZ(0,"mat-progress-bar",21),2&i){const t=A.oxw().$implicit,l=A.oxw(3);A.s9C("value",l.totalLiquidity>0?(t.to_them_msat/1e3||0)/l.totalLiquidity*100:0)}}function fi(i,x){if(1&i&&A._UZ(0,"mat-progress-bar",21),2&i){const t=A.oxw().$implicit,l=A.oxw(3);A.s9C("value",l.totalLiquidity>0?(t.to_us_msat/1e3||0)/l.totalLiquidity*100:0)}}const or=()=>["../connections/channels/open"],Do=(i,x)=>({filterColumn:i,filterValue:x});function vo(i,x){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,mo,5,4,"mat-hint",17)(6,Io,5,4,"mat-hint",17),A.qZA(),A.YNc(7,_n,1,1,"mat-progress-bar",18)(8,fi,1,1,"mat-progress-bar",18),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(3);A.xp6(1),A.s9C("matTooltip",t.alias||t.peer_id),A.s9C("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Q6J("routerLink",A.DdM(14,or))("state",A.WLB(15,Do,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.xp6(1),A.AsE(" ",A.Dn7(3,10,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.xp6(3),A.Q6J("ngIf","In"===l.direction),A.xp6(1),A.Q6J("ngIf","Out"===l.direction),A.xp6(1),A.Q6J("ngIf","In"===l.direction),A.xp6(1),A.Q6J("ngIf","Out"===l.direction)}}function yo(i,x){if(1&i&&(A.TgZ(0,"div",12),A.YNc(1,vo,9,18,"div",13),A.qZA()),2&i){const t=A.oxw(2);A.xp6(1),A.Q6J("ngForOf",t.activeChannels)}}const xo=(i,x,t)=>({"mb-4":i,"mb-2":x,"mb-1":t});function Fo(i,x){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,yo,2,1,"div",11),A.qZA()()),2&i){const t=A.oxw(),l=A.MAs(2);A.Q6J("ngClass",A.kEZ(7,xo,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",l)}}function Yo(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",25),A.NdJ("click",function(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.goToChannels())}),A._uU(1,"Open Channel"),A.qZA()}}function To(i,x){if(1&i&&(A.TgZ(0,"div",22)(1,"div",23)(2,"div"),A._uU(3,"No channels available."),A.qZA(),A.YNc(4,Yo,2,0,"button",24),A.qZA()()),2&i){const t=A.oxw();A.xp6(4),A.Q6J("ngIf","Out"===t.direction)}}function No(i,x){if(1&i&&(A.TgZ(0,"div",26)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let So=(()=>{class i{constructor(t,l){this.router=t,this.commonService=l,this.screenSize="",this.screenSizeEnum=r.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0),A.Y36(w.v))};static#t=this.\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","8","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","column","fxFlex","100","fxLayoutAlign","start stretch",1,"w-100","mt-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["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(l,B){if(1&l&&A.YNc(0,Fo,12,11,"div",0)(1,To,5,1,"ng-template",null,1,A.W1O)(3,No,3,1,"ng-template",null,2,A.W1O),2&l){const Z=A.MAs(4);A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.mk,ot.sg,ot.O5,n.xw,n.Wh,n.yH,f.oO,p.lW,nA.bx,ai.d,u.pW,yA.gM,b.$V,ce.rH,ot.OU,ot.JJ]})}return i})();function Uo(i,x){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 bo(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const Z=A.CHM(t).index,LA=A.oxw().$implicit,yt=A.oxw(2);return A.KtG(yt.onNavigateTo(LA.links[Z]))}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t)}}function Lo(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){A.CHM(t);const B=A.oxw(3);return A.KtG(B.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 Po(i,x){1&i&&A._UZ(0,"mat-progress-bar",28)}function Ro(i,x){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 zo(i,x){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[1])}}function Go(i,x){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[2]+" "+t.errorMessages[1])}}function Ho(i,x){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[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function Jo(i,x){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[1]+" "+t.errorMessages[2])}}function Oo(i,x){1&i&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find information!"),A.qZA())}const Rr=i=>({"dashboard-card-content":!0,"error-border":i});function ko(i,x){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,Uo,3,1,"button",12),A.TgZ(10,"mat-menu",13,14),A.YNc(12,bo,2,1,"button",15)(13,Lo,2,1,"button",16),A.qZA()()()(),A.TgZ(14,"mat-card-content",17),A.YNc(15,Po,1,0,"mat-progress-bar",18),A.TgZ(16,"div",19),A.YNc(17,Ro,1,2,"rtl-cln-node-info",20)(18,zo,1,2,"rtl-cln-balances-info",21)(19,Go,1,4,"rtl-cln-channel-capacity-info",22)(20,Ho,1,2,"rtl-cln-fee-info",23)(21,Jo,1,2,"rtl-cln-channel-status-info",24)(22,Oo,2,0,"h3",25),A.qZA()()()()),2&i){const t=x.$implicit,l=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,Rr,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR))),A.xp6(1),A.Q6J("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.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 jo(i,x){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,ko,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 Ko(i,x){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 Wo(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const Z=A.CHM(t).index,LA=A.oxw(2).$implicit,yt=A.oxw(2);return A.KtG(yt.onNavigateTo(LA.links[Z]))}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t)}}function Vo(i,x){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,Ko,3,1,"button",12),A.TgZ(8,"mat-menu",13,42),A.YNc(10,Wo,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 Zo(i,x){1&i&&A._UZ(0,"mat-progress-bar",28)}function Xo(i,x){if(1&i&&A._UZ(0,"rtl-cln-node-info",43),2&i){const t=A.oxw(3);A.Q6J("information",t.information)}}function qo(i,x){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[1])}}function _o(i,x){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[2])}}function $o(i,x){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[2])}}function As(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",27),A.NdJ("click",function(){const Z=A.CHM(t).index,LA=A.oxw(2).$implicit,yt=A.oxw(2);return A.KtG(yt.onNavigateTo(LA.links[Z]))}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t)}}function ts(i,x){if(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,"div",51)(7,"button",26)(8,"mat-icon"),A._uU(9,"more_vert"),A.qZA()(),A.TgZ(10,"mat-menu",13,52),A.YNc(12,As,2,1,"button",15),A.qZA()()()),2&i){const t=A.MAs(11),l=A.oxw().$implicit;A.xp6(3),A.Q6J("calledFrom","home"),A.xp6(2),A.Q6J("calledFrom","home"),A.xp6(2),A.Q6J("matMenuTriggerFor",t),A.xp6(5),A.Q6J("ngForOf",l.goToOptions)}}function le(i,x){1&i&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find information!"),A.qZA())}const es=i=>({"p-0":i});function sr(i,x){if(1&i&&(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,Zo,1,0,"mat-progress-bar",18),A.TgZ(5,"div",19),A.YNc(6,Xo,1,1,"rtl-cln-node-info",39)(7,qo,1,2,"rtl-cln-balances-info",21)(8,_o,1,4,"rtl-cln-channel-liquidity-info",40)(9,$o,1,4,"rtl-cln-channel-liquidity-info",40)(10,ts,13,4,"span",41)(11,le,2,0,"h3",25),A.qZA()()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.Q6J("colspan",t.cols)("rowspan",t.rows),A.xp6(1),A.Q6J("ngClass",A.VKq(13,es,"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,Rr,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.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 lr(i,x){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,sr,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 Ni=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.store=l,this.commonService=B,this.router=Z,this.faSmile=h.ctA,this.faFrown=h.KfU,this.faAngleDoubleDown=E.Sbq,this.faAngleDoubleUp=E.Vfw,this.faChartPie=E.OS1,this.faBolt=E.BDt,this.faServer=E.xf3,this.faNetworkWired=E.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="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusBalances=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new s.x,new s.x,new s.x,new s.x,new s.x,new s.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(c.Hz).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessages[0]="",this.errorMessages[3]="",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[3]=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.fees=t.fees}),this.store.select(c.ZW).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===r.Bn.ERROR&&(this.errorMessages[2]=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(this.activeChannels?.filter(l=>!!l.to_them_msat&&l.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(l=>!!l.to_us_msat&&l.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(l=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((l.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((l.to_us_msat||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(c.XP).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusBalances=t.apiCallStatus,this.apiCallStatusBalances.status===r.Bn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=t.balance,this.balances.onchain=t.balance.totalBalance||0,this.balances.lightning=t.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const l=t.localRemoteBalance.localBalance?+t.localRemoteBalance.localBalance:0,B=t.localRemoteBalance.remoteBalance?+t.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:l,remoteBalance:B,balancedness:+(1-Math.abs((l-B)/(l+B))).toFixed(3)},this.channelsStatus.active.capacity=t.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=t.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=t.localRemoteBalance.inactiveBalance||0,this.logger.info(t)})}onNavigateTo(t){this.router.navigateByUrl("/cln/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((t,l)=>{const B=(t.to_us_msat?+t.to_us_msat:0)+(t.to_them_msat?+t.to_them_msat:0),Z=(l.to_them_msat?+l.to_them_msat:0)+(l.to_them_msat?+l.to_them_msat:0);return B>Z?-1:B{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(w.v),A.Y36(ce.F0))};static#t=this.\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","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"],["menuTransactions","matMenu"]],template:function(l,B){if(1&l&&A.YNc(0,jo,7,4,"div",0)(1,lr,6,4,"ng-template",null,1,A.W1O),2&l){const Z=A.MAs(2);A.Q6J("ngIf",(null==B.selNode?null:B.selNode.userPersona)===B.userPersonaEnum.OPERATOR)("ngIfElse",Z)}},dependencies:[ot.mk,ot.sg,ot.O5,ot.RF,ot.n9,ot.ED,e.BN,n.xw,n.Wh,n.yH,f.oO,p.RK,v.a8,v.dn,v.dk,v.n5,S.Il,S.DX,I.Hw,M.VK,M.OP,M.p6,u.pW,y.uX,y.SP,Wt,Hn,la,co,ua,fa,Mo,So]})}return i})();var oi=Rt(2572),zr=Rt(8927),Ea=Rt(4818),Si=Rt(2939),si=Rt(3305),Jn=Rt(8257);const Ui=["form"],Gr=["formSweepAll"],Hr=["stepper"];function Jr(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Bitcoin address is required."),A.qZA())}function ns(i,x){1&i&&(A.TgZ(0,"mat-hint"),A._uU(1,"Amount replaced by UTXO balance"),A.qZA())}function Ca(i,x){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 is(i,x){if(1&i&&(A.TgZ(0,"mat-option",44),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(t)}}function rs(i,x){if(1&i&&(A.TgZ(0,"mat-option",44),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function as(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function os(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",45)(1,"mat-label"),A._uU(2,"Fee Rate (Sats/vByte)"),A.qZA(),A.TgZ(3,"input",46,47),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.customFeeRate=B)}),A.qZA(),A.YNc(5,as,2,0,"mat-error",14),A.qZA()}if(2&i){const t=A.oxw(2);A.xp6(3),A.Q6J("step",.1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf)("ngModel",t.customFeeRate),A.xp6(2),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function ss(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function wa(i,x){if(1&i&&(A.TgZ(0,"mat-option",44),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t),A.xp6(1),A.hij("",A.xi3(2,2,t.amount_msat/1e3,"1.0-0")," Sats")}}function ls(i,x){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 cs(i,x){if(1&i&&(A.TgZ(0,"div",48),A._UZ(1,"fa-icon",49),A.YNc(2,ls,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 hi=(i,x)=>({"mr-6":i,"mr-2":x});function Pt(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"form",9,10),A.NdJ("submit",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onSendFunds())})("reset",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.resetData())}),A.TgZ(2,"mat-form-field",11)(3,"mat-label"),A._uU(4,"Bitcoin Address"),A.qZA(),A.TgZ(5,"input",12,13),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.transaction.destination=B)}),A.qZA(),A.YNc(7,Jr,2,0,"mat-error",14),A.qZA(),A.TgZ(8,"mat-form-field",15)(9,"mat-label"),A._uU(10,"Amount"),A.qZA(),A.TgZ(11,"input",16,17),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.transaction.satoshi=B)}),A.qZA(),A.YNc(13,ns,2,0,"mat-hint",14),A.TgZ(14,"span",18),A._uU(15),A.qZA(),A.YNc(16,Ca,2,1,"mat-error",14),A.qZA(),A.TgZ(17,"mat-form-field",19)(18,"mat-select",20),A.NdJ("selectionChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onAmountUnitChange(B))}),A.YNc(19,is,2,2,"mat-option",21),A.qZA()(),A.TgZ(20,"div",22)(21,"div",23)(22,"div",24)(23,"mat-form-field",25)(24,"mat-label"),A._uU(25,"Fee Rate"),A.qZA(),A.TgZ(26,"mat-select",26),A.NdJ("valueChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFeeRate=B)})("selectionChange",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.customFeeRate=null)}),A.YNc(27,rs,2,2,"mat-option",21),A.qZA()(),A.YNc(28,os,6,5,"mat-form-field",27),A.qZA(),A.TgZ(29,"div",28)(30,"mat-checkbox",29),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.flgMinConf=B)})("change",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.flgMinConf?B.selFeeRate=null:B.minConfValue=null)}),A.qZA(),A.TgZ(31,"mat-form-field",30)(32,"mat-label"),A._uU(33,"Min Confirmation Blocks"),A.qZA(),A.TgZ(34,"input",31,32),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.minConfValue=B)}),A.qZA(),A.YNc(36,ss,2,0,"mat-error",14),A.qZA()()(),A.TgZ(37,"mat-expansion-panel",33),A.NdJ("closed",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onAdvancedPanelToggle(!0))})("opened",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onAdvancedPanelToggle(!1))}),A.TgZ(38,"mat-expansion-panel-header")(39,"mat-panel-title")(40,"span"),A._uU(41),A.qZA()()(),A.TgZ(42,"div",22)(43,"div",34)(44,"mat-form-field",35)(45,"mat-label"),A._uU(46,"Coin Selection"),A.qZA(),A.TgZ(47,"mat-select",36),A.NdJ("valueChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selUTXOs=B)})("selectionChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onUTXOSelectionChange(B))}),A.TgZ(48,"mat-select-trigger"),A._uU(49),A.ALo(50,"number"),A.qZA(),A.YNc(51,wa,3,5,"mat-option",21),A.qZA()(),A.TgZ(52,"div",37)(53,"mat-slide-toggle",38),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.flgUseAllBalance=B)})("change",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onUTXOAllBalanceChange())}),A._uU(54," Use selected UTXOs balance "),A.qZA(),A.TgZ(55,"mat-icon",39),A._uU(56,"info_outline"),A.qZA()()()()(),A._UZ(57,"div",22),A.YNc(58,cs,3,2,"div",40),A.TgZ(59,"div",41)(60,"button",42),A._uU(61,"Clear Fields"),A.qZA(),A.TgZ(62,"button",43),A._uU(63,"Send Funds"),A.qZA()()()()}if(2&i){const t=A.oxw();A.xp6(5),A.Q6J("ngModel",t.transaction.destination),A.xp6(2),A.Q6J("ngIf",!t.transaction.destination),A.xp6(4),A.Q6J("type",t.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",t.flgUseAllBalance)("ngModel",t.transaction.satoshi),A.xp6(2),A.Q6J("ngIf",t.flgUseAllBalance),A.xp6(2),A.hij("",t.selAmountUnit," "),A.xp6(1),A.Q6J("ngIf",!t.transaction.satoshi),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(3),A.Q6J("disabled",t.flgMinConf)("value",t.selFeeRate),A.xp6(1),A.Q6J("ngForOf",t.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf),A.xp6(2),A.Q6J("ngClass",A.WLB(36,hi,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))("ngModel",t.flgMinConf),A.xp6(4),A.Q6J("step",1)("min",0)("required",t.flgMinConf)("disabled",!t.flgMinConf)("ngModel",t.minConfValue),A.xp6(2),A.Q6J("ngIf",t.flgMinConf&&!t.minConfValue),A.xp6(5),A.Oqu(t.advancedTitle),A.xp6(6),A.Q6J("value",t.selUTXOs),A.xp6(2),A.AsE("",A.lcZ(50,34,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("disabled",t.selUTXOs.length<1)("ngModel",t.flgUseAllBalance),A.xp6(5),A.Q6J("ngIf",""!==t.sendFundError)}}function cr(i,x){if(1&i&&A._uU(0),2&i){const t=A.oxw(3);A.Oqu(t.passwordFormLabel)}}function gr(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Password is required."),A.qZA())}function pi(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-step",54)(1,"form",73),A.YNc(2,cr,1,1,"ng-template",67),A.TgZ(3,"div",0)(4,"mat-form-field",57)(5,"mat-label"),A._uU(6,"Password"),A.qZA(),A._UZ(7,"input",74),A.YNc(8,gr,2,0,"mat-error",14),A.qZA()(),A.TgZ(9,"div",75)(10,"button",76),A.NdJ("click",function(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.onAuthenticate())}),A._uU(11,"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(7),A.Q6J("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function Qa(i,x){if(1&i&&A._uU(0),2&i){const t=A.oxw(2);A.Oqu(t.sendFundFormLabel)}}function Br(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Bitcoin address is required."),A.qZA())}function gs(i,x){if(1&i&&(A.TgZ(0,"mat-option",44),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function da(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function Bs(i,x){if(1&i&&(A.TgZ(0,"mat-form-field",45)(1,"mat-label"),A._uU(2,"Fee Rate (Sats/vByte)"),A.qZA(),A._UZ(3,"input",77),A.YNc(4,da,2,0,"mat-error",14),A.qZA()),2&i){const t=A.oxw(2);A.xp6(3),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 ji(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function ur(i,x){if(1&i&&A._uU(0),2&i){const t=A.oxw(2);A.Oqu(t.confirmFormLabel)}}function us(i,x){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 pa(i,x){if(1&i&&(A.TgZ(0,"div",48),A._UZ(1,"fa-icon",49),A.YNc(2,us,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 Ma(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",50)(1,"mat-vertical-stepper",51,52),A.NdJ("selectionChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.stepSelectionChanged(B))}),A.YNc(3,pi,12,4,"mat-step",53),A.TgZ(4,"mat-step",54)(5,"form",55),A.YNc(6,Qa,1,1,"ng-template",56),A.TgZ(7,"div",22)(8,"mat-form-field",57)(9,"mat-label"),A._uU(10,"Bitcoin Address"),A.qZA(),A._UZ(11,"input",58),A.YNc(12,Br,2,0,"mat-error",14),A.qZA(),A.TgZ(13,"div",59)(14,"div",24)(15,"mat-form-field",25)(16,"mat-label"),A._uU(17,"Fee Rate"),A.qZA(),A.TgZ(18,"mat-select",60),A.YNc(19,gs,2,2,"mat-option",21),A.qZA()(),A.YNc(20,Bs,5,3,"mat-form-field",27),A.qZA(),A.TgZ(21,"div",28),A._UZ(22,"mat-checkbox",61),A.TgZ(23,"mat-form-field",30)(24,"mat-label"),A._uU(25,"Min Confirmation Blocks"),A.qZA(),A._UZ(26,"input",62),A.YNc(27,ji,2,0,"mat-error",14),A.qZA()()()(),A.TgZ(28,"div",63)(29,"button",64),A._uU(30,"Next"),A.qZA()()()(),A.TgZ(31,"mat-step",65)(32,"form",66),A.YNc(33,ur,1,1,"ng-template",67),A.TgZ(34,"div",50)(35,"div",68),A._UZ(36,"fa-icon",69),A.TgZ(37,"span"),A._uU(38,"You are about to sweep all funds from RTL. Are you sure?"),A.qZA()(),A.YNc(39,pa,3,2,"div",40),A.TgZ(40,"div",63)(41,"button",70),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onSendFunds())}),A._uU(42,"Sweep All Funds"),A.qZA()()()()()(),A.TgZ(43,"div",71)(44,"button",72),A._uU(45),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(7),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(4),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,hi,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(4),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 Or=(()=>{class i{constructor(t,l,B,Z,LA,yt,ln,Ce,cn,EC){this.dialogRef=t,this.data=l,this.logger=B,this.store=Z,this.commonService=LA,this.decimalPipe=yt,this.actions=ln,this.formBuilder=Ce,this.rtlEffects=cn,this.snackBar=EC,this.faExclamationTriangle=E.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.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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[K.kI.required]],password:["",[K.kI.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",K.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([K.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:[K.kI.required])}),(0,oi.a)([this.store.select(Ea.dT),this.store.select(Ea.Yj)]).pipe((0,g.R)(this.unSubs[1])).subscribe(([t,l])=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.appConfig=l}),this.store.select(c.ey).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.information=t}),this.store.select(c.XP).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value"),this.logger.info(t)}),this.actions.pipe((0,g.R)(this.unSubs[4]),(0,F.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,mA.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,mA.QO)({payload:zr(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,oe.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.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(t=>this.transaction.utxos?.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.satoshi="all",this.transaction.destination=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,z.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.selFeeRate:null,!this.transaction.destination||""===this.transaction.destination||!this.transaction.satoshi||+this.transaction.satoshi<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi&&"all"!==this.transaction.satoshi&&this.selAmountUnit!==r.NT.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,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.satoshi=t[r.NT.SATS],this.selAmountUnit=r.NT.SATS,this.store.dispatch((0,z.Wi)({payload:this.transaction}))},error:t=>{this.transaction.satoshi=null,this.selAmountUnit=r.NT.SATS,this.amountError="Conversion Error: "+t}}):this.store.dispatch((0,z.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){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: "+this.feeRateTypes.find(l=>l.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}t.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,B)=>l+(B.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshi=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshi=this.totalSelectedUTXOAmount,this.selAmountUnit=r.uA[0]):this.transaction.satoshi=null}onAmountUnitChange(t){const l=this,B=this.selAmountUnit===this.amountUnits[2]?r.NT.OTHER:this.selAmountUnit;let Z=t.value===this.amountUnits[2]?r.NT.OTHER:t.value;this.transaction.satoshi&&this.selAmountUnit!==t.value&&this.commonService.convertCurrency(+this.transaction.satoshi,B,Z,this.amountUnits[2],this.fiatConversion).pipe((0,g.R)(this.unSubs[6])).subscribe({next:LA=>{this.selAmountUnit=t.value,l.transaction.satoshi=l.decimalPipe.transform(LA[Z],l.currencyUnitFormats[Z])?.replace(/,/g,"")},error:LA=>{l.transaction.satoshi=null,this.amountError="Conversion Error: "+LA,this.selAmountUnit=B,Z=B}})}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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(w.v),A.Y36(ot.JJ),A.Y36(aA.eX),A.Y36(K.QS),A.Y36(GA.V),A.Y36(Si.ux))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(l,B){if(1&l&&(A.Gf(Ui,7),A.Gf(Gr,5),A.Gf(Hr,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.first),A.iGM(Z=A.CRH())&&(B.formSweepAll=Z.first),A.iGM(Z=A.CRH())&&(B.stepper=Z.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 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"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","address","required","",3,"ngModel","ngModelChange"],["address","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amount","tabindex","2","required","",3,"type","step","min","disabled","ngModel","ngModelChange"],["amount","ngModel"],["matSuffix",""],["fxLayout","column","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 start"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4",3,"disabled","value","valueChange","selectionChange"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass","ngModel","ngModelChange","change"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"step","min","required","disabled","ngModel","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["tabindex","8","multiple","",3,"value","valueChange","selectionChange"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["tabindex","9","color","primary","name","flgUseAllBalance",3,"disabled","ngModel","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","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","","type","number","name","custFeeRate","tabindex","4",3,"step","min","required","ngModel","ngModelChange"],["custFeeRate","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","100"],["matInput","","formControlName","transactionAddress","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","formControlName","selFeeRate"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","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","","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","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(l,B){if(1&l&&(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,Pt,64,39,"form",7),A.qZA()()(),A.YNc(10,Ma,46,23,"ng-template",null,8,A.W1O)),2&l){const Z=A.MAs(11);A.xp6(5),A.Oqu(B.sweepAll?"Sweep All Funds":"Send Funds"),A.xp6(1),A.Q6J("mat-dialog-close",!1),A.xp6(3),A.Q6J("ngIf",!B.sweepAll)("ngIfElse",Z)}},dependencies:[ot.mk,ot.sg,ot.O5,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.qQ,K.On,K.F,K.sg,K.u,e.BN,n.xw,n.Wh,n.yH,f.oO,H.ZT,p.lW,v.dn,v.dk,Ye.oG,si.ib,si.yz,si.yK,I.Hw,$.Nt,nA.KE,nA.hX,nA.bx,nA.TO,nA.R9,uA.gD,uA.$L,wA.ey,NA.Rr,yA.gM,Jn.C0,Jn.VY,Jn.Vq,Jn.Ic,TA.h,kA.q,ot.JJ]})}return i})();var kr=Rt(3891),jr=Rt(9014);function Ki(i,x){if(1&i&&(A.TgZ(0,"mat-option",37),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function fs(i,x){1&i&&A._UZ(0,"mat-progress-bar",38)}function hs(i,x){1&i&&A._UZ(0,"th",39)}function Es(i,x){1&i&&(A.TgZ(0,"span",42)(1,"mat-icon",43),A._uU(2,"warning"),A.qZA()())}function ma(i,x){if(1&i&&(A.TgZ(0,"td",40),A.YNc(1,Es,3,0,"span",41),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(),B=A.MAs(56);A.xp6(1),A.Q6J("ngIf",l.numDustUTXOs>0&&!l.isDustUTXO&&(null==t?null:t.amount_msat)/1e3({width:i});function Ms(i,x){if(1&i&&(A.TgZ(0,"td",40)(1,"span",50)(2,"span",51),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,fr,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.txid)}}function ms(i,x){1&i&&(A.TgZ(0,"th",49),A._uU(1,"Address"),A.qZA())}function Is(i,x){if(1&i&&(A.TgZ(0,"td",40)(1,"span",50)(2,"span",51),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,fr,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.address)}}function Ds(i,x){1&i&&(A.TgZ(0,"th",49),A._uU(1,"Script Pubkey"),A.qZA())}function vs(i,x){if(1&i&&(A.TgZ(0,"td",40)(1,"span",50)(2,"span",51),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,fr,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.scriptpubkey)}}function Yn(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Output"),A.qZA())}function ys(i,x){if(1&i&&(A.TgZ(0,"td",40)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.output)," ")}}function xs(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Value (Sats)"),A.qZA())}function Fs(i,x){if(1&i&&(A.TgZ(0,"span",53),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,t.amount_msat/1e3,"1.0-0"))}}function Ys(i,x){if(1&i&&(A.TgZ(0,"span",56),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.hij("(",A.xi3(2,1,t.amount_msat/1e3*-1,"1.0-0"),")")}}function Ts(i,x){if(1&i&&(A.TgZ(0,"td",40),A.YNc(1,Fs,3,4,"span",54)(2,Ys,3,4,"span",55),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",t.amount_msat>0||0===t.amount_msat),A.xp6(1),A.Q6J("ngIf",t.amount_msat<0)}}function Ns(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Blockheight"),A.qZA())}function Ss(i,x){if(1&i&&(A.TgZ(0,"td",40)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.lcZ(3,1,null==t?null:t.blockheight)," ")}}function Us(i,x){1&i&&(A.TgZ(0,"th",49),A._uU(1,"Reserved"),A.qZA())}function Ei(i,x){if(1&i&&(A.TgZ(0,"td",40)(1,"span"),A._uU(2),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(t.reserved?"Yes":"No")}}function bs(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Ia(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",61)(1,"button",62),A.NdJ("click",function(B){const LA=A.CHM(t).$implicit,yt=A.oxw();return A.KtG(yt.onUTXOClick(LA,B))}),A._uU(2,"View Info"),A.qZA()()}}function Kr(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No utxos available."),A.qZA())}function Ke(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting utxos..."),A.qZA())}function Ci(i,x){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 Wr(i,x){if(1&i&&(A.TgZ(0,"td",63),A.YNc(1,Kr,2,0,"p",64)(2,Ke,2,0,"p",64)(3,Ci,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 Ls=i=>({"display-none":i});function hr(i,x){if(1&i&&A._UZ(0,"tr",65),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,Ls,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Er(i,x){1&i&&A._UZ(0,"tr",66)}function Cr(i,x){1&i&&A._UZ(0,"tr",67)}function ve(i,x){1&i&&A._UZ(0,"mat-icon",68)}const Ps=()=>["all"],wi=i=>({"error-border":i}),Rs=()=>["no_utxo"];let zs=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.commonService=l,this.store=B,this.camelCaseWithReplace=Z,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 d.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 s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.XP).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:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(l=>+(l.amount_msat||0)/1e30&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(t)})}ngAfterViewInit(){setTimeout(()=>{this.isDustUTXO?this.dustUtxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)},0)}onUTXOClick(t,l){const B=[[{key:"txid",value:t.txid,title:"Transaction ID",width:100}],[{key:"output",value:t.output,title:"Output",width:50,type:r.Gi.NUMBER},{key:"amount_msat",value:(t.amount_msat||0)/1e3,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,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"UTXO Information",message:B}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=JSON.stringify(t).toLowerCase();break;case"is_dust":B=(t?.amount_msat||0)/1e3"u"?"":"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_dust"===this.selFilterBy||"status"===this.selFilterBy?0===B.indexOf(l):B.includes(l)}}loadUTXOsTable(t){this.listUTXOs=new d.by([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(l,B)=>{switch(B){case"is_dust":return(l.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("UTXOs")}])],decls:57,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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(l,B){1&l&&(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-label"),A._uU(6,"Filter By"),A.qZA(),A.TgZ(7,"mat-select",5),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(8,"perfect-scrollbar"),A.YNc(9,Ki,2,2,"mat-option",6),A.qZA()()(),A.TgZ(10,"mat-form-field",4)(11,"mat-label"),A._uU(12,"Filter"),A.qZA(),A.TgZ(13,"input",7),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.TgZ(14,"div",8)(15,"div",9),A.YNc(16,fs,1,0,"mat-progress-bar",10),A.TgZ(17,"table",11,12),A.ynx(19,13),A.YNc(20,hs,1,0,"th",14)(21,ma,2,2,"td",15),A.BQk(),A.ynx(22,16),A.YNc(23,Cs,1,0,"th",17)(24,ds,3,2,"td",15),A.BQk(),A.ynx(25,18),A.YNc(26,ps,2,0,"th",19)(27,Ms,4,4,"td",15),A.BQk(),A.ynx(28,20),A.YNc(29,ms,2,0,"th",19)(30,Is,4,4,"td",15),A.BQk(),A.ynx(31,21),A.YNc(32,Ds,2,0,"th",19)(33,vs,4,4,"td",15),A.BQk(),A.ynx(34,22),A.YNc(35,Yn,2,0,"th",23)(36,ys,4,3,"td",15),A.BQk(),A.ynx(37,24),A.YNc(38,xs,2,0,"th",23)(39,Ts,3,2,"td",15),A.BQk(),A.ynx(40,25),A.YNc(41,Ns,2,0,"th",23)(42,Ss,4,3,"td",15),A.BQk(),A.ynx(43,26),A.YNc(44,Us,2,0,"th",19)(45,Ei,3,1,"td",15),A.BQk(),A.ynx(46,27),A.YNc(47,bs,6,0,"th",28)(48,Ia,3,0,"td",29),A.BQk(),A.ynx(49,30),A.YNc(50,Wr,4,3,"td",31),A.BQk(),A.YNc(51,hr,1,3,"tr",32)(52,Er,1,0,"tr",33)(53,Cr,1,0,"tr",34),A.qZA(),A._UZ(54,"mat-paginator",35),A.qZA()()(),A.YNc(55,ve,1,0,"ng-template",null,36,A.W1O)),2&l&&(A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(14,Ps).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(3),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.listUTXOs)("ngClass",A.VKq(15,wi,""!==B.errorMessage)),A.xp6(34),A.Q6J("matFooterRowDef",A.DdM(17,Rs)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,I.Hw,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V,ot.JJ,ot.rS],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:3rem;width:3rem;text-overflow:unset}.mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();function Gs(i,x){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 wr(i,x){if(1&i&&(A.TgZ(0,"span",5),A._uU(1,"Dust UTXOs"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.numDustUtxos)}}let li=(()=>{class i{constructor(t,l){this.logger=t,this.store=l,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.vpe,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new s.x,new s.x]}ngOnInit(){this.store.select(c.XP).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length||0,this.numDustUtxos=t.utxos?.filter(l=>+(l.amount_msat||0)/1e3{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh))};static#t=this.\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"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndex","selectedIndexChange"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false","matBadgeColor","primary",1,"tab-badge",3,"matBadge"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(l,B){1&l&&(A.TgZ(0,"div",0)(1,"mat-tab-group",1),A.NdJ("selectedIndexChange",function(LA){return B.onSelectedIndexChanged(LA)}),A.TgZ(2,"mat-tab"),A.YNc(3,Gs,2,1,"ng-template",2),A._UZ(4,"rtl-cln-on-chain-utxos",3),A.qZA(),A.TgZ(5,"mat-tab"),A.YNc(6,wr,2,1,"ng-template",2),A._UZ(7,"rtl-cln-on-chain-utxos",3),A.qZA()()()),2&l&&(A.xp6(1),A.Q6J("selectedIndex",B.selectedTableIndex),A.xp6(3),A.Q6J("numDustUTXOs",B.numDustUtxos)("isDustUTXO",!1)("dustAmount",B.DUST_AMOUNT),A.xp6(3),A.Q6J("numDustUTXOs",B.numDustUtxos)("isDustUTXO",!0)("dustAmount",B.DUST_AMOUNT))},dependencies:[n.xw,n.Wh,n.yH,jr.k,y.uD,y.uX,y.SP,zs]})}return i})();const Da=(i,x)=>[i,x];function bi(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",13),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.activeLink=null==Z?null:Z.link)}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit,l=A.oxw();A.Q6J("active",l.activeLink===(null==t?null:t.link))("routerLink",A.WLB(3,Da,null==t?null:t.link,null==l.selectedTable?null:l.selectedTable.name)),A.xp6(1),A.Oqu(null==t?null:t.name)}}let va=(()=>{class i{constructor(t,l,B){this.store=t,this.router=l,this.activatedRoute=B,this.selNode={},this.faExchangeAlt=E.Ssp,this.faChartPie=E.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 s.x,new s.x,new s.x,new s.x]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(l=>l instanceof ce.Av)).subscribe({next:l=>{const B=this.links.find(Z=>l.urlAfterRedirects.includes(Z.link));this.activeLink=B?B.link:this.links[0].link,this.selectedTable=this.tables.find(Z=>Z.name===l.urlAfterRedirects.substring(l.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(c.lw).pipe((0,g.R)(this.unSubs[1])).subscribe(l=>{this.selNode=l}),this.store.select(c.XP).pipe((0,g.R)(this.unSubs[2])).subscribe(l=>{this.balances=[{title:"Total Balance",dataValue:l.balance.totalBalance||0},{title:"Confirmed",dataValue:l.balance.confBalance||0},{title:"Unconfirmed",dataValue:l.balance.unconfBalance||0}]})}openSendFundsModal(t){this.store.dispatch((0,mA.qR)({payload:{data:{sweepAll:t,component:Or}}}))}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(l=>l.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(C.yh),A.Y36(ce.F0),A.Y36(ce.gz))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain"]],decls:23,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","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["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"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(l,B){if(1&l&&(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,bi,2,6,"div",8),A.qZA(),A._UZ(17,"mat-tab-nav-panel",null,9),A.TgZ(19,"div",10),A._UZ(20,"router-outlet"),A.qZA(),A.TgZ(21,"div",11)(22,"rtl-cln-utxo-tables",12),A.NdJ("selectedTableIndexChange",function(LA){return B.onSelectedTableIndexChanged(LA)}),A.qZA()()()()()),2&l){const Z=A.MAs(18);A.xp6(1),A.Q6J("icon",B.faChartPie),A.xp6(6),A.Q6J("values",B.balances),A.xp6(2),A.Q6J("icon",B.faExchangeAlt),A.xp6(6),A.Q6J("tabPanel",Z),A.xp6(1),A.Q6J("ngForOf",B.links),A.xp6(6),A.Q6J("selectedTableIndex",null==B.selectedTable?null:B.selectedTable.id)}},dependencies:[ot.sg,e.BN,n.xw,n.Wh,n.yH,v.a8,v.dn,y.BU,y.sW,y.Nj,kr.D,ce.lC,ce.rH,li]})}return i})();function Hs(i,x){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 Qr(i,x){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 dr=(()=>{class i{constructor(t,l,B){this.store=t,this.logger=l,this.router=B,this.activePeers=0,this.activeChannels=0,this.faUsers=E.FVb,this.faChartPie=E.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 s.x,new s.x,new s.x,new s.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,F.h)(t=>t instanceof ce.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(c.ZW).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.activeChannels=t.activeChannels.length||0}),this.store.select(c.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(c.XP).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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(C.yh),A.Y36(Q.mQ),A.Y36(ce.F0))};static#t=this.\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"],["mat-stretch-tabs","false","mat-align-tabs","start",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(l,B){1&l&&(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(LA){return B.activeLink=LA})("selectedTabChange",function(LA){return B.onSelectedTabChange(LA)}),A.TgZ(16,"mat-tab"),A.YNc(17,Hs,2,1,"ng-template",8),A.qZA(),A.TgZ(18,"mat-tab"),A.YNc(19,Qr,2,1,"ng-template",8),A.qZA()(),A.TgZ(20,"div",9),A._UZ(21,"router-outlet"),A.qZA()()()()),2&l&&(A.xp6(1),A.Q6J("icon",B.faChartPie),A.xp6(6),A.Q6J("values",B.balances),A.xp6(2),A.Q6J("icon",B.faUsers),A.xp6(6),A.Q6J("selectedIndex",B.activeLink))},dependencies:[e.BN,n.xw,n.Wh,n.yH,v.a8,v.dn,jr.k,y.uD,y.uX,y.SP,kr.D,ce.lC]})}return i})();var ci=Rt(2460);function Js(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",12),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.activeLink=Z.link)}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit,l=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",l.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let pr=(()=>{class i{constructor(t,l,B){this.logger=t,this.store=l,this.router=B,this.faExchangeAlt=E.Ssp,this.faChartPie=E.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 s.x,new s.x,new s.x,new s.x]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(l=>l instanceof ce.Av)).subscribe({next:l=>{const B=this.links.find(Z=>l.urlAfterRedirects.includes(Z.link));this.activeLink=B?B.link:this.links[0].link,this.routerUrl=l.urlAfterRedirects}}),this.store.select(c.lw).pipe((0,g.R)(this.unSubs[1])).subscribe(l=>{if(this.selNode=l,this.selNode&&this.selNode.enableOffers){this.store.dispatch((0,z.yl)()),this.store.dispatch((0,z.uT)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const B=this.links.find(Z=>this.router.url.includes(Z.link));this.activeLink=B?B.link:this.links[0].link}}),this.store.select(c.XP).pipe((0,g.R)(this.unSubs[2]),(0,ci.M)(this.store.select(c.lw))).subscribe(([l,B])=>{this.currencyUnits=B?.currencyUnits||[],this.balances=B&&B.userPersona===r.ol.OPERATOR?[{title:"Local Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(l)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-transactions"]],decls:21,vars:5,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(l,B){if(1&l&&(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,Js,2,3,"div",9),A.qZA(),A._UZ(17,"mat-tab-nav-panel",null,10),A.TgZ(19,"div",11),A._UZ(20,"router-outlet"),A.qZA()()()()),2&l){const Z=A.MAs(18);A.xp6(1),A.Q6J("icon",B.faChartPie),A.xp6(6),A.Q6J("values",B.balances),A.xp6(2),A.Q6J("icon",B.faExchangeAlt),A.xp6(6),A.Q6J("tabPanel",Z),A.xp6(1),A.Q6J("ngForOf",B.links)}},dependencies:[ot.sg,e.BN,n.xw,n.Wh,n.yH,v.a8,v.dn,y.BU,y.sW,y.Nj,kr.D,ce.lC,ce.rH]})}return i})();function Wi(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",12),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.activeLink=Z.link)}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit,l=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",l.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Os=(()=>{class i{constructor(t){this.router=t,this.faMapSigns=E.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 s.x,new s.x,new s.x]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(l=>l instanceof ce.Av)).subscribe({next:l=>{const B=this.links.find(Z=>l.urlAfterRedirects.includes(Z.link));this.activeLink=B?B.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-routing"]],decls:15,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(l,B){if(1&l&&(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,Wi,2,3,"div",9),A.qZA(),A._UZ(11,"mat-tab-nav-panel",null,10),A.qZA(),A.TgZ(13,"div",11),A._UZ(14,"router-outlet"),A.qZA()()()()()),2&l){const Z=A.MAs(12);A.xp6(2),A.Q6J("icon",B.faMapSigns),A.xp6(7),A.Q6J("tabPanel",Z),A.xp6(1),A.Q6J("ngForOf",B.links)}},dependencies:[ot.sg,e.BN,n.xw,n.Wh,n.yH,v.a8,v.dn,y.BU,y.sW,y.Nj,ce.lC,ce.rH]})}return i})();function ks(i,x){1&i&&(A.TgZ(0,"h3",9),A._uU(1,"Node 1"),A.qZA())}function js(i,x){1&i&&(A.TgZ(0,"h3",9),A._uU(1,"Node 1 (Your Node)"),A.qZA())}function ya(i,x){1&i&&(A.TgZ(0,"h3",9),A._uU(1,"Node 2"),A.qZA())}function Ks(i,x){1&i&&(A.TgZ(0,"h3",9),A._uU(1,"Node 2 (Your Node)"),A.qZA())}function Ws(i,x){if(1&i&&(A.TgZ(0,"div",1),A._UZ(1,"mat-divider"),A.TgZ(2,"div",2)(3,"div",3)(4,"div",4),A.YNc(5,ks,2,0,"h3",5)(6,js,2,0,"h3",5),A.qZA(),A._UZ(7,"mat-divider",6),A.TgZ(8,"div",4)(9,"h4",7),A._uU(10,"Short Channel ID"),A.qZA(),A.TgZ(11,"span",8),A._uU(12),A.qZA()(),A._UZ(13,"mat-divider",6),A.TgZ(14,"div",4)(15,"h4",7),A._uU(16,"Active"),A.qZA(),A.TgZ(17,"span",8),A._uU(18),A.qZA()(),A._UZ(19,"mat-divider",6),A.TgZ(20,"div",4)(21,"h4",7),A._uU(22,"Last Update"),A.qZA(),A.TgZ(23,"span",8),A._uU(24),A.ALo(25,"date"),A.qZA()(),A._UZ(26,"mat-divider",6),A.TgZ(27,"div",4)(28,"h4",7),A._uU(29,"Amount (Sats)"),A.qZA(),A.TgZ(30,"span",8),A._uU(31),A.ALo(32,"number"),A.qZA()(),A._UZ(33,"mat-divider",6),A.TgZ(34,"div",4)(35,"h4",7),A._uU(36,"Base Fee (mSats)"),A.qZA(),A.TgZ(37,"span",8),A._uU(38),A.ALo(39,"number"),A.qZA()(),A._UZ(40,"mat-divider",6),A.TgZ(41,"div",4)(42,"h4",7),A._uU(43,"Fee/Millionth"),A.qZA(),A.TgZ(44,"span",8),A._uU(45),A.ALo(46,"number"),A.qZA()(),A._UZ(47,"mat-divider",6),A.TgZ(48,"div",4)(49,"h4",7),A._uU(50,"Channel Flags"),A.qZA(),A.TgZ(51,"span",8),A._uU(52),A.ALo(53,"number"),A.qZA()(),A._UZ(54,"mat-divider",6),A.TgZ(55,"div",4)(56,"h4",7),A._uU(57,"Delay"),A.qZA(),A.TgZ(58,"span",8),A._uU(59),A.ALo(60,"number"),A.qZA()(),A._UZ(61,"mat-divider",6),A.TgZ(62,"div",4)(63,"h4",7),A._uU(64,"Max Htlc (mSat)"),A.qZA(),A.TgZ(65,"span",8),A._uU(66),A.ALo(67,"number"),A.qZA()(),A._UZ(68,"mat-divider",6),A.TgZ(69,"div",4)(70,"h4",7),A._uU(71,"Min Htlc (mSat)"),A.qZA(),A.TgZ(72,"span",8),A._uU(73),A.ALo(74,"number"),A.qZA()(),A._UZ(75,"mat-divider",6),A.TgZ(76,"div",4)(77,"h4",7),A._uU(78,"Message Flags"),A.qZA(),A.TgZ(79,"span",8),A._uU(80),A.ALo(81,"number"),A.qZA()(),A._UZ(82,"mat-divider",6),A.TgZ(83,"div",4)(84,"h4",7),A._uU(85,"Public"),A.qZA(),A.TgZ(86,"span",8),A._uU(87),A.qZA()(),A._UZ(88,"mat-divider",6),A.TgZ(89,"div",4)(90,"h4",7),A._uU(91,"Source"),A.qZA(),A.TgZ(92,"span",8),A._uU(93),A.qZA()(),A._UZ(94,"mat-divider",6),A.TgZ(95,"div",4)(96,"h4",7),A._uU(97,"Destination"),A.qZA(),A.TgZ(98,"span",8),A._uU(99),A.qZA()()(),A.TgZ(100,"div",3)(101,"div"),A.YNc(102,ya,2,0,"h3",5)(103,Ks,2,0,"h3",5),A.qZA(),A._UZ(104,"mat-divider",6),A.TgZ(105,"div",4)(106,"h4",7),A._uU(107,"Short Channel ID"),A.qZA(),A.TgZ(108,"span",8),A._uU(109),A.qZA()(),A._UZ(110,"mat-divider",6),A.TgZ(111,"div",4)(112,"h4",7),A._uU(113,"Active"),A.qZA(),A.TgZ(114,"span",8),A._uU(115),A.qZA()(),A._UZ(116,"mat-divider",6),A.TgZ(117,"div",4)(118,"h4",7),A._uU(119,"Last Update"),A.qZA(),A.TgZ(120,"span",8),A._uU(121),A.ALo(122,"date"),A.qZA()(),A._UZ(123,"mat-divider",6),A.TgZ(124,"div",4)(125,"h4",7),A._uU(126,"Amount (Sats)"),A.qZA(),A.TgZ(127,"span",8),A._uU(128),A.ALo(129,"number"),A.qZA()(),A._UZ(130,"mat-divider",6),A.TgZ(131,"div",4)(132,"h4",7),A._uU(133,"Base Fee (mSats)"),A.qZA(),A.TgZ(134,"span",8),A._uU(135),A.ALo(136,"number"),A.qZA()(),A._UZ(137,"mat-divider",6),A.TgZ(138,"div",4)(139,"h4",7),A._uU(140,"Fee/Millionth"),A.qZA(),A.TgZ(141,"span",8),A._uU(142),A.ALo(143,"number"),A.qZA()(),A._UZ(144,"mat-divider",6),A.TgZ(145,"div",4)(146,"h4",7),A._uU(147,"Channel Flags"),A.qZA(),A.TgZ(148,"span",8),A._uU(149),A.ALo(150,"number"),A.qZA()(),A._UZ(151,"mat-divider",6),A.TgZ(152,"div",4)(153,"h4",7),A._uU(154,"Delay"),A.qZA(),A.TgZ(155,"span",8),A._uU(156),A.ALo(157,"number"),A.qZA()(),A._UZ(158,"mat-divider",6),A.TgZ(159,"div",4)(160,"h4",7),A._uU(161,"Max Htlc (mSat)"),A.qZA(),A.TgZ(162,"span",8),A._uU(163),A.ALo(164,"number"),A.qZA()(),A._UZ(165,"mat-divider",6),A.TgZ(166,"div",4)(167,"h4",7),A._uU(168,"Min Htlc (mSat)"),A.qZA(),A.TgZ(169,"span",8),A._uU(170),A.ALo(171,"number"),A.qZA()(),A._UZ(172,"mat-divider",6),A.TgZ(173,"div",4)(174,"h4",7),A._uU(175,"Message Flags"),A.qZA(),A.TgZ(176,"span",8),A._uU(177),A.ALo(178,"number"),A.qZA()(),A._UZ(179,"mat-divider",6),A.TgZ(180,"div",4)(181,"h4",7),A._uU(182,"Public"),A.qZA(),A.TgZ(183,"span",8),A._uU(184),A.qZA()(),A._UZ(185,"mat-divider",6),A.TgZ(186,"div",4)(187,"h4",7),A._uU(188,"Source"),A.qZA(),A.TgZ(189,"span",8),A._uU(190),A.qZA()(),A._UZ(191,"mat-divider",6),A.TgZ(192,"div",4)(193,"h4",7),A._uU(194,"Destination"),A.qZA(),A.TgZ(195,"span",8),A._uU(196),A.qZA()()()()()),2&i){const t=A.oxw();A.xp6(5),A.Q6J("ngIf",!t.node1_match),A.xp6(1),A.Q6J("ngIf",t.node1_match),A.xp6(6),A.Oqu(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].short_channel_id),A.xp6(6),A.Oqu(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].active?"True":"False"),A.xp6(6),A.Oqu(A.xi3(25,32,1e3*(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.xp6(7),A.Oqu(A.xi3(32,35,(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.xp6(7),A.Oqu(A.lcZ(39,38,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].base_fee_millisatoshi)),A.xp6(7),A.Oqu(A.lcZ(46,40,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].fee_per_millionth)),A.xp6(7),A.Oqu(A.lcZ(53,42,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].channel_flags)),A.xp6(7),A.Oqu(A.lcZ(60,44,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].delay)),A.xp6(7),A.Oqu(A.lcZ(67,46,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_maximum_msat)),A.xp6(7),A.Oqu(A.lcZ(74,48,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_minimum_msat)),A.xp6(7),A.Oqu(A.lcZ(81,50,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].message_flags)),A.xp6(7),A.Oqu(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].public?"Yes":"No"),A.xp6(6),A.Oqu(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].source),A.xp6(6),A.Oqu(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].destination),A.xp6(3),A.Q6J("ngIf",!t.node2_match),A.xp6(1),A.Q6J("ngIf",t.node2_match),A.xp6(6),A.Oqu(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].short_channel_id),A.xp6(6),A.Oqu(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].active?"True":"False"),A.xp6(6),A.Oqu(A.xi3(122,52,1e3*(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.xp6(7),A.Oqu(A.xi3(129,55,(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.xp6(7),A.Oqu(A.lcZ(136,58,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].base_fee_millisatoshi)),A.xp6(7),A.Oqu(A.lcZ(143,60,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].fee_per_millionth)),A.xp6(7),A.Oqu(A.lcZ(150,62,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].channel_flags)),A.xp6(7),A.Oqu(A.lcZ(157,64,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].delay)),A.xp6(7),A.Oqu(A.lcZ(164,66,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_maximum_msat)),A.xp6(7),A.Oqu(A.lcZ(171,68,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_minimum_msat)),A.xp6(7),A.Oqu(A.lcZ(178,70,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].message_flags)),A.xp6(7),A.Oqu(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].public?"Yes":"No"),A.xp6(6),A.Oqu(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].source),A.xp6(6),A.Oqu(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].destination)}}let Vs=(()=>{class i{constructor(t){this.store=t,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new s.x,new s.x,new s.x,new s.x]}ngOnInit(){this.store.select(c.ey).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===t.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===t.id&&(this.node2_match=!0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(C.yh))};static#t=this.\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 stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"page-title","font-bold-500"]],template:function(l,B){1&l&&A.YNc(0,Ws,197,72,"div",0),2&l&&A.Q6J("ngIf",B.lookupResult)},dependencies:[ot.O5,n.xw,n.Wh,n.yH,ai.d,ot.JJ,ot.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}"]})}return i})();const Zs=["peersForm"],Xs=["stepper"];function qs(i,x){if(1&i&&A._uU(0),2&i){const t=A.oxw();A.Oqu(t.peerFormLabel)}}function _s(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Address is required."),A.qZA())}function $s(i,x){if(1&i&&(A.TgZ(0,"div",41),A._UZ(1,"fa-icon",42),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 A0(i,x){if(1&i&&A._uU(0),2&i){const t=A.oxw();A.Oqu(t.channelFormLabel)}}function t0(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function e0(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount must be a positive number."),A.qZA())}function Mr(i,x){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 Vr(i,x){if(1&i&&(A.TgZ(0,"mat-option",43),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function mr(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function xa(i,x){if(1&i&&(A.TgZ(0,"mat-form-field",44)(1,"mat-label"),A._uU(2,"Fee Rate (Sats/vByte)"),A.qZA(),A._UZ(3,"input",45),A.YNc(4,mr,2,0,"mat-error",15),A.qZA()),2&i){const t=A.oxw();A.xp6(3),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 n0(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Confirmation Blocks is required."),A.qZA())}function Ir(i,x){if(1&i&&(A.TgZ(0,"div",41),A._UZ(1,"fa-icon",42),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 Sn=(i,x)=>({"mr-6":i,"mr-2":x});let $n=(()=>{class i{constructor(t,l,B,Z,LA,yt,ln){this.dialogRef=t,this.data=l,this.store=B,this.formBuilder=Z,this.actions=LA,this.logger=yt,this.commonService=ln,this.faExclamationTriangle=E.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 s.x,new s.x,new s.x,new s.x,new s.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:["",[K.kI.required]],peerAddress:[this.peerAddress,[K.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[K.kI.required,K.kI.min(1),K.kI.max(this.totalBalance)]],isPrivate:[!!this.selNode?.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[K.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.channelFormGroup.controls.isPrivate.setValue(!!t?.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.R)(this.unSubs[1])).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([K.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(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:[K.kI.required])}),this.actions.pipe((0,g.R)(this.unSubs[3]),(0,F.h)(t=>t.type===r.AB.NEWLY_ADDED_PEER_CLN||t.type===r.AB.FETCH_CHANNELS_CLN||t.type===r.AB.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.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===r.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close(),t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.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,z.El)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){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,z.YX)({payload:{peerId:this.newlyAddedPeer?.id,amount: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){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: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer?.alias:this.newlyAddedPeer?.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(C.yh),A.Y36(K.QS),A.Y36(aA.eX),A.Y36(Q.mQ),A.Y36(w.v))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(l,B){if(1&l&&(A.Gf(Zs,5),A.Gf(Xs,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.first),A.iGM(Z=A.CRH())&&(B.stepper=Z.first)}},decls:66,vars:32,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 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",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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"],["fxLayout","column","fxFlex","53","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","45","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","53","fxLayoutAlign","space-between end"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","45","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxLayout","column","fxFlex","93"],["matInput","","formControlName","minConfValue","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"],["fxLayout","column","fxFlex","48","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(l,B){1&l&&(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 B.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(LA){return B.stepSelectionChanged(LA)}),A.TgZ(12,"mat-step",10)(13,"form",11),A.YNc(14,qs,1,1,"ng-template",12),A.TgZ(15,"mat-form-field",13)(16,"mat-label"),A._uU(17,"Lightning Address (pubkey OR pubkey@ip:port)"),A.qZA(),A._UZ(18,"input",14),A.YNc(19,_s,2,0,"mat-error",15),A.qZA(),A.YNc(20,$s,4,2,"div",16),A.TgZ(21,"div",17)(22,"button",18),A.NdJ("click",function(){return B.onConnectPeer()}),A._uU(23),A.qZA()()()(),A.TgZ(24,"mat-step",10)(25,"form",19),A.NdJ("ngSubmit",function(){return B.onOpenChannel()}),A.YNc(26,A0,1,1,"ng-template",20),A.TgZ(27,"div",21)(28,"div",22)(29,"mat-form-field",23)(30,"mat-label"),A._uU(31,"Amount"),A.qZA(),A._UZ(32,"input",24),A.TgZ(33,"mat-hint"),A._uU(34),A.ALo(35,"number"),A.qZA(),A.TgZ(36,"span",25),A._uU(37," Sats "),A.qZA(),A.YNc(38,t0,2,0,"mat-error",15)(39,e0,2,0,"mat-error",15)(40,Mr,2,1,"mat-error",15),A.qZA(),A.TgZ(41,"div",26)(42,"mat-slide-toggle",27),A._uU(43,"Private Channel"),A.qZA()()(),A.TgZ(44,"div",28)(45,"div",29)(46,"mat-form-field",30)(47,"mat-label"),A._uU(48,"Fee Rate"),A.qZA(),A.TgZ(49,"mat-select",31),A.YNc(50,Vr,2,2,"mat-option",32),A.qZA()(),A.YNc(51,xa,5,3,"mat-form-field",33),A.qZA(),A.TgZ(52,"div",34),A._UZ(53,"mat-checkbox",35),A.TgZ(54,"mat-form-field",36)(55,"mat-label"),A._uU(56,"Min Confirmation Blocks"),A.qZA(),A._UZ(57,"input",37),A.YNc(58,n0,2,0,"mat-error",15),A.qZA()()()(),A.YNc(59,Ir,4,2,"div",16),A.TgZ(60,"div",17)(61,"button",38),A._uU(62),A.qZA()()()()(),A.TgZ(63,"div",39)(64,"button",40),A._uU(65),A.qZA()()()()()()),2&l&&(A.xp6(10),A.Q6J("linear",!0),A.xp6(2),A.Q6J("stepControl",B.peerFormGroup)("editable",B.flgEditable),A.xp6(1),A.Q6J("formGroup",B.peerFormGroup),A.xp6(6),A.Q6J("ngIf",null==B.peerFormGroup.controls.peerAddress.errors?null:B.peerFormGroup.controls.peerAddress.errors.required),A.xp6(1),A.Q6J("ngIf",""!==B.peerConnectionError),A.xp6(3),A.Oqu(""!==B.peerConnectionError?"Retry":"Add Peer"),A.xp6(1),A.Q6J("stepControl",B.channelFormGroup)("editable",B.flgEditable),A.xp6(1),A.Q6J("formGroup",B.channelFormGroup),A.xp6(7),A.Q6J("step",1e3),A.xp6(2),A.hij("Remaining: ",A.lcZ(35,27,B.totalBalance-(B.channelFormGroup.controls.fundingAmount.value?B.channelFormGroup.controls.fundingAmount.value:0)),""),A.xp6(4),A.Q6J("ngIf",null==B.channelFormGroup.controls.fundingAmount.errors?null:B.channelFormGroup.controls.fundingAmount.errors.required),A.xp6(1),A.Q6J("ngIf",null==B.channelFormGroup.controls.fundingAmount.errors?null:B.channelFormGroup.controls.fundingAmount.errors.min),A.xp6(1),A.Q6J("ngIf",null==B.channelFormGroup.controls.fundingAmount.errors?null:B.channelFormGroup.controls.fundingAmount.errors.max),A.xp6(6),A.Q6J("fxFlex","customperkb"!==B.channelFormGroup.controls.selFeeRate.value||B.channelFormGroup.controls.flgMinConf.value?"100":"48"),A.xp6(4),A.Q6J("ngForOf",B.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===B.channelFormGroup.controls.selFeeRate.value&&!B.channelFormGroup.controls.flgMinConf.value),A.xp6(2),A.Q6J("ngClass",A.WLB(29,Sn,B.screenSize===B.screenSizeEnum.XS||B.screenSize===B.screenSizeEnum.SM,B.screenSize===B.screenSizeEnum.MD||B.screenSize===B.screenSizeEnum.LG||B.screenSize===B.screenSizeEnum.XL)),A.xp6(4),A.Q6J("step",1)("min",0)("required",B.channelFormGroup.controls.flgMinConf.value),A.xp6(1),A.Q6J("ngIf",B.channelFormGroup.controls.flgMinConf.value&&!B.channelFormGroup.controls.minConfValue.value),A.xp6(1),A.Q6J("ngIf",""!==B.channelConnectionError),A.xp6(3),A.Oqu(""!==B.channelConnectionError?"Retry":"Open Channel"),A.xp6(2),A.Q6J("mat-dialog-close",!1),A.xp6(1),A.Oqu(null!=B.newlyAddedPeer&&B.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[ot.mk,ot.sg,ot.O5,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.qQ,K.sg,K.u,e.BN,n.xw,n.Wh,n.yH,f.oO,H.ZT,p.lW,v.dn,v.dk,Ye.oG,$.Nt,nA.KE,nA.hX,nA.bx,nA.TO,nA.R9,uA.gD,wA.ey,NA.Rr,Jn.C0,Jn.VY,Jn.Vq,TA.h,kA.q,ot.JJ]})}return i})();var Mi=Rt(7313);function Zr(i,x){if(1&i&&(A.TgZ(0,"span",6),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t)}}function Xr(i,x){1&i&&(A.TgZ(0,"th",27),A._uU(1,"Type"),A.qZA())}function i0(i,x){if(1&i&&(A.TgZ(0,"td",28),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.type)}}function Vi(i,x){1&i&&(A.TgZ(0,"th",27),A._uU(1,"Address"),A.qZA())}function Fa(i,x){if(1&i&&(A.TgZ(0,"td",28),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.address)}}function r0(i,x){1&i&&(A.TgZ(0,"th",27),A._uU(1,"Port"),A.qZA())}function a0(i,x){if(1&i&&(A.TgZ(0,"td",28),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.port)}}function o0(i,x){1&i&&(A.TgZ(0,"th",29)(1,"div",30),A._uU(2,"Actions"),A.qZA()())}function s0(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",31)(1,"div",32)(2,"mat-select",33),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",34),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(2);return A.KtG(LA.onConnectNode(Z))}),A._uU(5,"Connect"),A.qZA(),A.TgZ(6,"mat-option",35),A.NdJ("copied",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.onCopyNodeURI(B))}),A._uU(7,"Copy URI"),A.qZA()()()()}if(2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(6),A.Q6J("payload",(null==l.lookupResult?null:l.lookupResult.nodeid)+"@"+t.address+":"+t.port)}}function l0(i,x){1&i&&A._UZ(0,"tr",36)}function c0(i,x){1&i&&A._UZ(0,"tr",37)}const g0=i=>({"background-color":i});function B0(i,x){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,Zr,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,Xr,2,0,"th",18)(36,i0,2,1,"td",19),A.BQk(),A.ynx(37,20),A.YNc(38,Vi,2,0,"th",18)(39,Fa,2,1,"td",19),A.BQk(),A.ynx(40,21),A.YNc(41,r0,2,0,"th",18)(42,a0,2,1,"td",19),A.BQk(),A.ynx(43,22),A.YNc(44,o0,3,0,"th",23)(45,s0,8,1,"td",24),A.BQk(),A.YNc(46,l0,1,0,"tr",25)(47,c0,1,0,"tr",26),A.qZA()()()()),2&i){const t=A.oxw();A.xp6(7),A.Oqu(null==t.lookupResult?null:t.lookupResult.alias),A.xp6(1),A.Q6J("ngStyle",A.VKq(12,g0,"#"+(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(7),A.Oqu(A.xi3(22,9,1e3*(null==t.lookupResult?null:t.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.xp6(5),A.Q6J("ngForOf",t.featureDescriptions),A.xp6(6),A.Q6J("dataSource",t.addresses),A.xp6(14),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}let u0=(()=>{class i{constructor(t,l,B){this.logger=t,this.snackBar=l,this.store=B,this.featureDescriptions=[],this.addresses=new d.by([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new s.x]}ngOnInit(){if(this.addresses=new d.by(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(t,l)=>t[l]&&isNaN(t[l])?t[l].toLocaleLowerCase():t[l]?+t[l]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const t=parseInt(this.lookupResult.features,16);r.Df.forEach(l=>{t&1<{this.information=t.information,this.availableBalance=t.balance.totalBalance||0})}onConnectNode(t){this.store.dispatch((0,mA.qR)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+t.address+":"+t.port},information:this.information,balance:this.availableBalance},component:$n}}}))}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(Si.ux),A.Y36(C.yh))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(l,B){if(1&l&&A.Gf(D.YE,5),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1"],["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"],["class","foreground-secondary-text",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","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["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"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(l,B){1&l&&A.YNc(0,B0,48,14,"div",0),2&l&&A.Q6J("ngIf",B.lookupResult)},dependencies:[ot.sg,ot.O5,ot.PC,n.xw,n.Wh,n.yH,f.Zl,ai.d,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.ge,d.ev,d.XQ,d.Gk,b.$V,Mi.y,ot.uU]})}return i})();const f0=["form"];function h0(i,x){if(1&i&&(A.TgZ(0,"mat-radio-button",17),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t.id)("checked",l.selectedFieldId===t.id),A.xp6(1),A.hij(" ",t.name," ")}}function E0(i,x){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 C0(i,x){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 Dr(i,x){if(1&i&&(A.TgZ(0,"span",24),A.YNc(1,C0,2,1,"div",25),A.qZA()),2&i){const t=A.oxw(2),l=A.MAs(21);A.xp6(1),A.Q6J("ngIf",""!==t.nodeLookupValue.nodeid)("ngIfElse",l)}}function Me(i,x){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 ee(i,x){if(1&i&&(A.TgZ(0,"span",24),A.YNc(1,Me,2,1,"div",25),A.qZA()),2&i){const t=A.oxw(2),l=A.MAs(21);A.xp6(1),A.Q6J("ngIf",t.channelLookupValue.channels&&t.channelLookupValue.channels.length>0)("ngIfElse",l)}}function w0(i,x){1&i&&(A.TgZ(0,"span"),A._uU(1,' fxFlex="100"'),A.TgZ(2,"h3"),A._uU(3,"Error! Unable to find details!"),A.qZA()())}function Ya(i,x){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,Dr,2,2,"span",22)(6,ee,2,2,"span",22)(7,w0,4,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 Zi(i,x){1&i&&(A.TgZ(0,"h3"),A._uU(1,"Error! Unable to find details!"),A.qZA())}const Ta=i=>({"mt-1":!0,"mt-2":i});let Q0=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.commonService=l,this.store=B,this.actions=Z,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=E.wn1,this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,g.R)(this.unSubs[0]),(0,F.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=t.payload.channels&&"object"!=typeof t.payload.channels?{channels:[]}: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,z.Sf)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,z.$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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(aA.eX))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-lookups"]],viewQuery:function(l,B){if(1&l&&A.Gf(f0,7),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.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",3,"ngModel","ngModelChange","change"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["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"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(l,B){1&l&&(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(LA){return B.selectedFieldId=LA})("change",function(LA){return B.onSelectChange(LA)}),A.YNc(7,h0,2,3,"mat-radio-button",7),A.qZA()(),A.TgZ(8,"mat-form-field",8)(9,"mat-label"),A._uU(10),A.qZA(),A.TgZ(11,"input",9,10),A.NdJ("ngModelChange",function(LA){return B.lookupKey=LA})("change",function(){return B.clearLookupValue()}),A.qZA(),A.YNc(13,E0,2,1,"mat-error",11),A.qZA(),A.TgZ(14,"div",12)(15,"button",13),A.NdJ("click",function(){return B.resetData()}),A._uU(16,"Clear"),A.qZA(),A.TgZ(17,"button",14),A.NdJ("click",function(){return B.onLookup()}),A._uU(18,"Lookup"),A.qZA()()(),A.YNc(19,Ya,8,4,"div",15),A.qZA()()(),A.YNc(20,Zi,2,0,"ng-template",null,16,A.W1O)),2&l&&(A.xp6(6),A.Q6J("ngModel",B.selectedFieldId),A.xp6(1),A.Q6J("ngForOf",B.lookupFields),A.xp6(1),A.Q6J("ngClass",A.VKq(7,Ta,B.screenSize===B.screenSizeEnum.XS||B.screenSize===B.screenSizeEnum.SM)),A.xp6(2),A.Oqu((null==B.lookupFields[B.selectedFieldId]?null:B.lookupFields[B.selectedFieldId].placeholder)||"Lookup Key"),A.xp6(1),A.Q6J("ngModel",B.lookupKey),A.xp6(2),A.Q6J("ngIf",!B.lookupKey),A.xp6(6),A.Q6J("ngIf",B.flgSetLookupValue))},dependencies:[ot.mk,ot.sg,ot.O5,ot.RF,ot.n9,ot.ED,K._Y,K.Fj,K.JJ,K.JL,K.Q7,K.On,K.F,n.xw,n.Wh,n.yH,f.oO,p.lW,v.dn,$.Nt,nA.KE,nA.hX,nA.TO,gn.VQ,gn.U0,Vs,u0],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}"]})}return i})();var qr=function(i){return i.KB="KB",i.KW="KW",i}(qr||{});function Na(i,x){if(1&i&&(A.TgZ(0,"div")(1,"h4",5),A._uU(2," 2 Blocks "),A.TgZ(3,"mat-icon",16),A._uU(4,"info_outline"),A.qZA()(),A.TgZ(5,"div",7),A._uU(6),A.ALo(7,"number"),A.qZA()()),2&i){const t=A.oxw(2);A.xp6(6),A.Oqu(A.lcZ(7,1,null==t.perkbw?null:t.perkbw.estimates[0].smoothed_feerate))}}function d0(i,x){if(1&i&&(A.TgZ(0,"div")(1,"h4",5),A._uU(2," 6 Blocks "),A.TgZ(3,"mat-icon",17),A._uU(4,"info_outline"),A.qZA()(),A.TgZ(5,"div",7),A._uU(6),A.ALo(7,"number"),A.qZA()()),2&i){const t=A.oxw(2);A.xp6(6),A.Oqu(A.lcZ(7,1,null==t.perkbw?null:t.perkbw.estimates[1].smoothed_feerate))}}function un(i,x){if(1&i&&(A.TgZ(0,"div")(1,"h4",5),A._uU(2," 12 Blocks "),A.TgZ(3,"mat-icon",18),A._uU(4,"info_outline"),A.qZA()(),A.TgZ(5,"div",7),A._uU(6),A.ALo(7,"number"),A.qZA()()),2&i){const t=A.oxw(2);A.xp6(6),A.Oqu(A.lcZ(7,1,null==t.perkbw?null:t.perkbw.estimates[2].smoothed_feerate))}}function _r(i,x){if(1&i&&(A.TgZ(0,"div")(1,"h4",5),A._uU(2," 100 Blocks "),A.TgZ(3,"mat-icon",19),A._uU(4,"info_outline"),A.qZA()(),A.TgZ(5,"div",7),A._uU(6),A.ALo(7,"number"),A.qZA()()),2&i){const t=A.oxw(2);A.xp6(6),A.Oqu(A.lcZ(7,1,null==t.perkbw?null:t.perkbw.estimates[3].smoothed_feerate))}}function Sa(i,x){if(1&i&&(A.TgZ(0,"div",2)(1,"div",3)(2,"div",4)(3,"div")(4,"h4",5),A._uU(5," Opening "),A.TgZ(6,"mat-icon",6),A._uU(7,"info_outline"),A.qZA()(),A.TgZ(8,"div",7),A._uU(9),A.ALo(10,"number"),A.qZA()(),A.TgZ(11,"div")(12,"h4",5),A._uU(13," Mutual Close "),A.TgZ(14,"mat-icon",8),A._uU(15,"info_outline"),A.qZA()(),A.TgZ(16,"div",7),A._uU(17),A.ALo(18,"number"),A.qZA()(),A.TgZ(19,"div")(20,"h4",5),A._uU(21," Unilateral Close "),A.TgZ(22,"mat-icon",9),A._uU(23,"info_outline"),A.qZA()(),A.TgZ(24,"div",7),A._uU(25),A.ALo(26,"number"),A.qZA()(),A.TgZ(27,"div")(28,"h4",5),A._uU(29," Delayed To Us "),A.TgZ(30,"mat-icon",10),A._uU(31,"info_outline"),A.qZA()(),A.TgZ(32,"div",7),A._uU(33),A.ALo(34,"number"),A.qZA()(),A.TgZ(35,"div")(36,"h4",5),A._uU(37," Minimum Acceptable "),A.TgZ(38,"mat-icon",11),A._uU(39,"info_outline"),A.qZA()(),A.TgZ(40,"div",7),A._uU(41),A.ALo(42,"number"),A.qZA()(),A.TgZ(43,"div")(44,"h4",5),A._uU(45," Maximum Acceptable "),A.TgZ(46,"mat-icon",12),A._uU(47,"info_outline"),A.qZA()(),A.TgZ(48,"div",7),A._uU(49),A.ALo(50,"number"),A.qZA()()(),A.TgZ(51,"div",4)(52,"div")(53,"h4",5),A._uU(54," HTLC Resolution "),A.TgZ(55,"mat-icon",13),A._uU(56,"info_outline"),A.qZA()(),A.TgZ(57,"div",7),A._uU(58),A.ALo(59,"number"),A.qZA()(),A.TgZ(60,"div")(61,"h4",5),A._uU(62," Penalty "),A.TgZ(63,"mat-icon",14),A._uU(64,"info_outline"),A.qZA()(),A.TgZ(65,"div",7),A._uU(66),A.ALo(67,"number"),A.qZA()(),A.YNc(68,Na,8,3,"div",15)(69,d0,8,3,"div",15)(70,un,8,3,"div",15)(71,_r,8,3,"div",15),A.qZA()()()),2&i){const t=A.oxw();A.xp6(9),A.Oqu(A.lcZ(10,12,null==t.perkbw?null:t.perkbw.opening)),A.xp6(8),A.Oqu(A.lcZ(18,14,null==t.perkbw?null:t.perkbw.mutual_close)),A.xp6(8),A.Oqu(A.lcZ(26,16,null==t.perkbw?null:t.perkbw.unilateral_close)),A.xp6(8),A.Oqu(A.lcZ(34,18,null==t.perkbw?null:t.perkbw.delayed_to_us)),A.xp6(8),A.Oqu(A.lcZ(42,20,null==t.perkbw?null:t.perkbw.min_acceptable)),A.xp6(8),A.Oqu(A.lcZ(50,22,null==t.perkbw?null:t.perkbw.max_acceptable)),A.xp6(9),A.Oqu(A.lcZ(59,24,null==t.perkbw?null:t.perkbw.htlc_resolution)),A.xp6(8),A.Oqu(A.lcZ(67,26,null==t.perkbw?null:t.perkbw.penalty)),A.xp6(2),A.Q6J("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.xp6(1),A.Q6J("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.xp6(1),A.Q6J("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.xp6(1),A.Q6J("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3)}}function vr(i,x){if(1&i&&(A.TgZ(0,"div",20)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let p0=(()=>{class i{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===qr.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===qr.KW&&(this.perkbw=this.feeRates.perkw||{})}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",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"],[4,"ngIf"],["matTooltip","Fee rate estimate for 2 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 6 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 12 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 100 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,B){if(1&l&&A.YNc(0,Sa,72,28,"div",0)(1,vr,3,1,"ng-template",null,1,A.W1O),2&l){const Z=A.MAs(2);A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.O5,n.xw,n.Wh,n.yH,I.Hw,yA.gM,ot.JJ],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();function mi(i,x){if(1&i&&(A.TgZ(0,"div",3)(1,"div",4)(2,"div")(3,"h4",5),A._uU(4," Opening Channel "),A.TgZ(5,"mat-icon",6),A._uU(6,"info_outline"),A.qZA()(),A.TgZ(7,"div",7),A._uU(8),A.ALo(9,"number"),A.qZA()(),A.TgZ(10,"div")(11,"h4",5),A._uU(12," Mutual Close "),A.TgZ(13,"mat-icon",8),A._uU(14,"info_outline"),A.qZA()(),A.TgZ(15,"div",7),A._uU(16),A.ALo(17,"number"),A.qZA()(),A.TgZ(18,"div")(19,"h4",5),A._uU(20," Unilateral Close "),A.TgZ(21,"mat-icon",9),A._uU(22,"info_outline"),A.qZA()(),A.TgZ(23,"div",7),A._uU(24),A.ALo(25,"number"),A.qZA()(),A.TgZ(26,"div",10),A._UZ(27,"h4",5)(28,"div",7),A.qZA()(),A.TgZ(29,"div",4)(30,"div")(31,"h4",5),A._uU(32," HTLC Timeout "),A.TgZ(33,"mat-icon",11),A._uU(34,"info_outline"),A.qZA()(),A.TgZ(35,"div",7),A._uU(36),A.ALo(37,"number"),A.qZA()(),A.TgZ(38,"div")(39,"h4",5),A._uU(40," HTLC Success "),A.TgZ(41,"mat-icon",12),A._uU(42,"info_outline"),A.qZA()(),A.TgZ(43,"div",7),A._uU(44),A.ALo(45,"number"),A.qZA()(),A.TgZ(46,"div",10),A._UZ(47,"h4",5)(48,"div",7),A.qZA(),A.TgZ(49,"div",10),A._UZ(50,"h4",5)(51,"div",7),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 Ai(i,x){if(1&i&&(A.TgZ(0,"div",13)(1,"p"),A._uU(2),A.qZA()()),2&i){const t=A.oxw();A.xp6(2),A.Oqu(t.errorMessage)}}let gi=(()=>{class i{constructor(){}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["errorBlock",""],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",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(l,B){if(1&l&&(A.TgZ(0,"div",0),A.YNc(1,mi,52,15,"div",1)(2,Ai,3,1,"ng-template",null,2,A.W1O),A.qZA()),2&l){const Z=A.MAs(3);A.xp6(1),A.Q6J("ngIf",""===(null==B.errorMessage?null:B.errorMessage.trim()))("ngIfElse",Z)}},dependencies:[ot.O5,n.xw,n.Wh,n.yH,I.Hw,yA.gM,ot.JJ],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();function Bi(i,x){1&i&&A._UZ(0,"mat-progress-bar",19)}function M0(i,x){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 m0(i,x){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[1])}}function I0(i,x){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[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function yr(i,x){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[4])}}function D0(i,x){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 Ua(i,x){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[4])}}const ba=i=>({"dashboard-card-content":!0,"error-border":i});function v0(i,x){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,Bi,1,0,"mat-progress-bar",12),A.TgZ(11,"div",13),A.YNc(12,M0,1,2,"rtl-cln-node-info",14)(13,m0,1,2,"rtl-cln-channel-status-info",15)(14,I0,1,2,"rtl-cln-fee-info",16)(15,yr,1,3,"rtl-cln-fee-rates",17)(16,D0,1,3,"rtl-cln-fee-rates",17)(17,Ua,1,2,"rtl-cln-onchain-fee-estimates",18),A.qZA()()()()()()),2&i){const t=x.$implicit,l=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,ba,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.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 we(i,x){if(1&i&&(A.TgZ(0,"mat-grid-list",2),A.YNc(1,v0,18,15,"mat-grid-tile",3),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngForOf",t.nodeCardsOperator)}}function La(i,x){1&i&&A._UZ(0,"mat-progress-bar",19)}function y0(i,x){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 x0(i,x){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[1])}}function Pa(i,x){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[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function F0(i,x){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[4])}}function Y0(i,x){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[4])}}function T0(i,x){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[4])}}function Ra(i,x){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,La,1,0,"mat-progress-bar",12),A.TgZ(11,"div",13),A.YNc(12,y0,1,2,"rtl-cln-node-info",14)(13,x0,1,2,"rtl-cln-channel-status-info",15)(14,Pa,1,2,"rtl-cln-fee-info",16)(15,F0,1,3,"rtl-cln-fee-rates",17)(16,Y0,1,3,"rtl-cln-fee-rates",17)(17,T0,1,2,"rtl-cln-onchain-fee-estimates",18),A.qZA()()()()()()),2&i){const t=x.$implicit,l=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,ba,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.xp6(1),A.Q6J("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.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 xr(i,x){if(1&i&&(A.TgZ(0,"mat-grid-list",2),A.YNc(1,Ra,18,15,"mat-grid-tile",3),A.qZA()),2&i){const t=A.oxw();A.xp6(1),A.Q6J("ngForOf",t.nodeCardsMerchant)}}let za=(()=>{class i{constructor(t,l,B){this.logger=t,this.commonService=l,this.store=B,this.faBolt=E.BDt,this.faServer=E.xf3,this.faNetworkWired=E.kXW,this.faLink=E.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.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=r.Bn,this.unSubs=[new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.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:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}]):(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:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}])}ngOnInit(){this.store.select(c.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.fees=t.fees,this.logger.info(t)}),this.store.select(c.ZW).pipe((0,g.R)(this.unSubs[1]),(0,ci.M)(this.store.select(c.XP))).subscribe(([t,l])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=l.apiCallStatus,this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusLRBal.status===r.Bn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===r.Bn.ERROR&&(this.errorMessages[2]="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=l.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=l.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=l.localRemoteBalance.inactiveBalance||0}),this.store.select(c.Bo).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusFHistory=t.apiCallStatus,this.apiCallStatusFHistory.status===r.Bn.ERROR&&(this.errorMessages[3]="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(c.zm).pipe((0,g.R)(this.unSubs[4])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPerKB=t.apiCallStatus,this.apiCallStatusPerKB.status===r.Bn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=t.feeRatesPerKB}),this.store.select(c.hx).pipe((0,g.R)(this.unSubs[5])).subscribe(t=>{this.errorMessages[5]="",this.apiCallStatusPerKW=t.apiCallStatus,this.apiCallStatusPerKW.status===r.Bn.ERROR&&(this.errorMessages[5]="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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh))};static#t=this.\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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,we,2,1,"mat-grid-list",1)(2,xr,2,1,"mat-grid-list",1),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf",B.selNode.userPersona===B.userPersonaEnum.OPERATOR),A.xp6(1),A.Q6J("ngIf",B.selNode.userPersona===B.userPersonaEnum.MERCHANT))},dependencies:[ot.mk,ot.sg,ot.O5,ot.RF,ot.n9,e.BN,n.xw,n.Wh,n.yH,f.oO,v.a8,v.dn,S.Il,S.DX,u.pW,la,ua,fa,p0,gi]})}return i})();function N0(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",9),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.activeLink=Z.link)}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit,l=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",l.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let S0=(()=>{class i{constructor(t){this.router=t,this.faUserCheck=E.hkK,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new s.x,new s.x]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(l=>l instanceof ce.Av)).subscribe({next:l=>{const B=this.links.find(Z=>l.urlAfterRedirects.includes(Z.link));this.activeLink=B?B.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-sign-verify-message"]],decls:13,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(l,B){if(1&l&&(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,N0,2,3,"div",6),A.qZA(),A._UZ(9,"mat-tab-nav-panel",null,7),A.TgZ(11,"div",8),A._UZ(12,"router-outlet"),A.qZA()()()()),2&l){const Z=A.MAs(10);A.xp6(1),A.Q6J("icon",B.faUserCheck),A.xp6(6),A.Q6J("tabPanel",Z),A.xp6(1),A.Q6J("ngForOf",B.links)}},dependencies:[ot.sg,e.BN,n.xw,n.Wh,n.yH,v.a8,v.dn,y.BU,y.sW,y.Nj,ce.lC,ce.rH]})}return i})();var U0=Rt(6105),$r=Rt(9125);function b0(i,x){if(1&i&&(A.TgZ(0,"mat-option",6),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t),A.xp6(1),A.hij(" ",t.addressTp," ")}}let L0=(()=>{class i{constructor(t,l){this.store=t,this.clnEffects=l,this.addressTypes=r._t,this.selectedAddressType=r._t[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,z._E)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,oe.q)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,mA.qR)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:U0.n}}}))},0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(C.yh),A.Y36($r.J))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-on-chain-receive"]],decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(l,B){1&l&&(A.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),A._uU(4,"Address Type"),A.qZA(),A.TgZ(5,"mat-select",3),A.NdJ("ngModelChange",function(LA){return B.selectedAddressType=LA}),A.YNc(6,b0,2,2,"mat-option",4),A.qZA()(),A.TgZ(7,"div")(8,"button",5),A.NdJ("click",function(){return B.onGenerateAddress()}),A._uU(9,"Generate Address"),A.qZA()()()()),2&l&&(A.xp6(5),A.Q6J("ngModel",B.selectedAddressType),A.xp6(1),A.Q6J("ngForOf",B.addressTypes))},dependencies:[ot.sg,K.JJ,K.On,n.xw,n.Wh,n.yH,p.lW,nA.KE,nA.hX,uA.gD,wA.ey]})}return i})(),Ga=(()=>{class i{constructor(t,l){this.store=t,this.activatedRoute=l,this.sweepAll=!1,this.unSubs=[new s.x,new s.x]}ngOnInit(){this.activatedRoute.data.pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,mA.qR)({payload:{data:{sweepAll:this.sweepAll,component:Or}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(C.yh),A.Y36(ce.gz))};static#t=this.\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(l,B){1&l&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return B.openSendFundsModal()}),A._uU(3),A.qZA()()()),2&l&&(A.xp6(3),A.Oqu(B.sweepAll?"Sweep All":"Send Funds"))},dependencies:[n.xw,n.Wh,n.yH,p.lW]})}return i})();var Fr=Rt(7921),Ha=Rt(7398),Yr=Rt(4630),Aa=Rt(3362);const P0=["form"];function Xi(i,x){if(1&i&&(A.TgZ(0,"mat-option",46),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t),A.xp6(1),A.Oqu(t.alias?t.alias:t.id?t.id:"")}}function fn(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Peer alias is required."),A.qZA())}function Tr(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Peer not found in the list."),A.qZA())}function Ja(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",1)(1,"mat-label"),A._uU(2,"Peer Alias"),A.qZA(),A.TgZ(3,"input",43),A.NdJ("change",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onSelectedPeerChanged())}),A.qZA(),A.TgZ(4,"mat-autocomplete",44,45),A.NdJ("optionSelected",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onSelectedPeerChanged())}),A.YNc(6,Xi,2,2,"mat-option",26),A.ALo(7,"async"),A.qZA(),A.YNc(8,fn,2,0,"mat-error",17)(9,Tr,2,0,"mat-error",17),A.qZA()}if(2&i){const t=A.MAs(5),l=A.oxw();A.xp6(3),A.Q6J("formControl",l.selectedPeer)("matAutocomplete",t),A.xp6(1),A.Q6J("displayWith",l.displayFn),A.xp6(2),A.Q6J("ngForOf",A.lcZ(7,6,l.filteredPeers)),A.xp6(2),A.Q6J("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.required),A.xp6(1),A.Q6J("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.notfound)}}function R0(i,x){1&i&&A.GkF(0)}function z0(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function G0(i,x){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 H0(i,x){if(1&i&&(A.TgZ(0,"mat-option",46),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t.feeRateId),A.xp6(1),A.hij(" ",t.feeRateType," ")}}function J0(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee Rate is required."),A.qZA())}function O0(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-form-field",47)(1,"mat-label"),A._uU(2,"Fee Rate (Sats/vByte)"),A.qZA(),A.TgZ(3,"input",48,49),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.customFeeRate=B)}),A.qZA(),A.YNc(5,J0,2,0,"mat-error",17),A.qZA()}if(2&i){const t=A.oxw();A.xp6(3),A.Q6J("step",.1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf)("ngModel",t.customFeeRate),A.xp6(2),A.Q6J("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function k0(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Min Blocks is required."),A.qZA())}function j0(i,x){if(1&i&&(A.TgZ(0,"mat-option",46),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.Q6J("value",t),A.xp6(1),A.hij("",A.xi3(2,2,t.amount_msat/1e3,"1.0-0")," Sats")}}function Oa(i,x){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 K0(i,x){if(1&i&&(A.TgZ(0,"div",50),A._UZ(1,"fa-icon",51),A.YNc(2,Oa,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 W0(i,x){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 V0(i,x){if(1&i&&A.YNc(0,W0,26,4,"mat-expansion-panel",52),2&i){const t=A.oxw();A.Q6J("ngIf",t.peer)}}const ui=(i,x)=>({"mr-6":i,"mr-2":x});let ka=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.dialogRef=t,this.data=l,this.store=B,this.actions=Z,this.decimalPipe=LA,this.commonService=yt,this.selectedPeer=new K.p4,this.faExclamationTriangle=E.eHv,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 s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(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.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(B=>{this.selNode=B,this.isPrivate=!!B?.unannouncedChannels}),this.actions.pipe((0,g.R)(this.unSubs[1]),(0,F.h)(B=>B.type===r.AB.UPDATE_API_CALL_STATUS_CLN||B.type===r.AB.FETCH_CHANNELS_CLN)).subscribe(B=>{B.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&B.payload.status===r.Bn.ERROR&&"SaveNewChannel"===B.payload.action&&(this.channelConnectionError=B.payload.message),B.type===r.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let t="",l="";this.sortedPeers=this.peers.sort((B,Z)=>(t=B.alias?B.alias.toLowerCase():B.id?B.id.toLowerCase():"",l=Z.alias?Z.alias.toLowerCase():B.id?B.id.toLowerCase():"",tl?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.R)(this.unSubs[2]),(0,Fr.O)(""),(0,Ha.U)(B=>"string"==typeof B?B:B.alias?B.alias:B.id),(0,Ha.U)(B=>B?this.filterPeers(B):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(l=>0===l.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.id?t.id:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const t=this.peers?.filter(l=>l.alias?.length===this.selectedPeer.value.length&&0===l.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].id&&(this.selectedPubkey=t[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=!!this.selNode?.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(t){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)":this.feeRateTypes.find(l=>l.feeRateId===this.selFeeRate)?.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){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,B)=>l+(B.amount_msat||0)/1e3,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,amount: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(l=>t.utxos.push(l.txid+":"+l.output))),this.store.dispatch((0,z.YX)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(C.yh),A.Y36(aA.eX),A.Y36(ot.JJ),A.Y36(w.v))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-open-channel"]],viewQuery:function(l,B){if(1&l&&A.Gf(P0,7),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.first)}},decls:74,vars:41,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 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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"step","min","max","disabled","ngModel","ngModelChange"],["amount","ngModel"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","25","fxLayoutAlign","center start"],["fxLayout","column","fxLayoutAlign","center start","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","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4",3,"disabled","value","valueChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","42","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass","ngModel","ngModelChange","change"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"step","min","required","disabled","ngModel","ngModelChange"],["blocks","ngModel"],["fxLayout","column","fxFlex","54","fxLayoutAlign","start end"],["tabindex","6","multiple","",3,"value","valueChange","selectionChange"],["fxFlex","41","fxLayout","row","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","flgUseAllBalance",3,"disabled","ngModel","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","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","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete","change"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value"],["fxLayout","column","fxFlex","48","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate","tabindex","4",3,"step","min","required","ngModel","ngModelChange"],["custFeeRate","ngModel"],["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(l,B){if(1&l&&(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 B.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8),A.NdJ("submit",function(){return B.onOpenChannel()})("reset",function(){return B.resetData()}),A.TgZ(11,"div",9),A.YNc(12,Ja,10,8,"mat-form-field",10),A.qZA(),A.YNc(13,R0,1,0,"ng-container",11),A.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"mat-label"),A._uU(18,"Amount"),A.qZA(),A.TgZ(19,"input",14,15),A.NdJ("ngModelChange",function(LA){return B.fundingAmount=LA}),A.qZA(),A.TgZ(21,"mat-hint"),A._uU(22),A.ALo(23,"number"),A.qZA(),A.TgZ(24,"span",16),A._uU(25," Sats "),A.qZA(),A.YNc(26,z0,2,0,"mat-error",17)(27,G0,2,1,"mat-error",17),A.qZA(),A.TgZ(28,"div",18)(29,"mat-slide-toggle",19),A.NdJ("ngModelChange",function(LA){return B.isPrivate=LA}),A._uU(30,"Private Channel"),A.qZA()()(),A.TgZ(31,"mat-expansion-panel",20),A.NdJ("closed",function(){return B.onAdvancedPanelToggle(!0)})("opened",function(){return B.onAdvancedPanelToggle(!1)}),A.TgZ(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),A._uU(35),A.qZA()()(),A.TgZ(36,"div",21)(37,"div",22)(38,"div",23)(39,"mat-form-field",24)(40,"mat-label"),A._uU(41,"Fee Rate"),A.qZA(),A.TgZ(42,"mat-select",25),A.NdJ("valueChange",function(LA){return B.selFeeRate=LA})("selectionChange",function(){return B.customFeeRate=null}),A.YNc(43,H0,2,2,"mat-option",26),A.qZA()(),A.YNc(44,O0,6,5,"mat-form-field",27),A.qZA(),A.TgZ(45,"div",28)(46,"mat-checkbox",29),A.NdJ("ngModelChange",function(LA){return B.flgMinConf=LA})("change",function(){return B.flgMinConf?B.selFeeRate=null:B.minConfValue=null}),A.qZA(),A.TgZ(47,"mat-form-field",30)(48,"mat-label"),A._uU(49,"Min Confirmation Blocks"),A.qZA(),A.TgZ(50,"input",31,32),A.NdJ("ngModelChange",function(LA){return B.minConfValue=LA}),A.qZA(),A.YNc(52,k0,2,0,"mat-error",17),A.qZA()()(),A.TgZ(53,"mat-form-field",33)(54,"mat-label"),A._uU(55,"Coin Selection"),A.qZA(),A.TgZ(56,"mat-select",34),A.NdJ("valueChange",function(LA){return B.selUTXOs=LA})("selectionChange",function(LA){return B.onUTXOSelectionChange(LA)}),A.TgZ(57,"mat-select-trigger"),A._uU(58),A.ALo(59,"number"),A.qZA(),A.YNc(60,j0,3,5,"mat-option",26),A.qZA()(),A.TgZ(61,"div",35)(62,"mat-slide-toggle",36),A.NdJ("ngModelChange",function(LA){return B.flgUseAllBalance=LA})("change",function(){return B.onUTXOAllBalanceChange()}),A._uU(63," Use selected UTXOs balance "),A.qZA(),A.TgZ(64,"mat-icon",37),A._uU(65,"info_outline"),A.qZA()()()()(),A.YNc(66,K0,3,2,"div",38),A.TgZ(67,"div",39)(68,"button",40),A._uU(69,"Clear Fields"),A.qZA(),A.TgZ(70,"button",41),A._uU(71,"Open Channel"),A.qZA()()()()()(),A.YNc(72,V0,1,1,"ng-template",null,42,A.W1O)),2&l){const Z=A.MAs(20),LA=A.MAs(73);A.xp6(5),A.Oqu(B.alertTitle),A.xp6(7),A.Q6J("ngIf",!B.peer&&B.peers&&B.peers.length>0),A.xp6(1),A.Q6J("ngTemplateOutlet",LA),A.xp6(6),A.Q6J("step",1e3)("min",1)("max",B.totalBalance)("disabled",B.flgUseAllBalance)("ngModel",B.fundingAmount),A.xp6(3),A.AsE("Remaining: ",A.lcZ(23,34,B.totalBalance-(B.fundingAmount?B.fundingAmount:0)),"",B.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.xp6(4),A.Q6J("ngIf",(null==Z.errors?null:Z.errors.required)||!B.fundingAmount),A.xp6(1),A.Q6J("ngIf",null==Z.errors?null:Z.errors.max),A.xp6(2),A.Q6J("ngModel",B.isPrivate),A.xp6(6),A.Oqu(B.advancedTitle),A.xp6(4),A.Q6J("fxFlex","customperkb"!==B.selFeeRate||B.flgMinConf?"100":"48"),A.xp6(3),A.Q6J("disabled",B.flgMinConf)("value",B.selFeeRate),A.xp6(1),A.Q6J("ngForOf",B.feeRateTypes),A.xp6(1),A.Q6J("ngIf","customperkb"===B.selFeeRate&&!B.flgMinConf),A.xp6(2),A.Q6J("ngClass",A.WLB(38,ui,B.screenSize===B.screenSizeEnum.XS||B.screenSize===B.screenSizeEnum.SM,B.screenSize===B.screenSizeEnum.MD||B.screenSize===B.screenSizeEnum.LG||B.screenSize===B.screenSizeEnum.XL))("ngModel",B.flgMinConf),A.xp6(4),A.Q6J("step",1)("min",0)("required",B.flgMinConf)("disabled",!B.flgMinConf)("ngModel",B.minConfValue),A.xp6(2),A.Q6J("ngIf",B.flgMinConf&&!B.minConfValue),A.xp6(4),A.Q6J("value",B.selUTXOs),A.xp6(2),A.AsE("",A.lcZ(59,36,B.totalSelectedUTXOAmount)," Sats (",B.selUTXOs.length>1?B.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.xp6(2),A.Q6J("ngForOf",B.utxos),A.xp6(2),A.Q6J("disabled",B.selUTXOs.length<1)("ngModel",B.flgUseAllBalance),A.xp6(4),A.Q6J("ngIf",""!==B.channelConnectionError)}},dependencies:[ot.mk,ot.sg,ot.O5,ot.tP,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.qQ,K.Fd,K.On,K.F,K.oH,e.BN,n.xw,n.Wh,n.yH,f.oO,p.lW,v.dn,v.dk,Ye.oG,si.ib,si.yz,si.yK,I.Hw,$.Nt,nA.KE,nA.hX,nA.bx,nA.TO,nA.R9,ai.d,uA.gD,uA.$L,wA.ey,NA.Rr,yA.gM,Yr.XC,Yr.ZL,TA.h,Aa.F,kA.q,ot.Ov,ot.JJ],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();function Nr(i,x){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 Z0(i,x){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)}}function X0(i,x){if(1&i&&(A.TgZ(0,"span",7),A._uU(1,"Active HTLCs"),A.qZA()),2&i){const t=A.oxw();A.s9C("matBadge",t.activeHTLCs)}}let q0=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.store=l,this.commonService=B,this.router=Z,this.openChannels=0,this.pendingChannels=0,this.activeHTLCs=0,this.selNode={},this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new s.x,new s.x,new s.x,new s.x,new s.x,new s.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,F.h)(t=>t instanceof ce.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(c.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(c.Wi).pipe((0,g.R)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(c.XP).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.store.select(c.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;const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.activeHTLCs=l?.reduce((B,Z)=>B+(Z.htlcs&&Z.htlcs.length>0?Z.htlcs.length:0),0),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,mA.qR)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:ka}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(w.v),A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-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,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",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(l,B){1&l&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return B.onOpenChannel()}),A._uU(3,"Open Channel"),A.qZA()(),A.TgZ(4,"div",3)(5,"mat-tab-group",4),A.NdJ("selectedIndexChange",function(LA){return B.activeLink=LA})("selectedTabChange",function(LA){return B.onSelectedTabChange(LA)}),A.TgZ(6,"mat-tab"),A.YNc(7,Nr,2,1,"ng-template",5),A.qZA(),A.TgZ(8,"mat-tab"),A.YNc(9,Z0,2,1,"ng-template",5),A.qZA(),A.TgZ(10,"mat-tab"),A.YNc(11,X0,2,1,"ng-template",5),A.qZA()(),A.TgZ(12,"div",6),A._UZ(13,"router-outlet"),A.qZA()()()),2&l&&(A.xp6(5),A.Q6J("selectedIndex",B.activeLink))},dependencies:[n.xw,n.Wh,n.yH,p.lW,jr.k,y.uD,y.uX,y.SP,ce.lC]})}return i})();function ja(i,x){if(1&i&&(A.TgZ(0,"div")(1,"div",9)(2,"div",10)(3,"h4",11),A._uU(4,"Receivable (Sats)"),A.qZA(),A.TgZ(5,"span",16),A._uU(6),A.ALo(7,"number"),A.qZA()(),A.TgZ(8,"div",10)(9,"h4",11),A._uU(10,"Spendable (Sats)"),A.qZA(),A.TgZ(11,"span",16),A._uU(12),A.ALo(13,"number"),A.qZA()()(),A._UZ(14,"mat-divider",14),A.TgZ(15,"div",9)(16,"div",10)(17,"h4",11),A._uU(18,"Their Reserve (Sats)"),A.qZA(),A.TgZ(19,"span",16),A._uU(20),A.ALo(21,"number"),A.qZA()(),A.TgZ(22,"div",10)(23,"h4",11),A._uU(24,"Our Reserve (Sats)"),A.qZA(),A.TgZ(25,"span",16),A._uU(26),A.ALo(27,"number"),A.qZA()()(),A._UZ(28,"mat-divider",14),A.TgZ(29,"div",9)(30,"div",1)(31,"h4",11),A._uU(32,"Funding Transaction ID"),A.qZA(),A.TgZ(33,"span",13),A._uU(34),A.qZA()()(),A._UZ(35,"mat-divider",14),A.qZA()),2&i){const t=A.oxw();A.xp6(6),A.Oqu(A.xi3(7,5,t.channel.receivable_msat/1e3,"1.0-0")),A.xp6(6),A.Oqu(A.xi3(13,8,t.channel.spendable_msat/1e3,"1.0-0")),A.xp6(8),A.Oqu(A.xi3(21,11,t.channel.their_reserve_msat/1e3,"1.0-2")),A.xp6(6),A.Oqu(A.xi3(27,14,t.channel.our_reserve_msat/1e3,"1.0-2")),A.xp6(8),A.Oqu(t.channel.funding_txid)}}function _0(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Show Advanced"),A.qZA())}function $0(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Hide Advanced"),A.qZA())}function Al(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",25),A.NdJ("copied",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onCopyChanID(B))}),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 tl(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"button",26),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onClose())}),A._uU(1,"OK"),A.qZA()}}const Ka=i=>({"xs-scroll-y":i}),el=(i,x)=>({"mt-2":i,"mt-1":x});let ta=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.dialogRef=t,this.data=l,this.logger=B,this.commonService=Z,this.snackBar=LA,this.router=yt,this.faReceipt=E.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)}onGoToLink(){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:"1",lookupValue:this.channel.short_channel_id}}),this.onClose()}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(Q.mQ),A.Y36(w.v),A.Y36(Si.ux),A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-information"]],decls:83,vars:35,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 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"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1"],["fxFlex","33"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],[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(l,B){if(1&l&&(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 B.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.NdJ("click",function(){return B.onGoToLink()}),A._uU(16),A.qZA()(),A.TgZ(17,"div",10)(18,"h4",11),A._uU(19,"Peer Alias"),A.qZA(),A.TgZ(20,"span",13),A._uU(21),A.qZA()()(),A._UZ(22,"mat-divider",14),A.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),A._uU(26,"Channel ID"),A.qZA(),A.TgZ(27,"span",13),A._uU(28),A.qZA()()(),A._UZ(29,"mat-divider",14),A.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),A._uU(33,"Peer Public Key"),A.qZA(),A.TgZ(34,"span",13),A._uU(35),A.qZA()()(),A._UZ(36,"mat-divider",14),A.TgZ(37,"div",9)(38,"div",15)(39,"h4",11),A._uU(40,"State"),A.qZA(),A.TgZ(41,"span",16),A._uU(42),A.ALo(43,"camelcaseWithReplace"),A.qZA()(),A.TgZ(44,"div",15)(45,"h4",11),A._uU(46,"Connected"),A.qZA(),A.TgZ(47,"span",16),A._uU(48),A.qZA()(),A.TgZ(49,"div",17)(50,"h4",11),A._uU(51,"Private"),A.qZA(),A.TgZ(52,"span",16),A._uU(53),A.qZA()()(),A._UZ(54,"mat-divider",14),A.TgZ(55,"div",9)(56,"div",15)(57,"h4",11),A._uU(58,"Remote Balance (Sats)"),A.qZA(),A.TgZ(59,"span",16),A._uU(60),A.ALo(61,"number"),A.qZA()(),A.TgZ(62,"div",15)(63,"h4",11),A._uU(64,"Local Balance (Sats)"),A.qZA(),A.TgZ(65,"span",16),A._uU(66),A.ALo(67,"number"),A.qZA()(),A.TgZ(68,"div",17)(69,"h4",11),A._uU(70,"Total (Sats)"),A.qZA(),A.TgZ(71,"span",16),A._uU(72),A.ALo(73,"number"),A.qZA()()(),A._UZ(74,"mat-divider",14),A.YNc(75,ja,36,17,"div",18),A.TgZ(76,"div",19)(77,"button",20),A.NdJ("click",function(){return B.onShowAdvanced()}),A.YNc(78,_0,2,0,"p",21)(79,$0,2,0,"ng-template",null,22,A.W1O),A.qZA(),A.YNc(81,Al,2,1,"button",23)(82,tl,2,0,"button",24),A.qZA()()()()()),2&l){const Z=A.MAs(80);A.xp6(4),A.Q6J("icon",B.faReceipt),A.xp6(5),A.Q6J("ngClass",A.VKq(30,Ka,B.screenSize===B.screenSizeEnum.XS)),A.xp6(7),A.hij(" ",B.channel.short_channel_id," "),A.xp6(5),A.Oqu(B.channel.alias),A.xp6(7),A.Oqu(B.channel.channel_id),A.xp6(7),A.Oqu(B.channel.peer_id),A.xp6(7),A.Oqu(A.xi3(43,18,null==B.channel?null:B.channel.state,"_")),A.xp6(6),A.Oqu(B.channel.peer_connected?"Yes":"No"),A.xp6(5),A.Oqu(B.channel.private?"Yes":"No"),A.xp6(7),A.Oqu(A.xi3(61,21,B.channel.to_them_msat/1e3,"1.0-0")),A.xp6(6),A.Oqu(A.xi3(67,24,B.channel.to_us_msat/1e3,"1.0-0")),A.xp6(6),A.Oqu(A.xi3(73,27,B.channel.total_msat/1e3,"1.0-0")),A.xp6(3),A.Q6J("ngIf",B.showAdvanced),A.xp6(1),A.Q6J("ngClass",A.WLB(32,el,!B.showAdvanced,B.showAdvanced)),A.xp6(2),A.Q6J("ngIf",!B.showAdvanced)("ngIfElse",Z),A.xp6(3),A.Q6J("ngIf",B.showCopy),A.xp6(1),A.Q6J("ngIf",!B.showCopy)}},dependencies:[ot.mk,ot.O5,e.BN,n.xw,n.Wh,n.yH,f.oO,p.lW,v.dn,v.dk,ai.d,yA.gM,Mi.y,TA.h,ot.JJ,j.D3]})}return i})();function Wa(i,x){if(1&i&&(A.TgZ(0,"mat-option",39),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function Va(i,x){1&i&&A._UZ(0,"mat-progress-bar",40)}function nl(i,x){1&i&&A._UZ(0,"th",41)}function il(i,x){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 rl(i,x){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 al(i,x){if(1&i&&(A.TgZ(0,"td",42),A.YNc(1,il,2,1,"span",43)(2,rl,2,1,"span",44),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",t.private),A.xp6(1),A.Q6J("ngIf",!t.private)}}function ol(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Short Channel ID"),A.qZA())}const Li=i=>({width:i});function sl(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Li,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.short_channel_id)}}function ll(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Alias"),A.qZA())}function cl(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Li,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function gl(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"ID"),A.qZA())}function Bl(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Li,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function ul(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Channel ID"),A.qZA())}function Za(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Li,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.channel_id)}}function Xa(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Funding Transaction ID"),A.qZA())}function fl(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Li,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.funding_txid)}}function hl(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Connected"),A.qZA())}function El(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null!=t&&t.connected?"Connected":"Disconnected")}}function nn(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Local Reserve (Sats)"),A.qZA())}function Ii(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function Cl(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Remote Reserve (Sats)"),A.qZA())}function qa(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function wl(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Total (Sats)"),A.qZA())}function Ql(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function _a(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Spendable (Sats)"),A.qZA())}function dl(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function pl(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Local Balance (Sats)"),A.qZA())}function $a(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ml(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Remote Balance (Sats)"),A.qZA())}function Di(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",52),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ml(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Balance Score"),A.qZA())}function Il(i,x){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=x.$implicit;A.xp6(3),A.Oqu(A.lcZ(4,2,t.balancedness||0)),A.xp6(2),A.s9C("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function Dl(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onChannelUpdate("all"))}),A._uU(5,"Update Fee Policy"),A.qZA(),A.TgZ(6,"mat-option",59),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(7,"Download CSV"),A.qZA()()()()}}function vl(i,x){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(B){const LA=A.CHM(t).$implicit,yt=A.oxw();return A.KtG(yt.onChannelClick(LA,B))}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",59),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onViewRemotePolicy(Z))}),A._uU(7,"View Remote Fee"),A.qZA(),A.TgZ(8,"mat-option",59),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onChannelUpdate(Z))}),A._uU(9,"Update Fee Policy"),A.qZA(),A.TgZ(10,"mat-option",59),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onChannelClose(Z))}),A._uU(11,"Close Channel"),A.qZA()()()()}}function Ao(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No peers connected. Add a peer in order to open a channel."),A.qZA())}function ea(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No channel available."),A.qZA())}function ti(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting channels..."),A.qZA())}function yl(i,x){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 xl(i,x){if(1&i&&(A.TgZ(0,"td",62),A.YNc(1,Ao,2,0,"p",63)(2,ea,2,0,"p",63)(3,ti,2,0,"p",63)(4,yl,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 Fl=i=>({"display-none":i});function Yl(i,x){if(1&i&&A._UZ(0,"tr",64),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,Fl,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Gl(i,x){1&i&&A._UZ(0,"tr",65)}function Tl(i,x){1&i&&A._UZ(0,"tr",66)}const Nl=()=>["all"],Sl=i=>({"error-border":i}),Ul=()=>["no_peer"];let to=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.logger=t,this.store=l,this.rtlEffects=B,this.clnEffects=Z,this.commonService=LA,this.camelCaseWithReplace=yt,this.faEye=E.Mdf,this.faEyeSlash=E.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 d.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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(c.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(c.AS).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||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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&&this.sort&&this.paginator&&this.displayedColumns.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,z.$A)({payload:{uiMessage:r.m6.GET_REMOTE_POLICY,shortChannelID:t.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,oe.q)(1)).subscribe(l=>{if(l.channels&&0===l.channels.length)return!1;let B={};B=l.channels[0].source!==this.information.id?l.channels[0]:l.channels[1];const Z=[[{key:"base_fee_millisatoshi",value:B.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:r.Gi.NUMBER},{key:"fee_per_millionth",value:B.fee_per_millionth,title:"Fee/Millionth",width:33,type:r.Gi.NUMBER},{key:"delay",value:B.delay,title:"Delay",width:33,type:r.Gi.NUMBER}]],LA="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,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:LA,message:Z}}}))},0)})}onChannelUpdate(t){"all"!==t&&"ONCHAIN"===t.state||("all"===t?(this.store.dispatch((0,mA.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:r.Gi.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.Gi.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.R)(this.unSubs[3])).subscribe(l=>{l&&this.store.dispatch((0,z.pW)({payload:{feebase:l[0].inputValue,feeppm:l[1].inputValue,id:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0},this.store.dispatch((0,z.$A)({payload:{uiMessage:r.m6.GET_CHAN_POLICY,shortChannelID:t.short_channel_id,showError:!1}})),this.clnEffects.setLookupCL.pipe((0,oe.q)(1)).subscribe(l=>{this.myChanPolicy=l.channels&&l.channels.length>0&&l.channels[0].source===this.information.id?{fee_base_msat:l.channels[0].base_fee_millisatoshi,fee_rate_milli_msat:l.channels[0].fee_per_millionth}:l.channels.length>1&&l.channels[1].source===this.information.id?{fee_base_msat:l.channels[1].base_fee_millisatoshi,fee_rate_milli_msat:l.channels[1].fee_per_millionth}:{fee_base_msat:0,fee_rate_milli_msat:0},this.logger.info(this.myChanPolicy);const B="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),Z=[];setTimeout(()=>{this.store.dispatch((0,mA.c1)({payload:{data:{type:r.n_.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:Z,titleMessage:B,flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:r.Gi.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.Gi.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(l=>{l&&this.store.dispatch((0,z.pW)({payload:{feebase:l[0].inputValue,feeppm:l[1].inputValue,id:t.channel_id}}))})),this.applyFilter())}percentHintFunction(t){return(t/1e4).toString()+"%"}onChannelClose(t){this.store.dispatch((0,mA.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(l=>{l&&this.store.dispatch((0,z.BL)({payload:{id:t.id||"",channelId:t.channel_id||"",force:!1}}))})}onChannelClick(t,l){this.store.dispatch((0,mA.qR)({payload:{data:{channel:t,showCopy:!0,component:ta}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.peer_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.to_them_msat?t.to_them_msat/1e3:"")+(t.to_us_msat?t.to_us_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":B=t?.private?"private":"public";break;case"connected":B=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":B=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":B=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":B=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":B=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":B=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":B=((t.their_reserve_msat||0)/1e3).toString()||"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}loadChannelsTable(t){this.channels=new d.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,B)=>{switch(B){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(GA.V),A.Y36($r.J),A.Y36(w.v),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("Channels")}])],decls:69,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","5",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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,B){1&l&&(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-label"),A._uU(6,"Filter By"),A.qZA(),A.TgZ(7,"mat-select",5),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(8,"perfect-scrollbar"),A.YNc(9,Wa,2,2,"mat-option",6),A.qZA()()(),A.TgZ(10,"mat-form-field",4)(11,"mat-label"),A._uU(12,"Filter"),A.qZA(),A.TgZ(13,"input",7),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.YNc(14,Va,1,0,"mat-progress-bar",8),A.TgZ(15,"div",9)(16,"table",10,11),A.ynx(18,12),A.YNc(19,nl,1,0,"th",13)(20,al,3,2,"td",14),A.BQk(),A.ynx(21,15),A.YNc(22,ol,2,0,"th",16)(23,sl,4,4,"td",14),A.BQk(),A.ynx(24,17),A.YNc(25,ll,2,0,"th",16)(26,cl,4,4,"td",14),A.BQk(),A.ynx(27,18),A.YNc(28,gl,2,0,"th",16)(29,Bl,4,4,"td",14),A.BQk(),A.ynx(30,19),A.YNc(31,ul,2,0,"th",16)(32,Za,4,4,"td",14),A.BQk(),A.ynx(33,20),A.YNc(34,Xa,2,0,"th",16)(35,fl,4,4,"td",14),A.BQk(),A.ynx(36,21),A.YNc(37,hl,2,0,"th",16)(38,El,2,1,"td",14),A.BQk(),A.ynx(39,22),A.YNc(40,nn,2,0,"th",23)(41,Ii,4,4,"td",14),A.BQk(),A.ynx(42,24),A.YNc(43,Cl,2,0,"th",23)(44,qa,4,4,"td",14),A.BQk(),A.ynx(45,25),A.YNc(46,wl,2,0,"th",23)(47,Ql,4,4,"td",14),A.BQk(),A.ynx(48,26),A.YNc(49,_a,2,0,"th",23)(50,dl,4,4,"td",14),A.BQk(),A.ynx(51,27),A.YNc(52,pl,2,0,"th",23)(53,$a,4,4,"td",14),A.BQk(),A.ynx(54,28),A.YNc(55,Ml,2,0,"th",23)(56,Di,4,4,"td",14),A.BQk(),A.ynx(57,29),A.YNc(58,ml,2,0,"th",16)(59,Il,6,4,"td",14),A.BQk(),A.ynx(60,30),A.YNc(61,Dl,8,0,"th",31)(62,vl,12,0,"td",32),A.BQk(),A.ynx(63,33),A.YNc(64,xl,5,4,"td",34),A.BQk(),A.YNc(65,Yl,1,3,"tr",35)(66,Gl,1,0,"tr",36)(67,Tl,1,0,"tr",37),A.qZA()(),A._UZ(68,"mat-paginator",38),A.qZA()),2&l&&(A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(14,Nl).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(1),A.Q6J("ngIf",B.apiCallStatus.status===B.apiCallStatusEnum.INITIATED),A.xp6(2),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.channels)("ngClass",A.VKq(15,Sl,""!==B.errorMessage)),A.xp6(49),A.Q6J("matFooterRowDef",A.DdM(17,Ul)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,$.Nt,nA.KE,nA.hX,nA.bx,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V,ot.JJ],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return i})();const bl=["outputIdx"];function AA(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Output Index required."),A.qZA())}function R(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Invalid index value."),A.qZA())}function V(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fees is required."),A.qZA())}function m(i,x){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 T=(()=>{class i{set payReq(t){t&&(this.outputIdx=t)}constructor(t,l,B,Z,LA,yt){this.actions=t,this.dialogRef=l,this.data=B,this.store=Z,this.logger=LA,this.snackBar=yt,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=E.kZ_,this.faInfoCircle=E.sqG,this.faExclamationTriangle=E.eHv,this.bumpFeeError="",this.unSubs=[new s.x,new s.x]}ngOnInit(){this.bumpFeeChannel=this.data.channel}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,z._E)({payload:r._t[0]})),this.actions.pipe((0,F.h)(t=>t.type===r.AB.SET_NEW_ADDRESS_CLN),(0,oe.q)(1)).subscribe(t=>{this.store.dispatch((0,z.Wi)({payload:{destination:t.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString(),utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,F.h)(t=>t.type===r.AB.SET_CHANNEL_TRANSACTION_RES_CLN),(0,oe.q)(1)).subscribe(t=>{this.store.dispatch((0,mA.jW)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,F.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(aA.eX),A.Y36(H.so),A.Y36(H.WI),A.Y36(C.yh),A.Y36(Q.mQ),A.Y36(Si.ux))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(l,B){if(1&l&&A.Gf(bl,5),2&l){let Z;A.iGM(Z=A.CRH())&&(B.payReq=Z.first)}},decls:51,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 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"],["fxLayout","column","fxFlex","49"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIdx",3,"step","min","ngModel","ngModelChange"],["outputIdx","ngModel"],[4,"ngIf"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"step","min","ngModel","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(l,B){if(1&l&&(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 B.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(LA){return B.onCopyID(LA)}),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,"mat-label"),A._uU(34,"Output Index"),A.qZA(),A.TgZ(35,"input",18,19),A.NdJ("ngModelChange",function(LA){return B.outputIndex=LA}),A.qZA(),A.YNc(37,AA,2,0,"mat-error",20)(38,R,2,0,"mat-error",20),A.qZA(),A.TgZ(39,"mat-form-field",17)(40,"mat-label"),A._uU(41,"Fees (Sats/vByte)"),A.qZA(),A.TgZ(42,"input",21,22),A.NdJ("ngModelChange",function(LA){return B.fees=LA}),A.qZA(),A.YNc(44,V,2,0,"mat-error",20),A.qZA()(),A.YNc(45,m,4,2,"div",23),A.qZA()(),A.TgZ(46,"div",24)(47,"button",25),A.NdJ("click",function(){return B.resetData()}),A._uU(48,"Clear"),A.qZA(),A.TgZ(49,"button",26),A.NdJ("click",function(){return B.onBumpFee()}),A._uU(50),A.qZA()()()()()()),2&l){const Z=A.MAs(36);A.xp6(12),A.hij("Bump fee for transaction id: ",null==B.bumpFeeChannel?null:B.bumpFeeChannel.funding_txid," "),A.xp6(1),A.Q6J("icon",B.faCopy)("payload",null==B.bumpFeeChannel?null:B.bumpFeeChannel.funding_txid),A.xp6(3),A.Q6J("icon",B.faInfoCircle),A.xp6(19),A.Q6J("step",1)("min",0)("ngModel",B.outputIndex),A.xp6(2),A.Q6J("ngIf",null==Z.errors?null:Z.errors.required),A.xp6(1),A.Q6J("ngIf",null==Z.errors?null:Z.errors.pendingChannelOutputIndex),A.xp6(4),A.Q6J("step",1)("min",0)("ngModel",B.fees),A.xp6(2),A.Q6J("ngIf",!B.fees),A.xp6(1),A.Q6J("ngIf",""!==B.bumpFeeError),A.xp6(5),A.Oqu(""!==B.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[ot.O5,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.qQ,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,p.lW,v.dn,v.dk,$.Nt,nA.KE,nA.hX,nA.TO,nA.R9,yA.gM,Mi.y,TA.h,kA.q]})}return i})();function P(i,x){if(1&i&&(A.TgZ(0,"mat-option",39),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function tA(i,x){1&i&&A._UZ(0,"mat-progress-bar",40)}function lA(i,x){1&i&&A._UZ(0,"th",41)}function cA(i,x){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 sA(i,x){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 SA(i,x){if(1&i&&(A.TgZ(0,"td",42),A.YNc(1,cA,2,1,"span",43)(2,sA,2,1,"span",44),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",t.private),A.xp6(1),A.Q6J("ngIf",!t.private)}}function WA(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Alias"),A.qZA())}const at=i=>({width:i});function _A(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,at,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function lt(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"ID"),A.qZA())}function dt(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,at,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function mt(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Channel ID"),A.qZA())}function Gt(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,at,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.channel_id)}}function $t(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Funding Transaction ID"),A.qZA())}function _t(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"div",49)(2,"span",50),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,at,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.funding_txid)}}function ae(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"Connected"),A.qZA())}function ge(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null!=t&&t.connected?"Connected":"Disconnected")}}function Ee(i,x){1&i&&(A.TgZ(0,"th",48),A._uU(1,"State"),A.qZA())}function Qe(i,x){if(1&i&&(A.TgZ(0,"td",51),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("ngStyle",A.VKq(2,at,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(1),A.Oqu(l.CLNChannelPendingState[null==t?null:t.state])}}function ze(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Local Reserve (Sats)"),A.qZA())}function rn(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function be(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Remote Reserve (Sats)"),A.qZA())}function fe(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function qe(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Total (Sats)"),A.qZA())}function Ge(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function He(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Spendable (Sats)"),A.qZA())}function pe(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Le(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Local Balance (Sats)"),A.qZA())}function _e(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function he(i,x){1&i&&(A.TgZ(0,"th",52),A._uU(1,"Remote Balance (Sats)"),A.qZA())}function $e(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",53),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Un(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function hn(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",57),A.NdJ("click",function(){A.CHM(t);const B=A.oxw().$implicit,Z=A.oxw();return A.KtG(Z.onChannelClose(B))}),A._uU(1,"Close Channel"),A.qZA()}}function vn(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",57),A.NdJ("click",function(){A.CHM(t);const B=A.oxw().$implicit,Z=A.oxw();return A.KtG(Z.onBumpFee(B))}),A._uU(1,"Bump Fee"),A.qZA()}}function Tn(i,x){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(B){const LA=A.CHM(t).$implicit,yt=A.oxw();return A.KtG(yt.onChannelClick(LA,B))}),A._uU(5,"View Info"),A.qZA(),A.YNc(6,hn,2,0,"mat-option",60)(7,vn,2,0,"mat-option",60),A.qZA()()()}if(2&i){const t=x.$implicit;A.xp6(6),A.Q6J("ngIf","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 bn(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No peers connected. Add a peer in order to open a channel."),A.qZA())}function Mn(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No pending/inactive channel available."),A.qZA())}function Ln(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting pending/inactive channels..."),A.qZA())}function wn(i,x){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 On(i,x){if(1&i&&(A.TgZ(0,"td",61),A.YNc(1,bn,2,0,"p",62)(2,Mn,2,0,"p",62)(3,Ln,2,0,"p",62)(4,wn,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 me=i=>({"display-none":i});function Se(i,x){if(1&i&&A._UZ(0,"tr",63),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,me,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Fe(i,x){1&i&&A._UZ(0,"tr",64)}function We(i,x){1&i&&A._UZ(0,"tr",65)}const Je=()=>["all"],sn=i=>({"error-border":i}),na=()=>["no_peer"];let Pn=(()=>{class i{constructor(t,l,B,Z,LA){this.logger=t,this.store=l,this.rtlEffects=B,this.commonService=Z,this.camelCaseWithReplace=LA,this.faEye=E.Mdf,this.faEyeSlash=E.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.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new d.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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.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(c.AS).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||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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((l,B)=>this.CLNChannelPendingState[l.state||""]>=this.CLNChannelPendingState[B.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.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,mA.qR)({payload:{data:{channel:t,component:T}}}))}onChannelClick(t,l){this.store.dispatch((0,mA.qR)({payload:{data:{channel:t,showCopy:!0,component:ta}}}))}onChannelClose(t){this.store.dispatch((0,mA.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(l=>{l&&this.store.dispatch((0,z.BL)({payload:{id:t.id,channelId:t.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.peer_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.to_us_msat?t.to_us_msat:"")+(t.to_them_msat?t.to_them_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":B=t?.private?"private":"public";break;case"connected":B=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":B=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":B=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":B=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":B=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":B=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":B=((t.their_reserve_msat||0)/1e3).toString()||"";break;case"state":B=t?.state?this.CLNChannelPendingState[t?.state]:"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}loadChannelsTable(t){this.channels=new d.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,B)=>{switch(B){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;case"state":return this.CLNChannelPendingState[l.state];default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(GA.V),A.Y36(w.v),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("Channels")}])],decls:66,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","5",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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,B){1&l&&(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-label"),A._uU(6,"Filter By"),A.qZA(),A.TgZ(7,"mat-select",5),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(8,"perfect-scrollbar"),A.YNc(9,P,2,2,"mat-option",6),A.qZA()()(),A.TgZ(10,"mat-form-field",4)(11,"mat-label"),A._uU(12,"Filter"),A.qZA(),A.TgZ(13,"input",7),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.YNc(14,tA,1,0,"mat-progress-bar",8),A.TgZ(15,"div",9)(16,"table",10,11),A.ynx(18,12),A.YNc(19,lA,1,0,"th",13)(20,SA,3,2,"td",14),A.BQk(),A.ynx(21,15),A.YNc(22,WA,2,0,"th",16)(23,_A,4,4,"td",14),A.BQk(),A.ynx(24,17),A.YNc(25,lt,2,0,"th",16)(26,dt,4,4,"td",14),A.BQk(),A.ynx(27,18),A.YNc(28,mt,2,0,"th",16)(29,Gt,4,4,"td",14),A.BQk(),A.ynx(30,19),A.YNc(31,$t,2,0,"th",16)(32,_t,4,4,"td",14),A.BQk(),A.ynx(33,20),A.YNc(34,ae,2,0,"th",16)(35,ge,2,1,"td",14),A.BQk(),A.ynx(36,21),A.YNc(37,Ee,2,0,"th",16)(38,Qe,2,4,"td",22),A.BQk(),A.ynx(39,23),A.YNc(40,ze,2,0,"th",24)(41,rn,4,4,"td",14),A.BQk(),A.ynx(42,25),A.YNc(43,be,2,0,"th",24)(44,fe,4,4,"td",14),A.BQk(),A.ynx(45,26),A.YNc(46,qe,2,0,"th",24)(47,Ge,4,4,"td",14),A.BQk(),A.ynx(48,27),A.YNc(49,He,2,0,"th",24)(50,pe,4,4,"td",14),A.BQk(),A.ynx(51,28),A.YNc(52,Le,2,0,"th",24)(53,_e,4,4,"td",14),A.BQk(),A.ynx(54,29),A.YNc(55,he,2,0,"th",24)(56,$e,4,4,"td",14),A.BQk(),A.ynx(57,30),A.YNc(58,Un,6,0,"th",31)(59,Tn,8,2,"td",32),A.BQk(),A.ynx(60,33),A.YNc(61,On,5,4,"td",34),A.BQk(),A.YNc(62,Se,1,3,"tr",35)(63,Fe,1,0,"tr",36)(64,We,1,0,"tr",37),A.qZA()(),A._UZ(65,"mat-paginator",38),A.qZA()),2&l&&(A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(14,Je).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(1),A.Q6J("ngIf",B.apiCallStatus.status===B.apiCallStatusEnum.INITIATED),A.xp6(2),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.channels)("ngClass",A.VKq(15,sn,""!==B.errorMessage)),A.xp6(46),A.Q6J("matFooterRowDef",A.DdM(17,na)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V,ot.JJ],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();function ia(i,x){if(1&i&&(A.TgZ(0,"mat-option",34),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function ra(i,x){1&i&&A._UZ(0,"mat-progress-bar",35)}function Ll(i,x){1&i&&A._UZ(0,"th",36)}const eo=i=>({"mr-0":i});function Sr(i,x){if(1&i&&A._UZ(0,"span",40),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,eo,t.screenSize===t.screenSizeEnum.XS))}}function qi(i,x){if(1&i&&A._UZ(0,"span",41),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,eo,t.screenSize===t.screenSizeEnum.XS))}}function aa(i,x){if(1&i&&(A.TgZ(0,"td",37),A.YNc(1,Sr,1,3,"span",38)(2,qi,1,3,"span",39),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",null==t?null:t.connected),A.xp6(1),A.Q6J("ngIf",!(null!=t&&t.connected))}}function Ur(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Alias"),A.qZA())}const Pi=i=>({width:i});function _i(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Pi,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function $i(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"ID"),A.qZA())}function Ar(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Pi,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function tr(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Network Address"),A.qZA())}function er(i,x){1&i&&(A.TgZ(0,"span"),A._uU(1,","),A._UZ(2,"br"),A.qZA())}function nr(i,x){if(1&i&&(A.TgZ(0,"span",44),A._uU(1),A.YNc(2,er,3,0,"span",46),A.qZA()),2&i){const t=x.$implicit,l=x.last;A.xp6(1),A.Oqu(t),A.xp6(1),A.Q6J("ngIf",!l)}}function ir(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43),A.YNc(2,nr,3,2,"span",45),A.qZA()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Pi,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(1),A.Q6J("ngForOf",null==t?null:t.netaddr)}}function rr(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Qi(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",50),A.NdJ("click",function(){A.CHM(t);const B=A.oxw().$implicit,Z=A.oxw();return A.KtG(Z.onPeerDetach(B))}),A._uU(1,"Disconnect"),A.qZA()}}function no(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",50),A.NdJ("click",function(){A.CHM(t);const B=A.oxw().$implicit,Z=A.oxw();return A.KtG(Z.onConnectPeer(B))}),A._uU(1,"Reconnect"),A.qZA()}}function io(i,x){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(B){const LA=A.CHM(t).$implicit,yt=A.oxw();return A.KtG(yt.onPeerClick(LA,B))}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",50),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onOpenChannel(Z))}),A._uU(7,"Open Channel"),A.qZA(),A.YNc(8,Qi,2,0,"mat-option",52)(9,no,2,0,"mat-option",52),A.qZA()()()}if(2&i){const t=x.$implicit;A.xp6(8),A.Q6J("ngIf",t.connected),A.xp6(1),A.Q6J("ngIf",!t.connected)}}function ro(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No connected peer."),A.qZA())}function ao(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting peers..."),A.qZA())}function oa(i,x){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 Ac(i,x){if(1&i&&(A.TgZ(0,"td",53),A.YNc(1,ro,2,0,"p",46)(2,ao,2,0,"p",46)(3,oa,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 tc=i=>({"display-none":i});function ec(i,x){if(1&i&&A._UZ(0,"tr",54),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,tc,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function nc(i,x){1&i&&A._UZ(0,"tr",55)}function ic(i,x){1&i&&A._UZ(0,"tr",56)}const rc=()=>["all"],ac=i=>({"error-border":i}),oc=()=>["no_peer"];let sc=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.logger=t,this.store=l,this.rtlEffects=B,this.actions=Z,this.commonService=LA,this.camelCaseWithReplace=yt,this.faUsers=E.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 d.by([]),this.utxos=[],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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.Ao).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.availableBalance=t.balance.totalBalance||0}),this.store.select(c.AS).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||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)}),this.store.select(c.XP).pipe((0,g.R)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.actions.pipe((0,g.R)(this.unSubs[4]),(0,F.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,l){this.store.dispatch((0,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",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,mA.qR)({payload:{data:{message:{peer:t.id?t:null,information:this.information,balance:this.availableBalance},component:$n}}}))}onOpenChannel(t){this.store.dispatch((0,mA.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:ka}}}))}onPeerDetach(t){this.store.dispatch((0,mA.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[5])).subscribe(B=>{B&&this.store.dispatch((0,z.z)({payload:{id:t.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=JSON.stringify(t).toLowerCase();break;case"connected":B=t?.connected?"connected":"disconnected";break;case"netaddr":B=t.netaddr?t.netaddr.reduce((Z,LA)=>Z+LA," "):"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}loadPeersTable(t){this.peers=new d.by([...t]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(l,B)=>{if("netaddr"===B){if(l.netaddr&&l.netaddr[0]){const Z=l.netaddr[0].toString().split(".");return Z[0]?+Z[0]:l.netaddr[0]}return""}return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(GA.V),A.Y36(aA.eX),A.Y36(w.v),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-peers"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("Peers")}])],decls:47,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-x-hidden","overflow-y-hidden",3,"matSortActive","matSortDirection","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(l,B){1&l&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"button",3),A.NdJ("click",function(){return B.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-label"),A._uU(14,"Filter By"),A.qZA(),A.TgZ(15,"mat-select",11),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(16,"perfect-scrollbar"),A.YNc(17,ia,2,2,"mat-option",12),A.qZA()()(),A.TgZ(18,"mat-form-field",10)(19,"mat-label"),A._uU(20,"Filter"),A.qZA(),A.TgZ(21,"input",13),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.TgZ(22,"div",14),A.YNc(23,ra,1,0,"mat-progress-bar",15),A.TgZ(24,"table",16,17),A.ynx(26,18),A.YNc(27,Ll,1,0,"th",19)(28,aa,3,2,"td",20),A.BQk(),A.ynx(29,21),A.YNc(30,Ur,2,0,"th",22)(31,_i,4,4,"td",20),A.BQk(),A.ynx(32,23),A.YNc(33,$i,2,0,"th",22)(34,Ar,4,4,"td",20),A.BQk(),A.ynx(35,24),A.YNc(36,tr,2,0,"th",22)(37,ir,3,4,"td",20),A.BQk(),A.ynx(38,25),A.YNc(39,rr,6,0,"th",26)(40,io,10,2,"td",27),A.BQk(),A.ynx(41,28),A.YNc(42,Ac,4,3,"td",29),A.BQk(),A.YNc(43,ec,1,3,"tr",30)(44,nc,1,0,"tr",31)(45,ic,1,0,"tr",32),A.qZA()(),A._UZ(46,"mat-paginator",33),A.qZA()()),2&l&&(A.xp6(8),A.Q6J("icon",B.faUsers),A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(15,rc).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(2),A.Q6J("ngIf",B.apiCallStatus.status===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.peers)("ngClass",A.VKq(16,ac,""!==B.errorMessage)),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(18,oc)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K._Y,K.Fj,K.JJ,K.JL,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const lc=["queryRoutesForm"];function cc(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Destination pubkey is required."),A.qZA())}function gc(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Amount is required."),A.qZA())}function Bc(i,x){1&i&&A._UZ(0,"mat-progress-bar",36)}function uc(i,x){1&i&&(A.TgZ(0,"th",37),A._uU(1,"ID"),A.qZA())}const Hl=i=>({width:i});function fc(i,x){if(1&i&&(A.TgZ(0,"td",38)(1,"div",39)(2,"span",40),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Hl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.id)}}function hc(i,x){1&i&&(A.TgZ(0,"th",37),A._uU(1,"Alias"),A.qZA())}function Ec(i,x){if(1&i&&(A.TgZ(0,"td",38)(1,"div",39)(2,"span",40),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Hl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.alias)}}function Cc(i,x){1&i&&(A.TgZ(0,"th",37),A._uU(1,"Channel"),A.qZA())}function wc(i,x){if(1&i&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.channel)}}function Qc(i,x){1&i&&(A.TgZ(0,"th",37),A._uU(1,"Direction"),A.qZA())}function dc(i,x){if(1&i&&(A.TgZ(0,"td",38),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.direction)}}function pc(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Delay"),A.qZA())}function Mc(i,x){if(1&i&&(A.TgZ(0,"td",38)(1,"span",42),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij("",A.lcZ(3,1,null==t?null:t.delay)," ")}}function mc(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Amount (Sats)"),A.qZA())}function Ic(i,x){if(1&i&&(A.TgZ(0,"td",38)(1,"span",42),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,(null==t?null:t.amount_msat)/1e3))}}function Dc(i,x){1&i&&(A.TgZ(0,"th",43)(1,"div",44),A._uU(2,"Actions"),A.qZA()())}function vc(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",45)(1,"button",46),A.NdJ("click",function(B){const LA=A.CHM(t).$implicit,yt=A.oxw();return A.KtG(yt.onHopClick(LA,B))}),A._uU(2,"View Info"),A.qZA()()}}function yc(i,x){1&i&&A._UZ(0,"tr",47)}function xc(i,x){1&i&&A._UZ(0,"tr",48)}const Fc=i=>({"overflow-auto error-border":i,"overflow-auto":!0});let Yc=(()=>{class i{constructor(t,l,B){this.store=t,this.clnEffects=l,this.commonService=B,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 d.by([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=E.FpQ,this.faExclamationTriangle=E.eHv,this.screenSize="",this.screenSizeEnum=r.cu,this.unSubs=[new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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=>{this.qrHops.data=[],t.route&&t.route.length&&t.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new d.by([...t.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(l,B)=>l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,z.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,l){this.store.dispatch((0,mA.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:"amount_msat",value:t.amount_msat,title:"Amount (mSat)",width:34,type:r.Gi.NUMBER},{key:"direction",value:t.direction,title:"Direction",width:33,type:r.Gi.STRING},{key:"delay",value:t.delay,title:"Delay",width:33,type:r.Gi.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(C.yh),A.Y36($r.J),A.Y36(w.v))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-query-routes"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(lc,7)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.form=Z.first)}},decls:55,vars:17,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"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"step","min","ngModel","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,"matSortActive","matSortDirection","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(l,B){if(1&l){const Z=A.EpF();A.TgZ(0,"div",0)(1,"form",1,2),A.NdJ("ngSubmit",function(){A.CHM(Z);const yt=A.MAs(2);return A.KtG(yt.form.valid&&B.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,"mat-label"),A._uU(9,"Destination Pubkey"),A.qZA(),A.TgZ(10,"input",6,7),A.NdJ("ngModelChange",function(yt){return B.destinationPubkey=yt}),A.qZA(),A.YNc(12,cc,2,0,"mat-error",8),A.qZA(),A.TgZ(13,"mat-form-field",9)(14,"mat-label"),A._uU(15,"Amount (Sats)"),A.qZA(),A.TgZ(16,"input",10),A.NdJ("ngModelChange",function(yt){return B.amount=yt}),A.qZA(),A.YNc(17,gc,2,0,"mat-error",8),A.qZA(),A.TgZ(18,"div",11)(19,"button",12),A.NdJ("click",function(){return B.resetData()}),A._uU(20,"Clear"),A.qZA(),A.TgZ(21,"button",13),A._uU(22,"Query Route"),A.qZA()()(),A.TgZ(23,"div",14)(24,"div",15),A._UZ(25,"fa-icon",16),A.TgZ(26,"span",17),A._uU(27,"Transaction Route"),A.qZA()()(),A.TgZ(28,"div",18),A.YNc(29,Bc,1,0,"mat-progress-bar",19),A.TgZ(30,"table",20,21),A.ynx(32,22),A.YNc(33,uc,2,0,"th",23)(34,fc,4,4,"td",24),A.BQk(),A.ynx(35,25),A.YNc(36,hc,2,0,"th",23)(37,Ec,4,4,"td",24),A.BQk(),A.ynx(38,26),A.YNc(39,Cc,2,0,"th",23)(40,wc,2,1,"td",24),A.BQk(),A.ynx(41,27),A.YNc(42,Qc,2,0,"th",23)(43,dc,2,1,"td",24),A.BQk(),A.ynx(44,28),A.YNc(45,pc,2,0,"th",29)(46,Mc,4,3,"td",24),A.BQk(),A.ynx(47,30),A.YNc(48,mc,2,0,"th",29)(49,Ic,4,3,"td",24),A.BQk(),A.ynx(50,31),A.YNc(51,Dc,3,0,"th",32)(52,vc,3,0,"td",33),A.BQk(),A.YNc(53,yc,1,0,"tr",34)(54,xc,1,0,"tr",35),A.qZA()()()}2&l&&(A.xp6(4),A.Q6J("icon",B.faExclamationTriangle),A.xp6(6),A.Q6J("ngModel",B.destinationPubkey),A.xp6(2),A.Q6J("ngIf",!B.destinationPubkey),A.xp6(4),A.Q6J("step",1e3)("min",0)("ngModel",B.amount),A.xp6(1),A.Q6J("ngIf",!B.amount),A.xp6(8),A.Q6J("icon",B.faRoute),A.xp6(4),A.Q6J("ngIf",!0===B.flgLoading[0]),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.qrHops)("ngClass",A.VKq(15,Fc,"error"===B.flgLoading[0])),A.xp6(23),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns))},dependencies:[ot.mk,ot.O5,ot.PC,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.qQ,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,nA.TO,u.pW,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.ge,d.ev,d.XQ,d.Gk,b.$V,kA.q,ot.JJ]})}return i})();function Tc(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Message is required."),A.qZA())}let Nc=(()=>{class i{constructor(t,l,B){this.dataService=t,this.snackBar=l,this.logger=B,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new s.x,new s.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(De.D),A.Y36(Si.ux),A.Y36(Q.mQ))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-sign"]],decls:22,vars:4,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","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"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"payload","copied"]],template:function(l,B){1&l&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"mat-label"),A._uU(5,"Message to sign"),A.qZA(),A.TgZ(6,"textarea",4),A.NdJ("ngModelChange",function(LA){return B.message=LA})("keyup",function(){return B.onMessageChange()}),A.qZA(),A.YNc(7,Tc,2,0,"mat-error",5),A.qZA(),A.TgZ(8,"div",6)(9,"button",7),A.NdJ("click",function(){return B.resetData()}),A._uU(10,"Clear Field"),A.qZA(),A.TgZ(11,"button",8),A.NdJ("click",function(){return B.onSign()}),A._uU(12,"Sign"),A.qZA()(),A._UZ(13,"mat-divider",9),A.TgZ(14,"div",10)(15,"p"),A._uU(16,"Generated Signature"),A.qZA()(),A.TgZ(17,"div",11),A._uU(18),A.qZA(),A.TgZ(19,"div",12)(20,"button",13),A.NdJ("copied",function(LA){return B.onCopyField(LA)}),A._uU(21,"Copy Signature"),A.qZA()()()()),2&l&&(A.xp6(6),A.Q6J("ngModel",B.message),A.xp6(1),A.Q6J("ngIf",!B.message),A.xp6(11),A.Oqu(B.signature),A.xp6(2),A.Q6J("payload",B.signature))},dependencies:[ot.O5,K._Y,K.Fj,K.JJ,K.JL,K.Q7,K.On,K.F,n.xw,n.Wh,n.yH,p.lW,$.Nt,nA.KE,nA.hX,nA.TO,ai.d,Mi.y,TA.h],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return i})();function Sc(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Message is required."),A.qZA())}function Uc(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Signature is required."),A.qZA())}function bc(i,x){1&i&&(A.TgZ(0,"p",13)(1,"mat-icon",14),A._uU(2,"close"),A.qZA(),A._uU(3,"Verification failed, please check message and signature"),A.qZA())}function Lc(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Pubkey Used"),A.qZA())}function Pc(i,x){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 Rc(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",21)(1,"button",22),A.NdJ("copied",function(B){A.CHM(t);const Z=A.oxw(2);return A.KtG(Z.onCopyField(B))}),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,x){if(1&i&&(A.TgZ(0,"div",15),A._UZ(1,"mat-divider",16),A.TgZ(2,"div",17),A.YNc(3,Lc,2,0,"p",5),A.qZA(),A.YNc(4,Pc,3,1,"div",18)(5,Rc,3,1,"div",19),A.qZA()),2&i){const t=A.oxw();A.xp6(3),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 Gc=(()=>{class i{constructor(t,l,B){this.dataService=t,this.snackBar=l,this.logger=B,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new s.x,new s.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(De.D),A.Y36(Si.ux),A.Y36(Q.mQ))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-verify"]],decls:21,vars:6,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","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"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"payload","copied"]],template:function(l,B){1&l&&(A.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"mat-label"),A._uU(5,"Message to verify"),A.qZA(),A.TgZ(6,"textarea",4),A.NdJ("ngModelChange",function(LA){return B.message=LA})("keyup",function(){return B.onChange()}),A.qZA(),A.YNc(7,Sc,2,0,"mat-error",5),A.qZA(),A.TgZ(8,"mat-form-field",3)(9,"mat-label"),A._uU(10,"Signature provided"),A.qZA(),A.TgZ(11,"input",6,7),A.NdJ("ngModelChange",function(LA){return B.signature=LA})("keyup",function(){return B.onChange()}),A.qZA(),A.YNc(13,Uc,2,0,"mat-error",5),A.qZA(),A.YNc(14,bc,4,0,"p",8),A.TgZ(15,"div",9)(16,"button",10),A.NdJ("click",function(){return B.resetData()}),A._uU(17,"Clear Fields"),A.qZA(),A.TgZ(18,"button",11),A.NdJ("click",function(){return B.onVerify()}),A._uU(19,"Verify"),A.qZA()(),A.YNc(20,zc,6,3,"div",12),A.qZA()()),2&l&&(A.xp6(6),A.Q6J("ngModel",B.message),A.xp6(1),A.Q6J("ngIf",!B.message),A.xp6(4),A.Q6J("ngModel",B.signature),A.xp6(2),A.Q6J("ngIf",!B.signature),A.xp6(1),A.Q6J("ngIf",B.showVerifyStatus&&!B.verifyRes.verified),A.xp6(6),A.Q6J("ngIf",B.showVerifyStatus&&B.verifyRes.verified))},dependencies:[ot.O5,K._Y,K.Fj,K.JJ,K.JL,K.Q7,K.On,K.F,n.xw,n.Wh,n.yH,p.lW,I.Hw,$.Nt,nA.KE,nA.hX,nA.TO,ai.d,Mi.y,TA.h]})}return i})();function Hc(i,x){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 Jc(i,x){if(1&i&&(A.TgZ(0,"mat-option",13),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}const Oc=()=>["all"];function kc(i,x){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-label"),A._uU(5,"Filter By"),A.qZA(),A.TgZ(6,"mat-select",10),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilterBy=B)})("selectionChange",function(){A.CHM(t);const B=A.oxw();return B.selFilter="",A.KtG(B.applyFilter())}),A.TgZ(7,"perfect-scrollbar"),A.YNc(8,Jc,2,2,"mat-option",11),A.qZA()()(),A.TgZ(9,"mat-form-field",9)(10,"mat-label"),A._uU(11,"Filter"),A.qZA(),A.TgZ(12,"input",12),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilter=B)})("input",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())})("keyup",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())}),A.qZA()()()()}if(2&i){const t=A.oxw();A.xp6(6),A.Q6J("ngModel",t.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(3,Oc).concat(t.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",t.selFilter)}}function jc(i,x){1&i&&A._UZ(0,"mat-progress-bar",39)}function Kc(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Received Time"),A.qZA())}function Wc(i,x){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Vc(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Resolved Time"),A.qZA())}function Zc(i,x){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function Xc(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"In Channel ID"),A.qZA())}function qc(i,x){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel)}}function _c(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"In Channel"),A.qZA())}const Pl=i=>({width:i});function $c(i,x){if(1&i&&(A.TgZ(0,"td",41)(1,"div",42)(2,"span",43),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.in_channel_alias)}}function Ag(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Out Channel ID"),A.qZA())}function tg(i,x){if(1&i&&(A.TgZ(0,"td",41),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel)}}function eg(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Out Channel"),A.qZA())}function ng(i,x){if(1&i&&(A.TgZ(0,"td",41)(1,"div",42)(2,"span",43),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.out_channel_alias)}}function ig(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Payment Hash"),A.qZA())}function rg(i,x){if(1&i&&(A.TgZ(0,"td",41)(1,"div",42)(2,"span",43),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function ag(i,x){1&i&&(A.TgZ(0,"th",44),A._uU(1,"Amount In (Sats)"),A.qZA())}function og(i,x){if(1&i&&(A.TgZ(0,"td",41)(1,"span",45),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function sg(i,x){1&i&&(A.TgZ(0,"th",44),A._uU(1,"Amount Out (Sats)"),A.qZA())}function lg(i,x){if(1&i&&(A.TgZ(0,"td",41)(1,"span",45),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function cg(i,x){1&i&&(A.TgZ(0,"th",44),A._uU(1,"Fee (mSat)"),A.qZA())}function gg(i,x){if(1&i&&(A.TgZ(0,"span",45),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.hij(" ",A.lcZ(2,1,null==t?null:t.fee)," ")}}function Bg(i,x){if(1&i&&(A.TgZ(0,"span",45),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.hij(" ",A.lcZ(2,1,null==t?null:t.fee_msat)," ")}}function ug(i,x){if(1&i&&(A.TgZ(0,"td",41),A.YNc(1,gg,3,3,"span",46)(2,Bg,3,3,"span",46),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",null==t?null:t.fee),A.xp6(1),A.Q6J("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function fg(i,x){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(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function hg(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",51)(1,"button",52),A.NdJ("click",function(B){const LA=A.CHM(t).$implicit,yt=A.oxw(2);return A.KtG(yt.onForwardingEventClick(LA,B))}),A._uU(2,"View Info"),A.qZA()()}}function Eg(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No forwarding history available."),A.qZA())}function Cg(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting forwarding history..."),A.qZA())}function wg(i,x){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 Qg(i,x){if(1&i&&(A.TgZ(0,"td",53),A.YNc(1,Eg,2,0,"p",54)(2,Cg,2,0,"p",54)(3,wg,2,1,"p",54),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 dg=i=>({"display-none":i});function pg(i,x){if(1&i&&A._UZ(0,"tr",55),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,dg,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function Mg(i,x){1&i&&A._UZ(0,"tr",56)}function mg(i,x){1&i&&A._UZ(0,"tr",57)}const Ig=()=>["no_event"];function Dg(i,x){if(1&i&&(A.TgZ(0,"div",14),A.YNc(1,jc,1,0,"mat-progress-bar",15),A.TgZ(2,"table",16,17),A.ynx(4,18),A.YNc(5,Kc,2,0,"th",19)(6,Wc,3,4,"td",20),A.BQk(),A.ynx(7,21),A.YNc(8,Vc,2,0,"th",19)(9,Zc,3,4,"td",20),A.BQk(),A.ynx(10,22),A.YNc(11,Xc,2,0,"th",19)(12,qc,2,1,"td",20),A.BQk(),A.ynx(13,23),A.YNc(14,_c,2,0,"th",19)(15,$c,4,4,"td",20),A.BQk(),A.ynx(16,24),A.YNc(17,Ag,2,0,"th",19)(18,tg,2,1,"td",20),A.BQk(),A.ynx(19,25),A.YNc(20,eg,2,0,"th",19)(21,ng,4,4,"td",20),A.BQk(),A.ynx(22,26),A.YNc(23,ig,2,0,"th",19)(24,rg,4,4,"td",20),A.BQk(),A.ynx(25,27),A.YNc(26,ag,2,0,"th",28)(27,og,4,4,"td",20),A.BQk(),A.ynx(28,29),A.YNc(29,sg,2,0,"th",28)(30,lg,4,4,"td",20),A.BQk(),A.ynx(31,30),A.YNc(32,cg,2,0,"th",28)(33,ug,3,2,"td",20),A.BQk(),A.ynx(34,31),A.YNc(35,fg,6,0,"th",32)(36,hg,3,0,"td",33),A.BQk(),A.ynx(37,34),A.YNc(38,Qg,4,3,"td",35),A.BQk(),A.YNc(39,pg,1,3,"tr",36)(40,Mg,1,0,"tr",37)(41,mg,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),A.xp6(37),A.Q6J("matFooterRowDef",A.DdM(7,Ig)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function vg(i,x){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 Jl=(()=>{class i{constructor(t,l,B,Z,LA){this.logger=t,this.commonService=l,this.store=B,this.datePipe=Z,this.camelCaseWithReplace=LA,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 d.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 s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}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())}ngOnInit(){this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,oe.q)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.Bn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,z.u0)({payload:{status:r.OO.SETTLED}}))}),this.store.select(c.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(t,l){const B=[[{key:"status",value:"Settled",title:"Status",width:50,type:r.Gi.STRING},{key:"fee",value:t.fee_msat,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_msat,title:"In (mSats)",width:50,type:r.Gi.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Out (mSats)",width:50,type:r.Gi.NUMBER}]];t.payment_hash&&B.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}]),this.store.dispatch((0,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Event Information",message:B}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const l=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.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_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":B=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":B=(+(t.fee_msat||0)).toString()||"";break;case"in_msatoshi":B=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":B=(+(t.out_msat||0)/1e3).toString()||"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return B.includes(l)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new d.by([...t]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(l,B)=>{switch(B){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(ot.uU),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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"],["fxLayoutAlign","end center",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"],["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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,Hc,2,1,"div",1)(2,kc,13,4,"div",2)(3,Dg,42,8,"div",3)(4,vg,1,3,"mat-paginator",4),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf",""!==B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,Y.NW,b.Vv,b.$V,ot.JJ,ot.uU]})}return i})();function yg(i,x){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 xg(i,x){if(1&i&&(A.TgZ(0,"mat-option",16),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}const Fg=()=>["all"];function Yg(i,x){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-label"),A._uU(10,"Filter By"),A.qZA(),A.TgZ(11,"mat-select",13),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilterBy=B)})("selectionChange",function(){A.CHM(t);const B=A.oxw();return B.selFilter="",A.KtG(B.applyFilter())}),A.TgZ(12,"perfect-scrollbar"),A.YNc(13,xg,2,2,"mat-option",14),A.qZA()()(),A.TgZ(14,"mat-form-field",12)(15,"mat-label"),A._uU(16,"Filter"),A.qZA(),A.TgZ(17,"input",15),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilter=B)})("input",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())})("keyup",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())}),A.qZA()()()()()}if(2&i){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.faExclamationTriangle),A.xp6(9),A.Q6J("ngModel",t.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(4,Fg).concat(t.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",t.selFilter)}}function Tg(i,x){1&i&&A._UZ(0,"mat-progress-bar",41)}function Ng(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Received Time"),A.qZA())}function Sg(i,x){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Ug(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Resolved Time"),A.qZA())}function bg(i,x){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function Lg(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"In Channel ID"),A.qZA())}function Pg(i,x){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel)}}function Rg(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"In Channel"),A.qZA())}const Ol=i=>({width:i});function zg(i,x){if(1&i&&(A.TgZ(0,"td",43)(1,"span",44)(2,"span",45),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ol,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.in_channel_alias)}}function Gg(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Out Channel ID"),A.qZA())}function Hg(i,x){if(1&i&&(A.TgZ(0,"td",43),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel)}}function Jg(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Out Channel"),A.qZA())}function Og(i,x){if(1&i&&(A.TgZ(0,"td",43)(1,"span",44)(2,"span",45),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Ol,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.out_channel_alias)}}function kg(i,x){1&i&&(A.TgZ(0,"th",46),A._uU(1,"Amount In (Sats)"),A.qZA())}function jg(i,x){if(1&i&&(A.TgZ(0,"td",43)(1,"span",47),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Kg(i,x){1&i&&(A.TgZ(0,"th",46),A._uU(1,"Amount Out (Sats)"),A.qZA())}function Wg(i,x){if(1&i&&(A.TgZ(0,"td",43)(1,"span",47),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Vg(i,x){1&i&&(A.TgZ(0,"th",46),A._uU(1,"Fee (mSat)"),A.qZA())}function Zg(i,x){if(1&i&&(A.TgZ(0,"span",47),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,null==t?null:t.fee,"1.0-0")," ")}}function Xg(i,x){if(1&i&&(A.TgZ(0,"span",47),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,null==t?null:t.fee_msat,"1.0-0")," ")}}function qg(i,x){if(1&i&&(A.TgZ(0,"td",43),A.YNc(1,Zg,3,4,"span",48)(2,Xg,3,4,"span",48),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",null==t?null:t.fee),A.xp6(1),A.Q6J("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function _g(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"th",49)(1,"div",50)(2,"mat-select",51),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",52),A.NdJ("click",function(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function $g(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",53)(1,"button",54),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(2);return A.KtG(LA.onFailedEventClick(Z))}),A._uU(2,"View Info"),A.qZA()()}}function AB(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No failed transaction available."),A.qZA())}function tB(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting failed transactions..."),A.qZA())}function eB(i,x){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 nB(i,x){if(1&i&&(A.TgZ(0,"td",55),A.YNc(1,AB,2,0,"p",56)(2,tB,2,0,"p",56)(3,eB,2,1,"p",56),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 iB=i=>({"display-none":i});function rB(i,x){if(1&i&&A._UZ(0,"tr",57),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,iB,(null==t.failedForwardingEvents?null:t.failedForwardingEvents.data)&&(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)>0))}}function aB(i,x){1&i&&A._UZ(0,"tr",58)}function oB(i,x){1&i&&A._UZ(0,"tr",59)}const sB=()=>["no_event"];function lB(i,x){if(1&i&&(A.TgZ(0,"div",17),A.YNc(1,Tg,1,0,"mat-progress-bar",18),A.TgZ(2,"table",19,20),A.ynx(4,21),A.YNc(5,Ng,2,0,"th",22)(6,Sg,3,4,"td",23),A.BQk(),A.ynx(7,24),A.YNc(8,Ug,2,0,"th",22)(9,bg,3,4,"td",23),A.BQk(),A.ynx(10,25),A.YNc(11,Lg,2,0,"th",22)(12,Pg,2,1,"td",23),A.BQk(),A.ynx(13,26),A.YNc(14,Rg,2,0,"th",22)(15,zg,4,4,"td",23),A.BQk(),A.ynx(16,27),A.YNc(17,Gg,2,0,"th",22)(18,Hg,2,1,"td",23),A.BQk(),A.ynx(19,28),A.YNc(20,Jg,2,0,"th",22)(21,Og,4,4,"td",23),A.BQk(),A.ynx(22,29),A.YNc(23,kg,2,0,"th",30)(24,jg,4,4,"td",23),A.BQk(),A.ynx(25,31),A.YNc(26,Kg,2,0,"th",30)(27,Wg,4,4,"td",23),A.BQk(),A.ynx(28,32),A.YNc(29,Vg,2,0,"th",30)(30,qg,3,2,"td",23),A.BQk(),A.ynx(31,33),A.YNc(32,_g,6,0,"th",34)(33,$g,3,0,"td",35),A.BQk(),A.ynx(34,36),A.YNc(35,nB,4,3,"td",37),A.BQk(),A.YNc(36,rB,1,3,"tr",38)(37,aB,1,0,"tr",39)(38,oB,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedForwardingEvents),A.xp6(34),A.Q6J("matFooterRowDef",A.DdM(7,sB)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function cB(i,x){if(1&i&&A._UZ(0,"mat-paginator",60),2&i){const t=A.oxw();A.Q6J("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let gB=(()=>{class i{constructor(t,l,B,Z,LA){this.logger=t,this.commonService=l,this.store=B,this.datePipe=Z,this.camelCaseWithReplace=LA,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=E.eHv,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new d.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 s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,z.u0)({payload:{status:r.OO.FAILED}})),this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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&&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 l=[[{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_msat,title:"Amount In (mSats)",width:33,type:r.Gi.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Amount Out (mSats)",width:33,type:r.Gi.NUMBER},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:34,type:r.Gi.NUMBER}]];t.payment_hash&&l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}]),this.store.dispatch((0,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"Failed Event Information",message:l}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.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.fee_msat?t.fee_msat+" ":"")+(t.in_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":B=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":B=(t.fee_msat||0)?.toString()||"";break;case"in_msatoshi":B=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":B=(+(t.out_msat||0)/1e3).toString()||"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return B.includes(l)}}loadFailedEventsTable(t){this.failedForwardingEvents=new d.by([...t]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(l,B)=>{switch(B){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(ot.uU),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-failed-history"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.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","column","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","fxLayoutAlign","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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"],["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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,yg,2,1,"div",1)(2,Yg,18,5,"div",2)(3,lB,39,8,"div",3)(4,cB,1,3,"mat-paginator",4),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf",""!==B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,Y.NW,b.Vv,b.$V,ot.JJ,ot.uU]})}return i})();const BB=["tableIn"],uB=["tableOut"],fB=["paginatorIn"],hB=["paginatorOut"];function EB(i,x){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 CB(i,x){1&i&&A._UZ(0,"mat-progress-bar",34)}function wB(i,x){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Channel ID"),A.qZA())}const oo=i=>({width:i});function QB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,oo,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.channel_id)}}function dB(i,x){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Peer Alias"),A.qZA())}function pB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,oo,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.alias)}}function MB(i,x){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Events"),A.qZA())}function mB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,t.events))}}function IB(i,x){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Amount (Sats)"),A.qZA())}function DB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$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 vB(i,x){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Fee (Sats)"),A.qZA())}function yB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$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 xB(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No incoming routing peer available."),A.qZA())}function FB(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting incoming routing peers..."),A.qZA())}function YB(i,x){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 TB(i,x){if(1&i&&(A.TgZ(0,"td",41),A.YNc(1,xB,2,0,"p",42)(2,FB,2,0,"p",42)(3,YB,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 kl=i=>({"display-none":i});function NB(i,x){if(1&i&&A._UZ(0,"tr",43),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,kl,(null==t.routingPeersIncoming?null:t.routingPeersIncoming.data)&&(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function SB(i,x){1&i&&A._UZ(0,"tr",44)}function UB(i,x){1&i&&A._UZ(0,"tr",45)}function bB(i,x){1&i&&A._UZ(0,"mat-progress-bar",34)}function LB(i,x){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Channel ID"),A.qZA())}function PB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,oo,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.channel_id)}}function RB(i,x){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Peer Alias"),A.qZA())}function zB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"div",37)(2,"span",38),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,oo,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.alias)}}function GB(i,x){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Events"),A.qZA())}function HB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(A.lcZ(3,1,t.events))}}function JB(i,x){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Amount (Sats)"),A.qZA())}function OB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$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 kB(i,x){1&i&&(A.TgZ(0,"th",39),A._uU(1,"Fee (Sats)"),A.qZA())}function jB(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$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 KB(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No outgoing routing peer available."),A.qZA())}function WB(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting outgoing routing peers..."),A.qZA())}function VB(i,x){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 ZB(i,x){if(1&i&&(A.TgZ(0,"td",41),A.YNc(1,KB,2,0,"p",42)(2,WB,2,0,"p",42)(3,VB,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 XB(i,x){if(1&i&&A._UZ(0,"tr",43),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,kl,(null==t.routingPeersOutgoing?null:t.routingPeersOutgoing.data)&&(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function qB(i,x){1&i&&A._UZ(0,"tr",44)}function _B(i,x){1&i&&A._UZ(0,"tr",45)}const $B=(i,x)=>({"mt-2":i,"mt-1":x}),Au=()=>["no_incoming_event"],tu=i=>({"mt-2":i}),eu=()=>["no_outgoing_event"];function nu(i,x){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,CB,1,0,"mat-progress-bar",10),A.TgZ(8,"table",11,12),A.ynx(10,13),A.YNc(11,wB,2,0,"th",14)(12,QB,4,4,"td",15),A.BQk(),A.ynx(13,16),A.YNc(14,dB,2,0,"th",14)(15,pB,4,4,"td",15),A.BQk(),A.ynx(16,17),A.YNc(17,MB,2,0,"th",18)(18,mB,4,3,"td",15),A.BQk(),A.ynx(19,19),A.YNc(20,IB,2,0,"th",18)(21,DB,4,4,"td",15),A.BQk(),A.ynx(22,20),A.YNc(23,vB,2,0,"th",18)(24,yB,4,4,"td",15),A.BQk(),A.ynx(25,21),A.YNc(26,TB,4,3,"td",22),A.BQk(),A.YNc(27,NB,1,3,"tr",23)(28,SB,1,0,"tr",24)(29,UB,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,bB,1,0,"mat-progress-bar",10),A.TgZ(39,"table",30,31),A.ynx(41,13),A.YNc(42,LB,2,0,"th",14)(43,PB,4,4,"td",15),A.BQk(),A.ynx(44,16),A.YNc(45,RB,2,0,"th",14)(46,zB,4,4,"td",15),A.BQk(),A.ynx(47,17),A.YNc(48,GB,2,0,"th",18)(49,HB,4,3,"td",15),A.BQk(),A.ynx(50,19),A.YNc(51,JB,2,0,"th",18)(52,OB,4,4,"td",15),A.BQk(),A.ynx(53,20),A.YNc(54,kB,2,0,"th",18)(55,jB,4,4,"td",15),A.BQk(),A.ynx(56,32),A.YNc(57,ZB,4,3,"td",22),A.BQk(),A.YNc(58,XB,1,3,"tr",23)(59,qB,1,0,"tr",24)(60,_B,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(22,$B,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersIncoming),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(25,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(26,tu,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersOutgoing),A.xp6(19),A.Q6J("matFooterRowDef",A.DdM(28,eu)),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 iu=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.commonService=l,this.store=B,this.camelCaseWithReplace=Z,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 d.by([]),this.routingPeersOutgoing=new d.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 s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}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))}ngOnInit(){this.store.pipe((0,oe.q)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.Bn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,z.u0)({payload:{status:r.OO.SETTLED}}))}),this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l),this.routingPeersOutgoing.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l)}loadRoutingPeersTable(t){if(t.length>0){const l=this.groupRoutingPeers(t);this.routingPeersIncoming=new d.by(l[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new d.by(l[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new d.by([]),this.routingPeersOutgoing=new d.by([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(t){const l=[],B=[];return t.forEach(Z=>{const LA=l?.find(ln=>ln.channel_id===Z.in_channel),yt=B?.find(ln=>ln.channel_id===Z.out_channel);LA?(LA.events++,LA.total_amount=+LA.total_amount+ +(Z.in_msat||0),LA.total_fee=+(Z.in_msat||0)-+(Z.out_msat||0)+ +LA.total_fee):l.push({channel_id:Z.in_channel,alias:Z.in_channel_alias,events:1,total_amount:+(Z.in_msat||0),total_fee:+(Z.in_msat||0)-+(Z.out_msat||0)}),yt?(yt.events++,yt.total_amount=+yt.total_amount+ +(Z.out_msat||0),yt.total_fee=+(Z.in_msat||0)-+(Z.out_msat||0)+ +yt.total_fee):B.push({channel_id:Z.out_channel,alias:Z.out_channel_alias,events:1,total_amount:+(Z.out_msat||0),total_fee:+(Z.in_msat||0)-+(Z.out_msat||0)})}),[this.commonService.sortDescByKey(l,"total_fee"),this.commonService.sortDescByKey(B,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(l,B){if(1&l&&(A.Gf(BB,5,D.YE),A.Gf(uB,5,D.YE),A.Gf(fB,5),A.Gf(hB,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sortIn=Z.first),A.iGM(Z=A.CRH())&&(B.sortOut=Z.first),A.iGM(Z=A.CRH())&&(B.paginatorIn=Z.first),A.iGM(Z=A.CRH())&&(B.paginatorOut=Z.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},features:[A._Bn([{provide:Y.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,"matSortActive","matSortDirection","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,"matSortActive","matSortDirection","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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,EB,2,1,"div",1)(2,nu,63,29,"div",2),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf",""!==B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage))},dependencies:[ot.mk,ot.O5,ot.PC,n.xw,n.Wh,n.yH,f.oO,f.Zl,u.pW,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,Y.NW,b.$V,ot.JJ]})}return i})();function ru(i,x){if(1&i&&(A.TgZ(0,"mat-option",33),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function au(i,x){1&i&&A._UZ(0,"mat-progress-bar",34)}function ou(i,x){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Amount (Sats)"),A.qZA())}function su(i,x){if(1&i&&(A.TgZ(0,"span",40),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,(null==t?null:t.amount_msat)/1e3,"1.0-2")," ")}}function lu(i,x){if(1&i&&(A.ynx(0),A.YNc(1,su,3,4,"span",39),A.BQk()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function cu(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",37),A._uU(2),A.qZA(),A.YNc(3,lu,2,1,"ng-container",38),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" Active HTLCs: ",null==t||null==t.htlcs?null:t.htlcs.length," "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function gu(i,x){1&i&&(A.TgZ(0,"th",35),A._uU(1,"Alias/Direction"),A.qZA())}function Bu(i,x){if(1&i&&(A.TgZ(0,"span",37),A._uU(1),A.ALo(2,"titlecase"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.lcZ(2,1,null==t?null:t.direction)," ")}}function uu(i,x){if(1&i&&(A.ynx(0),A.YNc(1,Bu,3,3,"span",41),A.BQk()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function fu(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",37),A._uU(2),A.qZA(),A.YNc(3,uu,2,1,"ng-container",38),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(null==t?null:t.alias),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function hu(i,x){1&i&&(A.TgZ(0,"th",42)(1,"span",40),A._uU(2,"HTLC ID"),A.qZA()())}function Eu(i,x){if(1&i&&(A.TgZ(0,"span",40),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.lcZ(2,1,null==t?null:t.id)," ")}}function Cu(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Eu,3,3,"span",39),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function wu(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.qZA(),A.YNc(3,Cu,2,1,"span",38),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(null==t?null:t.id),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Qu(i,x){1&i&&(A.TgZ(0,"th",42)(1,"span",40),A._uU(2,"Expiry"),A.qZA()())}function du(i,x){if(1&i&&(A.TgZ(0,"span",40),A._uU(1),A.ALo(2,"number"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,null==t?null:t.expiry,"1.0-0")," ")}}function pu(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,du,3,4,"span",39),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function Mu(i,x){if(1&i&&(A.TgZ(0,"td",36)(1,"span",40),A._uU(2),A.qZA(),A.YNc(3,pu,2,1,"span",38),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(" "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function mu(i,x){1&i&&(A.TgZ(0,"th",43)(1,"span",40),A._uU(2,"State"),A.qZA()())}function Iu(i,x){if(1&i&&(A.TgZ(0,"span",40),A._uU(1),A.ALo(2,"camelcaseWithReplace"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",A.xi3(2,1,null==t?null:t.state,"_")," ")}}function Du(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Iu,3,4,"span",39),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function vu(i,x){if(1&i&&(A.TgZ(0,"td",44)(1,"span",40),A._uU(2),A.qZA(),A.YNc(3,Du,2,1,"span",38),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(" "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function yu(i,x){1&i&&(A.TgZ(0,"th",43)(1,"span",40),A._uU(2,"Local Trimmed"),A.qZA()())}function xu(i,x){if(1&i&&(A.TgZ(0,"span",40),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",null!=t&&t.local_trimmed?"Yes":"No"," ")}}function Fu(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,xu,2,1,"span",39),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function Yu(i,x){if(1&i&&(A.TgZ(0,"td",44)(1,"span",40),A._uU(2),A.qZA(),A.YNc(3,Fu,2,1,"span",38),A.qZA()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(" "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function Tu(i,x){1&i&&(A.TgZ(0,"th",43)(1,"span",40),A._uU(2,"Payment Hash"),A.qZA()())}const jl=i=>({width:i});function Nu(i,x){if(1&i&&(A.TgZ(0,"span",48)(1,"span",49),A._uU(2),A.qZA()()),2&i){const t=x.$implicit,l=A.oxw(3);A.Q6J("ngStyle",A.VKq(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.payment_hash)}}function Su(i,x){if(1&i&&(A.TgZ(0,"span"),A.YNc(1,Nu,3,4,"span",47),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function Uu(i,x){if(1&i&&(A.TgZ(0,"td",44)(1,"span",45)(2,"span",46),A._uU(3),A.qZA()(),A.YNc(4,Su,2,1,"span",38),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(3,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(" "),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function bu(i,x){if(1&i){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Lu(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",58)(1,"button",59),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(2).$implicit,yt=A.oxw();return A.KtG(yt.onHTLCClick(Z,LA))}),A._uU(2),A.qZA()()}if(2&i){const t=x.index;A.xp6(2),A.hij("View ",t+1,"")}}function Pu(i,x){if(1&i&&(A.TgZ(0,"div"),A.YNc(1,Lu,3,1,"div",57),A.qZA()),2&i){const t=A.oxw().$implicit;A.xp6(1),A.Q6J("ngForOf",null==t?null:t.htlcs)}}function Ru(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",54)(1,"span",55)(2,"button",56),A.NdJ("click",function(){const Z=A.CHM(t).$implicit;return A.KtG(Z.is_expanded=!Z.is_expanded)}),A._uU(3),A.qZA()(),A.YNc(4,Pu,2,1,"div",38),A.qZA()}if(2&i){const t=x.$implicit;A.xp6(3),A.Oqu(t.is_expanded?"Hide":"Show"),A.xp6(1),A.Q6J("ngIf",t.is_expanded)}}function zu(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No active htlc available."),A.qZA())}function Gu(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting active htlcs..."),A.qZA())}function Hu(i,x){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 Ju(i,x){if(1&i&&(A.TgZ(0,"td",60),A.YNc(1,zu,2,0,"p",38)(2,Gu,2,0,"p",38)(3,Hu,2,1,"p",38),A.qZA()),2&i){const t=A.oxw();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.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 Ou=i=>({"display-none":i});function ku(i,x){if(1&i&&A._UZ(0,"tr",61),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,Ou,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function ju(i,x){1&i&&A._UZ(0,"tr",62)}function Ku(i,x){1&i&&A._UZ(0,"tr",63)}const Wu=()=>["all"],Vu=i=>({"error-border":i}),Zu=()=>["no_channel"];let Xu=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.commonService=l,this.store=B,this.camelCaseWithReplace=Z,this.nodePageDefs=r.At,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:r.IV,sortBy:"expiry",sortOrder:r.Pi.DESCENDING},this.channels=new d.by([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],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 s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.ZW).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:"");const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.channelsJSONArr=l?.filter(B=>B.htlcs&&B.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,l){const B=[[{key:"alias",value:l.alias,title:"Alias",width:100,type:r.Gi.STRING}],[{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:r.Gi.NUMBER},{key:"direction",value:this.commonService.titleCase(t.direction||""),title:"Direction",width:50,type:r.Gi.STRING}],[{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:r.Gi.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(t.state||"","_"),title:"State",width:50,type:r.Gi.STRING}],[{key:"id",value:t.id,title:"HTLC ID",width:50,type:r.Gi.STRING},{key:"local_trimmed",value:t.local_trimmed,title:"Local Trimmed",width:50,type:r.Gi.BOOLEAN}],[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.Gi.STRING}]];this.store.dispatch((0,mA.qR)({payload:{data:{type:r.n_.INFORMATION,alertTitle:"HTLC Information",message:B}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.alias?t.alias.toLowerCase():"")+t.htlcs?.map(Z=>JSON.stringify(Z).toLowerCase()+(Z.local_trimmed?" yes ":" no "));break;case"direction":B=t.htlcs?.map(Z=>Z.direction+" ").toString()||"";break;case"id":B=t.htlcs?.map(Z=>Z.id+" ").toString()||"";break;case"expiry":B=t.htlcs?.map(Z=>Z.expiry+" ").toString()||"";break;case"state":B=t.htlcs?.map(Z=>this.camelCaseWithReplace.transform(Z.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":B=t.htlcs?.map(Z=>Z.payment_hash+" ").toString()||"";break;case"local_trimmed":B=t.htlcs?.map(Z=>Z.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":B=t.htlcs?.map(Z=>(Z.amount_msat||0)/1e3)?.toString()||"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return B.includes(l)}}loadHTLCsTable(t){this.channels=new d.by(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,B)=>{switch(B){case"amount_msat":return this.commonService.sortByKey(l.htlcs,B,"number",this.sort?.direction),l.htlcs&&l.htlcs.length?l.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(l.htlcs,B,"string",this.sort?.direction),l;case"direction":return this.commonService.sortByKey(l.htlcs,B,"string",this.sort?.direction),l.alias?l.alias:l.id?l.id:null;case"expiry":return this.commonService.sortByKey(l.htlcs,B,"number",this.sort?.direction),l;case"local_trimmed":return this.commonService.sortByKey(l.htlcs,B,"boolean",this.sort?.direction),l;default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((B,Z)=>B.concat(Z.htlcs?Z.htlcs:Z),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("HTLCs")}])],decls:48,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","dataSource","ngClass"],["table",""],["matColumnDef","amount_msat"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","direction"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expiry"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","local_trimmed"],["matColumnDef","payment_hash"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",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"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"ellipsis-child"],["fxLayoutAlign","start center","class","ellipsis-parent htlc-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["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(l,B){1&l&&(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-label"),A._uU(6,"Filter By"),A.qZA(),A.TgZ(7,"mat-select",5),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(8,"perfect-scrollbar"),A.YNc(9,ru,2,2,"mat-option",6),A.qZA()()(),A.TgZ(10,"mat-form-field",4)(11,"mat-label"),A._uU(12,"Filter"),A.qZA(),A.TgZ(13,"input",7),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.TgZ(14,"div",8),A.YNc(15,au,1,0,"mat-progress-bar",9),A.TgZ(16,"table",10,11),A.ynx(18,12),A.YNc(19,ou,2,0,"th",13)(20,cu,4,2,"td",14),A.BQk(),A.ynx(21,15),A.YNc(22,gu,2,0,"th",13)(23,fu,4,2,"td",14),A.BQk(),A.ynx(24,16),A.YNc(25,hu,3,0,"th",17)(26,wu,4,2,"td",14),A.BQk(),A.ynx(27,18),A.YNc(28,Qu,3,0,"th",17)(29,Mu,4,2,"td",14),A.BQk(),A.ynx(30,19),A.YNc(31,mu,3,0,"th",20)(32,vu,4,2,"td",21),A.BQk(),A.ynx(33,22),A.YNc(34,yu,3,0,"th",20)(35,Yu,4,2,"td",21),A.BQk(),A.ynx(36,23),A.YNc(37,Tu,3,0,"th",20)(38,Uu,5,5,"td",21),A.BQk(),A.ynx(39,24),A.YNc(40,bu,6,0,"th",25)(41,Ru,5,2,"td",26),A.BQk(),A.ynx(42,27),A.YNc(43,Ju,4,3,"td",28),A.BQk(),A.YNc(44,ku,1,3,"tr",29)(45,ju,1,0,"tr",30)(46,Ku,1,0,"tr",31),A.qZA()(),A._UZ(47,"mat-paginator",32),A.qZA()),2&l&&(A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(14,Wu).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(2),A.Q6J("ngIf",B.apiCallStatus.status===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.channels)("ngClass",A.VKq(15,Vu,""!==B.errorMessage)),A.xp6(28),A.Q6J("matFooterRowDef",A.DdM(17,Zu)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,Y.NW,b.Vv,b.$V,ot.JJ,ot.rS,j.D3],styles:[".mat-column-amount_msat[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}"]})}return i})();function qu(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",8),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.activeLink=Z.link)}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit,l=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",l.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let _u=(()=>{class i{constructor(t){this.router=t,this.faChartBar=E.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new s.x,new s.x,new s.x,new s.x]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(l=>l instanceof ce.Av)).subscribe({next:l=>{const B=this.links.find(Z=>l.urlAfterRedirects.includes(Z.link));this.activeLink=B?B.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-reports"]],decls:12,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(l,B){if(1&l&&(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,qu,2,3,"div",6),A.qZA(),A._UZ(9,"mat-tab-nav-panel",null,7)(11,"router-outlet"),A.qZA()()()),2&l){const Z=A.MAs(10);A.xp6(1),A.Q6J("icon",B.faChartBar),A.xp6(6),A.Q6J("tabPanel",Z),A.xp6(1),A.Q6J("ngForOf",B.links)}},dependencies:[ot.sg,e.BN,n.xw,n.Wh,v.a8,v.dn,y.BU,y.sW,y.Nj,ce.lC,ce.rH]})}return i})();var Kl=Rt(8291),Wl=Rt(25),Vl=Rt(1948);function $u(i,x){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 Af(i,x){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 tf(i,x){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 ef(i,x){1&i&&(A.TgZ(0,"div",14),A._uU(1,"No routing report for the selected period"),A.qZA())}function nf(i,x){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=x.model,l=A.oxw(2);A.xp6(2),A.hij("Events: ",A.lcZ(3,2,(l.selReportBy===l.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),A.xp6(3),A.hij("Fee: ",A.xi3(6,4,(l.selReportBy===l.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function rf(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"ngx-charts-bar-vertical",18),A.NdJ("select",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onChartBarSelected(B))})("mouseup",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onChartMouseUp(B))}),A.YNc(1,nf,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 af(i,x){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 of=(()=>{class i{constructor(t,l,B,Z){this.logger=t,this.commonService=l,this.store=B,this.dataService=Z,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 s.x,new s.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.cu.XS||this.screenSize===r.cu.SM),this.store.pipe((0,oe.q)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.Bn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,z.u0)({payload:{status:r.OO.SETTLED}}))}),this.store.select(c.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,l){const B=Math.round(t.getTime()/1e3),Z=Math.round(l.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(LA=>{LA.received_time&&LA.received_time>=B&&LA.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){const l=Math.round(t.getTime()/1e3),B=[];if(this.totalFeeMsat=0,this.reportPeriod===r.op[1]){for(let Z=0;Z<12;Z++)B.push({name:r.gg[Z].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(Z=>{const LA=Z.received_time?new Date(1e3*+Z.received_time).getMonth():12;return B[LA].extra.totalEvents=B[LA].extra.totalEvents+1,B[LA].value=B[LA].value+ +(Z.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(Z.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let Z=0;Z{const LA=Z.received_time?Math.floor((+Z.received_time-l)/this.secondsInADay):0;return B[LA].extra.totalEvents=B[LA].extra.totalEvents+1,B[LA].value=B[LA].value+ +(Z.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(Z.fee_msat||0),this.filteredEventsBySelectedPeriod})}return B}prepareEventsReport(t){const l=Math.round(t.getTime()/1e3),B=[];if(this.totalFeeMsat=0,this.reportPeriod===r.op[1]){for(let Z=0;Z<12;Z++)B.push({name:r.gg[Z].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(Z=>{const LA=Z.received_time?new Date(1e3*+Z.received_time).getMonth():12;return B[LA].value=B[LA].value+1,B[LA].extra.totalFees=B[LA].extra.totalFees+ +(Z.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(Z.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let Z=0;Z{const LA=Z.received_time?Math.floor((+Z.received_time-l)/this.secondsInADay):0;return B[LA].value=B[LA].value+1,B[LA].extra.totalFees=B[LA].extra.totalFees+ +(Z.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(Z.fee_msat||0),this.filteredEventsBySelectedPeriod})}return B}onSelectionChange(t){const l=t.selDate.getMonth(),B=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.op[1]?(this.startDate=new Date(B,0,1,0,0,0),this.endDate=new Date(B,11,31,23,59,59)):(this.startDate=new Date(B,l,1,0,0,0),this.endDate=new Date(B,l,this.getMonthDays(l,B),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,l){return 1===t&&l%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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(De.D))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-routing-report"]],hostBindings:function(l,B){1&l&&A.NdJ("mouseup",function(LA){return B.onChartMouseUp(LA)})},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 center",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(l,B){1&l&&(A.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),A.NdJ("stepChanged",function(LA){return B.onSelectionChange(LA)}),A.qZA(),A.TgZ(2,"div",2)(3,"mat-radio-group",3),A.NdJ("ngModelChange",function(LA){return B.selReportBy=LA})("change",function(){return B.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,$u,4,0,"div",8)(12,Af,2,1,"div",9)(13,tf,4,8,"div",10)(14,ef,2,0,"div",8),A.TgZ(15,"div",11),A.YNc(16,rf,3,11,"ngx-charts-bar-vertical",12),A.qZA(),A.TgZ(17,"div",11),A.YNc(18,af,1,4,"rtl-cln-forwarding-history",13),A.qZA()()()),2&l&&(A.xp6(3),A.Q6J("ngModel",B.selReportBy),A.xp6(3),A.s9C("value",B.reportBy.FEES),A.xp6(2),A.s9C("value",B.reportBy.EVENTS),A.xp6(3),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.ERROR),A.xp6(1),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.COMPLETED&&B.routingReportData.length>0&&B.filteredEventsBySelectedPeriod.length>0),A.xp6(1),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.COMPLETED&&(B.routingReportData.length<=0||B.filteredEventsBySelectedPeriod.length<=0)),A.xp6(2),A.Q6J("ngIf",B.routingReportData.length>0&&B.filteredEventsBySelectedPeriod.length>0),A.xp6(2),A.Q6J("ngIf",B.filteredEventsBySelectedPeriod&&B.filteredEventsBySelectedPeriod.length>0))},dependencies:[ot.O5,K.JJ,K.On,n.xw,n.Wh,n.yH,u.pW,gn.VQ,gn.U0,Wl.K$,Vl.D,Jl,ot.JJ],data:{animation:[Kl.J]}})}return i})();var sf=Rt(5362);function lf(i,x){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 cf(i,x){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 gf(i,x){if(1&i&&(A.TgZ(0,"div",8),A.YNc(1,lf,4,7,"div",9)(2,cf,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 Bf(i,x){1&i&&(A.TgZ(0,"div",11),A._uU(1,"No transactions report for the selected period"),A.qZA())}function uf(i,x){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=x.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 ff(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"ngx-charts-bar-vertical-2d",12),A.NdJ("select",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onChartBarSelected(B))})("mouseup",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.onChartMouseUp(B))}),A.YNc(1,uf,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 hf(i,x){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 Ef=(()=>{class i{constructor(t,l,B){this.logger=t,this.commonService=l,this.store=B,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 s.x,new s.x,new s.x,new s.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.cu.XS||this.screenSize===r.cu.SM),this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.PP).pipe((0,g.R)(this.unSubs[1]),(0,ci.M)(this.store.select(c.gc))).subscribe(([t,l])=>{this.payments=t.payments,this.invoices=l.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,l){const B=Math.round(t.getTime()/1e3),Z=Math.round(l.getTime()/1e3),LA=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const yt=this.payments?.filter(Ce=>"complete"===Ce.status&&Ce.created_at&&Ce.created_at>=B&&Ce.created_at"paid"===Ce.status&&Ce.paid_at&&Ce.paid_at>=B&&Ce.paid_at{const cn=new Date(1e3*(Ce.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(Ce.amount_sent_msat||0),LA[cn].series[0].value=LA[cn].series[0].value+(Ce.amount_sent_msat||0)/1e3,LA[cn].series[0].extra.total=LA[cn].series[0].extra.total+1,this.transactionsReportSummary}),ln?.map(Ce=>{const cn=new Date(1e3*+(Ce.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(Ce.amount_received_msat||0),LA[cn].series[1].value=LA[cn].series[1].value+(Ce.amount_received_msat||0)/1e3,LA[cn].series[1].extra.total=LA[cn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let Ce=0;Ce{const cn=Math.floor((+(Ce.created_at||0)-B)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(Ce.amount_sent_msat||0),LA[cn].series[0].value=LA[cn].series[0].value+(Ce.amount_sent_msat||0)/1e3,LA[cn].series[0].extra.total=LA[cn].series[0].extra.total+1,this.transactionsReportSummary}),ln?.map(Ce=>{const cn=Math.floor((+(Ce.paid_at||0)-B)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(Ce.amount_received_msat||0),LA[cn].series[1].value=LA[cn].series[1].value+(Ce.amount_received_msat||0)/1e3,LA[cn].series[1].extra.total=LA[cn].series[1].extra.total+1,this.transactionsReportSummary})}return LA}prepareTableData(){return this.transactionsReportData?.reduce((t,l)=>l.series[0].extra.total>0||l.series[1].extra.total>0?t.concat({date:l.date,amount_paid:l.series[0].value,num_payments:l.series[0].extra.total,amount_received:l.series[1].value,num_invoices:l.series[1].extra.total}):t,[])}onSelectionChange(t){const l=t.selDate.getMonth(),B=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.op[1]?(this.startDate=new Date(B,0,1,0,0,0),this.endDate=new Date(B,11,31,23,59,59)):(this.startDate=new Date(B,l,1,0,0,0),this.endDate=new Date(B,l,this.getMonthDays(l,B),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.gg[t].days+1:r.gg[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(l,B){1&l&&A.NdJ("mouseup",function(LA){return B.onChartMouseUp(LA)})},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(l,B){1&l&&(A.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),A.NdJ("stepChanged",function(LA){return B.onSelectionChange(LA)}),A.qZA(),A.TgZ(2,"div",2),A.YNc(3,gf,3,3,"div",3)(4,Bf,2,0,"div",4),A.TgZ(5,"div",5),A.YNc(6,ff,3,13,"ngx-charts-bar-vertical-2d",6),A.qZA(),A.TgZ(7,"div",5),A.YNc(8,hf,1,5,"rtl-transactions-report-table",7),A.qZA()()()),2&l&&(A.xp6(3),A.Q6J("ngIf",B.transactionsNonZeroReportData.length>0),A.xp6(1),A.Q6J("ngIf",B.transactionsNonZeroReportData.length<=0),A.xp6(2),A.Q6J("ngIf",B.transactionsNonZeroReportData.length>0),A.xp6(2),A.Q6J("ngIf",B.transactionsNonZeroReportData.length>0))},dependencies:[ot.O5,n.xw,n.Wh,n.yH,Wl.H5,Vl.D,sf.g,ot.JJ],data:{animation:[Kl.J]}})}return i})();var Pe=Rt(5525),Cf=Rt(4740);function wf(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"div",9),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.activeLink=Z.link)}),A._uU(1),A.qZA()}if(2&i){const t=x.$implicit,l=A.oxw();A.s9C("routerLink",t.link),A.Q6J("active",l.activeLink===t.link),A.xp6(1),A.Oqu(t.name)}}let Qf=(()=>{class i{constructor(t){this.router=t,this.faSearch=E.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new s.x,new s.x,new s.x,new s.x]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(l=>l instanceof ce.Av)).subscribe({next:l=>{const B=this.links.find(Z=>l.urlAfterRedirects.includes(Z.link));this.activeLink=B?B.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(ce.F0))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-graph"]],decls:13,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(l,B){if(1&l&&(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,wf,2,3,"div",6),A.qZA(),A._UZ(9,"mat-tab-nav-panel",null,7),A.TgZ(11,"div",8),A._UZ(12,"router-outlet"),A.qZA()()()()),2&l){const Z=A.MAs(10);A.xp6(1),A.Q6J("icon",B.faSearch),A.xp6(6),A.Q6J("tabPanel",Z),A.xp6(1),A.Q6J("ngForOf",B.links)}},dependencies:[ot.sg,e.BN,n.xw,n.Wh,n.yH,v.a8,v.dn,y.BU,y.sW,y.Nj,ce.lC,ce.rH]})}return i})();var df=Rt(7069),pf=Rt(6236);function Mf(i,x){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 mf(i,x){if(1&i&&(A.TgZ(0,"div",21),A._UZ(1,"fa-icon",22),A.YNc(2,Mf,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 If=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.dialogRef=t,this.data=l,this.store=B,this.decimalPipe=Z,this.commonService=LA,this.actions=yt,this.faExclamationTriangle=E.eHv,this.selNode={},this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=r.IV,this.offerError="",this.unSubs=[new s.x,new s.x,new s.x,new s.x,new s.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(c.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t,this.issuer=this.information.alias}),this.actions.pipe((0,g.R)(this.unSubs[2]),(0,F.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="";const t=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,z.dh)({payload:{amount:t,description:this.description,issuer:this.issuer}}))}resetData(){this.description="",this.issuer=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="= "+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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(C.yh),A.Y36(ot.JJ),A.Y36(w.v),A.Y36(aA.eX))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-create-offer"]],decls:34,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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","1","name","description",3,"ngModel","ngModelChange"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","2","name","offerValue",3,"step","min","ngModel","ngModelChange","keyup"],["matSuffix",""],["fxLayout","column","fxFlex","58","fxLayoutAlign","start end"],["matInput","","tabindex","3","name","issuer",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(l,B){1&l&&(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,"mat-label"),A._uU(13,"Description"),A.qZA(),A.TgZ(14,"input",10),A.NdJ("ngModelChange",function(LA){return B.description=LA}),A.qZA()(),A.TgZ(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A._uU(18,"Amount"),A.qZA(),A.TgZ(19,"input",13),A.NdJ("ngModelChange",function(LA){return B.offerValue=LA})("keyup",function(){return B.onOfferValueChange()}),A.qZA(),A.TgZ(20,"span",14),A._uU(21," Sats "),A.qZA(),A.TgZ(22,"mat-hint"),A._uU(23),A.qZA()(),A.TgZ(24,"mat-form-field",15)(25,"mat-label"),A._uU(26,"Issuer"),A.qZA(),A.TgZ(27,"input",16),A.NdJ("ngModelChange",function(LA){return B.issuer=LA}),A.qZA()()(),A.YNc(28,mf,3,2,"div",17),A.TgZ(29,"div",18)(30,"button",19),A.NdJ("click",function(){return B.resetData()}),A._uU(31,"Clear Field"),A.qZA(),A.TgZ(32,"button",20),A.NdJ("click",function(){return B.onAddOffer()}),A._uU(33,"Create Offer"),A.qZA()()()()()()),2&l&&(A.xp6(6),A.Q6J("mat-dialog-close",!1),A.xp6(8),A.Q6J("ngModel",B.description),A.xp6(5),A.Q6J("step",100)("min",1)("ngModel",B.offerValue),A.xp6(4),A.Oqu(B.offerValueHint),A.xp6(4),A.Q6J("ngModel",B.issuer),A.xp6(1),A.Q6J("ngIf",""!==B.offerError))},dependencies:[ot.O5,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.qQ,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,H.ZT,p.lW,v.dn,v.dk,$.Nt,nA.KE,nA.hX,nA.bx,nA.R9,TA.h,kA.q]})}return i})();var Zl=Rt(5440);function Df(i,x){if(1&i&&(A.TgZ(0,"mat-option",34),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function vf(i,x){1&i&&A._UZ(0,"mat-progress-bar",35)}function yf(i,x){1&i&&A._UZ(0,"th",36)}const Xl=i=>({"mr-0":i});function xf(i,x){if(1&i&&A._UZ(0,"span",40),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Xl,t.screenSize===t.screenSizeEnum.XS))}}function Ff(i,x){if(1&i&&A._UZ(0,"span",41),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,Xl,t.screenSize===t.screenSizeEnum.XS))}}function Yf(i,x){if(1&i&&(A.TgZ(0,"td",37),A.YNc(1,xf,1,3,"span",38)(2,Ff,1,3,"span",39),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Q6J("ngIf",t.active),A.xp6(1),A.Q6J("ngIf",!t.active)}}function Tf(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Offer ID"),A.qZA())}const ql=i=>({width:i});function Nf(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ql,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.hij(" ",t.offer_id," ")}}function Sf(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Single Use"),A.qZA())}function Uf(i,x){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t.single_use?"Yes":"No")}}function bf(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Used"),A.qZA())}function Lf(i,x){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ",t.used?"Yes":"No"," ")}}function Pf(i,x){1&i&&(A.TgZ(0,"th",42),A._uU(1,"Invoice"),A.qZA())}function Rf(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,ql,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.hij(" ",t.bolt12," ")}}function zf(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Gf(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",48),A.NdJ("click",function(){A.CHM(t);const B=A.oxw().$implicit,Z=A.oxw();return A.KtG(Z.onDisableOffer(B))}),A._uU(1,"Disable Offer"),A.qZA()}}function Hf(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"mat-option",48),A.NdJ("click",function(){A.CHM(t);const B=A.oxw().$implicit,Z=A.oxw();return A.KtG(Z.onPrintOffer(B))}),A._uU(1,"Export QR code"),A.qZA()}}function Jf(i,x){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 Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onOfferClick(Z))}),A._uU(5,"View Info"),A.qZA(),A.YNc(6,Gf,2,0,"mat-option",51)(7,Hf,2,0,"mat-option",51),A.qZA()()()}if(2&i){const t=x.$implicit;A.xp6(6),A.Q6J("ngIf",t.active),A.xp6(1),A.Q6J("ngIf",t.active)}}function Of(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No offer available."),A.qZA())}function kf(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting offers..."),A.qZA())}function jf(i,x){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 Kf(i,x){if(1&i&&(A.TgZ(0,"td",52),A.YNc(1,Of,2,0,"p",53)(2,kf,2,0,"p",53)(3,jf,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 Wf=i=>({"display-none":i});function Vf(i,x){if(1&i&&A._UZ(0,"tr",54),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,Wf,(null==t.offers?null:t.offers.data)&&(null==t.offers||null==t.offers.data?null:t.offers.data.length)>0))}}function Zf(i,x){1&i&&A._UZ(0,"tr",55)}function Xf(i,x){1&i&&A._UZ(0,"tr",56)}const qf=()=>["all"],_f=i=>({"error-border":i}),$f=()=>["no_offer"];let Ah=(()=>{class i{constructor(t,l,B,Z,LA,yt,ln){this.logger=t,this.store=l,this.commonService=B,this.rtlEffects=Z,this.dataService=LA,this.decimalPipe=yt,this.camelCaseWithReplace=ln,this.faHistory=E.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 s.x,new s.x,new s.x,new s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.lw).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(c.ey).pipe((0,g.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(c.AS).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||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,mA.qR)({payload:{data:{pageSize:this.pageSize,component:If}}}))}onOfferClick(t){this.store.dispatch((0,mA.qR)({payload:{data:{offer:{used:t.used,single_use:t.single_use,active:t.active,offer_id:t.offer_id,bolt12:t.bolt12,created:t.created,label:t.label},newlyAdded:!1,component:Zl.k}}}))}onDisableOffer(t){this.store.dispatch((0,mA.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(l=>{l&&this.store.dispatch((0,z.i9)({payload:{offer_id:t.offer_id}}))})}onPrintOffer(t){this.dataService.decodePayment(t.bolt12,!1).pipe((0,oe.q)(1)).subscribe(l=>{l.offer_id&&!l.offer_amount_msat&&(l.offer_amount_msat=0);const B={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:l.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:l.offer_description?l.offer_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:l?.offer_amount_msat&&0!==l?.offer_amount_msat?this.decimalPipe.transform((l.offer_amount_msat||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"}};df.createPdf(B,null,null,pf.I.vfs).download("Offer-"+(l&&l.offer_description?l.offer_description:t.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offers.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.active?" active":" inactive")+(t.used?" yes":" no")+(t.single_use?" single":" multiple")+JSON.stringify(t).toLowerCase(),("active"===l||"inactive"===l||"single"===l||"multiple"===l)&&(l=" "+l);break;case"active":B=t?.active?"active":"inactive";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}loadOffersTable(t){this.offers=new d.by(t?[...t]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(l,B)=>l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null,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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(w.v),A.Y36(GA.V),A.Y36(De.D),A.Y36(ot.JJ),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-offers-table"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("Offers")}])],decls:49,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(l,B){1&l&&(A.TgZ(0,"div",0)(1,"div",1)(2,"button",2),A.NdJ("click",function(){return B.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-label"),A._uU(13,"Filter By"),A.qZA(),A.TgZ(14,"mat-select",10),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(15,"perfect-scrollbar"),A.YNc(16,Df,2,2,"mat-option",11),A.qZA()()(),A.TgZ(17,"mat-form-field",9)(18,"mat-label"),A._uU(19,"Filter"),A.qZA(),A.TgZ(20,"input",12),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.TgZ(21,"div",13),A.YNc(22,vf,1,0,"mat-progress-bar",14),A.TgZ(23,"table",15,16),A.ynx(25,17),A.YNc(26,yf,1,0,"th",18)(27,Yf,3,2,"td",19),A.BQk(),A.ynx(28,20),A.YNc(29,Tf,2,0,"th",21)(30,Nf,4,4,"td",19),A.BQk(),A.ynx(31,22),A.YNc(32,Sf,2,0,"th",21)(33,Uf,2,1,"td",19),A.BQk(),A.ynx(34,23),A.YNc(35,bf,2,0,"th",21)(36,Lf,2,1,"td",19),A.BQk(),A.ynx(37,24),A.YNc(38,Pf,2,0,"th",21)(39,Rf,4,4,"td",19),A.BQk(),A.ynx(40,25),A.YNc(41,zf,6,0,"th",26)(42,Jf,8,2,"td",27),A.BQk(),A.ynx(43,28),A.YNc(44,Kf,4,3,"td",29),A.BQk(),A.YNc(45,Vf,1,3,"tr",30)(46,Zf,1,0,"tr",31)(47,Xf,1,0,"tr",32),A.qZA()(),A._UZ(48,"mat-paginator",33),A.qZA()()),2&l&&(A.xp6(7),A.Q6J("icon",B.faHistory),A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(15,qf).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(2),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.offers)("ngClass",A.VKq(16,_f,""!==B.errorMessage)),A.xp6(22),A.Q6J("matFooterRowDef",A.DdM(18,$f)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();function th(i,x){if(1&i&&(A.TgZ(0,"mat-option",34),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function eh(i,x){1&i&&A._UZ(0,"mat-progress-bar",35)}function nh(i,x){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Updated At"),A.qZA())}function ih(i,x){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,t.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function rh(i,x){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Title"),A.qZA())}const Rl=i=>({width:i});function ah(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",38)(2,"span",39),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Rl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.title)}}function oh(i,x){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Description"),A.qZA())}function sh(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",38)(2,"span",39),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Rl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.description)}}function lh(i,x){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Issuer"),A.qZA())}function ch(i,x){if(1&i&&(A.TgZ(0,"td",37),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(t.issuer)}}function gh(i,x){1&i&&(A.TgZ(0,"th",36),A._uU(1,"Invoice"),A.qZA())}function Bh(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"div",38)(2,"span",39),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,Rl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(t.bolt12)}}function uh(i,x){1&i&&(A.TgZ(0,"th",40),A._uU(1,"Amount (Sats)"),A.qZA())}function fh(i,x){if(1&i&&(A.TgZ(0,"td",37)(1,"span",41),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.Oqu(0===t.amountMSat?"Open":A.lcZ(3,1,t.amountMSat/1e3))}}function hh(i,x){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(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function Eh(i,x){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 Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onOfferBookmarkClick(Z))}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",45),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onRePayOffer(Z))}),A._uU(7,"Pay Again"),A.qZA(),A.TgZ(8,"mat-option",45),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onDeleteBookmark(Z))}),A._uU(9,"Delete Bookmark"),A.qZA()()()()}}function Ch(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No offer bookmarked."),A.qZA())}function wh(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting offer bookmarks..."),A.qZA())}function Qh(i,x){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 dh(i,x){if(1&i&&(A.TgZ(0,"td",48),A.YNc(1,Ch,2,0,"p",49)(2,wh,2,0,"p",49)(3,Qh,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 ph=i=>({"display-none":i});function Mh(i,x){if(1&i&&A._UZ(0,"tr",50),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,ph,(null==t.offersBookmarks?null:t.offersBookmarks.data)&&(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)>0))}}function mh(i,x){1&i&&A._UZ(0,"tr",51)}function Ih(i,x){1&i&&A._UZ(0,"tr",52)}const Dh=()=>["all"],vh=i=>({"error-border":i}),yh=()=>["no_offer"];let xh=(()=>{class i{constructor(t,l,B,Z,LA,yt){this.logger=t,this.store=l,this.commonService=B,this.rtlEffects=Z,this.datePipe=LA,this.camelCaseWithReplace=yt,this.faHistory=E.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 d.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 s.x,new s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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,mA.qR)({payload:{data:{offer:{bolt12:t.bolt12},newlyAdded:!1,component:Zl.k}}}))}onDeleteBookmark(t){this.store.dispatch((0,mA.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(l=>{l&&this.store.dispatch((0,z._9)({payload:{bolt12:t.bolt12}}))})}onRePayOffer(t){this.store.dispatch((0,mA.qR)({payload:{data:{paymentType:r.IX.OFFER,bolt12:t.bolt12,offerTitle:t.title,component:At}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=JSON.stringify(t).toLowerCase();break;case"lastUpdatedAt":B=this.datePipe.transform(new Date(t.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":B=(t.amountMSat&&0!==t.amountMSat?(t.amountMSat/1e3).toString():"Open")||"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return B.includes(l)}}loadOffersTable(t){this.offersBookmarks=new d.by(t?[...t]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(l,B)=>l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null,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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(w.v),A.Y36(GA.V),A.Y36(ot.uU),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("Offer Bookmarks")}])],decls:50,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","dataSource","ngClass"],["table",""],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","issuer"],["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(l,B){1&l&&(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-label"),A._uU(11,"Filter By"),A.qZA(),A.TgZ(12,"mat-select",9),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(13,"perfect-scrollbar"),A.YNc(14,th,2,2,"mat-option",10),A.qZA()()(),A.TgZ(15,"mat-form-field",8)(16,"mat-label"),A._uU(17,"Filter"),A.qZA(),A.TgZ(18,"input",11),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.TgZ(19,"div",12),A.YNc(20,eh,1,0,"mat-progress-bar",13),A.TgZ(21,"table",14,15),A.ynx(23,16),A.YNc(24,nh,2,0,"th",17)(25,ih,3,4,"td",18),A.BQk(),A.ynx(26,19),A.YNc(27,rh,2,0,"th",17)(28,ah,4,4,"td",18),A.BQk(),A.ynx(29,20),A.YNc(30,oh,2,0,"th",17)(31,sh,4,4,"td",18),A.BQk(),A.ynx(32,21),A.YNc(33,lh,2,0,"th",17)(34,ch,2,1,"td",18),A.BQk(),A.ynx(35,22),A.YNc(36,gh,2,0,"th",17)(37,Bh,4,4,"td",18),A.BQk(),A.ynx(38,23),A.YNc(39,uh,2,0,"th",24)(40,fh,4,3,"td",18),A.BQk(),A.ynx(41,25),A.YNc(42,hh,6,0,"th",26)(43,Eh,10,0,"td",27),A.BQk(),A.ynx(44,28),A.YNc(45,dh,4,3,"td",29),A.BQk(),A.YNc(46,Mh,1,3,"tr",30)(47,mh,1,0,"tr",31)(48,Ih,1,0,"tr",32),A.qZA()(),A._UZ(49,"mat-paginator",33),A.qZA()()),2&l&&(A.xp6(5),A.Q6J("icon",B.faHistory),A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(15,Dh).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(2),A.Q6J("ngIf",(null==B.apiCallStatus?null:B.apiCallStatus.status)===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.offersBookmarks)("ngClass",A.VKq(16,vh,""!==B.errorMessage)),A.xp6(25),A.Q6J("matFooterRowDef",A.DdM(18,yh)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,Y.NW,b.Vv,b.$V,ot.JJ,ot.uU]})}return i})();function Fh(i,x){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 Yh(i,x){if(1&i&&(A.TgZ(0,"mat-option",16),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}const Th=()=>["all"];function Nh(i,x){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-label"),A._uU(10,"Filter By"),A.qZA(),A.TgZ(11,"mat-select",13),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilterBy=B)})("selectionChange",function(){A.CHM(t);const B=A.oxw();return B.selFilter="",A.KtG(B.applyFilter())}),A.TgZ(12,"perfect-scrollbar"),A.YNc(13,Yh,2,2,"mat-option",14),A.qZA()()(),A.TgZ(14,"mat-form-field",12)(15,"mat-label"),A._uU(16,"Filter"),A.qZA(),A.TgZ(17,"input",15),A.NdJ("ngModelChange",function(B){A.CHM(t);const Z=A.oxw();return A.KtG(Z.selFilter=B)})("input",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())})("keyup",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.applyFilter())}),A.qZA()()()()()}if(2&i){const t=A.oxw();A.xp6(2),A.Q6J("icon",t.faExclamationTriangle),A.xp6(9),A.Q6J("ngModel",t.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(4,Th).concat(t.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",t.selFilter)}}function Sh(i,x){1&i&&A._UZ(0,"mat-progress-bar",40)}function Uh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Received Time"),A.qZA())}function bh(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Lh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"In Channel ID"),A.qZA())}function Ph(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.in_channel)}}function Rh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"In Channel"),A.qZA())}const _l=i=>({width:i});function zh(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.in_channel_alias)}}function Gh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Out Channel ID"),A.qZA())}function Hh(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.out_channel)}}function Jh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Out Channel"),A.qZA())}function Oh(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",43)(2,"span",44),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Q6J("ngStyle",A.VKq(2,_l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.out_channel_alias)}}function kh(i,x){1&i&&(A.TgZ(0,"th",45),A._uU(1,"Amount In (Sats)"),A.qZA())}function jh(i,x){if(1&i&&(A.TgZ(0,"td",42)(1,"span",46),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Kh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Style"),A.qZA())}function Wh(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.style)}}function Vh(i,x){1&i&&(A.TgZ(0,"th",41),A._uU(1,"Fail Reason"),A.qZA())}function Zh(i,x){if(1&i&&(A.TgZ(0,"td",42),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw(2);A.xp6(1),A.Oqu(l.CLNFailReason[null==t?null:t.failreason])}}function Xh(i,x){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(){A.CHM(t);const B=A.oxw(2);return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function qh(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",51)(1,"button",52),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw(2);return A.KtG(LA.onFailedLocalEventClick(Z))}),A._uU(2,"View Info"),A.qZA()()}}function _h(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No failed transaction available."),A.qZA())}function $h(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting failed transactions..."),A.qZA())}function AE(i,x){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 tE(i,x){if(1&i&&(A.TgZ(0,"td",53),A.YNc(1,_h,2,0,"p",54)(2,$h,2,0,"p",54)(3,AE,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 eE=i=>({"display-none":i});function nE(i,x){if(1&i&&A._UZ(0,"tr",55),2&i){const t=A.oxw(2);A.Q6J("ngClass",A.VKq(1,eE,(null==t.failedLocalForwardingEvents?null:t.failedLocalForwardingEvents.data)&&(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)>0))}}function iE(i,x){1&i&&A._UZ(0,"tr",56)}function rE(i,x){1&i&&A._UZ(0,"tr",57)}const aE=()=>["no_event"];function oE(i,x){if(1&i&&(A.TgZ(0,"div",17),A.YNc(1,Sh,1,0,"mat-progress-bar",18),A.TgZ(2,"table",19,20),A.ynx(4,21),A.YNc(5,Uh,2,0,"th",22)(6,bh,3,4,"td",23),A.BQk(),A.ynx(7,24),A.YNc(8,Lh,2,0,"th",22)(9,Ph,2,1,"td",23),A.BQk(),A.ynx(10,25),A.YNc(11,Rh,2,0,"th",22)(12,zh,4,4,"td",23),A.BQk(),A.ynx(13,26),A.YNc(14,Gh,2,0,"th",22)(15,Hh,2,1,"td",23),A.BQk(),A.ynx(16,27),A.YNc(17,Jh,2,0,"th",22)(18,Oh,4,4,"td",23),A.BQk(),A.ynx(19,28),A.YNc(20,kh,2,0,"th",29)(21,jh,4,4,"td",23),A.BQk(),A.ynx(22,30),A.YNc(23,Kh,2,0,"th",22)(24,Wh,2,1,"td",23),A.BQk(),A.ynx(25,31),A.YNc(26,Vh,2,0,"th",22)(27,Zh,2,1,"td",23),A.BQk(),A.ynx(28,32),A.YNc(29,Xh,6,0,"th",33)(30,qh,3,0,"td",34),A.BQk(),A.ynx(31,35),A.YNc(32,tE,4,3,"td",36),A.BQk(),A.YNc(33,nE,1,3,"tr",37)(34,iE,1,0,"tr",38)(35,rE,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedLocalForwardingEvents),A.xp6(31),A.Q6J("matFooterRowDef",A.DdM(7,aE)),A.xp6(1),A.Q6J("matHeaderRowDef",t.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",t.displayedColumns)}}function sE(i,x){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 lE=(()=>{class i{constructor(t,l,B,Z,LA){this.logger=t,this.commonService=l,this.store=B,this.datePipe=Z,this.camelCaseWithReplace=LA,this.faExclamationTriangle=E.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 d.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 s.x,new s.x,new s.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,z.u0)({payload:{status:r.OO.LOCAL_FAILED}})),this.store.select(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(c.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&&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,mA.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_msat,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 l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase():"")+(t.failreason&&this.CLNFailReason[t.failreason]?this.CLNFailReason[t.failreason].toLowerCase():"")+(t.in_msat?t.in_msat:"");break;case"received_time":B=this.datePipe.transform(new Date(1e3*(t.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":B=(+(t.in_msat||0)/1e3).toString()||"";break;case"failreason":B=t?.failreason?this.CLNFailReason[t?.failreason]:"";break;default:B=typeof t[this.selFilterBy]>"u"?"":"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===B.indexOf(l):B.includes(l)}}loadLocalfailedLocalEventsTable(t){this.failedLocalForwardingEvents=new d.by([...t]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(l,B)=>{switch(B){case"in_msatoshi":return l.in_msat;case"failreason":return l.failreason?this.CLNFailReason[l.failreason]:"";default:return l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(w.v),A.Y36(C.yh),A.Y36(ot.uU),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.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","column","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","fxLayoutAlign","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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(l,B){1&l&&(A.TgZ(0,"div",0),A.YNc(1,Fh,2,1,"div",1)(2,Nh,18,5,"div",2)(3,oE,36,8,"div",3)(4,sE,1,3,"mat-paginator",4),A.qZA()),2&l&&(A.xp6(1),A.Q6J("ngIf",""!==B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage),A.xp6(1),A.Q6J("ngIf",""===B.errorMessage))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K.Fj,K.JJ,K.On,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,p.lW,$.Nt,nA.KE,nA.hX,u.pW,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,Y.NW,b.Vv,b.$V,ot.JJ,ot.uU]})}return i})();const cE=["form"];function gE(i,x){1&i&&A.GkF(0)}function BE(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Requested amount is required."),A.qZA())}function uE(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Fee rate is required."),A.qZA())}function fE(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Local amount is required."),A.qZA())}function hE(i,x){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 EE(i,x){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 CE(i,x){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 wE(i,x){if(1&i&&(A.TgZ(0,"div",26),A._UZ(1,"fa-icon",27),A.YNc(2,CE,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 QE(i,x){1&i&&(A.TgZ(0,"th",47),A._uU(1,"Type"),A.qZA())}function dE(i,x){if(1&i&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.type)}}function pE(i,x){1&i&&(A.TgZ(0,"th",47),A._uU(1,"Address"),A.qZA())}function ME(i,x){if(1&i&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.address)}}function mE(i,x){1&i&&(A.TgZ(0,"th",47),A._uU(1,"Port"),A.qZA())}function IE(i,x){if(1&i&&(A.TgZ(0,"td",48),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t?null:t.port)}}function DE(i,x){1&i&&A._UZ(0,"tr",49)}function vE(i,x){1&i&&A._UZ(0,"tr",50)}function yE(i,x){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,QE,2,0,"th",41)(31,dE,2,1,"td",42),A.BQk(),A.ynx(32,43),A.YNc(33,pE,2,0,"th",41)(34,ME,2,1,"td",42),A.BQk(),A.ynx(35,44),A.YNc(36,mE,2,0,"th",41)(37,IE,2,1,"td",42),A.BQk(),A.YNc(38,DE,1,0,"tr",45)(39,vE,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 xE(i,x){if(1&i&&A.YNc(0,yE,40,9,"mat-expansion-panel",28),2&i){const t=A.oxw();A.Q6J("ngIf",t.node)}}let FE=(()=>{class i{constructor(t,l,B,Z){this.dialogRef=t,this.data=l,this.actions=B,this.store=Z,this.faExclamationTriangle=E.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 s.x,new s.x]}ngOnInit(){this.alertTitle=this.data.alertTitle||"",this.totalBalance=this.data.message?.balance||0,this.node=this.data.message?.node||{},this.requestedAmount=this.data.message?.requestedAmount||0,this.feeRate=this.data.message?.feeRate||0,this.localAmount=this.data.message?.localAmount||0,this.actions.pipe((0,g.R)(this.unSubs[0]),(0,F.h)(t=>t.type===r.AB.UPDATE_API_CALL_STATUS_CLN||t.type===r.AB.FETCH_CHANNELS_CLN)).subscribe(t=>{t.type===r.AB.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.Bn.ERROR&&"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message),t.type===r.AB.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){this.form.resetForm(),this.form.controls.ramount.setValue(this.data.message?.requestedAmount),this.form.controls.feerate.setValue(this.data.message?.feeRate),this.form.controls.lamount.setValue(this.data.message?.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){this.node.channel_opening_fee=+(this.node.option_will_fund?.lease_fee_base_msat||0)/1e3+this.requestedAmount*+(this.node.option_will_fund?.lease_fee_basis||0)/1e4+ +(this.node.option_will_fund?.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||"",amount: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,z.YX)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(H.so),A.Y36(H.WI),A.Y36(aA.eX),A.Y36(C.yh))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(l,B){if(1&l&&A.Gf(cE,7),2&l){let Z;A.iGM(Z=A.CRH())&&(B.form=Z.first)}},decls:54,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 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"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","ramount",3,"step","min","ngModel","ngModelChange","keyup"],["ramount","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","required","","name","feerate",3,"step","min","ngModel","ngModelChange","keyup"],["feeRt","ngModel"],["matInput","","type","number","tabindex","3","required","","name","lamount",3,"step","min","max","ngModel","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(l,B){if(1&l&&(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 B.onClose()}),A._uU(7,"X"),A.qZA()(),A.TgZ(8,"mat-card-content",6)(9,"form",7,8),A.YNc(11,gE,1,0,"ng-container",9),A.TgZ(12,"div",10)(13,"mat-form-field",11)(14,"mat-label"),A._uU(15,"Requested Amount"),A.qZA(),A.TgZ(16,"input",12,13),A.NdJ("ngModelChange",function(LA){return B.requestedAmount=LA})("keyup",function(){return B.calculateFee()}),A.qZA(),A.TgZ(18,"span",14),A._uU(19," Sats "),A.qZA(),A.YNc(20,BE,2,0,"mat-error",15),A.qZA(),A.TgZ(21,"mat-form-field",11)(22,"mat-label"),A._uU(23,"Fee Rate"),A.qZA(),A.TgZ(24,"input",16,17),A.NdJ("ngModelChange",function(LA){return B.feeRate=LA})("keyup",function(){return B.calculateFee()}),A.qZA(),A.TgZ(26,"span",14),A._uU(27," Sats/vByte "),A.qZA(),A.YNc(28,uE,2,0,"mat-error",15),A.qZA(),A.TgZ(29,"mat-form-field",11)(30,"mat-label"),A._uU(31,"Local Amount"),A.qZA(),A.TgZ(32,"input",18,19),A.NdJ("ngModelChange",function(LA){return B.localAmount=LA}),A.qZA(),A.TgZ(34,"mat-hint"),A._uU(35),A.ALo(36,"number"),A.qZA(),A.TgZ(37,"span",14),A._uU(38," Sats "),A.qZA(),A.YNc(39,fE,2,0,"mat-error",15)(40,hE,2,0,"mat-error",15)(41,EE,2,1,"mat-error",15),A.qZA()(),A.TgZ(42,"div",20)(43,"span"),A._uU(44),A.ALo(45,"number"),A.qZA()(),A.YNc(46,wE,3,2,"div",21),A.TgZ(47,"div",22)(48,"button",23),A.NdJ("click",function(){return B.resetData()}),A._uU(49,"Clear"),A.qZA(),A.TgZ(50,"button",24),A.NdJ("click",function(){return B.onOpenChannel()}),A._uU(51,"Execute"),A.qZA()()()()()(),A.YNc(52,xE,1,1,"ng-template",null,25,A.W1O)),2&l){const Z=A.MAs(17),LA=A.MAs(25),yt=A.MAs(33),ln=A.MAs(53);A.xp6(5),A.Oqu(B.alertTitle),A.xp6(6),A.Q6J("ngTemplateOutlet",ln),A.xp6(5),A.Q6J("step",1e4)("min",0)("ngModel",B.requestedAmount),A.xp6(4),A.Q6J("ngIf",null==Z.errors?null:Z.errors.required),A.xp6(4),A.Q6J("step",10)("min",0)("ngModel",B.feeRate),A.xp6(4),A.Q6J("ngIf",null==LA.errors?null:LA.errors.required),A.xp6(4),A.Q6J("step",1e4)("min",2e4)("max",B.totalBalance)("ngModel",B.localAmount),A.xp6(3),A.hij("Remaining: ",A.lcZ(36,20,B.totalBalance-(B.localAmount?B.localAmount:0)),""),A.xp6(4),A.Q6J("ngIf",null==yt.errors?null:yt.errors.required),A.xp6(1),A.Q6J("ngIf",null==yt.errors?null:yt.errors.min),A.xp6(1),A.Q6J("ngIf",null==yt.errors?null:yt.errors.max),A.xp6(3),A.hij("Total cost to lease ",A.lcZ(45,22,B.node.channel_opening_fee)," (Sats)"),A.xp6(2),A.Q6J("ngIf",""!==B.channelConnectionError)}},dependencies:[ot.O5,ot.tP,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.qQ,K.Fd,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,p.lW,v.dn,v.dk,si.ib,si.yz,si.yK,$.Nt,nA.KE,nA.hX,nA.bx,nA.TO,nA.R9,ai.d,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.ge,d.ev,d.XQ,d.Gk,TA.h,Aa.F,kA.q,ot.JJ,ot.uU],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();var YE=Rt(2557);function TE(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Channel amount is required."),A.qZA())}function NE(i,x){1&i&&(A.TgZ(0,"mat-error"),A._uU(1,"Channel opening fee rate is required."),A.qZA())}function SE(i,x){if(1&i&&(A.TgZ(0,"mat-option",49),A._uU(1),A.qZA()),2&i){const t=x.$implicit,l=A.oxw();A.Q6J("value",t),A.xp6(1),A.Oqu(l.getLabel(t))}}function UE(i,x){1&i&&A._UZ(0,"mat-progress-bar",50)}function bE(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Alias"),A.qZA())}function LE(i,x){if(1&i&&(A.TgZ(0,"mat-chip",57),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.hij(" ","tor"===t?"Tor":"ipv"===t?"Clearnet":t," ")}}const $l=i=>({width:i});function PE(i,x){if(1&i&&(A.TgZ(0,"td",52)(1,"div",53)(2,"span",54),A._uU(3),A.TgZ(4,"mat-chip-list",55),A.YNc(5,LE,2,1,"mat-chip",56),A.qZA()()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(3,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.hij(" ",null==t?null:t.alias," "),A.xp6(2),A.Q6J("ngForOf",t.address_types)}}function RE(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Node ID"),A.qZA())}function zE(i,x){if(1&i&&(A.TgZ(0,"td",52)(1,"div",53)(2,"span",58),A._uU(3),A.qZA()()()),2&i){const t=x.$implicit,l=A.oxw();A.xp6(1),A.Q6J("ngStyle",A.VKq(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.xp6(2),A.Oqu(null==t?null:t.nodeid)}}function GE(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Last Announcement At"),A.qZA())}function HE(i,x){if(1&i&&(A.TgZ(0,"td",52),A._uU(1),A.ALo(2,"date"),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(A.xi3(2,1,1e3*(null==t?null:t.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function JE(i,x){1&i&&(A.TgZ(0,"th",51),A._uU(1,"Compact Lease"),A.qZA())}function OE(i,x){if(1&i&&(A.TgZ(0,"td",52),A._uU(1),A.qZA()),2&i){const t=x.$implicit;A.xp6(1),A.Oqu(null==t||null==t.option_will_fund?null:t.option_will_fund.compact_lease)}}function kE(i,x){1&i&&(A.TgZ(0,"th",59),A._uU(1," Lease Fee"),A.qZA())}function jE(i,x){if(1&i&&(A.TgZ(0,"td",52),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=x.$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 KE(i,x){1&i&&(A.TgZ(0,"th",59),A._uU(1," Routing Fee"),A.qZA())}function WE(i,x){if(1&i&&(A.TgZ(0,"td",52),A._uU(1),A.ALo(2,"number"),A.ALo(3,"number"),A.qZA()),2&i){const t=x.$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 VE(i,x){1&i&&(A.TgZ(0,"th",60),A._uU(1,"Channel Opening Fee (Sats)"),A.qZA())}function ZE(i,x){if(1&i&&(A.TgZ(0,"td",52)(1,"span",61),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$implicit;A.xp6(2),A.hij(" ",A.xi3(3,1,t.channel_opening_fee,"1.0-0")," ")}}function XE(i,x){1&i&&(A.TgZ(0,"th",60),A._uU(1,"Funding Weight"),A.qZA())}function qE(i,x){if(1&i&&(A.TgZ(0,"td",52)(1,"span",61),A._uU(2),A.ALo(3,"number"),A.qZA()()),2&i){const t=x.$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 _E(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"th",59)(1,"div",62)(2,"mat-select",63),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",64),A.NdJ("click",function(){A.CHM(t);const B=A.oxw();return A.KtG(B.onDownloadCSV())}),A._uU(5,"Download CSV"),A.qZA()()()()}}function $E(i,x){if(1&i){const t=A.EpF();A.TgZ(0,"td",65)(1,"div",62)(2,"mat-select",63),A._UZ(3,"mat-select-trigger"),A.TgZ(4,"mat-option",64),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onViewLeaseInfo(Z))}),A._uU(5,"View Info"),A.qZA(),A.TgZ(6,"mat-option",64),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.onOpenChannel(Z))}),A._uU(7,"Open Channel"),A.qZA(),A.TgZ(8,"mat-option",64),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.viewLeaseOn(Z,"LN"))}),A._uU(9,"View on Lnrouter"),A.qZA(),A.TgZ(10,"mat-option",64),A.NdJ("click",function(){const Z=A.CHM(t).$implicit,LA=A.oxw();return A.KtG(LA.viewLeaseOn(Z,"AM"))}),A._uU(11,"View on Amboss"),A.qZA()()()()}}function AC(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"No node with liquidity."),A.qZA())}function tC(i,x){1&i&&(A.TgZ(0,"p"),A._uU(1,"Getting nodes with liquidity..."),A.qZA())}function eC(i,x){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 nC(i,x){if(1&i&&(A.TgZ(0,"td",66),A.YNc(1,AC,2,0,"p",16)(2,tC,2,0,"p",16)(3,eC,2,1,"p",16),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.listNodesCallStatus===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.listNodesCallStatus===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.listNodesCallStatus===t.apiCallStatusEnum.ERROR)}}const iC=i=>({"display-none":i});function rC(i,x){if(1&i&&A._UZ(0,"tr",67),2&i){const t=A.oxw();A.Q6J("ngClass",A.VKq(1,iC,(null==t.liquidityNodes?null:t.liquidityNodes.data)&&(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)>0))}}function aC(i,x){1&i&&A._UZ(0,"tr",68)}function oC(i,x){1&i&&A._UZ(0,"tr",69)}const sC=()=>["all"],lC=i=>({"error-border":i}),cC=()=>["no_lqNode"];let gC=(()=>{class i{constructor(t,l,B,Z,LA,yt,ln){this.logger=t,this.store=l,this.dataService=B,this.commonService=Z,this.rtlEffects=LA,this.datePipe=yt,this.camelCaseWithReplace=ln,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=E.Acd,this.faExclamationTriangle=E.eHv,this.faUsers=E.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 d.by([]),this.pageSize=r.IV,this.pageSizeOptions=r.TJ,this.screenSize="",this.screenSizeEnum=r.cu,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=r.Bn.INITIATED,this.apiCallStatusEnum=r.Bn,this.unSubs=[new s.x,new s.x,new s.x,new s.x,new s.x,new s.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(c.AS).pipe((0,g.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",t.apiCallStatus.status===r.Bn.ERROR&&(this.errorMessage=t.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.gG.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,oi.a)([this.store.select(c.OL),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,g.R)(this.unSubs[1])).subscribe({next:([t,l])=>{this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t),l&&!l.length&&(l=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(l)),this.listNodesCallStatus=r.Bn.COMPLETED,l.forEach(B=>{B.address_types=Array.from(new Set(B.addresses?.reduce((LA,yt)=>((yt.type?.includes("ipv")||yt.type?.includes("tor"))&&LA.push(yt.type?.substring(0,3)),LA),[])))}),this.liquidityNodesData=l.filter(B=>B.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:t=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(t)),this.listNodesCallStatus=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 l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(B=>B.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(t,l)=>{let B="";switch(this.selFilterBy){case"all":B=(t.alias?t.alias.toLocaleLowerCase():"")+(t.channel_opening_fee?t.channel_opening_fee+" Sats":"")+(t.option_will_fund?.lease_fee_base_msat?t.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(t.option_will_fund?.lease_fee_basis?t.option_will_fund?.lease_fee_basis/100+"%":"")+(t.option_will_fund?.channel_fee_max_base_msat?t.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(t.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*t.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(t.address_types?t.address_types.reduce((Z,LA)=>Z+("tor"===LA?" tor":"ipv"===LA?" clearnet":" "+LA.toLowerCase()),""):"");break;case"alias":B=(t?.alias?.toLowerCase()||" ")+t?.address_types?.reduce((Z,LA)=>Z+(LA?"ipv"===LA?"clearnet":LA:"")," ")||"";break;case"last_timestamp":B=this.datePipe.transform(new Date(1e3*(t.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":B=t?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":B=((t.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((t.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":B=((t.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(t.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:B=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return B.includes(l)}}loadLiqNodesTable(t){this.liquidityNodes=new d.by([...t]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(l,B)=>l[B]&&isNaN(l[B])?l[B].toLocaleLowerCase():l[B]?+l[B]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(t,l){"LN"===l?window.open("https://lnrouter.app/node/"+t.nodeid,"_blank"):"AM"===l&&window.open("https://amboss.space/node/"+t.nodeid,"_blank")}onOpenChannel(t){this.store.dispatch((0,mA.qR)({payload:{data:{alertTitle:"Open Channel",message:{node:t,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:FE}}}))}onViewLeaseInfo(t){const l=t.addresses?.reduce((LA,yt)=>(yt.address&&yt.address.length>40&&(yt.address=yt.address.substring(0,39)+"..."),LA.concat(JSON.stringify(yt).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),B=[];if(t.features&&""!==t.features.trim()){const LA=parseInt(t.features,16);r.Df.forEach(yt=>{LA&1<{LA&&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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.Y36(Q.mQ),A.Y36(C.yh),A.Y36(De.D),A.Y36(w.v),A.Y36(GA.V),A.Y36(ot.uU),A.Y36(j.D3))};static#t=this.\u0275cmp=A.Xpm({type:i,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(l,B){if(1&l&&(A.Gf(D.YE,5),A.Gf(Y.NW,5)),2&l){let Z;A.iGM(Z=A.CRH())&&(B.sort=Z.first),A.iGM(Z=A.CRH())&&(B.paginator=Z.first)}},features:[A._Bn([{provide:uA.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Y.ye,useValue:(0,r.pt)("Liquidity Ads")}])],decls:83,vars:26,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","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between stretch","fxLayout.gt-sm","row wrap"],["formAsk","ngForm"],["fxFlex.gt-xs","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"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","30"],[1,"page-text"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxLayout","column","fxFlex","34"],["autoFocus","","matInput","","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","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.gt-xs","row","fxLayoutAlign.gt-xs","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(l,B){1&l&&(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",12),A._uU(17,"Liquidity Ask"),A.qZA(),A.TgZ(18,"mat-icon",13),A._uU(19,"info_outline"),A.qZA()(),A.TgZ(20,"mat-form-field",14)(21,"mat-label"),A._uU(22,"Channel Amount (Sats)"),A.qZA(),A.TgZ(23,"input",15),A.NdJ("ngModelChange",function(LA){return B.channelAmount=LA})("keyup",function(){return B.onCalculateOpeningFee()}),A.qZA(),A.YNc(24,TE,2,0,"mat-error",16),A.qZA(),A.TgZ(25,"mat-form-field",14)(26,"mat-label"),A._uU(27,"Channel Opening Fee Rate (Sats/vByte)"),A.qZA(),A.TgZ(28,"input",17),A.NdJ("ngModelChange",function(LA){return B.channel_opening_feeRate=LA})("keyup",function(){return B.onCalculateOpeningFee()}),A.qZA(),A.YNc(29,NE,2,0,"mat-error",16),A.qZA()()(),A.TgZ(30,"div",18)(31,"div",19),A._UZ(32,"fa-icon",1),A.TgZ(33,"span",2),A._uU(34,"Liquidity Providing Peers"),A.qZA()(),A.TgZ(35,"div",20)(36,"mat-form-field",21)(37,"mat-label"),A._uU(38,"Filter By"),A.qZA(),A.TgZ(39,"mat-select",22),A.NdJ("ngModelChange",function(LA){return B.selFilterBy=LA})("selectionChange",function(){return B.selFilter="",B.applyFilter()}),A.TgZ(40,"perfect-scrollbar"),A.YNc(41,SE,2,2,"mat-option",23),A.qZA()()(),A.TgZ(42,"mat-form-field",21)(43,"mat-label"),A._uU(44,"Filter"),A.qZA(),A.TgZ(45,"input",24),A.NdJ("ngModelChange",function(LA){return B.selFilter=LA})("input",function(){return B.applyFilter()})("keyup",function(){return B.applyFilter()}),A.qZA()()()(),A.TgZ(46,"div",25),A.YNc(47,UE,1,0,"mat-progress-bar",26),A.TgZ(48,"table",27,28),A.ynx(50,29),A.YNc(51,bE,2,0,"th",30)(52,PE,6,5,"td",31),A.BQk(),A.ynx(53,32),A.YNc(54,RE,2,0,"th",30)(55,zE,4,4,"td",31),A.BQk(),A.ynx(56,33),A.YNc(57,GE,2,0,"th",30)(58,HE,3,4,"td",31),A.BQk(),A.ynx(59,34),A.YNc(60,JE,2,0,"th",30)(61,OE,2,1,"td",31),A.BQk(),A.ynx(62,35),A.YNc(63,kE,2,0,"th",36)(64,jE,4,8,"td",31),A.BQk(),A.ynx(65,37),A.YNc(66,KE,2,0,"th",36)(67,WE,4,8,"td",31),A.BQk(),A.ynx(68,38),A.YNc(69,VE,2,0,"th",39)(70,ZE,4,4,"td",31),A.BQk(),A.ynx(71,40),A.YNc(72,XE,2,0,"th",39)(73,qE,4,4,"td",31),A.BQk(),A.ynx(74,41),A.YNc(75,_E,6,0,"th",36)(76,$E,12,0,"td",42),A.BQk(),A.ynx(77,43),A.YNc(78,nC,4,3,"td",44),A.BQk(),A.YNc(79,rC,1,3,"tr",45)(80,aC,1,0,"tr",46)(81,oC,1,0,"tr",47),A.qZA()(),A._UZ(82,"mat-paginator",48),A.qZA()()()()),2&l&&(A.xp6(1),A.Q6J("icon",B.faBullhorn),A.xp6(10),A.Q6J("icon",B.faExclamationTriangle),A.xp6(7),A.Q6J("matTooltip",B.askTooltipMsg),A.xp6(5),A.Q6J("ngModel",B.channelAmount),A.xp6(1),A.Q6J("ngIf",!B.channelAmount),A.xp6(4),A.Q6J("ngModel",B.channel_opening_feeRate),A.xp6(1),A.Q6J("ngIf",!B.channel_opening_feeRate),A.xp6(3),A.Q6J("icon",B.faUsers),A.xp6(7),A.Q6J("ngModel",B.selFilterBy),A.xp6(2),A.Q6J("ngForOf",A.DdM(22,sC).concat(B.displayedColumns.slice(0,-1))),A.xp6(4),A.Q6J("ngModel",B.selFilter),A.xp6(2),A.Q6J("ngIf",B.listNodesCallStatus===B.apiCallStatusEnum.INITIATED),A.xp6(1),A.Q6J("matSortActive",B.tableSetting.sortBy)("matSortDirection",B.tableSetting.sortOrder)("dataSource",B.liquidityNodes)("ngClass",A.VKq(23,lC,""!==B.errorMessage)),A.xp6(31),A.Q6J("matFooterRowDef",A.DdM(25,cC)),A.xp6(1),A.Q6J("matHeaderRowDef",B.displayedColumns),A.xp6(1),A.Q6J("matRowDefColumns",B.displayedColumns),A.xp6(1),A.Q6J("pageSize",B.pageSize)("pageSizeOptions",B.pageSizeOptions)("showFirstLastButtons",B.screenSize!==B.screenSizeEnum.XS))},dependencies:[ot.mk,ot.sg,ot.O5,ot.PC,K._Y,K.Fj,K.wV,K.JJ,K.JL,K.Q7,K.On,K.F,e.BN,n.xw,n.Wh,n.yH,f.oO,f.Zl,v.a8,v.dn,I.Hw,$.Nt,nA.KE,nA.hX,nA.TO,u.pW,YE.HS,uA.gD,uA.$L,wA.ey,D.YE,D.nU,d.BZ,d.fO,d.as,d.w1,d.Dz,d.nj,d.mD,d.Ke,d.ge,d.ev,d.yh,d.XQ,d.Gk,d.Q2,yA.gM,Y.NW,b.Vv,b.$V,TA.h,ot.JJ,ot.uU]})}return i})();const BC=[{path:"",component:o,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Ni,canActivate:[(0,Pe.eQ)()]},{path:"onchain",component:va,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:L0,canActivate:[(0,Pe.eQ)()]},{path:"send/:selTab",component:Ga,data:{sweepAll:!1},canActivate:[(0,Pe.eQ)()]},{path:"sweep/:selTab",component:Ga,data:{sweepAll:!0},canActivate:[(0,Pe.eQ)()]}]},{path:"connections",component:dr,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:q0,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:to,canActivate:[(0,Pe.eQ)()]},{path:"pending",component:Pn,canActivate:[(0,Pe.eQ)()]},{path:"activehtlcs",component:Xu,canActivate:[(0,Pe.eQ)()]}]},{path:"peers",component:sc,data:{sweepAll:!1},canActivate:[(0,Pe.eQ)()]}]},{path:"liquidityads",component:gC,canActivate:[(0,Pe.eQ)()]},{path:"transactions",component:pr,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Hn,canActivate:[(0,Pe.eQ)()]},{path:"invoices",component:Wt,canActivate:[(0,Pe.eQ)()]},{path:"offers",component:Ah,canActivate:[(0,Pe.eQ)()]},{path:"offrBookmarks",component:xh,canActivate:[(0,Pe.eQ)()]}]},{path:"messages",component:S0,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Nc,canActivate:[(0,Pe.eQ)()]},{path:"verify",component:Gc,canActivate:[(0,Pe.eQ)()]}]},{path:"routing",component:Os,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Jl,canActivate:[(0,Pe.eQ)()]},{path:"failedtransactions",component:gB,canActivate:[(0,Pe.eQ)()]},{path:"localfail",component:lE,canActivate:[(0,Pe.eQ)()]},{path:"routingpeers",component:iu,canActivate:[(0,Pe.eQ)()]}]},{path:"reports",component:_u,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:of,canActivate:[(0,Pe.eQ)()]},{path:"transactions",component:Ef,canActivate:[(0,Pe.eQ)()]}]},{path:"graph",component:Qf,canActivate:[(0,Pe.eQ)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Q0,canActivate:[(0,Pe.eQ)()]},{path:"queryroutes",component:Yc,canActivate:[(0,Pe.eQ)()]}]},{path:"rates",component:za,canActivate:[(0,Pe.eQ)()]},{path:"**",component:Cf.w},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],uC=ce.Bz.forChild(BC);var fC=Rt(8339);let hC=(()=>{class i{static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275mod=A.oAB({type:i,bootstrap:[o]});static#e=this.\u0275inj=A.cJS({imports:[ot.ez,fC.m,uC]})}return i})()},7069:function(zl){typeof self<"u"&&self,zl.exports=function(){var br={69282:function(N,A,n){"use strict";var u=n(34155);function a(DA){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(YA){return typeof YA}:function(YA){return YA&&"function"==typeof Symbol&&YA.constructor===Symbol&&YA!==Symbol.prototype?"symbol":typeof YA})(DA)}function o(DA,YA){for(var zA=0;zA1?zA-1:0),jA=1;jA1?zA-1:0),jA=1;jA1?zA-1:0),jA=1;jA1?zA-1:0),jA=1;jA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function I(W,fA){return(I=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(eA,EA){return eA.__proto__=EA,eA})(W,fA)}function M(W){return(M=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(iA){return iA.__proto__||Object.getPrototypeOf(iA)})(W)}function y(W){return(y="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})(W)}var Y=n(89539).inspect,d=n(62136).codes.ERR_INVALID_ARG_TYPE;function H(W,fA,iA){return(void 0===iA||iA>W.length)&&(iA=W.length),W.substring(iA-fA.length,iA)===fA}var aA="",K="",$="",nA="",uA={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 NA(W){var fA=Object.keys(W),iA=Object.create(Object.getPrototypeOf(W));return fA.forEach(function(eA){iA[eA]=W[eA]}),Object.defineProperty(iA,"message",{value:W.message}),iA}function yA(W){return Y(W,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function TA(W,fA,iA){var eA="",EA="",mA=0,GA="",j=!1,b=yA(W),rA=b.split("\n"),oA=yA(fA).split("\n"),pA=0,xA="";if("strictEqual"===iA&&"object"===y(W)&&"object"===y(fA)&&null!==W&&null!==fA&&(iA="strictEqualObject"),1===rA.length&&1===oA.length&&rA[0]!==oA[0]){var gA=rA[0].length+oA[0].length;if(gA<=10){if(!("object"===y(W)&&null!==W||"object"===y(fA)&&null!==fA||0===W&&0===fA))return"".concat(uA[iA],"\n\n")+"".concat(rA[0]," !== ").concat(oA[0],"\n")}else if("strictEqualObject"!==iA&&gA<(u.stderr&&u.stderr.isTTY?u.stderr.columns:80)){for(;rA[0][pA]===oA[0][pA];)pA++;pA>2&&(xA="\n ".concat(function z(W,fA){if(fA=Math.floor(fA),0==W.length||0==fA)return"";var iA=W.length*fA;for(fA=Math.floor(Math.log(fA)/Math.log(2));fA;)W+=W,fA--;return W+W.substring(0,iA-W.length)}(" ",pA),"^"),pA=0)}}for(var DA=rA[rA.length-1],YA=oA[oA.length-1];DA===YA&&(pA++<2?GA="\n ".concat(DA).concat(GA):eA=DA,rA.pop(),oA.pop(),0!==rA.length&&0!==oA.length);)DA=rA[rA.length-1],YA=oA[oA.length-1];var zA=Math.max(rA.length,oA.length);if(0===zA){var IA=b.split("\n");if(IA.length>30)for(IA[26]="".concat(aA,"...").concat(nA);IA.length>27;)IA.pop();return"".concat(uA.notIdentical,"\n\n").concat(IA.join("\n"),"\n")}pA>3&&(GA="\n".concat(aA,"...").concat(nA).concat(GA),j=!0),""!==eA&&(GA="\n ".concat(eA).concat(GA),eA="");var jA=0,ut=uA[iA]+"\n".concat(K,"+ actual").concat(nA," ").concat($,"- expected").concat(nA),Ct=" ".concat(aA,"...").concat(nA," Lines skipped");for(pA=0;pA1&&pA>2&&(ct>4?(EA+="\n".concat(aA,"...").concat(nA),j=!0):ct>3&&(EA+="\n ".concat(oA[pA-2]),jA++),EA+="\n ".concat(oA[pA-1]),jA++),mA=pA,eA+="\n".concat($,"-").concat(nA," ").concat(oA[pA]),jA++;else if(oA.length1&&pA>2&&(ct>4?(EA+="\n".concat(aA,"...").concat(nA),j=!0):ct>3&&(EA+="\n ".concat(rA[pA-2]),jA++),EA+="\n ".concat(rA[pA-1]),jA++),mA=pA,EA+="\n".concat(K,"+").concat(nA," ").concat(rA[pA]),jA++;else{var pt=oA[pA],Yt=rA[pA],KA=Yt!==pt&&(!H(Yt,",")||Yt.slice(0,-1)!==pt);KA&&H(pt,",")&&pt.slice(0,-1)===Yt&&(KA=!1,Yt+=","),KA?(ct>1&&pA>2&&(ct>4?(EA+="\n".concat(aA,"...").concat(nA),j=!0):ct>3&&(EA+="\n ".concat(rA[pA-2]),jA++),EA+="\n ".concat(rA[pA-1]),jA++),mA=pA,EA+="\n".concat(K,"+").concat(nA," ").concat(Yt),eA+="\n".concat($,"-").concat(nA," ").concat(pt),jA+=2):(EA+=eA,eA="",(1===ct||0===pA)&&(EA+="\n ".concat(Yt),jA++))}if(jA>20&&pA30)for(gA[26]="".concat(aA,"...").concat(nA);gA.length>27;)gA.pop();mA=iA.call(this,1===gA.length?"".concat(xA," ").concat(gA[0]):"".concat(xA,"\n\n").concat(gA.join("\n"),"\n"))}else{var CA=yA(rA),DA="",YA=uA[j];"notDeepEqual"===j||"notEqual"===j?(CA="".concat(uA[j],"\n\n").concat(CA)).length>1024&&(CA="".concat(CA.slice(0,1021),"...")):(DA="".concat(yA(oA)),CA.length>512&&(CA="".concat(CA.slice(0,509),"...")),DA.length>512&&(DA="".concat(DA.slice(0,509),"...")),"deepEqual"===j||"equal"===j?CA="".concat(YA,"\n\n").concat(CA,"\n\nshould equal\n\n"):DA=" ".concat(j," ").concat(DA)),mA=iA.call(this,"".concat(CA).concat(DA))}return Error.stackTraceLimit=pA,mA.generatedMessage=!GA,Object.defineProperty(e(mA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),mA.code="ERR_ASSERTION",mA.actual=rA,mA.expected=oA,mA.operator=j,Error.captureStackTrace&&Error.captureStackTrace(e(mA),b),mA.name="AssertionError",w(mA)}return function E(W,fA,iA){return fA&&h(W.prototype,fA),iA&&h(W,iA),Object.defineProperty(W,"prototype",{writable:!1}),W}(eA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:fA,value:function(mA,GA){return Y(this,o(o({},GA),{},{customInspect:!1,depth:0}))}}]),eA}(f(Error),Y.custom);N.exports=kA},62136:function(N,A,n){"use strict";function u(Y){return(u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(D){return typeof D}:function(D){return D&&"function"==typeof Symbol&&D.constructor===Symbol&&D!==Symbol.prototype?"symbol":typeof D})(Y)}function a(Y,D){for(var d=0;d"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var z,H=e(Y);if(D){var aA=e(this).constructor;z=Reflect.construct(H,arguments,aA)}else z=H.apply(this,arguments);return function Q(Y,D){if(D&&("object"===u(D)||"function"==typeof D))return D;if(void 0!==D)throw new TypeError("Derived constructors may only return object or undefined");return function C(Y){if(void 0===Y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Y}(Y)}(this,z)}}function e(Y){return(e=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(d){return d.__proto__||Object.getPrototypeOf(d)})(Y)}var p,v,f={};function S(Y,D,d){d||(d=Error),f[Y]=function(aA){!function E(Y,D){if("function"!=typeof D&&null!==D)throw new TypeError("Super expression must either be null or a function");Y.prototype=Object.create(D&&D.prototype,{constructor:{value:Y,writable:!0,configurable:!0}}),Object.defineProperty(Y,"prototype",{writable:!1}),D&&r(Y,D)}($,aA);var K=c($);function $(nA,uA,wA){var NA;return function h(Y,D){if(!(Y instanceof D))throw new TypeError("Cannot call a class as a function")}(this,$),(NA=K.call(this,function H(aA,K,$){return"string"==typeof D?D:D(aA,K,$)}(nA,uA,wA))).code=Y,NA}return function o(Y,D,d){return D&&a(Y.prototype,D),d&&a(Y,d),Object.defineProperty(Y,"prototype",{writable:!1}),Y}($)}(d)}function I(Y,D){if(Array.isArray(Y)){var d=Y.length;return Y=Y.map(function(H){return String(H)}),d>2?"one of ".concat(D," ").concat(Y.slice(0,d-1).join(", "),", or ")+Y[d-1]:2===d?"one of ".concat(D," ").concat(Y[0]," or ").concat(Y[1]):"of ".concat(D," ").concat(Y[0])}return"of ".concat(D," ").concat(String(Y))}S("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),S("ERR_INVALID_ARG_TYPE",function(Y,D,d){var H,z;if(void 0===p&&(p=n(69282)),p("string"==typeof Y,"'name' must be a string"),"string"==typeof D&&function M(Y,D,d){return Y.substr(!d||d<0?0:+d,D.length)===D}(D,"not ")?(H="must not be",D=D.replace(/^not /,"")):H="must be",function y(Y,D,d){return(void 0===d||d>Y.length)&&(d=Y.length),Y.substring(d-D.length,d)===D}(Y," argument"))z="The ".concat(Y," ").concat(H," ").concat(I(D,"type"));else{var aA=function F(Y,D,d){return"number"!=typeof d&&(d=0),!(d+D.length>Y.length)&&-1!==Y.indexOf(D,d)}(Y,".")?"property":"argument";z='The "'.concat(Y,'" ').concat(aA," ").concat(H," ").concat(I(D,"type"))}return z+". Received type ".concat(u(d))},TypeError),S("ERR_INVALID_ARG_VALUE",function(Y,D){var d=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===v&&(v=n(89539));var H=v.inspect(D);return H.length>128&&(H="".concat(H.slice(0,128),"...")),"The argument '".concat(Y,"' ").concat(d,". Received ").concat(H)},TypeError,RangeError),S("ERR_INVALID_RETURN_VALUE",function(Y,D,d){var H;return H=d&&d.constructor&&d.constructor.name?"instance of ".concat(d.constructor.name):"type ".concat(u(d)),"Expected ".concat(Y,' to be returned from the "').concat(D,'"')+" function but got ".concat(H,".")},TypeError),S("ERR_MISSING_ARGS",function(){for(var Y=arguments.length,D=new Array(Y),d=0;d0,"At least one arg needs to be specified");var H="The ",z=D.length;switch(D=D.map(function(aA){return'"'.concat(aA,'"')}),z){case 1:H+="".concat(D[0]," argument");break;case 2:H+="".concat(D[0]," and ").concat(D[1]," arguments");break;default:H+=D.slice(0,z-1).join(", "),H+=", and ".concat(D[z-1]," arguments")}return"".concat(H," must be specified")},TypeError),N.exports.codes=f},19158:function(N,A,n){"use strict";function u(KA,ZA){return function h(KA){if(Array.isArray(KA))return KA}(KA)||function g(KA,ZA){var Qt=null==KA?null:typeof Symbol<"u"&&KA[Symbol.iterator]||KA["@@iterator"];if(null!=Qt){var ft,Dt,Nt,vA,gt=[],q=!0,J=!1;try{if(Nt=(Qt=Qt.call(KA)).next,0===ZA){if(Object(Qt)!==Qt)return;q=!1}else for(;!(q=(ft=Nt.call(Qt)).done)&&(gt.push(ft.value),gt.length!==ZA);q=!0);}catch(L){J=!0,Dt=L}finally{try{if(!q&&null!=Qt.return&&(vA=Qt.return(),Object(vA)!==vA))return}finally{if(J)throw Dt}}return gt}}(KA,ZA)||function o(KA,ZA){if(KA){if("string"==typeof KA)return s(KA,ZA);var Qt=Object.prototype.toString.call(KA).slice(8,-1);if("Object"===Qt&&KA.constructor&&(Qt=KA.constructor.name),"Map"===Qt||"Set"===Qt)return Array.from(KA);if("Arguments"===Qt||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(Qt))return s(KA,ZA)}}(KA,ZA)||function a(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(KA,ZA){(null==ZA||ZA>KA.length)&&(ZA=KA.length);for(var Qt=0,ft=new Array(ZA);Qt10)return!0;for(var ZA=0;ZA57)return!0}return 10===KA.length&&KA>=Math.pow(2,32)}function TA(KA){return Object.keys(KA).filter(yA).concat(w(KA).filter(Object.prototype.propertyIsEnumerable.bind(KA)))}function kA(KA,ZA){if(KA===ZA)return 0;for(var Qt=KA.length,ft=ZA.length,Dt=0,Nt=Math.min(Qt,ft);Dt=r.length?{done:!0}:{done:!1,value:r[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(r,c){(null==c||c>r.length)&&(c=r.length);for(var Q=0,C=new Array(c);Qthis.buffer.length)return this.flush()},w.flush=function(){if(this.bufferOffset>0)return this.push(u.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},w.writeBuffer=function(f){return this.flush(),this.push(f),this.pos+=f.length},w.writeString=function(f,p){switch(void 0===p&&(p="ascii"),p){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(u.from(f,p));case"utf16be":for(var v=u.from(f,"utf16le"),S=0,I=v.length-1;S>>16&255,this.buffer[this.bufferOffset++]=f>>>8&255,this.buffer[this.bufferOffset++]=255&f,this.pos+=3},w.writeUInt24LE=function(f){return this.ensure(3),this.buffer[this.bufferOffset++]=255&f,this.buffer[this.bufferOffset++]=f>>>8&255,this.buffer[this.bufferOffset++]=f>>>16&255,this.pos+=3},w.writeInt24BE=function(f){return this.writeUInt24BE(f>=0?f:f+16777215+1)},w.writeInt24LE=function(f){return this.writeUInt24LE(f>=0?f:f+16777215+1)},w.fill=function(f,p){if(p=this.length)){if(null==this.items[f]){var p=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*f,this.items[f]=this.type.decode(this.stream,this.ctx),this.stream.pos=p}return this.items[f]}},w.toArray=function(){for(var f=[],p=0,v=this.length;p>1),(w=h.call(this,"Int"+c,Q)||this)._point=1<C)throw new RangeError('The value "'+q+'" is invalid for option "size"');var J=new Uint8Array(q);return Object.setPrototypeOf(J,f.prototype),J}function f(q,J,L){if("number"==typeof q){if("string"==typeof J)throw new TypeError('The "string" argument must be of type string. Received type number');return I(q)}return p(q,J,L)}function p(q,J,L){if("string"==typeof q)return function M(q,J){if(("string"!=typeof J||""===J)&&(J="utf8"),!f.isEncoding(J))throw new TypeError("Unknown encoding: "+J);var L=0|z(q,J),hA=e(L),_=hA.write(q,J);return _!==L&&(hA=hA.slice(0,_)),hA}(q,J);if(ArrayBuffer.isView(q))return function F(q){if(ft(q,Uint8Array)){var J=new Uint8Array(q);return Y(J.buffer,J.byteOffset,J.byteLength)}return y(q)}(q);if(null==q)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof q);if(ft(q,ArrayBuffer)||q&&ft(q.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(ft(q,SharedArrayBuffer)||q&&ft(q.buffer,SharedArrayBuffer)))return Y(q,J,L);if("number"==typeof q)throw new TypeError('The "value" argument must not be of type number. Received type number');var hA=q.valueOf&&q.valueOf();if(null!=hA&&hA!==q)return f.from(hA,J,L);var _=function D(q){if(f.isBuffer(q)){var J=0|d(q.length),L=e(J);return 0===L.length||q.copy(L,0,0,J),L}return void 0!==q.length?"number"!=typeof q.length||Dt(q.length)?e(0):y(q):"Buffer"===q.type&&Array.isArray(q.data)?y(q.data):void 0}(q);if(_)return _;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof q[Symbol.toPrimitive])return f.from(q[Symbol.toPrimitive]("string"),J,L);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof q)}function v(q){if("number"!=typeof q)throw new TypeError('"size" argument must be of type number');if(q<0)throw new RangeError('The value "'+q+'" is invalid for option "size"')}function I(q){return v(q),e(q<0?0:0|d(q))}function y(q){for(var J=q.length<0?0:0|d(q.length),L=e(J),hA=0;hA=C)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+C.toString(16)+" bytes");return 0|q}function z(q,J){if(f.isBuffer(q))return q.length;if(ArrayBuffer.isView(q)||ft(q,ArrayBuffer))return q.byteLength;if("string"!=typeof q)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof q);var L=q.length,hA=arguments.length>2&&!0===arguments[2];if(!hA&&0===L)return 0;for(var _=!1;;)switch(J){case"ascii":case"latin1":case"binary":return L;case"utf8":case"utf-8":return pt(q).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*L;case"hex":return L>>>1;case"base64":return ZA(q).length;default:if(_)return hA?-1:pt(q).length;J=(""+J).toLowerCase(),_=!0}}function aA(q,J,L){var hA=!1;if((void 0===J||J<0)&&(J=0),J>this.length||((void 0===L||L>this.length)&&(L=this.length),L<=0)||(L>>>=0)<=(J>>>=0))return"";for(q||(q="utf8");;)switch(q){case"hex":return mA(this,J,L);case"utf8":case"utf-8":return W(this,J,L);case"ascii":return eA(this,J,L);case"latin1":case"binary":return EA(this,J,L);case"base64":return kA(this,J,L);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return GA(this,J,L);default:if(hA)throw new TypeError("Unknown encoding: "+q);q=(q+"").toLowerCase(),hA=!0}}function K(q,J,L){var hA=q[J];q[J]=q[L],q[L]=hA}function $(q,J,L,hA,_){if(0===q.length)return-1;if("string"==typeof L?(hA=L,L=0):L>2147483647?L=2147483647:L<-2147483648&&(L=-2147483648),Dt(L=+L)&&(L=_?0:q.length-1),L<0&&(L=q.length+L),L>=q.length){if(_)return-1;L=q.length-1}else if(L<0){if(!_)return-1;L=0}if("string"==typeof J&&(J=f.from(J,hA)),f.isBuffer(J))return 0===J.length?-1:nA(q,J,L,hA,_);if("number"==typeof J)return J&=255,"function"==typeof Uint8Array.prototype.indexOf?_?Uint8Array.prototype.indexOf.call(q,J,L):Uint8Array.prototype.lastIndexOf.call(q,J,L):nA(q,[J],L,hA,_);throw new TypeError("val must be string, number or Buffer")}function nA(q,J,L,hA,_){var et,HA=1,$A=q.length,O=J.length;if(void 0!==hA&&("ucs2"===(hA=String(hA).toLowerCase())||"ucs-2"===hA||"utf16le"===hA||"utf-16le"===hA)){if(q.length<2||J.length<2)return-1;HA=2,$A/=2,O/=2,L/=2}function qA(Ut,xt){return 1===HA?Ut[xt]:Ut.readUInt16BE(xt*HA)}if(_){var MA=-1;for(et=L;et<$A;et++)if(qA(q,et)===qA(J,-1===MA?0:et-MA)){if(-1===MA&&(MA=et),et-MA+1===O)return MA*HA}else-1!==MA&&(et-=et-MA),MA=-1}else for(L+O>$A&&(L=$A-O),et=L;et>=0;et--){for(var OA=!0,st=0;st_&&(hA=_):hA=_;var $A,HA=J.length;for(hA>HA/2&&(hA=HA/2),$A=0;$A>8,HA.push(L%256),HA.push(hA);return HA}(J,q.length-L),q,L,hA)}function kA(q,J,L){return r.fromByteArray(0===J&&L===q.length?q:q.slice(J,L))}function W(q,J,L){L=Math.min(q.length,L);for(var hA=[],_=J;_239?4:HA>223?3:HA>191?2:1;if(_+O<=L){var qA=void 0,et=void 0,MA=void 0,OA=void 0;switch(O){case 1:HA<128&&($A=HA);break;case 2:128==(192&(qA=q[_+1]))&&(OA=(31&HA)<<6|63&qA)>127&&($A=OA);break;case 3:et=q[_+2],128==(192&(qA=q[_+1]))&&128==(192&et)&&(OA=(15&HA)<<12|(63&qA)<<6|63&et)>2047&&(OA<55296||OA>57343)&&($A=OA);break;case 4:et=q[_+2],MA=q[_+3],128==(192&(qA=q[_+1]))&&128==(192&et)&&128==(192&MA)&&(OA=(15&HA)<<18|(63&qA)<<12|(63&et)<<6|63&MA)>65535&&OA<1114112&&($A=OA)}}null===$A?($A=65533,O=1):$A>65535&&(hA.push(($A-=65536)>>>10&1023|55296),$A=56320|1023&$A),hA.push($A),_+=O}return function iA(q){var J=q.length;if(J<=fA)return String.fromCharCode.apply(String,q);for(var L="",hA=0;hA_.length?(f.isBuffer($A)||($A=f.from($A)),$A.copy(_,HA)):Uint8Array.prototype.set.call(_,$A,HA);else{if(!f.isBuffer($A))throw new TypeError('"list" argument must be an Array of Buffers');$A.copy(_,HA)}HA+=$A.length}return _},f.byteLength=z,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var J=this.length;if(J%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var L=0;LL&&(J+=" ... "),""},Q&&(f.prototype[Q]=f.prototype.inspect),f.prototype.compare=function(J,L,hA,_,HA){if(ft(J,Uint8Array)&&(J=f.from(J,J.offset,J.byteLength)),!f.isBuffer(J))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof J);if(void 0===L&&(L=0),void 0===hA&&(hA=J?J.length:0),void 0===_&&(_=0),void 0===HA&&(HA=this.length),L<0||hA>J.length||_<0||HA>this.length)throw new RangeError("out of range index");if(_>=HA&&L>=hA)return 0;if(_>=HA)return-1;if(L>=hA)return 1;if(this===J)return 0;for(var $A=(HA>>>=0)-(_>>>=0),O=(hA>>>=0)-(L>>>=0),qA=Math.min($A,O),et=this.slice(_,HA),MA=J.slice(L,hA),OA=0;OA>>=0,isFinite(hA)?(hA>>>=0,void 0===_&&(_="utf8")):(_=hA,hA=void 0)}var HA=this.length-L;if((void 0===hA||hA>HA)&&(hA=HA),J.length>0&&(hA<0||L<0)||L>this.length)throw new RangeError("Attempt to write outside buffer bounds");_||(_="utf8");for(var $A=!1;;)switch(_){case"hex":return uA(this,J,L,hA);case"utf8":case"utf-8":return wA(this,J,L,hA);case"ascii":case"latin1":case"binary":return NA(this,J,L,hA);case"base64":return yA(this,J,L,hA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return TA(this,J,L,hA);default:if($A)throw new TypeError("Unknown encoding: "+_);_=(""+_).toLowerCase(),$A=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var fA=4096;function eA(q,J,L){var hA="";L=Math.min(q.length,L);for(var _=J;_hA)&&(L=hA);for(var _="",HA=J;HAL)throw new RangeError("Trying to access beyond buffer length")}function b(q,J,L,hA,_,HA){if(!f.isBuffer(q))throw new TypeError('"buffer" argument must be a Buffer instance');if(J>_||Jq.length)throw new RangeError("Index out of range")}function rA(q,J,L,hA,_){IA(J,hA,_,q,L,7);var HA=Number(J&BigInt(4294967295));q[L++]=HA,q[L++]=HA>>=8,q[L++]=HA>>=8,q[L++]=HA>>=8;var $A=Number(J>>BigInt(32)&BigInt(4294967295));return q[L++]=$A,q[L++]=$A>>=8,q[L++]=$A>>=8,q[L++]=$A>>=8,L}function oA(q,J,L,hA,_){IA(J,hA,_,q,L,7);var HA=Number(J&BigInt(4294967295));q[L+7]=HA,q[L+6]=HA>>=8,q[L+5]=HA>>=8,q[L+4]=HA>>=8;var $A=Number(J>>BigInt(32)&BigInt(4294967295));return q[L+3]=$A,q[L+2]=$A>>=8,q[L+1]=$A>>=8,q[L]=$A>>=8,L+8}function pA(q,J,L,hA,_,HA){if(L+hA>q.length)throw new RangeError("Index out of range");if(L<0)throw new RangeError("Index out of range")}function xA(q,J,L,hA,_){return J=+J,L>>>=0,_||pA(q,0,L,4),c.write(q,J,L,hA,23,4),L+4}function gA(q,J,L,hA,_){return J=+J,L>>>=0,_||pA(q,0,L,8),c.write(q,J,L,hA,52,8),L+8}f.prototype.slice=function(J,L){var hA=this.length;(J=~~J)<0?(J+=hA)<0&&(J=0):J>hA&&(J=hA),(L=void 0===L?hA:~~L)<0?(L+=hA)<0&&(L=0):L>hA&&(L=hA),L>>=0,L>>>=0,hA||j(J,L,this.length);for(var _=this[J],HA=1,$A=0;++$A>>=0,L>>>=0,hA||j(J,L,this.length);for(var _=this[J+--L],HA=1;L>0&&(HA*=256);)_+=this[J+--L]*HA;return _},f.prototype.readUint8=f.prototype.readUInt8=function(J,L){return J>>>=0,L||j(J,1,this.length),this[J]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(J,L){return J>>>=0,L||j(J,2,this.length),this[J]|this[J+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(J,L){return J>>>=0,L||j(J,2,this.length),this[J]<<8|this[J+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(J,L){return J>>>=0,L||j(J,4,this.length),(this[J]|this[J+1]<<8|this[J+2]<<16)+16777216*this[J+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(J,L){return J>>>=0,L||j(J,4,this.length),16777216*this[J]+(this[J+1]<<16|this[J+2]<<8|this[J+3])},f.prototype.readBigUInt64LE=vA(function(J){jA(J>>>=0,"offset");var L=this[J],hA=this[J+7];(void 0===L||void 0===hA)&&ut(J,this.length-8);var _=L+this[++J]*Math.pow(2,8)+this[++J]*Math.pow(2,16)+this[++J]*Math.pow(2,24),HA=this[++J]+this[++J]*Math.pow(2,8)+this[++J]*Math.pow(2,16)+hA*Math.pow(2,24);return BigInt(_)+(BigInt(HA)<>>=0,"offset");var L=this[J],hA=this[J+7];(void 0===L||void 0===hA)&&ut(J,this.length-8);var _=L*Math.pow(2,24)+this[++J]*Math.pow(2,16)+this[++J]*Math.pow(2,8)+this[++J],HA=this[++J]*Math.pow(2,24)+this[++J]*Math.pow(2,16)+this[++J]*Math.pow(2,8)+hA;return(BigInt(_)<>>=0,L>>>=0,hA||j(J,L,this.length);for(var _=this[J],HA=1,$A=0;++$A=(HA*=128)&&(_-=Math.pow(2,8*L)),_},f.prototype.readIntBE=function(J,L,hA){J>>>=0,L>>>=0,hA||j(J,L,this.length);for(var _=L,HA=1,$A=this[J+--_];_>0&&(HA*=256);)$A+=this[J+--_]*HA;return $A>=(HA*=128)&&($A-=Math.pow(2,8*L)),$A},f.prototype.readInt8=function(J,L){return J>>>=0,L||j(J,1,this.length),128&this[J]?-1*(255-this[J]+1):this[J]},f.prototype.readInt16LE=function(J,L){J>>>=0,L||j(J,2,this.length);var hA=this[J]|this[J+1]<<8;return 32768&hA?4294901760|hA:hA},f.prototype.readInt16BE=function(J,L){J>>>=0,L||j(J,2,this.length);var hA=this[J+1]|this[J]<<8;return 32768&hA?4294901760|hA:hA},f.prototype.readInt32LE=function(J,L){return J>>>=0,L||j(J,4,this.length),this[J]|this[J+1]<<8|this[J+2]<<16|this[J+3]<<24},f.prototype.readInt32BE=function(J,L){return J>>>=0,L||j(J,4,this.length),this[J]<<24|this[J+1]<<16|this[J+2]<<8|this[J+3]},f.prototype.readBigInt64LE=vA(function(J){jA(J>>>=0,"offset");var L=this[J],hA=this[J+7];(void 0===L||void 0===hA)&&ut(J,this.length-8);var _=this[J+4]+this[J+5]*Math.pow(2,8)+this[J+6]*Math.pow(2,16)+(hA<<24);return(BigInt(_)<>>=0,"offset");var L=this[J],hA=this[J+7];(void 0===L||void 0===hA)&&ut(J,this.length-8);var _=(L<<24)+this[++J]*Math.pow(2,16)+this[++J]*Math.pow(2,8)+this[++J];return(BigInt(_)<>>=0,L||j(J,4,this.length),c.read(this,J,!0,23,4)},f.prototype.readFloatBE=function(J,L){return J>>>=0,L||j(J,4,this.length),c.read(this,J,!1,23,4)},f.prototype.readDoubleLE=function(J,L){return J>>>=0,L||j(J,8,this.length),c.read(this,J,!0,52,8)},f.prototype.readDoubleBE=function(J,L){return J>>>=0,L||j(J,8,this.length),c.read(this,J,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(J,L,hA,_){J=+J,L>>>=0,hA>>>=0,_||b(this,J,L,hA,Math.pow(2,8*hA)-1,0);var $A=1,O=0;for(this[L]=255&J;++O>>=0,hA>>>=0,_||b(this,J,L,hA,Math.pow(2,8*hA)-1,0);var $A=hA-1,O=1;for(this[L+$A]=255&J;--$A>=0&&(O*=256);)this[L+$A]=J/O&255;return L+hA},f.prototype.writeUint8=f.prototype.writeUInt8=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,1,255,0),this[L]=255&J,L+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,2,65535,0),this[L]=255&J,this[L+1]=J>>>8,L+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,2,65535,0),this[L]=J>>>8,this[L+1]=255&J,L+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,4,4294967295,0),this[L+3]=J>>>24,this[L+2]=J>>>16,this[L+1]=J>>>8,this[L]=255&J,L+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,4,4294967295,0),this[L]=J>>>24,this[L+1]=J>>>16,this[L+2]=J>>>8,this[L+3]=255&J,L+4},f.prototype.writeBigUInt64LE=vA(function(J,L){return void 0===L&&(L=0),rA(this,J,L,BigInt(0),BigInt("0xffffffffffffffff"))}),f.prototype.writeBigUInt64BE=vA(function(J,L){return void 0===L&&(L=0),oA(this,J,L,BigInt(0),BigInt("0xffffffffffffffff"))}),f.prototype.writeIntLE=function(J,L,hA,_){if(J=+J,L>>>=0,!_){var HA=Math.pow(2,8*hA-1);b(this,J,L,hA,HA-1,-HA)}var $A=0,O=1,qA=0;for(this[L]=255&J;++$A>0)-qA&255;return L+hA},f.prototype.writeIntBE=function(J,L,hA,_){if(J=+J,L>>>=0,!_){var HA=Math.pow(2,8*hA-1);b(this,J,L,hA,HA-1,-HA)}var $A=hA-1,O=1,qA=0;for(this[L+$A]=255&J;--$A>=0&&(O*=256);)J<0&&0===qA&&0!==this[L+$A+1]&&(qA=1),this[L+$A]=(J/O>>0)-qA&255;return L+hA},f.prototype.writeInt8=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,1,127,-128),J<0&&(J=255+J+1),this[L]=255&J,L+1},f.prototype.writeInt16LE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,2,32767,-32768),this[L]=255&J,this[L+1]=J>>>8,L+2},f.prototype.writeInt16BE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,2,32767,-32768),this[L]=J>>>8,this[L+1]=255&J,L+2},f.prototype.writeInt32LE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,4,2147483647,-2147483648),this[L]=255&J,this[L+1]=J>>>8,this[L+2]=J>>>16,this[L+3]=J>>>24,L+4},f.prototype.writeInt32BE=function(J,L,hA){return J=+J,L>>>=0,hA||b(this,J,L,4,2147483647,-2147483648),J<0&&(J=4294967295+J+1),this[L]=J>>>24,this[L+1]=J>>>16,this[L+2]=J>>>8,this[L+3]=255&J,L+4},f.prototype.writeBigInt64LE=vA(function(J,L){return void 0===L&&(L=0),rA(this,J,L,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),f.prototype.writeBigInt64BE=vA(function(J,L){return void 0===L&&(L=0),oA(this,J,L,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),f.prototype.writeFloatLE=function(J,L,hA){return xA(this,J,L,!0,hA)},f.prototype.writeFloatBE=function(J,L,hA){return xA(this,J,L,!1,hA)},f.prototype.writeDoubleLE=function(J,L,hA){return gA(this,J,L,!0,hA)},f.prototype.writeDoubleBE=function(J,L,hA){return gA(this,J,L,!1,hA)},f.prototype.copy=function(J,L,hA,_){if(!f.isBuffer(J))throw new TypeError("argument should be a Buffer");if(hA||(hA=0),!_&&0!==_&&(_=this.length),L>=J.length&&(L=J.length),L||(L=0),_>0&&_=this.length)throw new RangeError("Index out of range");if(_<0)throw new RangeError("sourceEnd out of bounds");_>this.length&&(_=this.length),J.length-L<_-hA&&(_=J.length-L+hA);var HA=_-hA;return this===J&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(L,hA,_):Uint8Array.prototype.set.call(J,this.subarray(hA,_),L),HA},f.prototype.fill=function(J,L,hA,_){if("string"==typeof J){if("string"==typeof L?(_=L,L=0,hA=this.length):"string"==typeof hA&&(_=hA,hA=this.length),void 0!==_&&"string"!=typeof _)throw new TypeError("encoding must be a string");if("string"==typeof _&&!f.isEncoding(_))throw new TypeError("Unknown encoding: "+_);if(1===J.length){var HA=J.charCodeAt(0);("utf8"===_&&HA<128||"latin1"===_)&&(J=HA)}}else"number"==typeof J?J&=255:"boolean"==typeof J&&(J=Number(J));if(L<0||this.length>>=0,hA=void 0===hA?this.length:hA>>>0,J||(J=0),"number"==typeof J)for($A=L;$A=hA+4;L-=3)J="_"+q.slice(L-3,L)+J;return""+q.slice(0,L)+J}function IA(q,J,L,hA,_,HA){if(q>L||q3?0===J||J===BigInt(0)?">= 0"+$A+" and < 2"+$A+" ** "+8*(HA+1)+$A:">= -(2"+$A+" ** "+(8*(HA+1)-1)+$A+") and < 2 ** "+(8*(HA+1)-1)+$A:">= "+J+$A+" and <= "+L+$A,new CA.ERR_OUT_OF_RANGE("value",O,q)}!function zA(q,J,L){jA(J,"offset"),(void 0===q[J]||void 0===q[J+L])&&ut(J,q.length-(L+1))}(hA,_,HA)}function jA(q,J){if("number"!=typeof q)throw new CA.ERR_INVALID_ARG_TYPE(J,"number",q)}function ut(q,J,L){throw Math.floor(q)!==q?(jA(q,L),new CA.ERR_OUT_OF_RANGE(L||"offset","an integer",q)):J<0?new CA.ERR_BUFFER_OUT_OF_BOUNDS:new CA.ERR_OUT_OF_RANGE(L||"offset",">= "+(L?1:0)+" and <= "+J,q)}DA("ERR_BUFFER_OUT_OF_BOUNDS",function(q){return q?q+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),DA("ERR_INVALID_ARG_TYPE",function(q,J){return'The "'+q+'" argument must be of type number. Received type '+typeof J},TypeError),DA("ERR_OUT_OF_RANGE",function(q,J,L){var hA='The value of "'+q+'" is out of range.',_=L;return Number.isInteger(L)&&Math.abs(L)>Math.pow(2,32)?_=YA(String(L)):"bigint"==typeof L&&(_=String(L),(L>Math.pow(BigInt(2),BigInt(32))||L<-Math.pow(BigInt(2),BigInt(32)))&&(_=YA(_)),_+="n"),hA+" It must be "+J+". Received "+_},RangeError);var Ct=/[^+/0-9A-Za-z-_]/g;function pt(q,J){J=J||1/0;for(var L,hA=q.length,_=null,HA=[],$A=0;$A55295&&L<57344){if(!_){if(L>56319){(J-=3)>-1&&HA.push(239,191,189);continue}if($A+1===hA){(J-=3)>-1&&HA.push(239,191,189);continue}_=L;continue}if(L<56320){(J-=3)>-1&&HA.push(239,191,189),_=L;continue}L=65536+(_-55296<<10|L-56320)}else _&&(J-=3)>-1&&HA.push(239,191,189);if(_=null,L<128){if((J-=1)<0)break;HA.push(L)}else if(L<2048){if((J-=2)<0)break;HA.push(L>>6|192,63&L|128)}else if(L<65536){if((J-=3)<0)break;HA.push(L>>12|224,L>>6&63|128,63&L|128)}else{if(!(L<1114112))throw new Error("Invalid code point");if((J-=4)<0)break;HA.push(L>>18|240,L>>12&63|128,L>>6&63|128,63&L|128)}}return HA}function ZA(q){return r.toByteArray(function ct(q){if((q=(q=q.split("=")[0]).trim().replace(Ct,"")).length<2)return"";for(;q.length%4!=0;)q+="=";return q}(q))}function Qt(q,J,L,hA){var _;for(_=0;_=J.length||_>=q.length);++_)J[_+L]=q[_];return _}function ft(q,J){return q instanceof J||null!=q&&null!=q.constructor&&null!=q.constructor.name&&q.constructor.name===J.name}function Dt(q){return q!=q}var Nt=function(){for(var q="0123456789abcdef",J=new Array(256),L=0;L<16;++L)for(var hA=16*L,_=0;_<16;++_)J[hA+_]=q[L]+q[_];return J}();function vA(q){return typeof BigInt>"u"?gt:q}function gt(){throw new Error("BigInt not supported")}},10477:function(N,A,n){"use strict";n(27803),n(41539),N.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},82094:function(N,A,n){"use strict";var nA,uA,wA,u=n(10477),a=n(19781),o=n(17854),s=n(60614),g=n(70111),h=n(92597),E=n(70648),r=n(66330),c=n(68880),Q=n(31320),C=n(3070).f,w=n(47976),e=n(79518),f=n(27674),p=n(5112),v=n(69711),S=o.Int8Array,I=S&&S.prototype,M=o.Uint8ClampedArray,y=M&&M.prototype,F=S&&e(S),Y=I&&e(I),D=Object.prototype,d=o.TypeError,H=p("toStringTag"),z=v("TYPED_ARRAY_TAG"),aA=v("TYPED_ARRAY_CONSTRUCTOR"),K=u&&!!f&&"Opera"!==E(o.opera),$=!1,NA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},yA={BigInt64Array:8,BigUint64Array:8},kA=function(mA){if(!g(mA))return!1;var GA=E(mA);return h(NA,GA)||h(yA,GA)};for(nA in NA)(wA=(uA=o[nA])&&uA.prototype)?c(wA,aA,uA):K=!1;for(nA in yA)(wA=(uA=o[nA])&&uA.prototype)&&c(wA,aA,uA);if((!K||!s(F)||F===Function.prototype)&&(F=function(){throw d("Incorrect invocation")},K))for(nA in NA)o[nA]&&f(o[nA],F);if((!K||!Y||Y===D)&&(Y=F.prototype,K))for(nA in NA)o[nA]&&f(o[nA].prototype,Y);if(K&&e(y)!==Y&&f(y,Y),a&&!h(Y,H))for(nA in $=!0,C(Y,H,{get:function(){return g(this)?this[z]:void 0}}),NA)o[nA]&&c(o[nA],z,nA);N.exports={NATIVE_ARRAY_BUFFER_VIEWS:K,TYPED_ARRAY_CONSTRUCTOR:aA,TYPED_ARRAY_TAG:$&&z,aTypedArray:function(mA){if(kA(mA))return mA;throw d("Target is not a typed array")},aTypedArrayConstructor:function(mA){if(s(mA)&&(!f||w(F,mA)))return mA;throw d(r(mA)+" is not a typed array constructor")},exportTypedArrayMethod:function(mA,GA,j){if(a){if(j)for(var b in NA){var rA=o[b];if(rA&&h(rA.prototype,mA))try{delete rA.prototype[mA]}catch{}}(!Y[mA]||j)&&Q(Y,mA,j?GA:K&&I[mA]||GA)}},exportTypedArrayStaticMethod:function(mA,GA,j){var b,rA;if(a){if(f){if(j)for(b in NA)if((rA=o[b])&&h(rA,mA))try{delete rA[mA]}catch{}if(F[mA]&&!j)return;try{return Q(F,mA,j?GA:K&&F[mA]||GA)}catch{}}for(b in NA)(rA=o[b])&&(!rA[mA]||j)&&Q(rA,mA,GA)}},isView:function(mA){if(!g(mA))return!1;var GA=E(mA);return"DataView"===GA||h(NA,GA)||h(yA,GA)},isTypedArray:kA,TypedArray:F,TypedArrayPrototype:Y}},2091:function(N,A,n){"use strict";n(68309);var u=n(17854),a=n(1702),o=n(19781),s=n(10477),g=n(76530),h=n(68880),E=n(12248),r=n(47293),c=n(25787),Q=n(19303),C=n(17466),w=n(57067),e=n(11179),f=n(79518),p=n(27674),v=n(8006).f,S=n(3070).f,I=n(21285),M=n(50206),y=n(58003),F=n(29909),Y=g.PROPER,D=g.CONFIGURABLE,d=F.get,H=F.set,z="ArrayBuffer",aA="DataView",K="prototype",nA="Wrong index",uA=u[z],wA=uA,NA=wA&&wA[K],yA=u[aA],TA=yA&&yA[K],kA=Object.prototype,W=u.Array,fA=u.RangeError,iA=a(I),eA=a([].reverse),EA=e.pack,mA=e.unpack,GA=function(ct){return[255&ct]},j=function(ct){return[255&ct,ct>>8&255]},b=function(ct){return[255&ct,ct>>8&255,ct>>16&255,ct>>24&255]},rA=function(ct){return ct[3]<<24|ct[2]<<16|ct[1]<<8|ct[0]},oA=function(ct){return EA(ct,23,4)},pA=function(ct){return EA(ct,52,8)},xA=function(ct,pt){S(ct[K],pt,{get:function(){return d(this)[pt]}})},gA=function(ct,pt,Yt,KA){var ZA=w(Yt),Qt=d(ct);if(ZA+pt>Qt.byteLength)throw fA(nA);var ft=d(Qt.buffer).bytes,Dt=ZA+Qt.byteOffset,Nt=M(ft,Dt,Dt+pt);return KA?Nt:eA(Nt)},CA=function(ct,pt,Yt,KA,ZA,Qt){var ft=w(Yt),Dt=d(ct);if(ft+pt>Dt.byteLength)throw fA(nA);for(var Nt=d(Dt.buffer).bytes,vA=ft+Dt.byteOffset,gt=KA(+ZA),q=0;qzA;)(IA=YA[zA++])in wA||h(wA,IA,uA[IA]);NA.constructor=wA}p&&f(TA)!==kA&&p(TA,kA);var jA=new yA(new wA(2)),ut=a(TA.setInt8);jA.setInt8(0,2147483648),jA.setInt8(1,2147483649),(jA.getInt8(0)||!jA.getInt8(1))&&E(TA,{setInt8:function(ct,pt){ut(this,ct,pt<<24>>24)},setUint8:function(ct,pt){ut(this,ct,pt<<24>>24)}},{unsafe:!0})}else NA=(wA=function(ct){c(this,NA);var pt=w(ct);H(this,{bytes:iA(W(pt),0),byteLength:pt}),o||(this.byteLength=pt)})[K],TA=(yA=function(ct,pt,Yt){c(this,TA),c(ct,NA);var KA=d(ct).byteLength,ZA=Q(pt);if(ZA<0||ZA>KA)throw fA("Wrong offset");if(ZA+(Yt=void 0===Yt?KA-ZA:C(Yt))>KA)throw fA("Wrong length");H(this,{buffer:ct,byteLength:Yt,byteOffset:ZA}),o||(this.buffer=ct,this.byteLength=Yt,this.byteOffset=ZA)})[K],o&&(xA(wA,"byteLength"),xA(yA,"buffer"),xA(yA,"byteLength"),xA(yA,"byteOffset")),E(TA,{getInt8:function(ct){return gA(this,1,ct)[0]<<24>>24},getUint8:function(ct){return gA(this,1,ct)[0]},getInt16:function(ct){var pt=gA(this,2,ct,arguments.length>1?arguments[1]:void 0);return(pt[1]<<8|pt[0])<<16>>16},getUint16:function(ct){var pt=gA(this,2,ct,arguments.length>1?arguments[1]:void 0);return pt[1]<<8|pt[0]},getInt32:function(ct){return rA(gA(this,4,ct,arguments.length>1?arguments[1]:void 0))},getUint32:function(ct){return rA(gA(this,4,ct,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(ct){return mA(gA(this,4,ct,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(ct){return mA(gA(this,8,ct,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(ct,pt){CA(this,1,ct,GA,pt)},setUint8:function(ct,pt){CA(this,1,ct,GA,pt)},setInt16:function(ct,pt){CA(this,2,ct,j,pt,arguments.length>2?arguments[2]:void 0)},setUint16:function(ct,pt){CA(this,2,ct,j,pt,arguments.length>2?arguments[2]:void 0)},setInt32:function(ct,pt){CA(this,4,ct,b,pt,arguments.length>2?arguments[2]:void 0)},setUint32:function(ct,pt){CA(this,4,ct,b,pt,arguments.length>2?arguments[2]:void 0)},setFloat32:function(ct,pt){CA(this,4,ct,oA,pt,arguments.length>2?arguments[2]:void 0)},setFloat64:function(ct,pt){CA(this,8,ct,pA,pt,arguments.length>2?arguments[2]:void 0)}});y(wA,z),y(yA,aA),N.exports={ArrayBuffer:wA,DataView:yA}},27803:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(2091),s=n(96340),g="ArrayBuffer",h=o[g];u({global:!0,forced:a[g]!==h},{ArrayBuffer:h}),s(g)},194:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),n(97508),n(23440),n(53839),n(41582),function(){var a=u,s=a.lib.BlockCipher,g=a.algo,h=[],E=[],r=[],c=[],Q=[],C=[],w=[],e=[],f=[],p=[];!function(){for(var I=[],M=0;M<256;M++)I[M]=M<128?M<<1:M<<1^283;var y=0,F=0;for(M=0;M<256;M++){var Y=F^F<<1^F<<2^F<<3^F<<4;h[y]=Y=Y>>>8^255&Y^99,E[Y]=y;var z,D=I[y],d=I[D],H=I[d];r[y]=(z=257*I[Y]^16843008*Y)<<24|z>>>8,c[y]=z<<16|z>>>16,Q[y]=z<<8|z>>>24,C[y]=z,w[Y]=(z=16843009*H^65537*d^257*D^16843008*y)<<24|z>>>8,e[Y]=z<<16|z>>>16,f[Y]=z<<8|z>>>24,p[Y]=z,y?(y=D^I[I[I[H^D]]],F^=I[I[F]]):y=F=1}}();var v=[0,1,2,4,8,16,32,64,128,27,54],S=g.AES=s.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var y=this._keyPriorReset=this._key,F=y.words,Y=y.sigBytes/4,d=4*((this._nRounds=Y+6)+1),H=this._keySchedule=[],z=0;z6&&z%Y==4&&(M=h[M>>>24]<<24|h[M>>>16&255]<<16|h[M>>>8&255]<<8|h[255&M]):(M=h[(M=M<<8|M>>>24)>>>24]<<24|h[M>>>16&255]<<16|h[M>>>8&255]<<8|h[255&M],M^=v[z/Y|0]<<24),H[z]=H[z-Y]^M);for(var aA=this._invKeySchedule=[],K=0;K>>24]]^e[h[M>>>16&255]]^f[h[M>>>8&255]]^p[h[255&M]]}}},encryptBlock:function(M,y){this._doCryptBlock(M,y,this._keySchedule,r,c,Q,C,h)},decryptBlock:function(M,y){var F=M[y+1];M[y+1]=M[y+3],M[y+3]=F,this._doCryptBlock(M,y,this._invKeySchedule,w,e,f,p,E),F=M[y+1],M[y+1]=M[y+3],M[y+3]=F},_doCryptBlock:function(M,y,F,Y,D,d,H,z){for(var aA=this._nRounds,K=M[y]^F[0],$=M[y+1]^F[1],nA=M[y+2]^F[2],uA=M[y+3]^F[3],wA=4,NA=1;NA>>24]^D[$>>>16&255]^d[nA>>>8&255]^H[255&uA]^F[wA++],TA=Y[$>>>24]^D[nA>>>16&255]^d[uA>>>8&255]^H[255&K]^F[wA++],kA=Y[nA>>>24]^D[uA>>>16&255]^d[K>>>8&255]^H[255&$]^F[wA++],W=Y[uA>>>24]^D[K>>>16&255]^d[$>>>8&255]^H[255&nA]^F[wA++];K=yA,$=TA,nA=kA,uA=W}yA=(z[K>>>24]<<24|z[$>>>16&255]<<16|z[nA>>>8&255]<<8|z[255&uA])^F[wA++],TA=(z[$>>>24]<<24|z[nA>>>16&255]<<16|z[uA>>>8&255]<<8|z[255&K])^F[wA++],kA=(z[nA>>>24]<<24|z[uA>>>16&255]<<16|z[K>>>8&255]<<8|z[255&$])^F[wA++],W=(z[uA>>>24]<<24|z[K>>>16&255]<<16|z[$>>>8&255]<<8|z[255&nA])^F[wA++],M[y]=yA,M[y+1]=TA,M[y+2]=kA,M[y+3]=W},keySize:8});a.AES=s._createHelper(S)}(),u.AES)},29060:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),n(97508),n(23440),n(53839),n(41582),function(){var a=u,s=a.lib.BlockCipher,h=16,E=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],r=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]],c={pbox:[],sbox:[]};function Q(p,v){var F=p.sbox[0][v>>24&255]+p.sbox[1][v>>16&255];return(F^=p.sbox[2][v>>8&255])+p.sbox[3][255&v]}function C(p,v,S){for(var y,I=v,M=S,F=0;F=S&&(y=0);for(var Y=0,D=0,d=0,H=0;H1;--F)y=I^=p.pbox[F],I=M=Q(p,I)^M,M=y;return y=I,I=M,M=y,{left:I^=p.pbox[0],right:M^=p.pbox[1]}}(c,v[S],v[S+1]);v[S]=I.left,v[S+1]=I.right},blockSize:2,keySize:4,ivSize:2});a.Blowfish=s._createHelper(f)}(),u.Blowfish)},41582:function(N,A,n){"use strict";var u,o,s,g,h,E,Q,w,e,p,v,S,M,F,D,d,z,aA;n(47042),n(92222),n(41539),n(39714),n(40561),N.exports=(u=n(20757),n(53839),void(u.lib.Cipher||(h=(s=(o=u).lib).WordArray,Q=o.enc.Base64,w=o.algo.EvpKDF,e=s.Cipher=(E=s.BufferedBlockAlgorithm).extend({cfg:(g=s.Base).extend(),createEncryptor:function($,nA){return this.create(this._ENC_XFORM_MODE,$,nA)},createDecryptor:function($,nA){return this.create(this._DEC_XFORM_MODE,$,nA)},init:function($,nA,uA){this.cfg=this.cfg.extend(uA),this._xformMode=$,this._key=nA,this.reset()},reset:function(){E.reset.call(this),this._doReset()},process:function($){return this._append($),this._process()},finalize:function($){return $&&this._append($),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function K($){return"string"==typeof $?aA:d}return function($){return{encrypt:function(uA,wA,NA){return K(wA).encrypt($,uA,wA,NA)},decrypt:function(uA,wA,NA){return K(wA).decrypt($,uA,wA,NA)}}}}()}),s.StreamCipher=e.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),p=o.mode={},v=s.BlockCipherMode=g.extend({createEncryptor:function($,nA){return this.Encryptor.create($,nA)},createDecryptor:function($,nA){return this.Decryptor.create($,nA)},init:function($,nA){this._cipher=$,this._iv=nA}}),S=p.CBC=function(){var K=v.extend();function $(nA,uA,wA){var NA,yA=this._iv;yA?(NA=yA,this._iv=void 0):NA=this._prevBlock;for(var TA=0;TA>>2]}},s.BlockCipher=e.extend({cfg:e.cfg.extend({mode:S,padding:M}),reset:function(){var $;e.reset.call(this);var nA=this.cfg,uA=nA.iv,wA=nA.mode;this._xformMode==this._ENC_XFORM_MODE?$=wA.createEncryptor:($=wA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==$?this._mode.init(this,uA&&uA.words):(this._mode=$.call(wA,this,uA&&uA.words),this._mode.__creator=$)},_doProcessBlock:function($,nA){this._mode.processBlock($,nA)},_doFinalize:function(){var $,nA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(nA.pad(this._data,this.blockSize),$=this._process(!0)):($=this._process(!0),nA.unpad($)),$},blockSize:4}),F=s.CipherParams=g.extend({init:function($){this.mixIn($)},toString:function($){return($||this.formatter).stringify(this)}}),D=(o.format={}).OpenSSL={stringify:function($){var uA=$.ciphertext,wA=$.salt;return(wA?h.create([1398893684,1701076831]).concat(wA).concat(uA):uA).toString(Q)},parse:function($){var nA,uA=Q.parse($),wA=uA.words;return 1398893684==wA[0]&&1701076831==wA[1]&&(nA=h.create(wA.slice(2,4)),wA.splice(0,4),uA.sigBytes-=16),F.create({ciphertext:uA,salt:nA})}},d=s.SerializableCipher=g.extend({cfg:g.extend({format:D}),encrypt:function($,nA,uA,wA){wA=this.cfg.extend(wA);var NA=$.createEncryptor(uA,wA),yA=NA.finalize(nA),TA=NA.cfg;return F.create({ciphertext:yA,key:uA,iv:TA.iv,algorithm:$,mode:TA.mode,padding:TA.padding,blockSize:$.blockSize,formatter:wA.format})},decrypt:function($,nA,uA,wA){return wA=this.cfg.extend(wA),nA=this._parse(nA,wA.format),$.createDecryptor(uA,wA).finalize(nA.ciphertext)},_parse:function($,nA){return"string"==typeof $?nA.parse($,this):$}}),z=(o.kdf={}).OpenSSL={execute:function($,nA,uA,wA,NA){if(wA||(wA=h.random(8)),NA)var yA=w.create({keySize:nA+uA,hasher:NA}).compute($,wA);else yA=w.create({keySize:nA+uA}).compute($,wA);var TA=h.create(yA.words.slice(nA),4*uA);return yA.sigBytes=4*nA,F.create({key:yA,iv:TA,salt:wA})}},aA=s.PasswordBasedCipher=d.extend({cfg:d.cfg.extend({kdf:z}),encrypt:function($,nA,uA,wA){var NA=(wA=this.cfg.extend(wA)).kdf.execute(uA,$.keySize,$.ivSize,wA.salt,wA.hasher);wA.iv=NA.iv;var yA=d.encrypt.call(this,$,nA,NA.key,wA);return yA.mixIn(NA),yA},decrypt:function($,nA,uA,wA){wA=this.cfg.extend(wA),nA=this._parse(nA,wA.format);var NA=wA.kdf.execute(uA,$.keySize,$.ivSize,nA.salt,wA.hasher);return wA.iv=NA.iv,d.decrypt.call(this,$,nA,NA.key,wA)}}))))},20757:function(N,A,n){"use strict";var a;n(65743),n(66992),n(41539),n(29135),n(92990),n(18927),n(33105),n(35035),n(74345),n(7174),n(32846),n(44731),n(77209),n(96319),n(58867),n(37789),n(33739),n(29368),n(14483),n(12056),n(3462),n(30678),n(27462),n(33824),n(55021),n(12974),n(15016),n(39714),n(47042),n(69600),n(92222),n(40561),a=function(){var u=u||function(a,o){var s;if(typeof window<"u"&&window.crypto&&(s=window.crypto),typeof self<"u"&&self.crypto&&(s=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(s=globalThis.crypto),!s&&typeof window<"u"&&window.msCrypto&&(s=window.msCrypto),!s&&typeof n.g<"u"&&n.g.crypto&&(s=n.g.crypto),!s)try{s=n(42480)}catch{}var g=function(){if(s){if("function"==typeof s.getRandomValues)try{return s.getRandomValues(new Uint32Array(1))[0]}catch{}if("function"==typeof s.randomBytes)try{return s.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},h=Object.create||function(){function I(){}return function(M){var y;return I.prototype=M,y=new I,I.prototype=null,y}}(),E={},r=E.lib={},c=r.Base={extend:function(M){var y=h(this);return M&&y.mixIn(M),(!y.hasOwnProperty("init")||this.init===y.init)&&(y.init=function(){y.$super.init.apply(this,arguments)}),y.init.prototype=y,y.$super=this,y},create:function(){var M=this.extend();return M.init.apply(M,arguments),M},init:function(){},mixIn:function(M){for(var y in M)M.hasOwnProperty(y)&&(this[y]=M[y]);M.hasOwnProperty("toString")&&(this.toString=M.toString)},clone:function(){return this.init.prototype.extend(this)}},Q=r.WordArray=c.extend({init:function(M,y){M=this.words=M||[],this.sigBytes=null!=y?y:4*M.length},toString:function(M){return(M||w).stringify(this)},concat:function(M){var y=this.words,F=M.words,Y=this.sigBytes,D=M.sigBytes;if(this.clamp(),Y%4)for(var d=0;d>>2]|=(F[d>>>2]>>>24-d%4*8&255)<<24-(Y+d)%4*8;else for(var z=0;z>>2]=F[z>>>2];return this.sigBytes+=D,this},clamp:function(){var M=this.words,y=this.sigBytes;M[y>>>2]&=4294967295<<32-y%4*8,M.length=a.ceil(y/4)},clone:function(){var M=c.clone.call(this);return M.words=this.words.slice(0),M},random:function(M){for(var y=[],F=0;F>>2]>>>24-D%4*8&255;Y.push((d>>>4).toString(16)),Y.push((15&d).toString(16))}return Y.join("")},parse:function(M){for(var y=M.length,F=[],Y=0;Y>>3]|=parseInt(M.substr(Y,2),16)<<24-Y%8*4;return new Q.init(F,y/2)}},e=C.Latin1={stringify:function(M){for(var y=M.words,F=M.sigBytes,Y=[],D=0;D>>2]>>>24-D%4*8&255));return Y.join("")},parse:function(M){for(var y=M.length,F=[],Y=0;Y>>2]|=(255&M.charCodeAt(Y))<<24-Y%4*8;return new Q.init(F,y)}},f=C.Utf8={stringify:function(M){try{return decodeURIComponent(escape(e.stringify(M)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(M){return e.parse(unescape(encodeURIComponent(M)))}},p=r.BufferedBlockAlgorithm=c.extend({reset:function(){this._data=new Q.init,this._nDataBytes=0},_append:function(M){"string"==typeof M&&(M=f.parse(M)),this._data.concat(M),this._nDataBytes+=M.sigBytes},_process:function(M){var y,F=this._data,Y=F.words,D=F.sigBytes,d=this.blockSize,z=D/(4*d),aA=(z=M?a.ceil(z):a.max((0|z)-this._minBufferSize,0))*d,K=a.min(4*aA,D);if(aA){for(var $=0;$>>2]>>>24-f%4*8&255)<<16|(Q[f+1>>>2]>>>24-(f+1)%4*8&255)<<8|Q[f+2>>>2]>>>24-(f+2)%4*8&255,M=0;M<4&&f+.75*M>>6*(3-M)&63));var y=w.charAt(64);if(y)for(;e.length%4;)e.push(y);return e.join("")},parse:function(c){var Q=c.length,C=this._map,w=this._reverseMap;if(!w){w=this._reverseMap=[];for(var e=0;e>>6-e%4*2;C[w>>>2]|=(f|p)<<24-w%4*8,w++}return s.create(C,w)}(c,Q,w)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},u.enc.Base64)},77590:function(N,A,n){"use strict";var u,s;n(69600),N.exports=(u=n(20757),s=u.lib.WordArray,u.enc.Base64url={stringify:function(c,Q){void 0===Q&&(Q=!0);var C=c.words,w=c.sigBytes,e=Q?this._safe_map:this._map;c.clamp();for(var f=[],p=0;p>>2]>>>24-p%4*8&255)<<16|(C[p+1>>>2]>>>24-(p+1)%4*8&255)<<8|C[p+2>>>2]>>>24-(p+2)%4*8&255,y=0;y<4&&p+.75*y>>6*(3-y)&63));var F=e.charAt(64);if(F)for(;f.length%4;)f.push(F);return f.join("")},parse:function(c,Q){void 0===Q&&(Q=!0);var C=c.length,w=Q?this._safe_map:this._map,e=this._reverseMap;if(!e){e=this._reverseMap=[];for(var f=0;f>>6-e%4*2;C[w>>>2]|=(f|p)<<24-w%4*8,w++}return s.create(C,w)}(c,C,e)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},u.enc.Base64url)},44978:function(N,A,n){"use strict";var u;n(69600),N.exports=(u=n(20757),function(){var s=u.lib.WordArray,g=u.enc;function E(r){return r<<8&4278255360|r>>>8&16711935}g.Utf16=g.Utf16BE={stringify:function(c){for(var Q=c.words,C=c.sigBytes,w=[],e=0;e>>2]>>>16-e%4*8&65535));return w.join("")},parse:function(c){for(var Q=c.length,C=[],w=0;w>>1]|=c.charCodeAt(w)<<16-w%2*16;return s.create(C,2*Q)}},g.Utf16LE={stringify:function(c){for(var Q=c.words,C=c.sigBytes,w=[],e=0;e>>2]>>>16-e%4*8&65535);w.push(String.fromCharCode(f))}return w.join("")},parse:function(c){for(var Q=c.length,C=[],w=0;w>>1]|=E(c.charCodeAt(w)<<16-w%2*16);return s.create(C,2*Q)}}}(),u.enc.Utf16)},53839:function(N,A,n){"use strict";var u,a,o,s,g,h,r;n(92222),N.exports=(u=n(20757),n(49865),n(6727),g=(o=(a=u).lib).WordArray,r=(h=a.algo).EvpKDF=(s=o.Base).extend({cfg:s.extend({keySize:4,hasher:h.MD5,iterations:1}),init:function(Q){this.cfg=this.cfg.extend(Q)},compute:function(Q,C){for(var w,e=this.cfg,f=e.hasher.create(),p=g.create(),v=p.words,S=e.keySize,I=e.iterations;v.lengthe&&(C=Q.finalize(C)),C.clamp();for(var f=this._oKey=C.clone(),p=this._iKey=C.clone(),v=f.words,S=p.words,I=0;I>>2]|=E[Q]<<24-Q%4*8;g.call(this,c,r)}else g.apply(this,arguments)};h.prototype=s}}(),u.lib.WordArray},N.exports=a(n(20757))},23440:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),function(a){var o=u,s=o.lib,g=s.WordArray,h=s.Hasher,E=o.algo,r=[];!function(){for(var f=0;f<64;f++)r[f]=4294967296*a.abs(a.sin(f+1))|0}();var c=E.MD5=h.extend({_doReset:function(){this._hash=new g.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(p,v){for(var S=0;S<16;S++){var I=v+S,M=p[I];p[I]=16711935&(M<<8|M>>>24)|4278255360&(M<<24|M>>>8)}var y=this._hash.words,F=p[v+0],Y=p[v+1],D=p[v+2],d=p[v+3],H=p[v+4],z=p[v+5],aA=p[v+6],K=p[v+7],$=p[v+8],nA=p[v+9],uA=p[v+10],wA=p[v+11],NA=p[v+12],yA=p[v+13],TA=p[v+14],kA=p[v+15],W=y[0],fA=y[1],iA=y[2],eA=y[3];W=Q(W,fA,iA,eA,F,7,r[0]),eA=Q(eA,W,fA,iA,Y,12,r[1]),iA=Q(iA,eA,W,fA,D,17,r[2]),fA=Q(fA,iA,eA,W,d,22,r[3]),W=Q(W,fA,iA,eA,H,7,r[4]),eA=Q(eA,W,fA,iA,z,12,r[5]),iA=Q(iA,eA,W,fA,aA,17,r[6]),fA=Q(fA,iA,eA,W,K,22,r[7]),W=Q(W,fA,iA,eA,$,7,r[8]),eA=Q(eA,W,fA,iA,nA,12,r[9]),iA=Q(iA,eA,W,fA,uA,17,r[10]),fA=Q(fA,iA,eA,W,wA,22,r[11]),W=Q(W,fA,iA,eA,NA,7,r[12]),eA=Q(eA,W,fA,iA,yA,12,r[13]),iA=Q(iA,eA,W,fA,TA,17,r[14]),W=C(W,fA=Q(fA,iA,eA,W,kA,22,r[15]),iA,eA,Y,5,r[16]),eA=C(eA,W,fA,iA,aA,9,r[17]),iA=C(iA,eA,W,fA,wA,14,r[18]),fA=C(fA,iA,eA,W,F,20,r[19]),W=C(W,fA,iA,eA,z,5,r[20]),eA=C(eA,W,fA,iA,uA,9,r[21]),iA=C(iA,eA,W,fA,kA,14,r[22]),fA=C(fA,iA,eA,W,H,20,r[23]),W=C(W,fA,iA,eA,nA,5,r[24]),eA=C(eA,W,fA,iA,TA,9,r[25]),iA=C(iA,eA,W,fA,d,14,r[26]),fA=C(fA,iA,eA,W,$,20,r[27]),W=C(W,fA,iA,eA,yA,5,r[28]),eA=C(eA,W,fA,iA,D,9,r[29]),iA=C(iA,eA,W,fA,K,14,r[30]),W=w(W,fA=C(fA,iA,eA,W,NA,20,r[31]),iA,eA,z,4,r[32]),eA=w(eA,W,fA,iA,$,11,r[33]),iA=w(iA,eA,W,fA,wA,16,r[34]),fA=w(fA,iA,eA,W,TA,23,r[35]),W=w(W,fA,iA,eA,Y,4,r[36]),eA=w(eA,W,fA,iA,H,11,r[37]),iA=w(iA,eA,W,fA,K,16,r[38]),fA=w(fA,iA,eA,W,uA,23,r[39]),W=w(W,fA,iA,eA,yA,4,r[40]),eA=w(eA,W,fA,iA,F,11,r[41]),iA=w(iA,eA,W,fA,d,16,r[42]),fA=w(fA,iA,eA,W,aA,23,r[43]),W=w(W,fA,iA,eA,nA,4,r[44]),eA=w(eA,W,fA,iA,NA,11,r[45]),iA=w(iA,eA,W,fA,kA,16,r[46]),W=e(W,fA=w(fA,iA,eA,W,D,23,r[47]),iA,eA,F,6,r[48]),eA=e(eA,W,fA,iA,K,10,r[49]),iA=e(iA,eA,W,fA,TA,15,r[50]),fA=e(fA,iA,eA,W,z,21,r[51]),W=e(W,fA,iA,eA,NA,6,r[52]),eA=e(eA,W,fA,iA,d,10,r[53]),iA=e(iA,eA,W,fA,uA,15,r[54]),fA=e(fA,iA,eA,W,Y,21,r[55]),W=e(W,fA,iA,eA,$,6,r[56]),eA=e(eA,W,fA,iA,kA,10,r[57]),iA=e(iA,eA,W,fA,aA,15,r[58]),fA=e(fA,iA,eA,W,yA,21,r[59]),W=e(W,fA,iA,eA,H,6,r[60]),eA=e(eA,W,fA,iA,wA,10,r[61]),iA=e(iA,eA,W,fA,D,15,r[62]),fA=e(fA,iA,eA,W,nA,21,r[63]),y[0]=y[0]+W|0,y[1]=y[1]+fA|0,y[2]=y[2]+iA|0,y[3]=y[3]+eA|0},_doFinalize:function(){var p=this._data,v=p.words,S=8*this._nDataBytes,I=8*p.sigBytes;v[I>>>5]|=128<<24-I%32;var M=a.floor(S/4294967296),y=S;v[15+(I+64>>>9<<4)]=16711935&(M<<8|M>>>24)|4278255360&(M<<24|M>>>8),v[14+(I+64>>>9<<4)]=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),p.sigBytes=4*(v.length+1),this._process();for(var F=this._hash,Y=F.words,D=0;D<4;D++){var d=Y[D];Y[D]=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8)}return F},clone:function(){var p=h.clone.call(this);return p._hash=this._hash.clone(),p}});function Q(f,p,v,S,I,M,y){var F=f+(p&v|~p&S)+I+y;return(F<>>32-M)+p}function C(f,p,v,S,I,M,y){var F=f+(p&S|v&~S)+I+y;return(F<>>32-M)+p}function w(f,p,v,S,I,M,y){var F=f+(p^v^S)+I+y;return(F<>>32-M)+p}function e(f,p,v,S,I,M,y){var F=f+(v^(p|~S))+I+y;return(F<>>32-M)+p}o.MD5=h._createHelper(c),o.HmacMD5=h._createHmacHelper(c)}(Math),u.MD5)},70702:function(N,A,n){"use strict";var u;n(47042),N.exports=(u=n(20757),n(41582),u.mode.CFB=function(){var a=u.lib.BlockCipherMode.extend();function o(s,g,h,E){var r,c=this._iv;c?(r=c.slice(0),this._iv=void 0):r=this._prevBlock,E.encryptBlock(r,0);for(var Q=0;Q>24&255)){var E=h>>16&255,r=h>>8&255,c=255&h;255===E?(E=0,255===r?(r=0,255===c?c=0:++c):++r):++E,h=0,h+=E<<16,h+=r<<8,h+=c}else h+=16777216;return h}var g=a.Encryptor=a.extend({processBlock:function(E,r){var c=this._cipher,Q=c.blockSize,C=this._iv,w=this._counter;C&&(w=this._counter=C.slice(0),this._iv=void 0),function s(h){return 0===(h[0]=o(h[0]))&&(h[1]=o(h[1])),h}(w);var e=w.slice(0);c.encryptBlock(e,0);for(var f=0;f>>2]|=E<<24-r%4*8,o.sigBytes+=E},unpad:function(o){o.sigBytes-=255&o.words[o.sigBytes-1>>>2]}},u.pad.Ansix923)},74431:function(N,A,n){"use strict";var u;n(92222),N.exports=(u=n(20757),n(41582),u.pad.Iso10126={pad:function(o,s){var g=4*s,h=g-o.sigBytes%g;o.concat(u.lib.WordArray.random(h-1)).concat(u.lib.WordArray.create([h<<24],1))},unpad:function(o){o.sigBytes-=255&o.words[o.sigBytes-1>>>2]}},u.pad.Iso10126)},28800:function(N,A,n){"use strict";var u;n(92222),N.exports=(u=n(20757),n(41582),u.pad.Iso97971={pad:function(o,s){o.concat(u.lib.WordArray.create([2147483648],1)),u.pad.ZeroPadding.pad(o,s)},unpad:function(o){u.pad.ZeroPadding.unpad(o),o.sigBytes--}},u.pad.Iso97971)},60649:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),n(41582),u.pad.NoPadding={pad:function(){},unpad:function(){}},u.pad.NoPadding)},43992:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),n(41582),u.pad.ZeroPadding={pad:function(o,s){var g=4*s;o.clamp(),o.sigBytes+=g-(o.sigBytes%g||g)},unpad:function(o){var s=o.words,g=o.sigBytes-1;for(g=o.sigBytes-1;g>=0;g--)if(s[g>>>2]>>>24-g%4*8&255){o.sigBytes=g+1;break}}},u.pad.ZeroPadding)},83486:function(N,A,n){"use strict";var u,a,o,s,g,h,r,c;n(92222),N.exports=(u=n(20757),n(98921),n(6727),g=(o=(a=u).lib).WordArray,r=(h=a.algo).HMAC,c=h.PBKDF2=(s=o.Base).extend({cfg:s.extend({keySize:4,hasher:h.SHA256,iterations:25e4}),init:function(C){this.cfg=this.cfg.extend(C)},compute:function(C,w){for(var e=this.cfg,f=r.create(e.hasher,C),p=g.create(),v=g.create([1]),S=p.words,I=v.words,M=e.keySize,y=e.iterations;S.length>>16,w[1],w[0]<<16|w[3]>>>16,w[2],w[1]<<16|w[0]>>>16,w[3],w[2]<<16|w[1]>>>16],p=this._C=[w[2]<<16|w[2]>>>16,4294901760&w[0]|65535&w[1],w[3]<<16|w[3]>>>16,4294901760&w[1]|65535&w[2],w[0]<<16|w[0]>>>16,4294901760&w[2]|65535&w[3],w[1]<<16|w[1]>>>16,4294901760&w[3]|65535&w[0]];this._b=0;for(var v=0;v<4;v++)Q.call(this);for(v=0;v<8;v++)p[v]^=f[v+4&7];if(e){var S=e.words,I=S[0],M=S[1],y=16711935&(I<<8|I>>>24)|4278255360&(I<<24|I>>>8),F=16711935&(M<<8|M>>>24)|4278255360&(M<<24|M>>>8),Y=y>>>16|4294901760&F,D=F<<16|65535&y;for(p[0]^=y,p[1]^=Y,p[2]^=F,p[3]^=D,p[4]^=y,p[5]^=Y,p[6]^=F,p[7]^=D,v=0;v<4;v++)Q.call(this)}},_doProcessBlock:function(w,e){var f=this._X;Q.call(this),h[0]=f[0]^f[5]>>>16^f[3]<<16,h[1]=f[2]^f[7]>>>16^f[5]<<16,h[2]=f[4]^f[1]>>>16^f[7]<<16,h[3]=f[6]^f[3]>>>16^f[1]<<16;for(var p=0;p<4;p++)h[p]=16711935&(h[p]<<8|h[p]>>>24)|4278255360&(h[p]<<24|h[p]>>>8),w[e+p]^=h[p]},blockSize:4,ivSize:2});function Q(){for(var C=this._X,w=this._C,e=0;e<8;e++)E[e]=w[e];for(w[0]=w[0]+1295307597+this._b|0,w[1]=w[1]+3545052371+(w[0]>>>0>>0?1:0)|0,w[2]=w[2]+886263092+(w[1]>>>0>>0?1:0)|0,w[3]=w[3]+1295307597+(w[2]>>>0>>0?1:0)|0,w[4]=w[4]+3545052371+(w[3]>>>0>>0?1:0)|0,w[5]=w[5]+886263092+(w[4]>>>0>>0?1:0)|0,w[6]=w[6]+1295307597+(w[5]>>>0>>0?1:0)|0,w[7]=w[7]+3545052371+(w[6]>>>0>>0?1:0)|0,this._b=w[7]>>>0>>0?1:0,e=0;e<8;e++){var f=C[e]+w[e],p=65535&f,v=f>>>16;r[e]=((p*p>>>17)+p*v>>>15)+v*v^((4294901760&f)*f|0)+((65535&f)*f|0)}C[0]=r[0]+(r[7]<<16|r[7]>>>16)+(r[6]<<16|r[6]>>>16)|0,C[1]=r[1]+(r[0]<<8|r[0]>>>24)+r[7]|0,C[2]=r[2]+(r[1]<<16|r[1]>>>16)+(r[0]<<16|r[0]>>>16)|0,C[3]=r[3]+(r[2]<<8|r[2]>>>24)+r[1]|0,C[4]=r[4]+(r[3]<<16|r[3]>>>16)+(r[2]<<16|r[2]>>>16)|0,C[5]=r[5]+(r[4]<<8|r[4]>>>24)+r[3]|0,C[6]=r[6]+(r[5]<<16|r[5]>>>16)+(r[4]<<16|r[4]>>>16)|0,C[7]=r[7]+(r[6]<<8|r[6]>>>24)+r[5]|0}a.RabbitLegacy=s._createHelper(c)}(),u.RabbitLegacy)},25323:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),n(97508),n(23440),n(53839),n(41582),function(){var a=u,s=a.lib.StreamCipher,h=[],E=[],r=[],c=a.algo.Rabbit=s.extend({_doReset:function(){for(var w=this._key.words,e=this.cfg.iv,f=0;f<4;f++)w[f]=16711935&(w[f]<<8|w[f]>>>24)|4278255360&(w[f]<<24|w[f]>>>8);var p=this._X=[w[0],w[3]<<16|w[2]>>>16,w[1],w[0]<<16|w[3]>>>16,w[2],w[1]<<16|w[0]>>>16,w[3],w[2]<<16|w[1]>>>16],v=this._C=[w[2]<<16|w[2]>>>16,4294901760&w[0]|65535&w[1],w[3]<<16|w[3]>>>16,4294901760&w[1]|65535&w[2],w[0]<<16|w[0]>>>16,4294901760&w[2]|65535&w[3],w[1]<<16|w[1]>>>16,4294901760&w[3]|65535&w[0]];for(this._b=0,f=0;f<4;f++)Q.call(this);for(f=0;f<8;f++)v[f]^=p[f+4&7];if(e){var S=e.words,I=S[0],M=S[1],y=16711935&(I<<8|I>>>24)|4278255360&(I<<24|I>>>8),F=16711935&(M<<8|M>>>24)|4278255360&(M<<24|M>>>8),Y=y>>>16|4294901760&F,D=F<<16|65535&y;for(v[0]^=y,v[1]^=Y,v[2]^=F,v[3]^=D,v[4]^=y,v[5]^=Y,v[6]^=F,v[7]^=D,f=0;f<4;f++)Q.call(this)}},_doProcessBlock:function(w,e){var f=this._X;Q.call(this),h[0]=f[0]^f[5]>>>16^f[3]<<16,h[1]=f[2]^f[7]>>>16^f[5]<<16,h[2]=f[4]^f[1]>>>16^f[7]<<16,h[3]=f[6]^f[3]>>>16^f[1]<<16;for(var p=0;p<4;p++)h[p]=16711935&(h[p]<<8|h[p]>>>24)|4278255360&(h[p]<<24|h[p]>>>8),w[e+p]^=h[p]},blockSize:4,ivSize:2});function Q(){for(var C=this._X,w=this._C,e=0;e<8;e++)E[e]=w[e];for(w[0]=w[0]+1295307597+this._b|0,w[1]=w[1]+3545052371+(w[0]>>>0>>0?1:0)|0,w[2]=w[2]+886263092+(w[1]>>>0>>0?1:0)|0,w[3]=w[3]+1295307597+(w[2]>>>0>>0?1:0)|0,w[4]=w[4]+3545052371+(w[3]>>>0>>0?1:0)|0,w[5]=w[5]+886263092+(w[4]>>>0>>0?1:0)|0,w[6]=w[6]+1295307597+(w[5]>>>0>>0?1:0)|0,w[7]=w[7]+3545052371+(w[6]>>>0>>0?1:0)|0,this._b=w[7]>>>0>>0?1:0,e=0;e<8;e++){var f=C[e]+w[e],p=65535&f,v=f>>>16;r[e]=((p*p>>>17)+p*v>>>15)+v*v^((4294901760&f)*f|0)+((65535&f)*f|0)}C[0]=r[0]+(r[7]<<16|r[7]>>>16)+(r[6]<<16|r[6]>>>16)|0,C[1]=r[1]+(r[0]<<8|r[0]>>>24)+r[7]|0,C[2]=r[2]+(r[1]<<16|r[1]>>>16)+(r[0]<<16|r[0]>>>16)|0,C[3]=r[3]+(r[2]<<8|r[2]>>>24)+r[1]|0,C[4]=r[4]+(r[3]<<16|r[3]>>>16)+(r[2]<<16|r[2]>>>16)|0,C[5]=r[5]+(r[4]<<8|r[4]>>>24)+r[3]|0,C[6]=r[6]+(r[5]<<16|r[5]>>>16)+(r[4]<<16|r[4]>>>16)|0,C[7]=r[7]+(r[6]<<8|r[6]>>>24)+r[5]|0}a.Rabbit=s._createHelper(c)}(),u.Rabbit)},94640:function(N,A,n){"use strict";var u;n(41539),n(88674),N.exports=(u=n(20757),n(97508),n(23440),n(53839),n(41582),function(){var a=u,s=a.lib.StreamCipher,g=a.algo,h=g.RC4=s.extend({_doReset:function(){for(var Q=this._key,C=Q.words,w=Q.sigBytes,e=this._S=[],f=0;f<256;f++)e[f]=f;f=0;for(var p=0;f<256;f++){var v=f%w,I=e[f];e[f]=e[p=(p+e[f]+(C[v>>>2]>>>24-v%4*8&255))%256],e[p]=I}this._i=this._j=0},_doProcessBlock:function(Q,C){Q[C]^=E.call(this)},keySize:8,ivSize:0});function E(){for(var c=this._S,Q=this._i,C=this._j,w=0,e=0;e<4;e++){var f=c[Q=(Q+1)%256];c[Q]=c[C=(C+c[Q])%256],c[C]=f,w|=c[(c[Q]+c[C])%256]<<24-8*e}return this._i=Q,this._j=C,w}a.RC4=s._createHelper(h);var r=g.RC4Drop=h.extend({cfg:h.cfg.extend({drop:192}),_doReset:function(){h._doReset.call(this);for(var Q=this.cfg.drop;Q>0;Q--)E.call(this)}});a.RC4Drop=s._createHelper(r)}(),u.RC4)},78714:function(N,A,n){"use strict";var u;N.exports=(u=n(20757),function(a){var o=u,s=o.lib,g=s.WordArray,h=s.Hasher,E=o.algo,r=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]),c=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]),Q=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]),C=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]),w=g.create([0,1518500249,1859775393,2400959708,2840853838]),e=g.create([1352829926,1548603684,1836072691,2053994217,0]),f=E.RIPEMD160=h.extend({_doReset:function(){this._hash=g.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(Y,D){for(var d=0;d<16;d++){var H=D+d,z=Y[H];Y[H]=16711935&(z<<8|z>>>24)|4278255360&(z<<24|z>>>8)}var yA,TA,kA,W,fA,iA,eA,EA,mA,GA,j,aA=this._hash.words,K=w.words,$=e.words,nA=r.words,uA=c.words,wA=Q.words,NA=C.words;for(iA=yA=aA[0],eA=TA=aA[1],EA=kA=aA[2],mA=W=aA[3],GA=fA=aA[4],d=0;d<80;d+=1)j=yA+Y[D+nA[d]]|0,j+=d<16?p(TA,kA,W)+K[0]:d<32?v(TA,kA,W)+K[1]:d<48?S(TA,kA,W)+K[2]:d<64?I(TA,kA,W)+K[3]:M(TA,kA,W)+K[4],j=(j=y(j|=0,wA[d]))+fA|0,yA=fA,fA=W,W=y(kA,10),kA=TA,TA=j,j=iA+Y[D+uA[d]]|0,j+=d<16?M(eA,EA,mA)+$[0]:d<32?I(eA,EA,mA)+$[1]:d<48?S(eA,EA,mA)+$[2]:d<64?v(eA,EA,mA)+$[3]:p(eA,EA,mA)+$[4],j=(j=y(j|=0,NA[d]))+GA|0,iA=GA,GA=mA,mA=y(EA,10),EA=eA,eA=j;j=aA[1]+kA+mA|0,aA[1]=aA[2]+W+GA|0,aA[2]=aA[3]+fA+iA|0,aA[3]=aA[4]+yA+eA|0,aA[4]=aA[0]+TA+EA|0,aA[0]=j},_doFinalize:function(){var Y=this._data,D=Y.words,d=8*this._nDataBytes,H=8*Y.sigBytes;D[H>>>5]|=128<<24-H%32,D[14+(H+64>>>9<<4)]=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),Y.sigBytes=4*(D.length+1),this._process();for(var z=this._hash,aA=z.words,K=0;K<5;K++){var $=aA[K];aA[K]=16711935&($<<8|$>>>24)|4278255360&($<<24|$>>>8)}return z},clone:function(){var Y=h.clone.call(this);return Y._hash=this._hash.clone(),Y}});function p(F,Y,D){return F^Y^D}function v(F,Y,D){return F&Y|~F&D}function S(F,Y,D){return(F|~Y)^D}function I(F,Y,D){return F&D|Y&~D}function M(F,Y,D){return F^(Y|~D)}function y(F,Y){return F<>>32-Y}o.RIPEMD160=h._createHelper(f),o.HmacRIPEMD160=h._createHmacHelper(f)}(Math),u.RIPEMD160)},49865:function(N,A,n){"use strict";var u,a,o,s,g,E,r;N.exports=(u=n(20757),s=(o=(a=u).lib).WordArray,E=[],r=a.algo.SHA1=(g=o.Hasher).extend({_doReset:function(){this._hash=new s.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(Q,C){for(var w=this._hash.words,e=w[0],f=w[1],p=w[2],v=w[3],S=w[4],I=0;I<80;I++){if(I<16)E[I]=0|Q[C+I];else{var M=E[I-3]^E[I-8]^E[I-14]^E[I-16];E[I]=M<<1|M>>>31}var y=(e<<5|e>>>27)+S+E[I];y+=I<20?1518500249+(f&p|~f&v):I<40?1859775393+(f^p^v):I<60?(f&p|f&v|p&v)-1894007588:(f^p^v)-899497514,S=v,v=p,p=f<<30|f>>>2,f=e,e=y}w[0]=w[0]+e|0,w[1]=w[1]+f|0,w[2]=w[2]+p|0,w[3]=w[3]+v|0,w[4]=w[4]+S|0},_doFinalize:function(){var Q=this._data,C=Q.words,w=8*this._nDataBytes,e=8*Q.sigBytes;return C[e>>>5]|=128<<24-e%32,C[14+(e+64>>>9<<4)]=Math.floor(w/4294967296),C[15+(e+64>>>9<<4)]=w,Q.sigBytes=4*C.length,this._process(),this._hash},clone:function(){var Q=g.clone.call(this);return Q._hash=this._hash.clone(),Q}}),a.SHA1=g._createHelper(r),a.HmacSHA1=g._createHmacHelper(r),u.SHA1)},96876:function(N,A,n){"use strict";var u,a,s,g,h,E;N.exports=(u=n(20757),n(98921),s=(a=u).lib.WordArray,E=(g=a.algo).SHA224=(h=g.SHA256).extend({_doReset:function(){this._hash=new s.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var c=h._doFinalize.call(this);return c.sigBytes-=4,c}}),a.SHA224=h._createHelper(E),a.HmacSHA224=h._createHmacHelper(E),u.SHA224)},98921:function(N,A,n){"use strict";var u;n(47042),N.exports=(u=n(20757),function(a){var o=u,s=o.lib,g=s.WordArray,h=s.Hasher,E=o.algo,r=[],c=[];!function(){function w(v){for(var S=a.sqrt(v),I=2;I<=S;I++)if(!(v%I))return!1;return!0}function e(v){return 4294967296*(v-(0|v))|0}for(var f=2,p=0;p<64;)w(f)&&(p<8&&(r[p]=e(a.pow(f,.5))),c[p]=e(a.pow(f,.3333333333333333)),p++),f++}();var Q=[],C=E.SHA256=h.extend({_doReset:function(){this._hash=new g.init(r.slice(0))},_doProcessBlock:function(e,f){for(var p=this._hash.words,v=p[0],S=p[1],I=p[2],M=p[3],y=p[4],F=p[5],Y=p[6],D=p[7],d=0;d<64;d++){if(d<16)Q[d]=0|e[f+d];else{var H=Q[d-15],aA=Q[d-2];Q[d]=((H<<25|H>>>7)^(H<<14|H>>>18)^H>>>3)+Q[d-7]+((aA<<15|aA>>>17)^(aA<<13|aA>>>19)^aA>>>10)+Q[d-16]}var nA=v&S^v&I^S&I,NA=D+((y<<26|y>>>6)^(y<<21|y>>>11)^(y<<7|y>>>25))+(y&F^~y&Y)+c[d]+Q[d];D=Y,Y=F,F=y,y=M+NA|0,M=I,I=S,S=v,v=NA+(((v<<30|v>>>2)^(v<<19|v>>>13)^(v<<10|v>>>22))+nA)|0}p[0]=p[0]+v|0,p[1]=p[1]+S|0,p[2]=p[2]+I|0,p[3]=p[3]+M|0,p[4]=p[4]+y|0,p[5]=p[5]+F|0,p[6]=p[6]+Y|0,p[7]=p[7]+D|0},_doFinalize:function(){var e=this._data,f=e.words,p=8*this._nDataBytes,v=8*e.sigBytes;return f[v>>>5]|=128<<24-v%32,f[14+(v+64>>>9<<4)]=a.floor(p/4294967296),f[15+(v+64>>>9<<4)]=p,e.sigBytes=4*f.length,this._process(),this._hash},clone:function(){var e=h.clone.call(this);return e._hash=this._hash.clone(),e}});o.SHA256=h._createHelper(C),o.HmacSHA256=h._createHmacHelper(C)}(Math),u.SHA256)},88342:function(N,A,n){"use strict";var u;n(47042),N.exports=(u=n(20757),n(82601),function(a){var o=u,s=o.lib,g=s.WordArray,h=s.Hasher,r=o.x64.Word,c=o.algo,Q=[],C=[],w=[];!function(){for(var p=1,v=0,S=0;S<24;S++){Q[p+5*v]=(S+1)*(S+2)/2%64;var M=(2*p+3*v)%5;p=v%5,v=M}for(p=0;p<5;p++)for(v=0;v<5;v++)C[p+5*v]=v+(2*p+3*v)%5*5;for(var y=1,F=0;F<24;F++){for(var Y=0,D=0,d=0;d<7;d++){if(1&y){var H=(1<>>24)|4278255360&(F<<24|F>>>8),(D=I[y]).high^=Y=16711935&(Y<<8|Y>>>24)|4278255360&(Y<<24|Y>>>8),D.low^=F}for(var d=0;d<24;d++){for(var H=0;H<5;H++){for(var z=0,aA=0,K=0;K<5;K++)z^=(D=I[H+5*K]).high,aA^=D.low;var $=e[H];$.high=z,$.low=aA}for(H=0;H<5;H++){var nA=e[(H+4)%5],uA=e[(H+1)%5],wA=uA.high,NA=uA.low;for(z=nA.high^(wA<<1|NA>>>31),aA=nA.low^(NA<<1|wA>>>31),K=0;K<5;K++)(D=I[H+5*K]).high^=z,D.low^=aA}for(var yA=1;yA<25;yA++){var TA=(D=I[yA]).high,kA=D.low,W=Q[yA];W<32?(z=TA<>>32-W,aA=kA<>>32-W):(z=kA<>>64-W,aA=TA<>>64-W);var fA=e[C[yA]];fA.high=z,fA.low=aA}var iA=e[0],eA=I[0];for(iA.high=eA.high,iA.low=eA.low,H=0;H<5;H++)for(K=0;K<5;K++){var EA=e[yA=H+5*K],mA=e[(H+1)%5+5*K],GA=e[(H+2)%5+5*K];(D=I[yA]).high=EA.high^~mA.high&GA.high,D.low=EA.low^~mA.low&GA.low}var D,j=w[d];(D=I[0]).high^=j.high,D.low^=j.low}},_doFinalize:function(){var v=this._data,S=v.words,M=8*v.sigBytes,y=32*this.blockSize;S[M>>>5]|=1<<24-M%32,S[(a.ceil((M+1)/y)*y>>>5)-1]|=128,v.sigBytes=4*S.length,this._process();for(var F=this._state,Y=this.cfg.outputLength/8,D=Y/8,d=[],H=0;H>>24)|4278255360&(aA<<24|aA>>>8),d.push(K=16711935&(K<<8|K>>>24)|4278255360&(K<<24|K>>>8)),d.push(aA)}return new g.init(d,Y)},clone:function(){for(var v=h.clone.call(this),S=v._state=this._state.slice(0),I=0;I<25;I++)S[I]=S[I].clone();return v}});o.SHA3=h._createHelper(f),o.HmacSHA3=h._createHmacHelper(f)}(Math),u.SHA3)},68122:function(N,A,n){"use strict";var u,a,o,s,g,h,E,r;N.exports=(u=n(20757),n(82601),n(50133),s=(o=(a=u).x64).Word,g=o.WordArray,r=(h=a.algo).SHA384=(E=h.SHA512).extend({_doReset:function(){this._hash=new g.init([new s.init(3418070365,3238371032),new s.init(1654270250,914150663),new s.init(2438529370,812702999),new s.init(355462360,4144912697),new s.init(1731405415,4290775857),new s.init(2394180231,1750603025),new s.init(3675008525,1694076839),new s.init(1203062813,3204075428)])},_doFinalize:function(){var Q=E._doFinalize.call(this);return Q.sigBytes-=16,Q}}),a.SHA384=E._createHelper(r),a.HmacSHA384=E._createHmacHelper(r),u.SHA384)},50133:function(N,A,n){"use strict";var a;a=function(u){return function(){var a=u,s=a.lib.Hasher,g=a.x64,h=g.Word,E=g.WordArray,r=a.algo;function c(){return h.create.apply(h,arguments)}var Q=[c(1116352408,3609767458),c(1899447441,602891725),c(3049323471,3964484399),c(3921009573,2173295548),c(961987163,4081628472),c(1508970993,3053834265),c(2453635748,2937671579),c(2870763221,3664609560),c(3624381080,2734883394),c(310598401,1164996542),c(607225278,1323610764),c(1426881987,3590304994),c(1925078388,4068182383),c(2162078206,991336113),c(2614888103,633803317),c(3248222580,3479774868),c(3835390401,2666613458),c(4022224774,944711139),c(264347078,2341262773),c(604807628,2007800933),c(770255983,1495990901),c(1249150122,1856431235),c(1555081692,3175218132),c(1996064986,2198950837),c(2554220882,3999719339),c(2821834349,766784016),c(2952996808,2566594879),c(3210313671,3203337956),c(3336571891,1034457026),c(3584528711,2466948901),c(113926993,3758326383),c(338241895,168717936),c(666307205,1188179964),c(773529912,1546045734),c(1294757372,1522805485),c(1396182291,2643833823),c(1695183700,2343527390),c(1986661051,1014477480),c(2177026350,1206759142),c(2456956037,344077627),c(2730485921,1290863460),c(2820302411,3158454273),c(3259730800,3505952657),c(3345764771,106217008),c(3516065817,3606008344),c(3600352804,1432725776),c(4094571909,1467031594),c(275423344,851169720),c(430227734,3100823752),c(506948616,1363258195),c(659060556,3750685593),c(883997877,3785050280),c(958139571,3318307427),c(1322822218,3812723403),c(1537002063,2003034995),c(1747873779,3602036899),c(1955562222,1575990012),c(2024104815,1125592928),c(2227730452,2716904306),c(2361852424,442776044),c(2428436474,593698344),c(2756734187,3733110249),c(3204031479,2999351573),c(3329325298,3815920427),c(3391569614,3928383900),c(3515267271,566280711),c(3940187606,3454069534),c(4118630271,4000239992),c(116418474,1914138554),c(174292421,2731055270),c(289380356,3203993006),c(460393269,320620315),c(685471733,587496836),c(852142971,1086792851),c(1017036298,365543100),c(1126000580,2618297676),c(1288033470,3409855158),c(1501505948,4234509866),c(1607167915,987167468),c(1816402316,1246189591)],C=[];!function(){for(var e=0;e<80;e++)C[e]=c()}();var w=r.SHA512=s.extend({_doReset:function(){this._hash=new E.init([new h.init(1779033703,4089235720),new h.init(3144134277,2227873595),new h.init(1013904242,4271175723),new h.init(2773480762,1595750129),new h.init(1359893119,2917565137),new h.init(2600822924,725511199),new h.init(528734635,4215389547),new h.init(1541459225,327033209)])},_doProcessBlock:function(f,p){for(var v=this._hash.words,S=v[0],I=v[1],M=v[2],y=v[3],F=v[4],Y=v[5],D=v[6],d=v[7],H=S.high,z=S.low,aA=I.high,K=I.low,$=M.high,nA=M.low,uA=y.high,wA=y.low,NA=F.high,yA=F.low,TA=Y.high,kA=Y.low,W=D.high,fA=D.low,iA=d.high,eA=d.low,EA=H,mA=z,GA=aA,j=K,b=$,rA=nA,oA=uA,pA=wA,xA=NA,gA=yA,CA=TA,DA=kA,YA=W,zA=fA,IA=iA,jA=eA,ut=0;ut<80;ut++){var Ct,ct,pt=C[ut];if(ut<16)ct=pt.high=0|f[p+2*ut],Ct=pt.low=0|f[p+2*ut+1];else{var Yt=C[ut-15],KA=Yt.high,ZA=Yt.low,ft=(ZA>>>1|KA<<31)^(ZA>>>8|KA<<24)^(ZA>>>7|KA<<25),Dt=C[ut-2],Nt=Dt.high,vA=Dt.low,q=(vA>>>19|Nt<<13)^(vA<<3|Nt>>>29)^(vA>>>6|Nt<<26),J=C[ut-7],_=C[ut-16],$A=_.low;pt.high=ct=(ct=(ct=((KA>>>1|ZA<<31)^(KA>>>8|ZA<<24)^KA>>>7)+J.high+((Ct=ft+J.low)>>>0>>0?1:0))+((Nt>>>19|vA<<13)^(Nt<<3|vA>>>29)^Nt>>>6)+((Ct+=q)>>>0>>0?1:0))+_.high+((Ct+=$A)>>>0<$A>>>0?1:0),pt.low=Ct}var Ae,O=xA&CA^~xA&YA,qA=gA&DA^~gA&zA,et=EA&GA^EA&b^GA&b,st=(mA>>>28|EA<<4)^(mA<<30|EA>>>2)^(mA<<25|EA>>>7),bt=Q[ut],an=bt.low,Wt=IA+((xA>>>14|gA<<18)^(xA>>>18|gA<<14)^(xA<<23|gA>>>9))+((Ae=jA+((gA>>>14|xA<<18)^(gA>>>18|xA<<14)^(gA<<23|xA>>>9)))>>>0>>0?1:0),oe=st+(mA&j^mA&rA^j&rA);IA=YA,jA=zA,YA=CA,zA=DA,CA=xA,DA=gA,xA=oA+(Wt=(Wt=(Wt=Wt+O+((Ae+=qA)>>>0>>0?1:0))+bt.high+((Ae+=an)>>>0>>0?1:0))+ct+((Ae+=Ct)>>>0>>0?1:0))+((gA=pA+Ae|0)>>>0>>0?1:0)|0,oA=b,pA=rA,b=GA,rA=j,GA=EA,j=mA,EA=Wt+(((EA>>>28|mA<<4)^(EA<<30|mA>>>2)^(EA<<25|mA>>>7))+et+(oe>>>0>>0?1:0))+((mA=Ae+oe|0)>>>0>>0?1:0)|0}z=S.low=z+mA,S.high=H+EA+(z>>>0>>0?1:0),K=I.low=K+j,I.high=aA+GA+(K>>>0>>0?1:0),nA=M.low=nA+rA,M.high=$+b+(nA>>>0>>0?1:0),wA=y.low=wA+pA,y.high=uA+oA+(wA>>>0>>0?1:0),yA=F.low=yA+gA,F.high=NA+xA+(yA>>>0>>0?1:0),kA=Y.low=kA+DA,Y.high=TA+CA+(kA>>>0>>0?1:0),fA=D.low=fA+zA,D.high=W+YA+(fA>>>0>>0?1:0),eA=d.low=eA+jA,d.high=iA+IA+(eA>>>0>>0?1:0)},_doFinalize:function(){var f=this._data,p=f.words,v=8*this._nDataBytes,S=8*f.sigBytes;return p[S>>>5]|=128<<24-S%32,p[30+(S+128>>>10<<5)]=Math.floor(v/4294967296),p[31+(S+128>>>10<<5)]=v,f.sigBytes=4*p.length,this._process(),this._hash.toX32()},clone:function(){var f=s.clone.call(this);return f._hash=this._hash.clone(),f},blockSize:32});a.SHA512=s._createHelper(w),a.HmacSHA512=s._createHmacHelper(w)}(),u.SHA512},N.exports=a(n(20757),n(82601))},58437:function(N,A,n){"use strict";var u;n(47042),N.exports=(u=n(20757),n(97508),n(23440),n(53839),n(41582),function(){var a=u,o=a.lib,s=o.WordArray,g=o.BlockCipher,h=a.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],r=[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],c=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],Q=[{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}],C=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],w=h.DES=g.extend({_doReset:function(){for(var I=this._key.words,M=[],y=0;y<56;y++){var F=E[y]-1;M[y]=I[F>>>5]>>>31-F%32&1}for(var Y=this._subKeys=[],D=0;D<16;D++){var d=Y[D]=[],H=c[D];for(y=0;y<24;y++)d[y/6|0]|=M[(r[y]-1+H)%28]<<31-y%6,d[4+(y/6|0)]|=M[28+(r[y+24]-1+H)%28]<<31-y%6;for(d[0]=d[0]<<1|d[0]>>>31,y=1;y<7;y++)d[y]=d[y]>>>4*(y-1)+3;d[7]=d[7]<<5|d[7]>>>27}var z=this._invSubKeys=[];for(y=0;y<16;y++)z[y]=Y[15-y]},encryptBlock:function(S,I){this._doCryptBlock(S,I,this._subKeys)},decryptBlock:function(S,I){this._doCryptBlock(S,I,this._invSubKeys)},_doCryptBlock:function(S,I,M){this._lBlock=S[I],this._rBlock=S[I+1],e.call(this,4,252645135),e.call(this,16,65535),f.call(this,2,858993459),f.call(this,8,16711935),e.call(this,1,1431655765);for(var y=0;y<16;y++){for(var F=M[y],Y=this._lBlock,D=this._rBlock,d=0,H=0;H<8;H++)d|=Q[H][((D^F[H])&C[H])>>>0];this._lBlock=D,this._rBlock=Y^d}var z=this._lBlock;this._lBlock=this._rBlock,this._rBlock=z,e.call(this,1,1431655765),f.call(this,8,16711935),f.call(this,2,858993459),e.call(this,16,65535),e.call(this,4,252645135),S[I]=this._lBlock,S[I+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function e(v,S){var I=(this._lBlock>>>v^this._rBlock)&S;this._rBlock^=I,this._lBlock^=I<>>v^this._lBlock)&S;this._lBlock^=I,this._rBlock^=I<192.");var M=I.slice(0,2),y=I.length<4?I.slice(0,2):I.slice(2,4),F=I.length<6?I.slice(0,2):I.slice(4,6);this._des1=w.createEncryptor(s.create(M)),this._des2=w.createEncryptor(s.create(y)),this._des3=w.createEncryptor(s.create(F))},encryptBlock:function(S,I){this._des1.encryptBlock(S,I),this._des2.decryptBlock(S,I),this._des3.encryptBlock(S,I)},decryptBlock:function(S,I){this._des3.decryptBlock(S,I),this._des2.encryptBlock(S,I),this._des1.decryptBlock(S,I)},keySize:6,ivSize:2,blockSize:2});a.TripleDES=g._createHelper(p)}(),u.TripleDES)},82601:function(N,A,n){"use strict";var u,s,g,h,E;n(47042),N.exports=(u=n(20757),g=(s=u.lib).Base,h=s.WordArray,(E=u.x64={}).Word=g.extend({init:function(C,w){this.high=C,this.low=w}}),E.WordArray=g.extend({init:function(C,w){C=this.words=C||[],this.sigBytes=null!=w?w:8*C.length},toX32:function(){for(var C=this.words,w=C.length,e=[],f=0;f=r.length?{done:!0}:{done:!1,value:r[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(r,c){(null==c||c>r.length)&&(c=r.length);for(var Q=0,C=new Array(c);Q=0;--j){var b=this.tryEntries[j],rA=b.completion;if("root"===b.tryLoc)return GA("end");if(b.tryLoc<=this.prev){var oA=C.call(b,"catchLoc"),pA=C.call(b,"finallyLoc");if(oA&&pA){if(this.prev=0;--GA){var j=this.tryEntries[GA];if(j.tryLoc<=this.prev&&C.call(j,"finallyLoc")&&this.prev=0;--mA){var GA=this.tryEntries[mA];if(GA.finallyLoc===EA)return this.complete(GA.completion,GA.afterLoc),W(GA),d}},catch:function(EA){for(var mA=this.tryEntries.length-1;mA>=0;--mA){var GA=this.tryEntries[mA];if(GA.tryLoc===EA){var j=GA.completion;if("throw"===j.type){var b=j.arg;W(GA)}return b}}throw new Error("illegal catch attempt")},delegateYield:function(EA,mA,GA){return this.delegate={iterator:iA(EA),resultName:mA,nextLoc:GA},"next"===this.method&&(this.arg=r),d}},c}n(72443),n(39341),n(73706),n(10408),n(30489),n(54747),n(68309),n(88674),n(39714),n(91038),n(74916),n(4723),n(32165),n(66992),n(41539),n(78783),n(33948),n(82526),n(41817),n(47042);N.exports=function(){function r(Q){this.stateTable=Q.stateTable,this.accepting=Q.accepting,this.tags=Q.tags}var c=r.prototype;return c.match=function(C){var w,e=this;return(w={})[Symbol.iterator]=s().mark(function f(){var p,v,S,I,M,y;return s().wrap(function(Y){for(;;)switch(Y.prev=Y.next){case 0:p=1,v=null,S=null,I=null,M=0;case 5:if(!(M=v)){Y.next=13;break}return Y.next=13,[v,S,e.tags[I]];case 13:p=e.stateTable[1][y],v=null;case 15:0!==p&&null==v&&(v=M),e.accepting[p]&&(S=M),0===p&&(p=1);case 18:M++,Y.next=5;break;case 21:if(!(null!=v&&null!=S&&S>=v)){Y.next=24;break}return Y.next=24,[v,S,e.tags[p]];case 24:case"end":return Y.stop()}},f)}),w},c.apply=function(C,w){for(var f,e=u(this.match(C));!(f=e()).done;)for(var y,p=f.value,v=p[0],S=p[1],M=u(p[2]);!(y=M()).done;){var F=y.value;"function"==typeof w[F]&&w[F](v,S,C.slice(v,S+1))}},r}()},78478:function(N,A,n){"use strict";var u=n(48823).Buffer;n(41539),n(88674),n(47042),n(26699);var a=n(73857),o=n(42635);N.exports=function(){function s(h){var E;for(this.data=h,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var r=this.readUInt32(),c="";for(E=0;E<4;E++)c+=String.fromCharCode(this.data[this.pos++]);switch(c){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(r);break;case"IDAT":for(E=0;E0)for(E=0;Ethis.data.length)throw new Error("Incomplete or corrupt PNG file")}}s.decode=function(E,r){return a.readFile(E,function(c,Q){return new s(Q).decode(function(w){return r(w)})})},s.load=function(E){return new s(a.readFileSync(E))};var g=s.prototype;return g.read=function(E){for(var r=new Array(E),c=0;c"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof E);return o(E,r,c)}),h.alloc||(h.alloc=function(E,r,c){if("number"!=typeof E)throw new TypeError('The "size" argument must be of type number. Received type '+typeof E);if(E<0||E>=2147483648)throw new RangeError('The value "'+E+'" is invalid for option "size"');var Q=o(E);return r&&0!==r.length?"string"==typeof c?Q.fill(r,c):Q.fill(r):Q.fill(0),Q}),!s.kStringMaxLength)try{s.kStringMaxLength=u.binding("buffer").kStringMaxLength}catch{}s.constants||(s.constants={MAX_LENGTH:s.kMaxLength},s.kStringMaxLength&&(s.constants.MAX_STRING_LENGTH=s.kStringMaxLength)),N.exports=s},33361:function(N,A,n){"use strict";function u(p,v){var S=Object.keys(p);if(Object.getOwnPropertySymbols){var I=Object.getOwnPropertySymbols(p);v&&(I=I.filter(function(M){return Object.getOwnPropertyDescriptor(p,M).enumerable})),S.push.apply(S,I)}return S}function a(p){for(var v=1;v0?this.tail.next=I:this.head=I,this.tail=I,++this.length}},{key:"unshift",value:function(S){var I={data:S,next:this.head};0===this.length&&(this.tail=I),this.head=I,++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 I=this.head,M=""+I.data;I=I.next;)M+=S+I.data;return M}},{key:"concat",value:function(S){if(0===this.length)return Q.alloc(0);for(var I=Q.allocUnsafe(S>>>0),M=this.head,y=0;M;)f(M.data,I,y),y+=M.data.length,M=M.next;return I}},{key:"consume",value:function(S,I){var M;return SF.length?F.length:S;if(y+=Y===F.length?F:F.slice(0,S),0==(S-=Y)){Y===F.length?(++M,this.head=I.next?I.next:this.tail=null):(this.head=I,I.data=F.slice(Y));break}++M}return this.length-=M,y}},{key:"_getBuffer",value:function(S){var I=Q.allocUnsafe(S),M=this.head,y=1;for(M.data.copy(I),S-=M.data.length;M=M.next;){var F=M.data,Y=S>F.length?F.length:S;if(F.copy(I,I.length-S,0,Y),0==(S-=Y)){Y===F.length?(++y,this.head=M.next?M.next:this.tail=null):(this.head=M,M.data=F.slice(Y));break}++y}return this.length-=y,I}},{key:e,value:function(S,I){return w(this,a(a({},I),{},{depth:0,customInspect:!1}))}}]),p}()},57295:function(N,A,n){"use strict";var u="/",a=n(48823).Buffer;Object.defineProperty(A,"__esModule",{value:!0}),A.default=void 0,n(47941),n(82526),n(57327),n(41539),n(38880),n(54747),n(49337),n(30489),n(12419),n(39714),n(41817),n(32165),n(66992),n(78783),n(33948),n(91038),n(47042),n(68309),n(74916),n(2707),n(92222),n(69600),n(15306),n(21249),n(79841),n(94953),n(56977),n(26699),n(35192),n(9653),n(23123),n(4723),n(58734),n(82472),n(92990),n(18927),n(33105),n(35035),n(74345),n(7174),n(32846),n(44731),n(77209),n(96319),n(58867),n(37789),n(33739),n(29368),n(14483),n(12056),n(3462),n(30678),n(27462),n(33824),n(55021),n(12974),n(15016),n(27803),n(43290),n(19601),n(73210),n(29254),n(7397),n(88674);var o=Q(n(42830)),s=Q(n(42635)),g=Q(n(75153)),h=Q(n(11917)),E=n(17187),r=Q(n(87337)),c=Q(n(78478));function Q(QA){return QA&&QA.__esModule?QA:{default:QA}}var C=n(73857);function w(QA,G){if(!(QA instanceof G))throw new TypeError("Cannot call a class as a function")}function e(QA,G){for(var U=0;U"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}();return function(){var k,X=M(QA);if(G){var BA=M(this).constructor;k=Reflect.construct(X,arguments,BA)}else k=X.apply(this,arguments);return function D(QA,G){return!G||"object"!=typeof G&&"function"!=typeof G?Y(QA):G}(this,k)}}function H(QA,G){return function K(QA){if(Array.isArray(QA))return QA}(QA)||function nA(QA,G){if(!(typeof Symbol>"u")&&Symbol.iterator in Object(QA)){var U=[],X=!0,k=!1,BA=void 0;try{for(var tt,dA=QA[Symbol.iterator]();!(X=(tt=dA.next()).done)&&(U.push(tt.value),!G||U.length!==G);X=!0);}catch(it){k=!0,BA=it}finally{try{!X&&null!=dA.return&&dA.return()}finally{if(k)throw BA}}return U}}(QA,G)||uA(QA,G)||function yA(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(QA){return function aA(QA){if(Array.isArray(QA))return wA(QA)}(QA)||function $(QA){if(typeof Symbol<"u"&&Symbol.iterator in Object(QA))return Array.from(QA)}(QA)||uA(QA)||function NA(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function uA(QA,G){if(QA){if("string"==typeof QA)return wA(QA,G);var U=Object.prototype.toString.call(QA).slice(8,-1);if("Object"===U&&QA.constructor&&(U=QA.constructor.name),"Map"===U||"Set"===U)return Array.from(QA);if("Arguments"===U||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(U))return wA(QA,G)}}function wA(QA,G){(null==G||G>QA.length)&&(G=QA.length);for(var U=0,X=new Array(G);U"u"||null==QA[Symbol.iterator]){if(Array.isArray(QA)||(U=uA(QA))||G&&QA&&"number"==typeof QA.length){U&&(QA=U);var X=0,k=function(){};return{s:k,n:function(){return X>=QA.length?{done:!0}:{done:!1,value:QA[X++]}},e:function(Bt){throw Bt},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 tt,BA=!0,dA=!1;return{s:function(){U=QA[Symbol.iterator]()},n:function(){var Bt=U.next();return BA=Bt.done,Bt},e:function(Bt){dA=!0,tt=Bt},f:function(){try{!BA&&null!=U.return&&U.return()}finally{if(dA)throw tt}}}}var kA=function(){function QA(){w(this,QA)}return f(QA,[{key:"toString",value:function(){throw new Error("Must be implemented by subclasses")}}]),QA}(),W=function(){function QA(){var G=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};w(this,QA),this._items={},this.limits="boolean"!=typeof G.limits||G.limits}return f(QA,[{key:"add",value:function(U,X){return this._items[U]=X}},{key:"get",value:function(U){return this._items[U]}},{key:"toString",value:function(){var U=this,X=Object.keys(this._items).sort(function(Et,Mt){return U._compareKeys(Et,Mt)}),k=["<<"];if(this.limits&&X.length>1){var dA=X[X.length-1];k.push(" /Limits ".concat(mA.convert([this._dataForKey(X[0]),this._dataForKey(dA)])))}k.push(" /".concat(this._keysName()," ["));var it,tt=TA(X);try{for(tt.s();!(it=tt.n()).done;){var Bt=it.value;k.push(" ".concat(mA.convert(this._dataForKey(Bt))," ").concat(mA.convert(this._items[Bt])))}}catch(Et){tt.e(Et)}finally{tt.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")}}]),QA}(),fA=function(G,U){return(Array(U+1).join("0")+G).slice(-U)},iA=/[\n\r\t\b\f()\\]/g,eA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},mA=function(){function QA(){w(this,QA)}return f(QA,null,[{key:"convert",value:function(U){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof U)return"/".concat(U);if(U instanceof String){for(var k=U,BA=!1,dA=0,tt=k.length;dA127){BA=!0;break}var it;return it=BA?function(G){var U=G.length;if(1&U)throw new Error("Buffer length must be even");for(var X=0,k=U-1;X");if(U instanceof kA||U instanceof W)return U.toString();if(U instanceof Date){var Bt="D:".concat(fA(U.getUTCFullYear(),4))+fA(U.getUTCMonth()+1,2)+fA(U.getUTCDate(),2)+fA(U.getUTCHours(),2)+fA(U.getUTCMinutes(),2)+fA(U.getUTCSeconds(),2)+"Z";return X&&(Bt=(Bt=X(a.from(Bt,"ascii")).toString("binary")).replace(iA,function(kt){return eA[kt]})),"(".concat(Bt,")")}if(Array.isArray(U)){var Et=U.map(function(kt){return QA.convert(kt,X)}).join(" ");return"[".concat(Et,"]")}if("[object Object]"==={}.toString.call(U)){var Mt=["<<"];for(var It in U){var vt=U[It];Mt.push("/".concat(It," ").concat(QA.convert(vt,X)))}return Mt.push(">>"),Mt.join("\n")}return"number"==typeof U?QA.number(U):"".concat(U)}},{key:"number",value:function(U){if(U>-1e21&&U<1e21)return Math.round(1e6*U)/1e6;throw new Error("unsupported number: ".concat(U))}}]),QA}(),GA=function(QA){I(U,QA);var G=d(U);function U(X,k){var BA,dA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return w(this,U),(BA=G.call(this)).document=X,BA.id=k,BA.data=dA,BA.gen=0,BA.compress=BA.document.compress&&!BA.data.Filter,BA.uncompressedLength=0,BA.buffer=[],BA}return f(U,[{key:"write",value:function(k){if(a.isBuffer(k)||(k=a.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=a.concat(this.buffer),this.compress&&(this.buffer=s.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(mA.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")}}]),U}(kA),j={top:72,left:72,bottom:72,right:72},b={"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]},rA=function(){function QA(G){var U=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};w(this,QA),this.document=G,this.size=U.size||"letter",this.layout=U.layout||"portrait",this.margins="number"==typeof U.margin?{top:U.margin,left:U.margin,bottom:U.margin,right:U.margin}:U.margins||j;var X=Array.isArray(this.size)?this.size:b[this.size.toUpperCase()];this.width=X["portrait"===this.layout?0:1],this.height=X["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 f(QA,[{key:"maxY",value:function(){return this.height-this.margins.bottom}},{key:"write",value:function(U){return this.content.write(U)}},{key:"end",value:function(){return this.dictionary.end(),this.resources.end(),this.content.end()}},{key:"fonts",get:function(){var U=this.resources.data;return null!=U.Font?U.Font:U.Font={}}},{key:"xobjects",get:function(){var U=this.resources.data;return null!=U.XObject?U.XObject:U.XObject={}}},{key:"ext_gstates",get:function(){var U=this.resources.data;return null!=U.ExtGState?U.ExtGState:U.ExtGState={}}},{key:"patterns",get:function(){var U=this.resources.data;return null!=U.Pattern?U.Pattern:U.Pattern={}}},{key:"colorSpaces",get:function(){var U=this.resources.data;return U.ColorSpace||(U.ColorSpace={})}},{key:"annotations",get:function(){var U=this.dictionary.data;return null!=U.Annots?U.Annots:U.Annots=[]}},{key:"structParentTreeKey",get:function(){var U=this.dictionary.data;return null!=U.StructParents?U.StructParents:U.StructParents=this.document.createStructParentTreeNextKey()}}]),QA}(),oA=function(QA){I(U,QA);var G=d(U);function U(){return w(this,U),G.apply(this,arguments)}return f(U,[{key:"_compareKeys",value:function(k,BA){return k.localeCompare(BA)}},{key:"_keysName",value:function(){return"Names"}},{key:"_dataForKey",value:function(k){return new String(k)}}]),U}(W);function pA(QA,G){if(QA=G[BA]&&QA<=G[BA+1])return!0;QA>G[BA+1]?U=k+1:X=k-1}return!1}var xA=[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],gA=function(G){return pA(G,xA)},CA=[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],YA=[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],IA=[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],jA=[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],ut=[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],Ct=function(G){return pA(G,YA)||pA(G,ut)||pA(G,IA)||pA(G,jA)},ct=[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],pt=function(G){return pA(G,ct)},Yt=[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],KA=function(G){return pA(G,Yt)},ZA=function(G){return pA(G,YA)},Qt=function(G){return pA(G,CA)},ft=function(G){return G.codePointAt(0)},Dt=function(G){return G[0]},Nt=function(G){return G[G.length-1]};function vA(QA){for(var G=[],U=QA.length,X=0;X=55296&&k<=56319&&U>X+1){var BA=QA.charCodeAt(X+1);if(BA>=56320&&BA<=57343){G.push(1024*(k-55296)+BA-56320+65536),X+=1;continue}}G.push(k)}return G}var q=function(){function QA(G){var U=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(w(this,QA),!U.ownerPassword&&!U.userPassword)throw new Error("None of owner password and user password is defined.");this.document=G,this._setupEncryption(U)}return f(QA,null,[{key:"generateFileID",value:function(){var U=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X="".concat(U.CreationDate.getTime(),"\n");for(var k in U)U.hasOwnProperty(k)&&(X+="".concat(k,": ").concat(U[k].valueOf(),"\n"));return Lt(g.default.MD5(X))}},{key:"generateRandomWordArray",value:function(U){return g.default.lib.WordArray.random(U)}},{key:"create",value:function(U){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return X.ownerPassword||X.userPassword?new QA(U,X):null}}]),f(QA,[{key:"_setupEncryption",value:function(U){switch(U.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 X={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,X,U);break;case 5:this._setupEncryptionV5(X,U)}this.dictionary=this.document.ref(X)}},{key:"_setupEncryptionV1V2V4",value:function(U,X,k){var BA,dA;switch(U){case 1:BA=2,this.keyBits=40,dA=function J(){var QA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},G=-64;return QA.printing&&(G|=4),QA.modifying&&(G|=8),QA.copying&&(G|=16),QA.annotating&&(G|=32),G}(k.permissions);break;case 2:BA=3,this.keyBits=128,dA=L(k.permissions);break;case 4:BA=4,this.keyBits=128,dA=L(k.permissions)}var Et,tt=Ut(k.userPassword),it=k.ownerPassword?Ut(k.ownerPassword):tt,Bt=function HA(QA,G,U,X){for(var k=X,BA=QA>=3?51:1,dA=0;dA=3?20:1;for(var Bt=0;Bt=3?51:1,it=0;it=2&&(X.Length=this.keyBits),4===U&&(X.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},X.StmF="StdCF",X.StrF="StdCF"),X.R=BA,X.O=Lt(Bt),X.U=Lt(Et),X.P=dA}},{key:"_setupEncryptionV5",value:function(U,X){this.keyBits=256;var k=L(X.permissions),BA=xt(X.userPassword),dA=X.ownerPassword?xt(X.ownerPassword):BA;this.encryptionKey=function OA(QA){return QA(32)}(QA.generateRandomWordArray);var tt=function O(QA,G){var U=G(8),X=G(8);return g.default.SHA256(QA.clone().concat(U)).concat(U).concat(X)}(BA,QA.generateRandomWordArray),Bt=function qA(QA,G,U){var X=g.default.SHA256(QA.clone().concat(G)),k={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(U,X,k).ciphertext}(BA,g.default.lib.WordArray.create(tt.words.slice(10,12),8),this.encryptionKey),Et=function et(QA,G,U){var X=U(8),k=U(8);return g.default.SHA256(QA.clone().concat(X).concat(G)).concat(X).concat(k)}(dA,tt,QA.generateRandomWordArray),It=function MA(QA,G,U,X){var k=g.default.SHA256(QA.clone().concat(G).concat(U)),BA={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(X,k,BA).ciphertext}(dA,g.default.lib.WordArray.create(Et.words.slice(10,12),8),tt,this.encryptionKey),vt=function st(QA,G,U){var X=g.default.lib.WordArray.create([bt(QA),4294967295,1415668834],12).concat(U(4));return g.default.AES.encrypt(X,G,{mode:g.default.mode.ECB,padding:g.default.pad.NoPadding}).ciphertext}(k,this.encryptionKey,QA.generateRandomWordArray);U.V=5,U.Length=this.keyBits,U.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},U.StmF="StdCF",U.StrF="StdCF",U.R=5,U.O=Lt(Et),U.OE=Lt(It),U.U=Lt(tt),U.UE=Lt(Bt),U.P=k,U.Perms=Lt(vt)}},{key:"getEncryptFn",value:function(U,X){var k,dA;if(this.version<5&&(k=this.encryptionKey.clone().concat(g.default.lib.WordArray.create([(255&U)<<24|(65280&U)<<8|U>>8&65280|255&X,(65280&X)<<16],5))),1===this.version||2===this.version){var BA=g.default.MD5(k);return BA.sigBytes=Math.min(16,this.keyBits/8+5),function(Bt){return Lt(g.default.RC4.encrypt(g.default.lib.WordArray.create(Bt),BA).ciphertext)}}dA=4===this.version?g.default.MD5(k.concat(g.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var tt=QA.generateRandomWordArray(16),it={mode:g.default.mode.CBC,padding:g.default.pad.Pkcs7,iv:tt};return function(Bt){return Lt(tt.clone().concat(g.default.AES.encrypt(g.default.lib.WordArray.create(Bt),dA,it).ciphertext))}}},{key:"end",value:function(){this.dictionary.end()}}]),QA}();function L(){var QA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},G=-3904;return"lowResolution"===QA.printing&&(G|=4),"highResolution"===QA.printing&&(G|=2052),QA.modifying&&(G|=8),QA.copying&&(G|=16),QA.annotating&&(G|=32),QA.fillingForms&&(G|=256),QA.contentAccessibility&&(G|=512),QA.documentAssembly&&(G|=1024),G}function Ut(){for(var QA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",G=a.alloc(32),U=QA.length,X=0;X255)throw new Error("Password contains one or more invalid characters.");G[X]=k,X++}for(;X<32;)G[X]=an[X-U],X++;return g.default.lib.WordArray.create(G)}function xt(){var QA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";QA=unescape(encodeURIComponent(function gt(QA){var G=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof QA)throw new TypeError("Expected string.");if(0===QA.length)return"";var U=vA(QA).map(function(Mt){return ZA(Mt)?32:Mt}).filter(function(Mt){return!Qt(Mt)}),X=String.fromCodePoint.apply(null,U).normalize("NFKC"),k=vA(X);if(k.some(Ct))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==G.allowUnassigned&&k.some(gA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var tt=k.some(pt),it=k.some(KA);if(tt&&it)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");var Bt=pt(ft(Dt(X))),Et=pt(ft(Nt(X)));if(tt&&(!Bt||!Et))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 X}(QA)));for(var G=Math.min(127,QA.length),U=a.alloc(G),X=0;X>8&65280|QA>>24&255}function Lt(QA){for(var G=[],U=0;U>8*(3-U%4)&255);return a.from(G)}var Jt,zt,Vt,se,pn,Qn,an=[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=mA.number,Wt=function(){function QA(G){w(this,QA),this.doc=G,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}return f(QA,[{key:"stop",value:function(U,X,k){if(null==k&&(k=1),X=this.doc._normalizeColor(X),0===this.stops.length)if(3===X.length)this._colorSpace="DeviceRGB";else if(4===X.length)this._colorSpace="DeviceCMYK";else{if(1!==X.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==X.length||"DeviceCMYK"===this._colorSpace&&4!==X.length||"DeviceGray"===this._colorSpace&&1!==X.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([U,X,k]),this}},{key:"setTransform",value:function(U,X,k,BA,dA,tt){return this.transform=[U,X,k,BA,dA,tt],this}},{key:"embed",value:function(U){var X,k=this.stops.length;if(0!==k){this.embedded=!0,this.matrix=U;var BA=this.stops[k-1];BA[0]<1&&this.stops.push([1,BA[1],BA[2]]);for(var dA=[],tt=[],it=[],Bt=0;Bt>16,U>>8&255,255&U]}else zn[G]&&(G=zn[G]);return Array.isArray(G)?(3===G.length?G=G.map(function(X){return X/255}):4===G.length&&(G=G.map(function(X){return X/100})),G):null},_setColor:function(G,U){return G instanceof An?(G.apply(U),!0):Array.isArray(G)&&G[0]instanceof Ue?(G[0].apply(U,G[1]),!0):this._setColorCore(G,U)},_setColorCore:function(G,U){if(!(G=this._normalizeColor(G)))return!1;var X=U?"SCN":"scn",k=this._getColorSpace(G);return this._setColorSpace(k,U),G=G.join(" "),this.addContent("".concat(G," ").concat(X)),!0},_setColorSpace:function(G,U){var X=U?"CS":"cs";return this.addContent("/".concat(G," ").concat(X))},_getColorSpace:function(G){return 4===G.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(G,U){return this._setColor(G,!1)&&this.fillOpacity(U),this._fillColor=[G,U],this},strokeColor:function(G,U){return this._setColor(G,!0)&&this.strokeOpacity(U),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,U){var X,k;if(null!=G||null!=U){null!=G&&(G=Math.max(0,Math.min(1,G))),null!=U&&(U=Math.max(0,Math.min(1,U)));var BA="".concat(G,"_").concat(U);if(this._opacityRegistry[BA]){var dA=H(this._opacityRegistry[BA],2);X=dA[0],k=dA[1]}else{X={Type:"ExtGState"},null!=G&&(X.ca=G),null!=U&&(X.CA=U),(X=this.ref(X)).end();var tt=++this._opacityCount;k="Gs".concat(tt),this._opacityRegistry[BA]=[X,k]}return this.page.ext_gstates[k]=X,this.addContent("/".concat(k," gs"))}},linearGradient:function(G,U,X,k){return new Re(this,G,U,X,k)},radialGradient:function(G,U,X,k,BA,dA){return new Ze(this,G,U,X,k,BA,dA)},pattern:function(G,U,X,k){return new Ue(this,G,U,X,k)}},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]};Jt=zt=Vt=se=pn=Qn=0;var Nn={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},yn={M:function(G,U){return Vt=se=null,pn=Jt=U[0],Qn=zt=U[1],G.moveTo(Jt,zt)},m:function(G,U){return Vt=se=null,pn=Jt+=U[0],Qn=zt+=U[1],G.moveTo(Jt,zt)},C:function(G,U){return Jt=U[4],zt=U[5],Vt=U[2],se=U[3],G.bezierCurveTo.apply(G,z(U))},c:function(G,U){return G.bezierCurveTo(U[0]+Jt,U[1]+zt,U[2]+Jt,U[3]+zt,U[4]+Jt,U[5]+zt),Vt=Jt+U[2],se=zt+U[3],Jt+=U[4],zt+=U[5]},S:function(G,U){return null===Vt&&(Vt=Jt,se=zt),G.bezierCurveTo(Jt-(Vt-Jt),zt-(se-zt),U[0],U[1],U[2],U[3]),Vt=U[0],se=U[1],Jt=U[2],zt=U[3]},s:function(G,U){return null===Vt&&(Vt=Jt,se=zt),G.bezierCurveTo(Jt-(Vt-Jt),zt-(se-zt),Jt+U[0],zt+U[1],Jt+U[2],zt+U[3]),Vt=Jt+U[0],se=zt+U[1],Jt+=U[2],zt+=U[3]},Q:function(G,U){return Vt=U[0],se=U[1],G.quadraticCurveTo(U[0],U[1],Jt=U[2],zt=U[3])},q:function(G,U){return G.quadraticCurveTo(U[0]+Jt,U[1]+zt,U[2]+Jt,U[3]+zt),Vt=Jt+U[0],se=zt+U[1],Jt+=U[2],zt+=U[3]},T:function(G,U){return null===Vt?(Vt=Jt,se=zt):(Vt=Jt-(Vt-Jt),se=zt-(se-zt)),G.quadraticCurveTo(Vt,se,U[0],U[1]),Vt=Jt-(Vt-Jt),se=zt-(se-zt),Jt=U[0],zt=U[1]},t:function(G,U){return null===Vt?(Vt=Jt,se=zt):(Vt=Jt-(Vt-Jt),se=zt-(se-zt)),G.quadraticCurveTo(Vt,se,Jt+U[0],zt+U[1]),Jt+=U[0],zt+=U[1]},A:function(G,U){return XA(G,Jt,zt,U),Jt=U[5],zt=U[6]},a:function(G,U){return U[5]+=Jt,U[6]+=zt,XA(G,Jt,zt,U),Jt=U[5],zt=U[6]},L:function(G,U){return Vt=se=null,G.lineTo(Jt=U[0],zt=U[1])},l:function(G,U){return Vt=se=null,G.lineTo(Jt+=U[0],zt+=U[1])},H:function(G,U){return Vt=se=null,G.lineTo(Jt=U[0],zt)},h:function(G,U){return Vt=se=null,G.lineTo(Jt+=U[0],zt)},V:function(G,U){return Vt=se=null,G.lineTo(Jt,zt=U[0])},v:function(G,U){return Vt=se=null,G.lineTo(Jt,zt+=U[0])},Z:function(G){return G.closePath(),Jt=pn,zt=Qn},z:function(G){return G.closePath(),Jt=pn,zt=Qn}},XA=function(G,U,X,k){var Kt,BA=H(k,7),kt=TA(FA(BA[5],BA[6],BA[0],BA[1],BA[3],BA[4],BA[2],U,X));try{for(kt.s();!(Kt=kt.n()).done;){var Be=nt.apply(void 0,z(Kt.value));G.bezierCurveTo.apply(G,z(Be))}}catch(xe){kt.e(xe)}finally{kt.f()}},FA=function(G,U,X,k,BA,dA,tt,it,Bt){var Et=tt*(Math.PI/180),Mt=Math.sin(Et),It=Math.cos(Et);X=Math.abs(X),k=Math.abs(k);var vt=(Vt=It*(it-G)*.5+Mt*(Bt-U)*.5)*Vt/(X*X)+(se=It*(Bt-U)*.5-Mt*(it-G)*.5)*se/(k*k);vt>1&&(X*=vt=Math.sqrt(vt),k*=vt);var kt=It/X,Kt=Mt/X,te=-Mt/k,Be=It/k,xe=kt*it+Kt*Bt,Ve=te*it+Be*Bt,de=kt*G+Kt*U,ke=te*G+Be*U,je=1/((de-xe)*(de-xe)+(ke-Ve)*(ke-Ve))-.25;je<0&&(je=0);var Cn=Math.sqrt(je);dA===BA&&(Cn=-Cn);var Dn=.5*(xe+de)-Cn*(ke-Ve),Zn=.5*(Ve+ke)+Cn*(de-xe),jn=Math.atan2(Ve-Zn,xe-Dn),Kn=Math.atan2(ke-Zn,de-Dn)-jn;Kn<0&&1===dA?Kn+=2*Math.PI:Kn>0&&0===dA&&(Kn-=2*Math.PI);for(var ii=Math.ceil(Math.abs(Kn/(.5*Math.PI+.001))),Xn=[],qn=0;qn0&&(k[k.length]=+BA),X[X.length]={cmd:U,args:k},k=[],BA="",dA=!1),U=Et;else if([" ",","].includes(Et)||"-"===Et&&BA.length>0&&"e"!==BA[BA.length-1]||"."===Et&&dA){if(0===BA.length)continue;k.length===tt?(X[X.length]={cmd:U,args:k},k=[+BA],"M"===U&&(U="L"),"m"===U&&(U="l")):k[k.length]=+BA,dA="."===Et,BA=["-","."].includes(Et)?Et:""}else BA+=Et,"."===Et&&(dA=!0)}}catch(Mt){it.e(Mt)}finally{it.f()}return BA.length>0&&(k.length===tt?(X[X.length]={cmd:U,args:k},k=[+BA],"M"===U&&(U="L"),"m"===U&&(U="l")):k[k.length]=+BA),X[X.length]={cmd:U,args:k},X}(X);!function(G,U){Jt=zt=Vt=se=pn=Qn=0;for(var X=0;X1&&void 0!==arguments[1]?arguments[1]:{},X=G;if(Array.isArray(G)||(G=[G,U.space||G]),!G.every(function(BA){return Number.isFinite(BA)&&BA>0}))throw new Error("dash(".concat(JSON.stringify(X),", ").concat(JSON.stringify(U),") invalid, lengths must be numeric and greater than zero"));return G=G.map(bA).join(" "),this.addContent("[".concat(G,"] ").concat(bA(U.phase||0)," d"))},undash:function(){return this.addContent("[] 0 d")},moveTo:function(G,U){return this.addContent("".concat(bA(G)," ").concat(bA(U)," m"))},lineTo:function(G,U){return this.addContent("".concat(bA(G)," ").concat(bA(U)," l"))},bezierCurveTo:function(G,U,X,k,BA,dA){return this.addContent("".concat(bA(G)," ").concat(bA(U)," ").concat(bA(X)," ").concat(bA(k)," ").concat(bA(BA)," ").concat(bA(dA)," c"))},quadraticCurveTo:function(G,U,X,k){return this.addContent("".concat(bA(G)," ").concat(bA(U)," ").concat(bA(X)," ").concat(bA(k)," v"))},rect:function(G,U,X,k){return this.addContent("".concat(bA(G)," ").concat(bA(U)," ").concat(bA(X)," ").concat(bA(k)," re"))},roundedRect:function(G,U,X,k,BA){null==BA&&(BA=0);var dA=(BA=Math.min(BA,.5*X,.5*k))*(1-PA);return this.moveTo(G+BA,U),this.lineTo(G+X-BA,U),this.bezierCurveTo(G+X-dA,U,G+X,U+dA,G+X,U+BA),this.lineTo(G+X,U+k-BA),this.bezierCurveTo(G+X,U+k-dA,G+X-dA,U+k,G+X-BA,U+k),this.lineTo(G+BA,U+k),this.bezierCurveTo(G+dA,U+k,G,U+k-dA,G,U+k-BA),this.lineTo(G,U+BA),this.bezierCurveTo(G,U+dA,G+dA,U,G+BA,U),this.closePath()},ellipse:function(G,U,X,k){null==k&&(k=X);var BA=X*PA,dA=k*PA,tt=(G-=X)+2*X,it=(U-=k)+2*k,Bt=G+X,Et=U+k;return this.moveTo(G,Et),this.bezierCurveTo(G,Et-dA,Bt-BA,U,Bt,U),this.bezierCurveTo(Bt+BA,U,tt,Et-dA,tt,Et),this.bezierCurveTo(tt,Et+dA,Bt+BA,it,Bt,it),this.bezierCurveTo(Bt-BA,it,G,Et+dA,G,Et),this.closePath()},circle:function(G,U,X){return this.ellipse(G,U,X)},arc:function(G,U,X,k,BA,dA){null==dA&&(dA=!1);var tt=2*Math.PI,it=.5*Math.PI,Bt=BA-k;Math.abs(Bt)>tt?Bt=tt:0!==Bt&&dA!==Bt<0&&(Bt=(dA?-1:1)*tt+Bt);var Mt=Math.ceil(Math.abs(Bt)/it),It=Bt/Mt,vt=It/it*PA*X,kt=k,Kt=-Math.sin(kt)*vt,te=Math.cos(kt)*vt,Be=G+Math.cos(kt)*X,xe=U+Math.sin(kt)*X;this.moveTo(Be,xe);for(var Ve=0;Ve1&&void 0!==arguments[1]?arguments[1]:{},k=G*Math.PI/180,BA=Math.cos(k),dA=Math.sin(k),tt=X=0;if(null!=U.origin){var it=H(U.origin,2),Et=(tt=it[0])*dA+(X=it[1])*BA;tt-=tt*BA-X*dA,X-=Et}return this.transform(BA,dA,-dA,BA,tt,X)},scale:function(G,U){var k,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==U&&(U=G),"object"==typeof U&&(X=U,U=G);var BA=k=0;if(null!=X.origin){var dA=H(X.origin,2);BA=dA[0],k=dA[1],BA-=G*BA,k-=U*k}return this.transform(G,0,0,U,BA,k)}},At={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},RA=".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+/),rt=function(){function QA(G){w(this,QA),this.contents=G,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var U=0;U<=255;U++)this.charWidths[U]=this.glyphWidths[RA[U]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(X){return+X}),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 f(QA,null,[{key:"open",value:function(U){return new QA(C.readFileSync(U,"utf8"))}}]),f(QA,[{key:"parse",value:function(){var k,U="",X=TA(this.contents.split("\n"));try{for(X.s();!(k=X.n()).done;){var dA,tt,BA=k.value;if(dA=BA.match(/^Start(\w+)/))U=dA[1];else if(dA=BA.match(/^End(\w+)/))U="";else switch(U){case"FontMetrics":var it=(dA=BA.match(/(^\w+)\s+(.*)/))[1],Bt=dA[2];(tt=this.attributes[it])?(Array.isArray(tt)||(tt=this.attributes[it]=[tt]),tt.push(Bt)):this.attributes[it]=Bt;break;case"CharMetrics":if(!/^CH?\s/.test(BA))continue;var Et=BA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Et]=+BA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(dA=BA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[dA[1]+"\0"+dA[2]]=parseInt(dA[3]))}}}catch(Mt){X.e(Mt)}finally{X.f()}}},{key:"encodeText",value:function(U){for(var X=[],k=0,BA=U.length;k>8,it=0;this.font.post.isFixedPitch&&(it|=1),1<=tt&&tt<=7&&(it|=2),it|=4,10===tt&&(it|=8),this.font.head.macStyle.italic&&(it|=64);var Et=[1,2,3,4,5,6].map(function(Be){return String.fromCharCode((k.id.charCodeAt(Be)||73)+17)}).join("")+"+"+this.font.postscriptName,Mt=this.font.bbox,It=this.document.ref({Type:"FontDescriptor",FontName:Et,Flags:it,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});if(BA?It.data.FontFile3=dA:It.data.FontFile2=dA,this.document.subset){var vt=a.from("FFFFFFFFC0","hex"),kt=this.document.ref();kt.write(vt),kt.end(),It.data.CIDSet=kt}It.end();var Kt={Type:"Font",Subtype:"CIDFontType0",BaseFont:Et,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:It,W:[0,this.widths]};BA||(Kt.Subtype="CIDFontType2",Kt.CIDToGIDMap="Identity");var te=this.document.ref(Kt);return te.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Et,Encoding:"Identity-H",DescendantFonts:[te],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}},{key:"toUnicodeCmap",value:function(){var tt,k=this.document.ref(),BA=[],dA=TA(this.unicode);try{for(dA.s();!(tt=dA.n()).done;){var Mt,Bt=[],Et=TA(tt.value);try{for(Et.s();!(Mt=Et.n()).done;){var It=Mt.value;It>65535&&(Bt.push(Tt((It-=65536)>>>10&1023|55296)),It=56320|1023&It),Bt.push(Tt(It))}}catch(vt){Et.e(vt)}finally{Et.f()}BA.push("<".concat(Bt.join(" "),">"))}}catch(vt){dA.e(vt)}finally{dA.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(Tt(BA.length-1),"> [").concat(BA.join(" "),"]\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend")),k}}]),U}(VA),Xt=function(){function QA(){w(this,QA)}return f(QA,null,[{key:"open",value:function(U,X,k,BA){var dA;if("string"==typeof X){if(Ft.isStandardFont(X))return new Ft(U,X,BA);X=C.readFileSync(X)}if(a.isBuffer(X)?dA=h.default.create(X,k):X instanceof Uint8Array?dA=h.default.create(a.from(X),k):X instanceof ArrayBuffer&&(dA=h.default.create(a.from(new Uint8Array(X)),k)),null==dA)throw new Error("Not a supported font format or standard PDF font.");return new Ot(U,dA,BA)}}]),QA}(),ie={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,U,X){var k,BA;if("number"==typeof U&&(X=U,U=null),"string"==typeof G&&this._registeredFonts[G]){k=G;var dA=this._registeredFonts[G];G=dA.src,U=dA.family}else"string"!=typeof(k=U||G)&&(k=null);if(null!=X&&this.fontSize(X),BA=this._fontFamilies[k])return this._font=BA,this;var tt="F".concat(++this._fontCount);return this._font=Xt.open(this,G,U,tt),(BA=this._fontFamilies[this._font.name])?(this._font=BA,this):(k&&(this._fontFamilies[k]=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,U,X){return this._registeredFonts[G]={src:U,family:X},this}},ht=function(QA){I(U,QA);var G=d(U);function U(X,k){var BA;return w(this,U),(BA=G.call(this)).document=X,BA.indent=k.indent||0,BA.characterSpacing=k.characterSpacing||0,BA.wordSpacing=0===k.wordSpacing,BA.columns=k.columns||1,BA.columnGap=null!=k.columnGap?k.columnGap:18,BA.lineWidth=(k.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=k.ellipsis,BA.continuedX=0,BA.features=k.features,null!=k.height?(BA.height=k.height,BA.maxY=BA.startY+k.height):BA.maxY=BA.document.page.maxY(),BA.on("firstLine",function(dA){var tt=BA.continuedX||BA.indent;return BA.document.x+=tt,BA.lineWidth-=tt,BA.once("line",function(){if(BA.document.x-=tt,BA.lineWidth+=tt,dA.continued&&!BA.continuedX&&(BA.continuedX=BA.indent),!dA.continued)return BA.continuedX=0})}),BA.on("lastLine",function(dA){var tt=dA.align;return"justify"===tt&&(dA.align="left"),BA.lastLine=!0,BA.once("line",function(){return BA.document.y+=dA.paragraphGap||0,dA.align=tt,BA.lastLine=!1})}),BA}return f(U,[{key:"wordWidth",value:function(k){return this.document.widthOfString(k,this)+this.characterSpacing+this.wordSpacing}},{key:"eachWord",value:function(k,BA){for(var dA,tt=new r.default(k),it=null,Bt=Object.create(null);dA=tt.nextBreak();){var Et,Mt=k.slice(it?.position||0,dA.position),It=null!=Bt[Mt]?Bt[Mt]:Bt[Mt]=this.wordWidth(Mt);if(It>this.lineWidth+this.continuedX)for(var vt=it,kt={};Mt.length;){var Kt,te;It>this.spaceLeft?(Kt=Math.ceil(this.spaceLeft/(It/Mt.length)),te=(It=this.wordWidth(Mt.slice(0,Kt)))<=this.spaceLeft&&Ktthis.spaceLeft&&Kt>0;Be||te;)Be?Be=(It=this.wordWidth(Mt.slice(0,--Kt)))>this.spaceLeft&&Kt>0:(Be=(It=this.wordWidth(Mt.slice(0,++Kt)))>this.spaceLeft&&Kt>0,te=It<=this.spaceLeft&&Ktthis.maxY||tt>this.maxY)&&this.nextSection();var it="",Bt=0,Et=0,Mt=0,It=this.document.y,vt=function(){return BA.textWidth=Bt+dA.wordSpacing*(Et-1),BA.wordCount=Et,BA.lineWidth=dA.lineWidth,It=dA.document.y,dA.emit("line",it,BA,dA),Mt++};return this.emit("sectionStart",BA,this),this.eachWord(k,function(kt,Kt,te,Be){if((null==Be||Be.required)&&(dA.emit("firstLine",BA,dA),dA.spaceLeft=dA.lineWidth),Kt<=dA.spaceLeft&&(it+=kt,Bt+=Kt,Et++),te.required||Kt>dA.spaceLeft){var xe=dA.document.currentLineHeight(!0);if(null!=dA.height&&dA.ellipsis&&dA.document.y+2*xe>dA.maxY&&dA.column>=dA.columns){for(!0===dA.ellipsis&&(dA.ellipsis="\u2026"),it=it.replace(/\s+$/,""),Bt=dA.wordWidth(it+dA.ellipsis);it&&Bt>dA.lineWidth;)it=it.slice(0,-1).replace(/\s+$/,""),Bt=dA.wordWidth(it+dA.ellipsis);Bt<=dA.lineWidth&&(it+=dA.ellipsis),Bt=dA.wordWidth(it)}return te.required&&(Kt>dA.spaceLeft&&(vt(),it=kt,Bt=Kt,Et=1),dA.emit("lastLine",BA,dA)),vt(),dA.document.y+xe>dA.maxY&&!dA.nextSection()?(Et=0,it="",!1):te.required?(dA.spaceLeft=dA.lineWidth,it="",Bt=0,Et=0):(dA.spaceLeft=dA.lineWidth-Kt,it=kt,Bt=Kt,Et=1)}return dA.spaceLeft-=Kt}),Et>0&&(this.emit("lastLine",BA,this),vt()),this.emit("sectionEnd",BA,this),!0===BA.continued?(Mt>1&&(this.continuedX=0),this.continuedX+=BA.textWidth||0,this.document.y=It):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 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,z(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}}]),U}(E.EventEmitter),St=mA.number,qt={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,U,X,k,BA){var dA=this;k=this._initOptions(U,X,k),G=null==G?"":"".concat(G),k.wordSpacing&&(G=G.replace(/\s{2,}/g," "));var tt=function(){k.structParent&&k.structParent.add(dA.struct(k.structType||"P",[dA.markStructureContent(k.structType||"P")]))};if(k.width){var it=this._wrapper;it||((it=new ht(this,k)).on("line",BA),it.on("firstLine",tt)),this._wrapper=k.continued?it:null,this._textOptions=k.continued?k:null,it.wrap(G,k)}else{var Et,Bt=TA(G.split("\n"));try{for(Bt.s();!(Et=Bt.n()).done;){var Mt=Et.value;tt(),BA(Mt,k)}}catch(It){Bt.e(It)}finally{Bt.f()}}return this},text:function(G,U,X,k){return this._text(G,U,X,k,this._line)},widthOfString:function(G){var U=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(G,this._fontSize,U.features)+(U.characterSpacing||0)*(G.length-1)},heightOfString:function(G,U){var X=this,k=this.x,BA=this.y;(U=this._initOptions(U)).height=1/0;var dA=U.lineGap||this._lineGap||0;this._text(G,this.x,this.y,U,function(){return X.y+=X.currentLineHeight(!0)+dA});var tt=this.y-BA;return this.x=k,this.y=BA,tt},list:function(G,U,X,k,BA){var dA=this,tt=(k=this._initOptions(U,X,k)).listType||"bullet",it=Math.round(this._font.ascender/1e3*this._fontSize),Bt=it/2,Et=k.bulletRadius||it/3,Mt=k.textIndent||("bullet"===tt?5*Et:2*it),It=k.bulletIndent||("bullet"===tt?8*Et:2*it),vt=1,kt=[],Kt=[],te=[];!function de(ke){for(var En=1,je=0;je0&&void 0!==arguments[0]?arguments[0]:{},U=arguments.length>1?arguments[1]:void 0,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof G&&(X=G,G=null);var k=Object.assign({},X);if(this._textOptions)for(var BA in this._textOptions)"continued"!==BA&&void 0===k[BA]&&(k[BA]=this._textOptions[BA]);return null!=G&&(this.x=G),null!=U&&(this.y=U),!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(G){var U=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=arguments.length>2?arguments[2]:void 0;this._fragment(G,this.x,this.y,U);var k=U.lineGap||this._lineGap||0;return X?this.y+=this.currentLineHeight(!0)+k:this.x+=this.widthOfString(G)},_fragment:function(G,U,X,k){var dA,tt,it,Bt,Et,Mt,BA=this;if(0!==(G="".concat(G).replace(/\n/g,"")).length){var vt=k.wordSpacing||0,kt=k.characterSpacing||0;if(k.width)switch(k.align||"left"){case"right":Et=this.widthOfString(G.replace(/\s+$/,""),k),U+=k.lineWidth-Et;break;case"center":U+=k.lineWidth/2-k.textWidth/2;break;case"justify":Mt=G.trim().split(/\s+/),Et=this.widthOfString(G.replace(/\s+/g,""),k);var Kt=this.widthOfString(" ")+kt;vt=Math.max(0,(k.lineWidth-Et)/Math.max(1,Mt.length-1)-Kt)}if("number"==typeof k.baseline)dA=-k.baseline;else{switch(k.baseline){case"svg-middle":dA=.5*this._font.xHeight;break;case"middle":case"svg-central":dA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":dA=this._font.descender;break;case"alphabetic":dA=0;break;case"mathematical":dA=.5*this._font.ascender;break;case"hanging":dA=.8*this._font.ascender;break;default:dA=this._font.ascender}dA=dA/1e3*this._fontSize}var ke,te=k.textWidth+vt*(k.wordCount-1)+kt*(G.length-1);if(null!=k.link&&this.link(U,X,te,this.currentLineHeight(),k.link),null!=k.goTo&&this.goTo(U,X,te,this.currentLineHeight(),k.goTo),null!=k.destination&&this.addNamedDestination(k.destination,"XYZ",U,X,null),k.underline){this.save(),k.stroke||this.strokeColor.apply(this,z(this._fillColor||[]));var Be=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Be);var xe=X+this.currentLineHeight()-Be;this.moveTo(U,xe),this.lineTo(U+te,xe),this.stroke(),this.restore()}if(k.strike){this.save(),k.stroke||this.strokeColor.apply(this,z(this._fillColor||[]));var Ve=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Ve);var de=X+this.currentLineHeight()/2;this.moveTo(U,de),this.lineTo(U+te,de),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,U,X),this.transform(1,0,ke,1,-ke*dA,0),this.transform(1,0,0,1,-U,-X)),this.transform(1,0,0,-1,0,this.page.height),X=this.page.height-X-dA,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(U)," ").concat(St(X)," Tm")),this.addContent("/".concat(this._font.id," ").concat(St(this._fontSize)," Tf"));var En=k.fill&&k.stroke?2:k.stroke?1:0;if(En&&this.addContent("".concat(En," Tr")),kt&&this.addContent("".concat(St(kt)," Tc")),vt){Mt=G.trim().split(/\s+/),vt+=this.widthOfString(" ")+kt,vt*=1e3/this._fontSize,tt=[],Bt=[];var Cn,je=TA(Mt);try{for(je.s();!(Cn=je.n()).done;){var jn=H(this._font.encode(Cn.value,k.features),2),Kn=jn[1];tt=tt.concat(jn[0]),Bt=Bt.concat(Kn);var ii={},Xn=Bt[Bt.length-1];for(var qn in Xn)ii[qn]=Xn[qn];ii.xAdvance+=vt,Bt[Bt.length-1]=ii}}catch(Ti){je.e(Ti)}finally{je.f()}}else{var Gi=H(this._font.encode(G,k.features),2);tt=Gi[0],Bt=Gi[1]}var Hi=this._fontSize/1e3,Yi=[],Ji=0,Oi=!1,ar=function(ri){if(Ji ").concat(St(-Pr)))}return Ji=ri},ki=function(ri){if(ar(ri),Yi.length>0)return BA.addContent("[".concat(Yi.join(" "),"] TJ")),Yi.length=0};for(it=0;it3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof U&&(k=U,U=null),U=null!=(Et=U??k.x)?Et:this.x,X=null!=(Mt=X??k.y)?Mt:this.y,"string"==typeof G&&(it=this._imageRegistry[G]),it||(it=G.width&&G.height?G:this.openImage(G)),it.obj||it.embed(this),null==this.page.xobjects[it.label]&&(this.page.xobjects[it.label]=it.obj);var It=k.width||it.width,vt=k.height||it.height;if(k.width&&!k.height){var kt=It/it.width;It=it.width*kt,vt=it.height*kt}else if(k.height&&!k.width){var Kt=vt/it.height;It=it.width*Kt,vt=it.height*Kt}else if(k.scale)It=it.width*k.scale,vt=it.height*k.scale;else if(k.fit){var te=H(k.fit,2);(Bt=it.width/it.height)>(tt=te[0])/(BA=te[1])?(It=tt,vt=tt/Bt):(vt=BA,It=BA*Bt)}else if(k.cover){var Be=H(k.cover,2);(Bt=it.width/it.height)>(tt=Be[0])/(BA=Be[1])?(vt=BA,It=BA*Bt):(It=tt,vt=tt/Bt)}return(k.fit||k.cover)&&("center"===k.align?U=U+tt/2-It/2:"right"===k.align&&(U=U+tt-It),"center"===k.valign?X=X+BA/2-vt/2:"bottom"===k.valign&&(X=X+BA-vt)),null!=k.link&&this.link(U,X,It,vt,k.link),null!=k.goTo&&this.goTo(U,X,It,vt,k.goTo),null!=k.destination&&this.addNamedDestination(k.destination,"XYZ",U,X,null),this.y===X&&(this.y+=vt),this.save(),this.transform(It,0,0,-vt,U,X+vt),this.addContent("/".concat(it.label," Do")),this.restore(),this},openImage:function(G){var U;return"string"==typeof G&&(U=this._imageRegistry[G]),U||(U=jt.open(G,"I".concat(++this._imageCount)),"string"==typeof G&&(this._imageRegistry[G]=U)),U}},Oe={annotate:function(G,U,X,k,BA){for(var dA in BA.Type="Annot",BA.Rect=this._convertRect(G,U,X,k),BA.Border=[0,0,0],"Link"===BA.Subtype&&typeof BA.F>"u"&&(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 tt=BA[dA];BA[dA[0].toUpperCase()+dA.slice(1)]=tt}var it=this.ref(BA);return this.page.annotations.push(it),it.end(),this},note:function(G,U,X,k,BA){var dA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return dA.Subtype="Text",dA.Contents=new String(BA),dA.Name="Comment",null==dA.color&&(dA.color=[243,223,92]),this.annotate(G,U,X,k,dA)},goTo:function(G,U,X,k,BA){var dA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return dA.Subtype="Link",dA.A=this.ref({S:"GoTo",D:new String(BA)}),dA.A.end(),this.annotate(G,U,X,k,dA)},link:function(G,U,X,k,BA){var dA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(dA.Subtype="Link","number"==typeof BA){var tt=this._root.data.Pages.data;if(!(BA>=0&&BA4&&void 0!==arguments[4]?arguments[4]:{},tt=H(this._convertRect(G,U,X,k),4),it=tt[0],Bt=tt[1],Et=tt[2],Mt=tt[3];return BA.QuadPoints=[it,Mt,Et,Mt,it,Bt,Et,Bt],BA.Contents=new String,this.annotate(G,U,X,k,BA)},highlight:function(G,U,X,k){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,U,X,k,BA)},underline:function(G,U,X,k){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Underline",this._markup(G,U,X,k,BA)},strike:function(G,U,X,k){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="StrikeOut",this._markup(G,U,X,k,BA)},lineAnnotation:function(G,U,X,k){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-U,X,this.page.height-k],this.annotate(G,U,X,k,BA)},rectAnnotation:function(G,U,X,k){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Square",BA.Contents=new String,this.annotate(G,U,X,k,BA)},ellipseAnnotation:function(G,U,X,k){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return BA.Subtype="Circle",BA.Contents=new String,this.annotate(G,U,X,k,BA)},textAnnotation:function(G,U,X,k,BA){var dA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return dA.Subtype="FreeText",dA.Contents=new String(BA),dA.DA=new String,this.annotate(G,U,X,k,dA)},fileAnnotation:function(G,U,X,k){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},dA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},tt=this.file(BA.src,Object.assign({hidden:!0},BA));return dA.Subtype="FileAttachment",dA.FS=tt,dA.Contents?dA.Contents=new String(dA.Contents):tt.data.Desc&&(dA.Contents=tt.data.Desc),this.annotate(G,U,X,k,dA)},_convertRect:function(G,U,X,k){var BA=U;U+=k;var dA=G+X,tt=H(this._ctm,6),it=tt[0],Bt=tt[1],Et=tt[2],Mt=tt[3],It=tt[4],vt=tt[5];return[G=it*G+Et*U+It,U=Bt*G+Mt*U+vt,dA=it*dA+Et*BA+It,BA=Bt*dA+Mt*BA+vt]}},Te=function(){function QA(G,U,X,k){var BA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};w(this,QA),this.document=G,this.options=BA,this.outlineData={},null!==k&&(this.outlineData.Dest=[k.dictionary,"Fit"]),null!==U&&(this.outlineData.Parent=U),null!==X&&(this.outlineData.Title=new String(X)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}return f(QA,[{key:"addItem",value:function(U){var k=new QA(this.document,this.dictionary,U,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 X=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=X.dictionary;for(var k=0,BA=this.children.length;k0&&(dA.outlineData.Prev=this.children[k-1].dictionary),k0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},Ne=function(){function QA(G,U){w(this,QA),this.refs=[{pageRef:G,mcid:U}]}return f(QA,[{key:"push",value:function(U){var X=this;U.refs.forEach(function(k){return X.refs.push(k)})}}]),QA}(),Xe=function(){function QA(G,U){var X=this,k=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},BA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;w(this,QA),this.document=G,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=G.ref({S:U});var dA=this.dictionary.data;(Array.isArray(k)||this._isValidChild(k))&&(BA=k,k={}),typeof k.title<"u"&&(dA.T=new String(k.title)),typeof k.lang<"u"&&(dA.Lang=new String(k.lang)),typeof k.alt<"u"&&(dA.Alt=new String(k.alt)),typeof k.expanded<"u"&&(dA.E=new String(k.expanded)),typeof k.actual<"u"&&(dA.ActualText=new String(k.actual)),this._children=[],BA&&(Array.isArray(BA)||(BA=[BA]),BA.forEach(function(tt){return X.add(tt)}),this.end())}return f(QA,[{key:"add",value:function(U){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(U))throw new Error("Invalid structure element child");return U instanceof QA&&(U.setParent(this.dictionary),this._attached&&U.setAttached()),U instanceof Ne&&this._addContentToParentTree(U),"function"==typeof U&&this._attached&&(U=this._contentForClosure(U)),this._children.push(U),this}},{key:"_addContentToParentTree",value:function(U){var X=this;U.refs.forEach(function(k){var BA=k.pageRef,dA=k.mcid;X.document.getStructParentTree().get(BA.data.StructParents)[dA]=X.dictionary})}},{key:"setParent",value:function(U){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=U,this._flush()}},{key:"setAttached",value:function(){var U=this;this._attached||(this._children.forEach(function(X,k){X instanceof QA&&X.setAttached(),"function"==typeof X&&(U._children[k]=U._contentForClosure(X))}),this._attached=!0,this._flush())}},{key:"end",value:function(){this._ended||(this._children.filter(function(U){return U instanceof QA}).forEach(function(U){return U.end()}),this._ended=!0,this._flush())}},{key:"_isValidChild",value:function(U){return U instanceof QA||U instanceof Ne||"function"==typeof U}},{key:"_contentForClosure",value:function(U){var X=this.document.markStructureContent(this.dictionary.data.S);return U(),this.document.endMarkedContent(),this._addContentToParentTree(X),X}},{key:"_isFlushable",value:function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(U){return"function"!=typeof U&&(!(U instanceof QA)||U._isFlushable())})}},{key:"_flush",value:function(){var U=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(X){return U._flushChild(X)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}},{key:"_flushChild",value:function(U){var X=this;U instanceof QA&&this.dictionary.data.K.push(U.dictionary),U instanceof Ne&&U.refs.forEach(function(k){var BA=k.pageRef,dA=k.mcid;X.dictionary.data.Pg||(X.dictionary.data.Pg=BA),X.dictionary.data.K.push(X.dictionary.data.Pg===BA?dA:{Type:"MCR",Pg:BA,MCID:dA})})}}]),QA}(),In=function(QA){I(U,QA);var G=d(U);function U(){return w(this,U),G.apply(this,arguments)}return f(U,[{key:"_compareKeys",value:function(k,BA){return parseInt(k)-parseInt(BA)}},{key:"_keysName",value:function(){return"Nums"}},{key:"_dataForKey",value:function(k){return parseInt(k)}}]),U}(W),tn={initMarkings:function(G){this.structChildren=[],G.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(G){var U=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===G||U&&U.mcid){var X=0;for(this.page.markings.forEach(function(BA){(X||BA.structContent||"Artifact"===BA.tag)&&X++});X--;)this.endMarkedContent()}if(!U)return this.page.markings.push({tag:G}),this.addContent("/".concat(G," BMC")),this;this.page.markings.push({tag:G,options:U});var k={};return typeof U.mcid<"u"&&(k.MCID=U.mcid),"Artifact"===G&&("string"==typeof U.type&&(k.Type=U.type),Array.isArray(U.bbox)&&(k.BBox=[U.bbox[0],this.page.height-U.bbox[3],U.bbox[2],this.page.height-U.bbox[1]]),Array.isArray(U.attached)&&U.attached.every(function(BA){return"string"==typeof BA})&&(k.Attached=U.attached)),"Span"===G&&(U.lang&&(k.Lang=new String(U.lang)),U.alt&&(k.Alt=new String(U.alt)),U.expanded&&(k.E=new String(U.expanded)),U.actual&&(k.ActualText=new String(U.actual))),this.addContent("/".concat(G," ").concat(mA.convert(k)," BDC")),this},markStructureContent:function(G){var U=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=this.getStructParentTree().get(this.page.structParentTreeKey),k=X.length;X.push(null),this.markContent(G,S(S({},U),{},{mcid:k}));var BA=new Ne(this.page.dictionary,k);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 Xe(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 U=this.getStructTreeRoot();return G.setParent(U),G.setAttached(),this.structChildren.push(G),U.data.K||(U.data.K=[]),U.data.K.push(G.dictionary),this},initPageMarkings:function(G){var U=this;G.forEach(function(X){if(X.structContent){var k=X.structContent,BA=U.markStructureContent(X.tag,X.options);k.push(BA),U.page.markings.slice(-1)[0].structContent=k}else U.markContent(X.tag,X.options)})},endPageMarkings:function(G){var U=G.markings;return U.forEach(function(){return G.write("EMC")}),G.markings=[],U},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 In,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var G=this.getStructTreeRoot(),U=G.data.ParentTreeNextKey++;return G.data.ParentTree.add(U,[]),U},endMarkings:function(){var G=this._root.data.StructTreeRoot;G&&(G.end(),this.structChildren.forEach(function(U){return U.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},dn={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},xn={left:0,center:1,right:2},en={value:"V",defaultValue:"DV"},Bn={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},on_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},on_percent={nDec:0,sepComma:!1},vi={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 U=this.ref(G);return this._root.data.AcroForm=U,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 U=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(X){U[X]=G._acroform.fonts[X]}),this._root.data.AcroForm.data.Fields.forEach(function(X){G._endChild(X)}),this._root.data.AcroForm.end()}return this},_endChild:function(G){var U=this;return Array.isArray(G.data.Kids)&&(G.data.Kids.forEach(function(X){U._endChild(X)}),G.end()),this},formField:function(G){var X=this._fieldDict(G,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),k=this.ref(X);return this._addToParent(k),k},formAnnotation:function(G,U,X,k,BA,dA){var it=this._fieldDict(G,U,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return it.Subtype="Widget",void 0===it.F&&(it.F=4),this.annotate(X,k,BA,dA,it),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(G,U,X,k,BA){return this.formAnnotation(G,"text",U,X,k,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(G,U,X,k,BA){return this.formAnnotation(G,"pushButton",U,X,k,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(G,U,X,k,BA){return this.formAnnotation(G,"combo",U,X,k,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(G,U,X,k,BA){return this.formAnnotation(G,"list",U,X,k,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(G,U,X,k,BA){return this.formAnnotation(G,"radioButton",U,X,k,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(G,U,X,k,BA){return this.formAnnotation(G,"checkbox",U,X,k,BA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(G){var U=G.data.Parent;return U?(U.data.Kids||(U.data.Kids=[]),U.data.Kids.push(G)):this._root.data.AcroForm.data.Fields.push(G),this},_fieldDict:function(G,U){var X=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({},X);return null!==U&&(k=this._resolveType(U,X)),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(G),k.parent&&(k.Parent=k.parent,delete k.parent),k},_resolveType:function(G,U){if("text"===G)U.FT="Tx";else if("pushButton"===G)U.FT="Btn",U.pushButton=!0;else if("radioButton"===G)U.FT="Btn",U.radioButton=!0;else if("checkbox"===G)U.FT="Btn";else if("combo"===G)U.FT="Ch",U.combo=!0;else{if("list"!==G)throw new Error("Invalid form annotation type '".concat(G,"'"));U.FT="Ch"}return U},_resolveFormat:function(G){var U=G.format;if(U&&U.type){var X,k,BA="";if(void 0!==Bn[U.type])X="AFSpecial_Keystroke",k="AFSpecial_Format",BA=Bn[U.type];else{var dA=U.type.charAt(0).toUpperCase()+U.type.slice(1);if(X="AF".concat(dA,"_Keystroke"),k="AF".concat(dA,"_Format"),"date"===U.type)X+="Ex",BA=String(U.param);else if("time"===U.type)BA=String(U.param);else if("number"===U.type){var tt=Object.assign({},on_number,U);BA=String([String(tt.nDec),tt.sepComma?"0":"1",'"'+tt.negStyle+'"',"null",'"'+tt.currency+'"',String(tt.currencyPrepend)].join(","))}else if("percent"===U.type){var it=Object.assign({},on_percent,U);BA=String([String(it.nDec),it.sepComma?"0":"1"].join(","))}}G.AA=G.AA?G.AA:{},G.AA.K={S:"JavaScript",JS:new String("".concat(X,"(").concat(BA,");"))},G.AA.F={S:"JavaScript",JS:new String("".concat(k,"(").concat(BA,");"))}}return delete G.format,G},_resolveColors:function(G){var U=this._normalizeColor(G.backgroundColor);return U&&(G.MK||(G.MK={}),G.MK.BG=U),(U=this._normalizeColor(G.borderColor))&&(G.MK||(G.MK={}),G.MK.BC=U),delete G.backgroundColor,delete G.borderColor,G},_resolveFlags:function(G){var U=0;return Object.keys(G).forEach(function(X){dn[X]&&(U|=dn[X],delete G[X])}),0!==U&&(G.Ff=G.Ff?G.Ff:0,G.Ff|=U),G},_resolveJustify:function(G){var U=0;return void 0!==G.align&&("number"==typeof xn[G.align]&&(U=xn[G.align]),delete G.align),0!==U&&(G.Q=U),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 U=G.fontSize||0;G.DR.Font[this._font.id]=this._font.ref(),G.DA=new String("/".concat(this._font.id," ").concat(U," Tf 0 g"))}return G},_resolveStrings:function(G){var U=[];function X(k){if(Array.isArray(k))for(var BA=0;BA1&&void 0!==arguments[1]?arguments[1]:{};U.name=U.name||G;var k,X={Type:"EmbeddedFile",Params:{}};if(!G)throw new Error("No src specified");if(a.isBuffer(G))k=G;else if(G instanceof ArrayBuffer)k=a.from(new Uint8Array(G));else{var BA;if(BA=/^data:(.*);base64,(.*)$/.exec(G))BA[1]&&(X.Subtype=BA[1].replace("/","#2F")),k=a.from(BA[2],"base64");else{if(!(k=C.readFileSync(G)))throw new Error("Could not read contents of file at filepath ".concat(G));var dA=C.statSync(G),it=dA.ctime;X.Params.CreationDate=dA.birthtime,X.Params.ModDate=it}}U.creationDate instanceof Date&&(X.Params.CreationDate=U.creationDate),U.modifiedDate instanceof Date&&(X.Params.ModDate=U.modifiedDate),U.type&&(X.Subtype=U.type.replace("/","#2F"));var Et,Bt=g.default.MD5(g.default.lib.WordArray.create(new Uint8Array(k)));X.Params.CheckSum=new String(Bt),X.Params.Size=k.byteLength,this._fileRegistry||(this._fileRegistry={});var Mt=this._fileRegistry[U.name];Mt&&function Vn(QA,G){return QA.Subtype===G.Subtype&&QA.Params.CheckSum.toString()===G.Params.CheckSum.toString()&&QA.Params.Size===G.Params.Size&&QA.Params.CreationDate===G.Params.CreationDate&&QA.Params.ModDate===G.Params.ModDate}(X,Mt)?Et=Mt.ref:((Et=this.ref(X)).end(k),this._fileRegistry[U.name]=S(S({},X),{},{ref:Et}));var It={Type:"Filespec",F:new String(U.name),EF:{F:Et},UF:new String(U.name)};U.description&&(It.Desc=new String(U.description));var vt=this.ref(It);return vt.end(),U.hidden||this.addNamedEmbeddedFile(U.name,vt),vt}};var xi={initPDFA:function(G){"-"===G.charAt(G.length-3)?(this.subset_conformance=G.charAt(G.length-1).toUpperCase(),this.subset=parseInt(G.charAt(G.length-2))):(this.subset_conformance="B",this.subset=parseInt(G.charAt(G.length-1)))},endSubset:function(){this._addPdfaMetadata();var G="".concat(u,"/data/sRGB_IEC61966_2_1.icc"),U="".concat(u,"/../color_profiles/sRGB_IEC61966_2_1.icc");this._addColorOutputIntent(C.existsSync(G)?G:U)},_addColorOutputIntent:function(G){var U=C.readFileSync(G),X=this.ref({Length:U.length,N:3});X.write(U),X.end();var k=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:X});k.end(),this._root.data.OutputIntents=[k]},_getPdfaid:function(){return'\n \n '.concat(this.subset,"\n ").concat(this.subset_conformance,"\n \n ")},_addPdfaMetadata:function(){this.appendXML(this._getPdfaid())}},Fi={_importSubset:function(G){Object.assign(this,G)},initSubset:function(G){switch(G.subset){case"PDF/A-1":case"PDF/A-1a":case"PDF/A-1b":case"PDF/A-2":case"PDF/A-2a":case"PDF/A-2b":case"PDF/A-3":case"PDF/A-3a":case"PDF/A-3b":this._importSubset(xi),this.initPDFA(G.subset)}}},kn=function(){function QA(){w(this,QA),this._metadata='\n \n \n \n '}return f(QA,[{key:"_closeTags",value:function(){this._metadata=this._metadata.concat('\n \n \n \n ')}},{key:"append",value:function(U){var X=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this._metadata=this._metadata.concat(U),X&&(this._metadata=this._metadata.concat("\n"))}},{key:"getXML",value:function(){return this._metadata}},{key:"getLength",value:function(){return this._metadata.length}},{key:"end",value:function(){this._closeTags(),this._metadata=this._metadata.trim()}}]),QA}(),di={initMetadata:function(){this.metadata=new kn},appendXML:function(G){this.metadata.append(G,!(arguments.length>1&&void 0!==arguments[1])||arguments[1])},_addInfo:function(){this.appendXML('\n \n '.concat(this.info.CreationDate.toISOString().split(".")[0]+"Z","\n ").concat(this.info.Creator,"\n \n ")),(this.info.Title||this.info.Author||this.info.Subject)&&(this.appendXML('\n \n '),this.info.Title&&this.appendXML('\n \n \n '.concat(this.info.Title,"\n \n \n ")),this.info.Author&&this.appendXML("\n \n \n ".concat(this.info.Author,"\n \n \n ")),this.info.Subject&&this.appendXML('\n \n \n '.concat(this.info.Subject,"\n \n \n ")),this.appendXML("\n \n ")),this.appendXML('\n \n '.concat(this.info.Creator,""),!1),this.info.Keywords&&this.appendXML("\n ".concat(this.info.Keywords,""),!1),this.appendXML("\n \n ")},endMetadata:function(){this._addInfo(),this.metadata.end(),1.3!=this.version&&(this.metadataRef=this.ref({length:this.metadata.getLength(),Type:"Metadata",Subtype:"XML"}),this.metadataRef.compress=!1,this.metadataRef.write(a.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}},ni=function(QA){I(U,QA);var G=d(U);function U(){var X,k=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(w(this,U),(X=G.call(this,k)).options=k,k.pdfVersion){case"1.4":X.version=1.4;break;case"1.5":X.version=1.5;break;case"1.6":X.version=1.6;break;case"1.7":case"1.7ext3":X.version=1.7;break;default:X.version=1.3}X.compress=null==X.options.compress||X.options.compress,X._pageBuffer=[],X._pageBufferStart=0,X._offsets=[],X._waiting=0,X._ended=!1,X._offset=0;var BA=X.ref({Type:"Pages",Count:0,Kids:[]}),dA=X.ref({Dests:new oA});if(X._root=X.ref({Type:"Catalog",Pages:BA,Names:dA}),X.options.lang&&(X._root.data.Lang=new String(X.options.lang)),X.page=null,X.initMetadata(),X.initColor(),X.initVector(),X.initFonts(k.font),X.initText(),X.initImages(),X.initOutline(),X.initMarkings(k),X.initSubset(k),X.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},X.options.info)for(var tt in X.options.info)X.info[tt]=X.options.info[tt];return X.options.displayTitle&&(X._root.data.ViewerPreferences=X.ref({DisplayDocTitle:!0})),X._id=q.generateFileID(X.info),X._security=q.create(Y(X),k),X._write("%PDF-".concat(X.version)),X._write("%\xff\xff\xff\xff"),!1!==X.options.autoFirstPage&&X.addPage(),X}return f(U,[{key:"addPage",value:function(k){null==k&&(k=this.options),this.options.bufferPages||this.flushPages(),this.page=new rA(this,k),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(k){var BA=this.endPageMarkings(this.page);return this.addPage(k),this.initPageMarkings(BA),this}},{key:"bufferedPageRange",value:function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}},{key:"switchToPage",value:function(k){var BA;if(!(BA=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=BA}},{key:"flushPages",value:function(){var k=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=k.length;var dA,BA=TA(k);try{for(BA.s();!(dA=BA.n()).done;){var tt=dA.value;this.endPageMarkings(tt),tt.end()}}catch(it){BA.e(it)}finally{BA.f()}}},{key:"addNamedDestination",value:function(k){for(var BA=arguments.length,dA=new Array(BA>1?BA-1:0),tt=1;tt1114111?this.errorValue:d<55296||d>56319&&d<=65535?this.data[(this.data[d>>5]<<2)+(31&d)]:d<=65535?this.data[(this.data[2048+(d-55296>>5)]<<2)+(31&d)]:d>11)]+(d>>5&63)]<<2)+(31&d)]:this.data[this.data.length-4]},F}()},61753:function(N,A,n){"use strict";n(66992),n(41539),n(82472),n(92990),n(18927),n(33105),n(35035),n(74345),n(7174),n(32846),n(44731),n(77209),n(96319),n(58867),n(37789),n(33739),n(29368),n(14483),n(12056),n(3462),n(30678),n(27462),n(33824),n(55021),n(12974),n(15016),n(29135);var u=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],a=function(h,E,r){var c=h[E];h[E]=h[r],h[r]=c};N.exports={swap32LE:function(h){u&&function(h){for(var E=h.length,r=0;r/)){for(;rt=At();)VA.childNodes.push(rt),rt.parentNode=VA,VA.textContent+=3===rt.nodeType||4===rt.nodeType?rt.nodeValue:rt.textContent;return(RA=nt.match(/^<\/([\w:.-]+)\s*>/,!0))?(RA[1]===VA.nodeName||(ne('parseXml: tag not matching, opening "'+VA.nodeName+'" & closing "'+RA[1]+'"'),PA=!0),VA):(ne('parseXml: tag not matching, opening "'+VA.nodeName+'" & not closing'),PA=!0,VA)}if(nt.match(/^\/>/))return VA;ne('parseXml: tag could not be parsed "'+VA.nodeName+'"'),PA=!0}else{if(RA=nt.match(/^/))return new FA(null,8,RA,PA);if(RA=nt.match(/^<\?[\s\S]*?\?>/))return new FA(null,7,RA,PA);if(RA=nt.match(/^/))return new FA(null,10,RA,PA);if(RA=nt.match(/^/,!0))return new FA("#cdata-section",4,RA[1],PA);if(RA=nt.match(/^([^<]+)/,!0))return new FA("#text",3,$(RA[1]),PA)}};bA=JA();)1!==bA.nodeType||UA?(1===bA.nodeType||3===bA.nodeType&&""!==bA.nodeValue.trim())&&ne("parseXml: data after document end has been discarded"):UA=bA;return nt.matchAll()&&ne("parseXml: parsing error"),UA}function $(XA){return XA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(FA,nt,UA,bA){return nt?String.fromCharCode(parseInt(nt,10)):UA?String.fromCharCode(parseInt(UA,16)):bA&&Q[bA]?String.fromCharCode(Q[bA]):FA})}function nA(XA){var FA,nt;return XA=(XA||"").trim(),(FA=r[XA])?nt=[FA.slice(),1]:(FA=XA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(FA[1]=parseInt(FA[1]),FA[2]=parseInt(FA[2]),FA[3]=parseInt(FA[3]),FA[4]=parseFloat(FA[4]),FA[1]<256&&FA[2]<256&&FA[3]<256&&FA[4]<=1&&(nt=[FA.slice(1,4),FA[4]])):(FA=XA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(FA[1]=parseInt(FA[1]),FA[2]=parseInt(FA[2]),FA[3]=parseInt(FA[3]),FA[1]<256&&FA[2]<256&&FA[3]<256&&(nt=[FA.slice(1,4),1])):(FA=XA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(FA[1]=2.55*parseFloat(FA[1]),FA[2]=2.55*parseFloat(FA[2]),FA[3]=2.55*parseFloat(FA[3]),FA[1]<256&&FA[2]<256&&FA[3]<256&&(nt=[FA.slice(1,4),1])):(FA=XA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?nt=[[parseInt(FA[1],16),parseInt(FA[2],16),parseInt(FA[3],16)],1]:(FA=XA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(nt=[[17*parseInt(FA[1],16),17*parseInt(FA[2],16),17*parseInt(FA[3],16)],1]),Ze?Ze(nt,XA):nt}function uA(XA,FA,nt){var UA=XA[0].slice(),bA=XA[1]*FA;if(nt){for(var PA=0;PA=0;FA--)XA=wA(zn[FA].savedMatrix,XA);return XA}function TA(){return(new Yt).M(0,0).L(o.page.width,0).L(o.page.width,o.page.height).L(0,o.page.height).transform(kA(yA())).getBoundingBox()}function kA(XA){var FA=XA[0]*XA[3]-XA[1]*XA[2];return[XA[3]/FA,-XA[1]/FA,-XA[2]/FA,XA[0]/FA,(XA[2]*XA[5]-XA[3]*XA[4])/FA,(XA[1]*XA[4]-XA[0]*XA[5])/FA]}function W(XA){var FA=mA(XA[0]),nt=mA(XA[1]),UA=mA(XA[2]),bA=mA(XA[3]),PA=mA(XA[4]),JA=mA(XA[5]);if(EA(FA*bA-nt*UA,0))return[FA,nt,UA,bA,PA,JA]}function fA(XA){var FA=XA[2]||0,nt=XA[1]||0,UA=XA[0]||0;if(eA(FA,0)&&eA(nt,0))return[];if(eA(FA,0))return[-UA/nt];var bA=nt*nt-4*FA*UA;return EA(bA,0)&&bA>0?[(-nt+Math.sqrt(bA))/(2*FA),(-nt-Math.sqrt(bA))/(2*FA)]:eA(bA,0)?[-nt/(2*FA)]:[]}function iA(XA,FA){return(FA[0]||0)+(FA[1]||0)*XA+(FA[2]||0)*XA*XA+(FA[3]||0)*XA*XA*XA}function eA(XA,FA){return Math.abs(XA-FA)<1e-10}function EA(XA,FA){return Math.abs(XA-FA)>=1e-10}function mA(XA){return XA>-1e21&&XA<1e21?Math.round(1e6*XA)/1e6:0}function j(XA){for(var UA,FA=new Ct((XA||"").trim()),nt=[1,0,0,1,0,0];UA=FA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var bA=UA[1],PA=[],JA=new Ct(UA[2].trim()),At=void 0;At=JA.matchNumber();)PA.push(Number(At)),JA.matchSeparator();if("matrix"===bA&&6===PA.length)nt=wA(nt,[PA[0],PA[1],PA[2],PA[3],PA[4],PA[5]]);else if("translate"===bA&&2===PA.length)nt=wA(nt,[1,0,0,1,PA[0],PA[1]]);else if("translate"===bA&&1===PA.length)nt=wA(nt,[1,0,0,1,PA[0],0]);else if("scale"===bA&&2===PA.length)nt=wA(nt,[PA[0],0,0,PA[1],0,0]);else if("scale"===bA&&1===PA.length)nt=wA(nt,[PA[0],0,0,PA[0],0,0]);else if("rotate"===bA&&3===PA.length){var RA=PA[0]*Math.PI/180;nt=wA(nt,[1,0,0,1,PA[1],PA[2]],[Math.cos(RA),Math.sin(RA),-Math.sin(RA),Math.cos(RA),0,0],[1,0,0,1,-PA[1],-PA[2]])}else if("rotate"===bA&&1===PA.length){var rt=PA[0]*Math.PI/180;nt=wA(nt,[Math.cos(rt),Math.sin(rt),-Math.sin(rt),Math.cos(rt),0,0])}else if("skewX"===bA&&1===PA.length){var VA=PA[0]*Math.PI/180;nt=wA(nt,[1,0,Math.tan(VA),1,0,0])}else{if("skewY"!==bA||1!==PA.length)return;var wt=PA[0]*Math.PI/180;nt=wA(nt,[1,Math.tan(wt),0,1,0,0])}FA.matchSeparator()}if(!FA.matchAll())return nt}function b(XA,FA,nt,UA,bA,PA){var JA=(XA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],At=JA[1]||JA[4]||"meet",VA=FA/UA,wt=nt/bA,Ft={Min:0,Mid:.5,Max:1}[JA[2]||"Mid"]-(PA||0),Tt={Min:0,Mid:.5,Max:1}[JA[3]||"Mid"]-(PA||0);return"slice"===At?wt=VA=Math.max(VA,wt):"meet"===At&&(wt=VA=Math.min(VA,wt)),[VA,0,0,wt,Ft*(FA-UA*VA),Tt*(nt-bA*wt)]}function rA(XA){var FA=Object.create(null);XA=(XA||"").trim().split(/;/);for(var nt=0;ntue&&(Ht=ue,ue=re,re=Ht),Zt>jt&&(Ht=jt,jt=Zt,Zt=Ht);for(var Ie=fA(Ft),Oe=0;Oe=0&&Ie[Oe]<=1){var Te=iA(Ie[Oe],VA);Teue&&(ue=Te)}for(var ye=fA(Tt),Ne=0;Ne=0&&ye[Ne]<=1){var Xe=iA(ye[Ne],wt);Xejt&&(jt=Xe)}return[re,Zt,ue,jt]},this.getPointAtLength=function(Ht){if(eA(Ht,0))return this.startPoint;if(eA(Ht,this.totalLength))return this.endPoint;if(!(Ht<0||Ht>this.totalLength))for(var re=1;re<=rt;re++){var Zt=Ot[re-1],ue=Ot[re];if(Zt<=Ht&&Ht<=ue){var jt=(re-(ue-Ht)/(ue-Zt))/rt,Ie=iA(jt,VA),Oe=iA(jt,wt),Te=iA(jt,Ft),ye=iA(jt,Tt);return[Ie,Oe,Math.atan2(ye,Te)]}}}},pt=function(FA,nt,UA,bA){this.totalLength=Math.sqrt((UA-FA)*(UA-FA)+(bA-nt)*(bA-nt)),this.startPoint=[FA,nt,Math.atan2(bA-nt,UA-FA)],this.endPoint=[UA,bA,Math.atan2(bA-nt,UA-FA)],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(PA){if(PA>=0&&PA<=this.totalLength){var JA=PA/this.totalLength||0;return[this.startPoint[0]+JA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+JA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},Yt=function XA(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var PA,JA,At,FA=0,nt=0,UA=0,bA=0;this.move=function(RA,rt){return FA=UA=RA,nt=bA=rt,null},this.line=function(RA,rt){var VA=new pt(UA,bA,RA,rt);return UA=RA,bA=rt,VA},this.curve=function(RA,rt,VA,wt,Ft,Tt){var Ot=new ct(UA,bA,RA,rt,VA,wt,Ft,Tt);return UA=Ft,bA=Tt,Ot},this.close=function(){var RA=new pt(UA,bA,FA,nt);return UA=FA,bA=nt,RA},this.addCommand=function(RA){this.pathCommands.push(RA);var rt=this[RA[0]].apply(this,RA.slice(3));rt&&(rt.hasStart=RA[1],rt.hasEnd=RA[2],this.startPoint=this.startPoint||rt.startPoint,this.endPoint=rt.endPoint,this.pathSegments.push(rt),this.totalLength+=rt.totalLength)},this.M=function(RA,rt){return this.addCommand(["move",!0,!0,RA,rt]),PA="M",this},this.m=function(RA,rt){return this.M(UA+RA,bA+rt)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),PA="Z",this},this.L=function(RA,rt){return this.addCommand(["line",!0,!0,RA,rt]),PA="L",this},this.l=function(RA,rt){return this.L(UA+RA,bA+rt)},this.H=function(RA){return this.L(RA,bA)},this.h=function(RA){return this.L(UA+RA,bA)},this.V=function(RA){return this.L(UA,RA)},this.v=function(RA){return this.L(UA,bA+RA)},this.C=function(RA,rt,VA,wt,Ft,Tt){return this.addCommand(["curve",!0,!0,RA,rt,VA,wt,Ft,Tt]),PA="C",JA=VA,At=wt,this},this.c=function(RA,rt,VA,wt,Ft,Tt){return this.C(UA+RA,bA+rt,UA+VA,bA+wt,UA+Ft,bA+Tt)},this.S=function(RA,rt,VA,wt){return this.C(UA+("C"===PA?UA-JA:0),bA+("C"===PA?bA-At:0),RA,rt,VA,wt)},this.s=function(RA,rt,VA,wt){return this.C(UA+("C"===PA?UA-JA:0),bA+("C"===PA?bA-At:0),UA+RA,bA+rt,UA+VA,bA+wt)},this.Q=function(RA,rt,VA,wt){return this.addCommand(["curve",!0,!0,UA+.6666666666666666*(RA-UA),bA+2/3*(rt-bA),VA+2/3*(RA-VA),wt+2/3*(rt-wt),VA,wt]),PA="Q",JA=RA,At=rt,this},this.q=function(RA,rt,VA,wt){return this.Q(UA+RA,bA+rt,UA+VA,bA+wt)},this.T=function(RA,rt){return this.Q(UA+("Q"===PA?UA-JA:0),bA+("Q"===PA?bA-At:0),RA,rt)},this.t=function(RA,rt){return this.Q(UA+("Q"===PA?UA-JA:0),bA+("Q"===PA?bA-At:0),UA+RA,bA+rt)},this.A=function(RA,rt,VA,wt,Ft,Tt,Ot){if(eA(RA,0)||eA(rt,0))this.addCommand(["line",!0,!0,Tt,Ot]);else{VA*=Math.PI/180,RA=Math.abs(RA),rt=Math.abs(rt),wt=1*!!wt,Ft=1*!!Ft;var Xt=Math.cos(VA)*(UA-Tt)/2+Math.sin(VA)*(bA-Ot)/2,ie=Math.cos(VA)*(bA-Ot)/2-Math.sin(VA)*(UA-Tt)/2,ht=Xt*Xt/(RA*RA)+ie*ie/(rt*rt);ht>1&&(RA*=Math.sqrt(ht),rt*=Math.sqrt(ht));var St=Math.sqrt(Math.max(0,RA*RA*rt*rt-RA*RA*ie*ie-rt*rt*Xt*Xt)/(RA*RA*ie*ie+rt*rt*Xt*Xt)),qt=(wt===Ft?-1:1)*St*RA*ie/rt,Ht=(wt===Ft?1:-1)*St*rt*Xt/RA,re=Math.cos(VA)*qt-Math.sin(VA)*Ht+(UA+Tt)/2,Zt=Math.sin(VA)*qt+Math.cos(VA)*Ht+(bA+Ot)/2,ue=Math.atan2((ie-Ht)/rt,(Xt-qt)/RA),jt=Math.atan2((-ie-Ht)/rt,(-Xt-qt)/RA);0===Ft&&jt-ue>0?jt-=2*Math.PI:1===Ft&&jt-ue<0&&(jt+=2*Math.PI);for(var Ie=Math.ceil(Math.abs(jt-ue)/(Math.PI/Rn)),Oe=0;OeRA[2]&&(RA[2]=wt[2]),wt[1]RA[3]&&(RA[3]=wt[3]);return RA[0]===1/0&&(RA[0]=0),RA[1]===1/0&&(RA[1]=0),RA[2]===-1/0&&(RA[2]=0),RA[3]===-1/0&&(RA[3]=0),RA},this.getPointAtLength=function(RA){if(RA>=0&&RA<=this.totalLength){for(var rt,VA=0;VAbA.selector.specificity||(FA[PA]=bA.css[PA],nt[PA]=bA.selector.specificity)}return FA}(FA),this.allowedChildren=[],this.attr=function(PA){if("function"==typeof FA.getAttribute)return FA.getAttribute(PA)},this.resolveUrl=function(PA){var JA=(PA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],At=JA[1]||JA[3]||JA[5]||JA[7],RA=JA[2]||JA[4]||JA[6]||JA[8];if(RA){if(!At){var rt=s.getElementById(RA);if(rt)return-1===this.stack.indexOf(rt)?rt:void ne('SVGtoPDF: loop of circular references for id "'+RA+'"')}if(Ue){var VA=Jt[At];if(!VA){(function GA(XA){return"object"==typeof XA&&null!==XA&&"number"==typeof XA.length})(VA=Ue(At))||(VA=[VA]);for(var wt=0;wt=0&&At[3]>=0?At:JA},this.getPercent=function(PA,JA){var At=this.attr(PA),RA=new Ct((At||"").trim()),wt=RA.matchNumber();return!wt||(RA.match("%")&&(wt*=.01),RA.matchAll())?JA:Math.max(0,Math.min(1,wt))},this.chooseValue=function(PA){for(var JA=0;JA=0&&(RA=VA);break;case"stroke-miterlimit":null!=(VA=parseFloat(At))&&VA>=1&&(RA=VA);break;case"word-spacing":case"letter-spacing":RA=this.computeLength(At,this.getViewport());break;case"stroke-dashoffset":if(null!=(RA=this.computeLength(At,this.getViewport()))&&RA<0)for(var ie=this.get("stroke-dasharray"),ht=0;ht0?JA:this.ref?this.ref.getChildren():[]},this.getPaint=function(JA,At,RA,rt){var VA="userSpaceOnUse"!==this.attr("patternUnits"),wt="objectBoundingBox"===this.attr("patternContentUnits"),Ft=this.getLength("x",VA?1:this.getParentVWidth(),0),Tt=this.getLength("y",VA?1:this.getParentVHeight(),0),Ot=this.getLength("width",VA?1:this.getParentVWidth(),0),Xt=this.getLength("height",VA?1:this.getParentVHeight(),0);wt&&!VA?(Ft=(Ft-JA[0])/(JA[2]-JA[0])||0,Tt=(Tt-JA[1])/(JA[3]-JA[1])||0,Ot=Ot/(JA[2]-JA[0])||0,Xt=Xt/(JA[3]-JA[1])||0):!wt&&VA&&(Ft=JA[0]+Ft*(JA[2]-JA[0]),Tt=JA[1]+Tt*(JA[3]-JA[1]),Ot*=JA[2]-JA[0],Xt*=JA[3]-JA[1]);var ie=this.getViewbox("viewBox",[0,0,Ot,Xt]),St=wA(b((this.attr("preserveAspectRatio")||"").trim(),Ot,Xt,ie[2],ie[3],0),[1,0,0,1,-ie[0],-ie[1]]),qt=j(this.attr("patternTransform"));if(wt&&(qt=wA([JA[2]-JA[0],0,0,JA[3]-JA[1],JA[0],JA[1]],qt)),(qt=W(qt=wA(qt,[1,0,0,1,Ft,Tt])))&&(St=W(St))&&(Ot=mA(Ot))&&(Xt=mA(Xt))){var Ht=f([0,0,Ot,Xt]);return o.transform.apply(o,St),this.drawChildren(RA,rt),p(Ht),[I(Ht,Ot,Xt,qt),At]}return UA?[UA[0],UA[1]*At]:void 0},this.getVWidth=function(){var JA="userSpaceOnUse"!==this.attr("patternUnits"),At=this.getLength("width",JA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,At,0])[2]},this.getVHeight=function(){var JA="userSpaceOnUse"!==this.attr("patternUnits"),At=this.getLength("height",JA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,At])[3]}},hA=function XA(FA,nt,UA){KA.call(this,FA,nt),this.allowedChildren=["stop"],this.ref=function(){var JA=this.getUrl("href")||this.getUrl("xlink:href");if(JA&&JA.nodeName===FA.nodeName)return new XA(JA,nt,UA)}.call(this);var bA=this.attr;this.attr=function(JA){var At=bA.call(this,JA);return null!=At||"href"===JA||"xlink:href"===JA?At:this.ref?this.ref.attr(JA):null};var PA=this.getChildren;this.getChildren=function(){var JA=PA.call(this);return JA.length>0?JA:this.ref?this.ref.getChildren():[]},this.getPaint=function(JA,At,RA,rt){var VA=this.getChildren();if(0!==VA.length){if(1===VA.length){var wt=VA[0],Ft=wt.get("stop-color");return"none"===Ft?void 0:uA(Ft,wt.get("stop-opacity")*At,rt)}var ie,ht,St,qt,Ht,re,Tt="userSpaceOnUse"!==this.attr("gradientUnits"),Ot=j(this.attr("gradientTransform")),Xt=this.attr("spreadMethod"),Zt=0,ue=0,jt=1;if(Tt&&(Ot=wA([JA[2]-JA[0],0,0,JA[3]-JA[1],JA[0],JA[1]],Ot)),Ot=W(Ot)){if("linearGradient"===this.name)ht=this.getLength("x1",Tt?1:this.getVWidth(),0),St=this.getLength("x2",Tt?1:this.getVWidth(),Tt?1:this.getVWidth()),qt=this.getLength("y1",Tt?1:this.getVHeight(),0),Ht=this.getLength("y2",Tt?1:this.getVHeight(),0);else{St=this.getLength("cx",Tt?1:this.getVWidth(),Tt?.5:.5*this.getVWidth()),Ht=this.getLength("cy",Tt?1:this.getVHeight(),Tt?.5:.5*this.getVHeight()),re=this.getLength("r",Tt?1:this.getViewport(),Tt?.5:.5*this.getViewport()),ht=this.getLength("fx",Tt?1:this.getVWidth(),St),qt=this.getLength("fy",Tt?1:this.getVHeight(),Ht),re<0&&ne("SvgElemGradient: negative r value");var Ie=Math.sqrt(Math.pow(St-ht,2)+Math.pow(Ht-qt,2)),Oe=1;Ie>re&&(ht=St+(ht-St)*(Oe=re/Ie),qt=Ht+(qt-Ht)*Oe),re=Math.max(re,Ie*Oe*1.000001)}if("reflect"===Xt||"repeat"===Xt){var Te=kA(Ot),ye=NA([JA[0],JA[1]],Te),Ne=NA([JA[2],JA[1]],Te),Xe=NA([JA[2],JA[3]],Te),In=NA([JA[0],JA[3]],Te);"linearGradient"===this.name?(Zt=Math.max((ye[0]-St)*(St-ht)+(ye[1]-Ht)*(Ht-qt),(Ne[0]-St)*(St-ht)+(Ne[1]-Ht)*(Ht-qt),(Xe[0]-St)*(St-ht)+(Xe[1]-Ht)*(Ht-qt),(In[0]-St)*(St-ht)+(In[1]-Ht)*(Ht-qt))/(Math.pow(St-ht,2)+Math.pow(Ht-qt,2)),ue=Math.max((ye[0]-ht)*(ht-St)+(ye[1]-qt)*(qt-Ht),(Ne[0]-ht)*(ht-St)+(Ne[1]-qt)*(qt-Ht),(Xe[0]-ht)*(ht-St)+(Xe[1]-qt)*(qt-Ht),(In[0]-ht)*(ht-St)+(In[1]-qt)*(qt-Ht))/(Math.pow(St-ht,2)+Math.pow(Ht-qt,2))):Zt=Math.sqrt(Math.max(Math.pow(ye[0]-St,2)+Math.pow(ye[1]-Ht,2),Math.pow(Ne[0]-St,2)+Math.pow(Ne[1]-Ht,2),Math.pow(Xe[0]-St,2)+Math.pow(Xe[1]-Ht,2),Math.pow(In[0]-St,2)+Math.pow(In[1]-Ht,2)))/re-1,Zt=Math.ceil(Zt+.5),jt=(ue=Math.ceil(ue+.5))+1+Zt}ie="linearGradient"===this.name?o.linearGradient(ht-ue*(St-ht),qt-ue*(Ht-qt),St+Zt*(St-ht),Ht+Zt*(Ht-qt)):o.radialGradient(ht,qt,0,St,Ht,re+Zt*re);for(var tn=0;tn0&&ie.stop((tn+0)/jt,on[0],on[1]),ie.stop((tn+dn)/(Zt+ue+1),on[0],on[1]),en===VA.length-1&&dn<1&&ie.stop((tn+1)/jt,on[0],on[1])}return ie.setTransform.apply(ie,Ot),[ie,1]}return UA?[UA[0],UA[1]*At]:void 0}}},_=function(FA,nt){ZA.call(this,FA,nt),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(UA,bA){if("hidden"!==this.get("visibility")&&this.shape){if(o.save(),this.transform(),this.clip(),UA)this.shape.insertInDocument(),H(c.white),o.fill(this.get("clip-rule"));else{var JA;this.mask()&&(JA=f(TA()));var At=this.shape.getSubPaths(),RA=this.getFill(UA,bA),rt=this.getStroke(UA,bA),VA=this.get("stroke-width"),wt=this.get("stroke-linecap");if(RA||rt){if(RA&&H(RA),rt){for(var Ft=0;Ft0&&At[Ft].startPoint&&At[Ft].startPoint.length>1){var Tt=At[Ft].startPoint[0],Ot=At[Ft].startPoint[1];H(rt),"square"===wt?o.rect(Tt-.5*VA,Ot-.5*VA,VA,VA):"round"===wt&&o.circle(Tt,Ot,.5*VA),o.fill()}var Xt=this.get("stroke-dasharray"),ie=this.get("stroke-dashoffset");if(EA(this.dashScale,1)){for(var ht=0;ht0&&At[St].insertInDocument();RA&&rt?o.fillAndStroke(this.get("fill-rule")):RA?o.fill(this.get("fill-rule")):rt&&o.stroke()}var qt=this.get("marker-start"),Ht=this.get("marker-mid"),re=this.get("marker-end");if("none"!==qt||"none"!==Ht||"none"!==re){var Zt=this.shape.getMarkers();if("none"!==qt&&new st(qt,null).drawMarker(!1,bA,Zt[0],VA),"none"!==Ht)for(var jt=1;jt0&&JA>0?At&&RA?(At=Math.min(At,.5*PA),RA=Math.min(RA,.5*JA),this.shape=(new Yt).M(UA+At,bA).L(UA+PA-At,bA).A(At,RA,0,0,1,UA+PA,bA+RA).L(UA+PA,bA+JA-RA).A(At,RA,0,0,1,UA+PA-At,bA+JA).L(UA+At,bA+JA).A(At,RA,0,0,1,UA,bA+JA-RA).L(UA,bA+RA).A(At,RA,0,0,1,UA+At,bA).Z()):this.shape=(new Yt).M(UA,bA).L(UA+PA,bA).L(UA+PA,bA+JA).L(UA,bA+JA).Z():this.shape=new Yt},$A=function(FA,nt){_.call(this,FA,nt);var UA=this.getLength("cx",this.getVWidth(),0),bA=this.getLength("cy",this.getVHeight(),0),PA=this.getLength("r",this.getViewport(),0);this.shape=PA>0?(new Yt).M(UA+PA,bA).A(PA,PA,0,0,1,UA-PA,bA).A(PA,PA,0,0,1,UA+PA,bA).Z():new Yt},O=function(FA,nt){_.call(this,FA,nt);var UA=this.getLength("cx",this.getVWidth(),0),bA=this.getLength("cy",this.getVHeight(),0),PA=this.getLength("rx",this.getVWidth(),0),JA=this.getLength("ry",this.getVHeight(),0);this.shape=PA>0&&JA>0?(new Yt).M(UA+PA,bA).A(PA,JA,0,0,1,UA-PA,bA).A(PA,JA,0,0,1,UA+PA,bA).Z():new Yt},qA=function(FA,nt){_.call(this,FA,nt);var UA=this.getLength("x1",this.getVWidth(),0),bA=this.getLength("y1",this.getVHeight(),0),PA=this.getLength("x2",this.getVWidth(),0),JA=this.getLength("y2",this.getVHeight(),0);this.shape=(new Yt).M(UA,bA).L(PA,JA)},et=function(FA,nt){_.call(this,FA,nt);var UA=this.getNumberList("points");this.shape=new Yt;for(var bA=0;bA0?UA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},st=function(FA,nt){Qt.call(this,FA,nt);var UA=this.getLength("markerWidth",this.getParentVWidth(),3),bA=this.getLength("markerHeight",this.getParentVHeight(),3),PA=this.getViewbox("viewBox",[0,0,UA,bA]);this.getVWidth=function(){return PA[2]},this.getVHeight=function(){return PA[3]},this.drawMarker=function(JA,At,RA,rt){o.save();var VA=this.attr("orient"),wt=this.attr("markerUnits"),Ft="auto"===VA?RA[2]:(parseFloat(VA)||0)*Math.PI/180,Tt="userSpaceOnUse"===wt?1:rt;o.transform(Math.cos(Ft)*Tt,Math.sin(Ft)*Tt,-Math.sin(Ft)*Tt,Math.cos(Ft)*Tt,RA[0],RA[1]);var ht,Ot=this.getLength("refX",this.getVWidth(),0),Xt=this.getLength("refY",this.getVHeight(),0),ie=b(this.attr("preserveAspectRatio"),UA,bA,PA[2],PA[3],.5);"hidden"===this.get("overflow")&&o.rect(ie[0]*(PA[0]+PA[2]/2-Ot)-UA/2,ie[3]*(PA[1]+PA[3]/2-Xt)-bA/2,UA,bA).clip(),o.transform.apply(o,ie),o.translate(-Ot,-Xt),this.get("opacity")<1&&!JA&&(ht=f(TA())),this.drawChildren(JA,At),ht&&(p(ht),o.fillOpacity(this.get("opacity")),v(ht)),o.restore()}},Ut=function(FA,nt){Qt.call(this,FA,nt),this.useMask=function(UA){var bA=f(TA());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(),p(bA),S(bA,!0)}},xt=function(FA,nt){Qt.call(this,FA,nt),this.useMask=function(UA){var PA,JA,At,RA,bA=f(TA());o.save(),"userSpaceOnUse"===this.attr("maskUnits")?(PA=this.getLength("x",this.getVWidth(),-.1*(UA[2]-UA[0])+UA[0]),JA=this.getLength("y",this.getVHeight(),-.1*(UA[3]-UA[1])+UA[1]),At=this.getLength("width",this.getVWidth(),1.2*(UA[2]-UA[0])),RA=this.getLength("height",this.getVHeight(),1.2*(UA[3]-UA[1]))):(PA=this.getLength("x",this.getVWidth(),-.1)*(UA[2]-UA[0])+UA[0],JA=this.getLength("y",this.getVHeight(),-.1)*(UA[3]-UA[1])+UA[1],At=this.getLength("width",this.getVWidth(),1.2)*(UA[2]-UA[0]),RA=this.getLength("height",this.getVHeight(),1.2)*(UA[3]-UA[1])),o.rect(PA,JA,At,RA).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(),p(bA),S(bA,!0)}},bt=function(FA,nt){ZA.call(this,FA,nt),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var UA=new Yt,bA=0;bA Tj")}o.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(DA(this._font.font,this._font.size)+YA(this._font.font,this._font.size)),UA,bA)},this.decorate=function(UA,bA,PA,JA){var At=this.getFill(PA,JA),RA=this.getStroke(PA,JA);At&&H(At),RA&&(z(RA),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 rt=0,VA=this._pos;rt0?JA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((PA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===PA.nodeName){var At=new OA(PA,this);this.pathObject=At.shape.clone().transform(At.get("transform")),this.pathLength=this.chooseValue(At.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},Wt=function(FA,nt){bt.call(this,FA,nt),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(UA){var RA,rt,bA="",PA=FA.textContent,JA=[],At=[],VA=0,wt=0;function Ft(){if(At.length)for(var ht=At[At.length-1],Ht={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[RA+rt]*(ht.x+ht.width-At[0].x)||0,re=0;reqt||ue<0)ht._pos[Zt].hidden=!0;else{var jt=St.getPointAtLength(ue*Ht);EA(Ht,1)&&(ht._pos[Zt].scale*=Ht,ht._pos[Zt].width*=Ht),ht._pos[Zt].x=jt[0]-.5*ht._pos[Zt].width*Math.cos(jt[2])-ht._pos[Zt].y*Math.sin(jt[2]),ht._pos[Zt].y=jt[1]-.5*ht._pos[Zt].width*Math.sin(jt[2])+ht._pos[Zt].y*Math.cos(jt[2]),ht._pos[Zt].rotate=jt[2]+ht._pos[Zt].rotate,ht._pos[Zt].continuous=!1}}else for(var Ie=0;Ie0&&jt<1/0)for(var Ie=0;Ie=2)for(var Oe=(St-(ue-Zt))/(ht.length-1),Te=0;Te0?v-4:v;for(F=0;F>16&255,I[M++]=f>>8&255,I[M++]=255&f;return 2===S&&(f=u[e.charCodeAt(F)]<<2|u[e.charCodeAt(F+1)]>>4,I[M++]=255&f),1===S&&(f=u[e.charCodeAt(F)]<<10|u[e.charCodeAt(F+1)]<<4|u[e.charCodeAt(F+2)]>>2,I[M++]=f>>8&255,I[M++]=255&f),I},A.fromByteArray=function w(e){for(var f,p=e.length,v=p%3,S=[],I=16383,M=0,y=p-v;My?y:M+I));return 1===v?S.push(n[(f=e[p-1])>>2]+n[f<<4&63]+"=="):2===v&&S.push(n[(f=(e[p-2]<<8)+e[p-1])>>10]+n[f>>4&63]+n[f<<2&63]+"="),S.join("")};for(var n=[],u=[],a=typeof Uint8Array<"u"?Uint8Array:Array,o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0;s<64;++s)n[s]=o[s],u[o.charCodeAt(s)]=s;function h(e){var f=e.length;if(f%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var p=e.indexOf("=");return-1===p&&(p=f),[p,p===f?0:4-p%4]}function Q(e){return n[e>>18&63]+n[e>>12&63]+n[e>>6&63]+n[63&e]}function C(e,f,p){for(var S=[],I=f;I0},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 s=this.buf_ptr_,g=this.input_.read(this.buf_,s,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},o.prototype.readBits=function(s){32-this.bit_pos_>>this.bit_pos_&a[s];return this.bit_pos_+=s,g},N.exports=o},17080:function(N,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])},66450:function(N,A,n){var a=n(66154).g,o=n(66154).j,s=n(24181),g=n(45139),h=n(60966).h,E=n(60966).g,r=n(17080),c=n(98435),Q=n(72973),C=8,w=16,e=256,f=704,p=26,v=6,S=2,I=8,M=255,y=1080,F=18,Y=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),D=16,d=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),H=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),z=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 aA(rA){var oA;return 0===rA.readBits(1)?16:(oA=rA.readBits(3))>0?17+oA:(oA=rA.readBits(3))>0?8+oA:17}function K(rA){if(rA.readBits(1)){var oA=rA.readBits(3);return 0===oA?1:rA.readBits(oA)+(1<1&&0===CA)throw new Error("Invalid size byte");oA.meta_block_length|=CA<<8*gA}}else for(gA=0;gA4&&0===DA)throw new Error("Invalid size nibble");oA.meta_block_length|=DA<<4*gA}return++oA.meta_block_length,!oA.input_end&&!oA.is_metadata&&(oA.is_uncompressed=rA.readBits(1)),oA}function uA(rA,oA,pA){var gA;return pA.fillBitWindow(),(gA=rA[oA+=pA.val_>>>pA.bit_pos_&M].bits-I)>0&&(pA.bit_pos_+=I,oA+=rA[oA].value,oA+=pA.val_>>>pA.bit_pos_&(1<>=1,++IA;for(YA=0;YA0;++YA){var Qt,KA=Y[YA],ZA=0;xA.fillBitWindow(),xA.bit_pos_+=Yt[ZA+=xA.val_>>>xA.bit_pos_&15].bits,Ct[KA]=Qt=Yt[ZA].value,0!==Qt&&(ct-=32>>Qt,++pt)}if(1!==pt&&0!==ct)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function wA(rA,oA,pA,xA){for(var gA=0,CA=C,DA=0,YA=0,zA=32768,IA=[],jA=0;jA<32;jA++)IA.push(new h(0,0));for(E(IA,0,5,rA,F);gA0;){var Ct,ut=0;if(xA.readMoreInput(),xA.fillBitWindow(),xA.bit_pos_+=IA[ut+=xA.val_>>>xA.bit_pos_&31].bits,(Ct=255&IA[ut].value)>Ct);else{var pt,Yt,ct=Ct-14,KA=0;if(Ct===w&&(KA=CA),YA!==KA&&(DA=0,YA=KA),pt=DA,DA>0&&(DA-=2,DA<<=ct),gA+(Yt=(DA+=xA.readBits(ct)+3)-pt)>oA)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var ZA=0;ZA>>5]),this.htrees=new Uint32Array(oA)}function iA(rA,oA){var CA,DA,pA={num_htrees:null,context_map:null},gA=0;oA.readMoreInput();var YA=pA.num_htrees=K(oA)+1,zA=pA.context_map=new Uint8Array(rA);if(YA<=1)return pA;for(oA.readBits(1)&&(gA=oA.readBits(4)+1),CA=[],DA=0;DA=rA)throw new Error("[DecodeContextMap] i >= context_map_size");zA[DA]=0,++DA}else zA[DA]=IA-gA,++DA}return oA.readBits(1)&&function W(rA,oA){var xA,pA=new Uint8Array(256);for(xA=0;xA<256;++xA)pA[xA]=xA;for(xA=0;xA=rA&&(jA-=rA),xA[pA]=jA,gA[YA+(1&CA[zA])]=jA,++CA[zA]}function EA(rA,oA,pA,xA,gA,CA){var IA,DA=gA+1,YA=pA&gA,zA=CA.pos_&s.IBUF_MASK;if(oA<8||CA.bit_pos_+(oA<<3)0;)CA.readMoreInput(),xA[YA++]=CA.readBits(8),YA===DA&&(rA.write(xA,DA),YA=0);else{if(CA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;CA.bit_pos_<32;)xA[YA]=CA.val_>>>CA.bit_pos_,CA.bit_pos_+=8,++YA,--oA;if(zA+(IA=CA.bit_end_pos_-CA.bit_pos_>>3)>s.IBUF_MASK){for(var jA=s.IBUF_MASK+1-zA,ut=0;ut=DA)for(rA.write(xA,DA),YA-=DA,ut=0;ut=DA;){if(CA.input_.read(xA,YA,IA=DA-YA)oA.buffer.length){var ne=new Uint8Array(xA+vA);ne.set(oA.buffer),oA.buffer=ne}if(gA=mn.input_end,gt=mn.is_uncompressed,mn.is_metadata)for(mA(ft);vA>0;--vA)ft.readMoreInput(),ft.readBits(8);else if(0!==vA){if(gt){ft.bit_pos_=ft.bit_pos_+7&-8,EA(oA,vA,xA,jA,IA,ft),xA+=vA;continue}for(pA=0;pA<3;++pA)L[pA]=K(ft)+1,L[pA]>=2&&(NA(L[pA]+2,ZA,pA*y,ft),NA(p,Qt,pA*y,ft),q[pA]=yA(Qt,pA*y,ft),_[pA]=1);for(ft.readMoreInput(),O=(1<<(HA=ft.readBits(2)))-1,qA=($A=D+(ft.readBits(4)<0;){var Ze,Ue,Rn,zn,Jt,zt,Vt,se,Qn,Nn,Wn,ei;for(ft.readMoreInput(),0===q[1]&&(eA(L[1],ZA,1,J,hA,_,ft),q[1]=yA(Qt,y,ft),gn=KA[1].htrees[J[1]]),--q[1],(Ue=(Ze=uA(KA[1].codes,gn,ft))>>6)>=2?(Ue-=2,Vt=-1):Vt=0,zn=c.kCopyRangeLut[Ue]+(7&Ze),Jt=c.kInsertLengthPrefixCode[Rn=c.kInsertRangeLut[Ue]+(Ze>>3&7)].offset+ft.readBits(c.kInsertLengthPrefixCode[Rn].nbits),zt=c.kCopyLengthPrefixCode[zn].offset+ft.readBits(c.kCopyLengthPrefixCode[zn].nbits),pt=jA[xA-1&IA],Yt=jA[xA-2&IA],Qn=0;Qn4?3:zt-2))]],ft))>=$A&&(ei=(Vt-=$A)&O,Vt=$A+((yn=(2+(1&(Vt>>=HA))<<(Wn=1+(Vt>>1)))-4)+ft.readBits(Wn)<(YA=xA=g.minDictionaryWordLength&&zt<=g.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+xA+" distance: "+se+" len: "+zt+" bytes left: "+vA);var yn=g.offsetsByLength[zt],XA=se-YA-1,FA=g.sizeBitsByLength[zt],bA=XA>>FA;if(yn+=(XA&(1<=ut){oA.write(jA,zA);for(var JA=0;JA0&&(Ct[3&ct]=se,++ct),zt>vA)throw new Error("Invalid backward reference. pos: "+xA+" distance: "+se+" len: "+zt+" bytes left: "+vA);for(Qn=0;Qn>=1;return(g&E-1)+E}function o(g,h,E,r,c){do{g[h+(r-=E)]=new n(c.bits,c.value)}while(r>0)}function s(g,h,E){for(var r=1<0;--Y[w])o(g,h+f,p,M,new n(255&w,65535&F[e++])),f=a(f,w);for(S=y-1,v=-1,w=E+1,p=2;w<=u;++w,p<<=1)for(;Y[w]>0;--Y[w])(f&S)!==v&&(h+=M,y+=M=1<<(I=s(Y,w,E)),g[Q+(v=f&S)]=new n(I+E&255,h-Q-v&65535)),o(g,h+(f>>E),p,M,new n(w-E&255,65535&F[e++])),f=a(f,w);return y}},98435:function(N,A){function n(u,a){this.offset=u,this.nbits=a}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]},66154:function(N,A){function n(a){this.buffer=a,this.pos=0}function u(a){this.buffer=a,this.pos=0}n.prototype.read=function(a,o,s){this.pos+s>this.buffer.length&&(s=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(a.subarray(0,o),this.pos),this.pos+=o,o},A.j=u},72973:function(N,A,n){var u=n(45139),w=10,e=11;function D(z,aA,K){this.prefix=new Uint8Array(z.length),this.transform=aA,this.suffix=new Uint8Array(K.length);for(var $=0;$'),new D("",0,"\n"),new D("",3,""),new D("",0,"]"),new D("",0," for "),new D("",14,""),new D("",2,""),new D("",0," a "),new D("",0," that "),new D(" ",w,""),new D("",0,". "),new D(".",0,""),new D(" ",0,", "),new D("",15,""),new D("",0," with "),new D("",0,"'"),new D("",0," from "),new D("",0," by "),new D("",16,""),new D("",17,""),new D(" the ",0,""),new D("",4,""),new D("",0,". The "),new D("",e,""),new D("",0," on "),new D("",0," as "),new D("",0," is "),new D("",7,""),new D("",1,"ing "),new D("",0,"\n\t"),new D("",0,":"),new D(" ",0,". "),new D("",0,"ed "),new D("",20,""),new D("",18,""),new D("",6,""),new D("",0,"("),new D("",w,", "),new D("",8,""),new D("",0," at "),new D("",0,"ly "),new D(" the ",0," of "),new D("",5,""),new D("",9,""),new D(" ",w,", "),new D("",w,'"'),new D(".",0,"("),new D("",e," "),new D("",w,'">'),new D("",0,'="'),new D(" ",0,"."),new D(".com/",0,""),new D(" the ",0," of the "),new D("",w,"'"),new D("",0,". This "),new D("",0,","),new D(".",0," "),new D("",w,"("),new D("",w,"."),new D("",0," not "),new D(" ",0,'="'),new D("",0,"er "),new D(" ",e," "),new D("",0,"al "),new D(" ",e,""),new D("",0,"='"),new D("",e,'"'),new D("",w,". "),new D(" ",0,"("),new D("",0,"ful "),new D(" ",w,". "),new D("",0,"ive "),new D("",0,"less "),new D("",e,"'"),new D("",0,"est "),new D(" ",w,"."),new D("",e,'">'),new D(" ",0,"='"),new D("",w,","),new D("",0,"ize "),new D("",e,"."),new D("\xc2\xa0",0,""),new D(" ",0,","),new D("",w,'="'),new D("",e,'="'),new D("",0,"ous "),new D("",e,", "),new D("",w,"='"),new D(" ",w,","),new D(" ",e,'="'),new D(" ",e,", "),new D("",e,","),new D("",e,"("),new D("",e,". "),new D(" ",e,"."),new D("",e,"='"),new D(" ",e,". "),new D(" ",w,'="'),new D(" ",e,"='"),new D(" ",w,"='")];function H(z,aA){return z[aA]<192?(z[aA]>=97&&z[aA]<=122&&(z[aA]^=32),1):z[aA]<224?(z[aA+1]^=32,2):(z[aA+2]^=5,3)}A.kTransforms=d,A.kNumTransforms=d.length,A.transformDictionaryWord=function(z,aA,K,$,nA){var W,uA=d[nA].prefix,wA=d[nA].suffix,NA=d[nA].transform,yA=NA<12?0:NA-11,TA=0,kA=aA;yA>$&&(yA=$);for(var fA=0;fA0;){var iA=H(z,W);W+=iA,$-=iA}for(var eA=0;eAA.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=w,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}C.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<=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)&&h.inflateEnd(this.strm),this.mode=A.NONE,this.dictionary=null)},C.prototype.write=function(w,e,f,p,v,S,I){return this._write(!0,w,e,f,p,v,S,I)},C.prototype.writeSync=function(w,e,f,p,v,S,I){return this._write(!1,w,e,f,p,v,S,I)},C.prototype._write=function(w,e,f,p,v,S,I,M){if(o.equal(arguments.length,8),o(this.init_done,"write before init"),o(this.mode!==A.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===e,"must provide flush value"),this.write_in_progress=!0,e!==A.Z_NO_FLUSH&&e!==A.Z_PARTIAL_FLUSH&&e!==A.Z_SYNC_FLUSH&&e!==A.Z_FULL_FLUSH&&e!==A.Z_FINISH&&e!==A.Z_BLOCK)throw new Error("Invalid flush value");if(null==f&&(f=u.alloc(0),v=0,p=0),this.strm.avail_in=v,this.strm.input=f,this.strm.next_in=p,this.strm.avail_out=M,this.strm.output=S,this.strm.next_out=I,this.flush=e,!w)return this._process(),this._checkError()?this._afterSync():void 0;var y=this;return a.nextTick(function(){y._process(),y._after()}),this},C.prototype._afterSync=function(){var w=this.strm.avail_out,e=this.strm.avail_in;return this.write_in_progress=!1,[e,w]},C.prototype._process=function(){var w=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&&(w=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===w)break;if(31!==this.strm.input[w]){this.mode=A.INFLATE;break}if(this.gzip_id_bytes_read=1,w++,1===this.strm.avail_in)break;case 1:if(null===w)break;139===this.strm.input[w]?(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=h.inflate(this.strm,this.flush),this.err===A.Z_NEED_DICT&&this.dictionary&&(this.err=h.inflateSetDictionary(this.strm,this.dictionary),this.err===A.Z_OK?this.err=h.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=h.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},C.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},C.prototype._after=function(){if(this._checkError()){var w=this.strm.avail_out,e=this.strm.avail_in;this.write_in_progress=!1,this.callback(e,w),this.pending_close&&this.close()}},C.prototype._error=function(w){this.strm.msg&&(w=this.strm.msg),this.onerror(w,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},C.prototype.init=function(w,e,f,p,v){o(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),o(w>=8&&w<=15,"invalid windowBits"),o(e>=-1&&e<=9,"invalid compression level"),o(f>=1&&f<=9,"invalid memlevel"),o(p===A.Z_FILTERED||p===A.Z_HUFFMAN_ONLY||p===A.Z_RLE||p===A.Z_FIXED||p===A.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(e,w,f,p,v),this._setDictionary()},C.prototype.params=function(){throw new Error("deflateParams Not supported")},C.prototype.reset=function(){this._reset(),this._setDictionary()},C.prototype._init=function(w,e,f,p,v){switch(this.level=w,this.windowBits=e,this.memLevel=f,this.strategy=p,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 s,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=h.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=v,this.write_in_progress=!1,this.init_done=!0},C.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")}},C.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=h.inflateReset(this.strm)}this.err!==A.Z_OK&&this._error("Failed to reset stream")},A.Zlib=C},42635:function(N,A,n){"use strict";var u=n(34155),a=n(48823).Buffer,o=n(42830).Transform,s=n(74505),g=n(89539),h=n(69282).ok,E=n(48823).kMaxLength,r="Cannot create final Buffer. It would be larger than 0x"+E.toString(16)+" bytes";s.Z_MIN_WINDOWBITS=8,s.Z_MAX_WINDOWBITS=15,s.Z_DEFAULT_WINDOWBITS=15,s.Z_MIN_CHUNK=64,s.Z_MAX_CHUNK=1/0,s.Z_DEFAULT_CHUNK=16384,s.Z_MIN_MEMLEVEL=1,s.Z_MAX_MEMLEVEL=9,s.Z_DEFAULT_MEMLEVEL=8,s.Z_MIN_LEVEL=-1,s.Z_MAX_LEVEL=9,s.Z_DEFAULT_LEVEL=s.Z_DEFAULT_COMPRESSION;for(var c=Object.keys(s),Q=0;Q=E?fA=new RangeError(r):W=a.concat(wA,NA),wA=[],$.close(),uA(fA,W)}$.on("error",function TA(W){$.removeListener("end",kA),$.removeListener("readable",yA),uA(W)}),$.on("end",kA),$.end(nA),yA()}function S($,nA){if("string"==typeof nA&&(nA=a.from(nA)),!a.isBuffer(nA))throw new TypeError("Not a string or buffer");return $._processChunk(nA,$._finishFlushFlag)}function I($){if(!(this instanceof I))return new I($);z.call(this,$,s.DEFLATE)}function M($){if(!(this instanceof M))return new M($);z.call(this,$,s.INFLATE)}function y($){if(!(this instanceof y))return new y($);z.call(this,$,s.GZIP)}function F($){if(!(this instanceof F))return new F($);z.call(this,$,s.GUNZIP)}function Y($){if(!(this instanceof Y))return new Y($);z.call(this,$,s.DEFLATERAW)}function D($){if(!(this instanceof D))return new D($);z.call(this,$,s.INFLATERAW)}function d($){if(!(this instanceof d))return new d($);z.call(this,$,s.UNZIP)}function H($){return $===s.Z_NO_FLUSH||$===s.Z_PARTIAL_FLUSH||$===s.Z_SYNC_FLUSH||$===s.Z_FULL_FLUSH||$===s.Z_FINISH||$===s.Z_BLOCK}function z($,nA){var uA=this;if(this._opts=$=$||{},this._chunkSize=$.chunkSize||A.Z_DEFAULT_CHUNK,o.call(this,$),$.flush&&!H($.flush))throw new Error("Invalid flush flag: "+$.flush);if($.finishFlush&&!H($.finishFlush))throw new Error("Invalid flush flag: "+$.finishFlush);if(this._flushFlag=$.flush||s.Z_NO_FLUSH,this._finishFlushFlag=typeof $.finishFlush<"u"?$.finishFlush:s.Z_FINISH,$.chunkSize&&($.chunkSizeA.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+$.chunkSize);if($.windowBits&&($.windowBitsA.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+$.windowBits);if($.level&&($.levelA.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+$.level);if($.memLevel&&($.memLevelA.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+$.memLevel);if($.strategy&&$.strategy!=A.Z_FILTERED&&$.strategy!=A.Z_HUFFMAN_ONLY&&$.strategy!=A.Z_RLE&&$.strategy!=A.Z_FIXED&&$.strategy!=A.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+$.strategy);if($.dictionary&&!a.isBuffer($.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new s.Zlib(nA);var wA=this;this._hadError=!1,this._handle.onerror=function(TA,kA){aA(wA),wA._hadError=!0;var W=new Error(TA);W.errno=kA,W.code=A.codes[kA],wA.emit("error",W)};var NA=A.Z_DEFAULT_COMPRESSION;"number"==typeof $.level&&(NA=$.level);var yA=A.Z_DEFAULT_STRATEGY;"number"==typeof $.strategy&&(yA=$.strategy),this._handle.init($.windowBits||A.Z_DEFAULT_WINDOWBITS,NA,$.memLevel||A.Z_DEFAULT_MEMLEVEL,yA,$.dictionary),this._buffer=a.allocUnsafe(this._chunkSize),this._offset=0,this._level=NA,this._strategy=yA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!uA._handle},configurable:!0,enumerable:!0})}function aA($,nA){nA&&u.nextTick(nA),$._handle&&($._handle.close(),$._handle=null)}function K($){$.emit("close")}Object.defineProperty(A,"codes",{enumerable:!0,value:Object.freeze(w),writable:!1}),A.Deflate=I,A.Inflate=M,A.Gzip=y,A.Gunzip=F,A.DeflateRaw=Y,A.InflateRaw=D,A.Unzip=d,A.createDeflate=function($){return new I($)},A.createInflate=function($){return new M($)},A.createDeflateRaw=function($){return new Y($)},A.createInflateRaw=function($){return new D($)},A.createGzip=function($){return new y($)},A.createGunzip=function($){return new F($)},A.createUnzip=function($){return new d($)},A.deflate=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new I(nA),$,uA)},A.deflateSync=function($,nA){return S(new I(nA),$)},A.gzip=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new y(nA),$,uA)},A.gzipSync=function($,nA){return S(new y(nA),$)},A.deflateRaw=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new Y(nA),$,uA)},A.deflateRawSync=function($,nA){return S(new Y(nA),$)},A.unzip=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new d(nA),$,uA)},A.unzipSync=function($,nA){return S(new d(nA),$)},A.inflate=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new M(nA),$,uA)},A.inflateSync=function($,nA){return S(new M(nA),$)},A.gunzip=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new F(nA),$,uA)},A.gunzipSync=function($,nA){return S(new F(nA),$)},A.inflateRaw=function($,nA,uA){return"function"==typeof nA&&(uA=nA,nA={}),v(new D(nA),$,uA)},A.inflateRawSync=function($,nA){return S(new D(nA),$)},g.inherits(z,o),z.prototype.params=function($,nA,uA){if($A.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+$);if(nA!=A.Z_FILTERED&&nA!=A.Z_HUFFMAN_ONLY&&nA!=A.Z_RLE&&nA!=A.Z_FIXED&&nA!=A.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+nA);if(this._level!==$||this._strategy!==nA){var wA=this;this.flush(s.Z_SYNC_FLUSH,function(){h(wA._handle,"zlib binding closed"),wA._handle.params($,nA),wA._hadError||(wA._level=$,wA._strategy=nA,uA&&uA())})}else u.nextTick(uA)},z.prototype.reset=function(){return h(this._handle,"zlib binding closed"),this._handle.reset()},z.prototype._flush=function($){this._transform(a.alloc(0),"",$)},z.prototype.flush=function($,nA){var uA=this,wA=this._writableState;("function"==typeof $||void 0===$&&!nA)&&(nA=$,$=s.Z_FULL_FLUSH),wA.ended?nA&&u.nextTick(nA):wA.ending?nA&&this.once("end",nA):wA.needDrain?nA&&this.once("drain",function(){return uA.flush($,nA)}):(this._flushFlag=$,this.write(a.alloc(0),"",nA))},z.prototype.close=function($){aA(this,$),u.nextTick(K,this)},z.prototype._transform=function($,nA,uA){var wA,NA=this._writableState,TA=(NA.ending||NA.ended)&&(!$||NA.length===$.length);return null===$||a.isBuffer($)?this._handle?(TA?wA=this._finishFlushFlag:(wA=this._flushFlag,$.length>=NA.length&&(this._flushFlag=this._opts.flush||s.Z_NO_FLUSH)),void this._processChunk($,wA,uA)):uA(new Error("zlib binding closed")):uA(new Error("invalid input"))},z.prototype._processChunk=function($,nA,uA){var wA=$&&$.length,NA=this._chunkSize-this._offset,yA=0,TA=this,kA="function"==typeof uA;if(!kA){var iA,W=[],fA=0;this.on("error",function(j){iA=j}),h(this._handle,"zlib binding closed");do{var eA=this._handle.writeSync(nA,$,yA,wA,this._buffer,this._offset,NA)}while(!this._hadError&&GA(eA[0],eA[1]));if(this._hadError)throw iA;if(fA>=E)throw aA(this),new RangeError(r);var EA=a.concat(W,fA);return aA(this),EA}h(this._handle,"zlib binding closed");var mA=this._handle.write(nA,$,yA,wA,this._buffer,this._offset,NA);function GA(j,b){if(this&&(this.buffer=null,this.callback=null),!TA._hadError){var rA=NA-b;if(h(rA>=0,"have should not go down"),rA>0){var oA=TA._buffer.slice(TA._offset,TA._offset+rA);TA._offset+=rA,kA?TA.push(oA):(W.push(oA),fA+=oA.length)}if((0===b||TA._offset>=TA._chunkSize)&&(NA=TA._chunkSize,TA._offset=0,TA._buffer=a.allocUnsafe(TA._chunkSize)),0===b){if(yA+=wA-j,wA=j,!kA)return!0;var pA=TA._handle.write(nA,$,yA,wA,TA._buffer,TA._offset,TA._chunkSize);return pA.callback=GA,void(pA.buffer=$)}if(!kA)return!1;uA()}}mA.buffer=$,mA.callback=GA},g.inherits(I,z),g.inherits(M,z),g.inherits(y,z),g.inherits(F,z),g.inherits(Y,z),g.inherits(D,z),g.inherits(d,z)},21924:function(N,A,n){"use strict";var u=n(40210),a=n(55559),o=a(u("String.prototype.indexOf"));N.exports=function(g,h){var E=u(g,!!h);return"function"==typeof E&&o(g,".prototype.")>-1?a(E):E}},55559:function(N,A,n){"use strict";var u=n(58612),a=n(40210),o=n(67771),s=a("%TypeError%"),g=a("%Function.prototype.apply%"),h=a("%Function.prototype.call%"),E=a("%Reflect.apply%",!0)||u.call(h,g),r=a("%Object.defineProperty%",!0),c=a("%Math.max%");if(r)try{r({},"a",{value:1})}catch{r=null}N.exports=function(w){if("function"!=typeof w)throw new s("a function is required");var e=E(u,h,arguments);return o(e,1+c(0,w.length-(arguments.length-1)),!0)};var Q=function(){return E(u,g,arguments)};r?r(N.exports,"apply",{value:Q}):N.exports.apply=Q},16313:function(N,A,n){var u=n(48823).Buffer,a=function(){"use strict";function o(c,Q,C,w){"object"==typeof Q&&(C=Q.depth,w=Q.prototype,Q=Q.circular);var f=[],p=[],v=typeof u<"u";return typeof Q>"u"&&(Q=!0),typeof C>"u"&&(C=1/0),function S(I,M){if(null===I)return null;if(0==M)return I;var y,F;if("object"!=typeof I)return I;if(o.__isArray(I))y=[];else if(o.__isRegExp(I))y=new RegExp(I.source,r(I)),I.lastIndex&&(y.lastIndex=I.lastIndex);else if(o.__isDate(I))y=new Date(I.getTime());else{if(v&&u.isBuffer(I))return y=u.allocUnsafe?u.allocUnsafe(I.length):new u(I.length),I.copy(y),y;typeof w>"u"?(F=Object.getPrototypeOf(I),y=Object.create(F)):(y=Object.create(w),F=w)}if(Q){var Y=f.indexOf(I);if(-1!=Y)return p[Y];f.push(I),p.push(y)}for(var D in I){var d;F&&(d=Object.getOwnPropertyDescriptor(F,D)),(!d||null!=d.set)&&(y[D]=S(I[D],M-1))}return y}(c,C)}function s(c){return Object.prototype.toString.call(c)}function r(c){var Q="";return c.global&&(Q+="g"),c.ignoreCase&&(Q+="i"),c.multiline&&(Q+="m"),Q}return o.clonePrototype=function(Q){if(null===Q)return null;var C=function(){};return C.prototype=Q,new C},o.__objToStr=s,o.__isDate=function g(c){return"object"==typeof c&&"[object Date]"===s(c)},o.__isArray=function h(c){return"object"==typeof c&&"[object Array]"===s(c)},o.__isRegExp=function E(c){return"object"==typeof c&&"[object RegExp]"===s(c)},o.__getRegExpFlags=r,o}();N.exports&&(N.exports=a)},24667:function(N,A,n){n(26833);var u=n(40857);N.exports=u.Object.values},47633:function(N,A,n){n(9170),n(66992),n(41539),n(88674),n(17922),n(34668),n(17727),n(78783);var u=n(40857);N.exports=u.Promise},13867:function(N,A,n){var u=n(71150);n(8628),n(97314),n(77479),n(96290),N.exports=u},19662:function(N,A,n){var u=n(17854),a=n(60614),o=n(66330),s=u.TypeError;N.exports=function(g){if(a(g))return g;throw s(o(g)+" is not a function")}},39483:function(N,A,n){var u=n(17854),a=n(4411),o=n(66330),s=u.TypeError;N.exports=function(g){if(a(g))return g;throw s(o(g)+" is not a constructor")}},96077:function(N,A,n){var u=n(17854),a=n(60614),o=u.String,s=u.TypeError;N.exports=function(g){if("object"==typeof g||a(g))return g;throw s("Can't set "+o(g)+" as a prototype")}},51223:function(N,A,n){var u=n(5112),a=n(70030),o=n(3070),s=u("unscopables"),g=Array.prototype;null==g[s]&&o.f(g,s,{configurable:!0,value:a(null)}),N.exports=function(h){g[s][h]=!0}},31530:function(N,A,n){"use strict";var u=n(28710).charAt;N.exports=function(a,o,s){return o+(s?u(a,o).length:1)}},25787:function(N,A,n){var u=n(17854),a=n(47976),o=u.TypeError;N.exports=function(s,g){if(a(g,s))return s;throw o("Incorrect invocation")}},19670:function(N,A,n){var u=n(17854),a=n(70111),o=u.String,s=u.TypeError;N.exports=function(g){if(a(g))return g;throw s(o(g)+" is not an object")}},1048:function(N,A,n){"use strict";var u=n(47908),a=n(51400),o=n(26244),s=Math.min;N.exports=[].copyWithin||function(h,E){var r=u(this),c=o(r),Q=a(h,c),C=a(E,c),w=arguments.length>2?arguments[2]:void 0,e=s((void 0===w?c:a(w,c))-C,c-Q),f=1;for(C0;)C in r?r[Q]=r[C]:delete r[Q],Q+=f,C+=f;return r}},21285:function(N,A,n){"use strict";var u=n(47908),a=n(51400),o=n(26244);N.exports=function(g){for(var h=u(this),E=o(h),r=arguments.length,c=a(r>1?arguments[1]:void 0,E),Q=r>2?arguments[2]:void 0,C=void 0===Q?E:a(Q,E);C>c;)h[c++]=g;return h}},18533:function(N,A,n){"use strict";var u=n(42092).forEach,o=n(9341)("forEach");N.exports=o?[].forEach:function(g){return u(this,g,arguments.length>1?arguments[1]:void 0)}},97745:function(N){N.exports=function(A,n){for(var u=0,a=n.length,o=new A(a);a>u;)o[u]=n[u++];return o}},48457:function(N,A,n){"use strict";var u=n(17854),a=n(49974),o=n(46916),s=n(47908),g=n(53411),h=n(97659),E=n(4411),r=n(26244),c=n(86135),Q=n(18554),C=n(71246),w=u.Array;N.exports=function(f){var p=s(f),v=E(this),S=arguments.length,I=S>1?arguments[1]:void 0,M=void 0!==I;M&&(I=a(I,S>2?arguments[2]:void 0));var Y,D,d,H,z,aA,y=C(p),F=0;if(!y||this==w&&h(y))for(Y=r(p),D=v?new this(Y):w(Y);Y>F;F++)aA=M?I(p[F],F):p[F],c(D,F,aA);else for(z=(H=Q(p,y)).next,D=v?new this:[];!(d=o(z,H)).done;F++)aA=M?g(H,I,[d.value,F],!0):d.value,c(D,F,aA);return D.length=F,D}},41318:function(N,A,n){var u=n(45656),a=n(51400),o=n(26244),s=function(g){return function(h,E,r){var w,c=u(h),Q=o(c),C=a(r,Q);if(g&&E!=E){for(;Q>C;)if((w=c[C++])!=w)return!0}else for(;Q>C;C++)if((g||C in c)&&c[C]===E)return g||C||0;return!g&&-1}};N.exports={includes:s(!0),indexOf:s(!1)}},42092:function(N,A,n){var u=n(49974),a=n(1702),o=n(68361),s=n(47908),g=n(26244),h=n(65417),E=a([].push),r=function(c){var Q=1==c,C=2==c,w=3==c,e=4==c,f=6==c,p=7==c,v=5==c||f;return function(S,I,M,y){for(var K,$,F=s(S),Y=o(F),D=u(I,M),d=g(Y),H=0,z=y||h,aA=Q?z(S,d):C||p?z(S,0):void 0;d>H;H++)if((v||H in Y)&&($=D(K=Y[H],H,F),c))if(Q)aA[H]=$;else if($)switch(c){case 3:return!0;case 5:return K;case 6:return H;case 2:E(aA,K)}else switch(c){case 4:return!1;case 7:E(aA,K)}return f?-1:w||e?e:aA}};N.exports={forEach:r(0),map:r(1),filter:r(2),some:r(3),every:r(4),find:r(5),findIndex:r(6),filterReject:r(7)}},86583:function(N,A,n){"use strict";var u=n(22104),a=n(45656),o=n(19303),s=n(26244),g=n(9341),h=Math.min,E=[].lastIndexOf,r=!!E&&1/[1].lastIndexOf(1,-0)<0,c=g("lastIndexOf");N.exports=r||!c?function(w){if(r)return u(E,this,arguments)||0;var e=a(this),f=s(e),p=f-1;for(arguments.length>1&&(p=h(p,o(arguments[1]))),p<0&&(p=f+p);p>=0;p--)if(p in e&&e[p]===w)return p||0;return-1}:E},81194:function(N,A,n){var u=n(47293),a=n(5112),o=n(7392),s=a("species");N.exports=function(g){return o>=51||!u(function(){var h=[];return(h.constructor={})[s]=function(){return{foo:1}},1!==h[g](Boolean).foo})}},9341:function(N,A,n){"use strict";var u=n(47293);N.exports=function(a,o){var s=[][a];return!!s&&u(function(){s.call(null,o||function(){throw 1},1)})}},53671:function(N,A,n){var u=n(17854),a=n(19662),o=n(47908),s=n(68361),g=n(26244),h=u.TypeError,E=function(r){return function(c,Q,C,w){a(Q);var e=o(c),f=s(e),p=g(e),v=r?p-1:0,S=r?-1:1;if(C<2)for(;;){if(v in f){w=f[v],v+=S;break}if(v+=S,r?v<0:p<=v)throw h("Reduce of empty array with no initial value")}for(;r?v>=0:p>v;v+=S)v in f&&(w=Q(w,f[v],v,e));return w}};N.exports={left:E(!1),right:E(!0)}},50206:function(N,A,n){var u=n(1702);N.exports=u([].slice)},94362:function(N,A,n){var u=n(50206),a=Math.floor,o=function(h,E){var r=h.length,c=a(r/2);return r<8?s(h,E):g(h,o(u(h,0,c),E),o(u(h,c),E),E)},s=function(h,E){for(var Q,C,r=h.length,c=1;c0;)h[C]=h[--C];C!==c++&&(h[C]=Q)}return h},g=function(h,E,r,c){for(var Q=E.length,C=r.length,w=0,e=0;w1?arguments[1]:void 0);aA=aA?aA.next:H.first;)for(z(aA.value,aA.key,this);aA&&aA.removed;)aA=aA.previous},has:function(d){return!!Y(this,d)}}),o(M,v?{get:function(d){var H=Y(this,d);return H&&H.value},set:function(d,H){return F(this,0===d?0:d,H)}}:{add:function(d){return F(this,d=0===d?0:d,d)}}),c&&u(M,"size",{get:function(){return y(this).size}}),I},setStrong:function(f,p,v){var S=p+" Iterator",I=e(p),M=e(S);E(f,p,function(y,F){w(this,{type:S,target:y,state:I(y),kind:F,last:void 0})},function(){for(var y=M(this),F=y.kind,Y=y.last;Y&&Y.removed;)Y=Y.previous;return y.target&&(y.last=Y=Y?Y.next:y.state.first)?"keys"==F?{value:Y.key,done:!1}:"values"==F?{value:Y.value,done:!1}:{value:[Y.key,Y.value],done:!1}:(y.target=void 0,{value:void 0,done:!0})},v?"entries":"values",!v,!0),r(p)}}},77710:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(1702),s=n(54705),g=n(31320),h=n(62423),E=n(20408),r=n(25787),c=n(60614),Q=n(70111),C=n(47293),w=n(17072),e=n(58003),f=n(79587);N.exports=function(p,v,S){var I=-1!==p.indexOf("Map"),M=-1!==p.indexOf("Weak"),y=I?"set":"add",F=a[p],Y=F&&F.prototype,D=F,d={},H=function(wA){var NA=o(Y[wA]);g(Y,wA,"add"==wA?function(TA){return NA(this,0===TA?0:TA),this}:"delete"==wA?function(yA){return!(M&&!Q(yA))&&NA(this,0===yA?0:yA)}:"get"==wA?function(TA){return M&&!Q(TA)?void 0:NA(this,0===TA?0:TA)}:"has"==wA?function(TA){return!(M&&!Q(TA))&&NA(this,0===TA?0:TA)}:function(TA,kA){return NA(this,0===TA?0:TA,kA),this})};if(s(p,!c(F)||!(M||Y.forEach&&!C(function(){(new F).entries().next()}))))D=S.getConstructor(v,p,I,y),h.enable();else if(s(p,!0)){var aA=new D,K=aA[y](M?{}:-0,1)!=aA,$=C(function(){aA.has(1)}),nA=w(function(wA){new F(wA)}),uA=!M&&C(function(){for(var wA=new F,NA=5;NA--;)wA[y](NA,NA);return!wA.has(-0)});nA||((D=v(function(wA,NA){r(wA,Y);var yA=f(new F,wA,D);return null!=NA&&E(NA,yA[y],{that:yA,AS_ENTRIES:I}),yA})).prototype=Y,Y.constructor=D),($||uA)&&(H("delete"),H("has"),I&&H("get")),(uA||K)&&H(y),M&&Y.clear&&delete Y.clear}return d[p]=D,u({global:!0,forced:D!=F},d),e(D,p),M||S.setStrong(D,p,I),D}},99920:function(N,A,n){var u=n(92597),a=n(53887),o=n(31236),s=n(3070);N.exports=function(g,h){for(var E=a(h),r=s.f,c=o.f,Q=0;Q"+Q+""}},24994:function(N,A,n){"use strict";var u=n(13383).IteratorPrototype,a=n(70030),o=n(79114),s=n(58003),g=n(97497),h=function(){return this};N.exports=function(E,r,c){var Q=r+" Iterator";return E.prototype=a(u,{next:o(1,c)}),s(E,Q,!1,!0),g[Q]=h,E}},68880:function(N,A,n){var u=n(19781),a=n(3070),o=n(79114);N.exports=u?function(s,g,h){return a.f(s,g,o(1,h))}:function(s,g,h){return s[g]=h,s}},79114:function(N){N.exports=function(A,n){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:n}}},86135:function(N,A,n){"use strict";var u=n(34948),a=n(3070),o=n(79114);N.exports=function(s,g,h){var E=u(g);E in s?a.f(s,E,o(0,h)):s[E]=h}},38709:function(N,A,n){"use strict";var u=n(17854),a=n(19670),o=n(92140),s=u.TypeError;N.exports=function(g){if(a(this),"string"===g||"default"===g)g="string";else if("number"!==g)throw s("Incorrect hint");return o(this,g)}},70654:function(N,A,n){"use strict";var u=n(82109),a=n(46916),o=n(31913),s=n(76530),g=n(60614),h=n(24994),E=n(79518),r=n(27674),c=n(58003),Q=n(68880),C=n(31320),w=n(5112),e=n(97497),f=n(13383),p=s.PROPER,v=s.CONFIGURABLE,S=f.IteratorPrototype,I=f.BUGGY_SAFARI_ITERATORS,M=w("iterator"),y="keys",F="values",Y="entries",D=function(){return this};N.exports=function(d,H,z,aA,K,$,nA){h(z,H,aA);var fA,iA,eA,uA=function(EA){if(EA===K&&kA)return kA;if(!I&&EA in yA)return yA[EA];switch(EA){case y:case F:case Y:return function(){return new z(this,EA)}}return function(){return new z(this)}},wA=H+" Iterator",NA=!1,yA=d.prototype,TA=yA[M]||yA["@@iterator"]||K&&yA[K],kA=!I&&TA||uA(K),W="Array"==H&&yA.entries||TA;if(W&&(fA=E(W.call(new d)))!==Object.prototype&&fA.next&&(!o&&E(fA)!==S&&(r?r(fA,S):g(fA[M])||C(fA,M,D)),c(fA,wA,!0,!0),o&&(e[wA]=D)),p&&K==F&&TA&&TA.name!==F&&(!o&&v?Q(yA,"name",F):(NA=!0,kA=function(){return a(TA,this)})),K)if(iA={values:uA(F),keys:$?kA:uA(y),entries:uA(Y)},nA)for(eA in iA)(I||NA||!(eA in yA))&&C(yA,eA,iA[eA]);else u({target:H,proto:!0,forced:I||NA},iA);return(!o||nA)&&yA[M]!==kA&&C(yA,M,kA,{name:K}),e[H]=kA,iA}},97235:function(N,A,n){var u=n(40857),a=n(92597),o=n(6061),s=n(3070).f;N.exports=function(g){var h=u.Symbol||(u.Symbol={});a(h,g)||s(h,g,{value:o.f(g)})}},19781:function(N,A,n){var u=n(47293);N.exports=!u(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},80317:function(N,A,n){var u=n(17854),a=n(70111),o=u.document,s=a(o)&&a(o.createElement);N.exports=function(g){return s?o.createElement(g):{}}},48324:function(N){N.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}},98509:function(N,A,n){var a=n(80317)("span").classList,o=a&&a.constructor&&a.constructor.prototype;N.exports=o===Object.prototype?void 0:o},68886:function(N,A,n){var a=n(88113).match(/firefox\/(\d+)/i);N.exports=!!a&&+a[1]},7871:function(N){N.exports="object"==typeof window},30256:function(N,A,n){var u=n(88113);N.exports=/MSIE|Trident/.test(u)},71528:function(N,A,n){var u=n(88113),a=n(17854);N.exports=/ipad|iphone|ipod/i.test(u)&&void 0!==a.Pebble},6833:function(N,A,n){var u=n(88113);N.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(u)},35268:function(N,A,n){var u=n(84326),a=n(17854);N.exports="process"==u(a.process)},71036:function(N,A,n){var u=n(88113);N.exports=/web0s(?!.*chrome)/i.test(u)},88113:function(N,A,n){var u=n(35005);N.exports=u("navigator","userAgent")||""},7392:function(N,A,n){var E,r,u=n(17854),a=n(88113),o=u.process,s=u.Deno,g=o&&o.versions||s&&s.version,h=g&&g.v8;h&&(r=(E=h.split("."))[0]>0&&E[0]<4?1:+(E[0]+E[1])),!r&&a&&(!(E=a.match(/Edge\/(\d+)/))||E[1]>=74)&&(E=a.match(/Chrome\/(\d+)/))&&(r=+E[1]),N.exports=r},98008:function(N,A,n){var a=n(88113).match(/AppleWebKit\/(\d+)\./);N.exports=!!a&&+a[1]},80748:function(N){N.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},22914:function(N,A,n){var u=n(47293),a=n(79114);N.exports=!u(function(){var o=Error("a");return!("stack"in o)||(Object.defineProperty(o,"stack",a(1,7)),7!==o.stack)})},82109:function(N,A,n){var u=n(17854),a=n(31236).f,o=n(68880),s=n(31320),g=n(83505),h=n(99920),E=n(54705);N.exports=function(r,c){var f,p,v,S,I,Q=r.target,C=r.global,w=r.stat;if(f=C?u:w?u[Q]||g(Q,{}):(u[Q]||{}).prototype)for(p in c){if(S=c[p],v=r.noTargetGet?(I=a(f,p))&&I.value:f[p],!E(C?p:Q+(w?".":"#")+p,r.forced)&&void 0!==v){if(typeof S==typeof v)continue;h(S,v)}(r.sham||v&&v.sham)&&o(S,"sham",!0),s(f,p,S,r)}}},47293:function(N){N.exports=function(A){try{return!!A()}catch{return!0}}},27007:function(N,A,n){"use strict";n(74916);var u=n(1702),a=n(31320),o=n(22261),s=n(47293),g=n(5112),h=n(68880),E=g("species"),r=RegExp.prototype;N.exports=function(c,Q,C,w){var e=g(c),f=!s(function(){var I={};return I[e]=function(){return 7},7!=""[c](I)}),p=f&&!s(function(){var I=!1,M=/a/;return"split"===c&&((M={}).constructor={},M.constructor[E]=function(){return M},M.flags="",M[e]=/./[e]),M.exec=function(){return I=!0,null},M[e](""),!I});if(!f||!p||C){var v=u(/./[e]),S=Q(e,""[c],function(I,M,y,F,Y){var D=u(I),d=M.exec;return d===o||d===r.exec?f&&!Y?{done:!0,value:v(M,y,F)}:{done:!0,value:D(y,M,F)}:{done:!1}});a(String.prototype,c,S[0]),a(r,e,S[1])}w&&h(r[e],"sham",!0)}},76677:function(N,A,n){var u=n(47293);N.exports=!u(function(){return Object.isExtensible(Object.preventExtensions({}))})},22104:function(N){var A=Function.prototype,n=A.apply,a=A.call;N.exports="object"==typeof Reflect&&Reflect.apply||(A.bind?a.bind(n):function(){return a.apply(n,arguments)})},49974:function(N,A,n){var u=n(1702),a=n(19662),o=u(u.bind);N.exports=function(s,g){return a(s),void 0===g?s:o?o(s,g):function(){return s.apply(g,arguments)}}},27065:function(N,A,n){"use strict";var u=n(17854),a=n(1702),o=n(19662),s=n(70111),g=n(92597),h=n(50206),E=u.Function,r=a([].concat),c=a([].join),Q={};N.exports=E.bind||function(e){var f=o(this),p=f.prototype,v=h(arguments,1),S=function(){var M=r(v,h(arguments));return this instanceof S?function(w,e,f){if(!g(Q,e)){for(var p=[],v=0;v]*>)/g,r=/\$([$&'`]|\d{1,2})/g;N.exports=function(c,Q,C,w,e,f){var p=C+c.length,v=w.length,S=r;return void 0!==e&&(e=a(e),S=E),g(f,S,function(I,M){var y;switch(s(M,0)){case"$":return"$";case"&":return c;case"`":return h(Q,0,C);case"'":return h(Q,p);case"<":y=e[h(M,1,-1)];break;default:var F=+M;if(0===F)return I;if(F>v){var Y=o(F/10);return 0===Y?I:Y<=v?void 0===w[Y-1]?s(M,1):w[Y-1]+s(M,1):I}y=w[F-1]}return void 0===y?"":y})}},17854:function(N,A,n){var u=function(a){return a&&a.Math==Math&&a};N.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")()},92597:function(N,A,n){var u=n(1702),a=n(47908),o=u({}.hasOwnProperty);N.exports=Object.hasOwn||function(g,h){return o(a(g),h)}},3501:function(N){N.exports={}},842:function(N,A,n){var u=n(17854);N.exports=function(a,o){var s=u.console;s&&s.error&&(1==arguments.length?s.error(a):s.error(a,o))}},60490:function(N,A,n){var u=n(35005);N.exports=u("document","documentElement")},64664:function(N,A,n){var u=n(19781),a=n(47293),o=n(80317);N.exports=!u&&!a(function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a})},11179:function(N,A,n){var a=n(17854).Array,o=Math.abs,s=Math.pow,g=Math.floor,h=Math.log,E=Math.LN2;N.exports={pack:function(Q,C,w){var y,F,Y,e=a(w),f=8*w-C-1,p=(1<>1,S=23===C?s(2,-24)-s(2,-77):0,I=Q<0||0===Q&&1/Q<0?1:0,M=0;for((Q=o(Q))!=Q||Q===1/0?(F=Q!=Q?1:0,y=p):(y=g(h(Q)/E),Q*(Y=s(2,-y))<1&&(y--,Y*=2),(Q+=y+v>=1?S/Y:S*s(2,1-v))*Y>=2&&(y++,Y/=2),y+v>=p?(F=0,y=p):y+v>=1?(F=(Q*Y-1)*s(2,C),y+=v):(F=Q*s(2,v-1)*s(2,C),y=0));C>=8;e[M++]=255&F,F/=256,C-=8);for(y=y<0;e[M++]=255&y,y/=256,f-=8);return e[--M]|=128*I,e},unpack:function(Q,C){var y,w=Q.length,e=8*w-C-1,f=(1<>1,v=e-7,S=w-1,I=Q[S--],M=127&I;for(I>>=7;v>0;M=256*M+Q[S],S--,v-=8);for(y=M&(1<<-v)-1,M>>=-v,v+=C;v>0;y=256*y+Q[S],S--,v-=8);if(0===M)M=1-p;else{if(M===f)return y?NaN:I?-1/0:1/0;y+=s(2,C),M-=p}return(I?-1:1)*y*s(2,M-C)}}},68361:function(N,A,n){var u=n(17854),a=n(1702),o=n(47293),s=n(84326),g=u.Object,h=a("".split);N.exports=o(function(){return!g("z").propertyIsEnumerable(0)})?function(E){return"String"==s(E)?h(E,""):g(E)}:g},79587:function(N,A,n){var u=n(60614),a=n(70111),o=n(27674);N.exports=function(s,g,h){var E,r;return o&&u(E=g.constructor)&&E!==h&&a(r=E.prototype)&&r!==h.prototype&&o(s,r),s}},42788:function(N,A,n){var u=n(1702),a=n(60614),o=n(5465),s=u(Function.toString);a(o.inspectSource)||(o.inspectSource=function(g){return s(g)}),N.exports=o.inspectSource},58340:function(N,A,n){var u=n(70111),a=n(68880);N.exports=function(o,s){u(s)&&"cause"in s&&a(o,"cause",s.cause)}},62423:function(N,A,n){var u=n(82109),a=n(1702),o=n(3501),s=n(70111),g=n(92597),h=n(3070).f,E=n(8006),r=n(1156),c=n(69711),Q=n(76677),C=!1,w=c("meta"),e=0,f=Object.isExtensible||function(){return!0},p=function(F){h(F,w,{value:{objectID:"O"+e++,weakData:{}}})},y=N.exports={enable:function(){y.enable=function(){},C=!0;var F=E.f,Y=a([].splice),D={};D[w]=1,F(D).length&&(E.f=function(d){for(var H=F(d),z=0,aA=H.length;zH;H++)if((aA=uA(p[H]))&&r(f,aA))return aA;return new e(!1)}D=c(p,d)}for(K=D.next;!($=o(K,D)).done;){try{aA=uA($.value)}catch(wA){C(D,"throw",wA)}if("object"==typeof aA&&aA&&r(f,aA))return aA}return new e(!1)}},99212:function(N,A,n){var u=n(46916),a=n(19670),o=n(58173);N.exports=function(s,g,h){var E,r;a(s);try{if(!(E=o(s,"return"))){if("throw"===g)throw h;return h}E=u(E,s)}catch(c){r=!0,E=c}if("throw"===g)throw h;if(r)throw E;return a(E),h}},13383:function(N,A,n){"use strict";var Q,C,w,u=n(47293),a=n(60614),o=n(70030),s=n(79518),g=n(31320),h=n(5112),E=n(31913),r=h("iterator"),c=!1;[].keys&&("next"in(w=[].keys())?(C=s(s(w)))!==Object.prototype&&(Q=C):c=!0),null==Q||u(function(){var f={};return Q[r].call(f)!==f})?Q={}:E&&(Q=o(Q)),a(Q[r])||g(Q,r,function(){return this}),N.exports={IteratorPrototype:Q,BUGGY_SAFARI_ITERATORS:c}},97497:function(N){N.exports={}},26244:function(N,A,n){var u=n(17466);N.exports=function(a){return u(a.length)}},95948:function(N,A,n){var p,v,S,I,M,y,F,Y,u=n(17854),a=n(49974),o=n(31236).f,s=n(20261).set,g=n(6833),h=n(71528),E=n(71036),r=n(35268),c=u.MutationObserver||u.WebKitMutationObserver,Q=u.document,C=u.process,w=u.Promise,e=o(u,"queueMicrotask"),f=e&&e.value;f||(p=function(){var D,d;for(r&&(D=C.domain)&&D.exit();v;){d=v.fn,v=v.next;try{d()}catch(H){throw v?I():S=void 0,H}}S=void 0,D&&D.enter()},g||r||E||!c||!Q?!h&&w&&w.resolve?((F=w.resolve(void 0)).constructor=w,Y=a(F.then,F),I=function(){Y(p)}):r?I=function(){C.nextTick(p)}:(s=a(s,u),I=function(){s(p)}):(M=!0,y=Q.createTextNode(""),new c(p).observe(y,{characterData:!0}),I=function(){y.data=M=!M})),N.exports=f||function(D){var d={fn:D,next:void 0};S&&(S.next=d),v||(v=d,I()),S=d}},13366:function(N,A,n){var u=n(17854);N.exports=u.Promise},30133:function(N,A,n){var u=n(7392),a=n(47293);N.exports=!!Object.getOwnPropertySymbols&&!a(function(){var o=Symbol();return!String(o)||!(Object(o)instanceof Symbol)||!Symbol.sham&&u&&u<41})},68536:function(N,A,n){var u=n(17854),a=n(60614),o=n(42788),s=u.WeakMap;N.exports=a(s)&&/native code/.test(o(s))},78523:function(N,A,n){"use strict";var u=n(19662),a=function(o){var s,g;this.promise=new o(function(h,E){if(void 0!==s||void 0!==g)throw TypeError("Bad Promise constructor");s=h,g=E}),this.resolve=u(s),this.reject=u(g)};N.exports.f=function(o){return new a(o)}},56277:function(N,A,n){var u=n(41340);N.exports=function(a,o){return void 0===a?arguments.length<2?"":o:u(a)}},3929:function(N,A,n){var u=n(17854),a=n(47850),o=u.TypeError;N.exports=function(s){if(a(s))throw o("The method doesn't accept regular expressions");return s}},77023:function(N,A,n){var a=n(17854).isFinite;N.exports=Number.isFinite||function(s){return"number"==typeof s&&a(s)}},21574:function(N,A,n){"use strict";var u=n(19781),a=n(1702),o=n(46916),s=n(47293),g=n(81956),h=n(25181),E=n(55296),r=n(47908),c=n(68361),Q=Object.assign,C=Object.defineProperty,w=a([].concat);N.exports=!Q||s(function(){if(u&&1!==Q({b:1},Q(C({},"a",{enumerable:!0,get:function(){C(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},f={},p=Symbol(),v="abcdefghijklmnopqrst";return e[p]=7,v.split("").forEach(function(S){f[S]=S}),7!=Q({},e)[p]||g(Q({},f)).join("")!=v})?function(f,p){for(var v=r(f),S=arguments.length,I=1,M=h.f,y=E.f;S>I;)for(var H,F=c(arguments[I++]),Y=M?w(g(F),M(F)):g(F),D=Y.length,d=0;D>d;)H=Y[d++],(!u||o(y,F,H))&&(v[H]=F[H]);return v}:Q},70030:function(N,A,n){var S,u=n(19670),a=n(36048),o=n(80748),s=n(3501),g=n(60490),h=n(80317),E=n(6200),Q="prototype",C="script",w=E("IE_PROTO"),e=function(){},f=function(M){return"<"+C+">"+M+""},p=function(M){M.write(f("")),M.close();var y=M.parentWindow.Object;return M=null,y},I=function(){try{S=new ActiveXObject("htmlfile")}catch{}I=typeof document<"u"?document.domain&&S?p(S):function(){var F,M=h("iframe"),y="java"+C+":";return M.style.display="none",g.appendChild(M),M.src=String(y),(F=M.contentWindow.document).open(),F.write(f("document.F=Object")),F.close(),F.F}():p(S);for(var M=o.length;M--;)delete I[Q][o[M]];return I()};s[w]=!0,N.exports=Object.create||function(y,F){var Y;return null!==y?(e[Q]=u(y),Y=new e,e[Q]=null,Y[w]=y):Y=I(),void 0===F?Y:a(Y,F)}},36048:function(N,A,n){var u=n(19781),a=n(3070),o=n(19670),s=n(45656),g=n(81956);N.exports=u?Object.defineProperties:function(E,r){o(E);for(var e,c=s(r),Q=g(r),C=Q.length,w=0;C>w;)a.f(E,e=Q[w++],c[e]);return E}},3070:function(N,A,n){var u=n(17854),a=n(19781),o=n(64664),s=n(19670),g=n(34948),h=u.TypeError,E=Object.defineProperty;A.f=a?E:function(c,Q,C){if(s(c),Q=g(Q),s(C),o)try{return E(c,Q,C)}catch{}if("get"in C||"set"in C)throw h("Accessors not supported");return"value"in C&&(c[Q]=C.value),c}},31236:function(N,A,n){var u=n(19781),a=n(46916),o=n(55296),s=n(79114),g=n(45656),h=n(34948),E=n(92597),r=n(64664),c=Object.getOwnPropertyDescriptor;A.f=u?c:function(C,w){if(C=g(C),w=h(w),r)try{return c(C,w)}catch{}if(E(C,w))return s(!a(o.f,C,w),C[w])}},1156:function(N,A,n){var u=n(84326),a=n(45656),o=n(8006).f,s=n(50206),g="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];N.exports.f=function(r){return g&&"Window"==u(r)?function(E){try{return o(E)}catch{return s(g)}}(r):o(a(r))}},8006:function(N,A,n){var u=n(16324),o=n(80748).concat("length","prototype");A.f=Object.getOwnPropertyNames||function(g){return u(g,o)}},25181:function(N,A){A.f=Object.getOwnPropertySymbols},79518:function(N,A,n){var u=n(17854),a=n(92597),o=n(60614),s=n(47908),g=n(6200),h=n(49920),E=g("IE_PROTO"),r=u.Object,c=r.prototype;N.exports=h?r.getPrototypeOf:function(Q){var C=s(Q);if(a(C,E))return C[E];var w=C.constructor;return o(w)&&C instanceof w?w.prototype:C instanceof r?c:null}},47976:function(N,A,n){var u=n(1702);N.exports=u({}.isPrototypeOf)},16324:function(N,A,n){var u=n(1702),a=n(92597),o=n(45656),s=n(41318).indexOf,g=n(3501),h=u([].push);N.exports=function(E,r){var w,c=o(E),Q=0,C=[];for(w in c)!a(g,w)&&a(c,w)&&h(C,w);for(;r.length>Q;)a(c,w=r[Q++])&&(~s(C,w)||h(C,w));return C}},81956:function(N,A,n){var u=n(16324),a=n(80748);N.exports=Object.keys||function(s){return u(s,a)}},55296:function(N,A){"use strict";var n={}.propertyIsEnumerable,u=Object.getOwnPropertyDescriptor,a=u&&!n.call({1:2},1);A.f=a?function(s){var g=u(this,s);return!!g&&g.enumerable}:n},27674:function(N,A,n){var u=n(1702),a=n(19670),o=n(96077);N.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var h,s=!1,g={};try{(h=u(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(g,[]),s=g instanceof Array}catch{}return function(r,c){return a(r),o(c),s?h(r,c):r.__proto__=c,r}}():void 0)},44699:function(N,A,n){var u=n(19781),a=n(1702),o=n(81956),s=n(45656),h=a(n(55296).f),E=a([].push),r=function(c){return function(Q){for(var v,C=s(Q),w=o(C),e=w.length,f=0,p=[];e>f;)v=w[f++],(!u||h(C,v))&&E(p,c?[v,C[v]]:C[v]);return p}};N.exports={entries:r(!0),values:r(!1)}},90288:function(N,A,n){"use strict";var u=n(51694),a=n(70648);N.exports=u?{}.toString:function(){return"[object "+a(this)+"]"}},92140:function(N,A,n){var u=n(17854),a=n(46916),o=n(60614),s=n(70111),g=u.TypeError;N.exports=function(h,E){var r,c;if("string"===E&&o(r=h.toString)&&!s(c=a(r,h))||o(r=h.valueOf)&&!s(c=a(r,h))||"string"!==E&&o(r=h.toString)&&!s(c=a(r,h)))return c;throw g("Can't convert object to primitive value")}},53887:function(N,A,n){var u=n(35005),a=n(1702),o=n(8006),s=n(25181),g=n(19670),h=a([].concat);N.exports=u("Reflect","ownKeys")||function(r){var c=o.f(g(r)),Q=s.f;return Q?h(c,Q(r)):c}},40857:function(N,A,n){var u=n(17854);N.exports=u},12534:function(N){N.exports=function(A){try{return{error:!1,value:A()}}catch(n){return{error:!0,value:n}}}},69478:function(N,A,n){var u=n(19670),a=n(70111),o=n(78523);N.exports=function(s,g){if(u(s),a(g)&&g.constructor===s)return g;var h=o.f(s);return(0,h.resolve)(g),h.promise}},12248:function(N,A,n){var u=n(31320);N.exports=function(a,o,s){for(var g in o)u(a,g,o[g],s);return a}},31320:function(N,A,n){var u=n(17854),a=n(60614),o=n(92597),s=n(68880),g=n(83505),h=n(42788),E=n(29909),r=n(76530).CONFIGURABLE,c=E.get,Q=E.enforce,C=String(String).split("String");(N.exports=function(w,e,f,p){var y,v=!!p&&!!p.unsafe,S=!!p&&!!p.enumerable,I=!!p&&!!p.noTargetGet,M=p&&void 0!==p.name?p.name:e;a(f)&&("Symbol("===String(M).slice(0,7)&&(M="["+String(M).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!o(f,"name")||r&&f.name!==M)&&s(f,"name",M),(y=Q(f)).source||(y.source=C.join("string"==typeof M?M:""))),w!==u?(v?!I&&w[e]&&(S=!0):delete w[e],S?w[e]=f:s(w,e,f)):S?w[e]=f:g(e,f)})(Function.prototype,"toString",function(){return a(this)&&c(this).source||h(this)})},97651:function(N,A,n){var u=n(17854),a=n(46916),o=n(19670),s=n(60614),g=n(84326),h=n(22261),E=u.TypeError;N.exports=function(r,c){var Q=r.exec;if(s(Q)){var C=a(Q,r,c);return null!==C&&o(C),C}if("RegExp"===g(r))return a(h,r,c);throw E("RegExp#exec called on incompatible receiver")}},22261:function(N,A,n){"use strict";var Y,D,u=n(46916),a=n(1702),o=n(41340),s=n(67066),g=n(52999),h=n(72309),E=n(70030),r=n(29909).get,c=n(9441),Q=n(38173),C=h("native-string-replace",String.prototype.replace),w=RegExp.prototype.exec,e=w,f=a("".charAt),p=a("".indexOf),v=a("".replace),S=a("".slice),I=(D=/b*/g,u(w,Y=/a/,"a"),u(w,D,"a"),0!==Y.lastIndex||0!==D.lastIndex),M=g.UNSUPPORTED_Y||g.BROKEN_CARET,y=void 0!==/()??/.exec("")[1];(I||y||M||c||Q)&&(e=function(D){var K,$,nA,uA,wA,NA,yA,d=this,H=r(d),z=o(D),aA=H.raw;if(aA)return aA.lastIndex=d.lastIndex,K=u(e,aA,z),d.lastIndex=aA.lastIndex,K;var TA=H.groups,kA=M&&d.sticky,W=u(s,d),fA=d.source,iA=0,eA=z;if(kA&&(W=v(W,"y",""),-1===p(W,"g")&&(W+="g"),eA=S(z,d.lastIndex),d.lastIndex>0&&(!d.multiline||d.multiline&&"\n"!==f(z,d.lastIndex-1))&&(fA="(?: "+fA+")",eA=" "+eA,iA++),$=new RegExp("^(?:"+fA+")",W)),y&&($=new RegExp("^"+fA+"$(?!\\s)",W)),I&&(nA=d.lastIndex),uA=u(w,kA?$:d,eA),kA?uA?(uA.input=S(uA.input,iA),uA[0]=S(uA[0],iA),uA.index=d.lastIndex,d.lastIndex+=uA[0].length):d.lastIndex=0:I&&uA&&(d.lastIndex=d.global?uA.index+uA[0].length:nA),y&&uA&&uA.length>1&&u(C,uA[0],$,function(){for(wA=1;wAb)","g");return"b"!==s.exec("b").groups.a||"bc"!=="b".replace(s,"$c")})},84488:function(N,A,n){var a=n(17854).TypeError;N.exports=function(o){if(null==o)throw a("Can't call method on "+o);return o}},83505:function(N,A,n){var u=n(17854),a=Object.defineProperty;N.exports=function(o,s){try{a(u,o,{value:s,configurable:!0,writable:!0})}catch{u[o]=s}return s}},96340:function(N,A,n){"use strict";var u=n(35005),a=n(3070),o=n(5112),s=n(19781),g=o("species");N.exports=function(h){var E=u(h);s&&E&&!E[g]&&(0,a.f)(E,g,{configurable:!0,get:function(){return this}})}},58003:function(N,A,n){var u=n(3070).f,a=n(92597),s=n(5112)("toStringTag");N.exports=function(g,h,E){g&&!a(g=E?g:g.prototype,s)&&u(g,s,{configurable:!0,value:h})}},6200:function(N,A,n){var u=n(72309),a=n(69711),o=u("keys");N.exports=function(s){return o[s]||(o[s]=a(s))}},5465:function(N,A,n){var u=n(17854),a=n(83505),o="__core-js_shared__",s=u[o]||a(o,{});N.exports=s},72309:function(N,A,n){var u=n(31913),a=n(5465);(N.exports=function(o,s){return a[o]||(a[o]=void 0!==s?s:{})})("versions",[]).push({version:"3.19.0",mode:u?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},36707:function(N,A,n){var u=n(19670),a=n(39483),s=n(5112)("species");N.exports=function(g,h){var r,E=u(g).constructor;return void 0===E||null==(r=u(E)[s])?h:a(r)}},43429:function(N,A,n){var u=n(47293);N.exports=function(a){return u(function(){var o=""[a]('"');return o!==o.toLowerCase()||o.split('"').length>3})}},28710:function(N,A,n){var u=n(1702),a=n(19303),o=n(41340),s=n(84488),g=u("".charAt),h=u("".charCodeAt),E=u("".slice),r=function(c){return function(Q,C){var p,v,w=o(s(Q)),e=a(C),f=w.length;return e<0||e>=f?c?"":void 0:(p=h(w,e))<55296||p>56319||e+1===f||(v=h(w,e+1))<56320||v>57343?c?g(w,e):p:c?E(w,e,e+2):v-56320+(p-55296<<10)+65536}};N.exports={codeAt:r(!1),charAt:r(!0)}},38415:function(N,A,n){"use strict";var u=n(17854),a=n(19303),o=n(41340),s=n(84488),g=u.RangeError;N.exports=function(E){var r=o(s(this)),c="",Q=a(E);if(Q<0||Q==1/0)throw g("Wrong number of repetitions");for(;Q>0;(Q>>>=1)&&(r+=r))1&Q&&(c+=r);return c}},76091:function(N,A,n){var u=n(76530).PROPER,a=n(47293),o=n(81361);N.exports=function(g){return a(function(){return!!o[g]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[g]()||u&&o[g].name!==g})}},53111:function(N,A,n){var u=n(1702),a=n(84488),o=n(41340),s=n(81361),g=u("".replace),h="["+s+"]",E=RegExp("^"+h+h+"*"),r=RegExp(h+h+"*$"),c=function(Q){return function(C){var w=o(a(C));return 1&Q&&(w=g(w,E,"")),2&Q&&(w=g(w,r,"")),w}};N.exports={start:c(1),end:c(2),trim:c(3)}},20261:function(N,A,n){var Y,D,d,H,u=n(17854),a=n(22104),o=n(49974),s=n(60614),g=n(92597),h=n(47293),E=n(60490),r=n(50206),c=n(80317),Q=n(6833),C=n(35268),w=u.setImmediate,e=u.clearImmediate,f=u.process,p=u.Dispatch,v=u.Function,S=u.MessageChannel,I=u.String,M=0,y={},F="onreadystatechange";try{Y=u.location}catch{}var z=function(nA){if(g(y,nA)){var uA=y[nA];delete y[nA],uA()}},aA=function(nA){return function(){z(nA)}},K=function(nA){z(nA.data)},$=function(nA){u.postMessage(I(nA),Y.protocol+"//"+Y.host)};(!w||!e)&&(w=function(uA){var wA=r(arguments,1);return y[++M]=function(){a(s(uA)?uA:v(uA),void 0,wA)},D(M),M},e=function(uA){delete y[uA]},C?D=function(nA){f.nextTick(aA(nA))}:p&&p.now?D=function(nA){p.now(aA(nA))}:S&&!Q?(H=(d=new S).port2,d.port1.onmessage=K,D=o(H.postMessage,H)):u.addEventListener&&s(u.postMessage)&&!u.importScripts&&Y&&"file:"!==Y.protocol&&!h($)?(D=$,u.addEventListener("message",K,!1)):D=F in c("script")?function(nA){E.appendChild(c("script"))[F]=function(){E.removeChild(this),z(nA)}}:function(nA){setTimeout(aA(nA),0)}),N.exports={set:w,clear:e}},50863:function(N,A,n){var u=n(1702);N.exports=u(1..valueOf)},51400:function(N,A,n){var u=n(19303),a=Math.max,o=Math.min;N.exports=function(s,g){var h=u(s);return h<0?a(h+g,0):o(h,g)}},57067:function(N,A,n){var u=n(17854),a=n(19303),o=n(17466),s=u.RangeError;N.exports=function(g){if(void 0===g)return 0;var h=a(g),E=o(h);if(h!==E)throw s("Wrong length or index");return E}},45656:function(N,A,n){var u=n(68361),a=n(84488);N.exports=function(o){return u(a(o))}},19303:function(N){var A=Math.ceil,n=Math.floor;N.exports=function(u){var a=+u;return a!=a||0===a?0:(a>0?n:A)(a)}},17466:function(N,A,n){var u=n(19303),a=Math.min;N.exports=function(o){return o>0?a(u(o),9007199254740991):0}},47908:function(N,A,n){var u=n(17854),a=n(84488),o=u.Object;N.exports=function(s){return o(a(s))}},84590:function(N,A,n){var u=n(17854),a=n(73002),o=u.RangeError;N.exports=function(s,g){var h=a(s);if(h%g)throw o("Wrong offset");return h}},73002:function(N,A,n){var u=n(17854),a=n(19303),o=u.RangeError;N.exports=function(s){var g=a(s);if(g<0)throw o("The argument can't be less than 0");return g}},57593:function(N,A,n){var u=n(17854),a=n(46916),o=n(70111),s=n(52190),g=n(58173),h=n(92140),E=n(5112),r=u.TypeError,c=E("toPrimitive");N.exports=function(Q,C){if(!o(Q)||s(Q))return Q;var e,w=g(Q,c);if(w){if(void 0===C&&(C="default"),e=a(w,Q,C),!o(e)||s(e))return e;throw r("Can't convert object to primitive value")}return void 0===C&&(C="number"),h(Q,C)}},34948:function(N,A,n){var u=n(57593),a=n(52190);N.exports=function(o){var s=u(o,"string");return a(s)?s:s+""}},51694:function(N,A,n){var o={};o[n(5112)("toStringTag")]="z",N.exports="[object z]"===String(o)},41340:function(N,A,n){var u=n(17854),a=n(70648),o=u.String;N.exports=function(s){if("Symbol"===a(s))throw TypeError("Cannot convert a Symbol value to a string");return o(s)}},66330:function(N,A,n){var a=n(17854).String;N.exports=function(o){try{return a(o)}catch{return"Object"}}},19843:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(46916),s=n(19781),g=n(63832),h=n(82094),E=n(2091),r=n(25787),c=n(79114),Q=n(68880),C=n(55988),w=n(17466),e=n(57067),f=n(84590),p=n(34948),v=n(92597),S=n(70648),I=n(70111),M=n(52190),y=n(70030),F=n(47976),Y=n(27674),D=n(8006).f,d=n(97321),H=n(42092).forEach,z=n(96340),aA=n(3070),K=n(31236),$=n(29909),nA=n(79587),uA=$.get,wA=$.set,NA=aA.f,yA=K.f,TA=Math.round,kA=a.RangeError,W=E.ArrayBuffer,fA=W.prototype,iA=E.DataView,eA=h.NATIVE_ARRAY_BUFFER_VIEWS,EA=h.TYPED_ARRAY_CONSTRUCTOR,mA=h.TYPED_ARRAY_TAG,GA=h.TypedArray,j=h.TypedArrayPrototype,b=h.aTypedArrayConstructor,rA=h.isTypedArray,oA="BYTES_PER_ELEMENT",pA="Wrong length",xA=function(IA,jA){b(IA);for(var ut=0,Ct=jA.length,ct=new IA(Ct);Ct>ut;)ct[ut]=jA[ut++];return ct},gA=function(IA,jA){NA(IA,jA,{get:function(){return uA(this)[jA]}})},CA=function(IA){var jA;return F(fA,IA)||"ArrayBuffer"==(jA=S(IA))||"SharedArrayBuffer"==jA},DA=function(IA,jA){return rA(IA)&&!M(jA)&&jA in IA&&C(+jA)&&jA>=0},YA=function(jA,ut){return ut=p(ut),DA(jA,ut)?c(2,jA[ut]):yA(jA,ut)},zA=function(jA,ut,Ct){return ut=p(ut),!(DA(jA,ut)&&I(Ct)&&v(Ct,"value"))||v(Ct,"get")||v(Ct,"set")||Ct.configurable||v(Ct,"writable")&&!Ct.writable||v(Ct,"enumerable")&&!Ct.enumerable?NA(jA,ut,Ct):(jA[ut]=Ct.value,jA)};s?(eA||(K.f=YA,aA.f=zA,gA(j,"buffer"),gA(j,"byteOffset"),gA(j,"byteLength"),gA(j,"length")),u({target:"Object",stat:!0,forced:!eA},{getOwnPropertyDescriptor:YA,defineProperty:zA}),N.exports=function(IA,jA,ut){var Ct=IA.match(/\d+$/)[0]/8,ct=IA+(ut?"Clamped":"")+"Array",pt="get"+IA,Yt="set"+IA,KA=a[ct],ZA=KA,Qt=ZA&&ZA.prototype,ft={},vA=function(gt,q){NA(gt,q,{get:function(){return function(gt,q){var J=uA(gt);return J.view[pt](q*Ct+J.byteOffset,!0)}(this,q)},set:function(J){return function(gt,q,J){var L=uA(gt);ut&&(J=(J=TA(J))<0?0:J>255?255:255&J),L.view[Yt](q*Ct+L.byteOffset,J,!0)}(this,q,J)},enumerable:!0})};eA?g&&(ZA=jA(function(gt,q,J,L){return r(gt,Qt),nA(I(q)?CA(q)?void 0!==L?new KA(q,f(J,Ct),L):void 0!==J?new KA(q,f(J,Ct)):new KA(q):rA(q)?xA(ZA,q):o(d,ZA,q):new KA(e(q)),gt,ZA)}),Y&&Y(ZA,GA),H(D(KA),function(gt){gt in ZA||Q(ZA,gt,KA[gt])}),ZA.prototype=Qt):(ZA=jA(function(gt,q,J,L){r(gt,Qt);var HA,$A,O,hA=0,_=0;if(I(q)){if(!CA(q))return rA(q)?xA(ZA,q):o(d,ZA,q);HA=q,_=f(J,Ct);var qA=q.byteLength;if(void 0===L){if(qA%Ct||($A=qA-_)<0)throw kA(pA)}else if(($A=w(L)*Ct)+_>qA)throw kA(pA);O=$A/Ct}else O=e(q),HA=new W($A=O*Ct);for(wA(gt,{buffer:HA,byteOffset:_,byteLength:$A,length:O,view:new iA(HA)});hA1?arguments[1]:void 0,v=void 0!==p,S=E(e);if(S&&!r(S))for(D=(Y=h(e,S)).next,e=[];!(F=a(D,Y)).done;)e.push(F.value);for(v&&f>2&&(p=u(p,arguments[2])),M=g(e),y=new(c(w))(M),I=0;M>I;I++)y[I]=v?p(e[I],I):e[I];return y}},66304:function(N,A,n){var u=n(82094),a=n(36707),o=u.TYPED_ARRAY_CONSTRUCTOR,s=u.aTypedArrayConstructor;N.exports=function(g){return s(a(g,g[o]))}},69711:function(N,A,n){var u=n(1702),a=0,o=Math.random(),s=u(1..toString);N.exports=function(g){return"Symbol("+(void 0===g?"":g)+")_"+s(++a+o,36)}},43307:function(N,A,n){var u=n(30133);N.exports=u&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},6061:function(N,A,n){var u=n(5112);A.f=u},5112:function(N,A,n){var u=n(17854),a=n(72309),o=n(92597),s=n(69711),g=n(30133),h=n(43307),E=a("wks"),r=u.Symbol,c=r&&r.for,Q=h?r:r&&r.withoutSetter||s;N.exports=function(C){if(!o(E,C)||!g&&"string"!=typeof E[C]){var w="Symbol."+C;E[C]=g&&o(r,C)?r[C]:h&&c?c(w):Q(w)}return E[C]}},81361:function(N){N.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(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(47976),s=n(79518),g=n(27674),h=n(99920),E=n(70030),r=n(68880),c=n(79114),Q=n(77741),C=n(58340),w=n(20408),e=n(56277),f=n(22914),p=a.Error,v=[].push,S=function(y,F){var Y=o(I,this)?this:E(I),D=arguments.length>2?arguments[2]:void 0;g&&(Y=g(new p(void 0),s(Y))),r(Y,"message",e(F,"")),f&&r(Y,"stack",Q(Y.stack,1)),C(Y,D);var d=[];return w(y,v,{that:d}),r(Y,"errors",d),Y};g?g(S,p):h(S,p);var I=S.prototype=E(p.prototype,{constructor:c(1,S),message:c(1,""),name:c(1,"AggregateError")});u({global:!0},{AggregateError:S})},92222:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(47293),s=n(43157),g=n(70111),h=n(47908),E=n(26244),r=n(86135),c=n(65417),Q=n(81194),C=n(5112),w=n(7392),e=C("isConcatSpreadable"),f=9007199254740991,p="Maximum allowed index exceeded",v=a.TypeError,S=w>=51||!o(function(){var F=[];return F[e]=!1,F.concat()[0]!==F}),I=Q("concat"),M=function(F){if(!g(F))return!1;var Y=F[e];return void 0!==Y?!!Y:s(F)};u({target:"Array",proto:!0,forced:!S||!I},{concat:function(Y){var z,aA,K,$,nA,D=h(this),d=c(D,0),H=0;for(z=-1,K=arguments.length;zf)throw v(p);for(aA=0;aA<$;aA++,H++)aA in nA&&r(d,H,nA[aA])}else{if(H>=f)throw v(p);r(d,H++,nA)}return d.length=H,d}})},50545:function(N,A,n){var u=n(82109),a=n(1048),o=n(51223);u({target:"Array",proto:!0},{copyWithin:a}),o("copyWithin")},43290:function(N,A,n){var u=n(82109),a=n(21285),o=n(51223);u({target:"Array",proto:!0},{fill:a}),o("fill")},57327:function(N,A,n){"use strict";var u=n(82109),a=n(42092).filter;u({target:"Array",proto:!0,forced:!n(81194)("filter")},{filter:function(h){return a(this,h,arguments.length>1?arguments[1]:void 0)}})},91038:function(N,A,n){var u=n(82109),a=n(48457);u({target:"Array",stat:!0,forced:!n(17072)(function(g){Array.from(g)})},{from:a})},26699:function(N,A,n){"use strict";var u=n(82109),a=n(41318).includes,o=n(51223);u({target:"Array",proto:!0},{includes:function(g){return a(this,g,arguments.length>1?arguments[1]:void 0)}}),o("includes")},66992:function(N,A,n){"use strict";var u=n(45656),a=n(51223),o=n(97497),s=n(29909),g=n(70654),h="Array Iterator",E=s.set,r=s.getterFor(h);N.exports=g(Array,"Array",function(c,Q){E(this,{type:h,target:u(c),index:0,kind:Q})},function(){var c=r(this),Q=c.target,C=c.kind,w=c.index++;return!Q||w>=Q.length?(c.target=void 0,{value:void 0,done:!0}):"keys"==C?{value:w,done:!1}:"values"==C?{value:Q[w],done:!1}:{value:[w,Q[w]],done:!1}},"values"),o.Arguments=o.Array,a("keys"),a("values"),a("entries")},69600:function(N,A,n){"use strict";var u=n(82109),a=n(1702),o=n(68361),s=n(45656),g=n(9341),h=a([].join),E=o!=Object,r=g("join",",");u({target:"Array",proto:!0,forced:E||!r},{join:function(Q){return h(s(this),void 0===Q?",":Q)}})},21249:function(N,A,n){"use strict";var u=n(82109),a=n(42092).map;u({target:"Array",proto:!0,forced:!n(81194)("map")},{map:function(h){return a(this,h,arguments.length>1?arguments[1]:void 0)}})},47042:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(43157),s=n(4411),g=n(70111),h=n(51400),E=n(26244),r=n(45656),c=n(86135),Q=n(5112),C=n(81194),w=n(50206),e=C("slice"),f=Q("species"),p=a.Array,v=Math.max;u({target:"Array",proto:!0,forced:!e},{slice:function(I,M){var d,H,z,y=r(this),F=E(y),Y=h(I,F),D=h(void 0===M?F:M,F);if(o(y)&&((s(d=y.constructor)&&(d===p||o(d.prototype))||g(d)&&null===(d=d[f]))&&(d=void 0),d===p||void 0===d))return w(y,Y,D);for(H=new(void 0===d?p:d)(v(D-Y,0)),z=0;Y3)){if(C)return!0;if(e)return e<603;var d,H,z,aA,D="";for(d=65;d<76;d++){switch(H=String.fromCharCode(d),d){case 66:case 69:case 70:case 72:z=3;break;case 68:case 71:z=4;break;default:z=2}for(aA=0;aA<47;aA++)f.push({k:H+aA,v:z})}for(f.sort(function(K,$){return $.v-K.v}),aA=0;aAh(H)?1:-1}}(d)),K=z.length,$=0;$9007199254740991)throw C("Maximum allowed length exceeded");for(H=E(M,d),z=0;zy-d+D;z--)delete M[z-1]}else if(D>d)for(z=y-d;z>F;z--)K=z+D-1,(aA=z+d-1)in M?M[K]=M[aA]:delete M[K];for(z=0;z2)if(nA=v(nA),43===(uA=Y(nA,0))||45===uA){if(88===(wA=Y(nA,2))||120===wA)return NaN}else if(48===uA){switch(Y(nA,1)){case 66:case 98:NA=2,yA=49;break;case 79:case 111:NA=8,yA=55;break;default:return+nA}for(kA=(TA=F(nA,2)).length,W=0;WyA)return NaN;return parseInt(TA,NA)}return+nA};if(s(S,!I(" 0o1")||!I("0b1")||I("+0x1"))){for(var K,H=function(nA){var uA=arguments.length<1?0:I(function($){var nA=Q($,"number");return"bigint"==typeof nA?nA:d(nA)}(nA)),wA=this;return r(M,wA)&&C(function(){p(wA)})?E(Object(uA),wA,H):uA},z=u?w(I):"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(","),aA=0;z.length>aA;aA++)h(I,K=z[aA])&&!h(H,K)&&f(H,K,e(I,K));H.prototype=M,M.constructor=H,g(a,S,H)}},93299:function(N,A,n){n(82109)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},35192:function(N,A,n){n(82109)({target:"Number",stat:!0},{isFinite:n(77023)})},33161:function(N,A,n){n(82109)({target:"Number",stat:!0},{isInteger:n(55988)})},56977:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(1702),s=n(19303),g=n(50863),h=n(38415),E=n(47293),r=a.RangeError,c=a.String,Q=Math.floor,C=o(h),w=o("".slice),e=o(1..toFixed),f=function(y,F,Y){return 0===F?Y:F%2==1?f(y,F-1,Y*y):f(y*y,F/2,Y)},v=function(y,F,Y){for(var D=-1,d=Y;++D<6;)y[D]=(d+=F*y[D])%1e7,d=Q(d/1e7)},S=function(y,F){for(var Y=6,D=0;--Y>=0;)y[Y]=Q((D+=y[Y])/F),D=D%F*1e7},I=function(y){for(var F=6,Y="";--F>=0;)if(""!==Y||0===F||0!==y[F]){var D=c(y[F]);Y=""===Y?D:Y+C("0",7-D.length)+D}return Y};u({target:"Number",proto:!0,forced:E(function(){return"0.000"!==e(8e-5,3)||"1"!==e(.9,0)||"1.25"!==e(1.255,2)||"1000000000000000128"!==e(0xde0b6b3a7640080,0)})||!E(function(){e({})})},{toFixed:function(F){var aA,K,$,nA,Y=g(this),D=s(F),d=[0,0,0,0,0,0],H="",z="0";if(D<0||D>20)throw r("Incorrect fraction digits");if(Y!=Y)return"NaN";if(Y<=-1e21||Y>=1e21)return c(Y);if(Y<0&&(H="-",Y=-Y),Y>1e-21)if(K=(aA=function(y){for(var F=0,Y=y;Y>=4096;)F+=12,Y/=4096;for(;Y>=2;)F+=1,Y/=2;return F}(Y*f(2,69,1))-69)<0?Y*f(2,-aA,1):Y/f(2,aA,1),K*=4503599627370496,(aA=52-aA)>0){for(v(d,0,K),$=D;$>=7;)v(d,1e7,0),$-=7;for(v(d,f(10,$,1),0),$=aA-1;$>=23;)S(d,8388608),$-=23;S(d,1<<$),v(d,1,1),S(d,2),z=I(d)}else v(d,0,K),v(d,1<<-aA,0),z=I(d)+C("0",D);return D>0?H+((nA=z.length)<=D?"0."+C("0",D-nA)+z:w(z,0,nA-D)+"."+w(z,nA-D)):H+z}})},19601:function(N,A,n){var u=n(82109),a=n(21574);u({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},43371:function(N,A,n){var u=n(82109),a=n(76677),o=n(47293),s=n(70111),g=n(62423).onFreeze,h=Object.freeze;u({target:"Object",stat:!0,forced:o(function(){h(1)}),sham:!a},{freeze:function(c){return h&&s(c)?h(g(c)):c}})},38880:function(N,A,n){var u=n(82109),a=n(47293),o=n(45656),s=n(31236).f,g=n(19781),h=a(function(){s(1)});u({target:"Object",stat:!0,forced:!g||h,sham:!g},{getOwnPropertyDescriptor:function(c,Q){return s(o(c),Q)}})},49337:function(N,A,n){var u=n(82109),a=n(19781),o=n(53887),s=n(45656),g=n(31236),h=n(86135);u({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(r){for(var f,p,c=s(r),Q=g.f,C=o(c),w={},e=0;C.length>e;)void 0!==(p=Q(c,f=C[e++]))&&h(w,f,p);return w}})},30489:function(N,A,n){var u=n(82109),a=n(47293),o=n(47908),s=n(79518),g=n(49920);u({target:"Object",stat:!0,forced:a(function(){s(1)}),sham:!g},{getPrototypeOf:function(r){return s(o(r))}})},47941:function(N,A,n){var u=n(82109),a=n(47908),o=n(81956);u({target:"Object",stat:!0,forced:n(47293)(function(){o(1)})},{keys:function(E){return o(a(E))}})},41539:function(N,A,n){var u=n(51694),a=n(31320),o=n(90288);u||a(Object.prototype,"toString",o,{unsafe:!0})},26833:function(N,A,n){var u=n(82109),a=n(44699).values;u({target:"Object",stat:!0},{values:function(s){return a(s)}})},17922:function(N,A,n){"use strict";var u=n(82109),a=n(46916),o=n(19662),s=n(78523),g=n(12534),h=n(20408);u({target:"Promise",stat:!0},{allSettled:function(r){var c=this,Q=s.f(c),C=Q.resolve,w=Q.reject,e=g(function(){var f=o(c.resolve),p=[],v=0,S=1;h(r,function(I){var M=v++,y=!1;S++,a(f,c,I).then(function(F){y||(y=!0,p[M]={status:"fulfilled",value:F},--S||C(p))},function(F){y||(y=!0,p[M]={status:"rejected",reason:F},--S||C(p))})}),--S||C(p)});return e.error&&w(e.value),Q.promise}})},34668:function(N,A,n){"use strict";var u=n(82109),a=n(19662),o=n(35005),s=n(46916),g=n(78523),h=n(12534),E=n(20408),r="No one promise resolved";u({target:"Promise",stat:!0},{any:function(Q){var C=this,w=o("AggregateError"),e=g.f(C),f=e.resolve,p=e.reject,v=h(function(){var S=a(C.resolve),I=[],M=0,y=1,F=!1;E(Q,function(Y){var D=M++,d=!1;y++,s(S,C,Y).then(function(H){d||F||(F=!0,f(H))},function(H){d||F||(d=!0,I[D]=H,--y||p(new w(I,r)))})}),--y||p(new w(I,r))});return v.error&&p(v.value),e.promise}})},17727:function(N,A,n){"use strict";var u=n(82109),a=n(31913),o=n(13366),s=n(47293),g=n(35005),h=n(60614),E=n(36707),r=n(69478),c=n(31320);if(u({target:"Promise",proto:!0,real:!0,forced:!!o&&s(function(){o.prototype.finally.call({then:function(){}},function(){})})},{finally:function(w){var e=E(this,g("Promise")),f=h(w);return this.then(f?function(p){return r(e,w()).then(function(){return p})}:w,f?function(p){return r(e,w()).then(function(){throw p})}:w)}}),!a&&h(o)){var C=g("Promise").prototype.finally;o.prototype.finally!==C&&c(o.prototype,"finally",C,{unsafe:!0})}},88674:function(N,A,n){"use strict";var IA,jA,ut,Ct,u=n(82109),a=n(31913),o=n(17854),s=n(35005),g=n(46916),h=n(13366),E=n(31320),r=n(12248),c=n(27674),Q=n(58003),C=n(96340),w=n(19662),e=n(60614),f=n(70111),p=n(25787),v=n(42788),S=n(20408),I=n(17072),M=n(36707),y=n(20261).set,F=n(95948),Y=n(69478),D=n(842),d=n(78523),H=n(12534),z=n(29909),aA=n(54705),K=n(5112),$=n(7871),nA=n(35268),uA=n(7392),wA=K("species"),NA="Promise",yA=z.get,TA=z.set,kA=z.getterFor(NA),W=h&&h.prototype,fA=h,iA=W,eA=o.TypeError,EA=o.document,mA=o.process,GA=d.f,j=GA,b=!!(EA&&EA.createEvent&&o.dispatchEvent),rA=e(o.PromiseRejectionEvent),oA="unhandledrejection",zA=!1,ct=aA(NA,function(){var q=v(fA),J=q!==String(fA);if(!J&&66===uA||a&&!iA.finally)return!0;if(uA>=51&&/native code/.test(q))return!1;var L=new fA(function(HA){HA(1)}),hA=function(HA){HA(function(){},function(){})};return(L.constructor={})[wA]=hA,!(zA=L.then(function(){})instanceof hA)||!J&&$&&!rA}),pt=ct||!I(function(q){fA.all(q).catch(function(){})}),Yt=function(q){var J;return!(!f(q)||!e(J=q.then))&&J},KA=function(q,J){if(!q.notified){q.notified=!0;var L=q.reactions;F(function(){for(var hA=q.value,_=1==q.state,HA=0;L.length>HA;){var OA,st,Ut,$A=L[HA++],O=_?$A.ok:$A.fail,qA=$A.resolve,et=$A.reject,MA=$A.domain;try{O?(_||(2===q.rejection&&Dt(q),q.rejection=1),!0===O?OA=hA:(MA&&MA.enter(),OA=O(hA),MA&&(MA.exit(),Ut=!0)),OA===$A.promise?et(eA("Promise-chain cycle")):(st=Yt(OA))?g(st,OA,qA,et):qA(OA)):et(hA)}catch(xt){MA&&!Ut&&MA.exit(),et(xt)}}q.reactions=[],q.notified=!1,J&&!q.rejection&&Qt(q)})}},ZA=function(q,J,L){var hA,_;b?((hA=EA.createEvent("Event")).promise=J,hA.reason=L,hA.initEvent(q,!1,!0),o.dispatchEvent(hA)):hA={promise:J,reason:L},!rA&&(_=o["on"+q])?_(hA):q===oA&&D("Unhandled promise rejection",L)},Qt=function(q){g(y,o,function(){var _,J=q.facade,L=q.value;if(ft(q)&&(_=H(function(){nA?mA.emit("unhandledRejection",L,J):ZA(oA,J,L)}),q.rejection=nA||ft(q)?2:1,_.error))throw _.value})},ft=function(q){return 1!==q.rejection&&!q.parent},Dt=function(q){g(y,o,function(){var J=q.facade;nA?mA.emit("rejectionHandled",J):ZA("rejectionhandled",J,q.value)})},Nt=function(q,J,L){return function(hA){q(J,hA,L)}},vA=function(q,J,L){q.done||(q.done=!0,L&&(q=L),q.value=J,q.state=2,KA(q,!0))},gt=function(q,J,L){if(!q.done){q.done=!0,L&&(q=L);try{if(q.facade===J)throw eA("Promise can't be resolved itself");var hA=Yt(J);hA?F(function(){var _={done:!1};try{g(hA,J,Nt(gt,_,q),Nt(vA,_,q))}catch(HA){vA(_,HA,q)}}):(q.value=J,q.state=1,KA(q,!1))}catch(_){vA({done:!1},_,q)}}};if(ct&&(fA=function(J){p(this,iA),w(J),g(IA,this);var L=yA(this);try{J(Nt(gt,L),Nt(vA,L))}catch(hA){vA(L,hA)}},(IA=function(J){TA(this,{type:NA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=r(iA=fA.prototype,{then:function(J,L){var hA=kA(this),_=hA.reactions,HA=GA(M(this,fA));return HA.ok=!e(J)||J,HA.fail=e(L)&&L,HA.domain=nA?mA.domain:void 0,hA.parent=!0,_[_.length]=HA,0!=hA.state&&KA(hA,!1),HA.promise},catch:function(q){return this.then(void 0,q)}}),jA=function(){var q=new IA,J=yA(q);this.promise=q,this.resolve=Nt(gt,J),this.reject=Nt(vA,J)},d.f=GA=function(q){return q===fA||q===ut?new jA(q):j(q)},!a&&e(h)&&W!==Object.prototype)){Ct=W.then,zA||(E(W,"then",function(J,L){var hA=this;return new fA(function(_,HA){g(Ct,hA,_,HA)}).then(J,L)},{unsafe:!0}),E(W,"catch",iA.catch,{unsafe:!0}));try{delete W.constructor}catch{}c&&c(W,iA)}u({global:!0,wrap:!0,forced:ct},{Promise:fA}),Q(fA,NA,!1,!0),C(NA),ut=s(NA),u({target:NA,stat:!0,forced:ct},{reject:function(J){var L=GA(this);return g(L.reject,void 0,J),L.promise}}),u({target:NA,stat:!0,forced:a||ct},{resolve:function(J){return Y(a&&this===ut?fA:this,J)}}),u({target:NA,stat:!0,forced:pt},{all:function(J){var L=this,hA=GA(L),_=hA.resolve,HA=hA.reject,$A=H(function(){var O=w(L.resolve),qA=[],et=0,MA=1;S(J,function(OA){var st=et++,Ut=!1;MA++,g(O,L,OA).then(function(xt){Ut||(Ut=!0,qA[st]=xt,--MA||_(qA))},HA)}),--MA||_(qA)});return $A.error&&HA($A.value),hA.promise},race:function(J){var L=this,hA=GA(L),_=hA.reject,HA=H(function(){var $A=w(L.resolve);S(J,function(O){g($A,L,O).then(hA.resolve,_)})});return HA.error&&_(HA.value),hA.promise}})},12419:function(N,A,n){var u=n(82109),a=n(35005),o=n(22104),s=n(27065),g=n(39483),h=n(19670),E=n(70111),r=n(70030),c=n(47293),Q=a("Reflect","construct"),C=Object.prototype,w=[].push,e=c(function(){function v(){}return!(Q(function(){},[],v)instanceof v)}),f=!c(function(){Q(function(){})}),p=e||f;u({target:"Reflect",stat:!0,forced:p,sham:p},{construct:function(S,I){g(S),h(I);var M=arguments.length<3?S:g(arguments[2]);if(f&&!e)return Q(S,I,M);if(S==M){switch(I.length){case 0:return new S;case 1:return new S(I[0]);case 2:return new S(I[0],I[1]);case 3:return new S(I[0],I[1],I[2]);case 4:return new S(I[0],I[1],I[2],I[3])}var y=[null];return o(w,y,I),new(o(s,S,y))}var F=M.prototype,Y=r(E(F)?F:C),D=o(S,Y,I);return E(D)?D:Y}})},74916:function(N,A,n){"use strict";var u=n(82109),a=n(22261);u({target:"RegExp",proto:!0,forced:/./.exec!==a},{exec:a})},92087:function(N,A,n){var u=n(19781),a=n(3070),o=n(67066),s=n(47293),g=RegExp.prototype;u&&s(function(){return"sy"!==Object.getOwnPropertyDescriptor(g,"flags").get.call({dotAll:!0,sticky:!0})})&&a.f(g,"flags",{configurable:!0,get:o})},39714:function(N,A,n){"use strict";var u=n(1702),a=n(76530).PROPER,o=n(31320),s=n(19670),g=n(47976),h=n(41340),E=n(47293),r=n(67066),c="toString",Q=RegExp.prototype,C=Q[c],w=u(r);(E(function(){return"/a/b"!=C.call({source:"a",flags:"b"})})||a&&C.name!=c)&&o(RegExp.prototype,c,function(){var v=s(this),S=h(v.source),I=v.flags;return"/"+S+"/"+h(void 0===I&&g(Q,v)&&!("flags"in Q)?w(v):I)},{unsafe:!0})},70189:function(N,A,n){"use strict";n(77710)("Set",function(o){return function(){return o(this,arguments.length?arguments[0]:void 0)}},n(95631))},79841:function(N,A,n){"use strict";var u=n(82109),a=n(28710).codeAt;u({target:"String",proto:!0},{codePointAt:function(s){return a(this,s)}})},94953:function(N,A,n){var u=n(82109),a=n(17854),o=n(1702),s=n(51400),g=a.RangeError,h=String.fromCharCode,E=String.fromCodePoint,r=o([].join);u({target:"String",stat:!0,forced:!!E&&1!=E.length},{fromCodePoint:function(C){for(var p,w=[],e=arguments.length,f=0;e>f;){if(p=+arguments[f++],s(p,1114111)!==p)throw g(p+" is not a valid code point");w[f]=p<65536?h(p):h(55296+((p-=65536)>>10),p%1024+56320)}return r(w,"")}})},32023:function(N,A,n){"use strict";var u=n(82109),a=n(1702),o=n(3929),s=n(84488),g=n(41340),h=n(84964),E=a("".indexOf);u({target:"String",proto:!0,forced:!h("includes")},{includes:function(c){return!!~E(g(s(this)),g(o(c)),arguments.length>1?arguments[1]:void 0)}})},58734:function(N,A,n){"use strict";var u=n(82109),a=n(14230);u({target:"String",proto:!0,forced:n(43429)("italics")},{italics:function(){return a(this,"i","","")}})},78783:function(N,A,n){"use strict";var u=n(28710).charAt,a=n(41340),o=n(29909),s=n(70654),g="String Iterator",h=o.set,E=o.getterFor(g);s(String,"String",function(r){h(this,{type:g,string:a(r),index:0})},function(){var w,c=E(this),Q=c.string,C=c.index;return C>=Q.length?{value:void 0,done:!0}:(w=u(Q,C),c.index+=w.length,{value:w,done:!1})})},29254:function(N,A,n){"use strict";var u=n(82109),a=n(14230);u({target:"String",proto:!0,forced:n(43429)("link")},{link:function(g){return a(this,"a","href",g)}})},76373:function(N,A,n){"use strict";var u=n(82109),a=n(17854),o=n(46916),s=n(1702),g=n(24994),h=n(84488),E=n(17466),r=n(41340),c=n(19670),Q=n(84326),C=n(47976),w=n(47850),e=n(67066),f=n(58173),p=n(31320),v=n(47293),S=n(5112),I=n(36707),M=n(31530),y=n(97651),F=n(29909),Y=n(31913),D=S("matchAll"),d="RegExp String",H=d+" Iterator",z=F.set,aA=F.getterFor(H),K=RegExp.prototype,$=a.TypeError,nA=s(e),uA=s("".indexOf),wA=s("".matchAll),NA=!!wA&&!v(function(){wA("a",/./)}),yA=g(function(W,fA,iA,eA){z(this,{type:H,regexp:W,string:fA,global:iA,unicode:eA,done:!1})},d,function(){var W=aA(this);if(W.done)return{value:void 0,done:!0};var fA=W.regexp,iA=W.string,eA=y(fA,iA);return null===eA?{value:void 0,done:W.done=!0}:W.global?(""===r(eA[0])&&(fA.lastIndex=M(iA,E(fA.lastIndex),W.unicode)),{value:eA,done:!1}):(W.done=!0,{value:eA,done:!1})}),TA=function(kA){var iA,eA,EA,mA,GA,j,W=c(this),fA=r(kA);return iA=I(W,RegExp),void 0===(eA=W.flags)&&C(K,W)&&!("flags"in K)&&(eA=nA(W)),EA=void 0===eA?"":r(eA),mA=new iA(iA===RegExp?W.source:W,EA),GA=!!~uA(EA,"g"),j=!!~uA(EA,"u"),mA.lastIndex=E(W.lastIndex),new yA(mA,fA,GA,j)};u({target:"String",proto:!0,forced:NA},{matchAll:function(W){var iA,eA,EA,mA,fA=h(this);if(null!=W){if(w(W)&&(iA=r(h("flags"in K?W.flags:nA(W))),!~uA(iA,"g")))throw $("`.matchAll` does not allow non-global regexes");if(NA)return wA(fA,W);if(void 0===(EA=f(W,D))&&Y&&"RegExp"==Q(W)&&(EA=TA),EA)return o(EA,W,fA)}else if(NA)return wA(fA,W);return eA=r(fA),mA=new RegExp(W,"g"),Y?o(TA,mA,eA):mA[D](eA)}}),Y||D in K||p(K,D,TA)},4723:function(N,A,n){"use strict";var u=n(46916),a=n(27007),o=n(19670),s=n(17466),g=n(41340),h=n(84488),E=n(58173),r=n(31530),c=n(97651);a("match",function(Q,C,w){return[function(f){var p=h(this),v=null==f?void 0:E(f,Q);return v?u(v,f,p):new RegExp(f)[Q](g(p))},function(e){var f=o(this),p=g(e),v=w(C,f,p);if(v.done)return v.value;if(!f.global)return c(f,p);var S=f.unicode;f.lastIndex=0;for(var y,I=[],M=0;null!==(y=c(f,p));){var F=g(y[0]);I[M]=F,""===F&&(f.lastIndex=r(p,s(f.lastIndex),S)),M++}return 0===M?null:I}]})},82481:function(N,A,n){n(82109)({target:"String",proto:!0},{repeat:n(38415)})},15306:function(N,A,n){"use strict";var u=n(22104),a=n(46916),o=n(1702),s=n(27007),g=n(47293),h=n(19670),E=n(60614),r=n(19303),c=n(17466),Q=n(41340),C=n(84488),w=n(31530),e=n(58173),f=n(10647),p=n(97651),S=n(5112)("replace"),I=Math.max,M=Math.min,y=o([].concat),F=o([].push),Y=o("".indexOf),D=o("".slice),d=function(K){return void 0===K?K:String(K)},H="$0"==="a".replace(/./,"$0"),z=!!/./[S]&&""===/./[S]("a","$0");s("replace",function(K,$,nA){var uA=z?"$":"$0";return[function(NA,yA){var TA=C(this),kA=null==NA?void 0:e(NA,S);return kA?a(kA,NA,TA,yA):a($,Q(TA),NA,yA)},function(wA,NA){var yA=h(this),TA=Q(wA);if("string"==typeof NA&&-1===Y(NA,uA)&&-1===Y(NA,"$<")){var kA=nA($,yA,TA,NA);if(kA.done)return kA.value}var W=E(NA);W||(NA=Q(NA));var fA=yA.global;if(fA){var iA=yA.unicode;yA.lastIndex=0}for(var eA=[];;){var EA=p(yA,TA);if(null===EA||(F(eA,EA),!fA))break;""===Q(EA[0])&&(yA.lastIndex=w(TA,c(yA.lastIndex),iA))}for(var GA="",j=0,b=0;b=j&&(GA+=D(TA,j,oA)+DA,j=oA+rA.length)}return GA+D(TA,j)}]},!!g(function(){var K=/./;return K.exec=function(){var $=[];return $.groups={a:"7"},$},"7"!=="".replace(K,"$")})||!H||z)},23123:function(N,A,n){"use strict";var u=n(22104),a=n(46916),o=n(1702),s=n(27007),g=n(47850),h=n(19670),E=n(84488),r=n(36707),c=n(31530),Q=n(17466),C=n(41340),w=n(58173),e=n(50206),f=n(97651),p=n(22261),v=n(52999),S=n(47293),I=v.UNSUPPORTED_Y,M=4294967295,y=Math.min,F=[].push,Y=o(/./.exec),D=o(F),d=o("".slice),H=!S(function(){var z=/(?:)/,aA=z.exec;z.exec=function(){return aA.apply(this,arguments)};var K="ab".split(z);return 2!==K.length||"a"!==K[0]||"b"!==K[1]});s("split",function(z,aA,K){var $;return $="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(nA,uA){var wA=C(E(this)),NA=void 0===uA?M:uA>>>0;if(0===NA)return[];if(void 0===nA)return[wA];if(!g(nA))return a(aA,wA,nA,NA);for(var fA,iA,eA,yA=[],kA=0,W=new RegExp(nA.source,(nA.ignoreCase?"i":"")+(nA.multiline?"m":"")+(nA.unicode?"u":"")+(nA.sticky?"y":"")+"g");(fA=a(p,W,wA))&&!((iA=W.lastIndex)>kA&&(D(yA,d(wA,kA,fA.index)),fA.length>1&&fA.index=NA));)W.lastIndex===fA.index&&W.lastIndex++;return kA===wA.length?(eA||!Y(W,""))&&D(yA,""):D(yA,d(wA,kA)),yA.length>NA?e(yA,0,NA):yA}:"0".split(void 0,0).length?function(nA,uA){return void 0===nA&&0===uA?[]:a(aA,this,nA,uA)}:aA,[function(uA,wA){var NA=E(this),yA=null==uA?void 0:w(uA,z);return yA?a(yA,uA,NA,wA):a($,C(NA),uA,wA)},function(nA,uA){var wA=h(this),NA=C(nA),yA=K($,wA,NA,uA,$!==aA);if(yA.done)return yA.value;var TA=r(wA,RegExp),kA=wA.unicode,fA=new TA(I?"^(?:"+wA.source+")":wA,(wA.ignoreCase?"i":"")+(wA.multiline?"m":"")+(wA.unicode?"u":"")+(I?"g":"y")),iA=void 0===uA?M:uA>>>0;if(0===iA)return[];if(0===NA.length)return null===f(fA,NA)?[NA]:[];for(var eA=0,EA=0,mA=[];EA2?arguments[2]:void 0)})},18927:function(N,A,n){"use strict";var u=n(82094),a=n(42092).every,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("every",function(h){return a(o(this),h,arguments.length>1?arguments[1]:void 0)})},33105:function(N,A,n){"use strict";var u=n(82094),a=n(46916),o=n(21285),s=u.aTypedArray;(0,u.exportTypedArrayMethod)("fill",function(E){var r=arguments.length;return a(o,s(this),E,r>1?arguments[1]:void 0,r>2?arguments[2]:void 0)})},35035:function(N,A,n){"use strict";var u=n(82094),a=n(42092).filter,o=n(43074),s=u.aTypedArray;(0,u.exportTypedArrayMethod)("filter",function(E){var r=a(s(this),E,arguments.length>1?arguments[1]:void 0);return o(this,r)})},7174:function(N,A,n){"use strict";var u=n(82094),a=n(42092).findIndex,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("findIndex",function(h){return a(o(this),h,arguments.length>1?arguments[1]:void 0)})},74345:function(N,A,n){"use strict";var u=n(82094),a=n(42092).find,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("find",function(h){return a(o(this),h,arguments.length>1?arguments[1]:void 0)})},44197:function(N,A,n){n(19843)("Float32",function(a){return function(s,g,h){return a(this,s,g,h)}})},76495:function(N,A,n){n(19843)("Float64",function(a){return function(s,g,h){return a(this,s,g,h)}})},32846:function(N,A,n){"use strict";var u=n(82094),a=n(42092).forEach,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("forEach",function(h){a(o(this),h,arguments.length>1?arguments[1]:void 0)})},98145:function(N,A,n){"use strict";var u=n(63832);(0,n(82094).exportTypedArrayStaticMethod)("from",n(97321),u)},44731:function(N,A,n){"use strict";var u=n(82094),a=n(41318).includes,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("includes",function(h){return a(o(this),h,arguments.length>1?arguments[1]:void 0)})},77209:function(N,A,n){"use strict";var u=n(82094),a=n(41318).indexOf,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("indexOf",function(h){return a(o(this),h,arguments.length>1?arguments[1]:void 0)})},35109:function(N,A,n){n(19843)("Int16",function(a){return function(s,g,h){return a(this,s,g,h)}})},65125:function(N,A,n){n(19843)("Int32",function(a){return function(s,g,h){return a(this,s,g,h)}})},87145:function(N,A,n){n(19843)("Int8",function(a){return function(s,g,h){return a(this,s,g,h)}})},96319:function(N,A,n){"use strict";var u=n(17854),a=n(1702),o=n(76530).PROPER,s=n(82094),g=n(66992),E=n(5112)("iterator"),r=u.Uint8Array,c=a(g.values),Q=a(g.keys),C=a(g.entries),w=s.aTypedArray,e=s.exportTypedArrayMethod,f=r&&r.prototype[E],p=!!f&&"values"===f.name,v=function(){return c(w(this))};e("entries",function(){return C(w(this))}),e("keys",function(){return Q(w(this))}),e("values",v,o&&!p),e(E,v,o&&!p)},58867:function(N,A,n){"use strict";var u=n(82094),a=n(1702),o=u.aTypedArray,s=u.exportTypedArrayMethod,g=a([].join);s("join",function(E){return g(o(this),E)})},37789:function(N,A,n){"use strict";var u=n(82094),a=n(22104),o=n(86583),s=u.aTypedArray;(0,u.exportTypedArrayMethod)("lastIndexOf",function(E){var r=arguments.length;return a(o,s(this),r>1?[E,arguments[1]]:[E])})},33739:function(N,A,n){"use strict";var u=n(82094),a=n(42092).map,o=n(66304),s=u.aTypedArray;(0,u.exportTypedArrayMethod)("map",function(E){return a(s(this),E,arguments.length>1?arguments[1]:void 0,function(r,c){return new(o(r))(c)})})},14483:function(N,A,n){"use strict";var u=n(82094),a=n(53671).right,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("reduceRight",function(h){var E=arguments.length;return a(o(this),h,E,E>1?arguments[1]:void 0)})},29368:function(N,A,n){"use strict";var u=n(82094),a=n(53671).left,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("reduce",function(h){var E=arguments.length;return a(o(this),h,E,E>1?arguments[1]:void 0)})},12056:function(N,A,n){"use strict";var u=n(82094),a=u.aTypedArray,s=Math.floor;(0,u.exportTypedArrayMethod)("reverse",function(){for(var Q,h=this,E=a(h).length,r=s(E/2),c=0;c1?arguments[1]:void 0,1),f=this.length,p=g(w),v=o(p),S=0;if(v+e>f)throw E("Wrong length");for(;Se;)p[e]=C[e++];return p},o(function(){new Int8Array(1).slice()}))},27462:function(N,A,n){"use strict";var u=n(82094),a=n(42092).some,o=u.aTypedArray;(0,u.exportTypedArrayMethod)("some",function(h){return a(o(this),h,arguments.length>1?arguments[1]:void 0)})},33824:function(N,A,n){"use strict";var u=n(17854),a=n(1702),o=n(47293),s=n(19662),g=n(94362),h=n(82094),E=n(68886),r=n(30256),c=n(7392),Q=n(98008),C=u.Array,w=h.aTypedArray,e=h.exportTypedArrayMethod,f=u.Uint16Array,p=f&&a(f.prototype.sort),v=!(!p||o(function(){p(new f(2),null)})&&o(function(){p(new f(2),{})})),S=!!p&&!o(function(){if(c)return c<74;if(E)return E<67;if(r)return!0;if(Q)return Q<602;var F,Y,M=new f(516),y=C(516);for(F=0;F<516;F++)Y=F%4,M[F]=515-F,y[F]=F-2*Y+3;for(p(M,function(D,d){return(D/4|0)-(d/4|0)}),F=0;F<516;F++)if(M[F]!==y[F])return!0});e("sort",function(y){return void 0!==y&&s(y),S?p(this,y):g(w(this),(M=y,function(y,F){return void 0!==M?+M(y,F)||0:F!=F?-1:y!=y?1:0===y&&0===F?1/y>0&&1/F<0?1:-1:y>F}));var M},!S||v)},55021:function(N,A,n){"use strict";var u=n(82094),a=n(17466),o=n(51400),s=n(66304),g=u.aTypedArray;(0,u.exportTypedArrayMethod)("subarray",function(r,c){var Q=g(this),C=Q.length,w=o(r,C);return new(s(Q))(Q.buffer,Q.byteOffset+w*Q.BYTES_PER_ELEMENT,a((void 0===c?C:o(c,C))-w))})},12974:function(N,A,n){"use strict";var u=n(17854),a=n(22104),o=n(82094),s=n(47293),g=n(50206),h=u.Int8Array,E=o.aTypedArray,r=o.exportTypedArrayMethod,c=[].toLocaleString,Q=!!h&&s(function(){c.call(new h(1))});r("toLocaleString",function(){return a(c,Q?g(E(this)):E(this),g(arguments))},s(function(){return[1,2].toLocaleString()!=new h([1,2]).toLocaleString()})||!s(function(){h.prototype.toLocaleString.call([1,2])}))},15016:function(N,A,n){"use strict";var u=n(82094).exportTypedArrayMethod,a=n(47293),o=n(17854),s=n(1702),g=o.Uint8Array,h=g&&g.prototype||{},E=[].toString,r=s([].join);a(function(){E.call({})})&&(E=function(){return r(this)}),u("toString",E,h.toString!=E)},8255:function(N,A,n){n(19843)("Uint16",function(a){return function(s,g,h){return a(this,s,g,h)}})},29135:function(N,A,n){n(19843)("Uint32",function(a){return function(s,g,h){return a(this,s,g,h)}})},82472:function(N,A,n){n(19843)("Uint8",function(a){return function(s,g,h){return a(this,s,g,h)}})},49743:function(N,A,n){n(19843)("Uint8",function(a){return function(s,g,h){return a(this,s,g,h)}},!0)},8628:function(N,A,n){n(9170)},65743:function(N,A,n){n(35837)},97314:function(N,A,n){n(17922)},96290:function(N,A,n){n(34668)},77479:function(N,A,n){"use strict";var u=n(82109),a=n(78523),o=n(12534);u({target:"Promise",stat:!0},{try:function(s){var g=a.f(this),h=o(s);return(h.error?g.reject:g.resolve)(h.value),g.promise}})},13728:function(N,A,n){n(76373)},54747:function(N,A,n){var u=n(17854),a=n(48324),o=n(98509),s=n(18533),g=n(68880),h=function(r){if(r&&r.forEach!==s)try{g(r,"forEach",s)}catch{r.forEach=s}};for(var E in a)a[E]&&h(u[E]&&u[E].prototype);h(o)},33948:function(N,A,n){var u=n(17854),a=n(48324),o=n(98509),s=n(66992),g=n(68880),h=n(5112),E=h("iterator"),r=h("toStringTag"),c=s.values,Q=function(w,e){if(w){if(w[E]!==c)try{g(w,E,c)}catch{w[E]=c}if(w[r]||g(w,r,e),a[e])for(var f in s)if(w[f]!==s[f])try{g(w,f,s[f])}catch{w[f]=s[f]}}};for(var C in a)Q(u[C]&&u[C].prototype,C);Q(o,"DOMTokenList")},83753:function(N,A,n){"use strict";var u=n(82109),a=n(46916);u({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return a(URL.prototype.toString,this)}})},71150:function(N,A,n){var u=n(47633);n(33948),N.exports=u},10251:function(N,A,n){var u=n(82215),a=n(82584),o=n(20609),s=n(98420),g=n(2847),h=n(18923),E=Date.prototype.getTime;function r(w,e,f){var p=f||{};return!!(p.strict?o(w,e):w===e)||(!w||!e||"object"!=typeof w&&"object"!=typeof e?p.strict?o(w,e):w==e:function C(w,e,f){var p,v;if(typeof w!=typeof e||c(w)||c(e)||w.prototype!==e.prototype||a(w)!==a(e))return!1;var S=s(w),I=s(e);if(S!==I)return!1;if(S||I)return w.source===e.source&&g(w)===g(e);if(h(w)&&h(e))return E.call(w)===E.call(e);var M=Q(w),y=Q(e);if(M!==y)return!1;if(M||y){if(w.length!==e.length)return!1;for(p=0;p=0;p--)if(F[p]!=Y[p])return!1;for(p=F.length-1;p>=0;p--)if(!r(w[v=F[p]],e[v],f))return!1;return!0}(w,e,p))}function c(w){return null==w}function Q(w){return!(!w||"object"!=typeof w||"number"!=typeof w.length||"function"!=typeof w.copy||"function"!=typeof w.slice||w.length>0&&"number"!=typeof w[0])}N.exports=r},12296:function(N,A,n){"use strict";var u=n(31044)(),a=n(40210),o=u&&a("%Object.defineProperty%",!0);if(o)try{o({},"a",{value:1})}catch{o=!1}var s=a("%SyntaxError%"),g=a("%TypeError%"),h=n(27296);N.exports=function(r,c,Q){if(!r||"object"!=typeof r&&"function"!=typeof r)throw new g("`obj` must be an object or a function`");if("string"!=typeof c&&"symbol"!=typeof c)throw new g("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new g("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new g("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new g("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new g("`loose`, if provided, must be a boolean");var C=arguments.length>3?arguments[3]:null,w=arguments.length>4?arguments[4]:null,e=arguments.length>5?arguments[5]:null,f=arguments.length>6&&arguments[6],p=!!h&&h(r,c);if(o)o(r,c,{configurable:null===e&&p?p.configurable:!e,enumerable:null===C&&p?p.enumerable:!C,value:Q,writable:null===w&&p?p.writable:!w});else{if(!f&&(C||w||e))throw new s("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");r[c]=Q}}},4289:function(N,A,n){"use strict";var u=n(82215),a="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),o=Object.prototype.toString,s=Array.prototype.concat,g=n(12296),E=n(31044)(),r=function(Q,C,w,e){if(C in Q)if(!0===e){if(Q[C]===w)return}else if(!function(Q){return"function"==typeof Q&&"[object Function]"===o.call(Q)}(e)||!e())return;E?g(Q,C,w,!0):g(Q,C,w)},c=function(Q,C){var w=arguments.length>2?arguments[2]:{},e=u(C);a&&(e=s.call(e,Object.getOwnPropertySymbols(C)));for(var f=0;f0&&H.length>D&&!H.warned){H.warned=!0;var z=new Error("Possible EventEmitter memory leak detected. "+H.length+" "+String(y)+" listeners added. Use emitter.setMaxListeners() to increase limit");z.name="MaxListenersExceededWarning",z.emitter=M,z.type=y,z.count=H.length,function a(M){console&&console.warn&&console.warn(M)}(z)}return M}function c(){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 Q(M,y,F){var Y={fired:!1,wrapFn:void 0,target:M,type:y,listener:F},D=c.bind(Y);return D.listener=F,Y.wrapFn=D,D}function C(M,y,F){var Y=M._events;if(void 0===Y)return[];var D=Y[y];return void 0===D?[]:"function"==typeof D?F?[D.listener||D]:[D]:F?function p(M){for(var y=new Array(M.length),F=0;F0&&(H=F[0]),H instanceof Error)throw H;var z=new Error("Unhandled error."+(H?" ("+H.message+")":""));throw z.context=H,z}var aA=d[y];if(void 0===aA)return!1;if("function"==typeof aA)n(aA,this,F);else{var K=aA.length,$=e(aA,K);for(Y=0;Y=0;H--)if(Y[H]===F||Y[H].listener===F){z=Y[H].listener,d=H;break}if(d<0)return this;0===d?Y.shift():function f(M,y){for(;y+1=0;D--)this.removeListener(y,F[D]);return this},s.prototype.listeners=function(y){return C(this,y,!0)},s.prototype.rawListeners=function(y){return C(this,y,!1)},s.listenerCount=function(M,y){return"function"==typeof M.listenerCount?M.listenerCount(y):w.call(M,y)},s.prototype.listenerCount=w,s.prototype.eventNames=function(){return this._eventsCount>0?u(this._events):[]}},62536:function(N,A,n){var u=n(44275),a=n(27672);typeof a.pdfMake>"u"&&(a.pdfMake=u),N.exports=u},27672:function(N,A,n){"use strict";N.exports=function(){if("object"==typeof globalThis)return globalThis;var u;try{u=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof n.g<"u")return n.g}return u}()},94029:function(N,A,n){"use strict";var u=n(95320),a=Object.prototype.toString,o=Object.prototype.hasOwnProperty;N.exports=function(c,Q,C){if(!u(Q))throw new TypeError("iterator must be a function");var w;arguments.length>=3&&(w=C),"[object Array]"===a.call(c)?function(c,Q,C){for(var w=0,e=c.length;w"u"||!C?u:C(Uint8Array),f={"%AggregateError%":typeof AggregateError>"u"?u:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?u:ArrayBuffer,"%ArrayIteratorPrototype%":c&&C?C([][Symbol.iterator]()):u,"%AsyncFromSyncIteratorPrototype%":u,"%AsyncFunction%":w,"%AsyncGenerator%":w,"%AsyncGeneratorFunction%":w,"%AsyncIteratorPrototype%":w,"%Atomics%":typeof Atomics>"u"?u:Atomics,"%BigInt%":typeof BigInt>"u"?u:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?u:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?u:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?u:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?u:Float32Array,"%Float64Array%":typeof Float64Array>"u"?u:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?u:FinalizationRegistry,"%Function%":o,"%GeneratorFunction%":w,"%Int8Array%":typeof Int8Array>"u"?u:Int8Array,"%Int16Array%":typeof Int16Array>"u"?u:Int16Array,"%Int32Array%":typeof Int32Array>"u"?u:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":c&&C?C(C([][Symbol.iterator]())):u,"%JSON%":"object"==typeof JSON?JSON:u,"%Map%":typeof Map>"u"?u:Map,"%MapIteratorPrototype%":typeof Map>"u"||!c||!C?u:C((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?u:Promise,"%Proxy%":typeof Proxy>"u"?u:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?u:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?u:Set,"%SetIteratorPrototype%":typeof Set>"u"||!c||!C?u:C((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?u:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":c&&C?C(""[Symbol.iterator]()):u,"%Symbol%":c?Symbol:u,"%SyntaxError%":a,"%ThrowTypeError%":r,"%TypedArray%":e,"%TypeError%":s,"%Uint8Array%":typeof Uint8Array>"u"?u:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?u:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?u:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?u:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?u:WeakMap,"%WeakRef%":typeof WeakRef>"u"?u:WeakRef,"%WeakSet%":typeof WeakSet>"u"?u:WeakSet};if(C)try{null.error}catch($){var p=C(C($));f["%Error.prototype%"]=p}var v=function $(nA){var uA;if("%AsyncFunction%"===nA)uA=g("async function () {}");else if("%GeneratorFunction%"===nA)uA=g("function* () {}");else if("%AsyncGeneratorFunction%"===nA)uA=g("async function* () {}");else if("%AsyncGenerator%"===nA){var wA=$("%AsyncGeneratorFunction%");wA&&(uA=wA.prototype)}else if("%AsyncIteratorPrototype%"===nA){var NA=$("%AsyncGenerator%");NA&&C&&(uA=C(NA.prototype))}return f[nA]=uA,uA},S={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},I=n(58612),M=n(48824),y=I.call(Function.call,Array.prototype.concat),F=I.call(Function.apply,Array.prototype.splice),Y=I.call(Function.call,String.prototype.replace),D=I.call(Function.call,String.prototype.slice),d=I.call(Function.call,RegExp.prototype.exec),H=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,z=/\\(\\)?/g,K=function(nA,uA){var NA,wA=nA;if(M(S,wA)&&(wA="%"+(NA=S[wA])[0]+"%"),M(f,wA)){var yA=f[wA];if(yA===w&&(yA=v(wA)),typeof yA>"u"&&!uA)throw new s("intrinsic "+nA+" exists, but is not available. Please file an issue!");return{alias:NA,name:wA,value:yA}}throw new a("intrinsic "+nA+" does not exist!")};N.exports=function(nA,uA){if("string"!=typeof nA||0===nA.length)throw new s("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof uA)throw new s('"allowMissing" argument must be a boolean');if(null===d(/^%?[^%]*%?$/,nA))throw new a("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var wA=function(nA){var uA=D(nA,0,1),wA=D(nA,-1);if("%"===uA&&"%"!==wA)throw new a("invalid intrinsic syntax, expected closing `%`");if("%"===wA&&"%"!==uA)throw new a("invalid intrinsic syntax, expected opening `%`");var NA=[];return Y(nA,H,function(yA,TA,kA,W){NA[NA.length]=kA?Y(W,z,"$1"):TA||yA}),NA}(nA),NA=wA.length>0?wA[0]:"",yA=K("%"+NA+"%",uA),TA=yA.name,kA=yA.value,W=!1,fA=yA.alias;fA&&(NA=fA[0],F(wA,y([0,1],fA)));for(var iA=1,eA=!0;iA=wA.length){var j=h(kA,EA);kA=(eA=!!j)&&"get"in j&&!("originalValue"in j.get)?j.get:kA[EA]}else eA=M(kA,EA),kA=kA[EA];eA&&!W&&(f[TA]=kA)}}return kA}},27296:function(N,A,n){"use strict";var a=n(40210)("%Object.getOwnPropertyDescriptor%",!0);if(a)try{a([],"length")}catch{a=null}N.exports=a},31044:function(N,A,n){"use strict";var a=n(40210)("%Object.defineProperty%",!0),o=function(){if(a)try{return a({},"a",{value:1}),!0}catch{return!1}return!1};o.hasArrayLengthDefineBug=function(){if(!o())return null;try{return 1!==a([],"length",{value:1}).length}catch{return!0}},N.exports=o},28185:function(N){"use strict";var A={foo:{}},n=Object;N.exports=function(){return{__proto__:A}.foo===A.foo&&!({__proto__:null}instanceof n)}},41405:function(N,A,n){"use strict";var u=typeof Symbol<"u"&&Symbol,a=n(55419);N.exports=function(){return"function"==typeof u&&"function"==typeof Symbol&&"symbol"==typeof u("foo")&&"symbol"==typeof Symbol("bar")&&a()}},55419:function(N){"use strict";N.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var n={},u=Symbol("test"),a=Object(u);if("string"==typeof u||"[object Symbol]"!==Object.prototype.toString.call(u)||"[object Symbol]"!==Object.prototype.toString.call(a))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 s=Object.getOwnPropertySymbols(n);if(1!==s.length||s[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}},96410:function(N,A,n){"use strict";var u=n(55419);N.exports=function(){return u()&&!!Symbol.toStringTag}},48824:function(N,A,n){"use strict";var u=Function.prototype.call,a=Object.prototype.hasOwnProperty,o=n(58612);N.exports=o.call(u,a)},60688:function(N,A,n){"use strict";var u=n(27103).Buffer;A._dbcs=c;for(var a=-1,o=-2,s=-10,g=-1e3,h=new Array(256),r=0;r<256;r++)h[r]=a;function c(e,f){if(this.encodingName=e.encodingName,!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var p=e.table();this.decodeTables=[],this.decodeTables[0]=h.slice(0),this.decodeTableSeq=[];for(var v=0;vg)throw new Error("gb18030 decode tables conflict at byte 2");for(var Y=this.decodeTables[g-y[F]],D=129;D<=254;D++){if(Y[D]===a)Y[D]=g-I;else{if(Y[D]===g-I)continue;if(Y[D]>g)throw new Error("gb18030 decode tables conflict at byte 3")}for(var d=this.decodeTables[g-Y[D]],H=48;H<=57;H++)d[H]===a&&(d[H]=o)}}}this.defaultCharUnicode=f.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var z={};if(e.encodeSkipVals)for(v=0;vf)return-1;for(var p=0,v=e.length;p>1);e[S]<=f?p=S:v=S}return p}c.prototype.encoder=Q,c.prototype.decoder=C,c.prototype._getDecodeTrieNode=function(e){for(var f=[];e>0;e>>>=8)f.push(255&e);0==f.length&&f.push(0);for(var p=this.decodeTables[0],v=f.length-1;v>0;v--){var S=p[f[v]];if(S==a)p[f[v]]=g-this.decodeTables.length,this.decodeTables.push(p=h.slice(0));else{if(!(S<=g))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16));p=this.decodeTables[g-S]}}return p},c.prototype._addDecodeChunk=function(e){var f=parseInt(e[0],16),p=this._getDecodeTrieNode(f);f&=255;for(var v=1;v255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+f)},c.prototype._getEncodeBucket=function(e){var f=e>>8;return void 0===this.encodeTable[f]&&(this.encodeTable[f]=h.slice(0)),this.encodeTable[f]},c.prototype._setEncodeChar=function(e,f){var p=this._getEncodeBucket(e),v=255&e;p[v]<=s?this.encodeTableSeq[s-p[v]][-1]=f:p[v]==a&&(p[v]=f)},c.prototype._setEncodeSequence=function(e,f){var I,p=e[0],v=this._getEncodeBucket(p),S=255&p;v[S]<=s?I=this.encodeTableSeq[s-v[S]]:(I={},v[S]!==a&&(I[-1]=v[S]),v[S]=s-this.encodeTableSeq.length,this.encodeTableSeq.push(I));for(var M=1;M=0)this._setEncodeChar(y,F),S=!0;else if(y<=g){var Y=g-y;I[Y]||(this._fillEncodeTable(Y,F<<8>>>0,p)?S=!0:I[Y]=!0)}else y<=s&&(this._setEncodeSequence(this.decodeTableSeq[s-y],F),S=!0)}return S},Q.prototype.write=function(e){for(var f=u.alloc(e.length*(this.gb18030?4:3)),p=this.leadSurrogate,v=this.seqObj,S=-1,I=0,M=0;;){if(-1===S){if(I==e.length)break;var y=e.charCodeAt(I++)}else y=S,S=-1;if(55296<=y&&y<57344)if(y<56320){if(-1===p){p=y;continue}p=y,y=a}else-1!==p?(y=65536+1024*(p-55296)+(y-56320),p=-1):y=a;else-1!==p&&(S=y,y=a,p=-1);var F=a;if(void 0!==v&&y!=a){var Y=v[y];if("object"==typeof Y){v=Y;continue}"number"==typeof Y?F=Y:null==Y&&void 0!==(Y=v[-1])&&(F=Y,S=y),v=void 0}else if(y>=0){var D=this.encodeTable[y>>8];if(void 0!==D&&(F=D[255&y]),F<=s){v=this.encodeTableSeq[s-F];continue}if(F==a&&this.gb18030){var d=w(this.gb18030.uChars,y);if(-1!=d){F=this.gb18030.gbChars[d]+(y-this.gb18030.uChars[d]),f[M++]=129+Math.floor(F/12600),F%=12600,f[M++]=48+Math.floor(F/1260),F%=1260,f[M++]=129+Math.floor(F/10),f[M++]=48+(F%=10);continue}}}F===a&&(F=this.defaultCharSingleByte),F<256?f[M++]=F:F<65536?(f[M++]=F>>8,f[M++]=255&F):F<16777216?(f[M++]=F>>16,f[M++]=F>>8&255,f[M++]=255&F):(f[M++]=F>>>24,f[M++]=F>>>16&255,f[M++]=F>>>8&255,f[M++]=255&F)}return this.seqObj=v,this.leadSurrogate=p,f.slice(0,M)},Q.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var e=u.alloc(10),f=0;if(this.seqObj){var p=this.seqObj[-1];void 0!==p&&(p<256?e[f++]=p:(e[f++]=p>>8,e[f++]=255&p)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(e[f++]=this.defaultCharSingleByte,this.leadSurrogate=-1),e.slice(0,f)}},Q.prototype.findIdx=w,C.prototype.write=function(e){for(var f=u.alloc(2*e.length),p=this.nodeIdx,v=this.prevBytes,S=this.prevBytes.length,I=-this.prevBytes.length,y=0,F=0;y=0?e[y]:v[y+S];if(!((M=this.decodeTables[p][Y])>=0))if(M===a)M=this.defaultCharUnicode.charCodeAt(0),y=I;else if(M===o){if(y>=3)var D=12600*(e[y-3]-129)+1260*(e[y-2]-48)+10*(e[y-1]-129)+(Y-48);else D=12600*(v[y-3+S]-129)+1260*((y-2>=0?e[y-2]:v[y-2+S])-48)+10*((y-1>=0?e[y-1]:v[y-1+S])-129)+(Y-48);var d=w(this.gb18030.gbChars,D);M=this.gb18030.uChars[d]+D-this.gb18030.gbChars[d]}else{if(M<=g){p=g-M;continue}if(!(M<=s))throw new Error("iconv-lite internal error: invalid decoding table value "+M+" at "+p+"/"+Y);for(var H=this.decodeTableSeq[s-M],z=0;z>8;M=H[H.length-1]}if(M>=65536){var aA=55296|(M-=65536)>>10;f[F++]=255&aA,f[F++]=aA>>8,M=56320|1023&M}f[F++]=255&M,f[F++]=M>>8,p=0,I=y+1}return this.nodeIdx=p,this.prevBytes=I>=0?Array.prototype.slice.call(e,I):v.slice(I+S).concat(Array.prototype.slice.call(e)),f.slice(0,F).toString("ucs2")},C.prototype.end=function(){for(var e="";this.prevBytes.length>0;){e+=this.defaultCharUnicode;var f=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,f.length>0&&(e+=this.write(f))}return this.prevBytes=[],this.nodeIdx=0,e}},55990:function(N,A,n){"use strict";N.exports={shiftjis:{type:"_dbcs",table:function(){return n(27014)},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(31532)},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(13336)}},gbk:{type:"_dbcs",table:function(){return n(13336).concat(n(44346))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(13336).concat(n(44346))},gb18030:function(){return n(36258)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(77348)}},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(74284)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(74284).concat(n(63480))},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"}},46934:function(N,A,n){"use strict";for(var u=[n(1025),n(17688),n(91279),n(20758),n(59068),n(20288),n(67018),n(60688),n(55990)],a=0;a>>6),Q[C++]=128+(63&e)):(Q[C++]=224+(e>>>12),Q[C++]=128+(e>>>6&63),Q[C++]=128+(63&e))}return Q.slice(0,C)},E.prototype.end=function(){},r.prototype.write=function(c){for(var Q=this.acc,C=this.contBytes,w=this.accBytes,e="",f=0;f0&&(e+=this.defaultCharUnicode,C=0),p<128?e+=String.fromCharCode(p):p<224?(Q=31&p,C=1,w=1):p<240?(Q=15&p,C=2,w=1):e+=this.defaultCharUnicode):C>0?(Q=Q<<6|63&p,w++,0==--C&&(e+=2===w&&Q<128&&Q>0||3===w&&Q<2048?this.defaultCharUnicode:String.fromCharCode(Q))):e+=this.defaultCharUnicode}return this.acc=Q,this.contBytes=C,this.accBytes=w,e},r.prototype.end=function(){var c=0;return this.contBytes>0&&(c+=this.defaultCharUnicode),c}},59068:function(N,A,n){"use strict";var u=n(27103).Buffer;function a(g,h){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="",r=0;r<128;r++)E+=String.fromCharCode(r);g.chars=E+g.chars}this.decodeBuf=u.from(g.chars,"ucs2");var c=u.alloc(65536,h.defaultCharSingleByte.charCodeAt(0));for(r=0;r?@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"}}},20288:function(N){"use strict";N.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"}},91279:function(N,A,n){"use strict";var u=n(27103).Buffer;function a(){}function o(){}function s(){this.overflowByte=-1}function g(c,Q){this.iconv=Q}function h(c,Q){void 0===(c=c||{}).addBOM&&(c.addBOM=!0),this.encoder=Q.iconv.getEncoder("utf-16le",c)}function E(c,Q){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=c||{},this.iconv=Q.iconv}function r(c,Q){var C=[],w=0,e=0,f=0;A:for(var p=0;p=100)break A}return f>e?"utf-16be":f1114111)&&(w=e),w>=65536){var f=55296|(w-=65536)>>10;Q[C++]=255&f,Q[C++]=f>>8,w=56320|1023&w}return Q[C++]=255&w,Q[C++]=w>>8,C}function h(Q,C){this.iconv=C}function E(Q,C){void 0===(Q=Q||{}).addBOM&&(Q.addBOM=!0),this.encoder=C.iconv.getEncoder(Q.defaultEncoding||"utf-32le",Q)}function r(Q,C){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=Q||{},this.iconv=C.iconv}function c(Q,C){var w=[],e=0,f=0,p=0,v=0,S=0;A:for(var I=0;I16)&&p++,(0!==w[3]||w[2]>16)&&f++,0===w[0]&&0===w[1]&&(0!==w[2]||0!==w[3])&&S++,(0!==w[0]||0!==w[1])&&0===w[2]&&0===w[3]&&v++,w.length=0,++e>=100)break A}return S-p>v-f?"utf-32be":S-p0){for(;C0&&(v=this.iconv.decode(u.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",v},A.utf7imap=w,w.prototype.encoder=e,w.prototype.decoder=f,w.prototype.bomAware=!0,e.prototype.write=function(v){for(var S=this.inBase64,I=this.base64Accum,M=this.base64AccumIdx,y=u.alloc(5*v.length+10),F=0,Y=0;Y0&&(F+=y.write(I.slice(0,M).toString("base64").replace(/\//g,",").replace(/=+$/,""),F),M=0),y[F++]=Q,S=!1),S||(y[F++]=D,D===C&&(y[F++]=Q))):(S||(y[F++]=C,S=!0),S&&(I[M++]=D>>8,I[M++]=255&D,M==I.length&&(F+=y.write(I.toString("base64").replace(/\//g,","),F),M=0)))}return this.inBase64=S,this.base64AccumIdx=M,y.slice(0,F)},e.prototype.end=function(){var v=u.alloc(10),S=0;return this.inBase64&&(this.base64AccumIdx>0&&(S+=v.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),S),this.base64AccumIdx=0),v[S++]=Q,this.inBase64=!1),v.slice(0,S)};var p=E.slice();p[",".charCodeAt(0)]=!0,f.prototype.write=function(v){for(var S="",I=0,M=this.inBase64,y=this.base64Accum,F=0;F0&&(v=this.iconv.decode(u.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",v}},65395:function(N,A){"use strict";function u(o,s){this.encoder=o,this.addBOM=!0}function a(o,s){this.decoder=o,this.pass=!1,this.options=s||{}}A.PrependBOM=u,u.prototype.write=function(o){return this.addBOM&&(o="\ufeff"+o,this.addBOM=!1),this.encoder.write(o)},u.prototype.end=function(){return this.encoder.end()},A.StripBOM=a,a.prototype.write=function(o){var s=this.decoder.write(o);return this.pass||!s||("\ufeff"===s[0]&&(s=s.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),s},a.prototype.end=function(){return this.decoder.end()}},4914:function(N,A,n){"use strict";var s,u=n(27103).Buffer,a=n(65395),o=N.exports;o.encodings=null,o.defaultCharUnicode="\ufffd",o.defaultCharSingleByte="?",o.encode=function(h,E,r){h=""+(h||"");var c=o.getEncoder(E,r),Q=c.write(h),C=c.end();return C&&C.length>0?u.concat([Q,C]):Q},o.decode=function(h,E,r){"string"==typeof h&&(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),h=u.from(""+(h||""),"binary"));var c=o.getDecoder(E,r),Q=c.write(h),C=c.end();return C?Q+C:Q},o.encodingExists=function(h){try{return o.getCodec(h),!0}catch{return!1}},o.toEncoding=o.encode,o.fromEncoding=o.decode,o._codecDataCache={},o.getCodec=function(h){o.encodings||(o.encodings=n(46934));for(var E=o._canonicalizeEncoding(h),r={};;){var c=o._codecDataCache[E];if(c)return c;var Q=o.encodings[E];switch(typeof Q){case"string":E=Q;break;case"object":for(var C in Q)r[C]=Q[C];r.encodingName||(r.encodingName=E),E=Q.type;break;case"function":return r.encodingName||(r.encodingName=E),c=new Q(r,o),o._codecDataCache[r.encodingName]=c,c;default:throw new Error("Encoding not recognized: '"+h+"' (searched as: '"+E+"')")}}},o._canonicalizeEncoding=function(g){return(""+g).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},o.getEncoder=function(h,E){var r=o.getCodec(h),c=new r.encoder(E,r);return r.bomAware&&E&&E.addBOM&&(c=new a.PrependBOM(c,E)),c},o.getDecoder=function(h,E){var r=o.getCodec(h),c=new r.decoder(E,r);return r.bomAware&&!(E&&!1===E.stripBOM)&&(c=new a.StripBOM(c,E)),c},o.enableStreamingAPI=function(h){if(!o.supportsStreams){var E=n(38044)(h);o.IconvLiteEncoderStream=E.IconvLiteEncoderStream,o.IconvLiteDecoderStream=E.IconvLiteDecoderStream,o.encodeStream=function(c,Q){return new o.IconvLiteEncoderStream(o.getEncoder(c,Q),Q)},o.decodeStream=function(c,Q){return new o.IconvLiteDecoderStream(o.getDecoder(c,Q),Q)},o.supportsStreams=!0}};try{s=n(25832)}catch{}s&&s.Transform?o.enableStreamingAPI(s):o.encodeStream=o.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},38044:function(N,A,n){"use strict";var u=n(27103).Buffer;N.exports=function(a){var o=a.Transform;function s(h,E){this.conv=h,(E=E||{}).decodeStrings=!1,o.call(this,E)}function g(h,E){this.conv=h,(E=E||{}).encoding=this.encoding="utf8",o.call(this,E)}return(s.prototype=Object.create(o.prototype,{constructor:{value:s}}))._transform=function(h,E,r){if("string"!=typeof h)return r(new Error("Iconv encoding stream needs strings as its input."));try{var c=this.conv.write(h);c&&c.length&&this.push(c),r()}catch(Q){r(Q)}},s.prototype._flush=function(h){try{var E=this.conv.end();E&&E.length&&this.push(E),h()}catch(r){h(r)}},s.prototype.collect=function(h){var E=[];return this.on("error",h),this.on("data",function(r){E.push(r)}),this.on("end",function(){h(null,u.concat(E))}),this},(g.prototype=Object.create(o.prototype,{constructor:{value:g}}))._transform=function(h,E,r){if(!(u.isBuffer(h)||h instanceof Uint8Array))return r(new Error("Iconv decoding stream needs buffers as its input."));try{var c=this.conv.write(h);c&&c.length&&this.push(c,this.encoding),r()}catch(Q){r(Q)}},g.prototype._flush=function(h){try{var E=this.conv.end();E&&E.length&&this.push(E,this.encoding),h()}catch(r){h(r)}},g.prototype.collect=function(h){var E="";return this.on("error",h),this.on("data",function(r){E+=r}),this.on("end",function(){h(null,E)}),this},{IconvLiteEncoderStream:s,IconvLiteDecoderStream:g}}},80645:function(N,A){A.read=function(n,u,a,o,s){var g,h,E=8*s-o-1,r=(1<>1,Q=-7,C=a?s-1:0,w=a?-1:1,e=n[u+C];for(C+=w,g=e&(1<<-Q)-1,e>>=-Q,Q+=E;Q>0;g=256*g+n[u+C],C+=w,Q-=8);for(h=g&(1<<-Q)-1,g>>=-Q,Q+=o;Q>0;h=256*h+n[u+C],C+=w,Q-=8);if(0===g)g=1-c;else{if(g===r)return h?NaN:1/0*(e?-1:1);h+=Math.pow(2,o),g-=c}return(e?-1:1)*h*Math.pow(2,g-o)},A.write=function(n,u,a,o,s,g){var h,E,r,c=8*g-s-1,Q=(1<>1,w=23===s?Math.pow(2,-24)-Math.pow(2,-77):0,e=o?0:g-1,f=o?1:-1,p=u<0||0===u&&1/u<0?1:0;for(u=Math.abs(u),isNaN(u)||u===1/0?(E=isNaN(u)?1:0,h=Q):(h=Math.floor(Math.log(u)/Math.LN2),u*(r=Math.pow(2,-h))<1&&(h--,r*=2),(u+=h+C>=1?w/r:w*Math.pow(2,1-C))*r>=2&&(h++,r/=2),h+C>=Q?(E=0,h=Q):h+C>=1?(E=(u*r-1)*Math.pow(2,s),h+=C):(E=u*Math.pow(2,C-1)*Math.pow(2,s),h=0));s>=8;n[a+e]=255&E,e+=f,E/=256,s-=8);for(h=h<0;n[a+e]=255&h,e+=f,h/=256,c-=8);n[a+e-f]|=128*p}},35717:function(N){N.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 a=function(){};a.prototype=u.prototype,n.prototype=new a,n.prototype.constructor=n}}},82584:function(N,A,n){"use strict";var u=n(96410)(),o=n(21924)("Object.prototype.toString"),s=function(r){return!(u&&r&&"object"==typeof r&&Symbol.toStringTag in r)&&"[object Arguments]"===o(r)},g=function(r){return!!s(r)||null!==r&&"object"==typeof r&&"number"==typeof r.length&&r.length>=0&&"[object Array]"!==o(r)&&"[object Function]"===o(r.callee)},h=function(){return s(arguments)}();s.isLegacyArguments=g,N.exports=h?s:g},95320:function(N){"use strict";var u,a,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 a}}),a={},n(function(){throw 42},null,u)}catch(S){S!==a&&(n=null)}else n=null;var o=/^\s*class\b/,s=function(I){try{var M=A.call(I);return o.test(M)}catch{return!1}},g=function(I){try{return!s(I)&&(A.call(I),!0)}catch{return!1}},h=Object.prototype.toString,e="function"==typeof Symbol&&!!Symbol.toStringTag,f=!(0 in[,]),p=function(){return!1};if("object"==typeof document){var v=document.all;h.call(v)===h.call(document.all)&&(p=function(I){if((f||!I)&&(typeof I>"u"||"object"==typeof I))try{var M=h.call(I);return("[object HTMLAllCollection]"===M||"[object HTML document.all class]"===M||"[object HTMLCollection]"===M||"[object Object]"===M)&&null==I("")}catch{}return!1})}N.exports=n?function(I){if(p(I))return!0;if(!I||"function"!=typeof I&&"object"!=typeof I)return!1;try{n(I,null,u)}catch(M){if(M!==a)return!1}return!s(I)&&g(I)}:function(I){if(p(I))return!0;if(!I||"function"!=typeof I&&"object"!=typeof I)return!1;if(e)return g(I);if(s(I))return!1;var M=h.call(I);return!("[object Function]"!==M&&"[object GeneratorFunction]"!==M&&!/^\[object HTML/.test(M))&&g(I)}},18923:function(N,A,n){"use strict";var u=Date.prototype.getDay,o=Object.prototype.toString,g=n(96410)();N.exports=function(E){return"object"==typeof E&&null!==E&&(g?function(E){try{return u.call(E),!0}catch{return!1}}(E):"[object Date]"===o.call(E))}},48662:function(N,A,n){"use strict";var E,u=Object.prototype.toString,a=Function.prototype.toString,o=/^\s*(?:function)?\*/,s=n(96410)(),g=Object.getPrototypeOf;N.exports=function(c){if("function"!=typeof c)return!1;if(o.test(a.call(c)))return!0;if(!s)return"[object GeneratorFunction]"===u.call(c);if(!g)return!1;if(typeof E>"u"){var C=function(){if(!s)return!1;try{return Function("return function*() {}")()}catch{}}();E=!!C&&g(C)}return g(c)===E}},98611:function(N){"use strict";N.exports=function(n){return n!=n}},20360:function(N,A,n){"use strict";var u=n(55559),a=n(4289),o=n(98611),s=n(29415),g=n(23194),h=u(s(),Number);a(h,{getPolyfill:s,implementation:o,shim:g}),N.exports=h},29415:function(N,A,n){"use strict";var u=n(98611);N.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:u}},23194:function(N,A,n){"use strict";var u=n(4289),a=n(29415);N.exports=function(){var s=a();return u(Number,{isNaN:s},{isNaN:function(){return Number.isNaN!==s}}),s}},98420:function(N,A,n){"use strict";var o,s,g,h,u=n(21924),a=n(96410)();if(a){o=u("Object.prototype.hasOwnProperty"),s=u("RegExp.prototype.exec"),g={};var E=function(){throw g};h={toString:E,valueOf:E},"symbol"==typeof Symbol.toPrimitive&&(h[Symbol.toPrimitive]=E)}var r=u("Object.prototype.toString"),c=Object.getOwnPropertyDescriptor;N.exports=a?function(w){if(!w||"object"!=typeof w)return!1;var e=c(w,"lastIndex");if(!e||!o(e,"value"))return!1;try{s(w,h)}catch(p){return p===g}}:function(w){return!(!w||"object"!=typeof w&&"function"!=typeof w)&&"[object RegExp]"===r(w)}},85692:function(N,A,n){"use strict";var u=n(86430);N.exports=function(o){return!!u(o)}},24244:function(N){"use strict";var A=function(n){return n!=n};N.exports=function(u,a){return 0===u&&0===a?1/u==1/a:!!(u===a||A(u)&&A(a))}},20609:function(N,A,n){"use strict";var u=n(4289),a=n(55559),o=n(24244),s=n(75624),g=n(52281),h=a(s(),Object);u(h,{getPolyfill:s,implementation:o,shim:g}),N.exports=h},75624:function(N,A,n){"use strict";var u=n(24244);N.exports=function(){return"function"==typeof Object.is?Object.is:u}},52281:function(N,A,n){"use strict";var u=n(75624),a=n(4289);N.exports=function(){var s=u();return a(Object,{is:s},{is:function(){return Object.is!==s}}),s}},18987:function(N,A,n){"use strict";var u;if(!Object.keys){var a=Object.prototype.hasOwnProperty,o=Object.prototype.toString,s=n(21414),g=Object.prototype.propertyIsEnumerable,h=!g.call({toString:null},"toString"),E=g.call(function(){},"prototype"),r=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(e){var f=e.constructor;return f&&f.prototype===e},Q={$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},C=function(){if(typeof window>"u")return!1;for(var e in window)try{if(!Q["$"+e]&&a.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{c(window[e])}catch{return!0}}catch{return!0}return!1}();u=function(f){var p=null!==f&&"object"==typeof f,v="[object Function]"===o.call(f),S=s(f),I=p&&"[object String]"===o.call(f),M=[];if(!p&&!v&&!S)throw new TypeError("Object.keys called on a non-object");var y=E&&v;if(I&&f.length>0&&!a.call(f,0))for(var F=0;F0)for(var Y=0;Y"u"||!C)return c(e);try{return c(e)}catch{return!1}}(f),H=0;H=0&&"[object Function]"===A.call(u.callee)),o}},92837:function(N,A,n){"use strict";var u=n(82215),a=n(55419)(),o=n(21924),s=Object,g=o("Array.prototype.push"),h=o("Object.prototype.propertyIsEnumerable"),E=a?Object.getOwnPropertySymbols:null;N.exports=function(c,Q){if(null==c)throw new TypeError("target must be an object");var C=s(c);if(1===arguments.length)return C;for(var w=1;w>>16&65535|0,h=0;0!==a;){a-=h=a>2e3?2e3:a;do{g=g+(s=s+u[o++]|0)|0}while(--h);s%=65521,g%=65521}return s|g<<16|0}},71619:function(N){"use strict";N.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(N){"use strict";var n=function A(){for(var a,o=[],s=0;s<256;s++){a=s;for(var g=0;g<8;g++)a=1&a?3988292384^a>>>1:a>>>1;o[s]=a}return o}();N.exports=function u(a,o,s,g){var h=n,E=g+s;a^=-1;for(var r=g;r>>8^h[255&(a^o[r])];return-1^a}},30405:function(N,A,n){"use strict";var Dt,u=n(24236),a=n(10342),o=n(66069),s=n(2869),g=n(48898),h=0,c=4,C=0,e=-2,v=-1,y=4,Y=2,D=8,d=9,$=286,nA=30,uA=19,wA=2*$+1,NA=15,yA=3,TA=258,kA=TA+yA+1,fA=42,GA=113,j=666,b=1,rA=2,oA=3,pA=4;function gA(O,qA){return O.msg=g[qA],qA}function CA(O){return(O<<1)-(O>4?9:0)}function DA(O){for(var qA=O.length;--qA>=0;)O[qA]=0}function YA(O){var qA=O.state,et=qA.pending;et>O.avail_out&&(et=O.avail_out),0!==et&&(u.arraySet(O.output,qA.pending_buf,qA.pending_out,et,O.next_out),O.next_out+=et,qA.pending_out+=et,O.total_out+=et,O.avail_out-=et,qA.pending-=et,0===qA.pending&&(qA.pending_out=0))}function zA(O,qA){a._tr_flush_block(O,O.block_start>=0?O.block_start:-1,O.strstart-O.block_start,qA),O.block_start=O.strstart,YA(O.strm)}function IA(O,qA){O.pending_buf[O.pending++]=qA}function jA(O,qA){O.pending_buf[O.pending++]=qA>>>8&255,O.pending_buf[O.pending++]=255&qA}function ut(O,qA,et,MA){var OA=O.avail_in;return OA>MA&&(OA=MA),0===OA?0:(O.avail_in-=OA,u.arraySet(qA,O.input,O.next_in,OA,et),1===O.state.wrap?O.adler=o(O.adler,qA,OA,et):2===O.state.wrap&&(O.adler=s(O.adler,qA,OA,et)),O.next_in+=OA,O.total_in+=OA,OA)}function Ct(O,qA){var OA,st,et=O.max_chain_length,MA=O.strstart,Ut=O.prev_length,xt=O.nice_match,bt=O.strstart>O.w_size-kA?O.strstart-(O.w_size-kA):0,Lt=O.window,an=O.w_mask,Ae=O.prev,Wt=O.strstart+TA,oe=Lt[MA+Ut-1],De=Lt[MA+Ut];O.prev_length>=O.good_match&&(et>>=2),xt>O.lookahead&&(xt=O.lookahead);do{if(Lt[(OA=qA)+Ut]===De&&Lt[OA+Ut-1]===oe&&Lt[OA]===Lt[MA]&&Lt[++OA]===Lt[MA+1]){MA+=2,OA++;do{}while(Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&Lt[++MA]===Lt[++OA]&&MAUt){if(O.match_start=qA,Ut=st,st>=xt)break;oe=Lt[MA+Ut-1],De=Lt[MA+Ut]}}}while((qA=Ae[qA&an])>bt&&0!=--et);return Ut<=O.lookahead?Ut:O.lookahead}function ct(O){var et,MA,OA,st,Ut,qA=O.w_size;do{if(st=O.window_size-O.lookahead-O.strstart,O.strstart>=qA+(qA-kA)){u.arraySet(O.window,O.window,qA,qA,0),O.match_start-=qA,O.strstart-=qA,O.block_start-=qA,et=MA=O.hash_size;do{OA=O.head[--et],O.head[et]=OA>=qA?OA-qA:0}while(--MA);et=MA=qA;do{OA=O.prev[--et],O.prev[et]=OA>=qA?OA-qA:0}while(--MA);st+=qA}if(0===O.strm.avail_in)break;if(MA=ut(O.strm,O.window,O.strstart+O.lookahead,st),O.lookahead+=MA,O.lookahead+O.insert>=yA)for(O.ins_h=O.window[Ut=O.strstart-O.insert],O.ins_h=(O.ins_h<=yA&&(O.ins_h=(O.ins_h<=yA)if(MA=a._tr_tally(O,O.strstart-O.match_start,O.match_length-yA),O.lookahead-=O.match_length,O.match_length<=O.max_lazy_match&&O.lookahead>=yA){O.match_length--;do{O.strstart++,O.ins_h=(O.ins_h<=yA&&(O.ins_h=(O.ins_h<4096)&&(O.match_length=yA-1)),O.prev_length>=yA&&O.match_length<=O.prev_length){OA=O.strstart+O.lookahead-yA,MA=a._tr_tally(O,O.strstart-1-O.prev_match,O.prev_length-yA),O.lookahead-=O.prev_length-1,O.prev_length-=2;do{++O.strstart<=OA&&(O.ins_h=(O.ins_h<15&&(Ut=2,MA-=16),OA<1||OA>d||et!==D||MA<8||MA>15||qA<0||qA>9||st<0||st>y)return gA(O,e);8===MA&&(MA=9);var xt=new vA;return O.state=xt,xt.strm=O,xt.wrap=Ut,xt.gzhead=null,xt.w_bits=MA,xt.w_size=1<O.pending_buf_size-5&&(et=O.pending_buf_size-5);;){if(O.lookahead<=1){if(ct(O),0===O.lookahead&&qA===h)return b;if(0===O.lookahead)break}O.strstart+=O.lookahead,O.lookahead=0;var MA=O.block_start+et;if((0===O.strstart||O.strstart>=MA)&&(O.lookahead=O.strstart-MA,O.strstart=MA,zA(O,!1),0===O.strm.avail_out)||O.strstart-O.block_start>=O.w_size-kA&&(zA(O,!1),0===O.strm.avail_out))return b}return O.insert=0,qA===c?(zA(O,!0),0===O.strm.avail_out?oA:pA):(O.strstart>O.block_start&&zA(O,!1),b)}),new ft(4,4,8,4,Yt),new ft(4,5,16,8,Yt),new ft(4,6,32,32,Yt),new ft(4,4,16,16,KA),new ft(8,16,32,32,KA),new ft(8,16,128,128,KA),new ft(8,32,128,256,KA),new ft(32,128,258,1024,KA),new ft(32,258,258,4096,KA)],A.deflateInit=function hA(O,qA){return L(O,qA,D,15,8,0)},A.deflateInit2=L,A.deflateReset=q,A.deflateResetKeep=gt,A.deflateSetHeader=function J(O,qA){return O&&O.state&&2===O.state.wrap?(O.state.gzhead=qA,C):e},A.deflate=function _(O,qA){var et,MA,OA,st;if(!O||!O.state||qA>5||qA<0)return O?gA(O,e):e;if(MA=O.state,!O.output||!O.input&&0!==O.avail_in||MA.status===j&&qA!==c)return gA(O,0===O.avail_out?-5:e);if(MA.strm=O,et=MA.last_flush,MA.last_flush=qA,MA.status===fA)if(2===MA.wrap)O.adler=0,IA(MA,31),IA(MA,139),IA(MA,8),MA.gzhead?(IA(MA,(MA.gzhead.text?1:0)+(MA.gzhead.hcrc?2:0)+(MA.gzhead.extra?4:0)+(MA.gzhead.name?8:0)+(MA.gzhead.comment?16:0)),IA(MA,255&MA.gzhead.time),IA(MA,MA.gzhead.time>>8&255),IA(MA,MA.gzhead.time>>16&255),IA(MA,MA.gzhead.time>>24&255),IA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),IA(MA,255&MA.gzhead.os),MA.gzhead.extra&&MA.gzhead.extra.length&&(IA(MA,255&MA.gzhead.extra.length),IA(MA,MA.gzhead.extra.length>>8&255)),MA.gzhead.hcrc&&(O.adler=s(O.adler,MA.pending_buf,MA.pending,0)),MA.gzindex=0,MA.status=69):(IA(MA,0),IA(MA,0),IA(MA,0),IA(MA,0),IA(MA,0),IA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),IA(MA,3),MA.status=GA);else{var Ut=D+(MA.w_bits-8<<4)<<8;Ut|=(MA.strategy>=2||MA.level<2?0:MA.level<6?1:6===MA.level?2:3)<<6,0!==MA.strstart&&(Ut|=32),Ut+=31-Ut%31,MA.status=GA,jA(MA,Ut),0!==MA.strstart&&(jA(MA,O.adler>>>16),jA(MA,65535&O.adler)),O.adler=1}if(69===MA.status)if(MA.gzhead.extra){for(OA=MA.pending;MA.gzindex<(65535&MA.gzhead.extra.length)&&(MA.pending!==MA.pending_buf_size||(MA.gzhead.hcrc&&MA.pending>OA&&(O.adler=s(O.adler,MA.pending_buf,MA.pending-OA,OA)),YA(O),OA=MA.pending,MA.pending!==MA.pending_buf_size));)IA(MA,255&MA.gzhead.extra[MA.gzindex]),MA.gzindex++;MA.gzhead.hcrc&&MA.pending>OA&&(O.adler=s(O.adler,MA.pending_buf,MA.pending-OA,OA)),MA.gzindex===MA.gzhead.extra.length&&(MA.gzindex=0,MA.status=73)}else MA.status=73;if(73===MA.status)if(MA.gzhead.name){OA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>OA&&(O.adler=s(O.adler,MA.pending_buf,MA.pending-OA,OA)),YA(O),OA=MA.pending,MA.pending===MA.pending_buf_size)){st=1;break}st=MA.gzindexOA&&(O.adler=s(O.adler,MA.pending_buf,MA.pending-OA,OA)),0===st&&(MA.gzindex=0,MA.status=91)}else MA.status=91;if(91===MA.status)if(MA.gzhead.comment){OA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>OA&&(O.adler=s(O.adler,MA.pending_buf,MA.pending-OA,OA)),YA(O),OA=MA.pending,MA.pending===MA.pending_buf_size)){st=1;break}st=MA.gzindexOA&&(O.adler=s(O.adler,MA.pending_buf,MA.pending-OA,OA)),0===st&&(MA.status=103)}else MA.status=103;if(103===MA.status&&(MA.gzhead.hcrc?(MA.pending+2>MA.pending_buf_size&&YA(O),MA.pending+2<=MA.pending_buf_size&&(IA(MA,255&O.adler),IA(MA,O.adler>>8&255),O.adler=0,MA.status=GA)):MA.status=GA),0!==MA.pending){if(YA(O),0===O.avail_out)return MA.last_flush=-1,C}else if(0===O.avail_in&&CA(qA)<=CA(et)&&qA!==c)return gA(O,-5);if(MA.status===j&&0!==O.avail_in)return gA(O,-5);if(0!==O.avail_in||0!==MA.lookahead||qA!==h&&MA.status!==j){var bt=2===MA.strategy?function Qt(O,qA){for(var et;;){if(0===O.lookahead&&(ct(O),0===O.lookahead)){if(qA===h)return b;break}if(O.match_length=0,et=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++,et&&(zA(O,!1),0===O.strm.avail_out))return b}return O.insert=0,qA===c?(zA(O,!0),0===O.strm.avail_out?oA:pA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?b:rA}(MA,qA):3===MA.strategy?function ZA(O,qA){for(var et,MA,OA,st,Ut=O.window;;){if(O.lookahead<=TA){if(ct(O),O.lookahead<=TA&&qA===h)return b;if(0===O.lookahead)break}if(O.match_length=0,O.lookahead>=yA&&O.strstart>0&&(MA=Ut[OA=O.strstart-1])===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]){st=O.strstart+TA;do{}while(MA===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]&&MA===Ut[++OA]&&OAO.lookahead&&(O.match_length=O.lookahead)}if(O.match_length>=yA?(et=a._tr_tally(O,1,O.match_length-yA),O.lookahead-=O.match_length,O.strstart+=O.match_length,O.match_length=0):(et=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++),et&&(zA(O,!1),0===O.strm.avail_out))return b}return O.insert=0,qA===c?(zA(O,!0),0===O.strm.avail_out?oA:pA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?b:rA}(MA,qA):Dt[MA.level].func(MA,qA);if((bt===oA||bt===pA)&&(MA.status=j),bt===b||bt===oA)return 0===O.avail_out&&(MA.last_flush=-1),C;if(bt===rA&&(1===qA?a._tr_align(MA):5!==qA&&(a._tr_stored_block(MA,0,0,!1),3===qA&&(DA(MA.head),0===MA.lookahead&&(MA.strstart=0,MA.block_start=0,MA.insert=0))),YA(O),0===O.avail_out))return MA.last_flush=-1,C}return qA!==c?C:MA.wrap<=0?1:(2===MA.wrap?(IA(MA,255&O.adler),IA(MA,O.adler>>8&255),IA(MA,O.adler>>16&255),IA(MA,O.adler>>24&255),IA(MA,255&O.total_in),IA(MA,O.total_in>>8&255),IA(MA,O.total_in>>16&255),IA(MA,O.total_in>>24&255)):(jA(MA,O.adler>>>16),jA(MA,65535&O.adler)),YA(O),MA.wrap>0&&(MA.wrap=-MA.wrap),0!==MA.pending?C:1)},A.deflateEnd=function HA(O){var qA;return O&&O.state?(qA=O.state.status)!==fA&&69!==qA&&73!==qA&&91!==qA&&103!==qA&&qA!==GA&&qA!==j?gA(O,e):(O.state=null,qA===GA?gA(O,-3):C):e},A.deflateSetDictionary=function $A(O,qA){var MA,OA,st,Ut,xt,bt,Lt,an,et=qA.length;if(!O||!O.state||2===(Ut=(MA=O.state).wrap)||1===Ut&&MA.status!==fA||MA.lookahead)return e;for(1===Ut&&(O.adler=o(O.adler,qA,et,0)),MA.wrap=0,et>=MA.w_size&&(0===Ut&&(DA(MA.head),MA.strstart=0,MA.block_start=0,MA.insert=0),an=new u.Buf8(MA.w_size),u.arraySet(an,qA,et-MA.w_size,MA.w_size,0),qA=an,et=MA.w_size),xt=O.avail_in,bt=O.next_in,Lt=O.input,O.avail_in=et,O.next_in=0,O.input=qA,ct(MA);MA.lookahead>=yA;){OA=MA.strstart,st=MA.lookahead-(yA-1);do{MA.ins_h=(MA.ins_h<>>=Y=F>>>24,v-=Y,0==(Y=F>>>16&255))K[E++]=65535&F;else{if(!(16&Y)){if(64&Y){if(32&Y){s.mode=12;break A}a.msg="invalid literal/length code",s.mode=30;break A}F=S[(65535&F)+(p&(1<>>=Y,v-=Y),v<15&&(p+=aA[g++]<>>=Y=F>>>24,v-=Y,16&(Y=F>>>16&255)){if(d=65535&F,v<(Y&=15)&&(p+=aA[g++]<Q){a.msg="invalid distance too far back",s.mode=30;break A}if(p>>>=Y,v-=Y,d>(Y=E-r)){if((Y=d-Y)>w&&s.sane){a.msg="invalid distance too far back",s.mode=30;break A}if(H=0,z=f,0===e){if(H+=C-Y,Y2;)K[E++]=z[H++],K[E++]=z[H++],K[E++]=z[H++],D-=3;D&&(K[E++]=z[H++],D>1&&(K[E++]=z[H++]))}else{H=E-d;do{K[E++]=K[H++],K[E++]=K[H++],K[E++]=K[H++],D-=3}while(D>2);D&&(K[E++]=K[H++],D>1&&(K[E++]=K[H++]))}break}if(64&Y){a.msg="invalid distance code",s.mode=30;break A}F=I[(65535&F)+(p&(1<>3)<<3))-1,a.next_in=g-=D,a.next_out=E,a.avail_in=g>>24&255)+(L>>>8&65280)+((65280&L)<<8)+((255&L)<<24)}function ut(){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 Ct(L){var hA;return L&&L.state?(L.total_in=L.total_out=(hA=L.state).total=0,L.msg="",hA.wrap&&(L.adler=1&hA.wrap),hA.mode=y,hA.last=0,hA.havedict=0,hA.dmax=32768,hA.head=null,hA.hold=0,hA.bits=0,hA.lencode=hA.lendyn=new u.Buf32(DA),hA.distcode=hA.distdyn=new u.Buf32(YA),hA.sane=1,hA.back=-1,w):p}function ct(L){var hA;return L&&L.state?((hA=L.state).wsize=0,hA.whave=0,hA.wnext=0,Ct(L)):p}function pt(L,hA){var _,HA;return!L||!L.state||(HA=L.state,hA<0?(_=0,hA=-hA):(_=1+(hA>>4),hA<48&&(hA&=15)),hA&&(hA<8||hA>15))?p:(null!==HA.window&&HA.wbits!==hA&&(HA.window=null),HA.wrap=_,HA.wbits=hA,ct(L))}function Yt(L,hA){var _,HA;return L?(HA=new ut,L.state=HA,HA.window=null,(_=pt(L,hA))!==w&&(L.state=null),_):p}var Qt,ft,ZA=!0;function Dt(L){if(ZA){var hA;for(Qt=new u.Buf32(512),ft=new u.Buf32(32),hA=0;hA<144;)L.lens[hA++]=8;for(;hA<256;)L.lens[hA++]=9;for(;hA<280;)L.lens[hA++]=7;for(;hA<288;)L.lens[hA++]=8;for(g(E,L.lens,0,288,Qt,0,L.work,{bits:9}),hA=0;hA<32;)L.lens[hA++]=5;g(r,L.lens,0,32,ft,0,L.work,{bits:5}),ZA=!1}L.lencode=Qt,L.lenbits=9,L.distcode=ft,L.distbits=5}function Nt(L,hA,_,HA){var $A,O=L.state;return null===O.window&&(O.wsize=1<=O.wsize?(u.arraySet(O.window,hA,_-O.wsize,O.wsize,0),O.wnext=0,O.whave=O.wsize):(($A=O.wsize-O.wnext)>HA&&($A=HA),u.arraySet(O.window,hA,_-HA,$A,O.wnext),(HA-=$A)?(u.arraySet(O.window,hA,_-HA,HA,0),O.wnext=HA,O.whave=O.wsize):(O.wnext+=$A,O.wnext===O.wsize&&(O.wnext=0),O.whave>>8&255,_.check=o(_.check,Re,2,0),OA=0,st=0,_.mode=2;break}if(_.flags=0,_.head&&(_.head.done=!1),!(1&_.wrap)||(((255&OA)<<8)+(OA>>8))%31){L.msg="incorrect header check",_.mode=30;break}if(8!=(15&OA)){L.msg="unknown compression method",_.mode=30;break}if(st-=4,ne=8+(15&(OA>>>=4)),0===_.wbits)_.wbits=ne;else if(ne>_.wbits){L.msg="invalid window size",_.mode=30;break}_.dmax=1<>8&1),512&_.flags&&(Re[0]=255&OA,Re[1]=OA>>>8&255,_.check=o(_.check,Re,2,0)),OA=0,st=0,_.mode=3;case 3:for(;st<32;){if(0===et)break A;et--,OA+=HA[O++]<>>8&255,Re[2]=OA>>>16&255,Re[3]=OA>>>24&255,_.check=o(_.check,Re,4,0)),OA=0,st=0,_.mode=4;case 4:for(;st<16;){if(0===et)break A;et--,OA+=HA[O++]<>8),512&_.flags&&(Re[0]=255&OA,Re[1]=OA>>>8&255,_.check=o(_.check,Re,2,0)),OA=0,st=0,_.mode=5;case 5:if(1024&_.flags){for(;st<16;){if(0===et)break A;et--,OA+=HA[O++]<>>8&255,_.check=o(_.check,Re,2,0)),OA=0,st=0}else _.head&&(_.head.extra=null);_.mode=6;case 6:if(1024&_.flags&&((bt=_.length)>et&&(bt=et),bt&&(_.head&&(ne=_.head.extra_len-_.length,_.head.extra||(_.head.extra=new Array(_.head.extra_len)),u.arraySet(_.head.extra,HA,O,bt,ne)),512&_.flags&&(_.check=o(_.check,HA,bt,O)),et-=bt,O+=bt,_.length-=bt),_.length))break A;_.length=0,_.mode=7;case 7:if(2048&_.flags){if(0===et)break A;bt=0;do{ne=HA[O+bt++],_.head&&ne&&_.length<65536&&(_.head.name+=String.fromCharCode(ne))}while(ne&&bt>9&1,_.head.done=!0),L.adler=_.check=0,_.mode=12;break;case 10:for(;st<32;){if(0===et)break A;et--,OA+=HA[O++]<>>=7&st,st-=7&st,_.mode=27;break}for(;st<3;){if(0===et)break A;et--,OA+=HA[O++]<>>=1)){case 0:_.mode=14;break;case 1:if(Dt(_),_.mode=20,6===hA){OA>>>=2,st-=2;break A}break;case 2:_.mode=17;break;case 3:L.msg="invalid block type",_.mode=30}OA>>>=2,st-=2;break;case 14:for(OA>>>=7&st,st-=7&st;st<32;){if(0===et)break A;et--,OA+=HA[O++]<>>16^65535)){L.msg="invalid stored block lengths",_.mode=30;break}if(_.length=65535&OA,OA=0,st=0,_.mode=15,6===hA)break A;case 15:_.mode=16;case 16:if(bt=_.length){if(bt>et&&(bt=et),bt>MA&&(bt=MA),0===bt)break A;u.arraySet($A,HA,O,bt,qA),et-=bt,O+=bt,MA-=bt,qA+=bt,_.length-=bt;break}_.mode=12;break;case 17:for(;st<14;){if(0===et)break A;et--,OA+=HA[O++]<>>=5)),st-=5,_.ncode=4+(15&(OA>>>=5)),OA>>>=4,st-=4,_.nlen>286||_.ndist>30){L.msg="too many length or distance symbols",_.mode=30;break}_.have=0,_.mode=18;case 18:for(;_.have<_.ncode;){for(;st<3;){if(0===et)break A;et--,OA+=HA[O++]<>>=3,st-=3}for(;_.have<19;)_.lens[Rn[_.have++]]=0;if(_.lencode=_.lendyn,_.lenbits=7,An=g(0,_.lens,0,19,_.lencode,0,_.work,Ze={bits:_.lenbits}),_.lenbits=Ze.bits,An){L.msg="invalid code lengths set",_.mode=30;break}_.have=0,_.mode=19;case 19:for(;_.have<_.nlen+_.ndist;){for(;oe=(Ae=_.lencode[OA&(1<<_.lenbits)-1])>>>16&255,De=65535&Ae,!((Wt=Ae>>>24)<=st);){if(0===et)break A;et--,OA+=HA[O++]<>>=Wt,st-=Wt,_.lens[_.have++]=De;else{if(16===De){for(Ue=Wt+2;st>>=Wt,st-=Wt,0===_.have){L.msg="invalid bit length repeat",_.mode=30;break}ne=_.lens[_.have-1],bt=3+(3&OA),OA>>>=2,st-=2}else if(17===De){for(Ue=Wt+3;st>>=Wt)),OA>>>=3,st-=3}else{for(Ue=Wt+7;st>>=Wt)),OA>>>=7,st-=7}if(_.have+bt>_.nlen+_.ndist){L.msg="invalid bit length repeat",_.mode=30;break}for(;bt--;)_.lens[_.have++]=ne}}if(30===_.mode)break;if(0===_.lens[256]){L.msg="invalid code -- missing end-of-block",_.mode=30;break}if(_.lenbits=9,An=g(E,_.lens,0,_.nlen,_.lencode,0,_.work,Ze={bits:_.lenbits}),_.lenbits=Ze.bits,An){L.msg="invalid literal/lengths set",_.mode=30;break}if(_.distbits=6,_.distcode=_.distdyn,An=g(r,_.lens,_.nlen,_.ndist,_.distcode,0,_.work,Ze={bits:_.distbits}),_.distbits=Ze.bits,An){L.msg="invalid distances set",_.mode=30;break}if(_.mode=20,6===hA)break A;case 20:_.mode=21;case 21:if(et>=6&&MA>=258){L.next_out=qA,L.avail_out=MA,L.next_in=O,L.avail_in=et,_.hold=OA,_.bits=st,s(L,xt),qA=L.next_out,$A=L.output,MA=L.avail_out,O=L.next_in,HA=L.input,et=L.avail_in,OA=_.hold,st=_.bits,12===_.mode&&(_.back=-1);break}for(_.back=0;oe=(Ae=_.lencode[OA&(1<<_.lenbits)-1])>>>16&255,De=65535&Ae,!((Wt=Ae>>>24)<=st);){if(0===et)break A;et--,OA+=HA[O++]<>Ye)])>>>16&255,De=65535&Ae,!(Ye+(Wt=Ae>>>24)<=st);){if(0===et)break A;et--,OA+=HA[O++]<>>=Ye,st-=Ye,_.back+=Ye}if(OA>>>=Wt,st-=Wt,_.back+=Wt,_.length=De,0===oe){_.mode=26;break}if(32&oe){_.back=-1,_.mode=12;break}if(64&oe){L.msg="invalid literal/length code",_.mode=30;break}_.extra=15&oe,_.mode=22;case 22:if(_.extra){for(Ue=_.extra;st>>=_.extra,st-=_.extra,_.back+=_.extra}_.was=_.length,_.mode=23;case 23:for(;oe=(Ae=_.distcode[OA&(1<<_.distbits)-1])>>>16&255,De=65535&Ae,!((Wt=Ae>>>24)<=st);){if(0===et)break A;et--,OA+=HA[O++]<>Ye)])>>>16&255,De=65535&Ae,!(Ye+(Wt=Ae>>>24)<=st);){if(0===et)break A;et--,OA+=HA[O++]<>>=Ye,st-=Ye,_.back+=Ye}if(OA>>>=Wt,st-=Wt,_.back+=Wt,64&oe){L.msg="invalid distance code",_.mode=30;break}_.offset=De,_.extra=15&oe,_.mode=24;case 24:if(_.extra){for(Ue=_.extra;st>>=_.extra,st-=_.extra,_.back+=_.extra}if(_.offset>_.dmax){L.msg="invalid distance too far back",_.mode=30;break}_.mode=25;case 25:if(0===MA)break A;if(_.offset>(bt=xt-MA)){if((bt=_.offset-bt)>_.whave&&_.sane){L.msg="invalid distance too far back",_.mode=30;break}Lt=bt>_.wnext?_.wsize-(bt-=_.wnext):_.wnext-bt,bt>_.length&&(bt=_.length),an=_.window}else an=$A,Lt=qA-_.offset,bt=_.length;bt>MA&&(bt=MA),MA-=bt,_.length-=bt;do{$A[qA++]=an[Lt++]}while(--bt);0===_.length&&(_.mode=21);break;case 26:if(0===MA)break A;$A[qA++]=_.length,MA--,_.mode=21;break;case 27:if(_.wrap){for(;st<32;){if(0===et)break A;et--,OA|=HA[O++]<=1&&0===eA[H];H--);if(z>H&&(z=H),0===H)return S[I++]=20971520,S[I++]=20971520,y.bits=1,0;for(d=1;d0&&(0===e||1!==H))return-1;for(EA[1]=0,Y=1;Y852||2===e&&nA>592)return 1;for(;;){j=Y-K,M[D]iA?(b=mA[GA+M[D]],rA=W[fA+M[D]]):(b=96,rA=0),wA=1<>K)+(NA-=wA)]=j<<24|b<<16|rA|0}while(0!==NA);for(wA=1<>=1;if(0!==wA?(uA&=wA-1,uA+=wA):uA=0,D++,0==--eA[Y]){if(Y===H)break;Y=f[p+M[D]]}if(Y>z&&(uA&TA)!==yA){for(0===K&&(K=z),kA+=d,$=1<<(aA=Y-K);aA+K852||2===e&&nA>592)return 1;S[yA=uA&TA]=z<<24|aA<<16|kA-I|0}}return 0!==uA&&(S[kA+uA]=4194304|Y-K<<24),y.bits=z,0}},48898:function(N){"use strict";N.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"}},10342:function(N,A,n){"use strict";var u=n(24236),o=0,s=1;function h(vA){for(var gt=vA.length;--gt>=0;)vA[gt]=0}var E=0,w=29,e=256,f=e+1+w,p=30,v=19,S=2*f+1,I=15,M=16,y=7,F=256,Y=16,D=17,d=18,H=[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],z=[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],aA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],K=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],nA=new Array(2*(f+2));h(nA);var uA=new Array(2*p);h(uA);var wA=new Array(512);h(wA);var NA=new Array(256);h(NA);var yA=new Array(w);h(yA);var W,fA,iA,TA=new Array(p);function kA(vA,gt,q,J,L){this.static_tree=vA,this.extra_bits=gt,this.extra_base=q,this.elems=J,this.max_length=L,this.has_stree=vA&&vA.length}function eA(vA,gt){this.dyn_tree=vA,this.max_code=0,this.stat_desc=gt}function EA(vA){return vA<256?wA[vA]:wA[256+(vA>>>7)]}function mA(vA,gt){vA.pending_buf[vA.pending++]=255>,vA.pending_buf[vA.pending++]=gt>>>8&255}function GA(vA,gt,q){vA.bi_valid>M-q?(vA.bi_buf|=gt<>M-vA.bi_valid,vA.bi_valid+=q-M):(vA.bi_buf|=gt<>>=1,q<<=1}while(--gt>0);return q>>>1}function pA(vA,gt,q){var hA,_,J=new Array(I+1),L=0;for(hA=1;hA<=I;hA++)J[hA]=L=L+q[hA-1]<<1;for(_=0;_<=gt;_++){var HA=vA[2*_+1];0!==HA&&(vA[2*_]=b(J[HA]++,HA))}}function gA(vA){var gt;for(gt=0;gt8?mA(vA,vA.bi_buf):vA.bi_valid>0&&(vA.pending_buf[vA.pending++]=vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0}function YA(vA,gt,q,J){var L=2*gt,hA=2*q;return vA[L]>1;_>=1;_--)zA(vA,q,_);O=hA;do{_=vA.heap[1],vA.heap[1]=vA.heap[vA.heap_len--],zA(vA,q,1),HA=vA.heap[1],vA.heap[--vA.heap_max]=_,vA.heap[--vA.heap_max]=HA,q[2*O]=q[2*_]+q[2*HA],vA.depth[O]=(vA.depth[_]>=vA.depth[HA]?vA.depth[_]:vA.depth[HA])+1,q[2*_+1]=q[2*HA+1]=O,vA.heap[1]=O++,zA(vA,q,1)}while(vA.heap_len>=2);vA.heap[--vA.heap_max]=vA.heap[1],function oA(vA,gt){var O,qA,et,MA,OA,st,q=gt.dyn_tree,J=gt.max_code,L=gt.stat_desc.static_tree,hA=gt.stat_desc.has_stree,_=gt.stat_desc.extra_bits,HA=gt.stat_desc.extra_base,$A=gt.stat_desc.max_length,Ut=0;for(MA=0;MA<=I;MA++)vA.bl_count[MA]=0;for(q[2*vA.heap[vA.heap_max]+1]=0,O=vA.heap_max+1;O$A&&(MA=$A,Ut++),q[2*qA+1]=MA,!(qA>J)&&(vA.bl_count[MA]++,OA=0,qA>=HA&&(OA=_[qA-HA]),vA.opt_len+=(st=q[2*qA])*(MA+OA),hA&&(vA.static_len+=st*(L[2*qA+1]+OA)));if(0!==Ut){do{for(MA=$A-1;0===vA.bl_count[MA];)MA--;vA.bl_count[MA]--,vA.bl_count[MA+1]+=2,vA.bl_count[$A]--,Ut-=2}while(Ut>0);for(MA=$A;0!==MA;MA--)for(qA=vA.bl_count[MA];0!==qA;)!((et=vA.heap[--O])>J)&&(q[2*et+1]!==MA&&(vA.opt_len+=(MA-q[2*et+1])*q[2*et],q[2*et+1]=MA),qA--)}}(vA,gt),pA(q,$A,vA.bl_count)}function ut(vA,gt,q){var J,hA,L=-1,_=gt[1],HA=0,$A=7,O=4;for(0===_&&($A=138,O=3),gt[2*(q+1)+1]=65535,J=0;J<=q;J++)hA=_,_=gt[2*(J+1)+1],!(++HA<$A&&hA===_)&&(HA>=7;J0?(2===vA.strm.data_type&&(vA.strm.data_type=function Yt(vA){var q,gt=4093624447;for(q=0;q<=31;q++,gt>>>=1)if(1>&&0!==vA.dyn_ltree[2*q])return o;if(0!==vA.dyn_ltree[18]||0!==vA.dyn_ltree[20]||0!==vA.dyn_ltree[26])return s;for(q=32;q=3&&0===vA.bl_tree[2*K[gt]+1];gt--);return vA.opt_len+=3*(gt+1)+5+5+4,gt}(vA),(hA=vA.static_len+3+7>>>3)<=(L=vA.opt_len+3+7>>>3)&&(L=hA)):L=hA=q+5,q+4<=L&&-1!==gt?Qt(vA,gt,q,J):4===vA.strategy||hA===L?(GA(vA,2+(J?1:0),3),IA(vA,nA,uA)):(GA(vA,4+(J?1:0),3),function pt(vA,gt,q,J){var L;for(GA(vA,gt-257,5),GA(vA,q-1,5),GA(vA,J-4,4),L=0;L>>8&255,vA.pending_buf[vA.d_buf+2*vA.last_lit+1]=255>,vA.pending_buf[vA.l_buf+vA.last_lit]=255&q,vA.last_lit++,0===gt?vA.dyn_ltree[2*q]++:(vA.matches++,gt--,vA.dyn_ltree[2*(NA[q]+e+1)]++,vA.dyn_dtree[2*EA(gt)]++),vA.last_lit===vA.lit_bufsize-1},A._tr_align=function ft(vA){GA(vA,2,3),j(vA,F,nA),function rA(vA){16===vA.bi_valid?(mA(vA,vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0):vA.bi_valid>=8&&(vA.pending_buf[vA.pending++]=255&vA.bi_buf,vA.bi_buf>>=8,vA.bi_valid-=8)}(vA)}},62292:function(N){"use strict";N.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}},34155:function(N){var n,u,A=N.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(f){if(n===setTimeout)return setTimeout(f,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(f,0);try{return n(f,0)}catch{try{return n.call(null,f,0)}catch{return n.call(this,f,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch{n=a}try{u="function"==typeof clearTimeout?clearTimeout:o}catch{u=o}}();var r,h=[],E=!1,c=-1;function Q(){!E||!r||(E=!1,r.length?h=r.concat(h):c=-1,h.length&&C())}function C(){if(!E){var f=s(Q);E=!0;for(var p=h.length;p;){for(r=h,h=[];++c1)for(var v=1;v"===oA?($(b,"onsgmldeclaration",b.sgmlDecl),b.sgmlDecl="",b.state=z.TEXT):(Y(oA)&&(b.state=z.SGML_DECL_QUOTED),b.sgmlDecl+=oA);continue;case z.SGML_DECL_QUOTED:oA===b.q&&(b.state=z.SGML_DECL,b.q=""),b.sgmlDecl+=oA;continue;case z.DOCTYPE:">"===oA?(b.state=z.TEXT,$(b,"ondoctype",b.doctype),b.doctype=!0):(b.doctype+=oA,"["===oA?b.state=z.DOCTYPE_DTD:Y(oA)&&(b.state=z.DOCTYPE_QUOTED,b.q=oA));continue;case z.DOCTYPE_QUOTED:b.doctype+=oA,oA===b.q&&(b.q="",b.state=z.DOCTYPE);continue;case z.DOCTYPE_DTD:b.doctype+=oA,"]"===oA?b.state=z.DOCTYPE:Y(oA)&&(b.state=z.DOCTYPE_DTD_QUOTED,b.q=oA);continue;case z.DOCTYPE_DTD_QUOTED:b.doctype+=oA,oA===b.q&&(b.state=z.DOCTYPE_DTD,b.q="");continue;case z.COMMENT:"-"===oA?b.state=z.COMMENT_ENDING:b.comment+=oA;continue;case z.COMMENT_ENDING:"-"===oA?(b.state=z.COMMENT_ENDED,b.comment=uA(b.opt,b.comment),b.comment&&$(b,"oncomment",b.comment),b.comment=""):(b.comment+="-"+oA,b.state=z.COMMENT);continue;case z.COMMENT_ENDED:">"!==oA?(yA(b,"Malformed comment"),b.comment+="--"+oA,b.state=z.COMMENT):b.state=z.TEXT;continue;case z.CDATA:"]"===oA?b.state=z.CDATA_ENDING:b.cdata+=oA;continue;case z.CDATA_ENDING:"]"===oA?b.state=z.CDATA_ENDING_2:(b.cdata+="]"+oA,b.state=z.CDATA);continue;case z.CDATA_ENDING_2:">"===oA?(b.cdata&&$(b,"oncdata",b.cdata),$(b,"onclosecdata"),b.cdata="",b.state=z.TEXT):"]"===oA?b.cdata+="]":(b.cdata+="]]"+oA,b.state=z.CDATA);continue;case z.PROC_INST:"?"===oA?b.state=z.PROC_INST_ENDING:F(oA)?b.state=z.PROC_INST_BODY:b.procInstName+=oA;continue;case z.PROC_INST_BODY:if(!b.procInstBody&&F(oA))continue;"?"===oA?b.state=z.PROC_INST_ENDING:b.procInstBody+=oA;continue;case z.PROC_INST_ENDING:">"===oA?($(b,"onprocessinginstruction",{name:b.procInstName,body:b.procInstBody}),b.procInstName=b.procInstBody="",b.state=z.TEXT):(b.procInstBody+="?"+oA,b.state=z.PROC_INST_BODY);continue;case z.OPEN_TAG:d(I,oA)?b.tagName+=oA:(TA(b),">"===oA?fA(b):"/"===oA?b.state=z.OPEN_TAG_SLASH:(F(oA)||yA(b,"Invalid character in tag name"),b.state=z.ATTRIB));continue;case z.OPEN_TAG_SLASH:">"===oA?(fA(b,!0),iA(b)):(yA(b,"Forward-slash in opening tag not followed by >"),b.state=z.ATTRIB);continue;case z.ATTRIB:if(F(oA))continue;">"===oA?fA(b):"/"===oA?b.state=z.OPEN_TAG_SLASH:d(S,oA)?(b.attribName=oA,b.attribValue="",b.state=z.ATTRIB_NAME):yA(b,"Invalid attribute name");continue;case z.ATTRIB_NAME:"="===oA?b.state=z.ATTRIB_VALUE:">"===oA?(yA(b,"Attribute without value"),b.attribValue=b.attribName,W(b),fA(b)):F(oA)?b.state=z.ATTRIB_NAME_SAW_WHITE:d(I,oA)?b.attribName+=oA:yA(b,"Invalid attribute name");continue;case z.ATTRIB_NAME_SAW_WHITE:if("="===oA)b.state=z.ATTRIB_VALUE;else{if(F(oA))continue;yA(b,"Attribute without value"),b.tag.attributes[b.attribName]="",b.attribValue="",$(b,"onattribute",{name:b.attribName,value:""}),b.attribName="",">"===oA?fA(b):d(S,oA)?(b.attribName=oA,b.state=z.ATTRIB_NAME):(yA(b,"Invalid attribute name"),b.state=z.ATTRIB)}continue;case z.ATTRIB_VALUE:if(F(oA))continue;Y(oA)?(b.q=oA,b.state=z.ATTRIB_VALUE_QUOTED):(yA(b,"Unquoted attribute value"),b.state=z.ATTRIB_VALUE_UNQUOTED,b.attribValue=oA);continue;case z.ATTRIB_VALUE_QUOTED:if(oA!==b.q){"&"===oA?b.state=z.ATTRIB_VALUE_ENTITY_Q:b.attribValue+=oA;continue}W(b),b.q="",b.state=z.ATTRIB_VALUE_CLOSED;continue;case z.ATTRIB_VALUE_CLOSED:F(oA)?b.state=z.ATTRIB:">"===oA?fA(b):"/"===oA?b.state=z.OPEN_TAG_SLASH:d(S,oA)?(yA(b,"No whitespace between attributes"),b.attribName=oA,b.attribValue="",b.state=z.ATTRIB_NAME):yA(b,"Invalid attribute name");continue;case z.ATTRIB_VALUE_UNQUOTED:if(!D(oA)){"&"===oA?b.state=z.ATTRIB_VALUE_ENTITY_U:b.attribValue+=oA;continue}W(b),">"===oA?fA(b):b.state=z.ATTRIB;continue;case z.CLOSE_TAG:if(b.tagName)">"===oA?iA(b):d(I,oA)?b.tagName+=oA:b.script?(b.script+=""===oA?iA(b):yA(b,"Invalid characters in closing tag");continue;case z.TEXT_ENTITY:case z.ATTRIB_VALUE_ENTITY_Q:case z.ATTRIB_VALUE_ENTITY_U:var gA,CA;switch(b.state){case z.TEXT_ENTITY:gA=z.TEXT,CA="textNode";break;case z.ATTRIB_VALUE_ENTITY_Q:gA=z.ATTRIB_VALUE_QUOTED,CA="attribValue";break;case z.ATTRIB_VALUE_ENTITY_U:gA=z.ATTRIB_VALUE_UNQUOTED,CA="attribValue"}if(";"===oA)if(b.opt.unparsedEntities){var DA=eA(b);b.entity="",b.state=gA,b.write(DA)}else b[CA]+=eA(b),b.entity="",b.state=gA;else d(b.entity.length?y:M,oA)?b.entity+=oA:(yA(b,"Invalid character in entity name"),b[CA]+="&"+b.entity+oA,b.entity="",b.state=gA);continue;default:throw new Error(b,"Unknown state: "+b.state)}return b.position>=b.bufferCheckPosition&&function g(j){for(var b=Math.max(a.MAX_BUFFER_LENGTH,10),rA=0,oA=0,pA=o.length;oAb)switch(o[oA]){case"textNode":nA(j);break;case"cdata":$(j,"oncdata",j.cdata),j.cdata="";break;case"script":$(j,"onscript",j.script),j.script="";break;default:wA(j,"Max buffer length exceeded: "+o[oA])}rA=Math.max(rA,xA)}j.bufferCheckPosition=a.MAX_BUFFER_LENGTH-rA+j.position}(b),b},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function E(j){nA(j),""!==j.cdata&&($(j,"oncdata",j.cdata),j.cdata=""),""!==j.script&&($(j,"onscript",j.script),j.script="")}(this)}};try{r=n(42830).Stream}catch{r=function(){}}r||(r=function(){});var c=a.EVENTS.filter(function(j){return"error"!==j&&"end"!==j});function C(j,b){if(!(this instanceof C))return new C(j,b);r.apply(this),this._parser=new s(j,b),this.writable=!0,this.readable=!0;var rA=this;this._parser.onend=function(){rA.emit("end")},this._parser.onerror=function(oA){rA.emit("error",oA),rA._parser.error=null},this._decoder=null,c.forEach(function(oA){Object.defineProperty(rA,"on"+oA,{get:function(){return rA._parser["on"+oA]},set:function(pA){if(!pA)return rA.removeAllListeners(oA),rA._parser["on"+oA]=pA,pA;rA.on(oA,pA)},enumerable:!0,configurable:!1})})}(C.prototype=Object.create(r.prototype,{constructor:{value:C}})).write=function(j){if("function"==typeof u&&"function"==typeof u.isBuffer&&u.isBuffer(j)){if(!this._decoder){var b=n(32553).s;this._decoder=new b("utf8")}j=this._decoder.write(j)}return this._parser.write(j.toString()),this.emit("data",j),!0},C.prototype.end=function(j){return j&&j.length&&this.write(j),this._parser.end(),!0},C.prototype.on=function(j,b){var rA=this;return!rA._parser["on"+j]&&-1!==c.indexOf(j)&&(rA._parser["on"+j]=function(){var oA=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);oA.splice(0,0,j),rA.emit.apply(rA,oA)}),r.prototype.on.call(rA,j,b)};var w="[CDATA[",e="DOCTYPE",f="http://www.w3.org/XML/1998/namespace",p="http://www.w3.org/2000/xmlns/",v={xml:f,xmlns:p},S=/[:_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-]/,M=/[#:_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-]/;function F(j){return" "===j||"\n"===j||"\r"===j||"\t"===j}function Y(j){return'"'===j||"'"===j}function D(j){return">"===j||F(j)}function d(j,b){return j.test(b)}function H(j,b){return!d(j,b)}var j,b,rA,z=0;for(var aA in a.STATE={BEGIN:z++,BEGIN_WHITESPACE:z++,TEXT:z++,TEXT_ENTITY:z++,OPEN_WAKA:z++,SGML_DECL:z++,SGML_DECL_QUOTED:z++,DOCTYPE:z++,DOCTYPE_QUOTED:z++,DOCTYPE_DTD:z++,DOCTYPE_DTD_QUOTED:z++,COMMENT_STARTING:z++,COMMENT:z++,COMMENT_ENDING:z++,COMMENT_ENDED:z++,CDATA:z++,CDATA_ENDING:z++,CDATA_ENDING_2:z++,PROC_INST:z++,PROC_INST_BODY:z++,PROC_INST_ENDING:z++,OPEN_TAG:z++,OPEN_TAG_SLASH:z++,ATTRIB:z++,ATTRIB_NAME:z++,ATTRIB_NAME_SAW_WHITE:z++,ATTRIB_VALUE:z++,ATTRIB_VALUE_QUOTED:z++,ATTRIB_VALUE_CLOSED:z++,ATTRIB_VALUE_UNQUOTED:z++,ATTRIB_VALUE_ENTITY_Q:z++,ATTRIB_VALUE_ENTITY_U:z++,CLOSE_TAG:z++,CLOSE_TAG_SAW_WHITE:z++,SCRIPT:z++,SCRIPT_ENDING:z++},a.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},a.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(a.ENTITIES).forEach(function(j){var b=a.ENTITIES[j],rA="number"==typeof b?String.fromCharCode(b):b;a.ENTITIES[j]=rA}),a.STATE)a.STATE[a.STATE[aA]]=aA;function K(j,b,rA){j[b]&&j[b](rA)}function $(j,b,rA){j.textNode&&nA(j),K(j,b,rA)}function nA(j){j.textNode=uA(j.opt,j.textNode),j.textNode&&K(j,"ontext",j.textNode),j.textNode=""}function uA(j,b){return j.trim&&(b=b.trim()),j.normalize&&(b=b.replace(/\s+/g," ")),b}function wA(j,b){return nA(j),j.trackPosition&&(b+="\nLine: "+j.line+"\nColumn: "+j.column+"\nChar: "+j.c),b=new Error(b),j.error=b,K(j,"onerror",b),j}function NA(j){return j.sawRoot&&!j.closedRoot&&yA(j,"Unclosed root tag"),j.state!==z.BEGIN&&j.state!==z.BEGIN_WHITESPACE&&j.state!==z.TEXT&&wA(j,"Unexpected end"),nA(j),j.c="",j.closed=!0,K(j,"onend"),s.call(j,j.strict,j.opt),j}function yA(j,b){if("object"!=typeof j||!(j instanceof s))throw new Error("bad call to strictFail");j.strict&&wA(j,b)}function TA(j){j.strict||(j.tagName=j.tagName[j.looseCase]());var b=j.tags[j.tags.length-1]||j,rA=j.tag={name:j.tagName,attributes:{}};j.opt.xmlns&&(rA.ns=b.ns),j.attribList.length=0,$(j,"onopentagstart",rA)}function kA(j,b){var oA=j.indexOf(":")<0?["",j]:j.split(":"),pA=oA[0],xA=oA[1];return b&&"xmlns"===j&&(pA="xmlns",xA=""),{prefix:pA,local:xA}}function W(j){if(j.strict||(j.attribName=j.attribName[j.looseCase]()),-1!==j.attribList.indexOf(j.attribName)||j.tag.attributes.hasOwnProperty(j.attribName))j.attribName=j.attribValue="";else{if(j.opt.xmlns){var b=kA(j.attribName,!0),oA=b.local;if("xmlns"===b.prefix)if("xml"===oA&&j.attribValue!==f)yA(j,"xml: prefix must be bound to "+f+"\nActual: "+j.attribValue);else if("xmlns"===oA&&j.attribValue!==p)yA(j,"xmlns: prefix must be bound to "+p+"\nActual: "+j.attribValue);else{var pA=j.tag,xA=j.tags[j.tags.length-1]||j;pA.ns===xA.ns&&(pA.ns=Object.create(xA.ns)),pA.ns[oA]=j.attribValue}j.attribList.push([j.attribName,j.attribValue])}else j.tag.attributes[j.attribName]=j.attribValue,$(j,"onattribute",{name:j.attribName,value:j.attribValue});j.attribName=j.attribValue=""}}function fA(j,b){if(j.opt.xmlns){var rA=j.tag,oA=kA(j.tagName);rA.prefix=oA.prefix,rA.local=oA.local,rA.uri=rA.ns[oA.prefix]||"",rA.prefix&&!rA.uri&&(yA(j,"Unbound namespace prefix: "+JSON.stringify(j.tagName)),rA.uri=oA.prefix),rA.ns&&(j.tags[j.tags.length-1]||j).ns!==rA.ns&&Object.keys(rA.ns).forEach(function(ct){$(j,"onopennamespace",{prefix:ct,uri:rA.ns[ct]})});for(var xA=0,gA=j.attribList.length;xA",j.tagName="",void(j.state=z.SCRIPT);$(j,"onscript",j.script),j.script=""}var b=j.tags.length,rA=j.tagName;j.strict||(rA=rA[j.looseCase]());for(var oA=rA;b--&&j.tags[b].name!==oA;)yA(j,"Unexpected close tag");if(b<0)return yA(j,"Unmatched closing tag: "+j.tagName),j.textNode+="",void(j.state=z.TEXT);j.tagName=rA;for(var xA=j.tags.length;xA-- >b;){var gA=j.tag=j.tags.pop();j.tagName=j.tag.name,$(j,"onclosetag",j.tagName);var CA={};for(var DA in gA.ns)CA[DA]=gA.ns[DA];j.opt.xmlns&&gA.ns!==(j.tags[j.tags.length-1]||j).ns&&Object.keys(gA.ns).forEach(function(zA){$(j,"onclosenamespace",{prefix:zA,uri:gA.ns[zA]})})}0===b&&(j.closedRoot=!0),j.tagName=j.attribValue=j.attribName="",j.attribList.length=0,j.state=z.TEXT}function eA(j){var oA,b=j.entity,rA=b.toLowerCase(),pA="";return j.ENTITIES[b]?j.ENTITIES[b]:j.ENTITIES[rA]?j.ENTITIES[rA]:("#"===(b=rA).charAt(0)&&("x"===b.charAt(1)?(b=b.slice(2),pA=(oA=parseInt(b,16)).toString(16)):(b=b.slice(1),pA=(oA=parseInt(b,10)).toString(10))),b=b.replace(/^0+/,""),isNaN(oA)||pA.toLowerCase()!==b?(yA(j,"Invalid character entity"),"&"+j.entity+";"):String.fromCodePoint(oA))}function EA(j,b){"<"===b?(j.state=z.OPEN_WAKA,j.startTagPosition=j.position):F(b)||(yA(j,"Non-whitespace before first tag."),j.textNode=b,j.state=z.TEXT)}function mA(j,b){var rA="";return b1114111||b(zA)!==zA)throw RangeError("Invalid code point: "+zA);zA<=65535?pA.push(zA):pA.push(55296+((zA-=65536)>>10),zA%1024+56320),(CA+1===DA||pA.length>16384)&&(YA+=j.apply(null,pA),pA.length=0)}return YA},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:rA,configurable:!0,writable:!0}):String.fromCodePoint=rA)}(A)},67771:function(N,A,n){"use strict";var u=n(40210),a=n(12296),o=n(31044)(),s=n(27296),g=u("%TypeError%"),h=u("%Math.floor%");N.exports=function(r,c){if("function"!=typeof r)throw new g("`fn` is not a function");if("number"!=typeof c||c<0||c>4294967295||h(c)!==c)throw new g("`length` must be a positive 32-bit integer");var Q=arguments.length>2&&!!arguments[2],C=!0,w=!0;if("length"in r&&s){var e=s(r,"length");e&&!e.configurable&&(C=!1),e&&!e.writable&&(w=!1)}return(C||w||!Q)&&(o?a(r,"length",c,!0,!0):a(r,"length",c)),r}},58052:function(N,A,n){"use strict";var u=n(12296),a=n(31044)(),o=n(25972).functionsHaveConfigurableNames(),s=TypeError;N.exports=function(h,E){if("function"!=typeof h)throw new s("`fn` is not a function");return(!(arguments.length>2&&arguments[2])||o)&&(a?u(h,"name",E,!0,!0):u(h,"name",E)),h}},42830:function(N,A,n){N.exports=o;var u=n(17187).EventEmitter;function o(){u.call(this)}n(35717)(o,u),o.Readable=n(56577),o.Writable=n(20323),o.Duplex=n(68656),o.Transform=n(94473),o.PassThrough=n(2366),o.finished=n(81086),o.pipeline=n(56472),o.Stream=o,o.prototype.pipe=function(s,g){var h=this;function E(f){s.writable&&!1===s.write(f)&&h.pause&&h.pause()}function r(){h.readable&&h.resume&&h.resume()}h.on("data",E),s.on("drain",r),!s._isStdio&&(!g||!1!==g.end)&&(h.on("end",Q),h.on("close",C));var c=!1;function Q(){c||(c=!0,s.end())}function C(){c||(c=!0,"function"==typeof s.destroy&&s.destroy())}function w(f){if(e(),0===u.listenerCount(this,"error"))throw f}function e(){h.removeListener("data",E),s.removeListener("drain",r),h.removeListener("end",Q),h.removeListener("close",C),h.removeListener("error",w),s.removeListener("error",w),h.removeListener("end",e),h.removeListener("close",e),s.removeListener("close",e)}return h.on("error",w),s.on("error",w),h.on("end",e),h.on("close",e),s.on("close",e),s.emit("pipe",h),s}},58106:function(N){"use strict";var n={};function u(h,E,r){r||(r=Error);var Q=function(C){function w(e,f,p){return C.call(this,function c(C,w,e){return"string"==typeof E?E:E(C,w,e)}(e,f,p))||this}return function A(h,E){h.prototype=Object.create(E.prototype),h.prototype.constructor=h,h.__proto__=E}(w,C),w}(r);Q.prototype.name=r.name,Q.prototype.code=h,n[h]=Q}function a(h,E){if(Array.isArray(h)){var r=h.length;return h=h.map(function(c){return String(c)}),r>2?"one of ".concat(E," ").concat(h.slice(0,r-1).join(", "),", or ")+h[r-1]:2===r?"one of ".concat(E," ").concat(h[0]," or ").concat(h[1]):"of ".concat(E," ").concat(h[0])}return"of ".concat(E," ").concat(String(h))}u("ERR_INVALID_OPT_VALUE",function(h,E){return'The value "'+E+'" is invalid for option "'+h+'"'},TypeError),u("ERR_INVALID_ARG_TYPE",function(h,E,r){var c,Q;if("string"==typeof E&&function o(h,E,r){return h.substr(!r||r<0?0:+r,E.length)===E}(E,"not ")?(c="must not be",E=E.replace(/^not /,"")):c="must be",function s(h,E,r){return(void 0===r||r>h.length)&&(r=h.length),h.substring(r-E.length,r)===E}(h," argument"))Q="The ".concat(h," ").concat(c," ").concat(a(E,"type"));else{var C=function g(h,E,r){return"number"!=typeof r&&(r=0),!(r+E.length>h.length)&&-1!==h.indexOf(E,r)}(h,".")?"property":"argument";Q='The "'.concat(h,'" ').concat(C," ").concat(c," ").concat(a(E,"type"))}return Q+". Received type ".concat(typeof r)},TypeError),u("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),u("ERR_METHOD_NOT_IMPLEMENTED",function(h){return"The "+h+" method is not implemented"}),u("ERR_STREAM_PREMATURE_CLOSE","Premature close"),u("ERR_STREAM_DESTROYED",function(h){return"Cannot call "+h+" 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(h){return"Unknown encoding: "+h},TypeError),u("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),N.exports.q=n},68656:function(N,A,n){"use strict";var u=n(34155),a=Object.keys||function(C){var w=[];for(var e in C)w.push(e);return w};N.exports=r;var o=n(56577),s=n(20323);n(35717)(r,o);for(var g=a(s.prototype),h=0;h0)if("string"!=typeof CA&&!IA.objectMode&&Object.getPrototypeOf(CA)!==h.prototype&&(CA=function r(gA){return h.from(gA)}(CA)),YA)IA.endEmitted?d(gA,new y):nA(gA,IA,CA,!0);else if(IA.ended)d(gA,new I);else{if(IA.destroyed)return!1;IA.reading=!1,IA.decoder&&!DA?(CA=IA.decoder.write(CA),IA.objectMode||0!==CA.length?nA(gA,IA,CA,!1):fA(gA,IA)):nA(gA,IA,CA,!1)}else YA||(IA.reading=!1,fA(gA,IA));return!IA.ended&&(IA.lengthCA.highWaterMark&&(CA.highWaterMark=function NA(gA){return gA>=wA?gA=wA:(gA--,gA|=gA>>>1,gA|=gA>>>2,gA|=gA>>>4,gA|=gA>>>8,gA|=gA>>>16,gA++),gA}(gA)),gA<=CA.length?gA:CA.ended?CA.length:(CA.needReadable=!0,0))}function kA(gA){var CA=gA._readableState;C("emitReadable",CA.needReadable,CA.emittedReadable),CA.needReadable=!1,CA.emittedReadable||(C("emitReadable",CA.flowing),CA.emittedReadable=!0,u.nextTick(W,gA))}function W(gA){var CA=gA._readableState;C("emitReadable_",CA.destroyed,CA.length,CA.ended),!CA.destroyed&&(CA.length||CA.ended)&&(gA.emit("readable"),CA.emittedReadable=!1),CA.needReadable=!CA.flowing&&!CA.ended&&CA.length<=CA.highWaterMark,b(gA)}function fA(gA,CA){CA.readingMore||(CA.readingMore=!0,u.nextTick(iA,gA,CA))}function iA(gA,CA){for(;!CA.reading&&!CA.ended&&(CA.length0,CA.resumeScheduled&&!CA.paused?CA.flowing=!0:gA.listenerCount("data")>0&&gA.resume()}function mA(gA){C("readable nexttick read 0"),gA.read(0)}function j(gA,CA){C("resume",CA.reading),CA.reading||gA.read(0),CA.resumeScheduled=!1,gA.emit("resume"),b(gA),CA.flowing&&!CA.reading&&gA.read(0)}function b(gA){var CA=gA._readableState;for(C("flow",CA.flowing);CA.flowing&&null!==gA.read(););}function rA(gA,CA){return 0===CA.length?null:(CA.objectMode?DA=CA.buffer.shift():!gA||gA>=CA.length?(DA=CA.decoder?CA.buffer.join(""):1===CA.buffer.length?CA.buffer.first():CA.buffer.concat(CA.length),CA.buffer.clear()):DA=CA.buffer.consume(gA,CA.decoder),DA);var DA}function oA(gA){var CA=gA._readableState;C("endReadable",CA.endEmitted),CA.endEmitted||(CA.ended=!0,u.nextTick(pA,CA,gA))}function pA(gA,CA){if(C("endReadableNT",gA.endEmitted,gA.length),!gA.endEmitted&&0===gA.length&&(gA.endEmitted=!0,CA.readable=!1,CA.emit("end"),gA.autoDestroy)){var DA=CA._writableState;(!DA||DA.autoDestroy&&DA.finished)&&CA.destroy()}}function xA(gA,CA){for(var DA=0,YA=gA.length;DA=CA.highWaterMark:CA.length>0)||CA.ended))return C("read: emitReadable",CA.length,CA.ended),0===CA.length&&CA.ended?oA(this):kA(this),null;if(0===(gA=yA(gA,CA))&&CA.ended)return 0===CA.length&&oA(this),null;var zA,YA=CA.needReadable;return C("need readable",YA),(0===CA.length||CA.length-gA0?rA(gA,CA):null)?(CA.needReadable=CA.length<=CA.highWaterMark,gA=0):(CA.length-=gA,CA.awaitDrain=0),0===CA.length&&(CA.ended||(CA.needReadable=!0),DA!==gA&&CA.ended&&oA(this)),null!==zA&&this.emit("data",zA),zA},K.prototype._read=function(gA){d(this,new M("_read()"))},K.prototype.pipe=function(gA,CA){var DA=this,YA=this._readableState;switch(YA.pipesCount){case 0:YA.pipes=gA;break;case 1:YA.pipes=[YA.pipes,gA];break;default:YA.pipes.push(gA)}YA.pipesCount+=1,C("pipe count=%d opts=%j",YA.pipesCount,CA);var IA=CA&&!1===CA.end||gA===u.stdout||gA===u.stderr?ft:ut;function jA(Dt,Nt){C("onunpipe"),Dt===DA&&Nt&&!1===Nt.hasUnpiped&&(Nt.hasUnpiped=!0,function pt(){C("cleanup"),gA.removeListener("close",ZA),gA.removeListener("finish",Qt),gA.removeListener("drain",Ct),gA.removeListener("error",KA),gA.removeListener("unpipe",jA),DA.removeListener("end",ut),DA.removeListener("end",ft),DA.removeListener("data",Yt),ct=!0,YA.awaitDrain&&(!gA._writableState||gA._writableState.needDrain)&&Ct()}())}function ut(){C("onend"),gA.end()}YA.endEmitted?u.nextTick(IA):DA.once("end",IA),gA.on("unpipe",jA);var Ct=function eA(gA){return function(){var DA=gA._readableState;C("pipeOnDrain",DA.awaitDrain),DA.awaitDrain&&DA.awaitDrain--,0===DA.awaitDrain&&s(gA,"data")&&(DA.flowing=!0,b(gA))}}(DA);gA.on("drain",Ct);var ct=!1;function Yt(Dt){C("ondata");var Nt=gA.write(Dt);C("dest.write",Nt),!1===Nt&&((1===YA.pipesCount&&YA.pipes===gA||YA.pipesCount>1&&-1!==xA(YA.pipes,gA))&&!ct&&(C("false write response, pause",YA.awaitDrain),YA.awaitDrain++),DA.pause())}function KA(Dt){C("onerror",Dt),ft(),gA.removeListener("error",KA),0===s(gA,"error")&&d(gA,Dt)}function ZA(){gA.removeListener("finish",Qt),ft()}function Qt(){C("onfinish"),gA.removeListener("close",ZA),ft()}function ft(){C("unpipe"),DA.unpipe(gA)}return DA.on("data",Yt),function z(gA,CA,DA){if("function"==typeof gA.prependListener)return gA.prependListener(CA,DA);gA._events&&gA._events[CA]?Array.isArray(gA._events[CA])?gA._events[CA].unshift(DA):gA._events[CA]=[DA,gA._events[CA]]:gA.on(CA,DA)}(gA,"error",KA),gA.once("close",ZA),gA.once("finish",Qt),gA.emit("pipe",DA),YA.flowing||(C("pipe resume"),DA.resume()),gA},K.prototype.unpipe=function(gA){var CA=this._readableState,DA={hasUnpiped:!1};if(0===CA.pipesCount)return this;if(1===CA.pipesCount)return gA&&gA!==CA.pipes||(gA||(gA=CA.pipes),CA.pipes=null,CA.pipesCount=0,CA.flowing=!1,gA&&gA.emit("unpipe",this,DA)),this;if(!gA){var YA=CA.pipes,zA=CA.pipesCount;CA.pipes=null,CA.pipesCount=0,CA.flowing=!1;for(var IA=0;IA0,!1!==YA.flowing&&this.resume()):"readable"===gA&&!YA.endEmitted&&!YA.readableListening&&(YA.readableListening=YA.needReadable=!0,YA.flowing=!1,YA.emittedReadable=!1,C("on readable",YA.length,YA.reading),YA.length?kA(this):YA.reading||u.nextTick(mA,this)),DA},K.prototype.removeListener=function(gA,CA){var DA=g.prototype.removeListener.call(this,gA,CA);return"readable"===gA&&u.nextTick(EA,this),DA},K.prototype.removeAllListeners=function(gA){var CA=g.prototype.removeAllListeners.apply(this,arguments);return("readable"===gA||void 0===gA)&&u.nextTick(EA,this),CA},K.prototype.resume=function(){var gA=this._readableState;return gA.flowing||(C("resume"),gA.flowing=!gA.readableListening,function GA(gA,CA){CA.resumeScheduled||(CA.resumeScheduled=!0,u.nextTick(j,gA,CA))}(this,gA)),gA.paused=!1,this},K.prototype.pause=function(){return C("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(C("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},K.prototype.wrap=function(gA){var CA=this,DA=this._readableState,YA=!1;for(var zA in gA.on("end",function(){if(C("wrapped end"),DA.decoder&&!DA.ended){var jA=DA.decoder.end();jA&&jA.length&&CA.push(jA)}CA.push(null)}),gA.on("data",function(jA){C("wrapped data"),DA.decoder&&(jA=DA.decoder.write(jA)),DA.objectMode&&null==jA||!(DA.objectMode||jA&&jA.length)||CA.push(jA)||(YA=!0,gA.pause())}),gA)void 0===this[zA]&&"function"==typeof gA[zA]&&(this[zA]=function(ut){return function(){return gA[ut].apply(gA,arguments)}}(zA));for(var IA=0;IA-1))throw new Y(rA);return this._writableState.defaultEncoding=rA,this},Object.defineProperty(aA.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(aA.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),aA.prototype._write=function(b,rA,oA){oA(new v("_write()"))},aA.prototype._writev=null,aA.prototype.end=function(b,rA,oA){var pA=this._writableState;return"function"==typeof b?(oA=b,b=null,rA=null):"function"==typeof rA&&(oA=rA,rA=null),null!=b&&this.write(b,rA),pA.corked&&(pA.corked=1,this.uncork()),pA.ending||function GA(b,rA,oA){rA.ending=!0,mA(b,rA),oA&&(rA.finished?u.nextTick(oA):b.once("finish",oA)),rA.ended=!0,b.writable=!1}(this,pA,oA),this},Object.defineProperty(aA.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(aA.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(rA){this._writableState&&(this._writableState.destroyed=rA)}}),aA.prototype.destroy=C.destroy,aA.prototype._undestroy=C.undestroy,aA.prototype._destroy=function(b,rA){rA(b)}},20828:function(N,A,n){"use strict";var a,u=n(34155);function o(F,Y,D){return(Y=function s(F){var Y=function g(F,Y){if("object"!=typeof F||null===F)return F;var D=F[Symbol.toPrimitive];if(void 0!==D){var d=D.call(F,Y||"default");if("object"!=typeof d)return d;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===Y?String:Number)(F)}(F,"string");return"symbol"==typeof Y?Y:String(Y)}(Y))in F?Object.defineProperty(F,Y,{value:D,enumerable:!0,configurable:!0,writable:!0}):F[Y]=D,F}var h=n(81086),E=Symbol("lastResolve"),r=Symbol("lastReject"),c=Symbol("error"),Q=Symbol("ended"),C=Symbol("lastPromise"),w=Symbol("handlePromise"),e=Symbol("stream");function f(F,Y){return{value:F,done:Y}}function p(F){var Y=F[E];if(null!==Y){var D=F[e].read();null!==D&&(F[C]=null,F[E]=null,F[r]=null,Y(f(D,!1)))}}function v(F){u.nextTick(p,F)}var I=Object.getPrototypeOf(function(){}),M=Object.setPrototypeOf((o(a={get stream(){return this[e]},next:function(){var Y=this,D=this[c];if(null!==D)return Promise.reject(D);if(this[Q])return Promise.resolve(f(void 0,!0));if(this[e].destroyed)return new Promise(function(aA,K){u.nextTick(function(){Y[c]?K(Y[c]):aA(f(void 0,!0))})});var H,d=this[C];if(d)H=new Promise(function S(F,Y){return function(D,d){F.then(function(){Y[Q]?D(f(void 0,!0)):Y[w](D,d)},d)}}(d,this));else{var z=this[e].read();if(null!==z)return Promise.resolve(f(z,!1));H=new Promise(this[w])}return this[C]=H,H}},Symbol.asyncIterator,function(){return this}),o(a,"return",function(){var Y=this;return new Promise(function(D,d){Y[e].destroy(null,function(H){H?d(H):D(f(void 0,!0))})})}),a),I);N.exports=function(Y){var D,d=Object.create(M,(o(D={},e,{value:Y,writable:!0}),o(D,E,{value:null,writable:!0}),o(D,r,{value:null,writable:!0}),o(D,c,{value:null,writable:!0}),o(D,Q,{value:Y._readableState.endEmitted,writable:!0}),o(D,w,{value:function(z,aA){var K=d[e].read();K?(d[C]=null,d[E]=null,d[r]=null,z(f(K,!1))):(d[E]=z,d[r]=aA)},writable:!0}),D));return d[C]=null,h(Y,function(H){if(H&&"ERR_STREAM_PREMATURE_CLOSE"!==H.code){var z=d[r];return null!==z&&(d[C]=null,d[E]=null,d[r]=null,z(H)),void(d[c]=H)}var aA=d[E];null!==aA&&(d[C]=null,d[E]=null,d[r]=null,aA(f(void 0,!0))),d[Q]=!0}),Y.on("readable",v.bind(null,d)),d}},71029:function(N,A,n){"use strict";var u=n(34155);function o(r,c){h(r,c),s(r)}function s(r){r._writableState&&!r._writableState.emitClose||r._readableState&&!r._readableState.emitClose||r.emit("close")}function h(r,c){r.emit("error",c)}N.exports={destroy:function a(r,c){var Q=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(c?c(r):r&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,u.nextTick(h,this,r)):u.nextTick(h,this,r)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(r||null,function(e){!c&&e?Q._writableState?Q._writableState.errorEmitted?u.nextTick(s,Q):(Q._writableState.errorEmitted=!0,u.nextTick(o,Q,e)):u.nextTick(o,Q,e):c?(u.nextTick(s,Q),c(e)):u.nextTick(s,Q)}),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(r,c){var Q=r._readableState,C=r._writableState;Q&&Q.autoDestroy||C&&C.autoDestroy?r.destroy(c):r.emit("error",c)}}},81086:function(N,A,n){"use strict";var u=n(58106).q.ERR_STREAM_PREMATURE_CLOSE;function o(){}N.exports=function g(h,E,r){if("function"==typeof E)return g(h,null,E);E||(E={}),r=function a(h){var E=!1;return function(){if(!E){E=!0;for(var r=arguments.length,c=new Array(r),Q=0;Q0,function(D){S||(S=D),D&&I.forEach(c),!F&&(I.forEach(c),v(S))})});return f.reduce(Q)}},30094:function(N,A,n){"use strict";var u=n(58106).q.ERR_INVALID_OPT_VALUE;N.exports={getHighWaterMark:function o(s,g,h,E){var r=function a(s,g,h){return null!=s.highWaterMark?s.highWaterMark:g?s[h]:null}(g,E,h);if(null!=r){if(!isFinite(r)||Math.floor(r)!==r||r<0)throw new u(E?h:"highWaterMark",r);return Math.floor(r)}return s.objectMode?16:16384}}},83194:function(N,A,n){N.exports=n(17187).EventEmitter},76308:function(N,A,n){var u,o;void 0!==(o="function"==typeof(u=function(){"use strict";function g(C,w,e){var f=new XMLHttpRequest;f.open("GET",C),f.responseType="blob",f.onload=function(){Q(f.response,w,e)},f.onerror=function(){console.error("could not download file")},f.send()}function h(C){var w=new XMLHttpRequest;w.open("HEAD",C,!1);try{w.send()}catch{}return 200<=w.status&&299>=w.status}function E(C){try{C.dispatchEvent(new MouseEvent("click"))}catch{var w=document.createEvent("MouseEvents");w.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),C.dispatchEvent(w)}}var r="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,c=r.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),Q=r.saveAs||("object"!=typeof window||window!==r?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!c?function(C,w,e){var f=r.URL||r.webkitURL,p=document.createElement("a");p.download=w=w||C.name||"download",p.rel="noopener","string"==typeof C?(p.href=C,p.origin===location.origin?E(p):h(p.href)?g(C,w,e):E(p,p.target="_blank")):(p.href=f.createObjectURL(C),setTimeout(function(){f.revokeObjectURL(p.href)},4e4),setTimeout(function(){E(p)},0))}:"msSaveOrOpenBlob"in navigator?function(C,w,e){if(w=w||C.name||"download","string"!=typeof C)navigator.msSaveOrOpenBlob(function s(C,w){return typeof w>"u"?w={autoBom:!1}:"object"!=typeof w&&(console.warn("Deprecated: Expected third argument to be a object"),w={autoBom:!w}),w.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(C.type)?new Blob(["\ufeff",C],{type:C.type}):C}(C,e),w);else if(h(C))g(C,w,e);else{var f=document.createElement("a");f.href=C,f.target="_blank",setTimeout(function(){E(f)})}}:function(C,w,e,f){if((f=f||open("","_blank"))&&(f.document.title=f.document.body.innerText="downloading..."),"string"==typeof C)return g(C,w,e);var p="application/octet-stream"===C.type,v=/constructor/i.test(r.HTMLElement)||r.safari,S=/CriOS\/[\d]+/.test(navigator.userAgent);if((S||p&&v||c)&&typeof FileReader<"u"){var I=new FileReader;I.onloadend=function(){var F=I.result;F=S?F:F.replace(/^data:[^;]*;/,"data:attachment/file;"),f?f.location.href=F:location=F,f=null},I.readAsDataURL(C)}else{var M=r.URL||r.webkitURL,y=M.createObjectURL(C);f?f.location=y:location.href=y,f=null,setTimeout(function(){M.revokeObjectURL(y)},4e4)}});r.saveAs=Q.saveAs=Q,N.exports=Q})?u.apply(A,[]):u)&&(N.exports=o)},32553:function(N,A,n){"use strict";var u=n(84559).Buffer,a=u.isEncoding||function(I){switch((I=""+I)&&I.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(I){var M;switch(this.encoding=function s(I){var M=function o(I){if(!I)return"utf8";for(var M;;)switch(I){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 I;default:if(M)return;I=(""+I).toLowerCase(),M=!0}}(I);if("string"!=typeof M&&(u.isEncoding===a||!a(I)))throw new Error("Unknown encoding: "+I);return M||I}(I),this.encoding){case"utf16le":this.text=w,this.end=e,M=4;break;case"utf8":this.fillLast=c,M=4;break;case"base64":this.text=f,this.end=p,M=3;break;default:return this.write=v,void(this.end=S)}this.lastNeed=0,this.lastTotal=0,this.lastChar=u.allocUnsafe(M)}function h(I){return I<=127?0:I>>5==6?2:I>>4==14?3:I>>3==30?4:I>>6==2?-1:-2}function c(I){var M=this.lastTotal-this.lastNeed,y=function r(I,M,y){if(128!=(192&M[0]))return I.lastNeed=0,"\ufffd";if(I.lastNeed>1&&M.length>1){if(128!=(192&M[1]))return I.lastNeed=1,"\ufffd";if(I.lastNeed>2&&M.length>2&&128!=(192&M[2]))return I.lastNeed=2,"\ufffd"}}(this,I);return void 0!==y?y:this.lastNeed<=I.length?(I.copy(this.lastChar,M,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(I.copy(this.lastChar,M,0,I.length),void(this.lastNeed-=I.length))}function w(I,M){if((I.length-M)%2==0){var y=I.toString("utf16le",M);if(y){var F=y.charCodeAt(y.length-1);if(F>=55296&&F<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=I[I.length-2],this.lastChar[1]=I[I.length-1],y.slice(0,-1)}return y}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=I[I.length-1],I.toString("utf16le",M,I.length-1)}function e(I){var M=I&&I.length?this.write(I):"";return this.lastNeed?M+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):M}function f(I,M){var y=(I.length-M)%3;return 0===y?I.toString("base64",M):(this.lastNeed=3-y,this.lastTotal=3,1===y?this.lastChar[0]=I[I.length-1]:(this.lastChar[0]=I[I.length-2],this.lastChar[1]=I[I.length-1]),I.toString("base64",M,I.length-y))}function p(I){var M=I&&I.length?this.write(I):"";return this.lastNeed?M+this.lastChar.toString("base64",0,3-this.lastNeed):M}function v(I){return I.toString(this.encoding)}function S(I){return I&&I.length?this.write(I):""}A.s=g,g.prototype.write=function(I){if(0===I.length)return"";var M,y;if(this.lastNeed){if(void 0===(M=this.fillLast(I)))return"";y=this.lastNeed,this.lastNeed=0}else y=0;return y=0?(Y>0&&(I.lastNeed=Y-1),Y):--F=0?(Y>0&&(I.lastNeed=Y-2),Y):--F=0?(Y>0&&(2===Y?Y=0:I.lastNeed=Y-3),Y):0}(this,I,M);if(!this.lastNeed)return I.toString("utf8",M);this.lastTotal=y;var F=I.length-(y-this.lastNeed);return I.copy(this.lastChar,0,F),I.toString("utf8",M,F)},g.prototype.fillLast=function(I){if(this.lastNeed<=I.length)return I.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);I.copy(this.lastChar,this.lastTotal-this.lastNeed,0,I.length),this.lastNeed-=I.length}},80311:function(N){var A=0,n=-3;function u(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function a(D,d){this.source=D,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=d,this.destLen=0,this.ltree=new u,this.dtree=new u}var o=new u,s=new u,g=new Uint8Array(30),h=new Uint16Array(30),E=new Uint8Array(30),r=new Uint16Array(30),c=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),Q=new u,C=new Uint8Array(320);function w(D,d,H,z){var aA,K;for(aA=0;aA>>=1,d}function S(D,d,H){if(!d)return H;for(;D.bitcount<24;)D.tag|=D.source[D.sourceIndex++]<>>16-d;return D.tag>>>=d,D.bitcount-=d,z+H}function I(D,d){for(;D.bitcount<24;)D.tag|=D.source[D.sourceIndex++]<>>=1,++aA,H+=d.table[aA],z-=d.table[aA]}while(z>=0);return D.tag=K,D.bitcount-=aA,d.trans[H+z]}function M(D,d,H){var z,aA,K,$,nA,uA;for(z=S(D,5,257),aA=S(D,5,1),K=S(D,4,4),$=0;$<19;++$)C[$]=0;for($=0;$8;)D.sourceIndex--,D.bitcount-=8;if((d=256*(d=D.source[D.sourceIndex+1])+D.source[D.sourceIndex])!==(65535&~(256*D.source[D.sourceIndex+3]+D.source[D.sourceIndex+2])))return n;for(D.sourceIndex+=4,z=d;z;--z)D.dest[D.destLen++]=D.source[D.sourceIndex++];return D.bitcount=0,A}(function e(D,d){var H;for(H=0;H<7;++H)D.table[H]=0;for(D.table[7]=24,D.table[8]=152,D.table[9]=112,H=0;H<24;++H)D.trans[H]=256+H;for(H=0;H<144;++H)D.trans[24+H]=H;for(H=0;H<8;++H)D.trans[168+H]=280+H;for(H=0;H<112;++H)D.trans[176+H]=144+H;for(H=0;H<5;++H)d.table[H]=0;for(d.table[5]=32,H=0;H<32;++H)d.trans[H]=H})(o,s),w(g,h,4,3),w(E,r,2,1),g[28]=0,h[28]=258,N.exports=function Y(D,d){var z,K,H=new a(D,d);do{switch(z=v(H),S(H,2,0)){case 0:K=F(H);break;case 1:K=y(H,o,s);break;case 2:M(H,H.ltree,H.dtree),K=y(H,H.ltree,H.dtree);break;default:K=n}if(K!==A)throw new Error("Data error")}while(!z);return H.destLen=AA.length?{done:!0}:{done:!1,value:AA[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 C(AA,R){(null==R||R>AA.length)&&(R=AA.length);for(var V=0,m=new Array(R);V0?sA[0]:"value";if(tA.has(WA))return tA.get(WA);var at=T.apply(this,sA);return tA.set(WA,at),at}return Object.defineProperty(this,R,{value:lA}),lA}}}}D.registerFormat=function(AA){d.push(AA)},D.openSync=function(AA,R){var V=Y.readFileSync(AA);return D.create(V,R)},D.open=function(AA,R,V){"function"==typeof R&&(V=R,R=null),Y.readFile(AA,function(m,T){if(m)return V(m);try{var P=D.create(T,R)}catch(tA){return V(tA)}return V(null,P)})},D.create=function(AA,R){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(AA){return(AA.length-AA._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($,"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($,"nGroups")},13:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray($,"nGroups")},14:{length:e.uint32,numRecords:e.uint32,varSelectors:new e.LazyArray(yA,"numRecords")}}),kA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,table:new e.Pointer(e.uint32,TA,{type:"parent",lazy:!0})}),W=new e.Struct({version:e.uint16,numSubtables:e.uint16,tables:new e.Array(kA,"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}),iA=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}),eA=new e.Struct({advance:e.uint16,bearing:e.int16}),EA=new e.Struct({metrics:new e.LazyArray(eA,function(AA){return AA.parent.hhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(AA){return AA.parent.maxp.numGlyphs-AA.parent.hhea.numberOfMetrics})}),mA=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 GA(AA,R,V){return void 0===V&&(V=0),1===AA&&b[V]?b[V]:j[AA][R]}var j=[["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"]],b={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"},rA=[[],{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"}],oA=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(AA){return GA(AA.platformID,AA.encodingID,AA.languageID)}),{type:"parent",relativeTo:function(R){return R.parent.stringOffset},allowNull:!1})}),pA=new e.Struct({length:e.uint16,tag:new e.Pointer(e.uint16,new e.String("length","utf16be"),{type:"parent",relativeTo:function(R){return R.stringOffset}})}),xA=new e.VersionedStruct(e.uint16,{0:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(oA,"count")},1:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(oA,"count"),langTagCount:e.uint16,langTags:new e.Array(pA,"langTagCount")}}),gA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];xA.process=function(AA){for(var m,R={},V=c(this.records);!(m=V()).done;){var T=m.value,P=rA[T.platformID][T.languageID];null==P&&null!=this.langTags&&T.languageID>=32768&&(P=this.langTags[T.languageID-32768].tag),null==P&&(P=T.platformID+"-"+T.languageID);var tA=T.nameID>=256?"fontFeatures":gA[T.nameID]||T.nameID;null==R[tA]&&(R[tA]={});var lA=R[tA];T.nameID>=256&&(lA=lA[T.nameID]||(lA[T.nameID]={})),("string"==typeof T.string||"string"!=typeof lA[P])&&(lA[P]=T.string)}this.records=R},xA.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var AA=[];for(var R in this.records){var V=this.records[R];"fontFeatures"!==R&&(AA.push({platformID:3,encodingID:1,languageID:1033,nameID:gA.indexOf(R),length:u.byteLength(V.en,"utf16le"),string:V.en}),"postscriptName"===R&&AA.push({platformID:1,encodingID:0,languageID:0,nameID:gA.indexOf(R),length:V.en.length,string:V.en}))}this.records=AA,this.count=AA.length,this.stringOffset=xA.size(this,null,!1)}};var CA=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}}),DA=CA.versions;DA[3]=DA[4]=DA[2];var YA=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(AA){return AA.parent.maxp.numGlyphs})}}),zA=new e.Struct({controlValues:new e.Array(e.int16)}),IA=new e.Struct({instructions:new e.Array(e.uint8)}),jA=new e.VersionedStruct("head.indexToLocFormat",{0:{offsets:new e.Array(e.uint16)},1:{offsets:new e.Array(e.uint32)}});jA.process=function(){if(0===this.version)for(var AA=0;AA>>=1};var ut=new e.Struct({controlValueProgram:new e.Array(e.uint8)}),Ct=new e.Array(new e.Buffer),ct=function(){function AA(V){this.type=V}var R=AA.prototype;return R.getCFFVersion=function(m){for(;m&&!m.hdrSize;)m=m.parent;return m?m.version:-1},R.decode=function(m,T){var tA=this.getCFFVersion(T)>=2?m.readUInt32BE():m.readUInt16BE();if(0===tA)return[];var cA,lA=m.readUInt8();if(1===lA)cA=e.uint8;else if(2===lA)cA=e.uint16;else if(3===lA)cA=e.uint24;else{if(4!==lA)throw new Error("Bad offset size in CFFIndex: ".concat(lA," ").concat(m.pos));cA=e.uint32}for(var sA=[],SA=m.pos+(tA+1)*lA-1,WA=cA.decode(m),at=0;at>4;if(15===tA)break;T+=Yt[tA];var lA=15&P;if(15===lA)break;T+=Yt[lA]}return parseFloat(T)}return null},AA.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},AA.encode=function(V,m){var T=Number(m);if(m.forceLarge)return V.writeUInt8(29),V.writeInt32BE(T);if((0|T)===T)return-107<=T&&T<=107?V.writeUInt8(T+139):108<=T&&T<=1131?(V.writeUInt8(247+((T-=108)>>8)),V.writeUInt8(255&T)):-1131<=T&&T<=-108?(V.writeUInt8(251+((T=-T-108)>>8)),V.writeUInt8(255&T)):-32768<=T&&T<=32767?(V.writeUInt8(28),V.writeInt16BE(T)):(V.writeUInt8(29),V.writeInt32BE(T));V.writeUInt8(30);for(var P=""+T,tA=0;tAP;)T.pop()},AA}(),null],[19,"Subrs",new ft(new ct,{type:"local"}),null]]),gt=[".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"],q=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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"],L=[".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"],HA=new e.Struct({reserved:new e.Reserved(e.uint16),reqFeatureIndex:e.uint16,featureCount:e.uint16,featureIndexes:new e.Array(e.uint16,"featureCount")}),$A=new e.Struct({tag:new e.String(4),langSys:new e.Pointer(e.uint16,HA,{type:"parent"})}),O=new e.Struct({defaultLangSys:new e.Pointer(e.uint16,HA),count:e.uint16,langSysRecords:new e.Array($A,"count")}),qA=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,O,{type:"parent"})}),et=new e.Array(qA,e.uint16),MA=new e.Struct({featureParams:e.uint16,lookupCount:e.uint16,lookupListIndexes:new e.Array(e.uint16,"lookupCount")}),OA=new e.Struct({tag:new e.String(4),feature:new e.Pointer(e.uint16,MA,{type:"parent"})}),st=new e.Array(OA,e.uint16),Ut=new e.Struct({markAttachmentType:e.uint8,flags:new e.Bitfield(e.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function xt(AA){var R=new e.Struct({lookupType:e.uint16,flags:Ut,subTableCount:e.uint16,subTables:new e.Array(new e.Pointer(e.uint16,AA),"subTableCount"),markFilteringSet:new e.Optional(e.uint16,function(V){return V.flags.flags.useMarkFilteringSet})});return new e.LazyArray(new e.Pointer(e.uint16,R),e.uint16)}var bt=new e.Struct({start:e.uint16,end:e.uint16,startCoverageIndex:e.uint16}),Lt=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")}}),an=new e.Struct({start:e.uint16,end:e.uint16,class:e.uint16}),Ae=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(an,"classRangeCount")}}),Wt=new e.Struct({a:e.uint16,b:e.uint16,deltaFormat:e.uint16}),oe=new e.Struct({sequenceIndex:e.uint16,lookupListIndex:e.uint16}),De=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,input:new e.Array(e.uint16,function(AA){return AA.glyphCount-1}),lookupRecords:new e.Array(oe,"lookupCount")}),Ye=new e.Array(new e.Pointer(e.uint16,De),e.uint16),gn=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,classes:new e.Array(e.uint16,function(AA){return AA.glyphCount-1}),lookupRecords:new e.Array(oe,"lookupCount")}),mn=new e.Array(new e.Pointer(e.uint16,gn),e.uint16),ne=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),ruleSetCount:e.uint16,ruleSets:new e.Array(new e.Pointer(e.uint16,Ye),"ruleSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),classDef:new e.Pointer(e.uint16,Ae),classSetCnt:e.uint16,classSet:new e.Array(new e.Pointer(e.uint16,mn),"classSetCnt")},3:{glyphCount:e.uint16,lookupCount:e.uint16,coverages:new e.Array(new e.Pointer(e.uint16,Lt),"glyphCount"),lookupRecords:new e.Array(oe,"lookupCount")}}),An=new e.Struct({backtrackGlyphCount:e.uint16,backtrack:new e.Array(e.uint16,"backtrackGlyphCount"),inputGlyphCount:e.uint16,input:new e.Array(e.uint16,function(AA){return AA.inputGlyphCount-1}),lookaheadGlyphCount:e.uint16,lookahead:new e.Array(e.uint16,"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(oe,"lookupCount")}),Re=new e.Array(new e.Pointer(e.uint16,An),e.uint16),Ze=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),chainCount:e.uint16,chainRuleSets:new e.Array(new e.Pointer(e.uint16,Re),"chainCount")},2:{coverage:new e.Pointer(e.uint16,Lt),backtrackClassDef:new e.Pointer(e.uint16,Ae),inputClassDef:new e.Pointer(e.uint16,Ae),lookaheadClassDef:new e.Pointer(e.uint16,Ae),chainCount:e.uint16,chainClassSet:new e.Array(new e.Pointer(e.uint16,Re),"chainCount")},3:{backtrackGlyphCount:e.uint16,backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),inputGlyphCount:e.uint16,inputCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"inputGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(oe,"lookupCount")}}),Ue=new e.Fixed(16,"BE",14),Rn=new e.Struct({startCoord:Ue,peakCoord:Ue,endCoord:Ue}),zn=new e.Struct({axisCount:e.uint16,regionCount:e.uint16,variationRegions:new e.Array(new e.Array(Rn,"axisCount"),"regionCount")}),Jt=new e.Struct({shortDeltas:new e.Array(e.int16,function(AA){return AA.parent.shortDeltaCount}),regionDeltas:new e.Array(e.int8,function(AA){return AA.parent.regionIndexCount-AA.parent.shortDeltaCount}),deltas:function(R){return R.shortDeltas.concat(R.regionDeltas)}}),zt=new e.Struct({itemCount:e.uint16,shortDeltaCount:e.uint16,regionIndexCount:e.uint16,regionIndexes:new e.Array(e.uint16,"regionIndexCount"),deltaSets:new e.Array(Jt,"itemCount")}),Vt=new e.Struct({format:e.uint16,variationRegionList:new e.Pointer(e.uint32,zn),variationDataCount:e.uint16,itemVariationData:new e.Array(new e.Pointer(e.uint32,zt),"variationDataCount")}),se=new e.VersionedStruct(e.uint16,{1:(a={axisIndex:e.uint16},a.axisIndex=e.uint16,a.filterRangeMinValue=Ue,a.filterRangeMaxValue=Ue,a)}),pn=new e.Struct({conditionCount:e.uint16,conditionTable:new e.Array(new e.Pointer(e.uint32,se),"conditionCount")}),Qn=new e.Struct({featureIndex:e.uint16,alternateFeatureTable:new e.Pointer(e.uint32,MA,{type:"parent"})}),Nn=new e.Struct({version:e.fixed32,substitutionCount:e.uint16,substitutions:new e.Array(Qn,"substitutionCount")}),Wn=new e.Struct({conditionSet:new e.Pointer(e.uint32,pn,{type:"parent"}),featureTableSubstitution:new e.Pointer(e.uint32,Nn,{type:"parent"})}),ei=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,featureVariationRecordCount:e.uint32,featureVariationRecords:new e.Array(Wn,"featureVariationRecordCount")}),yn=function(){function AA(V,m){this.predefinedOps=V,this.type=m}var R=AA.prototype;return R.decode=function(m,T,P){return this.predefinedOps[P[0]]?this.predefinedOps[P[0]]:this.type.decode(m,T,P)},R.size=function(m,T){return this.type.size(m,T)},R.encode=function(m,T,P){var tA=this.predefinedOps.indexOf(T);return-1!==tA?tA:this.type.encode(m,T,P)},AA}(),XA=function(AA){function R(){return AA.call(this,"UInt8")||this}return E(R,AA),R.prototype.decode=function(T){return 127&e.uint8.decode(T)},R}(e.Number),FA=new e.Struct({first:e.uint16,nLeft:e.uint8}),nt=new e.Struct({first:e.uint16,nLeft:e.uint16}),bA=new yn([q,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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 ft(new e.VersionedStruct(new XA,{0:{nCodes:e.uint8,codes:new e.Array(e.uint8,"nCodes")},1:{nRanges:e.uint8,ranges:new e.Array(FA,"nRanges")}}),{lazy:!0})),PA=function(AA){function R(){return AA.apply(this,arguments)||this}return E(R,AA),R.prototype.decode=function(T,P){for(var tA=f.resolveLength(this.length,T,P),lA=0,cA=[];lA=2?null:m=2||this.isCIDFont)return null;var T=this.topDict.charset;if(Array.isArray(T))return T[m];if(0===m)return".notdef";switch(m-=1,T.version){case 0:return this.string(T.glyphs[m]);case 1:case 2:for(var P=0;P>1;if(m=T[lA+1].first))return T[lA].fd;P=lA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},R.privateDictForGlyph=function(m){if(this.topDict.FDSelect){var T=this.fdForGlyph(m);return this.topDict.FDArray[T]?this.topDict.FDArray[T].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},s(AA,[{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)}}]),AA}(),qt=new e.Struct({glyphIndex:e.uint16,vertOriginY:e.int16}),Ht=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,defaultVertOriginY:e.int16,numVertOriginYMetrics:e.uint16,metrics:new e.Array(qt,"numVertOriginYMetrics")}),re=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}),Zt=new e.Struct({height:e.uint8,width:e.uint8,bearingX:e.int8,bearingY:e.int8,advance:e.uint8}),ue=new e.Struct({glyph:e.uint16,xOffset:e.int8,yOffset:e.int8}),jt=function(){},Ie=function(){},Te=(new e.VersionedStruct("version",{1:{metrics:Zt,data:jt},2:{metrics:Zt,data:Ie},5:{data:Ie},6:{metrics:re,data:jt},7:{metrics:re,data:Ie},8:{metrics:Zt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},9:{metrics:re,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},17:{metrics:Zt,dataLen:e.uint32,data:new e.Buffer("dataLen")},18:{metrics:re,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)})),ye=new e.Struct({glyphCode:e.uint16,offset:e.uint16}),Ne=new e.VersionedStruct(e.uint16,{header:{imageFormat:e.uint16,imageDataOffset:e.uint32},1:{offsetArray:new e.Array(e.uint32,function(AA){return AA.parent.lastGlyphIndex-AA.parent.firstGlyphIndex+1})},2:{imageSize:e.uint32,bigMetrics:re},3:{offsetArray:new e.Array(e.uint16,function(AA){return AA.parent.lastGlyphIndex-AA.parent.firstGlyphIndex+1})},4:{numGlyphs:e.uint32,glyphArray:new e.Array(ye,function(AA){return AA.numGlyphs+1})},5:{imageSize:e.uint32,bigMetrics:re,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,Ne)}),In=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:Te,vert:Te,startGlyphIndex:e.uint16,endGlyphIndex:e.uint16,ppemX:e.uint8,ppemY:e.uint8,bitDepth:e.uint8,flags:new e.Bitfield(e.uint8,["horizontal","vertical"])}),tn=new e.Struct({version:e.uint32,numSizes:e.uint32,sizes:new e.Array(In,"numSizes")}),dn=new e.Struct({ppem:e.uint16,resolution:e.uint16,imageOffsets:new e.Array(new e.Pointer(e.uint32,"void"),function(AA){return AA.parent.parent.maxp.numGlyphs+1})}),xn=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,dn),"numImgTables")}),en=new e.Struct({gid:e.uint16,paletteIndex:e.uint16}),Bn=new e.Struct({gid:e.uint16,firstLayerIndex:e.uint16,numLayers:e.uint16}),on=new e.Struct({version:e.uint16,numBaseGlyphRecords:e.uint16,baseGlyphRecord:new e.Pointer(e.uint32,new e.Array(Bn,"numBaseGlyphRecords")),layerRecords:new e.Pointer(e.uint32,new e.Array(en,"numLayerRecords"),{lazy:!0}),numLayerRecords:e.uint16}),vi=new e.Struct({blue:e.uint8,green:e.uint8,red:e.uint8,alpha:e.uint8}),yi=new e.VersionedStruct(e.uint16,{header:{numPaletteEntries:e.uint16,numPalettes:e.uint16,numColorRecords:e.uint16,colorRecords:new e.Pointer(e.uint32,new e.Array(vi,"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"))}}),Vn=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,Wt)}}),xi=new e.Struct({defaultIndex:e.uint16,baseCoordCount:e.uint16,baseCoords:new e.Array(new e.Pointer(e.uint16,Vn),"baseCoordCount")}),Fi=new e.Struct({tag:new e.String(4),minCoord:new e.Pointer(e.uint16,Vn,{type:"parent"}),maxCoord:new e.Pointer(e.uint16,Vn,{type:"parent"})}),kn=new e.Struct({minCoord:new e.Pointer(e.uint16,Vn),maxCoord:new e.Pointer(e.uint16,Vn),featMinMaxCount:e.uint16,featMinMaxRecords:new e.Array(Fi,"featMinMaxCount")}),di=new e.Struct({tag:new e.String(4),minMax:new e.Pointer(e.uint16,kn,{type:"parent"})}),ni=new e.Struct({baseValues:new e.Pointer(e.uint16,xi),defaultMinMax:new e.Pointer(e.uint16,kn),baseLangSysCount:e.uint16,baseLangSysRecords:new e.Array(di,"baseLangSysCount")}),Fn=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,ni,{type:"parent"})}),sa=new e.Array(Fn,e.uint16),QA=new e.Array(new e.String(4),e.uint16),G=new e.Struct({baseTagList:new e.Pointer(e.uint16,QA),baseScriptList:new e.Pointer(e.uint16,sa)}),U=new e.VersionedStruct(e.uint32,{header:{horizAxis:new e.Pointer(e.uint16,G),vertAxis:new e.Pointer(e.uint16,G)},65536:{},65537:{itemVariationStore:new e.Pointer(e.uint32,Vt)}}),X=new e.Array(e.uint16,e.uint16),k=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,attachPoints:new e.Array(new e.Pointer(e.uint16,X),"glyphCount")}),BA=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{caretValuePoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Wt)}}),dA=new e.Array(new e.Pointer(e.uint16,BA),e.uint16),tt=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),ligGlyphCount:e.uint16,ligGlyphs:new e.Array(new e.Pointer(e.uint16,dA),"ligGlyphCount")}),it=new e.Struct({markSetTableFormat:e.uint16,markSetCount:e.uint16,coverage:new e.Array(new e.Pointer(e.uint32,Lt),"markSetCount")}),Bt=new e.VersionedStruct(e.uint32,{header:{glyphClassDef:new e.Pointer(e.uint16,Ae),attachList:new e.Pointer(e.uint16,k),ligCaretList:new e.Pointer(e.uint16,tt),markAttachClassDef:new e.Pointer(e.uint16,Ae)},65536:{},65538:{markGlyphSetsDef:new e.Pointer(e.uint16,it)},65539:{markGlyphSetsDef:new e.Pointer(e.uint16,it),itemVariationStore:new e.Pointer(e.uint32,Vt)}}),Et=new e.Bitfield(e.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Mt={xPlacement:e.int16,yPlacement:e.int16,xAdvance:e.int16,yAdvance:e.int16,xPlaDevice:new e.Pointer(e.uint16,Wt,{type:"global",relativeTo:function(R){return R.rel}}),yPlaDevice:new e.Pointer(e.uint16,Wt,{type:"global",relativeTo:function(R){return R.rel}}),xAdvDevice:new e.Pointer(e.uint16,Wt,{type:"global",relativeTo:function(R){return R.rel}}),yAdvDevice:new e.Pointer(e.uint16,Wt,{type:"global",relativeTo:function(R){return R.rel}})},It=function(){function AA(V){void 0===V&&(V="valueFormat"),this.key=V}var R=AA.prototype;return R.buildStruct=function(m){for(var T=m;!T[this.key]&&T.parent;)T=T.parent;if(T[this.key]){var P={rel:function(){return T._startOffset}},tA=T[this.key];for(var lA in tA)tA[lA]&&(P[lA]=Mt[lA]);return new e.Struct(P)}},R.size=function(m,T){return this.buildStruct(T).size(m,T)},R.decode=function(m,T){var P=this.buildStruct(T).decode(m,T);return delete P.rel,P},AA}(),vt=new e.Struct({secondGlyph:e.uint16,value1:new It("valueFormat1"),value2:new It("valueFormat2")}),kt=new e.Array(vt,e.uint16),Kt=new e.Struct({value1:new It("valueFormat1"),value2:new It("valueFormat2")}),te=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,Wt),yDeviceTable:new e.Pointer(e.uint16,Wt)}}),Be=new e.Struct({entryAnchor:new e.Pointer(e.uint16,te,{type:"parent"}),exitAnchor:new e.Pointer(e.uint16,te,{type:"parent"})}),xe=new e.Struct({class:e.uint16,markAnchor:new e.Pointer(e.uint16,te,{type:"parent"})}),Ve=new e.Array(xe,e.uint16),de=new e.Array(new e.Pointer(e.uint16,te),function(AA){return AA.parent.classCount}),ke=new e.Array(de,e.uint16),En=new e.Array(new e.Pointer(e.uint16,te),function(AA){return AA.parent.parent.classCount}),je=new e.Array(En,e.uint16),Cn=new e.Array(new e.Pointer(e.uint16,je),e.uint16),Dn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Et,value:new It},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Et,valueCount:e.uint16,values:new e.LazyArray(new It,"valueCount")}}),2:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Et,valueFormat2:Et,pairSetCount:e.uint16,pairSets:new e.LazyArray(new e.Pointer(e.uint16,kt),"pairSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Et,valueFormat2:Et,classDef1:new e.Pointer(e.uint16,Ae),classDef2:new e.Pointer(e.uint16,Ae),class1Count:e.uint16,class2Count:e.uint16,classRecords:new e.LazyArray(new e.LazyArray(Kt,"class2Count"),"class1Count")}}),3:{format:e.uint16,coverage:new e.Pointer(e.uint16,Lt),entryExitCount:e.uint16,entryExitRecords:new e.Array(Be,"entryExitCount")},4:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),baseCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ve),baseArray:new e.Pointer(e.uint16,ke)},5:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),ligatureCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ve),ligatureArray:new e.Pointer(e.uint16,Cn)},6:{format:e.uint16,mark1Coverage:new e.Pointer(e.uint16,Lt),mark2Coverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,mark1Array:new e.Pointer(e.uint16,Ve),mark2Array:new e.Pointer(e.uint16,ke)},7:ne,8:Ze,9:{posFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Dn)}});Dn.versions[9].extension.type=Dn;var Zn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,et),featureList:new e.Pointer(e.uint16,st),lookupList:new e.Pointer(e.uint16,new xt(Dn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ei)}}),jn=new e.Array(e.uint16,e.uint16),Ri=jn,Kn=new e.Struct({glyph:e.uint16,compCount:e.uint16,components:new e.Array(e.uint16,function(AA){return AA.compCount-1})}),ii=new e.Array(new e.Pointer(e.uint16,Kn),e.uint16),Xn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),deltaGlyphID:e.int16},2:{coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,substitute:new e.LazyArray(e.uint16,"glyphCount")}}),2:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,sequences:new e.LazyArray(new e.Pointer(e.uint16,jn),"count")},3:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,alternateSet:new e.LazyArray(new e.Pointer(e.uint16,Ri),"count")},4:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,ligatureSets:new e.LazyArray(new e.Pointer(e.uint16,ii),"count")},5:ne,6:Ze,7:{substFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Xn)},8:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),glyphCount:e.uint16,substitutes:new e.Array(e.uint16,"glyphCount")}});Xn.versions[7].extension.type=Xn;var qn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,et),featureList:new e.Pointer(e.uint16,st),lookupList:new e.Pointer(e.uint16,new xt(Xn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ei)}}),Gn=new e.Array(e.uint16,e.uint16),zi=new e.Struct({shrinkageEnableGSUB:new e.Pointer(e.uint16,Gn),shrinkageDisableGSUB:new e.Pointer(e.uint16,Gn),shrinkageEnableGPOS:new e.Pointer(e.uint16,Gn),shrinkageDisableGPOS:new e.Pointer(e.uint16,Gn),shrinkageJstfMax:new e.Pointer(e.uint16,new xt(Dn)),extensionEnableGSUB:new e.Pointer(e.uint16,Gn),extensionDisableGSUB:new e.Pointer(e.uint16,Gn),extensionEnableGPOS:new e.Pointer(e.uint16,Gn),extensionDisableGPOS:new e.Pointer(e.uint16,Gn),extensionJstfMax:new e.Pointer(e.uint16,new xt(Dn))}),Gi=new e.Array(new e.Pointer(e.uint16,zi),e.uint16),Hi=new e.Struct({tag:new e.String(4),jstfLangSys:new e.Pointer(e.uint16,Gi)}),Yi=new e.Struct({extenderGlyphs:new e.Pointer(e.uint16,new e.Array(e.uint16,e.uint16)),defaultLangSys:new e.Pointer(e.uint16,Gi),langSysCount:e.uint16,langSysRecords:new e.Array(Hi,"langSysCount")}),Ji=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,Yi,{type:"parent"})}),Oi=new e.Struct({version:e.uint32,scriptCount:e.uint16,scriptList:new e.Array(Ji,"scriptCount")}),ki=new e.Struct({entry:new(function(){function AA(V){this._size=V}var R=AA.prototype;return R.decode=function(m,T){switch(this.size(0,T)){case 1:return m.readUInt8();case 2:return m.readUInt16BE();case 3:return m.readUInt24BE();case 4:return m.readUInt32BE()}},R.size=function(m,T){return f.resolveLength(this._size,null,T)},AA}())(function(AA){return 1+((48&AA.parent.entryFormat)>>4)}),outerIndex:function(R){return R.entry>>1+(15&R.parent.entryFormat)},innerIndex:function(R){return R.entry&(1<<1+(15&R.parent.entryFormat))-1}}),Hn=new e.Struct({entryFormat:e.uint16,mapCount:e.uint16,mapData:new e.Array(ki,"mapCount")}),Ti=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,itemVariationStore:new e.Pointer(e.uint32,Vt),advanceWidthMapping:new e.Pointer(e.uint32,Hn),LSBMapping:new e.Pointer(e.uint32,Hn),RSBMapping:new e.Pointer(e.uint32,Hn)}),ri=new e.Struct({format:e.uint32,length:e.uint32,offset:e.uint32}),Lr=new e.Struct({reserved:new e.Reserved(e.uint16,2),cbSignature:e.uint32,signature:new e.Buffer("cbSignature")}),Pr=new e.Struct({ulVersion:e.uint32,usNumSigs:e.uint16,usFlag:e.uint16,signatures:new e.Array(ri,"usNumSigs"),signatureBlocks:new e.Array(Lr,"usNumSigs")}),la=new e.Struct({rangeMaxPPEM:e.uint16,rangeGaspBehavior:new e.Bitfield(e.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),so=new e.Struct({version:e.uint16,numRanges:e.uint16,gaspRanges:new e.Array(la,"numRanges")}),lo=new e.Struct({pixelSize:e.uint8,maximumWidth:e.uint8,widths:new e.Array(e.uint8,function(AA){return AA.parent.parent.maxp.numGlyphs})}),co=new e.Struct({version:e.uint16,numRecords:e.int16,sizeDeviceRecord:e.int32,records:new e.Array(lo,"numRecords")}),go=new e.Struct({left:e.uint16,right:e.uint16,value:e.int16}),ca=new e.Struct({firstGlyph:e.uint16,nGlyphs:e.uint16,offsets:new e.Array(e.uint16,"nGlyphs"),max:function(R){return R.offsets.length&&Math.max.apply(Math,R.offsets)}}),Bo=new e.Struct({off:function(R){return R._startOffset-R.parent.parent._startOffset},len:function(R){return R.parent.rowWidth/2*((R.parent.leftTable.max-R.off)/R.parent.rowWidth+1)},values:new e.LazyArray(e.int16,"len")}),ga=new e.VersionedStruct("format",{0:{nPairs:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,pairs:new e.Array(go,"nPairs")},2:{rowWidth:e.uint16,leftTable:new e.Pointer(e.uint16,ca,{type:"parent"}),rightTable:new e.Pointer(e.uint16,ca,{type:"parent"}),array:new e.Pointer(e.uint16,Bo,{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(AA){return AA.leftClassCount*AA.rightClassCount})}}),Ba=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:ga,padding:new e.Reserved(e.uint8,function(AA){return AA.length-AA._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:ga,padding:new e.Reserved(e.uint8,function(AA){return AA.length-AA._currentOffset})}}),ua=new e.VersionedStruct(e.uint16,{0:{nTables:e.uint16,tables:new e.Array(Ba,"nTables")},1:{reserved:new e.Reserved(e.uint16),nTables:e.uint32,tables:new e.Array(Ba,"nTables")}}),uo=new e.Struct({version:e.uint16,numGlyphs:e.uint16,yPels:new e.Array(e.uint8,"numGlyphs")}),fo=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)}),fa=new e.Struct({bCharSet:e.uint8,xRatio:e.uint8,yStartRatio:e.uint8,yEndRatio:e.uint8}),ai=new e.Struct({yPelHeight:e.uint16,yMax:e.int16,yMin:e.int16}),ho=new e.Struct({recs:e.uint16,startsz:e.uint8,endsz:e.uint8,entries:new e.Array(ai,"recs")}),Eo=new e.Struct({version:e.uint16,numRecs:e.uint16,numRatios:e.uint16,ratioRanges:new e.Array(fa,"numRatios"),offsets:new e.Array(e.uint16,"numRatios"),groups:new e.Array(ho,"numRecs")}),Co=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}),wo=new e.Struct({advance:e.uint16,bearing:e.int16}),Qo=new e.Struct({metrics:new e.LazyArray(wo,function(AA){return AA.parent.vhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(AA){return AA.parent.maxp.numGlyphs-AA.parent.vhea.numberOfMetrics})}),ha=new e.Fixed(16,"BE",14),po=new e.Struct({fromCoord:ha,toCoord:ha}),Mo=new e.Struct({pairCount:e.uint16,correspondence:new e.Array(po,"pairCount")}),mo=new e.Struct({version:e.fixed32,axisCount:e.uint32,segment:new e.Array(Mo,"axisCount")}),Io=function(){function AA(V,m,T){this.type=V,this.stream=m,this.parent=T,this.base=this.stream.pos,this._items=[]}var R=AA.prototype;return R.getItem=function(m){if(null==this._items[m]){var T=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=T}return this._items[m]},R.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},AA}(),_n=function(AA){function R(m){return AA.call(this,m,0)||this}return E(R,AA),R.prototype.decode=function(T,P){return new Io(this.type,T,P)},R}(e.Array),fi=function(R){void 0===R&&(R=e.uint16),R=new(function(){function lA(sA){this.type=sA}var cA=lA.prototype;return cA.decode=function(SA,WA){return this.type.decode(SA,WA=WA.parent.parent)},cA.size=function(SA,WA){return this.type.size(SA,WA=WA.parent.parent)},cA.encode=function(SA,WA,at){return this.type.encode(SA,WA,at=at.parent.parent)},lA}())(R);var m=new e.Struct({unitSize:e.uint16,nUnits:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16}),T=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,value:R}),P=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,values:new e.Pointer(e.uint16,new e.Array(R,function(lA){return lA.lastGlyph-lA.firstGlyph+1}),{type:"parent"})}),tA=new e.Struct({glyph:e.uint16,value:R});return new e.VersionedStruct(e.uint16,{0:{values:new _n(R)},2:{binarySearchHeader:m,segments:new e.Array(T,function(lA){return lA.binarySearchHeader.nUnits})},4:{binarySearchHeader:m,segments:new e.Array(P,function(lA){return lA.binarySearchHeader.nUnits})},6:{binarySearchHeader:m,segments:new e.Array(tA,function(lA){return lA.binarySearchHeader.nUnits})},8:{firstGlyph:e.uint16,count:e.uint16,values:new e.Array(R,"count")}})};function or(AA,R){void 0===AA&&(AA={}),void 0===R&&(R=e.uint16);var V=Object.assign({newState:e.uint16,flags:e.uint16},AA),m=new e.Struct(V),T=new _n(new e.Array(e.uint16,function(tA){return tA.nClasses}));return new e.Struct({nClasses:e.uint32,classTable:new e.Pointer(e.uint32,new fi(R)),stateArray:new e.Pointer(e.uint32,T),entryTable:new e.Pointer(e.uint32,new _n(m))})}var vo=new e.VersionedStruct("format",{0:{deltas:new e.Array(e.int16,32)},1:{deltas:new e.Array(e.int16,32),mappingData:new fi(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 fi(e.uint16)}}),yo=new e.Struct({version:e.fixed32,format:e.uint16,defaultBaseline:e.uint16,subtable:vo}),xo=new e.Struct({setting:e.uint16,nameIndex:e.int16,name:function(R){return R.parent.parent.parent.name.records.fontFeatures[R.nameIndex]}}),Fo=new e.Struct({feature:e.uint16,nSettings:e.uint16,settingTable:new e.Pointer(e.uint32,new e.Array(xo,"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(R){return R.parent.parent.name.records.fontFeatures[R.nameIndex]}}),Yo=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(Fo,"featureNameCount")}),To=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(R){return R.parent.parent.name.records.fontFeatures[R.nameID]}}),No=new e.Struct({nameID:e.uint16,name:function(R){return R.parent.parent.name.records.fontFeatures[R.nameID]},flags:e.uint16,coord:new e.Array(e.fixed32,function(AA){return AA.parent.axisCount}),postscriptNameID:new e.Optional(e.uint16,function(AA){return AA.parent.instanceSize-AA._currentOffset>0})}),So=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(To,"axisCount"),instance:new e.Array(No,"instanceCount")}),Uo=new e.Fixed(16,"BE",14),bo=function(){function AA(){}return AA.decode=function(V,m){return m.flags?V.readUInt32BE():2*V.readUInt16BE()},AA}(),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(Uo,"axisCount"),"globalCoordCount")),glyphCount:e.uint16,flags:e.uint16,offsetToData:e.uint32,offsets:new e.Array(new e.Pointer(bo,"void",{relativeTo:function(R){return R.offsetToData},allowNull:!1}),function(AA){return AA.glyphCount+1})}),Po=new e.Struct({length:e.uint16,coverage:e.uint16,subFeatureFlags:e.uint32,stateTable:new function Do(AA,R){void 0===AA&&(AA={}),void 0===R&&(R=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(cA){return(cA.newStateOffset-(cA.parent.stateArray.base-cA.parent._startOffset))/cA.parent.nClasses},flags:e.uint16},AA),T=new e.Struct(m),P=new _n(new e.Array(e.uint8,function(lA){return lA.nClasses}));return new e.Struct({nClasses:e.uint16,classTable:new e.Pointer(e.uint16,V),stateArray:new e.Pointer(e.uint16,P),entryTable:new e.Pointer(e.uint16,new _n(T))})}}),Ro=new e.Struct({justClass:e.uint32,beforeGrowLimit:e.fixed32,beforeShrinkLimit:e.fixed32,afterGrowLimit:e.fixed32,afterShrinkLimit:e.fixed32,growFlags:e.uint16,shrinkFlags:e.uint16}),zo=new e.Array(Ro,e.uint32),Go=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}}),Ho=new e.Struct({actionClass:e.uint16,actionType:e.uint16,actionLength:e.uint32,actionData:Go,padding:new e.Reserved(e.uint8,function(AA){return AA.actionLength-AA._currentOffset})}),Jo=new e.Array(Ho,e.uint32),Oo=new e.Struct({lookupTable:new fi(new e.Pointer(e.uint16,Jo))}),Rr=new e.Struct({classTable:new e.Pointer(e.uint16,Po,{type:"parent"}),wdcOffset:e.uint16,postCompensationTable:new e.Pointer(e.uint16,Oo,{type:"parent"}),widthDeltaClusters:new fi(new e.Pointer(e.uint16,zo,{type:"parent",relativeTo:function(R){return R.wdcOffset}}))}),ko=new e.Struct({version:e.uint32,format:e.uint16,horizontal:new e.Pointer(e.uint16,Rr),vertical:new e.Pointer(e.uint16,Rr)}),jo={action:e.uint16},Ko={markIndex:e.uint16,currentIndex:e.uint16},Wo={currentInsertIndex:e.uint16,markedInsertIndex:e.uint16},Vo=new e.Struct({items:new _n(new e.Pointer(e.uint32,new fi))}),Zo=new e.VersionedStruct("type",{0:{stateTable:new or},1:{stateTable:new or(Ko),substitutionTable:new e.Pointer(e.uint32,Vo)},2:{stateTable:new or(jo),ligatureActions:new e.Pointer(e.uint32,new _n(e.uint32)),components:new e.Pointer(e.uint32,new _n(e.uint16)),ligatureList:new e.Pointer(e.uint32,new _n(e.uint16))},4:{lookupTable:new fi},5:{stateTable:new or(Wo),insertionActions:new e.Pointer(e.uint32,new _n(e.uint16))}}),Xo=new e.Struct({length:e.uint32,coverage:e.uint24,type:e.uint8,subFeatureFlags:e.uint32,table:Zo,padding:new e.Reserved(e.uint8,function(AA){return AA.length-AA._currentOffset})}),qo=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(qo,"nFeatureEntries"),subtables:new e.Array(Xo,"nSubtables")}),$o=new e.Struct({version:e.uint16,unused:new e.Reserved(e.uint16),nChains:e.uint32,chains:new e.Array(_o,"nChains")}),As=new e.Struct({left:e.int16,top:e.int16,right:e.int16,bottom:e.int16}),ts=new e.Struct({version:e.fixed32,format:e.uint16,lookupTable:new fi(As)}),le={};le.cmap=W,le.head=fA,le.hhea=iA,le.hmtx=EA,le.maxp=mA,le.name=xA,le["OS/2"]=CA,le.post=YA,le.fpgm=IA,le.loca=jA,le.prep=ut,le["cvt "]=zA,le.glyf=Ct,le["CFF "]=St,le.CFF2=St,le.VORG=Ht,le.EBLC=tn,le.CBLC=le.EBLC,le.sbix=xn,le.COLR=on,le.CPAL=yi,le.BASE=U,le.GDEF=Bt,le.GPOS=Zn,le.GSUB=qn,le.JSTF=Oi,le.HVAR=Ti,le.DSIG=Pr,le.gasp=so,le.hdmx=co,le.kern=ua,le.LTSH=uo,le.PCLT=fo,le.VDMX=Eo,le.vhea=Co,le.vmtx=Qo,le.avar=mo,le.bsln=yo,le.feat=Yo,le.fvar=So,le.gvar=Lo,le.just=ko,le.morx=$o,le.opbd=ts;var oi,es=new e.Struct({tag:new e.String(4),checkSum:e.uint32,offset:new e.Pointer(e.uint32,"void",{type:"global"}),length:e.uint32}),sr=new e.Struct({tag:new e.String(4),numTables:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,tables:new e.Array(es,"numTables")});function lr(AA,R){for(var V=0,m=AA.length-1;V<=m;){var T=V+m>>1,P=R(AA[T]);if(P<0)m=T-1;else{if(!(P>0))return T;V=T+1}}return-1}function Ni(AA,R){for(var V=[];AA>1;if(mcA.endCode.get(WA))){var at=cA.idRangeOffset.get(WA),_A=void 0;if(0===at)_A=m+cA.idDelta.get(WA);else{var lt=at/2+(m-cA.startCode.get(WA))-(cA.segCount-WA);0!==(_A=cA.glyphIndexArray.get(lt)||0)&&(_A+=cA.idDelta.get(WA))}return 65535&_A}sA=WA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return cA.glyphIndices.get(m-cA.firstCode)||0;case 12:case 13:for(var dt=0,mt=cA.nGroups-1;dt<=mt;){var Gt=dt+mt>>1,$t=cA.groups.get(Gt);if(m<$t.startCharCode)mt=Gt-1;else{if(!(m>$t.endCharCode))return 12===cA.version?$t.glyphID+(m-$t.startCharCode):$t.glyphID;dt=Gt+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(cA.version))}},R.getVariationSelector=function(m,T){if(!this.uvs)return 0;var P=this.uvs.varSelectors.toArray(),tA=lr(P,function(cA){return T-cA.varSelector}),lA=P[tA];return-1!==tA&&lA.defaultUVS&&(tA=lr(lA.defaultUVS,function(cA){return mcA.startUnicodeValue+cA.additionalCount?1:0})),-1!==tA&&lA.nonDefaultUVS&&-1!==(tA=lr(lA.nonDefaultUVS,function(cA){return m-cA.unicodeValue}))?lA.nonDefaultUVS[tA].glyphID:0},R.getCharacterSet=function(){var m=this.cmap;switch(m.version){case 0:return Ni(0,m.codeMap.length);case 4:for(var T=[],P=m.endCode.toArray(),tA=0;tA=_t.glyphID&&m<=_t.glyphID+(_t.endCharCode-_t.startCharCode)&&mt.push(_t.startCharCode+(m-_t.glyphID))}return mt;case 13:for(var Ee,ae=[],ge=c(T.groups.toArray());!(Ee=ge()).done;){var Qe=Ee.value;m===Qe.glyphID&&ae.push.apply(ae,Ni(Qe.startCharCode,Qe.endCharCode+1))}return ae;default:throw new Error("Unknown cmap format ".concat(T.version))}},AA}()).prototype,"getCharacterSet",[aA],Object.getOwnPropertyDescriptor(oi.prototype,"getCharacterSet"),oi.prototype),z(oi.prototype,"codePointsForGlyph",[aA],Object.getOwnPropertyDescriptor(oi.prototype,"codePointsForGlyph"),oi.prototype),oi),Si=function(){function AA(V){this.kern=V.kern}var R=AA.prototype;return R.process=function(m,T){for(var P=0;P=0&&(sA=SA.pairs[WA].value);break;case 2:var _A=0;T>=SA.rightTable.firstGlyph&&T=SA.leftTable.firstGlyph&&m=SA.glyphCount||T>=SA.glyphCount)return 0;sA=SA.kernValue[SA.kernIndex[SA.leftClass[m]*SA.rightClassCount+SA.rightClass[T]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(cA.format))}cA.coverage.override?P=sA:P+=sA}}return P},AA}(),si=function(){function AA(V){this.font=V}var R=AA.prototype;return R.positionGlyphs=function(m,T){for(var P=0,tA=0,lA=0;lA1&&(cA.minX+=(lA.codePoints.length-1)*cA.width/lA.codePoints.length);for(var sA=-T[P].xAdvance,SA=0,WA=this.font.unitsPerEm/16,at=P+1;at<=tA;at++){var _A=m[at],lt=_A.cbox,dt=T[at],mt=this.getCombiningClass(_A.codePoints[0]);if("Not_Reordered"!==mt){switch(dt.xOffset=dt.yOffset=0,mt){case"Double_Above":case"Double_Below":dt.xOffset+=cA.minX-lt.width/2-lt.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":dt.xOffset+=cA.minX-lt.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":dt.xOffset+=cA.maxX-lt.width-lt.minX;break;default:dt.xOffset+=cA.minX+(cA.width-lt.width)/2-lt.minX}switch(mt){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===mt||"Attached_Below"===mt)&&(cA.minY+=WA),dt.yOffset=-cA.minY-lt.maxY,cA.minY+=lt.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===mt||"Attached_Above_Right"===mt)&&(cA.maxY+=WA),dt.yOffset=cA.maxY-lt.minY,cA.maxY+=lt.height}dt.xAdvance=dt.yAdvance=0,dt.xOffset+=sA,dt.yOffset+=SA}else sA-=dt.xAdvance,SA-=dt.yAdvance}},R.getCombiningClass=function(m){var T=v.getCombiningClass(m);if(3584==(-256&m))if("Not_Reordered"===T)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(T){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 T},AA}(),Jn=function(){function AA(V,m,T,P){void 0===V&&(V=1/0),void 0===m&&(m=1/0),void 0===T&&(T=-1/0),void 0===P&&(P=-1/0),this.minX=V,this.minY=m,this.maxX=T,this.maxY=P}var R=AA.prototype;return R.addPoint=function(m,T){Math.abs(m)!==1/0&&(mthis.maxX&&(this.maxX=m)),Math.abs(T)!==1/0&&(Tthis.maxY&&(this.maxY=T))},R.copy=function(){return new AA(this.minX,this.minY,this.maxX,this.maxY)},s(AA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}]),AA}(),Ui={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"},Gr={};for(var Hr in Ui){var Jr=Ui[Hr];if(Array.isArray(Jr))for(var Ca,ns=c(Jr);!(Ca=ns()).done;)Gr[Ca.value]=Hr;else Gr[Jr]=Hr}var ss={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 wa(AA){return ss[AA]?"rtl":"ltr"}for(var ls=function(){function AA(R,V,m,T,P){if(this.glyphs=R,this.positions=null,this.script=m,this.language=T||null,this.direction=P||wa(m),this.features={},Array.isArray(V))for(var lA,tA=c(V);!(lA=tA()).done;)this.features[lA.value]=!0;else"object"==typeof V&&(this.features=V)}return s(AA,[{key:"advanceWidth",get:function(){for(var T,V=0,m=c(this.positions);!(T=m()).done;)V+=T.value.xAdvance;return V}},{key:"advanceHeight",get:function(){for(var T,V=0,m=c(this.positions);!(T=m()).done;)V+=T.value.yAdvance;return V}},{key:"bbox",get:function(){for(var V=new Jn,m=0,T=0,P=0;P>1]).firstGlyph)return null;if(mlA.lastGlyph))return 2===this.table.version?lA.value:lA.values[m-lA.firstGlyph];T=tA+1}}return null;case 6:for(var cA=0,sA=this.table.binarySearchHeader.nUnits-1;cA<=sA;){var tA,lA;if(65535===(lA=this.table.segments[tA=cA+sA>>1]).glyph)return null;if(mlA.glyph))return lA.value;cA=tA+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))}},R.glyphsForValue=function(m){var T=[];switch(this.table.version){case 2:case 4:for(var tA,P=c(this.table.segments);!(tA=P()).done;){var lA=tA.value;if(2===this.table.version&&lA.value===m)T.push.apply(T,Ni(lA.firstGlyph,lA.lastGlyph+1));else for(var cA=0;cA=-1;){var sA=null,SA=1,WA=!0;lA===m.length||-1===lA?SA=0:65535===(sA=m[lA]).id?SA=2:null==(SA=this.lookupTable.lookup(sA.id))&&(SA=1);var at=this.stateTable.stateArray.getItem(tA),lt=this.stateTable.entryTable.getItem(at[SA]);0!==SA&&2!==SA&&(P(sA,lt,lA),WA=!(16384<.flags)),tA=lt.newState,WA&&(lA+=cA)}return m},R.traverse=function(m,T,P){if(void 0===T&&(T=0),void 0===P&&(P=new Set),!P.has(T)){P.add(T);for(var tA=this.stateTable,lA=tA.nClasses,sA=tA.entryTable,SA=tA.stateArray.getItem(T),WA=4;WA=0;)65535===m[mt].id&&m.splice(mt,1),mt--;return m},R.processSubtable=function(m,T){if(this.subtable=m,this.glyphs=T,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var P=this.getStateMachine(m),tA=this.getProcessor();return P.process(this.glyphs,!!(4194304&this.subtable.coverage),tA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},R.getStateMachine=function(m){return new jr(m.table.stateTable)},R.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))}},R.processIndicRearragement=function(m,T,P){32768&T.flags&&(this.firstGlyph=P),8192&T.flags&&(this.lastGlyph=P),function ys(AA,R,V,m){switch(R){case 0:return AA;case 1:return Yn(AA,[V,1],[m,0]);case 2:return Yn(AA,[V,0],[m,1]);case 3:return Yn(AA,[V,1],[m,1]);case 4:return Yn(AA,[V,2],[m,0]);case 5:return Yn(AA,[V,2],[m,0],!0,!1);case 6:return Yn(AA,[V,0],[m,2]);case 7:return Yn(AA,[V,0],[m,2],!1,!0);case 8:return Yn(AA,[V,1],[m,2]);case 9:return Yn(AA,[V,1],[m,2],!1,!0);case 10:return Yn(AA,[V,2],[m,1]);case 11:return Yn(AA,[V,2],[m,1],!0,!1);case 12:return Yn(AA,[V,2],[m,2]);case 13:return Yn(AA,[V,2],[m,2],!0,!1);case 14:return Yn(AA,[V,2],[m,2],!1,!0);case 15:return Yn(AA,[V,2],[m,2],!0,!0);default:throw new Error("Unknown verb: ".concat(R))}}(this.glyphs,15&T.flags,this.firstGlyph,this.lastGlyph)},R.processContextualSubstitution=function(m,T,P){var tA=this.subtable.table.substitutionTable.items;if(65535!==T.markIndex){var lA=tA.getItem(T.markIndex);(sA=new ur(lA).lookup((m=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(sA,m.codePoints))}if(65535!==T.currentIndex){var sA,SA=tA.getItem(T.currentIndex);(sA=new ur(SA).lookup((m=this.glyphs[P]).id))&&(this.glyphs[P]=this.font.getGlyph(sA,m.codePoints))}32768&T.flags&&(this.markedGlyph=P)},R.processLigature=function(m,T,P){if(32768&T.flags&&this.ligatureStack.push(P),8192&T.flags){for(var tA,lA=this.subtable.table.ligatureActions,cA=this.subtable.table.components,sA=this.subtable.table.ligatureList,SA=T.action,WA=!1,at=0,_A=[],lt=[];!WA;){var dt,mt=this.ligatureStack.pop();(dt=_A).unshift.apply(dt,this.glyphs[mt].codePoints);var Gt=lA.getItem(SA++);WA=!!(2147483648&Gt);var $t=!!(1073741824&Gt),_t=(1073741823&Gt)<<2>>2;if(at+=cA.getItem(_t+=this.glyphs[mt].id),WA||$t){var ge=sA.getItem(at);this.glyphs[mt]=this.font.getGlyph(ge,_A),lt.push(mt),at=0,_A=[]}else this.glyphs[mt]=this.font.getGlyph(65535)}(tA=this.ligatureStack).push.apply(tA,lt)}},R.processNoncontextualSubstitutions=function(m,T,P){var tA=new ur(m.table.lookupTable);for(P=0;P>>5,!!(1024&T.flags)),65535!==T.currentInsertIndex&&this._insertGlyphs(P,T.currentInsertIndex,(992&T.flags)>>>5,!!(2048&T.flags))},R.getSupportedFeatures=function(){for(var P,m=[],T=c(this.morx.chains);!(P=T()).done;)for(var cA,lA=c(P.value.features);!(cA=lA()).done;){var sA=cA.value;m.push([sA.featureType,sA.featureSetting])}return m},R.generateInputs=function(m){return this.inputCache||this.generateInputCache(),this.inputCache[m]||[]},R.generateInputCache=function(){this.inputCache={};for(var T,m=c(this.morx.chains);!(T=m()).done;)for(var cA,P=T.value,tA=P.defaultFlags,lA=c(P.subtables);!(cA=lA()).done;){var sA=cA.value;sA.subFeatureFlags&tA&&this.generateInputsForSubtable(sA)}},R.generateInputsForSubtable=function(m){var T=this;if(2===m.type){if(4194304&m.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=m,this.ligatureStack=[];var tA=this.getStateMachine(m),lA=this.getProcessor(),cA=[],sA=[];this.glyphs=[],tA.traverse({enter:function(WA,at){var _A=T.glyphs;sA.push({glyphs:_A.slice(),ligatureStack:T.ligatureStack.slice()});var lt=T.font.getGlyph(WA);cA.push(lt),_A.push(cA[cA.length-1]),lA(_A[_A.length-1],at,_A.length-1);for(var dt=0,mt=0,Gt=0;Gt<_A.length&&dt<=1;Gt++)65535!==_A[Gt].id&&(dt++,mt=_A[Gt].id);if(1===dt){var $t=cA.map(function(ae){return ae.id}),_t=T.inputCache[mt];_t?_t.push($t):T.inputCache[mt]=[$t]}},exit:function(){var WA=sA.pop();T.glyphs=WA.glyphs,T.ligatureStack=WA.ligatureStack,cA.pop()}})}},AA}()).prototype,"getStateMachine",[aA],Object.getOwnPropertyDescriptor(Ki.prototype,"getStateMachine"),Ki.prototype),Ki);function Yn(AA,R,V,m,T){void 0===m&&(m=!1),void 0===T&&(T=!1);var P=AA.splice(V[0]-(V[1]-1),V[1]);T&&P.reverse();var tA=AA.splice.apply(AA,[R[0],R[1]].concat(P));return m&&tA.reverse(),AA.splice.apply(AA,[V[0]-(R[1]-1),0].concat(tA)),AA}var xs=function(){function AA(V){this.font=V,this.morxProcessor=new vs(V),this.fallbackPosition=!1}var R=AA.prototype;return R.substitute=function(m){"rtl"===m.direction&&m.glyphs.reverse(),this.morxProcessor.process(m.glyphs,function gs(AA){var R={};for(var V in AA){var m;(m=cr[V])&&(null==R[m[0]]&&(R[m[0]]={}),R[m[0]][m[1]]=AA[V])}return R}(m.features))},R.getAvailableFeatures=function(m,T){return function Bs(AA){var R={};if(Array.isArray(AA))for(var V=0;V0&&m.applyFeatures(cA,T,P)}},AA}(),Ys=["rvrn"],Ts=["ccmp","locl","rlig","mark","mkmk"],Ns=["frac","numr","dnom"],Ss=["calt","clig","liga","rclt","curs","kern"],Us={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},Ei=function(){function AA(){}return AA.plan=function(V,m,T){this.planPreprocessing(V),this.planFeatures(V),this.planPostprocessing(V,T),V.assignGlobalFeatures(m),this.assignFeatures(V,m)},AA.planPreprocessing=function(V){V.add({global:[].concat(Ys,Us[V.direction]),local:Ns})},AA.planFeatures=function(V){},AA.planPostprocessing=function(V,m){V.add([].concat(Ts,Ss)),V.setFeatureOverrides(m)},AA.assignFeatures=function(V,m){for(var T=0;T0&&v.isDigit(m[tA-1].codePoints[0]);)m[tA-1].features.numr=!0,m[tA-1].features.frac=!0,tA--;for(;lAthis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]},R.next=function(){return this.move(1)},R.prev=function(){return this.move(-1)},R.peek=function(m){void 0===m&&(m=1);var T=this.index,P=this.increment(m);return this.index=T,P},R.peekIndex=function(m){void 0===m&&(m=1);var T=this.index;this.increment(m);var P=this.index;return this.index=T,P},R.increment=function(m){void 0===m&&(m=1);var T=m<0?-1:1;for(m=Math.abs(m);m--;)this.move(T);return this.glyphs[this.index]},s(AA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}]),AA}(),Gs=["DFLT","dflt","latn"],wr=function(){function AA(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 R=AA.prototype;return R.findScript=function(m){if(null==this.table.scriptList)return null;Array.isArray(m)||(m=[m]);for(var P,T=c(m);!(P=T()).done;)for(var cA,tA=P.value,lA=c(this.table.scriptList);!(cA=lA()).done;){var sA=cA.value;if(sA.tag===tA)return sA}return null},R.selectScript=function(m,T,P){var lA,tA=!1;if(!this.script||m!==this.scriptTag){if((lA=this.findScript(m))||(lA=this.findScript(Gs)),!lA)return this.scriptTag;this.scriptTag=lA.tag,this.script=lA.script,this.language=null,this.languageTag=null,tA=!0}if((!P||P!==this.direction)&&(this.direction=P||wa(m)),T&&T.length<4&&(T+=" ".repeat(4-T.length)),!T||T!==this.languageTag){this.language=null;for(var sA,cA=c(this.script.langSysRecords);!(sA=cA()).done;){var SA=sA.value;if(SA.tag===T){this.language=SA.langSys,this.languageTag=SA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),tA=!0}if(tA&&(this.features={},this.language))for(var at,WA=c(this.language.featureIndexes);!(at=WA()).done;){var _A=at.value,lt=this.table.featureList[_A],dt=this.substituteFeatureForVariations(_A);this.features[lt.tag]=dt||lt.feature}return this.scriptTag},R.lookupsForFeatures=function(m,T){void 0===m&&(m=[]);for(var lA,P=[],tA=c(m);!(lA=tA()).done;){var cA=lA.value,sA=this.features[cA];if(sA)for(var WA,SA=c(sA.lookupListIndexes);!(WA=SA()).done;){var at=WA.value;T&&-1!==T.indexOf(at)||P.push({feature:cA,index:at,lookup:this.table.lookupList.get(at)})}}return P.sort(function(_A,lt){return _A.index-lt.index}),P},R.substituteFeatureForVariations=function(m){if(-1===this.variationsIndex)return null;for(var lA,tA=c(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(lA=tA()).done;){var cA=lA.value;if(cA.featureIndex===m)return cA.alternateFeatureTable}return null},R.findVariationsIndex=function(m){var T=this.table.featureVariations;if(!T)return-1;for(var P=T.featureVariationRecords,tA=0;tA=0})},R.getClassID=function(m,T){switch(T.version){case 1:var P=m-T.startGlyph;if(P>=0&&P0&&this.codePoints.every(v.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}]),AA}(),Da=function(AA){function R(){return AA.apply(this,arguments)||this}return E(R,AA),R.planFeatures=function(m){m.add(["ljmo","vjmo","tjmo"],!1)},R.assignFeatures=function(m,T){for(var P=0,tA=0;tAci){var at=Vi(V,tA,m.features);at.features.tjmo=!0,WA.push(at)}return AA.splice.apply(AA,[R,1].concat(WA)),R+WA.length-1}function r0(AA,R,V){var cA,sA,SA,WA,m=AA[R],P=Ir(AA[R].codePoints[0]),tA=AA[R-1].codePoints[0],lA=Ir(tA);if(lA===mr&&P===Vr)cA=tA,WA=m;else{P===Mr?(sA=AA[R-1],SA=m):(sA=AA[R-2],SA=AA[R-1],WA=m);var at=sA.codePoints[0],_A=SA.codePoints[0];_s(at)&&$s(_A)&&(cA=bi+((at-Qr)*pr+(_A-dr))*Wi)}var lt=WA&&WA.codePoints[0]||ci;if(null!=cA&&(lt===ci||A0(lt))){var dt=cA+(lt-ci);if(V.hasGlyphForCodePoint(dt)){var mt=lA===Mr?3:2;return AA.splice(R-mt+1,mt,Vi(V,dt,m.features)),R-mt+1}}return sA&&(sA.features.ljmo=!0),SA&&(SA.features.vjmo=!0),WA&&(WA.features.tjmo=!0),lA===mr?(Fa(AA,R-1,V),R+1):R}function o0(AA,R,V){var m=AA[R];if(0!==V.glyphForCodePoint(AA[R].codePoints[0]).advanceWidth){var tA=function a0(AA){switch(Ir(AA)){case mr:case xa:return 1;case Mr:return 2;case Vr:return 3}}(AA[R-1].codePoints[0]);return AA.splice(R,1),AA.splice(R-tA,0,m)}}function s0(AA,R,V){var m=AA[R],T=AA[R].codePoints[0];if(V.hasGlyphForCodePoint(ya)){var P=Vi(V,ya,m.features),tA=0===V.glyphForCodePoint(T).advanceWidth?R:R+1;AA.splice(tA,0,P),R++}return R}var Dr={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},w0=2|Me_Ra|Me_CM|4|2048|4096,Ya=Me_ZWJ|Me_ZWNJ,Zi=Me_H|16384,Ta={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"}},Q0={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},qr=Dr.decompositions,Na=new S(u("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","base64")),d0=new I({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"]]}),un=function(AA){function R(){return AA.apply(this,arguments)||this}return E(R,AA),R.planFeatures=function(m){m.addStage(p0),m.addStage(["locl","ccmp"]),m.addStage(m0),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(I0),m.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),m.unicodeScript=function rs(AA){return Gr[AA]}(m.script),m.indicConfig=Ta[m.unicodeScript]||Ta.Default,m.isOldSpec=m.indicConfig.hasOldSpec&&"2"!==m.script[m.script.length-1]},R.assignFeatures=function(m,T){for(var P=function(cA){var sA=T[cA].codePoints[0],SA=Q0[sA]||qr[sA];if(SA){var WA=SA.map(function(at){var _A=m.font.glyphForCodePoint(at);return new li(m.font,_A.id,[at],T[cA].features)});T.splice.apply(T,[cA,1].concat(WA))}},tA=T.length-1;tA>=0;tA--)P(tA)},R}(Ei);function _r(AA){return Na.get(AA.codePoints[0])>>8}function Sa(AA){return 1<<(255&Na.get(AA.codePoints[0]))}H(un,"zeroMarkWidths","NONE");var vr=function(R,V,m,T){this.category=R,this.position=V,this.syllableType=m,this.syllable=T};function p0(AA,R){for(var P,V=0,m=0,T=c(d0.match(R.map(_r)));!(P=T()).done;){var tA=P.value,lA=tA[0],cA=tA[1],sA=tA[2];if(lA>m){++V;for(var SA=m;SAGt);break;case"First":for(var Qe=(mt=sA)+1;QeGe&&!(mi(R[He])||qe&&R[He].shaperInfo.category===Me_H);He--);if(R[He].shaperInfo.category!==Me_H&&He>Ge){var pe=R[Ge];R.splice.apply(R,[Ge,0].concat(R.splice(Ge+1,He-Ge))),R[He]=pe}break}for(var Le=ee.Start,_e=sA;_esA;$e--)if(R[$e-1].shaperInfo.position!==ee.Pre_M){he.position=R[$e-1].shaperInfo.position;break}}else he.position!==ee.SMVD&&(Le=he.position)}for(var Un=mt,hn=mt+1;hnsA&&!mi(R[Pn]))}}}}function I0(AA,R,V){for(var m=V.indicConfig,T=AA._layoutEngine.engine.GSUBProcessor.features,P=0,tA=yr(R,0);P=ee.Base_C){if(lA&&cA+1ee.Base_C&&cA--;break}if(cA===tA&&PP&&!(R[WA].shaperInfo.category&(Me_M|Zi));)WA--;gi(R[WA])&&R[WA].shaperInfo.position!==ee.Pre_M?WA+1P;at--)if(R[at-1].shaperInfo.position===ee.Pre_M){var _A=at-1;_AP&&R[dt].shaperInfo.position===ee.SMVD;)dt--;if(gi(R[dt]))for(var $t=cA+1;$tP&&!(R[ge-1].shaperInfo.category&(Me_M|Zi));)ge--;if(ge>P&&R[ge-1].shaperInfo.category===Me_M)for(var Ee=ae,Qe=cA+1;QeP&&gi(R[ge-1])&&ge=AA.length)return R;for(var V=AA[R].shaperInfo.syllable;++R=0;tA--)P(tA)},R}(Ei);function La(AA){return ba.get(AA.codePoints[0])}H(we,"zeroMarkWidths","BEFORE_GPOS");var y0=function(R,V,m){this.category=R,this.syllableType=V,this.syllable=m};function x0(AA,R){for(var T,V=0,m=c(v0.match(R.map(La)));!(T=m()).done;){var P=T.value,tA=P[0],lA=P[1],cA=P[2];++V;for(var sA=tA;sA<=lA;sA++)R[sA].shaperInfo=new y0(D0[La(R[sA])],cA[0],V);for(var SA="R"===R[tA].shaperInfo.category?1:Math.min(3,lA-tA),WA=tA;WA1)for(P=m+1;P=AA.length)return R;for(var V=AA[R].shaperInfo.syllable;++R=0;bn--)this.glyphs.splice(ge[bn],1);return this.glyphs[this.glyphIterator.index]=qe,!0}}return!1;case 5:return this.applyContext(P);case 6:return this.applyChainingContext(P);case 7:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("GSUB lookupType ".concat(T," is not supported"))}},R}(wr),$r=function(AA){function R(){return AA.apply(this,arguments)||this}E(R,AA);var V=R.prototype;return V.applyPositionValue=function(T,P){var tA=this.positions[this.glyphIterator.peekIndex(T)];null!=P.xAdvance&&(tA.xAdvance+=P.xAdvance),null!=P.yAdvance&&(tA.yAdvance+=P.yAdvance),null!=P.xPlacement&&(tA.xOffset+=P.xPlacement),null!=P.yPlacement&&(tA.yOffset+=P.yPlacement);var lA=this.font._variationProcessor,cA=this.font.GDEF&&this.font.GDEF.itemVariationStore;lA&&cA&&(P.xPlaDevice&&(tA.xOffset+=lA.getDelta(cA,P.xPlaDevice.a,P.xPlaDevice.b)),P.yPlaDevice&&(tA.yOffset+=lA.getDelta(cA,P.yPlaDevice.a,P.yPlaDevice.b)),P.xAdvDevice&&(tA.xAdvance+=lA.getDelta(cA,P.xAdvDevice.a,P.xAdvDevice.b)),P.yAdvDevice&&(tA.yAdvance+=lA.getDelta(cA,P.yAdvDevice.a,P.yAdvDevice.b)))},V.applyLookup=function(T,P){switch(T){case 1:var tA=this.coverageIndex(P.coverage);if(-1===tA)return!1;switch(P.version){case 1:this.applyPositionValue(0,P.value);break;case 2:this.applyPositionValue(0,P.values.get(tA))}return!0;case 2:var lA=this.glyphIterator.peek();if(!lA)return!1;var cA=this.coverageIndex(P.coverage);if(-1===cA)return!1;switch(P.version){case 1:for(var WA,SA=c(P.pairSets.get(cA));!(WA=SA()).done;){var at=WA.value;if(at.secondGlyph===lA.id)return this.applyPositionValue(0,at.value1),this.applyPositionValue(1,at.value2),!0}return!1;case 2:var _A=this.getClassID(this.glyphIterator.cur.id,P.classDef1),lt=this.getClassID(lA.id,P.classDef2);if(-1===_A||-1===lt)return!1;var dt=P.classRecords.get(_A).get(lt);return this.applyPositionValue(0,dt.value1),this.applyPositionValue(1,dt.value2),!0}case 3:var mt=this.glyphIterator.peekIndex(),Gt=this.glyphs[mt];if(!Gt)return!1;var $t=P.entryExitRecords[this.coverageIndex(P.coverage)];if(!$t||!$t.exitAnchor)return!1;var _t=P.entryExitRecords[this.coverageIndex(P.coverage,Gt.id)];if(!_t||!_t.entryAnchor)return!1;var ae=this.getAnchor(_t.entryAnchor),ge=this.getAnchor($t.exitAnchor),Ee=this.positions[this.glyphIterator.index],Qe=this.positions[mt];switch(this.direction){case"ltr":Ee.xAdvance=ge.x+Ee.xOffset;var ze=ae.x+Qe.xOffset;Qe.xAdvance-=ze,Qe.xOffset-=ze;break;case"rtl":Ee.xAdvance-=ze=ge.x+Ee.xOffset,Ee.xOffset-=ze,Qe.xAdvance=ae.x+Qe.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=mt,Ee.yOffset=ae.y-ge.y):(Gt.cursiveAttachment=this.glyphIterator.index,Ee.yOffset=ge.y-ae.y),!0;case 4:var rn=this.coverageIndex(P.markCoverage);if(-1===rn)return!1;for(var be=this.glyphIterator.index;--be>=0&&(this.glyphs[be].isMark||this.glyphs[be].ligatureComponent>0););if(be<0)return!1;var fe=this.coverageIndex(P.baseCoverage,this.glyphs[be].id);if(-1===fe)return!1;var qe=P.markArray[rn];return this.applyAnchor(qe,P.baseArray[fe][qe.class],be),!0;case 5:var He=this.coverageIndex(P.markCoverage);if(-1===He)return!1;for(var pe=this.glyphIterator.index;--pe>=0&&this.glyphs[pe].isMark;);if(pe<0)return!1;var Le=this.coverageIndex(P.ligatureCoverage,this.glyphs[pe].id);if(-1===Le)return!1;var _e=P.ligatureArray[Le],he=this.glyphIterator.cur,$e=this.glyphs[pe],Un=$e.ligatureID&&$e.ligatureID===he.ligatureID&&he.ligatureComponent>0?Math.min(he.ligatureComponent,$e.codePoints.length)-1:$e.codePoints.length-1,hn=P.markArray[He];return this.applyAnchor(hn,_e[Un][hn.class],pe),!0;case 6:var Tn=this.coverageIndex(P.mark1Coverage);if(-1===Tn)return!1;var bn=this.glyphIterator.peekIndex(-1),Mn=this.glyphs[bn];if(!Mn||!Mn.isMark)return!1;var Ln=this.glyphIterator.cur,wn=!1;if(Ln.ligatureID===Mn.ligatureID?Ln.ligatureID?Ln.ligatureComponent===Mn.ligatureComponent&&(wn=!0):wn=!0:(Ln.ligatureID&&!Ln.ligatureComponent||Mn.ligatureID&&!Mn.ligatureComponent)&&(wn=!0),!wn)return!1;var On=this.coverageIndex(P.mark2Coverage,Mn.id);if(-1===On)return!1;var me=P.mark1Array[Tn];return this.applyAnchor(me,P.mark2Array[On][me.class],bn),!0;case 7:return this.applyContext(P);case 8:return this.applyChainingContext(P);case 9:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("Unsupported GPOS table: ".concat(T))}},V.applyAnchor=function(T,P,tA){var lA=this.getAnchor(P),cA=this.getAnchor(T.markAnchor),SA=this.positions[this.glyphIterator.index];SA.xOffset=lA.x-cA.x,SA.yOffset=lA.y-cA.y,this.glyphIterator.cur.markAttachment=tA},V.getAnchor=function(T){var P=T.xCoordinate,tA=T.yCoordinate,lA=this.font._variationProcessor,cA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return lA&&cA&&(T.xDeviceTable&&(P+=lA.getDelta(cA,T.xDeviceTable.a,T.xDeviceTable.b)),T.yDeviceTable&&(tA+=lA.getDelta(cA,T.yDeviceTable.a,T.yDeviceTable.b))),{x:P,y:tA}},V.applyFeatures=function(T,P,tA){AA.prototype.applyFeatures.call(this,T,P,tA);for(var lA=0;lA>16;if(0===T)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(T){case 1:return 113824<=m&&m<=113827||119155<=m&&m<=119162;case 14:return 917504<=m&&m<=921599;default:return!1}},R.getAvailableFeatures=function(m,T){var P=[];return this.engine&&P.push.apply(P,this.engine.getAvailableFeatures(m,T)),this.font.kern&&-1===P.indexOf("kern")&&P.push("kern"),P},R.stringsForGlyph=function(m){for(var lA,T=new Set,tA=c(this.font._cmapProcessor.codePointsForGlyph(m));!(lA=tA()).done;)T.add(String.fromCodePoint(lA.value));if(this.engine&&this.engine.stringsForGlyph)for(var SA,sA=c(this.engine.stringsForGlyph(m));!(SA=sA()).done;)T.add(SA.value);return Array.from(T)},AA}(),Ga={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},Fr=function(){function AA(){this.commands=[],this._bbox=null,this._cbox=null}var R=AA.prototype;return R.toFunction=function(){var m=this;return function(T){m.commands.forEach(function(P){return T[P.command].apply(T,P.args)})}},R.toSVG=function(){return this.commands.map(function(T){var P=T.args.map(function(tA){return Math.round(100*tA)/100});return"".concat(Ga[T.command]).concat(P.join(" "))}).join("")},R.mapPoints=function(m){for(var tA,T=new AA,P=c(this.commands);!(tA=P()).done;){for(var lA=tA.value,cA=[],sA=0;sA0&&this.codePoints.every(v.isMark),this.isLigature=this.codePoints.length>1}var R=AA.prototype;return R._getPath=function(){return new Fr},R._getCBox=function(){return this.path.cbox},R._getBBox=function(){return this.path.bbox},R._getTableMetrics=function(m){if(this.id"u"||null===m)&&(m=this.cbox),(SA=this._font["OS/2"])&&SA.version>0)cA=Math.abs(SA.typoAscender-SA.typoDescender),sA=SA.typoAscender-m.maxY;else{var WA=this._font.hhea;cA=Math.abs(WA.ascent-WA.descent),sA=WA.ascent-m.maxY}return this._font._variationProcessor&&this._font.HVAR&&(P+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:P,advanceHeight:cA,leftBearing:tA,topBearing:sA}},R.getScaledPath=function(m){return this.path.scale(1/this._font.unitsPerEm*m)},R._getName=function(){var m=this._font.post;if(!m)return null;switch(m.version){case 1:return Xi[this.id];case 2:var T=m.glyphNameIndex[this.id];return T0?this._decodeSimple(cA,tA):cA.numberOfContours<0&&this._decodeComposite(cA,tA,lA),cA},V._decodeSimple=function(T,P){T.points=[];var tA=new e.Array(e.uint16,T.numberOfContours).decode(P);T.instructions=new e.Array(e.uint8,e.uint16).decode(P);for(var lA=[],cA=tA[tA.length-1]+1;lA.length=0,0,0);T.points.push(_A)}var lt=0;for(at=0;at>1,sA.length=0}function qe(He,pe){Gt&&cA.closePath(),cA.moveTo(He,pe),Gt=!0}return function He(){for(;P.pos1&&be(),lt+=sA.shift(),qe(_A,lt);break;case 5:for(;sA.length>=2;)_A+=sA.shift(),lt+=sA.shift(),cA.lineTo(_A,lt);break;case 6:case 7:for(var Le=6===pe;sA.length>=1;)Le?_A+=sA.shift():lt+=sA.shift(),cA.lineTo(_A,lt),Le=!Le;break;case 8:for(;sA.length>0;){var me=_A+sA.shift(),Se=lt+sA.shift(),Fe=me+sA.shift(),We=Se+sA.shift();_A=Fe+sA.shift(),lt=We+sA.shift(),cA.bezierCurveTo(me,Se,Fe,We,_A,lt)}break;case 10:var _e=sA.pop()+Ee,he=ge[_e];if(he){mt[_e]=!0;var $e=P.pos,Un=lA;P.pos=he.offset,lA=he.offset+he.length,He(),P.pos=$e,lA=Un}break;case 11:if(T.version>=2)break;return;case 14:if(T.version>=2)break;sA.length>0&&be(),Gt&&(cA.closePath(),Gt=!1);break;case 15:if(T.version<2)throw new Error("vsindex operator not supported in CFF v1");ze=sA.pop();break;case 16:if(T.version<2)throw new Error("blend operator not supported in CFF v1");if(!rn)throw new Error("blend operator in non-variation font");for(var hn=rn.getBlendVector(Qe,ze),vn=sA.pop(),Tn=vn*hn.length,bn=sA.length-Tn,Mn=bn-vn,Ln=0;Ln>3;break;case 21:sA.length>2&&be(),_A+=sA.shift(),lt+=sA.shift(),qe(_A,lt);break;case 22:sA.length>1&&be(),qe(_A+=sA.shift(),lt);break;case 24:for(;sA.length>=8;)me=_A+sA.shift(),Se=lt+sA.shift(),Fe=me+sA.shift(),We=Se+sA.shift(),_A=Fe+sA.shift(),lt=We+sA.shift(),cA.bezierCurveTo(me,Se,Fe,We,_A,lt);_A+=sA.shift(),lt+=sA.shift(),cA.lineTo(_A,lt);break;case 25:for(;sA.length>=8;)_A+=sA.shift(),lt+=sA.shift(),cA.lineTo(_A,lt);me=_A+sA.shift(),Se=lt+sA.shift(),Fe=me+sA.shift(),We=Se+sA.shift(),_A=Fe+sA.shift(),lt=We+sA.shift(),cA.bezierCurveTo(me,Se,Fe,We,_A,lt);break;case 26:for(sA.length%2&&(_A+=sA.shift());sA.length>=4;)me=_A,Se=lt+sA.shift(),Fe=me+sA.shift(),We=Se+sA.shift(),_A=Fe,lt=We+sA.shift(),cA.bezierCurveTo(me,Se,Fe,We,_A,lt);break;case 27:for(sA.length%2&&(lt+=sA.shift());sA.length>=4;)me=_A+sA.shift(),Se=lt,Fe=me+sA.shift(),We=Se+sA.shift(),_A=Fe+sA.shift(),cA.bezierCurveTo(me,Se,Fe,We,_A,lt=We);break;case 28:sA.push(P.readInt16BE());break;case 29:_e=sA.pop()+_t,(he=$t[_e])&&(dt[_e]=!0,$e=P.pos,Un=lA,P.pos=he.offset,lA=he.offset+he.length,He(),P.pos=$e,lA=Un);break;case 30:case 31:for(Le=31===pe;sA.length>=4;)Le?(me=_A+sA.shift(),Se=lt,Fe=me+sA.shift(),We=Se+sA.shift(),lt=We+sA.shift(),_A=Fe+(1===sA.length?sA.shift():0)):(me=_A,Se=lt+sA.shift(),Fe=me+sA.shift(),We=Se+sA.shift(),_A=Fe+sA.shift(),lt=We+(1===sA.length?sA.shift():0)),cA.bezierCurveTo(me,Se,Fe,We,_A,lt),Le=!Le;break;case 12:switch(pe=P.readUInt8()){case 3:var Je=sA.pop(),sn=sA.pop();sA.push(Je&&sn?1:0);break;case 4:Je=sA.pop(),sn=sA.pop(),sA.push(Je||sn?1:0);break;case 5:Je=sA.pop(),sA.push(Je?0:1);break;case 9:Je=sA.pop(),sA.push(Math.abs(Je));break;case 10:Je=sA.pop(),sn=sA.pop(),sA.push(Je+sn);break;case 11:Je=sA.pop(),sn=sA.pop(),sA.push(Je-sn);break;case 12:Je=sA.pop(),sn=sA.pop(),sA.push(Je/sn);break;case 14:Je=sA.pop(),sA.push(-Je);break;case 15:Je=sA.pop(),sn=sA.pop(),sA.push(Je===sn?1:0);break;case 18:sA.pop();break;case 20:var na=sA.pop(),Pn=sA.pop();SA[Pn]=na;break;case 21:Pn=sA.pop(),sA.push(SA[Pn]||0);break;case 22:var ia=sA.pop(),ra=sA.pop(),Ll=sA.pop(),eo=sA.pop();sA.push(Ll<=eo?ia:ra);break;case 23:sA.push(Math.random());break;case 24:Je=sA.pop(),sn=sA.pop(),sA.push(Je*sn);break;case 26:Je=sA.pop(),sA.push(Math.sqrt(Je));break;case 27:Je=sA.pop(),sA.push(Je,Je);break;case 28:Je=sA.pop(),sn=sA.pop(),sA.push(sn,Je);break;case 29:(Pn=sA.pop())<0?Pn=0:Pn>sA.length-1&&(Pn=sA.length-1),sA.push(sA[Pn]);break;case 30:var Sr=sA.pop(),qi=sA.pop();if(qi>=0)for(;qi>0;){for(var aa=sA[Sr-1],Ur=Sr-2;Ur>=0;Ur--)sA[Ur+1]=sA[Ur];sA[0]=aa,qi--}else for(;qi<0;){aa=sA[0];for(var Pi=0;Pi<=Sr;Pi++)sA[Pi]=sA[Pi+1];sA[Sr-1]=aa,qi++}break;case 34:me=_A+sA.shift(),Se=lt,Fe=me+sA.shift(),We=Se+sA.shift();var _i=Fe+sA.shift(),$i=We,Ar=_i+sA.shift(),tr=$i,er=Ar+sA.shift(),nr=tr,ir=er+sA.shift(),rr=nr;_A=ir,lt=rr,cA.bezierCurveTo(me,Se,Fe,We,_i,$i),cA.bezierCurveTo(Ar,tr,er,nr,ir,rr);break;case 35:for(var Qi=[],no=0;no<=5;no++)_A+=sA.shift(),lt+=sA.shift(),Qi.push(_A,lt);cA.bezierCurveTo.apply(cA,Qi.slice(0,6)),cA.bezierCurveTo.apply(cA,Qi.slice(6)),sA.shift();break;case 36:me=_A+sA.shift(),Se=lt+sA.shift(),Fe=me+sA.shift(),tr=$i=We=Se+sA.shift(),er=(Ar=(_i=Fe+sA.shift())+sA.shift())+sA.shift(),nr=tr+sA.shift(),ir=er+sA.shift(),_A=ir,lt=rr=nr,cA.bezierCurveTo(me,Se,Fe,We,_i,$i),cA.bezierCurveTo(Ar,tr,er,nr,ir,rr);break;case 37:var io=_A,ro=lt;Qi=[];for(var ao=0;ao<=4;ao++)_A+=sA.shift(),lt+=sA.shift(),Qi.push(_A,lt);Math.abs(_A-io)>Math.abs(lt-ro)?(_A+=sA.shift(),lt=ro):(_A=io,lt+=sA.shift()),Qi.push(_A,lt),cA.bezierCurveTo.apply(cA,Qi.slice(0,6)),cA.bezierCurveTo.apply(cA,Qi.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(pe))}break;default:throw new Error("Unknown op: ".concat(pe))}else if(pe<247)sA.push(pe-139);else if(pe<251){var oa=P.readUInt8();sA.push(256*(pe-247)+oa+108)}else pe<255?(oa=P.readUInt8(),sA.push(256*-(pe-251)-oa-108)):sA.push(P.readInt32BE()/65536)}}(),Gt&&cA.closePath(),cA},R}(Tr),X0=new e.Struct({originX:e.uint16,originY:e.uint16,type:new e.String(4),data:new e.Buffer(function(AA){return AA.parent.buflen-AA._currentOffset})}),q0=function(AA){function R(){return AA.apply(this,arguments)||this}E(R,AA);var V=R.prototype;return V.getImageForSize=function(T){for(var P=0;P=T)break}var lA=tA.imageOffsets,cA=lA[this.id],sA=lA[this.id+1];return cA===sA?null:(this._font.stream.pos=cA,X0.decode(this._font.stream,{buflen:sA-cA}))},V.render=function(T,P){var tA=this.getImageForSize(P);null!=tA&&T.image(tA.data,{height:P,x:tA.originX,y:P/this._font.unitsPerEm*(this.bbox.minY-tA.originY)}),this._font.sbix.flags.renderOutlines&&AA.prototype.render.call(this,T,P)},R}(Nr),ja=function(R,V){this.glyph=R,this.color=V},_0=function(AA){function R(){return AA.apply(this,arguments)||this}E(R,AA);var V=R.prototype;return V._getBBox=function(){for(var T=new Jn,P=0;P>1;if(this.id<(sA=P.baseGlyphRecord[cA]).gid)lA=cA-1;else{if(!(this.id>sA.gid)){var SA=sA;break}tA=cA+1}}if(null==SA){var WA=this._font._getBaseGlyph(this.id);return[new ja(WA,at={red:0,green:0,blue:0,alpha:255})]}for(var _A=[],lt=SA.firstLayerIndex;lt=1&&T[P]=P.glyphCount)){var tA=P.offsets[m];if(tA!==P.offsets[m+1]){var lA=this.font.stream;if(lA.pos=tA,!(lA.pos>=lA.length)){var cA=lA.readUInt16BE(),sA=tA+lA.readUInt16BE();if(32768&cA){var SA=lA.pos;lA.pos=sA;var WA=this.decodePoints();sA=lA.pos,lA.pos=SA}var at=T.map(function(hn){return hn.copy()});cA&=4095;for(var _A=0;_A=P.globalCoordCount)throw new Error("Invalid gvar table");mt=P.globalCoords[4095&dt]}if(16384&dt){for(var $t=[],_t=0;_ttA[SA])return 0;sA=lA[SA]Math.max(0,T[SA]))return 0;sA=(sA*lA[SA]+Number.EPSILON)/(T[SA]+Number.EPSILON)}}return sA},R.interpolateMissingDeltas=function(m,T,P){if(0!==m.length)for(var tA=0;tAcA)){var SA=tA,WA=tA;for(tA++;tA<=cA;)P[tA]&&(this.deltaInterpolate(WA+1,tA-1,WA,tA,T,m),WA=tA),tA++;WA===SA?this.deltaShift(lA,cA,WA,T,m):(this.deltaInterpolate(WA+1,cA,WA,SA,T,m),SA>0&&this.deltaInterpolate(lA,SA-1,WA,SA,T,m)),tA=cA+1}}},R.deltaInterpolate=function(m,T,P,tA,lA,cA){if(!(m>T))for(var sA=["x","y"],SA=0;SAlA[tA][WA]){var at=P;P=tA,tA=at}var _A=lA[P][WA],lt=lA[tA][WA],dt=cA[P][WA],mt=cA[tA][WA];if(_A!==lt||dt===mt)for(var Gt=_A===lt?0:(mt-dt)/(lt-_A),$t=m;$t<=T;$t++){var _t=lA[$t][WA];_t<=_A?_t+=dt-_A:_t>=lt?_t+=mt-lt:_t=dt+(_t-_A)*Gt,cA[$t][WA]=_t}}},R.deltaShift=function(m,T,P,tA,lA){var cA=lA[P].x-tA[P].x,sA=lA[P].y-tA[P].y;if(0!==cA||0!==sA)for(var SA=m;SA<=T;SA++)SA!==P&&(lA[SA].x+=cA,lA[SA].y+=sA)},R.getAdvanceAdjustment=function(m,T){var P,tA;if(T.advanceWidthMapping){var lA=m;lA>=T.advanceWidthMapping.mapCount&&(lA=T.advanceWidthMapping.mapCount-1);var sA=T.advanceWidthMapping.mapData[lA];P=sA.outerIndex,tA=sA.innerIndex}else P=0,tA=m;return this.getDelta(T.itemVariationStore,P,tA)},R.getDelta=function(m,T,P){if(T>=m.itemVariationData.length)return 0;var tA=m.itemVariationData[T];if(P>=tA.deltaSets.length)return 0;for(var lA=tA.deltaSets[P],cA=this.getBlendVector(m,T),sA=0,SA=0;SA_A.peakCoord||_A.peakCoord>_A.endCoord||_A.startCoord<0&&_A.endCoord>0&&0!==_A.peakCoord||0===_A.peakCoord?1:tA[at]<_A.startCoord||tA[at]>_A.endCoord?0:tA[at]===_A.peakCoord?1:tA[at]<_A.peakCoord?(tA[at]-_A.startCoord+Number.EPSILON)/(_A.peakCoord-_A.startCoord+Number.EPSILON):(_A.endCoord-tA[at]+Number.EPSILON)/(_A.endCoord-_A.peakCoord+Number.EPSILON)}lA[cA]=sA}return this.blendVectors.set(P,lA),lA},AA}(),ol=Promise.resolve(),Li=function(){function AA(V){this.font=V,this.glyphs=[],this.mapping={},this.includeGlyph(0)}var R=AA.prototype;return R.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]},R.encodeStream=function(){var m=this,T=new e.EncodeStream;return ol.then(function(){return m.encode(T),T.end()}),T},AA}(),Za=function(){function AA(){}return AA.size=function(V){return V>=0&&V<=255?1:2},AA.encode=function(V,m){m>=0&&m<=255?V.writeUInt8(m):V.writeInt16BE(m)},AA}(),Xa=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(Za,0),yPoints:new e.Array(Za,0)}),fl=function(){function AA(){}var R=AA.prototype;return R.encodeSimple=function(m,T){void 0===T&&(T=[]);for(var P=[],tA=[],lA=[],cA=[],sA=0,SA=0,WA=0,at=0,_A=0,lt=0;lt0&&(cA.push(sA),sA=0),cA.push(_t),at=_t),SA=Gt,WA=$t,_A++}"closePath"===dt.command&&P.push(_A-1)}m.commands.length>1&&"closePath"!==m.commands[m.commands.length-1].command&&P.push(_A-1);var Qe=m.bbox,ze={numberOfContours:P.length,xMin:Qe.minX,yMin:Qe.minY,xMax:Qe.maxX,yMax:Qe.maxY,endPtsOfContours:P,instructions:T,flags:cA,xPoints:tA,yPoints:lA},rn=Xa.size(ze),be=4-rn%4,fe=new e.EncodeStream(rn+be);return Xa.encode(fe,ze),0!==be&&fe.fill(0,be),fe.buffer},R._encodePoint=function(m,T,P,tA,lA,cA){var sA=m-T;return m===T?tA|=cA:(-255<=sA&&sA<=255&&(tA|=lA,sA<0?sA=-sA:tA|=cA),P.push(sA)),tA},AA}(),hl=function(AA){function R(m){var T;return(T=AA.call(this,m)||this).glyphEncoder=new fl,T}E(R,AA);var V=R.prototype;return V._addGlyph=function(T){var P=this.font.getGlyph(T),tA=P._decode(),lA=this.font.loca.offsets[T],cA=this.font.loca.offsets[T+1],sA=this.font._getTableStream("glyf");sA.pos+=lA;var SA=sA.readBuffer(cA-lA);if(tA&&tA.numberOfContours<0){SA=u.from(SA);for(var at,WA=c(tA.components);!(at=WA()).done;){var _A=at.value;T=this.includeGlyph(_A.glyphID),SA.writeUInt16BE(T,_A.pos)}}else tA&&this.font._variationProcessor&&(SA=this.glyphEncoder.encodeSimple(P.path,tA.instructions));return this.glyf.push(SA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:P.advanceWidth,bearing:P._getMetrics().leftBearing}),this.offset+=SA.length,this.glyf.length-1},V.encode=function(T){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var P=0;P255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},tA=Object.assign({},this.cff.topDict);tA.Private=null,tA.charset=P,tA.Encoding=null,tA.CharStrings=this.charstrings;for(var lA=0,cA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];lA0&&Object.defineProperty(this,T,{get:this._getTable.bind(this,P)})}}AA.probe=function(m){var T=m.toString("ascii",0,4);return"true"===T||"OTTO"===T||T===String.fromCharCode(0,1,0,0)};var R=AA.prototype;return R.setDefaultLanguage=function(m){void 0===m&&(m=null),this.defaultLanguage=m},R._getTable=function(m){if(!(m.tag in this._tables))try{this._tables[m.tag]=this._decodeTable(m)}catch(T){D.logErrors&&(console.error("Error decoding table ".concat(m.tag)),console.error(T.stack))}return this._tables[m.tag]},R._getTableStream=function(m){var T=this.directory.tables[m];return T?(this.stream.pos=T.offset,this.stream):null},R._decodeDirectory=function(){return this.directory=sr.decode(this.stream,{_startOffset:0})},R._decodeTable=function(m){var T=this.stream.pos,P=this._getTableStream(m.tag),tA=le[m.tag].decode(P,this,m.length);return this.stream.pos=T,tA},R.getName=function(m,T){void 0===T&&(T=this.defaultLanguage||D.defaultLanguage);var P=this.name&&this.name.records[m];return P&&(P[T]||P[this.defaultLanguage]||P[D.defaultLanguage]||P.en||P[Object.keys(P)[0]])||null},R.hasGlyphForCodePoint=function(m){return!!this._cmapProcessor.lookup(m)},R.glyphForCodePoint=function(m){return this.getGlyph(this._cmapProcessor.lookup(m),[m])},R.glyphsForString=function(m){for(var T=[],P=m.length,tA=0,lA=-1,cA=-1;tA<=P;){var sA=0,SA=0;if(tA>>6&3},transformed:function(R){return"glyf"===R.tag||"loca"===R.tag?0===R.transformVersion:0!==R.transformVersion},transformLength:new e.Optional(_a,function(AA){return AA.transformed})}),$a=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(pl,"numTables")});$a.process=function(){for(var AA={},R=0;R0){for(var sA=[],SA=0,WA=0;WA>7);if((sA&=127)<10)lA=0,cA=ti(sA,((14&sA)<<7)+R.readUInt8());else if(sA<20)lA=ti(sA,((sA-10&14)<<7)+R.readUInt8()),cA=0;else if(sA<84)lA=ti(sA,1+(48&(WA=sA-20))+((at=R.readUInt8())>>4)),cA=ti(sA>>1,1+((12&WA)<<2)+(15&at));else if(sA<120){var WA;lA=ti(sA,1+((WA=sA-84)/12<<8)+R.readUInt8()),cA=ti(sA>>1,1+(WA%12>>2<<8)+R.readUInt8())}else if(sA<124){var at=R.readUInt8(),_A=R.readUInt8();lA=ti(sA,(at<<4)+(_A>>4)),cA=ti(sA>>1,((15&_A)<<8)+R.readUInt8())}else lA=ti(sA,R.readUInt16BE()),cA=ti(sA>>1,R.readUInt16BE());P.push(new ui(SA,!1,T+=lA,m+=cA))}return P}var xl=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}}),Fl=function(){function AA(V){if(this.stream=V,"ttcf"!==V.readString(4))throw new Error("Not a TrueType collection");this.header=xl.decode(V)}return AA.probe=function(m){return"ttcf"===m.toString("ascii",0,4)},AA.prototype.getFont=function(m){for(var P,T=c(this.header.offsets);!(P=T()).done;){var tA=P.value,lA=new e.DecodeStream(this.stream.buffer);lA.pos=tA;var cA=new Ii(lA);if(cA.postscriptName===m)return cA}return null},s(AA,[{key:"fonts",get:function(){for(var P,m=[],T=c(this.header.offsets);!(P=T()).done;){var tA=P.value,lA=new e.DecodeStream(this.stream.buffer);lA.pos=tA,m.push(new Ii(lA))}return m}}]),AA}(),Yl=new e.String(e.uint8),Tl=(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})),Nl=new e.Struct({name:new e.String(4),maxTypeIndex:e.uint16,refList:new e.Pointer(e.uint16,new e.Array(Tl,function(AA){return AA.maxTypeIndex+1}),{type:"parent"})}),Sl=new e.Struct({length:e.uint16,types:new e.Array(Nl,function(AA){return AA.length+1})}),Ul=new e.Struct({reserved:new e.Reserved(e.uint8,24),typeList:new e.Pointer(e.uint16,Sl),nameListOffset:new e.Pointer(e.uint16,"void")}),to=new e.Struct({dataOffset:e.uint32,map:new e.Pointer(e.uint32,Ul),dataLength:e.uint32,mapLength:e.uint32}),bl=function(){function AA(V){this.stream=V,this.header=to.decode(this.stream);for(var T,m=c(this.header.map.typeList.types);!(T=m()).done;){for(var lA,P=T.value,tA=c(P.refList);!(lA=tA()).done;){var cA=lA.value;cA.nameOffset>=0?(this.stream.pos=cA.nameOffset+this.header.map.nameListOffset,cA.name=Yl.decode(this.stream)):cA.name=null}"sfnt"===P.name&&(this.sfnt=P)}}return AA.probe=function(m){var T=new e.DecodeStream(m);try{var P=to.decode(T)}catch{return!1}for(var lA,tA=c(P.map.typeList.types);!(lA=tA()).done;)if("sfnt"===lA.value.name)return!0;return!1},AA.prototype.getFont=function(m){if(!this.sfnt)return null;for(var P,T=c(this.sfnt.refList);!(P=T()).done;){var cA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4)),sA=new Ii(cA);if(sA.postscriptName===m)return sA}return null},s(AA,[{key:"fonts",get:function(){for(var P,m=[],T=c(this.sfnt.refList);!(P=T()).done;){var cA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4));m.push(new Ii(cA))}return m}}]),AA}();D.registerFormat(Ii),D.registerFormat(wl),D.registerFormat(Ml),D.registerFormat(Fl),D.registerFormat(bl),N.exports=D},87337:function(N,A,n){"use strict";var u=n(14781),a=n(79742),o=n(22055),s=o.BK,g=o.CR,h=o.LF,E=o.NL,r=o.SG,c=o.WJ,Q=o.SP,C=o.ZWJ,w=o.BA,e=o.HY,f=o.NS,p=o.AI,v=o.AL,S=o.CJ,I=o.HL,M=o.RI,y=o.SA,F=o.XX,Y=n(28383),D=Y.DI_BRK,d=Y.IN_BRK,H=Y.CI_BRK,z=Y.CP_BRK,K=Y.pairTable,nA=new u(a.toByteArray("AAgOAAAAAACA3QAAAe0OEvHtnXuMXUUdx+d2d2/33r237V3YSoFC11r6IGgbRFBEfFF5KCVCMYKFaKn8AYqmwUeqECFabUGQipUiNCkgSRElUkKwJRWtwSpJrZpCI4E2NQqiBsFGwWL8Tu6Md3Z23o9zbund5JM5c+b1m9/85nnOuXtTHyFrwXpwL9gBngTPgj+Dv4H9Ae4B0N9PSAMcDqaB0X57urmIs8AQ72SEnQ4+ABaBxWAJWAquENJ9BtdfANeCleBGcCv4NvgeuBv8AGwCm8FWlpbzOPw7wC7wFNgDngMvgpfAq2DCACF10ACHgaPAzIF2+PFwT2Th1P8OuO8FZ4MPggvAxWAp+A6VHe5ysILFvx7u6oF2+Wvg3g7uYvlT+TbC/TH4CdgCtoGtfW3/E2An8++Gu5eleR7uP8B+8BoLf4LFH6i23Vp1rB5a1Q7TGMeCUYYY18RcxF0gxT8H5b3dIw8X3iPkdxauPwQWgyVgWbVT30/h+mrwZan8r8L/FcEWVsJ/E1grpKXcwdLdI9y/H9cPgUerbbun0PadCHcbjQd+D55mafcx9y9wXwKvCLJUJiLdRH09ef4xupqE/KeCY8Bx4M3gbeBdYCE4G3wYXASWgGXgSibTcuaugHs9WA3WgNvBBha2Ee4D4GFNPTYL9x/D9XaJXwnXvwW7wDPgTzQd2A9eAwODhDTBCJgOZoETwEngtEFmF3DPAouY/0K4Swb9dbaMpbkS7nKP9CsCyrpOSrNK8K9kNnYL7q0DGwbb/XnjoDv3gQfBZvBz8GvwO/AHdr3Pkv4F4fplj3J79OgRBx8HypajR48ePXr06NGjx8HFv7pABhX/HRx7HqKjr9Y+y6PXg7X2WRoPm1Kzpz8CcWaweLPhHt/fPq95C65PZnmfDnchOLfWPo/7OLgQ15ewdJ+E++na2PMhyudw72bDGc01CP8aWAm+Dr4BVoHV4IZeWC+sF9YL64UlD1sD1oE7au0z0zK5p1YuZde/R49uJnYdez/62EPgkVr4c7pHkfYXivTbcW8n2A32gOekOH+F/5/gAOivE9IArXpbrmlwR+vljz9bJrV552RCvgQ2GXgRzJ9CyGVTxofdLd17Gv6jW4RcAG5ote/9FO4B8NZhQs4DN4O9kOFY6OFSsB48C/qGCFkAyERCzh9q+0WuA2sqHX4m+Smv4t6RjXYelItwvQ7sBtOahHwU3NYcn+5Q4pFmRz89evTocajxStM898/FfLSgrg8/sT5+zcLDTkXY+6S0C+E/l907SXO+Rt/Lujrxe1kmztPU70JDvSmXILwJWS9TxLuC3VtuycPGCoV+VfD41yvKW6W4d1O9/S5YtZ+Qtbi+k/m/D/eHYBPzb4G7DfyS+enZ42/qnXPFp+pjZdgD/yX0XcV6+93DF+H+G5AhtcxPIs/BoY5cg0g7RRGXx/8Ewo8Y6vhp/Bnwz2F5zId7CgunZ6Dv1uTF0585pNY7P9NdhPCPDI1Ncyn8l4OrwHKwguVB12WrNPnpoPW5BWluA3eCuxRl3cfyfFCom43NBjkeQ9h2Tzlzs7PL5CmD3UwHew26+KMm7AVHu8hJaL1fTtj29L3E/wi6oPvWvkY7bAjucKOYtpymKWdGo/3e5KxGR8YTGvmfZ4XW46RGmnMIG6excs6Ae46nPuh7pGXbvm/fOB91vLhRXvkmlkKuK8BnFTb8xYL6TyqugbzXJZCZ9tlVrO9+C+53G5134A8G1htsjdbvXoT/KEBPmwq04dS2v6UxNnxbAXV5gul4Z6J+tMtBZtv4+Qzy2Ndof+fwPHP/zsbg/QFz02tIM4B9ZRO0mp379NxxBpgD5gv3T8H16eAMcCZYxMIWw/2YEG8pri9n/qvgfr45fm67VtjPzmbpVrJ7NzL3VrjvF/Jdh+sN3M/cB+A+LOV/bVNdX13b0G9KtmrSHCo8jvqfGjFu7WiWP37E8s2+yv8ZwVbYRgvMAm9kvMkhjStzAZbIBGIR+ngAy2NSZ9f0Hv2bIIShCckU5k5sb+OdGGQ0BKqSPzeE1WFCgWXK5dO2rDD/COn9zTvEUfXJ4zT3c9DP2oH2+ZoAtc9RBr/mY0SLdGyap+Nxh6W0In2Sn5C8/W00c/7dXn63we1DtAHud9WZbFNimmFL2iIoqt8eDPQHptERIkNoO8prFVvblm13OaG6oGM+n7P4/RrRz2HdTktotxHFdZW5tvm72UWEtm9dQF6n++hU1FmVFL++L2Nsdt3/1IVrWaacda4Se91t+pHDVXF5HFd9pG7X14NNyePr6wkfPTRI+H6qDPvLqRM5DR2beZ8W95Divq0IWXXyy/d18Yq09ZhyY/fyPjafY37yta8ybD9l3W15+crXYhQ5rsj2Wkb7iDadon1c+tKI4p5NR6HjPl/vqvLm92uK8lTjWNntkwJTu9hkiJmHVf3S1V5UOii6PWL1nVqOkP5QI/b2L2o+Kqr/h9i0bHNl9HudnKn0btKBbZzItQ7n47Drmutg6P+ubZK7/5va0PU8XZS56DP4Isci07gUo3/fscdlfMyp6xR6dy0vt/275K1bJ8qkHI99bdK3v4vt4Gtzs7sEWa5aZH4NDz3yfWG368bXLlQ6GZYQ7/UL1y3mryroZ+nkZwK28SD1vlt+7sNd+lcR3Ji1RKq1WcvhftFzousYxftH7Ngu2pZubcGfD8eMizp5Y/uha/m69NNK5siSOapkcq2lTOOGvE4y9aPclFl20eXTvwoZO374ymob90Jx3Zfk2h/I849q7VNE+WXsj+ZFlJ96Xcd1PyD4ue2J69/Q9V+u9uPrQC7/sHRftjE+n+eQP2Ztl5Kc+0TX/WND8vP2iF23xO7lfO3XtKfLhUm/PE6Ze78RD/3Fknr8i907yWsoUx+M3S+0SNjcHyu7qg6+aYvqF671TLXfTzU+2uaTnOOzbFc+7yHoZE59npIL175kay/ZxlKMH6a+NSJdl90XKXytpbMpTr/kP5zJfqxQDzneYWTstxh9pPPdYJ/CL8alTBag+fFvHFXtQMutWxBloOUMMHS6GWSyVYS4pvgmexXtVjc/TFWk9ZnnZLt3+caI10/8Xkb+hsYlfeh+QOyPNQN1S7hv2nqivEVSj/Ex+1lu73Ib1olbu4jpfN4ddbWbHN+/mcpWfUem+g7RhK4833SuepHbN0d5PjKF1kUll3xPFc5d+btTW9uqdCHXwaQ7kw252ENIW9vKTdEfTLox+VPYT6r8XXUWq7tYuXyZnEAG+ic+pwyVdRLDp8wcOp0kEZNXzLyqw3f+yEkjMI1sFznk8ulDKcoKlcFVlz75qPyu9+U8YuvnqnfXNDn6t6neNr3xfHj4JEU500ma8SSkjjodptBlTLurbI7rTxUnhcxF6d9W76KRbd6G3DdVNj2qia/qD3KY2O90elLJocpHJc90Q7kqVLqaLlGUjYj+Pg00jD8Xk+Wnf5UAN8c8HGrvXKYi+4irnsoo09ctU29Fll2UraSyaxnTOar8DFw+w60St+cRNlzfm9E9y9CNUTZM5/7iOTWR6imOgaKf/pn6hJw/f8dDdS6u0tNhDN1ZOlGUoauTrqyQNvCd21Mjy8N/T7AixBkQrm3tRKS0tngDwrWYzobuLFwXV3WfP5uR9TGTXdvc3BRVjq18l3rbwmaS8c9QByR4m3Sb/lPVX2V/M4naDkV79GFmJDad2NaLOdpBpxsbvs+/YubgVPO5bn3h+75BahnEOU/EVb+yTL7vQeTQp04GH/twfTYaCv9ehe8XXdZ0Ic+IY94Hcik/9h0Zk35c7MdWXo737HM/y6dllPENj9zeuvq7vMMYam88fZnfU7nOHznf6/AdP+W8ffXv2q6uelDlE1N/Wx+Prb/MG8ARBVJ0eb7rz5Tf6sl5l/G9nizDnJLJudZoaNqU/hbsCPH73dhu+03aWPiZhW9/yLHf8IGvT1OtzwZJ56yG/7YvX5sSdn+yof6x5av2ebxcV1dOZ9pDVgSXys/36uLzG1s5Nvj7pKo9axm2zsueylxeT1lWlQ4rkuuzx5f3+VXPPGIhgbLnKp/rtiJdcz2lOtMpAtMZV27E/kRttyaF83dFbf3NdYwXx6sZpH0uVkZ/VslmOrspa24V1+O56u3TdmXpQdaJy36wLPm4LZVR7jyp/CLOmULtzeWZoqstuLS9rhzTmqwIe3LVia0f2OSP3c/71Ec8V0itv6JtONbOXdb3Oc5YdcTaQVFzRWg7+z6HydnHy+qPoWO+j1yq8anofifWl7ri97chNiq/z6KyM37t8333sJR/SF/3bUvd+z+8nV3KNPWfIvt3mfNZijFAZT8xfXSekLfOtl3rHCuPzxrEdT7U9UvRjn3HKV5/XTuo2i3n+E3L5L+3yN+TkH+z07ZGDlkviuXLcX3aL7b+8m+duhCzJonp/yF9wabPItZhJmJ/N8pVfvn31Fok7PeiYsalFON4bPnyuOO7Ru2G+S52fqB5DAt55bJtXf2LtJdQParCVevHlqcufduvKJuQ5yxxvA/Zw6W0l5D3+nz7a4wdieXxd+FS2SjPN7Z9XXDRp62/dMv4GTM22uwx1/iTe7zTUSfjf1Mqld36EHv2xvPoprMnGfGvIiDHk+/x+EQTP7fMOjl928f0/855OTnaJ5XeQsevVHNojO5147ePXLH681mDqOBhqef/Ivp+7PMF1Vxs02kMITLK30zp/k+FbX1RdP/w1b2OMt9hiR1bKLHfZ+XWT+4+ahqzVM8iUug81r5tfTf3+JB6DPFpk1zllLUu9523cpPLdlR6zTVP+bShGFd1lh/Td33rVdT44WqTtjqktOtc87osc8x5hM9vyLrK49v+Pvmp7De0/vyvLJvk1C3+1OOyLyG/aSSud1L/TlLq/BoZ5M2xNj66IFRlT9fcT4GqDYosQ3df/G0zlR5U4UVzjAJZPpW8NlLI5lOejzwq+eS4rnWZbsjTx7ZUrq4sXdrQPmAa82Pb0HVuyZl3rrrZ7Nal/ULzdy0zBUXrMaQcU18v6ncmxd9eM/1fkdQ24Tvu+paZ2q5S6z13+anlTyVfrv4aWz/desfFfn3WEj727rNGKHJdlqsM1VompjzT+shXv7F75dj3J3K3qY7QM7DcZ2L/Aw==")),uA=function(kA){switch(kA){case p:case y:case r:case F:return v;case S:return f;default:return kA}},wA=function(kA){switch(kA){case h:case E:return s;case Q:return c;default:return kA}},NA=function(kA,W){void 0===W&&(W=!1),this.position=kA,this.required=W};N.exports=function(){function TA(W){this.string=W,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var kA=TA.prototype;return kA.nextCodePoint=function(){var fA=this.string.charCodeAt(this.pos++),iA=this.string.charCodeAt(this.pos);return 55296<=fA&&fA<=56319&&56320<=iA&&iA<=57343?(this.pos++,1024*(fA-55296)+(iA-56320)+65536):fA},kA.nextCharClass=function(){return uA(nA.get(this.nextCodePoint()))},kA.getSimpleBreak=function(){switch(this.nextClass){case Q:return!1;case s:case h:case E:return this.curClass=s,!1;case g:return this.curClass=g,!1}return null},kA.getPairTableBreak=function(fA){var iA=!1;switch(K[this.curClass][this.nextClass]){case D:iA=!0;break;case d:iA=fA===Q;break;case H:if(!(iA=fA===Q))return!1;break;case z:if(fA!==Q)return iA}return this.LB8a&&(iA=!1),!this.LB21a||this.curClass!==e&&this.curClass!==w?this.LB21a=this.curClass===I:(iA=!1,this.LB21a=!1),this.curClass===M?(this.LB30a++,2==this.LB30a&&this.nextClass===M&&(iA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,iA},kA.nextBreak=function(){if(null==this.curClass){var fA=this.nextCharClass();this.curClass=wA(fA),this.nextClass=fA,this.LB8a=fA===C,this.LB30a=0}for(;this.pos"u")&&(kA.working?kA(IA):IA instanceof ArrayBuffer)}function fA(IA){return"[object DataView]"===r(IA)}function iA(IA){return!(typeof DataView>"u")&&(fA.working?fA(IA):IA instanceof DataView)}A.isArgumentsObject=u,A.isGeneratorFunction=a,A.isTypedArray=s,A.isPromise=function p(IA){return typeof Promise<"u"&&IA instanceof Promise||null!==IA&&"object"==typeof IA&&"function"==typeof IA.then&&"function"==typeof IA.catch},A.isArrayBufferView=function v(IA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(IA):s(IA)||iA(IA)},A.isUint8Array=function S(IA){return"Uint8Array"===o(IA)},A.isUint8ClampedArray=function I(IA){return"Uint8ClampedArray"===o(IA)},A.isUint16Array=function M(IA){return"Uint16Array"===o(IA)},A.isUint32Array=function y(IA){return"Uint32Array"===o(IA)},A.isInt8Array=function F(IA){return"Int8Array"===o(IA)},A.isInt16Array=function Y(IA){return"Int16Array"===o(IA)},A.isInt32Array=function D(IA){return"Int32Array"===o(IA)},A.isFloat32Array=function d(IA){return"Float32Array"===o(IA)},A.isFloat64Array=function H(IA){return"Float64Array"===o(IA)},A.isBigInt64Array=function z(IA){return"BigInt64Array"===o(IA)},A.isBigUint64Array=function aA(IA){return"BigUint64Array"===o(IA)},K.working=typeof Map<"u"&&K(new Map),A.isMap=function $(IA){return!(typeof Map>"u")&&(K.working?K(IA):IA instanceof Map)},nA.working=typeof Set<"u"&&nA(new Set),A.isSet=function uA(IA){return!(typeof Set>"u")&&(nA.working?nA(IA):IA instanceof Set)},wA.working=typeof WeakMap<"u"&&wA(new WeakMap),A.isWeakMap=function NA(IA){return!(typeof WeakMap>"u")&&(wA.working?wA(IA):IA instanceof WeakMap)},yA.working=typeof WeakSet<"u"&&yA(new WeakSet),A.isWeakSet=function TA(IA){return yA(IA)},kA.working=typeof ArrayBuffer<"u"&&kA(new ArrayBuffer),A.isArrayBuffer=W,fA.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&fA(new DataView(new ArrayBuffer(1),0,1)),A.isDataView=iA;var eA=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function EA(IA){return"[object SharedArrayBuffer]"===r(IA)}function mA(IA){return!(typeof eA>"u")&&(typeof EA.working>"u"&&(EA.working=EA(new eA)),EA.working?EA(IA):IA instanceof eA)}function pA(IA){return f(IA,c)}function xA(IA){return f(IA,Q)}function gA(IA){return f(IA,C)}function CA(IA){return h&&f(IA,w)}function DA(IA){return E&&f(IA,e)}A.isSharedArrayBuffer=mA,A.isAsyncFunction=function GA(IA){return"[object AsyncFunction]"===r(IA)},A.isMapIterator=function j(IA){return"[object Map Iterator]"===r(IA)},A.isSetIterator=function b(IA){return"[object Set Iterator]"===r(IA)},A.isGeneratorObject=function rA(IA){return"[object Generator]"===r(IA)},A.isWebAssemblyCompiledModule=function oA(IA){return"[object WebAssembly.Module]"===r(IA)},A.isNumberObject=pA,A.isStringObject=xA,A.isBooleanObject=gA,A.isBigIntObject=CA,A.isSymbolObject=DA,A.isBoxedPrimitive=function YA(IA){return pA(IA)||xA(IA)||gA(IA)||CA(IA)||DA(IA)},A.isAnyArrayBuffer=function zA(IA){return typeof Uint8Array<"u"&&(W(IA)||mA(IA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(IA){Object.defineProperty(A,IA,{enumerable:!1,value:function(){throw new Error(IA+" is not supported in userland")}})})},89539:function(N,A,n){var u=n(34155),a=Object.getOwnPropertyDescriptors||function(eA){for(var EA=Object.keys(eA),mA={},GA=0;GA=GA)return rA;switch(rA){case"%s":return String(mA[EA++]);case"%d":return Number(mA[EA++]);case"%j":try{return JSON.stringify(mA[EA++])}catch{return"[Circular]"}default:return rA}}),b=mA[EA];EA"u")return function(){return A.deprecate(iA,eA).apply(this,arguments)};var EA=!1;return function mA(){if(!EA){if(u.throwDeprecation)throw new Error(eA);u.traceDeprecation?console.trace(eA):console.error(eA),EA=!0}return iA.apply(this,arguments)}};var s={},g=/^$/;if(u.env.NODE_DEBUG){var h=u.env.NODE_DEBUG;h=h.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),g=new RegExp("^"+h+"$","i")}function E(iA,eA){var EA={seen:[],stylize:c};return arguments.length>=3&&(EA.depth=arguments[2]),arguments.length>=4&&(EA.colors=arguments[3]),I(eA)?EA.showHidden=eA:eA&&A._extend(EA,eA),d(EA.showHidden)&&(EA.showHidden=!1),d(EA.depth)&&(EA.depth=2),d(EA.colors)&&(EA.colors=!1),d(EA.customInspect)&&(EA.customInspect=!0),EA.colors&&(EA.stylize=r),C(EA,iA,EA.depth)}function r(iA,eA){var EA=E.styles[eA];return EA?"\x1b["+E.colors[EA][0]+"m"+iA+"\x1b["+E.colors[EA][1]+"m":iA}function c(iA,eA){return iA}function C(iA,eA,EA){if(iA.customInspect&&eA&&$(eA.inspect)&&eA.inspect!==A.inspect&&(!eA.constructor||eA.constructor.prototype!==eA)){var mA=eA.inspect(EA,iA);return Y(mA)||(mA=C(iA,mA,EA)),mA}var GA=function w(iA,eA){if(d(eA))return iA.stylize("undefined","undefined");if(Y(eA)){var EA="'"+JSON.stringify(eA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return iA.stylize(EA,"string")}return F(eA)?iA.stylize(""+eA,"number"):I(eA)?iA.stylize(""+eA,"boolean"):M(eA)?iA.stylize("null","null"):void 0}(iA,eA);if(GA)return GA;var j=Object.keys(eA),b=function Q(iA){var eA={};return iA.forEach(function(EA,mA){eA[EA]=!0}),eA}(j);if(iA.showHidden&&(j=Object.getOwnPropertyNames(eA)),K(eA)&&(j.indexOf("message")>=0||j.indexOf("description")>=0))return e(eA);if(0===j.length){if($(eA))return iA.stylize("[Function"+(eA.name?": "+eA.name:"")+"]","special");if(H(eA))return iA.stylize(RegExp.prototype.toString.call(eA),"regexp");if(aA(eA))return iA.stylize(Date.prototype.toString.call(eA),"date");if(K(eA))return e(eA)}var CA,oA="",pA=!1,xA=["{","}"];return S(eA)&&(pA=!0,xA=["[","]"]),$(eA)&&(oA=" [Function"+(eA.name?": "+eA.name:"")+"]"),H(eA)&&(oA=" "+RegExp.prototype.toString.call(eA)),aA(eA)&&(oA=" "+Date.prototype.toUTCString.call(eA)),K(eA)&&(oA=" "+e(eA)),0!==j.length||pA&&0!=eA.length?EA<0?H(eA)?iA.stylize(RegExp.prototype.toString.call(eA),"regexp"):iA.stylize("[Object]","special"):(iA.seen.push(eA),CA=pA?function f(iA,eA,EA,mA,GA){for(var j=[],b=0,rA=eA.length;b60?EA[0]+(""===eA?"":eA+"\n ")+" "+iA.join(",\n ")+" "+EA[1]:EA[0]+eA+" "+iA.join(", ")+" "+EA[1]}(CA,oA,xA)):xA[0]+oA+xA[1]}function e(iA){return"["+Error.prototype.toString.call(iA)+"]"}function p(iA,eA,EA,mA,GA,j){var b,rA,oA;if((oA=Object.getOwnPropertyDescriptor(eA,GA)||{value:eA[GA]}).get?rA=iA.stylize(oA.set?"[Getter/Setter]":"[Getter]","special"):oA.set&&(rA=iA.stylize("[Setter]","special")),TA(mA,GA)||(b="["+GA+"]"),rA||(iA.seen.indexOf(oA.value)<0?(rA=M(EA)?C(iA,oA.value,null):C(iA,oA.value,EA-1)).indexOf("\n")>-1&&(rA=j?rA.split("\n").map(function(pA){return" "+pA}).join("\n").slice(2):"\n"+rA.split("\n").map(function(pA){return" "+pA}).join("\n")):rA=iA.stylize("[Circular]","special")),d(b)){if(j&&GA.match(/^\d+$/))return rA;(b=JSON.stringify(""+GA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(b=b.slice(1,-1),b=iA.stylize(b,"name")):(b=b.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),b=iA.stylize(b,"string"))}return b+": "+rA}function S(iA){return Array.isArray(iA)}function I(iA){return"boolean"==typeof iA}function M(iA){return null===iA}function F(iA){return"number"==typeof iA}function Y(iA){return"string"==typeof iA}function d(iA){return void 0===iA}function H(iA){return z(iA)&&"[object RegExp]"===uA(iA)}function z(iA){return"object"==typeof iA&&null!==iA}function aA(iA){return z(iA)&&"[object Date]"===uA(iA)}function K(iA){return z(iA)&&("[object Error]"===uA(iA)||iA instanceof Error)}function $(iA){return"function"==typeof iA}function uA(iA){return Object.prototype.toString.call(iA)}function wA(iA){return iA<10?"0"+iA.toString(10):iA.toString(10)}A.debuglog=function(iA){if(iA=iA.toUpperCase(),!s[iA])if(g.test(iA)){var eA=u.pid;s[iA]=function(){var EA=A.format.apply(A,arguments);console.error("%s %d: %s",iA,eA,EA)}}else s[iA]=function(){};return s[iA]},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(55955),A.isArray=S,A.isBoolean=I,A.isNull=M,A.isNullOrUndefined=function y(iA){return null==iA},A.isNumber=F,A.isString=Y,A.isSymbol=function D(iA){return"symbol"==typeof iA},A.isUndefined=d,A.isRegExp=H,A.types.isRegExp=H,A.isObject=z,A.isDate=aA,A.types.isDate=aA,A.isError=K,A.types.isNativeError=K,A.isFunction=$,A.isPrimitive=function nA(iA){return null===iA||"boolean"==typeof iA||"number"==typeof iA||"string"==typeof iA||"symbol"==typeof iA||typeof iA>"u"},A.isBuffer=n(20384);var NA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function TA(iA,eA){return Object.prototype.hasOwnProperty.call(iA,eA)}A.log=function(){console.log("%s - %s",function yA(){var iA=new Date,eA=[wA(iA.getHours()),wA(iA.getMinutes()),wA(iA.getSeconds())].join(":");return[iA.getDate(),NA[iA.getMonth()],eA].join(" ")}(),A.format.apply(A,arguments))},A.inherits=n(35717),A._extend=function(iA,eA){if(!eA||!z(eA))return iA;for(var EA=Object.keys(eA),mA=EA.length;mA--;)iA[EA[mA]]=eA[EA[mA]];return iA};var kA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function W(iA,eA){if(!iA){var EA=new Error("Promise was rejected with a falsy value");EA.reason=iA,iA=EA}return eA(iA)}A.promisify=function(eA){if("function"!=typeof eA)throw new TypeError('The "original" argument must be of type Function');if(kA&&eA[kA]){var EA;if("function"!=typeof(EA=eA[kA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(EA,kA,{value:EA,enumerable:!1,writable:!1,configurable:!0}),EA}function EA(){for(var mA,GA,j=new Promise(function(oA,pA){mA=oA,GA=pA}),b=[],rA=0;rA"u"?n.g:globalThis,c=a(),Q=s("String.prototype.slice"),C=Object.getPrototypeOf,w=s("Array.prototype.indexOf",!0)||function(S,I){for(var M=0;M-1?I:"Object"===I&&function(S){var I=!1;return u(e,function(M,y){if(!I)try{M(S),I=Q(y,1)}catch{}}),I}(S)}return g?function(S){var I=!1;return u(e,function(M,y){if(!I)try{"$"+M(S)===y&&(I=Q(y,1))}catch{}}),I}(S):null}},96513:function(N,A,n){N.exports=n(95011)},95011:function(N,A,n){!function(){var u;if(N.exports&&!n.g.xmldocAssumeBrowser)u=n(36099);else if(!(u=this.sax))throw new Error("Expected sax to be defined. Make sure you're including sax.js before this file.");function a(M,y){if(!y){var F=E[E.length-1];F.parser&&(y=F.parser)}this.name=M.name,this.attr=M.attributes,this.val="",this.children=[],this.firstChild=null,this.lastChild=null,this.line=y?y.line:null,this.column=y?y.column:null,this.position=y?y.position:null,this.startTagPosition=y?y.startTagPosition:null}function o(M){this.text=M}function s(M){this.cdata=M}function g(M){this.comment=M}function h(M){if(M&&(M=M.toString().trim()),!M)throw new Error("No XML to parse!");this.doctype="",this.parser=u.parser(!0),function r(M){M.onopentag=c,M.onclosetag=Q,M.ontext=C,M.oncdata=w,M.oncomment=e,M.ondoctype=f,M.onerror=p}(this.parser),E=[this];try{this.parser.write(M)}finally{delete this.parser}}a.prototype._addChild=function(M){this.children.push(M),this.firstChild||(this.firstChild=M),this.lastChild=M},a.prototype._opentag=function(M){var y=new a(M);this._addChild(y),E.unshift(y)},a.prototype._closetag=function(){E.shift()},a.prototype._text=function(M){typeof this.children>"u"||(this.val+=M,this._addChild(new o(M)))},a.prototype._cdata=function(M){this.val+=M,this._addChild(new s(M))},a.prototype._comment=function(M){typeof this.children>"u"||this._addChild(new g(M))},a.prototype._error=function(M){throw M},a.prototype.eachChild=function(M,y){for(var F=0,Y=this.children.length;F1?F.attr[y[1]]:F.val},a.prototype.toString=function(M){return this.toStringWithIndent("",M)},a.prototype.toStringWithIndent=function(M,y){var F=M+"<"+this.name,Y=y&&y.compressed?"":"\n";for(var d in this.attr)Object.prototype.hasOwnProperty.call(this.attr,d)&&(F+=" "+d+'="'+S(this.attr[d])+'"');if(1===this.children.length&&"element"!==this.children[0].type)F+=">"+this.children[0].toString(y)+"";else if(this.children.length){F+=">"+Y;for(var H=M+(y&&y.compressed?"":" "),z=0,aA=this.children.length;z"}else y&&y.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?F+="/>":F+=">":F+="/>";return F},o.prototype.toString=function(M){return I(S(this.text),M)},o.prototype.toStringWithIndent=function(M,y){return M+this.toString(y)},s.prototype.toString=function(M){return""},s.prototype.toStringWithIndent=function(M,y){return M+this.toString(y)},g.prototype.toString=function(M){return"\x3c!--"+I(S(this.comment),M)+"--\x3e"},g.prototype.toStringWithIndent=function(M,y){return M+this.toString(y)},a.prototype.type="element",o.prototype.type="text",s.prototype.type="cdata",g.prototype.type="comment",function v(M,y){for(var F in y)y.hasOwnProperty(F)&&(M[F]=y[F])}(h.prototype,a.prototype),h.prototype._opentag=function(M){typeof this.children>"u"?a.call(this,M):a.prototype._opentag.apply(this,arguments)},h.prototype._doctype=function(M){this.doctype+=M};var E=null;function c(){E[0]&&E[0]._opentag.apply(E[0],arguments)}function Q(){E[0]&&E[0]._closetag.apply(E[0],arguments)}function C(){E[0]&&E[0]._text.apply(E[0],arguments)}function w(){E[0]&&E[0]._cdata.apply(E[0],arguments)}function e(){E[0]&&E[0]._comment.apply(E[0],arguments)}function f(){E[0]&&E[0]._doctype.apply(E[0],arguments)}function p(){E[0]&&E[0]._error.apply(E[0],arguments)}function S(M){return M.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function I(M,y){var F=M;return y&&y.trimmed&&M.length>25&&(F=F.substring(0,25).trim()+"\u2026"),y&&y.preserveWhitespace||(F=F.trim()),F}N.exports&&!n.g.xmldocAssumeBrowser?(N.exports.XmlDocument=h,N.exports.XmlElement=a,N.exports.XmlTextNode=o,N.exports.XmlCDataNode=s,N.exports.XmlCommentNode=g):(this.XmlDocument=h,this.XmlElement=a,this.XmlTextNode=o,this.XmlCDataNode=s,this.XmlCommentNode=g)}()},96255:function(N,A,n){"use strict";typeof window<"u"&&!window.Promise&&n(13867),n(24667);function a(o){this.fs=o,this.resolving={}}a.prototype.resolve=function(o,s){if(!this.resolving[o]){var g=this;this.resolving[o]=new Promise(function(h,E){0===o.toLowerCase().indexOf("https://")||0===o.toLowerCase().indexOf("http://")?g.fs.existsSync(o)?h():function(o,s){return new Promise(function(g,h){var E=new XMLHttpRequest;for(var r in E.open("GET",o,!0),s)E.setRequestHeader(r,s[r]);E.responseType="arraybuffer",E.onreadystatechange=function(){4===E.readyState&&(E.status>=200&&E.status<300||setTimeout(function(){h(new TypeError('Failed to fetch (url: "'+o+'")'))},0))},E.onload=function(){E.status>=200&&E.status<300&&g(E.response)},E.onerror=function(){setTimeout(function(){h(new TypeError('Network request failed (url: "'+o+'")'))},0)},E.ontimeout=function(){setTimeout(function(){h(new TypeError('Network request failed (url: "'+o+'")'))},0)},E.send()})}(o,s).then(function(r){g.fs.writeFileSync(o,r),h()},function(r){E(r)}):h()})}return this.resolving[o]},a.prototype.resolved=function(){var o=this;return new Promise(function(s,g){Promise.all(Object.values(o.resolving)).then(function(){s()},function(h){g(h)})})},N.exports=a},44275:function(N,A,n){"use strict";var u=n(48823).Buffer,a=n(6225).isFunction,o=n(6225).isUndefined,h=(n(6225),n(76308).saveAs),E={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function r(Q,C,w,e){this.docDefinition=Q,this.tableLayouts=C||null,this.fonts=w||E,this.vfs=e}r.prototype._createDoc=function(Q,C){var w=function(Y){return"object"==typeof Y?{url:Y.url,headers:Y.headers}:{url:Y,headers:{}}};Q=Q||{},this.tableLayouts&&(Q.tableLayouts=this.tableLayouts);var f=new(n(28617))(this.fonts);if(n(73857).bindFS(this.vfs),!a(C))return f.createPdfKitDocument(this.docDefinition,Q);var S=new(n(96255))(n(73857));for(var I in this.fonts)if(this.fonts.hasOwnProperty(I)){if(this.fonts[I].normal)if(Array.isArray(this.fonts[I].normal)){var M=w(this.fonts[I].normal[0]);S.resolve(M.url,M.headers),this.fonts[I].normal[0]=M.url}else M=w(this.fonts[I].normal),S.resolve(M.url,M.headers),this.fonts[I].normal=M.url;this.fonts[I].bold&&(Array.isArray(this.fonts[I].bold)?(M=w(this.fonts[I].bold[0]),S.resolve(M.url,M.headers),this.fonts[I].bold[0]=M.url):(M=w(this.fonts[I].bold),S.resolve(M.url,M.headers),this.fonts[I].bold=M.url)),this.fonts[I].italics&&(Array.isArray(this.fonts[I].italics)?(M=w(this.fonts[I].italics[0]),S.resolve(M.url,M.headers),this.fonts[I].italics[0]=M.url):(M=w(this.fonts[I].italics),S.resolve(M.url,M.headers),this.fonts[I].italics=M.url)),this.fonts[I].bolditalics&&(Array.isArray(this.fonts[I].bolditalics)?(M=w(this.fonts[I].bolditalics[0]),S.resolve(M.url,M.headers),this.fonts[I].bolditalics[0]=M.url):(M=w(this.fonts[I].bolditalics),S.resolve(M.url,M.headers),this.fonts[I].bolditalics=M.url))}if(this.docDefinition.images)for(var y in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(y)&&(M=w(this.docDefinition.images[y]),S.resolve(M.url,M.headers),this.docDefinition.images[y]=M.url);var F=this;S.resolved().then(function(){var Y=f.createPdfKitDocument(F.docDefinition,Q);C(Y)},function(Y){throw Y})},r.prototype._flushDoc=function(Q,C){var e,w=[];Q.on("readable",function(){for(var f;null!==(f=Q.read(9007199254740991));)w.push(f)}),Q.on("end",function(){e=u.concat(w),C(e,Q._pdfMakePages)}),Q.end()},r.prototype._getPages=function(Q,C){if(!C)throw"_getPages is an async method and needs a callback argument";var w=this;this._createDoc(Q,function(e){w._flushDoc(e,function(f,p){C(p)})})},r.prototype._bufferToBlob=function(Q){var C;try{C=new Blob([Q],{type:"application/pdf"})}catch(e){if("InvalidStateError"===e.name){var w=new Uint8Array(Q);C=new Blob([w.buffer],{type:"application/pdf"})}}if(!C)throw"Could not generate blob";return C},r.prototype._openWindow=function(){var Q=window.open("","_blank");if(null===Q)throw"Open PDF in new window blocked by browser";return Q},r.prototype._openPdf=function(Q,C){C||(C=this._openWindow());try{this.getBlob(function(w){var f=(window.URL||window.webkitURL).createObjectURL(w);C.location.href=f},Q)}catch(w){throw C.close(),w}},r.prototype.open=function(Q,C){(Q=Q||{}).autoPrint=!1,this._openPdf(Q,C=C||null)},r.prototype.print=function(Q,C){(Q=Q||{}).autoPrint=!0,this._openPdf(Q,C=C||null)},r.prototype.download=function(Q,C,w){a(Q)&&(o(C)||(w=C),C=Q,Q=null),Q=Q||"file.pdf",this.getBlob(function(e){h(e,Q),a(C)&&C()},w)},r.prototype.getBase64=function(Q,C){if(!Q)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(w){Q(w.toString("base64"))},C)},r.prototype.getDataUrl=function(Q,C){if(!Q)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(w){Q("data:application/pdf;base64,"+w.toString("base64"))},C)},r.prototype.getBlob=function(Q,C){if(!Q)throw"getBlob is an async method and needs a callback argument";var w=this;this.getBuffer(function(e){var f=w._bufferToBlob(e);Q(f)},C)},r.prototype.getBuffer=function(Q,C){if(!Q)throw"getBuffer is an async method and needs a callback argument";var w=this;this._createDoc(C,function(e){w._flushDoc(e,function(f){Q(f)})})},r.prototype.getStream=function(Q,C){if(!a(C))return this._createDoc(Q);this._createDoc(Q,function(e){C(e)})},N.exports={createPdf:function(Q,C,w,e){if(!function c(){try{var Q=new Uint8Array(1),C={foo:function(){return 42}};return Object.setPrototypeOf(C,Uint8Array.prototype),Object.setPrototypeOf(Q,C),42===Q.foo()}catch{return!1}}())throw"Your browser does not provide the level of support needed";return new r(Q,C||n.g.pdfMake.tableLayouts,w||n.g.pdfMake.fonts,e||n.g.pdfMake.vfs)}}},73857:function(N,A,n){"use strict";var a=n(48823).Buffer;function o(){this.fileSystem={},this.dataSystem={}}function s(g){return 0===g.indexOf("/")&&(g=g.substring(1)),0===g.indexOf("/")&&(g=g.substring(1)),g}o.prototype.existsSync=function(g){return g=s(g),typeof this.fileSystem[g]<"u"||typeof this.dataSystem[g]<"u"},o.prototype.readFileSync=function(g,h){g=s(g);var E=this.dataSystem[g];if("string"==typeof E&&"utf8"===h)return E;if(E)return new a(E,"string"==typeof E?"base64":void 0);var r=this.fileSystem[g];if(r)return r;throw"File '"+g+"' not found in virtual file system"},o.prototype.writeFileSync=function(g,h){this.fileSystem[s(g)]=h},o.prototype.bindFS=function(g){this.dataSystem=g||{}},N.exports=new o},64498:function(N,A,n){"use strict";var u=n(6225).isString;function o(h){return"auto"===h.width}function s(h){return null==h.width||"*"===h.width||"star"===h.width}N.exports={buildColumnWidths:function a(h,E){var r=[],c=0,Q=0,C=[],w=0,e=0,f=[],p=E;h.forEach(function(F){o(F)?(r.push(F),c+=F._minWidth,Q+=F._maxWidth):s(F)?(C.push(F),w=Math.max(w,F._minWidth),e=Math.max(e,F._maxWidth)):f.push(F)}),f.forEach(function(F){u(F.width)&&/\d+%/.test(F.width)&&(F.width=parseFloat(F.width)*p/100),F._calcWidth=F.width=E)r.forEach(function(F){F._calcWidth=F._minWidth}),C.forEach(function(F){F._calcWidth=w});else{if(S0){var y=E/C.length;C.forEach(function(F){F._calcWidth=y})}}},measureMinMax:function g(h){for(var E={min:0,max:0},r={min:0,max:0},c=0,Q=0,C=h.length;Q=0;H--){var aA=f.styleStack.styleDictionary[D[H]];for(var K in aA)aA.hasOwnProperty(K)&&(d[K]=aA[K])}return d}function M(D){return g(D)?D=[D,D,D,D]:E(D)&&2===D.length&&(D=[D[0],D[1],D[0],D[1]]),D}var y=[void 0,void 0,void 0,void 0];if(e.style){var Y=I(E(e.style)?e.style:[e.style]);Y&&(y=S(Y,y)),Y.margin&&(y=M(Y.margin))}return y=S(e,y),e.margin&&(y=M(e.margin)),void 0===y[0]&&void 0===y[1]&&void 0===y[2]&&void 0===y[3]?null:y}(),e.columns)return p(f.measureColumns(e));if(e.stack)return p(f.measureVerticalContainer(e));if(e.ul)return p(f.measureUnorderedList(e));if(e.ol)return p(f.measureOrderedList(e));if(e.table)return p(f.measureTable(e));if(void 0!==e.text)return p(f.measureLeaf(e));if(e.toc)return p(f.measureToc(e));if(e.image)return p(f.measureImage(e));if(e.svg)return p(f.measureSVG(e));if(e.canvas)return p(f.measureCanvas(e));if(e.qr)return p(f.measureQr(e));throw"Unrecognized document structure: "+JSON.stringify(e,r)});function p(S){var I=S._margin;return I&&(S._minWidth+=I[0]+I[2],S._maxWidth+=I[0]+I[2]),S}},w.prototype.convertIfBase64Image=function(e){if(/^data:image\/(jpeg|jpg|png);base64,/.test(e.image)){var f="$$pdfmake$$"+this.autoImageIndex++;this.images[f]=e.image,e.image=f}},w.prototype.measureImageWithDimensions=function(e,f){if(e.fit){var p=f.width/f.height>e.fit[0]/e.fit[1]?e.fit[0]/f.width:e.fit[1]/f.height;e._width=e._minWidth=e._maxWidth=f.width*p,e._height=f.height*p}else e._width=e._minWidth=e._maxWidth=e.width||f.width,e._height=e.height||f.height*e._width/f.width,g(e.maxWidth)&&e.maxWidthe._width&&(e._width=e._minWidth=e._maxWidth=e.minWidth,e._height=e._width*f.height/f.width),g(e.minHeight)&&e.minHeight>e._height&&(e._height=e.minHeight,e._width=e._minWidth=e._maxWidth=e._height*f.width/f.height);e._alignment=this.styleStack.getProperty("alignment")},w.prototype.measureImage=function(e){this.images&&this.convertIfBase64Image(e);var f=this.imageMeasure.measureImage(e.image);return this.measureImageWithDimensions(e,f),e},w.prototype.measureSVG=function(e){var f=this.svgMeasure.measureSVG(e.svg);return this.measureImageWithDimensions(e,f),e.font=this.styleStack.getProperty("font"),e.svg=this.svgMeasure.writeDimensions(e.svg,{width:e._width,height:e._height}),e},w.prototype.measureLeaf=function(e){e._textRef&&e._textRef._textNodeRef.text&&(e.text=e._textRef._textNodeRef.text);var f=this.styleStack.clone();f.push(e);var p=this.textTools.buildInlines(e.text,f);return e._inlines=p.items,e._minWidth=p.minWidth,e._maxWidth=p.maxWidth,e},w.prototype.measureToc=function(e){if(e.toc.title&&(e.toc.title=this.measureNode(e.toc.title)),e.toc._items.length>0){for(var f=[],p=e.toc.textStyle||{},v=e.toc.numberStyle||p,S=e.toc.textMargin||[0,0,0,0],I=0,M=e.toc._items.length;I=26?d((H/26>>0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[H%26>>0]}(D-1)}function I(D){if(D<1||D>4999)return D.toString();var aA,d=D,H={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},z="";for(aA in H)for(;d>=H[aA];)z+=aA,d-=H[aA];return z}var y;switch(p){case"none":y=null;break;case"upper-alpha":y=S(e).toUpperCase();break;case"lower-alpha":y=S(e);break;case"upper-roman":y=I(e);break;case"lower-roman":y=I(e).toLowerCase();break;default:y=function M(D){return D.toString()}(e)}if(null===y)return{};v&&(E(v)?(v[0]&&(y=v[0]+y),v[1]&&(y+=v[1]),y+=" "):y+=v+" ");var F={text:y},Y=f.getProperty("markerColor");return Y&&(F.color=Y),{_inlines:this.textTools.buildInlines(F,f).items}},w.prototype.measureUnorderedList=function(e){var f=this.styleStack.clone(),p=e.ul;e.type=e.type||"disc",e._gapSize=this.gapSizeForList(),e._minWidth=0,e._maxWidth=0;for(var v=0,S=p.length;v0?f.length-1:0;return e._minWidth=S.min+e._gap*I,e._maxWidth=S.max+e._gap*I,e},w.prototype.measureTable=function(e){(function nA(uA){if(uA.table.widths||(uA.table.widths="auto"),s(uA.table.widths))for(uA.table.widths=[uA.table.widths];uA.table.widths.length1?(K(y,p,F.colSpan),f.push({col:p,span:F.colSpan,minWidth:F._minWidth,maxWidth:F._maxWidth})):(M._minWidth=Math.max(M._minWidth,F._minWidth),M._maxWidth=Math.max(M._maxWidth,F._maxWidth))),F.rowSpan&&F.rowSpan>1&&$(e.table,v,p,F.rowSpan)}}!function z(){for(var uA,wA,NA=0,yA=f.length;NA0)for(uA=W/TA.span,wA=0;wA0)for(uA=fA/TA.span,wA=0;wAr.page?E:r.page>E.page?r:E.y>r.y?E:r).page,x:c.x,y:c.y,availableHeight:c.availableHeight,availableWidth:c.availableWidth}}(this,E.bottomMost)},o.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},o.prototype.saveContextInEndingCell=function(E){E._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},o.prototype.completeColumnGroup=function(E){var r=this.snapshots.pop();this.calculateBottomMost(r),this.endingCell=null,this.x=r.x;var c=r.bottomMost.y;E&&(r.page===r.bottomMost.page?r.y+E>c&&(c=r.y+E):c+=E),this.y=c,this.page=r.bottomMost.page,this.availableWidth=r.availableWidth,this.availableHeight=r.bottomMost.availableHeight,E&&(this.availableHeight-=c-r.bottomMost.y),this.lastColumnWidth=r.lastColumnWidth},o.prototype.addMargin=function(E,r){this.x+=E,this.availableWidth-=E+(r||0)},o.prototype.moveDown=function(E){return this.y+=E,this.availableHeight-=E,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(E,r){null!=E&&(this.x=E,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=r&&(this.y=r,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},o.prototype.moveToRelative=function(E,r){null!=E&&(this.x=this.x+E),null!=r&&(this.y=this.y+r)},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 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,r){return(r=function s(E,r){return void 0===E?r:a(E)&&"landscape"===E.toLowerCase()?"landscape":"portrait"}(r,E.pageSize.orientation))!==E.pageSize.orientation?{orientation:r,width:E.pageSize.height,height:E.pageSize.width}:{orientation:E.pageSize.orientation,width:E.pageSize.width,height:E.pageSize.height}};o.prototype.moveToNextPage=function(E){var r=this.page+1,c=this.page,Q=this.y,C=r>=this.pages.length;if(C){var w=this.availableWidth,e=this.getCurrentPage().pageSize.orientation,f=g(this.getCurrentPage(),E);this.addPage(f),e===f.orientation&&(this.availableWidth=w)}else this.page=r,this.initializePage();return{newPageCreated:C,prevPage:c,prevY:Q,y:this.y}},o.prototype.addPage=function(E){var r={items:[],pageSize:E};return this.pages.push(r),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),r},o.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},o.prototype.getCurrentPosition=function(){var E=this.getCurrentPage().pageSize,r=E.height-this.pageMargins.top-this.pageMargins.bottom,c=E.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:E.orientation,pageInnerHeight:r,pageInnerWidth:c,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/r,horizontalRatio:(this.x-this.pageMargins.left)/c}},N.exports=o},1196:function(N,A,n){"use strict";var u=n(54775),a=n(6225).isNumber,o=n(6225).pack,s=n(6225).offsetVector,g=n(93858);function h(c,Q){this.context=c,this.contextStack=[],this.tracker=Q}function E(c,Q,C){null==C||C<0||C>c.items.length?c.items.push(Q):c.items.splice(C,0,Q)}h.prototype.addLine=function(c,Q,C){var w=c.getHeight(),e=this.context,f=e.getCurrentPage(),p=this.getCurrentPositionOnPage();return!(e.availableHeight0&&c.inlines[0].alignment,e=0;switch(w){case"right":e=Q-C;break;case"center":e=(Q-C)/2}if(e&&(c.x=(c.x||0)+e),"justify"===w&&!c.newLineForced&&!c.lastLineInParagraph&&c.inlines.length>1)for(var f=(Q-C)/(c.inlines.length-1),p=1,v=c.inlines.length;p0)&&(void 0===c._x&&(c._x=c.x||0),c.x=w.x+c._x,c.y=w.y,this.alignImage(c),E(e,{type:C||"image",item:c},Q),w.moveDown(c._height),f)},h.prototype.addSVG=function(c,Q){return this.addImage(c,Q,"svg")},h.prototype.addQr=function(c,Q){var C=this.context,w=C.getCurrentPage(),e=this.getCurrentPositionOnPage();if(!w||void 0===c.absolutePosition&&C.availableHeighte.availableHeight||(c.items.forEach(function(p){switch(p.type){case"line":var v=function r(c){var Q=new u(c.maxWidth);for(var C in c)c.hasOwnProperty(C)&&(Q[C]=c[C]);return Q}(p.item);v._node&&(v._node.positions[0].pageNumber=e.page+1),v.x=(v.x||0)+(Q?c.xOffset||0:e.x),v.y=(v.y||0)+(C?c.yOffset||0:e.y),f.items.push({type:"line",item:v});break;case"vector":var S=o(p.item);s(S,Q?c.xOffset||0:e.x,C?c.yOffset||0:e.y),f.items.push({type:"vector",item:S});break;case"image":case"svg":var I=o(p.item);I.x=(I.x||0)+(Q?c.xOffset||0:e.x),I.y=(I.y||0)+(C?c.yOffset||0:e.y),f.items.push({type:p.type,item:I})}}),w||e.moveDown(c.height),0))},h.prototype.pushContext=function(c,Q){void 0===c&&(Q=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,c=this.context.availableWidth),a(c)&&(c=new g({width:c,height:Q},{left:0,right:0,top:0,bottom:0})),this.contextStack.push(this.context),this.context=c},h.prototype.popContext=function(){this.context=this.contextStack.pop()},h.prototype.getCurrentPositionOnPage=function(){return(this.contextStack[0]||this.context).getCurrentPosition()},N.exports=h},87168:function(N,A,n){"use strict";var u=n(6225).isArray;function o(s,g){for(var h in this.fonts={},this.pdfKitDoc=g,this.fontCache={},s)if(s.hasOwnProperty(h)){var E=s[h];this.fonts[h]={normal:E.normal,bold:E.bold,italics:E.italics,bolditalics:E.bolditalics}}}o.prototype.getFontType=function(s,g){return function a(s,g){var h="normal";return s&&g?h="bolditalics":s?h="bold":g&&(h="italics"),h}(s,g)},o.prototype.getFontFile=function(s,g,h){var E=this.getFontType(g,h);return this.fonts[s]&&this.fonts[s][E]?this.fonts[s][E]:null},o.prototype.provideFont=function(s,g,h){var E=this.getFontType(g,h);if(null===this.getFontFile(s,g,h))throw new Error("Font '"+s+"' in style '"+E+"' is not defined in the font section of the document definition.");if(this.fontCache[s]=this.fontCache[s]||{},!this.fontCache[s][E]){var r=this.fonts[s][E];u(r)||(r=[r]),this.fontCache[s][E]=this.pdfKitDoc.font.apply(this.pdfKitDoc,r)._font}return this.fontCache[s][E]},N.exports=o},6225:function(N){"use strict";function a(e){return Array.isArray(e)}N.exports={isString:function A(e){return"string"==typeof e||e instanceof String},isNumber:function n(e){return"number"==typeof e||e instanceof Number},isBoolean:function u(e){return"boolean"==typeof e},isArray:a,isFunction:function o(e){return"function"==typeof e},isObject:function s(e){return null!==e&&"object"==typeof e},isNull:function g(e){return null===e},isUndefined:function h(e){return void 0===e},pack:function E(){for(var e={},f=0,p=arguments.length;f0})).forEach(function(oA){var pA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(xA){void 0!==oA[xA]&&(pA[xA]=oA[xA])}),pA.startPosition=oA.positions[0],pA.pageNumbers=Array.from(new Set(oA.positions.map(function(xA){return xA.pageNumber}))),pA.pages=fA.length,pA.stack=Q(oA.stack),oA.nodeInfo=pA});for(var iA=0;iA1)for(var b=iA+1,rA=W.length;b-1&&mA.push(W[b].nodeInfo),NA.length>2&&W[b].nodeInfo.pageNumbers.indexOf(EA+1)>-1&&GA.push(W[b].nodeInfo);if(NA.length>3)for(b=0;b-1&&j.push(W[b].nodeInfo);if(NA(eA.nodeInfo,mA,GA,j))return eA.pageBreak="before",!0}}return!1}this.docPreprocessor=new a,this.docMeasure=new o(H,z,aA,this.imageMeasure,this.svgMeasure,this.tableLayouts,uA);for(var kA=this.tryLayoutDocument(d,H,z,aA,K,$,nA,uA,wA);yA(kA.linearNodeList,kA.pages);)kA.linearNodeList.forEach(function(fA){fA.resetXY()}),kA=this.tryLayoutDocument(d,H,z,aA,K,$,nA,uA,wA);return kA.pages},Y.prototype.tryLayoutDocument=function(d,H,z,aA,K,$,nA,uA,wA,NA){this.linearNodeList=[],d=this.docPreprocessor.preprocessDocument(d),d=this.docMeasure.measureDocument(d),this.writer=new g(new s(this.pageSize,this.pageMargins),this.tracker);var yA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){yA.addBackground(K)}),this.addBackground(K),this.processNode(d),this.addHeadersAndFooters($,nA),null!=wA&&this.addWatermark(wA,H,aA),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},Y.prototype.addBackground=function(d){var H=S(d)?d:function(){return d},z=this.writer.context(),aA=z.getCurrentPage().pageSize,K=H(z.page+1,aA);K&&(this.writer.beginUnbreakableBlock(aA.width,aA.height),K=this.docPreprocessor.preprocessDocument(K),this.processNode(this.docMeasure.measureDocument(K)),this.writer.commitUnbreakableBlock(0,0),z.backgroundLength[z.page]+=K.positions.length)},Y.prototype.addStaticRepeatable=function(d,H){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(d))},H)},Y.prototype.addDynamicRepeatable=function(d,H){for(var aA=0,K=this.writer.context().pages.length;aA1;)W.push({fontSize:EA}),(fA=kA.sizeOfRotatedText(yA.text,yA.angle,W)).width>NA.width?EA=(iA+(eA=EA))/2:fA.widthNA.height?(iA+(eA=EA))/2:((iA=EA)+eA)/2),W.pop();return EA}(this.pageSize,d,H));var aA={text:d.text,font:H.provideFont(d.font,d.bold,d.italics),fontSize:d.fontSize,color:d.color,opacity:d.opacity,angle:d.angle};aA._size=function uA(NA,yA){var TA=new I(yA),kA=new M(null,{font:NA.font,bold:NA.bold,italics:NA.italics});return kA.push({fontSize:NA.fontSize}),{size:TA.sizeOfString(NA.text,kA),rotatedSize:TA.sizeOfRotatedText(NA.text,NA.angle,kA)}}(d,H);for(var K=this.writer.context().pages,$=0,nA=K.length;$0;wA--)uA.push(nA);return uA}(d._gap);aA&&(z-=(aA.length-1)*d._gap),h.buildColumnWidths(H,z);var K=this.processRow(H,H,aA);F(d.positions,K.positions)},Y.prototype.processRow=function(d,H,z,aA,K,$){var nA=this,uA=[],wA=[];return this.tracker.auto("pageChanged",function NA(kA){for(var W,fA=0,iA=uA.length;fA1)for(var EA=1;EAkA?z[kA]:0}function TA(kA,W){if(kA.rowSpan&&kA.rowSpan>1){var fA=K+kA.rowSpan-1;if(fA>=aA.length)throw"Row span for column "+W+" (with indexes starting from 0) exceeded row count";return aA[fA][W]}return null}},Y.prototype.processList=function(d,H){var $,z=this,aA=d?H.ol:H.ul,K=H._gapSize;this.writer.context().addMargin(K.width),this.tracker.auto("lineAdded",function nA(uA){if($){var wA=$;if($=null,wA.canvas){var NA=wA.canvas[0];f(NA,-wA._minWidth,0),z.writer.addVector(NA)}else if(wA._inlines){var yA=new r(z.pageSize.width);yA.addInline(wA._inlines[0]),yA.x=-wA._minWidth,yA.y=uA.getAscenderHeight()-yA.getAscenderHeight(),z.writer.addLine(yA,!0)}}},function(){aA.forEach(function(uA){$=uA.listMarker,z.processNode(uA),F(H.positions,uA.positions)})}),this.writer.context().addMargin(-K.width)},Y.prototype.processTable=function(d){var H=new E(d);H.beginTable(this.writer);for(var z=d.table.heights,aA=0,K=d.table.body.length;aA0&&(z.hasEnoughSpaceForInline(d._inlines[0],d._inlines.slice(1))||K);){var $=!1,nA=d._inlines.shift();if(K=!1,!nA.noWrap&&nA.text.length>1&&nA.width>z.getAvailableWidth()){var uA=nA.width/nA.text.length,wA=Math.floor(z.getAvailableWidth()/uA);if(wA<1&&(wA=1),wA0){var c=E.pages[0];if(c.xOffset=g,c.yOffset=h,r>1)if(void 0!==g||void 0!==h)c.height=E.getCurrentPage().pageSize.height-E.pageMargins.top-E.pageMargins.bottom;else{c.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var Q=0,C=this.repeatables.length;QGA.item.y2?GA.item.y1:GA.item.y2:GA.item.h:0}(GA)}var EA=D(fA||40),mA=EA.top;return W.forEach(function(GA){GA.items.forEach(function(j){var b=eA(j);b>mA&&(mA=b)})}),mA+=EA.bottom}function Y(W,fA){W&&"auto"===W.height&&(W.height=1/0);var eA=function H(W){if(Q(W)){var fA=s[W.toUpperCase()];if(!fA)throw"Page size "+W+" not recognized";return{width:fA[0],height:fA[1]}}return W}(W||"A4");return function iA(EA){return!!Q(EA)&&("portrait"===(EA=EA.toLowerCase())&&eA.width>eA.height||"landscape"===EA&&eA.widtheA.height?"landscape":"portrait",eA}function D(W){if(C(W))W={left:W,right:W,top:W,bottom:W};else if(e(W))if(2===W.length)W={left:W[0],top:W[1],right:W[0],bottom:W[1]};else{if(4!==W.length)throw"Invalid pageMargins definition";W={left:W[0],top:W[1],right:W[2],bottom:W[3]}}return W}function z(W,fA){W.pageSize.orientation!==(fA.options.size[0]>fA.options.size[1]?"landscape":"portrait")&&(fA.options.size=[fA.options.size[1],fA.options.size[0]])}function K(W,fA){var iA=W;return fA.sup&&(iA-=.75*fA.fontSize),fA.sub&&(iA+=.35*fA.fontSize),iA}function $(W,fA,iA,eA,EA){function mA(zA,IA){var jA,ut,Ct=new r(null);if(f(zA.positions))throw"Page reference id not found";var ct=zA.positions[0].pageNumber.toString();switch(IA.text=ct,jA=Ct.widthOfString(IA.text,IA.font,IA.fontSize,IA.characterSpacing,IA.fontFeatures),ut=IA.width-jA,IA.width=jA,IA.alignment){case"right":IA.x+=ut;break;case"center":IA.x+=ut/2}}W._pageNodeRef&&mA(W._pageNodeRef,W.inlines[0]),fA=fA||0,iA=iA||0;var GA=W.getHeight(),b=GA-W.getAscenderHeight();E.drawBackground(W,fA,iA,eA,EA);for(var rA=0,oA=W.inlines.length;rA1){var GA=W.points[0],j=W.points[W.points.length-1];(W.closePath||GA.x===j.x&&GA.y===j.y)&&iA.closePath()}break;case"path":iA.path(W.d)}if(W.linearGradient&&eA){var b=1/(W.linearGradient.length-1);for(EA=0;EA-1&&(mA=mA.slice(0,GA)),iA.height===1/0){var j=F(mA,W.pageMargins);this.pdfKitDoc.options.size=[iA.width,j]}var b=function kA(W,fA){var iA={};return Object.keys(W).forEach(function(eA){var EA=W[eA];iA[eA]=fA.pattern(EA.boundingBox,EA.xStep,EA.yStep,EA.pattern,EA.colored)}),iA}(W.patterns||{},this.pdfKitDoc);if(function aA(W,fA,iA,eA,EA){iA._pdfMakePages=W,iA.addPage();var mA=0;EA&&W.forEach(function(xA){mA+=xA.items.length});var GA=0;EA=EA||function(){};for(var j=0;j0&&(z(W[j],iA),iA.addPage(iA.options));for(var b=W[j],rA=0,oA=b.items.length;rA=128?285:0);var v=[[]];for(f=0;f<30;++f){for(var S=v[f],I=[],M=0;M<=f;++M)I.push(e[(M6},aA=function(j,b){var rA=-8&function(j){var b=A[j],rA=16*j*j+128*j+64;return d(j)&&(rA-=36),b[2].length&&(rA-=25*b[2].length*b[2].length-10*b[2].length-55),rA}(j),oA=A[j];return rA-8*oA[0][b]*oA[1][b]},K=function(j,b){switch(b){case u:return j<10?10:j<27?12:14;case a:return j<10?9:j<27?11:13;case o:return j<10?8:16;case 8:return j<10?8:j<27?10:12}},$=function(j,b,rA){var oA=aA(j,rA)-4-K(j,b);switch(b){case u:return 3*(oA/10|0)+(oA%10<4?0:oA%10<7?1:2);case a:return 2*(oA/11|0)+(oA%11<6?0:1);case o:return oA/8|0;case 8:return oA/13|0}},nA=function(j,b){switch(j){case u:return b.match(g)?b:null;case a:return b.match(h)?b.toUpperCase():null;case o:if("string"==typeof b){for(var rA=[],oA=0;oA>6,128|63&pA):pA<65536?rA.push(224|pA>>12,128|pA>>6&63,128|63&pA):rA.push(240|pA>>18,128|pA>>12&63,128|pA>>6&63,128|63&pA)}return rA}return b}},wA=function(j,b){for(var rA=j.slice(0),oA=j.length,pA=b.length,xA=0;xA=0)for(var CA=0;CA=0;--xA)pA>>oA+xA&1&&(pA^=rA<>gA&1;return j},iA=function(j){for(var xA=function(pt){for(var Yt=0,KA=0;KA=5&&(Yt+=pt[KA]-5+3);for(KA=5;KA=4*ZA||pt[KA+1]>=4*ZA)&&(Yt+=40)}return Yt},gA=j.length,CA=0,DA=0,YA=0;YA=gA){for(pA.push(xA|IA>>(jA-=gA));jA>=8;)pA.push(IA>>(jA-=8)&255);xA=0,gA=8}jA>0&&(xA|=(IA&(1<>3);gA=function(j,b,rA){for(var oA=[],pA=j.length/b|0,xA=0,gA=b-j.length%b,CA=0;CA>Qt&1,pA[Ct+ZA][ct+Qt]=1};for(gA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),gA(rA-8,0,8,9,[256,127,65,93,93,93,65,127]),gA(0,rA-8,9,8,[254,130,186,186,186,130,254,0,0]),xA=9;xA>ut++&1,pA[xA][rA-11+IA]=pA[rA-11+IA][xA]=1}return{matrix:oA,reserved:pA}}(b),DA=CA.matrix,YA=CA.reserved;if(function(j,b,rA){for(var oA=j.length,pA=0,xA=-1,gA=oA-1;gA>=0;gA-=2){6==gA&&--gA;for(var CA=xA<0?oA-1:0,DA=0;DAgA-2;--YA)b[CA][YA]||(j[CA][YA]=rA[pA>>3]>>(7&~pA)&1,++pA);CA+=xA}xA=-xA}}(DA,YA,gA),pA<0){W(DA,YA,0),fA(DA,0,oA,0);var zA=0,IA=iA(DA);for(W(DA,YA,0),pA=1;pA<8;++pA){W(DA,YA,pA),fA(DA,0,oA,pA);var jA=iA(DA);IA>jA&&(IA=jA,zA=pA),W(DA,YA,pA)}pA=zA}return W(DA,YA,pA),fA(DA,0,oA,pA),DA};function mA(j,b){var rA=[],oA=b.background||"#fff",pA=b.foreground||"#000",xA=function EA(j,b){var rA={numeric:u,alphanumeric:a,octet:o},pA=(b=b||{}).version||-1,xA={L:r,M:c,Q,H:C}[(b.eccLevel||"L").toUpperCase()],gA=b.mode?rA[b.mode.toLowerCase()]:-1,CA="mask"in b?b.mask:-1;if(gA<0)gA="string"==typeof j?j.match(g)?u:j.match(E)?a:o:o;else if(gA!=u&&gA!=a&&gA!=o)throw"invalid or unsupported mode";if(null===(j=nA(gA,j)))throw"invalid data format";if(xA<0||xA>3)throw"invalid ECC level";if(pA<0){for(pA=1;pA<=40&&!(j.length<=$(pA,gA,xA));++pA);if(pA>40)throw"too large data for the Qr format"}else if(pA<1||pA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=CA&&(CA<0||CA>8))throw"invalid mask";return eA(j,pA,gA,xA,CA)}(j,b),gA=xA.length,CA=Math.floor(b.fit?b.fit/gA:5),DA=gA*CA;rA.push({type:"rect",x:0,y:0,w:DA,h:DA,lineWidth:0,color:oA});for(var YA=0;YA0;)this.styleOverrides.pop()},g.prototype.autopush=function(h){if(u(h))return 0;var E=[];h.style&&(E=a(h.style)?h.style:[h.style]);for(var r=0,c=E.length;r0&&this.pop(r),c},g.prototype.getProperty=function(h){if(this.styleOverrides)for(var E=this.styleOverrides.length-1;E>=0;E--){var r=this.styleOverrides[E];if(u(r)){var c=this.styleDictionary[r];if(c&&!o(c[h])&&!s(c[h]))return c[h]}else if(!o(r[h])&&!s(r[h]))return r[h]}return this.defaultStyle&&this.defaultStyle[h]},N.exports=g},27601:function(N,A,n){"use strict";var u=n(96513);function a(g){var h=parseFloat(g);if("number"==typeof h&&!isNaN(h))return h}function o(g){var h;try{h=new u.XmlDocument(g)}catch(E){throw new Error("SVGMeasure: "+E)}if("svg"!==h.name)throw new Error("SVGMeasure: expected document");return h}function s(){}s.prototype.measureSVG=function(g){var h=o(g),E=a(h.attr.width),r=a(h.attr.height);if((null==E||null==r)&&"string"==typeof h.attr.viewBox){var c=h.attr.viewBox.split(/[,\s]+/);if(4!==c.length)throw new Error("Unexpected svg viewbox format, should have 4 entries but found: '"+h.attr.viewBox+"'");null==E&&(E=a(c[2])),null==r&&(r=a(c[3]))}return{width:E,height:r}},s.prototype.writeDimensions=function(g,h){var E=o(g);return E.attr.width=""+h.width,E.attr.height=""+h.height,E.toString()},N.exports=s},1219:function(N,A,n){"use strict";var u=n(64498),a=n(6225).isFunction,o=n(6225).isNumber;function s(g){this.tableNode=g}s.prototype.beginTable=function(g){var h,E,r=this;this.offsets=(h=this.tableNode)._offsets,this.layout=h._layout,E=g.context().availableWidth-this.offsets.total,u.buildColumnWidths(h.table.widths,E),this.tableWidth=h._offsets.total+function c(){var w=0;return h.table.widths.forEach(function(e){w+=e._calcWidth}),w}(),this.rowSpanData=function Q(){var w=[],e=0,f=0;w.push({left:0,rowSpan:0});for(var p=0,v=r.tableNode.table.body[0].length;p0&&F(e+M,p,0,v.border[0]),void 0!==v.border[2]&&F(e+M,p+I-1,2,v.border[2]);for(var y=0;y0&&F(e,p+y,1,v.border[1]),void 0!==v.border[3]&&F(e+S-1,p+y,3,v.border[3])}}function F(Y,D,d,H){var z=w[Y][D];z.border=z.border||{},z.border[d]=H}}(this.tableNode.table.body),this.drawHorizontalLine(0,g)},s.prototype.onRowBreak=function(g,h){var E=this;return function(){var r=E.rowPaddingTop+(E.headerRows?0:E.topLineWidth);h.context().availableHeight-=E.reservedAtBottom,h.context().moveDown(r)}},s.prototype.beginRow=function(g,h){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,h),h.tracker.startTracking("pageChanged",this.rowCallback),this.dontBreakRows&&h.beginUnbreakableBlock(),this.rowTopY=h.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,h.context().availableHeight-=this.reservedAtBottom,h.context().moveDown(this.rowPaddingTop)},s.prototype.drawHorizontalLine=function(g,h,E){var r=this.layout.hLineWidth(g,this.tableNode);if(r){var Q,c=this.layout.hLineStyle(g,this.tableNode);c&&c.dash&&(Q=c.dash);for(var f,p,v,C=r/2,w=null,e=this.tableNode.table.body,S=0,I=this.rowSpanData.length;S0&&(D=(f=e[g-1][S]).border?f.border[3]:this.layout.defaultBorder)&&f.borderColor&&(F=f.borderColor[3]),gH;)w.width+=this.rowSpanData[S+H++].width||0;S+=H-1}else if(f&&f.colSpan&&D){for(;f.colSpan>H;)w.width+=this.rowSpanData[S+H++].width||0;S+=H-1}else if(p&&p.colSpan&&Y){for(;p.colSpan>H;)w.width+=this.rowSpanData[S+H++].width||0;S+=H-1}else w.width+=this.rowSpanData[S].width||0}var z=(E||0)+C;y&&w&&w.width&&(h.addVector({type:"line",x1:w.left,x2:w.left+w.width,y1:z,y2:z,lineWidth:r,dash:Q,lineColor:F},!1,E),w=null,F=null,f=null,p=null,v=null)}h.context().moveDown(r)}},s.prototype.drawVerticalLine=function(g,h,E,r,c,Q,C){var w=this.layout.vLineWidth(r,this.tableNode);if(0!==w){var f,e=this.layout.vLineStyle(r,this.tableNode);e&&e.dash&&(f=e.dash);var v,S,I,p=this.tableNode.table.body;if(r>0&&(v=p[Q][C])&&v.borderColor&&(v.border?v.border[2]:this.layout.defaultBorder)&&(I=v.borderColor[2]),null==I&&r0&&rA--}return b.push({x:Q.rowSpanData[Q.rowSpanData.length-1].left,index:Q.rowSpanData.length-1}),b}(),f=[],p=E&&E.length>0,v=this.tableNode.table.body;if(f.push({y0:this.rowTopY,page:p?E[0].prevPage:C}),p)for(c=0,r=E.length;c0&&!this.headerRows,D=Y?0:this.topLineWidth,d=f[M].y0,H=f[M].y1;for(F&&(H+=this.rowPaddingBottom),h.context().page!=f[M].page&&(h.context().page=f[M].page,this.reservedAtBottom=0),c=0,r=e.length;c0&&!z&&(z=($=v[g][K-1]).border?$.border[2]:this.layout.defaultBorder),K+11)for(var GA=1;GA1)for(GA=1;GA0&&this.rowSpanData[c].rowSpan--}this.drawHorizontalLine(g+1,h),this.headerRows&&g===this.headerRows-1&&(this.headerRepeatable=h.currentBlockToRepeatable()),this.dontBreakRows&&h.tracker.auto("pageChanged",function(){!Q.headerRows&&!1!==Q.layout.hLineWhenBroken&&Q.drawHorizontalLine(g,h)},function(){h.commitUnbreakableBlock()}),this.headerRepeatable&&(g===this.rowsWithoutPageBreak-1||g===this.tableNode.table.body.length-1)&&(h.commitUnbreakableBlock(),h.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)},N.exports=s},53497:function(N,A,n){"use strict";var u=n(6225).isArray,a=n(6225).isPattern,o=n(6225).getPattern;function g(r,c,Q,C){var f=r.inlines[0],p=function w(){for(var yA=0,TA=0,kA=r.inlines.length;TAyA?TA:yA;return r.inlines[yA]}(),v=function e(){for(var yA=0,TA=0,kA=r.inlines.length;TA=0&&a.splice(o,1)}},A.prototype.emit=function(n){var u=Array.prototype.slice.call(arguments,1),a=this.events[n];a&&a.forEach(function(o){o.apply(this,u)})},A.prototype.auto=function(n,u,a){this.startTracking(n,u),a(),this.stopTracking(n,u)},N.exports=A},42480:function(){},25832:function(){},69862:function(){},40964:function(){},63083:function(N,A,n){"use strict";var u=["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],a=typeof globalThis>"u"?n.g:globalThis;N.exports=function(){for(var s=[],g=0;gd),g(N.exports,"getCombiningClass",()=>H),g(N.exports,"getScript",()=>z),g(N.exports,"getEastAsianWidth",()=>aA),g(N.exports,"getNumericValue",()=>K),g(N.exports,"isAlphabetic",()=>$),g(N.exports,"isDigit",()=>nA),g(N.exports,"isPunctuation",()=>uA),g(N.exports,"isLowerCase",()=>wA),g(N.exports,"isUpperCase",()=>NA),g(N.exports,"isTitleCase",()=>yA),g(N.exports,"isWhiteSpace",()=>TA),g(N.exports,"isBaseForm",()=>kA),g(N.exports,"isMark",()=>W),g(N.exports,"default",()=>fA);var h={};h=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(o(a))(o(u).toByteArray("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")),r=Math.log2||(iA=>Math.log(iA)/Math.LN2),c=iA=>r(iA)+1|0,Q=c(o(h).categories.length-1),C=c(o(h).combiningClasses.length-1),w=c(o(h).scripts.length-1),e=c(o(h).eaw.length-1),p=C+w+e+10,v=w+e+10,S=e+10,I=10,M=(1<>p&M]}function H(iA){const eA=E.get(iA);return o(h).combiningClasses[eA>>v&y]}function z(iA){const eA=E.get(iA);return o(h).scripts[eA>>S&F]}function aA(iA){const eA=E.get(iA);return o(h).eaw[eA>>I&Y]}function K(iA){let eA=E.get(iA),EA=eA&D;if(0===EA)return null;if(EA<=50)return EA-1;if(EA<480)return((EA>>4)-12)/(1+(15&EA));if(EA<768){eA=(EA>>5)-14;let mA=2+(31&EA);for(;mA>0;)eA*=10,mA--;return eA}{eA=(EA>>2)-191;let mA=1+(3&EA);for(;mA>0;)eA*=60,mA--;return eA}}function $(iA){const eA=d(iA);return"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Nl"===eA}function nA(iA){return"Nd"===d(iA)}function uA(iA){const eA=d(iA);return"Pc"===eA||"Pd"===eA||"Pe"===eA||"Pf"===eA||"Pi"===eA||"Po"===eA||"Ps"===eA}function wA(iA){return"Ll"===d(iA)}function NA(iA){return"Lu"===d(iA)}function yA(iA){return"Lt"===d(iA)}function TA(iA){const eA=d(iA);return"Zs"===eA||"Zl"===eA||"Zp"===eA}function kA(iA){const eA=d(iA);return"Nd"===eA||"No"===eA||"Nl"===eA||"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Me"===eA||"Mc"===eA}function W(iA){const eA=d(iA);return"Mn"===eA||"Me"===eA||"Mc"===eA}var fA={getCategory:d,getCombiningClass:H,getScript:z,getEastAsianWidth:aA,getNumericValue:K,isAlphabetic:$,isDigit:nA,isPunctuation:uA,isLowerCase:wA,isUpperCase:NA,isTitleCase:yA,isWhiteSpace:TA,isBaseForm:kA,isMark:W}},63480:function(N){"use strict";N.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"]]')},13336:function(N){"use strict";N.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"]]')},77348:function(N){"use strict";N.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"]]')},74284:function(N){"use strict";N.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"]]')},31532:function(N){"use strict";N.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"]]')},36258:function(N){"use strict";N.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]}')},44346:function(N){"use strict";N.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"]]')},27014:function(N){"use strict";N.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"]]')}},Rt={};function ot(N){var A=Rt[N];if(void 0!==A)return A.exports;var n=Rt[N]={id:N,loaded:!1,exports:{}};return br[N].call(n.exports,n,n.exports,ot),n.loaded=!0,n.exports}return ot.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch{if("object"==typeof window)return window}}(),ot.nmd=function(N){return N.paths=[],N.children||(N.children=[]),N},ot(62536)}()},6236:function(){this.I=this.I||{},this.I.vfs={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAddgAAACWEdQT1N/jKrdAAHZuAAAWMBHU1VCm18k/AACMngAABX2T1MvMpeDsUwAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHXVAAAAAxnbHlmNN3JWAAAOswAAZmmaGVhZAh9pEIAAAEcAAAANmhoZWEMnBKkAAABVAAAACRobXR4VUzdowAAAfgAABSkbG9jYV8SwLgAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOSJt5gAB1HQAAALAcG9zdP9hAGQAAdc0AAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDJn8J2NfDzz1ABsIAAAAAADE8BEuAAAAAODgRcL6N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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//wAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgMfAIgC4QCJAuEAcwHiAI8B4gA+A0cAfgLi/9wC4gAtAuL/qwLi/7wC4v+yAuL/2ALi/94C4v/wAuL/yQLi//gDKf/cAuv/3QLr/8cB4v/oAeL/nQSD//MGJQAKBl8AOQg/ADsFvgAJBfwAHwRcAFEFrQBDBAMASgRSAAsFH//yBSb/5QW7AMwDsQBLB/sANQTbAOsE8QB/BgEAtgasAJIGpQCQBkMAvgRtAE0FZAAkBIv/rQRwAKsEoABBB/sASwH9/xUEXwAzBEIAcAP8/9MEGQAYA+kAQgJEAHcCfABxAfX/5ATXAHUETQBZBGgAdQagAHUGoAB1BMgAdQZoACgAAAAAB/X/qwg1AFwC2P/qAtgAbALYABwD8QBpA/EAJwPxAHAD8ABLA/EASgPx//cD8QAXA/H//QPxAL0D8QBGBAP/3QQLAHUEM/+3BeYAlARGAHkEWwBCBAcAbgQAABIEKQAdBJgARgQ7AB4EmABMBL0AHgXUAB4DmQAeBDQAHgOy//YB2gArBL4AHgSIAEwDrwAeBAAAEgQUAAYDhQAZA5MAHgRG/7AEmABMBEb/sANu/9MEqgAeA9L/1gU+AFIE8AB9BM0ADgVJAG0EWgBIBwr/wwcYAB4FSgBuBKkAHgQ5ACAE/f+JBd3/rwQfABIExgAgBC0AHwSc/8QEAABaBQEAHgRIAFYGIAAeBnkAHgT2AFEFzQAgBC4AIARaACAGRQAeBGT/4APz//oGGP+vBFcAHwTjAB8FDwBqBZcAUARHAHUEhP+3BjEAbQRIAFUESAAeBZgALgSmAEAEHwASBJwARgQUAAADxgAfB+QAHgSH/94C2P/7Atj/8QLYABcC2AAdAtgALwLYAAgC2AA3A3sAkwKgAQsDyAAeBBr/mQSfAEgFIwBEBP0ARAP1ACYFFQBEA/AAJgRdAB4EWgBIBDAAHgRj/6YB7wD8A4kBEgAA/SoD0gDTA9YAIgPwAM4D1wDNA5MAHgOEARIDgwETAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgVYAIAFgwCBBWgARAWzAIMFtgCDA7gAvARfADkEN/+BBKr/0wRJ/9UEDgArA4kBFAGG/74GcQBMBJYAPgHt/w8EZv+sBGb/4wRm/7gEZgAsBGYAVgRmACQEZgBmBGYAGwRmAEAEZgENAgD/CQH//wkB9gAvAfb/eAH2AC8EMAAeBNoAZAQBAGIEXAAfBBMARARwAEMEaQAjBHwAQgRr/9cEeQBCBB0ARgRcADUETv+/A2gAqQSxACwDmf/pBgr/mgPaAB4EmP/0BL0AHgS9AB4B9wAAAiUAGgU2AC8FNgAvBGQAPgShAKkCiv/0BRD/rwUQ/68FEP+vBRD/rwUQ/68FEP+vBRD/rwUNAHAEaQA7BGkAOwRpADsEaQA7AhwASQIcAEkCHABJAhwASQWJADsFVwBzBVcAcwVXAHMFVwBzBVcAcwUIAGMFCABjBQgAYwUIAGMEqQCoBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEOQAxBDkAMQQQAEYEHQBFBB0ARQQdAEUEHQBFAewALwHsAC8B7AAvAewALwRJACAEbQBGBG0ARgRtAEYEbQBGBG0ARgRHAFsERwBbBEcAWwRHAFsDrP+qA6z/qgUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUNAHAEEABGBQ0AcAQQAEYFDQBwBBAARgUNAHAEEABGBRgAOwT2AEcEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBUkAdARcAAMFSQB0BFwAAwVJAHQEXAADBUkAdARcAAMFiQA7BEYAIAIcAEkB7AARAhwASQHsAC4CHABJAewALwIc/4sB4/9tAhwASQZkAEkDvgAvBEgABwH1/wkE3gA7A+8AIAQuADsB4wAvBC4AOwHj/6IELgA7AnkALwQuADsCvwAvBYkAOwRJACAFiQA7BEkAIAWJADsESQAgBEkAIAVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgTIADsCoQAgBMgAOwKh/58EyAA7AqEAIAScACkEAQAuBJwAKQQBAC4EnAApBAEALgScACkEAQAuBJwAKQQBAC4EoQCpAooAQwShAKkCigBDBKEAqQKyAEMFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsG4gDDBdUAgASpAKgDrP+qBKkAqASm/+wD2v/uBKb/7APa/+4Epv/sA9r/7gdB/4MGjgATBVcAIARmADoEXf+vBF3/rwQHAG4EY/+mBGP/pgRj/6YEY/+mBGP/pgRj/6YEY/+mBFoASAPIAB4DyAAeA8gAHgPIAB4B2gArAdoAKwHaACsB2gArBL0AHgSYAEwEmABMBJgATASYAEwEmABMBFsAQgRbAEIEWwBCBFsAQgQLAHUEY/+mBGP/pgRj/6YEWgBIBFoASARaAEgEWgBIBF0AHgPIAB4DyAAeA8gAHgPIAB4DyAAeBIgATASIAEwEiABMBIgATAS+AB4B2gAOAdoAKwHaACsB5P+CAdoAKwOy//YENAAeA5kAHgOZAB4DmQAeA5kAHgS9AB4EvQAeBL0AHgSYAEwEmABMBJgATAQpAB0EKQAdBCkAHQQAABIEAAASBAAAEgQAABIEBwBuBAcAbgQHAG4EWwBCBFsAQgRbAEIEWwBCBFsAQgRbAEIF5gCUBAsAdQQLAHUEA//dBAP/3QQD/90FEP+vBM0AAwXtABECgAAXBWsAawUN/+0FPQAeAoQAIAUQ/68E1gA7BGkAOwSm/+wFiQA7AhwASQTeADsGxgA7BYkAOwVXAHME5QA7BKEAqQSpAKgE3f/UAhwASQSpAKgEYwBIBDAAKQRmACUChACEBDwAaARSAC4EbQBGBGb/5gPCAG4ETv+/AoQAZQQ8AGgEbQBGBDwAaAZkAGcEaQA7BFEARAScACkCHABJAhwASQRIAAcE/QBEBN4AOwThAJQFEP+vBNYAOwRRAEQEaQA7BYkARAbGADsFiQA7BVcAcwWJAEQE5QA7BQ0AcAShAKkE3f/UBDkAMQQdAEUEewAwBG0ARgRc/9cEEABGA6z/qgPa/8UEHQBFA0IALgQBAC4B4wAvAewALwHb/xMEMgAwA6z/qgbiAMMF1QCABuIAwwXVAIAG4gDDBdUAgASpAKgDrP+qAVsArAJ8AMkEAABEAfX/CQGOAIkGxgA7Bs4AHgUQ/68EOQAxBGkAOwWJAEQEHQBFBHsAMAVeAIUFbwBOBOQArQPlAIUIGQBGCQMAcwScACUD8QAgBQ0AcAQQAEYEqQCoA+QAhQIcAEkHC/+rBfL/pwIcAEkFEP+vBDkAMQUQ/68EOQAxB0H/gwaOABMEaQA7BB0ARQVdAFIEGAA/BBgAPwcL/6sF8v+nBJwAJQPxACAFiQBEBHsAMAWJAEQEewAwBVcAcwRtAEYFSABnBGkAQwVIAGcEaQBDBTwAdgQtADIE4QCUA6z/qgThAJQDrP+qBOEAlAOs/6oFUADLBDkAeQbAAEQGEAAxBGAARwUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUCHABJAewALwIcAA0B4//wBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBQgAYwRHAFsFCABjBEcAWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsEqQCoA6z/qgSpAKgDrP+qBKkAqAOs/6oEfgAABKEAqQO7AGAFUADLBDkAeQRRAEQDQgAuBgAAiASaAAQERgAgBN4ALATeACwEUQARA0L/5wURAFgECQA6BKkAqAPkAF4E3f/UA9r/xQQwACkESv/XBhkAmARcABgEXAA1BFwABQRcAHIEcACBBIQAVARwAJQEhAB+BUkAdARcAAMFiQA7BEkAIAUQ/68EOQAxBGkAOwQdAEUCHP/gAez/jQVXAHMEbQBGBMgAOwKhACAFCABjBEcAWwSG/7EE1gA7BFwAHwUYADsEYABHBRgAOwRgAEcFiQA7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AGUAcwAvAEwASQBDAEUATgBTAEUALQAyAC4AMAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAErTAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/5UAAAAA/4gAAP9WAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLrQABAAAAIUeQh4IHYwdkh3QHwYgAjbCMNQ08ih8Hn4x6izCH9AlEB5+Hn4hHB5+Hn4efimMJBQefh+mJJIjJB5cJ9IiZB28JzQdmB98I5ovwh4sIN4lkiG4HyweLCIOH1IhZiA4HywgpB7CHewdsh98HiwmHB28H9AdmCBuIG4gbh5+H9AdmB5+Hn4d+h28H9AdmCLCJhwefh5+IG4gbiEcIKQdniYcHn4efh36Hd4eGiamH9AeoB2oHsIeLB2yHZgdqB28HbIdqB3sHbIeGh7kHbIefh/QHZgefiCkHqAgpB6gHagdqB2oH9AdmB36HsIewh4sIRwdsiEcHbIhHB2yJqYmHB28HcYfpiYcIG4e5AABOcYABAAAAPQswChIKEgy9CzWK2goTit2PCArhCzsKE4objUkMi4tMiyuLQIoWjHwK6AycBemN8IXpjccF6YXphemK5IzOihULRgoVDKyKE4ziCycKEg4nChIKEgoSChCLVQteig8KGQoNitaKDYraChOKE4oTihOLTIs1izWLNYs1izWLNYs1itoK3Yrdit2K3YoTihOKE4oTihOMfAXphemF6YXphemF6YXphemF6YXpihUKFQs1izWLNYraCtoK2graChOK3YXpit2F6YrdhemK3YXpit2F6YXpiuELOws7CzsLOwXphemF6YXpihOF6YoThemKE4XpiuSK5Irki0yLTItMi0CMfAoVDHwK6AroCugKDwoPChCKDYoNig2KDYoNig2KDYoPCg8KDwoPCg8KDYoNig2KDwoZChkKGQoZCg8KDwoPChCLQItAi0CMfAoVChIKEgoSBemLNYs1izWLNYs1izWLNYs1izWLNYs1izWLNYrdhemK3YXpit2F6YrdhemK3YXpit2F6YrdhemK3YXpihOF6YoThemKE4XpihOF6YoThemKE4XpihOF6YXpjHwKFQx8ChUMfAoVBemLNYrdihOF6YrkihOKE4XpiuEK4Qs7BemF6YoTihuK5ItMiyuKFQsrihULQIroAACOcAABAAAPMw9wAAYABQAAAAAAAAAAP/FAAD/iAAAAAAAAAAA/+wAAAAA/8MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAP/kAAAAAAAAAAAAAAAAABEAAAAAAAAAEgAAAAD/mgAAAAAAAP/rAAD/1f/tAAAAAAAAAAAAAP/q/+n/7f/1/+sAAP+IAAAAAAAA//UAAP/1/6IAAP/EAAD/zv/1//QAAAAAAAAAAAAAAAAAAP8t/8z/v//Z/6L/4wAS/6sAAP/Y/+z/y/+/AA0AAP+r/+//ogAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAA//IAAAAAAAAAAAAAAAAAAAAAAAAAAP/t/+8AAAAAAAAAAP/wAAD/5gAA/+0AAAAAAAAAAAAAAAD/mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//lQAA//MAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qAAAAAAAAAAAAAAAAAAD/7AAAAAD/eAAAAAAAAAAAAAAAAAAAAAAAAAAA//EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/0v/m/+sAAP/nAAAAAAAAAAD/4f/n/+sAAAAAAAAAAAAAAAAAAP56/mL/RP9L/z7/vQAHAAAAAP8z/3IAAP9EAAAAAAAAAAD/PgAAAAAAAP/A/+b/6QAA/+EAAAAAAAD/6f/Y/+f/5QAAAAAAAAAAAAAAAAAA/rwAAP/zAAD/dgAAAAD/xgAAAAAADwAA//P/4f/m/8YAAP92AAAAAP8m/xj/nf+h/7H/5AAQ/68AAP+T/7j/uf+dAAAAAP+v/+3/sQAAAAAAAAAA/+v/7QAN/+YAAAANAAAAAP/l/+z/6wAAAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAP+/AAAAAP/yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAP/jAAAAAAAAAAAAAAAAAAAAAAAAAAD/9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9QAA//X/ogAA/8QAAP/O//X/9AAAAAAAAAAAAAAAAjsgAAQAADwwQNYAIgAeAAAAAAAAAAAAAAAAABEAAAAAAAD/4wAAAAAAEQAAAAAAEv/kABEAAP/lAAAAAAAA/+QAAAAAABIAAAAAAAD/7P/FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/iAAAAAD/wwAA/84AAAAAAAAAAAAAAAAAAP+wAAAAAP/zAAAADwAAAAAAAP+VAAAAAAAAAAAAAAAAAAAAAAAA/9f/8QAA//EAAAAAAAAAAAAAAAAAAAAAAAAAAP/m/+cAAP/hAAAAAAAA/+cAAP/SAAAAEQAAAAAAAAAAABH/6//RAAAAAAAOAAAAAAAAAAAAAAAAAAAAAP/sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6f/m/+EAAP/YAAAAAAAA/+cAAP/AAAAAAAAAAAAAAAAAAAD/5f+jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8v/zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/M/9E/70AAP9yAAD/av56AAAAB/5iAAD/kgAAAAD/PgAA/w//RP8M/ywAAAAHAAcAAAAA/z4AAP8nAAAAAAAAAAD/wAAA//D/yQAAAAD+9QAAAAD/9f/rAAAAAP/nAAAAAAAAAAAAAP/I/60AAAAAAAAAAAAAAAD/mv+9/+kAAAAAAAAAAP5tAAAAEv+JAAD/ygAAAAD/pQAA/7v/vf/p/5EAAAAAABIAAAAA/6UAAP/SAAAAAP/sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9j/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4//1AAD/8QAAAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/ef/dAAD/9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAAAAP/mAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAD/7QAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAAAA//X/iP/OAAAAAAAA//X/fwAA/8cAEQAAAAAAAP/JABL/9P+PAAD/xP+p/6IAAAAAAAAAAAAAAAAAAAAAAAD/eP/xAAD/6wAAAAAAAAAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+oAAP+aAAD/5QAAAAD/4QAA//X/6wAAAAAAAAAAAAAAAP/q/9X/7f/t/+sAAAAAAAAAAAAAAAD/vf/xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/k/+d/+QAAP+4AAD/s/8m/7kAEP8Y//H/ywAA/+3/sQAA/37/nf98/48AAAAQABD/r/+v/7H/EP+MAAAAAAAAAAD/9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/U//MAAP/1AAAAAP8f/9kAAP/bAAAAAAAAAAD/tQAAAAD/0gAA/9IAAAAAAAD/tP+0/7UAAAAAAAD/2P+//+MAAP/sAA3/6f8t/8sAEf/M//MAAAAA/+//ogAAAAD/vwAA/7cAAAASABL/q/+r/6L/oP/GAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAA/8AAAAAAAAAAAAAAAAAAAAAAAAD/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAA/8AAAAAAAAAAAAAAAAAAAAAAAAD/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+4AAAAA/+wAAAAAAAAAAAAAAAD/6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAP/OAAAAAAAA//X/fwAA/8cAEQAAAAAAAP/JABL/9P+PAAD/xP+p/6IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6gAAAAAAAAAAAAAAAAAAAAD/6//r/+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/5QAAAAAAAP/zAAAAAAAAAAAAAAAAAAAAAP/o/8kAAAAAAAAAAAAAAAAAAP/zAAAAAAAP/+EAAP68AAAAAAAAAAD/yQAAAAD/dgAA/9n/8wAA//UAAAAAAAD/xv/G/3b/OAAAAAAAAAAAAAD/mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI2rgAEAAA8kkIeACMAIgAAAAAAAP/rAAAAAAAAAAAAAAAAAAD/7QAAAAD/1QAAAAAAAP+a/+X/6QAAAAAAAAAA/+oAAAAAAAD/6v/1/+3/6wAAAAAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAP/kAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAASAAAAAP/1AAAAAAAA//X/9f/0/+8AAP/xAAD/zv+I/6IAAAAA/7sAAP9/AAAAAAAAAAz/xP+pAAD/3f/HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/x/70AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAAAAAAA/+//7QAAAAAAAAAA/+YAAAAAAAAAAAAAAAAAFAAAAAAAAAAA//AAAAAA/+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8//yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/x/3gAAAAAAAAAAAAAAAAAAAAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAP/rAAAAAAAA/+oAAAAAAAAAAAAAAAAAAP/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6//qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qAAAAAAAA/+4AAP/sAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAA/9j/wAAAAAAAAAAAAAAAAAAA//MAAP/xAAAAAP/xAAAAAAAAAAAAAAAPAAAAAAAAAAD/lQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/xf+I/84AAAAA/8MAAP/sAAAAAAAAAAAAAP+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4/+//6L/t//L/9n/v/+g/9gAAP+r/+wAAAAS/8b/8AAR/y0AEQAA/8wAAP/iAAAAEv+g//P/8wAN/+//q/+i/+kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAATAAD/8v/UAAD/ygAA/9oAE/97AAD/EQAAAAD/cQAA/u0AAAAAAAAAAP8//1EAAP+R/zsAAAAAABMAEwAAAAD/5P+d/7H/j/+5/6H/nQAA/5MAAP+v/7gAAAAQ/4z/8AAP/yYAEAAA/xj/vP/EAAAAEP8Q//H/8QAA/+3/r/+x/7MAAAAA/+H/1f/f/+f/7f/hAAAAAAAA/8sAAAAAAAAAAAAAAAD/hQAOAAD/xAAAAAAAAAAAAAAAAAAAAAAAAP/L/9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAD/2AAAAAD/7AAAAAAAAAAAABIAEAAAAAAAAAAA/4UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/m/+sADQAA/+z/7f/rAAAAAAAAAA3/5QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/1/+MAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAAAAAAAAAAAAP/xAAAAAAAAAAAAAP/vAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/7QAAAAA/9X/uwAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAP/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+H/5gAAAAD/5//p/+UAAP/pAAAAAP/YAAAAAAAAAAAAAAAAAAAAAP/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8//U/7X/0v/Z/+T/0gAAAAAAAP+0//UAAAAAAAAAAAAA/x8AAAAA/9sAAAAAAAAAAAAAAAAAAAAAAAD/tP+1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/yQAAAAAAAAAA/+UAAAAAAAAAAAAA/+gAAAAAAAAAAAAAAAAAAAAAAAAAAP/z/3b/9QAAAAD/8wAAAAAAAP/GAA8AAAAAAAAAAAAA/rwAAP/mAAAAAAAAAAAAAP84AAAAAP/hAAD/xv92AAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+f/5gAAAAD/5//r/+sAAAAAAAAAAP/hAAAAAAAAAAAAAAAAAAAAAP/SAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAA/9j/wAAAAAAAAAAAAAAAAAAAAAD/6wAAAAAAAAAAAAAAAAAA/+0AAAAA/9UAAAAAAAD/mv/l/+kAAAAAAAAAAP/qAAAAAAAA/+r/9f/t/+sAAAAA//UAAAAAAAD/9f/1//T/7wAA//EAAP/OAAD/ogAAAAD/uwAA/38AAAAAAAAADP/E/6kAAP/d/8cAAAAAAAAAAAAAAAAAAP/sAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAT/yAAAQAj/8MAAQADABMAnQCyAAoABgAAAAsAAAGEAAABhQAAAYcAAAGIAAABiQAAA/YAAAP3AAAD+gAAAAEAEgAGAAsAEAASAJYAsgGEAYUBhgGHAYgBiQGKAY4BjwP2A/cD+gABAMQADgABAMr/7QABAMr/6gABAMoACwABAYX/sAACAAcAEAAQAAEAEgASAAEAlgCWAAIAsgCyAAMBhgGGAAEBigGKAAEBjgGPAAEAAgC9AAADwQAAAAIAvf/0A8H/9AACALj/ywDN/+QAAgC4/8UAyv+0AAIAyv/qAYX/sAADA6YAFgO1ABYDuAAWAAMAtQAAALcAAADEAAAAAwC+//UAxP/eAMf/5QADALX/8wC3//AAxP/qAAQAs//zAMQADQOl//MDsv/zAAQAvv/1AMYACwDH/+oAygAMAAUAIwAAALj/5QC5/9EAxAARAMr/yAAFALP/5gC4/8IAxAAQA6X/5gOy/+YABQAj/8MAuP/lALn/0QDEABEAyv/IAAYAu//FAMj/xQDJ/8UDuf/FA7//gAPF/4AACAC4/9QAvv/wAML/7QDEABEAyv/gAMz/5wDN/+UAzv/uAAkAsv/kALT/5ADE/+IDof/kA6b/0wOp/+QDtf/TA7b/0gO4/9MACwAQ/x4AEv8eALL/zQC0/80Ax//yAYb/HgGK/x4Bjv8eAY//HgOh/80Dqf/NAAsAEAAAABIAAAC7/+cAxAAPAMj/5wDJ/+cBhgAAAYoAAAGOAAABjwAAA7n/5wAMAG39vwB8/n0AuP9hAL7/jwC//w8Aw/7oAMb/HwDH/uUAyv9GAMz+7QDN/v0Azv7ZAA0ABP/YAG3+uAB8/ygAuP+uAL7/yQC//34Aw/9nAMb/hwDH/2UAyv+eAMz/agDN/3MAzv9eAAIAEAAGAAYAAQALAAsAAQAQABAAAgARABEAAwASABIAAgCyALIABAGBAYIAAwGEAYUAAQGGAYYAAgGHAYkAAQGKAYoAAgGOAY8AAgKUApQAAwP2A/cAAQP6A/oAAQSnBKcAAwAUAAb/oAAL/6AAvf/FAML/7gDEABAAxv/sAMr/IADL//EBhP+gAYX/oAGH/6ABiP+gAYn/oAO9//EDwf/FA8T/8QPG//ED9v+gA/f/oAP6/6AAAQApAAwAlgCdALEAsgCzALQAtQC3ALgAuQC7AL0AvgDAAMEAwwDEAMUAxwDJAMoAzgGFA6EDpQOmA6kDrAOvA7IDswO0A7UDtgO4A7sDvwPBA8UE5QAVAAr/4gANABQADv/PAEEAEgBhABMAbf+uAHz/zQC4/9AAvP/qAL7/7gC//8YAwAANAML/6QDD/9YAxv/oAMf/ugDK/+kAzP/LAM3/2gDO/8cBjf/TABgAu//cAL3/4QC+/+4Av//mAMH/8wDC/+sAw//pAMX/8ADG/+cAyP/cAMn/3ADK/+MAy//dAMz/zgDN/9QAzv/bA7n/3AO7//MDvf/dA7//1gPB/+EDxP/dA8X/1gPG/90AGQAG/9oAC//aALv/8AC9/9wAwv/sAMQADwDG/+oAyP/wAMn/8ADK/8QAy//vAMz/5wGE/9oBhf/aAYf/2gGI/9oBif/aA7n/8AO9/+8Dwf/cA8T/7wPG/+8D9v/aA/f/2gP6/9oAHwAGAAwACwAMALv/6AC9AAsAvv/tAMQAAADGAAsAyP/oAMn/6ADKAAwBhAAMAYUADAGHAAwBiAAMAYkADAIF/78CBv/tAgf/vwO5/+gDv//qA8EACwPF/+oD9gAMA/cADAP6AAwE5v+/BOr/7QTrAA0E7f+/BPkADQT8AA0AAQPN/+4AAQPN/+wAAQEc//EAAgERAAsBbP/mAAIA9v/1AYX/sAACAO3/yAEc//EAAgDt/8kBHP/uAAIA9v/AAYX/sAADANkAAADmAAABbAAAAAMA2f+oAO3/ygFf/+MAAwANABQAQQARAGEAEwADANn/3wDm/+ABbP/gAAQBGQAUBAUAFAQNABYEoQAWAAQADf/mAEH/9ABh/+8BTf/tAAUA7f/uAPb/sAD+AAABOv/sAW3/7AAGANL/2ADW/9gBOf/YAUX/2APc/9gEkv/YAAgA0v/rANb/6wE5/+sBRf/rA9z/6wQN//MEkv/rBKH/8wAIANkAFQDtABUBSf/kAUr/5QFM/+QBYv/jAWT/4gFs/+QACAD2//AA/gAAAQn/8QEg//MBOv/xAWP/8wFl/+kBbf/TAAgA7f+4APb/6gEJ//ABIP/xATr/6wFj//UBbf/sAYX/sAAIAAr/4gANABQADv/PAEEAEgBhABMAbf+uAHz/zQGN/9MACQD2AAABGgAAA+QAAAPtAAAEBgAABA4AAAQvAAAEMQAABDMAAAAJAPb/ugD+AAABCf/PASD/2wE6/1ABSv+dAWP/8AFl//IBbf9MAAoABv/WAAv/1gGE/9YBhf/WAYf/1gGI/9YBif/WA/b/1gP3/9YD+v/WAAoABv/1AAv/9QGE//UBhf/1AYf/9QGI//UBif/1A/b/9QP3//UD+v/1AAoA5v/DAPb/zwD+AAABOv/OAUn/5wFM/98BYv/RAWT/7AFs/6ABbf/RAAwA2QASAOr/6QD2/9cBOv/XAUr/0wFM/9YBTf/FAVj/5wFiAA0BZAAMAW3/1gFu//IADQDZABMA5v/FAPb/ygE6/58BSf9RAUr/ewFM/8oBTf/dAVj/8gFi/3UBZP/KAWz/TwFt/4wADQD2/7oA+f/ZAP4AAAEJ/88BIP/bATr/UAFI/9kBSv+dAWP/8AFl//IBbf9MBDX/2QSV/9kADQDq/9cA9v+5AP7/6QEJ/7IBHP/SASD/yAE6/6ABSv/FAVj/5AFj/8wBZf/MAW3/ywFu/+8ADgAj/8MA2QATAOb/xQD2/8oBOv+fAUn/UQFK/3sBTP/KAU3/3QFY//IBYv91AWT/ygFs/08Bbf+MAA8A7QAUAPIAEAD2//AA+f/wAP4AAAEBAAwBBAAQATr/8AFI//ABSv/mAVEAEAFt//ABcAAQBDX/8ASV//AAEgDZ/64A5gASAOv/4ADt/60A7//WAP3/3wEB/9IBB//gARz/zgEu/90BMP/iATj/4AFA/+ABSv/pAU3/2gFf/70Baf/fAWwAEQAUAO7/9QD2/7oA+f/ZAP4AAAEJ/88BIP/bATT/9QE6/1ABRP/1AUj/2QFK/50BXv/1AWP/8AFl//IBbf9MA+X/9QQR//UEH//1BDX/2QSV/9kAFQD2/7oA+f/ZAP4AAAEJ/88BGv/dASD/2wE6/1ABSP/ZAUr/nQFj//ABZf/yAW3/TAPk/90D7f/dBAb/3QQO/90EL//dBDH/3QQz/90ENf/ZBJX/2QAVAO3/7wDu//AA8v/zAP4AAAEE//MBGv/0ATT/8AFE//ABUf/zAV7/8AFw//MD5P/0A+X/8APt//QEBv/0BA7/9AQR//AEH//wBC//9AQx//QEM//0ABcABv/yAAv/8gD2//QA/gAAAQn/9QEa//UBOv/1AW3/9QGE//IBhf/yAYf/8gGI//IBif/yA+T/9QPt//UD9v/yA/f/8gP6//IEBv/1BA7/9QQv//UEMf/1BDP/9QAYAPf/xQED/8UBGP+AAR7/xQEi/8UBQv/FAWD/xQFh/8UBa//FA9//xQPh/4AD4//FA+b/xQPo/5AEAf/FBAf/xQQM/8UEGv/FBBz/xQQd/8UEJ/+ABCn/xQQr/4AEOP/FAB0A0v/iANT/5ADW/+IA2f/hANr/5ADd/+QA3v/pAO3/5ADy/+sBBP/rATP/5AE5/+IBQ//kAUX/4gFQ/+QBUf/rAV3/5AFm/+QBb//kAXD/6wPQ/+kD3P/iA93/5AQQ/+QEHv/kBC7/6QQw/+kEMv/pBJL/4gAeAPf/8AED//ABGP/rARz/6wEe//ABIv/wAUL/8AFg//ABYf/wAWv/8AIP/+sCK//rAjT/6wPf//AD4f/rA+P/8APm//AEAf/wBAf/8AQM//AEGv/wBBz/8AQd//AEJ//rBCn/8AQr/+sEOP/wBQz/6wUP/+sFFP/rAB8ABv/AAAv/wADe/+sA4f/nAOb/wwD2/88A/gAAARn/yAE6/84BR//nAUn/5wFM/98BYv/RAWT/7AFs/6ABbf/RAYT/wAGF/8ABh//AAYj/wAGJ/8AD0P/rA/b/wAP3/8AD+v/ABAX/yAQu/+sEMP/rBDL/6wQ0/+cElP/nAB8A0v/jANT/5QDW/+MA2f/iANr/5QDd/+UA3v/pAPL/6gEE/+oBM//lATn/4wFD/+UBRf/jAVD/5QFR/+oBXf/lAWb/5QFs/+QBb//lAXD/6gPQ/+kD3P/jA93/5QQN/+QEEP/lBB7/5QQu/+kEMP/pBDL/6QSS/+MEof/kACAAG//yANL/8QDU//UA1v/xANr/9ADd//UA3v/zAOb/8QEZ//QBM//0ATn/8QFD//QBRf/xAVD/9QFd//QBYv/yAWT/8gFm//UBbP/yAW//9QPQ//MD3P/xA93/9AQF//QEDf/wBBD/9AQe//QELv/zBDD/8wQy//MEkv/xBKH/8AAiAO0AOgDyABgA9v/jAPcADAD5//cA/AAAAP4AAAEDAAwBBAAYAR4ADAEiAAwBOv/iAUIADAFI//cBSv/jAVEAGAFgAAwBYQAMAWsADAFt/+MBcAAYA98ADAPjAAwD5gAMBAEADAQHAAwEDAAMBBoADAQcAAwEHQAMBCkADAQ1//cEOAAMBJX/9wAiAG39vwB8/n0A2f9SAOYABQDq/70A6/9JAO3+/gDv/xMA9v9oAP3/DgD+/zMA//8TAQH/BwECAAABB/8OAQn/EQEc/zwBIP+sAS7/FQEw/zwBOP8OATr/agFA/0kBSv8MAUz/PwFN/vEBWP/AAV/+7wFj/zEBZf9fAWn/CgFsAAUBbf8wAW7/1QAjAAT/2ABt/rgAfP8oANn/pQDmAA8A6v/kAOv/oADt/3QA7/+AAPb/sgD9/30A/v+TAP//gAEB/3kBAgAAAQf/fQEJ/38BHP+YASD/2gEu/4EBMP+YATj/fQE6/7MBQP+gAUr/fAFM/5oBTf9sAVj/5gFf/2sBY/+SAWX/rQFp/3sBbAAPAW3/kQFu//IAJwDsAAAA7QAUAPAAAADxAAAA8wAAAPQAAAD1AAAA9v/tAPgAAAD5/+0A+gAAAPsAAAD8/+IA/gAAAQAAAAEFAAABKwAAATYAAAE6/+0BPAAAAT4AAAFI/+0BSv/tAVMAAAFVAAABVwAAAVwAAAFt/+0D4AAAA+IAAAPnAAAD7AAABAIAAAQjAAAEJQAABDX/7QQ3AAAElf/tBJcAAAAqAOz/7wDt/+4A7v/wAPD/7wDx/+8A8//vAPT/7wD1/+8A9v/uAPj/7wD6/+8A+//vAP7/7wEA/+8BBf/vAQn/9AEg//EBK//vATT/8AE2/+8BOv/vATz/7wE+/+8BRP/wAVP/7wFV/+8BV//vAVz/7wFe//ABbf/vA+D/7wPi/+8D5f/wA+f/7wPs/+8EAv/vBBH/8AQf//AEI//vBCX/7wQ3/+8El//vADMA0v++ANb/vgDm/8kA7AAAAPAAAADxAAAA8wAAAPQAAAD1AAAA9v/fAPgAAAD6AAAA+wAAAP4AAAEAAAABBQAAAQn/7QEa/+8BIP/rASsAAAE2AAABOf++ATr/3wE8AAABPgAAAUX/vgFM/+kBUwAAAVUAAAFXAAABXAAAAWP/9QFt/+AD3P++A+AAAAPiAAAD5P/vA+cAAAPsAAAD7f/vBAIAAAQG/+8EDv/vBCMAAAQlAAAEL//vBDH/7wQz/+8ENwAABJL/vgSXAAAAAQHw/8cAAQHw//EAAQHwAA0AAQBbAAsAAQCB/98AAQBKAA0AAgH1/+kCS//pAAIB8P+3AfX/8AACAFgADgCB/58AOgCyAA8A0v/mANQADgDW/+YA2QATANoADgDdAA4A3gALAOH/5QDm/+YA5//0AO0AEgDyAA8A9v/nAPn/6AD+AAABBAAPAQ0ADwEZ/+YBMwAOATn/5gE6/+cBQwAOAUX/5gFH/+UBSP/oAUn/5QFK/+gBTP/kAVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoADwBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd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/8oBif/KA9D/7QPc/9ID3f/0A+D/0QPi/9ED5P/mA+X/7wPn/9ED7P/RA+3/5gP2/8oD9//KA/r/ygQC/9EEBf/UBAb/5gQN/9MEDv/mBBD/9AQR/+8EHv/0BB//7wQj/9EEJf/RBC7/7QQv/+YEMP/tBDH/5gQy/+0EM//mBDT/4QQ3/9EEkv/SBJT/4QSX/9EEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR//FAEj/xQBJ/8UAS//FAEwAIABPACAAUAAgAFP/gABV/8UAV/+QAFsACwCU/8UAmf/FAdv/kAK8/8UCvf/FAr7/xQK//8UCwP/FAsb/gALH/4ACyP+AAsn/gALK/4AC2P/FAtr/xQLc/8UC3v/FAuD/xQLi/8UC5P/FAub/xQLo/8UC6v/FAuz/xQLu/8UC8P/FAvL/xQMU/4ADFv+AAxj/gAMg/5ADIv+QAyT/kAMm/5ADKP+QBFL/xQRU/8UEVv/FBFj/xQRa/8UEXP/FBF7/xQRg/8UEZv+ABGj/gARq/4AEbP+ABG7/gARw/4AEcv+ABHT/xQR2/8UEeP/FBHr/gAR8/8UEt//FBLv/gATE/8UExv/FBMgAIATKACAEzAAgBNn/kAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgGG/xYBiv8WAY7/FgGP/xYCBf/AAk3/wAKa/1YCm/9WApz/VgKd/1YCnv9WAp//VgKg/1YCtf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/1YC0v/eAtP/VgLU/94C1f9WAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD++AMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/A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AiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcGUAAACWEdQT1OYN0PaAAHD7AAAWPxHU1VCm18k/AACHOgAABX2T1MvMpfnsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBiAAAAAxnbHlml3ag9QAAOswAAYOyaGVhZAiGpEQAAAEcAAAANmhoZWEK9griAAABVAAAACRobXR4QNtY9AAAAfgAABSkbG9jYcJrHvoAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lQmB1PgABvoAAAALmcG9zdP9tAGQAAcFoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDPWGK6FfDzz1ABkIAAAAAADE8BEuAAAAAODgRcT6Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/QCNBaoAjQHPAF4HrgBQAnQAbAJpAFUDmQArAvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwM5AFAC8wBQAvMAUAIDAFMCAwBQA1wAZwL1AEwC9QCCAvUAPQL1ADcC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDOQBQAvMAUALzAFACAwBTAgMAUAS1AGIGbgAjBr8AmQiVAJQGOwAjBpsAfQSMAFwF6gAjBC0AKgSbACQFYgBPBX4AKwXkAG4D4wBFCCkAkAUIAG8FFACWBjcAXAbeAFYG0ABeBqwAXASTAGEFigCmBN4APwSAAJwEnQA7CFIAYQIy/6cEkQBlBIAAjwQSAD0EKAB9BA4AJQJRAJwCjgBkAekARwUZACsErQAaBL0AKwcoACsHKAArBQ8AKwa3AEkAAAAACDAAWQg1AFwC9QA9AvUAggL1AEwEHQBPBB0AVwQdADgEHQBfBB0AZgQdADMEHQA9BB0AQwQdAJgEHQBYBCsAQQQ+AAYEXAATBgkAJwR5AAgEiABpBD8AJQQ3AD8EZAB1BL0ATQRrAHYEvQBOBNwAdgYFAHYDtwB2BF4AdgPWACYB/gCGBN0AdgSnAFYDyAB2BDcAPwRoADoDpQAKA7wAdgR5AAgEvQBOBHkACAOdAEYE2QB2BB4ARAWmAE8FWABPBOAAXgWSACMEgABPB1YAJAdYAHYFmQAlBNgAdgRyAHYFXgAnBkUAGwRGAEME4gB2BF0AdgTLACQETAAfBWIAdgSNAEMGhAB2Bw4AdgVhAAkGFgB2BGcAdgSAAD0GjwB2BIQAQgQoAAsGowAbBKAAdgUNAHYFdAAhBfgATgRWAAYExAATBpcAIwSNAEMEjQB2BgAADgTOAE0ERwBDBL0ATgRoADoD9ABFCC0AdgT0ACgC9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHA7YAjQKuAJgD4AB2BDoADAS2AFYFQQCZBSgAmQQwAIEFNQCZBCgAgQR6AHYEgABPBGAAdgSaAAgB/gCQA6EAdQAA/J4D9wB6A/r/UQQLAHkD+gB5A7wAdgOdAHUDnQB1AvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwVzAGkFngBpBX8AmQXZAGkF2gBpBCgAlgSCAGsEWAAPBLsANARrAGcELgBCA6EAdgG6AGIGmABOBK8AbgIM/6cEjAA4BIwAaASMACwEjABiBIwAXwSMADQEjABsBIwAWQSMAGcEjADmAib/rgIl/64CFwCQAhf/+gIXAJAEYAB2BOYAYAQwADkEiAB9BD4ATwSVAE4EkQBOBJ0ASQSSAH0EmgBOBEkAUQSJAFAEWQA0A60AYQUMAF8DxAAFBkb/7AQHAHYEvQBOBQ4ANATcAHYB/QAAArgAUAVXABcFVwAXBJD/9QTgAC0Cqv/rBU4AEQVOABEFTgARBU4AEQVOABEFTgARBU4AEQU5AGYEhQCUBIUAlASFAJQEhQCUAkT/ywJEAKUCRP/KAkT/vgWtAJQFgwBlBYMAZQWDAGUFgwBlBYMAZQU8AIAFPACABTwAgAU8AIAE4wAIBFAAVgRQAFYEUABWBFAAVgRQAFYEUABWBFAAVgQtAE4ESQBRBEkAUQRJAFEESQBRAhf/tQIXAJACF/+zAhf/qAR0AHoEigBOBIoATgSKAE4EigBOBIoATgRzAHcEcwB3BHMAdwRzAHcD6wAMA+sADAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgU5AGYELQBOBTkAZgQtAE4FOQBmBC0ATgU5AGYELQBOBTkAlAUYAFAEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBXMAawSJAFIFcwBrBIkAUgVzAGsEiQBSBXMAawSJAFIFrQCUBHIAegJE/7QCF/+dAkT/0QIX/7sCRP/dAhf/xgJEABgCCv//AkQAnwa1AKUECwB8BHIALwIl/64FDgCUBCwAfQRSAJQCCgCMBFIAlAIKAFkEUgCUAqAAjARSAJQC5gCMBa0AlAR0AHoFrQCUBHQAegWtAJQEdAB6BHT/owWDAGUEigBOBYMAZQSKAE4FgwBlBIoATgUJAJQC1AB9BQkAlALUAFIFCQCUAtQANwTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE4AAtAqoACgTgAC0CqgAKBOAALQLSAAoFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcHCwAvBfAAIwTjAAgD6wAMBOMACATTAFAEBgBRBNMAUAQGAFEE0wBQBAYAUQd+//wGwgBIBYEAaQSGAE4Eev+lBHr/pQQ/ACUEmgAIBJoACASaAAgEmgAIBJoACASaAAgEmgAIBIAATwPgAHYD4AB2A+AAdgPgAHYB/v+pAf4AhgH+/6cB/v+cBNwAdgS9AE4EvQBOBL0ATgS9AE4EvQBOBIgAaQSIAGkEiABpBIgAaQQ+AAYEmgAIBJoACASaAAgEgABPBIAATwSAAE8EgABPBHoAYQPgAHYD4AB2A+AAdgPgAHYD4AB2BKcAVgSnAFYEpwBWBKcAVgTdAHYB/v+RAf7/rwH+/7oB/gAXAf4AfQPWACYEXgB2A7cAdgO3AHYDtwB2A7cAdgTcAHYE3AB2BNwAdgS9AE4EvQBOBL0ATgRkAHUEZAB1BGQAdQQ3AD8ENwA/BDcAPwQ3AD8EPwAlBD8AJQQ/ACUEiABpBIgAaQSIAGkEiABpBIgAaQSIAGkGCQAnBD4ABgQ+AAYEKwBBBCsAQQQrAEEFTgARBOn/QgYR/0oCqP9OBZf/tAVH/0EFbf/CAqX/hQVOABEFDQCUBIUAlATTAFAFrQCUAkQApQUOAJQG/wCUBa0AlAWDAGUFGwCUBOAALQTjAAgFDQAmAkT/vgTjAAgEhABWBGUAYgSGAH0CpQCjBF0AfwSaAI0EigBOBMEAkwP4ABYEWQA0AqX/wwRdAH8EigBOBF0AfwaUAGUEhQCUBHQAmQTYAEsCRAClAkT/vgRyAC8FKACZBQ4AlAULADIFTgARBQ0AlAR0AJkEhQCUBaYAkgb/AJQFrQCUBYMAZQWuAJkFGwCUBTkAZgTgAC0FDQAmBFAAVgRJAFEEkgCEBIoATgR/AH0ELQBOA+sADAQGAB8ESQBRA1sAgwQeAEkCCgB8Ahf/qAIC/6sEbACPA+sADAcLAC8F8AAjBwsALwXwACMHCwAvBfAAIwTjAAgD6wAMAVcAUgKOAGAEPACMAiX/qgG6ADcG/wCUBvgAfAVOABEEUABWBIUAlAWmAJIESQBRBJIAhAWxAEYFzABSBRgAEAQN//MIdQBOCW4AZQTbAEkEFwBOBTkAZgQtAE4E4wAIBA0AHgJEAKUHqQAVBocAIAJEAKUFTgARBFAAVgVOABEEUABWB37//AbCAEgEhQCUBEkAUQWNAFUEOQBXBDkAVwepABUGhwAgBNsASQQXAE4FpgCSBJIAhAWmAJIEkgCEBYMAZQSKAE4FegBgBIgATQV6AGAEiABNBUgAYwQ5AFAFCwAyA+sADAULADID6wAMBQsAMgPrAAwFhQCRBGUAYAbwAJkGbwCPBIIAUAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgVOABEEUP+fBU4AEQRQAFYFTgARBFAAVgVOABEEUABWBU4AEQRQAFYFTgARBFAAVgVOABEEUABWBU4AEQRQAFYFTgARBFAAVgSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBIX/3wRJ/5QEhQCUBEkAUQSFAJQESQBRBIUAlARJAFECRAClAhcAkAJEAJUCCgB4BYMAZQSKAE4FgwBlBIoATgWDAGUEigBOBYMALASK/6oFgwBlBIoATgWDAGUEigBOBYMAZQSKAE4FkQBbBJ0ATQWRAFsEnQBNBZEAWwSdAE0FkQBbBJ0ATQWRAFsEnQBNBTwAgARzAHcFPACABHMAdwWjAIAE5gB3BaMAgATmAHcFowCABOYAdwWjAIAE5gB3BaMAgATmAHcE4wAIA+sADATjAAgD6wAMBOMACAPrAAwEoABQBOAALQP6ACMFhQCRBGUAYAR0AJkDWwCDBhsACgTE/8sEcgB6BQL/1wUC/9cEdP/0A1v/3wU8//MERP/JBOMACAQNAB4FDQAmBAYAHwRlAGIEaAABBioAewSMAFIEjABOBIwANwSMAH8EoACHBLQAewSgAF0EtAB8BXMAawSJAFIFrQCUBHQAegVOABEEUAAOBIUATgRJAAMCRP77Ahf+5QWDAGUEigAZBQkANQLU/3MFPAB3BHMAFATr/wsFDQCUBH8AfQU5AJQEggBQBTkAlASCAFAFrQCUBHIAegUOAJQELAB9BQ4AlAQsAH0EUgCUAgoAeAb/AJQG+AB8Ba0AlAR0AHoFgwBlBRsAlAR/AH0FCQCUAtQAcQTYAEsEHgBJBOAALQKqAAoFPACABSoAEQP4ABYFKgARA/gAFgcLAC8F8AAjBNMAUAQGAFEFyf5sBJoACAQc/2IFGf9rAjr/bgTH/5gEev8gBOr/qwSaAAgEYAB2A+AAdgQrAEEE3QB2Af4AhgReAHYGBQB2BNwAdgS9AE4EawB2BD8AJQQ+AAYEXAATAf7/nAQ+AAYD4AB2A7wAdgQ3AD8B/gCGAf7/nAPWACYEXgB2BEwAHwSaAAgEYAB2A7wAdgPgAHYE4gB2BgUAdgTdAHYEvQBOBNkAdgRrAHYEgABPBD8AJQRcABMERgBDBN0AdgSAAE8EPgAGBgAADgTiAHYETAAfBaYATwXUAIYGRv/sBL0ATgQ3AD8GCQAnBgkAJwYJACcEPgAGBU4AEQRQAFYEhQCUBEkAUQSaAAgD4AB2AhcAeAAAAAIAAAADAAAAFAADAAEAAAAUAAQGbgAAAPQAgAAGAHQAAAACAA0AfgCgAKwArQC/AMYAzwDmAO8A/gEPAREBJQEnATABUwFfAWcBfgF/AY8BkgGhAbAB8AH/AhsCNwJZArwCxwLJAt0C8wMBAwMDCQMPAyMDigOMA5IDoQOwA7kDyQPOA9ID1gQlBC8ERQRPBGIEbwR5BIYEnwSpBLEEugTOBNcE4QT1BQEFEAUTHgEePx6FHvEe8x75H00gCSALIBEgFSAeICIgJyAwIDMgOiA8IEQgcCCOIKQgqiCsILEguiC9IQUhEyEWISIhJiEuIV4iAiIGIg8iEiIaIh4iKyJIImAiZSXK7gL2w/sE/v///f//AAAAAAACAA0AIACgAKEArQCuAMAAxwDQAOcA8AD/ARABEgEmASgBMQFUAWABaAF/AY8BkgGgAa8B8AH6AhgCNwJZArwCxgLJAtgC8wMAAwMDCQMPAyMDhAOMA44DkwOjA7EDugPKA9ED1gQABCYEMARGBFAEYwRwBHoEiASgBKoEsgS7BM8E2ATiBPYFAgURHgAePh6AHqAe8h70H00gACAKIBAgEyAXICAgJSAwIDIgOSA8IEQgcCB0IKMgpiCrILEguSC8IQUhEyEWISIhJiEuIVsiAiIGIg8iESIaIh4iKyJIImAiZCXK7gH2w/sB/v///P//AAEAAP/2/+QB8//CAef/wQAAAdoAAAHVAAAB0QAAAc8AAAHNAAABxQAAAcf/Fv8H/wX++P7rAgkAAAAA/mX+RAE+/dj91/3J/bT9qP2n/aL9nf2KAAAAGQAYAAAAAP0KAAD/+fz+/PsAAPy6AAD8sgAA/KcAAPyhAAD8mQAA/JEAAP9DAAD/QAAA/F4AAOX95b3lbuWZ5QLll+WY4XLhc+FvAADhbOFr4WnhYePE4VnjvOFQ4SXhIgAA4QwAAOEH4QDg/+C44KvgqeCe35Tgk+Bn38TerN+437ffsN+t36Hfhd9u32vcBxPRCxEG1QLdAeEAAQAAAAAAAAAAAAAAAAAAAAAA5AAAAO4AAAEYAAABMgAAATIAAAEyAAABdAAAAAAAAAAAAAAAAAAAAXQBfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAAAAF0AZAAAAGoAAAAAAAAAcAAAAIIAAACMAAAAlIAAAJiAAACjgAAApoAAAK+AAACzgAAAuIAAAAAAAAAAAAAAAAAAAAAAAAAAALSAAAAAAAAAAAAAAAAAAAAAAAAAAACwgAAAsIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmgKbApwCnQKeAp8AgQKWAqoCqwKsAq0CrgKvAIIAgwKwArECsgKzArQAhACFArUCtgK3ArgCuQK6AIYAhwLFAsYCxwLIAskCygCIAIkCywLMAs0CzgLPAIoClQCLAIwClwCNAv4C/wMAAwEDAgMDAI4DBAMFAwYDBwMIAwkDCgMLAI8AkAMMAw0DDgMPAxADEQMSAJEAkgMTAxQDFQMWAxcDGACTAJQDJwMoAysDLAMtAy4CmAKZAqACuwNGA0cDSANJAyUDJgMpAyoArgCvA6EAsAOiA6MDpACxALIDqwOsA60AswOuA68AtAOwA7EAtQOyALYDswC3A7QDtQC4A7YAuQC6A7cDuAO5A7oDuwO8A70DvgDEA8ADwQDFA78AxgDHAMgAyQDKAMsAzAPCAM0AzgP/A8gA0gPJANMDygPLA8wDzQDUANUA1gPPBAAD0ADXA9EA2APSA9MA2QPUANoA2wDcA9UDzgDdA9YD1wPYA9kD2gPbA9wA3gDfA90D3gDqAOsA7ADtA98A7gDvAPAD4ADxAPIA8wD0A+EA9QPiA+MA9gPkAPcD5QQBA+YBAgPnAQMD6APpA+oD6wEEAQUBBgPsBAID7QEHAQgBCQScBAMEBAEXARgBGQEaBAUEBgQIBAcBKAEpASoBKwSbASwBLQEuAS8BMASdBJ4BMQEyATMBNAQJBAoBNQE2ATcBOASfBKAECwQMBJIEkwQNBA4EoQSiBJoBTAFNBJgEmQQPBBAEEQFOAU8BUAFRAVIBUwFUAVUElASVAVYBVwFYBBwEGwQdBB4EHwQgBCEBWQFaBJYElwQ2BDcBWwFcAV0BXgSjBKQBXwQ4BKUBbwFwAYEBggSnBKYBsQSRAbcAAEBKmZiXloeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUVBPTk1MS0pJSEdGKB8QCgksAbELCkMjQ2UKLSwAsQoLQyNDCy0sAbAGQ7AHQ2UKLSywTysgsEBRWCFLUlhFRBshIVkbIyGwQLAEJUWwBCVFYWSKY1JYRUQbISFZWS0sALAHQ7AGQwstLEtTI0tRWlggRYpgRBshIVktLEtUWCBFimBEGyEhWS0sS1MjS1FaWDgbISFZLSxLVFg4GyEhWS0ssAJDVFiwRisbISEhIVktLLACQ1RYsEcrGyEhIVktLLACQ1RYsEgrGyEhISFZLSywAkNUWLBJKxshISFZLSwjILAAUIqKZLEAAyVUWLBAG7EBAyVUWLAFQ4tZsE8rWSOwYisjISNYZVktLLEIAAwhVGBDLSyxDAAMIVRgQy0sASBHsAJDILgQAGK4EABjVyO4AQBiuBAAY1daWLAgYGZZSC0ssQACJbACJbACJVO4ADUjeLACJbACJWCwIGMgILAGJSNiUFiKIbABYCMbICCwBiUjYlJYIyGwAWEbiiEjISBZWbj/wRxgsCBjIyEtLLECAEKxIwGIUbFAAYhTWli4EACwIIhUWLICAQJDYEJZsSQBiFFYuCAAsECIVFiyAgICQ2BCsSQBiFRYsgIgAkNgQgBLAUtSWLICCAJDYEJZG7hAALCAiFRYsgIEAkNgQlm4QACwgGO4AQCIVFiyAggCQ2BCWblAAAEAY7gCAIhUWLICEAJDYEJZsSYBiFFYuUAAAgBjuAQAiFRYsgJAAkNgQlm5QAAEAGO4CACIVFiyAoACQ2BCWbEoAYhRWLlAAAgAY7gQAIhUWLkAAgEAsAJDYEJZWVlZWVlZsQACQ1RYQAoFQAhACUAMAg0CG7EBAkNUWLIFQAi6AQAACQEAswwBDQEbsYACQ1JYsgVACLgBgLEJQBu4AQCwAkNSWLIFQAi6AYAACQFAG7gBgLACQ1JYsgVACLgCALEJQBuyBUAIugEAAAkBAFlZWbhAALCAiFW5QAACAGO4BACIVVpYswwADQEbswwADQFZWVlCQkJCQi0sRbECTisjsE8rILBAUVghS1FYsAIlRbEBTitgWRsjS1FYsAMlRSBkimOwQFNYsQJOK2AbIVkbIVlZRC0sILAAUCBYI2UbI1mxFBSKcEWwTysjsWEGJmAriliwBUOLWSNYZVkjEDotLLADJUljI0ZgsE8rI7AEJbAEJUmwAyVjViBgsGJgK7ADJSAQRopGYLAgY2E6LSywABaxAgMlsQEEJQE+AD6xAQIGDLAKI2VCsAsjQrECAyWxAQQlAT8AP7EBAgYMsAYjZUKwByNCsAEWsQACQ1RYRSNFIBhpimMjYiAgsEBQWGcbZllhsCBjsEAjYbAEI0IbsQQAQiEhWRgBLSwgRbEATitELSxLUbFATytQW1ggRbEBTisgiopEILFABCZhY2GxAU4rRCEbIyGKRbEBTisgiiNERFktLEtRsUBPK1BbWEUgirBAYWNgGyMhRVmxAU4rRC0sI0UgikUjYSBksEBRsAQlILAAUyOwQFFaWrFATytUWliKDGQjZCNTWLFAQIphIGNhGyBjWRuKWWOxAk4rYEQtLAEtLAAtLAWxCwpDI0NlCi0ssQoLQyNDCwItLLACJWNmsAIluCAAYmAjYi0ssAIlY7AgYGawAiW4IABiYCNiLSywAiVjZ7ACJbggAGJgI2ItLLACJWNmsCBgsAIluCAAYmAjYi0sI0qxAk4rLSwjSrEBTistLCOKSiNFZLACJWSwAiVhZLADQ1JYISBkWbECTisjsABQWGVZLSwjikojRWSwAiVksAIlYWSwA0NSWCEgZFmxAU4rI7AAUFhlWS0sILADJUqxAk4rihA7LSwgsAMlSrEBTiuKEDstLLADJbADJYqwZyuKEDstLLADJbADJYqwaCuKEDstLLADJUawAyVGYLAEJS6wBCWwBCWwBCYgsABQWCGwahuwbFkrsAMlRrADJUZgYbCAYiCKIBAjOiMgECM6LSywAyVHsAMlR2CwBSVHsIBjYbACJbAGJUljI7AFJUqwgGMgWGIbIVmwBCZGYIpGikZgsCBjYS0ssAQmsAQlsAQlsAQmsG4rIIogECM6IyAQIzotLCMgsAFUWCGwAiWxAk4rsIBQIGBZIGBgILABUVghIRsgsAVRWCEgZmGwQCNhsQADJVCwAyWwAyVQWlggsAMlYYpTWCGwAFkbIVkbsAdUWCBmYWUjIRshIbAAWVlZsQJOKy0ssAIlsAQlSrAAU1iwABuKiiOKsAFZsAQlRiBmYSCwBSawBiZJsAUmsAUmsHArI2FlsCBgIGZhsCBhZS0ssAIlRiCKILAAUFghsQJOKxtFIyFZYWWwAiUQOy0ssAQmILgCAGIguAIAY4ojYSCwXWArsAUlEYoSiiA5ili5AF0QALAEJmNWYCsjISAQIEYgsQJOKyNhGyMhIIogEEmxAk4rWTstLLkAXRAAsAklY1ZgK7AFJbAFJbAFJrBtK7FdByVgK7AFJbAFJbAFJbAFJbBvK7kAXRAAsAgmY1ZgKyCwAFJYsFArsAUlsAUlsAclsAclsAUlsHErsAIXOLAAUrACJbABUlpYsAQlsAYlSbADJbAFJUlgILBAUlghG7AAUlggsAJUWLAEJbAEJbAHJbAHJUmwAhc4G7AEJbAEJbAEJbAGJUmwAhc4WVlZWVkhISEhIS0suQBdEACwCyVjVmArsAclsAclsAYlsAYlsAwlsAwlsAklsAglsG4rsAQXOLAHJbAHJbAHJrBtK7AEJbAEJbAEJrBtK7BQK7AGJbAGJbADJbBxK7AFJbAFJbADJbACFzggsAYlsAYlsAUlsHErYLAGJbAGJbAEJWWwAhc4sAIlsAIlYCCwQFNYIbBAYSOwQGEjG7j/wFBYsEBgI7BAYCNZWbAIJbAIJbAEJrACFziwBSWwBSWKsAIXOCCwAFJYsAYlsAglSbADJbAFJUlgILBAUlghG7AAUliwBiWwBiWwBiWwBiWwCyWwCyVJsAQXOLAGJbAGJbAGJbAGJbAKJbAKJbAHJbBxK7AEFziwBCWwBCWwBSWwByWwBSWwcSuwAhc4G7AEJbAEJbj/wLACFzhZWVkhISEhISEhIS0ssAQlsAMlh7ADJbADJYogsABQWCGwZRuwaFkrZLAEJbAEJQawBCWwBCVJICBjsAMlIGNRsQADJVRbWCEhIyEHGyBjsAIlIGNhILBTK4pjsAUlsAUlh7AEJbAEJkqwAFBYZVmwBCYgAUYjAEawBSYgAUYjAEawABYAsAAjSAGwACNIACCwASNIsAIjSAEgsAEjSLACI0gjsgIAAQgjOLICAAEJIzixAgEHsAEWWS0sIxANDIpjI4pjYGS5QAAEAGNQWLAAOBs8WS0ssAYlsAklsAklsAcmsHYrI7AAVFgFGwRZsAQlsAYmsHcrsAUlsAUmsAUlsAUmsHYrsABUWAUbBFmwdystLLAHJbAKJbAKJbAIJrB2K4qwAFRYBRsEWbAFJbAHJrB3K7AGJbAGJrAGJbAGJrB2KwiwdystLLAHJbAKJbAKJbAIJrB2K4qKCLAEJbAGJrB3K7AFJbAFJrAFJbAFJrB2K7AAVFgFGwRZsHcrLSywCCWwCyWwCyWwCSawdiuwBCawBCYIsAUlsAcmsHcrsAYlsAYmsAYlsAYmsHYrCLB3Ky0sA7ADJbADJUqwBCWwAyVKArAFJbAFJkqwBSawBSZKsAQmY4qKY2EtLLFdDiVgK7AMJhGwBSYSsAolObAHJTmwCiWwCiWwCSWwfCuwAFCwCyWwCCWwCiWwfCuwAFBUWLAHJbALJYewBCWwBCULsAolELAJJcGwAiWwAiULsAclELAGJcEbsAclsAslsAsluP//sHYrsAQlsAQlC7AHJbAKJbB3K7AKJbAIJbAIJbj//7B2K7ACJbACJQuwCiWwByWwdytZsAolRrAKJUZgsAglRrAIJUZgsAYlsAYlC7AMJbAMJbAMJiCwAFBYIbBqG7BsWSuwBCWwBCULsAklsAklsAkmILAAUFghsGobsGxZKyOwCiVGsAolRmBhsCBjI7AIJUawCCVGYGGwIGOxAQwlVFgEGwVZsAomIBCwAyU6sAYmsAYmC7AHJiAQijqxAQcmVFgEGwVZsAUmIBCwAiU6iooLIyAQIzotLCOwAVRYuQAAQAAbuEAAsABZirABVFi5AABAABu4QACwAFmwfSstLIqKCA2KsAFUWLkAAEAAG7hAALAAWbB9Ky0sCLABVFi5AABAABu4QACwAFkNsH0rLSywBCawBCYIDbAEJrAEJggNsH0rLSwgAUYjAEawCkOwC0OKYyNiYS0ssAkrsAYlLrAFJX3FsAYlsAUlsAQlILAAUFghsGobsGxZK7AFJbAEJbADJSCwAFBYIbBqG7BsWSsYsAglsAclsAYlsAolsG8rsAYlsAUlsAQmILAAUFghsGYbsGhZK7AFJbAEJbAEJiCwAFBYIbBmG7BoWStUWH2wBCUQsAMlxbACJRCwASXFsAUmIbAFJiEbsAYmsAQlsAMlsAgmsG8rWbEAAkNUWH2wAiWwgiuwBSWwgisgIGlhsARDASNhsGBgIGlhsCBhILAIJrAIJoqwAhc4iophIGlhYbACFzgbISEhIVkYLSxLUrEBAkNTWlgjECABPAA8GyEhWS0sI7ACJbACJVNYILAEJVg8GzlZsAFguP/pHFkhISEtLLACJUewAiVHVIogIBARsAFgiiASsAFhsIUrLSywBCVHsAIlR1QjIBKwAWEjILAGJiAgEBGwAWCwBiawhSuKirCFKy0ssAJDVFgMAopLU7AEJktRWlgKOBsKISFZGyEhISFZLSywmCtYDAKKS1OwBCZLUVpYCjgbCiEhWRshISEhWS0sILACQ1SwASO4AGgjeCGxAAJDuABeI3khsAJDI7AgIFxYISEhsAC4AE0cWYqKIIogiiO4EABjVli4EABjVlghISGwAbgAMBxZGyFZsIBiIFxYISEhsAC4AB0cWSOwgGIgXFghISGwALgADBxZirABYbj/qxwjIS0sILACQ1SwASO4AIEjeCGxAAJDuAB3I3khsQACQ4qwICBcWCEhIbgAZxxZioogiiCKI7gQAGNWWLgQAGNWWLAEJrABW7AEJrAEJrAEJhshISEhuAA4sAAjHFkbIVmwBCYjsIBiIFxYilyKWiMhIyG4AB4cWYqwgGIgXFghISMhuAAOHFmwBCawAWG4/5McIyEtAABA/340fVV8Pv8fezv/H3o9/x95O0AfeDz/H3c8PR92NQcfdTr/H3Q6Zx9zOU8fcjn/H3E2/x9wOM0fbzj/H243Xh9tN80fbDf/H2s3LR9qNxgfaTT/H2gy/x9nMs0fZjP/H2Ux/x9kMP8fYzCrH2IwZx9hLv8fYC6AH18v/x9eL5MfXS3/H1ws/x9bK/8fWirNH1kq/x9YKg0fVyn/H1Yo/x9VJyQfVCctH1MlXh9SJf8fUSWrH1Am/x9PJoAfTiT/H00jKx9MI6sfSyP/H0ojVh9JIysfSCL/H0cg/x9GIHIfRSH/H0Qhch9DH/8fQh6TH0Ee/x9AHf8fPxz/Hz07k0DqHzw7NB86NQ4fOTZyHzg2Tx83NiIfNjWTHzMyQB8xMHIfLy5KHysqQB8nGQQfJiUoHyUzGxlcJBoSHyMFGhlcIhn/HyEgPR8gOBgWXB8YLR8eF/8fHRb/HxwWBx8bMxkcWxg0FhxbGjMZHFsXNBYcWxUZPhamWhMxElURMRBVElkQWQ00DFUFNARVDFkEWR8EXwQCDwR/BO8EAw9eDlULNApVBzQGVQExAFUOWQpZBll/BgEvBk8GbwYDPwZfBn8GAwBZLwABLwBvAO8AAwk0CFUDNAJVCFkCWR8CXwICDwJ/Au8CAwNAQAUBuAGQsFQrS7gH/1JLsAlQW7ABiLAlU7ABiLBAUVqwBoiwAFVaW1ixAQGOWYWNjQAdQkuwkFNYsgMAAB1CWbECAkNRWLEEA45Zc3QAKwArKytzdAArc3R1ACsAKwArKysrK3N0ACsAKysrACsAKysrASsBKwErASsBKwErKwArKwErKwErACsAKwErKysrKwErKwArKysrKysrASsrACsrKysrKysBKwArKysrKysrKysrKysrASsrACsrKysrKysrKysBKysrKysrKwArKysrKysrKysrKysrKysrKysrKysYAAAGAAAVBbAAFAWwABQEOgAUAAD/7AAA/+wAAP/s/mD/9QWwABUAAP/rAAAAvQDAAJ0AnQC6AJcAlwAnAMAAnQCGALwAqwC6AJoA0wCzAJkB4ACWALoAmgCpAQsAggCuAKAAjACVALkAqQAXAJMAmgB7AIsAoQDeAKAAjACdALYAJwDAAJ0ApACGAKIAqwC2AL8AugCCAI4AmgCiALIA0wCRAJkArQCzAL4ByQH9AJYAugBHAJgAnQCpAQsAggCZAJ8AqQCwAIEAhQCLAJQAqQC1ALoAFwBQAGMAeAB9AIMAiwCQAJgAogCuANQA3gEmAHsAiQCTAJ0ApQC0BI0AEAAAAAAAMgAyADIAMgAyAFoAeQCvASQBpQIZAi4CXgKOArsC2ALyAwMDHgMyA38DmAPXBD4EagS3BREFLgWdBfcGAwYPBjQGTwZ0BsUHbwenCAYISgiICLgI4QkwCVgJbAmXCcoJ6AobCj4Kigq9CxULWgu5C9cMBQwtDG8MngzDDPANCQ0dDTYNWw1rDX8N5w46DoAO0w8gD08Ptw/vEBUQThCBEJUQ8RErEXERxBIYEkwSoxLTEwoTMBNyE58T2xQHFE0UXxSmFOUVCRVjFa4WDxZWFnAXAhcvF6cX/RgJGCYYvxjQGQMZKBlfGb0Z0RoRGjAaShp0GosayRrVGuYa9xsIG1gbpRvDHBwcVRyyHVAdsR3oHjwekB7sHx0fMR9jH4wfqx/nIDQgnyEoIU4hmiHpIkoioSLgIysjUSObI7sj2iPiJAQkHyRPJHoktiTUJQAlFCUpJTIlXSV6JZQlpyXiJeomASYxJokmsSbYJvUnKSd8J7koGCiCKOQpESl7KeEqMipsKscq7StAK7Ar6Sw3LIIs1S0FLT0tkC3RLjguly7tL14vpy/3MFMwmzDaMP4xQTGTMeAyRzJqMqIy4DMyM1szkTO2M+c0JDRjNJg06DVKNYk1+DZcNnM2uDcHN2s3jjfAN/g4JzhPOHU4kTklOU05gTmmOdc6FTpTOog61js0O3Q7zzwdPHg8wT0BPSY9ez3RPhA+aT7DPv8/Nz+KP9lAPECdQRNBikIIQoRC60M9Q3NDq0QQRG5FEkWzRhtGhEbIRwlHOUdXR4JHl0etSEVIlkiySM5JCUlMSbBJ0kn0Si9Kakp9SpBKnEqvSu5LLEtmS6BLs0vGS/dMKExnTLBNGk2CTZVNqE3aTgxOH04yTnZOuE7uT05PrE/1UDtQTlBhUJhQ0VDkUPdRClEdUWtRtlIBUhBSIFIsUjhSalLAUzVTqlQfVIxU91VTVbJV/lZNVplW41ckV2VXzVfZV+VYDVgNWA1YDVgNWA1YDVgNWA1YDVgNWA1YDVgNWBVYHVguWD9YWlh0WI9YqljEWNBY3FkJWShZUlluWXpZilmkWlhae1qbWrJau1rEWs1a1lrfWuha8VsQWyFbO1tlW5BbxVvOW9db4FvpW/Jb+1wEXA1cFlwfXChcMVw6XGFciFzaXRFdaV11Xc1eE15lXq9fAF8/X3tftmA0YH9g4WEaYWJheGGJYZ9htWIaYjRiZ2J4YqNjMWNrY8lj9mQnZFlkjWSaZLZk0GTcZRNlT2WrZg5maWcPZw9oBWhLaIBopGjhaTNppGm+ag5qUWp5attrFGssa3JrnmvPa/psOmxdbIlspW0BbUFtlm3Ibg5uLm5ebnluqW7RbuNvCm9Sb3tv7XA6cHdwknDBcRFxNHFacX1xs3H/cj9ynnLlczFzhnPKdAZ0NXRvdLV1BnVqdZV1x3X+djl2anacdsp3B3c/d0t3e3fIeCN4a3iTeO55K3lpeaN6C3oXelB6iXrIevl7T3uYe+J8QXyYfOl9TH2Ifdx+A35Afot+pH8Kf1V/Zn+gf8+AboDIgR6BUYGDgbOB54IigmSCxIL1gxGDPIN4g5yDwoP/hESEbYSYhOWE7oT3hQCFCYUShRuFJIVrhbuF+YZFhqCGvYb7hzyHZIeth8iIGIgpiJmI9IkYiSCJKIkwiTiJQIlIiVCJWIlgiWiJcIl4iYCJkomaifuKQIpdirCK9otJi7GL94xKjJ6M541OjZ2NpY4RjjuOiI67jxCPP49+j36Pho/PkBiQWJB9kLmQzJDfkPKRBZEZkS2RQ5FWkWmRfJGPkaORtpHJkdyR8JIDkhaSKZI8kk+SY5J2komSnJKwksOS1pLpkvuTDZMgkzSTSpNdk3CTg5OVk6iTu5PNk+CT9JQGlBmULJQ+lFCUY5R2lImUm5SulMGU1JTnlPmVDJUelXWV/ZYQliOWNpZIlluWbpaBlpOWppa5lsyW3pbxlwOXFpcpl36X7Jf/mBGYJJg2mEmYW5humIGYlZiomLuYzpjhmPSZB5kamS2ZQJlSmWSZd5mDmY+Zopm1mcmZ3ZnwmgOaF5ormj6aUZpdmmmafJqPmqOat5rKmtya75sCmxSbJ5s6m06bYpt1m4ibnJuwm8Ob1Zvom/ucDpwgnDOcRpxanG6cgZyTnKecu5zOnOGc9J0InRudLZ1AnVKdZZ14nYydoJ20ncieGJ5znoaemZ6snr6e0p7lnvifC58enzGfQ59Wn2mffJ+Pn5ufp5+yn8Wf2J/qn/ygEKAkoDCgPKBPoGKgdKCHoJqgrKC/oNOg5qD5oQyhHqEwoUShV6FqoXyhj6GiobShx6IZoiyiPqJRomOidaKHopmirKL+oxCjIqM1o0ijXKNuo4GjlKOno7KjxKPXo+Oj9aQJpBWkIaQ0pECkU6RlpHikjKSfpKukvaTQpOKk7qUApRSlJqUypUSlVqVppX2lkaXgpfOmBaYYpiumPqZQpmOmd6aDppemq6a+ptKm56bvpvem/6cHpw+nF6cfpyenL6c3pz+nR6dPp1ena6d/p5Knpae4p8qn3qfmp+6n9qf+qAaoGqgtqECoU6hmqHqojajqqPKpBqkOqRapKak8qUSpTKlUqVypb6l3qX+ph6mPqZepn6mnqa+pt6m/qdKp2qniqiWqLao1qkiqW6pjqmuqf6qHqpqqrKq/qtKq5ar4qwyrIKszq0WrTatVq2GrdKt8q4+roqu3q8yr36vyrAWsGKwgrCisPKxQrFysaKx7rI6soay0rLysxKzMrN+s8qz6rQ2tH60zrUatTq1WrWmte62PrZetqq2+rdKt5q35rgyuHq4yrkauWq5trnWufa6RrqSuuK7Lrt6u8K8ErxevK68/r1OvZq96r46vlq+qr76v0a/kr/iwC7AfsDKwRrBZsG2wgLCdsLmwzbDgsPSxB7EbsS6xQrFVsXKxjrGisbaxybHcse+yAbIVsiiyPLJPsmOydrKKsp2yurLWsumy/LMQsySzOLNMs1+zcrOGs5mzrbPAs9Sz57P7tA60K7RHtFq0bbSAtJO0prS5tMy03rTytQa1GrUutUG1VLVntXq1jbWgtbO1xrXZteu1/7YTtie2O7ZOtmG2dLaGtqO2trbJtty277cCtxW3KLc7t0O3gLe8t964ALg/uIC4r7jiuRq5ULlYuWy5dLl8uYS5jLmUuZy5pLmsubS5x7naue26ALoUuii6PLpQumS6eLqMuqC6tLrIuty68Lr8uxC7JLs4u0y7YLt0u4i7nLuvu8K71rvqu/68ErwmvDq8TrxivHa8ibycvLC8xLzYvOy9AL0UvSi9O71NvWG9db2JvZ29sb3Fvdm95b3xvf2+Cb4VviG+Lb41vj2+Rb5NvlW+Xb5lvm2+db59voW+jb6Vvp2+sb7Evte+6r7yvvq/Dr8Wvym/O79Dv0u/U79bv26/dr9+v4a/jr+Wv56/pr+uwB/AUMCcwKTAsMDDwNXA3cDpwPzBD8EbwS7BQcFVwWHBdMGHwZrBrcG5wcXB2QAGAGQAAAMoBbAAAwAHAAsADwATABcAAEEVITUzESMRIREjERMVITUBASMBEQEzAQMJ/XYbNgLENhf9dgKK/a86AlH9rzoCUQWwNjb6UAWw+lAFsPqGNjYFXPqMBXT6jAV0+owAAgCM//IBoAWwAAMADwATQAkCAgcNC3IAAnIAKyvdzi8wMUEDIwMDNDYzMhYVFAYjIiYBkhjOGQdJQUBKSkBBSQWw+/0EA/rCN0tLNzVLSwACAGAD+AI6BgAABQALAAyzCQMLBQAvM80yMDFBFQMjETUhFQMjETUBDiOLAdojiwYAif6BAXSUif6BAXyMAAQAVgAABLIFsAADAAcACwAPACNAEQQABQ0ODgAKCQkAAgJyABJyACsrETkvMxE5LzMyETMwMXMBMwEzATMBASE1IQMhNSH0AQyk/vTiAQyk/vQBlPvwBBBL++8EEQWw+lAFsPpQA3Wb/YqbAAMAZP8sBCcGmQADAAcAPQA2QBwEBzo6CCsQIwQULzU1Bi8NcgECHx8UGhoDFAVyACvNMy8RMxI5OSvNMy8REhc5MxI5OTAxQREjERMRIxEBNCYmJy4CNTQ2NjMyHgIVIzQuAiMiBgYVFBYWFx4CFRQGBiMiLgI1MxQeAjMyNjYCsZqHmQEwL2pZgL9pccqHaKd2P/AdOE8yR1wrLGtegb1nd9WNWa+OVPIqSFktS2c1Bpn+1QEr+Z/+9AEMAUM6V0cfLXGnfXu0Yj54r3FAZUcmNVw7OVZFIy5xpX2BtF0vbLOCTmg8GjNdAAUAZP/rBYoFxQARACMANQBHAEsAI0ARSTJLBTtEKTIXDiAFBXIyDXIAKysyxDIQxDIzETMRMzAxUzU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGATU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGEwEnAWRIimFkiUhHiWNii0inH0AvMD0eHz4wLj8fAhdJimFkiUdHiGNii0moIUAtMz4bHz8wLz4fyP05ewLHBEtNU4hSUohTTVGIUlKInk0oSCwsSChNKUksLEn8Vk5SiFJSiFJOUohSUoigTihILS1HKU4pSCwsSANS+45HBHIAAAEAVf/sBRAFxABCACRAFCMSAA8iAQYaMDArERE7E3IHGgNyACsyKzIvMjIvERc5MDFBNzY2NTQmIyIGBhUUFhYXASEBLgI1NDY2MzIWFhUUBgYHBQ4CFRQWFjMyPgI1MxQGBgcGBgcGBiMiJiY1NDY2AXX7PzZQSTNGIy5QMgKw/un9zklwPl6sc2+hVzJYOv7PNTMQN2tNU5x8SdApWUgHEQhW1XiR1HNKgQMYqSpRPTRYL00vLV9nO/zUApVYk4tKcqRZWZJXRXJeKt4rT0IZQGg9S4rAdWq+okAHFQdPTWq6eFmHdQABAFID/gEJBgAABQAIsQMFAC/GMDFBFQMjEzUBCRqdAQYAgf5/AXGRAAABAIH+MQKeBl0AFwAIsQYTAC8vMDFTNTQSEjY3Fw4CAhUVFBIWFhcHJiYCAoFdlqtPMDpzXzk5X3M6ME+rll0CPxHWAV0BB60miiuY3f7ZuhW6/tnemy6EJ60BBwFdAAABACf+MQJNBl0AFwAIsRMGAC8vMDFBFRQCAgYHJz4CEjU1NAImJic3FhYSEgJNX5evUDE6c185O2JyNjFQr5dfAlAR0/6k/viwJ4QsmeEBKLoVugEp35orhCaw/vf+pAABABwCUAN5BbEADgAUQAoNAQcEBA4MBgJyACvEMhc5MDFTEyU3BQMzAyUXBRMHAwOA0v7KNQE0Dq4QAS81/sTNjbm2ArsBE1qkdgFb/p52p1v+82YBIv7mAAACAEIAkgQoBLYAAwAHABC1BwcDAwYCAC/GMxDGLzAxQRUhNQERIxEEKPwaAmjpAx7Z2QGY+9wEJAAAAQAi/rgBXgDoAAoACLEEAAAvzTAxZQcUBgcnPgI1NQFeAWZUgRwuHOisZthGSy1caD+1AAEAUAIOAmECzgADAAixAwIALzMwMUEVITUCYf3vAs7AwAABAIb/9AGgAP0ACwAKswMJC3IAKzIwMXc0NjMyFhUUBiMiJoZMQUJLS0JBTHg4TU04OExMAAABAAH/gwL1BbAAAwAJsgACAQAvPzAxQQEjAQL1/cm9AjgFsPnTBi0AAgBo/+wEIwXEABcALwATQAkrBh8SBXIGDXIAKysyETMwMUEVFA4CIyIuAzU1ND4CMzIeAwMRNC4DIyIOAhURFB4DMzI+AgQjQ36vbFaTdlMtRH6vbFeTdVMs8RQnOkouOFg8HxQoOUstOVg8HgNS7qvxlkYsXpXQie6s7ZVEK1yTz/5nATRXhV07GytemW3+zFiGXz0cLGGcAAEAqgAAAwAFtQAGAAy1BgRyAQxyACsrMDFBESMRBTUlAwDx/psCOQW1+ksEl3nH0AAAAQBSAAAEPgXEAB8AGUAMEBAMFQVyAx8fAgxyACsyETMrMjIvMDFlFSE1AT4CNTQmJiMiBgYVIzQ2NjMyFhYVFA4CBwEEPvwwAdpOWiUzYkZRbjjxdNybksxrLFFuQv7FwMClAgVYgGcxRWk9RntPf9N9YrR7RIaFhUT+pQAAAgBO/+wEGgXEABwAOwAqQBYbHB4fBAAAHR0SMy8vKQ1yDQ0JEgVyACsyMi8rMi8yETkvMxIXOTAxQTMyNjY1NCYmIyIGBhUjNDY2MzIWFhUUDgIjIxU1MzIeAhUUDgIjIi4CNTMUFhYzMjY2NTQmJiMBiZBUbzYxY0xAZzzyetOEjdN2OnKqcLW1gLVyNUmGs2lerIhP8T1vSExuO0J6UwNFOmZCRWM2M11AdLRnXbiIPoBpQTaEPGmGS2afbjg0Z5tmQWM4NmpLVWozAAACADcAAARZBbAABwALAB1ADgMHBwYCAgUJDHILBQRyACsyKxI5LzkzEjkwMUEVIScBMwMBAREjEQRZ++YIAnTB0f6XAnHxAgfAkQPY/pr9vQOp+lAFsAAAAQB//+wEOQWwACkAHUAOJwkJAh0ZGRMNcgUCBHIAKzIrMi8yETkvMzAxQScTIRUhAzY2MzIeAhUUDgIjIi4CJzMeAjMyPgI1NC4CIyIGAWvATwMR/bcoInhNZ6NyPDt2s3pbp4RQBuwJPWZDPVg7HSFBYkBWWwKlLwLczP6bFCdDf7VxZbCGSzVpm2VHYzQrUW5DQGpOKzIAAAEAc//sBDkFuQA2ABtADQ4sGCIiLAMABHIsDXIAKysyETkvMxEzMDFBMxUjIg4CFRUUHgIzMj4CNTQuAiMiBgYHJz4DMzIeAhUUDgIjIi4CNTU0EjYkA0YeEYG7eDsmRVo0Nlg+IB88WTpIdUcDXAhDbpFXapxnM0B7r291t39CVK8BEgW5xVCMu2nlV4VZLi1QbkE+bVMvRG09Hl2UaDdQia9fabWITFqeznNkpgEn4oEAAAEARAAABDUFsAAGABNACQEFBQYEcgMMcgArKzIRMzAxQRUBIwEhNQQ1/br+AkX9DgWwhPrUBPDAAAAEAGf/7AQmBcQAEAAgADAAQAAhQBANPT0lLRUVBDUtBXIdBA1yACsyKzISOS8SOTMSOTAxQRQGBiMiJiY1ND4CMzIWFgc0JiYjIgYGFRQWFjMyNjYTFAYGIyImJjU0NjYzMhYWBzQmJiMiBgYVFBYWMzI2NgQmftmIiNp+RoGvaIraffI8bEdIajs6bElJajrRc8qBgstzc8qCgspz8TNcPz9cMjJdPz9cMgGNiLpfX7qIWpNrOma0bEluPDxuSUprODhrAuJtqmFhqm2Cs15es4pBYzg2YkRDYzg4YwABAF3/9wQVBcQAOAAbQA0AOBYhITgMKwVyOAxyACsrMhE5LzMRMzAxZTMyPgI1NTQuAiMiDgIVFB4CMzI+AjcXFA4CIyIuAjU0PgIzMh4CFRUUDgMjIwEwFIq5bjAlQ1cyN1c7Hx06WDs4XkYoAlw/b5NWaJ9pNEB6r292sno+Lmen8aIWvkmCsGf7WYdbLjFVcUA8b1YyK0pcMBxMk3lIT4iwYWm4jU9cotZ7VYHvy5lVAP//AH//9AGaBFEEJgAS+QAABwAS//oDVP//ADP+uAGHBFEEJwAS/+cDVAAGABARAAACAD4ApwOJBEwABAAJABZADAEDBwYABAgFCAIJAgAvLxIXOTAxUwUVATUlAQc1AfQClfy1A0v9a7YDSwKR/e0BdJ2o/v8jnQFzAAIAjwFkA/MD0gADAAcADrUGBxIDAhAAPzM/MzAxQRUhNQEVITUD8/ycA2T8nAPSxsb+WMbGAAIAfgCoA94ETQAEAAkAFUALBQgEAAYDAQcCCQIALy8SFzkwMUElNQEVBQE3FQEDH/1fA2D8oAKjvfygAmn76f6NnqsBACid/owAAgA7//QDlwXEACAALAAbQA0BASQkKgtyERENFgNyACsyMi8rMhEzLzAxQSM+Ajc+AjU0JiYjIgYGByM+AjMyFhYVFAYGBwYGAzQ2MzIWFRQGIyImAj/fAR5HOy5KLCpRPDJYNgLxAnTEeYa+ZUZwQTgo9EpAQEpKQEBKAa1df2g6LE9ZOj9YLidRQn6sVluteliPez0zd/58NktLNjZLSwAAAgBb/jsG1gWPAEEAaAAnQBISBQVHUhNyYWRkC11dHR08KTAALzMvMxEzLzMzETMrMjIRMzAxQQ4DIyIuAjcTMwMGHgIzMj4CNzYuAyMiDgMHBh4DMzI2NxcGBiMiJCYmAjc2EjY2JDMyHgISAQYeAjMyPgI3Fw4DIyIuAjc+BDMyFhcHJiYjIg4CBs8EMmWeb0NoRR4HM68yBhEkLhc2Vj0jAwcoX5fSh3zSpndDBgctZpvNfVi1PiZG0l2b/v/Fgj4HB1aX0QEGmpz8v346/AAHDSU8KBk5ODIRTBdGWGY3SXFIHgkKOVVsfUJxgDleHV1AOV1GLwIIYcCeXi9YfU0CN/3JPU4qED1tkFSM7bqBREyPx/eNlPS8gUIoIYUtLFCb4AEir6QBIeyrXFKc3v7p/v1EakgmGThdRVdOd08pQHWjZWewimEzQCt4GzA0aZoAAAMAEQAABT8FsAAEAAkADQApQBQEBwcKDQ0GAAsMDAIIAwJyBQIIcgArMisyETkvMzk5MxEzMhEzMDFBASEBMwEBJzMBARUhNQLL/k3++QIkqAFa/kwTqQIm/uP86ATu+xIFsPpQBO7C+lACHMfHAAACAJQAAASlBbAAGQAwAClAFBkpJgInJwEmJg4MDwJyHBsbDghyACsyETMrMhE5LzMzETMSOTkwMUEhJyEyNjY1NCYmIyMRIxEhMh4CFRQGBgcDITchMjY2NTQmJiMhNyEXHgIVFAYGArb+jQIBRFJzPDhzWfP7Ae54vYVFVqh9W/5JcQFGVXI5MmxX/uYCAW85eJtMeeICkrcxXUJJXCr7GAWwLmGUZlqVXgn9L8c5ZURHaTm3RQRinFqLvGEAAQBm/+wE6wXEACcAFUAKGRUQA3IkAAUJcgArzDMrzDMwMUEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAjMyNjYD8PoMiPawh9iaUVOc24mu8IUP+gpDgmlWgFYrJ1F+WGuFRQHaj9+AYbP+nXmd/rVggOKSXoZHQHy1dHtus4BGRIMAAAIAlAAABNIFsAAaAB4AG0ANAgEBHQ4PDx4Cch0IcgArKzIRMxEzETMwMWEhNyEyNjY1NTQuAiMhNSEyHgIVFRQOAgERIxECO/7JAgE1h7ddNWeVYf66AUaR8K9eXrDz/r77x3bcmE92tnxAyGG2/p1Nnf61YQWw+lAFsAAEAJQAAARNBbAAAwAHAAsADwAdQA4LCgoGDw4HAnIDAgYIcgArMjIrMjIROS8zMDFlFSE1ExEjEQEVITUBFSE1BE38+0f7A1T9YAMA/QDHx8cE6fpQBbD9oMTEAmDIyAADAJQAAAQ0BbAAAwAHAAsAG0ANBwYGAgoLCwMCcgIIcgArKzIRMxE5LzMwMUERIxEBFSE1ARUhNQGP+wNN/W4C5f0bBbD6UAWw/YPHxwJ9yMgAAQBr/+wE8gXEACsAG0ANKyoqBRkVEANyJAUJcgArMivMMxI5LzMwMUERDgIjIiYmAjU1NBI2NjMyFhYXIy4CIyIOAhUVFB4CMzI2NjcRITUE8h+D2KGJ5KVaU5zdjLPrgBH2DEV/ZVeEVywzYYxYVm5BEv7RAuj91ClhRl20AQOmZaUBA7Rdd9KHTHhFQoC4dmd4uoBBHSkTASG7AAADAJQAAAUXBbAAAwAHAAsAG0ANCQYIAwICBgcCcgYIcgArKxE5LzMyETMwMUEVITUTESMRIREjEQRW/Ps++wSD+gNQx8cCYPpQBbD6UAWwAAEApQAAAaAFsAADAAy1AAJyAQhyACsrMDFBESMRAaD7BbD6UAWwAAABAC//7APlBbAAEwATQAkQDAwHCXICAnIAKysyLzIwMUERMxEUBgYjIiYmNTMUFhYzMjY2Auv6fNaIi9d6/DdlREFlOgG1A/v8BZHMbF7ClVZpLztzAAMAlAAABRYFsAADAAkADQAcQBAGBwsFDAgGAgQDAnIKAghyACsyKzISFzkwMUERIxEhAQEnEwETATcBAY/7BGb9sv6wLPABqCT+Ia0CXAWw+lAFsP1D/pz5ASgCAPpQArKr/KMAAAIAlAAABCQFsAADAAcAFUAKAwICBgcCcgYIcgArKxEzETMwMWUVITUTESMRBCT9JUb7x8fHBOn6UAWwAAMAlAAABmoFsAAGAAsAEAAbQA0CBw4FCwhyDAQABwJyACsyMjIrMjIROTAxUzMBATMBIwEzExEjATMRIxH64AGlAaTg/dSy/W/VJfoFANb7BbD7nQRj+lAFsPw0/hwFsPpQAeQAAAEAlAAABRcFsAAJABdACwMIBQkHAnICBQhyACsyKzISOTkwMUERIwERIxEzAREFF/v9c/v7Ao8FsPpQBBP77QWw++sEFQACAGX/7AUdBcQAFQArABNACScGHBEDcgYJcgArKzIRMzAxQRUUAgYGIyImJgI1NTQSNjYzMhYWEgc1NC4CIyIOAhUVFB4CMzI+AgUdVp/eh4bdollYod2Gh96gV/svW4RTU4JbMDBdglNUglovAwBQpf76uGFhuAEGpVClAQW5YWG5/vv1Unq7f0FBf7t6Unq8gUFBgbwAAAEAlAAABM8FsAAXABdACwIBAQ4MDwJyDghyACsrMhE5LzMwMUEhNSEyNjY1NCYmIyERIxEhMhYWFRQGBgK9/oUBe2N6OTl6Y/7S+wIpqe18fO0CH8dAcUlFeUr7GAWwd9GGjcpsAAMAYP8DBRkFxAADABkALwAZQAwgFQNyACsrAwoJcgIALysyMhEzKzIwMWUBBwEBFRQCBgYjIiYmAjU1NBI2NjMyFhYSBzU0LgIjIg4CFRUUHgIzMj4CA5cBf6P+iAIeVqDeh4bdollYod2Gh9+gV/wvW4NUUoJcMDBdg1JUglovwv7QjwEtAtBQpf76uGFhuAEGpVClAQW5YWG5/vv1Unq7f0FBf7t6Unq8gUFBgbwAAgCUAAAE3wWwABgAHQAjQBIbGgkDDAwLCwAcGRgIchYAAnIAKzIrMjISOS8zEhc5MDFTITIWFhUUBgYHByEnITI2NjU0JiYjIREjIQElARWUAgOm6n1QkmVM/jECAVtaeD07el7++PsDP/6qAQcBWwWwZMOPbaZxHyXHQG9GTHE9+xgCjgH9fg0AAQBL/+wEjgXEADkAH0APCiYPNjExKwlyGBQUDwNyACsyLzIrMi8yETk5MDFBNC4CJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4DFRQOAiMiLgI1MxQeAjMyNjYDkhtEe19or4JIS4u+c6Lrf/k9e15ZdjomTnZQebR4PEqJv3Vpy6Zi+zFYdUNYdzwBdy1GOjcdIE9piVpZkms7eMp6SG9ANlw6KUM5MhckV26LWFyTZzc4c610R2Q/HjJaAAIALQAABLQFsAADAAcAFUAKAAMDBgcCcgEIcgArKzIyETMwMUERIxEhFSE1Auv5AsL7eQWw+lAFsMjIAAEAgP/sBL8FsAAVABNACQERBgsCcgYJcgArKxEzMjAxQTMRFAYGIyImJjURMxEUFhYzMjY2NQPF+pD3mJ32jfpIhFpag0gFsPwzpuBxceCmA838M2mHQECHaQAAAgARAAAFGwWwAAQACQAXQAsABggBCQJyAwgIcgArMisyEjk5MDFBASEBIwEBEyMBAocBfwEV/fa7/s8BfDS8/fgBCgSm+lAFsPta/vYFsAAEAC8AAAbmBbAABQAKAA8AFQAbQA0QDAEKAnITEg4ECQhyACsyMjIyKzIyMjAxQQEzAwEjAxMTIwEBEzMBIwMBEyMBAwIBASKYEf7Knq7rFaj+rwTV6Pr+r6j3AR8qnv7PEAFHBGn+3ftzBbD7oP6wBbD7owRd+lAFsPuU/rwEjQEjAAABACYAAATpBbAACwAaQA4HBAoBBAkDCwJyBgkIcgArMisyEhc5MDFBAQEhAQEhAQEhAQEBUwE1ATUBIf5IAcP+3P7D/sP+2wHE/kcFsP3tAhP9L/0hAh394wLfAtEAAQAIAAAE2QWwAAgAF0AMBAcBAwYDCAJyBghyACsrMhIXOTAxQQEBIQERIxEBAR8BUgFSARb+Fv3+FgWw/UkCt/xo/egCGAOYAAADAFAAAASOBbAAAwAJAA0AH0APBAwMCQ0CcgcDAwICBghyACsyETMRMysyMhEzMDFlFSE1AQEjNQEzIxUhNQSO/A0D3PyBqAOCpV38PMfHxwRO+uufBRHIyAABAIX+ugIaBo8ABwAOtAMGAgcGAC8vMxEzMDFBFSMRMxUhEQIapKT+awaPuvmguwfVAAEAEv+DA2MFsAADAAmyAQIAAC8/MDFFATMBAnL9oPECYH0GLfnTAAABAAv+ugGiBo8ABwAOtAUEAAEEAC8vMxEzMDFTNSERITUzEQsBl/5ppgXVuvgruwZgAAIANgLZAzgFsAAEAAkAFkAJCAcHBgAFAgMCAD/NMjk5MxEzMDFBAyMBMxMDJzMBAcHBygErjIHBLI0BKgTL/g4C1/0pAfLl/SkAAQAC/0QDkgAAAAMACLECAwAvMzAxYRUhNQOS/HC8vAABADgE0wIMBgAAAwAKsgOAAgAvGs0wMUETIwEBScPJ/vUGAP7TAS0AAgBW/+wD+QROABsAOgApQBUrLB4nHjo6DycxC3IYGQpyCQUPB3IAKzIyKzIrMhI5LzMREjk5MDFlETQmJiMiBgYVIzQ+AjMyFhYVERQWFxUjJiYTFyMiDgIVFBYWMzI2NjcXDgMjIiYmNTQ+AjMC3ipVQDtWMPA+dqRmer1tFRT3ERMjAq1DZkQiKE03Sm9AAk4MOl2BVGqmXkF/uHbZAgQ6VC4oRCtAeF42UqV8/h9KdSsQJ3kB8pUZMEQrK0coPVkoayleVTZVkVxWhVovAAMAff/sBDAGAAAEABoALwAZQA4hFgdyKwsLcgQKcgAAcgArKysyKzIwMVMzEQcjARUUDgIjIi4CJzU+AzMyHgIHNTQuAiMiDgIHFR4CMzI+An3xF9oDszVrnWdllmU+DQ0+ZZVkaJ9qNfEYN11FQFw+IwYJO2xVQ1w3GQYA+ufnAicVeMmUUUyMwnVDdsGNTFCTyo8VSYFiOSxMZDq1S31LNmGCAAABAE7/7APxBE4AJwAZQAwdGRkUB3IEBAAJC3IAKzIyLysyLzIwMWUyNjY3Mw4CIyIuAjU1ND4CMzIWFhcjLgIjIg4CFRUUHgICNjtfOwPjAnjGeHy4ej09erh7gsRxAuMDNV9CSWA2FxY3YKwvVDdprGVVlsRwI3DFllVnt3k8YTo7ZX1DI0N+YzsAAAMAUP/sBAIGAAAEABoALwAZQA0hBAQWC3IrCwdyAQByACsrMisyLzIwMWURMxEjATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgMQ8tv9KTpunmNilGg+DQ0+aJVjYp1uOvEbOl1BUmo9CwYlPls+Qlw7HOAFIPoAAhEVe8uTT0yNw3dDdMCMTFKUyYsVSoBhN0h7TLU7Zk0rOGKCAAABAFH/7AQKBE4AKwAfQBBnEwEGExISABkLB3IkAAtyACsyKzIROS8zX10wMUUiLgI1NTQ+AjMyHgIVFSE1ITUuAiMiDgIVFRQeAjMyNjcXDgICWXjBh0hKhLRpdK5zOfy8AlYCL2BQPF0+ISdMbEVXiDJ/I3ChFE+OwG8of86TTk6NwnVnrRNBckYzYIdUKEd5WjNGQHszXToAAgArAAAC1QYVABEAFQAVQAsUFQZyDQYBcgEKcgArKzIrMjAxYSMRNDY2MzIWFwcmJiMiBgYVFxUhNQHC8VuqdCRGIQYULxs3Tynf/YoEonmlVQkJugUEKU45aLCwAAMAUv5VBAwETgATACkAPgAbQA8wJQtyOhoHcg4GD3IABnIAKysyKzIrMjAxQTMRFAYGIyImJic3FhYzMjY2NREBNTQ+AjMyHgIXFQ4DIyIuAjcVFB4CMzI2Njc1LgMjIg4CAzHbfN6SPpeNL3E6jE1TdUD9NzxwoGVplWQ5Dg0+ZpVlY59xPPEdPV9BVW07DAYlPl5AQWA9HgQ6++SSzGskT0CORUA9dlUDLP7MFXvLk09MjcN3Q3TAjExSlMmLFUqAYTdIe0y1O2ZNKzhiggACAHoAAAP6BgAAAwAaABdADBECFgoHcgMAcgIKcgArKysyETMwMUERIxETJz4DMzIeAhURIxE0JiYjIg4CAWrwxk4BPW+cX1CBXjHyLVY+QWNCIQYA+gAGAPxFAXC+jU0sYZtv/UkCuU5cKTRadgAAAgB8AAABkAXWAAMADwAQtwcNAwZyAgpyACsrzjIwMUERIxEDNDYzMhYVFAYjIiYBfvIQSUFASkpAQUkEOvvGBDoBHDdJSTc2SEgAAAL/q/5LAYcF1gARAB0AE0AJDQYPchUbAAZyACvOMisyMDFTMxEUBgYjIiYnNxYWMzI2NjUDNDYzMhYVFAYjIiaI8kyUayBFHwEVLxUrOh4VSkBBSUlBQEoEOvtob5lPCQi8BAUeQDUFtDdJSTc2SEgAAAMAfQAABDcGAAADAAkADQAdQBEGBwsFDAgGAgkGAwByCgIKcgArMis/Ehc5MDFBESMRCQInNwETATcBAW/yA5L+Kf7+P8MBMjT+oZgB3gYA+gAGAP46/fb++MzxAVX7xgH8qf1bAAEAjAAAAX4GAAADAAy1AwByAgpyACsrMDFBESMRAX7yBgD6AAYAAAADAHwAAAZ8BE4ABAAbADIAIUARKRICLiIiFwsDBnILB3ICCnIAKysrETMzETMRMzMwMUERIxEzAyc0PgIzMh4CFREjETQmJiMiDgIFBzQ+AjMyHgIVESMRNCYmIyIOAgFt8eMZUjhsoWpKe1sx8S9XPERfPBwCn3E3a55mU4NcMPIvVjw4VTodA178ogQ6/gsBcL6NTStckGb9LwK8T1onNFp2Axlir4VMLWCZbP1EAr1SWiMpSV4AAgB6AAAD+gROAAQAGwAZQA0SAhcLAwZyCwdyAgpyACsrKxEzETMwMUERIxEzAyc+AzMyHgIVESMRNCYmIyIOAgFr8eMdTgE/cZ5hTn9bMPItVT8+YkMkA1P8rQQ6/gsBc8CKSytgmW/9RQK8TlsnNFp2AAACAE7/7AQ8BE4AFQArABC3HBELcicGB3IAKzIrMjAxUzU0PgIzMh4CFRUUDgIjIi4CNxUUHgIzMj4CNTU0LgIjIg4CTkSBu3Z3u4JERIK6dne7gkTxHkBkRUNjQB8fQWNERGNAHgIRF3XJlVNTlcl1F3XIlVNTlciMF0mCYjg4YoJJF0iBZDk5ZIEAAAMAff5gBC8ETgAEABoALwAZQA4hFgdyKwsLcgMGcgIOcgArKysyKzIwMUERIxEzARUUDgIjIi4CJzU+AzMyHgIHNTQuAiMiDgIHFR4CMzI+AgFu8d4C1DdrnGZll2g/DQ0/aJZkZp5sNvEcPF1BQFw+IgcMOmtUQVw7HANq+vYF2v3tFXbJlVJLirtwUXfCjExPkcuRFUuBYjcrTGU7wkh4RzhjggADAFD+YAQCBE4ABAAaAC8AGUAOIRYLcisLB3IEDnIDBnIAKysrMisyMDFBETczEQE1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMjY2NzUuAyMiDgIDDxzX/E44bp5nZJVnPg4NPmiWZWWebTnxGzxcQVVtOwwHJD9dQEFeOxz+YAUD1/omA7IVe8uST0yNwndDdMCMTVKVyYsVSoFjOEp9TLU7Z00rOGOCAAACAH0AAAK5BE4ABAAWABlADQYJCQUUB3IDBnICCnIAKysrMjIRMzAxQREjETMlByYmIyIOAgcHND4CMzIWAW7x5gFWAhYzGT5ePyIDNyhRe1EWMwNs/JQEOgfgBAQjQVw5BGauhEoIAAEASf/sA8cETgA1ABdACxsADjIpC3IXDgdyACsyKzIROTkwMUE0JiYnLgM1ND4CMzIWFhUjNCYmIyIGBhUUHgIXHgIVFA4CIyImJjUzHgIzMjY2AtskZWJWj2Y4OmybYIjDaPErVkE+UScVMldCfLNgPXShZJPMaekEQ2U2QVguASUkOzAUEzVMaERCdlo0W5thK0svJz4lGysjHg4aUX9hSHdXMGmlWUNPIyM9AAIACv/sAnUFQwADABUAE0AJChELcgQCAwZyACsyLysyMDFBFSE1EzMRFBYWMzI2NxcGBiMiJiY1Amz9nrDxHTQjGS4OAR5PM1OASAQ6sLABCfvoMjUSBgO4CQ47hm8AAAIAd//sA/kEOgAEABsAFUAKAREGchgDAwsLcgArMi8yKzIwMWURMxEjEzcUDgIjIi4CNREzERQeAjMyNjYDB/LkFFEwZJxtT4RfNPEcMEAkZ3cz/wM7+8YB4AJtt4dLLmCaawK7/UM7TzAUUYoAAgAWAAAD3wQ6AAQACQAXQAsABggBCQZyAwgKcgArMisyEjk5MDFlATMBIwMBFyMBAdwBCfr+iJy6AQ4NnP6GvwN7+8YEOvyBuwQ6AAQAIwAABcgEOgAFAAoADwAVACRAFAcLABEDFAYJEAwBCgZyEg4ECQpyACsyMjIrMjIyEhc5MDFlEzMHAyMDExcjAQETMwEjAxMXIwMnAaL6mir8infDEJr+2wP9vev+3Jq69x+K/yrwA0r8/MIEOvyy7AQ6/LwDRPvGBDr8wPoDP/sAAAEAHwAAA+oEOgALABpADgcECgEECQMLBnIGCQpyACsyKzISFzkwMUETEyEBASEDAyEBAQE0ztIBCf64AVX+99zc/vYBVP65BDr+mQFn/e392QF2/ooCJwITAAIADP5LA94EOgATABgAGUANFxYVAwgCGAZyDwgPcgArMisyEhc5MDFlASEBDgMjIiYnJxYWMzI2NjcDARcHAQG2ASYBAv5ODzBNclEgOxoBCh0JPFAzElgBASun/nd2A8T7ISheVTULBrgBAh1ANgSW/Nb+KwRTAAMAUQAAA8EEOgADAAkADQAcQA0EDAwJDQZyBwMDBgISAD8zMxEzKzIyETMwMWUVITUBASM1ATMjFSE1A8H82gMQ/UKcArqgXf0PwMDAAuT8XJsDn8DAAAACADj+lAKOBj0AEQAlABlACh0JCgocHBITAQAALzIvMzkvMxI5OTAxQRcGBhUVFAYGIzUyNjU1NDY2EwcuAjU1NCYmIzUyFhYVFRQWFgJeMGdNVbiVZ1pBnLgwiJxBKFVElbhVIU8GPYkjsnPOZKRginhmzmm3i/kHiieLt2nMRWM3i2GjZsxNg2AAAAEAr/7yAVAFsAADAAmyAAIBAC8/MDFBESMRAVChBbD5Qga+AAIAHP6UAnMGPQATACYAG0ALHgsKCh8fARUUAAEALzMvMxI5LzMSOTkwMVM3HgIVFRQWFjMVIiYmNTU0JiYDJz4CNTU0NjYzFSIGFRUUBgYcMImcQChWRJS6VSBPFTBFTiFVupRmXECcBbSJJou3ac5DZDeEXaFkzk2EYPj3ihhgg03MZqBdhHlmzGm3iwABAHUBhgTXAy8AHwAbQAsMAAAWBoAcBhAQBgAvMy8RMxoQzTIvMjAxQTcUDgIjIiYnJiYjIgYGFSM0PgIzMhYXFhYzMjY2BB65MFd5SFSBSi5QLi1AJL4wV3hIVIdGME4sLUQmAxEBVpFqO0NELC8vVjlXj2c4RkEuLjNaAAACAIX+kwGZBE0AAwAPAAyzAQcNAAAvL93OMDFTEzMTExQGIyImNTQ2MzIWkhnOGQdJQUBKSkBBSf6TBAP7/QU6NktLNjZKSgADAGf/CwQLBSYAAwAHAC8AJUASAgElJSEDHAdyBwQICAwGEQ1yACvNzDMSOTkrzcwzEjk5MDFBESMRExEjETcyNjY3Mw4CIyIuAjU1ND4CMzIWFhcjLgIjIg4CFRUUHgICrb+/v2E7YDoD5AN5xXh8uXo8PHu4e4LEcQPkAzVfQklgNhcWN2AFJv7fASH7Bf7gASCBL1Q3aaxlVZbEcCNwxZZVZ7d5PGE6O2V9QyNDfmM7AAADAF8AAAR6BcQAAwAHACIAIUAQBgUFAR8WBXIMDQ0CAgEMcgArMhEzETMrMhE5LzMwMWEhNSEBITUhJRMWBgcnPgI1AzQ2NjMyFhYVIzQmJiMiBgYEevvpBBb+u/0rAtX+vBcBR1G2ISMNFXPKg4vCZvI4WzU2VzLHAZHD9P2UYJcrRghFXSkCdYrDaGa1eEtZKDZqAAAGAFz/5QVOBPEAEwAnACsALwAzADcADrUPGQUjDXIAKzIvMzAxQRQeAjMyPgI1NC4CIyIOAgc0PgIzMh4CFRQOAiMiLgIBByc3AQcnNwEnNxcBJzcXATBBc5dXV5dzQEBzl1dXl3NBsV2j2Ht72KRcXKTYe3vYo10Ez8qIyvzmyobKA6DKiMr72MqGygJgXaR6RUV6pF1eonpFRXqiXoXkql9fquSFheSrYGCr5AKKzozO+8POi83+p86LzQMmzovOAAUADQAABDIFsAADAAcADAARABUALUAWCxAQBgcSFRUIDgMDAgIRFAxyCREEcgArMisSOS8zEjk5MhEzzjIzETMwMUEVITUBFSE1JQEhASMDAQcjAQERIxEDy/ycA2T8nAF5AUgBCv5ekuQBSyKS/lwCjPoC45WV/t2UlPEC//yUA2z8+WUDbP1O/QIC/gACAIn+8gFqBbAAAwAHAA20AQIGBwIAP93ezTAxQSMRMxERIxEBauHh4f7yAxkDpf0KAvYAAgBc/iYEjAXFAC8AYQAeQBNTPwABBStdNTEwDyEMT0QdFBFyACsyLzMXOTAxZTUyNjY1NC4CJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4DFRQOAgMVIgYGFRQeAhceAxUUDgIjIi4CNTcUHgIzMjY2NTQuAicuAzU0PgICr0xqOCBKfV1vrno/R4W5dJ3jevE9dVdcdDgcRHxgcrB6QER9sPBLYS4bRn5hcbB4P0eFuHNjvppb8TRVaDRUdT0fSHtcb7B6QUF4qnyCMFU1Kj81Mh0eR2CHXlWKYjVkv4pCa0AxUTIrPzEtGh5IX4ZcUHxULALvhDBTNS1BNC8cH0dfh15Yil8xK2GkeAJEWzQXLk8zKDwzMBseR2CGXE57VS4AAAIAYwTlAywFzQALABcADrQDCQkPFQAvMzMvMzAxUzQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImY0Q4OUREOThEAc9EOThFRTg5RAVZMUNDMTBDQy8xQ0MxMENDAAMAWv/rBeUFxAAfADMARwAfQA4dBAQlJUMUDQ0vLzkDcgArMhEzETMvMxEzETMwMUEzFAYjIiYmNTU0NjYzMhYVIzQmIyIGBhUVFBYWMzI2JRQeAjMyPgI1NC4CIyIOAgc0EjYkMzIEFhIVFAIGBCMiJCYCA8mWs5prm1VVm2uatJZdW0FZLS1ZQVtc/QZco9d7etajXFyj1np716NcdW7EAQGTkwEBw25uw/7/k5P+/8RuAlWdnWKuc3VzrmKdnWJVQXRKdkt0QVTnheWrX1+r5YWF5KpfX6rkhZ8BEMtxccv+8J+f/vDNcnLNARAAAAIAjgK0Aw4FxQAXADEAGrUxGhoNFiq4AQCyCA0DAD8zGtzEEjkvMzAxQRE0JiYjIgYVJzQ2NjMyFhYVERQWFyMmExcjIgYGFRQWMzI2NjUXDgIjIiY1NDY2MwJMGjYpQ02lTYtdV4FJDA6qGCkBkztNJTs/KlU6Eg8/YkR4gUuXcgNeAVQqOx40Mw5EaTw+elz+xjFYLEkBcnEfNB8qMSY4GHEgRCx7Z0pnNv//AFcAiQOFA6cEJgGS6/4ABwGSAVX//gACAH8BdwO/AyIAAwAHABK2BgcDBgICAwAvMxEzEjkvMDFBFSE1BREjEQO//MADQL4DIqWlS/6gAWAABABZ/+sF5QXEAB4ALwBDAFcANUAbHxsYIAQCAgEBDykNDTU1UwwPD0lTE3I/SQNyACsyKxI5LzMRMxEzLzMSOX0vMxIXOTAxQSMnMz4CNTQmJiMjESMRITIWFhUUBgYHIgYjDgIjNzIWFRUUFhcVIyYmNTU0JiUUHgIzMj4CNTQuAiMiDgIHNBI2JDMyBBYSFRQCBgQjIiQmAgM42ALBLEwuIU9DhZEBFmORTzJhRgMHAxEJCR4VnHIHCpUKA0L9UVuk13p71qJcXKLWe3rXpFt2bsQBAZOTAQHDb2/D/v+Tk/7/xG4CjoIBGzUnMToZ/TEDUDlzVjZUPRMOCgkCY4doNiVDFxAaYBY0SURLheWrX1+r5YWF5KpfX6rkhZ8BEMtxccv+8J+f/vDNcnLNARAAAQCdBRADRAWqAAMACLEDAgAvMzAxQRUhNQNE/VkFqpqaAAIAgQOxAo4FxQAPABsAD7UTDMAZBAMAPzMazDIwMVM0NjYzMhYWFRQGBiMiJiY3FBYzMjY1NCYjIgaBSHlHSHZHR3ZIR3lIh0w1NUhINTVMBLlJeklJeklJeUZGeUk2SUg3OEpKAAMAXAABA/AE/QADAAcACwAStwsCAwMEChJyACsvOS8zMjAxQRUhNQERIxEBFSE1A/D8bAI81QIL/K0Dg8TEAXr8PAPE+8XBwQAAAQA9ApsCsAW7ABwAE7EcArgBALMLEwNyACsyGswyMDFBFSE1AT4CNTQmIyIGFSM0NjYzMhYWFRQGBgcHArD9nwEfKTEXODVAP7ZJh15fhUcwW0ONAyyRegEJJT80Eis3RzNJekg6bEw3XVw3dgACADcCkAKpBbsAGQAzACxADBwYAAAaGhAsKSkkELgBALULCwgQA3IAKzIyLxoQzDIvMhE5LzMSOTkwMUEzMjY2NTQmIyIGFSM0NjYzMhYWFRQGBiMjFTUzMhYWFRQGBiMiJiY1MxQWMzI2NTQmJiMBDlcrOB03QDFDtlCGT1uKTUd9VHV1XYRFVJFaS41bt0g9QT8jQCsEbBksHiQ3KSVHZDQzZEo5WDEpUitYRkpoNjFqVic4OSsmLhUAAAEAbwTTAkIGAAADAAqyAYAAAC8azTAxUxMhAW/DARD+8ATTAS3+0wADAJP+YAQkBDoABAAaAB4AGUAMHQUAFgsTcgMSchwAAC8yKysyETkvMDFBMxEjJzc3FA4CIyImJicDMxQeAjMyPgIBMxEjAzLy3xMjXytZiF1KdlYcH4keNkkrT2c7Gf0+8PAEOvvG+v0CcsCOTitcSgERWnI9GDFZeQKL+iYAAAEASQAAA1QFsAAMAA62AwsCcgAScgArK80wMWEjESMiJiY1NDY2MyEDVMlWn9tyctufAR8CCHnUh4bUegAAAQCQAkYBqgNOAAsACLEDCQAvMzAxUzQ2MzIWFRQGIyImkEtCQktLQkJLAsk4TU04OEtLAAEAbP4/AcoABAATABG2CwqAEwIAEgA/MjIazDIwMXczBxYWFRQOAiMnMjY2NTQmJieLsww5XypTe1EHJz4lIEM1BDgKTVYzUjsgiBMoIB8iEgQAAAEAggKbAgEFrwAGAAqzBgJyAQAvKzAxQREjEQc1JQIBtcoBbAWv/OwCQDGPdgACAHkCswMoBcUAEQAjABC2Fw4gBQNyDgAvKzIRMzAxUzU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGeVWZamqaU1OZaWuaVagmUDw7TScoTTw7TyYEE1BnoFtboGdQZ59aWp+3UDxgNzdgPFA8Xjg4XgD//wBeAIsDlwOoBCYBkwkAAAcBkwF9AAD//wBfAAAFfQWsBCcB4P/dApgAJwGUARwACAAHAjoCvgAA//8AUwAABcUFrwQnAZQA8QAIACcB4P/RApsABwHfAxUAAP//AGYAAAYABbsEJwGUAa8ACAAnAjoDQQAAAAcCOQAvApsAAgBG/n4DpwROACEALQAYQAoAACUlKxAREQ0WAC8zMy8/My8zLzAxQTMUBgYHDgIVFBYWMzI2NjczDgIjIiYmNTQ2Njc+AhMUBiMiJjU0NjMyFgGY3x1DPCxKLSxTOzRYNwHxAXTDeojBZkhxPyUnDvdJQEFKSkFASQKWXX1lPCxQXT4/VispVEB+rVhbrHtakn47I0hUAWo2S0s2NkpKAAb//AAAB04FsAAEAAgADAAQABQAGAAxQBgAFxcIBxQTBxMHEwINAxgCcgwLCw4CCHIAKzIyETMrMjIROTkvLxEzETMyETMwMUEBIQEzExUhNQEVITUTEyMDARUhNQEVITUD2P1D/uEDPJmA/RUF6P0jGD3xPQMn/YoCx/0kBRj66AWw/HrS0v6XwcEE7/pQBbD9ocHBAl/BwQACAEwAywPrBHcAAwAHAAyzBAYCAAAvLzMyMDF3JwEXAwE3Ad6SAwuSkPz1kgMLy5EDG5L85gMakvzlAAADAGn/ogUiBe0AAwAbADMAF0ALAQAvCiMWA3IKCXIAKysyETMyMzAxQQEjARMVFAIGBiMiLgM1NTQSNjYzMh4DBzU0LgMjIg4CFRUUHgMzMj4CBRD8MqcD0LdWoN6Ha7mWazlYod2GbLqVaTn8HjtWb0NTglswHzxXbkJUglovBe35tQZL/RNQpf76uGE/d63dhFClAQW5YT94rN3UUmGfeVIqQX+7elJin3pTKkGBvAAAAgCVAAAEgQWwAAMAGQAdQA4PDg4DGQQEAwACcgMIcgArKxE5LzMROS8zMDFTMxEjEyEyFhYVFAYGIyE1ITI2NjU0JiYjI5Xx8WABiqfkd3fkp/7eASJidzc3d2L6BbD6UASYccZ/fsZxv0ZwPkBxSAAAAQCK/+wEngYVADkAGUANIxs2CAIKcggBchsLcgArKysRMxEzMDFBESMRND4CMzIWFhUUDgIVFB4DFRQGBiMiJiYnNxYWMzI2NjU0LgM1ND4CNTQmJiMiBgYBevA+c6BkcbVrIy4jQWBgQWa8gTRyXxsxIXxHQFQqQWBhQSUwJS1OMjtVLgRR+68EU3CocDpOnHdNYklLNzBRT1tzTHSfURIdEb8ULClHLjVSTFdyT0BZS1M6OE8qNXMAAwBI/+sGhgRPABQAMgBeADdAHFczMzIXRkUUJQADKRdFF0UPHykLckw+PgUPB3IAKzIyETMrMhI5OS8vEhc5ETMRMzIRMzAxZRE0JiYjIgYGFSc0PgIzMhYWFREDFyMiBgYVFBYWMzI+AjcXDgIjIiYmNTQ+AjMBIi4CNTU0PgIXMh4CFRUhNSE1NCYmIyIOAhUVFB4CMzI2NxcOAgLhKlM7QF4y8UF2pmZ+umjAAedNaTUoUj8wY1QzAXUac7R9e6pYPXixdQLDfL6DQkJ+sW5rp3M7/M8CQipcS0BdPR4iR3FPb4o3Rx1tm7cCEj5YLypIKxJIeFoxV66C/hMBqaQwTi4qQyYkOD8clTBkQ1KWZE97VS39aE6OwXM5d8WQTwFDgLRwjKcdRGw/NV5+STlHeVw0PR+hFzkrAAIAaP/sBEIGLAA0ADgAGUALNiAWFgEqDAtyOAEALzMrMhI5LzMzMDFTNxYEFhIVFRQOAiMiLgI1ND4CMzIWFhcnNC4CIyIOAhUUHgIzMj4CNTU0LgIlAScB9UurARrOb0qFtWxttINGP3elZnG2bQRXIUJkQ0BiQyIiQV48PF1AIWKp2AJv/dlLAigFbb8lovH+ybxVf9SaU0uGsWZyuYVIZ6lkAh1BOCMsU3ZKOWpUMThkh09lp/u0dTD+lWsBagAAAwBDAJYEOgTJAAMADwAbABO3GRMCBw0DAhIAP93GMhDGMjAxQRUhNQE0NjMyFhUUBiMiJhE0NjMyFhUUBiMiJgQ6/AkBcktCQktLQkJLS0JCS0tCQksDGM7OAS44S0s4OEpK/Qo4S0s4N0tLAAADAE7/dQQ8BL0AAwAZAC8AGUAMIAEBFQtyKwAACgdyACsyLzIrMi8yMDFBASMBATU0PgIzMh4CFRUUDgIjIi4CNxUUHgIzMj4CNTU0LgIjIg4CA9z9aY8Cl/0BRIG7dne7gkREgrp2d7uCRPEeQGRFQ2NAHx9BY0REY0AeBL36uAVI/VQXdcmVU1OVyXUXdciVU1OVyIwXSYJiODhigkkXSIFkOTlkgQADAIH+YAQ0BgAAAwAZAC8AG0APKwogFQdyCgtyAwByAg5yACsrKysyETMwMUERIxEBFRQOAiMiLgInNT4DMzIeAgc1NC4CIyIOAgcVHgMzMj4CAXPyA7M3a5xmZZdoPw0NP2iVZGeeazfxHDxdQUBcPiMGCCU9W0BBXDscBgD4YAeg/CcVdsmVUkuKu3BRd8KMTE+Ry5EVS4FiNytMZTvCN19IKThjggAEAFD/7AStBgAABAAaAC8AMwAdQA8hBAQWC3IzMisLB3IBAHIAKysyzjIrMi8yMDFlETMRIwE1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMjY2NzUuAyMiDgIBFSE1AxDy2/0pOm6eY2KUaD4NDT5olWNinW468Rs6XUFSaj0LBiU+Wz5CXDscA2z9YOAFIPoAAhEVe8uTT0yNw3dDdMCMTFKUyYsVSoBhN0h7TLU7Zk0rOGKCAwGnpwAABAAfAAAFnAWwAAMABwALAA8AH0APAwKABwYGCgwLAnINCghyACsyKzIROS8zGswyMDFBFSE1ARUhNRMRIxEhESMRBZz6gwQ8/Ps++gSD+wSrnp7+pcfHAmD6UAWw+lAFsAABAJAAAAGBBDoAAwAMtQMGcgIKcgArKzAxQREjEQGB8QQ6+8YEOgAAAwCNAAAEbQQ6AAMACQANAB9ADwwHBwsGBgIJAwZyCgIKcgArMisyETkvMzMRMzAxQREjESEBISczARMBNwEBfvEDxv3//vQfswFNE/6ZvwHbBDr7xgQ6/XXaAbH7xgHYif2fAAMAIAAABDYFsAADAAcACwAbQA0CCgAHBgYKCwJyCghyACsrETMRMzIRMzAxQRUFNQEVITUTESMRAo79kgQW/SVF+gOukLuQ/dTHxwTp+lAFsAACACAAAAIyBgAAAwAHABNACQIGAAcAcgYKcgArKzIRMzAxQRUFNQERIxECMv3uAXzxA7CQu5ADC/oABgAAAAMAkP5LBQwFsAADAAcAGQAdQA4VDgYHBwMIcgkFBAACcgArMjIyKzIRMy8zMDFTMxEjEzcBBxEzERQGBiMiJic3FhYzMjY2NZD7+0uwAzex+1ehcSM+JA4VNxcqOh4FsPpQBTt1+sV1BbD6GHuqWAcKwwYGKlE6AAIAff5LBAYETgAEACoAGUAOHBUPciYLB3IDBnICCnIAKysrMisyMDFBESMRMwMHND4CMzIeAhURFAYGIyImJzcWFjMyNjY1ETQuAiMiDgIBbvHeJyk5apZeUYNdM1aebyM+Ig4TOxYqOR8aM0kvSWtFIgNT/K0EOv4HAnLBjk4wZ6Vz/SN5qFYHCsEGBihPOgLbQ102GTRaeAAFAGX/6wc0BcUAIwAnACsALwAzADNAGi8uLiYyKDMCciknJghyFRISFhkJBAcHAwADAD8yMhEzPzMzETMrMjIrMjIROS8zMDFBMhYXFSYmIyIOAhURFB4CMzI2NxUGBiMiLgI1ETQ+AgEVITUTESMRARUhNQEVITUCqk2VQ0KUT05+Wi8wWn9OTpRBQ5NNgtabVFOb1QUM/PtH+wNU/WADAP0ABcUNCMYMDzNmlmT+zmSXZjQPDMYHDlef24QBMITbn1f7AsfHBOn6UAWw/aDExAJgyMgAAwBZ/+sG9gRPACoAQABWACdAEyQAAEc8ExISPFIZCwsxB3I8C3IAKysyETMyETkvMxEzMxEzMDFFIi4CNTU0PgIXMh4CFRUhNSE1NCYmIyIOAhUVFB4CMzI2NxcGBgE1ND4CMzIeAhUVFA4CIyIuAjcVFB4CMzI+AjU1NC4CIyIOAgVNdLmDR0eArmdwqXE6/NUCPS1eSzhYPB4iRmhGbYw4TDfH+nxDgLh2eLmAQkJ/uXd3uYBD8h0+YUVEYT4dHT5iRURhPR0VUZDDcyp3x5RRAUaBsW2OrRpCaz83YoBJKkZ8XzY2J5swUgImF3XJlVNTlcl1F3XJlVNTlcmMF0mCYzg4Y4JJF0iBZDk5ZIEAAAEAiQAAApQGFQARAA62DQYBcgEKcgArKzIwMWEjETQ2NjMyFhcHJiYjIgYGFQF68VmmcyhKJxgTLR81SCYEonmlVQwJtQUFKlA5AAABAFX/7AUjBcQALAAbQA0PAAYJCQAaIgNyAAlyACsrMhE5LzMRMzAxRSIuAjU1IRUhFRQeAjMyPgI1NTQuAiMiBgcnPgIzMh4CFRUUDgICvZfnm08EIPzaJ1aMZViIXS8wZqV3hLw7MBh5tG+k/KtYX6ffFF2x+ZqPwyFPimc7SoOtYntjrYNLMhjCDSwhZbf9l3uX/LdjAAH/3v5LAtQGFQAnAClAFRQCAhUnBnIfIiIeGwFyCw4OCgcPcgArMjIRMysyMhEzKzIyETMwMUEVIxEUBgYjIiYnNxYWMzI2NjURIzUzNTQ2NjMyFhcHJiYjIgYGFRUCic9Tm2wkPCIPDz8QKzgbpqZZpnQnSyYXFDEfNEckBDqw/DF3pFUHCrsFBylPOAPPsGh5pVUMCbgFBShPOWgAAwBb/+wFrwYrAAkAIQA5AB1ADgUGBikpAAAcA3I1EAlyACsyKzIvMhE5ETMwMUEzFAYGIzUyNjYTFRQCBgYjIi4DNTU0EjY2MzIeAwc1NC4DIyIOAhUVFB4DMzI+AgT6tVGngEtVIxpWoN6HarqWazlYod6FbLuUajj8HjtWb0NSglwwHzxXb0FUg1ouBiuHvmORQ339LFCl/vq4YT93rd2EUKUBBblhP3is3dRSYZ95UipBf7t6UmKfelMqQYG8AAADAE3/7AS3BKgACQAfADUAFUAKJhsLcjEAABAHcgArMi8yKzIwMUEzFAYGIzUyNjYBNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgIEFqFDlXtLTBv8N0SBu3Z3vIFERIG6d3e7gkTxHkFjRURiPyAfQGNFRGJBHgSoc6ZYdz5w/bUXdcmVU1OVyXUXdciVU1OVyIwXSYJiODhigkkXSIFkOTlkgQACAID/7AY6BgIACQAfABlADAUKCgAAFQJyGxAJcgArMisyLzIRMzAxQTMUBgYjNTI2NiUzERQGBiMiJiY1ETMRFBYWMzI2NjUFi69PuJ5paiP+OvqQ95id9o36SIRaWoNIBgKRyGiSRogP/DOm4HFx4KYDzfwzaYdAQIdpAAADAHf/7AUkBJUACQAOACUAHUAOBQsLAAAbBnIiDg4VC3IAKzIvMisyLzIRMzAxQTMUBgYjNzI2NgERMxEjEzcUDgIjIi4CNREzERQeAjMyNjYEhp5BnYsBXlUX/oHy5BRRMGScbU+EXzTxHDBAJGd3MwSVdJ5QfTFl/LkDO/vGAeACbbeHSy5gmmsCu/1DO08wFFGKAAAB/67+SwGSBDoAEQAOtg0GD3IBBnIAKysyMDFTMxEUBgYjIiYnNxYWMzI2NjWh8VWfbiQ8Ig4TOhUqOh8EOvuIeahWBwq7BgYrUjoAAQBX/+wD9gRQACoAGUAMERQUABkLC3IkAAdyACsyKzISOS8zMDFBMh4CFRUUDgInIi4CNTUhFSEVFBYWMzI+AjU1NC4CIyIGByc2NgIAdLmDRkaArmdwqXE6Ayv9wy1fSjhXPB8jRWhGbIw5TDjHBFBRkMNzKnbIlFEBRoGxbY6uGUFsQDhhgUkqRnxfNjYnmzBSAAEAkAThA0QGAAAIABS3BwUFBAEDgAgALxrNMjkyETMwMUEBFSMnByM1AQIvARXDmZm/AREGAP7sC52dDQESAAABAG4E4AM1BgAACAAStgEGgAcEAgAALzIyMhrNOTAxQRc3MxUBIwE1ATuWlc/+6Jj+6QYAnZ0L/usBFgoA//8AnQUQA0QFqgYGAHAAAAABAHUEzQL/BecADgAQtQEBCYAMBQAvMxrMMi8wMUEzFAYGIyImNTMUFjMyNgJMs0+RZJevs0NQT0IF51N/SJ19OFVVAAEAgQTkAYYF1QALAAmyAwkQAD8zMDFTNDYzMhYVFAYjIiaBRT09RkY9PUUFXDNGRjM0REQAAAIAeASNAi0GJQANABkADrQXBIARCwAvMxrMMjAxUzQ2NjMyFhUUBgYjIiY3FBYzMjY1NCYjIgZ4OmI/XX05Yz5efWs+MjI9PTIyPgVXOV04eVU5XDV0VixDQi0uQ0MAAAEAKf5UAZ8AOgAVAA60CA+AAQAALzIazDIwMWUXDgIVFBYzMjY3FwYGIyImNTQ2NgEWcy5KKSAnHiwPFxlOPFh7Lmg6Oh49RSgeJxEHiw8dZmI0ZV0AAQB3BN4DUwXzABkAJ0ATAAABAQoSQA8aSBIFgA0NDg4XBQAvMzMvMy8aEM0rMjIvMy8wMUEXFAYGIyIuAiMiBhUnNDY2MzIeAjMyNgLAkzpkPzFEODsoJjWUOmQ/KUM9QCcmNgXzC0lzQhwkGzgvCEh0RBskHDoAAgBLBNEDWAX/AAMABwAOtAEFgAAEAC8zGs0yMDFBEzMBIRMzAwGL5On+9f3+tOThBNEBLv7SAS7+0gAAAgCJ/m4B8P+9AAsAFwAOtA8JgBUDAC8zGswyMDFXNDYzMhYVFAYjIiY3FBYzMjY1NCYjIgaJa0tJaGhJS2tlLyIgLCwgIi/sSWBgSUpcXUkhLi0iIy4uAAH8kwTT/mcGAAADAAqyA4ACAC8azTAxQRMjAf2jxMn+9QYA/tMBLQAB/WIE0/81BgAAAwAKsgGAAAAvGs0wMUETIQH9YsMBEP7wBNMBLf7TAP///HQE3v9QBfMEBwCl+/0AAAAB/ToE5v6bBn0AFAAQtRQCAIALDAAvMxrMMjIwMUEjJz4CNTQuAiM3Mh4CFRQGB/4CswkzPh0XKjghB1WBVy1gOQTmjwMPHRgUHBEHeRsyRixIRAgAAAL8CATk/zAF7gADAAcADrQHA4AEAAAvMhrNMjAxQSMBIQEjAzP+AM/+1wEAAijD9vYE5AEK/vYBCgAB/R7+l/4x/4oACwAIsQMJAC8zMDFFNDYzMhYVFAYjIib9HklAQEpKQEBJ8DRGRjQzRkYAAQDNBOwB7AZAAAMACrIAgAEALxrNMDFTEzMDzUHejwTsAVT+rAADAG4E5QO3BrAAAwAPABsAGUAKExkZDQGAAAAHDQAvMzMvGs0RMxEzMDFBEzMDBTQ2MzIWFRQGIyImJTQ2MzIWFRQGIyImAcMs44L+HkM5OEVFODlDAk9EOTlERDk5RAWHASn+1y4xQ0MxMENDLzFDQzEwQ0P//wCQAkYBqgNOBgYAeAAAAAEAmQAABDcFsAAFAA62AgUCcgQIcgArKzIwMUEVIREjEQQ3/Vz6BbDI+xgFsAADABoAAAWmBbAABAAJAA0AG0ANBgIHAwJyDQwMBQIScgArMjIRMysyEjkwMUEBIQEzAQE3MwEnFSE1Ayj9+P76AlORAaL+ByySAkHf/BoFL/rRBbD6UAU3efpQx8fHAAADAFz/7AUVBcQAAwAbADMAG0ANLwoDAgIKIxYDcgoJcgArKzIROS8zETMwMUEVITUFFRQCBgYjIi4DNTU0EjY2MzIeAwc1NC4DIyIOAhUVFB4DMzI+AgOf/kYDMFag3odruZZrOVih3YZsupVqOPwePFVvQ1KCXDAfPFduQlSCWi8DOb+/OVCl/vq4YT93rd2EUKUBBblhP3is3dRSYZ95UipBf7t6UmKfelMqQYG8AAIAIAAABQ8FsAAEAAkAF0ALBgACBwMCcgUCCHIAKzIrMhI5OTAxQQEhATMBASczAQLA/m7+8gH7sAE3/mwKsAH7BM/7MQWw+lAE0936UAAAAwBqAAAELgWwAAMABwALABtADQEABQQEAAgJAnIACHIAKysyETkvMxEzMDFzNSEVATUhFQE1IRVqA8T8owLx/LcDlMfHAofCwgJhyMgAAQCZAAAFFAWwAAcAE0AJAgYEBwJyBghyACsrMhEzMDFBESMRIREjEQUU+v15+gWw+lAE6PsYBbAAAAMARwAABEsFsAADAAcAEAAhQBAOBgYHBw8CcgwDAwICCwhyACsyETMRMysyETMRMzAxZRUhNQEVITUBFQEjNQEBNTMES/xcA4H8ggJx/eG1Acv+NbXHx8cE6cjI/TcU/S2SAksCQZIAAwBMAAAFtgWwABMAJwArACFAEBQVFQEAKQhyHx4eCgsoAnIAK80yMhEzK80yMhEzMDFlIyIuAjU0NiQzMzIeAhUUBgQlMzI2NjU0LgIjIyIGBhUUHgIBESMRA2bKhdmdVZUBCa/Pg9mdVZT+9v6EzHCYTy1Xf1LRbZlRLViCATf7q06Ry3un/YxPlcx+pfiK0VGZbFOBWi9TnW9Qf1gtBDT6UAWwAAIARgAABWQFsAAZAB0AGUAMFAcHDRwIch0BDQJyACsyMisROREzMDFBMxEUAgQjIyIuAjURMxEUHgIzMzI2NjUBESMRBGj8nP7ptlaG36FZ+zNghlNVcqBU/ur6BbD+Er3++YlOltyNAe7+EmCSYjJZrYAB7vpQBbAAAwBsAAAE2wXEAC0AMQA1ACVAEigSEi8pKTQRETMuMhJyBh0DcgArMisyMjIRMzMRMzIRMzAxQTU0LgIjIg4CFRUUHgIXFS4DNTU0PgIzMh4CFRUUDgIHNT4DAzUhFSE1IRUDzSlOb0VEbU0pI0BaNWa4j1RSl89+f9GXUlKOtmQ0Vz4j7AHu+6gB9gLvZmieazY2a55oZn6+hlEPjw13ve2DZIrlp1tbp+WKZILtvXcOjxBRhr79jsjIyMgAAAMAVv/rBHsETgAWACwAQQAaQA0uBjQ7Ox0SC3IoBgdyACsyKzIyETM/MDFTNTQ+AjMyHgMXFQ4DIyIuAjcVFB4CMzI+Ajc1LgMjIg4CATMRFB4CMzI2NxcGBiMiLgInEVY3a55nSndaPykKDDlgjF5lnWw38ho4XEFAWj0mCwkkPlw/QVw6GgHkzwsVHBEIDgUYIDshNVc/JQUB+xV+0ppUMl+EpWA+dL+MTE6OwYgVR3pcMzJYdUJHRn5gNzxpiwHc/QkrNiENBAGxEgsjS3ZSAjAAAgCX/nUEbgXEABwAOgAeQA41ACYnJxwcMB0DEwkLcgArMj8zOS8zEjk5LzAxQTMyFhYVFAYGIyIuAjU3FBYWMzI2NjU0JiYjIxMyFhYVFAYGIyM1MzI2NjU0JiYjIgYGFREjETQ2NgIbjZDKbHDKiE6fhVBbT45eUHE7NmlNdU6Jym9rwYFjSk1dKy5cRz9nO/GA0wMtZLF1jMRnLl+WaBo/aT5BcEdIdEYDH2CweWOiYIQ1YkE3Xzw6aUT6WAWoe79tAAMAHv5fA/UEOgADAAgADQAZQA4IDAMECgUBBQ0GcgEOcgArKzISFzkwMWURIxE3EzMBIwMBFyMBAoHxb/v7/oGivAEEJKL+gG398gIOlQM4+8YEOvzE/gQ6AAIAUf/sBDoGIQAsAEIAGUANFCg+AwQzHgtyCwQBcgArMisyEhc5MDFTNDY2MzIWFwcmJiMiBgYVFB4CFx4CFRUUDgIjIi4CNTU0NjY3Jy4CExUUHgIzMj4CNTU0LgInIg4CzWCxe092RgEqh0w2TisQKUs8lshlRIG5dXe7gUNZlFUCPFkvdR9AYkRCYT8fJEReOkJjQSAE7GCKSxkavQ4nHDUjEigpKxQ0n9mKFXPDklFQj8FxFnS+gBUFHE9m/XEWSH9hODhhf0gWOnFiQww4YX4AAgBi/+wEEgRNAB8APwAfQA8AIT4+AwMWNSsHcgwWC3IAKzIrMhI5LzMSOTkwMUEzFSMiBgYVFB4CMzI2NjUzFA4CIyIuAjU0PgIFIyIuAjU0PgIzMh4CFSM0JiYjIgYGFRQeAjMzAg3qwkdmNR07VjhJaDjwUIalVWevgkg6bp4BT+pbl2w6QnqqZ1uhfEfxOWE9SV4sGTJPNcICS3cfQzYeNysZLEgpWIFTKCxUeUxEaUglRipLYjdNdU8pLFV4TCpAJCpBJB4zJRQAAgBZ/n0DxQWwACgALAAVQAkVAiwsKSkAAnIAKzIvMxEzLzAxQTMVAQ4CFRQeAhcXHgIVFAYGByc+AjU0JiYnJy4DNTQ2NjcBIRUhAz2I/ppHYTIVKD4pZVF8RkJeL3wgKhUZOjBRWX5QJTt6Xf6yAwv89QWwjf5SVJOaXi9DMB8MHxYxV1I3emshYiI9NxkXJh4MFhdBWHZMXcHObwHYvgAAAgB9/mEEBgROAAQAHAAXQAwYCwMGcgIKcgsHchEALysrKxEzMDFBESMRMwMHND4CMzIeAhURIxE0LgIjIg4CAW7x3hxGO2+dYlGDXTPyGjNJL0ZnQyADU/ytBDr+BwJywY5OKl+dc/usBFI9VDMXNFx4AAADAHb/7AQwBcQAGQAnADYAHUAQDShqMCBqMDANABpqAA0LcgArLysSOS8rKzAxQTIeAxUVFA4DIyIuAzU1ND4DFyIOAhUVITU0LgMDMj4DNTUhFRQeAwJSV5N2UysrUnWTV1aTdVQsLFN0k1Y4WDwfAdgUJjpLLC5LOCcT/igUKDlLBcQwZJfPhNeDz5plMjJlms+D14TPl2QwvzNnmmc0NFKEY0Eh+6ciQ2WFUy4uU4VlQyIAAAEAo//0Al4EOgARAA62Bg0LcgAGcgArKzIwMVMzAxQWFjMyNjcVBgYjIiYmNaPyAR00IxkuDx5PM1OASAQ6/PozNRMHA7cKDjyFcAACABX/7gRNBfwABAAmAB5AEAAbBAMEAiAFAHIPFhYCCnIAKzIvMysyEhc5MDFBASEBFwEyHgIXAR4CMzI2MxcGBiMiJiYnAQMuAiMiBgcnNjYCIf77/vkBnKb+vTdVPywPAaQNHSUZCRMIAxEwHUlnRx3+4HMOIy8fCx0OBBlPAvD9EARSCAGyGC1BKPvKHy0YAb0EBileTwMGAREkKhMBAbIHCQAAAgBn/nYD2gXEAB4ARgAZQAsfEQ8PISEzBRsDcgArMi85LzMSOTkwMUEHLgIjIgYGFRQeAjMzFSMiLgI1ND4CMzIWFgMzFSMiBgYVFBYWFxceAgcUBgYHJz4CNTQmJicnLgM1ND4CA64jLklGKFlyNh9BaEmSlnO7h0lDf7BuOmJX0ZKOcZ5TSXdHZld7QwFCXy2CHy0YGzkvPWiodkBUm9kFl7kLEQgsSy4oRDEbjC1UdUpWhl4xCxT9xYg/f2FPa0ARGRU0WUs4eWohYyE5OB8YIxwMERtCYJVwaJ9sNwADADD/9ATYBDoAAwAHABkAGUANDhULcgYKcgkHAgMGcgArMjIyKysyMDFBFSE1IREjESEzERQWFjMyNjcXBgYjIiYmNQSz+30Bn/ECPvIdNCMZLg4BHk8zU4BJBDq6uvvGBDr8+jM1EwcDtwoOPIVwAAABAID+YAQwBE4ALwAXQAweKQYRC3IGB3IADnIAKysrETMyMDFTETQ+AjMyHgIVFRQOAiMiLgInHgIzHgIzMj4CNTU0LgIjIg4CFRGARX6taHWwdzw2a5tlZJRmPg0ELS0BCzxtVEFcOhoZOVtBPFQ2Gf5gA+N6wYhIVJrSfhVzwY5NSYe6cAEcHEh1RTNcekcVTotpPDtkfD78KwABAFD+igPpBE4ALQAOtRsJBQAHcgArzDMvMDFBMhYWFSM0JiYjIg4CFRUUFhYXHgIXFAYGByc+Aic0JiYnLgI1NTQ+AgI4fsRv5C1bRUReOhpChmRZgUcCQF4ufyAqFQEbOCyZ0WtAfLYETmC2gTxiOTtlfUMjWoFXHRgzWVM3emkhYiI5Nh8cJhoKJobOjyNwxZZVAAADAFD/7AR9BDoAGAAuADIAE0AJKgYyBnIfFAtyACsyKzIyMDFTNTQ+AjMeAhceAhUVFA4CIyIuAjcVFB4CMzI+AjU1NC4CIyIOAgEVITVQQoC4dhovQTdVh09BfrZ1drqAQvEdPmJEQl48HBw8X0JEYj0dAzz9wwIRF3HBkFAHMjcQJISsZRZouY1RU5TJjBdJgmI5OWKCSRdDel82Nl96Ac/AwAAAAgA8/+wD7gQ6AAMAFQAVQAoFChECAwZyEQtyACsrMhEzMjAxQRUhNSEzERQWFjMyNjcXBgYjIiYmNQPu/E4BVPEZLR0fLBUiL1YyWoBFBDq+vvzyMTcVDQiuGhBEkHIAAQB//+sEBAQ6AB4AE0AJEAcZAAZyGQtyACsrETMyMDFTMxEUHgIzMj4CNSYCJzMeAhUUDgIjIi4CNX/yGCw7Ij9gQSECPi/uHjQgOni4f16YbDoEOv1qRGE6GkRyjEaHAQV7Ppy9b3fUolw0bKhzAAEARv4iBYUEQgAvABlADCsFBRkYBnIiDwtyAAAvKzIrMjIRMzAxQRE0NjYzMh4CFRQGBgQjIiQmJjU0NjY3Fw4CBxQeAjMyNjY1NC4CIyIGFRECaEp+UHm/hkdInf7/u7r+/5xHOmxJmTJCIQIrY6V6o7tRI0BfPiEZ/iIFHE50QleXwmpvzaNeYqnYdm6+mzaOMXqEQFCTc0Nur2BGfWA3Jxb63QACAFL+JQV/BDoAHgAiABVACiEHGQtyIBAABnIAKzIyKzIvMDFTMxEUHgIzMj4CNSYmJzMeAhUUBgYEIyIuAjUBMxEjUvE/b5RWeqhkLQJCMeohOCNFm/8Au5XzrlwCEfDwBDr+FHWiYStDdJRQgvt3O5e2bHfZqWJHlemhAen56wAAAgBl/+sGMAQ6AB4APwAZQAwBFwoKKTYfBnI2C3IAKysRMzMRMzIwMUEzHgIVFA4CIyIuAjURMxEUHgIzMj4CNSYCJTMGAgcUHgMzMj4CNREzERQOAiMiLgM1NDY2BLPtJ0EoLGGhdFeKYjOwHDREKDRHLBQETPwF7jtNAwwaLD4pKUUzHLAzYopXXYtiPBwoQgQ6Pp28cHfTolxEhMB9ATf+u1Z2SiFAbY1OhwEEfHz+/Ic+dGJLKSFKdlYBRf7JfcCERDxsk65fcLydAAABAHj/6wSeBcYAOAAdQA0dHhc2BAQNIxcLci0NAC8zKzIROS8zEMwyMDFBFwYGIyIkJjU1NDY2MzIeAhURFAYGIyIuAjURNxEUFhYzMjY2NRE0LgIjIgYGFRUUFhYzMjYElAoxgDyy/u6bXaNpUoNdMXTRjGqsfEPpO21MQl0yDx0rHSI2H1Wmezx2Ax/DEBmH7ZYTdqdZNWaUXv2GktJwRH2raAEhAf7eUXlCPHhYAoktQiwUIEY5FliSVxMAA//hAAAEqwXEAAMAFgApAB5ADhAJCR8mA3IaGBYDAwISAD8zETMzMysyMhEzMDFBESMRNxM+AjMyFhcHJiYjIgYGBwEnAxMXBwEuAiMiBgcnNjYzMhYWAsL7ctYhUGM/J0MfJQQmDhcmHwz+z6ST2COm/tIMISYWDiYEIx5CJzxkVAK3/UkCtyoCClFeKg4MvgIEDyIb/VABAvn96uMBArAcIQ8EAr0NDiRcAAMAK//rBmAEOgADACQARQAhQBAmBQMcDy88C3I8DwIDBnIPAC8rMhE5KzIRMxEzMzAxQRUhNSEzHgIVFA4DIyIuAjU1MxUUHgIzMj4DNSYCJTMGAgcUHgMzMj4CNTUzFRQOAiMiLgM1NDY2BmD5ywRv7iZBKBs5XIRZWI1jNa8eNkcqJTcmGAsETPwh7jtOAwsYJjckKkg1HrA1Y45ZWINdORsoQgQ6srI+nbxwX66TbDxEhMB91OJWdkohKUpjdD6HAQR8fP78hz50YkspIUp2VuLUfcCERDxsk65fcLydAAADACT/8QW7BbAAGwAfACMAIUARHyMYBQUOIiMeCHIjAnIOCXIAKysrETMSOS8zETMwMUE1PgIzMhYWFRQOAiMnMj4CNzQmJiMiBgYTESMRIRUhNQI4NoCDOKHugzx+yY8BVm49FwFDgF5DeHIt+gLr+5MCbsoTHxNmy5ZepHxHvSpIXDFSdD4PHgMs+lAFsMjIAAIAZ//sBO4FxAADACwAHUAOAwICCR0ZFANyKQQJCXIAK8wzK8wzEjkvMzAxQRUhNQEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAzMyNjYDWf2uAur8DIn2sIfZmVJTnNyJr++GD/sKQ4FqVYFXLBozUG1Ga4VFA0DHx/6aj+B/YLT+nXid/rVhgOKTX4dHQX21dHpZlnlVLESEAAADAC0AAAg4BbAAEQAVAC4AJ0ATJCEhCS4WFgAKCQhyFBUVIwACcgArMjIRMysyEjkvMxEzETMwMUEzAw4EIyM1Nz4ENwEVITUBITIWFhUUDgIjIREzESEyNjY1NCYmIyEBZPojCCdFaJFhQCc1TTcjFQUDAP1MAyYBbqbrfUeHw3395fsBIF97Ojp7X/6SBbD9LZ/yrG0zxwMEK1WIxIMCk8jI/e540oVkqX1FBbD7F0x5RUN4SwAAAwCZAAAIQgWwAAMABwAgACNAEQggIAMCAgYVBwJyFhMTBghyACsyETMrMhE5LzMzLzMwMUEVITUTESMRASEyFhYVFA4CIyERMxEhMjY2NTQmJiMhBFT9AT76BC4BbabrfUeIwn395foBIV97Ojp7X/6TA0HGxgJv+lAFsP3UdMiDY6V6QwWw+xtHc0JBcEUAAwAtAAAFwwWwABUAGQAdAB1ADhkBGAYRERgcHQJyGAhyACsrMhE5LzMRMzIwMWEjETQmJiMiDgIHNT4DMzIWFhUBESMRIRUhNQXD+j9/Xy5maGAoKFxlaDOl8IL82/sC6vugAcRndDAIDxUNyAwVDwhfzaYD7PpQBbDIyAAAAgCP/pkFCwWwAAcACwAXQAsJBgECcgsDAwAIcgArMhI5KzIvMDFzETMRIREzESURIxGP+wKG+/5K+wWw+xcE6fpQu/3eAiIAAgCQAAAEugWwAAUAHgAhQBAGHh4EAhMTBQJyFBERBAhyACsyETMrMhEzETkvMzAxQRUhESMREyEyFhYVFA4CIyERMxEhMjY2NTQmJiMhBC/9W/quAW6m7HxGiMN9/eT8ASBfejs7el/+kgWwyPsYBbD90W/IhWSmeUIFsPsXR3RFQ25CAAAGACb+mgXUBbAAAwAHAAsADwATACUAJ0ATCxERIAMDBx4Icg4PDxAUAnIJBQAvMysyMhEzKzIyETMyETMwMWUVITUzESMDIQMjEQMVITUhESMRITMDDgUHIzUzPgM3BRL7zz7wCQWuD+x3/WADYPr9aPsjCCo7SlRXKoZBG0I/MAnHx8f90wIt/dQCLATpyMj6UAWw/bKM4LGHYkUXxxlfm+aiAAUAFQAAB6IFsAAFAAkADQATABcAJ0ATFhEJAwMAAA8PFAwICHIOCgECcgArMjIrMjIyLzMRMxEzMzMwMUEBIQEhBycBIQEBESMRIQEhJyEBEwE3AQJO/eUBMQFjAQYj3/6C/sgB+wJO+gQh/en+qSMBAQFeF/6IvAH0AnYDOv2f2SD9agNAAnD6UAWw/MbZAmH6UAKWqvzAAAACAEn/7ASCBcQAHgA+ACNAEQAgAgI+PhU0MCoJcg8LFQNyACsyzCvMMxI5LzMSOTkwMUEjNTMyNjY1NCYmIyIGBhUjND4CMzIeAhUUDgIlMzIeAhUUDgIjIi4CNTMUFhYzMjY2NTQuAiMjAofKrl10NTt6YEh2RftRjblneMKMSkWAs/7Jynm8gkRRlMl4Yb2ZXPxHfVNfhUclSGpFrgK6jzdjQjtiOzReQF+Xajk1aJtmS4RkOVcyYI1bZp9uODFnoHA+Zz08aEE+WzkcAAEAkgAABQ0FsAAJABdACwUABgIIAnIEBghyACsyKzISOTkwMUEBMxEjEQEjETMBjAKG+/v9evr6AZkEF/pQBBj76AWwAAADACwAAAUPBbAAAwAHABkAGUAMEgURCHICAwMECAJyACsyMhEzKzIyMDFBFSE1IREjESEzAw4EIyM1Nz4ENwRP/UYDevv9T/kjByhEaJFhQCc1TTYkFQUFsMjI+lAFsP0tn/KsbTPHAwQrVYjEgwAAAgAy/+sE4QWwABMAGAAaQA4XFgAVBAgCGAJyDwgJcgArMisyEhc5MDFBASEBDgMjIiYnNxYWMzI2NjcDARMHAQJaAXIBFf4GGD1WelcXQQ8CDDkNOkQpEMsBbkjD/fsB+wO1+1g3Z1AvBALFAgInQygEbPza/voHBDMAAAMATv/EBhgF7AAVACkALQAbQAwfDAwrFgAAKyoDcisALysROS8zETkvMzAxQSEyHgIVFA4CIyEiLgI1ND4CFyIGBhUUHgIzITI2NjU0LgIjAxEjEQKkAR6B2aJaWqLZgf7igNqjWVmj2oBwolcyXoZTASBvoFcxXYRUGPEFJ1ad24aE2p1UVJzZhIbbn1bIX7J9XJBkNl+weV2TZjYBjfnYBigAAgCO/qEFvQWwAAUADQAZQAwMBwJyBQQECQYIcgEALysyMhEzKzIwMWUDIxEjNQURMxEhETMRBb0T54L8TfwChfzJ/dgBX8nJBbD7FwTp+lAAAAIAkQAABO0FsAAVABkAF0ALFwYRERgAAnIYCHIAKysROS8zMjAxUzMRFBYWMzI+AjcVDgMjIiYmNQEzESOR+z5/Xy5mZ2AoJ11kaDOl8IIDYfv7BbD+PWd1MAgPFQ3HDBYPCF/OpgHD+lAAAAEAlQAABwUFsAALABlADAUJBgICCwACcgsIcgArKxEzETMyMjAxUzMRIREzESERMxEhlfwBwvoBvvr5kAWw+xcE6fsXBOn6UAAAAgCV/qEHsQWwAAUAEQAdQA4MBQgIBBEIcg8LBgJyAQAvKzIyKzIyETMzMDFlAyMRIzUBMxEhETMRIREzESEHsRPdgvpW/AHC+gG++vmQv/3iAV+/BPH7FwTp+xcE6fpQAAACABUAAAXWBbAAAwAcAB1ADhESDwQcHA8AAQJyDwhyACsrMhE5LzMRMzIwMVM1IRUTITIWFhUUDgIjIREzESEyNjY1NCYmIyEVAexYAW6m635IiMN8/eX7ASBfejs7el/+kgTwwMD+kW/IhWSmeUIFsPsXR3RFQ25CAAIAmQAABlQFsAAYABwAHUAOGhkOCwAYGAsMAnILCHIAKysROS8zETMyMzAxQSEyFhYVFA4CIyERMxEhMjY2NTQmJiMhAREjEQFGAW+m631HiMN8/eT7ASFfejs7el/+kQUO+wOBb8iFZKZ5QgWw+xdHdEVDbkIC9vpQBbAAAAEAkAAABLoFsAAYABlADA4LABgYCwwCcgsIcgArKxE5LzMRMzAxQSEyFhYVFA4CIyERMxEhMjY2NTQmJiMhAT4BbqbsfEaIw3395PwBIF96Ozt6X/6SA4FvyIVkpnlCBbD7F0d0RUNuQgACAGP/7AToBcQAAwAsAB1ADgMCAh4JBSkJchkVHgNyACsyzCvMMxI5LzMwMUEVITUBMx4CMzI+AjU1NC4DIyIGBgcjPgIzMh4CFRUUDgIjIiYmBFD9n/51+gtFhWxXf1IoHDlTbkRpgkIL+g+G766J25xTUZrYhrH1iAM7yMj+n2CEREaBs296XZl2USpHh1+T4oBhtf6deJ3+tGB/4AAABACh/+wHDAXEAAMABwAdADMAI0ATLwcGBg4kGQMCcgIIchkDcg4JcgArKysrETMSOS8zMjAxQREjEQEVITUFFRQCBgYjIiYmAjU1NBI2NjMyFhYSBzU0LgIjIg4CFRUUHgIzMj4CAZz7Aiv+igW2VqDdiIXeolhYoN6FiN6gV/swWoRUUoJbMDBdglJVglovBbD6UAWw/XHAwCFQpf76uGFhuAEGpVClAQW5YWG5/vv1Unq7f0FBf7t6Unq8gUFBgbwAAAIAFwAABFgFsAAWABoAH0APFxYWAAAJDAwZCHIOCQJyACsyKzIREjkvMxI5MDFBIScmJjU0NjYzIREjESMiBhUUFhYzIQUBIQEDqf5vY6WwgO2iAen87YyIPXlaAT7+zv6u/vIBVgIiKTTUoZDGZvpQBOiIeFJ1P1D9bgKSAAMAWv/rBD8GFAAWAC8ARAAZQAw6IjAXFyIAAXIiC3IAKysROS8zETMwMUEzFA4CBw4DFxUHNTQSNjY3PgIDMh4CFRUUDgIjIi4CNTUmNjY3PgIXIgYGFRUUHgIzMj4CNTU0LgIDI8MxX4tbVIdbKAi/RoGzbktkMalsqHQ9QoC5d3a6gEIBGSQOMoivPVpxNR49Y0RFYT0dHT5iBhRZc0ksEhJNidaaRBFEvwEcw3QWECE1/hdLhrZrFnC+jU9Sk8Z1FhUoLh5lmFa/VYxSFkN4WzQ0W3hDFj5uVTIAAAIAjwAABDgEOgAbADMALUAWAgEbKykpKAEoASgPDRAGch4dHQ8KcgArMhEzKzIROTkvLxEzEjk5ETMwMUEhJyEyNjY1NC4CIyMRIxEhMh4CFRQOAgcDITchMjY2NTQmJiMhNyEXHgIVFA4CAor+pgIBHEZbLBo1TzTF8QG2aKd2PytUek83/mBgAUBAVCkoU0L+7QIBR0VniEQ5b6ABz6ocOSkiMyEP/IQEOiRKcUwyWEQrBf3vviA9Kis+IapCB0pwQkx0TScAAQCDAAADTAQ6AAUADrYCBQZyBApyACsrMjAxQRUhESMRA0z+KPEEOsD8hgQ6AAMAJ/6+BMIEOgAPABUAHQAhQBAdGAkWFhsTCApyFRAQAAZyACsyETMrMjIyETMvMzAxQTMDDgMHIzU3PgM3EyERIxEhASERIxEhESMBQPEMBUJqhUlHIis/LBkETAKu8P5C/qgEmvH9S/UEOv6Dpu6jaB6+Ai5dcZhpAX37xgNu/VL9/gFC/r4AAAUAIAAABmsEOgAFAAkADQATABcAMEAXFRAQABYREQkDAwYAABQHDBITDQ0CBnIAKzIRMz8zMzkvMzMRMzMRMxEzETMwMUEBIRMzBycBIQEBESMRIQEhJzMTEwE3AQHj/lABKPzTH67+6/7YAYgCE/ADi/5Q/tcg1PwT/uq7AYYBtQKF/lbbI/4oAmEB2fvGBDr9e9sBqvvGAdiJ/Z8AAgBO/+wDxwRNAB0AOwAjQBEAHwICOzsUMi4pC3IPCxQHcgArMswrzDMSOS8zEjk5MDFBIzUzMjY2NTQmJiMiBgYVIzQ2NjMyHgIVFA4CJTMyHgIVFA4CIyImJjUzFBYWMzI2NjU0JiYjIwI80KhATSEhTkM3VzLxc8J0Y55vOzRii/7a0GCUZDNBd6RjbMuD8TJeQkRWKipWQagCBXoiPSkkQSokQCplkk4pT3VNN2JLKkYlSGlETHlULEiXdSlILStHKDZCHwABAIQAAAQPBDoACQAXQAsFAAYCCAZyBAYKcgArMisyEjk5MDFBATMRIxEBIxEzAXUBqfHx/lfx8QFgAtr7xgLb/SUEOgAAAwCPAAAEZQQ6AAMACQANAB9ADwwHBwsGBgIJAwZyCgIKcgArMisyETkvMzMRMzAxQREjESEBISczARMBNwEBgPEDs/4Z/u0gyQEkE/66vgHFBDr7xgQ6/XXaAbH7xgHYif2fAAMAIAAABBAEOgADAAcAGQAZQAwSBREKcgIDAwQIBnIAKzIyETMrMjIwMUEVITUhESMRITMDDgQjIyc3PgQ3A1P98ALN8f3p7h0GIzpUcEZLASYlNicZDwQEOsDA+8YEOv3pd7WBUCbGAwMhPmKGWQADAI8AAAVwBDoABgAKAA4AG0ANAAkMBgEKBnILAwkKcgArMjIrMjIyEjkwMUEBMwEjATMjESMRAREzEQL/AULR/j+k/kDRPvED7/IBJAMW+8YEOvvGBDr7xgQ6+8YAAwCEAAAEDQQ6AAMABwALABtADQkGCAMCAgYHBnIGCnIAKysROS8zMhEzMDFBFSE1ExEjESERIxEDX/3QRvEDifECdr6+AcT7xgQ6+8YEOgADAIQAAAQPBDoAAwAHAAsAGUAMCQYIAgMDBwZyBgpyACsrMhEzMhEzMDFBFSE1MxEjESERIxEDUv3qOfEDi/IEOsDA+8YEOvvGBDoAAgAjAAAD1QQ6AAMABwAQtwMGBwZyAgpyACsrMjIwMUERIxEhFSE1AnLyAlX8TgQ6+8YEOr6+AAAFAFP+YAWBBgAAFgArAEIAVgBaACdAFScGBkkeERFSMz4LcjMHclgAclcOcgArKysrETMzETMyMhEzMDFBFRQOAiMiLgInET4DMzIeAwc1NC4DIyIGBgcRHgIzMj4CJTU0PgMzMh4CFxEOAyMiLgI3FRQeAjMyNjY3ES4CIyIOAgERMxEFgTNkk2FVflY0DAwzV3xVTn5gQCHxECE0STBBVSsGBy1UQTxTNRj7wyBBYH5OVHpVMwwLNFR8VWCUZDPxFzJSPEJULQcGLFRCPFMzFwEo8gIQFXPBjk46aY9WATlcmXA9N2WNsHoVP3JfRycrTTL+VipAJTNcekcVZbCNZTc9cJlc/tNYlGw8To7BiBVHels0KEYtAZ4yTSs8aYv8Ageg+GAAAAIAhP6/BKIEOgAHAA0AG0ANBgEDDQwMAApyAQZyCQAvKysyETMyETMwMXMRMxEhETMRNwMjESM1hPEBqPKTE92CBDr8hgN6+8a//gABQb8AAgBgAAAD4QQ7AAMAFwAXQAsPFAkJAQAGcgEKcgArKxE5LzMyMDFBESMRExUOAiMiJiY1ETMRFBYWMzI2NgPh8YssbXg9j89v8DFiSj5ubAQ6+8YEOv4hvxMfE1i3jQFI/rhRYCoRHgABAIQAAAYGBDoACwAZQAwFCQYCAgsABnILCnIAKysRMxEzMjIwMVMzESERMxEhETMRIYTxAVfzAVbx+n4EOvyGA3r8hgN6+8YAAAIAff6/BrsEOgAFABEAHUAODAUICAQRCnIPCwYGcgEALysyMisyMhEzMzAxZQMjESM1ATMRIREzESERMxEhBrsT3YL7NPEBWPIBV/H6fb/+AAFBvwN7/IYDevyGA3r7xgAAAgAgAAAE8QQ6AAMAHAAdQA4REg8cBAQPAgMGcg8KcgArKzIROS8zETMyMDFBFSE1ASEyFhYVFA4CIyERMxEzMjY2NTQmJiMhAir99gHcAT6Nw2c6cKRp/iHy7UhWJydWSP7CBDrAwP6oXqdrT4dkOAQ6/IUyUC0uUjQAAAIAjwAABc8EOgAYABwAHUAOGhkOCxgAAAsMBnILCnIAKysROS8zETMyMzAxQSEyFhYVFA4CIyERMxEzMjY2NTQmJiMhAREjEQEvAT+MxGc6caNp/iHy7UhWJydWSP7BBKDxAuJep2tPh2Q4BDr8hTJQLS5SNAIY+8YEOgABAI8AAAQlBDoAGAAZQAwOCxgAAAsMBnILCnIAKysROS8zETMwMUEhMhYWFRQOAiMhETMRMzI2NjU0JiYjIQEvAT+MxGc6caNp/iHy7UhWJydWSP7BAuJep2tPh2Q4BDr8hTJQLS5SNAAAAgBQ/+sD6AROACcAKwAdQA4rKioJHRkUC3IEAAkHcgArMswrzDMSOS8zMDFBIgYGFSM0NjYzMh4CFRUUDgIjIiYmNTMUFhYzMj4CNTU0LgIBFSE1AgA4XTfkd8R1d7Z8P0B8tXZ+xG/kNFw9Q146Gho5XwEO/kkDji9TOGqrZVWWxXAjcMSXVWi3eT1iOTxkf0EjQ35kO/7oo6MABACS/+wGNgROAAMABwAdADMAI0ATJAMCAhkvDgcGcgYKcg4HchkLcgArKysrETMSOS8zMjAxQRUhNRMRIxEBNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgIC+f28zvEBtUSCunZ4u4JERIG7d3e6g0TyHkBkRERjQB8fQGRFQ2NAHgKFwMABtfvGBDr91xd1yZVTU5XJdRd1yJVTU5XIjBdJgmI4OGKCSRdIgWQ5OWSBAAACAC4AAAPgBDoAAwAdAB1ADgESEhMTAwkEBnIHAwpyACsyKzISOS8zEjkwMUEzASMBIREjESMiBgYVFBYWMyEVISIuAjU0PgIBYPr+zfkB4gHQ8OBEWConUz8BPv7CZJ5uOjxxowIR/e8EOvvGA3wvSycnSC6wM1t7SUt+XjMAAAT/1/5LA/oGAAARABUALAAwAB1AEDAvKBwHchUAchQKcg0GD3IAKzIrKysyzDIwMUEzERQGBiMiJic3FhYzMjY2NQERIxETJz4DMzIeAhURIxE0JiYjIg4CARUhNQMI8lWebyM+Ig4TOxYpOh7+YvDGTgE9b5xfUIFeMfItVj5BY0IhATf9YAHO/fR5qFYHCrsGBitSOgY++gAGAPxFAXC+jU0sYZtv/UkCuU5cKTRadgLOpqYAAgBS/+wD9QROAAMAKwAbQA0EDQMCAg0hGAdyDQtyACsrMhE5LzMRMzAxQRUhNQEyNjY3Mw4CIyIuAjU1ND4CMzIWFhcjLgIjIg4CFRUUHgICpf4oAW07XzsD4wN4xXh8uXo8PHu4e4HFcAPjAzVfQklhNhYWN2ACaKOj/kQvVDdprGVVlsRwI3DFllVnt3k8YTo7ZX1DI0N+YzsAAwAdAAAGnwQ6ABEAFQAuACVAEhYuLgAkISEKCQpyFBUVIwAGcgArMjIRMysyMhEzETkvMzAxQTMDDgQjIyc3PgQ3ARUhNQEhMhYWFRQOAiMhETMRMzI2NjU0JiYjIQEF7h0GIjtUb0dLASckNiYaEAMCTf3/Am0BPo3EZjpwo2r+IvHtSVYnJ1ZJ/sIEOv3pd7WBUCbGAwMhPmKGWQHOwMD+h1qeZkyCYDUEOvyEMUwqKUgsAAADAIQAAAayBDoAAwAHACAAJUASFRYTEwYIAyADAgIGBwZyBgpyACsrETkvMzMRMxEzETMyMDFBFSE1ExEjEQEhMhYWFRQOAiMhETMRMzI2NjU0JiYjIQNf/dBG8QM3AT+NxGc6caRp/iLx7UhXJydXSP7BApy+vgGe+8YEOv6HWp5mTIJgNQQ6/IQxTCopSCwAAAP/6AAAA/oGAAADABoAHgAZQA0eHRYKB3IDAHIRAgpyACsyKysyzDIwMUERIxETJz4DMzIeAhURIxE0JiYjIg4CARUhNQFq8MZOAT1vnF9QgV4x8i1WPkFjQiEBSP1gBgD6AAYA/EUBcL6NTSxhm2/9SQK5TlwpNFp2AtenpwAAAgCE/psEDwQ6AAMACwAXQAsABgYLCnIJBAZyAgAvKzIrMhI5MDFlMxEjATMRIREzESEB0vLy/rLxAajy/HXA/dsFn/yGA3r7xgACAIj/6wbPBbAAGAAwABtADiwfCXIUBwlyJhoOAAJyACsyMjIrMisyMDFBMxEUDgIjIi4CNREzERQeAjMyNjY1ATMRFAYGIyIuAjURMxEUHgIzMjY2NQMtyz9zml1ipntE+x42Sy1DYzgCp/t50IZZmXA/zB85Ti8/YDUFsPwAcKpyOTlyqnAEAPwAQWA/HjdwVwQA/ACVymY5cqpwBAD8AEFgPx43cFcAAAIAcv/rBgMEOgAYADEAG0AOLB8LchQHC3ImGg4ABnIAKzIyMisyKzIwMUEzERQOAiMiLgI1ETMRFB4CMzI2NjUBMxEUBgYjIi4CNREzERQeAjMyPgI1AsTEOWeOVFiUbDzyFys7JTlVMAJO8Wq7d1OJYzbEGC5CKSZALRgEOv1XaZ5qNTVqnmkCqf1XO1c4HDFmTwKp/VeMu181ap5pAqn9VztXOBwcOFc7AAAC/+EAAAQjBhcAFwAbACFAEA0KABcXChobGwoLAXIKCnIAKysROS8zETkvMxEzMDFBITIWFhUUBgYjIREzETMyNjY1NCYmIyEBFSE1AS4BPo3EZmbEjf4i8uxIVycnV0j+wgFv/UQDAGOrb2+vZQYX+qg2WDIwWTkCoKenAAADAJj/7QbTBcUAAwAsADAAIEARAwICLzACci8IHRQDcikJCXIAKzIrMj8rEjkvMzAxQRUhNQEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAzMyNjYBESMRBSj8EwSd+gyJ9bGH2JlSU5zciK7xhg77CUOCalSBVisZM05tRmuFRvvG+wNOwMD+jY/fgGGz/p15nf61YIDikl6GR0B8tXR7WJd3VC1EgwQ0+lAFsAAAAwCG/+wFugROAAMAKwAvACRAEwMCAi4vBnIuCiEdGAdyCAQNC3IAKzLMK8wzPysSOS8zMDFBFSE1ATI2NjczDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAgERIxEEgvyWAuc7YDoD4wN4xXh8uXo8PHu3fILEcAPjAzVfQklgNhcWN2D9wvECcaen/jsvVDdprGVVlsRwI3DFllVnt3k8YTo7ZX1DI0N+YzsDjvvGBDoABAAaAAAFGwWwAAQACQANABEAJEAREQ0MDAIABgYHAwJyDwUFAggAPzMRMysyMhEzETkvMzMwMUEBIQEzAQE3MwEBFSE1BREjEQLb/kT++wIGkwFj/kYskgIB/un9FgHq3QUj+t0FsPpQBSuF+lACZri4Sv3kAhwABAALAAAERwQ6AAQACQANABEAHkAOEQ0MDAEHAwZyEAUFAQoAPzMRMysyEjkvMzMwMUEBIwEzEwEDMwEDFSE1BREjEQIL/vf3Aam16P7yW7YBqcz9ZAGluQLN/TMEOvvGAs0BbfvGAcWpqUD+ewGFAAYArAAABzUFsAADAAgADQARABUAGQA0QBoJFBQGBhgVEREQEAMCAhgIFgJyBAoKCwcCcgArMjIRMys/OS8zMxEzETMRMxEzETMwMUEVITUBASEBMwEBNzMBARUhNQURIxEBESMRA4f9vwOv/kT++wIHkgFj/kYskgIB/un9FgHp3P1m+wJmt7cCvfrdBbD6UAUrhfpQAma4uEr95AIcA5T6UAWwAAAGAJoAAAYdBDoAAwAIAA0AEQAVABkALkAXFREREBADAgIYGQZyCRQUBgYYCgsHBnIAKzI/MxEzETMrEjkvMzMRMxEzMDFBFSE1AQEjATMTAQMzAQMVITUFESMRAREjEQMk/cMC+v739wGptej+8lq1AanL/WMBpbn96/IBxaioAQj9MwQ6+8YCzQFt+8YBxampQP57AYUCtfvGBDoAAAUAfgAABmcFsAAWABoAHwAkACgANEAZGRoaJBsfHyMjEygGBhMTARwkAnINJycBCAA/MxEzKzISOS8zETMRMxEzETMRMxEzMDFhIxE0NjYzITIWFhURIxE0JiYjISIGFQEVITUBASEBIwEBByMBAREjEQF5+3vmogHjoud6+jp1Wv4dhYMDk/zvAUIBnQEW/gCT/skBoCSS/f8C6voBYabGWFjGpv6fAWFibS1pkwRPycn9CgL2/JcDaf0DbANp/VH8/wMBAAUAgQAABV0EOwAXABsAIAAlACkAMEAXGhsbJSAkJBMpBgYTEwEdJQZyDSgoAQoAPzMRMysyEjkvMxEzETMRMxEzETMwMWEjNTQ2NjMhMhYWFRUjNTQmJiMhIgYGFQEVITUBASEBIwMBByMBAREjEQFy8W7QkQE+kM9w8jBiS/7CS2MwAvz9LwEgASwBCP5vh9cBMB+H/m4CcfGun79VVb+frq5hbSwsbWEDjaur/boCRf1aAqb9tVsCpv3s/doCJgAABwClAAAIrAWwAAMABwAeACIAJwAsADAAPEAeISIiJCwCcicrKxswDg4bGwMCAgUHAnIVLy8JCQUIAD8zETMRMysSOS8zMxEzETMRMxEzKzIyETMwMUEVITUTESMRASMRNDY2MyEyFhYVESMRNCYmIyEiBhUBFSE1AQEhASMBAQcjAQERIxEFAvxRTfsDGfp656EB5KLmevo6dVn+HIWDA5T87gFCAZ4BFv3+kf7IAaElkf3/Aun6AyfAwAKJ+lAFsPpQAWGmxlhYxqb+nwFhYm0taZMET8nJ/QoC9vyXA2n9A2wDaf1R/P8DAQAHAJAAAAduBDsAAwAHAB8AIwAoAC0AMQA+QB4lIiMjLS0HKCwsGzEODhsbAwICBgcGchUwMAkJBgoAPzMRMxEzKxI5LzMzETMRMxEzETMRMxEzETMzMDFBFSE1ExEjEQEjNTQ2NjMhMhYWFRUjNTQmJiMhIgYGFQEVITUBASEBIwMBByMBAREjEQTP/CGR8QLz8W7QkQE+kM9w8jBiS/7CS2MwAvz9LwEgASwBCP5vh9YBMCCH/m4CcfECYbW1Adn7xgQ6+8aun79VVb+frq5hbSwsbWEDjaur/boCRf1aAqb9tVsCpv3s/doCJgAAAwAo/kQDsQeHABcAQABJACtAFBgNDEBAACssCUVDQ0JIQYBHFwACAD8y3hrNMjkyETM/MxI5LzMzMzAxUyEyHgIVFA4CIyM1MzI2NjU0JiYjIRMzMh4CFRQOAiMjIgYVFBYWFwcuAic0NjYzMzI+AjU0LgIjIxMXNzMVASMBNX8BGXC4hUlIhLlxl5JfdDY3c1r+54KSgcmMSEmEtW05RT01SBxOVoVOAVWaajg9YkQjKExySo5tlZbP/ueX/ugFsDFhkV9Vh18zjDdhPjpcNf4kMmCNW2afbTk6LjFDKg2VGGCKV155OyI9VDE9XD4fBP6dnQv+6wEWCgAAAwAy/kwDiQYbABgAQQBKACZAEQ0ZDEFBAC1DSUZEQoBIGAAGAD8y3hrNMjIyOS8SOS8zMzMwMVMhMh4CFRQOAiMjNTMyNjY1NC4CIyETMzIeAhUUDgIjIyIGFRQWFhcHLgInNDY2MzMyPgI1NC4CIyMTFzczFQEjATV9ARZoq31EQnmpaJ+bUGIsGzdWOv7qf5t3uYBCQXmnYzFMPzJEGk1Jf1EBUZNkMjdYPSAiQ2E/l0KVls/+6Jj+6AQ6Jk1ySkFoSid9JUIrHTEjFP69JEZmQkx4VCw6LjFDKg2NGl6GU1lyOBYnNiAmOCYTBFGdnQv+6wEWCgADAGD/7AUZBcQAFwAoADkAH0ASDClqMiBqMjIMABhqAANyDAlyACsrKxI5LysrMDFBMh4DFRUUAgYGIyIuAzU1NBI2NhciDgIHBgYVISYmJy4DAzI+Ajc2NjUhFhYXHgMCvGy7lGo4VqDdiGq6lWw5WKHehUh5WTkJAQICwAEBAgk3WXlJTHpYNggBAf1BAQIBCjhaeQXEP3is3YRQpf76uGE/d63dhFClAQW5Yc00ZZZiDh8QDx8OY5VmNPvBNWqaZAsXCw8cDWKWZjQAAAMATf/sBDsETgAVACAAKwAfQBILIWonG2onJwsAFmoAB3ILC3IAKysrEjkvKyswMUEyHgIVFRQOAiMiLgI1NTQ+AhciDgIHIS4DAzI+AjchHgMCQ3e8gUREgbp3d7uCRESBu3Y7Wz8lBwIEBiZAWzo7Wz8mBv38BiVAXAROU5XJdRd1yJVTU5XIdRd1yZVTwCxOaDs7aE4s/R4rT2g9PWhPKwAAAgAQAAAE9QXDAA4AEwAZQA0OEggFEwJyBQNyEghyACsrKxEzETMwMUETPgIzFwcjIgYGBwEjAQETIwECk+ciWn5YKQEWHzEmDv6cvP7iAURavP4SAXwDBWyPRwHSHTks+5IFsPvO/oIFsAAAAgAeAAAEGgROABIAFwAVQAsXBnISFgpyDAUHcgArMisyKzAxQRM+AjMyFhcHJiYjIgYGBwEjAxMTIwECCnseVnJGHTQYFwQeDhcrIQr++qKmxkyi/pYBbAHCYn8/Bw68AgQZLB383wQ6/TL+lAQ6AAQAYP92BRkGLgADAAcAHwA3ACRAEAICJycDGgNyBwczMwYOCXIAK80zETN8LysYzTMRM30vMDFBESMRExEjEQEVFAIGBiMiLgM1NTQSNjYzMh4DBzU0LgMjIg4CFRUUHgMzMj4CAxu8vbwCuVag3YhqupVsOVih3oVsu5RqOPweO1VvRFKCWzEgPFZvQVWCWi4GLv5ZAaf6+P5QAbAB2lCl/vq4YT93rd2EUKUBBblhP3is3dRSYZ95UipBf7t6UmKfelMqQYG8AAAEAE7/hgQ8BLUAAwAHAB0AMwAkQBAHByQkBhkLcgICLy8DDgdyACvNMxEzfS8rGM0zETN8LzAxQREjERMRIxElNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgICm6yprP5iRIG7dne7gkREgrp2d7uCRPEeQGRFQ2NAHx9BY0REY0AeBLX+aAGY/HD+YQGf7Bd1yZVTU5XJdRd1yJVTU5XIjBdJgmI4OGKCSRdIgWQ5OWSBAAQAiP/rBsIHOwAVACAAQQBlADNAGVtOCXJUMTEsOAlyQkNDEQgIGxsWFiIhAnIAKzIyfC8zGC8zETMyETMrMjIvMysyMDFBMxUjIi4CIyIGFRUjNTQ2MzIeAgEnNjY1NTMVFAYGJRUiBgYVERQeAjMyNjY1ETMRFA4CIyIuAjURNDY2BTUyHgIVERQOAiMiLgI1ETMRFB4CMzI+AjURNC4CBUscHVaLcmAsMTyBfW46bW9//oBOISOiMUb+sTxbNR42Sy1DYzjLP3OaXWKme0R3zgMuYqd6RER6p2Jbm3M/yyA6UjEtSzYfHzZLBr+CJjAmNDYSJG9rJTIl/lc4KEgmX2YmT0CIyDt5Xv3uRmhDITdwVwGG/npwqnI5PHexdQISndJryMg8d7J1/e51sXc8OXKqcAGG/npBYD8eIUNoRgISRmhDIQAEAHX/6wXgBeIAFQAgAEIAZgAzQBlcTwtyVTIyLDkLckNERBEICBsbFhYiIQZyACsyMnwvMxgvMxEzMhEzKzIyLzMrMjAxQTMVIyIuAiMiBhUVIzU0NjMyHgIBJzY2NTUzFRQGBiUVIgYGFRUUHgIzMj4CNTUzFRQOAiMiLgI1NTQ2NgU1Mh4CFRUUDgIjIi4CNTUzFRQeAjMyPgI1NTQuAgTfHiBWi3FgLDA9gX1uO2tvf/6ETSEjoTFF/t8zTywXKjkjKEEvGrs2YoVQVpJrPGy8AqNamHA+O2ySV06FYza7Gi9BJyM7KhcZL0AFZoElMSUzNxIkb2slMiX+VTgoSSVfZiZOQXu/NW1V8T9dPR0cOFc7xcVpnmo1N26lbPGRw2K/vzdupG3xbKVuNzVqnmnFxTtXOBwdPV0/8UBdPB4AAwCI/+sGzwcQAAcAIAA4ACtAFTQnCXIFAgEBBwctIQgIFQJyHA8JcgArMisyETMzM3wvMxgvMzMrMjAxQSE1IRchFSMHMxEUDgIjIi4CNREzERQeAjMyNjY1ATMRFAYGIyIuAjURMxEUHgIzMjY2NQNP/rcDUQL+o60iyz9zml1ipntE+x42Sy1DYzgCp/t50IZZmXA/zB85Ti8/YDUGmHh4fmr8AHCqcjk5cqpwBAD8AEFgPx43cFcEAPwAlcpmOXKqcAQA/ABBYD8eN3BXAAMAcv/rBgMFsQAHACAAOQArQBU0JwtyBQIBAQcHLSEICBUGchwPC3IAKzIrMhEzMzN8LzMYLzMzKzIwMUEhNSEXIRUjBzMRFA4CIyIuAjURMxEUHgIzMjY2NQEzERQGBiMiLgI1ETMRFB4CMzI+AjUC3/7HAzAF/rGtG8Q5Z45UWJRsPPIXKzslOVUwAk7xart3U4ljNsQYLkIpJkAtGAU5eHh/gP1XaZ5qNTVqnmkCqf1XO1c4HDFmTwKp/VeMu181ap5pAqn9VztXOBwcOFc7AAIAZ/6OBLIFxQAhACUAGUAMFhINA3IlAAAkAQlyACvNMxEzK8wzMDFlFSIuAzURND4CMzIWFhcjLgIjIg4CFREUHgMzESMRApVlrYlgM0+Uzn6o8YIB+gE/f2NKdE4pGjNKYtr6ssc6bZi7awEQhuClWnTen2KEQz5wllf+7kZ+Z0so/dwCJAACAF3+iwP0BE4AHwAjABlADBURDAdyIAAAIgELcgArzTMRMyvMMzAxZRUiLgI1NTQ+AjMyFhYVIzQmJiMiDgIVFRQeAjMRIxECRXe2fD8/fLZ2fsRu4zNcPkReORsbOGDZ8avAVZbFcCNwxZZVZ7d5PGI5O2V9QyNDfmQ7/eACIAAAAQBwAAAEkAU+ABMACLEPBQAvLzAxQQMFByUDIxMlNwUTJTcFEzMDBQcDJs4BIUb+3bWr4f7fRQElzP7eRwEju6jmASVKAyr+lqx+qv7AAY6rfasBa6t/qwFJ/mqrfQAAAfxwBKX/NwX8AAcAFbcGBgQEAQICAQAvMy8RMxEzfC8wMUMhFSc3IScXyf3jqgECHgGpBSN+AepsAQAAAfx1BRf/awYVABUAErYBFBQPBoALAC8azDIzETMwMUEzMj4CMzIWFRUjNTQmIyIOAiMj/HUeUIFxbTtvf4M8Myxhc41XIAWZJTIla28kEjczJTElAAAB/YEFGf5zBmIABQAKsgCAAgAvGs0wMUEnNTMHF/4ko7gBOwUZw4aXcAAB/aYFGf6XBmIABQAKsgGABAAvGs0wMUEHJzcnM/6Xo046AbgF3MNCcJcAAAj6Jv7EAcIFrwANABsAKQA3AEUAUwBhAG8AAEEjNDYzMhYVIzQmIyIGASM0NjMyFhUjNCYjIgYTIzQ2MzIWFSM0JiMiBgMjNDYzMhYVIzQmIyIGASM0NjMyFhUjNCYjIgYBIzQ2MzIWFSM0JiMiBgMjNDYzMhYVIzQmIyIGEyM0NjMyFhUjNCYjIgb9hHFxYWJxcC02NSwCUHJxYWJycSw3NCy6cXFhYnFwLDc0LcVxcWFicXAsNzQt/cBxcWFicXAtNjQt/b9ycmFicXAtNjUssXFxYWJxcCw3NC2ncnFhYnJxLDc0LATzU2lpUyg9Pf7DU2lpUyg9Pf3hU2lpUyg9Pf3RU2lpUyg9Pf68U2lpUyg9PQTyU2lpUyg9Pf3hU2lpUyg9Pf3RU2lpUyg9PQAI+lH+YwGSBcYABAAJAA4AEwAYAB0AIgAnAABFMxcDIxMjJxMzATU3BRUlFQclNQEnNyUXARcHBScBBycDNwE3FxMH/cuJC3pglIgMemAB2Q0BTfoZDf6zBVdhAgFCRPtrYQL+wEUBXWIRlEEDxWIRlUI8Dv6tBgMOAVL8JosMfGKXiwx8YgEEYxCZRPwpYxGZRQQOYgIBRkX7VWMC/rtHAP//AJL+gAXXByUEJgDcAAAAJwChARkBPgEHABAEef/IABVADgIjBAAAmFYBDwEBAV5WACs0KzQA//8AhP6ABNoF2gQmAPAAAAAnAKEAkv/zAQcAEAN8/8gAFUAOAiMEAQCYVgEPAQEBfVYAKzQrNAAAAv/hAAAEIwZgABcAGwAaQAwaCxsCcgAXFw0NChIAPzMRMy8zK84zMDFBITIWFhUUBgYjIREzETMyNjY1NCYmIyEBFSE1AS4BPo3EZmbEjf4i8uxIVycnV0j+wgFv/UQDAGOrb2+vZQZg+l82WDIwWTkDb6amAAIAlAAABM8FsAADABsAI0ARAQIFAAMGBgUFEhATAnISCHIAKysyETkvMxEzMxEzMzAxQQEHAQMhNSEyNjY1NCYmIyERIxEhMhYWFRQGBgM3AZZp/mwT/oUBe2N6OTl6Y/7R+gIpqex9fO0D3v5BXwG+/qHHQHFJRXlK+xgFsHfRho3KbAAABAB9/mAELwROAAMACAAeADQAJUAUAAMwAQIwJRoPC3IHBnIaB3IGDnIAKysrKxEzMjIyETMzMDFBAQcBAxEjETMBFRQOAiMiLgInNT4DMzIeAgc1NC4CIyIOAgcVHgMzMj4CAr8BZ2n+mOfx3gLUN2ucZmWXaD8NDT9olmRmnmw28Rw8XUFAXD4iBwkkPVtAQVw7HAGq/l5fAaICH/r2Bdr97RV2yZVSS4q7cFF3woxMT5HLkRVLgWI3K0xlO8I3X0gpOGOCAAACAI8AAAQ3BxMAAwAJABVACgIGBgMJAnIICHIAKyvOMxEzMDFBESMRExUhESMRBDfx6f1b+wcT/d4CIv6dyPsYBbAAAAIAfQAAA2AFdwADAAkAFUAKAgYGAwkGcggKcgArK84zETMwMUERIxETFSERIxEDYPLZ/ifxBXf+AwH9/sPA/IYEOgAAAgCZ/sUEmgWwAAUAHQAZQAwGBwcTEgIFAnIECHIAKysyLzM5LzMwMUEVIREjERM1MzIeAhUUDgIjNTI+AjUuAyMEN/1c+qv+it2dVDp7w4lTajsYAS5ahlgFsMj7GAWw/M3GS5TZjnfOnFe3P2yHR2KSYzEAAAIAff7jA90EOgAUABoAG0ANAAEBCxcaBnIZCnIMCwAvMysrMhE5LzMwMVM1MzIWFhUUDgIHJz4CJzYmJiMBFSERIxHN8p71iylbj2ZZT2MvAQFMhlsBiP4n8QHKxm/VnjmJhWkbqRtTcERefkACcMD8hgQ6AP//ABX+mggMBbAEJgDaAAABBwJrBrkAAAALtgUbDAAAmlYAKzQA//8AIP6aBsQEOgQmAO4AAAEHAmsFcQAAAAu2BRsMAACaVgArNAD//wCZ/pgFfwWwBCYCRgAAAAcCawQs//7//wCP/poEwQQ6BCYA8QAAAQcCawNuAAAAC7YDEQIBAJpWACs0AAAEAJEAAAU4BbAAAwAHAA0AEQAvQBcPDg4LDAQEDAwLBwcLCwAQAwhyCAACcgArMisyEjkvMy8RMxEzLxESOREzMDFTMxEjATMRIwEhASEnIQc3ASGR+/sBV56eAfMBM/4e/hgiAZsItwHM/sIFsPpQBEv9OAQt/MDZs6r8wAAEAI0AAASsBDoAAwAHAA0AEQAtQBYPDg4LBAQMDAsHBwsLABADCnIJAAZyACsyKzISOS8zLxEzETMvETMRMzAxUzMRIwEzESMBIQEhJyEHNwEhjfHxAUyUlAGMASz+c/5CHwF0ELYBa/7LBDr7xgNT/aUDQv112rGJ/Z8ABAA0AAAGogWwAAMABwANABEAI0AREA8PCwoKAw4GCHINBwIDAnIAKzIyMisyEjkvMzMRMzAxQRUhNSERIxEhASEnMwETATcBAmD91ALV+gRn/a/+nSL6Aagz/iiiAmMFsMDA+lAFsPzC2gJk+lACmMH8pwAEADwAAAWkBDoAAwAHAA0AEQAjQBEQDw8LCgoDDgYKcg0HAgMGcgArMjIyKzISOS8zMxEzMDFBFSE1IREjESEBISczARMBNwECUP3sAoPxA7P+Gf7tIMkBJBP+u70BxQQ6wMD7xgQ6/XXaAbH7xgHYif2f//8AlP6aBdYFsAQmACwAAAEHAmsEgwAAAAu2Aw8KAACaVgArNAD//wCE/poEzQQ6BCYA9AAAAQcCawN6AAAAC7YDDwoAAJpWACs0AAAEAJQAAAePBbAAAwAHAAsADwAfQA8HBgYKAgMDDAsCcg0KCHIAKzIrMjIRMxE5LzMwMUEVIScRFSE1ExEjESERIxEHj/2Auvz8PvsEg/sFsMDA/aDHxwJg+lAFsPpQBbAAAAQAfQAABWsEOgADAAcACwAPAB9ADwcGBgoCAwMMCwZyDQoKcgArMisyMhEzETkvMzAxQRUhNwMVITUTESMRIREjEQVr/kMCV/3PRvEDivIEOsDA/jy+vgHE+8YEOvvGBDoAAgCX/sQH9QWwAAcAHwAZQAwICQkUBAcCcgYIcgIALysrMi85LzMwMUERIxEhESMRATUzMh4CFRQOAiMnMj4CNTQuAiMFE/v9evsECP6K3Z5TOnvDiAFTajsYL1qGWAWw+lAE6PsYBbD8zMZLlNmOd86cV7c/bIdHYpJjMQAABAB9/ucGtgQ6ABQAGAAcACAAI0ARHhcYGAABAQsdHAZyGwpyDAsALzMrKzIROS8zMhEzLzAxQTUhMhYWFRQOAgcnPgI1NiYmIwEVITUzESMRIREjEQNlASCk/ZApWpFlWU9iLwFRj2D+x/3pOfEDjPIBzcZu1p05ioRpG6gbVHBEXX5AAm3AwPvGBDr7xgQ6AAABAGf/6wXgBcUAQwAdQA45DAwjIgNyAAEBLhcJcgArMjIRMysyMhEzMDFlFSIkJgI1NTQ+AjMyHgIVFRQCBgQjIi4CNTU0PgIzFSIOAhUVFB4CMzI+AjU1NC4CIyIOAhUVFB4CBeDE/sDnfDxum15joXU/Z8D+9qKW9q9fR4O3bjZXPCA3aZVfb696QBkxRi0qQi4ZU6Hrr8RrxQEOo9N1x5VTVJrTfs6Y/vzCbWm8+pHBg+GnXs8+bpVXw2ewgklOirls4liCWCstV35S13bFkU8AAAEAYP/rBMwETwBDAB1ADjkMDCMiB3IAAQEuFwtyACsyMi8zKzIyETMwMWUVIiQmJjU1ND4CMzIeAhUVFA4CIyIuAjU1ND4CMxUOAxUVFB4CMzI+AjU1NC4CIyIOAhUVFB4CBMyq/vqyXC9We0tNflkvUZbPf3jEjk05aZBZITUmFSdKakJLeFQsDx4qGxwrHQ9DgbuNoFac0HmBW5pyP0V8pmB/c8WUUlebz3lOZq2ASMYCKUlkO1BPh2U3NV6AS4E0WUQmIj1UMYVXlGw8AP//ACb+mgUiBbAEJgA8AAABBwJrA88AAAALtgEPBgAAmlYAKzQA//8AH/6aBCUEOgQmAFwAAAEHAmsC0gAAAAu2AQ8GAACaVgArNAAAAwAp/qEGuAWwAAMACQARAB1ADgkNDQgKCHIFEAwCAwJyACsyMjIvKzIyETMwMUEVITUBAyMRIzUFETMRIREzEQPn/EIGjxPngvxN/AKG+wWwwMD7Gf3YAV/JyQWw+xcE6fpQAAMAJ/6/BToEOwADAAsAEQAfQA8CAwMNCgUGcggHBxAECnIAKzIyETMrMi85LzMwMUEVITUTETMRIREzETcDIxEjNQLq/T318QGp8ZMS3oIEO8DA+8UEOvyGA3r7xr/+AAFBv///AJH+mgWpBbAEJgDhAAABBwJrBFYAAAALtgIdGQAAmlYAKzQA//8AYP6aBKIEOwQmAPkAAAEHAmsDTwAAAAu2AhsCAACaVgArNAAAAwCBAAAE3gWwAAMAGQAdACNAEQMDCgoVAgIVFQQcCHIbBAJyACsyKxE5LzMvETMRMy8wMUERIxEBMxEUFhYzMj4CNxUOAyMiJiY1ATMRIwMNnf4R+z9+Xy5mZ2AoJ1xlaDOl8IIDYvv7BBD9JALcAaD+PWd1MAgPFQ3HDBYPCF/OpgHD+lAAAAMAdQAAA/cEOwADAAcAGwAjQBAAABgYDQEBDQ0FCnISBAZyACsyKzIvM30vETMRMxgvMDFBESMRAREjERMVDgIjIiYmNREzERQWFjMyNjYCjZ0CB/GKK214PY/PcPEwYks9cGoDLP2gAmABDvvGBDr+Ib8THxNYt40BSP64UWAqER4AAAIAiQAABOYFsAAVABkAGUAMARcGEREXGAJyFwhyACsrETkvMxEzMDFhIxE0JiYjIg4CBzU+AzMyFhYVASMRMwTm+z9+YC1mZ2EnJl1laDKm74P8nvv7AcNodDAIDxUNxwwWDwhfzqb+PQWwAAIACv/pBbQFxAAJADYAJUASBR0BAR0dBhwcCiQVA3IvCglyACsyKzIROS8zMxEzLxEzMDFTMxQWFjMVIiYmASIuAjU1ND4CFzIeAhUVITUhNTQuAiMiDgIVFRQeAjMyNjcXDgIKsjFkToO1XQPFnvGjUlic0HmJ0I1G/EMCwyFIdVROeVIqK12Xa36yNzAXaqUEOUdpOq9kufwsXKjmif+I4qVaAV6x+pqJviBPimg6P3CSVP9WmHJBMRnCDioiAAL/y//sBJAETgAIADUAJUASBBwBARwcBRsbCSMUB3IuCQtyACsyKzISOS8zMxEzLxEzMDFDMxQWMxUiJiYBIi4CNTU0PgIzMh4CFRUhNSE1LgMjIg4CFRUUHgIzMjY3Fw4CNaZobXqpWAMTeMCIR0mFs2l1rXQ5/LsCVwIbNVQ8PF0/ICdMbEVYhzKAI3GhA1xkdqFcqv0FT47Abyh/zpNOTo3CdWetEzBaRygzYIdUKEd5WjNGQHszXToAAwCR/rwE7wWwAAMACQAhACFAEAoGBgsIBwcXFgkDAnICCHIAKysyLzM5LzMzMxEzMDFBESMRIQEhJzMBATUhMh4CFRQOAiMnMj4CNTQuAiMBjPsES/2S/tYi3gGq/ecBBojenlQ6fMaLAVNqOhYtWYNUBbD6UAWw/MPfAl78ws1KlNqQc86fW75BbIRDYZFiMAADAI3+5wRBBDoAAwAJAB4AIUAQFhUJBnIGCgoHCwsBAwZyAQAvKxI5LzMzETMrLzMwMUERIxEhASMnMwEBNSEyFhYVFA4CByc+AjU0JiYjAX7xA7T+A/4fswE6/dIBI6P9kCpZkGZZT2IwUI9gBDr7xgQ6/XXaAbH9dsVlzZ05hYBnGqgaUWpCXXU4//8ALP6ABdYFsAQmAN0AAAEHABAEeP/IAAu2AyQGAACYVgArNAD//wAg/oAE2wQ6BCYA8gAAAQcAEAN9/8gAC7YDJAYBAJhWACs0AAABAJn+SwUTBbAAGQAZQAwZCHIXAgIRCgUAAnIAKzIvMzkvMyswMVMzESERMxEUBgYjIiYnNxYWMzI2NjURIREjmfoChftXoXAkPSQOFDgXKToe/Xv6BbD9ggJ++hh7qlgHCsMGBipROgKj/ZUAAAEAff5LBAcEOgAZAB1ADxkKchcCAgARCg9yBQAGcgArMisyEjkvMyswMVMzESERMxEUBgYjIiYnNxYWMzI2NjURIREjffEBp/JVn28iPSIOEzsUKjoe/lnxBDr+PAHE+4h5qFYHCrsGBitSOgH2/kgA//8AlP6ABeEFsAQmACwAAAEHABAEg//IAAu2AxYKAQCYVgArNAD//wCE/oAE2QQ6BCYA9AAAAQcAEAN7/8gAC7YDFgoBAJhWACs0AP//AJT+gAcsBbAEJgAxAAABBwAQBc7/yAALtgMbDwAAmFYAKzQA//8Aj/6ABjsEOgQmAPMAAAEHABAE3f/IAAu2AxkLAQCYVgArNAAAAQBV/+sFIwXEACwAG0ANGgsRFBQLJQADcgsJcgArKzIROS8zETMwMUEyBBYWFRUUDgInIi4CNTUhFSEVFB4CMzI+AjU1NC4CIyIGByc+AgJ3qAEArFhfp9+Bl+ebTwQg/NonVoxlWIhdLzBmpXeEvDswGHCuBcRlt/2Xe5f9t2MBXbH5mo/DIU+KZztKg61ie2Otg0syGMINLCEAAgBb/+sESwWwAAcAJQAfQA8FCAgEJSUAHBIJcgcAAnIAKzIrMhE5ETMzETMwMVMhFwEjNQEhATcyFhYVFA4CIyIuAjUzFBYWMzI2NjU0JiYjI5EDlwH+HKcBaf2KAQ2lpeh7TIu8cFuvj1T7PGxKVHY/RIZgiQWwof3XdwGL/nIJa82UZqBtOTFnoXA+Zz08aEFlfjsAAgBd/nUERwQ6AAcAJQAfQA4IBQUEJSUAHBgSBwAGcgArMi/MMxI5LzMzETMwMVMhFwEjNQEhATcyFhYVFA4CIyIuAjUzFBYWMzI2NjU0JiYjI44DkwL+I6kBYv2PAQ+hpel7TIm8b1qvjVTyPXBLVnhARYhiiQQ6mv3OdwGV/mYIasuTZp9tOTFnoW9AaT89a0Nmfzr//wAs/ksEhQWwBCYAsU4AACYCQJ8oAAcCbgEwAAD//wAj/kcDmgQ6BCYA7E4AACcCQP+W/3YABwJuAQL//P//ACb+SwVTBbAEJgA8AAAABwJuA8gAAP//AB/+SwRWBDoEJgBcAAAABwJuAssAAAABAE8AAAR5BbAAGAAStwMAAAsQDQJyACsvMzkvMzAxQSEVISIGBhUUFhYzIREzESEiJiY1ND4CAl4Bbf6TYHo6OnpgASD7/eWm7H1HiMMDmcdJdUNFeUwE6fpQeNGGZKd8QwAAAgBoAAAGrQWwABgALQAfQA4bCwsQJSUDAAAaEA0CcgArLzM5LzMzLxEzETMwMUEhFSEiBgYVFBYWMyERMxEhIiYmNTQ+AgEjNTc+Ajc2LgInMx4CBw4CAncBbf6TYHk6OnlgASH6/eWm7H1HiMMC54yMSVoqAgEIDxcP9BIfFAICcMwDmcdJdUNFeUwE6fpQeNGGZKd8Q/xnxgEBTHpFJ19mXyczhIU2j9JyAAMAX//pBnsGGAAWACsARwAdQBAzRAtyOy0Bch0SC3InBgdyACsyKzIrLysyMDFTNTQ+AjMyHgMXFQ4DIyIuAjcVFB4CMzI2Njc1LgMjIg4CBREzEQYWFjM+Azc2JiczFhYHDgMjBiYmXzdrnmdLeFxDKgoMPGOOX2WdbDfyGjlbQVJtPwsHJj9dPkFcORsBvvIBI0EsPFo/IQICIR7rGyoCAk+IrmJzqF8B+xV+0ppUMl6Eo2BDdL+LS06OwYgVR3lbMkd5TLU7aE0tO2mK9gSw+1A3VTABMl2DUmTLZGHLZ4vPiEQCTaoAAAIAPf/pBeQFsAAgAEYAIUAQKCcnAgEBDjJDCXI6DQ4CcgArMi8rMhE5LzMzETMwMUEjNTMyNjY1NC4CIyE1ITIeAhUUDgMHIgYGBwYGEzU1NCYmIzcyHgIVFRQWFjM+Azc2JiczFhYHDgMjBiYmAb/dqGh+Oh5BaEn+owFdf8OERCA+XHhLAwYHAygZzTZlRhKEsGktGjIiNVI4HwECIh71GisCAk+GrGBpmlYCZ8kzZkwwTTgdyTVpmWY4YVNBMRAWFQEJBP7NAkBHaTx3NF+BTUQnPCMBMV2AT2TLZGHLZ4rPiUQCQ5UAAAIAL//kBQEEOgAdAEIAJUASPj09GwIBAQ0qKiIzC3IMDQZyACsyKzIyLxE5LzMzMxEzMDFBISczMjY2NTQmJiMhJyEyFhYVFA4CBw4CBwYGBTUGFjM+Azc2JiczFhYHDgMjBi4CJzU0JiYjNzIWFhUBi/77ArpFVCgoV0X++gYBDIzEZiNFZUECBQUDIg8BXQEjMCxFMBoBAiEf6xosAgJFdZZTUHhSLQQkRTQli51BAaG4Ij4pLEUov0yQZjJSQDARAR8gAggDugEoNgEnR2VATaVNTaJQcKhvNwEaOl1BTCg5HoRBcUkAAAMASv62BD4FsAAfADQAPwAfQA46OT8sDA0CciEgIAEBAgAvMxEzETMrMi8zLzMwMUEhNTMyNjY1NCYmIyEnITIWFhUUDgMHDgIHDgIHNzIWFhUVFBYWFxUjLgI1NTQmJgEVFAYHJz4CNTUBqf7uzmV7Ojh4Xv7cAwEnouV4HTlWcEUCCAYDGhUQMSyqwlANHhz4HhwGOm4CY2ZUgRwuHAJdwDZnSUhqO8BivIg5YFJCMREBExIBBgkFA4FgqGx4IlRMGRcbYWAYdExuO/6KrWbXR0wtW2g/tgAAAwBz/qgEHAQ6AB4AMwA+AB5ADjggHx8CAQE+KwoMDQZyACsyPzM5LzMzETMvMDFBITUzMjY2NTQmJiMhJyEyHgIVFA4CBwYGBw4CBzcyFhYVFRQWFhcVIy4CNTU0JiYFFRQGByc+AjU1Adz+1etHWywsW0f+2wQBKWmmdT0mTG9JBAgEFw4MRTqTpUUIFBL5ExADLVgCLmZUgRwuHAGdryRCLC1IKb4uV3tONldGNBEBIAIECAcBe0qBU1YROzgQEBBEQw5UNEomxK1m10dMLVtoP7YAAAMAQv/rB30FsAARABUAMgAdQA4mJh4vCXIXFAAVAnILCAAvMysyMjIrMjIvMDFBMwMOBCMjNTc+BDcBFSE1AREzERQeAjMyPgI3NiYnMxYWBw4DIyImJgF5+iMHKERpkGFBKDRNNyMVBQLo/YUCPvsTJTMhOVc9IQECIR71GisCAlCIr2F2r2IFsP0tn/KsbTPHAwQrVYjEgwKTycn7uwRF+7spRDEaMluBUGTLZGHLZ4vPiERNqgADAD//6wZYBDoAEQAVADMAH0AQJyceLwtyFxQAFQZyCwgKcgArMisyMjIrMjIvMDFBMwMOBCMjJzc+BDcBFSE1AREzERQeAjMyPgI3NiYnNxYWBw4DIyIuAgEn7h0GIjtUcEZLASYlNiYaDwQCRv4VAanxFSg3Iy9IMhsBAiEd6hosAgJIeZ1XWJBoOAQ6/el3tYFQJsYDAyE+YoZZAc7Cwv0uAtL9LilGMhssUnNIX8BeAV3AYX+/fj4rXJAAAwCU/+kHfAWwAAMABwAjACBAERYWDh8JcggCcgADAwYIBAJyACs/OS8zKysyMi8wMUEhFSEDMxEjATMRFBYWMz4DNzYmJzMWFgcOAyMGJiYnAVEC9v0Kvfv7A3b7IT4sOVc9IQICIh70GysCAlCIr2F1qmAHAzLHA0X6UAWw+7s2Uy8BMVuBUGTLZGHLZ4vPiEQCTquJAAADAHT/6gZXBDoAAwAHACUAIkASGRkQIQtyCQZyAwICBQcGcgUKAD8rEjkvMysrMjIvMDFBFSE1ExEjEQERMxEUHgIzPgM3NiYnNxYWBw4DIwYuAgNB/eNC8gKh8hQoOCMvSDIbAQIhHeoaLAICR3qdV1mMZTkCfL+/Ab77xgQ6/S4C0v0uKUYyGwEsUXNIX8BeAV3AYX+/fj4BKlySAAEAXP/rBL8FxQArABVAChILA3IlJR0ACXIAKzIyLysyMDFFIi4CNRE0PgIzMhYXByYmIyIOAhURFB4CMz4CNzYmJzMWFgcOAgK7h9+iV1ei34d0rkM8QZFXU4RdMDBdhFNUdD0CAh0X9BQnAgKQ6BVdp+GFAQaF4addLCy1ISNBcpdV/vhWmHNBAT5yTlezVlaxWZrKYwAAAQBV/+sD6wROACsAFUAKIRoHcgcHAA8LcgArMjIvKzIwMWU+Ajc0JiczFhYHDgIjIi4CNTU0PgIzMhYXByYmIyIOAhUVFB4CAls8Qx0BCQrqCxEBAmmzcXzChERCf7l4YI0sLS54RkVhPhwfQmqsASQ/LDVzNTZwN3KWSVeXw2wqbMOWVyIfuhwePWV7Pio+fGU9AAIAIf/pBVcFsAADACAAF0ALFBQMHQlyBQIDAnIAKzIyKzIyLzAxQRUhNQERMxEUHgIzPgM3NiYnMxYWBw4DIwYmJgSh+4ABxPoTJDQgOlc9IAICIh30GysDAk+Ir2J1qmAFsMnJ+7sERfu7KUMxGwExW4FQZMtkYctni8+IRAJOqwACAET/6gTLBDoAAwAgABdACxMTCxwLcgUCAwZyACsyMisyMi8wMUEVITUBETMRFBYWMz4DNzYmJzMWFgcOAyMGLgIDz/x1AUXwJUUvL0gzGwECIR7qGiwCAkh5nVdYjWU6BDq/v/0uAtL9LjdVMAEjQl07S55LS5tOcKlvNwEqXJIAAgB9/+sE+wXFACAAPwAjQBEAIj8/AgIXNTEsA3IRDRcJcgArMswrzDMSOS8zEjk5MDFBMxUjIg4CFRQeAjMyNjY1MxQOAiMiLgI1ND4CBSMiLgI1ND4CMzIWFhUjNCYmIyIGBhUUHgIzMwKg3MBPeVIqLVd+UVyMTvphocdngdefV0mMzAFe3HbBi0tQltGBkvaU+02DUW2MQyJJclDAAxGMHDlbPjFTPyI9Zz5woWcxOW2gZluNYDJXOWSES2abaTVjt4BAXjQ7YjsyUDsf//8ALP5LBf0FsAQmAN0AAAAHAm4EcgAA//8AIP5LBQIEOgQmAPIAAAAHAm4DdwAAAAIAZARwAsYF1wAFAA8AErYFBQ0HAgIHAC8zLxDNMi8wMUE1EzMVAyU1MxUUFhcHJiYBi3LJ4v6AqCYqTU9cBIQUAT8V/sL5WlRCYidIKI3//wBQAg4CYQLOBAYAEQAA//8AUAIOAmECzgQGABEAAAABAJwCcASaAzEAAwAIsQMCAC8zMDFBFSE1BJr8AgMxwcEAAQB7AnAFzAMxAAMACLEDAgAvMzAxQRUhNQXM+q8DMcHBAAIACP5mA5cAAAADAAcADrQCA4AGBwAvMxrOMjAxQRUhNQEVITUDl/xxA4/8cf7+mJgBApiYAAEAZQQmAY8GGwAKAAixBQAAL80wMVM1NDY2NxcGBhUVZS1RNHgoMwQmiD+HeyxLP4tXiQABADcEBQFhBgAACgAIsQUAAC/NMDFBFRQGBgcnNjY1NQFhLVA0eSkzBgCNP4d7LUw+i1ePAAABADX+2wFhAM8ACgAIsQUAAC/NMDFlBxQGBgcnNjY1NQFhAS1QNHoqLs+GP4d7LUs/i1eIAAABAEsEBQF2BgAACgAIsQYAAC/NMDFTMxUUFhcHLgI1S88zKXkzUS4GAI9Xiz5MLXuHPwD//wBtBCYC3wYbBCYBhAgAAAcBhAFQAAD//wBEBAUCtQYABCYBhQ0AAAcBhQFUAAAAAgA1/sgCoQD+AAoAFQAMsxAFCwAALzLNMjAxZQcUBgYHJzY2NTUhBxQGBgcnNjY1NQFhAStONH4qLgIUAS1QNH4qMv61Qo+CLktElFy3tUKPgi5LRJRctwAAAgA/AAAEHQWwAAMABwAVQAoGBwcCAwJyAhJyACsrETkvMzAxQREjEQEVITUCpPECavwiBbD6UAWw/orExAADAF3+YAQ6BbAAAwAHAAsAHUAOCwoGBwcBAwoScgMCcgEALysrERI5LzMRMzAxQREjEQEVITUBFSE1AsHyAmv8IwPd/CMFsPiwB1D+isDA/IbAwAABAIoCBgJGA9cADQAIsQQLAC/NMDFTNTQ2MzIWFRUUBiMiJop3Zmd4d2dmeALaJ154eF4nXXd3//8Ajf/0A28A/QQmABIHAAAHABIBzwAA//8Ajf/0BSgA/QQmABIHAAAnABIBzwAAAAcAEgOIAAAAAQBeAfABcgLvAAsACLEDCQAvzTAxUzQ2MzIWFRQGIyImXklAQUpKQUBJAm83SUk3N0hIAAcAUP/rB2MFxQARACMANQBHAFkAawBvAClAE19WVjJoTU1EKSk7Mg0XDg4gBQUAPzMzLzM/MzMvMzMvMxEzLzMwMVM1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgE1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgU1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgEBJwFQSIdcYopJSYlhXYdJnx8/MDA+Hh8/MC8+HwJDSotfW39DQ39ZYItLqCFALTM9Gx8+MC8/HgE5RH9ZYYpJSYlgWoBEkCE/LjM9Gx8+MC8/Hv7p/Tl8AscES01TiFJSiFNNUYhSUoieTShILCxIKE0pSC0tSPxWTlKIUlKIUk5SiFJSiKBOKEgtLUcpTilILCxId05SiFJSiFJOUohSUoigTihILS1HKU4pSCwsSANS+45HBHIAAAIAbACLAjADqQAEAAkAEkAJAQUDCQIIBgYAAC8vFzkwMUEDJzUBAxMjATUCMPvJAR9W+6X+4QOp/m0BDQGF/nb+bAGGDQACAFUAiwIaA6gABAAJAA60AggIBQAALy85LzMwMXcTFxUBAzMBFQdV+8r+4aamAR/KiwGTAQ3+ewMd/nsNAQAAAQArAG4DbgUnAAMADrMAAwIBAHwvMxgvMzAxQQEnAQNu/Tl8AscE4PuORwRy//8ATAKQAqkFuwYHAeEAAAKb//8ANgKbAr8FsAYHAjoAAAKb//8AUAKQAq0FsAYHAjsAAAKb//8ATgKQArgFvQYHAjwAAAKb//8ANwKbAq0FsAYHAj0AAAKb//8ASwKQAqoFuwYHAj4AAAKb//8ARwKRAqMFuwYHAj8AAAKbAAIAUAKPAukFUQADAAcAFbcGBgICAwcHAwAvMy8RMxEzfS8wMUEVITUBESMRAun9ZwGdoAQ7l5cBFv0+AsIAAQBQA6YCowQ+AAMACLEDAgAvMzAxQRUhNQKj/a0EPpiYAAIAUAMdAqMEwAADAAcADLMCAwcGAC8zzjIwMUEVITUBFSE1AqP9rQJT/a0DtZiYAQuXlwABAFMBhAGzBjMAFQAMsxARBgUALzMvMzAxUzU0NjY3Fw4CFRUUHgIXBy4DU1qEPUUnSi8bLzkdRS5jVTUD0xGj85seeyd3s4ITZpduTxx4F2KVxwABAFABhAGwBjMAFQAMsxARBgUALzMvMzAxQRUUBgYHJz4CNTU0LgInNx4DAbBbgz1FJ0kwGy46HUUtY1Y1A+QRo/SZH3gmdLWHE2GVb1EdexZklcYAAAIAZwKMAwAFugAEABkAE7cWCwQECwIRAgAvMz8zLxEzMDFBESMRMxMHND4CMzIWFhURIxE0JiYjIgYGASa/lRMvJkloQlF2QMAhPSs8SiIFAf2LAyH+iQFUjmk6P4hs/gUBy0hUJT1lAP//AEz+iAKpAbMGBwHhAAD+k///AIL+lAIBAagGBwHgAAD+lP//AD3+lAKwAbQGBwHfAAD+lP//ADf+iQKpAbQGBwI5AAD+lP//ADb+lAK/AakGBwI6AAD+lP//AFD+iQKtAakGBwI7AAD+lP//AE7+iQK4AbYGBwI8AAD+lP//ADf+lAKtAakGBwI9AAD+lP//AEv+iQKqAbQGBwI+AAD+lP//AEf+igKjAbQGBwI/AAD+lP//AFD+qALpAWoGBwGcAAD8Gf//AFD/vwKjAFcGBwGdAAD8Gf//AFD/NgKjANkGBwGeAAD8GQABAFP96gGzAlcAFAAIsQUQAC8vMDF3NTQ2NjcXDgIVFRQWFhcHLgNTWoQ9RSdKLzBKJkUuY1U1FhGb5pIdeyRvqHkTfqZrJXcVXI26AAABAFD96wGwAlcAFAAIsRAFAC8vMDFlFRQGBgcnPgI1NTQmJic3HgMBsFuDPUUnSTAvSShFLmNVNTEQnemUHHgkbauBEnekbCN7FVuLuQAEAGIAAAR6BcQAAwAeACIAJgAiQBAiISUmJgEbFxIFcgkCAgEMAD8zETMrzDMSOS8zzjIwMWEhNSEBExYGByc+AjUDNDY2MzIWFhUjNCYmIyIGBgUVITUBFSE1BHr76QQW/XcXAUdRtiEjDRVzyoOLwmbyOFs1NlcyAUL9MALQ/TDHA0j9lGCXK0YIRV0pAnWKw2hmtXhLWSg2avGNjf73jo4AAAMAIwAABksFsAADAAcAEQAiQBADAgYLDhAHBw0RDgRyCg0MAD8zKzISOS85EjkzzjIwMUEVITUBFSE1AREjAREjETMBEQZL+dgGKPnYBVL6/XP7+wKPA8Sbm/7Jm5sDI/pQBBP77QWw++sEFQAAAwCZ/+wGQQWwABcAGwAtACNAEiIpDRwZGAZyAgEBDgwPBHIODAA/KzISOS8zKzLMPzMwMUEjNTMyNjY1NCYmIyMRIxEhMhYWFRQGBgEVITUTMxEUFhYzMjY3FwYGIyImJjUCI9vbY20qKm1jkPoBiqvdbGzdA2r9n6/xHTQiGS8OAR5PM1OASAIdyUp3QkF0SfsZBbB2zYKF0XgCHbCwAQn76DI1EgYDuAkOO4ZvAP//AJT/7Ag9BbAEJgA2AAAABwBXBHYAAAAGACMAAAYYBbAAAwAHAA0AEgAXAB0AKkAUHRUKChIGBwMCAhESBHITGxsIEQwAPzMzETMrEjkvM84yETMRMzMwMUEVITUBFSE1ARMTMwMDARMTIwEBExMzAQETEyMDAwYY+gsF9foLAcEYspMJvP7atRef/tkDuxix+v7Z/tm0FZu7BAQtmpr+wpqa/REBWwRV/qv7pQWw+6r+pgWw+lABXQRT+lAFsPuq/qYEXwFRAAIAfQAABh8EOgARACIAIEAPFhMTERQIFAgRChwPAAZyACsyMj85OS8vETMRMzAxUyEyHgIVESMRNC4CIyERIyEhETMRITI2NjURMxEUDgJ9Apddilos8hs0Si/+p/EDyv3U8QFaPlkx8UyEqgQ6LmKabf7CAT8/VDAT/IYC1/3pJF1VAqT9XWybYi4AAwBc/+wEMwXEACMAJwArAB1ADiorJyYmBxkSBXIABw1yACsyKzISOS8zzjIwMWUyNjcXBgYjIi4CNRE0PgIzMhYXByYmIyIOAhURFB4CExUhNQEVITUDTDZmLh06fkF7zZZTU5nRfz51Ox0sZzRNe1YtL1Z5aPzyAw788rIQEMgOEEiP1Y4BU5LblEoRDskPEi5dkmX+q2SNWSoC9YmJ/vSJiQADACMAAAXIBbAAAwAHAB8AKUATBgcDAgIUChQXCQoKFhcEchYMcgArKxI5fS8zETMREjkYLzPOMjAxQRUhNQUVITUBITUhMjY2NTQmJiMhESMRITIWFhUUBgYFyPpbBaX6WwLf/oUBe2J7OTl7Yv7S+wIpqO59fe4Eppub6pub/mPHQHFJRXlK+xgFsHfRho3KbAAAAwAqAAAEBAWwAAMAHAAgAC1AFR8gIBEDAgUGBhoCGgIaBBARBHIEDAA/KzISOTl9Ly8RMxEzETMRMxEzMDFBByE3AQEnMzI2NjU0JiYjITczMhYWFRQGBgcBFRMHITcEAzH8WDEB4/4JAe9deTw4emT++jbQsep1VsCfAcysMv0DMQRHsbH7uQJRlUNzR012Qshqyo99v3UO/d8NBbCxsQAABAAk/+0ESQWwAAMAFAAYABwAFUAJBAQDDwELDQMEAD8/MzMSOS8wMUERIxEBMxUUAgYGIyImJzcyPgI1AxUBNQUVATUB8PoCWPtXod6IRXo29VeEWi6D/VkCp/1ZBbD6UAWw/U9PpP76uGELCLlBfr17AnvC/vXCQML+9cEAAgBPAAAFEgQ6ABsAHwAYQAsIFRUeHwZyDgEeCgA/MzMrEjkvMzAxYSM1NC4DIyIOAhUVIzU0EjY2MzIeAxUBESMRBRLxIEBackVTh2E08luj3oVsu5ZsOf4X8rNjoXpTKkKAvXyzsaUBBrhhP3is3YQDifvGBDoAAgArAAAFMgWwABcAGwAaQAwZGAMAAA4MDwRyDgwAPysyEjkvM84yMDFBITUhMjY2NTQmJiMhESMRITIWFhUUBgYHFSE1AyD9CwLwZXw6Onpi/tL7Aimo7H5/7Y788wIfxz9yTER2S/sYBbB2z4aPy2xrx8cAAAQAbv/rBYoFxQAhADMARQBJACVAEkInMEdHOTANch8FDklJFg4FcgArMjIvEMwyKzIyLxDMMjAxQTMUBgYjIiYmNTU0NjYzMhYWFSM0JiMiBgYVFRQWFjMyNgE1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBhMBJwECB6hCgFxcgkVEgltdgEOoOz0pNhobNyk9OQEbSYphZIlHR4hjYotJqCFALTM+Gx8/MC8+H8D9OXwCxwQjRXZIUohRTVOIUkh3Ri1JLEkpTShILEz9HE5SiFJSiFJOUohSUoigTihILS1HKU4pSCwsSANS+45HBHIAAAEARf/rA48F9gAuABS3GRgYASQMAAEALzMvMxI5LzMwMWUVIi4CNRE0PgIzMh4CFRUUDgIEIzUyPgI1NTQuAiMiDgIVERQeAgLbdq9zOS5YfU5DcFMuSIzM/vehouqVRwsWHBEWIhcMFTJTwtdAd6dmAqZim2w4LVd6TSleyr2ZWbRnpr5WKyAyIREYMUgy/WE/YkYkAAQAkAAAB7wFwAADABUAJwAxACVAESswLioCAxsSJAkJMS4EKi0MAD8zPzMzLzPcMs4yERI5OTAxQRUhNQM1NDY2MzIWFhUVFAYGIyImJjcVFBYWMzI2NjU1NCYmIyIGBgERIQERIxEhAREHkv2jKVWaaWuZVFOZamqbVagmUDw7TiYnTjw7Tyb+zP73/gvyAQkB9gIvj48B3lNnn1pan2dTZ55aWp66Uz1eNjZePVM8Xjc3XgEU+lAEE/vtBbD76wQVAAACAG8DlQRdBbAADAAUACRAEQkEAQMGCgcHExQCAAMDBgYRAC8zETMRMz8zMxEzEhc5MDFBEQMjAxEjETMTEzMRARUjESMRIzUD7ntAfG+JgoaE/aCJeI0DlQF1/osBdv6KAhv+gQF//eUCG17+RAG8XgACAJb/7ASRBE4AHQAmABdACiIXFwQeDgcbBAsAPzM/MxI5LzMwMWUXBgYjIi4CNTQ+AjMyHgIVFBQVIREWFjMyNgEiBgcRIREmJgQSAlS8Ym2+kFFZlrtiZ7OITf0AN4xOXbv+6EuNOQIcNIrGaDQ+WJrMc3TLmlhRksV1AxIa/rgzOzsDaUI4/usBHjQ9AP//AFv/9QXMBZoEJwHg/9kChgAnAZQA/wAAAQcCPgMiAAAAB7EGBAA/MDEA//8AVv/1BmoFtAQnAjkAHwKUACcBlAGoAAAABwI+A8AAAP//AF7/9QZbBagEJwI7AA4CkwAnAZQBjgAAAQcCPgOxAAAAB7ECBAA/MDEA//8AXP/1BhsFpAQnAj0AJQKPACcBlAE3AAABBwI+A3EAAAAHsQYEAD8wMQAAAgBh/+sERgX3ACkAPwAZQAwqAAASNR8LcgkSAHIAKzIrMhE5LzMwMUEyFhcuBCMiBgYHJz4CMzIeAhIVFRQOAyMiLgI1NTQ+AhciDgIVFRQeAjMyPgI1NS4DAjlWmTsKLUFTYjc1U08uICRXck1ssohcMCpUeZ1fd7mAQj56r41FYj4dHT1iREViPh4JJj1ZBAVCQE+HakomDBkSshEiFkiLyv7+nDtwyKR5QVCPwXIVa7eHSr8zWHE/FkN4WzQ/bpNUWhg8NSQAAAEApv8WBOgFsAAHAA61BAcCcgIGAC8zKzIwMUERIxEhESMRBOjy/aPzBbD5ZgXd+iMGmgADAD/+8wTDBbAAAwAHABAAH0AODgYGBwcPAnIMAwMKAgsALzMzMxEzKzIRMxEzMDFFFSE1ARUhNQEVASM1AQE1MwTD+9gD8/wKAvD9W6QCSv22pE6/vwX+v7/8sR38r5ECzwLLkgABAJwCcAPvAzEAAwAIsQMCAC8zMDFBFSE1A+/8rQMxwcEAAwA7//8EfAWwAAQACQANABZACgkLCwoECAgBAnIAKz8zLzMRMzAxZQEzASMDExcjAQc1IRUCKwF/0v4onWuzIJL+5IYBU+kEx/pPAwP94eQDA8LCwgAEAGH/6wfqBE4AFwAvAEcAXwAdQA5bNjYeEwtyTkNDKwYHcgArMjIRMysyMhEzMDFTNTQ+AjMyHgMXFQ4EIyIuAjcVFB4CMzI+Azc1LgQjIg4CBRUUDgIjIi4DJzU+BDMyHgIHNTQuAiMiDgMHFR4EMzI+AmFHg7hyaqV6VDYODjZUeqRpc7mDR+0jRmZCQWZNNB4EBB4zTWhCQWZFIwacR4S5cmqkelQ2Dg42VXqka3G5hEbtJEVlQUNnTTQeBAQeNE1mQkFmRiQCERdwx5lWT36SizIjMoyVgVBXmMeHF0qAYjY6W2JUFSMUUmBaOThigUgXcMeYV1CBlYwyIzKLkn5PVpnHhxdIgWI4OVpgUhQjFVRiWzo2YoAAAAH/p/5LAqgGFQAfABC3GxQBcgsED3IAKzIrMjAxRRQGBiMiJic3FhYzMjY2NRE0NjYzMhYXByYmIyIGBhUBjlWebyNAIhESLBYvQCFapnQmSycYEywfNUolTXmgTwgKugQII0s6BPF4pVQMCbUFBipPOQAAAgBlAQYEGAP5ABkAMwAbQAsXBIAKEUAxHoAkKwAvMxrdMhreMhrNMjAxUzU2NjM2FhcWFjMyNjcXBgYjIiYnJiYHIgYDJzY2MzYWFxYWMzI2NxUGBiMiJicmJgciBmYvhUFQYz87XkpBdy8BL3RBSl07P2RQQYkvAS+BQVBjPzteSkF8Ly93QUpeOz9kUEGEArfUMzkCKyAeJ0M80zM5Jx4gKwJE/iLUMjoCKyAeJ0M81DI6Jx4gLAJEAAADAI8AfwPzBL8AAwAHAAsAH0ANAgEBCgoLAAMDBwcGCwAvzjIRMxEzETMRMxEzMDFBAScBFxUhNQEVITUDkv3CbAI+zfycA2T8nASD+/w8BATtxsb+WMbGAAADAD0AAQOQBEsABAAJAA0AIkAQAwcGAAQIBgUJCQECAg0NDAAvM3wQzi8yMhgvMxc5MDFTBRUBNSUFBzUBExUhNfQClfy1A0v9a7YDSwf8rQLK3swBRIeU4R2GAUT8bri4AAMAfQAAA94EWAAEAAkADQAiQBADBwYABAgGAQICBQkJDQ0MAC8zfBDOLzIyGC8zFzkwMUElNQEVBSU3FQEFFSE1Ax/9XwNg/KACo738oANS/K0Cs93I/ryHmOEih/67c7m5AAACACUAAAPrBbAABwAPAB1ADgUICA4HEnIDCgoLAQJyACsyMhEzKzIyETMwMVMBMwcBARcjNwEBJzMBASMlAX+uKP7uARcdpj8BE/7rHqYBgP6CpgLXAtm1/dz927KxAiYCJLX9J/0p//8AnACqAbYFBgQnABIAFgC2AAcAEgAWBAkAAgBkAoQCMgQ6AAMABwAQtgYCAgcDBnIAKzIyETMwMVMRIxEhESMR+5cBzpcEOv5KAbb+SgG2AAABAEf/ZAFUAQAACQAKsgSACQAvGs0wMUEVFAYHJzY2NTUBVE1DfSQnAQBLV7w+Szh4TVT//wArAAAFGwYVBCYASgAAAAcASgJGAAAAAwAaAAAEHQYVABAAFAAYABtADxgGFwpyExQGcg0GAXIBCgA/KzIrMis/MDFhIxE0NjYzMhYXByYmIyIGFRcVITUhESMRAbLyacWIUJVQJTN8UW1n2f2PBAPxBICDtF4iGsQRH2NiRrCw+8YEOgADACsAAAQuBhUAEgAWABoAG0APGRoGchQAcg4GAXITAQpyACsyKzIrKzIwMWEjETQ2NjMyFhYXByYmIyIGBhUBETMRARUhNQHC8WG4gjSdqkdoXaBBQFguAXvx/nP9igSbe6hXDhULuRETK1E7+2UF5/oZBDqwsAAFACsAAAaaBhUAEQAVACYAKgAuACVAFCMcAXIuKhQVBnINBgFyLRcXAQpyACsyETMrMisyMjIrMjAxYSMRNDY2MzIWFwcmJiMiBgYVFxUhNQEjETQ2NjMyFhcHJiYjIgYVFxUhNSERIxEBwvFbqnQkRiEGFC8bN08p5f2EBAPxaMWIUJZPJTJ9UG1o2v2PBAPyBKJ5pVUJCboFBClOOWiwsPvGBICDtF4iGsQRH2NiRrCw+8YEOgAABQArAAAGmgYVABEAFQAoACwAMAApQBcrAHIkHAFyLhQULRUGcg0GAXIpFwEKcgArMjIrMisyMhEzKzIrMDFhIxE0NjYzMhYXByYmIyIGBhUXFSE1ASMRNDY2MzIWFhcHJiYjIgYGFQERMxEBFSE1AcLxW6p0JEYhBhQvGzdPKeb9gwQD8WG3gzSdqkdpXKBBQFktAXry/nP9igSieaVVCQm6BQQpTjlosLD7xgSbe6hXDhULuRETK1E7+2UF5/oZBDqwsAAABAAr/+wE0wYVAAMAFwAbAC0AJUAUIikLchMKcgkcHA0NBAFyGAIDBnIAKzIyKzIRMxEzKysyMDFBFSE1ATIWFxUjNSYmIyIGBhURIxE0NjYBFSE1EzMRFBYWMzI2NxUGBiMiJiY1AYz+nwIZdvBf8RlmMzVJJvFZpgL6/Z+v8R00IxkuDx5PMlR/SQQ6sLAB2z0q0FcNEypQOfteBKJ5pVX+JbCwAQn76DI1EgYDuAkOO4ZvAAAEAEn/7AaCBhQAGwAfADEAZwAxQBs7MkBkYFsLcgFFSUAHciYtC3IeEB8GchQKAXIAKzIrMjIrMisyzDIrzDMSOTkwMUEjLgI1ND4CMzIeAhUjNCYmIyIGFRQeAiUVITU3MxEUFhYzMjY3FQYGIyImJjUFNCYmJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4CFRQOAiMiJiY1Mx4CMzI2NgPBeCZYPjRlkFx7pF8o8ixSOldQHCMbArj9pKnyHTQiGS8PHk8zU4BJ/hUkZWJWj2Y4OmybYIjDaPErVkE+UScVMldCfLNgPXShZJPMaekEQ2U2QVguAvdrqpdNPWpQLURxiUVDWy9cPzxmZnf2sLBZ/Ks3PRgGA7gJDkSUeRgkOzAUEzVMaERCdlo0W5thK0svJz4lGysjHg4aUX9hSHdXMGmlWUNPIyM9ABUAWf5yB+wFrgAFAAsAEQAXABsAHwAjACcAKwAvADMANwA7AD8AQwBHAFcAcwCMAJoAqAAAUyMRIRUjISM1IREjASERMxUzBSE1MzUzASE1IQUhNSERITUhARUjNRMVIzUBITUhARUjNQEhNSEFITUhARUjNRMVIzUBFSM1BxEzERQGIyImNTMUFjMyNiUjJzMyNjU0JiMjESMRMzIWFhUUBgYHIgYHBhQHIzczMjY1NCYjIzczMhQXFBYxHgIVFAYBFRQGIyImNTU0NjMyFgc1NCYjIgYVFRQWMzI2ynEBNcQGs8cBNm/6Ef7LccQGXv7Kx2/+Uf7qARb84P7sART+7AEUBM9vb2/9MP7rARX8HXEEVP7rARUBkP7qARb6jXFxcQeTb+hca1BYbV04MCk2/cKWAXY7Ozs7XV+8Ql8zIkEvAQQCDA65MIk0MzM0dwGXDgwHKzoeaf6Ef2ZngYBmZ4BcSkFASktBQEkEkQEddHT+4/nhATvKcXHK/sVxcXEGV3T7dPn5AvL6+vpecQI/+fkEGHR0dPzu/PwBePr6/oj8/PMBev6GT1xRUy4tN3JGKScpHv4vAiUgQjQiOCQEEwEEAfRLLCcnL0YBBQETBCY5IkxPAUhwYXp6YXBhenrRcERPT0RwRU5OAAUAXP3VB9cIcwADAB4AIgAmACoAAFMJAgMzNDY3NjY1NCYjIgYHMzY2MzIWFRQGBw4CEzUjFRM1MxUDNTMVXAO8A7/8QXfKGSlEYqeVf7ECywI+Jzg5NSgvPR3Jyn8EBgQCgwPP/DH8MQLeMz4bJYFSgJd9jTcwQDQ0TRohOk7+u6qq/UgEBAqaBAQAAQA9AAACsAMgABwAELUDHBwLEwIAL8wyMxEzMDFlFSE1AT4CNTQmIyIGFSM0NjYzMhYWFRQGBgcHArD9nwEfKTEXODVAP7ZJh15fhUcwW0ONkZF6AQklPzQSKzdHM0l6SDpsTDddXDd2AAEAggAAAgEDFAAGACNAFQQFBQMDLwB/AAIPAF8ArwD/AAQAAQAvzV1xMhEzETMwMUERIxEHNSUCAbXKAWwDFPzsAkAxj3YAAAIATP/1AqkDIAARACMADLMXDiAFAC8zxDIwMUEVFAYGIyImJjU1NDY2MzIWFgM1NCYmIyIGBhUVFBYWMzI2NgKpTIhZW4hNTIhaWohNth02JiY1HR03JiY1HAHWmHCSR0eScJhwkkhIkv7urT1MJCRMPa0+TCMjTAAAAQBP//QDuASdADIAF0AKFB4eJgExCgwmfgA/Mz8zEjkvMzAxZTMyPgI1NTQuAiMiBgYVFBYWMzI+AjcXDgIjIiYmNTQ2NjMyHgIVFRQOAiMjARkTbJtkMR42SCo9WC4sWEMwTTcfAUcCWJdjfKpYasSFZqFzPFCh9KUVtCtYhVrYPVk8HTxlPTpgOB4xOh1EQ4BTY7BzcrtxQXuwcEmb76VVAAAEAFf/8APGBJ0AEgAiADQARAAdQA0oFxdBDg4FOTF+HwULAD8zPzMSOS8zMxEzMDFBFA4CIyImJjU0PgIzMh4CBzQmJiMiBgYVFBYWMzI2NhMUDgIjIi4CNTQ2NjMyFhYHNCYmIyIGBhUUFhYzMjY2A8ZDdqBefcd0QXefX1+hd0LyMlo7O1kxMVo8O1kx1T1ulVpalm49abp2eLlr8SpMNTRLKSlNNDVLKQE/U31UK0uWbkx3VS0tVXc5M0gnJ0gzM0knJ0kCOERvUSsrUW9EapFLS5F2LEMkJEEuLUQmJkQAAQA4AAADzgSNAAYADrUFAQZ9AwoAPz8zMzAxQRUBIwEhNQPO/f/+AgH9aASNhfv4A83AAAEAX//wA9gEmwAxABVACRYfHw4nCwMAfgA/Mj8zOS8zMDFBMxUjIg4CFRUUHgIzMjY2NTQmJiMiBgYHJz4CMzIWFhUUBgYjIi4CNTU0PgIC9CIQa6NvOR84TS09WjEvWUBAZTsCQQNYnmx9pVNqwoZoqHdAV6n2BJvEL2CSYqs+Xj8fN186PFozMUwqR0CDW2ixbHK1akF5q2tQmfGpWAABAGb/8APQBI0AIwAXQAohCQkCGRELBQJ9AD8zPzMSOS8zMDFBJxMhFSEHNjYzMhYWFRQGBiMiJiYnMxYWMzI2NjU0JiYjIgYBRcBKAsb+AiMbb0R9sl9ewZVvxH0G7ghsVEZWJzJiRlBRAg4uAlHD+gwgW6t5abVvTpZsS0Y3Xzw8XTQpAAIAMwAAA+0EjQAHAAsAFUAJAAEBCgQLfQoSAD8/MxI5LzMwMUEVIScBMwMBAREjEQPt/FAKAiq90P7bAi3xAbvAlwL7/q3+gQLS+3MEjQAAAgA9//ADwASdAB0APQAdQA0fAAAdHh4SNCoLCRJ+AD8zPzMSOS8zMxEzMDFBMzI2NjU0JiYjIgYGFSM0NjYzMh4CFRQOAiMjFTUzMh4CFRQOAiMiLgI1MxQWFjMyNjY1NC4CIwFrfkdcLSdTQzZVMvJzwXZhoHU+NmqYYKiobaJqNER9pmFUnX9L8jReQENcLiA7VTUCpylILytEKCA8KmWRTypUfFE7Z1AtN3MoTG9GUn9YLShVglosRigpSTEtQSkTAAEAQwAAA9YEnQAeABK3CxR+Ax4eAhIAPzMRMz8zMDFlFSE1AT4CNTQmIyIGBhUjNDY2MzIWFhUUDgIHBwPW/IcBqUJNIlxWR10s8mrHi4a/ZCdKakP4v7+jAY49YU8gRlozWDhqsGhUnWs7amRoO9YAAAEAmAAAAsUEjQAGAAqzBn0CCgA/PzAxQREjEQU1JQLF8f7EAhIEjftzA3VTvq0AAAIAWP/wA8QEnQAVACsADrUcEX4nBgsAPzM/MzAxQRUUDgIjIi4CNTU0PgIzMh4CAzU0LgIjIg4CFRUUHgIzMj4CA8Q/c6FiYqF0QD90oGJionQ/8hoySTAuSTIaGjNKLi9JMhkCrc1/u3o8PHq7f81/uns8PHu6/qH1SWtGISFGa0n1SmxGIiJGbAAAAwBBAAAD9QSNAAMACQANABxADAQMDA0NCH0HAwMGAgAvMzMRMz8zLzMRMzAxZRUhNQEBIzUBMyMVITUD9fyNA2P9BKgDAqJU/LK/v78DSPv5igQDwMAAAAMABgAABDgEjQAEAAkADQAbQBAIBwMEBgAKDQgBDApyBQF9AD8zKxEXOTAxQQEhASMDAQcjAQERIxEB5AFMAQj+UYjzAU4hhv5RAo7xAgECjPz3Awn9bncDCf2V/d4CIgAAAQATAAAESQSNAAsAFUAKBwoEAQQJBQMAfQA/Mi8zFzkwMUETEyEBASEBAyEBAQE08fQBGv6JAY3+4f7//P7mAYL+iASN/moBlv2+/bUBnv5iAksCQgAEACcAAAXlBI0ABQAKAA8AFQAgQA4SBBABDgQMAQgEBgF9BAAvPzMRMxEzETMRMxEzMDFlEzMXAyMDExcjAQETMwEjAxMXIwM3AavyiwT+kIzFA5j+5QQQxOr+5pfC8guP/gXIA8XE/DcEjfxG0wSN/EcDuftzBI38OcYDycQAAAIACAAABHEEjQAEAAkAD7UHAwUBfQMALz8zETMwMUEBMwEjAwETIwECTQEl//5Is/4BIkm0/kkBLgNf+3MEjfyj/tAEjQABAGn/8AQgBI0AFQAPtQwRBgB9BgAvPxEzMjAxQTMRFAYGIyImJjURMxEUFhYzMjY2NQMu8nzWiYvXevA5aklJaDgEjf0AhrleXrmGAwD9AE1jLi5jTQAAAgAlAAAEGQSNAAMABwARtgYHBwEAfQEALz8ROS8zMDFBESMRIRUhNQKV8QJ1/AwEjftzBI3AwAABAD//8APwBJ0AOQAYQAoKJg82MSsYFA9+AD/MMy/MMxI5OTAxQTQuAicuAzU0PgIzMhYWFSM0JiYjIgYGFRQeAhceAxUUDgIjIi4CNTMUHgIzMjY2AwYXN19IaJ9sN0B2omGN0HPxM2JKR1wtGzxgRWeeajVAd6ZmWrGOVfIlRWA6SV0rATEhNCsmERk/VHJMSXlZMFyhajJQMClBJh4wKCQRGEJZd0xNeVQtLFyPYTRLLxYnQAAAAgB1AAAEOwSNABkAHgAYQAobDQ0MDBoYFwB9AD8yLzM5LzMSOTAxUyEyHgIVFAYGBwchJyEyNjY1NCYmIyMRIyEBNwEVdQHLa6p3P0R8VE3+awIBMEheMC9hSdnyAsL+4P8BJQSNLlmDVl+HWBsqwCxPNDdRLPwzAgQC/gULAAADAE3/LwRsBJ0AAwAZAC8AHEAMAAMDKysKCgIgFX4CAC8/MxI5LzMSOREzMDFlBQclARUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CAxcBT5v+uAHpS4zBd3TCjkxMjMJ1dsGNTPAnSmtERGpKJydLa0NEa0omr/yE+wI4OIXSlU5OldKFOIXSlk5OltK9OluMYDIyYIxbOlqNYTMzYY0AAAEAdgAABCgEjQAYABO3AgEBDQwPfQ0ALz8zEjkvMzAxQSE1ITI2NjU0JiYjIxEjESEyFhYVFA4CAlj+vgFCTmMvL2NO8fEB4pPQbT54rAGbwC5PMjRYN/wzBI1krXBUiGE0AAACAE7/8ARuBJ0AFQArABC2JwYcEX4GCwA/PzMRMzAxQRUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CBG5Mi8J1dcKOTU2MwnV2wY1M8SZLakRDa0knJ0trQ0RpSiYCYjiF0pVOTpXShTiF0pZOTpbSvTpbjGAyMmCMWzpajWEzM2GNAAEAdgAABGcEjQAJABG2AwgFAQcAfQA/Mi8zOTkwMUERIwERIxEzAREEZ/L98vHxAg4EjftzAyP83QSN/N0DIwADAHYAAAWPBI0ABgALABAAFkAJAg4KBQwHBAB9AD8yMjIvMzM5MDFTMwEBMwEjATMTESMBMxEjEeHQAVEBUND+MqX9x8wl8QRMzfEEjfyvA1H7cwSN/LP+wASN+3MBQAACAHYAAAOSBI0AAwAHAA+1BgMCBH0CAC8/ETMzMDFlFSE1ExEjEQOS/YlM8b+/vwPO+3MEjQADAHYAAARnBI0AAwAJAA0AF0AMBgcLBQwIBgoBBAB9AD8yLzMXOTAxQREjESEBASc3ARMBNwEBZ/ED3P4Q/ug4xgFOIf5/sAHxBI37cwSN/b7+7+LyAX/7cwIZlf1SAAABACb/8ANlBI0AEwANtBAMBwF9AD8vzDMwMUERMxEUBgYjIiYmNTMUFhYzMjY2AnPybLdyfcBt8ixTOTNJJwFvAx784nmrW0+jfj5PJCxVAAEAhgAAAXgEjQADAAmyAH0BAC8/MDFBESMRAXjyBI37cwSNAAMAdgAABGcEjQADAAcACwAYQAoCAwMECQUIBH0FAC8/MxEzEjkvMzAxQRUhNRMRIxEhESMRA7f9bETxA/HxAp3AwAHw+3MEjftzBI0AAAEAVv/wBEsEnQAqABZACSkqKgUZEH4kBQAvMz8zEjkvMzAxQREOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CMzI2NzUjNQRLHXa+injFkE1KicB2oM9uDusKOGdRRGtJJSlPc0pjZBX8AmL+MCFMNUuQ0YZJhtGQS2OucTxXMC9eiVtLW4teLykSy60AAAMAdgAAA6EEjQADAAcACwAaQAsHBgYBCgsLAQB9AQAvPxE5LzMROS8zMDFBESMRARUhNQEVITUBZ/EC6v3GAnv9hQSN+3MEjf4RwMAB78DAAAADAD//EwPwBXMAAwAHAEEAKUATBz4+JAgXMwYGMwsCICAXAAAXfgA/My8RMxEzPzMvERI5OTMRMzAxQREjERMRIxElNC4CJy4DNTQ+AjMyFhYVIzQmJiMiBgYVFB4CFx4DFRQOAiMiLgI1MxQeAjMyNjYCe5mZmQEkFzdfSGifbDdAdqJhjdBz8TNiSkdcLRs8YEVnnmo1QHemZlqxjlXyJUVgOkldKwVz/swBNPrU/swBNOohNCsmERk/VHJMSXlZMFyhajJQMClBJh4wKCQRGEJZd0xNeVQtLFyPYTRLLxYnQAADADoAAAQbBJ0AAwAHACYAHUANBAUFASIZfg4CAg0BCgA/MzMRMz8zEjkvMzAxYSE1IQMVITUlFxYGBgcnPgMnAyY+AjMyFhYVIzQmJiMiDgIEG/xiA57S/PEBjAoEJlVCkBwjEwYBCQM1apddirZa8SxMLyg+KRTAAbmQkGj6U5NzJFYHPFVeKgEBaqRyPGS1eE1bKSFAXQAABQAKAAADmgSNAAMABwAMABEAFQAbQAsGBwMCAhEUCgkRfQA/Mz8SOXwvMxjOMjAxQRUhNQUVITUlEzMBIwMBByMBAREjEQNW/PEDD/zxAVf//f6jiasBARuH/qICPfACRJGR2I+PlQKM/PcDCf1udwMJ/ZX93gIiAAACAHYAAAOZBI0AAwAHAA61BwYDfQIKAD8/MzMwMUERIxEhFSE1AWfxAyP9igSN+3MEjcDAAAADAAgAAARxBI0AAwAIAA0AG0AMCAx9AAUFCQIDAwkKAD8zETMRMxEzPzMwMWE1IRUBATMBIwMBEyMBA7D9GwGCASX//kiz/gEiSbT+ScDAA1/8oQSN+3MDXQEw+3MAAwBO//AEbgSdAAMAGQAvABdACgMCAgogFX4rCgsAPzM/MxI5LzMwMUEVITUFFRQOAiMiLgI1NTQ+AjMyHgIHNTQuAiMiDgIVFRQeAjMyPgIDN/5bAtxMi8J1dcKOTU2MwnV2wY1M8SZLakRDa0knJ0trQ0RpSiYCocDAPziF0pVOTpXShTiF0pZOTpbSvTpbjGAyMmCMWzpajWEzM2GNAAIACAAABHEEjQAEAAkADrUBCQoECH0APzM/MzAxQQEzASMDARMjAQJNASX//kiz/gEiSbT+SQNf/KEEjftzA10BMPtzAAADAEYAAANXBI0AAwAHAAsAF0AKBwYGAgoLfQMCCgA/Mz8zEjkvMzAxZRUhNQEVITUBFSE1A1f87wLG/YQCx/zvwMDAAf7BwQHPwMAAAwB2AAAEYwSNAAMABwALABO3CgULBwIAA30APzMzMzMvMzAxQRUhNTMRIxEhESMRA7T9bUbxA+3yBI3AwPtzBI37cwSNAAMARAABA+oEjQADAAcAEAAlQBINCAkDCgYQEA4HfQoCDAMDAgoAPzMRMxEzPzMzETMSFzkwMWUVITUBFSE1ARUBIzUBATUzA+r8uAMj/NkB8P5dpwFC/r6nwL+/A83AwP3OFf27kgG9AauSAAMATwAABVcEjQAVACcAKwAVQAkWAAArfR4MKgoAP80yPzMvMzAxQTMyHgIVFA4CIyMiLgI1ND4CFyIGBgcUFhYzMzI2NjU0JiYjExEjEQKUfXzVnVhYndV8fXzUnVhYndR0Z5RQAU+WZ49nlVBQlWcy8gQZOnWudHazdz08d7J2dLB0O7s5fGNmfzs8gGZjejkBL/tzBI0AAgBPAAAFCQSNABkAHQAfQA4VFBQGBwcNHA4AHR0NfQA/MxEzPxI5ETMzETMwMUEzERQCBCMjIi4CNREzERQeAjMzMjY2NQMRIxEEGPGH/wC1TIbQkEzyJU97V0x3jkDz8QSN/tK8/vqITZbajQEu/tJhk2QzWrCBAS77cwSNAAADAF4AAASBBJ0ALAAwADQAJ0ATLTQKLjMKKBISKRERMjIxCgYdfgA/Mz8zETMRMzMRMz8zPzMwMUE1NC4CIyIOAhUVFB4CFxUuAzU1ND4CMzIeAhUVFA4CBzU+AgM1IRUhNSEVA48hR2xNS2xGIR08VjhnrX9GR4fFfX7FiUdGfatmTmQw4gHN+/IBywJkKkp6WjExWnpKKlmKZkMSdQxYkcF0Imm5jVFRjbhpI3TAkVgNdRlnp/4TwcHBwQAAAwAj/+wFVASNAAMABwAjABxADRcWCyANDQMECgUCA30APzMzPxI5LzM/MzAxQRUhNQERMxEDNT4CMzIWFhUUDgIjNTI+AjU0JiYjIgYGA9X8TgFc81osdIdHi890QXytbTZVOx81alE9dnEEjcDA+3MEjftzAfu+EyATWbSLZJBcK7kULEo1TWAuER8AAAIAT//wBEMEnQADACsAF0AKAAEBCR0UfigJCwA/Mz8zEjkvMzAxQRUhNQEzDgIjIi4CNTU0PgIzMhYWFyMuAiMiDgIVFRQeAjMyNjYCw/43AlbyCXnYmXe9hUdIiL12m9R2DPEGNmxYRGZFIx9CZ0dVbDoCp8DA/t13tmdOkc+BToHPk01punhBYzgvXolaT1iJXjEvYAAAAwAkAAAHFwSNABEAKQAtACBADygpKRwsHQEtfR8cCgsICgA/Mz8zPzMzMxI5LzMwMUEzAw4EIyM1Nz4ENyUyFhYVFA4CIyERMxEzMjY1NCYmIyE1AxUhNQEb8hQFHztfiF0yJio9KhoQBAQ/kNBvP3isbP4c8vJxbTBiTP68bP3DBI3994fRmmIwyAMDIEFomWhgX6lxVIxnOASN/DN1TDJSM8ABlcDAAAADAHYAAAcaBI0AFwAbAB8AIUAPFxYWGxoaHgsffQ0KCh4KAD8zETM/MxI5LzMzLzMwMUEyFhYVFA4CIyERMxEzMjY1NCYmIyE1BxUhNRMRIxEFS5DPcEB4q2z+G/LzcWwwYUz+u1/9fETxAvhfqXFUjGc4BI38M3VMMlIzwFvAwAHw+3MEjQAAAwAlAAAFVQSNAAMABwAbABlACxgNDQMTBAoFAgN9AD8zMz8zEjkvMzAxQRUhNQERMxEDNT4CMzIWFhURIxE0JiYjIgYGA9b8TwFc8Vksc4dFjNF08jVrUD12cASNwMD7cwSN+3MB+74TIBNVu5n+qgFWVmYtER8ABAB2/qEEYgSNAAMABwALAA8AG0AMDwt9AwcHDgoCAgoKAD8zLxEzMxEzPzMwMWURIxElFSE1ExEjESERIxEC7PIBuv1tRvED7PGz/e4CEg3AwAPN+3MEjftzBI0AAAIAdgAABCkEjQAXABsAG0AMAgEBDQsOChsaGg19AD8zETM/MxI5LzMwMUEhFSEyFhYVFAYjIxEjESEyPgI1NCYmNzUhFQJa/rwBRExiMG1x8/EB5GyreEBwz8n9cQLpwC5OM1BqA837czVjilZzpVnmvr4AAwAn/q8FFASNABAAFgAeACNAEBodHQkXCgocFAkKFhERAH0APzIRMz8zMzMRMxEzLzMwMUEzAw4EByM1Mz4DNxMhESMRIQEhESMRIREjAULvCgQrSmBuOkcjKkEuGQNJAv7x/fP+qATs8fz28gSN/mKT4KVzTBi/LmB6rn4BmvtzA8388/3vAVH+sAAFABsAAAYqBI0AAwAJAA0AEwAXADVAGRQXFxEMCwsHBxERBg4ODwoCAhUKCQMDD30APzMRMz8zETMSOS8zMxEzETMRMxEzETMwMUERIxEhASEnMxMTATcJAiETMwcnASEBA5vxA1/+df7UEbT4E/7owAGC+5f+ewEd97QRlv7p/tUBhgSN+3MEjf1L1QHg+3MCAZj9ZwHYArX+INUp/f8CmQACAEP/8APqBJ0AHgA+AB1ADR8CAgE+PhU0KgsLFX4APzM/MxI5LzMzETMwMUEjNTMyNjY1NCYmIyIGBhUjND4CMzIeAhUUDgIlMzIeAhUUDgIjIi4CNTMeAjMyNjY1NC4CIyMCObmRTV4qLWBPNVk38UN4n11pqXhCP3CX/u+5bKJtNkeCrmhRoYVR8QQ6YDtRaDIeO1g6jQIsfSdFLypFKh08Lk55VCwoT3dPQ3FTLUYtUm9BVH9VKyRQhF81QyAqSTAsQSoVAAMAdgAABG0EjQADAAcACwAbQAwAAwoHCwoBAgUFCH0APzMRMzM/MzMzMzAxdwEXAQEzESMBMxEjtgLFsP08AhTy8vz78fFeBC9e+9EEjftzBI37cwAAAwB2AAAEQQSNAAMACQANAB9ADgwLCwcHBgYCCQN9CgIKAD8zPzMSOS8zETMRMzAxQREjESEBISczARMBNwEBaPIDqf4k/u0gwgEzEP6nqgHbBI37cwSN/UvVAeD7cwIBmf1mAAMAJAAABFYEjQADAAcAGQAYQAsTEAoHAgMDCH0GCgA/PzMRMzM/MzAxQRUhNSERIxEhMwMOBCMjNTc+BDcDmP3DAvvy/bfyFQYfPF6IWzImKjwqGhAEBI3AwPtzBI3994fRmmIwyAQFIEBol2gAAgAf/+wEQQSNABIAFwAXQAoBF30VFhYODgcLAD8zETMRMz8zMDFBASEBDgIjIiYnNxYWMzI2NjcDARMHAQIsAQ4BB/5qI1SEbRhBDQILOw40PykStwEJXK3+PQHYArX8eU2BTAMCvgICKEInA1H9sv7uSAOoAAQAdv6vBSUEjQAFAAkADQARAB1ADRENfQUJCRALCAICCAoAPzMvETMzMxEzPzMwMWUDIxEjNTMVITUTESMRIREjEQUlE96EBP1tRvED7fLA/e8BUcDAwAPN+3MEjftzBI0AAgBDAAAEGASNAAMAFwATtxQJCQIDDn0CAC8/MxI5LzMwMUERIxETFQ4CIyImJjURMxEUFhYzMjY2BBjyWStzfz2U2XXyNWtQPnVxBI37cwSN/f++Ex8UVbyYAVz+pFZlLhIeAAQAdgAABg8EjQADAAcACwAPABlACwsHBw8QCgYGAw59AD8zMxEzPzMRMzAxZRUhNQERIxEhESMRIREjEQVg+6UCtvIDRvL8SvHAwMADzftzBI37cwSN+3MEjQAABQB2/q8G0ASNAAUACQANABEAFQAnQBIRDQ0VfQQQAgIQEAwMExMJCAoAPzMzETMRMxEzLxEzPzMRMzAxZQMjESM1MxUhNQERIxEhESMRIREjEQbQEt2EA/ulArbyA0by/ErxwP3vAVHAwMADzftzBI37cwSN+3MEjQACAAkAAAUkBI0AAwAaABdACgYFBQ8SChEBAH0APzIyPzM5LzMwMVMVITUBIRUhMhYWFRQGIyMRIxEhMjY2NTQmJgkBywGA/rwBRExjMG1y8/EB5JDQcHDQBI3AwP5rwDNSMkx1A837c2KtcHGpXwD//wB2AAAFogSNBCYCIgAAAAcB/QQqAAAAAQB2AAAEKQSNABYAFUAJFRYWCgwJCgp9AD8/MxI5LzMwMUEyFhYVFAYGIyERMxEzMjY1NCYmIyE1AlqQz3Bwz5D+HPHzcW0wYkz+vAL4X6lxcK1iBI38M3VMMlIzwAAAAgA9//AEMQSdAAMAKwAXQAoCAQEcCCcLExx+AD8zPzMSOS8zMDFBITUhAR4CMzI+AjU1NC4CIyIGBgcjPgIzMh4CFRUUDgIjIiYmJwOG/jgByP2qBzltVUdmQh8jRWZEV2w2BvINddWadr6HSEeEvXeZ2HkKAefA/t1GYC8xXolYT1qJXi84Y0F4umlNk8+BToHPkU5ntncAAAQAdv/wBkAEnQADAAcAHQAzAB1ADiQZfi8OCwMCAgYHfQYKAD8/EjkvMz8zPzMwMUEVITUTESMRARUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CApr+ikPxBcpMjMF2dcKNTUyMwnV2woxN8SdKa0REakonJ0xqRERqSScCpMDAAen7cwSN/dU4hdKVTk6V0oU4hdKWTk6W0r06W4xgMjJgjFs6Wo1hMzNhjQAAAgBCAAAEDwSNAAMAIwAZQAsjAAQEGRsWfRkBCgA/Mz8zEjkvMzMwMUEBIQEFIS4CJy4CJy4CNTQ+AjMhESMRIyIGFRQWFjMhAnX+0P79ATUB+P6RFg0MFgMKCgNhfz89daVpAc3y3GtjK1xHATACS/21AkuNAQcKBAEQEAEYW31MUYFaL/tzA81gSjJLKQAAAwALAAAEBQSNAAMABwALABtADAsKCgMCBgcHA30CCgA/PzMRMxESOS8zMDFBESMRIRUhNQEVITUB0/IDJP2KARv9YQSN+3MEjcDA/gGmpgAGABv+rwZ4BI0AAwAHAA0AEQAXABsAO0AcAg4BAQ4OBhsYGBUSEhAPDAkJEwYGGQoNBwcTfQA/MxEzPzMREjkvMzMzMxEzMxEzETMRMy8RMzAxQSMRMwERIxEhASEnMxMTATcJAiETMwcnASEBBnjOzv0j8QNf/nX+1BG0+BP+6MABgvuX/nsBHfe0EZb+6f7VAYb+rwIQA877cwSN/UvVAeD7cwIBmP1nAdgCtf4g1Sn9/wKZAAQAdv6vBH4EjQADAAcADQARACdAEhAPDwsKCgYNB30CDgEBDg4GCgA/MxEzLxEzPzMSOS8zMxEzMDFBIxEzAREjESEBISczARMBNwEEfszM/OryA6n+JP7tIMIBMxD+p6oB2/6vAhADzvtzBI39S9UB4PtzAgGZ/WYABAB2AAAE8QSNAAMABwANABEAKUATEA8PCgALCwoDAwoKBg0HfQ4GCgA/Mz8zEjkvMy8RMxEzETMRMzAxQTMRIwMRIxEhASEnIQETATcBAa6enkbyBFn+JP49IAFyATQP/qeqAdsDjf1+A4L7cwSN/UvVAeD7cwIBmf1mAAQAIQAABVMEjQADAAcADQARACFADxAPDwsKCg4GCg0HBwMAfQA/MjIRMz8zOS8zMxEzMDFTIRUhJREjESEBISczARMBNwEhAcv+NQJZ8QOp/iT+7B/CATMQ/qipAdoEjcDA+3MEjf1L1QHg+3MCAZn9ZgAAAQBO/+sFoASmAEQAG0AMAAEBLxgLJCMjOg1+AD8zMxEzPzMzLzMwMWUVIiQuAjU1ND4CMzIeAhUVFA4CIyIuAjU1ND4CMxUiDgIVFRQeAjMyPgI1NTQuAiMiDgIVFRQeAgWgm/7205RPOm2ZXmKcbzpnu/6YlO6oWkaCs246XEAhNWaXYGSlekMWLEMtLEUvGFKe6a6/Nmyf04Iod7qCREGAunhGjeqrXlGd45IugM2RTMcvXIZYJWWbajQ6cqhuNFJ1SiQmTXBLLX6zbzUA//8ABgAABDgEjQQmAe0AAAAHAkAAPv7TAAIAE/6vBIYEjQADAA8AIkARCw4IBQQKBg99AgoBAQoKDQoAPzMRMy8RMz8zEhc5MDFBIxEzARMTIQEBIQEDIQEBBIbNzfyu8fQBGv6JAY3+4f7//P7mAYL+iP6vAhADzv5qAZb9vv21AZ7+YgJLAkIAAAUAI/6vBjEEjQAFAAkADQARABUAIkAQEQ0NFBV9EBIMCQQIAgIIEgA/My8RMzMzPz8zMxEzMDFlAyMRIzUzFSE1ExEjESERIxEjFSE1BjET3YQD/WxH8gPt8bT8WsD97wFRwMDAA837cwSN+3MEjcDAAAMAQwAABBgEjQADAAcAGwAfQA4AGBgNAwMNDQYHEn0GCgA/PzMSOS8zLxEzETMwMUEzESMBESMRExUOAiMiJiY1ETMRFBYWMzI2NgHjnZ0CNfJZK3N/PZTZdfI1a1A+dXEDQv1+A837cwSN/f++Ex8UVbyYAVz+pFZlLhIeAAIAdgAABEoEjQADABcAFEAJDxIUCQkBfQASAD8/OS8zPzAxcxEzEQM1PgIzMhYWFREjETQmJiMiBgZ28Vkscn89ldh18TZqUT12cASN+3MCAr4TIBNVupn+ogFdVmYtER4AAQAO//AFrASkADQAG0AMGBgdHRERIgt+LQALAD8yPzM5LzMRMy8wMUUiLgI1NTQ+AjMyHgIVFSEiLgI1MxQWFjMhNTQmJiMiDgIVFRQeAjMyNjcXDgIDzoncnFNUlMNxfseJSPv2Z5hkMb8vXkgDGUSBX0ZvTignU4dhapUxQBdllhBMj8l+dHzHj0xHisqDmDxvml1FZjgXWoBFMVt+ToRLe1oxKxS2DSUdAAEATf/wBH8EpAArABVACREUFBkLCyQAfgA/Mj8zOS8zMDFBMh4CFRUUDgIjIi4CNTUhFSEVFBYWMzI+AjU1NC4CIyIGByc+AgI1htmZUlOVxHB/xolIA379dEKDXkZvTSknVIdgapUwQBdnmQSkTI/JfnR7yI9MSIrKgpnAF1mBRDBbf06CS3xaMSoVtg0mHAAAAgBD/+wD6gSNAAcAJgAbQAwIBQUEJiYdEwsHAH0APzI/MzkvMzMRMzAxUyEXASM1ASEBMzIeAhUUDgIjIi4CNTMeAjMyNjY1NCYmIyNsA1QB/mSdAQ791gEcsWyjbDZHgq5oUaGFUfEDOmJATWYyNWlNhQSNmv5cdAEK/ug5ZH5GWodaLSVRhWA1RiIrTzc5TyoAAAMATv/wBG4EnQAVACQANAAbQA4LJWotHWotLQsAFmoACwAvLysSOS8rKzAxQTIeAhUVFA4CIyIuAjU1ND4CFyIGBgcGBgchJiYnLgIDMjY2NzY2NyEWFhceAwJedsGNTEyLwnV1wo5NTYzCdU10SgwBAQICNgECAQxKc0xOc0gMAgEB/csBAgEJL0heBJ1OltKFOIXSlU5OldKFOIXSlk7AQX1aCA8JCRIIWXtB/NJBflkIDwgIEQhCaUYlAAAEADoAAAQbBJ0AAwAHAAsAKgAhQA8GBwMCAgkmHX4SCgoRCRIAPzMzETM/MxI5LzPOMjAxQRUhNQUVITUBITUhARcWBgYHJz4DJwMmPgIzMhYWFSM0JiYjIg4CA0n88QMP/PED4fxiA579qwoEJlVCkBwjEwYBCQM1apddirZa8SxMLyg+KRQCvJGR64+P/i/AAiH6U5NzJFYHPFVeKgEBaqRyPGKvdUlXJiFAXQADAEX/8AOuBJ4AIwAnACsAHUANJyYmKisrBxkSfgAHCwA/Mz8zEjkvMzMvMzAxZTI2NxcGBiMiLgI1NTQ+AjMyFhcHJiYjIg4CFRUUHgITFSE1BRUhNQLMO1szGThsPnW5gURDgLl1P2k8FTRgO0NgPx4fP2HE/PgDCPz4rw8NvA8QQn+5d8B5voNDEBC7EAwpUHZNwkxyTScCVJGR7pCQAAAEAHYAAAfCBJ4AAwAVACcAMQApQBIrMC4tJAkJMS59Ki0KGxISAgMALzMzfC8zGD8zPzMzLzMREjk5MDFBFSE1AzU0NjYzMhYWFRUUBgYjIiYmNxUUFhYzMjY2NTU0JiYjIgYGAREjAREjETMBEQeG/cY6VZlqappUU5ppa5pVqCZQPDtOJidOPDtPJv6t8v3y8fECDgFhkJABpUlil1ZWl2JJYZdWVpeqSTdYMjJYN0k3VzMzVwEH+3MDI/zdBI383QMjAAACACgAAASvBI0AGAAcABtACxscAgEBDgwPfQ4KAD8/MxI5fC8zGM4yMDFBITUhMjY2NTQmJiMjESMRITIWFhUUDgIHFSE1Auj9QALASV8uLl9J+/EB7I7MbT52qVH9JwGesjdXMTNWNfwzBI1hqm1UiWQ2TrKyAAACADf/9QKpAyAAGQAzABlAChsAABkaGggQLCQALzPMMjkvMzMRMzAxQTMyNjY1NCYjIgYVIzQ2NjMyFhYVFAYGIyMVNTMyFhYVFAYGIyImJjUzFBYzMjY1NCYmIwEOVys4HTdAMUO2UIZPW4pNR31UdXVdhEVUkVpLjVu3SD1BPyNAKwHRGSweJDcpJUdkNDNkSjlYMSlSK1hGSmg2MWpWJzg5KyYuFQACADYAAAK/AxUABwALABdACQMHBwEBBgUICgAvzDIyOS8zETMwMUEVIScBMwcHAREjEQK//YEKAW+PnbABdrYBOZR2Afr64gHc/OsDFQABAFD/9QKtAxUAIQASth8JCQQDGREALzPMMjkvMzAxUycTIRUhBzY2MzIWFhUUBgYjIiYmJzMWFjMyNjU0JiMiBvSRNAHs/qkWEUssV3hAQoVnTIlXA7YCQzRENEVCNTYBXSQBlJGaBhY9clFHfE43aEgtKEs1OUYcAAEATv/1ArgDIgAtABO2ExwcAwAMJAAvM8wyOX0vMzAxQTMVIyIGBhUVFBYWMzI2NjU0JiMiBgYHJz4CMzIWFhUUBgYjIiYmNTU0PgICFh0LWIRIIDsoJTcgQjwpPyQBMAE5bkxTcDlLh1tdj1FDe6YDIpQvb2F2MUIgIzkkOT4eLBYjLV9BRHdNTXxHSY1oNXCmbjYAAAEANwAAAq0DFQAGAAyzBQEGAgAvzDIyMDFBFQEjASE1Aq3+q8ABVf5KAxVm/VECg5IABABL//UCqgMgAA8AHwAvAD0AF0AKDCQ7AxQUNCwcBAAvM8wyOS8XMzAxZRQGBiMiJiY1NDY2MzIWFgc0JiYjIgYGFRQWFjMyNjYTFAYGIyImJjU0NjYzMhYWBzQmJiMiBhUUFhYzMjYCqk+JV1aKUFCJVleJULUgNyQkNh4eNyQkNx+iSX9UU4FJSYFSU4FJtxcuITA2GC8gMTTZTGUzM2VMRmI2NmI2HysXFysfHi0XFy0Bdz9dMzNdP0liMzNiVRwnFi8qGikXMgAAAQBH//YCowMgAC4AE7YSGxsKIwEtAC8zzDI5fC8zMDF3MzI2NjU1NCYmIyIGBhUUFhYzMjY2NRcUBgYjIiYmNTQ2NjMyFhYVFRQOAiMj1Q1ZdjwfNSUlNh0cOSkpOR43Pmg/UnY9S4haWYhOPnSlaA+HKWNWmDE+HiY/JiU5IB4rEx8yWjk/dlJOgU1HkGw1c6RpMgAAAQCNAosDLQMxAAMACLEDAgAvMzAxQRUhNQMt/WADMaamAAMAmARNAqYGmgADAA8AGwAZQAkTDQ0HAQMDGQcALzMzfC8YzREzETMwMUE3MwcFNDYzMhYVFAYjIiY3FBYzMjY1NCYjIgYBGarj9/7pbk5Na2tNTm5jNCUkMTEkJTQF18PD3U1kZE1MYWFMJTExJSczMwAABAB2AAADtgSNAAMABwALAA8AG0AMCwoKBg8OB30DAgYKAD8zMz8zMxI5LzMwMWUVITUTESMRARUhNQEVITUDtv1lTPEC6v27Apn9Z7+/vwPO+3MEjf4tv78B08DAAAQADP5KBBgETgASACQAWwBfADNAGl1fBnIlJhgYD0BBQS5TUw8PBUo3D3IhBQdyACsyKzIROS85ETMzETMRMxI5OSsyMDFTNTQ2NjMyFhYVFRQOAiMiJiY3FRQWFjMyNjY1NTQmJiMiBgYTFwYGFRQWFjMzMhYWFRQOAiMiLgI1NDY2NxcOAhUUHgIzMj4CNTQmJiMjIiYmNTQ2NgEXISdGcsuGiMtwQHelZYfMcvA0X0JAXjM0X0BAXzQcWhtAIjojs36xXkiNyoN1tHs+X4xFOSI7JB4+XUFNc0wmIU9FyEl6Sz9YAuoC/oALAs4WaqRcXKRqFkuEZDhipHsWLlIzM1IuFjFQMTFQ/rQyDjYxHyIOQoVjO3xoQCxOZDdWekkNVgUsQikdNSgYHjA4GyM3ICdUQ0NcPQKElZUAAAQAVv/rBFoETgAVACsALwAzABdADDAKLQYcEQtyJwYHcgArMisyPz8wMVM1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMj4CNzUuAyMiDgIFEzMLAjMTVjhtoWlmlWc+DQ09aJZnZ6BuOPIaOFxBOlQ6IggGITpVOkFcOhoB403ba2lUvXIB+xV+0ppUT4/GeDh1wI1NTo7BiBVHelwzN194QjREfWQ6PGmLQgIe/eL95AIc/eQAAAIAmQAABPAFsAAZAC4AH0APJggbGhoCAQEODA8Ccg4IAD8rMhI5LzMzETM/MDFBISchMjY2NTQmJiMhESMRITIWFhUUBgYPAjceAhUVFBYWFxUhLgI1NTQmJgLi/mQBAWNheTk2c1z+3foCKKPgclikcRZzMau/TgwfHP7/HhsHNmsCWMY1ZEhGajn7GAWwYruIYZBgHC8XhQFhp210IVNMGBsaYmEYcExtOgADAJkAAAUsBbAAAwAJAA0AIEAQCggJAgwLCwcGBgIDAnICCAA/KxI5LzMzETM/PzAxQREjESEBISczARMBNwEBk/oEZv2w/p0i+gGoM/4pogJiBbD6UAWw/MLaAmT6UAKYwfynAAADAIEAAAQzBgAAAwAJAA0AHEAOCwcGBgIJBnIDAHIKAgoAPzMrKxI5LzMzMDFBESMRAQEhJzMBEwE3AQFx8AOH/kb+3EXxARgt/q6dAc0GAPoABgD+Ov2hvwGg+8YB+qr9XAAAAwCZAAAFCwWwAAMACQANABpADgYLBwgMBQIJAwJyCgIIAD8zKzISFzkwMUERIxEhASEnMwETATcBAZP6BE/9ff7OCm8CGCP9juICyAWw+lAFsP0GdgKE+lAC2Gb8wgAAAwCBAAAEHwYYAAMACQANACBAEAwLCwcGBgIJBnIDAXIKAgoAPzMrKxI5LzMzETMwMUERIxEBASEnMwETATcBAXHwA3P+Ev77HI0BXS3+UbYCHAYY+egGGP4i/cGeAaH7xgIXgP1pAAACAHYAAAQrBI0AGQAdABZACRsaDwIBDg99AQAvPzMRMxEzMjAxYSE3ITI2NjU1NC4CIyE1ITIeAhUVFAYEAREjEQHv/vACAQ5zkkUnUHtU/ucBGX3Rl1OR/v/+zvG/VaJ0OleHXC/AUJPMfDil+osEjftzBI0AAQBP//AEQwSdACcAEbYZFRB+JAAFAC/MMz/MMzAxQTMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CMzI2NgNQ8gl52Jl3vYVHSIi9dpvUdgzxBjZsWERmRSMfQmdHVWw6AYR3tmdOkc+BToHPk01punhBYzgvXolaT1iJXjEvYAAAAgB2AAAEDASNABkAMQAoQBMcGykZAgIBGyYBASYbAw0MD30NAC8/MxIXOS8vLxEzEjk5ETMwMUEhJyEyNjY1NCYmIyMRIxEhMh4CFRQGBgcDITchMjY2NTQmJiMjNyEXNhYWFRQOAgJY/r4CAR9BWi8uXETI8QGsbKl4P0eSdFT+hWIBGUZbLCdWRfYBATg3b4pBPHKmAf2mIkEvNUQf/DMEjSdOeVJHekwE/cS/KEUtMkkppkECUYBFVX1TKQAAAwAIAAAEkQSNAAQACQANABxADA0ABgMMDAEHA30FAQAvMz8zEjkvEjk5MzAxQQEjATMBASczAQEVITUCWv6i9AHVogEe/qAlpQHU/v39ZgOe/GIEjftzA6Dt+3MBsLW1AAABAJAEbQGeBikACgAKsgWAAAAvGs0wMVM1NDY2NxcGBhUHkChBJIEcJAEEbYVAeWIcUDV1SHoAAAIAdQTUAwMGfAAPABMAErUSEwoADQUALzN83DLWGM0wMUEzFAYGIyImJjUzFBYzMjYnJzMXAlatT5NkZZNQrEZWU0bJqrN3BbFBYzk5Y0EtRUU3wcEAAvyeBLz+2AaJABcAGwAdQAwAFRUFGRsbCRERDAUALzMzETMzLzMRMxEzMDFBFxQGBiMiJiYjIgYVJzQ2NjMyFhYzMjYlNzMH/nFnKkowNkU+Kx8raCpKMC1IRikeLf73gb60BZ0dMFIyJCQyJhwwUjMkIzI/0tIAAgB6BOcEewaKAAYACgAUtwgHBwUBgAQGAC8zGs05My/NMDFTJTMFIycHJRMzA3oBHp0BH82hoAHEmtfXBOf29o6OmwEI/vgAAv9RBNsDUwZ/AAYACgAXQAkHQAgIAwaAAgQALzMazTkzLxrNMDFBBSMnByMlJRMjAwI0AR/NoKDNAR7+kZqZ2AXR9o+P9q7++AEIAAIAeQToBAYGyAAGABoAH0ANERIIQBoJCAgDBoACBAAvMxrNOTMRMzMaEMwyMDFBBSMnByMlBSMnPgI1NCYmIzcyHgIVFAYHAj4BFb6vsL0BFAH2iAgrNRkjOyUHRGdHJFIxBd/3oKD3cnoDDBgTGRsMZxcrOyY+OgcAAgB5BOgDUwbNAAYAHgAlQBAIBwcQGAxAFBMTHAwMBoAEAC8azTIRMzMRMxoQzTIyETMwMUEFIycHIyU3FxQGBiMiJiYjIgYVJzQ2NjMyFhYzMjYCLgElvq+wvQEl8VolQiowQDonGydaJUIqKEJCJRooBdLqj4/q+x4nSC0iIiwdGChILyIhLgAAAwB2AAADmQXEAAMABwALABtADAIKCgsLBwMDB30GCgA/PzMvETMRMxEzMDFBESMRAREjESEVITUDmfH+v/EDI/2KBcT+CQH3/sn7cwSNwMAAAAIAdQTTAwMGfAAPABMAErUREwAKDQUALzN83DIY1s0wMUEzFAYGIyImJjUzFBYzMjYnNzMHAlatT5NkZZNQrEZWU0bgeLOqBbBBZDg4ZEEtRUU4wcEAAgB1BNUC/QcHAA8AJQAoQBEbHBwRJRISEREJDQUACQkFEAA/M3wvMxEzETMYLzMRMxEzLzMwMUEzFAYGIyImJjUzFBYzMjYnIyc+AjU0LgIjNzIeAhUUBgYHAlKrT5BlY5NOqkdTUkdKnAkxPB0XKTcgB094UCkrQyYFsEFjNzdjQS1CQkVzAgwWEhAWDQVeFSY3IiUwGAUA//8ATAKNAqkFuAYHAeEAAAKY//8ANgKYAr8FrQYHAjoAAAKY//8AUAKNAq0FrQYHAjsAAAKY//8ATgKNArgFugYHAjwAAAKY//8ANwKYAq0FrQYHAj0AAAKY//8ASwKNAqoFuAYHAj4AAAKY//8ARwKOAqMFuAYHAj8AAAKYAAEAaf/rBSEFxQApABVAChoWEQNyJgAFCXIAK8wzK8wzMDFBMw4CIyIuAzU1NBI2NjMyFhYXIy4CIyIOAhUVFB4DMzI2NgQl+w+M9a9vwZxwPFyo5omv+I8P+w5KiGpWimQ1I0JedUZohUoB2pXefEF9sOCDN6QBCr9lfeKWXodISYm/dzlfooBaL0aGAAABAGn/6wUiBcUALQAbQA0tLCwFGhYRA3ImBQlyACsyK8wzEjkvMzAxQREOAiMiLgM1NTQSNjYzMhYWFyMuAiMiDgIVFRQeAzMyNjY3ESE1BSIdiNmYdM2nekFdqueJt/OGEvcMS4doVo1nOChLaINLUHNIEP7cAuH92ihiRkJ8suKFJ6gBD8BleNKHTHhFSozEeClho4JbLxsoEgEfuwAAAgCZAAAFFAWwABsAHwAStxwPEAJyAh0AAC8yMisyMjAxYSE3ITI+AjU1NC4CIyE1ITIEFhIVFRQCBgQBESMRAkz+vAIBOHWwdjw8da1w/rcBU5oBAb1nZ73++v6p+sdKiblvLXK6hUjIZrz+/J0rnf78u2YFsPpQBbAAAAIAaf/rBW4FxQAZADEAELchFANyLQcJcgArMisyMDFBFRQOAyMiLgM1NTQ+AzMyHgMHNTQuAyMiDgIVFRQeAzMyPgIFbj5xn8RwbsOgdD4+c6DCbnDFn3I++SVEYXpHVpBoOiZFYnhFWpBnOALuLH3etIJGRoK03n0sfd21gkZGgrXdqS5an4JdMk6NvnEuW6CCXjJOjcAAAwBp/wQFbgXFAAMAHQA1ABtADSUYA3IAAwMxCwlyAQIALzMrMjIRMysyMDFlAQcBARUUDgMjIi4DNTU0PgMzMh4DBzU0LgMjIg4CFRUUHgMzMj4CA9EBdKP+lAI4PnGfxHBuw6B0Pj5zoMJucMWfcj75JURhekdWkGg6JkVieEVakGc4wv7RjwEtArcigOC1gUVFgbXggCKB4LWCRUWCteCjJF6ig1wxTIzCdiReooNdMU2MwwABAJYAAALqBI0ABgAVQAkDBAQFBQZ9AgoAPz8zLzMRMzAxQREjEQU1JQLq8f6dAjUEjftzA3B8yNEAAQBrAAAELwSfACAAF0AKEBAMFX4DICACEgA/MxEzPzMzLzAxZRUhNQE+AjU0JiYjIgYGFSM0NjYzMh4CFRQOAgcFBC/8WgHqPUEYJ1dJRGc78XjUi2ykbzgjQ2A//u2/v5wBqDVRSicqSzA1YkR0uW0yW3xKOWZfYDT7AAEAD/6jA/cEjQAfABpACwYAHh4DFg8FAgN9AD8zMy8zEjkvMzMwMUEBITUhFwEeAhUUDgIjIiYnNxYWMzI2NjU0JiYjIwFNAVD9uwN0Af6bbrVsWaDagWjEaDZKqllyo1dNnnpMAlQBecCN/n0Pdb6AgciJRjM0sygwVphgZYRAAAACADT+xASIBI0ABwALABZACQYEC30KAwcHAgAvMxEzLz8zMzAxZRUhJwEzAwEBESMRBIj7swcCqL3P/moCofG/wJID/P6S/aADzvo3BckAAAEAZ/6gBCEEjAAnABZACSQJCQIaEwUCfQA/My8zEjkvMzAxQScTIRUhAzY2NzYeAhUUDgIjIiYnNxYWMzI+AjU0LgIjIgYGAVLIVgMp/ZouKXdSaKRzO0SHzIhu0F1KOqRiT3hQKCJCYkE+UjQBaREDEsz+oBgfAQFDgLZxa76TUzo7ri02NFx4RUBtUi0bMwAAAQBC/sQEFgSNAAYAD7UBBQUGfQMALz8zETMwMUEVASMBITUEFv258wI8/SoEjYX6vAUJwAAAAgB2BM4C/AbaAA8AJwApQBEREBAZISEVHRwcJRUVAAkNBQAvM80yMnwvMzMRMxEzGC8zMxEzMDFBMxQGBiMiJiY1MxQWMzI2ExcUBgYjIiYmIyIGFSc0NjYzMhYWMzI2AlCsT5BkY5FPq0RUU0QiaCtJMTVFPiwfK2cpSjEsSEUrHiwFr0JmOTlmQi1ERAFYHjBSMiQkMiUbMFMzJCMyAAEAYv6aAVMAswADAAixAQAAL80wMWURIxEBU/Gz/ecCGQAFAE7/8AZuBJ0AKQAtADEANQA5ADFAGDg5OTF9Fi0tFzAKNTQ0JhsBBgYmfhEbCwA/Mz8zETMREjkvMz8zMxEzPzMRMzAxQQciLgIjIg4CFRUUHgIzMj4CMxciBgYjIi4CNTU0PgIzMhYWARUhNRMRIxEBFSE1ARUhNQPnGSBqcl8VQ2tJJydLa0MXYHRnHRpOlH0qdcKOTU2MwnUqf5UC0v1mS/EC6v28Apn9ZwSNwAQHBTJgjFs6Wo1hMwUFBb4ICE6V0oU4hdKWTggI/DK/vwPO+3MEjf4tv78B08DAAAEAbv60BFAEoQA7ABS3ABUfHzULKTUALy8zEjkvMzIwMUUyPgI1NTQuAiMiDgIVFB4CMzI+AjU3FAYGIyIuAjU0PgIzMh4CFRUUDgMjIiYnNxYWAepViWI0JUVhPTZaQiQgQVw8S3BKJWV3yHlppnU+SIGtZ3G8i006apKxZUiWRi8xaY1ChsuJ9VeDWCwuVnlKQXNYMitHUycKjMBiSIW5cHa+iEpIj9WNz5Ttsnc7Hh6yEh0AAf+n/ksBiwDOABEACrINBgAAL8wyMDF3MxEUBgYjIiYnNxYWMzI2NjWZ8laebiQ8Ig4TOhYpOh7O/vR5qFYHCsEGBihPOgD//wA4/qMEIASNBAYCZikA//8AaP6gBCIEjAQGAmgBAP//ACz+xASABI0EBgJn+AD//wBiAAAEJgSfBAYCZfcA//8AX/7EBDMEjQQGAmkdAP//ADT/6wRXBKAEBgJ/1AD//wBs/+wEMgW5BAYAGvkA//8AWf60BDsEoQQGAm3rAP//AGf/7AQmBcQGBgAcAAD//wDlAAADOQSNBAYCZE8A////rv5LAZIEOgQGAJwAAP///67+SwGSBDoGBgCcAAD//wCQAAABgQQ6BgYAjQAA////+v5eAYEEOgYmAI0AAAEGAKTRCgALtgEEAgAAQ1YAKzQA//8AkAAAAYEEOgYGAI0AAAADAHb/6wQZBJ0AAwAWADEAKUAUDyYmDSMjCRsvC3IEAAACEwl+AgoAPz8zEjkvMysyETkvMzMRMzAxQREjERcjNDY2MzIWFwEnNRMmJiMiBgYTNxYWMzI2NjU0JiYjIzU3Mh4CFRQGBiMiJgFi7OzsXbmLic5W/qiGzB1MNT5PJUZFGUovNk0pNm1QUm9pp3Y+Z7JvQ3QC7f0TAu0CkMFhdF/+ZANxAQIYJT5v/O62ESAvVDc7RyGdBypSek96qFYdAAIAYP/rBIMEoAAVACsADrUcEX4nBgsAPzM/MzAxQRUUDgIjIi4CNTU0PgIzMh4CBzU0LgIjIg4CFRUUHgIzMj4CBINQj8FwcMKQUVCQwXBwwZBR8SxOaj0+aE8rLE9pPj5pTSsCThGU35RLS5TflBGU35VKSpXftDFjkV8vL1+RYzFjkmAuLmCSAAEAOQAAA+oFsAAGABNACQEFBQYEcgMMcgArKzIRMzAxQRUBIwEhNQPq/dPyAi39QQWwhPrUBPDAAAADAH3/7AREBgAABAAaAC8AGUAOIRYHcisLC3IECnIAAHIAKysrMisyMDFTMxEHIwEVFA4CIyIuAic1PgMzMh4CBzU0LgIjIg4CBxUeAjMyPgJ98SDRA8c7c6NnZZZlPg0NPmWVZGilcjvxH0BiREBePyQGCT1uVUNiPx8GAPrn5wInFXbJlVJNi8B0Q3fDjUxPksuQFUyCYTYrTGc7tUl8SzhigAAAAQBP/+wEAAROACcAGUAMHRkZFAdyBAQACQtyACsyMi8rMi8yMDFlMjY2NzMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CAkE7YT0D4wR6xnh8vH4/QH66fILFcgTjAzdgQ0ljOxkZO2OrMFQ3aaxlVZbEcCNwxZZVZ7d5PGE6O2V9QyNDfmQ7AAADAE7/7AQVBgAABAAaAC8AGUANIQQEFgtyKwsHcgEAcgArKzIrMi8yMDFlETMRIwE1ND4CMzIeAhcVDgMjIi4CNxUUHgIzMjY2NzUuAyMiDgIDI/LS/QtBdqNkYpRnPg4NP2iUY2KjdkHyIUJiQVJtPwsGJkBdPkFjQyHgBSD6AAIRFXzLkk9MjcJ3RHPBi01SlMmLFUmBYTdIfEu2O2ZMKzZhggAAAwBO/lUEFQROABMAKQA+ABtADzAlC3I6GgdyDgYPcgAGcgArKzIrMisyMDFBMxEUDgIjIiYnNxYWMzI2NjURATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgNF0EOBunZLuUwxPIdKX3o7/Ss/dqNlaZZjOg4OPWaWZWOjdj/yIUJiQVVsPAwHJT5dQEJjQiEEOvwVebyCQysvqyEoR4toAvr+zRV7y5JPTI3Cd0N0wIxNUpXJixVKgGI3SXtMtTtmTCs2YYIAAAIASf/sBFMETgAVACsAELccEQtyJwYHcgArMisyMDFTNTQ+AjMyHgIVFRQOAiMiLgI3FRQeAjMyPgI1NTQuAiMiDgJJSYi+dXe/iEhIh792dr+ISfEkRWhEQ2dGIiNFaEREZkUkAhEXdcmVU1OVyXUXdciVU1OVyIwXSYJjODhjgkkXSIFkOTlkgQAAAwB9/mAEQwROAAQAGgAvABlADiEWB3IrCwtyAwZyAg5yACsrKzIrMjAxQREjETMBFRQOAiMiLgInNT4DMzIeAgc1NC4CIyIOAgcVHgIzMj4CAW7x2ALuPXOiZmWXaD8NDT9olmRmpHQ88SJEY0FAXUAkBgw8bVRBYkMiA2r69gXa/e0VdsmVUkuJu3BRd8KNTE+Sy5AVTIJhNitMZjvCSHhHOGSBAAMATv5gBBQETgAEABoALwAZQA4hFgtyKwsHcgQOcgMGcgArKysyKzIwMUERNzMRATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgMiIdH8Oj91pWZllWc+Dg0+aJZmZKV1P/IhQ2NBVW89CwYlQF9AQWRDIv5gBQPX+iYDsRV7y5NPTI3Cd0RzwYtNUpTJixVKgWM4Sn5LtjtmTis3YoMAAAEAUf/sBAoETgAqABlADBMSEgAZCwdyJAALcgArMisyETkvMzAxRSIuAjU1ND4CMzIeAhUVITUhNTQmJiMiDgIVFRQeAjMyNjcXBgYCcn3IkExKhLRpdK5zOfy8AlYtYlE8XT8hKlJ7UlOVNDcytxRQkMNzKn3Jj01Jh7pwf60aQm5CMlyDUSpJfV00MCGjJkcAAwBQ/lUEAwROABIAKAA9ABtADy8kC3I5GQdyDQYPcgAGcgArKzIrMisyMDFBMxEUBgYjIiYnNxYWMzI2NjURATU0PgIzMh4CFxUOAyMiLgI3FRQeAjMyNjY3NS4DIyIOAgMz0HffnUavRzI3e0VgeTv9PzptnmVplWQ5Dg49ZpVlZJ1tOvIaOlxBVWs6CwYjPV1AQV06GwQ6/Aqe3XQlKawdIUSHYwMG/swVfMuST0yNwndDdMCMTVKUyYsVSn9iN0l7TLU7ZkwrN2GCAAACADT+TQRbBEoAAwAlABlADA4VAQEVHwQHcgMGcgArKzIvMy8RMzAxQQEjASUyHgIXAR4CFxY2NwcGBicuAycBLgIjIgYHJzY2BCz9IvUC3/2CUGlFLBIBlhAmLx0OMQ4iFDsZPFpCNBf+fRAzQisMKg0EHUUEOvomBdoQNlRdJ/xnJjsmAwEBAcAHBgIDNFRpOAN2K0MnBAG2CAsA//8AYQAAArcFtQQGABW3AAABAF//7gS9BJ0AQQAXQAs4OBAifhkKMwALcgArMj8/MzkvMDFFIi4CNTQ2NjclNjY1NCYjIgYVFBYWFwEhAS4CNTQ2NjMyFhYVFAYGBwUOAhUUFhYzMj4CNTMUBgcGBgcGBgIBYZtsOjBZPQEHMydBOzs8JT8mAqD+9v3LOVgzUphoaZhUK0kt/uAhJAwrUz1hl2o30lhLDhgRUNESLlJwQERnVSmzIj4hKj5DKiA+QCf9TwJEOmJoQ018SUp/UDVdTh/GGC4rFClAIzxtlVqCzk4OGww/RgADAAUAAAOeBI0AAwAHAAsAHUANCAkJCwoKBgd9AwIGCgA/MzM/EjkvMzMvMzAxZRUhNRMRIxEBFQU1A579ikvxAfL9kb+/vwPO+3MEjf6hkbuRAAAG/+wAAAYEBI0AAwAHAAsAEAAUABgAM0AYCgsLGBgPBwYUEwYTBhMND30DAgIXFw0KAD8zETMRMz8SOTkvLxEzETMRMxEzETMwMWUVITUBFSE1ARUhNQcBIQEzExUhNQETIwMGBP2EAhL90QJu/YRf/fP++wJtoK79hwKQKu8rvr6+AgC+vgHPvr5y++UEjf03vLwCyftzBI0AAgB2AAAD0QSNAAMAGQAXQAoPEBABfQUEBAAKAD8yLzM/My8zMDFzETMRJzUzMjY2NTQmJiMjNTMyFhYVFAYGI3bxUetOYi8vYk7q6pLQbm7QkgSN+3PkwS5TNDJVNcBiqm5yqV0AAwBO/8cEbgS7ABUAKwAvABtACy8vHBF+LS0nBgtyACsyMnwvGD8zM3wvMDFBFRQOAiMiLgI1NTQ+AjMyHgIHNTQuAiMiDgIVFRQeAjMyPgITASMBBG5Mi8J1dcKOTU2MwnV2wY1M8SZLakRDa0knJ0trQ0RpSibs/I6fA3QCYjiF0pVOTpXShTiF0pZOTpbSvTpbjGAyMmCMWzpajWEzM2GNAuv7DAT0AAAEADQAAATaBI0AAwAHAAsADwAbQAwCA4AODw8LB30KBgoAPzM/MzMvMxrMMjAxQRUhNRMRIxEhESMRBRUhNQPQ/WxE8QPx8QFL+1oCncDAAfD7cwSN+3MEjZanpwAAAgB2/ksEZwSNAAkAGwAfQA8XEA9yCQMGfQgKCgICBQoAPzMRMxEzPzMzKzIwMUERIwERIxEzARERMxUUBgYjIiYnNxYWMzI2NjUEZ/L98vHxAg7yVZ9vIzwiDhM6FSo5HwSN+3MDI/zdBI383QMj+7iDeahWBwrBBgYoTzr//wBQAg4CYQLOBgYAEQAAAAMAFwAABPAFsAAaAB4AIgAjQBECAQEdIiEhHQ4PDx4Cch0IcgArKzIRMxE5LzMRMxEzMDFhITchMjY2NTU0LgIjITUhMh4CFRUUDgIBESMRARUhNQJZ/skCATWHt101Z5Vh/roBRpHwr15esPP+vvsCBf1gx3bcmE92tnxAyGG2/p1Nnf61YQWw+lAFsP2EpqYAAwAXAAAE8AWwABoAHgAiACNAEQIBAR0iISEdDg8PHgJyHQhyACsrMhEzETkvMxEzETMwMWEhNyEyNjY1NTQuAiMhNSEyHgIVFRQOAgERIxEBFSE1Aln+yQIBNYe3XTVnlWH+ugFGkfCvXl6w8/6++wIF/WDHdtyYT3a2fEDIYbb+nU2d/rVhBbD6UAWw/YSmpgAD//UAAAQYBgAAAwAaAB4AGUANHh0WCgdyAwByEQIKcgArMisrMsQyMDFBESMREyc+AzMyHgIVESMRNCYmIyIOAgEVITUBiPDGTgE9b5xfUIFeMfItVj5BY0IhATf9YAYA+gAGAPxFAXC+jU0sYZtv/UkCuU5cKTRadgLnpqYAAAMALQAABLQFsAADAAcACwAVQAoDCgsGBwJyAQhyACsrMi8zMjAxQREjESEVITUBFSE1Auv5AsL7eQOM/WAFsPpQBbDIyP4IpqYAA//r/+wCiwVDAAMAFQAZAB1ADgoRC3IYGRkCAgQEAwZyACsyLzIRMy8zKzIwMUEVITUTMxEUFhYzMjY3FwYGIyImJjUBFSE1Amz9nrDxHTQjGS4OAR5PM1OASAHR/WAEOrCwAQn76DI1EgYDuAkOO4ZvAcGmpgD//wARAAAFPwc3BiYAJQAAAQcARAEbATcAC7YDEAcBAWFWACs0AP//ABEAAAU/BzcGJgAlAAABBwB1AcIBNwALtgMOAwEBYVYAKzQA//8AEQAABT8HNwYmACUAAAEHAJ4AwgE3AAu2AxEHAQFsVgArNAD//wARAAAFPwcqBiYAJQAAAQcApQDFATcAC7YDHAMBAWtWACs0AP//ABEAAAU/BwQGJgAlAAABBwBqAOQBNwANtwQDIwcBAXhWACs0NAD//wARAAAFPweRBiYAJQAAAQcAowFYAWwADbcEAxkHAQFHVgArNDQA//8AEQAABT8HsQYmACUAAAEHAkEBWAEXABK2BQQDGwcBALj/srBWACs0NDT//wBm/jkE6wXEBiYAJwAAAQcAeQHL//oAC7YBKAUAAApWACs0AP//AJQAAARNBz4GJgApAAABBwBEAOUBPgALtgQSBwEBbFYAKzQA//8AlAAABE0HPgYmACkAAAEHAHUBjAE+AAu2BBAHAQFsVgArNAD//wCUAAAETQc+BiYAKQAAAQcAngCNAT4AC7YEEwcBAXdWACs0AP//AJQAAARNBwsGJgApAAABBwBqAK4BPgANtwUEJQcBAYNWACs0NAD////LAAABoAc+BiYALQAAAQcARP+TAT4AC7YBBgMBAWxWACs0AP//AKUAAAJ8Bz4GJgAtAAABBwB1ADoBPgALtgEEAwEBbFYAKzQA////ygAAAn4HPgYmAC0AAAEHAJ7/OgE+AAu2AQcDAQF3VgArNAD///++AAAChwcLBiYALQAAAQcAav9bAT4ADbcCARkDAQGDVgArNDQA//8AlAAABRcHKgYmADIAAAEHAKUA8QE3AAu2ARgGAQFrVgArNAD//wBl/+wFHQc4BiYAMwAAAQcARAEzATgAC7YCLhEBAU9WACs0AP//AGX/7AUdBzgGJgAzAAABBwB1AdoBOAALtgIsEQEBT1YAKzQA//8AZf/sBR0HOAYmADMAAAEHAJ4A2gE4AAu2Ai8RAQFaVgArNAD//wBl/+wFHQcsBiYAMwAAAQcApQDdATkAC7YCOhEBAVlWACs0AP//AGX/7AUdBwUGJgAzAAABBwBqAPwBOAANtwMCQREBAWZWACs0NAD//wCA/+wEvwc3BiYAOQAAAQcARAEPATcAC7YBGAABAWFWACs0AP//AID/7AS/BzcGJgA5AAABBwB1AbYBNwALtgEWCwEBYVYAKzQA//8AgP/sBL8HNwYmADkAAAEHAJ4AtgE3AAu2ARkAAQFsVgArNAD//wCA/+wEvwcEBiYAOQAAAQcAagDXATcADbcCASsAAQF4VgArNDQA//8ACAAABNkHNgYmAD0AAAEHAHUBjAE2AAu2AQkCAQFgVgArNAD//wBW/+wD+QYABiYARQAAAQcARACmAAAAC7YCPQ8BAYxWACs0AP//AFb/7AP5BgAGJgBFAAABBwB1AU0AAAALtgI7DwEBjFYAKzQA//8AVv/sA/kGAAYmAEUAAAEGAJ5NAAALtgI+DwEBl1YAKzQA//8AVv/sA/kF9AYmAEUAAAEGAKVQAQALtgJJDwEBllYAKzQA//8AVv/sA/kFzQYmAEUAAAEGAGpvAAANtwMCUA8BAaNWACs0NAD//wBW/+wD+QZaBiYARQAAAQcAowDjADUADbcDAkYPAQFyVgArNDQA//8AVv/sA/kGegYmAEUAAAEHAkEA4v/gABK2BAMCSA8AALj/3bBWACs0NDT//wBO/jkD8QROBiYARwAAAQcAeQFB//oAC7YBKAkAAApWACs0AP//AFH/7AQKBgAGJgBJAAABBwBEAJsAAAALtgEuCwEBjFYAKzQA//8AUf/sBAoGAAYmAEkAAAEHAHUBQgAAAAu2ASwLAQGMVgArNAD//wBR/+wECgYABiYASQAAAQYAnkIAAAu2AS8LAQGXVgArNAD//wBR/+wECgXNBiYASQAAAQYAamMAAA23AgFBCwEBo1YAKzQ0AP///7QAAAGIBfcGJgCNAAABBwBE/3z/9wALtgEGAwEBnlYAKzQA//8AkAAAAmUF9wYmAI0AAAEGAHUj9wALtgEEAwEBnlYAKzQA////tAAAAmgF9wYmAI0AAAEHAJ7/JP/3AAu2AQcDAQGpVgArNAD///+oAAACcQXEBiYAjQAAAQcAav9F//cADbcCARkDAQG1VgArNDQA//8AegAAA/oF9AYmAFIAAAEGAKVaAQALtgIqAwEBqlYAKzQA//8ATv/sBDwGAAYmAFMAAAEHAEQAsQAAAAu2Ai4GAQGMVgArNAD//wBO/+wEPAYABiYAUwAAAQcAdQFXAAAAC7YCLAYBAYxWACs0AP//AE7/7AQ8BgAGJgBTAAABBgCeWAAAC7YCLwYBAZdWACs0AP//AE7/7AQ8BfQGJgBTAAABBgClWwEAC7YCOgYBAZZWACs0AP//AE7/7AQ8Bc0GJgBTAAABBgBqeQAADbcDAkEGAQGjVgArNDQA//8Ad//sA/kGAAYmAFkAAAEHAEQArAAAAAu2Ah4RAQGgVgArNAD//wB3/+wD+QYABiYAWQAAAQcAdQFSAAAAC7YCHBEBAaBWACs0AP//AHf/7AP5BgAGJgBZAAABBgCeUwAAC7YCHxEBAatWACs0AP//AHf/7AP5Bc0GJgBZAAABBgBqdAAADbcDAjERAQG3VgArNDQA//8ADP5LA94GAAYmAF0AAAEHAHUBGwAAAAu2AhkBAQGgVgArNAD//wAM/ksD3gXNBiYAXQAAAQYAaj0AAA23AwIuAQEBt1YAKzQ0AP//ABEAAAU/BuMGJgAlAAABBwBwAL0BOQALtgMQAwEBplYAKzQA//8AVv/sA/kFrQYmAEUAAAEGAHBIAwALtgI9DwEB0VYAKzQA//8AEQAABT8HHgYmACUAAAEHAKEA8AE3AAu2AxMHAQFTVgArNAD//wBW/+wD+QXnBiYARQAAAQYAoXsAAAu2AkAPAQF+VgArNAAABAAR/lQFPwWwAAQACQANACMAK0AVDQwMAxYdBgACBwMCcg4PDwUFAghyACsyETMRMysyEjk5LzMSOS8zMDFBASEBMwEBJzMBARUhNQEXDgIVFBYzMjY3FwYGIyImNTQ2NgLL/k3++QIkqAFa/kwTqQIm/uP86AOCcy5KKSAnHiwPFxlOPFh7LmgE7vsSBbD6UATuwvpQAhzHx/4eOh49RSgeJxEHiw8dZmI0ZV0AAwBW/lQD+QROABsAOgBQACtAFx46Og9DSg9yJzELcjs8PBkKcgkFDwdyACsyMisyETMrMisyEjkvMzAxZRE0JiYjIgYGFSM0PgIzMhYWFREUFhcVIyYmExcjIg4CFRQWFjMyNjY3Fw4DIyImJjU0PgIzARcOAhUUFjMyNjcXBgYjIiY1NDY2At4qVUA7VjDwPnakZnq9bRUU9xETIwKtQ2ZEIihNN0pvQAJODDpdgVRqpl5Bf7h2ARlzL0kqICcfLA4XGU48WHouaNkCBDpULihEK0B4XjZSpXz+H0p1KxAneQHylRkwRCsrRyg9WShrKV5VNlWRXFaFWi/9qDoePUUoHicRB4sPHWZiNGVdAP//AGb/7ATrB0sGJgAnAAABBwB1AcQBSwALtgEoEAEBbVYAKzQA//8ATv/sA/EGAAYmAEcAAAEHAHUBLgAAAAu2ASgUAQGMVgArNAD//wBm/+wE6wdLBiYAJwAAAQcAngDFAUsAC7YBKxABAXhWACs0AP//AE7/7APxBgAGJgBHAAABBgCeLwAAC7YBKxQBAZdWACs0AP//AGb/7ATrBygGJgAnAAABBwCiAakBUwALtgExEAEBglYAKzQA//8ATv/sA/EF3QYmAEcAAAEHAKIBEwAIAAu2ATEUAQGhVgArNAD//wBm/+wE6wdLBiYAJwAAAQcAnwDbAUsAC7YBLhABAXZWACs0AP//AE7/7APxBgAGJgBHAAABBgCfRQAAC7YBLhQBAZVWACs0AP//AJQAAATSBz4GJgAoAAABBwCfAGEBPgALtgIlHgEBdVYAKzQA//8AUP/sBVgGAgQmAEgAAAEHAdQEBAUCAAu2AzkBAQAAVgArNAD//wCUAAAETQbqBiYAKQAAAQcAcACHAUAAC7YEEgcBAbFWACs0AP//AFH/7AQKBa0GJgBJAAABBgBwPAMAC7YBLgsBAdFWACs0AP//AJQAAARNByUGJgApAAABBwChALoBPgALtgQVBwEBXlYAKzQA//8AUf/sBAoF5wYmAEkAAAEGAKFwAAALtgExCwEBflYAKzQA//8AlAAABE0HGwYmACkAAAEHAKIBcQFGAAu2BBkHAQGBVgArNAD//wBR/+wECgXeBiYASQAAAQcAogEmAAkAC7YBNQsBAaFWACs0AAAFAJT+VARNBbAAAwAHAAsADwAlAClAFAoLCxgfDg8PBwJyEBERAwICBghyACsyETMyETMrMhEzLzM5LzMwMWUVITUTESMRARUhNQEVITUBFw4CFRQWMzI2NxcGBiMiJjU0NjYETfz7R/sDVP1gAwD9AAIdcy9JKiAoHiwOGBlPO1l6LmjHx8cE6fpQBbD9oMTEAmDIyPqKOh49RSgeJxEHiw8dZmI0ZV0AAAIAUf5yBAoETgArAEEAJUATEhMTCzQ7DnIZCwdyLC0kJAALcgArMhE5OSsyKzISOS8zMDFFIi4CNTU0PgIzMh4CFRUhNSE1LgIjIg4CFRUUHgIzMjY3Fw4CNxcOAhUUFjMyNjcXBgYjIiY1NDY2All4wYdISoS0aXSuczn8vAJWAi9gUDxdPiEnTGxFV4gyfyNwoQ9zLkopICceLA8XGU48WHsuaBRPjsBvKH/Ok05OjcJ1Z60TQXJGM2CHVChHeVozRkB7M106azoePkMoHyYQB4oPHWViNGVeAP//AJQAAARNBz4GJgApAAABBwCfAKMBPgALtgQWBwEBdVYAKzQA//8AUf/sBAoGAAYmAEkAAAEGAJ9YAAALtgEyCwEBlVYAKzQA//8Aa//sBPIHSwYmACsAAAEHAJ4AxgFLAAu2AS8QAQF4VgArNAD//wBS/lUEDAYABiYASwAAAQYAnkQAAAu2A0IaAQGXVgArNAD//wBr/+wE8gcyBiYAKwAAAQcAoQD0AUsAC7YBMRABAV9WACs0AP//AFL+VQQMBecGJgBLAAABBgChcQAAC7YDRBoBAX5WACs0AP//AGv/7ATyBygGJgArAAABBwCiAasBUwALtgE1EAEBglYAKzQA//8AUv5VBAwF3QQmAEsAAAEHAKIBKAAIAAu2A0gaAQGhVgArNAD//wBr/fYE8gXEBiYAKwAAAQcB1AHm/pIADrQBNQUBAbj/mLBWACs0//8AUv5VBAwGpQQmAEsAAAEHAk4BMAB8AAu2Az8aAQGYVgArNAD//wCUAAAFFwc+BiYALAAAAQcAngDmAT4AC7YDDwsBAXdWACs0AP//AHoAAAP6B18GJgBMAAABBwCeABoBXwALtgIeAwEBJlYAKzQA////tAAAApAHMQYmAC0AAAEHAKX/PQE+AAu2ARIDAQF2VgArNAD///+dAAACeQXrBiYAjQAAAQcApf8m//gAC7YBEgMBAahWACs0AP///9EAAAJ4BuoGJgAtAAABBwBw/zQBQAALtgEGAwEBsVYAKzQA////uwAAAmIFpAYmAI0AAAEHAHD/Hv/6AAu2AQYDAQHjVgArNAD////dAAACZwclBiYALQAAAQcAof9oAT4AC7YBCQMBAV5WACs0AP///8YAAAJQBd4GJgCNAAABBwCh/1H/9wALtgEJAwEBkFYAKzQA//8AGP5aAaAFsAYmAC0AAAEGAKTvBgALtgEFAgAAAFYAKzQA//////5UAZAF1gYmAE0AAAEGAKTWAAALtgIRAgAAAFYAKzQA//8AnwAAAaQHGwYmAC0AAAEHAKIAHgFGAAu2AQ0DAQGBVgArNAD//wCl/+wGKQWwBCYALQAAAAcALgJEAAD//wB8/ksDkQXWBCYATQAAAAcATgIKAAD//wAv/+wEswc1BiYALgAAAQcAngFvATUAC7YBFwEBAWpWACs0AP///67+SwJqBd4GJgCcAAABBwCe/yb/3gALtgEVAAEBglYAKzQA//8AlP5JBRYFsAQmAC8AAAEHAdQBnP7lAA60AxcCAQC4/+ewVgArNP//AH3+NAQ3BgAGJgBPAAABBwHUATL+0AAOtAMXAgEBuP/UsFYAKzT//wCUAAAEJAczBiYAMAAAAQcAdQAsATMAC7YCCAcBAVxWACs0AP//AIwAAAJfB5AGJgBQAAABBwB1AB0BkAALtgEEAwEBcVYAKzQA//8AlP4GBCQFsAQmADAAAAEHAdQBb/6iAA60AhECAQG4/5ewVgArNP//AFn+BgF+BgAEJgBQAAABBwHUABL+ogAOtAENAgEBuP+XsFYAKzT//wCUAAAEJAWxBiYAMAAAAQcB1AILBLEAC7YCEQcAAAFWACs0AP//AIwAAALgBgIEJgBQAAABBwHUAYwFAgALtgENAwAAAlYAKzQA//8AlAAABCQFsAYmADAAAAAHAKIBzf3Q//8AjAAAAusGAAQmAFAAAAAHAKIBZf2t//8AlAAABRcHNwYmADIAAAEHAHUB7gE3AAu2AQoGAQFhVgArNAD//wB6AAAD+gYABiYAUgAAAQcAdQFXAAAAC7YCHAMBAaBWACs0AP//AJT+AgUXBbAEJgAyAAABBwHUAeD+ngAOtAETBQEBuP+XsFYAKzT//wB6/gYD+gROBCYAUgAAAQcB1AFG/qIADrQCJQIBAbj/l7BWACs0//8AlAAABRcHNwYmADIAAAEHAJ8BBQE3AAu2ARAJAQFqVgArNAD//wB6AAAD+gYABiYAUgAAAQYAn20AAAu2AiIDAQGpVgArNAD///+jAAAD+gYDBiYAUgAAAQcB1P9cBQMAC7YCIAMBATpWACs0AP//AGX/7AUdBuUGJgAzAAABBwBwANUBOwALtgIuEQEBlFYAKzQA//8ATv/sBDwFrQYmAFMAAAEGAHBSAwALtgIuBgEB0VYAKzQA//8AZf/sBR0HHwYmADMAAAEHAKEBCAE4AAu2AjERAQFBVgArNAD//wBO/+wEPAXnBiYAUwAAAQcAoQCGAAAAC7YCMQYBAX5WACs0AP//AGX/7AUdBzcGJgAzAAABBwCmAWABOAANtwMCLBEBAUVWACs0NAD//wBO/+wEPAX/BiYAUwAAAQcApgDdAAAADbcDAiwGAQGCVgArNDQA//8AlAAABN8HNwYmADYAAAEHAHUBcwE3AAu2Ah4AAQFhVgArNAD//wB9AAAC9AYABiYAVgAAAQcAdQCyAAAAC7YCFwMBAaBWACs0AP//AJT+BgTfBbAEJgA2AAABBwHUAXH+ogAOtAInGAEBuP+XsFYAKzT//wBS/gcCuQROBCYAVgAAAQcB1AAL/qMADrQCIAIBAbj/mLBWACs0//8AlAAABN8HNwYmADYAAAEHAJ8AigE3AAu2AiQAAQFqVgArNAD//wA2AAAC/QYABiYAVgAAAQYAn8gAAAu2Ah0DAQGpVgArNAD//wBL/+wEjgc4BiYANwAAAQcAdQGVATgAC7YBOg8BAU9WACs0AP//AEn/7APHBgAGJgBXAAABBwB1ATYAAAALtgE2DgEBjFYAKzQA//8AS//sBI4HOAYmADcAAAEHAJ4AlgE4AAu2AT0PAQFaVgArNAD//wBJ/+wDxwYABiYAVwAAAQYAnjcAAAu2ATkOAQGXVgArNAD//wBL/j4EjgXEBiYANwAAAQcAeQGg//8AC7YBOisAABNWACs0AP//AEn+NQPHBE4GJgBXAAABBwB5AT7/9gALtgE2KQAAClYAKzQA//8AS/37BI4FxAYmADcAAAEHAdQBjv6XAA60AUMrAQG4/6CwVgArNP//AEn98gPHBE4GJgBXAAABBwHUASv+jgAOtAE/KQEBuP+XsFYAKzT//wBL/+wEjgc4BiYANwAAAQcAnwCsATgAC7YBQA8BAVhWACs0AP//AEn/7APHBgAGJgBXAAABBgCfTQAAC7YBPA4BAZVWACs0AP//AC3+AAS0BbAGJgA4AAABBwHUAXz+nAAOtAIRAgEBuP+NsFYAKzT//wAK/fwCdQVDBiYAWAAAAQcB1ADG/pgADrQCHxEBAbj/obBWACs0//8ALf5DBLQFsAYmADgAAAEHAHkBjgAEAAu2AggCAQAAVgArNAD//wAK/j8CowVDBiYAWAAAAQcAeQDZAAAAC7YCFhEAABRWACs0AP//AC0AAAS0BzYGJgA4AAABBwCfAJwBNgALtgIOAwEBaVYAKzQA//8ACv/sAyIGfgQmAFgAAAEHAdQBzgV+AA60AhoEAQC4/6iwVgArNP//AID/7AS/ByoGJgA5AAABBwClALkBNwALtgEkCwEBa1YAKzQA//8Ad//sA/kF9AYmAFkAAAEGAKVVAQALtgIqEQEBqlYAKzQA//8AgP/sBL8G4wYmADkAAAEHAHAAsAE5AAu2ARgLAQGmVgArNAD//wB3/+wD+QWtBiYAWQAAAQYAcE0DAAu2Ah4RAQHlVgArNAD//wCA/+wEvwceBiYAOQAAAQcAoQDkATcAC7YBGwABAVNWACs0AP//AHf/7AP5BecGJgBZAAABBwChAIAAAAALtgIhEQEBklYAKzQA//8AgP/sBL8HkQYmADkAAAEHAKMBTAFsAA23AgEhAAEBR1YAKzQ0AP//AHf/7AP5BloGJgBZAAABBwCjAOgANQANtwMCJxEBAYZWACs0NAD//wCA/+wEvwc2BiYAOQAAAQcApgE7ATcADbcCARYAAQFXVgArNDQA//8Ad//sBDAF/wYmAFkAAAEHAKYA2AAAAA23AwIcEQEBllYAKzQ0AAACAID+jAS/BbAAFQArABtADR4lAQsCchcWEREGCXIAKzISOTkrMi8zMDFBMxEUBgYjIiYmNREzERQWFjMyNjY1AxcOAhUUFjMyNjcXBgYjIiY1NDY2A8X6kPeYnfaN+kiEWlqDSGNzLkkqICceLA8XGU48WHsuaAWw/DOm4HFx4KYDzfwzaYdAQIdp/o86Hj5EKB4nEQeLDx1lYjVlXQAAAwB3/lQD+QQ6AAQAGwAxACFAESQrD3IBEQZyHB0dBAQYCwtyACsyMhEzETMrMisyMDFlETMRIxM3FA4CIyIuAjURMxEUHgIzMjY2ExcOAhUUFjMyNjcXBgYjIiY1NDY2Awfy5BRRMGScbU+EXzTxHDBAJGd3M0dzL0kqICgeLA4YGU87WXouaP8DO/vGAeACbbeHSy5gmmsCu/1DO08wFFGK/rA6Hj1FKB4nEQeLDx1mYjRlXf//AC8AAAbmBzcGJgA7AAABBwCeAakBNwALtgQZFQEBbFYAKzQA//8AIwAABcgGAAYmAFsAAAEHAJ4BDAAAAAu2BBkVAQGrVgArNAD//wAIAAAE2Qc2BiYAPQAAAQcAngCMATYAC7YBDAIBAWtWACs0AP//AAz+SwPeBgAGJgBdAAABBgCeHAAAC7YCHAEBAatWACs0AP//AAgAAATZBwMGJgA9AAABBwBqAK0BNgANtwIBHgIBAXdWACs0NAD//wBQAAAEjgc3BiYAPgAAAQcAdQGHATcAC7YDDg0BAWFWACs0AP//AFEAAAPBBgAGJgBeAAABBwB1AR8AAAALtgMODQEBoFYAKzQA//8AUAAABI4HFAYmAD4AAAEHAKIBbAE/AAu2AxcIAQF2VgArNAD//wBRAAADwQXdBiYAXgAAAQcAogEEAAgAC7YDFwgBAbVWACs0AP//AFAAAASOBzcGJgA+AAABBwCfAJ4BNwALtgMUCAEBalYAKzQA//8AUQAAA8EGAAYmAF4AAAEGAJ82AAALtgMUCAEBqVYAKzQA/////AAAB04HQgYmAIEAAAEHAHUCwQFCAAu2BhkDAQFsVgArNAD//wBI/+sGhgYBBiYAhgAAAQcAdQJ1AAEAC7YDXw8BAY1WACs0AP//AGn/ogUiB4AGJgCDAAABBwB1AeMBgAALtgM0FgEBllYAKzQA//8ATv91BDwF/QYmAIkAAAEHAHUBMv/9AAu2AzAKAQGLVgArNAD///+lAAAEKwSNBiYCSgAAAAcCQP8Y/2v///+lAAAEKwSNBiYCSgAAAAcCQP8Y/2v//wAlAAAEGQSNBiYB8gAAAAYCQDO6//8ACAAABJEGHgYmAk0AAAEHAEQAwAAeAAu2AxAHAQFrVgArNAD//wAIAAAEkQYeBiYCTQAAAQcAdQFnAB4AC7YDDgMBAWtWACs0AP//AAgAAASRBh4GJgJNAAABBgCeZx4AC7YDEwMBAWtWACs0AP//AAgAAASRBhIGJgJNAAABBgClah8AC7YDGwMBAWtWACs0AP//AAgAAASRBesGJgJNAAABBwBqAIgAHgANtwQDFwMBAWtWACs0NAD//wAIAAAEkQZ4BiYCTQAAAQcAowD9AFMADbcEAxkDAQFRVgArNDQA//8ACAAABJEGmAYmAk0AAAAHAkEA/P/+//8AT/4+BEMEnQYmAksAAAAHAHkBbf////8AdgAAA7YGHgYmAkIAAAEHAEQAkwAeAAu2BBIHAQFsVgArNAD//wB2AAADtgYeBiYCQgAAAQcAdQE6AB4AC7YEEAcBAWxWACs0AP//AHYAAAO2Bh4GJgJCAAABBgCeOx4AC7YEFgcBAWxWACs0AP//AHYAAAO2BesGJgJCAAABBgBqXB4ADbcFBBkHAQGEVgArNDQA////qAAAAXwGHgYmAf0AAAEHAET/cAAeAAu2AQYDAQFrVgArNAD//wCGAAACWQYeBiYB/QAAAQYAdRceAAu2AQQDAQFrVgArNAD///+nAAACWwYeBiYB/QAAAQcAnv8XAB4AC7YBCQMBAXZWACs0AP///5wAAAJlBesGJgH9AAABBwBq/zkAHgANtwIBDQMBAYRWACs0NAD//wB2AAAEZwYSBiYB+AAAAQcApQCLAB8AC7YBGAYBAXZWACs0AP//AE7/8ARuBh4GJgH3AAABBwBEAM4AHgALtgIuEQEBW1YAKzQA//8ATv/wBG4GHgYmAfcAAAEHAHUBdQAeAAu2AiwRAQFbVgArNAD//wBO//AEbgYeBiYB9wAAAQYAnnUeAAu2AjERAQFbVgArNAD//wBO//AEbgYSBiYB9wAAAQYApXgfAAu2AjERAQFvVgArNAD//wBO//AEbgXrBiYB9wAAAQcAagCXAB4ADbcDAjURAQF0VgArNDQA//8Aaf/wBCAGHgYmAfEAAAEHAEQAswAeAAu2ARgLAQFrVgArNAD//wBp//AEIAYeBiYB8QAAAQcAdQFaAB4AC7YBFgsBAWtWACs0AP//AGn/8AQgBh4GJgHxAAABBgCeWx4AC7YBGwsBAWtWACs0AP//AGn/8AQgBesGJgHxAAABBgBqfB4ADbcCAR8LAQGEVgArNDQA//8ABgAABDgGHgYmAe0AAAEHAHUBMQAeAAu2Aw4JAQFrVgArNAD//wAIAAAEkQXLBiYCTQAAAQYAcGEhAAu2AxADAQGwVgArNAD//wAIAAAEkQYFBiYCTQAAAQcAoQCVAB4AC7YDEwMBAV1WACs0AAAEAAj+VASRBI0ABAAJAA0AIwAhQA8NDAwDFh0IA30PDgUFARIAPzMRMzM/My8zEjkvMzAxQQEjATMBASczAQEVITUBFw4CFRQWMzI2NxcGBiMiJjU0NjYCWv6i9AHVogEe/qAlpQHU/v39ZgL1cy5KKSAnHiwPFxlOPFh7LmgDnvxiBI37cwOg7ftzAbC1tf6KOh49RSgeJxEHiw8dZmI0ZV0A//8AT//wBEMGHgYmAksAAAEHAHUBZwAeAAu2ASgQAQFbVgArNAD//wBP//AEQwYeBiYCSwAAAQYAnmgeAAu2AS0QAQFbVgArNAD//wBP//AEQwX7BiYCSwAAAQcAogFMACYAC7YBMRABAXBWACs0AP//AE//8ARDBh4GJgJLAAABBgCffh4AC7YBLhABAWRWACs0AP//AGEAAAQrBh4GJgJKAAABBgCf8x4AC7YCJB0BAXRWACs0AP//AHYAAAO2BcsGJgJCAAABBgBwNSEAC7YEEgcBAbBWACs0AP//AHYAAAO2BgUGJgJCAAABBgChaB4AC7YEFQcBAV5WACs0AP//AHYAAAO2BfsGJgJCAAABBwCiAR8AJgALtgQZBwEBgFYAKzQAAAUAdv5UA7YEjQADAAcACwAPACUAI0AQGB8LCgoGDw4HfREQEAUGEgA/MzMRMz8zMxI5LzMvMzAxZRUhNRMRIxEBFSE1ARUhNQEXDgIVFBYzMjY3FwYGIyImNTQ2NgO2/WVM8QLq/bsCmf1nAcVzL0kqICgeLA4YGU87WXouaL+/vwPO+3MEjf4tv78B08DA+606Hj1FKB4nEQeLDx1mYjRlXQD//wB2AAADtgYeBiYCQgAAAQYAn1EeAAu2BBYHAQF0VgArNAD//wBW//AESwYeBiYB/wAAAQYAnm8eAAu2ATAQAQFmVgArNAD//wBW//AESwYFBiYB/wAAAQcAoQCdAB4AC7YBMBABAU1WACs0AP//AFb/8ARLBfsGJgH/AAABBwCiAVMAJgALtgE0EAEBcFYAKzQA//8AVv37BEsEnQYmAf8AAAEHAdQBc/6XAA60ATQFAQG4/5mwVgArNP//AHYAAARnBh4GJgH+AAABBgCefR4AC7YDEQcBAXZWACs0AP///5EAAAJtBhIGJgH9AAABBwCl/xoAHwALtgEJAwEBf1YAKzQA////rwAAAlYFywYmAf0AAAEHAHD/EgAhAAu2AQYDAQGwVgArNAD///+6AAACRAYFBiYB/QAAAQcAof9FAB4AC7YBCQMBAV1WACs0AP//ABf+VAGNBI0GJgH9AAAABgCk7gD//wB9AAABggX7BiYB/QAAAQYAovwmAAu2AQ0DAQGAVgArNAD//wAm//AEPgYeBiYB/AAAAQcAngD6AB4AC7YBGQEBAXZWACs0AP//AHb+AwRnBI0GJgH7AAAABwHUART+n///AHYAAAOSBh4GJgH6AAABBgB1DR4AC7YCCAcBAWtWACs0AP//AHb+BAOSBI0GJgH6AAABBwHUARL+oAAOtAIRBgEBuP+VsFYAKzT//wB2AAADkgSQBiYB+gAAAAcB1AGSA5D//wB2AAADkgSNBiYB+gAAAAcAogF1/UH//wB2AAAEZwYeBiYB+AAAAQcAdQGIAB4AC7YBCgYBAWtWACs0AP//AHb9/QRnBI0GJgH4AAAABwHUAXz+mf//AHYAAARnBh4GJgH4AAABBwCfAJ8AHgALtgEQBgEBdFYAKzQA//8ATv/wBG4FywYmAfcAAAEGAHBwIQALtgIuEQEBoFYAKzQA//8ATv/wBG4GBQYmAfcAAAEHAKEAowAeAAu2AjERAQFNVgArNAD//wBO//AEbgYdBiYB9wAAAQcApgD7AB4ADbcDAjARAQFRVgArNDQA//8AdQAABDsGHgYmAfQAAAEHAHUBGgAeAAu2Ah8AAQFrVgArNAD//wB1/gQEOwSNBiYB9AAAAAcB1AEb/qD//wB1AAAEOwYeBiYB9AAAAQYAnzAeAAu2AiUAAQF0VgArNAD//wA///AD8AYeBiYB8wAAAQcAdQFHAB4AC7YBOg8BAVtWACs0AP//AD//8APwBh4GJgHzAAABBgCeRx4AC7YBPw8BAWZWACs0AP//AD/+PwPwBJ0GJgHzAAAABwB5AVIAAP//AD//8APwBh4GJgHzAAABBgCfXR4AC7YBQA8BAWZWACs0AP//ACX+AwQZBI0GJgHyAAABBwHUASn+nwAOtAIRAgEBuP+QsFYAKzT//wAlAAAEGQYeBiYB8gAAAQYAn0oeAAu2Ag4HAQF0VgArNAD//wAl/kYEGQSNBiYB8gAAAAcAeQE8AAf//wBp//AEIAYSBiYB8QAAAQYApV0fAAu2ARsLAQF/VgArNAD//wBp//AEIAXLBiYB8QAAAQYAcFUhAAu2ARgLAQGwVgArNAD//wBp//AEIAYFBiYB8QAAAQcAoQCIAB4AC7YBGwsBAV1WACs0AP//AGn/8AQgBngGJgHxAAABBwCjAPAAUwANtwIBIQsBAVFWACs0NAD//wBp//AEOAYdBiYB8QAAAQcApgDgAB4ADbcCARoLAQFhVgArNDQAAAIAaf6EBCAEjQAVACsAGkAMHiUXFhYRBgtyDAB9AD8yKzIyETMvMzAxQTMRFAYGIyImJjURMxEUFhYzMjY2NQMXDgIVFBYzMjY3FwYGIyImNTQ2NgMu8nzWiYvXevA5aklJaDhTcy9JKiAnHywOFxlOPFh6LmgEjf0AhrleXrmGAwD9AE1jLi5jTf7dOh49RSgeJxEHiw8dZmI0ZV3//wAnAAAF5QYeBiYB7wAAAQcAngEaAB4AC7YEGwoBAXZWACs0AP//AAYAAAQ4Bh4GJgHtAAABBgCeMR4AC7YDEwkBAXZWACs0AP//AAYAAAQ4BesGJgHtAAABBgBqUh4ADbcEAxcJAQGEVgArNDQA//8AQQAAA/UGHgYmAewAAAEHAHUBNAAeAAu2Aw4NAQFrVgArNAD//wBBAAAD9QX7BiYB7AAAAQcAogEZACYAC7YDFw0BAYBWACs0AP//AEEAAAP1Bh4GJgHsAAABBgCfSx4AC7YDFA0BAXRWACs0AP//ABEAAAU/Bj8GJgAlAAABBgCurf8ADrQDDgMAALj/PrBWACs0////QgAABLEGQQQmAClkAAEHAK7+dQABAA60BBAHAAC4/z+wVgArNP///0sAAAV7BkAEJgAsZAAABwCu/n4AAP///04AAAIEBkIEJgAtZAABBwCu/oEAAgAOtAEEAwAAuP9BsFYAKzT///+1/+wFMQY/BCYAMxQAAQcArv7o//8ADrQCLBEAALj/KrBWACs0////QQAABT0GPwQmAD1kAAEHAK7+dP//AAu2AQoIAACOVgArNAD////CAAAE7wY/BCYAuhQAAQcArv71//8ADrQDNh0AALj/KrBWACs0////hf/0As4GmwYmAMMAAAEHAK//F//rABBACQMCASsAAQGiVgArNDQ0//8AEQAABT8FsAYGACUAAP//AJQAAASlBbAGBgAmAAD//wCUAAAETQWwBgYAKQAA//8AUAAABI4FsAYGAD4AAP//AJQAAAUXBbAGBgAsAAD//wClAAABoAWwBgYALQAA//8AlAAABRYFsAYGAC8AAP//AJQAAAZqBbAGBgAxAAD//wCUAAAFFwWwBgYAMgAA//8AZf/sBR0FxAYGADMAAP//AJQAAATPBbAGBgA0AAD//wAtAAAEtAWwBgYAOAAA//8ACAAABNkFsAYGAD0AAP//ACYAAATpBbAGBgA8AAD///++AAAChwcLBiYALQAAAQcAav9bAT4ADbcCARkDAQGDVgArNDQA//8ACAAABNkHAwYmAD0AAAEHAGoArQE2AA23AgEeAgEBd1YAKzQ0AP//AFb/6wR7BjwGJgC7AAABBwCuAUn//AALtgNCBgEBmlYAKzQA//8AYv/sBBIGOwYmAL8AAAEHAK4BFf/7AAu2AkArAQGaVgArNAD//wB9/mEEBgY8BiYAwQAAAQcArgEd//wAC7YCHQMBAa5WACs0AP//AKP/9AJeBiYGJgDDAAABBgCuAeYAC7YBEgABAZlWACs0AP//AH//6wQEBqMGJgDLAAABBgCvHPMAEEAJAwIBOA8BAaJWACs0NDT//wCNAAAEbQQ6BgYAjgAA//8ATv/sBDwETgYGAFMAAP//AJP+YAQkBDoGBgB2AAD//wAWAAAD3wQ6BgYAWgAA//8ANP5NBFsESgYGAooAAP///8P/9AKMBbgGJgDDAAABBwBq/2D/6wANtwIBJwABAaJWACs0NAD//wB//+sEBAXABiYAywAAAQYAamXzAA23AgE0DwEBolYAKzQ0AP//AE7/7AQ8BjwGJgBTAAABBwCuARv//AALtgIsBgEBmlYAKzQA//8Af//rBAQGLgYmAMsAAAEHAK4BBv/uAAu2AR8PAQGZVgArNAD//wBl/+sGMAYsBiYAzgAAAQcArgIn/+wAC7YCQB8BAZZWACs0AP//AJQAAARNBwsGJgApAAABBwBqAK4BPgANtwUEJQcBAYNWACs0NAD//wCZAAAENwc+BiYAsQAAAQcAdQGEAT4AC7YBBgUBAWxWACs0AAABAEv/7ASOBcQAOQAbQA0KJg82MSsJchgUDwNyACvMMyvMMxI5OTAxQTQuAicuAzU0PgIzMhYWFSM0JiYjIgYGFRQeAhceAxUUDgIjIi4CNTMUHgIzMjY2A5IbRHtfaK+CSEuLvnOi63/5PXteWXY6Jk52UHm0eDxKib91acumYvsxWHVDWHc8AXctRjo3HSBPaYlaWZJrO3jKekhvQDZcOilDOTIXJFdui1hck2c3OHOtdEdkPx4yWv//AKUAAAGgBbAGBgAtAAD///++AAAChwcLBiYALQAAAQcAav9bAT4ADbcCARkDAQGDVgArNDQA//8AL//sA+UFsAYGAC4AAP//AJkAAAUsBbAGBgJGAAD//wCUAAAFFgczBiYALwAAAQcAdQFxATMAC7YDDgMBAVtWACs0AP//ADL/6wThByUGJgDeAAABBwChANkBPgALtgIeAQEBXlYAKzQA//8AEQAABT8FsAYGACUAAP//AJQAAASlBbAGBgAmAAD//wCZAAAENwWwBgYAsQAA//8AlAAABE0FsAYGACkAAP//AJIAAAUNByUGJgDcAAABBwChARkBPgALtgEPAQEBXlYAKzQA//8AlAAABmoFsAYGADEAAP//AJQAAAUXBbAGBgAsAAD//wBl/+wFHQXEBgYAMwAA//8AmQAABRQFsAYGALYAAP//AJQAAATPBbAGBgA0AAD//wBm/+wE6wXEBgYAJwAA//8ALQAABLQFsAYGADgAAP//ACYAAATpBbAGBgA8AAD//wBW/+wD+QROBgYARQAA//8AUf/sBAoETgYGAEkAAP//AIQAAAQPBdoGJgDwAAABBwChAJL/8wALtgEPAQEBfVYAKzQA//8ATv/sBDwETgYGAFMAAP//AH3+YAQvBE4GBgBUAAAAAQBO/+wD8QROACcAE0AJAAkdFAdyCQtyACsrMhEzMDFlMjY2NzMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CAjY7XzsD4wJ4xnh8uHo9PXq4e4LEcQLjAzVfQklgNhcWN2CsL1Q3aaxlVZbEcCNwxZZVZ7d5PGE6O2V9QyNDfmM7AP//AAz+SwPeBDoGBgBdAAD//wAfAAAD6gQ6BgYAXAAA//8AUf/sBAoFzQYmAEkAAAEGAGpjAAANtwIBQQsBAaNWACs0NAD//wCDAAADTAXzBiYA7AAAAQcAdQDE//MAC7YBBgUBAYtWACs0AP//AEn/7APHBE4GBgBXAAD//wB8AAABkAXWBgYATQAA////qAAAAnEFxAYmAI0AAAEHAGr/Rf/3AA23AgEZAwEBtVYAKzQ0AP///6v+SwGHBdYGBgBOAAD//wCPAAAEZQXyBiYA8QAAAQcAdQFL//IAC7YDDgMBAYpWACs0AP//AAz+SwPeBecGJgBdAAABBgChSQAAC7YCHgEBAZJWACs0AP//AC8AAAbmBzcGJgA7AAABBwBEAgIBNwALtgQYFQEBYVYAKzQA//8AIwAABcgGAAYmAFsAAAEHAEQBZQAAAAu2BBgVAQGgVgArNAD//wAvAAAG5gc3BiYAOwAAAQcAdQKpATcAC7YEFgEBAWFWACs0AP//ACMAAAXIBgAGJgBbAAABBwB1AgwAAAALtgQWAQEBoFYAKzQA//8ALwAABuYHBAYmADsAAAEHAGoBygE3AA23BQQrFQEBeFYAKzQ0AP//ACMAAAXIBc0GJgBbAAABBwBqAS0AAAANtwUEKxUBAbdWACs0NAD//wAIAAAE2Qc2BiYAPQAAAQcARADlATYAC7YBCwIBAWBWACs0AP//AAz+SwPeBgAGJgBdAAABBgBEdQAAC7YCGwEBAaBWACs0AP//AFID/gEJBgAGBgALAAD//wBgA/gCOgYABgYABgAA//8AjP/yA74FsAQmAAUAAAAHAAUCHgAA////qv5LAnEF3gYmAJwAAAEHAJ//PP/eAAu2ARgAAQGAVgArNAD//wA3BAUBYQYABgYBhQAA//8AlAAABmoHNwYmADEAAAEHAHUCkwE3AAu2AxEAAQFhVgArNAD//wB8AAAGfAYABiYAUQAAAQcAdQKkAAAAC7YDMwMBAaBWACs0AP//ABH+cgU/BbAGJgAlAAABBwCnAXQABAAQtQQDEQUBAbj/tbBWACs0NP//AFb+dwP5BE4GJgBFAAABBwCnAKcACQAQtQMCPjEBAbj/ybBWACs0NP//AJQAAARNBz4GJgApAAABBwBEAOUBPgALtgQSBwEBbFYAKzQA//8AkgAABQ0HPgYmANwAAAEHAEQBRAE+AAu2AQwBAQFsVgArNAD//wBR/+wECgYABiYASQAAAQcARACbAAAAC7YBLgsBAYxWACs0AP//AIQAAAQPBfMGJgDwAAABBwBEAL3/8wALtgEMAQEBi1YAKzQA//8ARgAABWQFsAYGALkAAP//AFL+JQV/BDoGBgDNAAD//wAQAAAE9Qb9BiYBGQAAAQcArAROAQ8ADbcDAhUTAQEtVgArNDQA////8gAABBoF0AYmARoAAAEHAKwD6v/iAA23AwIZFwEBe1YAKzQ0AP//AE7+SwhoBE4EJgBTAAAABwBdBIoAAP//AGX+SwlhBcQEJgAzAAAABwBdBYMAAP//AEn+NwSCBcQGJgDbAAABBwJrAZD/nQALtgJCKgAAZFYAKzQA//8ATv44A8cETQYmAO8AAAEHAmsBNP+eAAu2Aj8pAABlVgArNAD//wBm/joE6wXEBiYAJwAAAQcCawHR/6AAC7YBKwUAAGRWACs0AP//AE7+OgPxBE4GJgBHAAABBwJrAUj/oAALtgErCQAAZFYAKzQA//8ACAAABNkFsAYGAD0AAP//AB7+XwP1BDoGBgC9AAD//wClAAABoAWwBgYALQAA//8AFQAAB6IHJQYmANoAAAEHAKECHgE+AAu2BR0NAQFeVgArNAD//wAgAAAGawXaBiYA7gAAAQcAoQGO//MAC7YFHQ0BAX1WACs0AP//AKUAAAGgBbAGBgAtAAD//wARAAAFPwceBiYAJQAAAQcAoQDwATcAC7YDEwcBAVNWACs0AP//AFb/7AP5BecGJgBFAAABBgChewAAC7YCQA8BAX5WACs0AP//ABEAAAU/BwQGJgAlAAABBwBqAOQBNwANtwQDIwcBAXhWACs0NAD//wBW/+wD+QXNBiYARQAAAQYAam8AAA23AwJQDwEBo1YAKzQ0AP////wAAAdOBbAGBgCBAAD//wBI/+sGhgRPBgYAhgAA//8AlAAABE0HJQYmACkAAAEHAKEAugE+AAu2BBUHAQFeVgArNAD//wBR/+wECgXnBiYASQAAAQYAoXAAAAu2ATELAQF+VgArNAD//wBV/+sFIwbcBiYBWAAAAQcAagDCAQ8ADbcCAUIAAQFBVgArNDQA//8AV//sA/YEUAYGAJ0AAP//AFf/7AP2Bc4GJgCdAAABBgBqYgEADbcCAUAAAQGiVgArNDQA//8AFQAAB6IHCwYmANoAAAEHAGoCEQE+AA23BgUtDQEBg1YAKzQ0AP//ACAAAAZrBcAGJgDuAAABBwBqAYH/8wANtwYFLQ0BAaJWACs0NAD//wBJ/+wEggcYBiYA2wAAAQcAagCfAUsADbcDAlQVAQGEVgArNDQA//8ATv/sA8cFzAYmAO8AAAEGAGpI/wANtwMCURQBAaNWACs0NAD//wCSAAAFDQbqBiYA3AAAAQcAcADmAUAAC7YBDAgBAbFWACs0AP//AIQAAAQPBaAGJgDwAAABBgBwXvYAC7YBDAgBAdBWACs0AP//AJIAAAUNBwsGJgDcAAABBwBqAQwBPgANtwIBHwEBAYNWACs0NAD//wCEAAAEDwXABiYA8AAAAQcAagCF//MADbcCAR8BAQGiVgArNDQA//8AZf/sBR0HBQYmADMAAAEHAGoA/AE4AA23AwJBEQEBZlYAKzQ0AP//AE7/7AQ8Bc0GJgBTAAABBgBqeQAADbcDAkEGAQGjVgArNDQA//8AYP/sBRkFxAYGARcAAP//AE3/7AQ7BE4GBgEYAAD//wBg/+wFGQcHBiYBFwAAAQcAagEMAToADbcEA08AAQFqVgArNDQA//8ATf/sBDsFzgYmARgAAAEGAGptAQANtwQDQQABAaVWACs0NAD//wBj/+wE6AcZBiYA5wAAAQcAagDZAUwADbcDAkIeAQGFVgArNDQA//8AUP/rA+gFzQYmAP8AAAEGAGpQAAANtwMCQQkBAaNWACs0NAD//wAy/+sE4QbqBiYA3gAAAQcAcACmAUAAC7YCGxgBAbFWACs0AP//AAz+SwPeBa0GJgBdAAABBgBwFgMAC7YCGxgBAeVWACs0AP//ADL/6wThBwsGJgDeAAABBwBqAM0BPgANtwMCLgEBAYNWACs0NAD//wAM/ksD3gXNBiYAXQAAAQYAaj0AAA23AwIuAQEBt1YAKzQ0AP//ADL/6wThBz0GJgDeAAABBwCmATEBPgANtwMCGQEBAWJWACs0NAD//wAM/ksD+QX/BiYAXQAAAQcApgChAAAADbcDAhkBAQGWVgArNDQA//8AkQAABO0HCwYmAOEAAAEHAGoBDgE+AA23AwIvFgEBg1YAKzQ0AP//AGAAAAPhBcAGJgD5AAABBgBqYvMADbcDAi0DAQGiVgArNDQA//8AmQAABlQHCwYmAOUAAAEHAGoBugE+AA23AwIyHAEBg1YAKzQ0AP//AI8AAAXPBcAGJgD9AAABBwBqAXT/8wANtwMCMhwBAaJWACs0NAD//wBQ/+wEAgYABgYASAAA//8AEf6aBT8FsAYmACUAAAEHAK0FCgADAA60AxEFAQG4/3WwVgArNP//AFb+nwP5BE4GJgBFAAABBwCtBD0ACAAOtAI+MQEBuP+JsFYAKzT//wARAAAFPwe6BiYAJQAAAQcAqwUDAT0AC7YDDwcBAXFWACs0AP//AFb/7AP5BoQGJgBFAAABBwCrBI0ABwALtgI8DwEBnFYAKzQA//8AEQAABT8HqwYmACUAAAEHAlEAwgEhAA23BAMSBwEBYVYAKzQ0AP//AFb/7ATIBnQGJgBFAAABBgJRTeoADbcDAkEPAQGMVgArNDQA//8AEQAABT8HqQYmACUAAAEHAlIAwwEqAA23BAMQBwEBXFYAKzQ0AP///5//7AP5BnIGJgBFAAABBgJSTvMADbcDAj0PAQGHVgArNDQA//8AEQAABT8H3QYmACUAAAEHAlMAwgEVAA23BAMTAwEBUFYAKzQ0AP//AFb/7ARTBqYGJgBFAAABBgJTTd4ADbcDAkAPAQF7VgArNDQA//8AEQAABT8H1AYmACUAAAEHAlQAxAEHAA23BAMQBwEBOlYAKzQ0AP//AFb/7AP5Bp0GJgBFAAABBgJUT9AADbcDAj0PAQFlVgArNDQA//8AEf6aBT8HNwYmACUAAAAnAJ4AwgE3AQcArQUKAAMAF7QEGgUBAbj/dbdWAxEHAQFsVgArNCs0AP//AFb+nwP5BgAGJgBFAAAAJgCeTQABBwCtBD0ACAAXtANHMQEBuP+Jt1YCPg8BAZdWACs0KzQA//8AEQAABT8HrgYmACUAAAEHAlYA6gEyAA23BAMTBwEBXFYAKzQ0AP//AFb/7AP5BngGJgBFAAABBgJWdfwADbcDAkAPAQGHVgArNDQA//8AEQAABT8HrgYmACUAAAEHAk8A6gEyAA23BAMTBwEBXFYAKzQ0AP//AFb/7AP5BngGJgBFAAABBgJPdfwADbcDAkAPAQGHVgArNDQA//8AEQAABT8IPQYmACUAAAEHAlcA6AE2AA23BAMTBwEBblYAKzQ0AP//AFb/7AP5BwYGJgBFAAABBgJXc/8ADbcDAkAPAQGZVgArNDQA//8AEQAABT8IFgYmACUAAAEHAmoA6wE8AA23BAMTBwEBb1YAKzQ0AP//AFb/7AP5Bt8GJgBFAAABBgJqdgUADbcDAkAPAQGaVgArNDQA//8AEf6aBT8HHgYmACUAAAAnAKEA8AE3AQcArQUKAAMAF7QEIAUBAbj/dbdWAxMHAQFTVgArNCs0AP//AFb+nwP5BecGJgBFAAAAJgChewABBwCtBD0ACAAXtANNMQEBuP+Jt1YCQA8BAX5WACs0KzQA//8AlP6hBE0FsAYmACkAAAEHAK0EywAKAA60BBMCAQG4/3+wVgArNP//AFH+lwQKBE4GJgBJAAABBwCtBI4AAAAOtAEvAAEBuP+JsFYAKzT//wCUAAAETQfBBiYAKQAAAQcAqwTNAUQAC7YEEQcBAXxWACs0AP//AFH/7AQKBoQGJgBJAAABBwCrBIIABwALtgEtCwEBnFYAKzQA//8AlAAABE0HMQYmACkAAAEHAKUAjwE+AAu2BB4HAQF2VgArNAD//wBR/+wECgX0BiYASQAAAQYApUUBAAu2AToLAQGWVgArNAD//wCUAAAFBweyBiYAKQAAAQcCUQCMASgADbcFBBQHAQFsVgArNDQA//8AUf/sBL0GdQYmAEkAAAEGAlFC6wANtwIBMAsBAYxWACs0NAD////eAAAETQewBiYAKQAAAQcCUgCNATEADbcFBBIHAQFnVgArNDQA////lP/sBAoGcwYmAEkAAAEGAlJD9AANtwIBLgsBAYdWACs0NAD//wCUAAAEkgfkBiYAKQAAAQcCUwCMARwADbcFBBUHAQFbVgArNDQA//8AUf/sBEgGpwYmAEkAAAEGAlNC3wANtwIBMQsBAXtWACs0NAD//wCUAAAETQfbBiYAKQAAAQcCVACOAQ4ADbcFBBIHAQFFVgArNDQA//8AUf/sBAoGngYmAEkAAAEGAlRD0QANtwIBLgsBAWVWACs0NAD//wCU/qEETQc+BiYAKQAAACcAngCNAT4BBwCtBMsACgAXtAUcAgEBuP9/t1YEEwcBAXdWACs0KzQA//8AUf6XBAoGAAYmAEkAAAAmAJ5CAAEHAK0EjgAAABe0AjgAAQG4/4m3VgEvCwEBl1YAKzQrNAD//wClAAACFQfBBiYALQAAAQcAqwN6AUQAC7YBBQMBAXxWACs0AP//AJAAAAH/BnsGJgCNAAABBwCrA2T//gALtgEFAwEBrlYAKzQA//8Alv6dAakFsAYmAC0AAAEHAK0DeAAGAA60AQcCAQG4/36wVgArNP//AHj+oQGQBdYGJgBNAAABBwCtA1oACgAOtAITAgEBuP9/sFYAKzT//wBl/pcFHQXEBiYAMwAAAQcArQUbAAAADrQCLwYBAbj/ibBWACs0//8ATv6TBDwETgYmAFMAAAEHAK0Emv/8AA60Ai8RAQG4/4iwVgArNP//AGX/7AUdB7wGJgAzAAABBwCrBRsBPwALtgItEQEBX1YAKzQA//8ATv/sBDwGhAYmAFMAAAEHAKsEmAAHAAu2Ai0GAQGcVgArNAD//wBl/+wFVQesBiYAMwAAAQcCUQDaASIADbcDAjARAQFPVgArNDQA//8ATv/sBNIGdAYmAFMAAAEGAlFX6gANtwMCMAYBAYxWACs0NAD//wAs/+wFHQeqBiYAMwAAAQcCUgDbASsADbcDAi4RAQFKVgArNDQA////qv/sBDwGcgYmAFMAAAEGAlJZ8wANtwMCLgYBAYdWACs0NAD//wBl/+wFHQfeBiYAMwAAAQcCUwDaARYADbcDAjERAQE+VgArNDQA//8ATv/sBF4GpgYmAFMAAAEGAlNY3gANtwMCMQYBAXtWACs0NAD//wBl/+wFHQfVBiYAMwAAAQcCVADcAQgADbcDAi4RAQEoVgArNDQA//8ATv/sBDwGnQYmAFMAAAEGAlRZ0AANtwMCLgYBAWVWACs0NAD//wBl/pcFHQc4BiYAMwAAACcAngDaATgBBwCtBRsAAAAXtAM4BgEBuP+Jt1YCLxEBAVpWACs0KzQA//8ATv6TBDwGAAYmAFMAAAAmAJ5YAAEHAK0Emv/8ABe0AzgRAQG4/4i3VgIvBgEBl1YAKzQrNAD//wBb/+wFrwc1BiYAmAAAAQcAdQHZATUAC7YDOhwBAUdWACs0AP//AE3/7AS3BgAGJgCZAAABBwB1AVsAAAALtgM2EAEBjFYAKzQA//8AW//sBa8HNQYmAJgAAAEHAEQBMgE1AAu2AzwcAQFHVgArNAD//wBN/+wEtwYABiYAmQAAAQcARAC1AAAAC7YDOBABAYxWACs0AP//AFv/7AWvB7kGJgCYAAABBwCrBRoBPAALtgM7HAEBV1YAKzQA//8ATf/sBLcGhAYmAJkAAAEHAKsEnAAHAAu2AzcQAQGcVgArNAD//wBb/+wFrwcpBiYAmAAAAQcApQDcATYAC7YDSBwBAVFWACs0AP//AE3/7AS3BfQGJgCZAAABBgClXwEAC7YDRBABAZZWACs0AP//AFv+lwWvBisGJgCYAAABBwCtBQUAAAAOtAM9EAEBuP+JsFYAKzT//wBN/o0EtwSoBiYAmQAAAQcArQSZ//YADrQDORsBAbj/f7BWACs0//8AgP6XBL8FsAYmADkAAAEHAK0E8wAAAA60ARkGAQG4/4mwVgArNP//AHf+lwP5BDoGJgBZAAABBwCtBD4AAAAOtAIfCwEBuP+JsFYAKzT//wCA/+wEvwe6BiYAOQAAAQcAqwT2AT0AC7YBFwABAXFWACs0AP//AHf/7AP5BoQGJgBZAAABBwCrBJMABwALtgIdEQEBsFYAKzQA//8AgP/sBjoHQgYmAJoAAAEHAHUB2gFCAAu2AiAKAQFsVgArNAD//wB3/+wFJAXrBiYAmwAAAQcAdQFa/+sAC7YDJhsBAYtWACs0AP//AID/7AY6B0IGJgCaAAABBwBEATMBQgALtgIiCgEBbFYAKzQA//8Ad//sBSQF6wYmAJsAAAEHAEQAs//rAAu2AygbAQGLVgArNAD//wCA/+wGOgfGBiYAmgAAAQcAqwUaAUkAC7YCIQoBAXxWACs0AP//AHf/7AUkBm8GJgCbAAABBwCrBJr/8gALtgMnGwEBm1YAKzQA//8AgP/sBjoHNgYmAJoAAAEHAKUA3QFDAAu2Ai4VAQF2VgArNAD//wB3/+wFJAXfBiYAmwAAAQYApV3sAAu2AzQbAQGVVgArNAD//wCA/o4GOgYCBiYAmgAAAQcArQUW//cADrQCIxABAbj/gLBWACs0//8Ad/6XBSQElQYmAJsAAAEHAK0EjgAAAA60AykVAQG4/4mwVgArNP//AAj+qQTZBbAGJgA9AAABBwCtBMYAEgAOtAEMBgEBuP92sFYAKzT//wAM/hED3gQ6BiYAXQAAAQcArQVN/3oADrQCIggAALj/ubBWACs0//8ACAAABNkHugYmAD0AAAEHAKsEzAE9AAu2AQoCAQFwVgArNAD//wAM/ksD3gaEBiYAXQAAAQcAqwRcAAcAC7YCGgEBAbBWACs0AP//AAgAAATZByoGJgA9AAABBwClAI8BNwALtgEXCAEBalYAKzQA//8ADP5LA94F9AYmAF0AAAEGAKUfAQALtgInGAEBqlYAKzQA//8AUP6wBK0GAAQmAEgAAAAnAkABgAI/AQcAQwCZ/2wAF7QENxYBAbj/d7dWAzILAQGDVgArNCs0AP//AC3+mgS0BbAGJgA4AAABBwJrAkYAAAALtgILAgAAmlYAKzQA//8AI/6aA9UEOgYmAPYAAAEHAmsB3wAAAAu2AgsCAACaVgArNAD//wCR/poE7QWwBiYA4QAAAQcCawLOAAAAC7YCHRkBAJpWACs0AP//AGD+mgPhBDsGJgD5AAABBwJrAccAAAALtgIbAgEAmlYAKzQA//8Amf6aBDcFsAYmALEAAAEHAmsA/AAAAAu2AQkEAACaVgArNAD//wCD/poDTAQ6BiYA7AAAAQcCawDhAAAAC7YBCQQAAJpWACs0AP//AAr+PQW0BcQGJgFMAAABBwJrAt//owALtgI6CgAAa1YAKzQA////y/5EBJAETgYmAU0AAAEHAmsB7/+qAAu2AjkJAABrVgArNAD//wB6AAAD+gYABgYATAAAAAL/1wAABLoFsAAYABwAGkAMHBsYAAALDAJyDgsIAD8zKxI5LzPMMjAxQSEyFhYVFA4CIyERMxEhMjY2NTQmJiMhARUhNQE+AW6m7HxGiMN9/eT8ASBfejs7el/+kgE4/WEDgW/IhWSmeUIFsPsXR3RFQ25CAjWnpwAAAv/XAAAEugWwABgAHAAZQAscGxgAAAsMAg4LCAA/Mz8SOS8zzDIwMUEhMhYWFRQOAiMhETMRITI2NjU0JiYjIQEVITUBPgFupux8RojDff3k/AEgX3o7O3pf/pIBOP1hA4FvyIVkpnlCBbD7F0d0RUNuQgI1p6cAAv/0AAAENwWwAAUACQAWQAoGBwcEAgUCcgQIAD8rMhI5LzMwMUEVIREjEQEVITUEN/1c+gH6/WEFsMj7GAWw/ZempgAC/98AAANMBDoABQAJABZACgkICAQCBQZyBAoAPysyEjkvMzAxQRUhESMRARUhNQNM/ijxAfv9YQQ6wPyGBDr+P6enAAT/8wAABUAFsAADAAkADQARACtAFQwLCwcHBhARBhEGEQIJAwJyCgIIcgArMisyETk5Ly8RMxEzEjkRMzAxQREjESEBISczARMBNwEBFSE1Aaf6BGb9sP6dIvoBqDP+KaICYv1S/WEFsPpQBbD8wtoCZPpQApjB/KcE56enAAT/yQAABEcGAAADAAkADQARAC1AFwQGcgwLCwcHBhARBhEGEQIDAHIKAgpyACsyKxE5OS8vETMRMxI5ETMrMDFBESMRAQEhJzMBEwE3AQEVITUBhfADh/5G/txF8QEYLf6unQHN/iH9YQYA+gAGAP46/aG/AaD7xgH6qv1cBWOmpgACAAgAAATZBbAACAAMAB1ADwwBBAcDCwsGAwgCcgYIcgArKzIROS8XOTMwMUEBASEBESMRAQEVITUBHwFSAVIBFv4W/f4WA7/9YAWw/UkCt/xo/egCGAOY/PynpwAABAAe/l8D9QQ6AAMACAANABEAF0ALERAQAgUNBnICDnIAKysyEjkvMzAxZREjETcTMwEjAwEXIwEBFSE1AoHxb/v7/oGivAEEJKL+gANB/WFt/fICDpUDOPvGBDr8xP4EOvxspqYAAgAmAAAE6QWwAAsADwAfQA8PBwUBBAoDDg4JBQMAAnIAKzIvMzkvFzkSOTMwMUEBASEBASEBASEJAhUhNQFTATUBNQEh/kgBw/7c/sP+w/7bAcT+RwOq/WAFsP3tAhP9L/0hAh394wLfAtH9jaenAAIAHwAAA+oEOgALAA8AH0APDwcFAQoEAw4OCQUDAAZyACsyLzM5Lxc5EjkzMDFBExMhAQEhAwMhCQIVITUBNM7SAQn+uAFV/vfc3P72AVT+uQMt/WEEOv6ZAWf97f3ZAXb+igInAhP+Raam//8AYv/sBBIETQYGAL8AAP//AAEAAAQ0BbAGJgAqAAABBwJA/3T+ZQAOtAMOAgIAuAEIsFYAKzT//wB7AnAFzAMxBgYBggAA//8AUgAABD4FxAYGABYAAP//AE7/7AQaBcQGBgAXAAD//wA3AAAEWQWwBgYAGAAA//8Af//sBDkFsAYGABkAAP//AIf/7ARNBbkEBgAaFAD//wB7/+wEOgXEBAYAHBQA//8AXf/3BBUFxAQGAB0AAP//AHz/7AQ3BcQEBgAUFAD//wBr/+wE8gdLBiYAKwAAAQcAdQHGAUsAC7YBLBABAW1WACs0AP//AFL+VQQMBgAGJgBLAAABBwB1AUMAAAALtgM/GgEBjFYAKzQA//8AlAAABRcHNwYmADIAAAEHAEQBRwE3AAu2AQwJAQFhVgArNAD//wB6AAAD+gYABiYAUgAAAQcARACwAAAAC7YCHgMBAaBWACs0AP//ABEAAAU/ByEGJgAlAAABBwCsBHsBMwANtwQDDgMBAWZWACs0NAD//wAO/+wD+QXrBiYARQAAAQcArAQG//0ADbcDAjwPAQGRVgArNDQA//8ATgAABE0HKAYmACkAAAEHAKwERgE6AA23BQQRBwEBcVYAKzQ0AP//AAP/7AQKBesGJgBJAAABBwCsA/v//QANtwIBLQsBAZFWACs0NAD///77AAACIwcoBiYALQAAAQcArALzAToADbcCAQUDAQFxVgArNDQA///+5AAAAgwF4gYmAI0AAAEHAKwC3P/0AA23AgEFAwEBo1YAKzQ0AP//AGX/7AUdByMGJgAzAAABBwCsBJMBNQANtwMCLREBAVRWACs0NAD//wAZ/+wEPAXrBiYAUwAAAQcArAQR//0ADbcDAi0GAQGRVgArNDQA//8ANQAABN8HIQYmADYAAAEHAKwELQEzAA23AwIfAAEBZlYAKzQ0AP///3MAAAK5BesGJgBWAAABBwCsA2v//QANtwMCGAMBAaVWACs0NAD//wB3/+wEvwchBiYAOQAAAQcArARvATMADbcCARcLAQFmVgArNDQA//8AFP/sA/kF6wYmAFkAAAEHAKwEDP/9AA23AwIdEQEBpVYAKzQ0AP///wwAAAUPBj8EJgDQZAAABwCu/j//////AJT+oQSlBbAGJgAmAAABBwCtBLMACgAOtAI0GwEBuP9/sFYAKzT//wB9/o0EMAYABiYARgAAAQcArQTO//YADrQDMwQBAbj/a7BWACs0//8AlP6hBNIFsAYmACgAAAEHAK0EigAKAA60AiIdAQG4/3+wVgArNP//AFD+lwQCBgAGJgBIAAABBwCtBK8AAAAOtAMzFgEBuP+JsFYAKzT//wCU/gYE0gWwBiYAKAAAAQcB1AFC/qIADrQCKB0BAbj/l7BWACs0//8AUP38BAIGAAYmAEgAAAEHAdQBZv6YAA60AzkWAQG4/6GwVgArNP//AJT+oQUXBbAGJgAsAAABBwCtBSYACgAOtAMPCgEBuP9/sFYAKzT//wB6/qED+gYABiYATAAAAQcArQSfAAoADrQCHgIBAbj/f7BWACs0//8AlAAABRYHMwYmAC8AAAEHAHUBcQEzAAu2Aw4DAQFbVgArNAD//wB9AAAENwc9BiYATwAAAQcAdQF3AT0AC7YDDgMBABtWACs0AP//AJT+4wUWBbAGJgAvAAABBwCtBOUATAAOtAMRAgEBuP/PsFYAKzT//wB9/s8ENwYABiYATwAAAQcArQR6ADgADrQDEQIBAbj/vLBWACs0//8AlP6hBCQFsAYmADAAAAEHAK0EtwAKAA60AgsCAQG4/3+wVgArNP//AHj+oQGLBgAGJgBQAAABBwCtA1oACgAOtAEHAgEBuP9/sFYAKzT//wCU/qEGagWwBiYAMQAAAQcArQXUAAoADrQDFAYBAbj/f7BWACs0//8AfP6hBnwETgYmAFEAAAEHAK0F2gAKAA60AzYCAQG4/3+wVgArNP//AJT+nQUXBbAGJgAyAAABBwCtBSgABgAOtAENAgEBuP9/sFYAKzT//wB6/qED+gROBiYAUgAAAQcArQSPAAoADrQCHwIBAbj/f7BWACs0//8AZf/sBR0H3gYmADMAAAEHAlAFAAFVAA23AwIxEQEBWlYAKzQ0AP//AJQAAATPB0IGJgA0AAABBwB1AXIBQgALtgEYDwEBbFYAKzQA//8Aff5gBC8F9gYmAFQAAAEHAHUBoP/2AAu2AzADAQGWVgArNAD//wCU/qEE3wWwBiYANgAAAQcArQS5AAoADrQCIRgBAbj/f7BWACs0//8Acf6iArkETgYmAFYAAAEHAK0DUwALAA60AhoCAQG4/4CwVgArNP//AEv+lgSOBcQGJgA3AAABBwCtBNb//wAOtAE9KwEBuP+IsFYAKzT//wBJ/o0DxwROBiYAVwAAAQcArQR0//YADrQBOSkBAbj/f7BWACs0//8ALf6bBLQFsAYmADgAAAEHAK0ExAAEAA60AgsCAQG4/3WwVgArNP//AAr+lwJ1BUMGJgBYAAABBwCtBA8AAAAOtAIZEQEBuP+JsFYAKzT//wCA/+wEvwfcBiYAOQAAAQcCUATbAVMADbcCARsAAQFsVgArNDQA//8AEQAABRsHNgYmADoAAAEHAKUAsgFDAAu2AhgJAQF2VgArNAD//wAWAAAD3wXqBiYAWgAAAQYApR33AAu2AhgJAQGgVgArNAD//wAR/qEFGwWwBiYAOgAAAQcArQTsAAoADrQCDQQBAbj/f7BWACs0//8AFv6hA98EOgYmAFoAAAEHAK0EVgAKAA60Ag0EAQG4/3+wVgArNP//AC/+oQbmBbAGJgA7AAABBwCtBeMACgAOtAQZEwEBuP9/sFYAKzT//wAj/qEFyAQ6BiYAWwAAAQcArQVMAAoADrQEGRMBAbj/f7BWACs0//8AUP6hBI4FsAYmAD4AAAEHAK0ExAAKAA60AxECAQG4/3+wVgArNP//AFH+oQPBBDoGJgBeAAABBwCtBGQACgAOtAMRAgEBuP9/sFYAKzT///5s/+wFYwXWBCYAM0YAAQcBcf4I//8ADbcDAi4RAAASVgArNDQA//8ACAAABJEFHAYmAk0AAAAHAK7/X/7c////YwAAA/IFHwQmAkI8AAAHAK7+lv7f////awAABKMFGgQmAf48AAAHAK7+nv7a////bgAAAbQFHwQmAf08AAAHAK7+of7f////mf/wBHgFHAQmAfcKAAAHAK7+zP7c////IAAABHQFHAQmAe08AAAHAK7+U/7c////qwAABIsFHAQmAg0KAAAHAK7+3v7c//8ACAAABJEEjQYGAk0AAP//AHYAAAQMBI0GBgJMAAD//wB2AAADtgSNBgYCQgAA//8AQQAAA/UEjQYGAewAAP//AHYAAARnBI0GBgH+AAD//wCGAAABeASNBgYB/QAA//8AdgAABGcEjQYGAfsAAP//AHYAAAWPBI0GBgH5AAD//wB2AAAEZwSNBgYB+AAA//8ATv/wBG4EnQYGAfcAAP//AHYAAAQoBI0GBgH2AAD//wAlAAAEGQSNBgYB8gAA//8ABgAABDgEjQYGAe0AAP//ABMAAARJBI0GBgHuAAD///+cAAACZQXrBiYB/QAAAQcAav85AB4ADbcCAQ0DAQGEVgArNDQA//8ABgAABDgF6wYmAe0AAAEGAGpSHgANtwQDFwkBAYNWACs0NAD//wB2AAADtgXrBiYCQgAAAQYAalweAA23BQQZBwEBg1YAKzQ0AP//AHYAAAOZBh4GJgIEAAABBwB1ASMAHgALtgIIAwEBg1YAKzQA//8AP//wA/AEnQYGAfMAAP//AIYAAAF4BI0GBgH9AAD///+cAAACZQXrBiYB/QAAAQcAav85AB4ADbcCAQ0DAQGEVgArNDQA//8AJv/wA2UEjQYGAfwAAP//AHYAAARnBh4GJgH7AAABBwB1ARoAHgALtgMOAwEBhFYAKzQA//8AH//sBEEGBQYmAhsAAAEGAKF9HgALtgIdFwEBhFYAKzQA//8ACAAABJEEjQYGAk0AAP//AHYAAAQMBI0GBgJMAAD//wB2AAADmQSNBgYCBAAA//8AdgAAA7YEjQYGAkIAAP//AHYAAARtBgUGJgIYAAABBwChALYAHgALtgMRCAEBhFYAKzQA//8AdgAABY8EjQYGAfkAAP//AHYAAARnBI0GBgH+AAD//wBO//AEbgSdBgYB9wAA//8AdgAABGMEjQYGAgkAAP//AHYAAAQoBI0GBgH2AAD//wBP//AEQwSdBgYCSwAA//8AJQAABBkEjQYGAfIAAP//ABMAAARJBI0GBgHuAAAAAwBD/jcD6gSdAB4APgBCAChAEx8BAgI+PhU/NDRAMCoLcg8LFX4APzPMK8zNMxI5EjkvMxI5OTAxQSM1MzI2NjU0JiYjIgYGFSM0PgIzMh4CFRQOAiUzMh4CFRQOAiMiLgI1Mx4CMzI2NjU0LgIjIwERIxECObmRTV4qLWBPNVk38UN4n11pqXhCP3CX/u+5bKJtNkeCrmhRoYVR8QQ6YDtRaDIeO1g6jQEC8QIsfSdFLypFKh08Lk55VCwoT3dPQ3FTLUYtUm9BVH9VKyRQhF81QyAqSTAsQSoV/lL95wIZAAQAdv6aBSgEjQADAAcACwAPAB1ADQMCAgYLB30PDgoKBhIAPzMQzjM/MxI5LzMwMUEVITUTESMRIREjEQERIxEDt/1sRPED8fEBsvECncDAAfD7cwSN+3MEjfwm/ecCGQAAAgBP/kAEQwSdACcAKwAYQAsZEH4oJCQqKgULcgArMi8yETM/MzAxQTMOAiMiLgI1NTQ+AjMyFhYXIy4CIyIOAhUVFB4CMzI2NgcRIxEDUPIJediZd72FR0iIvXab1HYM8QY2bFhEZkUjH0JnR1VsOoTxAYR3tmdOkc+BToHPk01punhBYzgvXolaT1iJXjEvYOX95wIZAP//AAYAAAQ4BI0GBgHtAAD//wAO/jcFrASkBiYCMQAAAAcCawLm/53//wB2AAAEbQXLBiYCGAAAAQcAcACCACEAC7YDDggBAbBWACs0AP//AB//7ARBBcsGJgIbAAABBgBwSiEAC7YCGhcBAbBWACs0AP//AE8AAAVXBI0GBgILAAD//wCG//AFYwSNBCYB/QAAAAcB/AH+AAD////sAAAGBAYABiYCjgAAAQcAdQKBAAAAC7YGGQ8BAU1WACs0AP//AE7/xwRuBh4GJgKQAAABBwB1AXUAHgALtgMwEQEBW1YAKzQA//8AP/38A/AEnQYmAfMAAAAHAdQBP/6Y//8AJwAABeUGHgYmAe8AAAEHAEQBcwAeAAu2BBgKAQFrVgArNAD//wAnAAAF5QYeBiYB7wAAAQcAdQIZAB4AC7YEFgoBAWtWACs0AP//ACcAAAXlBesGJgHvAAABBwBqATsAHgANtwUEHwoBAYRWACs0NAD//wAGAAAEOAYeBiYB7QAAAAcARACKAB7//wAR/lcFPwWwBiYAJQAAAQcApAGAAAMAC7YDDgUBATlWACs0AP//AFb+XAP5BE4GJgBFAAABBwCkALQACAALtgI7MQAATVYAKzQA//8AlP5eBE0FsAYmACkAAAEHAKQBQgAKAAu2BBACAABDVgArNAD//wBR/lQECgROBiYASQAAAQcApAEFAAAAC7YBLAAAAE1WACs0AP//AAj+VASRBI0GJgJNAAAABwCkASIAAP//AHb+XAO2BI0GJgJCAAAABwCkAPEACP//AHj+oQGLBDoGJgCNAAABBwCtA1oACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAA4AeAADAAEECQADABoAXgADAAEECQAEABoAXgADAAEECQAFACYAhgADAAEECQAGABoArAADAAEECQAHAEAAxgADAAEECQAIAAwBBgADAAEECQAJACYBEgADAAEECQALABQBOAADAAEECQAMABQBOAADAAEECQANAFwBTAADAAEECQAOAFQBqAADAAEECQAQAAwB/AADAAEECQARAAwCCAADAAEECQAZAAwB/ABDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBSAGUAZwB1AGwAYQByAFYAZQByAHMAaQBvAG4AIAAzAC4AMAAwADgAOwAgADIAMAAyADMAUgBvAGIAbwB0AG8ALQBNAGUAZABpAHUAbQBSAG8AYgBvAHQAbwAgAGkAcwAgAGEAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEcAbwBvAGcAbABlAC4ARwBvAG8AZwBsAGUAQwBoAHIAaQBzAHQAaQBhAG4AIABSAG8AYgBlAHIAdABzAG8AbgBHAG8AbwBnAGwAZQAuAGMAbwBtAEwAaQBjAGUAbgBzAGUAZAAgAHUAbgBkAGUAcgAgAHQAaABlACAAQQBwAGEAYwBoAGUAIABMAGkAYwBlAG4AcwBlACwAIABWAGUAcgBzAGkAbwBuACAAMgAuADAAaAB0AHQAcAA6AC8ALwB3AHcAdwAuAGEAcABhAGMAaABlAC4AbwByAGcALwBsAGkAYwBlAG4AcwBlAHMALwBMAEkAQwBFAE4AUwBFAC0AMgAuADAAUgBvAGIAbwB0AG8ATQBlAGQAaQB1AG0AAAADAAAAAAAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAEriAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/68AAAAA/4gAAP8sAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLvAABAAAAIUeQh4I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AVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoAEQBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd/+gBH//oASH/6AE5/+ABQf/oAUX/4AFH/+EBSP/gAUn/4QFK/+ABTf/hAVAAEAFRABABWP/pAWL/3wFk/94BZgAQAWr/6AFs/98Bbv/yAW8AEAFwABAD0QAQA9j/6APb/+gD3P/gBAX/4AQI/+gEC//oBA3/3wQT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/+0EM//mBDT/4QQ3/+IEkv/SBJT/4QSX/+IEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR/+0AEj/tABJ/7QAS/+0AEwAFABPABQAUAAUAFP/egBV/7QAV/9kAFsACwCU/7QAmf+0Adv/ZAK8/7QCvf+0Ar7/tAK//7QCwP+0Asb/egLH/3oCyP96Asn/egLK/3oC2P+0Atr/tALc/7QC3v+0AuD/tALi/7QC5P+0Aub/tALo/7QC6v+0Auz/tALu/7QC8P+0AvL/tAMU/3oDFv96Axj/egMg/2QDIv9kAyT/ZAMm/2QDKP9kBFL/tARU/7QEVv+0BFj/tARa/7QEXP+0BF7/tARg/7QEZv96BGj/egRq/3oEbP96BG7/egRw/3oEcv96BHT/tAR2/7QEeP+0BHr/egR8/7QEt/+0BLv/egTE/7QExv+0BMgAFATKABQEzAAUBNn/ZAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8HABL/BwAl/04ALv8NADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/TgGG/wcBiv8HAY7/BwGP/wcCBf/AAk3/wAKa/04Cm/9OApz/TgKd/04Cnv9OAp//TgKg/04Ctf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/04C0v/eAtP/TgLU/94C1f9OAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD/DQMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/AA07/wANP/8ADUP/AA1H/wANS/8ADU//AA2j/wANp/8ADav/AA/X/6AP9/04D/v/eBDn/TgQ6/94EO/9OBDz/3gQ9/04EPv/eBD//TgRA/94EQf9OBEL/3gRD/04ERP/eBEX/TgRG/94ER/9OBEj/3gRJ/04ESv/e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AK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-MediumItalic.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAdfoAAACWEdQT1OYN0PaAAHaQAAAWPxHU1VCm18k/AACMzwAABX2T1MvMpfnsUwAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHX3AAAAAxnbHlmf16RegAAOswAAZnGaGVhZAi2pEQAAAEcAAAANmhoZWEM1xK6AAABVAAAACRobXR4lGicAwAAAfgAABSkbG9jYZy0/lYAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lSNF9SQAB1JQAAAMmcG9zdP9hAGQAAde8AAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDLkbSm1fDzz1ABkIAAAAAADE8BEuAAAAAODgRcT6Q/3VCXIIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJJvpD/l8JcggAAbMAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAAQAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA5YAZAAAAAAAAAAAAfgAAAH4AAACDgAzAnoAnQSuADIEaQBBBbYAtQT6ACkBTACRArAAaAK3/5QDcQBoBE8APAG8/48CowBAAigALgMH/34EaQBfBGkA8QRpAA0EaQAmBGkADQRpAFgEaQBdBGkAhgRpADcEaQCMAhYAKAHm/58D8wAzBF0AYAQIAC0DxgCTBvYALgUl/6ME5gAmBREAXwURACYEYwAmBEYAJgVJAGYFgQAmAjIANwRPAAQE5wAmBDEAJgbJACYFgQAmBVkAYgT0ACYFWQBeBOIAJgS0ACYEugCdBRQAWAUDAJoG1QC1BOb/wAS9AKEErv/lAhv/8AM8AKsCG/96A1QARAN5/3kCfADPBC8AHARdABAEDQA3BF8AOAQoADoCvgBeBGb/+QRQAA0B+gAgAfL/AgQMABEB+gAgBsMADwRSAA0EZwA4BF3/yARkADcCvgARA/8AGwKWAD8EUQBKA9oAZAXCAHkD6P+6A83/vAPo/+YClgAtAe0AIQKW/5gFJABcAg//5gRfAE0Ekf/3BXMABgQfAC4B6f/uBNP/4AN3ANcGGQBcA3UAvwPPAEYESQCABhoAXAO8AQQC+ADlBCkAGQLoAFcC6ABoAoEAxwSd/94DzAB+AjMAnwID/80C6ADkA4sAvgPOAAQFqADBBf0AtQY1AJYDx//UB0X/jQQhAB8FVwAWBKoAJwTFAB0GjgAOBIEARgRuAD4EYwAqBG7/zQTGADcFhQAsAgcAIwR3ACEEQwAfAkAAIAVsACMEYwARB3UAUAcHAD8B+AAcBWIASwK6/0QFZgBcBHoANAV3AFgEwABKAhX/BAQZADQDwAD+A44BCQPGAQQDZAD9AfoBAwKVAPoCOv+oA7EA3AMQAK4CYP/0AAD9VgAA/dwAAPz4AAD91QAA/LwAAPyhAlgBNgQbAO8CPQCfBFIAKwWW/6wFUABdBQ3/sgRp//4FggArBGn/3AXLAFQFhQB2BTAACgRhADsEpP/mA+0AdQRjADUEQwAoA/AAZgRjABEEggBuApAAZgRG/6cD+wBCBNYAYQRj/8sEEwA2BGsANwQKAGwEPABXBaQAMQWfAD8GYQBSBJAAUgRkAG4GRwBUBc8AlAUqAGEIQP/GCEoAKwYhAJ0FeQAiBOoAIwXP/4gHbv+kBLYAHwV6ACUFff/FBOQAmQYuAFUFygAhBVoAxAdgACgHvQAoBfIAhwbFACwE2wAkBSAASAczADMEwv+nBF0AQgRpACMDQQAWBMz/hQZV/7AD+AAXBG8AFwRKACIEcP+8BdQAIwRvABcEbwAXA9sAVAWnADkEqwAXBEMAbQZaABcGvAARBPkAUQZIACMERwAjBBkAIAZQACUETf+9BFAADQQZADkGof+4Bq8AFwRtAA0EbwAXByAAXwY5AEcERwAhBvEAKwXUABkE7/+sBEH/nQcTAD4GDgAtBrAAEgWwABUI5AA3B7EAIwQA/6kD1v+0BVAAYQRlADQE8QCoA+4AdQVQAGEEYwA1BxsAYwYlAEwHIABfBjkARwTpAFgEJgBEBNUAOwAA/PAAAP0QAAD+MQAA/j0AAPpDAAD6cwX7ACUE9gAXBEcAIQTpACYEY//IBEkAIwOHABEEzwArBAQAEQfv/6QGtf+wBacAKwTfACIFBgAkBIgAIQZhAKQFdABsBfsAJgTrABcHoAAmBYIAEQgTACoGugARBgcAXwTeAEsFG//ABCr/ugbxAJoFRQBXBc8AxATBAG0FRgC0BFIAggVbABwF7ABVBKD/8gT4ACQEVgAhBfr/xQT3/7wFgQArBGMAEQYFACYE9AAXB0YAJgZMACMFYgBLBIAALwSB//EEqAAnA5j/+QVJ/8AEWP+6BNMAKQa9AEIGpwBEBiEArAUAAGEEYACTBCcAiweB/9sGcf/ZB7gAJwZrAAcE3wBLBA8APQV9AJEE9gBzBSUAUAYf/8UFHf+8AwMA6AP/AAAH9AAAA/8AAAf0AAACrgAAAgQAAAFcAAAEZgAAAikAAAGfAAABAgAAANUAAAAAAAACrABAAqwAQAUGAJsGBAB8A37/WAGyALIBrQCNAcH/pwGWAM0C/gC5AwUAmgLq/6QEOQBpBHb//AK2AJ8D6AA1BYgANQHCAF4HcwCiAmEAWgJX//wDff/gAugAiQLoAGYC6AB+AugAiQLoAJgC6AB4AugApwMgAIYC3ACHAtwAbwHzAIsB8wA+A0IAawLo/9cC6AAxAuj/pgLo/7YC6P+1Auj/zALo/9gC6P/mAuj/xgLo//UDKv/aAub/2gLm/8IB8//lAfP/ngSR//cGPAAPBosALAhdACYGDAAgBmkAEARpAEsFvQBEBA0ARAR4ABUFOP/lBVP/6gW3AMADxQArB+sAIwThAPAE7QB9BhEAugazAIQGpgCKBoMAugRwAEQFXwAeBLn/pgReAJoEeQA0CBIASQIh/w8EbgAxBF0AYAP9/9YEEgAUA+8APAJJAGMCegBnAdv/0QT8AF4EiQBOBJgAXgbyAF4G8gBeBOgAXgaDABUAAAAAB/H/qAg1AFwC3v/kAt4AcALeABYD/gBhA/4AHgP+AFkD/QA8A/4AMAP+//8D/gAIA/7/8gP+ALQD/gA5BAv/1gQeAGwEO/+iBdoAiwRXAG4EZgA4BB4AYwQWAA8EQwAJBJkAOgRJAAkEmQA7BLYACQXXAAkDmwAJBDwACQO5//MB7wAaBLcACQSDAD8DqwAJBBYADwRGABEDiQACA58ACQRW/6QEmQA7BFb/pAOB/9sEswAJA///2gV7AEEFMABtBLsAAAVnAGIEXgA5Bx3/wQcfAAkFbgBjBLMACQRQAAsFNP+DBhX/qgQlAA4EvAALBDwACgSm/8EEKwB2BTkACQRqAFsGUQAJBtgACQU4AEsF8QALBEYACwReABQGXAAJBGH/0QQI//YGcP+qBHwACgTmAAoFSgBgBcoAPgQ/AGwEn/+iBmUAYgRqAFsEagAJBdIAOwSpADIEJgAOBJwANARGAAcD1gAeB+8ACQTO/9oC3v/1At7/8wLeAAsC3gAWAt4AJQLeAAUC3gA0A5kAkQKaAQgDwgAJBBr/hwSSADsFGQArBQAAKwQQABQFDQArBAkAFARXAAkEXgA5BD8ACQR2/5oB7wDoA4UBBAAA/ScD2QDcA9sAFgPsANwD3ADbA58ACQOBAQQDgQEFAugAiQLoAGYC6AB+AugAiQLoAJgC6AB4AugApwVKAGwFcwBrBVUAKwWsAG4FrgBtBAkAqwRfABwEN/+BBJf/0QRJ/9gEDgAxA4UBBQGt/7gGZgA7BIsARQH8/wAEc/+pBHP/2QRz/8kEcwATBHMATARzACIEcwBXBHMAMQRzADcEcwD4Ah//BAIf/wQCEQAjAhH/fAIRACMEPwAJBMEATAQQAFYEZgAQBB4ANgRyADcEbgAtBHoAMgRv/8gEdwA2BCgAOgRmAC4EOP+fA5sAqwTmACQDp//vBhX/fgPoAAkEmf/bBOcAIgS2AAkB+AAAAqMAQAUvACAFLwAgBG4AKwS6AJ0Clv/lBSX/owUl/6MFJf+jBSX/owUl/6MFJf+jBSX/owURAF8EYwAmBGMAJgRjACYEYwAmAjIANwIyADcCMgA3AjIANwWBACYFWQBiBVkAYgVZAGIFWQBiBVkAYgUUAFgFFABYBRQAWAUUAFgEvQChBC8AHAQvABwELwAcBC8AHAQvABwELwAcBC8AHAQNADcEKAA6BCgAOgQoADoEKAA6AgcAIwIHACMCBwAjAgcAIwRSAA0EZwA4BGcAOARnADgEZwA4BGcAOARRAEoEUQBKBFEASgRRAEoDzf+8A83/vAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAURAF8EDQA3BREAXwQNADcFEQBfBA0ANwURAF8EDQA3BREAJgT1ADgEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BUkAZgRm//kFSQBmBGb/+QVJAGYEZv/5BUkAZgRm//kFgQAmBFAADQIyADcCBwATAjIANwIHACMCMgA3AgcAIwIy/44B+v91AjIANwaCADcD7AAgBE8ABAIV/wQE5wAmBAwAEQQxACYB+gAgBDEAJgH6/6YEMQAmApAAIAQxACYC1gAgBYEAJgRSAA0FgQAmBFIADQWBACYEUgANBFIADQVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOATiACYCvgARBOIAJgK+/58E4gAmAr4AEQS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEugCdApYAPwS6AJ0ClgA/BLoAnQK+AD8FFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoG1QC1BcIAeQS9AKEDzf+8BL0AoQSu/+UD6P/mBK7/5QPo/+YErv/lA+j/5gdF/40GjgAOBVcAFgRjACoEV/+WBFf/lgQeAGMEdv+aBHb/mgR2/5oEdv+aBHb/mgR2/5oEdv+aBF4AOQPCAAkDwgAJA8IACQPCAAkB7wAaAe8AGgHvABoB7wAaBLYACQSZADsEmQA7BJkAOwSZADsEmQA7BGYAOARmADgEZgA4BGYAOAQeAGwEdv+aBHb/mgR2/5oEXgA5BF4AOQReADkEXgA5BFcACQPCAAkDwgAJA8IACQPCAAkDwgAJBIMAPwSDAD8EgwA/BIMAPwS3AAkB7wAOAe8AGgHvABoB+f+XAe8AGgO5//MEPAAJA5sACQObAAkDmwAJA5sACQS2AAkEtgAJBLYACQSZADsEmQA7BJkAOwRDAAkEQwAJBEMACQQWAA8EFgAPBBYADwQWAA8EHgBjBB4AYwQeAGMEZgA4BGYAOARmADgEZgA4BGYAOARmADgF2gCLBB4AbAQeAGwEC//WBAv/1gQL/9YFJf+jBMf/ugXl/8IClv/GBW0AJgUh/7gFRAAeApAACQUl/6ME5gAmBGMAJgSu/+UFgQAmAjIANwTnACYGyQAmBYEAJgVZAGIE9AAmBLoAnQS9AKEE5v/AAjIANwS9AKEEYQA7BEMAKARjABECkABmBDwAVwR3ACEEZwA4BJ3/3gPaAGQEOP+fApAARAQ8AFcEZwA4BDwAVwZhAFIEYwAmBFIAKwS0ACYCMgA3AjIANwRPAAQFAAArBOcAJgTkAJkFJf+jBOYAJgRSACsEYwAmBXoAJQbJACYFgQAmBVkAYgWCACsE9AAmBREAXwS6AJ0E5v/ABC8AHAQoADoEbwAXBGcAOARd/8gEDQA3A83/vAPo/7oEKAA6A0EAFgP/ABsB+gAgAgcAIwHy/wIESgAiA83/vAbVALUFwgB5BtUAtQXCAHkG1QC1BcIAeQS9AKEDzf+8AUwAkQJ6AJ0EGwAzAhX/BAGtAI0GyQAmBsMADwUl/6MELwAcBGMAJgV6ACUEKAA6BG8AFwWFAHYFnwA/BPEAqAPuAHUINAA4CSYAYgS2AB8D+AAXBREAXwQNADcEvQChA+0AdQIyADcHbv+kBlX/sAIyADcFJf+jBC8AHAUl/6MELwAcB0X/jQaOAA4EYwAmBCgAOgViAEsEGQA0BBkANAdu/6QGVf+wBLYAHwP4ABcFegAlBG8AFwV6ACUEbwAXBVkAYgRnADgFUABhBGUANAVQAGEEZQA0BSAASAQZACAE5ACZA83/vATkAJkDzf+8BOQAmQPN/7wFWgDEBEMAbQbFACwGSAAjBF8AOAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHARjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoCMgA3AgcAIwIy//8B+v/jBVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BRQAWARRAEoFFABYBFEASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoEvQChA83/vAS9AKEDzf+8BL0AoQPN/7wEff/0BLoAnQPbAFQFWgDEBEMAbQRSACsDQQAWBewAVQSg//IEUAANBNsAJATbACQEUgAAA0H/xwUUAD8EJAAoBL0AoQPtAFIE5v/AA+j/ugRDACgERv/CBgQAfARpAA0EaQAmBGkADQRpAFgEfQBxBJEASwR9AIwEkQBzBUkAZgRm//kFgQAmBFIADQUl/6MELwAcBGMAJgQoADoCMv/PAgf/gAVZAGIEZwA4BOIAJgK+AAwFFABYBFEASgTI/4UE5gAmBF0AEAURACYEXwA4BREAJgRfADgFgQAm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BiYB7QAAAAcARACXAB7///+j/lgEqwWwBiYAJQAAAQcApAFrAAMAC7YDDgUBATlWACs0AP//ABz+XQPRBFAGJgBFAAABBwCkAKYACAALtgI7MQAATVYAKzQA//8AJv5fBLwFsAYmACkAAAEHAKQBMAAKAAu2BBACAABDVgArNAD//wA6/lUD8ARRBiYASQAAAQcApAD9AAAAC7YBLAAAAE1WACs0AP///5r+VQQBBI0GJgJNAAAABwCkAQ8AAP//AAn+XQP7BI0GJgJCAAAABwCkAOAACP///+P+nwHKBDoGJgCNAAABBwCtA0IACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAAwAeAADAAEECQADACgAhAADAAEECQAEACgAhAADAAEECQAFACYArAADAAEECQAGACYA0gADAAEECQAHAEAA+AADAAEECQAIAAwBOAADAAEECQAJACYBRAADAAEECQALABQBagADAAEECQAMABQBagADAAEECQANAFwBfgADAAEECQAOAFQB2gADAAEECQAQAAwCLgADAAEECQARABoCOgADAAEECQAZAAwCLgBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBJAHQAYQBsAGkAYwBSAG8AYgBvAHQAbwAgAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAVgBlAHIAcwBpAG8AbgAgADMALgAwADAAOAA7ACAAMgAwADIAMwBSAG8AYgBvAHQAbwAtAE0AZQBkAGkAdQBtAEkAdABhAGwAaQBjAFIAbwBiAG8AdABvACAAaQBzACAAYQAgAHQAcgBhAGQAZQBtAGEAcgBrACAAbwBmACAARwBvAG8AZwBsAGUALgBHAG8AbwBnAGwAZQBDAGgAcgBpAHMAdABpAGEAbgAgAFIAbwBiAGUAcgB0AHMAbwBuAEcAbwBvAGcAbABlAC4AYwBvAG0ATABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABBAHAAYQBjAGgAZQAg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//QA3v/tAOH/4QDm/9QA7P/iAO7/7wDw/+IA8f/iAPP/4gD0/+IA9f/iAPb/yQD4/+IA+v/iAPv/4gD+/9EBAP/iAQX/4gEJ/+UBGf/UARr/5gEg/+MBK//iATP/9AE0/+8BNv/iATn/0gE6/8QBPP/iAT7/4gFD//QBRP/vAUX/0gFH/+EBSf/hAVP/4gFV/+IBV//iAVz/4gFd//QBXv/vAWL/1AFj//UBZP/nAWz/qgFt/8kBhP/KAYX/ygGH/8oBiP/KAYn/ygPQ/+0D3P/SA93/9APg/+ID4v/iA+T/5gPl/+8D5//iA+z/4gPt/+YD9v/KA/f/ygP6/8oEAv/iBAX/1AQG/+YEDf/TBA7/5gQQ//QEEf/vBB7/9AQf/+8EI//iBCX/4gQu/+0EL//mBDD/7QQx/+YEMv/tBDP/5gQ0/+EEN//iBJL/0gSU/+EEl//iBKH/0wApAEf/7ABI/+wASf/sAEv/7ABV/+wAlP/sAJn/7AK8/+wCvf/sAr7/7AK//+wCwP/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sAur/7ALs/+wC7v/sAvD/7ALy/+wEUv/sBFT/7ARW/+wEWP/sBFr/7ARc/+wEXv/sBGD/7AR0/+wEdv/sBHj/7AR8/+wEt//sBMT/7ATG/+wANgAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AGEABABhQAQAYcAEAGIABABiQAQArz/6AK9/+gCvv/oAr//6ALA/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gC6v/oAuz/6ALu/+gC8P/oAvL/6AP2ABAD9wAQA/oAEARS/+gEVP/oBFb/6ARY/+gEWv/oBFz/6ARe/+gEYP/oBHT/6AR2/+gEeP/oBHz/6AS3/+gExP/oBMb/6ABKAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAHb/2QCvP+0Ar3/tAK+/7QCv/+0AsD/tALG/3oCx/96Asj/egLJ/3oCyv96Atj/tALa/7QC3P+0At7/tALg/7QC4v+0AuT/tALm/7QC6P+0Aur/tALs/7QC7v+0AvD/tALy/7QDFP96Axb/egMY/3oDIP9kAyL/ZAMk/2QDJv9kAyj/ZARS/7QEVP+0BFb/tARY/7QEWv+0BFz/tARe/7QEYP+0BGb/egRo/3oEav96BGz/egRu/3oEcP96BHL/egR0/7QEdv+0BHj/tAR6/3oEfP+0BLf/tAS7/3oExP+0BMb/tATIABQEygAUBMwAFATZ/2QAAQD0AAQABgALAAwAJQAnACgAKQAqAC8AMAAzADQANQA2ADgAOgA7ADwAPQA+AD8ASQBKAEwATwBRAFIAUwBWAFgAWgBbAF0AXwCWAJ0AsgGEAYUBhwGIAYkB8gH0AfUB9wH6AgUCSgJNAl8CYQJiApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqsCrAKtAq4CrwK0Ar0CvgK/AsACxQLGAscCyALJAsoCzwLQAtEC0wLVAtcC2QLbAt0C3wLhAuIC4wLkAuUC5gLnAugC6QLqAvQDAgMEAwYDCAMKAw0DDwMRAxIDEwMUAxUDFgMXAxgDGgMcAx4DKQMrAy0DOwM9Az4DPwNAA0IDRANKA0sDTANNA04DTwNQA1EDUgNTA14DXwNgA2EDYgNoA2kDagNvA4EDggODA4QDiAOJA4oDkwPuA/AD8gP0A/UD9gP3A/oD/AP9BDkEOwQ9BD8EQQRDBEUERwRJBEsETQRPBFEEUgRTBFQEVQRWBFcEWARZBFoEWwRcBF0EXgRfBGAEZQRmBGcEaARpBGoEawRsBG0EbgRvBHAEcQRyBHoEiwSMBI0EjgSPBJAEswS0BLYEugS7BL0EwwTFBMgEyQTLBM0E0ATSBNME1ATXBNoE3QTeBN8E4AThBOMAAQA1AAYACwCWALEAsgCzALQAvQDBAMcBhAGFAYcBiAGJAgUCBgIHA6EDogOjA6QDpQOmA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuwO/A8EDxQP2A/cD+gTlBOYE6gTtBPME+ACnABD/BwAS/wcAJf9OAC7/DQA4ABQARf/eAEf/6wBI/+sASf/rAEv/6wBT/+sAVf/rAFb/5gBZ/+oAWv/oAF3/6ACU/+sAmf/rAJv/6gCy/04Bhv8HAYr/BwGO/wcBj/8HAgX/wAJN/8ACmv9OApv/TgKc/04Cnf9OAp7/TgKf/04CoP9OArX/3gK2/94Ct//eArj/3gK5/94Cuv/eArv/3gK8/+sCvf/r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ARgBGAATARkBGQAXARoBGgAFARsBGwADAR0BHQADAR4BHgACAR8BHwADASEBIQADASIBIgACASsBKwABATMBMwAGATQBNAAHATYBNgABATkBOQAKATwBPAABAT4BPgABAUEBQQADAUIBQgACAUMBQwAGAUQBRAAHAUUBRQAKAUcBRwARAUgBSAAUAVABUAANAVEBUQASAVMBUwABAVUBVQABAVcBVwABAVwBXAABAV0BXQAGAV4BXgAHAWABYQACAWYBZgANAWoBagADAWsBawACAW8BbwANAXABcAASAYEBggALAYQBhQAEAYYBhgAIAYcBiQAEAYoBigAIAY4BjwAIAgUCBQAZAg4CDgAMAg8CDwAJAhICEgAMAhYCFgAPAicCJwAPAioCKgAMAisCKwAJAiwCLAAWAi0CLQAPAi4CLgAMAjQCNAAJApQClAALA80DzQAcA9AD0AAOA9ED0QAQA9gD2AADA9sD2wADA9wD3AAKA90D3QAGA94D3gAVA98D3wACA+AD4AABA+ED4QATA+ID4gABA+MD4wACA+QD5AAFA+UD5QAHA+YD5gACA+cD5wABA+gD6AAdA+wD7AABA+0D7QAFA/YD9wAEA/oD+gAEBAEEAQACBAIEAgABBAUEBQAXBAYEBgAFBAcEBwACBAgECAADBAsECwADBAwEDAACBA0EDQAYBA4EDgAFBBAEEAAGBBEEEQAHBBMEEwAQBBQEFAAVBBUEFQAQBBYEFgAVBBoEGgACBBwEHQACBB4EHgAGBB8EHwAHBCMEIwABBCUEJQABBCYEJgADBCcEJwATBCgEKAADBCkEKQACBCoEKgADBCsEKwATBC4ELgAOBC8ELwAFBDAEMAAOBDEEMQAFBDIEMgAOBDMEMwAFBDQENAARBDUENQAUBDcENwABBDgEOAACBJIEkgAKBJQElAARBJUElQAUBJcElwABBKEEoQAYBKcEpwALBQUFBQAaBQwFDAAJBQ8FDwAJBRAFEAAMBREFEQAPBRQFFAAJBRUFFQAWAAIA7AAGAAYADAALAAsADAAlACUAAgAmACYAGwAnACcADgApACkABAAsAC0AAQAuAC4ABwAvAC8AGAAwADAADwAxADIAAQA0ADQAHAA4ADgAEAA5ADkABwA6ADoAGQA7ADsAEQA8ADwAHgA9AD0ADQA+AD4AFABFAEUAAwBG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BiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCjAJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCfgKOA0sCkAKPA0oB/QKNApICbATtBO4CBAIFBO8E8ATxAgYE8gIHAggCCQT3AgoCCgT4BPkCCwIMAg0CFAUGBQcCFQIWAhcCGAIZAhoFCgULBQ0FEAUZAhwCHQIeAh8CIAIhAiICIwIkAiUCDgIPAhACEQISAhMCVQInAigCKQIqBRMCKwItAi4CLwIxAjMCkQNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA50DaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDngOfA6AFGwUcBOYE5wToBOkE8wT2BPQE9QT6BPsE/ATqBOsE7AUFBQgFCQUMBQ4FDwIbBREE/QT+BP8FAAUBBQIFAwUEBR4FHwUgBSEFEgUUBRUCMgUXAjQFGAUWAjACJgIsBSYFJwACBwAA+gIBAowB6wHqAekB6AHnAeYB5QHkAeMB4gJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCAgIDAo4CkAKPApECjQKSAmwCBAIFAgYCBwIIAgkCCgILAgwCDQIOAg8CEAIRAhICEwIUAhUCFgIXAhgCGgIbBRkCHAIdAh4CHwIgAiECIgIjAiQCJQJVAicCKAIpAioFEwIrAi0CLgIvAjACMQIyAjMCNQI2AjgCNwNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34FGgN/A4ADgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAUdA5EDkgOUA5MDlQOWA5cDmAOZA5oDmwOcA50DngOfA6AFGwUcBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgE+QT6BPsE/AT9BP4E/wUABQEFAgIZBQMFBAUFBQYFBwUIBQkFCgULBQwFDQUOBQ8FEAURBR4FHwUgBSEFEgUUBRUFFwI0BRgFFgImAiwFJgUnAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMjAyQAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwKEAAIAAAABBt4AAQAGAtUC1gLnAugDagNzAAEABgBNAE4C/APpA+sEZAACAAMBlAGUAAAB3wHhAAECOQI/AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACbwJ4AAoAAgAGAE0ATQAGAE4ATgAEAvwC/AAFA+kD6QADA+sD6wACBGQEZAABAAIABAAUAB0AAAKAAoAACgKLAosACwSoBK8ADAACAAYAGgAaAAAAHAAcAAECZAJpAAICbQJtAAgCbwJ4AAkCfwJ/ABMAAQAUABoAHAJkAmUCZgJnAmgCaQJtAn8CgAKLBKgEqQSqBKsErAStBK4ErwABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaApcCmQK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtIC1ALWAtgC2gLcAt4C4ALiAuQC5gLoAuoC7ALuAvAC8gL0AvYC+AL6AvwC/wMBAwMDBQMHAwkDCwMNAw8DEQMUAxYDGAMaAxwDHgMgAyIDJAMmAygDKgMsAy4DMAMyAzQDNgM4AzoDPAM+A0EDQwNFA0cDSQO5A7oDuwO8A74DvwPAA8EDwgPDA8QDxQPGA8cD3gPfA+AD4QPiA+MD5APlA+YD5wPoA+kD6gPrA+wD7QPvA/ED8wP1BAoEDAQOBBwEIwQpBC8EmQSaBJ4EogUjBSUAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQB1gACAE0B1wACAFAB2AADAEoATQHZAAMASgBQAAEAAQBKAdUAAgBKAdsAAgBYAdoAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBMEAAgCtAtcAAgCpBMcAAgCtBNQAAgCpBMIAAgCtAtgAAgCpBLEAAgCpBMgAAgCtBGQAAgCtBNUAAgCpA0YAAgCpA0gAAgCpA0cAAgCpA0kAAgCpBMAAAgCpBMUAAgHUBMMAAgCtBLAAAgCpAvEAAgHUA/sAAgCpBM8AAgCtAykAAgHUBNoAAgCtBN8AAgCtBN0AAgCqA0AAAgCpBOMAAgCtBMYAAgHUBMQAAgCtA/wAAgCpBNAAAgCtAyoAAgHUBNsAAgCtBOAAAgCtBN4AAgCqA0EAAgCpBOQAAgCtBMkAAgCpAwIAAgHUBMsAAgCtAwQAAgCpAwYAAgHUBM0AAgCtAx8AAgCpAyUAAgHUBNgAAgCtA/AAAgCpBOEAAgCtA+4AAgCoBMoAAgCpAwMAAgHUBMwAAgCtAwUAAgCpAwcAAgHUBM4AAgCtAyAAAgCpAyYAAgHUBNkAAgCtA/EAAgCpBOIAAgCtA+8AAgCoAxkAAgCpAxsAAgHUBNYAAgCtBLwAAgCsAxoAAgCpAxwAAgHUBNcAAgCtBL0AAgCsAwwAAgCpAw4AAgHUBNEAAgCtBLIAAgCoAqoAAgCqArQAAgCpBIsAAgCtA/QAAgCoBI0AAgCrBI8AAgCqAw0AAgCpAw8AAgHUBNIAAgCtBLMAAgCoAsUAAgCqAs8AAgCpBIwAAgCtA/UAAgCoBI4AAgCrBJAAAgCqAsIAAgCpAsEAAgCoBGIAAgCrAvYAAgCqBLkAAgCsBHMAAgCpBHsAAgCtBHUAAgCoBHcAAgCrBHkAAgCqBHQAAgCpBHwAAgCtBHYAAgCoBHgAAgCrBHoAAgCqBIEAAgCpBIkAAgCtBIMAAgCoBIUAAgCrBIcAAgCqBIIAAgCpBIoAAgCtBIQAAgCoBIYAAgCrBIgAAgCqApsAAgCpBDkAAgCtApoAAgCoBDsAAgCrAp0AAgCqBLQAAgCsAqMAAgCpBFEAAgCtAqIAAgCoBFMAAgCrBFUAAgCqBLYAAgCsAqcAAgCpBGMAAgCtAqYAAgCoBGEAAgCrAvUAAgCqBLgAAgCsArYAAgCpBDoAAgCtArUAAgCoBDwAAgCrArgAAgCqBLUAAgCsAr4AAgCpBFIAAgCtAr0AAgCoBFQAAgCrBFYAAgCqBLcAAgCsAscAAgCpBGYAAgCtAsYAAgCoBGgAAgCrAskAAgCqBLsAAgCsAswAAgCpBH4AAgCtAssAAgCoBIAAAgCrAzAAAgCqBL8AAgCsAqwAAgCpBGUAAgCtAqsAAgCoBGcAAgCrAq4AAgCqBLoAAgCsArEAAgCpBH0AAgCtArAAAgCoBH8AAgCrAy8AAgCqBL4AAgCsBNMAAwCqAKkE3AADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcFUAAACWEdQT1N/jKrdAAHDrAAAWMBHU1VCm18k/AACHGwAABX2T1MvMpeDsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBSAAAAAxnbHlm5vV0AgAAOswAAYOwaGVhZAhMpEUAAAEcAAAANmhoZWEKugrKAAABVAAAACRobXR4//meUgAAAfgAABSkbG9jYadOA+EAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOEJpwQABvnwAAAKqcG9zdP9tAGQAAcEoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDFXLfBlfDzz1ABsIAAAAAADE8BEuAAAAAODgRcX6Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/AFIHqgBEAmcAbAJnAFoDowA8Au8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgM4AFAC+ABQAvgAUAHxAFQB8QBQA2EAegLvAFEC7wB7Au8AQgLvAD8C7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDOABQAvgAUAL4AFAB8QBUAfEAUASnAFsGVgAfBpEApwh2AKkF6wAfBisAjAR/AF8F2gAfBCMAKwR0ACEFSABdBU8AHwXoAHsDzgBoCDoAogUBAGgFGACYBiYAVAbXAGUGzwBkBmoAWgSQAGoFjwCpBK8ARgSTAKgExQA/CDoAYwIN/68EggBlBGQAmAQRAD0ELwCEBAgALAJMALUCkABvAgQAXQTzAD0EbwAgBIsAPQbUAD0G1AA9BO4APQabAF8AAAAACDQAWwg1AFwC7wBCAu8AewLvAFEEEABWBBAAYQQQAEIEDwByBBAAgQQQADEEEABPBBAATwQQAJkEEABjBCMASAQrAA4EVAAnBhUAMQRoABQEfQB1BCcAKQQgAEQESgCKBLwAWgRdAIsEvABgBOMAiwYCAIsDtQCLBFUAiwPPACwB6QCYBOQAiwSsAGQDzACLBCAARAQ0ADEDoQAOA68AiwRoABQEvABgBGgAFAOJAD4EzwCLA/AAQAVnAGEFFwBhBPMAdgVzACcEfABhB0IAKAdQAIsFdAApBM4AiwRaAIsFJQAuBgsAHwRAAEgE7ACLBE4AjATBACgEIAAjBSkAiwRqAD0GUQCLBqwAiwUdAAkF8QCLBE8AiwR8AEsGdwCLBIcAUAQSAAsGSAAfBHkAjAUKAIwFNwAkBcMAYARfAA4EqAAnBmIAJwRqAD0EagCLBcQAAgTLAF4EQABIBLwAYAQ0ADED5ABDCCIAiwSrACgC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKA5cAjwK1AJ8D5gCLBDoAHwTEAGQFTACyBSQAsgQUAJMFPQCyBA8AkwSAAIsEfABhBFEAiwSGABQB/gCfA6UAggAA/KMD8ABvA/T/XQQPAGkD9QBpA68AiwOgAIIDnwCCAu8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgWCAH4FrwB+BZMAsgXgAH4F4wB+A9UAoASCAIMEWAAPBM8APgRrAGUELgBKA6UAhAGSAGgGpABgBLoAggH8/7YEfwA7BH8AcwR/ACIEfwB2BH8AdgR/ADYEfwB+BH8AXgR/AHEEfwD0Agb/tAIE/7QB+wCcAfv/+QH7AJwEUQCLBQAAeAQhADsEfgCMBDMAXQSTAFsEjABbBJ8AWgSOAIwEnABbBD4AXQR+AGEEcABaA3kAVwTWAGgDtQABBjoACQP5AIsEvABgBOMAMATjAIsB/AAAAjYAJgVeACUFXgAlBIYAAQTGADICnv/0BTgAHQU4AB0FOAAdBTgAHQU4AB0FOAAdBTgAHQU1AHgEjACpBIwAqQSMAKkEjACpAi3/3wItALECLf/qAi3/1QW1AKkFgQB3BYEAdwWBAHcFgQB3BYEAdwUwAIwFMACMBTAAjAUwAIwEzgAPBFoAbQRaAG0EWgBtBFoAbQRaAG0EWgBtBFoAbQQwAF0EPgBdBD4AXQQ+AF0EPgBdAfv/xAH7AJYB+//PAfv/ugRrAI0EkABcBJAAXASQAFwEkABcBJAAXARpAIkEaQCJBGkAiQRpAIkDyQAWA8kAFgU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU1AHgEMABdBTUAeAQwAF0FNQB4BDAAXQU1AHgEMABdBUAAqQUZAF8EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBXMAegR+AGEFcwB6BH4AYQVzAHoEfgBhBXMAegR+AGEFtQCpBGgAjQIt/7YB+/+bAi3/zQH7/7ICLf/sAfv/0QItABcB8v/6Ai0AqgaXALcD3ACOBGoANQIE/7QFBQCpBA4AjQRPAKIB8gCTBE8AqQHyAFYETwCpAogAnARPAKkCzgCcBbUAqQRrAI0FtQCpBGsAjQW1AKkEawCNBGv/uwWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXATuAKkCtgCNBO4AqQK2AFME7gCpArYAZATAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8ExgAyAp4ACQTGADICngAJBMYAMgLGAAkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkHGQA9BgMAKwTOAA8DyQAWBM4ADwTLAFcD+ABZBMsAVwP4AFkEywBXA/gAWQd6//EGwgBPBYEAdwSJAFwEgP+9BID/vQQnACkEhgAUBIYAFASGABQEhgAUBIYAFASGABQEhgAUBHwAYQPmAIsD5gCLA+YAiwPmAIsB6f+8AekAjgHp/8cB6f+yBOMAiwS8AGAEvABgBLwAYAS8AGAEvABgBH0AdQR9AHUEfQB1BH0AdQQrAA4EhgAUBIYAFASGABQEfABhBHwAYQR8AGEEfABhBIAAiwPmAIsD5gCLA+YAiwPmAIsD5gCLBKwAZASsAGQErABkBKwAZATkAIsB6f+TAen/qgHp/8kB6QAFAekAhwPPACwEVQCLA7UAgwO1AIsDtQCLA7UAiwTjAIsE4wCLBOMAiwS8AGAEvABgBLwAYARKAIoESgCKBEoAigQgAEQEIABEBCAARAQgAEQEJwApBCcAKQQnACkEfQB1BH0AdQR9AHUEfQB1BH0AdQR9AHUGFQAxBCsADgQrAA4EIwBIBCMASAQjAEgFOAAdBPD/jAYZ/5oCkf+gBZX/+gUy/3YFZv/8Apj/mwU4AB0E/ACpBIwAqQTLAFcFtQCpAi0AtwUFAKkG/ACpBbUAqQWBAHcFDACpBMYAMgTOAA8FBAA6Ai3/1QTOAA8EhgBkBFEAZASJAJICmADDBF4AkAR0AJsEkABcBIkAmwPgACEEcABaApj/5AReAJAEkABcBF4AkAaXAHoEjACpBHMAsgTAAFECLQC3Ai3/1QRqADUFJACyBQUAqQUIAE0FOAAdBPwAqQRzALIEjACpBbUAsgb8AKkFtQCpBYEAdwW1ALIFDACpBTUAeATGADIFBAA6BFoAbQQ+AF0EngCdBJAAXAR+AIwEMABdA8kAFgP4ACoEPgBdA1wAmwQhAF8B8gCOAfv/ugHq/74EUwCdA8kAFgcZAD0GAwArBxkAPQYDACsHGQA9BgMAKwTOAA8DyQAWAWYAaAKQAIkEIAChAgT/tAGaADAG/ACpBwQAiwU4AB0EWgBtBIwAqQW1ALIEPgBdBJ4AnQWJAFoFmgBgBQsAFgQE//sIWQBcCUoAdwTAAFAEEABYBTUAeAQwAF0EzgAPBAMALwItALcHQwAbBiEAFgItALcFOAAdBFoAbQU4AB0EWgBtB3r/8QbCAE8EjACpBD4AXQWHAF4EOABjBDgAYwdDABsGIQAWBMAAUAQQAFgFtQCyBJ4AnQW1ALIEngCdBYEAdwSQAFwFcgBnBIwAXAVyAGcEjABcBWUAlAROAGQFCABNA8kAFgUIAE0DyQAWBQgATQPJABYFegCXBFoAaAbrALIGNgCeBIMAXwU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWv/JBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIz/7gQ+/7gEjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0CLQC3AfsAnAItAKQB8gCGBYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBYEARgSQ/8IFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBTAAjARpAIkFMACMBGkAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkEzgAPA8kAFgTOAA8DyQAWBM4ADwPJABYEoQBfBMYAMgPZACgFegCXBFoAaARzALIDXACbBjAAPwS+/90EaACNBQX/1AUF/9QEcwADA1z//QU4AAsEKP/TBM4ADwQDAC8FBAA6A/gAKgRRAGQEbAASBj8AkAR/AF4EfwBfBH8ANQR/AJoEkwCZBKcAhQSTAGQEpwCHBXMAegR+AGEFtQCpBGsAjQU4AB0EWgA6BIwAXwQ+ACkCLf8LAfv+8AWBAHcEkAAzBO4AVgK2/4wFMACMBGkAKwSn/zgE/ACpBH4AjAVAAKkEgwBfBUAAqQSDAF8FtQCp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ABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAADAe//9QHw/+4Dm//1AAMADf/mAEH/9ABh/+8AAwBK/+4AW//qAfD/8AADAFv/wQH//+YCS//oAAMASgAPAFgAMgBbABEAAwBb/+UB///rAkv/7QA7ALIAEADS/+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//IBbwAQAXAAEAPRABAD2P/oA9v/6APc/+AEBf/gBAj/6AQL/+gEDf/fBBMAEAQVABAEJv/oBCj/6AQq/+gENP/hBDX/4ASS/+AElP/hBJX/4ASh/98ABABY/+8AW//fAJr/7gHw/80ABAANABQAQQARAFb/4gBhABMABQA4/9gDKf/YAyv/2AMt/9gE2v/YAAUAI//DAFj/7wBb/98Amv/uAfD/zQAF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Au7/7ALw/+wC8v/sBFL/7ARU/+wEVv/sBFj/7ARa/+wEXP/sBF7/7ARg/+wEdP/sBHb/7AR4/+wEfP/sBLf/7ATE/+wExv/sADYABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gBhAAQAYUAEAGHABABiAAQAYkAEAK8/+gCvf/oAr7/6AK//+gCwP/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAur/6ALs/+gC7v/oAvD/6ALy/+gD9gAQA/cAEAP6ABAEUv/oBFT/6ARW/+gEWP/oBFr/6ARc/+gEXv/oBGD/6AR0/+gEdv/oBHj/6AR8/+gEt//oBMT/6ATG/+gASgBH/8UASP/FAEn/xQBL/8UATAAgAE8AIABQACAAU/+AAFX/xQBX/5AAWwALAJT/xQCZ/8UB2/+QArz/xQK9/8UCvv/FAr//xQLA/8UCxv+AAsf/gALI/4ACyf+AAsr/gALY/8UC2v/FAtz/xQLe/8UC4P/FAuL/xQLk/8UC5v/FAuj/xQLq/8UC7P/FAu7/xQLw/8UC8v/FAxT/gAMW/4ADGP+AAyD/kAMi/5ADJP+QAyb/kAMo/5AEUv/FBFT/xQRW/8UEWP/FBFr/xQRc/8UEXv/FBGD/xQRm/4AEaP+ABGr/gARs/4AEbv+ABHD/gARy/4AEdP/FBHb/xQR4/8UEev+ABHz/xQS3/8UEu/+ABMT/xQTG/8UEyAAgBMoAIATMACAE2f+QAAEA9AAEAAYACwAMACUAJwAoACkAKgAvADAAMwA0ADUANgA4ADoAOwA8AD0APgA/AEkASgBMAE8AUQBSAFMAVgBYAFoAWwBdAF8AlgCdALIBhAGFAYcBiAGJAfIB9AH1AfcB+gIFAkoCTQJfAmECYgKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKrAqwCrQKuAq8CtAK9Ar4CvwLAAsUCxgLHAsgCyQLKAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLiAuMC5ALlAuYC5wLoAukC6gL0AwIDBAMGAwgDCgMNAw8DEQMSAxMDFAMVAxYDFwMYAxoDHAMeAykDKwMtAzsDPQM+Az8DQANCA0QDSgNLA0wDTQNOA08DUANRA1IDUwNeA18DYANhA2IDaANpA2oDbwOBA4IDgwOEA4gDiQOKA5MD7gPwA/ID9AP1A/YD9wP6A/wD/QQ5BDsEPQQ/BEEEQwRFBEcESQRLBE0ETwRRBFIEUwRUBFUEVgRXBFgEWQRaBFsEXARdBF4EXwRgBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgR6BIsEjASNBI4EjwSQBLMEtAS2BLoEuwS9BMMExQTIBMkEywTNBNAE0gTTBNQE1wTaBN0E3gTfBOAE4QTjAAEANQAGAAsAlgCxALIAswC0AL0AwQDHAYQBhQGHAYgBiQIFAgYCBwOhA6IDowOkA6UDpgOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7sDvwPBA8UD9gP3A/oE5QTmBOoE7QTzBPgApwAQ/xYAEv8WACX/VgAu/vgAOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/rAJn/6wCb/+oAsv9WAYb/FgGK/xYBjv8WAY//FgIF/8ACTf/AApr/VgKb/1YCnP9WAp3/VgKe/1YCn/9WAqD/VgK1/94Ctv/eArf/3gK4/94Cuf/eArr/3gK7/94CvP/rAr3/6wK+/+sCv//rAsD/6wLG/+sCx//rAsj/6wLJ/+sCyv/rAsv/6gLM/+oCzf/qAs7/6gLP/+gC0P/oAtH/VgLS/94C0/9WAtT/3gLV/1YC1v/eAtj/6wLa/+sC3P/rAt7/6wLg/+sC4v/rAuT/6wLm/+sC6P/rAur/6wLs/+sC7v/rAvD/6wLy/+sDAP74AxT/6wMW/+sDGP/rAykAFAMrABQDLQAUAzD/6gMy/+oDNP/qAzb/6gM4/+oDOv/qAz7/6ANN/8ADTv/AA0//wANQ/8ADUf/AA1L/wANT/8ADaP/AA2n/wANq/8AD9f/oA/3/VgP+/94EOf9WBDr/3gQ7/1YEPP/eBD3/VgQ+/94EP/9WBED/3gRB/1YEQv/eBEP/VgRE/94ERf9WBEb/3gRH/1YESP/eBEn/VgRK/94ES/9WBEz/3gRN/1YETv/eBE//VgRQ/94EUv/rBFT/6wRW/+sEWP/rBFr/6wRc/+sEXv/rBGD/6wRm/+sEaP/rBGr/6wRs/+sEbv/rBHD/6wRy/+sEdP/rBHb/6wR4/+sEev/rBHz/6wR+/+oEgP/qBIL/6gSE/+oEhv/q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"}}}]); \ No newline at end of file diff --git a/frontend/17.d00d31d08d7bad32.js b/frontend/17.d00d31d08d7bad32.js new file mode 100644 index 00000000..525d4b80 --- /dev/null +++ b/frontend/17.d00d31d08d7bad32.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{9017:(vp,Et,_)=>{_.r(Et),_.d(Et,{ECLModule:()=>Sp});var p=_(177),b=_(1188),Ut=_(9881),t=_(4438),h=_(2920),V=_(7575);function zt(n,o){1&n&&t.nrm(0,"mat-progress-bar",3)}let xt=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof b.Z:this.loading=!0;break;case i instanceof b.wF:case i instanceof b.j5:case i instanceof b.L6:this.loading=!1}})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-root"]],decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,zt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",a.loading))},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,b.n3],data:{animation:[Ut.E]}})}return n})();var u=_(1413),f=_(6977),rt=_(3993),Lt=_(614),F=_(5383),l=_(4416),U=_(9647),C=_(2730),G=_(8570),R=_(9640),M=_(2571),w=_(60),L=_(6038),j=_(8834),E=_(5596),St=_(6195),ct=_(9213),mt=_(9115),D=_(6850);const vt=n=>({backgroundColor:n});function Jt(n,o){if(1&n&&t.nrm(0,"span",6),2&n){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,vt,null==e.information?null:e.information.color))}}function qt(n,o){if(1&n&&(t.j41(0,"div")(1,"h4",1),t.EFF(2,"Color"),t.k0s(),t.j41(3,"div",2),t.nrm(4,"span",7),t.EFF(5),t.nI1(6,"uppercase"),t.k0s()()),2&n){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,vt,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function Qt(n,o){if(1&n&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}let Zt=(()=>{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"))}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[t.OA$],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(i,a){1&i&&(t.j41(0,"div",0)(1,"div")(2,"h4",1),t.EFF(3,"Alias"),t.k0s(),t.j41(4,"div",2),t.EFF(5),t.DNE(6,Jt,1,3,"span",3),t.k0s()(),t.DNE(7,qt,7,6,"div",4),t.j41(8,"div")(9,"h4",1),t.EFF(10,"Implementation"),t.k0s(),t.j41(11,"div",2),t.EFF(12),t.k0s()(),t.j41(13,"div")(14,"h4",1),t.EFF(15,"Chain"),t.k0s(),t.DNE(16,Qt,2,1,"span",5),t.k0s()()),2&i&&(t.R7$(5),t.SpI(" ",null==a.information?null:a.information.alias," "),t.R7$(),t.Y8G("ngIf",!a.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",a.showColorFieldSeparately),t.R7$(5),t.JRh(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):""),t.R7$(4),t.Y8G("ngForOf",a.chains))},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,p.Pc]})}return n})();function Wt(n,o){if(1&n&&(t.j41(0,"div",2)(1,"div")(2,"h4",3),t.EFF(3,"Lightning"),t.k0s(),t.j41(4,"div",4),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",5),t.k0s(),t.j41(8,"div")(9,"h4",3),t.EFF(10,"On-chain"),t.k0s(),t.j41(11,"div",4),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.nrm(14,"mat-progress-bar",5),t.k0s(),t.j41(15,"div")(16,"h4",3),t.EFF(17,"Total"),t.k0s(),t.j41(18,"div",4),t.EFF(19),t.nI1(20,"number"),t.k0s()()()),2&n){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,5,e.balances.lightning)," Sats"),t.R7$(2),t.FS9("value",e.balances.lightning/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(13,7,e.balances.onchain)," Sats"),t.R7$(2),t.FS9("value",e.balances.onchain/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(20,9,e.balances.total)," Sats")}}function Kt(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let te=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["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(i,a){if(1&i&&t.DNE(0,Wt,21,11,"div",1)(1,Kt,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,p.QX]})}return n})();function ee(n,o){if(1&n&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Daily"),t.k0s(),t.j41(5,"div",5),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div")(9,"h4",4),t.EFF(10,"Weekly"),t.k0s(),t.j41(11,"div",5),t.EFF(12),t.nI1(13,"number"),t.k0s()(),t.j41(14,"div")(15,"h4",4),t.EFF(16,"Monthly"),t.k0s(),t.j41(17,"div",5),t.EFF(18),t.nI1(19,"number"),t.k0s()()(),t.j41(20,"div",3)(21,"div")(22,"h4",4),t.EFF(23,"Transactions"),t.k0s(),t.j41(24,"div",5),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div")(28,"h4",4),t.EFF(29,"Transactions"),t.k0s(),t.j41(30,"div",5),t.EFF(31),t.nI1(32,"number"),t.k0s()(),t.j41(33,"div")(34,"h4",4),t.EFF(35,"Transactions"),t.k0s(),t.j41(36,"div",5),t.EFF(37),t.nI1(38,"number"),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(6),t.SpI("",t.bMT(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.R7$(7),t.JRh(t.bMT(26,12,null==e.fees?null:e.fees.daily_txs)),t.R7$(6),t.JRh(t.bMT(32,14,null==e.fees?null:e.fees.weekly_txs)),t.R7$(6),t.JRh(t.bMT(38,16,null==e.fees?null:e.fees.monthly_txs))}}function ne(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(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(){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}];const i=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/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)}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[t.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["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(i,a){if(1&i&&t.DNE(0,ee,39,18,"div",1)(1,ne,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}return n})();function ae(n,o){if(1&n&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Active"),t.k0s(),t.j41(5,"div",5),t.nrm(6,"span",6),t.EFF(7),t.nI1(8,"number"),t.k0s()(),t.j41(9,"div")(10,"h4",4),t.EFF(11,"Pending"),t.k0s(),t.j41(12,"div",5),t.nrm(13,"span",7),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div")(17,"h4",4),t.EFF(18,"Inactive"),t.k0s(),t.j41(19,"div",5),t.nrm(20,"span",8),t.EFF(21),t.nI1(22,"number"),t.k0s()()(),t.j41(23,"div",3)(24,"div")(25,"h4",4),t.EFF(26,"Capacity"),t.k0s(),t.j41(27,"div",5),t.EFF(28),t.nI1(29,"number"),t.k0s()(),t.j41(30,"div")(31,"h4",4),t.EFF(32,"Capacity"),t.k0s(),t.j41(33,"div",5),t.EFF(34),t.nI1(35,"number"),t.k0s()(),t.j41(36,"div")(37,"h4",4),t.EFF(38,"Capacity"),t.k0s(),t.j41(39,"div",5),t.EFF(40),t.nI1(41,"number"),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(7),t.JRh(t.bMT(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.R7$(7),t.JRh(t.bMT(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.R7$(7),t.JRh(t.bMT(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.R7$(7),t.SpI("",t.bMT(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function oe(n,o){if(1&n&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let se=(()=>{class n{constructor(){this.channelsStatus={}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["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(i,a){if(1&i&&t.DNE(0,ae,42,18,"div",1)(1,oe,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}return n})();var g=_(6467),Z=_(1997),J=_(4823),A=_(497);const le=()=>["../connections/channels/open"],re=(n,o)=>({filterColumn:n,filterValue:o});function ce(n,o){if(1&n&&(t.j41(0,"div",19)(1,"a",20),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",22),t.nrm(11,"fa-icon",23),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",24)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",25),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(23,le))("state",t.l_i(24,re,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(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.R7$(6),t.SpI("",t.i5U(9,15,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",i.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,18,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,20,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function me(n,o){if(1&n&&(t.j41(0,"div",17),t.DNE(1,ce,20,27,"div",18),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function pe(n,o){if(1&n&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",9),t.nrm(11,"fa-icon",10),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",11)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",12),t.k0s(),t.j41(20,"div",13),t.nrm(21,"mat-divider",14),t.k0s(),t.j41(22,"div",15),t.DNE(23,me,2,1,"div",16),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,7,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",e.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("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.R7$(4),t.Y8G("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",i)}}function ue(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function de(n,o){if(1&n&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let he=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=F.GR4,this.faDumbbell=F.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","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(i,a){if(1&i&&t.DNE(0,pe,24,15,"div",2)(1,ue,4,0,"ng-template",null,0,t.C5r)(3,de,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.Sq,p.bT,w.aY,h.DJ,h.sA,h.UI,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();const fe=(n,o,e)=>({"mb-4":n,"mb-2":o,"mb-1":e}),_e=()=>["../connections/channels/open"],ge=(n,o)=>({filterColumn:n,filterValue:o});function Ce(n,o){if(1&n&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function ye(n,o){if(1&n&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function be(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toRemote||0)/i.totalLiquidity*100:0)}}function Fe(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toLocal||0)/i.totalLiquidity*100:0)}}function Ee(n,o){if(1&n&&(t.j41(0,"div",14)(1,"a",15),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",16),t.DNE(5,Ce,5,4,"mat-hint",17)(6,ye,5,4,"mat-hint",17),t.k0s(),t.DNE(7,be,1,1,"mat-progress-bar",18)(8,Fe,1,1,"mat-progress-bar",18),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(14,_e))("state",t.l_i(15,ge,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,10,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction),t.R7$(),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction)}}function xe(n,o){if(1&n&&(t.j41(0,"div",12),t.DNE(1,Ee,9,18,"div",13),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function Le(n,o){if(1&n&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"mat-hint",6),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",7),t.k0s(),t.j41(8,"div",8),t.nrm(9,"mat-divider",9),t.k0s(),t.j41(10,"div",10),t.DNE(11,xe,2,1,"div",11),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.Y8G("ngClass",t.sMw(7,fe,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.R7$(5),t.SpI("",t.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.R7$(6),t.Y8G("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",i)}}function Se(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function ve(n,o){if(1&n&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Se,2,0,"button",23),t.k0s()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function Re(n,o){if(1&n&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ie=(()=>{class n{constructor(e,i){this.router=e,this.commonService=i,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix),t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","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(i,a){if(1&i&&t.DNE(0,Le,12,11,"div",2)(1,ve,3,1,"ng-template",null,0,t.C5r)(3,Re,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,h.DJ,h.sA,h.UI,L.PW,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX]})}return n})();var q=_(6697),I=_(6695),x=_(2042),c=_(9159),S=_(2798),H=_(5964),k=_(5428),B=_(5351),pt=_(3017),Q=_(4054),et=_(1534),d=_(9417),O=_(9631),W=_(9587);const ke=["paymentReq"];function Te(n,o){if(1&n&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function we(n,o){if(1&n&&t.nrm(0,"span",25),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function je(n,o){if(1&n&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Te,2,1,"span",21)(3,we,1,1,"span",22),t.EFF(4),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function De(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Pe(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Ge(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function Ae(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-form-field",4)(1,"mat-label"),t.EFF(2,"Amount (Sats)"),t.k0s(),t.j41(3,"input",26,2),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.paymentAmount,a)||(s.paymentAmount=a),t.Njj(a)}),t.bIt("change",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onAmountChange(a))}),t.k0s(),t.j41(5,"mat-hint"),t.EFF(6,"It is a zero amount invoice, enter amount to be paid."),t.k0s(),t.DNE(7,Ge,2,0,"mat-error",14),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ne(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Me(n,o){if(1&n&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ne,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let Be=(()=>{class n{constructor(e,i,a,s,r,m,T,y){this.dialogRef=e,this.store=i,this.eclEffects=a,this.logger=s,this.commonService=r,this.decimalPipe=m,this.actions=T,this.dataService=y,this.faExclamationTriangle=F.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.feeLimitTypes=l.nv,this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.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.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,q.s)(1)).subscribe({next:e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:e=>{this.logger.error(e),this.paymentDecodedHintPre="ERROR: "+(e.message?e.message:"string"==typeof e?e:JSON.stringify(e)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,k.Fd)(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.paymentDecodedHintPre="",this.paymentDecodedHintPost="",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.s)(1)).subscribe({next:i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:i=>{this.logger.error(i),this.paymentDecodedHintPre="ERROR: "+(i.message?i.message:"string"==typeof i?i:JSON.stringify(i)),this.paymentDecodedHintPost="",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.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(R.il),t.rXU(pt.B),t.rXU(G.gP),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(i,a){if(1&i&&t.GBs(ke,5),2&i){let s;t.mGM(s=t.lsd())&&(a.paymentReq=s.first)}},decls:26,vars:7,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["paymentAmt","ngModel"],["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 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"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[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"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",8),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",9)(9,"form",10,0)(11,"mat-form-field",11)(12,"mat-label"),t.EFF(13,"Payment Request"),t.k0s(),t.j41(14,"textarea",12,1),t.bIt("ngModelChange",function(m){return t.eBV(s),t.Njj(a.onPaymentRequestEntry(m))})("matTextareaAutosize",function(){return t.eBV(s),t.Njj(!0)}),t.k0s(),t.DNE(16,je,5,4,"mat-hint",13)(17,De,2,0,"mat-error",14)(18,Pe,2,1,"mat-error",14),t.k0s(),t.DNE(19,Ae,8,2,"mat-form-field",15)(20,Me,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&i){const s=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",a.paymentRequest),t.R7$(2),t.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!a.paymentRequest),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.decodeError),t.R7$(),t.Y8G("ngIf",a.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==a.paymentError)}},dependencies:[p.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,W.N]})}return n})();var Y=_(9454);const $e=["scrollContainer"];function Ve(n,o){if(1&n&&(t.j41(0,"div",9)(1,"div",2)(2,"h4",11),t.EFF(3,"Description"),t.k0s(),t.j41(4,"span",12),t.EFF(5),t.k0s()()()),2&n){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Oe(n,o){1&n&&t.nrm(0,"mat-divider",14)}function He(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onExpansionOpen(!0))})("closed",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onExpansionOpen(!1))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t.EFF(4),t.k0s(),t.j41(5,"h4",25),t.EFF(6),t.nI1(7,"number"),t.k0s()()(),t.j41(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t.EFF(12,"Fees (mSats)"),t.k0s(),t.j41(13,"span",12),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div",26)(17,"h4",11),t.EFF(18,"Date/Time"),t.k0s(),t.j41(19,"span",12),t.EFF(20),t.nI1(21,"date"),t.k0s()()(),t.nrm(22,"mat-divider",14),t.j41(23,"div",9)(24,"div",2)(25,"h4",11),t.EFF(26,"ID"),t.k0s(),t.j41(27,"span",27),t.EFF(28),t.k0s()()(),t.nrm(29,"mat-divider",14),t.j41(30,"div",9)(31,"div",2)(32,"h4",11),t.EFF(33,"To Channel"),t.k0s(),t.j41(34,"span",27),t.EFF(35),t.k0s()()()()()}if(2&n){const e=o.$implicit,i=o.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",i+1,""),t.R7$(2),t.SpI("",t.bMT(7,7,e.amount)," (Sats)"),t.R7$(8),t.JRh(t.bMT(15,9,e.feesPaid)),t.R7$(6),t.JRh(t.i5U(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(e.id),t.R7$(7),t.JRh(e.toChannelAlias)}}let Ye=(()=>{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)}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(i,a){if(1&i&&t.GBs($e,5),2&i){let s;t.mGM(s=t.lsd())&&(a.scrollContainer=s.first)}},decls:66,vars:15,consts:[["scrollContainer",""],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["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,"opened","closed","expanded"],["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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Payment Information"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7,0)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t.EFF(14,"Amount (Sats)"),t.k0s(),t.j41(15,"span",12),t.EFF(16),t.nI1(17,"number"),t.k0s()(),t.j41(18,"div",13)(19,"h4",11),t.EFF(20,"Date/Time"),t.k0s(),t.j41(21,"span",12),t.EFF(22),t.nI1(23,"date"),t.k0s()()(),t.nrm(24,"mat-divider",14),t.j41(25,"div",9)(26,"div",2)(27,"h4",11),t.EFF(28,"ID"),t.k0s(),t.j41(29,"span",12),t.EFF(30),t.k0s()()(),t.nrm(31,"mat-divider",14),t.j41(32,"div",9)(33,"div",2)(34,"h4",11),t.EFF(35,"Payment Hash"),t.k0s(),t.j41(36,"span",12),t.EFF(37),t.k0s()()(),t.nrm(38,"mat-divider",14),t.j41(39,"div",9)(40,"div",2)(41,"h4",11),t.EFF(42,"Payment Preimage"),t.k0s(),t.j41(43,"span",12),t.EFF(44),t.k0s()()(),t.nrm(45,"mat-divider",14),t.j41(46,"div",9)(47,"div",2)(48,"h4",11),t.EFF(49,"Recipient Node"),t.k0s(),t.j41(50,"span",12),t.EFF(51),t.k0s()()(),t.nrm(52,"mat-divider",14),t.DNE(53,Ve,6,1,"div",15)(54,Oe,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,He,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onScrollDown())}),t.j41(61,"mat-icon",20),t.EFF(62,"arrow_downward"),t.k0s()()(),t.j41(63,"div",21)(64,"button",22),t.EFF(65,"OK"),t.k0s()()()()}2&i&&(t.R7$(16),t.JRh(t.bMT(17,10,a.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,a.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(a.payment.id),t.R7$(7),t.JRh(a.payment.paymentHash),t.R7$(7),t.JRh(a.payment.paymentPreimage),t.R7$(7),t.JRh(a.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",a.description),t.R7$(),t.Y8G("ngIf",a.description),t.R7$(4),t.Y8G("ngForOf",a.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[p.Sq,p.bT,h.DJ,h.sA,h.UI,B.tx,j.$z,j.$0,E.m2,E.MM,Y.BS,Y.GK,Y.Z2,Y.WN,ct.An,Z.q,A.Ld,p.QX,p.vh]})}return n})();var v=_(1771),at=_(7541),z=_(2929),X=_(6600);const Xe=["sendPaymentForm"],Ue=()=>["all"],ze=n=>({"error-border":n}),Je=()=>["no_payment"],$=n=>({width:n}),qe=n=>({"display-none":n});function Qe(n,o){if(1&n&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Ze(n,o){if(1&n&&t.nrm(0,"span",20),2&n){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function We(n,o){if(1&n&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,Qe,2,1,"span",16)(3,Ze,1,1,"span",17),t.EFF(4),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function Ke(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function tn(n,o){if(1&n){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Payment Request"),t.k0s(),t.j41(5,"textarea",9,1),t.bIt("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return t.eBV(e),t.Njj(!0)}),t.k0s(),t.DNE(7,We,5,4,"mat-hint",10)(8,Ke,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&n){const e=t.XpG();t.R7$(5),t.Y8G("ngModel",e.paymentRequest),t.R7$(2),t.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!e.paymentRequest)}}function en(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function nn(n,o){if(1&n&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function an(n,o){1&n&&t.nrm(0,"mat-progress-bar",67)}function on(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function sn(n,o){if(1&n&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function ln(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function rn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function cn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function pn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function un(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function dn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function hn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function fn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function _n(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function gn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function Cn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function yn(n,o){1&n&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function bn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function Fn(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",74)(1,"div",75)(2,"mat-select",76),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",77),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function En(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function xn(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function Ln(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function Sn(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function vn(n,o){if(1&n&&(t.j41(0,"td",80),t.DNE(1,xn,2,0,"p",11)(2,Ln,2,0,"p",11)(3,Sn,2,1,"p",11),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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 Rn(n,o){if(1&n&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function In(n,o){if(1&n&&(t.qex(0),t.DNE(1,Rn,3,4,"span",82),t.bVm()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function kn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,In,2,1,"ng-container",11),t.k0s()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" Total Attempts: ",(null==e||null==e.parts?null:e.parts.length)||0," "),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Tn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.id)}}function wn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Tn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function jn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,wn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Dn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Pn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Dn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Gn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Pn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function An(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Nn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,An,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Nn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Bn(n,o){if(1&n&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function $n(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Bn,3,4,"span",85),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Vn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,$n,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.i5U(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.R7$(2),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function On(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Hn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,On,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Yn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Hn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Xn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Un(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Xn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function zn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Un,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Jn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function qn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Jn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Qn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,qn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Zn(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onPartClick(a,s))}),t.EFF(2),t.k0s()()}if(2&n){const e=o.index;t.R7$(2),t.SpI("View ",e+1,"")}}function Wn(n,o){if(1&n&&(t.j41(0,"div"),t.DNE(1,Zn,3,1,"div",88),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Kn(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=t.eBV(e).$implicit;return t.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,Wn,2,1,"div",11),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(3),t.JRh(null!=e&&e.is_expanded?"Hide":"Show"),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ti(n,o){1&n&&t.nrm(0,"tr",91)}function ei(n,o){if(1&n&&t.nrm(0,"tr",92),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,qe,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function ni(n,o){1&n&&t.nrm(0,"tr",93)}function ii(n,o){1&n&&t.nrm(0,"tr",91)}function ai(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",22)(1,"div",23)(2,"div",24),t.nrm(3,"fa-icon",25),t.j41(4,"span",26),t.EFF(5,"Payments History"),t.k0s()(),t.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",29),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,nn,2,2,"mat-option",30),t.k0s()()(),t.j41(13,"mat-form-field",28)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",31),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,an,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,on,2,0,"th",37)(24,sn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,ln,2,0,"th",37)(27,rn,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,cn,2,0,"th",37)(30,mn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,pn,2,0,"th",37)(33,un,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,dn,2,0,"th",37)(36,hn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,fn,2,0,"th",37)(39,_n,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,gn,2,0,"th",37)(42,Cn,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,yn,2,0,"th",46)(45,bn,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,Fn,6,0,"th",48)(48,En,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,vn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,kn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,jn,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Gn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,Mn,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Vn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Yn,5,5,"td",38),t.bVm(),t.qex(63,58),t.DNE(64,zn,5,5,"td",38),t.bVm(),t.qex(65,59),t.DNE(66,Qn,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,Kn,5,2,"td",38),t.bVm(),t.DNE(69,ti,1,0,"tr",61)(70,ei,1,3,"tr",62)(71,ni,1,0,"tr",63)(72,ii,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(17,Ue).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(3),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",t.eq3(18,ze,""!==e.errorMessage)),t.R7$(49),t.Y8G("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.R7$(),t.Y8G("matFooterRowDef",t.lJ4(20,Je)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Rt=(()=>{class n{constructor(e,i,a,s,r,m,T,y){this.logger=e,this.commonService=i,this.store=a,this.rtlEffects=s,this.decimalPipe=r,this.dataService=m,this.datePipe=T,this.camelCaseWithSpaces=y,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"firstPartTimestamp",sortOrder:l.oi.DESCENDING},this.faHistory=F.Int,this.newlyAddedPayment="",this.information={},this.payments=new c.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.partColumns=[],this.displayedColumns.map(i=>this.partColumns.push("group_"+i)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,k.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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&&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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.firstPartTimestamp?this.datePipe.transform(new Date(e.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"firstPartTimestamp":a=this.datePipe.transform(new Date(e.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadPaymentsTable(e){this.payments=new c.I6(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,a)=>{switch(a){case"firstPartTimestamp":return this.commonService.sortByKey(i.parts,"timestamp","number",this.sort?.direction),i.firstPartTimestamp;case"id":return this.commonService.sortByKey(i.parts,"id","string",this.sort?.direction),i.id;case"recipientNodeAlias":return this.commonService.sortByKey(i.parts,"toChannelAlias","string",this.sort?.direction),i.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(i.parts,"amount","number",this.sort?.direction),i.recipientAmount;default:return i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null}},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,q.s)(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,v.I1)({payload:{data:{type:l.A$.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.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(i=>{i&&(this.store.dispatch((0,k.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.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.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.UN.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.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.amount=a[0].inputValue,this.store.dispatch((0,k.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*a[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,q.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[4])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,v.xO)({payload:{data:{component:Be}}}))}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,q.s)(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,v.xO)({payload:{data:{sentPaymentInfo:i,payment:e,component:Ye}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,q.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPartView(e,i,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,a){const s=[[{key:"paymentHash",value:i.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"paymentPreimage",value:i.paymentPreimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"Channel",width:100,type:l.UN.STRING}],[{key:"id",value:e.id,title:"Part ID",width:50,type:l.UN.STRING},{key:"timestamp",value:e.timestamp,title:"Time",width:50,type:l.UN.DATE_TIME}],[{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"feesPaid",value:e.feesPaid,title:"Fee (Sats)",width:50,type:l.UN.NUMBER}]];a&&a.length>0&&a[0].paymentRequest&&a[0].paymentRequest.description&&""!==a[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:a[0].paymentRequest.description,title:"Description",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Part Information",message:s}}}))}onPageChange(e){this.store.dispatch((0,k.CK)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=e?.reduce((a,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(a=""===a?s.paymentHash:a+","+s.paymentHash),a),"");this.dataService.decodePayments(i).pipe((0,f.Q)(this.unSubs[5])).subscribe(a=>{a.forEach((r,m)=>{r.length>0&&r[0].paymentRequest&&r[0].paymentRequest.description&&""!==r[0].paymentRequest.description&&(e[m].description=r[0].paymentRequest.description)});const s=e?.reduce((r,m)=>r.concat(m),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(at.H),t.rXU(p.QX),t.rXU(et.u),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(i,a){if(1&i&&(t.GBs(Xe,5),t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["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"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[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 wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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 center",1,"part-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["class","part-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-details"],["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(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,tn,14,3,"form",4)(2,en,3,0,"div",5)(3,ai,74,21,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.ZF,A.Ld,p.QX,p.vh],styles:[".mat-column-group_actions[_ngcontent-%COMP%] .part-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .part-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.part-row-span[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:11rem}"]})}return n})();var K=_(6114);function oi(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function si(n,o){1&n&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function li(n,o){if(1&n&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ri(n,o){if(1&n&&t.nrm(0,"span",32),2&n){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function ci(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function mi(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function pi(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,mi,2,1,"span",11),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let ui=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.store=a,this.decimalPipe=s,this.commonService=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,f.Q)(this.unSubs[2]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===e.payload.action&&(e.payload.status===l.wn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){if(this.invoiceError="",!this.description)return!0;let i=this.expiry?this.expiry:l.It;this.expiry&&this.selTimeUnit!==l.F7.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS));let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.iO)({payload:a}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-create-invoices"]],decls:44,vars:19,consts:[["addInvoiceForm","ngForm"],["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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","type","number","name","exp","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"selectionChange","value"],[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"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Create Invoice"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),t.EFF(13,"Description"),t.k0s(),t.j41(14,"input",10),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.description,m)||(a.description=m),t.Njj(m)}),t.k0s(),t.DNE(15,oi,2,0,"mat-error",11),t.k0s(),t.j41(16,"div",12)(17,"mat-form-field",13)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",14),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.invoiceValue,m)||(a.invoiceValue=m),t.Njj(m)}),t.bIt("keyup",function(){return t.eBV(s),t.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,si,2,0,"span",17)(25,li,2,1,"span",18)(26,ri,1,1,"span",19),t.EFF(27),t.k0s()(),t.j41(28,"mat-form-field",20)(29,"mat-label"),t.EFF(30,"Expiry"),t.k0s(),t.j41(31,"input",21),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.expiry,m)||(a.expiry=m),t.Njj(m)}),t.k0s(),t.j41(32,"span",15),t.EFF(33),t.nI1(34,"titlecase"),t.k0s()(),t.j41(35,"mat-form-field",22)(36,"mat-select",23),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.onTimeUnitChange(m))}),t.DNE(37,ci,3,4,"mat-option",24),t.k0s()()(),t.DNE(38,pi,3,2,"div",25),t.j41(39,"div",26)(40,"button",27),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(41,"Clear Field"),t.k0s(),t.j41(42,"button",28),t.bIt("click",function(){t.eBV(s);const m=t.sdS(10);return t.Njj(a.onAddInvoice(m))}),t.EFF(43,"Create Invoice"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.description),t.R7$(),t.Y8G("ngIf",!a.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",a.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.SpI(" ",a.invoiceValueHint," "),t.R7$(4),t.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",a.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,a.selTimeUnit)," "),t.R7$(3),t.Y8G("value",a.selTimeUnit),t.R7$(),t.Y8G("ngForOf",a.timeUnits),t.R7$(),t.Y8G("ngIf",""!==a.invoiceError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,S.VO,X.wT,W.N,K.V,p.PV]})}return n})();var di=_(6439);const hi=()=>["all"],fi=n=>({"error-border":n}),_i=()=>["no_invoice"],ut=n=>({"mr-0":n}),dt=n=>({width:n}),gi=n=>({"display-none":n});function Ci(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function yi(n,o){1&n&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function bi(n,o){if(1&n&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Fi(n,o){if(1&n&&t.nrm(0,"span",24),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ei(n,o){if(1&n){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Description"),t.k0s(),t.j41(5,"input",9),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.description,a)||(s.description=a),t.Njj(a)}),t.k0s(),t.DNE(6,Ci,2,0,"mat-error",10),t.k0s(),t.j41(7,"mat-form-field",11)(8,"mat-label"),t.EFF(9,"Amount"),t.k0s(),t.j41(10,"input",12,1),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.invoiceValue,a)||(s.invoiceValue=a),t.Njj(a)}),t.bIt("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(12,"span",13),t.EFF(13,"Sats "),t.k0s(),t.j41(14,"mat-hint",14),t.DNE(15,yi,2,0,"span",15)(16,bi,2,1,"span",16)(17,Fi,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){t.eBV(e);const a=t.sdS(1),s=t.XpG();return t.Njj(s.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&n){const e=t.XpG();t.R7$(5),t.R50("ngModel",e.description),t.R7$(),t.Y8G("ngIf",!e.description),t.R7$(4),t.Y8G("step",100)("min",1),t.R50("ngModel",e.invoiceValue),t.R7$(5),t.Y8G("ngIf",""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.SpI(" ",e.invoiceValueHint," ")}}function xi(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function Li(n,o){if(1&n&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Si(n,o){1&n&&t.nrm(0,"mat-progress-bar",64)}function vi(n,o){1&n&&t.nrm(0,"th",65)}function Ri(n,o){if(1&n&&t.nrm(0,"span",70),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ii(n,o){if(1&n&&t.nrm(0,"span",71),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function ki(n,o){if(1&n&&t.nrm(0,"span",72),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ti(n,o){if(1&n&&(t.j41(0,"td",66),t.DNE(1,Ri,1,3,"span",67)(2,Ii,1,3,"span",68)(3,ki,1,3,"span",69),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","received"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf","unpaid"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf",!(null!=e&&e.status)||"expired"===(null==e?null:e.status)||"unknown"===(null==e?null:e.status))}}function wi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function ji(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Di(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Pi(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Gi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function Ai(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Ni(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Mi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Bi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function $i(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Vi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Oi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Hi(n,o){1&n&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Yi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function Xi(n,o){1&n&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Ui(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function zi(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",79)(1,"div",80)(2,"mat-select",81),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Ji(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",83)(1,"div",80)(2,"mat-select",84),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function Qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function Zi(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Wi(n,o){if(1&n&&(t.j41(0,"td",85),t.DNE(1,qi,2,0,"p",10)(2,Qi,2,0,"p",10)(3,Zi,2,1,"p",10),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function Ki(n,o){if(1&n&&t.nrm(0,"tr",86),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,gi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function ta(n,o){1&n&&t.nrm(0,"tr",87)}function ea(n,o){1&n&&t.nrm(0,"tr",88)}function na(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",27)(1,"div",28)(2,"div",29),t.nrm(3,"fa-icon",30),t.j41(4,"span",31),t.EFF(5,"Invoices History"),t.k0s()(),t.j41(6,"div",32)(7,"mat-form-field",33)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",34),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Li,2,2,"mat-option",35),t.k0s()()(),t.j41(13,"mat-form-field",33)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",36),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Si,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,vi,1,0,"th",41)(23,Ti,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,wi,2,0,"th",44)(26,ji,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Di,2,0,"th",44)(29,Pi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Gi,2,0,"th",44)(32,Ai,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Ni,2,0,"th",44)(35,Mi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Bi,2,0,"th",44)(38,$i,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Vi,2,0,"th",44)(41,Oi,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,Hi,2,0,"th",51)(44,Yi,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,Xi,2,0,"th",53)(47,Ui,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,zi,6,0,"th",55)(50,Ji,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,Wi,4,3,"td",58),t.bVm(),t.DNE(53,Ki,1,3,"tr",59)(54,ta,1,0,"tr",60)(55,ea,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,hi).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(2),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",t.eq3(16,fi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,_i)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let It=(()=>{class n{constructor(e,i,a,s,r,m,T){this.logger=e,this.store=i,this.decimalPipe=a,this.commonService=s,this.datePipe=r,this.actions=m,this.camelCaseWithSpaces=T,this.calledFrom="transactions",this.faHistory=F.Int,this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"expiresAt",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new c.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,k.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.rN).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,v.xO)({payload:{data:{pageSize:this.pageSize,component:ui}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.iO)({payload:a})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,v.xO)({payload:{data:{invoice:e,newlyAdded:!1,component:di.Z}}}))}onRefreshInvoice(e){this.store.dispatch((0,k.Yi)({payload:e.paymentHash}))}updateInvoicesData(e){this.invoiceJSONArr=this.invoiceJSONArr?.map(i=>i.paymentHash===e.paymentHash?e:i)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"status":a=e?.status&&"expired"!==e?.status&&"unknown"!==e?.status?e.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":a=e[this.selFilterBy]?.toString()||"-";break;default:a=typeof e[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadInvoicesTable(e){this.invoices=new c.I6(e?[...e]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[5])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onPageChange(e){this.store.dispatch((0,k.Do)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(p.vh),t.rXU(Q.En),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["invcVal","ngModel"],["table",""],["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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description","required","true",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["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"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,Ei,24,9,"form",4)(2,xi,3,0,"div",5)(3,na,57,19,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,K.V,p.QX,p.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const kt=n=>({"dashboard-card-content":!0,"error-border":n}),ia=n=>({"p-0":n});function aa(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function oa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG().$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function sa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){t.eBV(e);const a=t.XpG(3);return t.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&n){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function la(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ra(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",31),2&n){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ca(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ma(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&n){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function pa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-fee-info",34),2&n){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function ua(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&n){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function da(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function ha(n,o){if(1&n&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),t.nrm(5,"fa-icon",14),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"div"),t.DNE(9,aa,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,oa,2,1,"button",17)(13,sa,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,la,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ra,1,2,"rtl-ecl-node-info",22)(18,ca,1,2,"rtl-ecl-balances-info",23)(19,ma,1,4,"rtl-ecl-channel-capacity-info",24)(20,pa,1,2,"rtl-ecl-fee-info",25)(21,ua,1,2,"rtl-ecl-channel-status-info",26)(22,da,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(5),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions),t.R7$(),t.Y8G("ngIf","capacity"===e.id),t.R7$(),t.FS9("fxFlex","capacity"===e.id?90:70),t.Y8G("ngClass",t.eq3(16,kt,"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.R7$(),t.Y8G("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.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","capacity"),t.R7$(),t.Y8G("ngSwitchCase","fee"),t.R7$(),t.Y8G("ngSwitchCase","status")}}function fa(n,o){if(1&n&&(t.j41(0,"div",5)(1,"div",6),t.nrm(2,"fa-icon",7),t.j41(3,"span",8),t.EFF(4),t.k0s()(),t.j41(5,"mat-grid-list",9),t.DNE(6,ha,23,18,"mat-grid-tile",10),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.R7$(2),t.JRh(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.R7$(),t.Y8G("rowHeight",e.operatorCardHeight),t.R7$(),t.Y8G("ngForOf",e.operatorCards)}}function _a(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function ga(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Ca(n,o){if(1&n&&(t.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),t.nrm(3,"fa-icon",14),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.j41(6,"div"),t.DNE(7,_a,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,ga,2,1,"button",17),t.k0s()()()()),2&n){const e=t.XpG().$implicit;t.R7$(3),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions)}}function ya(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ba(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",44),2&n){const e=t.XpG(3);t.Y8G("information",e.information)}}function Fa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Ea(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","In")("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function xa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function La(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Sa(n,o){if(1&n&&(t.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),t.nrm(3,"rtl-ecl-lightning-invoices",49),t.k0s(),t.j41(4,"mat-tab",50),t.nrm(5,"rtl-ecl-lightning-payments",51),t.k0s()(),t.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,La,2,1,"button",17),t.k0s()()()),2&n){const e=t.sdS(11),i=t.XpG().$implicit;t.R7$(3),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",i.goToOptions)}}function va(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ra(n,o){if(1&n&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ca,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,ya,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,ba,1,1,"rtl-ecl-node-info",41)(7,Fa,1,2,"rtl-ecl-balances-info",23)(8,Ea,1,4,"rtl-ecl-channel-liquidity-info",42)(9,xa,1,4,"rtl-ecl-channel-liquidity-info",42)(10,Sa,13,4,"span",43)(11,va,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(13,ia,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.FS9("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),t.Y8G("ngClass",t.eq3(15,kt,"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.R7$(),t.Y8G("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.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","inboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","outboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","transactions")}}function Ia(n,o){if(1&n&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",7),t.j41(2,"span",8),t.EFF(3),t.k0s()(),t.j41(4,"mat-grid-list",37),t.DNE(5,Ra,12,17,"mat-grid-tile",10),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faSmile),t.R7$(2),t.SpI("Welcome ",e.information.alias,"! Your node is up and running."),t.R7$(),t.Y8G("rowHeight",e.merchantCardHeight),t.R7$(),t.Y8G("ngForOf",e.merchantCards)}}let ka=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.router=s,this.faSmile=Lt.Qpm,this.faFrown=Lt.wB1,this.faAngleDoubleDown=F.WxX,this.faAngleDoubleUp=F.$sC,this.faChartPie=F.W1p,this.faBolt=F.zm_,this.faServer=F.D6w,this.faNetworkWired=F.eGi,this.userPersonaEnum=l.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},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="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:l.wn.COMPLETED},this.apiCallStatusFees={status:l.wn.COMPLETED},this.apiCallStatusOCBal={status:l.wn.COMPLETED},this.apiCallStatusAllChannels={status:l.wn.COMPLETED},this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.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.f7.SM||this.screenSize===l.f7.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(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.b_).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.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.oR).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusFees=e.apiCallStatus,this.apiCallStatusFees.status===l.wn.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.Ou).pipe((0,f.Q)(this.unSubs[3]),(0,rt.E)(this.store.select(C.DW))).subscribe(([e,i])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=e.apiCallStatus,this.apiCallStatusOCBal=i.apiCallStatus,this.apiCallStatusAllChannels.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===l.wn.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 a=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,s=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:a,remoteBalance:s,balancedness:+(1-Math.abs((a-s)/(a+s))).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(this.channels?.filter(m=>(m.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(m=>(m.toLocal||0)>0),"toLocal"))),this.channels.forEach(m=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(m.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(m.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 a=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return a>s?-1:a{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-home"]],decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["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"],["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","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(i,a){if(1&i&&t.DNE(0,fa,7,4,"div",4)(1,Ia,6,4,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,p.ux,p.e1,p.fG,w.aY,h.DJ,h.sA,h.UI,L.PW,j.iY,E.RN,E.m2,E.MM,E.dh,St.B_,St.NS,ct.An,mt.kk,mt.fb,mt.Cp,V.HM,D.mq,D.T8,Zt,te,ie,se,he,Ie,Rt,It]})}return n})();const Ta=["form"];function wa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function ja(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Da(n,o){if(1&n&&(t.j41(0,"mat-option",29),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Pa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function Ga(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Aa(n,o){if(1&n&&(t.j41(0,"div",30),t.nrm(1,"fa-icon",31),t.DNE(2,Ga,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let Tt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.logger=i,this.store=a,this.commonService=s,this.decimalPipe=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.addressTypes=[],this.selectedAddress=l.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,this.amountError="Amount is Required.",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(e=>{e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,v.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendOnchainFunds"===e.payload.action&&(this.sendFundError=e.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.transaction.amount=parseInt(e[l.BQ.SATS]),this.selAmountUnit=l.BQ.SATS,this.store.dispatch((0,k.Lz)({payload:this.transaction}))},error:e=>{this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,k.Lz)({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,a=this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit;let s=e.value===this.amountUnits[2]?l.BQ.OTHER:e.value;this.transaction.amount&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(this.transaction.amount,a,s,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:r=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(r[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:r=>{this.amountError="Conversion Error: "+r,this.selAmountUnit=a,s=a}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(i,a){if(1&i&&t.GBs(Ta,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:42,vars:15,consts:[["form","ngForm"],["addrs","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["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 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"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","addr","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start center"],["matInput","","type","number","name","blocks","tabindex","8","required","true",3,"ngModelChange","step","min","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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",9),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",10)(9,"form",11,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onSendFunds())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"mat-form-field",12)(12,"mat-label"),t.EFF(13,"Bitcoin Address"),t.k0s(),t.j41(14,"input",13,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.address,m)||(a.transaction.address=m),t.Njj(m)}),t.k0s(),t.DNE(16,wa,2,0,"mat-error",14),t.k0s(),t.j41(17,"mat-form-field",15)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",16,2),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.amount,m)||(a.transaction.amount=m),t.Njj(m)}),t.k0s(),t.j41(22,"span",17),t.EFF(23),t.k0s(),t.DNE(24,ja,2,1,"mat-error",14),t.k0s(),t.j41(25,"mat-form-field",18)(26,"mat-select",19),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.onAmountUnitChange(m))}),t.DNE(27,Da,2,2,"mat-option",20),t.k0s()(),t.j41(28,"div",21)(29,"mat-form-field",22)(30,"mat-label"),t.EFF(31,"Target Confirmation Blocks"),t.k0s(),t.j41(32,"input",23,3),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.blocks,m)||(a.transaction.blocks=m),t.Njj(m)}),t.k0s(),t.DNE(34,Pa,2,0,"mat-error",14),t.k0s()(),t.nrm(35,"div",24),t.DNE(36,Aa,3,2,"div",25),t.j41(37,"div",26)(38,"button",27),t.EFF(39,"Clear Fields"),t.k0s(),t.j41(40,"button",28),t.EFF(41,"Send Funds"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.transaction.address),t.R7$(2),t.Y8G("ngIf",!a.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",a.transaction.amount),t.R7$(3),t.SpI("",a.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!a.transaction.amount),t.R7$(2),t.Y8G("value",a.selAmountUnit),t.R7$(),t.Y8G("ngForOf",a.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==a.sendFundError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.TL,g.yw,S.VO,X.wT,W.N,K.V]})}return n})();var ht=_(5837);const Na=()=>["all"],Ma=n=>({"error-border":n}),Ba=()=>["no_transaction"],ft=n=>({width:n}),$a=n=>({"display-none":n});function Va(n,o){if(1&n&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Oa(n,o){1&n&&t.nrm(0,"mat-progress-bar",35)}function Ha(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function Ya(n,o){if(1&n&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Xa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function Ua(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function za(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function Ja(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function qa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function Qa(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function Za(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function Wa(n,o){if(1&n&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function Ka(n,o){if(1&n&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function to(n,o){if(1&n&&(t.j41(0,"td",37),t.DNE(1,Wa,3,3,"span",41)(2,Ka,3,3,"span",42),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)>0||0===(null==e?null:e.amount)),t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)<0)}}function eo(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function no(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function io(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function ao(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function oo(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function so(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onTransactionClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function lo(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function ro(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function co(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function mo(n,o){if(1&n&&(t.j41(0,"td",51),t.DNE(1,lo,2,0,"p",52)(2,ro,2,0,"p",52)(3,co,2,1,"p",52),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function po(n,o){if(1&n&&t.nrm(0,"tr",53),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,$a,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function uo(n,o){1&n&&t.nrm(0,"tr",54)}function ho(n,o){1&n&&t.nrm(0,"tr",55)}let fo=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.faHistory=F.Int,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===l.wn.COMPLETED&&(this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,k.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(C.gN).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.listTransactions.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}onTransactionClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:e.blockHash||e.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:e.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:e.timestamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"confirmations",value:e.confirmations,title:"Number of Confirmations",width:50,type:l.UN.NUMBER}],[{key:"fees",value:e.fees,title:"Fees (Sats)",width:50,type:l.UN.NUMBER},{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100,type:l.UN.STRING}]]}}}))}loadTransactionsTable(e){this.listTransactions=new c.I6([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(e){this.store.dispatch((0,k.mh)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Transactions")}])],decls:52,vars:19,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5,"Transaction History"),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Va,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Oa,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ha,2,0,"th",16)(24,Ya,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Xa,2,0,"th",16)(27,Ua,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,za,2,0,"th",16)(30,Ja,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,qa,2,0,"th",16)(33,Qa,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,Za,2,0,"th",22)(36,to,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,eo,2,0,"th",22)(39,no,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,io,2,0,"th",22)(42,ao,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,oo,6,0,"th",26)(45,so,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,mo,4,3,"td",29),t.bVm(),t.DNE(48,po,1,3,"tr",30)(49,uo,1,0,"tr",31)(50,ho,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&i&&(t.R7$(3),t.Y8G("icon",a.faHistory),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Na).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(3),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",t.eq3(16,Ma,""!==a.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,Ba)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.ZF,A.Ld,p.QX,p.vh]})}return n})();function _o(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let go=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.faExchangeAlt=F._qq,this.faChartPie=F.W1p,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 u.B,new u.B,new u.B,new u.B]}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,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(C.DW).pipe((0,f.Q)(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,v.xO)({payload:{data:{component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain"]],decls:23,vars:5,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["fxLayout","row","fxFlex","100"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",1),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"On-chain Transactions"),t.k0s()(),t.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),t.DNE(16,_o,2,3,"div",9),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",10),t.nrm(20,"router-outlet"),t.k0s(),t.j41(21,"div",10),t.nrm(22,"rtl-ecl-on-chain-transaction-history",11),t.k0s()()()()),2&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk,fo]})}return n})();var wt=_(1975);function Co(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activeChannels)}}function yo(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activePeers)}}let bo=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=F.gdJ,this.faChartPie=F.W1p,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 u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.Ou).pipe((0,f.Q)(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.DW).pipe((0,f.Q)(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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({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"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["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(i,a){1&i&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t.nrm(7,"rtl-currency-unit-converter",5),t.k0s()()(),t.j41(8,"div",0),t.nrm(9,"fa-icon",1),t.j41(10,"span",2),t.EFF(11,"Connections"),t.k0s()(),t.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.mxI("selectedIndexChange",function(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(16,"mat-tab"),t.DNE(17,Co,2,1,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,yo,2,1,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&i&&(t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faUsers),t.R7$(6),t.R50("selectedIndex",a.activeLink))},dependencies:[w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,wt.k,D.ES,D.mq,D.T8,ht.f,b.n3]})}return n})();function Fo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Eo=(()=>{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,this.faExchangeAlt=F._qq,this.faChartPie=F.W1p,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 u.B,new u.B,new u.B,new u.B]}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,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(U._c))).subscribe(([i,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a&&a.settings.userPersona===l.HW.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions"]],decls:21,vars:5,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Lightning Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",7),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"Lightning Transactions"),t.k0s()(),t.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),t.DNE(16,Fo,2,3,"div",10),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",11),t.nrm(20,"router-outlet"),t.k0s()()()()),2&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk]})}return n})();function xo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Lo=(()=>{class n{constructor(e){this.router=e,this.faMapSigns=F.knH,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 u.B,new u.B,new u.B]}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,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing"]],decls:15,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Routing"),t.k0s()(),t.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),t.DNE(10,xo,2,3,"div",10),t.k0s(),t.nrm(11,"mat-tab-nav-panel",null,0),t.k0s(),t.j41(13,"div",11),t.nrm(14,"router-outlet"),t.k0s()()()()()),2&i){const s=t.sdS(12);t.R7$(2),t.Y8G("icon",a.faMapSigns),t.R7$(7),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();var ot=_(5951),jt=_(450),tt=_(6013);const So=["peersForm"],vo=["stepper"];function Ro(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.peerFormLabel)}}function Io(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function ko(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function To(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.channelFormLabel)}}function wo(n,o){if(1&n&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",35),t.j41(2,"span",13)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",37)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown",""),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown",""),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown",""),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown",""),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown","")}}function jo(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Do(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Po(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Go(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Ao(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let Dt=(()=>{class n{constructor(e,i,a,s,r,m,T){this.dialogRef=e,this.data=i,this.store=a,this.formBuilder=s,this.actions=r,this.logger=m,this.dataService=T,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.iW_,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.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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:["",[d.k0.required]],peerAddress:[this.peerAddress,[d.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],feeRate:[null],hiddenAmount:["",[d.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.channelFormGroup.controls.isPrivate.setValue(!!e?.settings.unannouncedChannels)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.NEWLY_ADDED_PEER_ECL||e.type===l.Uu.FETCH_CHANNELS_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.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.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&("SaveNewPeer"===e.payload.action?this.peerConnectionError=e.payload.message:"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,k.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return this.channelFormGroup.controls.feeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.feeRate.value?(this.channelFormGroup.controls.feeRate.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||(this.channelConnectionError="",void this.store.dispatch((0,k.vL)({payload:{nodeId:this.newlyAddedPeer?.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){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: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(d.ze),t.rXU(Q.En),t.rXU(G.gP),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(i,a){if(1&i&&(t.GBs(So,5),t.GBs(vo,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.stepper=s.first)}},decls:59,vars:25,consts:[["stepper",""],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[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","fxFlex","100"],["autoFocus","","matInput","","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"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxLayout","column","fxFlex","40"],["matInput","","formControlName","feeRate","type","number","name","feeRate","tabindex","7",3,"step","min"],["fxFlex","20","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"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Connect to a new peer"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.stepSelectionChanged(m))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Ro,1,1,"ng-template",12),t.j41(15,"mat-form-field",13)(16,"mat-label"),t.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),t.k0s(),t.nrm(18,"input",14),t.DNE(19,Io,2,0,"mat-error",15),t.k0s(),t.DNE(20,ko,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,To,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,wo,16,6,"div",22),t.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),t.EFF(32,"Amount"),t.k0s(),t.nrm(33,"input",25),t.j41(34,"mat-hint"),t.EFF(35),t.nI1(36,"number"),t.k0s(),t.j41(37,"span",26),t.EFF(38," Sats "),t.k0s(),t.DNE(39,jo,2,0,"mat-error",15)(40,Do,2,0,"mat-error",15)(41,Po,2,1,"mat-error",15),t.k0s(),t.j41(42,"mat-form-field",27)(43,"mat-label"),t.EFF(44,"Fee (Sats/vByte)"),t.k0s(),t.nrm(45,"input",28),t.j41(46,"mat-hint"),t.EFF(47),t.k0s(),t.DNE(48,Go,2,1,"mat-error",15),t.k0s(),t.j41(49,"div",29)(50,"mat-slide-toggle",30),t.EFF(51,"Private Channel"),t.k0s()()()(),t.DNE(52,Ao,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(58),t.k0s()()()()()()}2&i&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==a.peerConnectionError),t.R7$(3),t.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.channelFormGroup),t.R7$(3),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0)),""),t.R7$(4),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",a.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.feeRate.errors?null:a.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==a.channelConnectionError),t.R7$(3),t.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,jt.sG,tt.V5,tt.Ti,tt.M6,W.N,K.V,p.QX]})}return n})();var Pt=_(5416),Gt=_(9157);const No=n=>({"background-color":n});function Mo(n,o){if(1&n&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(2),t.Lme("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value),"")}}function Bo(n,o){1&n&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function $o(n,o){if(1&n&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Vo(n,o){1&n&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function Oo(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",28)(1,"div",29)(2,"mat-select",30),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",31),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG(2);return t.Njj(s.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function Ho(n,o){1&n&&t.nrm(0,"tr",33)}function Yo(n,o){1&n&&t.nrm(0,"tr",34)}function Xo(n,o){if(1&n&&(t.j41(0,"div",2),t.nrm(1,"mat-divider",3),t.j41(2,"div",4)(3,"div",5)(4,"h4",6),t.EFF(5,"Alias"),t.k0s(),t.j41(6,"span",7),t.EFF(7),t.j41(8,"span",8),t.EFF(9),t.k0s()()(),t.j41(10,"div",9)(11,"h4",6),t.EFF(12,"Pub Key"),t.k0s(),t.j41(13,"span",10),t.EFF(14),t.k0s()()(),t.nrm(15,"mat-divider",3),t.j41(16,"div",4)(17,"div",5)(18,"h4",6),t.EFF(19,"Date/Time"),t.k0s(),t.j41(20,"span",7),t.EFF(21),t.nI1(22,"date"),t.k0s()(),t.j41(23,"div",9)(24,"h4",6),t.EFF(25,"Features"),t.k0s(),t.DNE(26,Mo,4,4,"span",11),t.nI1(27,"keyvalue"),t.k0s()(),t.nrm(28,"mat-divider",3),t.j41(29,"div",4)(30,"div",12)(31,"h4",6),t.EFF(32,"Signature"),t.k0s(),t.j41(33,"span",7),t.EFF(34),t.k0s()()(),t.nrm(35,"mat-divider",3),t.j41(36,"div",2)(37,"h4",13),t.EFF(38,"Addresses"),t.k0s(),t.j41(39,"div",14)(40,"table",15,0),t.qex(42,16),t.DNE(43,Bo,2,0,"th",17)(44,$o,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Vo,3,0,"th",20)(47,Oo,8,1,"td",21),t.bVm(),t.DNE(48,Ho,1,0,"tr",22)(49,Yo,1,0,"tr",23),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.alias),t.R7$(),t.Y8G("ngStyle",t.eq3(19,No,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.R7$(),t.JRh(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.R7$(5),t.JRh(null==e.lookupResult?null:e.lookupResult.nodeId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.i5U(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.R7$(5),t.Y8G("ngForOf",t.bMT(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.signature),t.R7$(),t.Y8G("inset",!0),t.R7$(5),t.Y8G("dataSource",e.addresses),t.R7$(8),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}let Uo=(()=>{class n{constructor(e,i,a){this.logger=e,this.snackBar=i,this.store=a,this.lookupResult={},this.addresses=new c.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.Uq,this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.addresses=new c.I6(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,this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0})}onConnectNode(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:e}:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(Pt.UG),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(i,a){if(1&i&&t.GBs(x.B4,5),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["table",""],["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"],["matColumnDef","address"],["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"],["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"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&t.DNE(0,Xo,50,21,"div",1),2&i&&t.Y8G("ngIf",a.lookupResult)},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,Z.q,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,Gt.U,p.PV,p.vh,p.lG]})}return n})();const zo=["form"],Jo=n=>({"mt-1":!0,"mt-2":n});function qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function Qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function Zo(n,o){if(1&n&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function Wo(n,o){if(1&n&&(t.j41(0,"span",23),t.DNE(1,Zo,2,1,"div",24),t.k0s()),2&n){const e=t.XpG(2),i=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function Ko(n,o){1&n&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function ts(n,o){if(1&n&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,Wo,2,2,"span",21)(6,Ko,4,0,"span",22),t.k0s()()),2&n){const e=t.XpG();t.R7$(3),t.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),t.R7$(),t.Y8G("ngSwitch",e.selectedFieldId),t.R7$(),t.Y8G("ngSwitchCase",0)}}function es(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let ns=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.actions=s,this.lookupKeyCtrl=new d.hs,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=F.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKeyCtrl.setValue(window.history.state.lookupValue||"")),this.actions.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{if(e.type===l.Uu.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.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"Lookup"===e.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,f.Q)(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.zU)({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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(i,a){if(1&i&&t.GBs(zo,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:24,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["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"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl"],[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"],["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"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8)(7,"mat-radio-button",9),t.EFF(8,"Node"),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11),t.k0s(),t.nrm(12,"input",11,1),t.DNE(14,qo,2,1,"mat-error",12)(15,Qo,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,ts,7,3,"div",16),t.k0s()()(),t.DNE(22,es,2,0,"ng-template",null,2,t.C5r)}2&i&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,Jo,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",a.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",a.flgSetLookupValue))},dependencies:[p.YU,p.bT,p.ux,p.e1,p.fG,d.qT,d.me,d.BC,d.cb,d.YS,d.cV,d.l_,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,O.fg,g.rl,g.nJ,g.TL,ot.VT,ot._g,Uo],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}"]})}return n})();var is=_(396);let as=(()=>{class n{constructor(e,i){this.store=e,this.eclEffects=i,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,k.XT)()),this.eclEffects.setNewAddress.pipe((0,q.s)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,v.xO)({payload:{data:{address:this.newAddress,addressType:"",component:is.f}}}))},0)})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B))};static#e=this.\u0275cmp=t.VBU({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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}return n})(),os=(()=>{class n{constructor(e,i){this.store=e,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{sweepAll:this.sweepAll,component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.nX))};static#e=this.\u0275cmp=t.VBU({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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&i&&(t.R7$(3),t.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}return n})();var _t=_(9172),At=_(6354),st=_(850),ss=_(92);const ls=["form"];function rs(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function cs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function ms(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function ps(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-form-field",6)(1,"mat-label"),t.EFF(2,"Peer Alias"),t.k0s(),t.j41(3,"input",33),t.bIt("change",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(6,rs,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,cs,2,0,"mat-error",20)(9,ms,2,0,"mat-error",20),t.k0s()}if(2&n){const e=t.sdS(5),i=t.XpG();t.R7$(3),t.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,i.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function us(n,o){1&n&&t.eu8(0)}function ds(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function hs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function fs(n,o){if(1&n&&(t.j41(0,"div",37),t.nrm(1,"fa-icon",38),t.j41(2,"span",39)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",40)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown",""),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown",""),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown",""),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown",""),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown","")}}function _s(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function gs(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function Cs(n,o){if(1&n&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,gs,2,1,"span",20),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function ys(n,o){if(1&n&&(t.j41(0,"mat-expansion-panel",43)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t.EFF(4,"Peer: \xa0"),t.k0s(),t.j41(5,"strong",44),t.EFF(6),t.k0s()()(),t.j41(7,"div",13)(8,"div",5)(9,"div",6)(10,"h4",45),t.EFF(11,"Pubkey"),t.k0s(),t.j41(12,"span",46),t.EFF(13),t.k0s()()(),t.nrm(14,"mat-divider",47),t.j41(15,"div",5)(16,"div",48)(17,"h4",45),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",49),t.EFF(20),t.k0s()(),t.j41(21,"div",48)(22,"h4",45),t.EFF(23,"State"),t.k0s(),t.j41(24,"span",49),t.EFF(25),t.nI1(26,"titlecase"),t.k0s()()()()()),2&n){const e=t.XpG(2);t.R7$(6),t.JRh((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.R7$(7),t.JRh(e.peer.nodeId),t.R7$(7),t.JRh(null==e.peer?null:e.peer.address),t.R7$(5),t.JRh(t.bMT(26,4,null==e.peer?null:e.peer.state))}}function bs(n,o){if(1&n&&t.DNE(0,ys,27,6,"mat-expansion-panel",42),2&n){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let Nt=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.dialogRef=i,this.data=a,this.store=s,this.actions=r,this.dataService=m,this.selectedPeer=new d.hs,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(a=>a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||a.type===l.Uu.FETCH_CHANNELS_ECL)).subscribe(a=>{a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&a.payload.status===l.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,f.Q)(this.unSubs[2]),(0,_t.Z)(""),(0,At.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.nodeId),(0,At.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(e){return this.sortedPeers?.filter(i=>0===i.alias?.toLowerCase().indexOf(e?e.toLowerCase():""))}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.nodeId:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const e=this.peers?.filter(i=>i.alias?.length===this.selectedPeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===e.length&&e[0].nodeId&&(this.selectedPubkey=e[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=!!this.selNode?.settings.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):this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[3])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)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.vL)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(Q.En),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(i,a){if(1&i&&t.GBs(ls,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:56,vars:21,consts:[["form","ngForm"],["amount","ngModel"],["fee","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxFlex","100","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","name","fee","tabindex","7",3,"ngModelChange","step","min","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"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),t.EFF(5),t.k0s()(),t.j41(6,"button",10),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onOpenChannel())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"div",13),t.DNE(12,ps,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,us,1,0,"ng-container",15),t.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),t.EFF(18,"Amount"),t.k0s(),t.j41(19,"input",18,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.fundingAmount,m)||(a.fundingAmount=m),t.Njj(m)}),t.k0s(),t.j41(21,"mat-hint"),t.EFF(22),t.nI1(23,"number"),t.k0s(),t.j41(24,"span",19),t.EFF(25,"Sats "),t.k0s(),t.DNE(26,ds,2,0,"mat-error",20)(27,hs,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.isPrivate,m)||(a.isPrivate=m),t.Njj(m)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return t.eBV(s),t.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return t.eBV(s),t.Njj(a.onAdvancedPanelToggle(!1))}),t.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),t.EFF(35),t.k0s()()(),t.j41(36,"div",24),t.DNE(37,fs,16,6,"div",25),t.j41(38,"div",16)(39,"div",26)(40,"mat-form-field",27)(41,"mat-label"),t.EFF(42,"Fee (Sats/vByte)"),t.k0s(),t.j41(43,"input",28,2),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.feeRate,m)||(a.feeRate=m),t.Njj(m)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,_s,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,Cs,3,2,"div",29),t.j41(49,"div",30)(50,"button",31),t.EFF(51,"Clear Fields"),t.k0s(),t.j41(52,"button",32),t.EFF(53,"Open Channel"),t.k0s()()()()()(),t.DNE(54,bs,1,1,"ng-template",null,3,t.C5r)}if(2&i){const s=t.sdS(20),r=t.sdS(55);t.R7$(5),t.JRh(a.alertTitle),t.R7$(7),t.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",r),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",a.totalBalance),t.R50("ngModel",a.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),""),t.R7$(4),t.Y8G("ngIf",null==s.errors?null:s.errors.required),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.max),t.R7$(2),t.R50("ngModel",a.isPrivate),t.R7$(6),t.JRh(a.advancedTitle),t.R7$(2),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",a.recommendedFee.minimumFee),t.R50("ngModel",a.feeRate),t.R7$(3),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",a.feeRate&&a.feeRate{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Ou).pipe((0,f.Q)(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(U._c).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Nt}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({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,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["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(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(6,"mat-tab"),t.DNE(7,Fs,2,1,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,Es,2,1,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,xs,2,1,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&i&&(t.R7$(5),t.R50("selectedIndex",a.activeLink))},dependencies:[h.DJ,h.sA,h.UI,j.$z,wt.k,D.ES,D.mq,D.T8,b.n3]})}return n})();const Ss=n=>({"xs-scroll-y":n}),vs=(n,o)=>({"mt-2":n,"mt-1":o});function Rs(n,o){if(1&n&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"Short Channel ID"),t.k0s(),t.j41(3,"span",14),t.EFF(4),t.k0s()()),2&n){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function Is(n,o){if(1&n&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"State"),t.k0s(),t.j41(3,"span",17),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&n){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function ks(n,o){if(1&n&&(t.j41(0,"div")(1,"div",10)(2,"div",12)(3,"h4",13),t.EFF(4,"Local Balance (Sats)"),t.k0s(),t.j41(5,"span",17),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div",12)(9,"h4",13),t.EFF(10,"Remote Balance (Sats)"),t.k0s(),t.j41(11,"span",17),t.EFF(12),t.nI1(13,"number"),t.k0s()()(),t.nrm(14,"mat-divider",15),t.j41(15,"div",10)(16,"div",12)(17,"h4",13),t.EFF(18,"Base Fee (mSats)"),t.k0s(),t.j41(19,"span",17),t.EFF(20),t.nI1(21,"number"),t.k0s()(),t.j41(22,"div",12)(23,"h4",13),t.EFF(24,"Fee Rate (mili mSats)"),t.k0s(),t.j41(25,"span",17),t.EFF(26),t.nI1(27,"number"),t.k0s()()(),t.nrm(28,"mat-divider",15),t.k0s()),2&n){const e=t.XpG();t.R7$(6),t.JRh(t.bMT(7,6,e.channel.toLocal)),t.R7$(6),t.JRh(t.bMT(13,8,e.channel.toRemote)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(21,10,e.channel.feeBaseMsat)),t.R7$(6),t.JRh(t.bMT(27,12,e.channel.feeProportionalMillionths)),t.R7$(2),t.Y8G("inset",!0)}}function Ts(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function ws(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function js(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onShowAdvanced())}),t.DNE(1,Ts,2,0,"p",24)(2,ws,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.sdS(3),i=t.XpG();t.R7$(),t.Y8G("ngIf",!i.showAdvanced)("ngIfElse",e)}}function Ds(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ps(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let gt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.logger=a,this.commonService=s,this.snackBar=r,this.router=m,this.faReceipt=F.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=l.f7}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)}onGoToLink(e,i){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:e,lookupValue:i}}),this.onClose()}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(G.gP),t.rXU(M.h),t.rXU(Pt.UG),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-information"]],decls:59,vars:27,consts:[["hideAdvancedText",""],["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 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"],["tabindex","1","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","2","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","2",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"copied","payload"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Channel Information"),t.k0s()(),t.j41(7,"button",7),t.bIt("click",function(){return a.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,Rs,5,1,"div",11),t.j41(13,"div",12)(14,"h4",13),t.EFF(15,"Peer Alias"),t.k0s(),t.j41(16,"span",14),t.EFF(17),t.k0s()(),t.DNE(18,Is,6,3,"div",11),t.k0s(),t.nrm(19,"mat-divider",15),t.j41(20,"div",10)(21,"div",2)(22,"h4",13),t.EFF(23,"Channel ID"),t.k0s(),t.j41(24,"span",14),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",15),t.j41(27,"div",10)(28,"div",2)(29,"h4",13),t.EFF(30,"Peer Public Key"),t.k0s(),t.j41(31,"span",16),t.bIt("click",function(){return a.onGoToLink("0",a.channel.nodeId)}),t.EFF(32),t.k0s()()(),t.nrm(33,"mat-divider",15),t.j41(34,"div",10)(35,"div",2)(36,"h4",13),t.EFF(37,"State"),t.k0s(),t.j41(38,"span",17),t.EFF(39),t.nI1(40,"titlecase"),t.k0s()()(),t.nrm(41,"mat-divider",15),t.j41(42,"div",10)(43,"div",12)(44,"h4",13),t.EFF(45,"Private"),t.k0s(),t.j41(46,"span",17),t.EFF(47),t.k0s()(),t.j41(48,"div",12)(49,"h4",13),t.EFF(50,"Initiator"),t.k0s(),t.j41(51,"span",17),t.EFF(52),t.k0s()()(),t.nrm(53,"mat-divider",15),t.DNE(54,ks,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,js,4,2,"button",20)(57,Ds,2,1,"button",21)(58,Ps,2,1,"button",22),t.k0s()()()()()),2&i&&(t.R7$(4),t.Y8G("icon",a.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,Ss,a.screenSize===a.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===a.channelsType),t.R7$(5),t.JRh(a.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",a.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,a.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(a.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",a.showAdvanced&&"open"===a.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,vs,!a.showAdvanced,a.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType))},dependencies:[p.YU,p.bT,w.aY,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,E.MM,Z.q,J.oV,Gt.U,W.N,p.QX,p.PV]})}return n})();var Ct=_(7673),yt=_(1001),Gs=_(6949);const nt=(n,o)=>({"small-svg":n,"large-svg":o});function As(n,o){1&n&&t.eu8(0)}function Ns(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",7),t.nrm(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),t.k0s(),t.joV(),t.j41(41,"div",47)(42,"mat-card-title"),t.EFF(43,"Circular rebalancing explained."),t.k0s()(),t.j41(44,"div",48)(45,"mat-card-subtitle",49),t.EFF(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. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ms(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",51),t.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),t.j41(65,"defs")(66,"linearGradient",90),t.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),t.k0s(),t.j41(70,"linearGradient",94),t.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),t.k0s(),t.j41(74,"linearGradient",95),t.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),t.k0s(),t.j41(78,"linearGradient",96),t.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),t.k0s(),t.j41(82,"linearGradient",97),t.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),t.k0s(),t.j41(86,"linearGradient",98),t.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),t.k0s()()(),t.joV(),t.j41(90,"div",47)(91,"mat-card-title"),t.EFF(92,"Step 1: Unbalanced channel"),t.k0s()(),t.j41(93,"div",48)(94,"mat-card-subtitle",49),t.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Bs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",99),t.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),t.j41(49,"defs")(50,"linearGradient",137),t.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),t.k0s(),t.j41(54,"linearGradient",138),t.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),t.k0s(),t.j41(58,"linearGradient",139),t.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),t.k0s()()(),t.joV(),t.j41(62,"div",47)(63,"mat-card-title"),t.EFF(64,"Step 2: Invoice/Payment"),t.k0s()(),t.j41(65,"div",48)(66,"mat-card-subtitle",49),t.EFF(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. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function $s(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),t.j41(42,"defs")(43,"linearGradient",180),t.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),t.k0s()()(),t.joV(),t.j41(47,"div",47)(48,"mat-card-title"),t.EFF(49,"Step 3: Rebalance amount"),t.k0s()(),t.j41(50,"div",48)(51,"mat-card-subtitle",49),t.EFF(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. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Vs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),t.j41(41,"defs")(42,"linearGradient",199),t.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),t.k0s()()(),t.joV(),t.j41(46,"div",47)(47,"mat-card-title"),t.EFF(48,"Rebalance successful!"),t.k0s()(),t.j41(49,"div",48)(50,"mat-card-subtitle",49),t.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let Os=(()=>{class n{constructor(e){this.commonService=e,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(e){2===e.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===e.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["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",1,"fill-color-29"],["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",1,"fill-color-29"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["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",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-25"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-21"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-17"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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(i,a){if(1&i&&t.DNE(0,As,1,0,"ng-container",5)(1,Ns,47,5,"ng-template",null,0,t.C5r)(3,Ms,96,5,"ng-template",null,1,t.C5r)(5,Bs,68,5,"ng-template",null,2,t.C5r)(7,$s,53,5,"ng-template",null,3,t.C5r)(9,Vs,52,5,"ng-template",null,4,t.C5r),2&i){const s=t.sdS(2),r=t.sdS(4),m=t.sdS(6),T=t.sdS(8),y=t.sdS(10);t.Y8G("ngTemplateOutlet",1===a.stepNumber?s:2===a.stepNumber?r:3===a.stepNumber?m:4===a.stepNumber?T:y)}},dependencies:[p.YU,p.T3,h.DJ,h.sA,h.UI,L.PW,E.Lc,E.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[Gs.k]}})}return n})();const Hs=["stepper"],Ys=()=>[1,2,3,4,5],Xs=(n,o)=>({"dot-primary":n,"dot-primary-lighter":o});function Us(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function zs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Js(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function qs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",null==e.selChannel?null:e.selChannel.toLocal,".")}}function Qs(n,o){if(1&n&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId,"")}}function Zs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function Ws(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function Ks(n,o){1&n&&t.EFF(0,"Status")}function tl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function el(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function nl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function il(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function al(n,o){if(1&n&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",e," ")}}function ol(n,o){if(1&n&&(t.j41(0,"div",7),t.DNE(1,al,2,1,"span",53),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function sl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function ll(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function rl(n,o){1&n&&t.nrm(0,"div",7)}function cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function ml(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),t.EFF(5,"Channel Rebalance"),t.k0s()(),t.j41(6,"div",12)(7,"button",13),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onClose())}),t.EFF(10,"X"),t.k0s()()()(),t.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),t.nrm(15,"fa-icon",18),t.j41(16,"span"),t.EFF(17,"Circular Rebalance is a payment you make to *yourself* 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."),t.k0s()()(),t.j41(18,"div",19)(19,"p",20)(20,"strong"),t.EFF(21,"Channel Peer:\xa0"),t.k0s(),t.EFF(22),t.nI1(23,"titlecase"),t.k0s(),t.j41(24,"p",20)(25,"strong"),t.EFF(26,"Channel ID:\xa0"),t.k0s(),t.EFF(27),t.k0s()(),t.j41(28,"mat-vertical-stepper",21,3)(30,"mat-step",22)(31,"form",23),t.DNE(32,Us,1,1,"ng-template",24),t.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),t.EFF(36,"Amount"),t.k0s(),t.nrm(37,"input",27),t.j41(38,"mat-hint"),t.EFF(39),t.k0s(),t.j41(40,"span",28),t.EFF(41,"Sats"),t.k0s(),t.DNE(42,zs,2,0,"mat-error",29)(43,Js,2,0,"mat-error",29)(44,qs,2,1,"mat-error",29),t.k0s(),t.j41(45,"mat-form-field",30)(46,"mat-label"),t.EFF(47,"Receive from Peer"),t.k0s(),t.j41(48,"input",31),t.bIt("change",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(51,Qs,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,Zs,2,0,"mat-error",29)(54,Ws,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,Ks,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,tl,1,0,"mat-progress-bar",38),t.j41(63,"mat-expansion-panel",39)(64,"mat-expansion-panel-header")(65,"mat-panel-title")(66,"span",40),t.EFF(67),t.DNE(68,el,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,nl,1,0,"mat-progress-bar",38),t.j41(73,"mat-expansion-panel",39)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",40),t.EFF(77),t.DNE(78,il,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,ol,2,1,"div",5),t.k0s(),t.DNE(80,sl,1,0,"mat-progress-bar",38),t.j41(81,"mat-expansion-panel",43)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",40),t.EFF(85),t.DNE(86,ll,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,rl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,cl,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&n){const e=t.sdS(50),i=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",i.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,i.selChannel.alias)),t.R7$(5),t.JRh(i.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),t.R7$(),t.Y8G("formGroup",i.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.toLocal,", Remaining: ",(null==i.selChannel?null:i.selChannel.toLocal)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,i.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",i.statusFormGroup),t.R7$(),t.Y8G("formGroup",i.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===i.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===i.rebalanceStatus.invoice?"Searching invoice...":i.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.invoice),t.R7$(3),t.JRh(i.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error||i.rebalanceStatus.paymentRoute||"pending"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Route failed":i.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!i.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(i.rebalanceStatus.paymentStatus?i.rebalanceStatus.paymentStatus&&null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function pl(n,o){1&n&&t.eu8(0)}function ul(n,o){if(1&n&&t.DNE(0,pl,1,0,"ng-container",55),2&n){const e=t.XpG(),i=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?i:a)}}function dl(n,o){if(1&n&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error,"")}}function hl(n,o){if(1&n&&(t.j41(0,"div",7)(1,"div",56)(2,"div",57)(3,"h4",58),t.EFF(4,"Total Fees (Sats)"),t.k0s(),t.j41(5,"span",42),t.EFF(6),t.k0s()(),t.j41(7,"div",57)(8,"h4",58),t.EFF(9,"Number of Hops"),t.k0s(),t.j41(10,"span",42),t.EFF(11),t.k0s()()(),t.nrm(12,"mat-divider",59),t.j41(13,"div",56)(14,"div",60)(15,"h4",58),t.EFF(16,"Payment Hash"),t.k0s(),t.j41(17,"span",42),t.EFF(18),t.k0s()()(),t.nrm(19,"mat-divider",59),t.j41(20,"div",56)(21,"div",60)(22,"h4",58),t.EFF(23,"Payment ID"),t.k0s(),t.j41(24,"span",42),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",59),t.j41(27,"div",56)(28,"div",60)(29,"h4",58),t.EFF(30,"Parent ID"),t.k0s(),t.j41(31,"span",42),t.EFF(32),t.k0s()()()()),2&n){let e;const i=t.XpG();t.R7$(6),t.JRh(i.rebalanceStatus.paymentStatus.feesPaid?i.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(i.rebalanceStatus.paymentRoute&&""!==i.rebalanceStatus.paymentRoute?null==(e=i.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(i.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.parentId)}}function fl(n,o){if(1&n){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Xs,i.stepNumber===e,i.stepNumber!==e))}}function _l(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function gl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function Cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function yl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function bl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function Fl(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",61)(1,"div",62)(2,"mat-card-header",63)(3,"div",64),t.nrm(4,"span",11),t.k0s(),t.j41(5,"div",65)(6,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",66)(9,"rtl-ecl-channel-rebalance-infographics",67),t.mxI("stepNumberChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.stepNumber,a)||(s.stepNumber=a),t.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,fl,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,_l,2,0,"button",71)(14,gl,2,0,"button",72)(15,Cl,2,0,"button",73)(16,yl,2,0,"button",74)(17,bl,2,0,"button",75),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("animationDirection",e.animationDirection),t.R50("stepNumber",e.stepNumber),t.R7$(2),t.Y8G("ngForOf",t.lJ4(9,Ys)),t.R7$(2),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber>1&&e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber<5)}}let El=(()=>{class n{constructor(e,i,a,s,r,m,T){this.dialogRef=e,this.data=i,this.logger=a,this.dataService=s,this.formBuilder=r,this.store=m,this.decimalPipe=T,this.faInfoCircle=F.iW_,this.information={},this.selChannel={},this.activeChannels=[],this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.inputFormLabel="Amount to rebalance",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.animationDirection="forward",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){let e="",i="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.channelId!==this.selChannel.channelId&&a.toRemote&&a.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",ei?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,d.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,f.Q)(this.unSubs[0]),(0,_t.Z)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ct.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,f.Q)(this.unSubs[1]),(0,_t.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,Ct.of)(this.filterActiveChannels()))})}stepSelectionChanged(e){switch(e.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.alias?this.inputFormGroup.controls.selRebalancePeer.value.alias:this.inputFormGroup.controls.selRebalancePeer.value.nodeId.substring(0,15)+"..."):"Amount to rebalance"}}onRebalance(){if(!this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.rebalanceAmount.value<=0||this.selChannel.toLocal&&this.inputFormGroup.controls.rebalanceAmount.value>+this.selChannel.toLocal||!this.inputFormGroup.controls.selRebalancePeer.value.nodeId)return this.inputFormGroup.controls.selRebalancePeer.value.nodeId||this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0;this.stepper.next(),this.flgEditable=!1,this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.dataService.circularRebalance(1e3*this.inputFormGroup.controls.rebalanceAmount.value,this.selChannel.shortChannelId,this.selChannel.nodeId,this.inputFormGroup.controls.selRebalancePeer.value.shortChannelId,this.inputFormGroup.controls.selRebalancePeer.value.nodeId,[this.information.nodeId||""]).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.logger.info(e),this.rebalanceStatus=e,this.flgEditable=!0,this.store.dispatch((0,k.$Q)())},error:e=>{this.logger.error(e),this.rebalanceStatus=e,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(e=>e.toRemote&&e.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&e.channelId!==this.selChannel.channelId&&(0===e.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===e.channelId?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const e=this.activeChannels?.filter(i=>i.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));e&&e.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(e[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(e){return e&&e.alias?e.alias:e&&e.shortChannelId?e.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(e){this.animationDirection=e{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(G.gP),t.rXU(et.u),t.rXU(d.ok),t.rXU(R.il),t.rXU(p.QX))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(i,a){if(1&i&&t.GBs(Hs,5),2&i){let s;t.mGM(s=t.lsd())&&(a.stepper=s.first)}},decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["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.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"],[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"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["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",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["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"],["fxFlex","100","color","primary","mode","indeterminate"],[1,"ml-1","icon-small"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"],["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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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"],["tabindex","21","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(i,a){1&i&&t.DNE(0,ml,95,42,"div",5)(1,ul,1,1,"ng-template",null,0,t.C5r)(3,dl,3,1,"ng-template",null,1,t.C5r)(5,hl,33,5,"ng-template",null,2,t.C5r)(7,Fl,18,10,"div",6),2&i&&(t.Y8G("ngIf",!a.flgShowInfo),t.R7$(7),t.Y8G("ngIf",a.flgShowInfo))},dependencies:[p.YU,p.Sq,p.bT,p.T3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,L.PW,B.tx,j.$z,E.m2,E.MM,Y.GK,Y.Z2,Y.WN,ct.An,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,Z.q,V.HM,X.wT,tt.V5,tt.Ti,tt.M6,st.$3,st.pN,W.N,Os,p.Jj,p.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[yt.C]}})}return n})();const xl=()=>["all"],Ll=n=>({"error-border":n}),Sl=()=>["no_peer"],bt=n=>({width:n}),vl=n=>({"display-none":n});function Rl(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Il(n,o){1&n&&t.nrm(0,"mat-progress-bar",37)}function kl(n,o){1&n&&t.nrm(0,"th",38)}function Tl(n,o){if(1&n&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function wl(n,o){if(1&n&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function jl(n,o){if(1&n&&(t.j41(0,"td",39),t.DNE(1,Tl,2,1,"span",40)(2,wl,2,1,"span",41),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Dl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Pl(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function Gl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Al(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Nl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Ml(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Bl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function $l(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Vl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function Ol(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Hl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function Yl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Xl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function Ul(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function zl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Jl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function ql(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Ql(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Zl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function Wl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",50)(2,"mat-hint",51),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",52),t.k0s()),2&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("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 Kl(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",53)(1,"div",54)(2,"mat-select",55),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function tr(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",57)(1,"div",54)(2,"mat-select",58),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function er(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function ir(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function ar(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function or(n,o){if(1&n&&(t.j41(0,"td",59),t.DNE(1,er,2,0,"p",60)(2,nr,2,0,"p",60)(3,ir,2,0,"p",60)(4,ar,2,1,"p",60),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function sr(n,o){if(1&n&&t.nrm(0,"tr",61),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,vl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function lr(n,o){1&n&&t.nrm(0,"tr",62)}function rr(n,o){1&n&&t.nrm(0,"tr",63)}let cr=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.router=r,this.camelCaseWithSpaces=m,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:e,information:this.information},component:El}}}))}onChannelUpdate(e){"all"!==e&&e?.state&&"NORMAL"!==e?.state||(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof e&&"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:l.UN.NUMBER,inputValue:e&&typeof e?.feeBaseMsat<"u"?e?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeProportionalMillionths<"u"?e?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(s=>{if(s){const r=s[0].inputValue,m=s[1].inputValue;let T=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let y="";"all"===e?(this.activeChannels.forEach(P=>{y=y+","+P.nodeId}),y=y.substring(1),T={baseFeeMsat:r,feeRate:m,nodeIds:y}):T={baseFeeMsat:r,feeRate:m,nodeId:e?.nodeId}}else{let y="";"all"===e?(this.activeChannels.forEach(P=>{y=y+","+P.channelId}),y=y.substring(1),T={baseFeeMsat:r,feeRate:m,channelIds:y}):T={baseFeeMsat:r,feeRate:m,channelId:e?.channelId}}this.store.dispatch((0,k.fy)({payload:T}))}}),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.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,f.Q)(this.unSubs[6])).subscribe(m=>{m&&this.store.dispatch((0,k.w0)({payload:{channelId:e.channelId,force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"open",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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 a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...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.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(b.Ix),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Channels")}])],decls:60,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","isInitiator"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Rl,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,Il,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,kl,1,0,"th",13)(20,jl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Dl,2,0,"th",16)(23,Pl,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Gl,2,0,"th",16)(26,Al,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Nl,2,0,"th",16)(29,Ml,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Bl,2,0,"th",16)(32,$l,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Vl,2,0,"th",16)(35,Ol,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Hl,2,0,"th",22)(38,Yl,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Xl,2,0,"th",22)(41,Ul,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,zl,2,0,"th",22)(44,Jl,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,ql,2,0,"th",22)(47,Ql,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,Zl,2,0,"th",16)(50,Wl,6,4,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,Kl,8,0,"th",28)(53,tr,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,or,5,4,"td",31),t.bVm(),t.DNE(56,sr,1,3,"tr",32)(57,lr,1,0,"tr",33)(58,rr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,xl).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,Ll,""!==a.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,Sl)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return n})();const mr=()=>["all"],pr=n=>({"error-border":n}),ur=()=>["no_channel"],Mt=n=>({width:n}),dr=n=>({"display-none":n});function hr(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function fr(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function _r(n,o){1&n&&t.nrm(0,"th",35)}function gr(n,o){if(1&n&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Cr(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function yr(n,o){if(1&n&&(t.j41(0,"td",36),t.DNE(1,gr,2,1,"span",37)(2,Cr,2,1,"span",38),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function br(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function Fr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function Er(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function xr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Lr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function Sr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function vr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function Rr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ir(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function kr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Tr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function wr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function jr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Dr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Pr(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",50),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Gr(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Ar(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Mr(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function Br(n,o){if(1&n&&(t.j41(0,"td",53),t.DNE(1,Ar,2,0,"p",54)(2,Nr,2,0,"p",54)(3,Mr,2,1,"p",54),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function $r(n,o){if(1&n&&t.nrm(0,"tr",55),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,dr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Vr(n,o){1&n&&t.nrm(0,"tr",56)}function Or(n,o){1&n&&t.nrm(0,"tr",57)}let Hr=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.camelCaseWithSpaces=s,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(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,v.xO)({payload:{data:{channel:e,channelsType:"pending",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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 a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...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.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Channels")}])],decls:51,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,hr,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,fr,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,_r,1,0,"th",13)(20,yr,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,br,2,0,"th",16)(23,Fr,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Er,2,0,"th",16)(26,xr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Lr,2,0,"th",16)(29,Sr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,vr,2,0,"th",16)(32,Rr,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ir,2,0,"th",16)(35,kr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Tr,2,0,"th",22)(38,wr,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,jr,2,0,"th",22)(41,Dr,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Pr,6,0,"th",25)(44,Gr,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,Br,4,3,"td",28),t.bVm(),t.DNE(47,$r,1,3,"tr",29)(48,Vr,1,0,"tr",30)(49,Or,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,mr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,pr,""!==a.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,ur)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const Yr=()=>["all"],Xr=n=>({"error-border":n}),Ur=()=>["no_peer"],Bt=n=>({"mr-0":n}),$t=n=>({width:n}),zr=n=>({"display-none":n});function Jr(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function qr(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function Qr(n,o){1&n&&t.nrm(0,"th",37)}function Zr(n,o){if(1&n&&t.nrm(0,"span",41),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Wr(n,o){if(1&n&&t.nrm(0,"span",42),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Kr(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,Zr,1,3,"span",39)(2,Wr,1,3,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function t1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function e1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function n1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function i1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function a1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function o1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function s1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function l1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function r1(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function c1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function m1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function p1(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",50)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onPeerClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,c1,2,0,"mat-option",51)(9,m1,2,0,"mat-option",51),t.k0s()()()}if(2&n){const e=o.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function u1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function d1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function h1(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function f1(n,o){if(1&n&&(t.j41(0,"td",52),t.DNE(1,u1,2,0,"p",53)(2,d1,2,0,"p",53)(3,h1,2,1,"p",53),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function _1(n,o){if(1&n&&t.nrm(0,"tr",54),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,zr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function g1(n,o){1&n&&t.nrm(0,"tr",55)}function C1(n,o){1&n&&t.nrm(0,"tr",56)}let y1=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.actions=s,this.commonService=r,this.camelCaseWithSpaces=m,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.faUsers=F.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new c.I6([]),this.information={},this.availableBalance=0,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_PEERS_ECL)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,i){const a=[[{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,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:e.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:e.nodeId,message:a}}}))}onConnectPeer(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onOpenChannel(e){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Nt}}}))}onPeerDetach(e){this.store.dispatch(e&&e.channels&&e.channels>0?(0,v.xO)({payload:{data:{type:l.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,k.Lc)({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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"state":a=e?.state?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadPeersTable(e){this.peers=new c.I6(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(Q.En),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Peers")}])],decls:50,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onConnectPeer({}))}),t.EFF(4,"Add Peer"),t.k0s()(),t.j41(5,"div",5)(6,"div",6)(7,"div",7),t.nrm(8,"fa-icon",8),t.j41(9,"span",9),t.EFF(10,"Peers"),t.k0s()(),t.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),t.EFF(14,"Filter By"),t.k0s(),t.j41(15,"mat-select",12),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,Jr,2,2,"mat-option",13),t.k0s()()(),t.j41(18,"mat-form-field",11)(19,"mat-label"),t.EFF(20,"Filter"),t.k0s(),t.j41(21,"input",14),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,qr,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,Qr,1,0,"th",19)(28,Kr,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,t1,2,0,"th",22)(31,e1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,n1,2,0,"th",22)(34,i1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,a1,2,0,"th",22)(37,o1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,s1,2,0,"th",22)(40,l1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,r1,6,0,"th",27)(43,p1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,f1,4,3,"td",30),t.bVm(),t.DNE(46,_1,1,3,"tr",31)(47,g1,1,0,"tr",32)(48,C1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&i&&(t.R7$(8),t.Y8G("icon",a.faUsers),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Yr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",t.eq3(16,Xr,""!==a.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,Ur)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const b1=["queryRoutesForm"],F1=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),Vt=n=>({"max-width":n});function E1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function x1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function L1(n,o){1&n&&t.nrm(0,"mat-progress-bar",23)}function S1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function v1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function R1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function I1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function k1(n,o){1&n&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function T1(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function w1(n,o){1&n&&t.nrm(0,"tr",47)}function j1(n,o){1&n&&t.nrm(0,"tr",48)}function D1(n,o){if(1&n&&(t.j41(0,"div",24)(1,"mat-expansion-panel",25)(2,"mat-expansion-panel-header")(3,"mat-panel-title",26)(4,"span",27),t.EFF(5),t.k0s(),t.j41(6,"span",28),t.EFF(7),t.nI1(8,"number"),t.k0s()()(),t.j41(9,"mat-panel-description",29)(10,"div",30)(11,"table",31,2),t.qex(13,32),t.DNE(14,S1,2,0,"th",33)(15,v1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,R1,2,0,"th",33)(18,I1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,k1,3,0,"th",33)(21,T1,3,0,"td",37),t.bVm(),t.DNE(22,w1,1,0,"tr",38)(23,j1,1,0,"tr",39),t.k0s()()()()()),2&n){const e=o.$implicit,i=o.index,a=t.XpG();t.R7$(5),t.SpI("Route ",i+1,""),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[i])("ngClass",t.eq3(8,F1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let P1=(()=>{class n{constructor(e,i,a){this.store=e,this.eclEffects=i,this.commonService=a,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=F.TBz,this.faExclamationTriangle=F.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new c.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,a)=>{this.qrHops[a]=new c.I6([...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.T4)({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,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:e.alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"nodeId",value:e.nodeId,title:"Node ID",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B),t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(i,a){if(1&i&&t.GBs(b1,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:32,vars:10,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table[i]",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","nodeId","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["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"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","column","fxFlex","100"],["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"],["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.gt-xs","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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){t.eBV(s);const m=t.sdS(2);return t.Njj(m.form.valid&&a.onQueryRoutes())}),t.j41(3,"div",5),t.nrm(4,"fa-icon",6),t.j41(5,"span"),t.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.k0s()(),t.j41(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Destination Node ID"),t.k0s(),t.j41(10,"input",8,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.nodeId,m)||(a.nodeId=m),t.Njj(m)}),t.k0s(),t.DNE(12,E1,2,0,"mat-error",9),t.k0s(),t.j41(13,"mat-form-field",10)(14,"mat-label"),t.EFF(15,"Amount (Sats)"),t.k0s(),t.j41(16,"input",11),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.amount,m)||(a.amount=m),t.Njj(m)}),t.k0s(),t.DNE(17,x1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(20,"Clear"),t.k0s(),t.j41(21,"button",14),t.EFF(22,"Query Route"),t.k0s()()(),t.j41(23,"div",15)(24,"div",16),t.nrm(25,"fa-icon",17),t.j41(26,"span",18),t.EFF(27,"Transaction Route"),t.k0s()()(),t.DNE(28,L1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,D1,24,10,"div",22),t.k0s()()()}2&i&&(t.R7$(4),t.Y8G("icon",a.faExclamationTriangle),t.R7$(6),t.R50("ngModel",a.nodeId),t.R7$(2),t.Y8G("ngIf",!a.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",a.amount),t.R7$(),t.Y8G("ngIf",!a.amount),t.R7$(8),t.Y8G("icon",a.faRoute),t.R7$(3),t.Y8G("ngIf",!0===a.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",a.allQRoutes))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,Y.GK,Y.Z2,Y.WN,Y.Q6,O.fg,g.rl,g.nJ,g.TL,V.HM,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,K.V,p.QX]})}return n})();const G1=()=>["all"],A1=n=>({"error-border":n}),N1=()=>["no_channel"],Ft=n=>({width:n}),M1=n=>({"display-none":n});function B1(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function $1(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function V1(n,o){1&n&&t.nrm(0,"th",37)}function O1(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function H1(n,o){if(1&n&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Y1(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,O1,2,1,"span",39)(2,H1,2,1,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function X1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function U1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function z1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function J1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function q1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function Q1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Z1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function W1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.alias)}}function K1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function tc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function ec(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function nc(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function ic(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function ac(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function oc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function sc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function lc(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function rc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",49)(2,"mat-hint",50),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",51),t.k0s()),2&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function cc(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function mc(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",56)(1,"div",53)(2,"mat-select",57),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function pc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function uc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function dc(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function hc(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,pc,2,0,"p",59)(2,uc,2,0,"p",59)(3,dc,2,1,"p",59),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function fc(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,M1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function _c(n,o){1&n&&t.nrm(0,"tr",61)}function gc(n,o){1&n&&t.nrm(0,"tr",62)}let Cc=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.camelCaseWithSpaces=r,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(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,v.I1)({payload:{data:{type:l.A$.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,f.Q)(this.unSubs[5])).subscribe(m=>{m&&this.store.dispatch((0,k.w0)({payload:{channelId:e.channelId||"",force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"inactive",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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 a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...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.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Channels")}])],decls:57,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["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(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,B1,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,$1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,V1,1,0,"th",13)(20,Y1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,X1,2,0,"th",16)(23,U1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,z1,2,0,"th",16)(26,J1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,q1,2,0,"th",16)(29,Q1,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Z1,2,0,"th",16)(32,W1,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,K1,2,0,"th",16)(35,tc,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,ec,2,0,"th",16)(38,nc,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,ic,2,0,"th",23)(41,ac,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,oc,2,0,"th",23)(44,sc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,lc,2,0,"th",16)(47,rc,6,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,cc,6,0,"th",27)(50,mc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,hc,4,3,"td",30),t.bVm(),t.DNE(53,fc,1,3,"tr",31)(54,_c,1,0,"tr",32)(55,gc,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,G1).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,A1,""!==a.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,N1)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]})}return n})();const yc=()=>["all"],bc=()=>["no_event"],Fc=n=>({"ml-0":n}),it=n=>({width:n}),Ec=n=>({"display-none":n});function xc(n,o){if(1&n&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Lc(n,o){if(1&n&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Sc(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",7),t.nrm(1,"div",8),t.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),t.EFF(5,"Filter By"),t.k0s(),t.j41(6,"mat-select",11),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Lc,2,2,"mat-option",12),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11,"Filter"),t.k0s(),t.j41(12,"input",13),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()()}if(2&n){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,yc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function vc(n,o){1&n&&t.nrm(0,"mat-progress-bar",42)}function Rc(n,o){1&n&&t.nrm(0,"th",43)}function Ic(n,o){if(1&n&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&n){const e=t.XpG().$implicit,i=t.XpG(2);t.FS9("matTooltip",t.bMT(1,2,null==e?null:e.type)),t.Y8G("ngClass",t.eq3(4,Fc,i.screenSize===i.screenSizeEnum.XS))}}function kc(n,o){if(1&n&&(t.j41(0,"td",44),t.DNE(1,Ic,2,6,"span",45),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Tc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function wc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function jc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Dc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Pc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function Gc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Ac(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Nc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Mc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function Bc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function $c(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Vc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function Oc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Hc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function Yc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Xc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Uc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function zc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function Jc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function qc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function Qc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function Zc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function Wc(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Kc(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG(2);return t.Njj(r.onForwardingEventClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function em(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function nm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function im(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,tm,2,0,"p",59)(2,em,2,0,"p",59)(3,nm,2,1,"p",59),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function am(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ec,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function om(n,o){1&n&&t.nrm(0,"tr",61)}function sm(n,o){1&n&&t.nrm(0,"tr",62)}function lm(n,o){if(1&n&&(t.j41(0,"div",15),t.DNE(1,vc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,Rc,1,0,"th",19)(6,kc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,Tc,2,0,"th",22)(9,wc,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,jc,2,0,"th",22)(12,Dc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Pc,2,0,"th",22)(15,Gc,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Ac,2,0,"th",22)(18,Nc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Mc,2,0,"th",22)(21,Bc,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,$c,2,0,"th",22)(24,Vc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,Oc,2,0,"th",22)(27,Hc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,Yc,2,0,"th",22)(30,Xc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,Uc,2,0,"th",31)(33,zc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,Jc,2,0,"th",31)(36,qc,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,Qc,2,0,"th",31)(39,Zc,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,Wc,6,0,"th",35)(42,Kc,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,im,4,3,"td",38),t.bVm(),t.DNE(45,am,1,3,"tr",39)(46,om,1,0,"tr",40)(47,sm,1,0,"tr",41),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),t.R7$(43),t.Y8G("matFooterRowDef",t.lJ4(7,bc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function rm(n,o){if(1&n&&t.nrm(0,"mat-paginator",63),2&n){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Ot=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:l.wn.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())}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=e.pageSettings.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData)})}ngAfterViewInit(){setTimeout(()=>{this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)},0)}onForwardingEventClick(e,i){const a=[[{key:"paymentHash",value:e.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"timestamp",value:Math.round((e.timestamp||0)/1e3),title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"fee",value:(e.amountIn||0)-(e.amountOut||0),title:"Fee Earned (Sats)",width:50,type:l.UN.NUMBER}],[{key:"amountIn",value:e.amountIn,title:"Amount In (Sats)",width:50,type:l.UN.NUMBER},{key:"amountOut",value:e.amountOut,title:"Amount Out (Sats)",width:50,type:l.UN.NUMBER}],[{key:"fromChannelAlias",value:e.fromChannelAlias,title:"From Channel Alias",width:50,type:l.UN.STRING},{key:"fromShortChannelId",value:e.fromShortChannelId,title:"From Short Channel ID",width:50,type:l.UN.STRING}],[{key:"fromChannelId",value:e.fromChannelId,title:"From Channel ID",width:100,type:l.UN.STRING}],[{key:"toChannelAlias",value:e.toChannelAlias,title:"To Channel Alias",width:50,type:l.UN.STRING},{key:"toShortChannelId",value:e.toShortChannelId,title:"To Short Channel ID",width:50,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"To Channel ID",width:100,type:l.UN.STRING}]];"payment-relayed"!==e.type&&a?.unshift([{key:"type",value:this.commonService.camelCase(e.type),title:"Relay Type",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:a}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(e.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":a=(e.amountIn-e.amountOut).toString()||"0";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new c.I6([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,a)=>"fee"===a?i.amountIn-i.amountOut:i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Events")}]),t.OA$],decls:5,vars:4,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[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,"matSortActive","matSortDirection","dataSource"],["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(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,xc,2,1,"div",2)(2,Sc,13,4,"div",3)(3,lm,48,8,"div",4)(4,rm,1,3,"mat-paginator",5),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.vh,z.ZE],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-actions[_ngcontent-%COMP%]{min-height:3.55rem}"]})}return n})();const cm=["tableIn"],mm=["tableOut"],pm=["paginatorIn"],um=["paginatorOut"],dm=(n,o)=>({"mt-2":n,"mt-1":o}),hm=()=>["no_incoming_event"],fm=n=>({"mt-2":n}),_m=()=>["no_outgoing_event"],lt=n=>({width:n}),Ht=n=>({"display-none":n});function gm(n,o){if(1&n&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Cm(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function ym(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function bm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Fm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Em(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function xm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Lm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Sm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function vm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Rm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Im(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function km(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function Tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function wm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function jm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,km,2,0,"p",42)(2,Tm,2,0,"p",42)(3,wm,2,1,"p",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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)}}function Dm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Pm(n,o){1&n&&t.nrm(0,"tr",44)}function Gm(n,o){1&n&&t.nrm(0,"tr",45)}function Am(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function Nm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Mm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Bm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function $m(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Vm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Om(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Hm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ym(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Xm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Um(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function zm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function Jm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function qm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Qm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,zm,2,0,"p",42)(2,Jm,2,0,"p",42)(3,qm,2,1,"p",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("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.R7$(),t.Y8G("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.R7$(),t.Y8G("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 Zm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function Wm(n,o){1&n&&t.nrm(0,"tr",44)}function Km(n,o){1&n&&t.nrm(0,"tr",45)}function tp(n,o){if(1&n&&(t.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),t.EFF(4,"Incoming"),t.k0s(),t.nrm(5,"div",12),t.k0s(),t.j41(6,"div",13),t.DNE(7,Cm,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,ym,2,0,"th",17)(12,bm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,Fm,2,0,"th",17)(15,Em,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,xm,2,0,"th",21)(18,Lm,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,Sm,2,0,"th",21)(21,vm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,Rm,2,0,"th",21)(24,Im,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,jm,4,3,"td",25),t.bVm(),t.DNE(27,Dm,1,3,"tr",26)(28,Pm,1,0,"tr",27)(29,Gm,1,0,"tr",28),t.k0s()(),t.nrm(30,"mat-paginator",29,1),t.k0s(),t.j41(32,"div",30)(33,"div",10)(34,"div",11),t.EFF(35,"Outgoing"),t.k0s(),t.nrm(36,"div",12),t.k0s(),t.j41(37,"div",31),t.DNE(38,Am,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Nm,2,0,"th",17)(43,Mm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,Bm,2,0,"th",17)(46,$m,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Vm,2,0,"th",21)(49,Om,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Hm,2,0,"th",21)(52,Ym,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Xm,2,0,"th",21)(55,Um,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,Qm,4,3,"td",25),t.bVm(),t.DNE(58,Zm,1,3,"tr",26)(59,Wm,1,0,"tr",27)(60,Km,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,dm,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(25,hm)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),t.R7$(3),t.Y8G("ngClass",t.eq3(26,fm,e.screenSize!==e.screenSizeEnum.LG)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(28,_m)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let ep=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.camelCaseWithSpaces=s,this.nodePageDefs=l.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"totalFee",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,i)=>{let a="";return a="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(),a.includes(i)},this.routingPeersOutgoing.filterPredicate=(e,i)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(e).toLowerCase();break;case"total_amount":case"total_fee":a=(+(e[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof e[this.selFilterByOut]?e[this.selFilterByOut].toLowerCase():"boolean"==typeof e[this.selFilterByOut]?e[this.selFilterByOut]?"yes":"no":e[this.selFilterByOut].toString()}return a.includes(i)}}loadRoutingPeersTable(e){if(e.length>0){const i=this.groupRoutingPeers(e);this.routingPeersIncoming=new c.I6(i[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(i[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(e){const i=[],a=[];return e.forEach(s=>{const r=i.find(T=>T.channelId===s.fromChannelId),m=a.find(T=>T.channelId===s.toChannelId);r?(r.events++,r.totalAmount=+r.totalAmount+ +s.amountIn,r.totalFee=s.amountIn-s.amountOut+ +r.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),m?(m.events++,m.totalAmount=+m.totalAmount+ +s.amountOut,m.totalFee=s.amountIn-s.amountOut+ +m.totalFee):a.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(a,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(cm,5,x.B4),t.GBs(mm,5,x.B4),t.GBs(pm,5),t.GBs(um,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sortIn=s.first),t.mGM(s=t.lsd())&&(a.sortOut=s.first),t.mGM(s=t.lsd())&&(a.paginatorIn=s.first),t.mGM(s=t.lsd())&&(a.paginatorOut=s.first)}},features:[t.Jv_([{provide:I.xX,useValue:(0,l.on)("Peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["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,"matSortActive","matSortDirection","dataSource"],["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"],["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,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["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(i,a){1&i&&(t.j41(0,"div",4),t.DNE(1,gm,2,1,"div",5)(2,tp,63,29,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.bT,p.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,V.HM,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.Ld,p.QX]})}return n})();function np(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let ip=(()=>{class n{constructor(e){this.router=e,this.faChartBar=F.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-reports"]],decls:12,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Reports"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,np,2,3,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faChartBar),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();var Yt=_(6064),Xt=_(4655);function ap(n,o){if(1&n&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=t.XpG();t.Y8G("@fadeIn",e.totalFeeSat),t.R7$(),t.Lme("",t.i5U(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function op(n,o){1&n&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function sp(n,o){if(1&n&&(t.j41(0,"span")(1,"span",17),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.j41(4,"span",17),t.EFF(5),t.nI1(6,"number"),t.k0s()()),2&n){const e=o.model,i=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function lp(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,sp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("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 rp(n,o){if(1&n&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&n){const e=t.XpG();t.Y8G("pageId","reports")("tableId","routing")("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let cp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.aR.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.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.KT).pipe((0,f.Q)(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,f.Q)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.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 a=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(r=>{Math.floor((r.timestamp||0)/1e3)>=a&&Math.floor((r.timestamp||0)/1e3)0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===l.rs[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}prepareEventsReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},decls:17,vars:7,consts:[["tooltipTemplate",""],["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 center",1,"my-1",3,"ngModelChange","change","ngModel"],[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,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(r){return t.DH7(a.selReportBy,r)||(a.selReportBy=r),r}),t.bIt("change",function(){return a.onSelReportByChange()}),t.j41(4,"span",5),t.EFF(5,"Report By: "),t.k0s(),t.j41(6,"mat-radio-button",6),t.EFF(7,"Fees"),t.k0s(),t.j41(8,"mat-radio-button",7),t.EFF(9,"Events"),t.k0s()()(),t.j41(10,"div",8),t.DNE(11,ap,4,8,"div",9)(12,op,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,lp,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,rp,1,4,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&i&&(t.R7$(3),t.R50("ngModel",a.selReportBy),t.R7$(3),t.FS9("value",a.reportBy.FEES),t.R7$(2),t.FS9("value",a.reportBy.EVENTS),t.R7$(3),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",a.routingReportData.length<=0||a.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",a.filteredEventsBySelectedPeriod.length>0))},dependencies:[p.bT,d.BC,d.vS,h.DJ,h.sA,h.UI,ot.VT,ot._g,Yt.L8,Xt.m,Ot,p.QX],data:{animation:[yt.q]}})}return n})();var mp=_(5085);function pp(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Lme(" Paid ",t.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function up(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Lme(" Received ",t.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function dp(n,o){if(1&n&&(t.j41(0,"div",9),t.DNE(1,pp,4,7,"div",10)(2,up,4,7,"div",10),t.k0s()),2&n){const e=t.XpG();t.Y8G("@fadeIn",e.transactionsReportSummary),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function hp(n,o){1&n&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function fp(n,o){if(1&n&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=o.model;t.R7$(),t.LHq("",e.name,": ",t.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.bMT(3,7,(null==e.extra?null:e.extra.total)||0),"")}}function _p(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,fp,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("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 gp(n,o){if(1&n&&t.nrm(0,"rtl-transactions-report-table",15),2&n){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Cp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.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.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(C.rN))).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,f.Q)(this.unSubs[2])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.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.rs[1]?e.series.toString()+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3),r=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const m=this.payments?.filter(y=>y.firstPartTimestamp&&Math.floor(y.firstPartTimestamp/1e3)>=a&&Math.floor(y.firstPartTimestamp/1e3)"received"===y.status&&y.timestamp&&y.timestamp>=a&&y.timestamp{const P=new Date(y.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[P].series[0].value=r[P].series[0].value+y.recipientAmount,r[P].series[0].extra.total=r[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(y=>{const P=new Date(1e3*(y.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[P].series[1].value=r[P].series[1].value+y.amountSettled,r[P].series[1].extra.total=r[P].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let y=0;y{const P=Math.floor((Math.floor((y.firstPartTimestamp||0)/1e3)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[P].series[0].value=r[P].series[0].value+y.recipientAmount,r[P].series[0].extra.total=r[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(y=>{const P=Math.floor(((y.timestamp||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[P].series[1].value=r[P].series[1].value+y.amountSettled,r[P].series[1].extra.total=r[P].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((e,i)=>i.series[0].extra.total>0||i.series[1].extra.total>0?e.concat({date:i.date,amount_paid:i.series[0].value,num_payments:i.series[0].extra.total,amount_received:i.series[1].value,num_invoices:i.series[1].extra.total}):e,[])}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),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.KR[e].days+1:l.KR[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},decls:9,vars:4,consts:[["tooltipTemplate",""],["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,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,dp,3,3,"div",4)(4,hp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,_p,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,gp,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&i&&(t.R7$(3),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0))},dependencies:[p.bT,h.DJ,h.sA,h.UI,Yt.Dl,Xt.m,mp.T,p.QX],data:{animation:[yt.q]}})}return n})();var N=_(7186),yp=_(13);function bp(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Fp=(()=>{class n{constructor(e){this.router=e,this.faSearch=F.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-graph"]],decls:13,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Graph Lookups"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,bp,2,3,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8),t.nrm(12,"router-outlet"),t.k0s()()()()),2&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faSearch),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();const Ep=[{path:"",component:xt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ka,canActivate:[(0,N.fe)()]},{path:"onchain",component:go,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:as,canActivate:[(0,N.fe)()]},{path:"send",component:os,canActivate:[(0,N.fe)()]}]},{path:"connections",component:bo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Ls,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:cr,canActivate:[(0,N.fe)()]},{path:"pending",component:Hr,canActivate:[(0,N.fe)()]},{path:"inactive",component:Cc,canActivate:[(0,N.fe)()]}]},{path:"peers",component:y1,data:{sweepAll:!1},canActivate:[(0,N.fe)()]}]},{path:"transactions",component:Eo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Rt,canActivate:[(0,N.fe)()]},{path:"invoices",component:It,canActivate:[(0,N.fe)()]}]},{path:"routing",component:Lo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ot,canActivate:[(0,N.fe)()]},{path:"peers",component:ep,canActivate:[(0,N.fe)()]}]},{path:"reports",component:ip,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:cp,canActivate:[(0,N.fe)()]},{path:"transactions",component:Cp,canActivate:[(0,N.fe)()]}]},{path:"graph",component:Fp,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:ns,canActivate:[(0,N.fe)()]},{path:"queryroutes",component:P1,canActivate:[(0,N.fe)()]}]},{path:"**",component:yp.X}]}],xp=b.iI.forChild(Ep);var Lp=_(9029);let Sp=(()=>{class n{static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275mod=t.$C({type:n,bootstrap:[xt]});static#n=this.\u0275inj=t.G2t({imports:[p.MD,Lp.G,xp]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/190.88ca997666a3998a.js b/frontend/190.88ca997666a3998a.js new file mode 100644 index 00000000..3e3501a7 --- /dev/null +++ b/frontend/190.88ca997666a3998a.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{9190:(wC,$e,g)=>{g.r($e),g.d($e,{LNDModule:()=>IC});var d=g(177),x=g(1188),pt=g(9881),e=g(4438),h=g(2920),B=g(7575);function mt(n,s){1&n&&e.nrm(0,"mat-progress-bar",3)}let Ae=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof x.Z:this.loading=!0;break;case a instanceof x.wF:case a instanceof x.j5:case a instanceof x.L6:this.loading=!1}})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lnd-root"]],decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,mt,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.loading))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,x.n3],data:{animation:[pt.E]}})}return n})();var u=g(1413),_=g(6977),de=g(3993),Y=g(5964),Me=g(614),b=g(5383),l=g(4416),X=g(9647),y=g(3536),j=g(8570),I=g(9640),W=g(4054),N=g(2571),M=g(60),L=g(6038),G=g(8834),T=g(5596),he=g(6195),ie=g(9213),ve=g(9115),P=g(6850),w=g(6695),k=g(2042),c=g(9159),R=g(2798),O=g(5351),v=g(190),m=g(9417),$=g(9631),f=g(6467),V=g(6600),_e=g(450),Q=g(4823),Z=g(9587),te=g(6114);function ut(n,s){1&n&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function dt(n,s){if(1&n&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ht(n,s){if(1&n&&e.nrm(0,"span",35),2&n){const t=e.XpG();e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function _t(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(e.bMT(2,2,t))}}function ft(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.invoiceError)}}function gt(n,s){if(1&n&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,ft,2,1,"span",39),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.invoiceError)}}let Ct=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.store=i,this.decimalPipe=o,this.commonService=r,this.actions=p,this.faExclamationTriangle=b.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===t.payload.action&&(this.invoiceError=t.payload.message,t.payload.status===l.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="";let a=0;a=this.expiry?this.selTimeUnit!==l.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS):this.expiry:l.It,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,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.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-create-invoices"]],decls:53,vars:20,consts:[["addInvoiceForm","ngForm"],["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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","24","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","expiry",3,"ngModelChange","step","min","ngModel"],["tabindex","4","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"ml-2"],["fxFlex","49","fxLayoutAlign","start start"],["tabindex","4","color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["tabindex","5","color","primary","name","amp",3,"ngModelChange","ngModel"],["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"],["mat-button","","color","primary","tabindex","6","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","7",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Create Invoice"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),e.EFF(13,"Memo"),e.k0s(),e.j41(14,"input",10),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.memo,p)||(i.memo=p),e.Njj(p)}),e.k0s()(),e.j41(15,"mat-form-field",11)(16,"mat-label"),e.EFF(17,"Amount"),e.k0s(),e.j41(18,"input",12),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.invoiceValue,p)||(i.invoiceValue=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,ut,2,0,"span",15)(23,dt,2,1,"span",16)(24,ht,1,1,"span",17),e.EFF(25),e.k0s()(),e.j41(26,"mat-form-field",18)(27,"mat-label"),e.EFF(28,"Expiry"),e.k0s(),e.j41(29,"input",19),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.expiry,p)||(i.expiry=p),e.Njj(p)}),e.k0s(),e.j41(30,"span",13),e.EFF(31),e.nI1(32,"titlecase"),e.k0s()(),e.j41(33,"mat-form-field",18)(34,"mat-select",20),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onTimeUnitChange(p))}),e.DNE(35,_t,3,4,"mat-option",21),e.k0s()(),e.j41(36,"div",22)(37,"div",23)(38,"mat-slide-toggle",24),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.private,p)||(i.private=p),e.Njj(p)}),e.EFF(39,"Private Routing Hints"),e.k0s(),e.j41(40,"mat-icon",25),e.EFF(41,"info_outline"),e.k0s()(),e.j41(42,"div",23)(43,"mat-slide-toggle",26),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.isAmp,p)||(i.isAmp=p),e.Njj(p)}),e.EFF(44,"AMP Invoice"),e.k0s(),e.j41(45,"mat-icon",27),e.EFF(46,"info_outline"),e.k0s()()(),e.DNE(47,gt,3,2,"div",28),e.j41(48,"div",29)(49,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(50,"Clear Field"),e.k0s(),e.j41(51,"button",31),e.bIt("click",function(){e.eBV(o);const p=e.sdS(10);return e.Njj(i.onAddInvoice(p))}),e.EFF(52,"Create Invoice"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",i.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",i.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"FA"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"SVG"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.SpI(" ",i.invoiceValueHint," "),e.R7$(4),e.Y8G("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",i.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,i.selTimeUnit)," "),e.R7$(3),e.Y8G("value",i.selTimeUnit),e.R7$(),e.Y8G("ngForOf",i.timeUnits),e.R7$(3),e.R50("ngModel",i.private),e.R7$(5),e.R50("ngModel",i.isAmp),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceError))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.MV,f.yw,R.VO,V.wT,_e.sG,Q.oV,Z.N,te.V,d.PV]})}return n})();var yt=g(6391),E=g(1771),q=g(2929),A=g(497);const bt=()=>["all"],Ft=n=>({"error-border":n}),xt=()=>["no_invoice"],fe=n=>({"mr-0":n}),se=n=>({width:n}),vt=n=>({"display-none":n});function Tt(n,s){1&n&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function St(n,s){if(1&n&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function kt(n,s){if(1&n&&e.nrm(0,"span",22),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function Rt(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),e.EFF(4,"Memo"),e.k0s(),e.j41(5,"input",8),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.memo,i)||(o.memo=i),e.Njj(i)}),e.k0s()(),e.j41(6,"mat-form-field",9)(7,"mat-label"),e.EFF(8,"Amount"),e.k0s(),e.j41(9,"input",10),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.invoiceValue,i)||(o.invoiceValue=i),e.Njj(i)}),e.bIt("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,Tt,2,0,"span",13)(14,St,2,1,"span",14)(15,kt,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){e.eBV(t);const i=e.sdS(1),o=e.XpG();return e.Njj(o.onAddInvoice(i))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",t.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.SpI(" ",t.invoiceValueHint," ")}}function Et(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function It(n,s){if(1&n&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Lt(n,s){1&n&&e.nrm(0,"mat-progress-bar",73)}function wt(n,s){1&n&&e.nrm(0,"th",74)}function jt(n,s){if(1&n&&e.nrm(0,"span",80),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Gt(n,s){if(1&n&&e.nrm(0,"span",81),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Dt(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Nt(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Pt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,jt,1,3,"span",76)(2,Gt,1,3,"span",77)(3,Dt,1,3,"span",78)(4,Nt,1,3,"span",79),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==t?null:t.state))}}function $t(n,s){1&n&&e.nrm(0,"th",84)}function At(n,s){if(1&n&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Mt(n,s){if(1&n&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEye)}}function Bt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,At,2,1,"span",85)(2,Mt,2,1,"span",86),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function Ot(n,s){1&n&&e.nrm(0,"th",89)}function Vt(n,s){if(1&n&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnToDots)}}function Yt(n,s){if(1&n&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnRight)}}function Xt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Vt,2,1,"span",90)(2,Yt,2,1,"span",91),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.is_keysend),e.R7$(),e.Y8G("ngIf",!t.is_keysend)}}function Ut(n,s){1&n&&e.nrm(0,"th",94)}function Ht(n,s){if(1&n&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faMoneyBill1)}}function qt(n,s){if(1&n&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faBurst)}}function zt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Ht,2,1,"span",95)(2,qt,2,1,"span",96),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",!t.is_amp),e.R7$(),e.Y8G("ngIf",t.is_amp)}}function Jt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function Wt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function Qt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function Zt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(0!=+(null==t?null:t.settle_date)?e.i5U(2,1,1e3*+(null==t?null:t.settle_date),"dd/MMM/y HH:mm"):"-")}}function Kt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function en(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.memo)}}function tn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function nn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_preimage)}}function an(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function sn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_hash)}}function on(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function ln(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_addr)}}function rn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function cn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function pn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function mn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function un(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function dn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.expiry)," ")}}function hn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function _n(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.cltv_expiry)," ")}}function fn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function gn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.add_index)," ")}}function Cn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function yn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.settle_index)," ")}}function bn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function Fn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.value)," ")}}function xn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function vn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_paid_sat)," ")}}function Tn(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",104)(1,"div",105)(2,"mat-select",106),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Sn(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",108)(1,"div",105)(2,"mat-select",109),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onInvoiceClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onRefreshInvoice(i))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function kn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function Rn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function En(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function In(n,s){if(1&n&&(e.j41(0,"td",110),e.DNE(1,kn,2,0,"p",111)(2,Rn,2,0,"p",111)(3,En,2,1,"p",111),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function Ln(n,s){if(1&n&&e.nrm(0,"tr",112),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,vt,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function wn(n,s){1&n&&e.nrm(0,"tr",113)}function jn(n,s){1&n&&e.nrm(0,"tr",114)}function Gn(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",25)(1,"div",26)(2,"div",27),e.nrm(3,"fa-icon",28),e.j41(4,"span",29),e.EFF(5,"Invoices History"),e.k0s()(),e.j41(6,"div",30)(7,"mat-form-field",31)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",32),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,It,2,2,"mat-option",33),e.k0s()()(),e.j41(13,"mat-form-field",31)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",34),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,Lt,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,wt,1,0,"th",39)(23,Pt,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,$t,1,0,"th",42)(26,Bt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ot,1,0,"th",44)(29,Xt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Ut,1,0,"th",46)(32,zt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,Jt,2,0,"th",48)(35,Wt,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,Qt,2,0,"th",48)(38,Zt,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,Kt,2,0,"th",48)(41,en,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,tn,2,0,"th",48)(44,nn,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,an,2,0,"th",48)(47,sn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,on,2,0,"th",48)(50,ln,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,rn,2,0,"th",48)(53,cn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,pn,2,0,"th",48)(56,mn,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,un,2,0,"th",57)(59,dn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,hn,2,0,"th",57)(62,_n,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,fn,2,0,"th",57)(65,gn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,Cn,2,0,"th",57)(68,yn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,bn,2,0,"th",57)(71,Fn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,xn,2,0,"th",57)(74,vn,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,Tn,6,0,"th",64)(77,Sn,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,In,4,3,"td",67),e.bVm(),e.DNE(80,Ln,1,3,"tr",68)(81,wn,1,0,"tr",69)(82,jn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,bt).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(2),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",e.eq3(17,Ft,""!==t.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,xt)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalInvoices)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Be=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.store=a,this.decimalPipe=i,this.commonService=o,this.datePipe=r,this.actions=p,this.camelCaseWithReplace=F,this.calledFrom="transactions",this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.faHistory=b.Int,this.faArrowsTurnToDots=b.If6,this.faArrowsTurnRight=b.peG,this.faBurst=b.M29,this.faMoneyBill1=b.Ccf,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new c.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[4]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&this.invoicesData&&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:l.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(t){this.store.dispatch((0,E.xO)({payload:{data:{invoice:t,newlyAdded:!1,component:yt.H}}}))}onRefreshInvoice(t){t&&t.r_hash&&this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(t.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(t){this.invoicesData=this.invoicesData?.map(a=>a.r_hash===t.r_hash?t:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.settle_date?this.datePipe.transform(new Date(1e3*t.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"creation_date":case"settle_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":i=t?.private?"private":"public";break;case"is_keysend":i=t?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":i=t?.is_amp?"atomic multi path payment":"non atomic payment";break;default:i=typeof t[this.selFilterBy]>"u"?"":"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===i.indexOf(a):i.includes(a)}}loadInvoicesTable(t){this.invoices=new c.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,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 a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0),this.store.dispatch((0,v.Do)({payload:{num_max_invoices:t.pageSize,index_offset:i,reversed:a}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[5])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.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,E.xO)({payload:{data:{pageSize:this.pageSize,component:Ct}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(d.vh),e.rXU(W.En),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["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"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[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"],["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(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,Rt,22,8,"form",3)(2,Et,3,0,"div",4)(3,Gn,84,20,"div",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.yw,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,te.V,d.QX,d.vh],styles:[".mat-column-state[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();var J=g(6697),K=g(1534),U=g(9454),oe=g(850);const Dn=["paymentReq"];function Nn(n,s){if(1&n&&(e.j41(0,"span",35),e.nrm(1,"fa-icon",36),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function Pn(n,s){if(1&n&&e.nrm(0,"span",37),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function $n(n,s){if(1&n&&(e.j41(0,"mat-hint",32),e.EFF(1),e.DNE(2,Nn,2,1,"span",33)(3,Pn,1,1,"span",34),e.EFF(4),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function An(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Mn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.paymentDecodedHint)}}function Bn(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function On(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",6)(1,"mat-label"),e.EFF(2,"Amount (Sats)"),e.k0s(),e.j41(3,"input",38,4),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.paymentAmount,i)||(o.paymentAmount=i),e.Njj(i)}),e.bIt("change",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountChange(i))}),e.k0s(),e.j41(5,"mat-hint"),e.EFF(6,"It is a zero amount invoice, enter amount to be paid."),e.k0s(),e.DNE(7,Bn,2,0,"mat-error",16),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.R50("ngModel",t.paymentAmount),e.R7$(4),e.Y8G("ngIf",!t.paymentAmount)}}function Vn(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",null==t?null:t.name," ")}}function Yn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.selFeeLimitType?null:t.selFeeLimitType.placeholder," is required.")}}function Xn(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function Un(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Hn(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentError)}}function qn(n,s){if(1&n&&(e.j41(0,"div",40),e.nrm(1,"fa-icon",41),e.DNE(2,Hn,2,1,"span",16),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.paymentError)}}let zn=(()=>{class n{constructor(t,a,i,o,r,p,F){this.dialogRef=t,this.store=a,this.logger=i,this.commonService=o,this.decimalPipe=r,this.actions=p,this.dataService=F,this.faExclamationTriangle=b.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new m.hs,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.feeLimitTypes=l.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.channels&&i.channels.length?i.channels?.filter(o=>o.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND)).subscribe(i=>{i.type===l.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SendPayment"===i.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=i.payload.message)});let t="",a="";this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"",ta?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,_.Q)(this.unSubs[3])).subscribe(i=>{"string"==typeof i&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(t=>0===(t.remote_alias?t.remote_alias.toLowerCase():t.chan_id?t.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(t.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(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const t=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(a=>{const i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"";return i.length===this.selectedChannelCtrl.value.length&&0===i.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];t&&t.length>0?(this.selectedChannelCtrl.setValue(t[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(){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,v.Fd)({payload:{uiMessage:l.MZ.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=this.paymentAmount?.toString()||"",this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.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.paymentDecodedHintPre="",this.paymentDecodedHintPost="",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,J.s)(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&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(i.OTHER?i.OTHER:0,l.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHintPre="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")},error:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+a.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(t,a){if(t&&!a){const i=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)+(""!==i?" | First Outgoing Channel: "+i:"")}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.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(I.il),e.rXU(j.gP),e.rXU(N.h),e.rXU(d.QX),e.rXU(W.En),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(a,i){if(1&a&&e.GBs(Dn,5),2&a){let o;e.mGM(o=e.lsd())&&(i.paymentReq=o.first)}},decls:51,vars:21,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["fLmt","ngModel"],["auto","matAutocomplete"],["paymentAmt","ngModel"],["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 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"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[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"],["fxLayout","column","fxFlex","27","fxLayoutAlign","start end"],["tabindex","5",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","33"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModelChange","step","min","disabled","ngModel"],["fxLayout","column","fxFlex","37","fxLayoutAlign","start end"],["type","text","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],["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"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5,"Send Payment"),e.k0s()(),e.j41(6,"button",10),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0)(11,"mat-form-field",13)(12,"mat-label"),e.EFF(13,"Payment Request"),e.k0s(),e.j41(14,"textarea",14,1),e.bIt("ngModelChange",function(p){return e.eBV(o),e.Njj(i.onPaymentRequestEntry(p))})("matTextareaAutosize",function(){return e.eBV(o),e.Njj(!0)}),e.k0s(),e.DNE(16,$n,5,4,"mat-hint",15)(17,An,2,0,"mat-error",16)(18,Mn,2,1,"mat-error",16),e.k0s(),e.DNE(19,On,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0,!1))})("opened",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!1,!1))}),e.j41(21,"mat-expansion-panel-header")(22,"mat-panel-title")(23,"span"),e.EFF(24),e.k0s()()(),e.j41(25,"div",19)(26,"mat-form-field",20)(27,"mat-label"),e.EFF(28,"Fee Limits"),e.k0s(),e.j41(29,"mat-select",21),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selFeeLimitType,p)||(i.selFeeLimitType=p),e.Njj(p)}),e.DNE(30,Vn,2,2,"mat-option",22),e.k0s()(),e.j41(31,"mat-form-field",23)(32,"mat-label"),e.EFF(33),e.k0s(),e.j41(34,"input",24,2),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.feeLimit,p)||(i.feeLimit=p),e.Njj(p)}),e.k0s(),e.DNE(36,Yn,2,1,"mat-error",16),e.k0s(),e.j41(37,"mat-form-field",25)(38,"mat-label"),e.EFF(39,"First Outgoing Channel"),e.k0s(),e.nrm(40,"input",26),e.j41(41,"mat-autocomplete",27,3),e.bIt("optionSelected",function(){return e.eBV(o),e.Njj(i.onSelectedChannelChanged())}),e.DNE(43,Xn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Un,2,0,"mat-error",16),e.k0s()()(),e.DNE(45,qn,3,2,"div",28),e.j41(46,"div",29)(47,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(48,"Clear Fields"),e.k0s(),e.j41(49,"button",31),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onSendPayment())}),e.EFF(50,"Send Payment"),e.k0s()()()()()()}if(2&a){const o=e.sdS(15),r=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",i.paymentRequest),e.R7$(2),e.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!i.paymentRequest),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.decodeError),e.R7$(),e.Y8G("ngIf",i.zeroAmtInvoice),e.R7$(5),e.JRh(i.advancedTitle),e.R7$(5),e.R50("value",i.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(null==i.selFeeLimitType?null:i.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",i.selFeeLimitType===i.feeLimitTypes[0]),e.R50("ngModel",i.feeLimit),e.R7$(2),e.Y8G("ngIf",i.selFeeLimitType!==i.feeLimitTypes[0]&&!i.feeLimit),e.R7$(4),e.Y8G("formControl",i.selectedChannelCtrl)("matAutocomplete",r),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",i.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==i.selectedChannelCtrl.errors?null:i.selectedChannelCtrl.errors.notfound),e.R7$(),e.Y8G("ngIf",""!==i.paymentError)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.l_,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,$.fg,f.rl,f.nJ,f.MV,f.TL,R.VO,V.wT,oe.$3,oe.pN,Z.N,te.V]})}return n})();var me=g(7541);const Jn=["sendPaymentForm"],Wn=()=>["all"],Qn=n=>({"error-border":n}),Zn=()=>["no_payment"],le=n=>({"mr-0":n}),ne=n=>({width:n}),Kn=n=>({"display-none":n});function ei(n,s){if(1&n&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ti(n,s){if(1&n&&e.nrm(0,"span",20),2&n){const t=e.XpG(3);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function ni(n,s){if(1&n&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,ei,2,1,"span",16)(3,ti,1,1,"span",17),e.EFF(4),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function ii(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ai(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),e.EFF(4,"Payment Request"),e.k0s(),e.j41(5,"textarea",9,1),e.bIt("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPaymentRequestEntry(i))})("matTextareaAutosize",function(){return e.eBV(t),e.Njj(!0)}),e.k0s(),e.DNE(7,ni,5,4,"mat-hint",10)(8,ii,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngModel",t.paymentRequest),e.R7$(2),e.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!t.paymentRequest)}}function si(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function oi(n,s){if(1&n&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function li(n,s){1&n&&e.nrm(0,"mat-progress-bar",77)}function ri(n,s){1&n&&e.nrm(0,"th",78)}function ci(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function pi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function mi(n,s){if(1&n&&(e.j41(0,"td",79),e.DNE(1,ci,1,3,"span",80)(2,pi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status))}}function ui(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function di(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function hi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function _i(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash)}}function fi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function Ci(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function yi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage)}}function bi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function Fi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description)}}function xi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function vi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function Ti(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function Si(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==t?null:t.failure_reason,"failure_reason","_")," ")}}function ki(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function Ri(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.payment_index))}}function Ei(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Ii(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.fee))}}function Li(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function wi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.value))}}function ji(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function Gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh((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 Di(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",89)(1,"div",90)(2,"mat-select",91),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",92),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Ni(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onPaymentClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Pi(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function $i(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Ai(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function Mi(n,s){if(1&n&&(e.j41(0,"td",95),e.DNE(1,Pi,2,0,"p",11)(2,$i,2,0,"p",11)(3,Ai,2,1,"p",11),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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 Bi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Oi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Vi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Yi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Xi(n,s){if(1&n&&(e.j41(0,"span",96),e.DNE(1,Vi,1,3,"span",80)(2,Yi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===t.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==t.status)}}function Ui(n,s){if(1&n&&(e.qex(0),e.DNE(1,Xi,3,2,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Hi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Bi,1,3,"span",80)(3,Oi,1,3,"span",81),e.k0s(),e.DNE(4,Ui,2,1,"ng-container",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function qi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,t.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function zi(n,s){if(1&n&&(e.qex(0),e.DNE(1,qi,3,4,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ji(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.k0s(),e.DNE(3,zi,2,1,"ng-container",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==t||null==t.htlcs?null:t.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Wi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.index;e.R7$(),e.SpI(" HTLC ",t+1," ")}}function Qi(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Wi,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,Qi,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ki(n,s){1&n&&e.nrm(0,"span",96)}function ea(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Ki,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ta(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ea,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function na(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.preimage," ")}}function ia(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,na,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function aa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ia,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function sa(n,s){1&n&&e.nrm(0,"span",96)}function oa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,sa,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function la(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,oa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ra(n,s){1&n&&e.nrm(0,"span",96)}function ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ra,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function pa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ma(n,s){1&n&&e.nrm(0,"span",96)}function ua(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ma,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function da(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,ua,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==t?null:t.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ha(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,t.attempt_id)," ")}}function _a(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ha,3,3,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function fa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,_a,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==t?null:t.payment_index)),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ga(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function Ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ga,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ya(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ba(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function Fa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ba,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function xa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Fa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function va(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==t.route||null==t.route.hops?null:t.route.hops.length)||0,"1.0-0")," ")}}function Ta(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,va,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Sa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ta,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ka(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Ra(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,ka,3,1,"div",103),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ea(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!(null!=i&&i.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,Ra,2,1,"div",11),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(null!=t&&t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ia(n,s){1&n&&e.nrm(0,"tr",106)}function La(n,s){if(1&n&&e.nrm(0,"tr",107),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Kn,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function wa(n,s){1&n&&e.nrm(0,"tr",108)}function ja(n,s){1&n&&e.nrm(0,"tr",106)}function Ga(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",23)(1,"div",24)(2,"div",25),e.nrm(3,"fa-icon",26),e.j41(4,"span",27),e.EFF(5,"Payments History"),e.k0s()(),e.j41(6,"div",28)(7,"mat-form-field",29)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",30),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,oi,2,2,"mat-option",31),e.k0s()()(),e.j41(13,"mat-form-field",29)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",32),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,li,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,ri,1,0,"th",38)(24,mi,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,ui,2,0,"th",41)(27,di,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,hi,2,0,"th",41)(30,_i,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,fi,2,0,"th",41)(33,gi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,Ci,2,0,"th",41)(36,yi,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,bi,2,0,"th",41)(39,Fi,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,xi,2,0,"th",41)(42,vi,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ti,2,0,"th",41)(45,Si,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,ki,2,0,"th",49)(48,Ri,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,Ei,2,0,"th",49)(51,Ii,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Li,2,0,"th",49)(54,wi,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,ji,2,0,"th",49)(57,Gi,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,Di,6,0,"th",54)(60,Ni,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Mi,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Hi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,Ji,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,Zi,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,ta,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,aa,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,la,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,pa,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,da,5,6,"td",39),e.bVm(),e.qex(79,66),e.DNE(80,fa,5,4,"td",39),e.bVm(),e.qex(81,67),e.DNE(82,ya,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,xa,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,Sa,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,Ea,5,2,"td",39),e.bVm(),e.DNE(89,Ia,1,0,"tr",71)(90,La,1,3,"tr",72)(91,wa,1,0,"tr",73)(92,ja,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,Wn).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(3),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",e.eq3(19,Qn,""!==t.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,Zn)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalPayments)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Oe=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=p,this.datePipe=F,this.camelCaseWithReplace=C,this.calledFrom="transactions",this.faHistory=b.Int,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new c.I6([]),this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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(a=>this.htlcColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.KT).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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.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,J.s)(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,E.I1)({payload:{data:{type:l.A$.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.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.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.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.UN.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.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(i=>{i&&(this.paymentDecoded.num_satoshis=i[0].inputValue,this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:i[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,E.xO)({payload:{data:{component:zn}}}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,J.s)(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.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}onPageChange(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0);const o=t.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(o,o+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 new Promise((i,o)=>{const r=a.peers.find(p=>p.pub_key===t.pub_key);r&&r.alias?i("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"):a.dataService.getAliasesFromPubkeys(t.pub_key||"",!1).pipe((0,_.Q)(a.unSubs[7])).subscribe({next:p=>i("
Channel: "+(p.node&&p.node.alias?p.node.alias.padEnd(20):t.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"),error:p=>i("
Channel: "+(t.pub_key?t.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
")})})}onHTLCClick(t,a){a.payment_request&&""!==a.payment_request.trim()?this.dataService.decodePayment(a.payment_request,!1).pipe((0,J.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showHTLCView(t,a,i)},0)},error:i=>{this.showHTLCView(t,a)}}):this.showHTLCView(t,a)}showHTLCView(t,a,i){t.route&&t.route.hops&&t.route.hops.length?Promise.all(t.route.hops.map(o=>this.getHopDetails(o))).then(o=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,o),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}):this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,[]),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}prepareData(t,a,i,o){const r=[[{key:"payment_hash",value:a.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"preimage",value:t.preimage,title:"Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:a.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:33,type:l.UN.STRING},{key:"attempt_time_ns",value:+(t.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:l.UN.DATE_TIME},{key:"resolve_time_ns",value:+(t.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:l.UN.DATE_TIME}],[{key:"total_amt",value:t.route?.total_amt,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"total_fees",value:t.route?.total_fees,title:"Fee (Sats)",width:33,type:l.UN.NUMBER},{key:"total_time_lock",value:t.route?.total_time_lock,title:"Total Time Lock",width:34,type:l.UN.NUMBER}],[{key:"hops",value:o,title:"Hops",width:100,type:l.UN.ARRAY}]];return i&&i.description&&""!==i.description&&r.splice(3,0,[{key:"description",value:i.description,title:"Description",width:100,type:l.UN.STRING}]),r}onPaymentClick(t){if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const a=t.htlcs[0].route.hops?.reduce((i,o)=>o.pub_key&&""===i?o.pub_key:i+","+o.pub_key,"");this.dataService.getAliasesFromPubkeys(a,!0).pipe((0,_.Q)(this.unSubs[8])).subscribe(i=>{this.showPaymentView(t,i?.reduce((o,r)=>""===o?r:o+"\n"+r,""))})}else this.showPaymentView(t,"")}showPaymentView(t,a){const i=[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:t.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:50,type:l.UN.STRING},{key:"creation_date",value:t.creation_date,title:"Creation Date",width:50,type:l.UN.DATE_TIME}],[{key:"value_msat",value:t.value_msat,title:"Value (mSats)",width:50,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:50,type:l.UN.NUMBER}],[{key:"path",value:a,title:"Path",width:100,type:l.UN.STRING}]];t.payment_request&&""!==t.payment_request.trim()?this.dataService.decodePayment(t.payment_request,!1).pipe((0,J.s)(1)).subscribe(o=>{o&&o.description&&""!==o.description&&i.splice(3,0,[{key:"description",value:o.description,title:"Description",width:100,type:l.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(i,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(i,!1)}openPaymentAlert(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Information",message:t,scrollable:a}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"status":case"group_status":i="SUCCEEDED"===t?.status?"succeeded":"failed";break;case"creation_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":i=this.camelCaseWithReplace.transform(t.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":i=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:i=typeof t[this.selFilterBy]>"u"?"":"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===i.indexOf(a):i.includes(a)}}loadPaymentsTable(t){this.payments=new c.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,i)=>"hops"===i?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[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),a=t?.reduce((i,o)=>(o.payment_request&&""!==o.payment_request.trim()&&(i=""===i?o.payment_request:i+","+o.payment_request),i),"");this.dataService.decodePayments(a).pipe((0,_.Q)(this.unSubs[9])).subscribe(i=>{let o=0;i.forEach((p,F)=>{if(p){for(;t[F+o].payment_hash!==p.payment_hash;)o+=1;t[F+o].description=p.description}});const r=t?.reduce((p,F)=>p.concat(F),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u),e.rXU(I.il),e.rXU(me.H),e.rXU(d.QX),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(a,i){if(1&a&&(e.GBs(Jn,5),e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["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"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[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 wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[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.gt-xs","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"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["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(a,i){1&a&&(e.j41(0,"div",3),e.DNE(1,ai,14,3,"form",4)(2,si,3,0,"div",5)(3,Ga,94,22,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX,d.vh,q.VD],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.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:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:11rem}"]})}return n})();const Ve=n=>({backgroundColor:n});function Da(n,s){if(1&n&&e.nrm(0,"span",8),2&n){const t=e.XpG();e.Y8G("ngStyle",e.eq3(1,Ve,null==t.information?null:t.information.color))}}function Na(n,s){if(1&n&&(e.j41(0,"div")(1,"h4",1),e.EFF(2,"Color"),e.k0s(),e.j41(3,"div",2),e.nrm(4,"span",9),e.EFF(5),e.nI1(6,"uppercase"),e.k0s()()),2&n){const t=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,Ve,null==t.information?null:t.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Pa(n,s){1&n&&e.nrm(0,"span",10)}function $a(n,s){1&n&&e.nrm(0,"span",11)}function Aa(n,s){if(1&n&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}let Ye=(()=>{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))}))}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[e.OA$],decls:19,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[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(a,i){1&a&&(e.j41(0,"div",0)(1,"div")(2,"h4",1),e.EFF(3,"Alias"),e.k0s(),e.j41(4,"div",2),e.EFF(5),e.DNE(6,Da,1,3,"span",3),e.k0s()(),e.DNE(7,Na,7,6,"div",4),e.j41(8,"div")(9,"h4",1),e.EFF(10,"Implementation"),e.k0s(),e.j41(11,"div",2),e.EFF(12),e.k0s()(),e.j41(13,"div")(14,"h4",1),e.EFF(15,"Chain"),e.k0s(),e.DNE(16,Pa,1,0,"span",5)(17,$a,1,0,"span",6)(18,Aa,2,1,"span",7),e.k0s()()),2&a&&(e.R7$(5),e.SpI(" ",null==i.information?null:i.information.alias," "),e.R7$(),e.Y8G("ngIf",!i.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",i.showColorFieldSeparately),e.R7$(5),e.JRh(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.R7$(4),e.Y8G("ngIf",null==i.information?null:i.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=i.information&&i.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",i.chains))},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,Q.oV,d.Pc]})}return n})();function Ma(n,s){if(1&n&&(e.j41(0,"div",2)(1,"div")(2,"h4",3),e.EFF(3,"Lightning"),e.k0s(),e.j41(4,"div",4),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",5),e.k0s(),e.j41(8,"div")(9,"h4",3),e.EFF(10,"On-chain"),e.k0s(),e.j41(11,"div",4),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.nrm(14,"mat-progress-bar",5),e.k0s(),e.j41(15,"div")(16,"h4",3),e.EFF(17,"Total"),e.k0s(),e.j41(18,"div",4),e.EFF(19),e.nI1(20,"number"),e.k0s()()()),2&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,5,null==t.balances?null:t.balances.lightning)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.lightning)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(13,7,null==t.balances?null:t.balances.onchain)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.onchain)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(20,9,null==t.balances?null:t.balances.total)," Sats")}}function Ba(n,s){if(1&n&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Oa=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["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(a,i){if(1&a&&e.DNE(0,Ma,21,11,"div",1)(1,Ba,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,d.QX]})}return n})();function Va(n,s){if(1&n&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Daily"),e.k0s(),e.j41(5,"div",5),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div")(9,"h4",4),e.EFF(10,"Weekly"),e.k0s(),e.j41(11,"div",5),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div")(15,"h4",4),e.EFF(16,"Monthly"),e.k0s(),e.j41(17,"div",5),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",6),e.nrm(21,"h4",7)(22,"span",5),e.k0s()(),e.j41(23,"div",3)(24,"div")(25,"h4",4),e.EFF(26,"Transactions"),e.k0s(),e.j41(27,"div",5),e.EFF(28),e.nI1(29,"number"),e.k0s()(),e.j41(30,"div")(31,"h4",4),e.EFF(32,"Transactions"),e.k0s(),e.j41(33,"div",5),e.EFF(34),e.nI1(35,"number"),e.k0s()(),e.j41(36,"div")(37,"h4",4),e.EFF(38,"Transactions"),e.k0s(),e.j41(39,"div",5),e.EFF(40),e.nI1(41,"number"),e.k0s()(),e.j41(42,"div",6),e.nrm(43,"h4",7)(44,"span",5),e.k0s()()()),2&n){const t=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==t.fees?null:t.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==t.fees?null:t.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==t.fees?null:t.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==t.fees?null:t.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==t.fees?null:t.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==t.fees?null:t.fees.monthly_tx_count))}}function Ya(n,s){if(1&n&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Xe=(()=>{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 a=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-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)}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[e.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["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(a,i){if(1&a&&e.DNE(0,Va,45,18,"div",1)(1,Ya,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}return n})();function Xa(n,s){if(1&n&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Active"),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",6),e.EFF(7),e.nI1(8,"number"),e.k0s()(),e.j41(9,"div")(10,"h4",4),e.EFF(11,"Pending"),e.k0s(),e.j41(12,"div",5),e.nrm(13,"span",7),e.EFF(14),e.nI1(15,"number"),e.k0s()(),e.j41(16,"div")(17,"h4",4),e.EFF(18,"Inactive"),e.k0s(),e.j41(19,"div",5),e.nrm(20,"span",8),e.EFF(21),e.nI1(22,"number"),e.k0s()(),e.j41(23,"div")(24,"h4",4),e.EFF(25,"Closing"),e.k0s(),e.j41(26,"div",5),e.nrm(27,"span",9),e.EFF(28),e.nI1(29,"number"),e.k0s()()(),e.j41(30,"div",3)(31,"div")(32,"h4",4),e.EFF(33,"Capacity"),e.k0s(),e.j41(34,"div",5),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div")(38,"h4",4),e.EFF(39,"Capacity"),e.k0s(),e.j41(40,"div",5),e.EFF(41),e.nI1(42,"number"),e.k0s()(),e.j41(43,"div")(44,"h4",4),e.EFF(45,"Capacity"),e.k0s(),e.j41(46,"div",5),e.EFF(47),e.nI1(48,"number"),e.k0s()(),e.j41(49,"div")(50,"h4",4),e.EFF(51,"Capacity"),e.k0s(),e.j41(52,"div",5),e.EFF(53),e.nI1(54,"number"),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.capacity)||0)," Sats")}}function Ua(n,s){if(1&n&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ue=(()=>{class n{constructor(){this.channelsStatus={}}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["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(a,i){if(1&a&&e.DNE(0,Xa,55,24,"div",1)(1,Ua,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}return n})();var ee=g(1997);const Ha=()=>["../connections/channels/open"],qa=(n,s)=>({filterColumn:n,filterValue:s});function za(n,s){if(1&n&&(e.j41(0,"div",19)(1,"a",20),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",22),e.nrm(11,"fa-icon",23),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",24)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",25),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(21,Ha))("state",e.l_i(22,qa,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,11,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,15,t.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",a.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,17,t.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,19,t.remote_balance||0)," Sats"),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function Ja(n,s){if(1&n&&(e.j41(0,"div",17),e.DNE(1,za,20,25,"div",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function Wa(n,s){if(1&n&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",9),e.nrm(11,"fa-icon",10),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",11)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",12),e.k0s(),e.j41(20,"div",13),e.nrm(21,"mat-divider",14),e.k0s(),e.j41(22,"div",15),e.DNE(23,Ja,2,1,"div",16),e.k0s()()),2&n){const t=e.XpG(),a=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",t.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,9,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,11,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.FS9("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.R7$(4),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function Qa(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function Za(n,s){if(1&n&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ka=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=b.GR4,this.faDumbbell=b.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","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(a,i){if(1&a&&e.DNE(0,Wa,24,13,"div",2)(1,Qa,4,0,"ng-template",null,0,e.C5r)(3,Za,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.Sq,d.bT,M.aY,h.DJ,h.sA,h.UI,G.$z,f.MV,ee.q,B.HM,Q.oV,A.Ld,x.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();var He=g(8711),qe=g(4104);const es=(n,s,t)=>({"mb-4":n,"mb-2":s,"mb-1":t}),ts=()=>["../connections/channels/open"],ns=(n,s)=>({filterColumn:n,filterValue:s});function is(n,s){if(1&n&&(e.j41(0,"mat-hint",19)(1,"strong",20),e.EFF(2,"Capacity: "),e.k0s(),e.EFF(3),e.nI1(4,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,t.remote_balance||0)," Sats")}}function as(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2).$implicit,o=e.XpG(3);return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function ss(n,s){if(1&n&&(e.j41(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e.EFF(3,"Capacity: "),e.k0s(),e.EFF(4),e.nI1(5,"number"),e.k0s(),e.DNE(6,as,2,0,"button",23),e.k0s()),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,t.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",a.showLoop)}}function os(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.remote_balance||0)/a.totalLiquidity*100:0)}}function ls(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.local_balance||0)/a.totalLiquidity*100:0)}}function rs(n,s){if(1&n&&(e.j41(0,"div",13)(1,"a",14),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",15),e.DNE(5,is,5,3,"mat-hint",16)(6,ss,7,4,"div",17),e.k0s(),e.DNE(7,os,1,1,"mat-progress-bar",18)(8,ls,1,1,"mat-progress-bar",18),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(14,ts))("state",e.l_i(15,ns,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,10,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction),e.R7$(),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction)}}function cs(n,s){if(1&n&&(e.j41(0,"div",11),e.DNE(1,rs,9,18,"div",12),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function ps(n,s){if(1&n&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"mat-hint",6),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"mat-divider",9),e.k0s(),e.DNE(10,cs,2,1,"div",10),e.k0s()),2&n){const t=e.XpG(),a=e.sdS(2);e.Y8G("ngClass",e.sMw(6,es,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.R7$(5),e.SpI("",e.bMT(6,4,t.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function ms(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function us(n,s){if(1&n&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,ms,2,0,"button",27),e.k0s()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===t.direction)}}function ds(n,s){if(1&n&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let hs=(()=>{class n{constructor(t,a,i,o){this.router=t,this.loopService=a,this.commonService=i,this.store=o,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!t?.settings.swapServerUrl||""===t.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix),e.rXU(qe.Q),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","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","80","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","end center","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","20","fxLayoutAlign","end center","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(a,i){if(1&a&&e.DNE(0,ps,11,10,"div",2)(1,us,3,1,"ng-template",null,0,e.C5r)(3,ds,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,G.$z,f.MV,ee.q,B.HM,Q.oV,A.Ld,x.Wk,d.P9,d.QX]})}return n})();const ze=n=>({"dashboard-card-content":!0,"error-border":n}),_s=n=>({"p-0":n});function fs(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(11);e.Y8G("matMenuTriggerFor",t)}}function gs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG().$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Cs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){e.eBV(t);const i=e.XpG(3);return e.Njj(i.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function ys(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function bs(n,s){if(1&n&&e.nrm(0,"rtl-node-info",31),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function Fs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function xs(n,s){if(1&n&&e.nrm(0,"rtl-channel-capacity-info",33),2&n){const t=e.XpG(3);e.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("allChannels",t.allChannelsCapacity)("errorMessage",t.errorMessages[3])}}function vs(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",34),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[1])}}function Ts(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",35),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function Ss(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function ks(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),e.nrm(5,"fa-icon",14),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"div"),e.DNE(9,fs,3,1,"button",15),e.j41(10,"mat-menu",16,1),e.DNE(12,gs,2,1,"button",17)(13,Cs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,ys,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,bs,1,2,"rtl-node-info",22)(18,Fs,1,2,"rtl-balances-info",23)(19,xs,1,4,"rtl-channel-capacity-info",24)(20,vs,1,2,"rtl-fee-info",25)(21,Ts,1,2,"rtl-channel-status-info",26)(22,Ss,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(5),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===t.id),e.R7$(),e.FS9("fxFlex","node"===t.id||"balance"===t.id?70:"fee"===t.id||"status"===t.id?78:90),e.Y8G("ngClass",e.eq3(16,ze,"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.R7$(),e.Y8G("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.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","capacity"),e.R7$(),e.Y8G("ngSwitchCase","fee"),e.R7$(),e.Y8G("ngSwitchCase","status")}}function Rs(n,s){if(1&n&&(e.j41(0,"div",5)(1,"div",6),e.nrm(2,"fa-icon",7),e.j41(3,"span",8),e.EFF(4),e.k0s()(),e.j41(5,"mat-grid-list",9),e.DNE(6,ks,23,18,"mat-grid-tile",10),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),e.R7$(2),e.JRh(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.R7$(),e.Y8G("rowHeight",t.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",t.operatorCards)}}function Es(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(9);e.Y8G("matMenuTriggerFor",t)}}function Is(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Ls(n,s){if(1&n&&(e.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),e.nrm(3,"fa-icon",14),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.j41(6,"div"),e.DNE(7,Es,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Is,2,1,"button",17),e.k0s()()()()),2&n){const t=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions)}}function ws(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function js(n,s){if(1&n&&e.nrm(0,"rtl-node-info",45),2&n){const t=e.XpG(3);e.Y8G("information",t.information)}}function Gs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function Ds(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function Ns(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function Ps(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function $s(n,s){if(1&n&&(e.j41(0,"span",47)(1,"mat-tab-group",48)(2,"mat-tab",49),e.nrm(3,"rtl-lightning-invoices",50),e.k0s(),e.j41(4,"mat-tab",51),e.nrm(5,"rtl-lightning-payments",50),e.k0s()(),e.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Ps,2,1,"button",17),e.k0s()()()),2&n){const t=e.sdS(11),a=e.XpG().$implicit;e.R7$(3),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("matMenuTriggerFor",t),e.R7$(5),e.Y8G("ngForOf",a.goToOptions)}}function As(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ms(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ls,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,ws,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,js,1,1,"rtl-node-info",42)(7,Gs,1,2,"rtl-balances-info",23)(8,Ds,1,4,"rtl-channel-liquidity-info",43)(9,Ns,1,4,"rtl-channel-liquidity-info",43)(10,$s,13,4,"span",44)(11,As,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(),e.Y8G("ngClass",e.eq3(13,_s,"transactions"===t.id)),e.R7$(),e.Y8G("ngIf","transactions"!==t.id),e.R7$(),e.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),e.Y8G("ngClass",e.eq3(15,ze,"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.R7$(),e.Y8G("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.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","inboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","outboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","transactions")}}function Bs(n,s){if(1&n&&(e.j41(0,"div",36),e.nrm(1,"fa-icon",7),e.j41(2,"span",8),e.EFF(3),e.k0s()(),e.j41(4,"mat-grid-list",37),e.DNE(5,Ms,12,17,"mat-grid-tile",10),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faSmile),e.R7$(2),e.SpI("Welcome ",t.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",t.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",t.merchantCards)}}let Os=(()=>{class n{constructor(t,a,i,o,r){switch(this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.router=r,this.faSmile=Me.Qpm,this.faFrown=Me.wB1,this.faAngleDoubleDown=b.WxX,this.faAngleDoubleUp=b.$sC,this.faChartPie=b.W1p,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=l.HW,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},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="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.screenSizeEnum=l.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case l.f7.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.f7.SM:case l.f7.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.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.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.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=t.apiCallStatus,this.apiCallStatusBlockchainBalance.status===l.wn.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.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.wn.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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const a=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,i=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:a,remoteBalance:i,balancedness:+(1-Math.abs((a-i)/(a+i))).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=t.channelsSummary.active?.num_channels||0,this.inactiveChannels=t.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=t.channels?.filter(r=>!0===r.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.remote_balance&&r.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.local_balance&&r.local_balance>0),"local_balance"))),this.allChannels.forEach(r=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(r.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(r.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,_.Q)(this.unSubs[5]),(0,Y.p)(t=>t.type===l.QP.FETCH_FEES_LND||t.type===l.QP.SET_FEES_LND)).subscribe(t=>{t.type===l.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),t.type===l.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(t){"inactive"===t?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,a)=>{const i=+(t.local_balance||0)+ +(t.remote_balance||0),o=+(a.local_balance||0)+ +(a.remote_balance||0);return i>o?-1:i{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-home"]],decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["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"],["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"],["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","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[3,"calledFrom"],["label","Pay"],[1,"underline"]],template:function(a,i){if(1&a&&e.DNE(0,Rs,7,4,"div",4)(1,Bs,6,4,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",(null==i.selNode?null:i.selNode.settings.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,M.aY,h.DJ,h.sA,h.UI,L.PW,G.iY,T.RN,T.m2,T.MM,T.dh,he.B_,he.NS,ie.An,ve.kk,ve.fb,ve.Cp,B.HM,P.mq,P.T8,Be,Oe,Ye,Oa,Xe,Ue,Ka,hs]})}return n})();var Te=g(1975),Se=g(5837);function Vs(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activeChannels)}}function Ys(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activePeers)}}let Xs=(()=>{class n{constructor(t,a,i){this.store=t,this.logger=a,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=b.gdJ,this.faChartPie=b.W1p,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.activeChannels=t.channelsSummary.active?.num_channels||0,this.logger.info(t)}),this.store.select(y.$7).pipe((0,_.Q)(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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(j.gP),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({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"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["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(a,i){1&a&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e.nrm(7,"rtl-currency-unit-converter",5),e.k0s()()(),e.j41(8,"div",0),e.nrm(9,"fa-icon",1),e.j41(10,"span",2),e.EFF(11,"Connections"),e.k0s()(),e.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.mxI("selectedIndexChange",function(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(16,"mat-tab"),e.DNE(17,Vs,2,1,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,Ys,2,1,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&a&&(e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faUsers),e.R7$(6),e.R50("selectedIndex",i.activeLink))},dependencies:[M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,Te.k,P.ES,P.mq,P.T8,Se.f,x.n3]})}return n})();var ke=g(9172),Je=g(6354),We=g(92);const Us=["form"];function Hs(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function zs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function Js(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",38)(1,"mat-label"),e.EFF(2,"Peer Alias"),e.k0s(),e.nrm(3,"input",39),e.j41(4,"mat-autocomplete",40,4),e.bIt("optionSelected",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(6,Hs,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,qs,2,0,"mat-error",20)(9,zs,2,0,"mat-error",20),e.k0s()}if(2&n){const t=e.sdS(5),a=e.XpG();e.R7$(3),e.Y8G("formControl",a.selectedPeer)("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,a.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.notfound)}}function Ws(n,s){1&n&&e.eu8(0)}function Qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Zs(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function Ks(n,s){if(1&n&&(e.j41(0,"div",42),e.nrm(1,"fa-icon",43),e.j41(2,"span",6)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",44)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function eo(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function to(n,s){if(1&n&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)")}}function no(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function io(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function ao(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function so(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.taprootChannel,i)||(o.taprootChannel=i),e.Njj(i)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.R50("ngModel",t.taprootChannel)}}function oo(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.channelConnectionError)}}function lo(n,s){if(1&n&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,oo,2,1,"span",20),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.channelConnectionError)}}function ro(n,s){if(1&n&&(e.j41(0,"mat-expansion-panel",48)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e.EFF(4,"Peer: \xa0"),e.k0s(),e.j41(5,"strong",49),e.EFF(6),e.k0s()()(),e.j41(7,"div",13)(8,"div",50)(9,"div",38)(10,"h4",51),e.EFF(11,"Pubkey"),e.k0s(),e.j41(12,"span",52),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",53),e.j41(15,"div",50)(16,"div",54)(17,"h4",51),e.EFF(18,"Address"),e.k0s(),e.j41(19,"span",55),e.EFF(20),e.k0s()(),e.j41(21,"div",54)(22,"h4",51),e.EFF(23,"Inbound"),e.k0s(),e.j41(24,"span",55),e.EFF(25),e.k0s()()()()()),2&n){const t=e.XpG(2);e.R7$(6),e.JRh((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.address)),e.R7$(7),e.JRh(t.peer.pub_key),e.R7$(7),e.JRh(null==t.peer?null:t.peer.address),e.R7$(5),e.JRh(null!=t.peer&&t.peer.inbound?"True":"False")}}function co(n,s){if(1&n&&e.DNE(0,ro,26,4,"mat-expansion-panel",47),2&n){const t=e.XpG();e.Y8G("ngIf",t.peer)}}let Qe=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.dialogRef=a,this.data=i,this.store=o,this.actions=r,this.commonService=p,this.dataService=F,this.selectedPeer=new m.hs,this.amount=new m.hs,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.isTaprootAvailable=!1,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=l.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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.isTaprootAvailable=this.commonService.isVersionCompatible(this.information.version,"0.17.0")):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[],this.isTaprootAvailable=!1),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.isPrivate=!!i?.settings.unannouncedChannels}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.FETCH_CHANNELS_LND)).subscribe(i=>{i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===l.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",a="";this.sortedPeers=this.peers.sort((i,o)=>(t=i.alias?i.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",a=o.alias?o.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",ta?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(""),(0,Je.T)(i=>"string"==typeof i?i:i.alias?i.alias:i.pub_key),(0,Je.T)(i=>i?this.filterPeers(i):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.pub_key:""}onSelectedPeerChanged(){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 t=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].pub_key&&(this.selectedPubkey=t[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=!!this.selNode?.settings.unannouncedChannels,this.taprootChannel=!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||"2"===this.selTransType&&this.recommendedFee.minimumFee>+this.transTypeValue)return!0;this.store.dispatch((0,v.vL)({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,commitmentType:this.taprootChannel?5:null}}))}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:"")+" | Taproot Channel: "+(this.taprootChannel?"Yes":"No")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}onSelTransTypeChanged(t){this.transTypeValue="",t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(a,i){if(1&a&&e.GBs(Us,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},decls:64,vars:30,consts:[["form","ngForm"],["amt","ngModel"],["transTypeVal","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amnt",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["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","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxFlex","49"],["tabindex","3",3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","tabindex","4","name","transTpValue",3,"ngModelChange","required","disabled","step","min","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-2"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","spendUnconfirmed",3,"ngModelChange","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"],["fxFlex","100"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["tabindex","6","color","primary","name","taprootChannel",3,"ngModelChange","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5),e.k0s()(),e.j41(6,"button",10),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return e.eBV(o),e.Njj(i.onOpenChannel())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.j41(11,"div",13),e.DNE(12,Js,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,Ws,1,0,"ng-container",15),e.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),e.EFF(18,"Amount"),e.k0s(),e.j41(19,"input",18,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.fundingAmount,p)||(i.fundingAmount=p),e.Njj(p)}),e.k0s(),e.j41(21,"mat-hint"),e.EFF(22),e.nI1(23,"number"),e.k0s(),e.j41(24,"span",19),e.EFF(25," Sats "),e.k0s(),e.DNE(26,Qs,2,0,"mat-error",20)(27,Zs,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.isPrivate,p)||(i.isPrivate=p),e.Njj(p)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0))})("opened",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!1))}),e.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),e.EFF(35),e.k0s()()(),e.j41(36,"div",24),e.DNE(37,Ks,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-select",27),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selTransType,p)||(i.selTransType=p),e.Njj(p)}),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(p))}),e.DNE(41,eo,2,2,"mat-option",28),e.k0s()(),e.j41(42,"mat-form-field",26)(43,"mat-label"),e.EFF(44),e.k0s(),e.j41(45,"input",29,2),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.transTypeValue,p)||(i.transTypeValue=p),e.Njj(p)}),e.k0s(),e.DNE(47,to,2,1,"mat-hint",20)(48,no,2,0,"mat-error",20)(49,io,2,0,"mat-error",20)(50,ao,2,1,"mat-error",20),e.k0s()(),e.j41(51,"div",30),e.DNE(52,so,3,1,"div",31),e.j41(53,"div",32)(54,"mat-slide-toggle",33),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.spendUnconfirmed,p)||(i.spendUnconfirmed=p),e.Njj(p)}),e.EFF(55,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(56,lo,3,2,"div",34),e.j41(57,"div",35)(58,"button",36),e.EFF(59,"Clear Fields"),e.k0s(),e.j41(60,"button",37),e.EFF(61,"Open Channel"),e.k0s()()()()()(),e.DNE(62,co,1,1,"ng-template",null,3,e.C5r)}if(2&a){const o=e.sdS(20),r=e.sdS(63);e.R7$(5),e.JRh(i.alertTitle),e.R7$(7),e.Y8G("ngIf",!i.peer&&i.peers&&i.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",r),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",i.totalBalance),e.R50("ngModel",i.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.max),e.R7$(2),e.R50("ngModel",i.isPrivate),e.R7$(6),e.JRh(i.advancedTitle),e.R7$(2),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(3),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.selTransType?"Default":"1"===i.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==i.selTransType)("disabled","0"===i.selTransType)("step",1)("min","2"===i.selTransType?i.recommendedFee.minimumFee:0),e.R50("ngModel",i.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf","1"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&i.transTypeValue&&+i.transTypeValue{class n{constructor(t,a,i,o,r,p,F,C,S){this.dialogRef=t,this.data=a,this.store=i,this.lndEffects=o,this.formBuilder=r,this.actions=p,this.logger=F,this.commonService=C,this.dataService=S,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=l.XG,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.isTaprootAvailable=!1,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[m.k0.required]],peerAddress:[this.data.message?.peer?.pub_key?this.data.message?.peer?.pub_key+(this.data.message?.peer?.address?"@"+this.data.message?.peer?.address:""):"",[m.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[l.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(a.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{a===l.XG[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([m.k0.required]))}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(a=>a.type===l.QP.NEWLY_ADDED_PEER_LND||a.type===l.QP.FETCH_PENDING_CHANNELS_LND||a.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(a=>{a.type===l.QP.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.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),a.type===l.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.wn.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="",i="";t>-1?(a=this.peerFormGroup.controls.peerAddress.value.substring(0,t),i=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(a,i)):(this.store.dispatch((0,v.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,J.s)(1)).subscribe(o=>{setTimeout(()=>{i=o.node.addresses&&o.node.addresses.length&&o.node.addresses.length>0&&o.node.addresses[0].addr?o.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,i)},0)}))}connectPeerWithParams(t,a){this.store.dispatch((0,v.sq)({payload:{pubkey:t,host:a,perm:!1}}))}onOpenChannel(){return"2"===this.channelFormGroup.controls.selTransType.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.transTypeValue.value?(this.channelFormGroup.controls.transTypeValue.setErrors({minimum:!0}),!0):!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||(this.channelConnectionError="",void this.store.dispatch((0,v.vL)({payload:{selectedPeerPubkey:this.newlyAddedPeer?.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,commitmentType:this.channelFormGroup.controls.taprootChannel.value?5:null}})))}onSelTransTypeChanged(t){this.channelFormGroup.controls.transTypeValue.setValue(""),t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){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: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(re.L),e.rXU(m.ze),e.rXU(W.En),e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(a,i){if(1&a&&(e.GBs(po,5),e.GBs(mo,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:70,vars:31,consts:[["stepper",""],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[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","fxFlex","100"],["autoFocus","","matInput","","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"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","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"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType",3,"selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","50"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"step","min","required"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["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"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["tabindex","6","color","primary","formControlName","taprootChannel","name","taprootChannel",1,"ps-2"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Connect to a new peer"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.stepSelectionChanged(p))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,uo,1,1,"ng-template",12),e.j41(15,"mat-form-field",13)(16,"mat-label"),e.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),e.k0s(),e.nrm(18,"input",14),e.DNE(19,ho,2,0,"mat-error",15),e.k0s(),e.DNE(20,_o,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onConnectPeer())}),e.EFF(23),e.k0s()()()(),e.j41(24,"mat-step",10)(25,"form",19),e.DNE(26,fo,1,1,"ng-template",20),e.j41(27,"div",21),e.DNE(28,go,16,6,"div",22),e.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),e.EFF(32,"Amount"),e.k0s(),e.nrm(33,"input",25),e.j41(34,"mat-hint"),e.EFF(35),e.nI1(36,"number"),e.k0s(),e.j41(37,"span",26),e.EFF(38," Sats "),e.k0s(),e.DNE(39,Co,2,0,"mat-error",15)(40,yo,2,0,"mat-error",15)(41,bo,2,1,"mat-error",15),e.k0s(),e.j41(42,"div",27)(43,"mat-slide-toggle",28),e.EFF(44,"Private Channel"),e.k0s()()(),e.j41(45,"div",29)(46,"mat-form-field",30)(47,"mat-label"),e.EFF(48,"Transaction Type"),e.k0s(),e.j41(49,"mat-select",31),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(p))}),e.DNE(50,Fo,2,2,"mat-option",32),e.k0s()(),e.j41(51,"mat-form-field",33)(52,"mat-label"),e.EFF(53),e.k0s(),e.nrm(54,"input",34),e.DNE(55,xo,2,1,"mat-hint",15)(56,vo,2,1,"mat-error",15)(57,To,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,So,3,0,"div",35),e.j41(60,"div",36)(61,"mat-slide-toggle",37),e.EFF(62,"Spend Unconfirmed Output"),e.k0s()()()(),e.DNE(63,ko,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&a&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.peerFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==i.peerConnectionError),e.R7$(3),e.JRh(""!==i.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",i.channelFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.channelFormGroup),e.R7$(3),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0)),""),e.R7$(4),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.channelFormGroup.controls.selTransType.value?"Default":"1"===i.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===i.channelFormGroup.controls.selTransType.value?i.recommendedFee.minimumFee:0)("required","0"!==i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",i.channelFormGroup.controls.transTypeValue.value&&(null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",i.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==i.channelConnectionError),e.R7$(3),e.JRh(""!==i.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=i.newlyAddedPeer&&i.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,R.VO,V.wT,_e.sG,H.V5,H.Ti,H.M6,Z.N,te.V,d.QX]})}return n})();const Ro=()=>["all"],Eo=n=>({"error-border":n}),Io=()=>["no_peer"],Re=n=>({width:n}),Lo=n=>({"display-none":n});function wo(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function jo(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Go(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function Do(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function No(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Po(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function $o(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Ao(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.address)}}function Mo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Bo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==t?null:t.sync_type,"sync","_"))}}function Oo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function Vo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.inbound?"Yes":"No")}}function Yo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function Xo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_sent)," ")}}function Uo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Ho(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_recv)," ")}}function qo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_sent)," ")}}function Jo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function Wo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_recv)," ")}}function Qo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Ping Time ("),e.j41(2,"span"),e.EFF(3,"\xb5"),e.k0s(),e.EFF(4,"s)"),e.k0s())}function Zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.ping_time)," ")}}function Ko(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function el(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onPeerClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenChannel(i))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onPeerDetach(i))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function tl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function nl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function il(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function al(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,tl,2,0,"p",53)(2,nl,2,0,"p",53)(3,il,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function sl(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Lo,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function ol(n,s){1&n&&e.nrm(0,"tr",55)}function ll(n,s){1&n&&e.nrm(0,"tr",56)}let rl=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.store=a,this.rtlEffects=i,this.commonService=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.availableBalance=0,this.faUsers=b.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new c.I6([]),this.information={},this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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&&this.sort&&this.paginator&&this.displayedColumns.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,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",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.UN.NUMBER}],[{key:"sat_sent",value:t.sat_sent,title:"Satoshis Sent",width:50,type:l.UN.NUMBER},{key:"sat_recv",value:t.sat_recv,title:"Satoshis Received",width:50,type:l.UN.NUMBER}],[{key:"bytes_sent",value:t.bytes_sent,title:"Bytes Sent",width:50,type:l.UN.NUMBER},{key:"bytes_recv",value:t.bytes_recv,title:"Bytes Received",width:50,type:l.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:Ze}}}))}onOpenChannel(t){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:Qe}}}))}onPeerDetach(t){this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[4])).subscribe(i=>{i&&this.store.dispatch((0,v.ed)({payload:{pubkey:t.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"sync_type":i=this.camelCaseWithReplace.transform(t.sync_type||"","sync","_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"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===i.indexOf(a):i.includes(a)}}loadPeersTable(t){this.peers=new c.I6(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(me.H),e.rXU(N.h),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Peers")}])],decls:64,vars:19,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onConnectPeer())}),e.EFF(3,"Add Peer"),e.k0s()(),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"fa-icon",7),e.j41(8,"span",8),e.EFF(9,"Connected Peers"),e.k0s()(),e.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),e.EFF(13,"Filter By"),e.k0s(),e.j41(14,"mat-select",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,wo,2,2,"mat-option",12),e.k0s()()(),e.j41(17,"mat-form-field",10)(18,"mat-label"),e.EFF(19,"Filter"),e.k0s(),e.j41(20,"input",13),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,jo,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,Go,2,0,"th",18)(27,Do,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,No,2,0,"th",18)(30,Po,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,$o,2,0,"th",18)(33,Ao,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Mo,2,0,"th",18)(36,Bo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Oo,2,0,"th",18)(39,Vo,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,Yo,2,0,"th",25)(42,Xo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Uo,2,0,"th",25)(45,Ho,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,qo,2,0,"th",25)(48,zo,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,Jo,2,0,"th",25)(51,Wo,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,Qo,5,0,"th",25)(54,Zo,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,Ko,6,0,"th",31)(57,el,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,al,4,3,"td",34),e.bVm(),e.DNE(60,sl,1,3,"tr",35)(61,ol,1,0,"tr",36)(62,ll,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&a&&(e.R7$(7),e.Y8G("icon",i.faUsers),e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,Ro).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.peers)("ngClass",e.eq3(16,Eo,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Io)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}return n})();function cl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numOpenChannels)}}function pl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numPendingChannels)}}function ml(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numClosedChannels)}}function ul(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numActiveHTLCs)}}let dl=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=t.channels?.reduce((a,i)=>a+(i.pending_htlcs&&i.pending_htlcs.length>0?i.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(a=>{(!a.alias||""===a.alias)&&(a.alias=a.pub_key?.substring(0,20))}),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Qe}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({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,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(6,"mat-tab"),e.DNE(7,cl,2,1,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,pl,2,1,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,ml,2,1,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,ul,2,1,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&a&&(e.R7$(5),e.R50("selectedIndex",i.activeLink))},dependencies:[h.DJ,h.sA,h.UI,G.$z,Te.k,P.ES,P.mq,P.T8,x.n3]})}return n})();var ae=g(5416),ge=g(9157);const hl=n=>({"xs-scroll-y":n});function _l(n,s){if(1&n&&(e.j41(0,"div")(1,"div",10)(2,"div",19)(3,"h4",12),e.EFF(4,"Commit Fee"),e.k0s(),e.j41(5,"span",20),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div",19)(9,"h4",12),e.EFF(10,"Commit Weight"),e.k0s(),e.j41(11,"span",20),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div",19)(15,"h4",12),e.EFF(16,"Fee/KW"),e.k0s(),e.j41(17,"span",20),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",19)(21,"h4",12),e.EFF(22,"Static Remote Key"),e.k0s(),e.j41(23,"span",20),e.EFF(24),e.k0s()()(),e.nrm(25,"mat-divider",15),e.j41(26,"div",10)(27,"div",19)(28,"h4",12),e.EFF(29),e.k0s(),e.j41(30,"span",20),e.EFF(31),e.nI1(32,"number"),e.k0s()(),e.j41(33,"div",19)(34,"h4",12),e.EFF(35),e.k0s(),e.j41(36,"span",20),e.EFF(37),e.nI1(38,"number"),e.k0s()(),e.j41(39,"div",19)(40,"h4",12),e.EFF(41,"Unsettled Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"CSV Delay"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.nrm(51,"mat-divider",15),e.j41(52,"div",10)(53,"div",19)(54,"h4",12),e.EFF(55,"Local Reserve (Sats)"),e.k0s(),e.j41(56,"span",20),e.EFF(57),e.nI1(58,"number"),e.k0s()(),e.j41(59,"div",19)(60,"h4",12),e.EFF(61,"Remote Reserve (Sats)"),e.k0s(),e.j41(62,"span",20),e.EFF(63),e.nI1(64,"number"),e.k0s()(),e.j41(65,"div",19)(66,"h4",12),e.EFF(67,"Lifetime (Seconds)"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.nI1(70,"number"),e.k0s()(),e.j41(71,"div",19)(72,"h4",12),e.EFF(73,"Pending HTLCs"),e.k0s(),e.j41(74,"span",20),e.EFF(75),e.nI1(76,"number"),e.k0s()()(),e.nrm(77,"mat-divider",15),e.k0s()),2&n){const t=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,t.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,t.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,t.channel.fee_per_kw)),e.R7$(6),e.JRh(t.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,t.channel.total_satoshis_sent)),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,t.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,t.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,t.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,t.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,t.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,t.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==t.channel||null==t.channel.pending_htlcs?null:t.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function fl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function gl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Cl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",27),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onCopyChanID(i))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("payload",t.channel.chan_id)}}function yl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"OK"),e.k0s()}}let Ee=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.logger=i,this.commonService=o,this.snackBar=r,this.router=p,this.faReceipt=b.Mf0,this.faUpRightFromSquare=b.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,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)}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(t,a){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:t,lookupValue:a}}),this.onClose()}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(N.h),e.rXU(ae.UG),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-information"]],decls:95,vars:38,consts:[["hideAdvancedText",""],["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 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"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","5",1,"foreground-secondary-text"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["tabindex","6","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["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"],["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,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Channel Information"),e.k0s()(),e.j41(7,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(8,"X"),e.k0s()(),e.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),e.EFF(14,"Channel ID"),e.k0s(),e.j41(15,"span",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onGoToLink("1",i.channel.chan_id))}),e.EFF(16),e.k0s()(),e.j41(17,"div",11)(18,"h4",12),e.EFF(19,"Peer Alias"),e.k0s(),e.j41(20,"span",14),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",15),e.j41(23,"div",10)(24,"div",2)(25,"h4",12),e.EFF(26,"Channel Point"),e.k0s(),e.j41(27,"span",16),e.EFF(28),e.j41(29,"fa-icon",17),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onExplorerClicked())}),e.k0s()()()(),e.nrm(30,"mat-divider",15),e.j41(31,"div",10)(32,"div",2)(33,"h4",12),e.EFF(34,"Peer Public Key"),e.k0s(),e.j41(35,"span",18),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onGoToLink("0",i.channel.remote_pubkey))}),e.EFF(36),e.k0s()()(),e.nrm(37,"mat-divider",15),e.j41(38,"div",10)(39,"div",19)(40,"h4",12),e.EFF(41,"Local Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"Remote Balance"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()(),e.j41(51,"div",19)(52,"h4",12),e.EFF(53,"Capacity"),e.k0s(),e.j41(54,"span",20),e.EFF(55),e.nI1(56,"number"),e.k0s()(),e.j41(57,"div",19)(58,"h4",12),e.EFF(59,"Uptime (Seconds)"),e.k0s(),e.j41(60,"span",20),e.EFF(61),e.nI1(62,"number"),e.k0s()()(),e.nrm(63,"mat-divider",15),e.j41(64,"div",10)(65,"div",19)(66,"h4",12),e.EFF(67,"Active"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.k0s()(),e.j41(70,"div",19)(71,"h4",12),e.EFF(72,"Private"),e.k0s(),e.j41(73,"span",20),e.EFF(74),e.k0s()(),e.j41(75,"div",19)(76,"h4",12),e.EFF(77,"Initiator"),e.k0s(),e.j41(78,"span",20),e.EFF(79),e.k0s()(),e.j41(80,"div",19)(81,"h4",12),e.EFF(82,"Number of Updates"),e.k0s(),e.j41(83,"span",20),e.EFF(84),e.nI1(85,"number"),e.k0s()()(),e.nrm(86,"mat-divider",15),e.DNE(87,_l,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onShowAdvanced())}),e.DNE(90,fl,2,0,"p",24)(91,gl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,Cl,2,1,"button",25)(94,yl,2,0,"button",26),e.k0s()()()()()}if(2&a){const o=e.sdS(92);e.R7$(4),e.Y8G("icon",i.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(36,hl,i.screenSize===i.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",i.channel.chan_id," "),e.R7$(5),e.JRh(i.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.channel_point," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,26,i.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,28,i.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,30,i.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,32,i.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.channel.active?"Yes":"No"),e.R7$(5),e.JRh(i.channel.private?"Yes":"No"),e.R7$(5),e.JRh(i.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,34,i.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",i.showAdvanced),e.R7$(3),e.Y8G("ngIf",!i.showAdvanced)("ngIfElse",o),e.R7$(3),e.Y8G("ngIf",i.showCopy),e.R7$(),e.Y8G("ngIf",!i.showCopy)}},dependencies:[d.YU,d.bT,M.aY,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,T.MM,ee.q,Q.oV,ge.U,Z.N,d.QX]})}return n})();var Ie=g(7673),Le=g(1001),bl=g(6949);const ue=(n,s)=>({"small-svg":n,"large-svg":s});function Fl(n,s){1&n&&e.eu8(0)}function xl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",7),e.nrm(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.k0s(),e.joV(),e.j41(41,"div",47)(42,"mat-card-title"),e.EFF(43,"Circular rebalancing explained."),e.k0s()(),e.j41(44,"div",48)(45,"mat-card-subtitle",49),e.EFF(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.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function vl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",51),e.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),e.j41(65,"defs")(66,"linearGradient",90),e.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),e.k0s(),e.j41(70,"linearGradient",94),e.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),e.k0s(),e.j41(74,"linearGradient",95),e.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),e.k0s(),e.j41(78,"linearGradient",96),e.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),e.k0s(),e.j41(82,"linearGradient",97),e.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),e.k0s(),e.j41(86,"linearGradient",98),e.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),e.k0s()()(),e.joV(),e.j41(90,"div",47)(91,"mat-card-title"),e.EFF(92,"Step 1: Unbalanced channel"),e.k0s()(),e.j41(93,"div",48)(94,"mat-card-subtitle",49),e.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Tl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",99),e.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),e.j41(49,"defs")(50,"linearGradient",137),e.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),e.k0s(),e.j41(54,"linearGradient",138),e.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),e.k0s(),e.j41(58,"linearGradient",139),e.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),e.k0s()()(),e.joV(),e.j41(62,"div",47)(63,"mat-card-title"),e.EFF(64,"Step 2: Invoice/Payment"),e.k0s()(),e.j41(65,"div",48)(66,"mat-card-subtitle",49),e.EFF(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.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Sl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),e.j41(42,"defs")(43,"linearGradient",180),e.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),e.k0s()()(),e.joV(),e.j41(47,"div",47)(48,"mat-card-title"),e.EFF(49,"Step 3: Rebalance amount"),e.k0s()(),e.j41(50,"div",48)(51,"mat-card-subtitle",49),e.EFF(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.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function kl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),e.j41(41,"defs")(42,"linearGradient",199),e.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),e.k0s()()(),e.joV(),e.j41(46,"div",47)(47,"mat-card-title"),e.EFF(48,"Rebalance successful!"),e.k0s()(),e.j41(49,"div",48)(50,"mat-card-subtitle",49),e.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let Rl=(()=>{class n{constructor(t){this.commonService=t,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=l.f7}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))}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["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",1,"fill-color-29"],["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",1,"fill-color-29"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["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",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-25"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-21"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-17"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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(a,i){if(1&a&&e.DNE(0,Fl,1,0,"ng-container",5)(1,xl,47,5,"ng-template",null,0,e.C5r)(3,vl,96,5,"ng-template",null,1,e.C5r)(5,Tl,68,5,"ng-template",null,2,e.C5r)(7,Sl,53,5,"ng-template",null,3,e.C5r)(9,kl,52,5,"ng-template",null,4,e.C5r),2&a){const o=e.sdS(2),r=e.sdS(4),p=e.sdS(6),F=e.sdS(8),C=e.sdS(10);e.Y8G("ngTemplateOutlet",1===i.stepNumber?o:2===i.stepNumber?r:3===i.stepNumber?p:4===i.stepNumber?F:C)}},dependencies:[d.YU,d.T3,h.DJ,h.sA,h.UI,L.PW,T.Lc,T.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[bl.k]}})}return n})();const El=["stepper"],Il=()=>[1,2,3,4,5],Ll=(n,s)=>({"dot-primary":n,"dot-primary-lighter":s});function wl(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.inputFormLabel)}}function jl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Dl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==t.selChannel?null:t.selChannel.local_balance,".")}}function Nl(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.Lme("",t.remote_alias," - ",t.chan_id,"")}}function Pl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function $l(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Al(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.feeFormLabel)}}function Ml(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.name," ")}}function Bl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," is required.")}}function Ol(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," must be a positive number.")}}function Vl(n,s){1&n&&e.EFF(0,"Invoice/Payment")}function Yl(n,s){1&n&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function Xl(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function Ul(n,s){if(1&n&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(null!=t.paymentStatus&&t.paymentStatus.error?"close":"check")}}function Hl(n,s){1&n&&e.nrm(0,"div",7)}function ql(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function zl(n,s){if(1&n&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentStatus&&t.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function Jl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function Wl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),e.EFF(5,"Channel Rebalance"),e.k0s()(),e.j41(6,"div",12)(7,"button",13),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(10,"X"),e.k0s()()()(),e.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),e.nrm(15,"fa-icon",18),e.j41(16,"span"),e.EFF(17,"Circular Rebalance is a payment you make to *yourself* 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.k0s()()(),e.j41(18,"div",19)(19,"p",20)(20,"strong"),e.EFF(21,"Channel Peer:\xa0"),e.k0s(),e.EFF(22),e.nI1(23,"titlecase"),e.k0s(),e.j41(24,"p",20)(25,"strong"),e.EFF(26,"Channel ID:\xa0"),e.k0s(),e.EFF(27),e.k0s()(),e.j41(28,"mat-vertical-stepper",21,3),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,wl,1,1,"ng-template",24),e.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),e.EFF(36,"Amount"),e.k0s(),e.nrm(37,"input",27),e.j41(38,"mat-hint"),e.EFF(39),e.k0s(),e.j41(40,"span",28),e.EFF(41,"Sats"),e.k0s(),e.DNE(42,jl,2,0,"mat-error",29)(43,Gl,2,0,"mat-error",29)(44,Dl,2,1,"mat-error",29),e.k0s(),e.j41(45,"mat-form-field",30)(46,"mat-label"),e.EFF(47,"Receive from Peer"),e.k0s(),e.j41(48,"input",31),e.bIt("change",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(51,Nl,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Pl,2,0,"mat-error",29)(54,$l,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Al,1,1,"ng-template",36),e.j41(61,"div",25)(62,"div",25)(63,"mat-form-field",30)(64,"mat-label"),e.EFF(65,"Fee Limits"),e.k0s(),e.j41(66,"mat-select",37),e.DNE(67,Ml,2,2,"mat-option",33),e.k0s()(),e.j41(68,"mat-form-field",26)(69,"mat-label"),e.EFF(70),e.k0s(),e.nrm(71,"input",38),e.DNE(72,Bl,2,1,"mat-error",29)(73,Ol,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,Vl,1,0,"ng-template",24),e.j41(80,"div",41)(81,"mat-expansion-panel",42)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",43),e.EFF(85),e.DNE(86,Yl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,Xl,1,0,"mat-progress-bar",46),e.j41(91,"mat-expansion-panel",47)(92,"mat-expansion-panel-header")(93,"mat-panel-title")(94,"span",43),e.EFF(95),e.DNE(96,Ul,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Hl,1,0,"div",48),e.k0s(),e.DNE(98,ql,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,zl,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,Jl,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&n){const t=e.sdS(50),a=e.XpG(),i=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",a.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,a.selChannel.remote_alias)),e.R7$(5),e.JRh(a.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.inputFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(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.R7$(3),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,a.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",a.feeFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(a.feeFormGroup.controls.selFeeLimitType.value?a.feeFormGroup.controls.selFeeLimitType.value.placeholder:a.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",a.statusFormGroup),e.R7$(),e.Y8G("formGroup",a.statusFormGroup),e.R7$(7),e.JRh(a.flgInvoiceGenerated?a.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated),e.R7$(3),e.JRh(a.paymentRequest),e.R7$(),e.Y8G("ngIf",!a.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(a.flgInvoiceGenerated||a.flgReusingInvoice)&&a.flgPaymentSent),e.R7$(4),e.JRh(a.flgInvoiceGenerated||a.flgPaymentSent?a.flgPaymentSent?null!=a.paymentStatus&&a.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!a.paymentStatus)("ngIfElse",i),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&!a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&a.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",a.paymentStatus&&a.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function Ql(n,s){1&n&&e.eu8(0)}function Zl(n,s){if(1&n&&e.DNE(0,Ql,1,0,"ng-container",59),2&n){const t=e.XpG(),a=e.sdS(4),i=e.sdS(6);e.Y8G("ngTemplateOutlet",t.paymentStatus.error?a:i)}}function Kl(n,s){if(1&n&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Error: ",t.paymentStatus.error,"")}}function er(n,s){if(1&n&&(e.j41(0,"div",7)(1,"div",60)(2,"div",61)(3,"h4",62),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",45),e.EFF(6),e.k0s()()(),e.nrm(7,"mat-divider",63),e.j41(8,"div",60)(9,"div",64)(10,"h4",62),e.EFF(11),e.k0s(),e.j41(12,"span",45),e.EFF(13),e.k0s()(),e.j41(14,"div",64)(15,"h4",62),e.EFF(16,"Number of Hops"),e.k0s(),e.j41(17,"span",45),e.EFF(18),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(6),e.JRh(t.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",t.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(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.R7$(5),e.JRh(t.paymentStatus&&t.paymentStatus.payment_route&&t.paymentStatus.payment_route.hops&&t.paymentStatus.payment_route.hops.length?t.paymentStatus.payment_route.hops.length:0)}}function tr(n,s){if(1&n){const t=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onStepChanged(i))}),e.nrm(1,"p",81),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Ll,a.stepNumber===t,a.stepNumber!==t))}}function nr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function ir(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function ar(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function sr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function or(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function lr(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e.nrm(4,"span",11),e.k0s(),e.j41(5,"div",69)(6,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",70)(9,"rtl-channel-rebalance-infographics",71),e.mxI("stepNumberChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.stepNumber,i)||(o.stepNumber=i),e.Njj(i)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,tr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,nr,2,0,"button",75)(14,ir,2,0,"button",76)(15,ar,2,0,"button",77)(16,sr,2,0,"button",78)(17,or,2,0,"button",79),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",t.animationDirection),e.R50("stepNumber",t.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Il)),e.R7$(2),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber>1&&t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber<5)}}let rr=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.actions=r,this.formBuilder=p,this.decimalPipe=F,this.commonService=C,this.faInfoCircle=b.iW_,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.f7,this.animationDirection="forward",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let t="",a="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(i=>i.active&&i.chan_id!==this.selChannel.chan_id&&i.remote_balance&&i.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",ta?1:0)),l.nv.forEach((i,o)=>{o>0&&this.feeLimitTypes.push(i)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[m.k0.required]],rebalanceAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,m.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],m.k0.required],feeLimit:["",[m.k0.required,m.k0.min(0)]],hiddenFeeLimit:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.invoices=i.listInvoices,this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.SET_QUERY_ROUTES_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND||i.type===l.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(i=>{i.type===l.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=i.payload),i.type===l.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(i.payload),this.flgPaymentSent=!0,this.paymentStatus=i.payload,this.flgEditable=!0),i.type===l.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(i.payload),this.flgInvoiceGenerated=!0,this.sendPayment(i.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(0)).subscribe(i=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ie.of)(i?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,_.Q)(this.unSubs[3]),(0,ke.Z)("")).subscribe(i=>{"string"==typeof i&&(this.filteredActiveChannels=(0,Ie.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){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: "+this.queryRoute.routes[0].hops?.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,v.VK)({payload:{uiMessage:l.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:l.It,is_amp:!1,pageSize:l.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(t=>(!t.settle_date||0==+t.settle_date)&&t.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==t.state)}sendPayment(t){this.flgInvoiceGenerated=!0,this.paymentRequest=t,this.store.dispatch((0,v.Fd)("percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0?{payload:{uiMessage:l.MZ.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.MZ.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(){return this.activeChannels?.filter(t=>t.remote_balance&&t.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&t.chan_id!==this.selChannel.chan_id&&(0===t.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===t.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const t=this.activeChannels?.filter(a=>a.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));t&&t.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(t[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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(m.ze),e.rXU(d.QX),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(a,i){if(1&a&&e.GBs(El,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["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.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,"selectionChange","linear"],[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"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[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","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"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"],["fxFlex","100"],["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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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"],["tabindex","21","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(a,i){1&a&&e.DNE(0,Wl,105,46,"div",5)(1,Zl,1,1,"ng-template",null,0,e.C5r)(3,Kl,3,1,"ng-template",null,1,e.C5r)(5,er,19,4,"ng-template",null,2,e.C5r)(7,lr,18,10,"div",6),2&a&&(e.Y8G("ngIf",!i.flgShowInfo),e.R7$(7),e.Y8G("ngIf",i.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,L.PW,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,ee.q,B.HM,R.VO,V.wT,H.V5,H.Ti,H.M6,oe.$3,oe.pN,Z.N,Rl,d.Jj,d.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Le.C]}})}return n})();function cr(n,s){if(1&n&&(e.j41(0,"div",18)(1,"p",19)(2,"mat-icon",20),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&n){const t=e.XpG();e.R7$(4),e.JRh(t.errorMsg)}}function pr(n,s){if(1&n&&(e.j41(0,"div",29),e.nrm(1,"fa-icon",30),e.j41(2,"span"),e.EFF(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle)}}function mr(n,s){if(1&n&&(e.j41(0,"div",29),e.nrm(1,"fa-icon",30),e.j41(2,"span",31)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",32)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function ur(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function dr(n,s){1&n&&(e.j41(0,"mat-form-field",34)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",35),e.k0s())}function hr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function _r(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",36)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",37,0),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,hr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function fr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function gr(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",36)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",39,1),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,fr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function Cr(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21),e.DNE(1,pr,4,1,"div",22)(2,mr,16,6,"div",22),e.j41(3,"div",23)(4,"mat-form-field",24)(5,"mat-select",25),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSelTransTypeChanged(i))}),e.DNE(6,ur,2,2,"mat-option",26),e.k0s()(),e.DNE(7,dr,4,0,"mat-form-field",27)(8,_r,6,4,"mat-form-field",28)(9,gr,6,4,"mat-form-field",28),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channelToClose.active),e.R7$(),e.Y8G("ngIf",t.recommendedFee.minimumFee),e.R7$(3),e.Y8G("disabled",!t.channelToClose.active),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","0"===t.selTransType),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType)}}function yr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function br(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",41),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG();e.R7$(),e.JRh(t.channelToClose.active?"Close Channel":"Force Close")}}function Fr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",42),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let xr=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.actions=r,this.logger=p,this.transTypes=l.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNELS_LND)).subscribe(t=>{if(t.type===l.QP.SET_CHANNELS_LND){const a=t.payload.find(i=>i.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.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.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,v.w0)({payload:t})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(t){"2"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(K.u),e.rXU(I.il),e.rXU(W.En),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-close-channel"]],decls:19,vars:7,consts:[["blcks","ngModel"],["clchfee","ngModel"],["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 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 start"],["fxLayout","column","fxFlex.gt-sm","48"],["tabindex","1",3,"valueChange","selectionChange","disabled","value"],[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"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","48"],["matInput","","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","","tabindex","2",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","ccfees","required","","tabindex","3",3,"ngModelChange","step","min","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(a,i){1&a&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return i.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),e.EFF(12),e.k0s(),e.DNE(13,cr,5,1,"div",12)(14,Cr,10,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,yr,2,0,"button",15)(17,br,2,1,"button",16)(18,Fr,2,0,"button",17),e.k0s()()()()()),2&a&&(e.R7$(5),e.JRh(i.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",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.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",i.channelToClose.active&&!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,te.V]})}return n})();const vr=()=>["all"],Tr=n=>({"error-border":n}),Sr=()=>["no_channel"],Ce=n=>({width:n}),kr=n=>({"display-none":n});function Rr(n,s){if(1&n&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Er(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function Ir(n,s){1&n&&e.nrm(0,"th",51)}function Lr(n,s){1&n&&e.nrm(0,"span",55)}function wr(n,s){1&n&&e.nrm(0,"span",56)}function jr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Lr,1,0,"span",53)(2,wr,1,0,"span",54),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.active),e.R7$(),e.Y8G("ngIf",!t.active)}}function Gr(n,s){1&n&&e.nrm(0,"th",57)}function Dr(n,s){if(1&n&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Nr(n,s){if(1&n&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEye)}}function Pr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Dr,2,1,"span",58)(2,Nr,2,1,"span",59),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function $r(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Ar(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_alias)}}function Mr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Br(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_pubkey)}}function Or(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function Vr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel_point)}}function Yr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function Xr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.chan_id)}}function Ur(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Hr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.initiator?"Yes":"No")}}function qr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function zr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.static_remote_key?"Yes":"No")}}function Jr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function Wr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function Qr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function Zr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function Kr(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function e1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function t1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function n1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function i1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function a1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function s1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function o1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function l1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function r1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function c1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function p1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function m1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function u1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function d1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function h1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function _1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function f1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_sent)," ")}}function g1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function C1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_received)," ")}}function y1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function b1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_balance)," ")}}function F1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function x1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_balance)," ")}}function v1(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function T1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",68)(2,"mat-hint",69),e.EFF(3),e.nI1(4,"number"),e.k0s()(),e.nrm(5,"mat-progress-bar",70),e.k0s()),2&n){const t=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,2,t.balancedness||0)),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function S1(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",71)(1,"div",72)(2,"mat-select",73),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function k1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onCircularRebalance(i))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function R1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function E1(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",75)(1,"div",72)(2,"mat-select",76),e.nrm(3,"mat-select-trigger"),e.j41(4,"perfect-scrollbar")(5,"mat-option",74),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onViewRemotePolicy(i))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelUpdate(i))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,k1,2,0,"mat-option",77)(12,R1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelClose(i))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&n){const t=e.XpG();e.R7$(11),e.Y8G("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",t.selNode.swapServerUrl)}}function I1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function L1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function w1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function j1(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function G1(n,s){if(1&n&&(e.j41(0,"td",78),e.DNE(1,I1,2,0,"p",79)(2,L1,2,0,"p",79)(3,w1,2,0,"p",79)(4,j1,2,1,"p",79),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function D1(n,s){if(1&n&&e.nrm(0,"tr",80),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kr,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function N1(n,s){1&n&&e.nrm(0,"tr",81)}function P1(n,s){1&n&&e.nrm(0,"tr",82)}let $1=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.rtlEffects=r,this.decimalPipe=p,this.loopService=F,this.camelCaseWithReplace=C,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:l.md,sortBy:"balancedness",sortOrder:l.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=l.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.versionsArr=[],this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.totalBalance=t.blockchainBalance?.total_balance?+t.blockchainBalance?.total_balance:0}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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){this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.GET_REMOTE_POLICY,channelID:t.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{if(!a.fee_base_msat&&!a.fee_rate_milli_msat&&!a.time_lock_delta)return!1;const i=[[{key:"fee_base_msat",value:a.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:a.time_lock_delta,title:"Time Lock Delta",width:25,type:l.UN.NUMBER}]],o="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,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:o,message:i}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:rr}}}))}onChannelUpdate(t){"all"===t?(this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.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.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[6])).subscribe(i=>{i&&this.store.dispatch((0,v.fy)({payload:{baseFeeMsat:i[0].inputValue,feeRate:i[1].inputValue,timeLockDelta:i[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,v.ij)({payload:{uiMessage:l.MZ.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,J.s)(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 i="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),o=[];setTimeout(()=>{this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:i,noBtnText:"Cancel",yesBtnText:"Update Channel",message:o,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[7])).subscribe(a=>{if(a){const i={baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:t.channel_point};a.length>3&&a[3]&&a[4]&&(i.minHtlcMsat=a[3].inputValue,i.maxHtlcMsat=a[4].inputValue),this.store.dispatch((0,v.fy)({payload:i}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,v.$Q)()),this.store.dispatch((0,E.xO)({payload:{data:{channel:t,component:xr}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(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":i=t?.active?"active":"inactive";break;case"private":i=t?.private?"private":"public";break;default:i=typeof t[this.selFilterBy]>"u"?"":"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===i.indexOf(a):i.includes(a)}}loadChannelsTable(t){this.channels=new c.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let p=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",p=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",p=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",p=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",p=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",p=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%p/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%p/F),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[8])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h),e.rXU(me.H),e.rXU(d.QX),e.rXU(qe.Q),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:96,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","5",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 grey","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","grey"],["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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Rr,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Er,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Ir,1,0,"th",13)(20,jr,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Gr,1,0,"th",16)(23,Pr,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,$r,2,0,"th",18)(26,Ar,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Mr,2,0,"th",18)(29,Br,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,Or,2,0,"th",18)(32,Vr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,Yr,2,0,"th",18)(35,Xr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Ur,2,0,"th",18)(38,Hr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,qr,2,0,"th",18)(41,zr,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,Jr,2,1,"th",25)(44,Wr,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,Qr,2,1,"th",25)(47,Zr,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,Kr,2,0,"th",25)(50,e1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,t1,2,0,"th",25)(53,n1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,i1,2,0,"th",25)(56,a1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,s1,2,0,"th",25)(59,o1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,l1,2,0,"th",25)(62,r1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,c1,2,0,"th",25)(65,p1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,m1,2,0,"th",25)(68,u1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,d1,2,0,"th",25)(71,h1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,_1,2,0,"th",25)(74,f1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,g1,2,0,"th",25)(77,C1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,y1,2,0,"th",25)(80,b1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,F1,2,0,"th",25)(83,x1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,v1,2,0,"th",18)(86,T1,6,4,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,S1,8,0,"th",41)(89,E1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,G1,5,4,"td",44),e.bVm(),e.DNE(92,D1,1,3,"tr",45)(93,N1,1,0,"tr",46)(94,P1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,vr).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",(null==i.apiCallStatus?null:i.apiCallStatus.status)===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,Tr,""!==i.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Sr)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,$.fg,f.rl,f.nJ,f.MV,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-active[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return n})();const A1=["outputIdx"];function M1(n,s){if(1&n&&(e.j41(0,"div",31),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3,"Change output balance "),e.j41(4,"strong"),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,t.dustOutputValue))}}function B1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function O1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function V1(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Y1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function X1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",33,1),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,Y1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function U1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function H1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",34,2),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,U1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function q1(n,s){if(1&n&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(2),e.JRh(t.bumpFeeError)}}let Ke=(()=>{class n{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,a,i,o,r){this.dialogRef=t,this.data=a,this.logger=i,this.dataService=o,this.store=r,this.faUpRightFromSquare=b.k02,this.txid="",this.outputIndex=null,this.transTypes=[...l.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=b.jPR,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=t[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=t[1]&&""!==t[1]&&0==+t[1]?1:0}else this.data.selUTXO&&this.data.selUTXO.outpoint&&(this.txid=this.data.selUTXO.outpoint.txid_str||"",this.outputIndex=this.data.selUTXO.outpoint.output_index||0);this.logger.info(this.txid,this.outputIndex),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:t=>{this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[],a=t.length>1&&t[1]&&""!==t[1]?+t[1]:null;if(a&&this.outputIndex===a)return this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0}if(!this.outputIndex&&0!==this.outputIndex||"1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;this.dataService.bumpFee(this.txid,this.outputIndex,this.blocks||null,this.fees||null).pipe((0,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.dialogRef.close(!1)},error:t=>{this.logger.error(t),this.bumpFeeError=t.message?t.message:t}})}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.txid,"_blank")}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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(K.u),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(a,i){if(1&a&&e.GBs(A1,5),2&a){let o;e.mGM(o=e.lsd())&&(i.outputIndx=o.first)}},decls:46,vars:19,consts:[["outputIndx","ngModel"],["blcks","ngModel"],["fee","ngModel"],["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 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"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["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"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","32"],["tabindex","2",3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","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"],["fxFlex","100",1,"alert","alert-warn"],[3,"value"],["matInput","","type","number","name","blocks","required","","tabindex","3",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e.EFF(5,"Bump Fee"),e.k0s()(),e.j41(6,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",9)(9,"form",10)(10,"div",11)(11,"p",12),e.EFF(12),e.j41(13,"fa-icon",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onExplorerClicked())}),e.k0s()(),e.j41(14,"div",14)(15,"div",15),e.nrm(16,"fa-icon",16),e.j41(17,"span",17)(18,"div"),e.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(20,"div"),e.EFF(21),e.k0s(),e.j41(22,"div"),e.EFF(23),e.k0s(),e.j41(24,"div"),e.EFF(25),e.k0s()()(),e.DNE(26,M1,8,4,"div",18),e.j41(27,"div",19)(28,"mat-form-field",20)(29,"mat-label"),e.EFF(30,"Index for Change Output"),e.k0s(),e.j41(31,"input",21,0),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.outputIndex,p)||(i.outputIndex=p),e.Njj(p)}),e.k0s(),e.DNE(33,B1,2,0,"mat-error",22)(34,O1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-select",24),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selTransType,p)||(i.selTransType=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.blocks=null,e.Njj(i.fees=null)}),e.DNE(37,V1,2,2,"mat-option",25),e.k0s()(),e.DNE(38,X1,6,4,"mat-form-field",26)(39,H1,6,4,"mat-form-field",26),e.k0s(),e.DNE(40,q1,4,2,"div",27),e.k0s()(),e.j41(41,"div",28)(42,"button",29),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(43,"Clear"),e.k0s(),e.j41(44,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBumpFee())}),e.EFF(45),e.k0s()()()()()()}if(2&a){const o=e.sdS(32);e.R7$(12),e.SpI(" ",i.txid?"Bump fee for transaction ID: "+i.txid:"Bump fee: "," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",i.faInfoCircle),e.R7$(5),e.SpI("- High: ",i.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",i.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",i.recommendedFee.hourFee||"Unknown",""),e.R7$(),e.Y8G("ngIf",i.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",i.outputIndex),e.R7$(2),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.OutputIndexError),e.R7$(2),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(),e.Y8G("ngIf","1"===i.selTransType),e.R7$(),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf",""!==i.bumpFeeError),e.R7$(5),e.JRh(""!==i.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,Q.oV,Z.N,te.V,d.QX]})}return n})();const ye=n=>({"error-border bordered-box":n,"bordered-box":!0}),z1=()=>["no_pending_open"],J1=()=>["no_pending_force_closing"],W1=()=>["no_pending_closing"],Q1=()=>["no_pending_wait_closing"],z=n=>({width:n}),we=n=>({"display-none":n}),Z1=n=>({"py-0":!0,"display-none":n});function K1(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function ec(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function tc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function nc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function ic(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function sc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function oc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function lc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function rc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function cc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function pc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function mc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function uc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.confirmation_height))}}function dc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function hc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_fee))}}function _c(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function fc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_weight))}}function gc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function Cc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_per_kw))}}function yc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function Fc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function xc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function vc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Tc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Sc(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function kc(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"div",48)(2,"mat-select",50),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",51),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBumpFee(i))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function Rc(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ec(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Ic(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Lc(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Rc,2,0,"p",53)(2,Ec,2,0,"p",53)(3,Ic,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function wc(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function jc(n,s){1&n&&e.nrm(0,"tr",55)}function Gc(n,s){1&n&&e.nrm(0,"tr",56)}function Dc(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Nc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Pc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function $c(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Mc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Oc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Vc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Yc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Xc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Uc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Hc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function Jc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function Wc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.maturity_height))}}function Qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function Zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.blocks_til_maturity))}}function Kc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function ep(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.recovered_balance))}}function tp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function np(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function ap(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function sp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function op(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function lp(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function rp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onForceClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function cp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function pp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function up(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,cp,2,0,"p",53)(2,pp,2,0,"p",53)(3,mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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 dp(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function hp(n,s){1&n&&e.nrm(0,"tr",55)}function _p(n,s){1&n&&e.nrm(0,"tr",56)}function fp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function gp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Cp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function yp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function bp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Fp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function xp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function vp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Tp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Sp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function kp(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Rp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Ep(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Lp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function wp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function jp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function Gp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Dp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Np(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Pp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function $p(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ap(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Bp(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,$p,2,0,"p",53)(2,Ap,2,0,"p",53)(3,Mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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 Op(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function Vp(n,s){1&n&&e.nrm(0,"tr",55)}function Yp(n,s){1&n&&e.nrm(0,"tr",56)}function Xp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Up(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Hp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Jp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Wp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Kp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function em(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function tm(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function nm(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function im(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function am(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function sm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function om(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function lm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function rm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function cm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function pm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function mm(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function um(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onWaitClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function dm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function hm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function _m(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function fm(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,dm,2,0,"p",53)(2,hm,2,0,"p",53)(3,_m,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function gm(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Z1,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function Cm(n,s){1&n&&e.nrm(0,"tr",55)}function ym(n,s){1&n&&e.nrm(0,"tr",56)}let bm=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.commonService=i,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new c.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new c.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new c.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new c.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:100,type:l.UN.STRING}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:100,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"confirmation_height",value:o.confirmation_height,title:"Confirmation Height",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"fee_per_kw",value:o.fee_per_kw,title:"Fee/KW",width:25,type:l.UN.NUMBER},{key:"commit_weight",value:o.commit_weight,title:"Commit Weight",width:25,type:l.UN.NUMBER},{key:"commit_fee",value:o.commit_fee,title:"Commit Fee",width:50,type:l.UN.NUMBER}]]}}}))}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{pendingChannel:t,component:Ke}}}))}onForceClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:o.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"maturity_height",value:o.maturity_height,title:"Maturity Height",width:25,type:l.UN.NUMBER},{key:"blocks_til_maturity",value:o.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:l.UN.NUMBER},{key:"recovered_balance",value:o.recovered_balance,title:"Recovered Balance",width:50,type:l.UN.NUMBER}]]}}}))}onClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:50,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:50,type:l.UN.NUMBER}]]}}}))}onWaitClosingClick(t){const a=JSON.parse(JSON.stringify(t,["limbo_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o=JSON.parse(JSON.stringify(t.commitments,["local_txid"],2)),r={};Object.assign(r,a,i,o),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:r.local_txid,title:"Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:r.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:r.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:r.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:r.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:r.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:r.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:r.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}]]}}}))}loadOpenChannelsTable(t){this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new c.I6([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new c.I6([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new c.I6([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new c.I6([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:202,vars:52,consts:[["table",""],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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,"matSortActive","matSortDirection","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"],["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-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"span",2),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"mat-accordion",3),e.DNE(5,K1,1,0,"mat-progress-bar",4),e.j41(6,"mat-expansion-panel",5)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e.EFF(9),e.k0s()(),e.j41(10,"div",6),e.DNE(11,ec,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,tc,2,0,"th",9)(16,nc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,ic,2,0,"th",9)(19,ac,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,sc,2,0,"th",9)(22,oc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,lc,2,0,"th",9)(25,rc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,cc,2,0,"th",9)(28,pc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,mc,2,0,"th",16)(31,uc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,dc,2,0,"th",16)(34,hc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,_c,2,0,"th",16)(37,fc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,gc,2,0,"th",16)(40,Cc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,yc,2,0,"th",16)(43,bc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,Fc,2,0,"th",16)(46,xc,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,vc,2,0,"th",16)(49,Tc,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Sc,3,0,"th",24)(52,kc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Lc,4,3,"td",27),e.bVm(),e.DNE(55,wc,1,3,"tr",28)(56,jc,1,0,"tr",29)(57,Gc,1,0,"tr",30),e.k0s()()(),e.DNE(58,Dc,1,0,"mat-progress-bar",4),e.j41(59,"mat-expansion-panel",5)(60,"mat-expansion-panel-header")(61,"mat-panel-title"),e.EFF(62),e.k0s()(),e.j41(63,"div",6)(64,"table",31,0),e.qex(66,32),e.DNE(67,Nc,2,0,"th",9)(68,Pc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,$c,2,0,"th",9)(71,Ac,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Mc,2,0,"th",9)(74,Bc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,Oc,2,0,"th",9)(77,Vc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,Yc,2,0,"th",9)(80,Xc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Uc,2,0,"th",9)(83,Hc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,qc,2,0,"th",16)(86,zc,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,Jc,2,0,"th",16)(89,Wc,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,Qc,2,0,"th",16)(92,Zc,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,Kc,2,0,"th",16)(95,ep,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,tp,2,0,"th",16)(98,np,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,ip,2,0,"th",16)(101,ap,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,sp,2,0,"th",16)(104,op,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,lp,3,0,"th",24)(107,rp,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,up,4,3,"td",27),e.bVm(),e.DNE(110,dp,1,3,"tr",28)(111,hp,1,0,"tr",29)(112,_p,1,0,"tr",30),e.k0s()()(),e.DNE(113,fp,1,0,"mat-progress-bar",4),e.j41(114,"mat-expansion-panel",5)(115,"mat-expansion-panel-header")(116,"mat-panel-title"),e.EFF(117),e.k0s()(),e.j41(118,"div",6)(119,"table",31,0),e.qex(121,32),e.DNE(122,gp,2,0,"th",9)(123,Cp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,yp,2,0,"th",9)(126,bp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,Fp,2,0,"th",9)(129,xp,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,vp,2,0,"th",9)(132,Tp,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Sp,2,0,"th",9)(135,kp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,Rp,2,0,"th",9)(138,Ep,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Ip,2,0,"th",16)(141,Lp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,wp,2,0,"th",16)(144,jp,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,Gp,2,0,"th",16)(147,Dp,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Np,3,0,"th",24)(150,Pp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Bp,4,3,"td",27),e.bVm(),e.DNE(153,Op,1,3,"tr",28)(154,Vp,1,0,"tr",29)(155,Yp,1,0,"tr",30),e.k0s()()(),e.DNE(156,Xp,1,0,"mat-progress-bar",4),e.j41(157,"mat-expansion-panel",5)(158,"mat-expansion-panel-header")(159,"mat-panel-title"),e.EFF(160),e.k0s()(),e.j41(161,"div",6)(162,"table",31,0),e.qex(164,32),e.DNE(165,Up,2,0,"th",9)(166,Hp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,qp,2,0,"th",9)(169,zp,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,Jp,2,0,"th",9)(172,Wp,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,Qp,2,0,"th",9)(175,Zp,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,Kp,2,0,"th",9)(178,em,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,tm,2,0,"th",9)(181,nm,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,im,2,0,"th",16)(184,am,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,sm,2,0,"th",16)(187,om,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,lm,2,0,"th",16)(190,rm,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,cm,2,0,"th",16)(193,pm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,mm,3,0,"th",24)(196,um,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,fm,4,3,"td",27),e.bVm(),e.DNE(199,gm,1,3,"tr",28)(200,Cm,1,0,"tr",29)(201,ym,1,0,"tr",30),e.k0s()()()()()),2&a&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,i.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",i.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.openTableSetting.sortBy)("matSortDirection",i.openTableSetting.sortOrder)("dataSource",i.pendingOpenChannels)("ngClass",e.eq3(40,ye,""!==i.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,z1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",i.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.forceClosingTableSetting.sortBy)("matSortDirection",i.forceClosingTableSetting.sortOrder)("dataSource",i.pendingForceClosingChannels)("ngClass",e.eq3(43,ye,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,J1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",i.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.closingTableSetting.sortBy)("matSortDirection",i.closingTableSetting.sortOrder)("dataSource",i.pendingClosingChannels)("ngClass",e.eq3(46,ye,""!==i.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,W1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",i.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.waitingCloseTableSetting.sortBy)("matSortDirection",i.waitingCloseTableSetting.sortOrder)("dataSource",i.pendingWaitClosingChannels)("ngClass",e.eq3(49,ye,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,Q1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedWaitClosingColumns))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,U.BS,U.GK,U.Z2,U.WN,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,A.Ld,d.QX,q.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]})}return n})();const Fm=()=>["all"],xm=n=>({"error-border":n,"overflow-auto":!0}),vm=()=>["no_closed_channel"],ce=n=>({width:n}),Tm=n=>({"display-none":n});function Sm(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function km(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Rm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function Em(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"mat-icon",41),e.EFF(3,"info_outline"),e.k0s(),e.EFF(4),e.k0s()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(2),e.Y8G("matTooltip",a.channelClosureType[t.close_type].tooltip),e.R7$(2),e.SpI(" ",a.channelClosureType[t.close_type].name," ")}}function Im(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Lm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function wm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function jm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function Gm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Dm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Nm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Pm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function $m(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Am(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.closing_tx_hash)}}function Mm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Bm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chain_hash)}}function Om(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function Vm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.open_initiator,"initiator_"))}}function Ym(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function Xm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.close_initiator,"initiator_"))}}function Um(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Hm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.time_locked_balance)," ")}}function qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function Jm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function Wm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.close_height)," ")}}function Qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function Zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.settled_balance)," ")}}function Km(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",49),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function eu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onClosedChannelClick(o,i))}),e.EFF(3,"View Info"),e.k0s()()()}}function tu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function nu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function iu(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function au(n,s){if(1&n&&(e.j41(0,"td",51),e.DNE(1,tu,2,0,"p",52)(2,nu,2,0,"p",52)(3,iu,2,1,"p",52),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function su(n,s){if(1&n&&e.nrm(0,"tr",53),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Tm,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function ou(n,s){1&n&&e.nrm(0,"tr",54)}function lu(n,s){1&n&&e.nrm(0,"tr",55)}let ru=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.commonService=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:l.md,sortBy:"close_type",sortOrder:l.oi.DESCENDING},this.channelClosureType=l.tj,this.faHistory=b.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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&&this.sort&&this.paginator&&this.displayedColumns.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 a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.closedChannels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"close_type":i=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":i=this.camelCaseWithReplace.transform(t[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"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===i.indexOf(a):i.includes(a)}}onClosedChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[t.close_type].name,title:"Close Type",width:30,type:l.UN.STRING},{key:"settled_balance",value:t.settled_balance,title:"Settled Balance",width:30,type:l.UN.NUMBER},{key:"time_locked_balance",value:t.time_locked_balance,title:"Time Locked Balance",width:40,type:l.UN.NUMBER}],[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:30},{key:"capacity",value:t.capacity,title:"Capacity",width:30,type:l.UN.NUMBER},{key:"close_height",value:t.close_height,title:"Close Height",width:40,type:l.UN.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.UN.STRING}]]}}}))}loadClosedChannelsTable(t){this.closedChannels=new c.I6([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Sm,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,km,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Rm,2,0,"th",13)(20,Em,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Im,2,0,"th",13)(23,Lm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,wm,2,0,"th",13)(26,jm,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gm,2,0,"th",13)(29,Dm,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Nm,2,0,"th",13)(32,Pm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,$m,2,0,"th",13)(35,Am,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Mm,2,0,"th",13)(38,Bm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,Om,2,0,"th",13)(41,Vm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,Ym,2,0,"th",13)(44,Xm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Um,2,0,"th",24)(47,Hm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,qm,2,0,"th",24)(50,zm,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,Jm,2,0,"th",24)(53,Wm,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,Qm,2,0,"th",24)(56,Zm,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,Km,6,0,"th",29)(59,eu,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,au,4,3,"td",31),e.bVm(),e.DNE(62,su,1,3,"tr",32)(63,ou,1,0,"tr",33)(64,lu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Fm).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.closedChannels)("ngClass",e.eq3(15,xm,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,vm)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}return n})();const cu=()=>["all"],pu=n=>({"error-border":n}),mu=()=>["no_channel"],uu=n=>({"display-none":n});function du(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function hu(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function _u(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function fu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.amount)," ")}}function gu(n,s){if(1&n&&(e.qex(0),e.DNE(1,fu,3,3,"span",39),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Cu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,gu,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==t||null==t.pending_htlcs?null:t.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function yu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function bu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function Fu(n,s){if(1&n&&(e.qex(0),e.DNE(1,bu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function xu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Fu,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(null==t?null:t.remote_alias),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function vu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function Tu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.forwarding_channel," ")}}function Su(n,s){if(1&n&&(e.qex(0),e.DNE(1,Tu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function ku(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Su,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Ru(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function Eu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.htlc_index)," ")}}function Iu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Eu,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Lu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Iu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function wu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function ju(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.forwarding_htlc_index)," ")}}function Gu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ju,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Du(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Gu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Nu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Pu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function $u(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Pu,3,4,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Au(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Mu(n,s){1&n&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Bu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.hash_lock," ")}}function Ou(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Bu,2,1,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Vu(n,s){if(1&n&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Ou,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Yu(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Xu(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG();return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Uu(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,Xu,3,1,"div",52),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Hu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!i.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Uu,2,1,"div",38),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function qu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function zu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function Ju(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Wu(n,s){if(1&n&&(e.j41(0,"td",55),e.DNE(1,qu,2,0,"p",38)(2,zu,2,0,"p",38)(3,Ju,2,1,"p",38),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function Qu(n,s){if(1&n&&e.nrm(0,"tr",56),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,uu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Zu(n,s){1&n&&e.nrm(0,"tr",57)}function Ku(n,s){1&n&&e.nrm(0,"tr",58)}let ed=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:l.md,sortBy:"expiration_height",sortOrder:l.oi.DESCENDING},this.channels=new c.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=t.channels?.filter(a=>a.pending_htlcs&&a.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:a.remote_alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"amount",value:t.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"incoming",value:t.incoming?"Yes":"No",title:"Incoming",width:50,type:l.UN.STRING}],[{key:"expiration_height",value:t.expiration_height,title:"Expiration Height",width:50,type:l.UN.NUMBER},{key:"hash_lock",value:t.hash_lock,title:"Hash Lock",width:50,type:l.UN.STRING}]]}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?(t.remote_alias?t.remote_alias.toLowerCase():"")+t.pending_htlcs?.map(o=>JSON.stringify(o)+(o.incoming?"yes":"no")):typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadHTLCsTable(t){this.channels=new c.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>{switch(i){case"amount":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a.pending_htlcs&&a.pending_htlcs.length?a.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(a.pending_htlcs,i,"boolean",this.sort?.direction),a.remote_alias?a.remote_alias:a.remote_pubkey?a.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a;default:return a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null}},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(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((i,o)=>i.concat(o.pending_htlcs?o.pending_htlcs:o),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","fxLayout","column","fxLayoutAlign","center end",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","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,du,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,hu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,_u,2,0,"th",13)(20,Cu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,yu,2,0,"th",13)(23,xu,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,vu,2,0,"th",13)(26,ku,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Ru,3,0,"th",18)(29,Lu,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,wu,3,0,"th",18)(32,Du,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nu,3,0,"th",18)(35,Au,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Mu,3,0,"th",22)(38,Vu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,Yu,6,0,"th",25)(41,Hu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,Wu,4,3,"td",28),e.bVm(),e.DNE(44,Qu,1,3,"tr",29)(45,Zu,1,0,"tr",30)(46,Ku,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,cu).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,pu,""!==i.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,mu)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:7rem}"]})}return n})();function td(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let nd=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,v.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-unlock-wallet"]],decls:14,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","name","walletPassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[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(a,i){1&a&&(e.j41(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Password"),e.k0s(),e.j41(5,"input",3),e.mxI("ngModelChange",function(r){return e.DH7(i.walletPassword,r)||(i.walletPassword=r),r}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,td,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return i.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return i.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.walletPassword),e.R7$(3),e.Y8G("ngIf",!i.walletPassword))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,Z.N]})}return n})();var id=g(7768);function ad(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",6),e.EFF(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.k0s(),e.j41(4,"div",7)(5,"button",8),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.proceed=!1,e.Njj(i.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.proceed=!0,e.Njj(i.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function sd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.k0s(),e.j41(3,"div",7)(4,"button",12),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function od(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function ld(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function rd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function cd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function pd(n,s){1&n&&(e.j41(0,"div",41)(1,"mat-icon",42),e.EFF(2,"cancel"),e.k0s(),e.EFF(3,"Passwords do not match. "),e.k0s())}function md(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function ud(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function dd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function hd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function _d(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function fd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function gd(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-vertical-stepper",13,0)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",17),e.j41(8,"mat-hint"),e.EFF(9,"Enter Wallet Password"),e.k0s(),e.DNE(10,od,2,0,"mat-error",2)(11,ld,2,0,"mat-error",2),e.k0s(),e.j41(12,"mat-form-field",16)(13,"mat-label"),e.EFF(14,"Confirm Password"),e.k0s(),e.nrm(15,"input",18),e.j41(16,"mat-hint"),e.EFF(17,"Confirm Wallet Password"),e.k0s(),e.DNE(18,rd,2,0,"mat-error",2)(19,cd,2,0,"mat-error",2),e.k0s(),e.DNE(20,pd,4,0,"div",19),e.j41(21,"div",20)(22,"button",21),e.EFF(23,"Next"),e.k0s()()()(),e.j41(24,"mat-step",22)(25,"form",23)(26,"div",24)(27,"mat-slide-toggle",25),e.EFF(28,"Existing Cipher"),e.k0s(),e.j41(29,"mat-form-field",26)(30,"mat-label"),e.EFF(31,"Comma separated array of 24 words cipher seed"),e.k0s(),e.nrm(32,"input",27),e.j41(33,"mat-hint"),e.EFF(34,"Cipher Seed"),e.k0s(),e.DNE(35,md,2,0,"mat-error",2)(36,ud,2,0,"mat-error",2),e.k0s()(),e.j41(37,"div",28)(38,"button",29),e.EFF(39,"Back"),e.k0s(),e.j41(40,"button",30),e.EFF(41,"Next"),e.k0s()()()(),e.j41(42,"mat-step",31)(43,"form",23)(44,"div",24)(45,"mat-slide-toggle",32),e.EFF(46,"Existing Passphrase"),e.k0s(),e.j41(47,"mat-form-field",33)(48,"mat-label"),e.EFF(49,"Passphrase"),e.k0s(),e.nrm(50,"input",34),e.j41(51,"mat-hint"),e.EFF(52,"Enter Passphrase"),e.k0s(),e.DNE(53,dd,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(56,"Clear"),e.k0s(),e.j41(57,"button",36),e.EFF(58,"Back"),e.k0s(),e.j41(59,"button",37),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,hd,2,0,"ng-template",38)(62,_d,2,0,"ng-template",39)(63,fd,2,0,"ng-template",40),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",t.passwordFormGroup),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("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.R7$(4),e.Y8G("stepControl",t.cipherFormGroup),e.R7$(),e.Y8G("formGroup",t.cipherFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("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.R7$(6),e.Y8G("stepControl",t.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",t.passphraseFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function Cd(n,s){if(1&n&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function yd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",43),e.EFF(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.k0s(),e.j41(4,"div",44),e.DNE(5,Cd,2,1,"span",45),e.k0s(),e.j41(6,"div",46),e.EFF(7,"Wallet initialization is done."),e.k0s(),e.j41(8,"div",46),e.EFF(9,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(10,"div",46),e.EFF(11,"Click continue only after writing down the seed."),e.k0s(),e.j41(12,"div",7)(13,"button",47),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngForOf",t.genSeedResponse)}}function bd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Something went wrong! Unable to initialize wallet!"),e.k0s(),e.j41(4,"div",7)(5,"button",49),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function Fd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Wallet recovery is done."),e.k0s(),e.j41(4,"div",46),e.EFF(5,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(6,"div",7)(7,"button",50),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function xd(n){const s=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return s&&t&&s.value!==t.value?{unmatchedPasswords:!0}:null}function vd(n){const s=n.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let Td=(()=>{class n{constructor(t,a,i){this.store=t,this.formBuilder=a,this.lndEffects=i,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[m.k0.required,m.k0.minLength(8)]],initWalletConfirmPassword:["",[m.k0.required,m.k0.minLength(8)]]},{validators:xd}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[vd]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,_.Q)(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,_.Q)(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,_.Q)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,_.Q)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,v.GZ)(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,v.GZ)(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,v.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,v.X9)()),this.store.dispatch((0,v.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(m.ze),e.rXU(re.L))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(a,i){if(1&a&&e.GBs(H.M6,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},features:[e.Jv_([{provide:id.x8,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["stepper",""],["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"],["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"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","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"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","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"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","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(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,ad,9,0,"div",2)(2,sd,6,0,"div",3)(3,gd,64,17,"mat-vertical-stepper",4)(4,yd,15,1,"div",2)(5,bd,7,0,"div",2)(6,Fd,9,0,"div",2),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.insecureLND&&!i.warnRes),e.R7$(),e.Y8G("ngIf",i.warnRes&&!i.proceed),e.R7$(),e.Y8G("ngIf",(!i.insecureLND||i.warnRes&&i.proceed)&&i.genSeedResponse.length<=0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""!==i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length<=0&&""!==i.initWalletResponse))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.cV,m.j4,m.JD,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,_e.sG,H.V5,H.M6,H.F7,H.FR,H.xJ]})}return n})(),Sd=(()=>{class n{constructor(){this.faWallet=b.BA1}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({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"],["mat-stretch-tabs","false","mat-align-tabs","start"],["label","Unlock"],["label","Initialize"]],template:function(a,i){1&a&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"Wallet"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group",5)(8,"mat-tab",6),e.nrm(9,"rtl-unlock-wallet"),e.k0s(),e.j41(10,"mat-tab",7),e.nrm(11,"rtl-initialize-wallet"),e.k0s()()()()()),2&a&&(e.R7$(),e.Y8G("icon",i.faWallet))},dependencies:[M.aY,h.DJ,h.sA,T.RN,T.m2,P.mq,P.T8,nd,Td]})}return n})();function kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Rd=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faExchangeAlt=b._qq,this.faChartPie=b.W1p,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 u.B,new u.B,new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1]),(0,de.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.currencyUnits=i?.settings.currencyUnits||[],this.balances=i?.settings.userPersona===l.HW.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions"]],decls:21,vars:5,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Lightning Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",7),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"Lightning Transactions"),e.k0s()(),e.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),e.DNE(16,kd,2,3,"div",10),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",11),e.nrm(20,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk]})}return n})();function Ed(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Id=(()=>{class n{constructor(t){this.router=t,this.faSearch=b.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-graph"]],decls:13,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Graph Lookups"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Ed,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faSearch),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();const Ld=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),je=n=>({width:n});function wd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function jd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gd(n,s){1&n&&e.nrm(0,"mat-progress-bar",39)}function Dd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Nd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.hop_sequence)}}function Pd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function $d(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pubkey_alias)}}function Ad(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Md(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function Bd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function Od(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function Vd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function Yd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.tlv_payload?"Yes":"No")}}function Xd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Ud(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.expiry))}}function Hd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.chan_capacity))}}function zd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function Jd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_to_forward)," ")}}function Wd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function Qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.fee_msat)," ")}}function Zd(n,s){1&n&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function Kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onHopClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function eh(n,s){1&n&&e.nrm(0,"tr",50)}function th(n,s){1&n&&e.nrm(0,"tr",51)}let nh=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:l.md,sortBy:"hop_sequence",sortOrder:l.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new c.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=b.TBz,this.faExclamationTriangle=b.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops=new c.I6([]),t.routes&&t.routes.length&&t.routes.length>0&&t.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new c.I6([...t.routes[0].hops]),this.qrHops.data=t.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new c.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,v.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:t.hop_sequence,title:"Sequence",width:33,type:l.UN.NUMBER},{key:"amt_to_forward",value:t.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:34,type:l.UN.NUMBER}],[{key:"chan_capacity",value:t.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:l.UN.NUMBER},{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:l.UN.NUMBER}],[{key:"pubkey_alias",value:t.pubkey_alias,title:"Peer Alias",width:50,type:l.UN.STRING},{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING}],[{key:"pub_key",value:t.pub_key,title:"Peer Pubkey",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},decls:64,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){e.eBV(o);const p=e.sdS(2);return e.Njj(p.form.valid&&i.onQueryRoutes())}),e.j41(3,"div",5),e.nrm(4,"fa-icon",6),e.j41(5,"span"),e.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.k0s()(),e.j41(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Destination Pubkey"),e.k0s(),e.j41(10,"input",8,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.destinationPubkey,p)||(i.destinationPubkey=p),e.Njj(p)}),e.k0s(),e.DNE(12,wd,2,0,"mat-error",9),e.k0s(),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"Amount (Sats)"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.amount,p)||(i.amount=p),e.Njj(p)}),e.k0s(),e.DNE(17,jd,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",14),e.EFF(22,"Query Route"),e.k0s()()(),e.j41(23,"div",15)(24,"div",16),e.nrm(25,"fa-icon",17),e.j41(26,"span",18),e.EFF(27,"Transaction Route"),e.k0s()()(),e.j41(28,"div",19),e.DNE(29,Gd,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Dd,2,0,"th",23)(34,Nd,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Pd,2,0,"th",23)(37,$d,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Ad,2,0,"th",23)(40,Md,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Bd,2,0,"th",23)(43,Od,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,Vd,2,0,"th",23)(46,Yd,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,Xd,2,0,"th",30)(49,Ud,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Hd,2,0,"th",30)(52,qd,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,zd,2,0,"th",30)(55,Jd,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,Wd,2,0,"th",30)(58,Qd,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,Zd,3,0,"th",35)(61,Kd,3,0,"td",36),e.bVm(),e.DNE(62,eh,1,0,"tr",37)(63,th,1,0,"tr",38),e.k0s()()()}2&a&&(e.R7$(4),e.Y8G("icon",i.faExclamationTriangle),e.R7$(6),e.R50("ngModel",i.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!i.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",i.amount),e.R7$(),e.Y8G("ngIf",!i.amount),e.R7$(8),e.Y8G("icon",i.faRoute),e.R7$(4),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.qrHops)("ngClass",e.eq3(15,Ld,"error"===i.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns))},dependencies:[d.YU,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.TL,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,te.V,d.QX]})}return n})();var pe=g(5951);function ih(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function ah(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function sh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function oh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function lh(n,s){if(1&n&&(e.j41(0,"div",1),e.nrm(1,"mat-divider",2),e.j41(2,"div",3)(3,"div",4)(4,"h4",5),e.EFF(5,"Channel ID"),e.k0s(),e.j41(6,"span",6),e.EFF(7),e.k0s()(),e.j41(8,"div",7)(9,"h4",5),e.EFF(10,"Channel Point"),e.k0s(),e.j41(11,"span",6),e.EFF(12),e.k0s()()(),e.nrm(13,"mat-divider",8),e.j41(14,"div",3)(15,"div",4)(16,"h4",5),e.EFF(17,"Last Update"),e.k0s(),e.j41(18,"span",6),e.EFF(19),e.nI1(20,"date"),e.k0s()(),e.j41(21,"div",7)(22,"h4",5),e.EFF(23,"Capacity (Sats)"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()()(),e.nrm(27,"mat-divider",8),e.j41(28,"div",9)(29,"div",10)(30,"div",11),e.DNE(31,ih,2,0,"h3",12)(32,ah,2,0,"h3",12),e.k0s(),e.nrm(33,"mat-divider",8),e.j41(34,"div",13)(35,"h4",5),e.EFF(36,"Pubkey"),e.k0s(),e.j41(37,"span",6),e.EFF(38),e.k0s()(),e.nrm(39,"mat-divider",8),e.j41(40,"div",14)(41,"h4",5),e.EFF(42,"Time Lock Delta"),e.k0s(),e.j41(43,"span",6),e.EFF(44),e.k0s()(),e.nrm(45,"mat-divider",8),e.j41(46,"div",14)(47,"h4",5),e.EFF(48,"Min HTLC"),e.k0s(),e.j41(49,"span",6),e.EFF(50),e.k0s()(),e.nrm(51,"mat-divider",8),e.j41(52,"div",14)(53,"h4",5),e.EFF(54,"Max HTLC"),e.k0s(),e.j41(55,"span",6),e.EFF(56),e.k0s()(),e.nrm(57,"mat-divider",8),e.j41(58,"div",14)(59,"h4",5),e.EFF(60,"Fee Base Msat"),e.k0s(),e.j41(61,"span",6),e.EFF(62),e.k0s()(),e.nrm(63,"mat-divider",8),e.j41(64,"div",14)(65,"h4",5),e.EFF(66,"Fee Rate Milli Msat"),e.k0s(),e.j41(67,"span",6),e.EFF(68),e.k0s()(),e.nrm(69,"mat-divider",8),e.j41(70,"div",14)(71,"h4",5),e.EFF(72,"Disabled"),e.k0s(),e.j41(73,"span",6),e.EFF(74),e.k0s()()(),e.j41(75,"div",10)(76,"div"),e.DNE(77,sh,2,0,"h3",12)(78,oh,2,0,"h3",12),e.k0s(),e.nrm(79,"mat-divider",8),e.j41(80,"div",13)(81,"h4",5),e.EFF(82,"Pubkey"),e.k0s(),e.j41(83,"span",6),e.EFF(84),e.k0s()(),e.nrm(85,"mat-divider",8),e.j41(86,"div",14)(87,"h4",5),e.EFF(88,"Time Lock Delta"),e.k0s(),e.j41(89,"span",6),e.EFF(90),e.k0s()(),e.nrm(91,"mat-divider",8),e.j41(92,"div",14)(93,"h4",5),e.EFF(94,"Min HTLC"),e.k0s(),e.j41(95,"span",6),e.EFF(96),e.k0s()(),e.nrm(97,"mat-divider",8),e.j41(98,"div",14)(99,"h4",5),e.EFF(100,"Max HTLC"),e.k0s(),e.j41(101,"span",6),e.EFF(102),e.k0s()(),e.nrm(103,"mat-divider",8),e.j41(104,"div",14)(105,"h4",5),e.EFF(106,"Fee Base Msat"),e.k0s(),e.j41(107,"span",6),e.EFF(108),e.k0s()(),e.nrm(109,"mat-divider",8),e.j41(110,"div",14)(111,"h4",5),e.EFF(112,"Fee Rate Milli Msat"),e.k0s(),e.j41(113,"span",6),e.EFF(114),e.k0s()(),e.nrm(115,"mat-divider",8),e.j41(116,"div",14)(117,"h4",5),e.EFF(118,"Disabled"),e.k0s(),e.j41(119,"span",6),e.EFF(120),e.k0s()()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.channel_id),e.R7$(5),e.JRh(t.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*t.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,t.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!t.node1_match),e.R7$(),e.Y8G("ngIf",t.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node1_policy&&t.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!t.node2_match),e.R7$(),e.Y8G("ngIf",t.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node2_policy&&t.lookupResult.node2_policy.disabled?"Yes":"No")}}let rh=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(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)})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({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 stretch",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(a,i){1&a&&e.DNE(0,lh,121,44,"div",0),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.bT,h.DJ,h.sA,h.UI,ee.q,d.QX,d.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]})}return n})();const ch=n=>({"background-color":n});function ph(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Lme("",a.nodeFeaturesEnum[t.value.name]||t.value.name,": ",t.value.is_required?"Mandatory":"Optional","")}}function mh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function uh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.network)}}function dh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function hh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.addr)}}function _h(n,s){1&n&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function fh(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",34),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onConnectNode(i))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onCopyNodeURI(i))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(6),e.Y8G("payload",a.lookupResult.node.pub_key+"@"+t.addr)}}function gh(n,s){1&n&&e.nrm(0,"tr",36)}function Ch(n,s){1&n&&e.nrm(0,"tr",37)}function yh(n,s){if(1&n&&(e.j41(0,"div",2),e.nrm(1,"mat-divider",3),e.j41(2,"div",4)(3,"div",5)(4,"h4",6),e.EFF(5,"Alias"),e.k0s(),e.j41(6,"span",7),e.EFF(7),e.j41(8,"span",8),e.EFF(9),e.k0s()()(),e.j41(10,"div",9)(11,"h4",6),e.EFF(12,"Pub Key"),e.k0s(),e.j41(13,"span",10),e.EFF(14),e.k0s()()(),e.nrm(15,"mat-divider",11),e.j41(16,"div",4)(17,"div",5)(18,"h4",6),e.EFF(19,"Last Update"),e.k0s(),e.j41(20,"span",7),e.EFF(21),e.nI1(22,"date"),e.k0s()(),e.j41(23,"div",9)(24,"h4",6),e.EFF(25,"Total Capacity (Sats)"),e.k0s(),e.j41(26,"span",7),e.EFF(27),e.nI1(28,"number"),e.k0s()()(),e.nrm(29,"mat-divider",11),e.j41(30,"div",4)(31,"div",5)(32,"h4",6),e.EFF(33,"Number of Channels"),e.k0s(),e.j41(34,"span",7),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div",12)(38,"h4",6),e.EFF(39,"Features"),e.k0s(),e.DNE(40,ph,2,2,"span",13),e.nI1(41,"keyvalue"),e.k0s()(),e.nrm(42,"mat-divider",11),e.j41(43,"div",14)(44,"h4",15),e.EFF(45,"Addresses"),e.k0s(),e.j41(46,"div",16)(47,"table",17,0),e.qex(49,18),e.DNE(50,mh,2,0,"th",19)(51,uh,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,dh,2,0,"th",19)(54,hh,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,_h,3,0,"th",23)(57,fh,8,1,"td",24),e.bVm(),e.DNE(58,gh,1,0,"tr",25)(59,Ch,1,0,"tr",26),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,ch,null==t.lookupResult.node?null:t.lookupResult.node.color)),e.R7$(),e.JRh(null==t.lookupResult.node?null:t.lookupResult.node.color),e.R7$(5),e.JRh(t.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*t.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,t.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,t.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,t.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",t.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}let bh=(()=>{class n{constructor(t,a,i){this.logger=t,this.snackBar=a,this.store=i,this.nodeFeaturesEnum=l._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0})}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}onConnectNode(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:t.addr},information:this.information,balance:this.availableBalance},component:Ze}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(ae.UG),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["table",""],["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"],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["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"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(a,i){1&a&&e.DNE(0,yh,60,26,"div",1),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,ee.q,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,ge.U,d.QX,d.vh,d.lG]})}return n})();const Fh=n=>({"mt-1":!0,"mt-2":n}),xh=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function vh(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Th(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function Sh(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function kh(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,Sh,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,xh,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function Rh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Eh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Ih(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Lh(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,Rh,2,1,"span",25)(6,Eh,2,1,"span",25)(7,Ih,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let et=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,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.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.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.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===t.payload.action&&(this.errorMessage="",t.payload.status===l.wn.ERROR&&(this.errorMessage="object"==typeof t.payload.message?JSON.stringify(t.payload.message):t.payload.message),t.payload.status===l.wn.INITIATED&&(this.errorMessage=l.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookups"]],decls:21,vars:10,consts:[["form","ngForm"],["key",""],["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"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[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"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selectedFieldId,p)||(i.selectedFieldId=p),e.Njj(p)}),e.bIt("change",function(p){return e.eBV(o),e.Njj(i.onSelectChange(p))}),e.DNE(7,vh,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.lookupKey,p)||(i.lookupKey=p),e.Njj(p)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,Th,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,kh,3,5,"div",15)(20,Lh,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,Fh,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,rh,bh],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}"]})}return n})();var Ge=g(5084);function wh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function jh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Gh(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Dh=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faMapSigns=b.knH,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 u.B,new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,v.kv)({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,v.uK)({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,v.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing"]],decls:41,vars:16,consts:[["routingForm","ngForm"],["strtDate","ngModel"],["startDatepicker",""],["enDate","ngModel"],["endDatepicker",""],["tabPanel",""],["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"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","name","startDate","tabindex","1",3,"ngModelChange","matDatepicker","max","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],[4,"ngIf"],["matInput","","name","endDate","tabindex","2",3,"ngModelChange","matDatepicker","min","max","ngModel"],["fxLayout","row",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","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","5","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",6)(1,"div",7),e.nrm(2,"fa-icon",8),e.j41(3,"span",9),e.EFF(4,"Routing"),e.k0s()(),e.j41(5,"div",10)(6,"mat-card",11)(7,"mat-card-content",12)(8,"form",13,0),e.bIt("ngSubmit",function(){return e.eBV(o),e.Njj(i.onEventsFetch())}),e.j41(10,"div",14)(11,"mat-form-field",15)(12,"mat-label"),e.EFF(13,"Start Date"),e.k0s(),e.j41(14,"input",16,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.startDate,p)||(i.startDate=p),e.Njj(p)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,wh,2,0,"mat-error",19),e.k0s(),e.j41(20,"mat-form-field",15)(21,"mat-label"),e.EFF(22,"End Date"),e.k0s(),e.j41(23,"input",20,3),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.endDate,p)||(i.endDate=p),e.Njj(p)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,jh,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(31,"Clear"),e.k0s(),e.j41(32,"button",23),e.EFF(33,"Fetch Events"),e.k0s()()(),e.j41(34,"div",24)(35,"nav",25),e.DNE(36,Gh,2,3,"div",26),e.k0s(),e.nrm(37,"mat-tab-nav-panel",null,5),e.k0s(),e.j41(39,"div",27),e.nrm(40,"router-outlet"),e.k0s()()()()()}if(2&a){const o=e.sdS(15),r=e.sdS(18),p=e.sdS(24),F=e.sdS(27),C=e.sdS(38);e.R7$(2),e.Y8G("icon",i.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",r)("max",i.today),e.R50("ngModel",i.startDate),e.R7$(2),e.Y8G("for",r),e.R7$(),e.Y8G("startAt",i.startDate),e.R7$(2),e.Y8G("ngIf",o.errors),e.R7$(4),e.Y8G("matDatepicker",F)("min",i.startDate)("max",i.today),e.R50("ngModel",i.endDate),e.R7$(2),e.Y8G("for",F),e.R7$(),e.Y8G("startAt",i.endDate),e.R7$(2),e.Y8G("ngIf",p.errors),e.R7$(7),e.Y8G("tabPanel",C),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.RN,T.m2,Ge.Vh,Ge.bZ,Ge.bU,$.fg,f.rl,f.nJ,f.TL,f.yw,P.Bu,P.hQ,P.Ql,We.z,te.V,x.n3,x.Wk]})}return n})();const Nh=()=>["all"],Ph=()=>["no_event"],be=n=>({width:n}),$h=n=>({"display-none":n});function Ah(n,s){if(1&n&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function Mh(n,s){if(1&n&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Bh(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",7),e.nrm(1,"div",8),e.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",11),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Mh,2,2,"mat-option",12),e.k0s()()(),e.j41(9,"mat-form-field",10)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",13),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(6),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Nh).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function Oh(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Vh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function Yh(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function Xh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Uh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_in)}}function Hh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_in)}}function zh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function Jh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_out)}}function Wh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function Qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_out)}}function Zh(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function Kh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_in))}}function e_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function t_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_out))}}function n_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function i_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_msat))}}function a_(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",44)(1,"div",45)(2,"mat-select",46),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",47),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function s_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onForwardingEventClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function o_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function l_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function r_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function c_(n,s){if(1&n&&(e.j41(0,"td",50),e.DNE(1,o_,2,0,"p",51)(2,l_,2,0,"p",51)(3,r_,2,1,"p",51),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function p_(n,s){if(1&n&&e.nrm(0,"tr",52),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,$h,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function m_(n,s){1&n&&e.nrm(0,"tr",53)}function u_(n,s){1&n&&e.nrm(0,"tr",54)}function d_(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,Oh,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,Vh,2,0,"th",19)(6,Yh,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,Xh,2,0,"th",19)(9,Uh,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Hh,2,0,"th",19)(12,qh,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,zh,2,0,"th",19)(15,Jh,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,Wh,2,0,"th",19)(18,Qh,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,Zh,2,0,"th",26)(21,Kh,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,e_,2,0,"th",26)(24,t_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,n_,2,0,"th",26)(27,i_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,a_,6,0,"th",30)(30,s_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,c_,4,3,"td",33),e.bVm(),e.DNE(33,p_,1,3,"tr",34)(34,m_,1,0,"tr",35)(35,u_,1,0,"tr",36),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Ph)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function h_(n,s){if(1&n&&e.nrm(0,"mat-paginator",55),2&n){const t=e.XpG();e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let tt=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:l.wn.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())}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.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.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:t.timestamp,title:"Timestamp",width:25,type:l.UN.DATE_TIME},{key:"amt_in",value:t.amt_in,title:"Inbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"amt_out",value:t.amt_out,title:"Outbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:25,type:l.UN.NUMBER}],[{key:"alias_in",value:t.alias_in,title:"Inbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_in",value:t.chan_id_in,title:"Inbound Channel ID",width:25,type:l.UN.STRING},{key:"alias_out",value:t.alias_out,title:"Outbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_out",value:t.chan_id_out,title:"Outbound Channel ID",width:25,type:l.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.timestamp?this.datePipe.transform(new Date(1e3*t.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"timestamp":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new c.I6(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Events")}]),e.OA$],decls:5,vars:4,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[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,"matSortActive","matSortDirection","dataSource"],["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(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,Ah,2,1,"div",2)(2,Bh,13,4,"div",3)(3,d_,36,8,"div",4)(4,h_,1,3,"mat-paginator",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,d.vh]})}return n})();const __=["tableIn"],f_=["tableOut"],g_=["paginatorIn"],C_=["paginatorOut"],y_=(n,s)=>({"mt-2":n,"mt-1":s}),b_=()=>["no_incoming_event"],F_=n=>({"mt-2":n}),x_=()=>["no_outgoing_event"],Fe=n=>({width:n}),nt=n=>({"display-none":n});function v_(n,s){if(1&n&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function T_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function S_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function k_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function R_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function E_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function I_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function L_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function w_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function j_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function G_(n,s){1&n&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function D_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onRoutingPeerClick(o,i,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function N_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function P_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function $_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function A_(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,N_,2,0,"p",46)(2,P_,2,0,"p",46)(3,$_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function M_(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function B_(n,s){1&n&&e.nrm(0,"tr",48)}function O_(n,s){1&n&&e.nrm(0,"tr",49)}function V_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function Y_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function X_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function U_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function H_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function q_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function z_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function J_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function W_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function Q_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function Z_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function K_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function e0(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,Q_,2,0,"p",46)(2,Z_,2,0,"p",46)(3,K_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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 t0(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function n0(n,s){1&n&&e.nrm(0,"tr",48)}function i0(n,s){1&n&&e.nrm(0,"tr",49)}function a0(n,s){if(1&n&&(e.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),e.EFF(4,"Incoming"),e.k0s(),e.nrm(5,"div",12),e.k0s(),e.j41(6,"div",13),e.DNE(7,T_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,S_,2,0,"th",17)(12,k_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,R_,2,0,"th",17)(15,E_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,I_,2,0,"th",21)(18,L_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,w_,2,0,"th",21)(21,j_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,G_,3,0,"th",24)(24,D_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,A_,4,3,"td",27),e.bVm(),e.DNE(27,M_,1,3,"tr",28)(28,B_,1,0,"tr",29)(29,O_,1,0,"tr",30),e.k0s()(),e.nrm(30,"mat-paginator",31,1),e.k0s(),e.j41(32,"div",9)(33,"div",10)(34,"div",11),e.EFF(35,"Outgoing"),e.k0s(),e.nrm(36,"div",12),e.k0s(),e.j41(37,"div",13),e.DNE(38,V_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,Y_,2,0,"th",17)(43,X_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,U_,2,0,"th",17)(46,H_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,q_,2,0,"th",21)(49,z_,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,J_,2,0,"th",21)(52,W_,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,e0,4,3,"td",27),e.bVm(),e.DNE(55,t0,1,3,"tr",28)(56,n0,1,0,"tr",29)(57,i0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,y_,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,b_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,F_,t.screenSize!==t.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,x_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let s0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"total_amount",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.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,i){let o=" Routing Information";o="in"===i?"Incoming"+o:"Outgoing"+o,this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:o,message:[[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:l.UN.STRING}],[{key:"events",value:t.events,title:"Events",width:50,type:l.UN.NUMBER},{key:"total_amount",value:t.total_amount,title:"Total Amount (Sats)",width:50,type:l.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,a)=>{let i="";return i="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(),i.includes(a)},this.routingPeersOutgoing.filterPredicate=(t,a)=>{let i="";switch(this.selFilterByOut){case"all":i=JSON.stringify(t).toLowerCase();break;case"total_amount":case"total_fee":i=(+(t[this.selFilterByOut]||0)/1e3).toString()||"";break;default:i="string"==typeof t[this.selFilterByOut]?t[this.selFilterByOut].toLowerCase():"boolean"==typeof t[this.selFilterByOut]?t[this.selFilterByOut]?"yes":"no":t[this.selFilterByOut].toString()}return i.includes(a)}}loadRoutingPeersTable(t){if(t.length>0){const a=this.groupRoutingPeers(t);this.routingPeersIncoming=new c.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(t){const a=[],i=[];return t.forEach(o=>{const r=a.find(F=>F.chan_id===o.chan_id_in),p=i.find(F=>F.chan_id===o.chan_id_out);r?(r.events++,r.total_amount=+r.total_amount+ +(o.amt_in||0)):a.push({chan_id:o.chan_id_in,alias:o.alias_in,events:1,total_amount:+(o.amt_in||0)}),p?(p.events++,p.total_amount=+p.total_amount+ +(o.amt_out||0)):i.push({chan_id:o.chan_id_out,alias:o.alias_out,events:1,total_amount:+(o.amt_out||0)})}),[this.commonService.sortDescByKey(a,"total_amount"),this.commonService.sortDescByKey(i,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(__,5,k.B4),e.GBs(f_,5,k.B4),e.GBs(g_,5),e.GBs(C_,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sortIn=o.first),e.mGM(o=e.lsd())&&(i.sortOut=o.first),e.mGM(o=e.lsd())&&(i.paginatorIn=o.first),e.mGM(o=e.lsd())&&(i.paginatorOut=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.on)("Routing peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["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"],["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"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["matColumnDef","no_outgoing_event"],["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(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,v_,2,1,"div",5)(2,a0,60,25,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld,d.QX]})}return n})();function o0(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let l0=(()=>{class n{constructor(t){this.router=t,this.faChartBar=b.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-reports"]],decls:12,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Reports"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,o0,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faChartBar),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();var it=g(6064),at=g(4655);const r0=n=>({"error-border":n});function c0(n,s){1&n&&e.nrm(0,"mat-progress-bar",17)}function p0(n,s){if(1&n&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,t.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==t.events||null==t.events.forwarding_events?null:t.events.forwarding_events.length)||0)," Events")}}function m0(n,s){1&n&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function u0(n,s){if(1&n&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(2,r0,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.R7$(),e.JRh(t.errorMessage)}}function d0(n,s){if(1&n&&(e.j41(0,"span")(1,"span",22),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"span",22),e.EFF(5),e.nI1(6,"number"),e.k0s()()),2&n){const t=s.model,a=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(a.selReportBy===a.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(a.selReportBy===a.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function h0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,d0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("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 _0(n,s){if(1&n&&e.nrm(0,"rtl-forwarding-history",23),2&n){const t=e.XpG();e.Y8G("pageId","reports")("tableId","routing")("eventsData",null==t.events?null:t.events.forwarding_events)("selFilter",t.eventFilterValue)}}let f0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.dataService=a,this.commonService=i,this.store=o,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.aR.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.f7,this.errorMessage="",this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.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.MZ.GET_FORWARDING_HISTORY;const i=Math.round(t.getTime()/1e3).toString(),o=Math.round(a.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",i,o).pipe((0,_.Q)(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.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}prepareEventsReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(K.u),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},decls:20,vars:9,consts:[["tooltipTemplate",""],["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 center",1,"my-1",3,"ngModelChange","change","ngModel"],[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,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(r){return e.DH7(i.selReportBy,r)||(i.selReportBy=r),r}),e.bIt("change",function(){return i.onSelReportByChange()}),e.j41(4,"span",5),e.EFF(5,"Report By: "),e.k0s(),e.j41(6,"mat-radio-button",6),e.EFF(7,"Fees"),e.k0s(),e.j41(8,"mat-radio-button",7),e.EFF(9,"Events"),e.k0s()()(),e.DNE(10,c0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,p0,4,8,"div",10)(13,m0,2,0,"div",11)(14,u0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,h0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,_0,1,4,"rtl-forwarding-history",16),e.k0s()()()),2&a&&(e.R7$(3),e.R50("ngModel",i.selReportBy),e.R7$(3),e.FS9("value",i.reportBy.FEES),e.R7$(2),e.FS9("value",i.reportBy.EVENTS),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(i.routingReportData.length<=0||i.events.forwarding_events.length<=0)&&""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",i.events&&(null==i.events?null:i.events.forwarding_events)&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0))},dependencies:[d.YU,d.bT,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,B.HM,pe.VT,pe._g,it.L8,at.m,tt,d.QX],data:{animation:[Le.q]}})}return n})();var g0=g(9584),C0=g(5085);function y0(n,s){1&n&&(e.j41(0,"div",12),e.nrm(1,"mat-progress-bar",13),e.j41(2,"span"),e.EFF(3,"Getting transactions data..."),e.k0s()())}function b0(n,s){if(1&n&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function F0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function x0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function v0(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,F0,4,7,"div",16)(2,x0,4,7,"div",16),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function T0(n,s){1&n&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function S0(n,s){if(1&n&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=s.model;e.R7$(),e.LHq("",t.name,": ",e.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function k0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,S0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG(2);e.Y8G("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 R0(n,s){if(1&n&&(e.j41(0,"div",10),e.DNE(1,k0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.transactionsReportData.length>0&&t.transactionsNonZeroReportData.length>0)}}function E0(n,s){if(1&n&&e.nrm(0,"rtl-transactions-report-table",22),2&n){const t=e.XpG();e.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let I0=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.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.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(g0.av).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.n_).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{t.apiCallStatus.status===l.wn.UN_INITIATED&&this.store.dispatch((0,v.tG)()),this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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,_.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.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.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,a){const i=Math.round(t.getTime()/1e3),o=Math.round(a.getTime()/1e3),r=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const p=this.payments?.filter(C=>"SUCCEEDED"===C.status&&C.creation_date&&C.creation_date>=i&&C.creation_dateC.settled&&C.creation_date&&+C.creation_date>=i&&+C.creation_date{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let C=0;C{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((t,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?t.concat({date:a.date,amount_paid:a.series[0].value,num_payments:a.series[0].extra.total,amount_received:a.series[1].value,num_invoices:a.series[1].extra.total}):t,[])}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),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.KR[t].days+1:l.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},decls:11,vars:6,consts:[["tooltipTemplate",""],["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,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.DNE(4,y0,4,0,"div",5)(5,b0,2,1,"div",6)(6,v0,3,3,"div",7)(7,T0,2,0,"div",8)(8,R0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,E0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&a&&(e.R7$(4),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length<=0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,it.Dl,at.m,C0.T,d.QX],data:{animation:[Le.q]}})}return n})();const L0=["form"];function w0(n,s){if(1&n&&(e.j41(0,"div",17),e.nrm(1,"fa-icon",18),e.j41(2,"span"),e.EFF(3,'Bump fee option will be disabled for unconfirmed UTXOs where label text includes "sweep" in its value.'),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle)}}function j0(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function G0(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.labelError)}}function D0(n,s){if(1&n&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,G0,2,1,"span",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.labelError)}}let N0=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.snackBar=r,this.commonService=p,this.faExclamationTriangle=b.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}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,_.Q)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(K.u),e.rXU(I.il),e.rXU(ae.UG),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(a,i){if(1&a&&e.GBs(L0,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},decls:23,vars:5,consts:[["form","ngForm"],["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 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"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","100"],["autoFocus","","matInput","","name","label","tabindex","1","required","",3,"ngModelChange","ngModel"],[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-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Label UTXO"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("submit",function(){return e.eBV(o),e.Njj(i.onLabelUTXO())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.DNE(11,w0,4,1,"div",9),e.j41(12,"mat-form-field",10)(13,"mat-label"),e.EFF(14,"UTXO Label"),e.k0s(),e.j41(15,"input",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.label,p)||(i.label=p),e.Njj(p)}),e.k0s(),e.DNE(16,j0,2,0,"mat-error",12),e.k0s(),e.DNE(17,D0,3,2,"div",13),e.j41(18,"div",14)(19,"button",15),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",16),e.EFF(22,"Label UTXO"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",i.label.toLowerCase().includes("sweep")&&"0"===i.utxo.confirmations),e.R7$(4),e.R50("ngModel",i.label),e.R7$(),e.Y8G("ngIf",!i.label),e.R7$(),e.Y8G("ngIf",""!==i.labelError))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,Z.N]})}return n})();const st=()=>["all"],P0=n=>({"error-border":n}),$0=()=>["no_utxo"],De=n=>({width:n}),A0=n=>({"display-none":n});function M0(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function B0(n,s){1&n&&e.nrm(0,"mat-progress-bar",35)}function O0(n,s){1&n&&e.nrm(0,"th",36)}function V0(n,s){1&n&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function Y0(n,s){if(1&n&&(e.j41(0,"td",37),e.DNE(1,V0,3,0,"span",38),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(),i=e.sdS(52);e.R7$(),e.Y8G("ngIf",t.amount_sat0))}}function df(n,s){1&n&&e.nrm(0,"tr",57)}function hf(n,s){1&n&&e.nrm(0,"tr",58)}function _f(n,s){1&n&&e.nrm(0,"mat-icon",40)}let ff=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=p,this.camelCaseWithReplace=F,this.snackBar=C,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=b.ymQ,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:l.md,sortBy:"tx_id",sortOrder:l.oi.DESCENDING},this.addressType=l.aG,this.displayedColumns=[],this.listUTXOs=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}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)}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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=t.utxos?.filter(a=>+(a.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)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.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)=>{let i="";switch(this.selFilterBy){case"all":i=(t.label?t.label.toLowerCase():"")+(t.outpoint?.txid_str?t.outpoint.txid_str.toLowerCase():"")+(t.outpoint?.output_index?t.outpoint?.output_index:"")+(t.outpoint?.txid_bytes?t.outpoint?.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":i=+(t?.amount_sat||0)"u"?"":"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_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onUTXOClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:t.outpoint?.txid_str,title:"Transaction ID",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"output_index",value:t.outpoint?.output_index,title:"Output Index",width:34,type:l.UN.NUMBER},{key:"amount_sat",value:t.amount_sat,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"confirmations",value:t.confirmations,title:"Confirmations",width:33,type:l.UN.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.UN.STRING}]]}}}))}loadUTXOsTable(t){this.listUTXOs=new c.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(a,i)=>{switch(i){case"is_dust":return+(a.amount_sat||0){i&&this.dataService.leaseUTXO(t.outpoint?.txid_bytes||"",t.outpoint?.output_index||0).pipe((0,_.Q)(this.unSubs[0])).subscribe({next:o=>{this.snackBar.open("The UTXO has been leased till "+new Date(o).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:o=>{this.snackBar.open(o+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{selUTXO:t,component:Ke}}}))}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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u),e.rXU(I.il),e.rXU(me.H),e.rXU(d.QX),e.rXU(q.VD),e.rXU(ae.UG))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("UTXOs")}]),e.OA$],decls:53,vars:19,consts:[["table",""],["emptySpace",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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"],[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.gt-xs","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"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"mat-form-field",5)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,M0,2,2,"mat-option",7),e.k0s()()(),e.j41(9,"mat-form-field",5)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,B0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,O0,1,0,"th",14)(20,Y0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,X0,2,0,"th",17)(23,U0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,H0,2,0,"th",19)(26,q0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,z0,2,0,"th",17)(29,J0,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,W0,2,0,"th",17)(32,Q0,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,Z0,2,0,"th",17)(35,K0,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,ef,2,0,"th",19)(38,tf,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,nf,2,0,"th",19)(41,af,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,sf,6,0,"th",26)(44,lf,11,1,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,mf,4,3,"td",29),e.bVm(),e.DNE(47,uf,1,3,"tr",30)(48,df,1,0,"tr",31)(49,hf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,_f,1,0,"ng-template",null,1,e.C5r)}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",i.utxos&&i.utxos.length>0&&i.dustUtxos&&i.dustUtxos.length>0&&!i.isDustUTXO?e.lJ4(14,st).concat(i.displayedColumns.slice(0,-1)):e.lJ4(15,st).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listUTXOs)("ngClass",e.eq3(16,P0,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,$0)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const gf=()=>["all"],Cf=n=>({"error-border":n}),yf=()=>["no_transaction"],Ne=n=>({width:n}),bf=n=>({"display-none":n});function Ff(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function xf(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function vf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function Tf(n,s){if(1&n&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function Sf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function kf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.label)}}function Rf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function Ef(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.block_hash)}}function If(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Lf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.tx_hash)}}function wf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function jf(n,s){if(1&n&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,t.amount))}}function Gf(n,s){if(1&n&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*t.amount),")")}}function Df(n,s){if(1&n&&(e.j41(0,"td",35),e.DNE(1,jf,3,3,"span",39)(2,Gf,3,3,"span",40),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.amount>0||0===t.amount),e.R7$(),e.Y8G("ngIf",t.amount<0)}}function Nf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Pf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_fees))}}function $f(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Af(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.block_height))}}function Mf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Bf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==t?null:t.num_confirmations)," ")}}function Of(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",43)(1,"div",44)(2,"mat-select",45),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",46),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Vf(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onTransactionClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Yf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function Xf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Uf(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Hf(n,s){if(1&n&&(e.j41(0,"td",49),e.DNE(1,Yf,2,0,"p",50)(2,Xf,2,0,"p",50)(3,Uf,2,1,"p",50),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function qf(n,s){if(1&n&&e.nrm(0,"tr",51),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,bf,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function zf(n,s){1&n&&e.nrm(0,"tr",52)}function Jf(n,s){1&n&&e.nrm(0,"tr",53)}let Wf=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"time_stamp",sortOrder:l.oi.DESCENDING},this.faHistory=b.Int,this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.gN).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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)})}onTransactionClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:t.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:t.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"time_stamp",value:t.time_stamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"block_height",value:t.block_height,title:"Block Height",width:50,type:l.UN.NUMBER}],[{key:"num_confirmations",value:t.num_confirmations,title:"Number of Confirmations",width:34,type:l.UN.NUMBER},{key:"total_fees",value:t.total_fees,title:"Total Fees (Sats)",width:33,type:l.UN.NUMBER},{key:"amount",value:t.amount,title:"Amount (Sats)",width:33,type:l.UN.NUMBER}],[{key:"dest_addresses",value:t.dest_addresses,title:"Destination Addresses",width:100,type:l.UN.ARRAY}]],scrollable:t.dest_addresses&&t.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.listTransactions.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.time_stamp?this.datePipe.transform(new Date(1e3*t.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"time_stamp":i=this.datePipe.transform(new Date(1e3*(t?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadTransactionsTable(t){this.listTransactions=new c.I6([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Transactions")}]),e.OA$],decls:51,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",5),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Ff,2,2,"mat-option",6),e.k0s()()(),e.j41(9,"mat-form-field",4)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",7),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,xf,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,vf,2,0,"th",13)(20,Tf,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Sf,2,0,"th",13)(23,kf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Rf,2,0,"th",13)(26,Ef,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,If,2,0,"th",13)(29,Lf,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,wf,2,0,"th",19)(32,Df,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nf,2,0,"th",19)(35,Pf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,$f,2,0,"th",19)(38,Af,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Mf,2,0,"th",19)(41,Bf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,Of,6,0,"th",24)(44,Vf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Hf,4,3,"td",27),e.bVm(),e.DNE(47,qf,1,3,"tr",28)(48,zf,1,0,"tr",29)(49,Jf,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,gf).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listTransactions)("ngClass",e.eq3(15,Cf,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,yf)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,d.vh]})}return n})();function Qf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numUtxos)}}function Zf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numTransactions)}}function Kf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numDustUtxos)}}let e2=(()=>{class n{constructor(t,a){this.logger=t,this.store=a,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=t.utxos?.filter(a=>a.amount_sat&&+a.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({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"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO","dustAmount"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(r){return i.onSelectedIndexChanged(r)}),e.j41(2,"mat-tab"),e.DNE(3,Qf,2,1,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,Zf,2,1,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,Kf,2,1,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&a&&(e.R7$(),e.Y8G("selectedIndex",i.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",i.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",i.DUST_AMOUNT))},dependencies:[h.DJ,h.sA,h.UI,Te.k,P.ES,P.mq,P.T8,ff,Wf]})}return n})();const t2=(n,s)=>[n,s];function n2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=null==i?null:i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.Y8G("active",a.activeLink===(null==t?null:t.link))("routerLink",e.l_i(3,t2,null==t?null:t.link,null==a.selectedTable?null:a.selectedTable.name)),e.R7$(),e.JRh(null==t?null:t.name)}}let i2=(()=>{class n{constructor(t,a,i){this.store=t,this.router=a,this.activatedRoute=i,this.faExchangeAlt=b._qq,this.faChartPie=b.W1p,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 u.B,new u.B,new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===a.urlAfterRedirects.substring(a.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(y.$7).pipe((0,_.Q)(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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain"]],decls:23,vars:6,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",1),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"On-chain Transactions"),e.k0s()(),e.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),e.DNE(16,n2,2,6,"div",9),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",10),e.nrm(20,"router-outlet"),e.k0s(),e.j41(21,"div",11)(22,"rtl-utxo-tables",12),e.bIt("selectedTableIndexChange",function(p){return e.eBV(o),e.Njj(i.onSelectedTableIndexChanged(p))}),e.k0s()()()()()}if(2&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links),e.R7$(6),e.Y8G("selectedTableIndex",null==i.selectedTable?null:i.selectedTable.id)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk,e2]})}return n})();var a2=g(396);function s2(n,s){if(1&n&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.addressTp," ")}}let o2=(()=>{class n{constructor(t,a,i){this.store=t,this.lndEffects=a,this.commonService=i,this.addressTypes=[],this.selectedAddressType=l.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(t.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?l.Ld:l.Ld.filter(a=>"4"!==a.addressId)})}onGenerateAddress(){this.store.dispatch((0,v.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,J.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:a2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-receive"]],decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Address Type"),e.k0s(),e.j41(5,"mat-select",3),e.mxI("ngModelChange",function(r){return e.DH7(i.selectedAddressType,r)||(i.selectedAddressType=r),r}),e.DNE(6,s2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return i.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.selectedAddressType),e.R7$(),e.Y8G("ngForOf",i.addressTypes))},dependencies:[d.Sq,m.BC,m.vS,h.DJ,h.sA,h.UI,G.$z,f.rl,f.nJ,R.VO,V.wT]})}return n})();var l2=g(2852);const r2=["form"],c2=["formSweepAll"],p2=["stepper"];function m2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function u2(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.amountError)}}function d2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t)}}function h2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function _2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function f2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",36,4),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionBlocks,i)||(o.transactionBlocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,_2,2,0,"mat-error",18),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!t.transactionBlocks)}}function g2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function C2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",37,5),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionFees,i)||(o.transactionFees=i),e.Njj(i)}),e.k0s(),e.DNE(5,g2,2,0,"mat-error",18),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionFees),e.R7$(2),e.Y8G("ngIf",!t.transactionFees)}}function y2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function b2(n,s){if(1&n&&(e.j41(0,"div",38),e.nrm(1,"fa-icon",39),e.DNE(2,y2,2,1,"span",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function F2(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",15,1),e.bIt("submit",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())})("reset",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.j41(2,"mat-form-field",16)(3,"mat-label"),e.EFF(4,"Bitcoin Address"),e.k0s(),e.j41(5,"input",17,2),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAddress,i)||(o.transactionAddress=i),e.Njj(i)}),e.k0s(),e.DNE(7,m2,2,0,"mat-error",18),e.k0s(),e.j41(8,"mat-form-field",19)(9,"mat-label"),e.EFF(10,"Amount"),e.k0s(),e.j41(11,"input",20,3),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAmount,i)||(o.transactionAmount=i),e.Njj(i)}),e.k0s(),e.j41(13,"span",21),e.EFF(14),e.k0s(),e.DNE(15,u2,2,1,"mat-error",18),e.k0s(),e.j41(16,"mat-form-field",22)(17,"mat-select",23),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountUnitChange(i))}),e.DNE(18,d2,2,2,"mat-option",24),e.k0s()(),e.j41(19,"div",25)(20,"mat-form-field",26)(21,"mat-select",27),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.DNE(22,h2,2,2,"mat-option",24),e.k0s()(),e.DNE(23,f2,6,4,"mat-form-field",28)(24,C2,6,4,"mat-form-field",28),e.k0s(),e.nrm(25,"div",29),e.DNE(26,b2,3,2,"div",30),e.j41(27,"div",31)(28,"button",32),e.EFF(29,"Clear Fields"),e.k0s(),e.j41(30,"button",33),e.EFF(31,"Send Funds"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.transactionAddress),e.R7$(2),e.Y8G("ngIf",!t.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",t.transactionAmount),e.R7$(3),e.SpI("",t.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!t.transactionAmount),e.R7$(2),e.Y8G("value",t.selAmountUnit),e.R7$(),e.Y8G("ngForOf",t.amountUnits),e.R7$(3),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType),e.R7$(2),e.Y8G("ngIf",""!==t.sendFundError)}}function x2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(3);e.JRh(t.passwordFormLabel)}}function v2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function T2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-step",43)(1,"form",62),e.DNE(2,x2,1,1,"ng-template",56),e.j41(3,"div",7)(4,"mat-form-field",63)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",64),e.DNE(8,v2,2,0,"mat-error",18),e.k0s()(),e.j41(9,"div",65)(10,"button",66),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function S2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.sendFundFormLabel)}}function k2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function R2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function E2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function I2(n,s){if(1&n&&(e.j41(0,"mat-form-field",67)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.nrm(3,"input",68),e.DNE(4,E2,2,0,"mat-error",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionBlocks.errors?null:t.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function L2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function w2(n,s){if(1&n&&(e.j41(0,"mat-form-field",67)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.nrm(3,"input",69),e.DNE(4,L2,2,0,"mat-error",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionFees.errors?null:t.sendFundFormGroup.controls.transactionFees.errors.required)}}function j2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.confirmFormLabel)}}function G2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function D2(n,s){if(1&n&&(e.j41(0,"div",38),e.nrm(1,"fa-icon",39),e.DNE(2,G2,2,1,"span",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function N2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",40)(1,"mat-vertical-stepper",41,6),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.DNE(3,T2,12,4,"mat-step",42),e.j41(4,"mat-step",43)(5,"form",44),e.DNE(6,S2,1,1,"ng-template",45),e.j41(7,"div",46)(8,"mat-form-field",47)(9,"mat-label"),e.EFF(10,"Bitcoin Address"),e.k0s(),e.nrm(11,"input",48),e.DNE(12,k2,2,0,"mat-error",18),e.k0s(),e.j41(13,"mat-form-field",49)(14,"mat-select",50),e.DNE(15,R2,2,2,"mat-option",24),e.k0s()(),e.DNE(16,I2,5,3,"mat-form-field",51)(17,w2,5,3,"mat-form-field",51),e.k0s(),e.j41(18,"div",52)(19,"button",53),e.EFF(20,"Next"),e.k0s()()()(),e.j41(21,"mat-step",54)(22,"form",55),e.DNE(23,j2,1,1,"ng-template",56),e.j41(24,"div",40)(25,"div",57),e.nrm(26,"fa-icon",58),e.j41(27,"span"),e.EFF(28,"You are about to sweep all funds from RTL. Are you sure?"),e.k0s()(),e.DNE(29,D2,3,2,"div",30),e.j41(30,"div",52)(31,"button",59),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())}),e.EFF(32,"Sweep All Funds"),e.k0s()()()()()(),e.j41(33,"div",60)(34,"button",61),e.EFF(35),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(3),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",t.confirmFormGroup),e.R7$(),e.Y8G("formGroup",t.confirmFormGroup),e.R7$(4),e.Y8G("icon",t.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==t.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(t.flgValidated?"Close":"Cancel")}}let P2=(()=>{class n{constructor(t,a,i,o,r,p,F,C,S,LC){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.rtlEffects=r,this.commonService=p,this.decimalPipe=F,this.snackBar=C,this.actions=S,this.formBuilder=LC,this.faExclamationTriangle=b.zpE,this.sweepAll=!1,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.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,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 u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[m.k0.required]],password:["",[m.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",m.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",m.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([m.k0.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([m.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(X.qv).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.appConfig=t}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[3]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(t=>{t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,E.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.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,E.oz)({payload:l2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,J.s)(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.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:a=>{this.selAmountUnit=l.BQ.SATS,t.amount=+(this.decimalPipe.transform(a[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,v.aB)({payload:t}))},error:a=>{this.transactionAmount=null,this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+a}}):this.store.dispatch((0,v.aB)({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{this.selAmountUnit=t.value,a.transactionAmount=+(a.decimalPipe.transform(p[o],a.currencyUnitFormats[o])?.replace(/,/g,"")||0)},error:p=>{a.transactionAmount=null,this.amountError="Conversion Error: "+p,this.selAmountUnit=i,o=i}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(me.H),e.rXU(N.h),e.rXU(d.QX),e.rXU(ae.UG),e.rXU(W.En),e.rXU(m.ze))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(a,i){if(1&a&&(e.GBs(r2,7),e.GBs(c2,5),e.GBs(p2,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.formSweepAll=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:12,vars:4,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fees","ngModel"],["stepper",""],["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 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"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex.gt-sm","55"],["autoFocus","","matInput","","tabindex","1","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex.gt-sm","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value"],[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"],["fxLayout","column","fxFlex","48"],["tabindex","4",3,"valueChange","value"],["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"],["fxFlex","48"],["matInput","","type","number","name","blcks","required","","tabindex","5",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","chainFees","required","","tabindex","6",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"selectionChange","linear"],[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"],["fxLayout","column","fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","tabindex","4","name","address","required",""],["fxLayout","column","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"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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","type","number","name","blcks","required","","tabindex","6",3,"step","min"],["matInput","","formControlName","transactionFees","type","number","name","chainFees","required","","tabindex","7",3,"step","min"]],template:function(a,i){if(1&a&&(e.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),e.EFF(5),e.k0s()(),e.j41(6,"button",12),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",13),e.DNE(9,F2,32,14,"form",14),e.k0s()()(),e.DNE(10,N2,36,15,"ng-template",null,0,e.C5r)),2&a){const o=e.sdS(11);e.R7$(5),e.JRh(i.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",!i.sweepAll)("ngIfElse",o)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,f.yw,R.VO,V.wT,H.V5,H.Ti,H.M6,H.F7,Z.N,te.V]})}return n})(),ot=(()=>{class n{constructor(t,a){this.store=t,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,E.xO)({payload:{data:{sweepAll:this.sweepAll,component:P2}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.nX))};static#t=this.\u0275cmp=e.VBU({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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&a&&(e.R7$(3),e.JRh(i.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,G.$z]})}return n})();const $2=n=>({"mt-1":n}),lt=n=>({"dashboard-card-content":!0,"error-border":n});function A2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function M2(n,s){if(1&n&&e.nrm(0,"rtl-node-info",27),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!0)}}function B2(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",28),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function O2(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",29),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[2])}}function V2(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e.nrm(4,"fa-icon",17),e.j41(5,"span"),e.EFF(6),e.k0s()()(),e.j41(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.DNE(10,A2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,M2,1,2,"rtl-node-info",23)(13,B2,1,2,"rtl-channel-status-info",24)(14,O2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(4),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,lt,"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.R7$(),e.Y8G("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.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function Y2(n,s){if(1&n&&(e.j41(0,"mat-grid-list",11),e.DNE(1,V2,15,12,"mat-grid-tile",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngForOf",t.nodeCards)}}function X2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function U2(n,s){1&n&&e.eu8(0)}function H2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,U2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function q2(n,s){1&n&&e.eu8(0)}function z2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,q2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function J2(n,s){1&n&&e.eu8(0)}function W2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,J2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function Q2(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,X2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,H2,2,1,"div",33)(6,z2,2,1,"div",33)(7,W2,2,1,"div",33),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,lt,a.apiCallStatusNetwork.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",a.apiCallStatusNetwork.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function Z2(n,s){if(1&n&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessages[1])}}function K2(n,s){if(1&n&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Network Capacity"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Number of Nodes"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Number of Channels"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,t.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.num_channels))}}function eg(n,s){if(1&n&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Channel Size"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Channel Size"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Min Channel Size"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,t.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.min_channel_size))}}function tg(n,s){if(1&n&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Out Degree"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Out Degree"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",40),e.nrm(14,"h4",38)(15,"span",39),e.k0s()()),2&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,t.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,t.networkInfo.avg_out_degree,"1.0-2"))}}let ng=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.faProjectDiagram=b.qFF,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=l.f7,this.userPersonaEnum=l.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.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.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.tA).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusNetwork=t.apiCallStatus,this.apiCallStatusNetwork.status===l.wn.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.oR).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.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.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.wn.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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-network-info"]],decls:16,vars:6,consts:[["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["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"],["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",1,"mt-2",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"],["fxLayout","column","fxFlex","100",3,"ngClass"],["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,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,Y2,2,1,"mat-grid-list",5),e.j41(2,"div",6),e.nrm(3,"fa-icon",7),e.j41(4,"span",8),e.EFF(5,"Network"),e.k0s()(),e.j41(6,"mat-grid-list",9),e.DNE(7,Q2,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,Z2,3,1,"ng-template",null,0,e.C5r)(10,K2,19,9,"ng-template",null,1,e.C5r)(12,eg,19,9,"ng-template",null,2,e.C5r)(14,tg,16,7,"ng-template",null,3,e.C5r)),2&a&&(e.R7$(),e.Y8G("ngIf",i.selNode.settings.userPersona!==i.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,$2,i.screenSize!==i.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",i.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",i.networkCards))},dependencies:[d.YU,d.Sq,d.bT,d.T3,d.ux,d.e1,M.aY,h.DJ,h.sA,h.UI,L.PW,T.RN,T.m2,he.B_,he.NS,B.HM,Ye,Xe,Ue,d.QX]})}return n})();function ig(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let ag=(()=>{class n{constructor(t){this.router=t,this.faDownload=b.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-backup"]],decls:13,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Channels Backup"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,ig,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faDownload),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();const sg=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),og=()=>["no_channel"],lg=n=>({"max-width":n}),rg=n=>({"display-none":n});function cg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",24)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"div",26)(4,"button",27),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function pg(n,s){if(1&n&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"h4",29),e.EFF(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function mg(n,s){if(1&n&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function ug(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function dg(n,s){1&n&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function hg(n,s){if(1&n&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function _g(n,s){1&n&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function fg(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onRestoreChannels(i))}),e.EFF(3,"Restore"),e.k0s()()()}}function gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function Cg(n,s){if(1&n&&(e.j41(0,"td",39),e.DNE(1,gg,2,0,"p",40),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channels||!t.channels.data||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)}}function yg(n,s){if(1&n&&e.nrm(0,"tr",41),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,rg,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function bg(n,s){1&n&&e.nrm(0,"tr",42)}function Fg(n,s){1&n&&e.nrm(0,"tr",43)}let xg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,v.$J)()),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,_.Q)(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,v.Lf)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(t){this.channels=new c.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:28,vars:16,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1),e.DNE(1,cg,6,1,"div",2)(2,pg,5,1,"div",3)(3,mg,3,1,"div",3),e.j41(4,"div",4),e.nrm(5,"div",5),e.j41(6,"div",6),e.nrm(7,"div",7),e.j41(8,"mat-form-field",8)(9,"mat-label"),e.EFF(10,"Filter"),e.k0s(),e.j41(11,"input",9),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,ug,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,dg,2,0,"th",14)(18,hg,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,_g,3,0,"th",17)(21,fg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,Cg,2,1,"td",19),e.bVm(),e.DNE(24,yg,1,3,"tr",20)(25,bg,1,0,"tr",21)(26,Fg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&a&&(e.R7$(),e.Y8G("ngIf",i.allRestoreExists),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&(!i.channels||(null==i.channels||null==i.channels.data?null:i.channels.data.length)<=0)),e.R7$(),e.Y8G("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.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(13,sg,"error"===i.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,og)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld]})}return n})();const vg=n=>({"error-border":n}),Tg=()=>["no_channel"],Sg=n=>({"max-width":n}),kg=n=>({"display-none":n});function Rg(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function Eg(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Ig(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Sg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Lg(n,s){1&n&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function wg(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",40)(1,"div",39)(2,"mat-select",41),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",42),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBackupChannels(i))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onDownloadBackup(i))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onVerifyChannels(i))}),e.EFF(11,"Verify"),e.k0s()()()()}}function jg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Dg(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Ng(n,s){if(1&n&&(e.j41(0,"td",43),e.DNE(1,jg,2,0,"p",44)(2,Gg,2,0,"p",44)(3,Dg,2,1,"p",44),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function Pg(n,s){if(1&n&&e.nrm(0,"tr",45),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kg,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function $g(n,s){1&n&&e.nrm(0,"tr",46)}function Ag(n,s){1&n&&e.nrm(0,"tr",47)}let Mg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.faArchive=b.Oh6,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.SET_CHANNELS_LND||t.type===l.aU.SHOW_FILE)).subscribe(t=>{t.type===l.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.aU.SHOW_FILE&&(this.commonService.downloadFile(t.payload,"channel-"+(this.selectedChannel?.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,v.H2)({payload:{uiMessage:l.MZ.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,v.L)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}onDownloadBackup(t){this.selectedChannel=t,this.store.dispatch((0,E.t2)({payload:{channelPoint:t.channel_point?t.channel_point:"all"}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!1,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(t){this.channels=new c.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:46,vars:17,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["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(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Save your backup files in a redundant location."),e.k0s()(),e.j41(6,"div",5),e.nrm(7,"fa-icon",4),e.j41(8,"span")(9,"strong"),e.EFF(10,"Backup Folder Location: "),e.k0s(),e.EFF(11),e.k0s()(),e.j41(12,"div",6)(13,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onDownloadBackup({}))}),e.EFF(18,"Download Backup"),e.k0s()()(),e.j41(19,"div",10)(20,"div",11),e.nrm(21,"fa-icon",12),e.j41(22,"span",13),e.EFF(23,"Backups"),e.k0s()(),e.j41(24,"div",14),e.nrm(25,"div",15),e.j41(26,"mat-form-field",16)(27,"mat-label"),e.EFF(28,"Filter"),e.k0s(),e.j41(29,"input",17),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,Rg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Eg,2,0,"th",22)(36,Ig,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,Lg,3,0,"th",25)(39,wg,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Ng,4,3,"td",28),e.bVm(),e.DNE(42,Pg,1,3,"tr",29)(43,$g,1,0,"tr",30)(44,Ag,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(3),e.Y8G("icon",i.faExclamationTriangle),e.R7$(4),e.Y8G("icon",i.faInfoCircle),e.R7$(4),e.SpI("",i.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",i.faArchive),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(14,vg,""!==i.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Tg)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld]})}return n})();function Bg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Og=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=b.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}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,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign-verify-message"]],decls:13,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Sign/Verify Message"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Bg,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faUserCheck),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();function Vg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let Yg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new u.B,new u.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,_.Q)(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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u),e.rXU(ae.UG),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign"]],decls:22,vars:5,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[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,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),e.EFF(5,"Message to sign"),e.k0s(),e.j41(6,"textarea",4),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.message,p)||(i.message=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onMessageChange())}),e.k0s(),e.DNE(7,Vg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onSign())}),e.EFF(12,"Sign"),e.k0s()(),e.nrm(13,"mat-divider",9),e.j41(14,"div",10)(15,"p"),e.EFF(16,"Generated Signature"),e.k0s()(),e.j41(17,"div",11),e.EFF(18),e.k0s(),e.j41(19,"div",12)(20,"button",13),e.bIt("copied",function(p){return e.eBV(o),e.Njj(i.onCopyField(p))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(i.signature),e.R7$(2),e.Y8G("payload",i.signature))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,Z.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return n})();function Xg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Ug(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function Hg(n,s){1&n&&(e.j41(0,"p",13)(1,"mat-icon",14),e.EFF(2,"close"),e.k0s(),e.EFF(3,"Verification failed, please check message and signature"),e.k0s())}function qg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function zg(n,s){if(1&n&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(2),e.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function Jg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onCopyField(i))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function Wg(n,s){if(1&n&&(e.j41(0,"div",15),e.nrm(1,"mat-divider",16),e.j41(2,"div",17),e.DNE(3,qg,2,0,"p",6),e.k0s(),e.DNE(4,zg,3,1,"div",18)(5,Jg,3,1,"div",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid)}}let Qg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new u.B,new u.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,_.Q)(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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u),e.rXU(ae.UG),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-verify"]],decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","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 padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Message to verify"),e.k0s(),e.j41(6,"textarea",5),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.message,p)||(i.message=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(7,Xg,2,0,"mat-error",6),e.k0s(),e.j41(8,"mat-form-field",4)(9,"mat-label"),e.EFF(10,"Signature provided"),e.k0s(),e.j41(11,"input",7,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.signature,p)||(i.signature=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(13,Ug,2,0,"mat-error",6),e.k0s(),e.DNE(14,Hg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,Wg,6,4,"div",12),e.k0s()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(4),e.R50("ngModel",i.signature),e.R7$(2),e.Y8G("ngIf",!i.signature),e.R7$(),e.Y8G("ngIf",i.showVerifyStatus&&!i.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",i.showVerifyStatus&&i.verifyRes.valid))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,Z.N]})}return n})();var Zg=g(13),D=g(7186);const Kg=()=>["all"],e4=()=>["no_non_routing_event"],xe=n=>({"max-width":n}),t4=n=>({"display-none":n});function n4(n,s){if(1&n&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function i4(n,s){if(1&n&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function a4(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Non Routing Peers"),e.k0s(),e.j41(3,"div",12)(4,"mat-form-field",13)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",14),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG(2);return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,i4,2,2,"mat-option",15),e.k0s()()(),e.j41(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",16),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Kg).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function s4(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function o4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function l4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function r4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function c4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function p4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function m4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function u4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function d4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function h4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function _4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function f4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function g4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function C4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function y4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function b4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function F4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function x4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function v4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function T4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function S4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function k4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function R4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function E4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function I4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function L4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function w4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function j4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function G4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function D4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function N4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_sent))}}function P4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function $4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_received))}}function A4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function M4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.local_balance))}}function B4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function O4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.remote_balance))}}function V4(n,s){1&n&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function Y4(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(3);return e.Njj(o.onManagePeer(i))}),e.EFF(2,"Manage"),e.k0s()()}}function X4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function U4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function H4(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(4);e.R7$(),e.JRh(t.errorMessage)}}function q4(n,s){if(1&n&&(e.j41(0,"td",61),e.DNE(1,X4,2,0,"p",62)(2,U4,2,0,"p",62)(3,H4,2,1,"p",62),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("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.R7$(),e.Y8G("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.R7$(),e.Y8G("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)}}function z4(n,s){if(1&n&&e.nrm(0,"tr",63),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,t4,(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)>0))}}function J4(n,s){1&n&&e.nrm(0,"tr",64)}function W4(n,s){1&n&&e.nrm(0,"tr",65)}function Q4(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,s4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,o4,2,0,"th",22)(6,l4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,r4,2,0,"th",22)(9,c4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,p4,2,0,"th",22)(12,m4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,u4,2,0,"th",22)(15,d4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,h4,2,1,"th",28)(18,_4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,f4,2,1,"th",28)(21,g4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,C4,2,0,"th",28)(24,y4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,b4,2,0,"th",28)(27,F4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,x4,2,0,"th",28)(30,v4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,T4,2,0,"th",28)(33,S4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,k4,2,0,"th",28)(36,R4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,E4,2,0,"th",28)(39,I4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,L4,2,0,"th",28)(42,w4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,j4,2,0,"th",28)(45,G4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,D4,2,0,"th",28)(48,N4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,P4,2,0,"th",28)(51,$4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,A4,2,0,"th",28)(54,M4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,B4,2,0,"th",28)(57,O4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,V4,3,0,"th",43)(60,Y4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,q4,4,3,"td",46),e.bVm(),e.DNE(63,z4,1,3,"tr",47)(64,J4,1,0,"tr",48)(65,W4,1,0,"tr",49),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,e4)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function Z4(n,s){if(1&n&&(e.j41(0,"div",6),e.DNE(1,a4,14,4,"div",7)(2,Q4,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let K4=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.commonService=a,this.store=i,this.router=o,this.activatedRoute=r,this.decimalPipe=p,this.camelCaseWithReplace=F,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:l.md,sortBy:"remote_alias",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.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&&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.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.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 p=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",p=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",p=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",p=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",p=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",p=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%p/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%p/F),"2.0-0"):"---"}),t}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:t.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?JSON.stringify(t).toLowerCase():typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadNonRoutingPeersTable(t){if(t.length>0){const a=this.calculateUptime(this.activeChannels?.filter(i=>t.findIndex(o=>o.chan_id_in===i.chan_id||o.chan_id_out===i.chan_id)<0));this.nonRoutingPeers=new c.I6(a),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new c.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX),e.rXU(d.QX),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.on)("Non routing peers")}])],decls:3,vars:2,consts:[["paginator",""],["table",""],["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"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[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,"matSortActive","matSortDirection","dataSource"],["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",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(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,n4,2,1,"div",3)(2,Z4,5,5,"div",4),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX]})}return n})();var rt=g(3838);let eC=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new u.B,new u.B]}ngOnInit(){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 t=this.payment.htlcs[0].route.hops?.reduce((a,i)=>""===a&&i.pub_key?i.pub_key:a+","+i.pub_key,"");this.dataService.getAliasesFromPubkeys(t,!0).pipe((0,_.Q)(this.unSubs[0])).subscribe(a=>{this.paths=a?.reduce((i,o)=>""===i?o:i+"\n"+o,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,J.s)(1)).subscribe(t=>{t&&t.description&&""!==t.description&&(this.payment.description=t.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({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(a,i){1&a&&(e.j41(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",4),e.EFF(6),e.k0s()(),e.nrm(7,"mat-divider",5),e.j41(8,"div",2)(9,"h4",3),e.EFF(10,"Payment Preimage"),e.k0s(),e.j41(11,"span",4)(12,"div"),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",5),e.j41(15,"div",2)(16,"h4",3),e.EFF(17,"Payment Request"),e.k0s(),e.j41(18,"span",4)(19,"div"),e.EFF(20),e.k0s()()(),e.nrm(21,"mat-divider",5),e.j41(22,"div",2)(23,"h4",3),e.EFF(24,"Description"),e.k0s(),e.j41(25,"span",4)(26,"div"),e.EFF(27),e.k0s()()(),e.nrm(28,"mat-divider",5),e.j41(29,"div",6)(30,"div",7)(31,"h4",3),e.EFF(32,"Status"),e.k0s(),e.j41(33,"span",4)(34,"div"),e.EFF(35),e.k0s()()(),e.j41(36,"div",7)(37,"h4",3),e.EFF(38,"Creation Date"),e.k0s(),e.j41(39,"span",4)(40,"div"),e.EFF(41),e.k0s()()()(),e.nrm(42,"mat-divider",5),e.j41(43,"div",6)(44,"div",7)(45,"h4",3),e.EFF(46,"Value (mSats)"),e.k0s(),e.j41(47,"span",4)(48,"div"),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.j41(51,"div",7)(52,"h4",3),e.EFF(53,"Fee (mSats)"),e.k0s(),e.j41(54,"span",4)(55,"div"),e.EFF(56),e.nI1(57,"number"),e.k0s()()()(),e.nrm(58,"mat-divider",5),e.j41(59,"div",2)(60,"h4",3),e.EFF(61,"Path"),e.k0s(),e.j41(62,"span",4)(63,"div"),e.EFF(64),e.k0s()()(),e.nrm(65,"mat-divider",5),e.k0s()()),2&a&&(e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==i.payment?null:i.payment.status),e.R7$(6),e.JRh(null==i.payment?null:i.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==i.payment?null:i.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==i.payment?null:i.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[h.DJ,h.sA,h.UI,T.m2,ee.q,d.QX]})}return n})();var tC=g(8288);const ct=n=>({"display-none":n}),Pe=n=>({"mr-0":n});function nC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function iC(n,s){1&n&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function aC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function sC(n,s){1&n&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function oC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}function lC(n,s){1&n&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function rC(n,s){if(1&n&&e.nrm(0,"span",38),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function cC(n,s){if(1&n&&e.nrm(0,"span",39),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function pC(n,s){if(1&n&&e.nrm(0,"span",40),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function mC(n,s){if(1&n&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,rC,1,3,"span",34)(4,cC,1,3,"span",35)(5,pC,1,3,"span",36),e.EFF(6),e.k0s(),e.j41(7,"span",37),e.EFF(8),e.nI1(9,"number"),e.k0s()(),e.nrm(10,"mat-divider",16),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===t.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===t.state),e.R7$(),e.Y8G("ngIf","CANCELED"===t.state),e.R7$(),e.SpI(" ",t.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+t.amt_msat/1e3||0,a.getDecimalFormat(t))),e.R7$(2),e.Y8G("inset",!0)}}function uC(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.flgOpened=!0)})("closed",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onExpansionClosed())}),e.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e.EFF(5,"HTLCs"),e.k0s()()(),e.j41(6,"div",27)(7,"div",28)(8,"span",29),e.EFF(9,"Channel ID"),e.k0s(),e.j41(10,"span",30),e.EFF(11,"Amount (Sats)"),e.k0s()(),e.nrm(12,"mat-divider",16),e.DNE(13,mC,11,9,"div",31),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==t.invoice?null:t.invoice.htlcs)}}function dC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}let hC=(()=>{class n{constructor(t){this.commonService=t,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220)}getDecimalFormat(t){return t.amt_msat<1e3?"1.0-4":"1.0-0"}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({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(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,nC,1,3,"qr-code",2)(3,iC,2,0,"span",3),e.k0s(),e.j41(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.DNE(8,aC,1,3,"qr-code",2)(9,sC,2,0,"span",8),e.k0s(),e.DNE(10,oC,1,1,"mat-divider",9),e.j41(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e.EFF(15),e.k0s(),e.j41(16,"span",14),e.EFF(17),e.nI1(18,"number"),e.DNE(19,lC,2,0,"ng-container",15),e.k0s()(),e.j41(20,"div",12)(21,"h4",13),e.EFF(22,"Amount Settled"),e.k0s(),e.j41(23,"span",14)(24,"div"),e.EFF(25),e.nI1(26,"number"),e.k0s()()()(),e.nrm(27,"mat-divider",16),e.j41(28,"div",11)(29,"div",12)(30,"h4",13),e.EFF(31,"Date Created"),e.k0s(),e.j41(32,"span",14),e.EFF(33),e.nI1(34,"date"),e.k0s()(),e.j41(35,"div",12)(36,"h4",13),e.EFF(37,"Date Settled"),e.k0s(),e.j41(38,"span",14),e.EFF(39),e.nI1(40,"date"),e.k0s()()(),e.nrm(41,"mat-divider",16),e.j41(42,"div",11)(43,"div",17)(44,"h4",13),e.EFF(45,"Memo"),e.k0s(),e.j41(46,"span",14),e.EFF(47),e.k0s()()(),e.nrm(48,"mat-divider",16),e.j41(49,"div",11)(50,"div",17)(51,"h4",13),e.EFF(52,"Payment Request"),e.k0s(),e.j41(53,"span",18),e.EFF(54),e.k0s()()(),e.nrm(55,"mat-divider",16),e.j41(56,"div",11)(57,"div",17)(58,"h4",13),e.EFF(59,"Payment Hash"),e.k0s(),e.j41(60,"span",18),e.EFF(61),e.k0s()()(),e.j41(62,"div"),e.nrm(63,"mat-divider",16),e.j41(64,"div",11)(65,"div",17)(66,"h4",13),e.EFF(67,"Preimage"),e.k0s(),e.j41(68,"span",18),e.EFF(69),e.k0s()()(),e.nrm(70,"mat-divider",16),e.j41(71,"div",11)(72,"div",19)(73,"h4",13),e.EFF(74,"State"),e.k0s(),e.j41(75,"span",18),e.EFF(76),e.k0s()(),e.j41(77,"div",20)(78,"h4",13),e.EFF(79,"Expiry"),e.k0s(),e.j41(80,"span",18),e.EFF(81),e.k0s()(),e.j41(82,"div",20)(83,"h4",13),e.EFF(84,"Private Routing Hints"),e.k0s(),e.j41(85,"span",18),e.EFF(86),e.k0s()()(),e.nrm(87,"mat-divider",16),e.DNE(88,uC,14,2,"div",21)(89,dC,1,1,"mat-divider",9),e.k0s()()()()()()),2&a&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,ct,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,ct,i.screenSize!==i.screenSizeEnum.XS&&i.screenSize!==i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM),e.R7$(5),e.JRh(i.screenSize===i.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==i.invoice?null:i.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.value)||"0"===(null==i.invoice?null:i.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==i.invoice?null:i.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==i.invoice?null:i.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==i.invoice?null:i.invoice.settle_date)?e.i5U(40,38,1e3*+(null==i.invoice?null:i.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.state),e.R7$(5),e.JRh(null==i.invoice?null:i.invoice.expiry),e.R7$(5),e.JRh(null!=i.invoice&&i.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0))},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,T.m2,U.GK,U.Z2,U.WN,ee.q,Q.oV,tC.Um,A.Ld,d.QX,d.vh]})}return n})();const _C=n=>({"mt-1":!0,"mt-2":n}),fC=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function gC(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function CC(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function yC(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function bC(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,yC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,fC,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function FC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payment",t.lookupValue)}}function xC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("invoice",t.lookupValue)}}function vC(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function TC(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,FC,2,1,"span",25)(6,xC,2,1,"span",25)(7,vC,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let SC=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,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.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.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(){if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.jk)({payload:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!1,paymentHash:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.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()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookup-transactions"]],decls:21,vars:10,consts:[["form","ngForm"],["key",""],["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"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[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"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selectedFieldId,p)||(i.selectedFieldId=p),e.Njj(p)}),e.bIt("change",function(p){return e.eBV(o),e.Njj(i.onSelectChange(p))}),e.DNE(7,gC,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.lookupKey,p)||(i.lookupKey=p),e.Njj(p)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,CC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,bC,3,5,"div",15)(20,TC,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,_C,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,eC,hC],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}"]})}return n})();const kC=[{path:"",component:Ae,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Os,canActivate:[(0,D.jn)()]},{path:"wallet",component:Sd,canActivate:[D.q_]},{path:"onchain",component:i2,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:o2,canActivate:[(0,D.jn)()]},{path:"send/:selTab",component:ot,data:{sweepAll:!1},canActivate:[(0,D.jn)()]},{path:"sweep/:selTab",component:ot,data:{sweepAll:!0},canActivate:[(0,D.jn)()]}]},{path:"connections",component:Xs,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:dl,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:$1,canActivate:[(0,D.jn)()]},{path:"pending",component:bm,canActivate:[(0,D.jn)()]},{path:"closed",component:ru,canActivate:[(0,D.jn)()]},{path:"activehtlcs",component:ed,canActivate:[(0,D.jn)()]}]},{path:"peers",component:rl,data:{sweepAll:!1},canActivate:[(0,D.jn)()]}]},{path:"transactions",component:Rd,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Oe,canActivate:[(0,D.jn)()]},{path:"invoices",component:Be,canActivate:[(0,D.jn)()]},{path:"lookuptransactions",component:SC,canActivate:[(0,D.jn)()]}]},{path:"messages",component:Og,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Yg,canActivate:[(0,D.jn)()]},{path:"verify",component:Qg,canActivate:[(0,D.jn)()]}]},{path:"channelbackup",component:ag,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Mg,canActivate:[(0,D.jn)()]},{path:"restore",component:xg,canActivate:[(0,D.jn)()]}]},{path:"routing",component:Dh,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:tt,canActivate:[(0,D.jn)()]},{path:"peers",component:s0,canActivate:[(0,D.jn)()]},{path:"nonroutingprs",component:K4,canActivate:[(0,D.jn)()]}]},{path:"reports",component:l0,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:f0,canActivate:[(0,D.jn)()]},{path:"transactions",component:I0,canActivate:[(0,D.jn)()]}]},{path:"graph",component:Id,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"queryroutes",component:nh,canActivate:[(0,D.jn)()]}]},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"network",component:ng,canActivate:[(0,D.jn)()]},{path:"**",component:Zg.X},{path:"rates",redirectTo:"network"}]}],RC=x.iI.forChild(kC);var EC=g(9029);let IC=(()=>{class n{static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275mod=e.$C({type:n,bootstrap:[Ae]});static#n=this.\u0275inj=e.G2t({imports:[d.MD,EC.G,RC]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/193.b1206fbf24aa1327.js b/frontend/193.b1206fbf24aa1327.js new file mode 100644 index 00000000..795a130a --- /dev/null +++ b/frontend/193.b1206fbf24aa1327.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5837:(J,G,r)=>{r.d(G,{f:()=>P});var a=r(1413),L=r(6977),f=r(4416),t=r(9647),e=r(4438),F=r(2571),A=r(9640),E=r(177),S=r(2920),c=r(9213),I=r(4823),R=r(6850);function y(z,V){if(1&z&&(e.j41(0,"mat-icon",10),e.EFF(1,"info_outline"),e.k0s()),2&z){const m=e.XpG().$implicit;e.Y8G("matTooltip",m.tooltip)}}function x(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,m.dataValue,"1.0-0")," ")}}function b(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit,s=e.XpG(2);e.R7$(),e.SpI(" ",e.i5U(2,1,m[s.currencyUnitEnum.BTC],s.currencyUnitFormats.BTC)," ")}}function D(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit,s=e.XpG(2);e.R7$(),e.SpI(" ",e.i5U(2,1,m[s.currencyUnitEnum.OTHER],s.currencyUnitFormats.OTHER)," ")}}function U(z,V){if(1&z&&(e.j41(0,"div",6)(1,"div",7),e.EFF(2),e.DNE(3,y,2,1,"mat-icon",8),e.k0s(),e.DNE(4,x,3,4,"span",9)(5,b,3,4,"span",9)(6,D,3,4,"span",9),e.k0s()),2&z){const m=V.$implicit,s=e.XpG().$implicit,_=e.XpG();e.R7$(2),e.SpI(" ",m.title," "),e.R7$(),e.Y8G("ngIf",m.tooltip),e.R7$(),e.Y8G("ngIf",s===_.currencyUnitEnum.SATS),e.R7$(),e.Y8G("ngIf",s===_.currencyUnitEnum.BTC),e.R7$(),e.Y8G("ngIf",_.fiatConversion&&s!==_.currencyUnitEnum.SATS&&s!==_.currencyUnitEnum.BTC&&""===_.conversionErrorMsg)}}function k(z,V){if(1&z&&(e.j41(0,"div",12)(1,"div",13),e.EFF(2),e.k0s()()),2&z){const m=e.XpG(2);e.R7$(2),e.JRh(m.conversionErrorMsg)}}function B(z,V){if(1&z&&(e.j41(0,"mat-tab",2)(1,"div",3),e.DNE(2,U,7,5,"div",4),e.k0s(),e.DNE(3,k,3,1,"div",5),e.k0s()),2&z){const m=V.$implicit,s=e.XpG();e.FS9("label",m),e.R7$(2),e.Y8G("ngForOf",s.values),e.R7$(),e.Y8G("ngIf",s.fiatConversion&&m!==s.currencyUnitEnum.SATS&&m!==s.currencyUnitEnum.BTC&&""!==s.conversionErrorMsg)}}let P=(()=>{class z{constructor(m,s){this.commonService=m,this.store=s,this.values=[],this.currencyUnitEnum=f.BQ,this.currencyUnitFormats=f.k,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new a.B,new a.B,new a.B,new a.B,new a.B]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()}ngOnInit(){this.store.select(t._c).pipe((0,L.Q)(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()})}getCurrencyValues(){this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.BTC,"",!0).pipe((0,L.Q)(this.unSubs[1])).subscribe(m=>{this.values[0][f.BQ.BTC]=m.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,L.Q)(this.unSubs[2])).subscribe({next:m=>{if(this.values[0][f.BQ.OTHER]=m.OTHER,m.unit&&""!==m.unit)for(let s=1;s{this.values[s][f.BQ.BTC]=C.BTC}),this.commonService.convertCurrency(_.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,L.Q)(this.unSubs[4])).subscribe({next:C=>{this.values[s][f.BQ.OTHER]=C.OTHER},error:C=>{this.conversionErrorMsg="Conversion Error: "+C}})}},error:m=>{this.conversionErrorMsg="Conversion Error: "+m}})}ngOnDestroy(){this.unSubs.forEach(m=>{m.next(null),m.complete()})}static#c=this.\u0275fac=function(s){return new(s||z)(e.rXU(F.h),e.rXU(A.il))};static#a=this.\u0275cmp=e.VBU({type:z,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},features:[e.OA$],decls:2,vars:1,consts:[["mat-stretch-tabs","false","mat-align-tabs","start"],[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 start",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(s,_){1&s&&(e.j41(0,"mat-tab-group",0),e.DNE(1,B,4,3,"mat-tab",1),e.k0s()),2&s&&(e.R7$(),e.Y8G("ngForOf",_.currencyUnits))},dependencies:[E.Sq,E.bT,S.DJ,S.sA,S.UI,c.An,I.oV,R.mq,R.T8,E.QX]})}return z})()},396:(J,G,r)=>{r.d(G,{f:()=>m});var a=r(5351),L=r(5383),f=r(4416),t=r(4438),e=r(8570),F=r(2571),A=r(5416),E=r(177),S=r(60),c=r(2920),I=r(6038),R=r(8834),y=r(5596),x=r(1997),b=r(8288),D=r(9157),U=r(9587);const k=s=>({"display-none":s});function B(s,_){if(1&s&&(t.j41(0,"div",20),t.nrm(1,"qr-code",21),t.k0s()),2&s){const C=t.XpG();t.Y8G("ngClass",t.eq3(4,k,C.screenSize===C.screenSizeEnum.XS||C.screenSize===C.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",C.address)("size",C.qrWidth)("errorCorrectionLevel","L")}}function P(s,_){if(1&s&&(t.j41(0,"div",22),t.nrm(1,"qr-code",21),t.k0s()),2&s){const C=t.XpG();t.Y8G("ngClass",t.eq3(4,k,C.screenSize!==C.screenSizeEnum.XS&&C.screenSize!==C.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",C.address)("size",C.qrWidth)("errorCorrectionLevel","L")}}function z(s,_){if(1&s&&(t.j41(0,"div",13)(1,"div",14)(2,"h4",15),t.EFF(3,"Address Type"),t.k0s(),t.j41(4,"span",23),t.EFF(5),t.k0s()()()),2&s){const C=t.XpG();t.R7$(5),t.JRh(C.addressType)}}function V(s,_){1&s&&t.nrm(0,"mat-divider",17)}let m=(()=>{class s{constructor(C,T,H,w,O){this.dialogRef=C,this.data=T,this.logger=H,this.commonService=w,this.snackBar=O,this.faReceipt=L.Mf0,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(C){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+C)}static#c=this.\u0275fac=function(T){return new(T||s)(t.rXU(a.CP),t.rXU(a.Vh),t.rXU(e.gP),t.rXU(F.h),t.rXU(A.UG))};static#a=this.\u0275cmp=t.VBU({type:s,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 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,"copied","payload"],["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(T,H){1&T&&(t.j41(0,"div",0),t.DNE(1,B,2,6,"div",1),t.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),t.nrm(5,"fa-icon",5),t.j41(6,"span",6),t.EFF(7),t.k0s()(),t.j41(8,"button",7),t.bIt("click",function(){return H.onClose()}),t.EFF(9,"X"),t.k0s()(),t.j41(10,"mat-card-content",8)(11,"div",9),t.DNE(12,P,2,6,"div",10)(13,z,6,1,"div",11)(14,V,1,0,"mat-divider",12),t.j41(15,"div",13)(16,"div",14)(17,"h4",15),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",16),t.EFF(20),t.k0s()()(),t.nrm(21,"mat-divider",17),t.j41(22,"div",18)(23,"button",19),t.bIt("copied",function(O){return H.onCopyAddress(O)}),t.EFF(24,"Copy Address"),t.k0s()()()()()()),2&T&&(t.R7$(),t.Y8G("ngIf",H.address),t.R7$(4),t.Y8G("icon",H.faReceipt),t.R7$(2),t.JRh(H.screenSize===H.screenSizeEnum.XS?"Address":"Generated Address"),t.R7$(5),t.Y8G("ngIf",H.address),t.R7$(),t.Y8G("ngIf",""!==H.addressType),t.R7$(),t.Y8G("ngIf",""!==H.addressType),t.R7$(6),t.JRh(H.address),t.R7$(3),t.Y8G("payload",H.address))},dependencies:[E.YU,E.bT,S.aY,c.DJ,c.sA,c.UI,I.PW,R.$z,y.m2,y.MM,x.q,b.Um,D.U,U.N]})}return s})()},4655:(J,G,r)=>{r.d(G,{m:()=>q});var a=r(4438),L=r(6949),f=r(4416),t=r(8570),e=r(177),F=r(9417),A=r(2920),E=r(8834),S=r(5084),c=r(9213),I=r(9631),R=r(6467),y=r(2798),x=r(6600);let b=(()=>{class o extends x.xW{constructor(i){super(i)}format(i,d){return"MMM YYYY"===d?f.KR[i.getMonth()].name+", "+i.getFullYear():"YYYY"===d?i.getFullYear().toString():i.getDate()+"/"+f.KR[i.getMonth()].name+"/"+i.getFullYear()}static#c=this.\u0275fac=function(d){return new(d||o)(a.KVO(x.Ju,8))};static#a=this.\u0275prov=a.jDH({token:o,factory:o.\u0275fac})}return o})();const D={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 k=(()=>{class o{static#c=this.\u0275fac=function(d){return new(d||o)};static#a=this.\u0275dir=a.FsC({type:o,selectors:[["","monthlyDate",""]],features:[a.Jv_([{provide:x.MJ,useClass:b},{provide:x.de,useValue:D}])]})}return o})(),B=(()=>{class o{static#c=this.\u0275fac=function(d){return new(d||o)};static#a=this.\u0275dir=a.FsC({type:o,selectors:[["","yearlyDate",""]],features:[a.Jv_([{provide:x.MJ,useClass:b},{provide:x.de,useValue:U}])]})}return o})();var P=r(92),z=r(6114);const V=["monthlyDatepicker"],m=["yearlyDatepicker"],s=()=>({animationDirection:"forward"}),_=()=>({animationDirection:"backward"}),C=()=>({animationDirection:""});function T(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,s))}}function H(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,_))}}function w(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,C))}}function O(o,N){if(1&o&&(a.j41(0,"mat-option",21),a.EFF(1),a.nI1(2,"titlecase"),a.k0s()),2&o){const i=N.$implicit;a.Y8G("value",i),a.R7$(),a.SpI(" ",a.bMT(2,2,i)," ")}}function $(o,N){if(1&o){const i=a.RV6();a.j41(0,"mat-form-field",22)(1,"input",23,1),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG(2);return a.DH7(p.selectedValue,h)||(p.selectedValue=h),a.Njj(h)}),a.k0s(),a.nrm(3,"mat-datepicker-toggle",24),a.j41(4,"mat-datepicker",25,2),a.bIt("monthSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onMonthSelected(h))})("dateSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onMonthSelected(h))}),a.k0s()()}if(2&o){const i=a.sdS(5),d=a.XpG(2);a.R7$(),a.Y8G("matDatepicker",i)("min",d.first)("max",d.last),a.R50("ngModel",d.selectedValue),a.R7$(2),a.Y8G("for",i),a.R7$(),a.Y8G("startAt",d.selectedValue)}}function W(o,N){if(1&o){const i=a.RV6();a.j41(0,"mat-form-field",26)(1,"input",27,3),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG(2);return a.DH7(p.selectedValue,h)||(p.selectedValue=h),a.Njj(h)}),a.k0s(),a.nrm(3,"mat-datepicker-toggle",24),a.j41(4,"mat-datepicker",28,4),a.bIt("yearSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))})("monthSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))})("dateSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))}),a.k0s()()}if(2&o){const i=a.sdS(5),d=a.XpG(2);a.R7$(),a.Y8G("matDatepicker",i)("min",d.first)("max",d.last),a.R50("ngModel",d.selectedValue),a.R7$(2),a.Y8G("for",i),a.R7$(),a.Y8G("startAt",d.selectedValue)}}function X(o,N){if(1&o){const i=a.RV6();a.j41(0,"div",14)(1,"div",15)(2,"mat-select",16),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG();return a.DH7(p.selScrollRange,h)||(p.selScrollRange=h),a.Njj(h)}),a.bIt("selectionChange",function(h){a.eBV(i);const p=a.XpG();return a.Njj(p.onRangeChanged(h))}),a.DNE(3,O,3,4,"mat-option",17),a.k0s()(),a.j41(4,"div",18),a.DNE(5,$,6,6,"mat-form-field",19)(6,W,6,6,"mat-form-field",20),a.k0s()()}if(2&o){const i=a.XpG();a.Y8G("@sliderAnimation",i.animationDirection),a.R7$(2),a.R50("ngModel",i.selScrollRange),a.R7$(),a.Y8G("ngForOf",i.scrollRanges),a.R7$(2),a.Y8G("ngIf",i.selScrollRange===i.scrollRanges[0]),a.R7$(),a.Y8G("ngIf",i.selScrollRange===i.scrollRanges[1])}}let q=(()=>{class o{constructor(i){this.logger=i,this.scrollRanges=f.rs,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.bkB}onRangeChanged(i){this.selScrollRange=i.value,this.onStepChange("LAST")}onMonthSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(i){switch(this.logger.info(i),i){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===f.rs[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===f.rs[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===f.rs[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===f.rs[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(i){"monthlyDate"===i.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===i.srcElement.name&&this.yearlyDatepicker.open()}static#c=this.\u0275fac=function(d){return new(d||o)(a.rXU(t.gP))};static#a=this.\u0275cmp=a.VBU({type:o,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(d,h){if(1&d&&(a.GBs(V,5),a.GBs(m,5)),2&d){let p;a.mGM(p=a.lsd())&&(h.monthlyDatepicker=p.first),a.mGM(p=a.lsd())&&(h.yearlyDatepicker=p.first)}},hostBindings:function(d,h){1&d&&a.bIt("click",function(Y){return h.onChartMouseUp(Y)})},outputs:{stepChanged:"stepChanged"},decls:20,vars:5,consts:[["controlsPanel",""],["monthlyDt","ngModel"],["monthlyDatepicker",""],["yearlyDt","ngModel"],["yearlyDatepicker",""],["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","20"],["mat-icon-button","","color","primary","type","button","tabindex","1",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button","tabindex","2",3,"click","disabled"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","20"],["mat-icon-button","","color","primary","type","button","tabindex","5",1,"pr-4",3,"click","disabled"],["mat-icon-button","","color","primary","type","button","tabindex","6",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","58"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["fxFlex","60","fxFlex.gt-md","30","name","selScrlRange","tabindex","3",1,"font-bold-700",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","tabindex","4","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"monthSelected","dateSelected","startAt"],["yearlyDate","","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","tabindex","4","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["startView","multi-year",3,"yearSelected","monthSelected","dateSelected","startAt"]],template:function(d,h){if(1&d){const p=a.RV6();a.j41(0,"div",5)(1,"div",6)(2,"button",7),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("FIRST"))}),a.j41(3,"mat-icon"),a.EFF(4,"skip_previous"),a.k0s()(),a.j41(5,"button",8),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("PREVIOUS"))}),a.j41(6,"mat-icon"),a.EFF(7,"navigate_before"),a.k0s()()(),a.DNE(8,T,1,3,"ng-container",9)(9,H,1,3,"ng-container",9)(10,w,1,3,"ng-container",9),a.j41(11,"div",10)(12,"button",11),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("NEXT"))}),a.j41(13,"mat-icon"),a.EFF(14,"navigate_next"),a.k0s()(),a.j41(15,"button",12),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("LAST"))}),a.j41(16,"mat-icon"),a.EFF(17,"skip_next"),a.k0s()()()(),a.DNE(18,X,7,5,"ng-template",null,0,a.C5r)}2&d&&(a.R7$(5),a.Y8G("disabled",h.disablePrev),a.R7$(3),a.Y8G("ngIf","forward"===h.animationDirection),a.R7$(),a.Y8G("ngIf","backward"===h.animationDirection),a.R7$(),a.Y8G("ngIf",""===h.animationDirection),a.R7$(2),a.Y8G("disabled",h.disableNext))},dependencies:[e.Sq,e.bT,e.T3,F.me,F.BC,F.vS,A.DJ,A.sA,A.UI,E.iY,S.Vh,S.bZ,S.bU,c.An,I.fg,R.rl,R.yw,y.VO,x.wT,k,B,P.z,z.V,e.PV],data:{animation:[L.k]}})}return o})()},5085:(J,G,r)=>{r.d(G,{T:()=>a2});var a=r(6695),L=r(2042),f=r(9159),t=r(2798),e=r(4416),F=r(1771),A=r(1413),E=r(6977),S=r(9647),c=r(4438),I=r(2571),R=r(9640),y=r(177),x=r(2929),b=r(9417),D=r(2920),U=r(6038),k=r(8834),B=r(9631),P=r(6467),z=r(6600),V=r(497);const m=()=>["all"],s=()=>["no_transaction"],_=l=>({"display-none":l});function C(l,M){if(1&l&&(c.j41(0,"mat-option",30),c.EFF(1),c.k0s()),2&l){const n=M.$implicit,v=c.XpG();c.Y8G("value",n),c.R7$(),c.JRh(v.getLabel(n))}}function T(l,M){1&l&&(c.j41(0,"th",31),c.EFF(1,"Date"),c.k0s())}function H(l,M){if(1&l&&(c.j41(0,"td",32),c.EFF(1),c.nI1(2,"date"),c.k0s()),2&l){const n=M.$implicit,v=c.XpG();c.R7$(),c.JRh(c.i5U(2,1,null==n?null:n.date,v.dataRange===v.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function w(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"Amount Paid (Sats)"),c.k0s())}function O(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==n?null:n.amount_paid,"1.0-2"))}}function $(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"# Payments"),c.k0s())}function W(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==n?null:n.num_payments))}}function X(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"Amount Received (Sats)"),c.k0s())}function q(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==n?null:n.amount_received,"1.0-2"))}}function o(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"# Invoices"),c.k0s())}function N(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==n?null:n.num_invoices))}}function i(l,M){if(1&l){const n=c.RV6();c.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),c.nrm(3,"mat-select-trigger"),c.j41(4,"mat-option",38),c.bIt("click",function(){c.eBV(n);const u=c.XpG();return c.Njj(u.onDownloadCSV())}),c.EFF(5,"Download CSV"),c.k0s()()()()}}function d(l,M){if(1&l){const n=c.RV6();c.j41(0,"td",39)(1,"button",40),c.bIt("click",function(){const u=c.eBV(n).$implicit,g=c.XpG();return c.Njj(g.onTransactionClick(u))}),c.EFF(2,"View Info"),c.k0s()()}}function h(l,M){1&l&&(c.j41(0,"p"),c.EFF(1,"No transaction available."),c.k0s())}function p(l,M){if(1&l&&(c.j41(0,"td",41),c.DNE(1,h,2,0,"p",42),c.k0s()),2&l){const n=c.XpG();c.R7$(),c.Y8G("ngIf",!(null!=n.transactions&&n.transactions.data)||(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)<1)}}function Y(l,M){if(1&l&&c.nrm(0,"tr",43),2&l){const n=c.XpG();c.Y8G("ngClass",c.eq3(1,_,(null==n.transactions?null:n.transactions.data)&&(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)>0))}}function Q(l,M){1&l&&c.nrm(0,"tr",44)}function c2(l,M){1&l&&c.nrm(0,"tr",45)}let a2=(()=>{class l{constructor(n,v,u,g){this.commonService=n,this.store=v,this.datePipe=u,this.camelCaseWithReplace=g,this.dataRange=e.rs[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:e.md,sortBy:"date",sortOrder:e.oi.DESCENDING},this.nodePageDefs=e._1,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=e.rs,this.transactions=new f.I6([]),this.pageSize=e.md,this.pageSizeOptions=e.xp,this.screenSize="",this.screenSizeEnum=e.f7,this.unSubs=[new A.B,new A.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.dataList&&!n.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.md,this.loadTransactionsTable(this.dataList)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(S._c).pipe((0,E.Q)(this.unSubs[0])).subscribe(n=>{this.nodePageDefs="CLN"===n.lnImplementation?e.Jd:"ECL"===n.lnImplementation?e.WW:e._1}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.md,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(n){const v=[[{key:"date",value:this.datePipe.transform(n.date,this.dataRange===e.rs[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:e.UN.DATE}],[{key:"amount_paid",value:Math.round(n.amount_paid),title:"Amount Paid (Sats)",width:50,type:e.UN.NUMBER},{key:"num_payments",value:n.num_payments,title:"# Payments",width:50,type:e.UN.NUMBER}],[{key:"amount_received",value:Math.round(n.amount_received),title:"Amount Received (Sats)",width:50,type:e.UN.NUMBER},{key:"num_invoices",value:n.num_invoices,title:"# Invoices",width:50,type:e.UN.NUMBER}]];this.store.dispatch((0,F.xO)({payload:{data:{type:e.A$.INFORMATION,alertTitle:"Transaction Summary",message:v}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const v=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(u=>u.column===n);return v?v.label?v.label:this.camelCaseWithReplace.transform(v.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.transactions.filterPredicate=(n,v)=>{let u="";switch(this.selFilterBy){case"all":u=(n.date?(this.datePipe.transform(n.date,"dd/MMM")+"/"+n.date.getFullYear()).toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"date":u=this.datePipe.transform(new Date(n[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:u=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return u.includes(v)}}loadTransactionsTable(n){this.transactions=new f.I6(n?[...n]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(n,v)=>n[v]&&isNaN(n[v])?n[v].toLocaleLowerCase():n[v]?+n[v]:null,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(n=>{n.next(),n.complete()})}static#c=this.\u0275fac=function(v){return new(v||l)(c.rXU(I.h),c.rXU(R.il),c.rXU(y.vh),c.rXU(x.VD))};static#a=this.\u0275cmp=c.VBU({type:l,selectors:[["rtl-transactions-report-table"]],viewQuery:function(v,u){if(1&v&&(c.GBs(L.B4,5),c.GBs(a.iy,5)),2&v){let g;c.mGM(g=c.lsd())&&(u.sort=g.first),c.mGM(g=c.lsd())&&(u.paginator=g.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},features:[c.Jv_([{provide:t.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:a.xX,useValue:(0,e.on)("Transactions")}]),c.OA$],decls:43,vars:14,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["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(v,u){if(1&v){const g=c.RV6();c.j41(0,"div",1)(1,"div",2)(2,"div",3),c.nrm(3,"div",4),c.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),c.EFF(7,"Filter By"),c.k0s(),c.j41(8,"mat-select",7),c.mxI("ngModelChange",function(j){return c.eBV(g),c.DH7(u.selFilterBy,j)||(u.selFilterBy=j),c.Njj(j)}),c.bIt("selectionChange",function(){return c.eBV(g),u.selFilter="",c.Njj(u.applyFilter())}),c.j41(9,"perfect-scrollbar"),c.DNE(10,C,2,2,"mat-option",8),c.k0s()()(),c.j41(11,"mat-form-field",6)(12,"mat-label"),c.EFF(13,"Filter"),c.k0s(),c.j41(14,"input",9),c.mxI("ngModelChange",function(j){return c.eBV(g),c.DH7(u.selFilter,j)||(u.selFilter=j),c.Njj(j)}),c.bIt("input",function(){return c.eBV(g),c.Njj(u.applyFilter())})("keyup",function(){return c.eBV(g),c.Njj(u.applyFilter())}),c.k0s()()()(),c.j41(15,"div",10)(16,"div",11)(17,"table",12,0),c.qex(19,13),c.DNE(20,T,2,0,"th",14)(21,H,3,4,"td",15),c.bVm(),c.qex(22,16),c.DNE(23,w,2,0,"th",17)(24,O,4,4,"td",15),c.bVm(),c.qex(25,18),c.DNE(26,$,2,0,"th",17)(27,W,4,3,"td",15),c.bVm(),c.qex(28,19),c.DNE(29,X,2,0,"th",17)(30,q,4,4,"td",15),c.bVm(),c.qex(31,20),c.DNE(32,o,2,0,"th",17)(33,N,4,3,"td",15),c.bVm(),c.qex(34,21),c.DNE(35,i,6,0,"th",22)(36,d,3,0,"td",23),c.bVm(),c.qex(37,24),c.DNE(38,p,2,1,"td",25),c.bVm(),c.DNE(39,Y,1,3,"tr",26)(40,Q,1,0,"tr",27)(41,c2,1,0,"tr",28),c.k0s(),c.nrm(42,"mat-paginator",29),c.k0s()()()()}2&v&&(c.R7$(8),c.R50("ngModel",u.selFilterBy),c.R7$(2),c.Y8G("ngForOf",c.lJ4(12,m).concat(u.displayedColumns.slice(0,-1))),c.R7$(4),c.R50("ngModel",u.selFilter),c.R7$(3),c.Y8G("matSortActive",u.tableSetting.sortBy)("matSortDirection",u.tableSetting.sortOrder)("dataSource",u.transactions),c.R7$(22),c.Y8G("matFooterRowDef",c.lJ4(13,s)),c.R7$(),c.Y8G("matHeaderRowDef",u.displayedColumns),c.R7$(),c.Y8G("matRowDefColumns",u.displayedColumns),c.R7$(),c.Y8G("pageSize",u.pageSize)("pageSizeOptions",u.pageSizeOptions)("showFirstLastButtons",u.screenSize!==u.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,b.me,b.BC,b.vS,D.DJ,D.sA,D.UI,U.PW,k.$z,B.fg,P.rl,P.nJ,t.VO,t.$2,z.wT,L.B4,L.aE,f.Zl,f.tL,f.ji,f.cC,f.YV,f.iL,f.Zq,f.xW,f.KS,f.$R,f.Qo,f.YZ,f.NB,f.iF,a.iy,V.ZF,V.Ld,y.QX,y.vh]})}return l})()},614:(J,G,r)=>{r.d(G,{Qpm:()=>i1,wB1:()=>P2});var P2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},i1={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]}}}]); \ No newline at end of file diff --git a/frontend/3rdpartylicenses.txt b/frontend/3rdpartylicenses.txt index 4b6f673c..b73ca59b 100644 --- a/frontend/3rdpartylicenses.txt +++ b/frontend/3rdpartylicenses.txt @@ -5,7 +5,7 @@ MIT MIT The MIT License -Copyright (c) 2023 Google LLC. +Copyright (c) 2024 Google LLC. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -42,7 +42,7 @@ MIT MIT The MIT License -Copyright (c) 2023 Google LLC. +Copyright (c) 2024 Google LLC. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -147,7 +147,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -247,7 +247,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2023 Fonticons, Inc. +Copyright 2024 Fonticons, 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 @@ -316,7 +316,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -416,7 +416,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2023 Fonticons, Inc. +Copyright 2024 Fonticons, 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 @@ -485,7 +485,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -585,7 +585,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2023 Fonticons, Inc. +Copyright 2024 Fonticons, 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 @@ -656,6 +656,35 @@ https://github.com/cartant/rxjs-etc by Nicholas Jamieson, MIT licensed. See the file header for details. +@ngrx/operators +MIT +The MIT License (MIT) + +Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald + +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. + +This repository includes a file "debounceSync.ts" originially copied from +https://github.com/cartant/rxjs-etc by Nicholas Jamieson, MIT licensed. See the +file header for details. + + @ngrx/store MIT The MIT License (MIT) @@ -844,28 +873,6 @@ MIT asn1.js MIT -MIT License - -Copyright (c) 2017 Fedor Indutny - -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. - base64-js MIT @@ -1114,6 +1121,29 @@ convert-hex convert-string +core-util-is +MIT +Copyright Node.js contributors. All rights reserved. + +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. + + create-ecdh MIT The MIT License (MIT) @@ -1672,6 +1702,9 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +isarray +MIT + material-icons Apache-2.0 @@ -2025,7 +2058,7 @@ MIT The MIT License (MIT) Copyright (c) 2014-2015 bpampuch - 2016-2022 liborm85 + 2016-2024 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 @@ -2070,6 +2103,55 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +process +MIT +(The MIT License) + +Copyright (c) 2013 Roman Shtylman + +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. + + +process-nextick-args +MIT +# Copyright (c) 2015 Calvin Metcalf + +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.** + + public-encrypt MIT Copyright (c) 2017 Calvin Metcalf @@ -2713,31 +2795,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -safer-buffer -MIT -MIT License - -Copyright (c) 2018 Nikita Skovoroda - -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. - - sha.js (MIT AND BSD-3-Clause) Copyright (c) 2013-2018 sha.js contributors @@ -2933,11 +2990,33 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +vm-browserify +MIT +MIT License + +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. + + zone.js MIT The MIT License -Copyright (c) 2010-2023 Google LLC. https://angular.io/license +Copyright (c) 2010-2024 Google LLC. https://angular.io/license Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/frontend/456.21f2112ce22ca275.js b/frontend/456.21f2112ce22ca275.js deleted file mode 100644 index 6a5dcb38..00000000 --- a/frontend/456.21f2112ce22ca275.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[456],{6456:(mp,bt,g)=>{g.r(bt),g.d(bt,{ECLModule:()=>pp});var u=g(6814),y=g(4190),Vt=g(5256),t=g(9212),d=g(3814),J=g(6007);function Yt(n,o){1&n&&t._UZ(0,"mat-progress-bar",3)}let Lt=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof y.OD:this.loading=!0;break;case i instanceof y.m2:case i instanceof y.gk:case i instanceof y.Q3:this.loading=!1}})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(y.F0))};static#e=this.\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(i,a){1&i&&(t.TgZ(0,"div",0),t.YNc(1,Yt,1,0,"mat-progress-bar",1),t._UZ(2,"router-outlet",null,2),t.qZA()),2&i&&(t.xp6(1),t.Q6J("ngIf",a.loading))},dependencies:[u.O5,d.xw,d.Wh,d.yH,J.pW,y.lC],data:{animation:[Vt.g]}})}return n})();var p=g(8645),h=g(9773),st=g(2460),Tt=g(1449),b=g(590),l=g(2154),f=g(9930),R=g(5980),A=g(4221),M=g(6339),E=g(5597),v=g(7509),I=g(2296),L=g(5195),vt=g(3176),lt=g(617),rt=g(7988),F=g(4104);const Zt=n=>({backgroundColor:n});function zt(n,o){if(1&n&&t._UZ(0,"span",6),2&n){const e=t.oxw();t.Q6J("ngStyle",t.VKq(1,Zt,null==e.information?null:e.information.color))}}function Gt(n,o){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,Zt,null==e.information?null:e.information.color)),t.xp6(1),t.hij(" ",t.lcZ(6,2,null==e.information?null:e.information.color)," ")}}function Wt(n,o){if(1&n&&(t.TgZ(0,"span",2),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(e)}}let Kt=(()=>{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"))}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(M.v))};static#e=this.\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(i,a){1&i&&(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,Gt,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,Wt,2,1,"span",5),t.qZA()()),2&i&&(t.xp6(5),t.hij(" ",null==a.information?null:a.information.alias," "),t.xp6(1),t.Q6J("ngIf",!a.showColorFieldSeparately),t.xp6(1),t.Q6J("ngIf",a.showColorFieldSeparately),t.xp6(5),t.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):""),t.xp6(4),t.Q6J("ngForOf",a.chains))},dependencies:[u.sg,u.O5,u.PC,d.xw,d.Wh,d.yH,v.Zl,u.gd]})}return n})();function Xt(n,o){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 $t(n,o){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 jt=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\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(i,a){if(1&i&&t.YNc(0,Xt,21,11,"div",0)(1,$t,3,1,"ng-template",null,1,t.W1O),2&i){const s=t.MAs(2);t.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[u.O5,d.xw,d.Wh,d.yH,J.pW,u.JJ]})}return n})();function te(n,o){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 ee(n,o){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 ne=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}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}];const i=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/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)}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\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(i,a){if(1&i&&t.YNc(0,te,39,18,"div",0)(1,ee,3,1,"ng-template",null,1,t.W1O),2&i){const s=t.MAs(2);t.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[u.O5,d.xw,d.Wh,d.yH,u.JJ]})}return n})();function ie(n,o){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 ae(n,o){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 oe=(()=>{class n{constructor(){this.channelsStatus={}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\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(i,a){if(1&i&&t.YNc(0,ie,42,18,"div",0)(1,ae,3,1,"ng-template",null,1,t.W1O),2&i){const s=t.MAs(2);t.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[u.O5,d.xw,d.Wh,d.yH,u.JJ]})}return n})();var C=g(5683),K=g(6385),G=g(2596),P=g(2159);const se=()=>["../connections/channels/open"],le=(n,o)=>({filterColumn:n,filterValue:o});function re(n,o){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=o.$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,se))("state",t.WLB(24,le,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),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 ce(n,o){if(1&n&&(t.TgZ(0,"div",17),t.YNc(1,re,20,27,"div",18),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.allChannels)}}function ue(n,o){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,ce,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 pe(n,o){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(){t.CHM(e);const a=t.oxw();return t.KtG(a.goToChannels())}),t._uU(3,"Open Channel"),t.qZA()()}}function me(n,o){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 de=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=b.DL8,this.faDumbbell=b.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(y.F0))};static#e=this.\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","8","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(i,a){if(1&i&&t.YNc(0,ue,24,15,"div",0)(1,pe,4,0,"ng-template",null,1,t.W1O)(3,me,3,1,"ng-template",null,2,t.W1O),2&i){const s=t.MAs(4);t.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[u.sg,u.O5,E.BN,d.xw,d.Wh,d.yH,I.lW,C.bx,K.d,J.pW,G.gM,P.$V,y.rH,u.OU,u.JJ],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();function he(n,o){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 _e(n,o){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 ge(n,o){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 fe(n,o){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 Ce=()=>["../connections/channels/open"],xe=(n,o)=>({filterColumn:n,filterValue:o});function ye(n,o){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,he,5,4,"mat-hint",17)(6,_e,5,4,"mat-hint",17),t.qZA(),t.YNc(7,ge,1,1,"mat-progress-bar",18)(8,fe,1,1,"mat-progress-bar",18),t.qZA()),2&n){const e=o.$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,Ce))("state",t.WLB(15,xe,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),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 be(n,o){if(1&n&&(t.TgZ(0,"div",12),t.YNc(1,ye,9,18,"div",13),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.allChannels)}}const Le=(n,o,e)=>({"mb-4":n,"mb-2":o,"mb-1":e});function Te(n,o){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,be,2,1,"div",11),t.qZA()()),2&n){const e=t.oxw(),i=t.MAs(2);t.Q6J("ngClass",t.kEZ(7,Le,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 ve(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",24),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.goToChannels())}),t._uU(1,"Open Channel"),t.qZA()}}function Ze(n,o){if(1&n&&(t.TgZ(0,"div",22),t._uU(1," No channels available. "),t.YNc(2,ve,2,0,"button",23),t.qZA()),2&n){const e=t.oxw();t.xp6(2),t.Q6J("ngIf","Out"===e.direction)}}function Se(n,o){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 Ae=(()=>{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")}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(y.F0),t.Y36(M.v))};static#e=this.\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","8","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(i,a){if(1&i&&t.YNc(0,Te,12,11,"div",0)(1,Ze,3,1,"ng-template",null,1,t.W1O)(3,Se,3,1,"ng-template",null,2,t.W1O),2&i){const s=t.MAs(4);t.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[u.mk,u.sg,u.O5,d.xw,d.Wh,d.yH,v.oO,I.lW,C.bx,K.d,J.pW,G.gM,P.$V,y.rH,u.OU,u.JJ]})}return n})();var z=g(8180),w=g(1476),T=g(3566),c=g(5313),Q=g(2181),k=g(2249),N=g(7700),ct=g(9337),W=g(5154),ut=g(6046),m=g(6223),H=g(2032),X=g(6985);const we=["paymentReq"];function Ee(n,o){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 Ie(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment request is required."),t.qZA())}function Fe(n,o){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 qe(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment amount is required."),t.qZA())}function Oe(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"mat-form-field",1)(1,"mat-label"),t._uU(2,"Amount (Sats)"),t.qZA(),t.TgZ(3,"input",18,19),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.paymentAmount=a)})("change",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onAmountChange(a))}),t.qZA(),t.TgZ(5,"mat-hint"),t._uU(6,"It is a zero amount invoice, enter amount to be paid."),t.qZA(),t.YNc(7,qe,2,0,"mat-error",12),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("ngModel",e.paymentAmount),t.xp6(4),t.Q6J("ngIf",!e.paymentAmount)}}function Pe(n,o){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 ke(n,o){if(1&n&&(t.TgZ(0,"div",20),t._UZ(1,"fa-icon",21),t.YNc(2,Pe,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.paymentError)}}let Ue=(()=>{class n{constructor(e,i,a,s,r,_,q,x){this.dialogRef=e,this.store=i,this.eclEffects=a,this.logger=s,this.commonService=r,this.decimalPipe=_,this.actions=q,this.dataService=x,this.faExclamationTriangle=b.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(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(f.Xz).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,h.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,z.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,h.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,z.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,h.R)(this.unSubs[3])).subscribe({next:a=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+a.symbol+this.decimalPipe.transform(a.OTHER?a.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(A.yh),t.Y36(ct.o),t.Y36(R.mQ),t.Y36(M.v),t.Y36(u.JJ),t.Y36(W.eX),t.Y36(ut.D))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(i,a){if(1&i&&t.Gf(we,5),2&i){let s;t.iGM(s=t.CRH())&&(a.paymentReq=s.first)}},decls:26,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 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"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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","","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(i,a){if(1&i&&(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",9)(12,"mat-label"),t._uU(13,"Payment Request"),t.qZA(),t.TgZ(14,"textarea",10,11),t.NdJ("ngModelChange",function(r){return a.onPaymentRequestEntry(r)})("matTextareaAutosize",function(){return!0}),t.qZA(),t.YNc(16,Ee,2,1,"mat-hint",12)(17,Ie,2,0,"mat-error",12)(18,Fe,2,1,"mat-error",12),t.qZA(),t.YNc(19,Oe,8,2,"mat-form-field",13)(20,ke,3,2,"div",14),t.TgZ(21,"div",15)(22,"button",16),t.NdJ("click",function(){return a.resetData()}),t._uU(23,"Clear Fields"),t.qZA(),t.TgZ(24,"button",17),t.NdJ("click",function(){return a.onSendPayment()}),t._uU(25,"Send Payment"),t.qZA()()()()()()),2&i){const s=t.MAs(15);t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(8),t.Q6J("ngModel",a.paymentRequest),t.xp6(2),t.Q6J("ngIf",a.paymentRequest&&""!==a.paymentDecodedHint),t.xp6(1),t.Q6J("ngIf",!a.paymentRequest),t.xp6(1),t.Q6J("ngIf",null==s.errors?null:s.errors.decodeError),t.xp6(1),t.Q6J("ngIf",a.zeroAmtInvoice),t.xp6(1),t.Q6J("ngIf",""!==a.paymentError)}},dependencies:[u.O5,m._Y,m.Fj,m.JJ,m.JL,m.Q7,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,N.ZT,I.lW,L.dn,L.dk,H.Nt,C.KE,C.hX,C.bx,C.TO,X.h]})}return n})();var B=g(3305);const Re=["scrollContainer"];function Me(n,o){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 Ne(n,o){1&n&&t._UZ(0,"mat-divider",14)}function De(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"mat-expansion-panel",23),t.NdJ("opened",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onExpansionOpen(!0))})("closed",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.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=o.$implicit,i=o.index,a=t.oxw();t.Q6J("expanded",a.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 Je=(()=>{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)}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(N.WI))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(i,a){if(1&i&&t.Gf(Re,5),2&i){let s;t.iGM(s=t.CRH())&&(a.scrollContainer=s.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 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(i,a){1&i&&(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 a.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,Me,6,1,"div",15)(54,Ne,1,0,"mat-divider",16),t.TgZ(55,"div",9)(56,"div",1)(57,"mat-accordion"),t.YNc(58,De,36,14,"mat-expansion-panel",17),t.qZA()()()()(),t.TgZ(59,"div",18)(60,"button",19),t.NdJ("click",function(){return a.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&i&&(t.xp6(16),t.Oqu(t.lcZ(17,10,a.payment.recipientAmount)),t.xp6(6),t.Oqu(t.xi3(23,12,a.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.xp6(8),t.Oqu(a.payment.id),t.xp6(7),t.Oqu(a.payment.paymentHash),t.xp6(7),t.Oqu(a.payment.paymentPreimage),t.xp6(7),t.Oqu(a.payment.recipientNodeAlias),t.xp6(2),t.Q6J("ngIf",a.description),t.xp6(1),t.Q6J("ngIf",a.description),t.xp6(4),t.Q6J("ngForOf",a.payment.parts),t.xp6(6),t.Q6J("mat-dialog-close",!1))},dependencies:[u.sg,u.O5,d.xw,d.Wh,d.yH,N.ZT,I.lW,I.nh,L.dn,L.dk,B.pp,B.ib,B.yz,B.yK,lt.Hw,K.d,P.$V,u.JJ,u.uU]})}return n})();var Z=g(9103),S=g(8525),nt=g(2703),Y=g(2995),V=g(3680);const He=["sendPaymentForm"];function Qe(n,o){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 Be(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Payment request is required."),t.qZA())}function Ve(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"mat-label"),t._uU(4,"Payment Request"),t.qZA(),t.TgZ(5,"textarea",7,8),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return!0}),t.qZA(),t.YNc(7,Qe,2,1,"mat-hint",9)(8,Be,2,0,"mat-error",9),t.qZA(),t.TgZ(9,"div",10)(10,"button",11),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.resetData())}),t._uU(11,"Clear Field"),t.qZA(),t.TgZ(12,"button",12),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onSendPayment())}),t._uU(13,"Send Payment"),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(5),t.Q6J("ngModel",e.paymentRequest),t.xp6(2),t.Q6J("ngIf",e.paymentRequest&&""!==e.paymentDecodedHint),t.xp6(1),t.Q6J("ngIf",!e.paymentRequest)}}function Ye(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",13)(1,"button",12),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.openSendPaymentModal())}),t._uU(2,"Send Payment"),t.qZA()()}}function ze(n,o){if(1&n&&(t.TgZ(0,"mat-option",59),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Ge(n,o){1&n&&t._UZ(0,"mat-progress-bar",60)}function We(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Date/Time"),t.qZA())}function Ke(n,o){if(1&n&&(t.TgZ(0,"td",62),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function Xe(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"ID"),t.qZA())}const D=n=>({width:n});function $e(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.id)}}function je(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Destination Node ID"),t.qZA())}function tn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeId)}}function en(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Destination"),t.qZA())}function nn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.recipientNodeAlias)}}function an(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Description"),t.qZA())}function on(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.description)}}function sn(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Payment Hash"),t.qZA())}function ln(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash)}}function rn(n,o){1&n&&(t.TgZ(0,"th",61),t._uU(1,"Preimage"),t.qZA())}function cn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",63)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentPreimage)}}function un(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Amount (Sats)"),t.qZA())}function pn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"span",66),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.recipientAmount))}}function mn(n,o){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(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function dn(n,o){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,r=t.oxw(2);return t.KtG(r.onPaymentClick(s))}),t._uU(2,"View Info"),t.qZA()()}}function hn(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No payment available."),t.qZA())}function _n(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting payments..."),t.qZA())}function gn(n,o){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 fn(n,o){if(1&n&&(t.TgZ(0,"td",73),t.YNc(1,hn,2,0,"p",9)(2,_n,2,0,"p",9)(3,gn,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 Cn(n,o){if(1&n&&(t.TgZ(0,"span",74),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function xn(n,o){if(1&n&&(t.ynx(0),t.YNc(1,Cn,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 yn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"span",74),t._uU(2),t.qZA(),t.YNc(3,xn,2,1,"ng-container",9),t.qZA()),2&n){const e=o.$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 bn(n,o){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(e.id)}}function Ln(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,bn,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 Tn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Ln,2,1,"span",9),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"6rem":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 vn(n,o){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(e.toChannelId)}}function Zn(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,vn,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 Sn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Zn,2,1,"span",9),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"6rem":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 An(n,o){if(1&n&&(t.TgZ(0,"span",74)(1,"span",76)(2,"span",64),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(e.toChannelAlias)}}function wn(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,An,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 En(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,wn,2,1,"span",9),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"6rem":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 In(n,o){if(1&n&&(t.TgZ(0,"span",77),t._uU(1),t.ALo(2,"number"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,e.amount,"1.0-0")," ")}}function Fn(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,In,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 qn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"span",77),t._uU(2),t.ALo(3,"number"),t.qZA(),t.YNc(4,Fn,2,1,"span",9),t.qZA()),2&n){const e=o.$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 On(n,o){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=o.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(5,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.hij("Fee Paid: ",t.xi3(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Pn(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,On,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 kn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Pn,2,1,"span",9),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Un(n,o){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=o.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(5,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.hij("Fee Paid: ",t.xi3(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Rn(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Un,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 Mn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Rn,2,1,"span",9),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Nn(n,o){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=o.$implicit,i=t.oxw(4);t.xp6(1),t.Q6J("ngStyle",t.VKq(5,D,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.hij("Fee Paid: ",t.xi3(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Dn(n,o){if(1&n&&(t.TgZ(0,"span"),t.YNc(1,Nn,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 Jn(n,o){if(1&n&&(t.TgZ(0,"td",62)(1,"div",76)(2,"span",64),t._uU(3),t.qZA()(),t.YNc(4,Dn,2,1,"span",9),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(3,D,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Hn(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",82)(1,"button",83),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw(2).$implicit,_=t.oxw(2);return t.KtG(_.onPartClick(s,r))}),t._uU(2),t.qZA()()}if(2&n){const e=o.index;t.xp6(2),t.hij("View ",e+1,"")}}function Qn(n,o){if(1&n&&(t.TgZ(0,"div"),t.YNc(1,Hn,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 Bn(n,o){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 t.KtG(s.is_expanded=!s.is_expanded)}),t._uU(3),t.qZA()(),t.YNc(4,Qn,2,1,"div",9),t.qZA()}if(2&n){const e=o.$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 Vn(n,o){1&n&&t._UZ(0,"tr",84)}const Yn=n=>({"display-none":n});function zn(n,o){if(1&n&&t._UZ(0,"tr",85),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Yn,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function Gn(n,o){1&n&&t._UZ(0,"tr",86)}function Wn(n,o){1&n&&t._UZ(0,"tr",84)}const Kn=()=>["all"],Xn=n=>({"error-border":n}),$n=()=>["no_payment"];function jn(n,o){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-label"),t._uU(9,"Filter By"),t.qZA(),t.TgZ(10,"mat-select",21),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.selFilterBy=a)})("selectionChange",function(){t.CHM(e);const a=t.oxw();return a.selFilter="",t.KtG(a.applyFilter())}),t.TgZ(11,"perfect-scrollbar"),t.YNc(12,ze,2,2,"mat-option",22),t.qZA()()(),t.TgZ(13,"mat-form-field",20)(14,"mat-label"),t._uU(15,"Filter"),t.qZA(),t.TgZ(16,"input",23),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.selFilter=a)})("input",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.applyFilter())})("keyup",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.applyFilter())}),t.qZA()()()(),t.TgZ(17,"div",24)(18,"div",25),t.YNc(19,Ge,1,0,"mat-progress-bar",26),t.TgZ(20,"table",27,28),t.ynx(22,29),t.YNc(23,We,2,0,"th",30)(24,Ke,3,4,"td",31),t.BQk(),t.ynx(25,32),t.YNc(26,Xe,2,0,"th",30)(27,$e,4,4,"td",31),t.BQk(),t.ynx(28,33),t.YNc(29,je,2,0,"th",30)(30,tn,4,4,"td",31),t.BQk(),t.ynx(31,34),t.YNc(32,en,2,0,"th",30)(33,nn,4,4,"td",31),t.BQk(),t.ynx(34,35),t.YNc(35,an,2,0,"th",30)(36,on,4,4,"td",31),t.BQk(),t.ynx(37,36),t.YNc(38,sn,2,0,"th",30)(39,ln,4,4,"td",31),t.BQk(),t.ynx(40,37),t.YNc(41,rn,2,0,"th",30)(42,cn,4,4,"td",31),t.BQk(),t.ynx(43,38),t.YNc(44,un,2,0,"th",39)(45,pn,4,3,"td",31),t.BQk(),t.ynx(46,40),t.YNc(47,mn,6,0,"th",41)(48,dn,3,0,"td",42),t.BQk(),t.ynx(49,43),t.YNc(50,fn,4,3,"td",44),t.BQk(),t.ynx(51,45),t.YNc(52,yn,4,2,"td",31),t.BQk(),t.ynx(53,46),t.YNc(54,Tn,5,5,"td",31),t.BQk(),t.ynx(55,47),t.YNc(56,Sn,5,5,"td",31),t.BQk(),t.ynx(57,48),t.YNc(58,En,5,5,"td",31),t.BQk(),t.ynx(59,49),t.YNc(60,qn,5,5,"td",31),t.BQk(),t.ynx(61,50),t.YNc(62,kn,5,5,"td",31),t.BQk(),t.ynx(63,51),t.YNc(64,Mn,5,5,"td",31),t.BQk(),t.ynx(65,52),t.YNc(66,Jn,5,5,"td",31),t.BQk(),t.ynx(67,53),t.YNc(68,Bn,5,2,"td",31),t.BQk(),t.YNc(69,Vn,1,0,"tr",54)(70,zn,1,3,"tr",55)(71,Gn,1,0,"tr",56)(72,Wn,1,0,"tr",57),t.qZA()()(),t._UZ(73,"mat-paginator",58),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("icon",e.faHistory),t.xp6(7),t.Q6J("ngModel",e.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(17,Kn).concat(e.displayedColumns.slice(0,-1))),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("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",t.VKq(18,Xn,""!==e.errorMessage)),t.xp6(49),t.Q6J("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.xp6(1),t.Q6J("matFooterRowDef",t.DdM(20,$n)),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,a,s,r,_,q,x){this.logger=e,this.commonService=i,this.store=a,this.rtlEffects=s,this.decimalPipe=r,this.dataService=_,this.datePipe=q,this.camelCaseWithSpaces=x,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=b.qO$,this.newlyAddedPayment="",this.selNode={},this.information={},this.payments=new c.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(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(f.yD).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(f.nF).pipe((0,h.R)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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(i=>this.partColumns.push("group_"+i)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.PP).pipe((0,h.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&&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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.firstPartTimestamp?this.datePipe.transform(new Date(e.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"firstPartTimestamp":a=this.datePipe.transform(new Date(e.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadPaymentsTable(e){this.payments=new c.by(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,a)=>{switch(a){case"firstPartTimestamp":return this.commonService.sortByKey(i.parts,"timestamp","number",this.sort?.direction),i.firstPartTimestamp;case"id":return this.commonService.sortByKey(i.parts,"id","string",this.sort?.direction),i.id;case"recipientNodeAlias":return this.commonService.sortByKey(i.parts,"toChannelAlias","string",this.sort?.direction),i.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(i.parts,"amount","number",this.sort?.direction),i.recipientAmount;default:return i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null}},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,z.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,z.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,z.q)(1)).subscribe(a=>{a&&(this.paymentDecoded.amount=a[0].inputValue,this.store.dispatch((0,k.oV)({payload:{invoice:this.paymentRequest,amountMsat:1e3*a[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,z.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,h.R)(this.unSubs[4])).subscribe({next:a=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats ("+a.symbol+this.decimalPipe.transform(a.OTHER?a.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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:Ue}}}))}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,z.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:Je}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,z.q)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPartView(e,i,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,a){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}]];a&&a.length>0&&a[0].paymentRequest&&a[0].paymentRequest.description&&""!==a[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:a[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}}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=e?.reduce((a,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(a=""===a?s.paymentHash:a+","+s.paymentHash),a),"");this.dataService.decodePayments(i).pipe((0,h.R)(this.unSubs[5])).subscribe(a=>{a.forEach((r,_)=>{r.length>0&&r[0].paymentRequest&&r[0].paymentRequest.description&&""!==r[0].paymentRequest.description&&(e[_].description=r[0].paymentRequest.description)});const s=e?.reduce((r,_)=>r.concat(_),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh),t.Y36(nt.V),t.Y36(u.JJ),t.Y36(ut.D),t.Y36(u.uU),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(i,a){if(1&i&&(t.Gf(He,5),t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.form=s.first),t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.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"],["fxLayout","column","fxFlex","100"],["matInput","","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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 center",1,"part-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["class","part-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-details"],["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(i,a){1&i&&(t.TgZ(0,"div",0),t.YNc(1,Ve,14,3,"form",1)(2,Ye,3,0,"div",2)(3,jn,74,21,"div",3),t.qZA()),2&i&&(t.xp6(1),t.Q6J("ngIf","home"===a.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===a.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===a.calledFrom))},dependencies:[u.mk,u.sg,u.O5,u.PC,m._Y,m.Fj,m.JJ,m.JL,m.Q7,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,H.Nt,C.KE,C.hX,C.bx,C.TO,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,w.NW,P.Vv,P.$V,u.JJ,u.uU],styles:[".mat-column-group_actions[_ngcontent-%COMP%] .part-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .part-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.part-row-span[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:11rem}"]})}return n})();var $=g(6082);function ti(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Description is required."),t.qZA())}function ei(n,o){if(1&n&&(t.TgZ(0,"mat-option",25),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=o.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(t.lcZ(2,2,e))}}function ni(n,o){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 ii(n,o){if(1&n&&(t.TgZ(0,"div",26),t._UZ(1,"fa-icon",27),t.YNc(2,ni,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 ai=(()=>{class n{constructor(e,i,a,s,r,_){this.dialogRef=e,this.data=i,this.store=a,this.decimalPipe=s,this.commonService=r,this.actions=_,this.faExclamationTriangle=b.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(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(f.yD).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,h.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:l.$Y;this.expiry&&this.selTimeUnit!==l.Qk.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.Qk.SECS));let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.Z$)({payload:a}))}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,h.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(N.WI),t.Y36(A.yh),t.Y36(u.JJ),t.Y36(M.v),t.Y36(W.eX))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-create-invoices"]],decls:41,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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invValue",3,"step","min","ngModel","ngModelChange","keyup"],["matSuffix",""],["fxLayout","column","fxFlex","30"],["matInput","","type","number","name","exp","tabindex","4",3,"step","min","ngModel","ngModelChange"],["fxLayout","column","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(i,a){if(1&i){const s=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,"mat-label"),t._uU(13,"Description"),t.qZA(),t.TgZ(14,"input",10),t.NdJ("ngModelChange",function(_){return a.description=_}),t.qZA(),t.YNc(15,ti,2,0,"mat-error",11),t.qZA(),t.TgZ(16,"div",12)(17,"mat-form-field",13)(18,"mat-label"),t._uU(19,"Amount"),t.qZA(),t.TgZ(20,"input",14),t.NdJ("ngModelChange",function(_){return a.invoiceValue=_})("keyup",function(){return a.onInvoiceValueChange()}),t.qZA(),t.TgZ(21,"span",15),t._uU(22," Sats "),t.qZA(),t.TgZ(23,"mat-hint"),t._uU(24),t.qZA()(),t.TgZ(25,"mat-form-field",16)(26,"mat-label"),t._uU(27,"Expiry"),t.qZA(),t.TgZ(28,"input",17),t.NdJ("ngModelChange",function(_){return a.expiry=_}),t.qZA(),t.TgZ(29,"span",15),t._uU(30),t.ALo(31,"titlecase"),t.qZA()(),t.TgZ(32,"mat-form-field",18)(33,"mat-select",19),t.NdJ("selectionChange",function(_){return a.onTimeUnitChange(_)}),t.YNc(34,ei,3,4,"mat-option",20),t.qZA()()(),t.YNc(35,ii,3,2,"div",21),t.TgZ(36,"div",22)(37,"button",23),t.NdJ("click",function(){return a.resetData()}),t._uU(38,"Clear Field"),t.qZA(),t.TgZ(39,"button",24),t.NdJ("click",function(){t.CHM(s);const _=t.MAs(10);return t.KtG(a.onAddInvoice(_))}),t._uU(40,"Create Invoice"),t.qZA()()()()()()}2&i&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(8),t.Q6J("ngModel",a.description),t.xp6(1),t.Q6J("ngIf",!a.description),t.xp6(5),t.Q6J("step",100)("min",1)("ngModel",a.invoiceValue),t.xp6(4),t.Oqu(a.invoiceValueHint),t.xp6(4),t.Q6J("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1)("ngModel",a.expiry),t.xp6(2),t.hij("",t.lcZ(31,14,a.selTimeUnit)," "),t.xp6(3),t.Q6J("value",a.selTimeUnit),t.xp6(1),t.Q6J("ngForOf",a.timeUnits),t.xp6(1),t.Q6J("ngIf",""!==a.invoiceError))},dependencies:[u.sg,u.O5,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.qQ,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,N.ZT,I.lW,L.dn,L.dk,H.Nt,C.KE,C.hX,C.bx,C.TO,C.R9,S.gD,V.ey,X.h,$.q,u.rS]})}return n})();var oi=g(9671);function si(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Description is required."),t.qZA())}function li(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"mat-label"),t._uU(4,"Description"),t.qZA(),t.TgZ(5,"input",7),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.description=a)}),t.qZA(),t.YNc(6,si,2,0,"mat-error",8),t.qZA(),t.TgZ(7,"mat-form-field",9)(8,"mat-label"),t._uU(9,"Amount"),t.qZA(),t.TgZ(10,"input",10,11),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.invoiceValue=a)})("keyup",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onInvoiceValueChange())}),t.qZA(),t.TgZ(12,"span",12),t._uU(13," Sats "),t.qZA(),t.TgZ(14,"mat-hint"),t._uU(15),t.qZA()(),t.TgZ(16,"div",13)(17,"button",14),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.resetData())}),t._uU(18,"Clear Field"),t.qZA(),t.TgZ(19,"button",15),t.NdJ("click",function(){t.CHM(e);const a=t.MAs(1),s=t.oxw();return t.KtG(s.onAddInvoice(a))}),t._uU(20,"Create Invoice"),t.qZA()()()}if(2&n){const e=t.oxw();t.xp6(5),t.Q6J("ngModel",e.description),t.xp6(1),t.Q6J("ngIf",!e.description),t.xp6(4),t.Q6J("step",100)("min",1)("ngModel",e.invoiceValue),t.xp6(5),t.Oqu(e.invoiceValueHint)}}function ri(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",16)(1,"button",17),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.openCreateInvoiceModal())}),t._uU(2,"Create Invoice"),t.qZA()()}}function ci(n,o){if(1&n&&(t.TgZ(0,"mat-option",55),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function ui(n,o){1&n&&t._UZ(0,"mat-progress-bar",56)}function pi(n,o){1&n&&t._UZ(0,"th",57)}const pt=n=>({"mr-0":n});function mi(n,o){if(1&n&&t._UZ(0,"span",62),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,pt,e.screenSize===e.screenSizeEnum.XS))}}function di(n,o){if(1&n&&t._UZ(0,"span",63),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,pt,e.screenSize===e.screenSizeEnum.XS))}}function hi(n,o){if(1&n&&t._UZ(0,"span",64),2&n){const e=t.oxw(3);t.Q6J("ngClass",t.VKq(1,pt,e.screenSize===e.screenSizeEnum.XS))}}function _i(n,o){if(1&n&&(t.TgZ(0,"td",58),t.YNc(1,mi,1,3,"span",59)(2,di,1,3,"span",60)(3,hi,1,3,"span",61),t.qZA()),2&n){const e=o.$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 gi(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Date Created"),t.qZA())}function fi(n,o){if(1&n&&(t.TgZ(0,"td",58),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Ci(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Date Expiry"),t.qZA())}function xi(n,o){if(1&n&&(t.TgZ(0,"td",58),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function yi(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Date Settled"),t.qZA())}function bi(n,o){if(1&n&&(t.TgZ(0,"td",58),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Li(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Node ID"),t.qZA())}const mt=n=>({width:n});function Ti(n,o){if(1&n&&(t.TgZ(0,"td",58)(1,"div",66)(2,"span",67),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function vi(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Description"),t.qZA())}function Zi(n,o){if(1&n&&(t.TgZ(0,"td",58)(1,"div",66)(2,"span",67),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.description)}}function Si(n,o){1&n&&(t.TgZ(0,"th",65),t._uU(1,"Payment Hash"),t.qZA())}function Ai(n,o){if(1&n&&(t.TgZ(0,"td",58)(1,"div",66)(2,"span",67),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash)}}function wi(n,o){1&n&&(t.TgZ(0,"th",68),t._uU(1,"Amount (Sats)"),t.qZA())}function Ei(n,o){if(1&n&&(t.TgZ(0,"td",58)(1,"span",69),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(null!=e&&e.amount?t.xi3(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function Ii(n,o){1&n&&(t.TgZ(0,"th",70),t._uU(1," Amount Settled (Sats)"),t.qZA())}function Fi(n,o){if(1&n&&(t.TgZ(0,"td",58)(1,"span",69),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(null!=e&&e.amountSettled?t.xi3(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function qi(n,o){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(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Oi(n,o){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,r=t.oxw(2);return t.KtG(r.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,r=t.oxw(2);return t.KtG(r.onRefreshInvoice(s))}),t._uU(7,"Refresh"),t.qZA()()()()}}function Pi(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No invoice available."),t.qZA())}function ki(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting invoices..."),t.qZA())}function Ui(n,o){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,o){if(1&n&&(t.TgZ(0,"td",77),t.YNc(1,Pi,2,0,"p",8)(2,ki,2,0,"p",8)(3,Ui,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 Mi=n=>({"display-none":n});function Ni(n,o){if(1&n&&t._UZ(0,"tr",78),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Mi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function Di(n,o){1&n&&t._UZ(0,"tr",79)}function Ji(n,o){1&n&&t._UZ(0,"tr",80)}const Hi=()=>["all"],Qi=n=>({"error-border":n}),Bi=()=>["no_invoice"];function Vi(n,o){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-label"),t._uU(9,"Filter By"),t.qZA(),t.TgZ(10,"mat-select",25),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.selFilterBy=a)})("selectionChange",function(){t.CHM(e);const a=t.oxw();return a.selFilter="",t.KtG(a.applyFilter())}),t.TgZ(11,"perfect-scrollbar"),t.YNc(12,ci,2,2,"mat-option",26),t.qZA()()(),t.TgZ(13,"mat-form-field",24)(14,"mat-label"),t._uU(15,"Filter"),t.qZA(),t.TgZ(16,"input",27),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.selFilter=a)})("input",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.applyFilter())})("keyup",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.applyFilter())}),t.qZA()()()(),t.TgZ(17,"div",28),t.YNc(18,ui,1,0,"mat-progress-bar",29),t.TgZ(19,"table",30,31),t.ynx(21,32),t.YNc(22,pi,1,0,"th",33)(23,_i,4,3,"td",34),t.BQk(),t.ynx(24,35),t.YNc(25,gi,2,0,"th",36)(26,fi,3,4,"td",34),t.BQk(),t.ynx(27,37),t.YNc(28,Ci,2,0,"th",36)(29,xi,3,4,"td",34),t.BQk(),t.ynx(30,38),t.YNc(31,yi,2,0,"th",36)(32,bi,3,4,"td",34),t.BQk(),t.ynx(33,39),t.YNc(34,Li,2,0,"th",36)(35,Ti,4,4,"td",34),t.BQk(),t.ynx(36,40),t.YNc(37,vi,2,0,"th",36)(38,Zi,4,4,"td",34),t.BQk(),t.ynx(39,41),t.YNc(40,Si,2,0,"th",36)(41,Ai,4,4,"td",34),t.BQk(),t.ynx(42,42),t.YNc(43,wi,2,0,"th",43)(44,Ei,4,4,"td",34),t.BQk(),t.ynx(45,44),t.YNc(46,Ii,2,0,"th",45)(47,Fi,4,4,"td",34),t.BQk(),t.ynx(48,46),t.YNc(49,qi,6,0,"th",47)(50,Oi,8,0,"td",48),t.BQk(),t.ynx(51,49),t.YNc(52,Ri,4,3,"td",50),t.BQk(),t.YNc(53,Ni,1,3,"tr",51)(54,Di,1,0,"tr",52)(55,Ji,1,0,"tr",53),t.qZA()(),t._UZ(56,"mat-paginator",54),t.qZA()}if(2&n){const e=t.oxw();t.xp6(3),t.Q6J("icon",e.faHistory),t.xp6(7),t.Q6J("ngModel",e.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(15,Hi).concat(e.displayedColumns.slice(0,-1))),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("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",t.VKq(16,Qi,""!==e.errorMessage)),t.xp6(34),t.Q6J("matFooterRowDef",t.DdM(18,Bi)),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 At=(()=>{class n{constructor(e,i,a,s,r,_,q){this.logger=e,this.store=i,this.decimalPipe=a,this.commonService=s,this.datePipe=r,this.actions=_,this.camelCaseWithSpaces=q,this.calledFrom="transactions",this.faHistory=b.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 c.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(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(f.yD).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(f.nF).pipe((0,h.R)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Ef).pipe((0,h.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,h.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&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,Z.qR)({payload:{data:{pageSize:this.pageSize,component:ai}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:l.$Y;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.Z$)({payload:a})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,Z.qR)({payload:{data:{invoice:e,newlyAdded:!1,component:oi.R}}}))}onRefreshInvoice(e){this.store.dispatch((0,k.n7)({payload:e.paymentHash}))}updateInvoicesData(e){this.invoiceJSONArr=this.invoiceJSONArr?.map(i=>i.paymentHash===e.paymentHash?e:i)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"status":a=e?.status&&"expired"!==e?.status&&"unknown"!==e?.status?e.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":a=e[this.selFilterBy]?.toString()||"-";break;default:a=typeof e[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadInvoicesTable(e){this.invoices=new c.by(e?[...e]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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,h.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(u.JJ),t.Y36(M.v),t.Y36(u.uU),t.Y36(W.eX),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description","required","true",3,"ngModel","ngModelChange"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","invValue",3,"step","min","ngModel","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(t.TgZ(0,"div",0),t.YNc(1,li,21,6,"form",1)(2,ri,3,0,"div",2)(3,Vi,57,19,"div",3),t.qZA()),2&i&&(t.xp6(1),t.Q6J("ngIf","home"===a.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===a.calledFrom),t.xp6(1),t.Q6J("ngIf","transactions"===a.calledFrom))},dependencies:[u.mk,u.sg,u.O5,u.PC,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.qQ,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,H.Nt,C.KE,C.hX,C.bx,C.TO,C.R9,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,G.gM,w.NW,P.Vv,P.$V,$.q,u.JJ,u.uU],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();function Yi(n,o){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,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,r=t.oxw().$implicit,_=t.oxw(2);return t.KtG(_.onNavigateTo(r.links[s]))}),t._uU(1),t.qZA()}if(2&n){const e=o.$implicit;t.xp6(1),t.Oqu(e)}}function Gi(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(3);return t.KtG(a.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 Wi(n,o){1&n&&t._UZ(0,"mat-progress-bar",28)}function Ki(n,o){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 Xi(n,o){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,o){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 ji(n,o){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 ta(n,o){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 ea(n,o){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find information!"),t.qZA())}const wt=n=>({"dashboard-card-content":!0,"error-border":n});function na(n,o){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,Yi,3,1,"button",12),t.TgZ(10,"mat-menu",13,14),t.YNc(12,zi,2,1,"button",15)(13,Gi,2,1,"button",16),t.qZA()()()(),t.TgZ(14,"mat-card-content",17),t.YNc(15,Wi,1,0,"mat-progress-bar",18),t.TgZ(16,"div",19),t.YNc(17,Ki,1,2,"rtl-ecl-node-info",20)(18,Xi,1,2,"rtl-ecl-balances-info",21)(19,$i,1,4,"rtl-ecl-channel-capacity-info",22)(20,ji,1,2,"rtl-ecl-fee-info",23)(21,ta,1,2,"rtl-ecl-channel-status-info",24)(22,ea,2,0,"h3",25),t.qZA()()()()),2&n){const e=o.$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,wt,"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 ia(n,o){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,na,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 aa(n,o){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 oa(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,r=t.oxw(2).$implicit,_=t.oxw(2);return t.KtG(_.onNavigateTo(r.links[s]))}),t._uU(1),t.qZA()}if(2&n){const e=o.$implicit;t.xp6(1),t.Oqu(e)}}function sa(n,o){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,aa,3,1,"button",12),t.TgZ(8,"mat-menu",13,42),t.YNc(10,oa,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 la(n,o){1&n&&t._UZ(0,"mat-progress-bar",28)}function ra(n,o){if(1&n&&t._UZ(0,"rtl-ecl-node-info",43),2&n){const e=t.oxw(3);t.Q6J("information",e.information)}}function ca(n,o){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 ua(n,o){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 pa(n,o){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 ma(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",27),t.NdJ("click",function(){const s=t.CHM(e).index,r=t.oxw(2).$implicit,_=t.oxw(2);return t.KtG(_.onNavigateTo(r.links[s]))}),t._uU(1),t.qZA()}if(2&n){const e=o.$implicit;t.xp6(1),t.Oqu(e)}}function da(n,o){if(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,"div",51)(7,"button",26)(8,"mat-icon"),t._uU(9,"more_vert"),t.qZA()(),t.TgZ(10,"mat-menu",13,52),t.YNc(12,ma,2,1,"button",15),t.qZA()()()),2&n){const e=t.MAs(11),i=t.oxw().$implicit;t.xp6(3),t.Q6J("calledFrom","home"),t.xp6(2),t.Q6J("calledFrom","home"),t.xp6(2),t.Q6J("matMenuTriggerFor",e),t.xp6(5),t.Q6J("ngForOf",i.goToOptions)}}function ha(n,o){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find information!"),t.qZA())}const _a=n=>({"p-0":n});function ga(n,o){if(1&n&&(t.TgZ(0,"mat-grid-tile",8)(1,"mat-card",36),t.YNc(2,sa,11,4,"mat-card-header",37),t.TgZ(3,"mat-card-content",38),t.YNc(4,la,1,0,"mat-progress-bar",18),t.TgZ(5,"div",19),t.YNc(6,ra,1,1,"rtl-ecl-node-info",39)(7,ca,1,2,"rtl-ecl-balances-info",21)(8,ua,1,4,"rtl-ecl-channel-liquidity-info",40)(9,pa,1,4,"rtl-ecl-channel-liquidity-info",40)(10,da,13,4,"span",41)(11,ha,2,0,"h3",25),t.qZA()()()()),2&n){const e=o.$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,wt,"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,o){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,a,s){this.logger=e,this.store=i,this.commonService=a,this.router=s,this.faSmile=Tt.ctA,this.faFrown=Tt.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.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="390px",this.merchantCardHeight="62px",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(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(f.T$).pipe((0,h.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(f.JG).pipe((0,h.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(f.Xz).pipe((0,h.R)(this.unSubs[3]),(0,st.M)(this.store.select(f.kY))).subscribe(([e,i])=>{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 a=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,s=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:a,remoteBalance:s,balancedness:+(1-Math.abs((a-s)/(a+s))).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(this.channels?.filter(_=>(_.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(_=>(_.toLocal||0)>0),"toLocal"))),this.channels.forEach(_=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(_.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(_.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 a=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return a>s?-1:a{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(M.v),t.Y36(y.F0))};static#e=this.\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","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"],["menuTransactions","matMenu"]],template:function(i,a){if(1&i&&t.YNc(0,ia,7,4,"div",0)(1,fa,6,4,"ng-template",null,1,t.W1O),2&i){const s=t.MAs(2);t.Q6J("ngIf",(null==a.selNode?null:a.selNode.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",s)}},dependencies:[u.mk,u.sg,u.O5,u.RF,u.n9,u.ED,E.BN,d.xw,d.Wh,d.yH,v.oO,I.RK,L.a8,L.dn,L.dk,L.n5,vt.Il,vt.DX,lt.Hw,rt.VK,rt.OP,rt.p6,J.pW,F.uX,F.SP,Kt,jt,ne,oe,de,Ae,St,At]})}return n})();var xa=g(4818);const ya=["form"];function ba(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Bitcoin address is required."),t.qZA())}function La(n,o){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 Ta(n,o){if(1&n&&(t.TgZ(0,"mat-option",29),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(e)}}function va(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Target Confirmation Blocks is required."),t.qZA())}function Za(n,o){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 Sa(n,o){if(1&n&&(t.TgZ(0,"div",30),t._UZ(1,"fa-icon",31),t.YNc(2,Za,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 Et=(()=>{class n{constructor(e,i,a,s,r,_){this.dialogRef=e,this.logger=i,this.store=a,this.commonService=s,this.decimalPipe=r,this.actions=_,this.faExclamationTriangle=b.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,h.R)(this.unSubs[0])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,h.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,h.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,a=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,a,s,this.amountUnits[2],this.fiatConversion).pipe((0,h.R)(this.unSubs[3])).subscribe({next:r=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(r[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:r=>{this.amountError="Conversion Error: "+r,this.selAmountUnit=a,s=a}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(R.mQ),t.Y36(A.yh),t.Y36(M.v),t.Y36(u.JJ),t.Y36(W.eX))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(i,a){if(1&i&&t.Gf(ya,7),2&i){let s;t.iGM(s=t.CRH())&&(a.form=s.first)}},decls:42,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 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"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","addr","required","",3,"ngModel","ngModelChange"],["addrs","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"step","min","ngModel","ngModelChange"],["amnt","ngModel"],["matSuffix",""],["fxLayout","column","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"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start center"],["matInput","","type","number","name","blocks","tabindex","8","required","true",3,"step","min","ngModel","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(i,a){1&i&&(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 a.onSendFunds()})("reset",function(){return a.resetData()}),t.TgZ(11,"mat-form-field",9)(12,"mat-label"),t._uU(13,"Bitcoin Address"),t.qZA(),t.TgZ(14,"input",10,11),t.NdJ("ngModelChange",function(r){return a.transaction.address=r}),t.qZA(),t.YNc(16,ba,2,0,"mat-error",12),t.qZA(),t.TgZ(17,"mat-form-field",13)(18,"mat-label"),t._uU(19,"Amount"),t.qZA(),t.TgZ(20,"input",14,15),t.NdJ("ngModelChange",function(r){return a.transaction.amount=r}),t.qZA(),t.TgZ(22,"span",16),t._uU(23),t.qZA(),t.YNc(24,La,2,1,"mat-error",12),t.qZA(),t.TgZ(25,"mat-form-field",17)(26,"mat-select",18),t.NdJ("selectionChange",function(r){return a.onAmountUnitChange(r)}),t.YNc(27,Ta,2,2,"mat-option",19),t.qZA()(),t.TgZ(28,"div",20)(29,"mat-form-field",21)(30,"mat-label"),t._uU(31,"Target Confirmation Blocks"),t.qZA(),t.TgZ(32,"input",22,23),t.NdJ("ngModelChange",function(r){return a.transaction.blocks=r}),t.qZA(),t.YNc(34,va,2,0,"mat-error",12),t.qZA()(),t._UZ(35,"div",24),t.YNc(36,Sa,3,2,"div",25),t.TgZ(37,"div",26)(38,"button",27),t._uU(39,"Clear Fields"),t.qZA(),t.TgZ(40,"button",28),t._uU(41,"Send Funds"),t.qZA()()()()()()),2&i&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(8),t.Q6J("ngModel",a.transaction.address),t.xp6(2),t.Q6J("ngIf",!a.transaction.address),t.xp6(4),t.Q6J("step",100)("min",0)("ngModel",a.transaction.amount),t.xp6(3),t.hij("",a.selAmountUnit," "),t.xp6(1),t.Q6J("ngIf",!a.transaction.amount),t.xp6(2),t.Q6J("value",a.selAmountUnit),t.xp6(1),t.Q6J("ngForOf",a.amountUnits),t.xp6(5),t.Q6J("step",1)("min",0)("ngModel",a.transaction.blocks),t.xp6(2),t.Q6J("ngIf",!a.transaction.blocks),t.xp6(2),t.Q6J("ngIf",""!==a.sendFundError))},dependencies:[u.sg,u.O5,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.qQ,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,N.ZT,I.lW,L.dn,L.dk,H.Nt,C.KE,C.hX,C.TO,C.R9,S.gD,V.ey,X.h,$.q]})}return n})();var dt=g(3891);function Aa(n,o){if(1&n&&(t.TgZ(0,"mat-option",34),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function wa(n,o){1&n&&t._UZ(0,"mat-progress-bar",35)}function Ea(n,o){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Date/Time"),t.qZA())}function Ia(n,o){if(1&n&&(t.TgZ(0,"td",37),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Fa(n,o){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Address"),t.qZA())}const ht=n=>({width:n});function qa(n,o){if(1&n&&(t.TgZ(0,"td",37)(1,"div",38)(2,"span",39),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ht,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.address)}}function Oa(n,o){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Blockhash"),t.qZA())}function Pa(n,o){if(1&n&&(t.TgZ(0,"td",37)(1,"div",38)(2,"span",39),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ht,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.blockHash)}}function ka(n,o){1&n&&(t.TgZ(0,"th",36),t._uU(1,"Transaction ID"),t.qZA())}function Ua(n,o){if(1&n&&(t.TgZ(0,"td",37)(1,"div",38)(2,"span",39),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ht,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.txid)}}function Ra(n,o){1&n&&(t.TgZ(0,"th",40),t._uU(1,"Amount (Sats)"),t.qZA())}function Ma(n,o){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 Na(n,o){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 Da(n,o){if(1&n&&(t.TgZ(0,"td",37),t.YNc(1,Ma,3,3,"span",41)(2,Na,3,3,"span",42),t.qZA()),2&n){const e=o.$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 Ja(n,o){1&n&&(t.TgZ(0,"th",40),t._uU(1,"Fees (Sats)"),t.qZA())}function Ha(n,o){if(1&n&&(t.TgZ(0,"td",37)(1,"span",43),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.fees))}}function Qa(n,o){1&n&&(t.TgZ(0,"th",40),t._uU(1,"Confirmations"),t.qZA())}function Ba(n,o){if(1&n&&(t.TgZ(0,"td",37)(1,"span",43),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.lcZ(3,1,null==e?null:e.confirmations)," ")}}function Va(n,o){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(){t.CHM(e);const a=t.oxw();return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Ya(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",49)(1,"button",50),t.NdJ("click",function(a){const r=t.CHM(e).$implicit,_=t.oxw();return t.KtG(_.onTransactionClick(r,a))}),t._uU(2,"View Info"),t.qZA()()}}function za(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No transaction available."),t.qZA())}function Ga(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting transactions..."),t.qZA())}function Wa(n,o){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 Ka(n,o){if(1&n&&(t.TgZ(0,"td",51),t.YNc(1,za,2,0,"p",52)(2,Ga,2,0,"p",52)(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=n=>({"display-none":n});function $a(n,o){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,o){1&n&&t._UZ(0,"tr",54)}function to(n,o){1&n&&t._UZ(0,"tr",55)}const eo=()=>["all"],no=n=>({"error-border":n}),io=()=>["no_transaction"];let ao=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.faHistory=b.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 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.dispatch((0,k.mC)()),this.store.select(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.dx).pipe((0,h.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.sort&&this.paginator&&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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.listTransactions.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}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 c.by([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh),t.Y36(u.uU),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.ye,useValue:(0,l.pt)("Transactions")}])],decls:52,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(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-label"),t._uU(9,"Filter By"),t.qZA(),t.TgZ(10,"mat-select",7),t.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),t.TgZ(11,"perfect-scrollbar"),t.YNc(12,Aa,2,2,"mat-option",8),t.qZA()()(),t.TgZ(13,"mat-form-field",6)(14,"mat-label"),t._uU(15,"Filter"),t.qZA(),t.TgZ(16,"input",9),t.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),t.qZA()()()(),t.TgZ(17,"div",10)(18,"div",11),t.YNc(19,wa,1,0,"mat-progress-bar",12),t.TgZ(20,"table",13,14),t.ynx(22,15),t.YNc(23,Ea,2,0,"th",16)(24,Ia,3,4,"td",17),t.BQk(),t.ynx(25,18),t.YNc(26,Fa,2,0,"th",16)(27,qa,4,4,"td",17),t.BQk(),t.ynx(28,19),t.YNc(29,Oa,2,0,"th",16)(30,Pa,4,4,"td",17),t.BQk(),t.ynx(31,20),t.YNc(32,ka,2,0,"th",16)(33,Ua,4,4,"td",17),t.BQk(),t.ynx(34,21),t.YNc(35,Ra,2,0,"th",22)(36,Da,3,2,"td",17),t.BQk(),t.ynx(37,23),t.YNc(38,Ja,2,0,"th",22)(39,Ha,4,3,"td",17),t.BQk(),t.ynx(40,24),t.YNc(41,Qa,2,0,"th",22)(42,Ba,4,3,"td",17),t.BQk(),t.ynx(43,25),t.YNc(44,Va,6,0,"th",26)(45,Ya,3,0,"td",27),t.BQk(),t.ynx(46,28),t.YNc(47,Ka,4,3,"td",29),t.BQk(),t.YNc(48,$a,1,3,"tr",30)(49,ja,1,0,"tr",31)(50,to,1,0,"tr",32),t.qZA(),t._UZ(51,"mat-paginator",33),t.qZA()()()),2&i&&(t.xp6(3),t.Q6J("icon",a.faHistory),t.xp6(7),t.Q6J("ngModel",a.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(15,eo).concat(a.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",a.selFilter),t.xp6(3),t.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",t.VKq(16,no,""!==a.errorMessage)),t.xp6(28),t.Q6J("matFooterRowDef",t.DdM(18,io)),t.xp6(1),t.Q6J("matHeaderRowDef",a.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",a.displayedColumns),t.xp6(1),t.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[u.mk,u.sg,u.O5,u.PC,m.Fj,m.JJ,m.On,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,H.Nt,C.KE,C.hX,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,w.NW,P.Vv,P.$V,u.JJ,u.uU]})}return n})();function oo(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.activeLink=s.link)}),t._uU(1),t.qZA()}if(2&n){const e=o.$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=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"}],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,h.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof y.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(f.LR).pipe((0,h.R)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(f.kY).pipe((0,h.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:Et}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(A.yh),t.Y36(y.F0))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-on-chain"]],decls:23,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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._UZ(17,"mat-tab-nav-panel",null,9),t.TgZ(19,"div",10),t._UZ(20,"router-outlet"),t.qZA(),t.TgZ(21,"div",10),t._UZ(22,"rtl-ecl-on-chain-transaction-history",11),t.qZA()()()()),2&i){const s=t.MAs(18);t.xp6(1),t.Q6J("icon",a.faChartPie),t.xp6(6),t.Q6J("values",a.balances),t.xp6(2),t.Q6J("icon",a.faExchangeAlt),t.xp6(6),t.Q6J("tabPanel",s),t.xp6(1),t.Q6J("ngForOf",a.links)}},dependencies:[u.sg,E.BN,d.xw,d.Wh,d.yH,L.a8,L.dn,F.BU,F.sW,F.Nj,dt.D,y.lC,y.rH,ao]})}return n})();var It=g(9014);function lo(n,o){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,o){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=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]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,h.R)(this.unSubs[0]),(0,Q.h)(e=>e instanceof y.Av)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(f.Bo).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(f.Xz).pipe((0,h.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(f.kY).pipe((0,h.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(A.yh),t.Y36(y.F0))};static#e=this.\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"],["mat-stretch-tabs","false","mat-align-tabs","start",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(i,a){1&i&&(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(r){return a.activeLink=r})("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),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&i&&(t.xp6(1),t.Q6J("icon",a.faChartPie),t.xp6(6),t.Q6J("values",a.balances),t.xp6(2),t.Q6J("icon",a.faUsers),t.xp6(6),t.Q6J("selectedIndex",a.activeLink))},dependencies:[E.BN,d.xw,d.Wh,d.yH,L.a8,L.dn,It.k,F.uD,F.uX,F.SP,dt.D,y.lC]})}return n})();function uo(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.activeLink=s.link)}),t._uU(1),t.qZA()}if(2&n){const e=o.$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,a){this.logger=e,this.store=i,this.router=a,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"}],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,h.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof y.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(f.Xz).pipe((0,h.R)(this.unSubs[1]),(0,st.M)(this.store.select(f.LR))).subscribe(([i,a])=>{this.currencyUnits=a?.currencyUnits||[],this.balances=a&&a.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(y.F0))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-transactions"]],decls:21,vars:5,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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._UZ(17,"mat-tab-nav-panel",null,10),t.TgZ(19,"div",11),t._UZ(20,"router-outlet"),t.qZA()()()()),2&i){const s=t.MAs(18);t.xp6(1),t.Q6J("icon",a.faChartPie),t.xp6(6),t.Q6J("values",a.balances),t.xp6(2),t.Q6J("icon",a.faExchangeAlt),t.xp6(6),t.Q6J("tabPanel",s),t.xp6(1),t.Q6J("ngForOf",a.links)}},dependencies:[u.sg,E.BN,d.xw,d.Wh,d.yH,L.a8,L.dn,F.BU,F.sW,F.Nj,dt.D,y.lC,y.rH]})}return n})();function mo(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.activeLink=s.link)}),t._uU(1),t.qZA()}if(2&n){const e=o.$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=b.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,h.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof y.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(y.F0))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing"]],decls:15,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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._UZ(11,"mat-tab-nav-panel",null,10),t.qZA(),t.TgZ(13,"div",11),t._UZ(14,"router-outlet"),t.qZA()()()()()),2&i){const s=t.MAs(12);t.xp6(2),t.Q6J("icon",a.faMapSigns),t.xp6(7),t.Q6J("tabPanel",s),t.xp6(1),t.Q6J("ngForOf",a.links)}},dependencies:[u.sg,E.BN,d.xw,d.Wh,d.yH,L.a8,L.dn,F.BU,F.sW,F.Nj,y.lC,y.rH]})}return n})();var it=g(7466),Ft=g(2599),j=g(8257);const _o=["peersForm"],go=["stepper"];function fo(n,o){if(1&n&&t._uU(0),2&n){const e=t.oxw();t.Oqu(e.peerFormLabel)}}function Co(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Address is required."),t.qZA())}function xo(n,o){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 yo(n,o){if(1&n&&t._uU(0),2&n){const e=t.oxw();t.Oqu(e.channelFormLabel)}}function bo(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function Lo(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount must be a positive number."),t.qZA())}function To(n,o){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 vo(n,o){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 qt=(()=>{class n{constructor(e,i,a,s,r,_){this.dialogRef=e,this.data=i,this.store=a,this.formBuilder=s,this.actions=r,this.logger=_,this.faExclamationTriangle=b.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(){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:[!!this.selNode?.unannouncedChannels],feeRate:[null],hiddenAmount:["",[m.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.channelFormGroup.controls.isPrivate.setValue(!!e?.unannouncedChannels)}),this.actions.pipe((0,h.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(){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:this.newlyAddedPeer?.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){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: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(N.WI),t.Y36(A.yh),t.Y36(m.QS),t.Y36(W.eX),t.Y36(R.mQ))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(i,a){if(1&i&&(t.Gf(_o,5),t.Gf(go,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.form=s.first),t.iGM(s=t.CRH())&&(a.stepper=s.first)}},decls:55,vars:22,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 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",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxLayout","column","fxFlex","30"],["matInput","","formControlName","feeRate","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(i,a){1&i&&(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 a.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(r){return a.stepSelectionChanged(r)}),t.TgZ(12,"mat-step",10)(13,"form",11),t.YNc(14,fo,1,1,"ng-template",12),t.TgZ(15,"mat-form-field",13)(16,"mat-label"),t._uU(17,"Lightning Address (pubkey OR pubkey@ip:port)"),t.qZA(),t._UZ(18,"input",14),t.YNc(19,Co,2,0,"mat-error",15),t.qZA(),t.YNc(20,xo,4,2,"div",16),t.TgZ(21,"div",17)(22,"button",18),t.NdJ("click",function(){return a.onConnectPeer()}),t._uU(23),t.qZA()()()(),t.TgZ(24,"mat-step",10)(25,"form",19),t.YNc(26,yo,1,1,"ng-template",20),t.TgZ(27,"div",21)(28,"div",22)(29,"mat-form-field",23)(30,"mat-label"),t._uU(31,"Amount"),t.qZA(),t._UZ(32,"input",24),t.TgZ(33,"mat-hint"),t._uU(34),t.ALo(35,"number"),t.qZA(),t.TgZ(36,"span",25),t._uU(37," Sats "),t.qZA(),t.YNc(38,bo,2,0,"mat-error",15)(39,Lo,2,0,"mat-error",15)(40,To,2,1,"mat-error",15),t.qZA(),t.TgZ(41,"mat-form-field",26)(42,"mat-label"),t._uU(43,"Fee (Sats/vByte)"),t.qZA(),t._UZ(44,"input",27),t.qZA(),t.TgZ(45,"div",28)(46,"mat-slide-toggle",29),t._uU(47,"Private Channel"),t.qZA()()()(),t.YNc(48,vo,4,2,"div",16),t.TgZ(49,"div",17)(50,"button",30),t.NdJ("click",function(){return a.onOpenChannel()}),t._uU(51),t.qZA()()()()(),t.TgZ(52,"div",31)(53,"button",32),t.NdJ("click",function(){return a.onClose()}),t._uU(54),t.qZA()()()()()()),2&i&&(t.xp6(10),t.Q6J("linear",!0),t.xp6(2),t.Q6J("stepControl",a.peerFormGroup)("editable",a.flgEditable),t.xp6(1),t.Q6J("formGroup",a.peerFormGroup),t.xp6(6),t.Q6J("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),t.xp6(1),t.Q6J("ngIf",""!==a.peerConnectionError),t.xp6(3),t.Oqu(""!==a.peerConnectionError?"Retry":"Add Peer"),t.xp6(1),t.Q6J("stepControl",a.channelFormGroup)("editable",a.flgEditable),t.xp6(1),t.Q6J("formGroup",a.channelFormGroup),t.xp6(7),t.Q6J("step",1e3),t.xp6(2),t.hij("Remaining: ",t.lcZ(35,20,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0)),""),t.xp6(4),t.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),t.xp6(1),t.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),t.xp6(1),t.Q6J("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),t.xp6(4),t.Q6J("step",1)("min",0),t.xp6(4),t.Q6J("ngIf",""!==a.channelConnectionError),t.xp6(3),t.Oqu(""!==a.channelConnectionError?"Retry":"Open Channel"),t.xp6(3),t.Oqu(null!=a.newlyAddedPeer&&a.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[u.O5,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.qQ,m.sg,m.u,E.BN,d.xw,d.Wh,d.yH,I.lW,L.dn,L.dk,H.Nt,C.KE,C.hX,C.bx,C.TO,C.R9,Ft.Rr,j.C0,j.VY,j.Vq,X.h,$.q,u.JJ]})}return n})();var Ot=g(2939),Pt=g(7313);function Zo(n,o){if(1&n&&(t.TgZ(0,"span",9)(1,"div"),t._uU(2),t.ALo(3,"titlecase"),t.qZA()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(2),t.AsE("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.lcZ(3,2,e.value),"")}}function So(n,o){1&n&&(t.TgZ(0,"th",24),t._uU(1,"Address"),t.qZA())}function Ao(n,o){if(1&n&&(t.TgZ(0,"td",25),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(e)}}function wo(n,o){1&n&&(t.TgZ(0,"th",26)(1,"div",27),t._uU(2,"Actions"),t.qZA()())}function Eo(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",28)(1,"div",29)(2,"mat-select",30),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",31),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw(2);return t.KtG(r.onConnectNode(s))}),t._uU(5,"Connect"),t.qZA(),t.TgZ(6,"mat-option",32),t.NdJ("copied",function(a){t.CHM(e);const s=t.oxw(2);return t.KtG(s.onCopyNodeURI(a))}),t._uU(7,"Copy URI"),t.qZA()()()()}if(2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(6),t.Q6J("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function Io(n,o){1&n&&t._UZ(0,"tr",33)}function Fo(n,o){1&n&&t._UZ(0,"tr",34)}const qo=n=>({"background-color":n});function Oo(n,o){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,Zo,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,So,2,0,"th",17)(44,Ao,2,1,"td",18),t.BQk(),t.ynx(45,19),t.YNc(46,wo,3,0,"th",20)(47,Eo,8,1,"td",21),t.BQk(),t.YNc(48,Io,1,0,"tr",22)(49,Fo,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,qo,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 Po=(()=>{class n{constructor(e,i,a){this.logger=e,this.snackBar=i,this.store=a,this.lookupResult={},this.addresses=new c.by([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.H_,this.information={},this.availableBalance=0,this.unSubs=[new p.x,new p.x,new p.x]}ngOnInit(){this.addresses=new c.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,this.store.select(f.yD).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(f.kY).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0})}onConnectNode(e){this.store.dispatch((0,Z.qR)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:e}:null,information:this.information,balance:this.availableBalance},component:qt}}}))}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(Ot.ux),t.Y36(A.yh))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(i,a){if(1&i&&t.Gf(T.YE,5),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.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-cell","","fxLayoutAlign","end center",4,"matCellDef"],["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"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&t.YNc(0,Oo,50,21,"div",0),2&i&&t.Q6J("ngIf",a.lookupResult)},dependencies:[u.sg,u.O5,u.PC,d.xw,d.Wh,d.yH,v.Zl,K.d,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.ge,c.ev,c.XQ,c.Gk,P.$V,Pt.y,u.rS,u.uU,u.Nd]})}return n})();const ko=["form"];function Uo(n,o){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 Ro(n,o){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 Mo(n,o){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 No(n,o){if(1&n&&(t.TgZ(0,"span",23),t.YNc(1,Mo,2,1,"div",24),t.qZA()),2&n){const e=t.oxw(2),i=t.MAs(23);t.xp6(1),t.Q6J("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function Do(n,o){1&n&&(t.TgZ(0,"span"),t._uU(1,' fxFlex="100"'),t.TgZ(2,"h3"),t._uU(3,"Error! Unable to find details!"),t.qZA()())}function Jo(n,o){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,No,2,2,"span",21)(6,Do,4,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 Ho(n,o){1&n&&(t.TgZ(0,"h3"),t._uU(1,"Error! Unable to find details!"),t.qZA())}const Qo=n=>({"mt-1":!0,"mt-2":n});let Bo=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.actions=s,this.lookupKeyCtrl=new m.p4,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=b.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new p.x,new p.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKeyCtrl.setValue(window.history.state.lookupValue||"")),this.actions.pipe((0,h.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,h.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh),t.Y36(W.eX))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(i,a){if(1&i&&t.Gf(ko,7),2&i){let s;t.iGM(s=t.CRH())&&(a.form=s.first)}},decls:24,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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl"],["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"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(i,a){1&i&&(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)(10,"mat-label"),t._uU(11),t.qZA(),t._UZ(12,"input",9,10),t.YNc(14,Uo,2,1,"mat-error",11)(15,Ro,2,1,"mat-error",11),t.qZA(),t.TgZ(16,"div",12)(17,"button",13),t.NdJ("click",function(){return a.resetData()}),t._uU(18,"Clear"),t.qZA(),t.TgZ(19,"button",14),t.NdJ("click",function(){return a.onLookup()}),t._uU(20,"Lookup"),t.qZA()()(),t.YNc(21,Jo,7,3,"div",15),t.qZA()()(),t.YNc(22,Ho,2,0,"ng-template",null,16,t.W1O)),2&i&&(t.xp6(7),t.Q6J("value",0),t.xp6(2),t.Q6J("ngClass",t.VKq(7,Qo,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),t.xp6(2),t.Oqu((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),t.xp6(1),t.Q6J("formControl",a.lookupKeyCtrl),t.xp6(2),t.Q6J("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.required),t.xp6(1),t.Q6J("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.invalid),t.xp6(6),t.Q6J("ngIf",a.flgSetLookupValue))},dependencies:[u.mk,u.O5,u.RF,u.n9,u.ED,m._Y,m.Fj,m.JJ,m.JL,m.Q7,m.F,m.oH,d.xw,d.Wh,d.yH,v.oO,I.lW,L.dn,H.Nt,C.KE,C.hX,C.TO,it.VQ,it.U0,Po],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}"]})}return n})();var Vo=g(6105);let Yo=(()=>{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,z.q)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,Z.qR)({payload:{data:{address:this.newAddress,addressType:"",component:Vo.n}}}))},0)})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(A.yh),t.Y36(ct.o))};static#e=this.\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(i,a){1&i&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return a.onGenerateAddress()}),t._uU(3,"Generate Address"),t.qZA()()())},dependencies:[d.xw,d.Wh,d.yH,I.lW]})}return n})(),zo=(()=>{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,h.R)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,Z.qR)({payload:{data:{sweepAll:this.sweepAll,component:Et}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(A.yh),t.Y36(y.gz))};static#e=this.\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(i,a){1&i&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return a.openSendFundsModal()}),t._uU(3),t.qZA()()()),2&i&&(t.xp6(3),t.Oqu(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[d.xw,d.Wh,d.yH,I.lW]})}return n})();var _t=g(7921),kt=g(7398),at=g(4630),Go=g(3362);const Wo=["form"];function Ko(n,o){if(1&n&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.Q6J("value",e),t.xp6(1),t.Oqu(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function Xo(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Peer alias is required."),t.qZA())}function $o(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Peer not found in the list."),t.qZA())}function jo(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"mat-form-field",1)(1,"mat-label"),t._uU(2,"Peer Alias"),t.qZA(),t.TgZ(3,"input",31),t.NdJ("change",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onSelectedPeerChanged())}),t.qZA(),t.TgZ(4,"mat-autocomplete",32,33),t.NdJ("optionSelected",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onSelectedPeerChanged())}),t.YNc(6,Ko,2,2,"mat-option",34),t.ALo(7,"async"),t.qZA(),t.YNc(8,Xo,2,0,"mat-error",17)(9,$o,2,0,"mat-error",17),t.qZA()}if(2&n){const e=t.MAs(5),i=t.oxw();t.xp6(3),t.Q6J("formControl",i.selectedPeer)("matAutocomplete",e),t.xp6(1),t.Q6J("displayWith",i.displayFn),t.xp6(2),t.Q6J("ngForOf",t.lcZ(7,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 ts(n,o){1&n&&t.GkF(0)}function es(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function ns(n,o){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 is(n,o){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 as(n,o){if(1&n&&(t.TgZ(0,"div",36),t._UZ(1,"fa-icon",37),t.YNc(2,is,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 os(n,o){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 ss(n,o){if(1&n&&t.YNc(0,os,27,6,"mat-expansion-panel",38),2&n){const e=t.oxw();t.Q6J("ngIf",e.peer)}}let Ut=(()=>{class n{constructor(e,i,a,s){this.dialogRef=e,this.data=i,this.store=a,this.actions=s,this.selNode={},this.selectedPeer=new m.p4,this.faExclamationTriangle=b.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(f.LR).pipe((0,h.R)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.unannouncedChannels}),this.actions.pipe((0,h.R)(this.unSubs[1]),(0,Q.h)(a=>a.type===l.lr.UPDATE_API_CALL_STATUS_ECL||a.type===l.lr.FETCH_CHANNELS_ECL)).subscribe(a=>{a.type===l.lr.UPDATE_API_CALL_STATUS_ECL&&a.payload.status===l.Bn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===l.lr.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,h.R)(this.unSubs[2]),(0,_t.O)(""),(0,kt.U)(a=>"string"==typeof a?a:a.alias?a.alias:a.nodeId),(0,kt.U)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(e){return this.sortedPeers?.filter(i=>0===i.alias?.toLowerCase().indexOf(e?e.toLowerCase():""))}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.nodeId:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const e=this.peers?.filter(i=>i.alias?.length===this.selectedPeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===e.length&&e[0].nodeId&&(this.selectedPubkey=e[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=!!this.selNode?.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,k.YX)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(N.WI),t.Y36(A.yh),t.Y36(W.eX))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(i,a){if(1&i&&t.Gf(Wo,7),2&i){let s;t.iGM(s=t.CRH())&&(a.form=s.first)}},decls:52,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 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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"step","min","max","ngModel","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"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","name","fee","tabindex","7",3,"step","min","ngModel","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","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(i,a){if(1&i&&(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 a.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8),t.NdJ("submit",function(){return a.onOpenChannel()})("reset",function(){return a.resetData()}),t.TgZ(11,"div",9),t.YNc(12,jo,10,8,"mat-form-field",10),t.qZA(),t.YNc(13,ts,1,0,"ng-container",11),t.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"mat-label"),t._uU(18,"Amount"),t.qZA(),t.TgZ(19,"input",14,15),t.NdJ("ngModelChange",function(r){return a.fundingAmount=r}),t.qZA(),t.TgZ(21,"mat-hint"),t._uU(22),t.ALo(23,"number"),t.qZA(),t.TgZ(24,"span",16),t._uU(25," Sats "),t.qZA(),t.YNc(26,es,2,0,"mat-error",17)(27,ns,2,1,"mat-error",17),t.qZA(),t.TgZ(28,"div",18)(29,"mat-slide-toggle",19),t.NdJ("ngModelChange",function(r){return a.isPrivate=r}),t._uU(30,"Private Channel"),t.qZA()()(),t.TgZ(31,"mat-expansion-panel",20),t.NdJ("closed",function(){return a.onAdvancedPanelToggle(!0)})("opened",function(){return a.onAdvancedPanelToggle(!1)}),t.TgZ(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),t._uU(35),t.qZA()()(),t.TgZ(36,"div",21)(37,"div",12)(38,"div",22)(39,"mat-form-field",23)(40,"mat-label"),t._uU(41,"Fee (Sats/vByte)"),t.qZA(),t.TgZ(42,"input",24,25),t.NdJ("ngModelChange",function(r){return a.feeRate=r}),t.qZA()()()()()()(),t.YNc(44,as,3,2,"div",26),t.TgZ(45,"div",27)(46,"button",28),t._uU(47,"Clear Fields"),t.qZA(),t.TgZ(48,"button",29),t._uU(49,"Open Channel"),t.qZA()()()()()(),t.YNc(50,ss,1,1,"ng-template",null,30,t.W1O)),2&i){const s=t.MAs(20),r=t.MAs(51);t.xp6(5),t.Oqu(a.alertTitle),t.xp6(7),t.Q6J("ngIf",!a.peer&&a.peers&&a.peers.length>0),t.xp6(1),t.Q6J("ngTemplateOutlet",r),t.xp6(6),t.Q6J("step",1e3)("min",1)("max",a.totalBalance)("ngModel",a.fundingAmount),t.xp6(3),t.hij("Remaining: ",t.lcZ(23,16,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),""),t.xp6(4),t.Q6J("ngIf",null==s.errors?null:s.errors.required),t.xp6(1),t.Q6J("ngIf",null==s.errors?null:s.errors.max),t.xp6(2),t.Q6J("ngModel",a.isPrivate),t.xp6(6),t.Oqu(a.advancedTitle),t.xp6(7),t.Q6J("step",1)("min",0)("ngModel",a.feeRate),t.xp6(2),t.Q6J("ngIf",""!==a.channelConnectionError)}},dependencies:[u.sg,u.O5,u.tP,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.qQ,m.Fd,m.On,m.F,m.oH,E.BN,d.xw,d.Wh,d.yH,I.lW,L.dn,L.dk,B.ib,B.yz,B.yK,H.Nt,C.KE,C.hX,C.bx,C.TO,C.R9,K.d,V.ey,Ft.Rr,at.XC,at.ZL,X.h,Go.F,$.q,u.Ov,u.JJ,u.rS],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return n})();function ls(n,o){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 rs(n,o){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 cs(n,o){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 us=(()=>{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,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,h.R)(this.unSubs[0]),(0,Q.h)(e=>e instanceof y.Av)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(f.Xz).pipe((0,h.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(f.LR).pipe((0,h.R)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(f.yD).pipe((0,h.R)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(f.Bo).pipe((0,h.R)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(f.kY).pipe((0,h.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:Ut}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(y.F0))};static#e=this.\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,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",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(i,a){1&i&&(t.TgZ(0,"div",0)(1,"div",1)(2,"button",2),t.NdJ("click",function(){return a.onOpenChannel()}),t._uU(3,"Open Channel"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-tab-group",4),t.NdJ("selectedIndexChange",function(r){return a.activeLink=r})("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.TgZ(6,"mat-tab"),t.YNc(7,ls,2,1,"ng-template",5),t.qZA(),t.TgZ(8,"mat-tab"),t.YNc(9,rs,2,1,"ng-template",5),t.qZA(),t.TgZ(10,"mat-tab"),t.YNc(11,cs,2,1,"ng-template",5),t.qZA()(),t.TgZ(12,"div",6),t._UZ(13,"router-outlet"),t.qZA()()()),2&i&&(t.xp6(5),t.Q6J("selectedIndex",a.activeLink))},dependencies:[d.xw,d.Wh,d.yH,I.lW,It.k,F.uD,F.uX,F.SP,y.lC]})}return n})();function ps(n,o){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 ms(n,o){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 ds(n,o){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 hs(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Show Advanced"),t.qZA())}function _s(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Hide Advanced"),t.qZA())}function gs(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",21),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onShowAdvanced())}),t.YNc(1,hs,2,0,"p",22)(2,_s,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 fs(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",24),t.NdJ("copied",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onCopyChanID(a))}),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,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",25),t.NdJ("copied",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onCopyChanID(a))}),t._uU(1,"Copy Channel ID"),t.qZA()}if(2&n){const e=t.oxw();t.Q6J("payload",e.channel.channelId)}}const xs=n=>({"xs-scroll-y":n}),ys=(n,o)=>({"mt-2":n,"mt-1":o});let gt=(()=>{class n{constructor(e,i,a,s,r){this.dialogRef=e,this.data=i,this.logger=a,this.commonService=s,this.snackBar=r,this.faReceipt=b.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)}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(N.WI),t.Y36(R.mQ),t.Y36(M.v),t.Y36(Ot.ux))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-information"]],decls:59,vars:27,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 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(i,a){1&i&&(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 a.onClose()}),t._uU(8,"X"),t.qZA()(),t.TgZ(9,"mat-card-content",7)(10,"div",8)(11,"div",9),t.YNc(12,ps,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,ms,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",1)(36,"h4",12),t._uU(37,"State"),t.qZA(),t.TgZ(38,"span",15),t._uU(39),t.ALo(40,"titlecase"),t.qZA()()(),t._UZ(41,"mat-divider",14),t.TgZ(42,"div",9)(43,"div",11)(44,"h4",12),t._uU(45,"Private"),t.qZA(),t.TgZ(46,"span",15),t._uU(47),t.qZA()(),t.TgZ(48,"div",11)(49,"h4",12),t._uU(50,"Initiator"),t.qZA(),t.TgZ(51,"span",15),t._uU(52),t.qZA()()(),t._UZ(53,"mat-divider",14),t.YNc(54,ds,29,14,"div",16),t.TgZ(55,"div",17),t.YNc(56,gs,4,2,"button",18)(57,fs,2,1,"button",19)(58,Cs,2,1,"button",20),t.qZA()()()()()),2&i&&(t.xp6(4),t.Q6J("icon",a.faReceipt),t.xp6(5),t.Q6J("ngClass",t.VKq(22,xs,a.screenSize===a.screenSizeEnum.XS)),t.xp6(3),t.Q6J("ngIf","open"===a.channelsType),t.xp6(5),t.Oqu(a.channel.alias),t.xp6(1),t.Q6J("ngIf","open"!==a.channelsType),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(a.channel.channelId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(a.channel.nodeId),t.xp6(1),t.Q6J("inset",!0),t.xp6(6),t.Oqu(t.lcZ(40,20,a.channel.state)),t.xp6(2),t.Q6J("inset",!0),t.xp6(6),t.Oqu(a.channel.announceChannel?"No":"Yes"),t.xp6(5),t.Oqu(a.channel.isInitiator?"Yes":"No"),t.xp6(1),t.Q6J("inset",!0),t.xp6(1),t.Q6J("ngIf",a.showAdvanced&&"open"===a.channelsType),t.xp6(1),t.Q6J("ngClass",t.WLB(24,ys,!a.showAdvanced,a.showAdvanced)),t.xp6(1),t.Q6J("ngIf","open"===a.channelsType),t.xp6(1),t.Q6J("ngIf","open"===a.channelsType),t.xp6(1),t.Q6J("ngIf","open"!==a.channelsType))},dependencies:[u.mk,u.O5,E.BN,d.xw,d.Wh,d.yH,v.oO,I.lW,L.dn,L.dk,K.d,Pt.y,X.h,u.JJ,u.rS]})}return n})();var ft=g(2096),Ct=g(8291),bs=g(3214);function Ls(n,o){1&n&&t.GkF(0)}const tt=(n,o)=>({"small-svg":n,"large-svg":o});function Ts(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onSwipe(a))}),t.O4$(),t.TgZ(1,"svg",7),t._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),t.qZA(),t.kcU(),t.TgZ(41,"div",47)(42,"mat-card-title"),t._uU(43,"Circular rebalancing explained."),t.qZA()(),t.TgZ(44,"div",48)(45,"mat-card-subtitle",49),t._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. "),t.qZA()()()}if(2&n){const e=t.oxw();t.Q6J("@sliderAnimation",e.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,tt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function vs(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",50),t.NdJ("swipe",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onSwipe(a))}),t.O4$(),t.TgZ(1,"svg",51),t._UZ(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),t.TgZ(65,"defs")(66,"linearGradient",90),t._UZ(67,"stop",91)(68,"stop",92)(69,"stop",93),t.qZA(),t.TgZ(70,"linearGradient",94),t._UZ(71,"stop",91)(72,"stop",92)(73,"stop",93),t.qZA(),t.TgZ(74,"linearGradient",95),t._UZ(75,"stop",91)(76,"stop",92)(77,"stop",93),t.qZA(),t.TgZ(78,"linearGradient",96),t._UZ(79,"stop",91)(80,"stop",92)(81,"stop",93),t.qZA(),t.TgZ(82,"linearGradient",97),t._UZ(83,"stop",91)(84,"stop",92)(85,"stop",93),t.qZA(),t.TgZ(86,"linearGradient",98),t._UZ(87,"stop",91)(88,"stop",92)(89,"stop",93),t.qZA()()(),t.kcU(),t.TgZ(90,"div",47)(91,"mat-card-title"),t._uU(92,"Step 1: Unbalanced channel"),t.qZA()(),t.TgZ(93,"div",48)(94,"mat-card-subtitle",49),t._uU(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),t.qZA()()()}if(2&n){const e=t.oxw();t.Q6J("@sliderAnimation",e.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,tt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Zs(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",50),t.NdJ("swipe",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onSwipe(a))}),t.O4$(),t.TgZ(1,"svg",99),t._UZ(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),t.TgZ(49,"defs")(50,"linearGradient",137),t._UZ(51,"stop",91)(52,"stop",92)(53,"stop",93),t.qZA(),t.TgZ(54,"linearGradient",138),t._UZ(55,"stop",91)(56,"stop",92)(57,"stop",93),t.qZA(),t.TgZ(58,"linearGradient",139),t._UZ(59,"stop",91)(60,"stop",92)(61,"stop",93),t.qZA()()(),t.kcU(),t.TgZ(62,"div",47)(63,"mat-card-title"),t._uU(64,"Step 2: Invoice/Payment"),t.qZA()(),t.TgZ(65,"div",48)(66,"mat-card-subtitle",49),t._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. "),t.qZA()()()}if(2&n){const e=t.oxw();t.Q6J("@sliderAnimation",e.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,tt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ss(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",50),t.NdJ("swipe",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onSwipe(a))}),t.O4$(),t.TgZ(1,"svg",140),t._UZ(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),t.TgZ(42,"defs")(43,"linearGradient",180),t._UZ(44,"stop",91)(45,"stop",92)(46,"stop",93),t.qZA()()(),t.kcU(),t.TgZ(47,"div",47)(48,"mat-card-title"),t._uU(49,"Step 3: Rebalance amount"),t.qZA()(),t.TgZ(50,"div",48)(51,"mat-card-subtitle",49),t._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. "),t.qZA()()()}if(2&n){const e=t.oxw();t.Q6J("@sliderAnimation",e.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,tt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function As(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",50),t.NdJ("swipe",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onSwipe(a))}),t.O4$(),t.TgZ(1,"svg",140),t._UZ(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),t.TgZ(41,"defs")(42,"linearGradient",199),t._UZ(43,"stop",91)(44,"stop",92)(45,"stop",93),t.qZA()()(),t.kcU(),t.TgZ(46,"div",47)(47,"mat-card-title"),t._uU(48,"Rebalance successful!"),t.qZA()(),t.TgZ(49,"div",48)(50,"mat-card-subtitle",49),t._uU(51," Your channel is successfully rebalanced and is able to continue to route payments. "),t.qZA()()()}if(2&n){const e=t.oxw();t.Q6J("@sliderAnimation",e.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,tt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let ws=(()=>{class n{constructor(e){this.commonService=e,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.vpe,this.screenSize="",this.screenSizeEnum=l.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(e){2===e.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===e.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(M.v))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-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 starts",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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["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",1,"fill-color-29"],["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",1,"fill-color-29"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["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",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-25"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-21"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-17"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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(i,a){if(1&i&&t.YNc(0,Ls,1,0,"ng-container",0)(1,Ts,47,5,"ng-template",null,1,t.W1O)(3,vs,96,5,"ng-template",null,2,t.W1O)(5,Zs,68,5,"ng-template",null,3,t.W1O)(7,Ss,53,5,"ng-template",null,4,t.W1O)(9,As,52,5,"ng-template",null,5,t.W1O),2&i){const s=t.MAs(2),r=t.MAs(4),_=t.MAs(6),q=t.MAs(8),x=t.MAs(10);t.Q6J("ngTemplateOutlet",1===a.stepNumber?s:2===a.stepNumber?r:3===a.stepNumber?_:4===a.stepNumber?q:x)}},dependencies:[u.mk,u.tP,d.xw,d.Wh,d.yH,v.oO,L.$j,L.n5],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[bs.l]}})}return n})();const Es=["stepper"];function Is(n,o){if(1&n&&t._uU(0),2&n){const e=t.oxw(2);t.Oqu(e.inputFormLabel)}}function Fs(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function qs(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount must be a positive number."),t.qZA())}function Os(n,o){if(1&n&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.hij("Amount must be less than or equal to ",null==e.selChannel?null:e.selChannel.toLocal,".")}}function Ps(n,o){if(1&n&&(t.TgZ(0,"mat-option",50),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.Q6J("value",e),t.xp6(1),t.AsE("",e.alias," - ",e.shortChannelId,"")}}function ks(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Receive from Peer is required."),t.qZA())}function Us(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Receive from Peer not found in the list."),t.qZA())}function Rs(n,o){1&n&&t._uU(0,"Status")}function Ms(n,o){1&n&&t._UZ(0,"mat-progress-bar",51)}function Ns(n,o){if(1&n&&(t.TgZ(0,"mat-icon",52),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(""!==e.rebalanceStatus.invoice?"check":"close")}}function Ds(n,o){1&n&&t._UZ(0,"mat-progress-bar",51)}function Js(n,o){if(1&n&&(t.TgZ(0,"mat-icon",52),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(e.rebalanceStatus.paymentRoute?"check":"close")}}function Hs(n,o){if(1&n&&(t.TgZ(0,"span",42),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.hij(" ",e," ")}}function Qs(n,o){if(1&n&&(t.TgZ(0,"div",5),t.YNc(1,Hs,2,1,"span",53),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function Bs(n,o){1&n&&t._UZ(0,"mat-progress-bar",51)}function Vs(n,o){if(1&n&&(t.TgZ(0,"mat-icon",52),t._uU(1),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Oqu(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function Ys(n,o){1&n&&t._UZ(0,"div",5)}function zs(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",54),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onRestart())}),t._uU(1,"Start Again"),t.qZA()}}function Gs(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",5)(1,"mat-card-header",6)(2,"div",7)(3,"div",8)(4,"span",9),t._uU(5,"Channel Rebalance"),t.qZA()(),t.TgZ(6,"div",10)(7,"button",11),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.showInfo())}),t._uU(8,"?"),t.qZA(),t.TgZ(9,"button",12),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onClose())}),t._uU(10,"X"),t.qZA()()()(),t.TgZ(11,"mat-card-content",13)(12,"div",5)(13,"div",14)(14,"div",15),t._UZ(15,"fa-icon",16),t.TgZ(16,"span"),t._uU(17,"Circular Rebalance is a payment you make to *yourself* 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."),t.qZA()()(),t.TgZ(18,"div",17)(19,"p",18)(20,"strong"),t._uU(21,"Channel Peer:\xa0"),t.qZA(),t._uU(22),t.ALo(23,"titlecase"),t.qZA(),t.TgZ(24,"p",18)(25,"strong"),t._uU(26,"Channel ID:\xa0"),t.qZA(),t._uU(27),t.qZA()(),t.TgZ(28,"mat-vertical-stepper",19,20)(30,"mat-step",21)(31,"form",22),t.YNc(32,Is,1,1,"ng-template",23),t.TgZ(33,"div",24)(34,"mat-form-field",25)(35,"mat-label"),t._uU(36,"Amount"),t.qZA(),t._UZ(37,"input",26),t.TgZ(38,"mat-hint"),t._uU(39),t.qZA(),t.TgZ(40,"span",27),t._uU(41,"Sats"),t.qZA(),t.YNc(42,Fs,2,0,"mat-error",28)(43,qs,2,0,"mat-error",28)(44,Os,2,1,"mat-error",28),t.qZA(),t.TgZ(45,"mat-form-field",29)(46,"mat-label"),t._uU(47,"Receive from Peer"),t.qZA(),t.TgZ(48,"input",30),t.NdJ("change",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onSelectedPeerChanged())}),t.qZA(),t.TgZ(49,"mat-autocomplete",31,32),t.NdJ("optionSelected",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onSelectedPeerChanged())}),t.YNc(51,Ps,2,3,"mat-option",33),t.ALo(52,"async"),t.qZA(),t.YNc(53,ks,2,0,"mat-error",28)(54,Us,2,0,"mat-error",28),t.qZA()(),t.TgZ(55,"div",34)(56,"button",35),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onRebalance())}),t._uU(57,"Rebalance"),t.qZA()()()(),t.TgZ(58,"mat-step",36)(59,"form",22),t.YNc(60,Rs,1,0,"ng-template",23),t.TgZ(61,"div",37),t.YNc(62,Ms,1,0,"mat-progress-bar",38),t.TgZ(63,"mat-expansion-panel",39)(64,"mat-expansion-panel-header")(65,"mat-panel-title")(66,"span",40),t._uU(67),t.YNc(68,Ns,2,1,"mat-icon",41),t.qZA()()(),t.TgZ(69,"div",5)(70,"span",42),t._uU(71),t.qZA()()(),t.YNc(72,Ds,1,0,"mat-progress-bar",38),t.TgZ(73,"mat-expansion-panel",39)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",40),t._uU(77),t.YNc(78,Js,2,1,"mat-icon",41),t.qZA()()(),t.YNc(79,Qs,2,1,"div",0),t.qZA(),t.YNc(80,Bs,1,0,"mat-progress-bar",38),t.TgZ(81,"mat-expansion-panel",43)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",40),t._uU(85),t.YNc(86,Vs,2,1,"mat-icon",41),t.qZA()()(),t.YNc(87,Ys,1,0,"div",44),t.qZA()(),t.TgZ(88,"h4",45),t._uU(89),t.qZA(),t.TgZ(90,"div",46),t.YNc(91,zs,2,0,"button",47),t.qZA()()()(),t.TgZ(92,"div",48)(93,"button",49),t._uU(94,"Close"),t.qZA()()()()()}if(2&n){const e=t.MAs(50),i=t.oxw(),a=t.MAs(2);t.Q6J("@opacityAnimation",void 0),t.xp6(15),t.Q6J("icon",i.faInfoCircle),t.xp6(7),t.Oqu(t.lcZ(23,38,i.selChannel.alias)),t.xp6(5),t.Oqu(i.selChannel.shortChannelId),t.xp6(1),t.Q6J("linear",!0),t.xp6(2),t.Q6J("stepControl",i.inputFormGroup)("editable",i.flgEditable),t.xp6(1),t.Q6J("formGroup",i.inputFormGroup),t.xp6(6),t.Q6J("step",100),t.xp6(2),t.AsE("(Local Bal: ",null==i.selChannel?null:i.selChannel.toLocal,", Remaining: ",(null==i.selChannel?null:i.selChannel.toLocal)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.xp6(3),t.Q6J("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),t.xp6(1),t.Q6J("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),t.xp6(4),t.Q6J("matAutocomplete",e),t.xp6(1),t.Q6J("displayWith",i.displayFn),t.xp6(2),t.Q6J("ngForOf",t.lcZ(52,40,i.filteredActiveChannels)),t.xp6(2),t.Q6J("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),t.xp6(1),t.Q6J("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.xp6(4),t.Q6J("stepControl",i.statusFormGroup),t.xp6(1),t.Q6J("formGroup",i.statusFormGroup),t.xp6(3),t.Q6J("ngIf",""===i.rebalanceStatus.invoice),t.xp6(5),t.Oqu(""===i.rebalanceStatus.invoice?"Searching invoice...":i.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.xp6(1),t.Q6J("ngIf",""!==i.rebalanceStatus.invoice),t.xp6(3),t.Oqu(i.rebalanceStatus.invoice),t.xp6(1),t.Q6J("ngIf",!(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error||i.rebalanceStatus.paymentRoute||"pending"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type))),t.xp6(5),t.Oqu(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Route failed":i.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.xp6(1),t.Q6J("ngIf",i.rebalanceStatus.paymentStatus),t.xp6(1),t.Q6J("ngIf",""!==i.rebalanceStatus.paymentRoute),t.xp6(1),t.Q6J("ngIf",!i.rebalanceStatus.paymentStatus),t.xp6(1),t.Q6J("expanded",!!i.rebalanceStatus.paymentStatus),t.xp6(4),t.Oqu(i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.xp6(1),t.Q6J("ngIf",i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)),t.xp6(1),t.Q6J("ngIf",!i.rebalanceStatus.paymentStatus)("ngIfElse",a),t.xp6(2),t.Oqu(i.rebalanceStatus.paymentStatus?i.rebalanceStatus.paymentStatus&&null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.xp6(2),t.Q6J("ngIf",i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error),t.xp6(2),t.Q6J("mat-dialog-close",!1)}}function Ws(n,o){1&n&&t.GkF(0)}function Ks(n,o){if(1&n&&t.YNc(0,Ws,1,0,"ng-container",55),2&n){const e=t.oxw(),i=t.MAs(4),a=t.MAs(6);t.Q6J("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?i:a)}}function Xs(n,o){if(1&n&&(t.TgZ(0,"div",5)(1,"span",42),t._uU(2),t.qZA()()),2&n){const e=t.oxw();t.xp6(2),t.hij("Error: ",e.rebalanceStatus.paymentStatus.error,"")}}function $s(n,o){if(1&n&&(t.TgZ(0,"div",5)(1,"div",56)(2,"div",57)(3,"h4",58),t._uU(4,"Total Fees (Sats)"),t.qZA(),t.TgZ(5,"span",42),t._uU(6),t.qZA()(),t.TgZ(7,"div",57)(8,"h4",58),t._uU(9,"Number of Hops"),t.qZA(),t.TgZ(10,"span",42),t._uU(11),t.qZA()()(),t._UZ(12,"mat-divider",59),t.TgZ(13,"div",56)(14,"div",60)(15,"h4",58),t._uU(16,"Payment Hash"),t.qZA(),t.TgZ(17,"span",42),t._uU(18),t.qZA()()(),t._UZ(19,"mat-divider",59),t.TgZ(20,"div",56)(21,"div",60)(22,"h4",58),t._uU(23,"Payment ID"),t.qZA(),t.TgZ(24,"span",42),t._uU(25),t.qZA()()(),t._UZ(26,"mat-divider",59),t.TgZ(27,"div",56)(28,"div",60)(29,"h4",58),t._uU(30,"Parent ID"),t.qZA(),t.TgZ(31,"span",42),t._uU(32),t.qZA()()()()),2&n){const e=t.oxw();let i;t.xp6(6),t.Oqu(e.rebalanceStatus.paymentStatus.feesPaid?e.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.xp6(5),t.Oqu(e.rebalanceStatus.paymentRoute&&""!==e.rebalanceStatus.paymentRoute?null==(i=e.rebalanceStatus.paymentRoute.split(","))?null:i.length:0),t.xp6(7),t.Oqu(e.rebalanceStatus.paymentHash),t.xp6(7),t.Oqu(e.rebalanceStatus.paymentDetails.paymentId),t.xp6(7),t.Oqu(e.rebalanceStatus.paymentDetails.parentId)}}const js=(n,o)=>({"dot-primary":n,"dot-primary-lighter":o});function tl(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"span",76),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw(2);return t.KtG(r.onStepChanged(s))}),t._UZ(1,"p",77),t.qZA()}if(2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngClass",t.WLB(1,js,i.stepNumber===e,i.stepNumber!==e))}}function el(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",78),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onStepChanged(4))}),t._uU(1,"Back"),t.qZA()}}function nl(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",79),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return a.flgShowInfo=!1,t.KtG(a.stepNumber=1)}),t._uU(1,"Close"),t.qZA()}}function il(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",80),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return a.flgShowInfo=!1,t.KtG(a.stepNumber=1)}),t._uU(1,"Close"),t.qZA()}}function al(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",81),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onStepChanged(a.stepNumber-1))}),t._uU(1,"Back"),t.qZA()}}function ol(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"button",82),t.NdJ("click",function(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onStepChanged(a.stepNumber+1))}),t._uU(1,"Next"),t.qZA()}}const sl=()=>[1,2,3,4,5];function ll(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",61)(1,"div",62)(2,"mat-card-header",63)(3,"div",64),t._UZ(4,"span",9),t.qZA(),t.TgZ(5,"div",65)(6,"button",12),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return a.flgShowInfo=!1,t.KtG(a.stepNumber=1)}),t._uU(7,"X"),t.qZA()()(),t.TgZ(8,"mat-card-content",66)(9,"rtl-ecl-channel-rebalance-infographics",67),t.NdJ("stepNumberChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.stepNumber=a)}),t.qZA()(),t.TgZ(10,"div",68),t.YNc(11,tl,2,4,"span",69),t.qZA(),t.TgZ(12,"div",70),t.YNc(13,el,2,0,"button",71)(14,nl,2,0,"button",72)(15,il,2,0,"button",73)(16,al,2,0,"button",74)(17,ol,2,0,"button",75),t.qZA()()()}if(2&n){const e=t.oxw();t.Q6J("@opacityAnimation",void 0),t.xp6(9),t.Q6J("animationDirection",e.animationDirection)("stepNumber",e.stepNumber),t.xp6(2),t.Q6J("ngForOf",t.DdM(9,sl)),t.xp6(2),t.Q6J("ngIf",5===e.stepNumber),t.xp6(1),t.Q6J("ngIf",5===e.stepNumber),t.xp6(1),t.Q6J("ngIf",e.stepNumber<5),t.xp6(1),t.Q6J("ngIf",e.stepNumber>1&&e.stepNumber<5),t.xp6(1),t.Q6J("ngIf",e.stepNumber<5)}}let rl=(()=>{class n{constructor(e,i,a,s,r,_,q){this.dialogRef=e,this.data=i,this.logger=a,this.dataService=s,this.formBuilder=r,this.store=_,this.decimalPipe=q,this.faInfoCircle=b.sqG,this.information={},this.selChannel={},this.activeChannels=[],this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.inputFormLabel="Amount to rebalance",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.animationDirection="forward",this.unSubs=[new p.x,new p.x,new p.x,new p.x]}ngOnInit(){let e="",i="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.channelId!==this.selChannel.channelId&&a.toRemote&&a.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",ei?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[m.kI.required,m.kI.min(1),m.kI.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,m.kI.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,h.R)(this.unSubs[0]),(0,_t.O)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,ft.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,h.R)(this.unSubs[1]),(0,_t.O)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,ft.of)(this.filterActiveChannels()))})}stepSelectionChanged(e){switch(e.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.alias?this.inputFormGroup.controls.selRebalancePeer.value.alias:this.inputFormGroup.controls.selRebalancePeer.value.nodeId.substring(0,15)+"..."):"Amount to rebalance"}}onRebalance(){if(!this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.rebalanceAmount.value<=0||this.selChannel.toLocal&&this.inputFormGroup.controls.rebalanceAmount.value>+this.selChannel.toLocal||!this.inputFormGroup.controls.selRebalancePeer.value.nodeId)return this.inputFormGroup.controls.selRebalancePeer.value.nodeId||this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0;this.stepper.next(),this.flgEditable=!1,this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.dataService.circularRebalance(1e3*this.inputFormGroup.controls.rebalanceAmount.value,this.selChannel.shortChannelId,this.selChannel.nodeId,this.inputFormGroup.controls.selRebalancePeer.value.shortChannelId,this.inputFormGroup.controls.selRebalancePeer.value.nodeId,[this.information.nodeId||""]).pipe((0,h.R)(this.unSubs[2])).subscribe({next:e=>{this.logger.info(e),this.rebalanceStatus=e,this.flgEditable=!0,this.store.dispatch((0,k.WM)()),this.store.dispatch((0,k.UR)({payload:{fetchPayments:!0}}))},error:e=>{this.logger.error(e),this.rebalanceStatus=e,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(e=>e.toRemote&&e.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&e.channelId!==this.selChannel.channelId&&(0===e.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===e.channelId?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const e=this.activeChannels?.filter(i=>i.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));e&&e.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(e[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(e){return e&&e.alias?e.alias:e&&e.shortChannelId?e.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(e){this.animationDirection=e{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(N.so),t.Y36(N.WI),t.Y36(R.mQ),t.Y36(ut.D),t.Y36(m.qu),t.Y36(A.yh),t.Y36(u.JJ))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(i,a){if(1&i&&t.Gf(Es,5),2&i){let s;t.iGM(s=t.CRH())&&(a.stepper=s.first)}},decls:8,vars:2,consts:[["fxLayout","column",4,"ngIf"],["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["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.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"],["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"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","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","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["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",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["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"],["fxFlex","100","color","primary","mode","indeterminate"],[1,"ml-1","icon-small"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"],["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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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"],["tabindex","21","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(i,a){1&i&&t.YNc(0,Gs,95,42,"div",0)(1,Ks,1,1,"ng-template",null,1,t.W1O)(3,Xs,3,1,"ng-template",null,2,t.W1O)(5,$s,33,5,"ng-template",null,3,t.W1O)(7,ll,18,10,"div",4),2&i&&(t.Q6J("ngIf",!a.flgShowInfo),t.xp6(7),t.Q6J("ngIf",a.flgShowInfo))},dependencies:[u.mk,u.sg,u.O5,u.tP,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.sg,m.u,E.BN,d.xw,d.Wh,d.yH,v.oO,N.ZT,I.lW,L.dn,L.dk,B.ib,B.yz,B.yK,lt.Hw,H.Nt,C.KE,C.hX,C.bx,C.TO,C.R9,K.d,J.pW,V.ey,j.C0,j.VY,j.Vq,at.XC,at.ZL,X.h,ws,u.Ov,u.rS],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Ct._]}})}return n})();function cl(n,o){if(1&n&&(t.TgZ(0,"mat-option",36),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function ul(n,o){1&n&&t._UZ(0,"mat-progress-bar",37)}function pl(n,o){1&n&&t._UZ(0,"th",38)}function ml(n,o){if(1&n&&(t.TgZ(0,"span",42),t._UZ(1,"fa-icon",43),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function dl(n,o){if(1&n&&(t.TgZ(0,"span",44),t._UZ(1,"fa-icon",43),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}function hl(n,o){if(1&n&&(t.TgZ(0,"td",39),t.YNc(1,ml,2,1,"span",40)(2,dl,2,1,"span",41),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Q6J("ngIf",!(null!=e&&e.announceChannel)),t.xp6(1),t.Q6J("ngIf",null==e?null:e.announceChannel)}}function _l(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Short Channel ID"),t.qZA())}function gl(n,o){if(1&n&&(t.TgZ(0,"td",39),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null==e?null:e.shortChannelId)}}function fl(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Channel ID"),t.qZA())}const xt=n=>({width:n});function Cl(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"div",46)(2,"span",47),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function xl(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Alias"),t.qZA())}function yl(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"div",46)(2,"span",47),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function bl(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Node ID"),t.qZA())}function Ll(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"div",46)(2,"span",47),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,xt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function Tl(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Initiator"),t.qZA())}function vl(n,o){if(1&n&&(t.TgZ(0,"td",39),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null!=e&&e.isInitiator?"Yes":"No")}}function Zl(n,o){1&n&&(t.TgZ(0,"th",48),t._uU(1,"Base Fee (mSats)"),t.qZA())}function Sl(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Al(n,o){1&n&&(t.TgZ(0,"th",48),t._uU(1,"Fee Rate (mili mSats)"),t.qZA())}function wl(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function El(n,o){1&n&&(t.TgZ(0,"th",48),t._uU(1,"Local Balance (Sats)"),t.qZA())}function Il(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Fl(n,o){1&n&&(t.TgZ(0,"th",48),t._uU(1,"Remote Balance (Sats)"),t.qZA())}function ql(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Ol(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Balance Score"),t.qZA())}function Pl(n,o){if(1&n&&(t.TgZ(0,"td",39)(1,"div",50)(2,"mat-hint",51),t._uU(3),t.ALo(4,"number"),t.qZA()(),t._UZ(5,"mat-progress-bar",52),t.qZA()),2&n){const e=o.$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 kl(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"th",53)(1,"div",54)(2,"mat-select",55),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",56),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onChannelUpdate("all"))}),t._uU(5,"Update Fee Policy"),t.qZA(),t.TgZ(6,"mat-option",56),t.NdJ("click",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.onDownloadCSV())}),t._uU(7,"Download CSV"),t.qZA()()()()}}function Ul(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",57)(1,"div",54)(2,"mat-select",58),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",56),t.NdJ("click",function(a){const r=t.CHM(e).$implicit,_=t.oxw();return t.KtG(_.onChannelClick(r,a))}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",56),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.onChannelUpdate(s))}),t._uU(7,"Update Fee Policy"),t.qZA(),t.TgZ(8,"mat-option",56),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.onCircularRebalance(s))}),t._uU(9,"Circular Rebalance"),t.qZA(),t.TgZ(10,"mat-option",56),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.onChannelClose(s,!1))}),t._uU(11,"Close Channel"),t.qZA(),t.TgZ(12,"mat-option",56),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.onChannelClose(s,!0))}),t._uU(13,"Force Close"),t.qZA()()()()}}function Rl(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No peers connected. Add a peer in order to open a channel."),t.qZA())}function Ml(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No channel available."),t.qZA())}function Nl(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting channels..."),t.qZA())}function Dl(n,o){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 Jl(n,o){if(1&n&&(t.TgZ(0,"td",59),t.YNc(1,Rl,2,0,"p",60)(2,Ml,2,0,"p",60)(3,Nl,2,0,"p",60)(4,Dl,2,1,"p",60),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 Hl=n=>({"display-none":n});function Ql(n,o){if(1&n&&t._UZ(0,"tr",61),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Hl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Bl(n,o){1&n&&t._UZ(0,"tr",62)}function Vl(n,o){1&n&&t._UZ(0,"tr",63)}const Yl=()=>["all"],zl=n=>({"error-border":n}),Gl=()=>["no_peer"];let Wl=(()=>{class n{constructor(e,i,a,s,r,_){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.router=r,this.camelCaseWithSpaces=_,this.faEye=b.Mdf,this.faEyeSlash=b.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 c.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()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Xz).pipe((0,h.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(f.yD).pipe((0,h.R)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(f.Bo).pipe((0,h.R)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(f.kY).pipe((0,h.R)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(e){this.store.dispatch((0,Z.qR)({payload:{data:{message:{channels:this.activeChannels,selChannel:e,information:this.information},component:rl}}}))}onChannelUpdate(e){"all"!==e&&e?.state&&"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:"string"==typeof e&&"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:l.Gi.NUMBER,inputValue:e&&typeof e?.feeBaseMsat<"u"?e?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:l.Gi.NUMBER,inputValue:e&&typeof e?.feeProportionalMillionths<"u"?e?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,h.R)(this.unSubs[5])).subscribe(s=>{if(s){const r=s[0].inputValue,_=s[1].inputValue;let q=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let x="";"all"===e?(this.activeChannels.forEach(O=>{x=x+","+O.nodeId}),x=x.substring(1),q={baseFeeMsat:r,feeRate:_,nodeIds:x}):q={baseFeeMsat:r,feeRate:_,nodeId:e?.nodeId}}else{let x="";"all"===e?(this.activeChannels.forEach(O=>{x=x+","+O.channelId}),x=x.substring(1),q={baseFeeMsat:r,feeRate:_,channelIds:x}):q={baseFeeMsat:r,feeRate:_,channelId:e?.channelId}}this.store.dispatch((0,k.pW)({payload:q}))}}),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,h.R)(this.unSubs[6])).subscribe(_=>{_&&this.store.dispatch((0,k.BL)({payload:{channelId:e.channelId,force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{channel:e,channelsType:"open",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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 a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.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.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(nt.V),t.Y36(M.v),t.Y36(y.F0),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.ye,useValue:(0,l.pt)("Channels")}])],decls:60,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","isInitiator"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&(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-label"),t._uU(6,"Filter By"),t.qZA(),t.TgZ(7,"mat-select",5),t.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),t.TgZ(8,"perfect-scrollbar"),t.YNc(9,cl,2,2,"mat-option",6),t.qZA()()(),t.TgZ(10,"mat-form-field",4)(11,"mat-label"),t._uU(12,"Filter"),t.qZA(),t.TgZ(13,"input",7),t.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),t.qZA()()()(),t.TgZ(14,"div",8),t.YNc(15,ul,1,0,"mat-progress-bar",9),t.TgZ(16,"table",10,11),t.ynx(18,12),t.YNc(19,pl,1,0,"th",13)(20,hl,3,2,"td",14),t.BQk(),t.ynx(21,15),t.YNc(22,_l,2,0,"th",16)(23,gl,2,1,"td",14),t.BQk(),t.ynx(24,17),t.YNc(25,fl,2,0,"th",16)(26,Cl,4,4,"td",14),t.BQk(),t.ynx(27,18),t.YNc(28,xl,2,0,"th",16)(29,yl,4,4,"td",14),t.BQk(),t.ynx(30,19),t.YNc(31,bl,2,0,"th",16)(32,Ll,4,4,"td",14),t.BQk(),t.ynx(33,20),t.YNc(34,Tl,2,0,"th",16)(35,vl,2,1,"td",14),t.BQk(),t.ynx(36,21),t.YNc(37,Zl,2,0,"th",22)(38,Sl,4,4,"td",14),t.BQk(),t.ynx(39,23),t.YNc(40,Al,2,0,"th",22)(41,wl,4,4,"td",14),t.BQk(),t.ynx(42,24),t.YNc(43,El,2,0,"th",22)(44,Il,4,4,"td",14),t.BQk(),t.ynx(45,25),t.YNc(46,Fl,2,0,"th",22)(47,ql,4,4,"td",14),t.BQk(),t.ynx(48,26),t.YNc(49,Ol,2,0,"th",16)(50,Pl,6,4,"td",14),t.BQk(),t.ynx(51,27),t.YNc(52,kl,8,0,"th",28)(53,Ul,14,0,"td",29),t.BQk(),t.ynx(54,30),t.YNc(55,Jl,5,4,"td",31),t.BQk(),t.YNc(56,Ql,1,3,"tr",32)(57,Bl,1,0,"tr",33)(58,Vl,1,0,"tr",34),t.qZA()(),t._UZ(59,"mat-paginator",35),t.qZA()),2&i&&(t.xp6(7),t.Q6J("ngModel",a.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(14,Yl).concat(a.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",a.selFilter),t.xp6(2),t.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.VKq(15,zl,""!==a.errorMessage)),t.xp6(40),t.Q6J("matFooterRowDef",t.DdM(17,Gl)),t.xp6(1),t.Q6J("matHeaderRowDef",a.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",a.displayedColumns),t.xp6(1),t.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[u.mk,u.sg,u.O5,u.PC,m.Fj,m.JJ,m.On,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,H.Nt,C.KE,C.hX,C.bx,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,G.gM,w.NW,P.Vv,P.$V,u.JJ],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return n})();function Kl(n,o){if(1&n&&(t.TgZ(0,"mat-option",33),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Xl(n,o){1&n&&t._UZ(0,"mat-progress-bar",34)}function $l(n,o){1&n&&t._UZ(0,"th",35)}function jl(n,o){if(1&n&&(t.TgZ(0,"span",39),t._UZ(1,"fa-icon",40),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEyeSlash)}}function tr(n,o){if(1&n&&(t.TgZ(0,"span",41),t._UZ(1,"fa-icon",40),t.qZA()),2&n){const e=t.oxw(2);t.xp6(1),t.Q6J("icon",e.faEye)}}function er(n,o){if(1&n&&(t.TgZ(0,"td",36),t.YNc(1,jl,2,1,"span",37)(2,tr,2,1,"span",38),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Q6J("ngIf",!(null!=e&&e.announceChannel)),t.xp6(1),t.Q6J("ngIf",null==e?null:e.announceChannel)}}function nr(n,o){1&n&&(t.TgZ(0,"th",42),t._uU(1,"State"),t.qZA())}function ir(n,o){if(1&n&&(t.TgZ(0,"td",36),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.lcZ(2,1,null==e?null:e.state))}}function ar(n,o){1&n&&(t.TgZ(0,"th",42),t._uU(1,"Channel ID"),t.qZA())}const Rt=n=>({width:n});function or(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"div",43)(2,"span",44),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Rt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function sr(n,o){1&n&&(t.TgZ(0,"th",42),t._uU(1,"Alias"),t.qZA())}function lr(n,o){if(1&n&&(t.TgZ(0,"td",36),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null==e?null:e.alias)}}function rr(n,o){1&n&&(t.TgZ(0,"th",42),t._uU(1,"Node ID"),t.qZA())}function cr(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"div",43)(2,"span",44),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Rt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function ur(n,o){1&n&&(t.TgZ(0,"th",42),t._uU(1,"Initiator"),t.qZA())}function pr(n,o){if(1&n&&(t.TgZ(0,"td",36),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null!=e&&e.isInitiator?"Yes":"No")}}function mr(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Local Balance (Sats)"),t.qZA())}function dr(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",46),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function hr(n,o){1&n&&(t.TgZ(0,"th",45),t._uU(1,"Remote Balance (Sats)"),t.qZA())}function _r(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",46),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function gr(n,o){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(){t.CHM(e);const a=t.oxw();return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function fr(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",51)(1,"button",52),t.NdJ("click",function(a){const r=t.CHM(e).$implicit,_=t.oxw();return t.KtG(_.onChannelClick(r,a))}),t._uU(2,"View Info"),t.qZA()()}}function Cr(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No pending channel available."),t.qZA())}function xr(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting pending channels..."),t.qZA())}function yr(n,o){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 br(n,o){if(1&n&&(t.TgZ(0,"td",53),t.YNc(1,Cr,2,0,"p",54)(2,xr,2,0,"p",54)(3,yr,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 Lr=n=>({"display-none":n});function Tr(n,o){if(1&n&&t._UZ(0,"tr",55),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,Lr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function vr(n,o){1&n&&t._UZ(0,"tr",56)}function Zr(n,o){1&n&&t._UZ(0,"tr",57)}const Sr=()=>["all"],Ar=n=>({"error-border":n}),wr=()=>["no_channel"];let Er=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.camelCaseWithSpaces=s,this.faEye=b.Mdf,this.faEyeSlash=b.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 c.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(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Xz).pipe((0,h.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(f.yD).pipe((0,h.R)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(f.Bo).pipe((0,h.R)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(f.kY).pipe((0,h.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,Z.qR)({payload:{data:{channel:e,channelsType:"pending",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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 a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.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.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(M.v),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.ye,useValue:(0,l.pt)("Channels")}])],decls:51,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["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(i,a){1&i&&(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-label"),t._uU(6,"Filter By"),t.qZA(),t.TgZ(7,"mat-select",5),t.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),t.TgZ(8,"perfect-scrollbar"),t.YNc(9,Kl,2,2,"mat-option",6),t.qZA()()(),t.TgZ(10,"mat-form-field",4)(11,"mat-label"),t._uU(12,"Filter"),t.qZA(),t.TgZ(13,"input",7),t.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),t.qZA()()()(),t.TgZ(14,"div",8),t.YNc(15,Xl,1,0,"mat-progress-bar",9),t.TgZ(16,"table",10,11),t.ynx(18,12),t.YNc(19,$l,1,0,"th",13)(20,er,3,2,"td",14),t.BQk(),t.ynx(21,15),t.YNc(22,nr,2,0,"th",16)(23,ir,3,3,"td",14),t.BQk(),t.ynx(24,17),t.YNc(25,ar,2,0,"th",16)(26,or,4,4,"td",14),t.BQk(),t.ynx(27,18),t.YNc(28,sr,2,0,"th",16)(29,lr,2,1,"td",14),t.BQk(),t.ynx(30,19),t.YNc(31,rr,2,0,"th",16)(32,cr,4,4,"td",14),t.BQk(),t.ynx(33,20),t.YNc(34,ur,2,0,"th",16)(35,pr,2,1,"td",14),t.BQk(),t.ynx(36,21),t.YNc(37,mr,2,0,"th",22)(38,dr,4,4,"td",14),t.BQk(),t.ynx(39,23),t.YNc(40,hr,2,0,"th",22)(41,_r,4,4,"td",14),t.BQk(),t.ynx(42,24),t.YNc(43,gr,6,0,"th",25)(44,fr,3,0,"td",26),t.BQk(),t.ynx(45,27),t.YNc(46,br,4,3,"td",28),t.BQk(),t.YNc(47,Tr,1,3,"tr",29)(48,vr,1,0,"tr",30)(49,Zr,1,0,"tr",31),t.qZA()(),t._UZ(50,"mat-paginator",32),t.qZA()),2&i&&(t.xp6(7),t.Q6J("ngModel",a.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(14,Sr).concat(a.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",a.selFilter),t.xp6(2),t.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.VKq(15,Ar,""!==a.errorMessage)),t.xp6(31),t.Q6J("matFooterRowDef",t.DdM(17,wr)),t.xp6(1),t.Q6J("matHeaderRowDef",a.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",a.displayedColumns),t.xp6(1),t.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[u.mk,u.sg,u.O5,u.PC,m.Fj,m.JJ,m.On,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,H.Nt,C.KE,C.hX,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,G.gM,w.NW,P.Vv,P.$V,u.JJ,u.rS],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();function Ir(n,o){if(1&n&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function Fr(n,o){1&n&&t._UZ(0,"mat-progress-bar",36)}function qr(n,o){1&n&&t._UZ(0,"th",37)}const Mt=n=>({"mr-0":n});function Or(n,o){if(1&n&&t._UZ(0,"span",41),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Mt,e.screenSize===e.screenSizeEnum.XS))}}function Pr(n,o){if(1&n&&t._UZ(0,"span",42),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Mt,e.screenSize===e.screenSizeEnum.XS))}}function kr(n,o){if(1&n&&(t.TgZ(0,"td",38),t.YNc(1,Or,1,3,"span",39)(2,Pr,1,3,"span",40),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Q6J("ngIf","CONNECTED"===e.state),t.xp6(1),t.Q6J("ngIf","DISCONNECTED"===e.state)}}function Ur(n,o){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Alias"),t.qZA())}const Nt=n=>({width:n});function Rr(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"div",44)(2,"span",45),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Nt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function Mr(n,o){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Node ID"),t.qZA())}function Nr(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"div",44)(2,"span",45),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Nt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function Dr(n,o){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Network Address"),t.qZA())}function Jr(n,o){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.hij(" ",null==e?null:e.address," ")}}function Hr(n,o){1&n&&(t.TgZ(0,"th",43),t._uU(1,"Channels"),t.qZA())}function Qr(n,o){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null==e?null:e.channels)}}function Br(n,o){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(){t.CHM(e);const a=t.oxw();return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Vr(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"mat-option",49),t.NdJ("click",function(){t.CHM(e);const a=t.oxw().$implicit,s=t.oxw();return t.KtG(s.onPeerDetach(a))}),t._uU(1,"Disconnect"),t.qZA()}}function Yr(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"mat-option",49),t.NdJ("click",function(){t.CHM(e);const a=t.oxw().$implicit,s=t.oxw();return t.KtG(s.onConnectPeer(a))}),t._uU(1,"Reconnect"),t.qZA()}}function zr(n,o){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(a){const r=t.CHM(e).$implicit,_=t.oxw();return t.KtG(_.onPeerClick(r,a))}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",49),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.onOpenChannel(s))}),t._uU(7,"Open Channel"),t.qZA(),t.YNc(8,Vr,2,0,"mat-option",51)(9,Yr,2,0,"mat-option",51),t.qZA()()()}if(2&n){const e=o.$implicit;t.xp6(8),t.Q6J("ngIf","CONNECTED"===e.state),t.xp6(1),t.Q6J("ngIf","DISCONNECTED"===e.state)}}function Gr(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No connected peer."),t.qZA())}function Wr(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting peers..."),t.qZA())}function Kr(n,o){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,o){if(1&n&&(t.TgZ(0,"td",52),t.YNc(1,Gr,2,0,"p",53)(2,Wr,2,0,"p",53)(3,Kr,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 $r=n=>({"display-none":n});function jr(n,o){if(1&n&&t._UZ(0,"tr",54),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,$r,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function t1(n,o){1&n&&t._UZ(0,"tr",55)}function e1(n,o){1&n&&t._UZ(0,"tr",56)}const n1=()=>["all"],i1=n=>({"error-border":n}),a1=()=>["no_peer"];let o1=(()=>{class n{constructor(e,i,a,s,r,_){this.logger=e,this.store=i,this.rtlEffects=a,this.actions=s,this.commonService=r,this.camelCaseWithSpaces=_,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=b.FVb,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new c.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(f.yD).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(f.nF).pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Bo).pipe((0,h.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(f.kY).pipe((0,h.R)(this.unSubs[3])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,h.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 a=[[{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",goToFieldValue:e.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:e.nodeId,message:a}}}))}onConnectPeer(e){this.store.dispatch((0,Z.qR)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:qt}}}))}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:Ut}}}))}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,h.R)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,k.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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"state":a=e?.state?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadPeersTable(e){this.peers=new c.by(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(nt.V),t.Y36(W.eX),t.Y36(M.v),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.ye,useValue:(0,l.pt)("Peers")}])],decls:50,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(t.TgZ(0,"div",0)(1,"form",1,2)(3,"button",3),t.NdJ("click",function(){return a.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-label"),t._uU(14,"Filter By"),t.qZA(),t.TgZ(15,"mat-select",11),t.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),t.TgZ(16,"perfect-scrollbar"),t.YNc(17,Ir,2,2,"mat-option",12),t.qZA()()(),t.TgZ(18,"mat-form-field",10)(19,"mat-label"),t._uU(20,"Filter"),t.qZA(),t.TgZ(21,"input",13),t.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),t.qZA()()()(),t.TgZ(22,"div",14),t.YNc(23,Fr,1,0,"mat-progress-bar",15),t.TgZ(24,"table",16,17),t.ynx(26,18),t.YNc(27,qr,1,0,"th",19)(28,kr,3,2,"td",20),t.BQk(),t.ynx(29,21),t.YNc(30,Ur,2,0,"th",22)(31,Rr,4,4,"td",20),t.BQk(),t.ynx(32,23),t.YNc(33,Mr,2,0,"th",22)(34,Nr,4,4,"td",20),t.BQk(),t.ynx(35,24),t.YNc(36,Dr,2,0,"th",22)(37,Jr,2,1,"td",20),t.BQk(),t.ynx(38,25),t.YNc(39,Hr,2,0,"th",22)(40,Qr,2,1,"td",20),t.BQk(),t.ynx(41,26),t.YNc(42,Br,6,0,"th",27)(43,zr,10,2,"td",28),t.BQk(),t.ynx(44,29),t.YNc(45,Xr,4,3,"td",30),t.BQk(),t.YNc(46,jr,1,3,"tr",31)(47,t1,1,0,"tr",32)(48,e1,1,0,"tr",33),t.qZA()(),t._UZ(49,"mat-paginator",34),t.qZA()()),2&i&&(t.xp6(8),t.Q6J("icon",a.faUsers),t.xp6(7),t.Q6J("ngModel",a.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(15,n1).concat(a.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",a.selFilter),t.xp6(2),t.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",t.VKq(16,i1,""!==a.errorMessage)),t.xp6(22),t.Q6J("matFooterRowDef",t.DdM(18,a1)),t.xp6(1),t.Q6J("matHeaderRowDef",a.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",a.displayedColumns),t.xp6(1),t.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[u.mk,u.sg,u.O5,u.PC,m._Y,m.Fj,m.JJ,m.JL,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,H.Nt,C.KE,C.hX,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,G.gM,w.NW,P.Vv,P.$V],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const s1=["queryRoutesForm"];function l1(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Destination Node ID is required."),t.qZA())}function r1(n,o){1&n&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function c1(n,o){1&n&&t._UZ(0,"mat-progress-bar",22)}function u1(n,o){1&n&&(t.TgZ(0,"th",40),t._uU(1," Alias"),t.qZA())}const Dt=n=>({"max-width":n});function p1(n,o){if(1&n&&(t.TgZ(0,"td",41)(1,"span",42)(2,"span",43),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Dt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function m1(n,o){1&n&&(t.TgZ(0,"th",40),t._uU(1," ID"),t.qZA())}function d1(n,o){if(1&n&&(t.TgZ(0,"td",41)(1,"span",42)(2,"span",43),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Dt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function h1(n,o){1&n&&(t.TgZ(0,"th",40)(1,"div",44),t._uU(2,"Actions"),t.qZA()())}function _1(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",45)(1,"button",46),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw(2);return t.KtG(r.onHopClick(s))}),t._uU(2,"View Info"),t.qZA()()}}function g1(n,o){1&n&&t._UZ(0,"tr",47)}function f1(n,o){1&n&&t._UZ(0,"tr",48)}const C1=n=>({"overflow-auto error-border":n,"overflow-auto":!0});function x1(n,o){if(1&n&&(t.TgZ(0,"div",23)(1,"mat-expansion-panel",24)(2,"mat-expansion-panel-header")(3,"mat-panel-title",25)(4,"span",26),t._uU(5),t.qZA(),t.TgZ(6,"span",27),t._uU(7),t.ALo(8,"number"),t.qZA()()(),t.TgZ(9,"mat-panel-description",28)(10,"div",29)(11,"table",30,31),t.ynx(13,32),t.YNc(14,u1,2,0,"th",33)(15,p1,4,4,"td",34),t.BQk(),t.ynx(16,35),t.YNc(17,m1,2,0,"th",33)(18,d1,4,4,"td",34),t.BQk(),t.ynx(19,36),t.YNc(20,h1,3,0,"th",33)(21,_1,3,0,"td",37),t.BQk(),t.YNc(22,g1,1,0,"tr",38)(23,f1,1,0,"tr",39),t.qZA()()()()()),2&n){const e=o.$implicit,i=o.index,a=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",a.qrHops[i])("ngClass",t.VKq(8,C1,"error"===a.flgLoading[0])),t.xp6(11),t.Q6J("matHeaderRowDef",a.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",a.displayedColumns)}}let y1=(()=>{class n{constructor(e,i,a){this.store=e,this.eclEffects=i,this.commonService=a,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],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],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new c.by([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,h.R)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,a)=>{this.qrHops[a]=new c.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(A.yh),t.Y36(ct.o),t.Y36(M.v))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(i,a){if(1&i&&t.Gf(s1,7),2&i){let s;t.iGM(s=t.CRH())&&(a.form=s.first)}},decls:32,vars:10,consts:[["fxLayout","column"],["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"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","nodeId","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"step","min","ngModel","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"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","column","fxFlex","100"],["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.gt-xs","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(i,a){if(1&i){const s=t.EpF();t.TgZ(0,"div",0)(1,"form",1,2),t.NdJ("ngSubmit",function(){t.CHM(s);const _=t.MAs(2);return t.KtG(_.form.valid&&a.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,"mat-label"),t._uU(9,"Destination Node ID"),t.qZA(),t.TgZ(10,"input",6,7),t.NdJ("ngModelChange",function(_){return a.nodeId=_}),t.qZA(),t.YNc(12,l1,2,0,"mat-error",8),t.qZA(),t.TgZ(13,"mat-form-field",9)(14,"mat-label"),t._uU(15,"Amount (Sats)"),t.qZA(),t.TgZ(16,"input",10),t.NdJ("ngModelChange",function(_){return a.amount=_}),t.qZA(),t.YNc(17,r1,2,0,"mat-error",8),t.qZA(),t.TgZ(18,"div",11)(19,"button",12),t.NdJ("click",function(){return a.resetData()}),t._uU(20,"Clear"),t.qZA(),t.TgZ(21,"button",13),t._uU(22,"Query Route"),t.qZA()()(),t.TgZ(23,"div",14)(24,"div",15),t._UZ(25,"fa-icon",16),t.TgZ(26,"span",17),t._uU(27,"Transaction Route"),t.qZA()()(),t.YNc(28,c1,1,0,"mat-progress-bar",18),t.TgZ(29,"div",19)(30,"div",20),t.YNc(31,x1,24,10,"div",21),t.qZA()()()}2&i&&(t.xp6(4),t.Q6J("icon",a.faExclamationTriangle),t.xp6(6),t.Q6J("ngModel",a.nodeId),t.xp6(2),t.Q6J("ngIf",!a.nodeId),t.xp6(4),t.Q6J("step",1e3)("min",0)("ngModel",a.amount),t.xp6(1),t.Q6J("ngIf",!a.amount),t.xp6(8),t.Q6J("icon",a.faRoute),t.xp6(3),t.Q6J("ngIf",!0===a.flgLoading[0]),t.xp6(3),t.Q6J("ngForOf",a.allQRoutes))},dependencies:[u.mk,u.sg,u.O5,u.PC,m._Y,m.Fj,m.wV,m.JJ,m.JL,m.Q7,m.qQ,m.On,m.F,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,B.ib,B.yz,B.yK,B.u4,H.Nt,C.KE,C.hX,C.TO,J.pW,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.ge,c.ev,c.XQ,c.Gk,P.$V,$.q,u.JJ]})}return n})();function b1(n,o){if(1&n&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw();t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}function L1(n,o){1&n&&t._UZ(0,"mat-progress-bar",36)}function T1(n,o){1&n&&t._UZ(0,"th",37)}function v1(n,o){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 Z1(n,o){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 S1(n,o){if(1&n&&(t.TgZ(0,"td",38),t.YNc(1,v1,2,1,"span",39)(2,Z1,2,1,"span",40),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Q6J("ngIf",!e.announceChannel),t.xp6(1),t.Q6J("ngIf",e.announceChannel)}}function A1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"State"),t.qZA())}function w1(n,o){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(t.lcZ(2,1,null==e?null:e.state))}}function E1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Short Channel ID"),t.qZA())}function I1(n,o){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null==e?null:e.shortChannelId)}}function F1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Channel ID"),t.qZA())}const yt=n=>({width:n});function q1(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"div",45)(2,"span",46),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,yt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function O1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Alias"),t.qZA())}function P1(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"div",45)(2,"span",46),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,yt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(e.alias)}}function k1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Node ID"),t.qZA())}function U1(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"div",45)(2,"span",46),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,yt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.nodeId)}}function R1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Initiator"),t.qZA())}function M1(n,o){if(1&n&&(t.TgZ(0,"td",38),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null!=e&&e.isInitiator?"Yes":"No")}}function N1(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Local Balance (Sats)"),t.qZA())}function D1(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"span",48),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function J1(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Remote Balance (Sats)"),t.qZA())}function H1(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"span",48),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.hij(" ",t.xi3(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Q1(n,o){1&n&&(t.TgZ(0,"th",44),t._uU(1,"Balance Score"),t.qZA())}function B1(n,o){if(1&n&&(t.TgZ(0,"td",38)(1,"div",49)(2,"mat-hint",50),t._uU(3),t.ALo(4,"number"),t.qZA()(),t._UZ(5,"mat-progress-bar",51),t.qZA()),2&n){const e=o.$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 V1(n,o){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(){t.CHM(e);const a=t.oxw();return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Y1(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",56)(1,"div",53)(2,"mat-select",57),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",55),t.NdJ("click",function(a){const r=t.CHM(e).$implicit,_=t.oxw();return t.KtG(_.onChannelClick(r,a))}),t._uU(5,"View Info"),t.qZA(),t.TgZ(6,"mat-option",55),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.onChannelClose(s,!0))}),t._uU(7,"Force Close"),t.qZA()()()()}}function z1(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No inactive channel available."),t.qZA())}function G1(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting inactive channels..."),t.qZA())}function W1(n,o){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 K1(n,o){if(1&n&&(t.TgZ(0,"td",58),t.YNc(1,z1,2,0,"p",59)(2,G1,2,0,"p",59)(3,W1,2,1,"p",59),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 X1=n=>({"display-none":n});function $1(n,o){if(1&n&&t._UZ(0,"tr",60),2&n){const e=t.oxw();t.Q6J("ngClass",t.VKq(1,X1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function j1(n,o){1&n&&t._UZ(0,"tr",61)}function tc(n,o){1&n&&t._UZ(0,"tr",62)}const ec=()=>["all"],nc=n=>({"error-border":n}),ic=()=>["no_channel"];let ac=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.camelCaseWithSpaces=r,this.faEye=b.Mdf,this.faEyeSlash=b.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 c.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(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Xz).pipe((0,h.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(f.yD).pipe((0,h.R)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(f.Bo).pipe((0,h.R)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(f.kY).pipe((0,h.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,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,h.R)(this.unSubs[5])).subscribe(_=>{_&&this.store.dispatch((0,k.BL)({payload:{channelId:e.channelId||"",force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,Z.qR)({payload:{data:{channel:e,channelsType:"inactive",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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 a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.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.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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(A.yh),t.Y36(nt.V),t.Y36(M.v),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.ye,useValue:(0,l.pt)("Channels")}])],decls:57,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["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(i,a){1&i&&(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-label"),t._uU(6,"Filter By"),t.qZA(),t.TgZ(7,"mat-select",5),t.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),t.TgZ(8,"perfect-scrollbar"),t.YNc(9,b1,2,2,"mat-option",6),t.qZA()()(),t.TgZ(10,"mat-form-field",4)(11,"mat-label"),t._uU(12,"Filter"),t.qZA(),t.TgZ(13,"input",7),t.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),t.qZA()()()(),t.TgZ(14,"div",8),t.YNc(15,L1,1,0,"mat-progress-bar",9),t.TgZ(16,"table",10,11),t.ynx(18,12),t.YNc(19,T1,1,0,"th",13)(20,S1,3,2,"td",14),t.BQk(),t.ynx(21,15),t.YNc(22,A1,2,0,"th",16)(23,w1,3,3,"td",14),t.BQk(),t.ynx(24,17),t.YNc(25,E1,2,0,"th",16)(26,I1,2,1,"td",14),t.BQk(),t.ynx(27,18),t.YNc(28,F1,2,0,"th",16)(29,q1,4,4,"td",14),t.BQk(),t.ynx(30,19),t.YNc(31,O1,2,0,"th",16)(32,P1,4,4,"td",14),t.BQk(),t.ynx(33,20),t.YNc(34,k1,2,0,"th",16)(35,U1,4,4,"td",14),t.BQk(),t.ynx(36,21),t.YNc(37,R1,2,0,"th",16)(38,M1,2,1,"td",14),t.BQk(),t.ynx(39,22),t.YNc(40,N1,2,0,"th",23)(41,D1,4,4,"td",14),t.BQk(),t.ynx(42,24),t.YNc(43,J1,2,0,"th",23)(44,H1,4,4,"td",14),t.BQk(),t.ynx(45,25),t.YNc(46,Q1,2,0,"th",16)(47,B1,6,4,"td",14),t.BQk(),t.ynx(48,26),t.YNc(49,V1,6,0,"th",27)(50,Y1,8,0,"td",28),t.BQk(),t.ynx(51,29),t.YNc(52,K1,4,3,"td",30),t.BQk(),t.YNc(53,$1,1,3,"tr",31)(54,j1,1,0,"tr",32)(55,tc,1,0,"tr",33),t.qZA()(),t._UZ(56,"mat-paginator",34),t.qZA()),2&i&&(t.xp6(7),t.Q6J("ngModel",a.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(14,ec).concat(a.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",a.selFilter),t.xp6(2),t.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.VKq(15,nc,""!==a.errorMessage)),t.xp6(37),t.Q6J("matFooterRowDef",t.DdM(17,ic)),t.xp6(1),t.Q6J("matHeaderRowDef",a.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",a.displayedColumns),t.xp6(1),t.Q6J("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[u.mk,u.sg,u.O5,u.PC,m.Fj,m.JJ,m.On,E.BN,d.xw,d.Wh,d.yH,v.oO,v.Zl,H.Nt,C.KE,C.hX,C.bx,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,G.gM,w.NW,P.Vv,P.$V,u.JJ,u.rS],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]})}return n})();function oc(n,o){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 sc(n,o){if(1&n&&(t.TgZ(0,"mat-option",13),t._uU(1),t.qZA()),2&n){const e=o.$implicit,i=t.oxw(2);t.Q6J("value",e),t.xp6(1),t.Oqu(i.getLabel(e))}}const lc=()=>["all"];function rc(n,o){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-label"),t._uU(5,"Filter By"),t.qZA(),t.TgZ(6,"mat-select",10),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.selFilterBy=a)})("selectionChange",function(){t.CHM(e);const a=t.oxw();return a.selFilter="",t.KtG(a.applyFilter())}),t.TgZ(7,"perfect-scrollbar"),t.YNc(8,sc,2,2,"mat-option",11),t.qZA()()(),t.TgZ(9,"mat-form-field",9)(10,"mat-label"),t._uU(11,"Filter"),t.qZA(),t.TgZ(12,"input",12),t.NdJ("ngModelChange",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.selFilter=a)})("input",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.applyFilter())})("keyup",function(){t.CHM(e);const a=t.oxw();return t.KtG(a.applyFilter())}),t.qZA()()()()}if(2&n){const e=t.oxw();t.xp6(6),t.Q6J("ngModel",e.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(3,lc).concat(e.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",e.selFilter)}}function cc(n,o){1&n&&t._UZ(0,"mat-progress-bar",42)}function uc(n,o){1&n&&t._UZ(0,"th",43)}const pc=n=>({"ml-0":n});function mc(n,o){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,pc,i.screenSize===i.screenSizeEnum.XS))}}function dc(n,o){if(1&n&&(t.TgZ(0,"td",44),t.YNc(1,mc,2,6,"span",45),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Q6J("ngIf","payment-relayed"!==(null==e?null:e.type))}}function hc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Date/Time"),t.qZA())}function _c(n,o){if(1&n&&(t.TgZ(0,"td",44),t._uU(1),t.ALo(2,"date"),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function gc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"In Channel ID"),t.qZA())}const et=n=>({width:n});function fc(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.fromChannelId)}}function Cc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"In Channel Short ID"),t.qZA())}function xc(n,o){if(1&n&&(t.TgZ(0,"td",44),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null==e?null:e.fromShortChannelId)}}function yc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"In Channel"),t.qZA())}function bc(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.fromChannelAlias)}}function Lc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Out Channel ID"),t.qZA())}function Tc(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.toChannelId)}}function vc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Out Channel Short ID"),t.qZA())}function Zc(n,o){if(1&n&&(t.TgZ(0,"td",44),t._uU(1),t.qZA()),2&n){const e=o.$implicit;t.xp6(1),t.Oqu(null==e?null:e.toShortChannelId)}}function Sc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Out Channel"),t.qZA())}function Ac(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.toChannelAlias)}}function wc(n,o){1&n&&(t.TgZ(0,"th",47),t._uU(1,"Payment Hash"),t.qZA())}function Ec(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"div",48)(2,"span",49),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,et,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.paymentHash)}}function Ic(n,o){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Amount In (Sats)"),t.qZA())}function Fc(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.amountIn))}}function qc(n,o){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Amount Out (Sats)"),t.qZA())}function Oc(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==e?null:e.amountOut))}}function Pc(n,o){1&n&&(t.TgZ(0,"th",50),t._uU(1,"Fee Earned (Sats)"),t.qZA())}function kc(n,o){if(1&n&&(t.TgZ(0,"td",44)(1,"span",51),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function Uc(n,o){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(){t.CHM(e);const a=t.oxw(2);return t.KtG(a.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Rc(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"td",56)(1,"button",57),t.NdJ("click",function(a){const r=t.CHM(e).$implicit,_=t.oxw(2);return t.KtG(_.onForwardingEventClick(r,a))}),t._uU(2,"View Info"),t.qZA()()}}function Mc(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No forwarding history available."),t.qZA())}function Nc(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting forwarding history..."),t.qZA())}function Dc(n,o){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 Jc(n,o){if(1&n&&(t.TgZ(0,"td",58),t.YNc(1,Mc,2,0,"p",59)(2,Nc,2,0,"p",59)(3,Dc,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 Hc=n=>({"display-none":n});function Qc(n,o){if(1&n&&t._UZ(0,"tr",60),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Hc,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function Bc(n,o){1&n&&t._UZ(0,"tr",61)}function Vc(n,o){1&n&&t._UZ(0,"tr",62)}const Yc=()=>["no_event"];function zc(n,o){if(1&n&&(t.TgZ(0,"div",14),t.YNc(1,cc,1,0,"mat-progress-bar",15),t.TgZ(2,"table",16,17),t.ynx(4,18),t.YNc(5,uc,1,0,"th",19)(6,dc,2,1,"td",20),t.BQk(),t.ynx(7,21),t.YNc(8,hc,2,0,"th",22)(9,_c,3,4,"td",20),t.BQk(),t.ynx(10,23),t.YNc(11,gc,2,0,"th",22)(12,fc,4,4,"td",20),t.BQk(),t.ynx(13,24),t.YNc(14,Cc,2,0,"th",22)(15,xc,2,1,"td",20),t.BQk(),t.ynx(16,25),t.YNc(17,yc,2,0,"th",22)(18,bc,4,4,"td",20),t.BQk(),t.ynx(19,26),t.YNc(20,Lc,2,0,"th",22)(21,Tc,4,4,"td",20),t.BQk(),t.ynx(22,27),t.YNc(23,vc,2,0,"th",22)(24,Zc,2,1,"td",20),t.BQk(),t.ynx(25,28),t.YNc(26,Sc,2,0,"th",22)(27,Ac,4,4,"td",20),t.BQk(),t.ynx(28,29),t.YNc(29,wc,2,0,"th",22)(30,Ec,4,4,"td",20),t.BQk(),t.ynx(31,30),t.YNc(32,Ic,2,0,"th",31)(33,Fc,4,3,"td",20),t.BQk(),t.ynx(34,32),t.YNc(35,qc,2,0,"th",31)(36,Oc,4,3,"td",20),t.BQk(),t.ynx(37,33),t.YNc(38,Pc,2,0,"th",31)(39,kc,4,3,"td",20),t.BQk(),t.ynx(40,34),t.YNc(41,Uc,6,0,"th",35)(42,Rc,3,0,"td",36),t.BQk(),t.ynx(43,37),t.YNc(44,Jc,4,3,"td",38),t.BQk(),t.YNc(45,Qc,1,3,"tr",39)(46,Bc,1,0,"tr",40)(47,Vc,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("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),t.xp6(43),t.Q6J("matFooterRowDef",t.DdM(7,Yc)),t.xp6(1),t.Q6J("matHeaderRowDef",e.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",e.displayedColumns)}}function Gc(n,o){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 Jt=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,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 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()}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())}ngOnInit(){this.store.select(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=e.pageSettings.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.PP).pipe((0,h.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.eventsData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.eventsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData)})}ngAfterViewInit(){setTimeout(()=>{this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)},0)}onForwardingEventClick(e,i){const a=[[{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&&a?.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:a}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(e.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":a=(e.amountIn-e.amountOut).toString()||"0";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new c.by([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,a)=>"fee"===a?i.amountIn-i.amountOut:i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh),t.Y36(u.uU),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(i,a){if(1&i&&(t.Gf(T.YE,5),t.Gf(w.NW,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sort=s.first),t.iGM(s=t.CRH())&&(a.paginator=s.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[t._Bn([{provide:S.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(t.TgZ(0,"div",0),t.YNc(1,oc,2,1,"div",1)(2,rc,13,4,"div",2)(3,zc,48,8,"div",3)(4,Gc,1,3,"mat-paginator",4),t.qZA()),2&i&&(t.xp6(1),t.Q6J("ngIf",""!==a.errorMessage),t.xp6(1),t.Q6J("ngIf",""===a.errorMessage),t.xp6(1),t.Q6J("ngIf",""===a.errorMessage),t.xp6(1),t.Q6J("ngIf",""===a.errorMessage))},dependencies:[u.mk,u.sg,u.O5,u.PC,m.Fj,m.JJ,m.On,d.xw,d.Wh,d.yH,v.oO,v.Zl,I.lW,H.Nt,C.KE,C.hX,J.pW,S.gD,S.$L,V.ey,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,G.gM,w.NW,P.Vv,P.$V,u.JJ,u.uU,Y.h9],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-actions[_ngcontent-%COMP%]{min-height:3.55rem}"]})}return n})();const Wc=["tableIn"],Kc=["tableOut"],Xc=["paginatorIn"],$c=["paginatorOut"];function jc(n,o){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 tu(n,o){1&n&&t._UZ(0,"mat-progress-bar",34)}function eu(n,o){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Channel ID"),t.qZA())}const ot=n=>({width:n});function nu(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ot,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function iu(n,o){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Peer Alias"),t.qZA())}function au(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ot,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function ou(n,o){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Events"),t.qZA())}function su(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.events))}}function lu(n,o){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Amount (Sats)"),t.qZA())}function ru(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalAmount))}}function cu(n,o){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Fee (Sats)"),t.qZA())}function uu(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalFee))}}function pu(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No incoming routing peer available."),t.qZA())}function mu(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting incoming routing peers..."),t.qZA())}function du(n,o){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 hu(n,o){if(1&n&&(t.TgZ(0,"td",41),t.YNc(1,pu,2,0,"p",42)(2,mu,2,0,"p",42)(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 Ht=n=>({"display-none":n});function _u(n,o){if(1&n&&t._UZ(0,"tr",43),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Ht,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function gu(n,o){1&n&&t._UZ(0,"tr",44)}function fu(n,o){1&n&&t._UZ(0,"tr",45)}function Cu(n,o){1&n&&t._UZ(0,"mat-progress-bar",34)}function xu(n,o){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Channel ID"),t.qZA())}function yu(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ot,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.channelId)}}function bu(n,o){1&n&&(t.TgZ(0,"th",35),t._uU(1,"Peer Alias"),t.qZA())}function Lu(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"div",37)(2,"span",38),t._uU(3),t.qZA()()()),2&n){const e=o.$implicit,i=t.oxw(2);t.xp6(1),t.Q6J("ngStyle",t.VKq(2,ot,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.xp6(2),t.Oqu(null==e?null:e.alias)}}function Tu(n,o){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Events"),t.qZA())}function vu(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.events))}}function Zu(n,o){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Amount (Sats)"),t.qZA())}function Su(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalAmount))}}function Au(n,o){1&n&&(t.TgZ(0,"th",39),t._uU(1,"Fee (Sats)"),t.qZA())}function wu(n,o){if(1&n&&(t.TgZ(0,"td",36)(1,"span",40),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&n){const e=o.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,e.totalFee))}}function Eu(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"No outgoing routing peer available."),t.qZA())}function Iu(n,o){1&n&&(t.TgZ(0,"p"),t._uU(1,"Getting outgoing routing peers..."),t.qZA())}function Fu(n,o){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 qu(n,o){if(1&n&&(t.TgZ(0,"td",41),t.YNc(1,Eu,2,0,"p",42)(2,Iu,2,0,"p",42)(3,Fu,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 Ou(n,o){if(1&n&&t._UZ(0,"tr",43),2&n){const e=t.oxw(2);t.Q6J("ngClass",t.VKq(1,Ht,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function Pu(n,o){1&n&&t._UZ(0,"tr",44)}function ku(n,o){1&n&&t._UZ(0,"tr",45)}const Uu=(n,o)=>({"mt-2":n,"mt-1":o}),Ru=()=>["no_incoming_event"],Mu=n=>({"mt-2":n}),Nu=()=>["no_outgoing_event"];function Du(n,o){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,tu,1,0,"mat-progress-bar",10),t.TgZ(8,"table",11,12),t.ynx(10,13),t.YNc(11,eu,2,0,"th",14)(12,nu,4,4,"td",15),t.BQk(),t.ynx(13,16),t.YNc(14,iu,2,0,"th",14)(15,au,4,4,"td",15),t.BQk(),t.ynx(16,17),t.YNc(17,ou,2,0,"th",18)(18,su,4,3,"td",15),t.BQk(),t.ynx(19,19),t.YNc(20,lu,2,0,"th",18)(21,ru,4,3,"td",15),t.BQk(),t.ynx(22,20),t.YNc(23,cu,2,0,"th",18)(24,uu,4,3,"td",15),t.BQk(),t.ynx(25,21),t.YNc(26,hu,4,3,"td",22),t.BQk(),t.YNc(27,_u,1,3,"tr",23)(28,gu,1,0,"tr",24)(29,fu,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,Cu,1,0,"mat-progress-bar",10),t.TgZ(39,"table",30,31),t.ynx(41,13),t.YNc(42,xu,2,0,"th",14)(43,yu,4,4,"td",15),t.BQk(),t.ynx(44,16),t.YNc(45,bu,2,0,"th",14)(46,Lu,4,4,"td",15),t.BQk(),t.ynx(47,17),t.YNc(48,Tu,2,0,"th",18)(49,vu,4,3,"td",15),t.BQk(),t.ynx(50,19),t.YNc(51,Zu,2,0,"th",18)(52,Su,4,3,"td",15),t.BQk(),t.ynx(53,20),t.YNc(54,Au,2,0,"th",18)(55,wu,4,3,"td",15),t.BQk(),t.ynx(56,32),t.YNc(57,qu,4,3,"td",22),t.BQk(),t.YNc(58,Ou,1,3,"tr",23)(59,Pu,1,0,"tr",24)(60,ku,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(22,Uu,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("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(25,Ru)),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(26,Mu,e.screenSize!==e.screenSizeEnum.LG)),t.xp6(5),t.Q6J("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.xp6(1),t.Q6J("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),t.xp6(19),t.Q6J("matFooterRowDef",t.DdM(28,Nu)),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 Ju=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,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 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(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.PP).pipe((0,h.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(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,i)=>{let a="";return a="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(),a.includes(i)},this.routingPeersOutgoing.filterPredicate=(e,i)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(e).toLowerCase();break;case"total_amount":case"total_fee":a=(+(e[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof e[this.selFilterByOut]?e[this.selFilterByOut].toLowerCase():"boolean"==typeof e[this.selFilterByOut]?e[this.selFilterByOut]?"yes":"no":e[this.selFilterByOut].toString()}return a.includes(i)}}loadRoutingPeersTable(e){if(e.length>0){const i=this.groupRoutingPeers(e);this.routingPeersIncoming=new c.by(i[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.by(i[1]),this.routingPeersOutgoing.sort=this.sortOut,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(e){const i=[],a=[];return e.forEach(s=>{const r=i.find(q=>q.channelId===s.fromChannelId),_=a.find(q=>q.channelId===s.toChannelId);r?(r.events++,r.totalAmount=+r.totalAmount+ +s.amountIn,r.totalFee=s.amountIn-s.amountOut+ +r.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),_?(_.events++,_.totalAmount=+_.totalAmount+ +s.amountOut,_.totalFee=s.amountIn-s.amountOut+ +_.totalFee):a.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(a,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh),t.Y36(Y.i1))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(i,a){if(1&i&&(t.Gf(Wc,5,T.YE),t.Gf(Kc,5,T.YE),t.Gf(Xc,5),t.Gf($c,5)),2&i){let s;t.iGM(s=t.CRH())&&(a.sortIn=s.first),t.iGM(s=t.CRH())&&(a.sortOut=s.first),t.iGM(s=t.CRH())&&(a.paginatorIn=s.first),t.iGM(s=t.CRH())&&(a.paginatorOut=s.first)}},features:[t._Bn([{provide:w.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,"matSortActive","matSortDirection","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,"matSortActive","matSortDirection","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(i,a){1&i&&(t.TgZ(0,"div",0),t.YNc(1,jc,2,1,"div",1)(2,Du,63,29,"div",2),t.qZA()),2&i&&(t.xp6(1),t.Q6J("ngIf",""!==a.errorMessage),t.xp6(1),t.Q6J("ngIf",""===a.errorMessage))},dependencies:[u.mk,u.O5,u.PC,d.xw,d.Wh,d.yH,v.oO,v.Zl,J.pW,T.YE,T.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,w.NW,P.$V,u.JJ]})}return n})();function Hu(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",8),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.activeLink=s.link)}),t._uU(1),t.qZA()}if(2&n){const e=o.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let Qu=(()=>{class n{constructor(e){this.router=e,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 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,h.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof y.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(y.F0))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-reports"]],decls:12,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,Hu,2,3,"div",6),t.qZA(),t._UZ(9,"mat-tab-nav-panel",null,7)(11,"router-outlet"),t.qZA()()()),2&i){const s=t.MAs(10);t.xp6(1),t.Q6J("icon",a.faChartBar),t.xp6(6),t.Q6J("tabPanel",s),t.xp6(1),t.Q6J("ngForOf",a.links)}},dependencies:[u.sg,E.BN,d.xw,d.Wh,L.a8,L.dn,F.BU,F.sW,F.Nj,y.lC,y.rH]})}return n})();var Qt=g(25),Bt=g(1948);function Bu(n,o){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 Vu(n,o){1&n&&(t.TgZ(0,"div",14),t._uU(1,"No routing report for the selected period"),t.qZA())}function Yu(n,o){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=o.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 zu(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"ngx-charts-bar-vertical",15),t.NdJ("select",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onChartBarSelected(a))})("mouseup",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onChartMouseUp(a))}),t.YNc(1,Yu,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 Gu(n,o){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 Wu=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,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(f.PP).pipe((0,h.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,h.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 a=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(r=>{Math.floor((r.timestamp||0)/1e3)>=a&&Math.floor((r.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){const i=Math.round(e.getTime()/1e3),a=[];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 s=0;s<12;s++)a.push({name:l.gg[s].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}prepareEventsReport(e){const i=Math.round(e.getTime()/1e3),a=[];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 s=0;s<12;s++)a.push({name:l.gg[s].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(i,a){1&i&&t.NdJ("mouseup",function(r){return a.onChartMouseUp(r)})},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 center",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(i,a){1&i&&(t.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),t.NdJ("stepChanged",function(r){return a.onSelectionChange(r)}),t.qZA(),t.TgZ(2,"div",2)(3,"mat-radio-group",3),t.NdJ("ngModelChange",function(r){return a.selReportBy=r})("change",function(){return a.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,Bu,4,8,"div",8)(12,Vu,2,0,"div",9),t.TgZ(13,"div",10),t.YNc(14,zu,3,11,"ngx-charts-bar-vertical",11),t.qZA(),t.TgZ(15,"div",10),t.YNc(16,Gu,1,4,"rtl-ecl-forwarding-history",12),t.qZA()()()),2&i&&(t.xp6(3),t.Q6J("ngModel",a.selReportBy),t.xp6(3),t.s9C("value",a.reportBy.FEES),t.xp6(2),t.s9C("value",a.reportBy.EVENTS),t.xp6(3),t.Q6J("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.xp6(1),t.Q6J("ngIf",a.routingReportData.length<=0||a.filteredEventsBySelectedPeriod.length<=0),t.xp6(2),t.Q6J("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.xp6(2),t.Q6J("ngIf",a.filteredEventsBySelectedPeriod.length>0))},dependencies:[u.O5,m.JJ,m.On,d.xw,d.Wh,d.yH,it.VQ,it.U0,Qt.K$,Bt.D,Jt,u.JJ],data:{animation:[Ct.J]}})}return n})();var Ku=g(5362);function Xu(n,o){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 $u(n,o){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 ju(n,o){if(1&n&&(t.TgZ(0,"div",8),t.YNc(1,Xu,4,7,"div",9)(2,$u,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 tp(n,o){1&n&&(t.TgZ(0,"div",11),t._uU(1,"No transactions report for the selected period"),t.qZA())}function ep(n,o){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=o.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 np(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"ngx-charts-bar-vertical-2d",12),t.NdJ("select",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onChartBarSelected(a))})("mouseup",function(a){t.CHM(e);const s=t.oxw();return t.KtG(s.onChartMouseUp(a))}),t.YNc(1,ep,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 ip(n,o){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 ap=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,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(f.nF).pipe((0,h.R)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.c3.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.PP).pipe((0,h.R)(this.unSubs[1]),(0,st.M)(this.store.select(f.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,h.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){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3),r=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const _=this.payments?.filter(x=>x.firstPartTimestamp&&Math.floor(x.firstPartTimestamp/1e3)>=a&&Math.floor(x.firstPartTimestamp/1e3)"received"===x.status&&x.timestamp&&x.timestamp>=a&&x.timestamp{const O=new Date(x.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(x.recipientAmount||0),r[O].series[0].value=r[O].series[0].value+x.recipientAmount,r[O].series[0].extra.total=r[O].series[0].extra.total+1,this.transactionsReportSummary}),q?.map(x=>{const O=new Date(1e3*(x.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(x.amountSettled||0),r[O].series[1].value=r[O].series[1].value+x.amountSettled,r[O].series[1].extra.total=r[O].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let x=0;x{const O=Math.floor((Math.floor((x.firstPartTimestamp||0)/1e3)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(x.recipientAmount||0),r[O].series[0].value=r[O].series[0].value+x.recipientAmount,r[O].series[0].extra.total=r[O].series[0].extra.total+1,this.transactionsReportSummary}),q?.map(x=>{const O=Math.floor(((x.timestamp||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(x.amountSettled||0),r[O].series[1].value=r[O].series[1].value+x.amountSettled,r[O].series[1].extra.total=r[O].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((e,i)=>i.series[0].extra.total>0||i.series[1].extra.total>0?e.concat({date:i.date,amount_paid:i.series[0].value,num_payments:i.series[0].extra.total,amount_received:i.series[1].value,num_invoices:i.series[1].extra.total}):e,[])}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),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()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(R.mQ),t.Y36(M.v),t.Y36(A.yh))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(i,a){1&i&&t.NdJ("mouseup",function(r){return a.onChartMouseUp(r)})},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(i,a){1&i&&(t.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),t.NdJ("stepChanged",function(r){return a.onSelectionChange(r)}),t.qZA(),t.TgZ(2,"div",2),t.YNc(3,ju,3,3,"div",3)(4,tp,2,0,"div",4),t.TgZ(5,"div",5),t.YNc(6,np,3,13,"ngx-charts-bar-vertical-2d",6),t.qZA(),t.TgZ(7,"div",5),t.YNc(8,ip,1,5,"rtl-transactions-report-table",7),t.qZA()()()),2&i&&(t.xp6(3),t.Q6J("ngIf",a.transactionsNonZeroReportData.length>0),t.xp6(1),t.Q6J("ngIf",a.transactionsNonZeroReportData.length<=0),t.xp6(2),t.Q6J("ngIf",a.transactionsNonZeroReportData.length>0),t.xp6(2),t.Q6J("ngIf",a.transactionsNonZeroReportData.length>0))},dependencies:[u.O5,d.xw,d.Wh,d.yH,Qt.H5,Bt.D,Ku.g,u.JJ],data:{animation:[Ct.J]}})}return n})();var U=g(5525),op=g(4740);function sp(n,o){if(1&n){const e=t.EpF();t.TgZ(0,"div",9),t.NdJ("click",function(){const s=t.CHM(e).$implicit,r=t.oxw();return t.KtG(r.activeLink=s.link)}),t._uU(1),t.qZA()}if(2&n){const e=o.$implicit,i=t.oxw();t.s9C("routerLink",e.link),t.Q6J("active",i.activeLink===e.link),t.xp6(1),t.Oqu(e.name)}}let lp=(()=>{class n{constructor(e){this.router=e,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 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,h.R)(this.unSubs[0]),(0,Q.h)(i=>i instanceof y.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.Y36(y.F0))};static#e=this.\u0275cmp=t.Xpm({type:n,selectors:[["rtl-ecl-graph"]],decls:13,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,sp,2,3,"div",6),t.qZA(),t._UZ(9,"mat-tab-nav-panel",null,7),t.TgZ(11,"div",8),t._UZ(12,"router-outlet"),t.qZA()()()()),2&i){const s=t.MAs(10);t.xp6(1),t.Q6J("icon",a.faSearch),t.xp6(6),t.Q6J("tabPanel",s),t.xp6(1),t.Q6J("ngForOf",a.links)}},dependencies:[u.sg,E.BN,d.xw,d.Wh,d.yH,L.a8,L.dn,F.BU,F.sW,F.Nj,y.lC,y.rH]})}return n})();const rp=[{path:"",component:Lt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Ca,canActivate:[(0,U.fY)()]},{path:"onchain",component:so,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:Yo,canActivate:[(0,U.fY)()]},{path:"send",component:zo,canActivate:[(0,U.fY)()]}]},{path:"connections",component:co,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:us,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Wl,canActivate:[(0,U.fY)()]},{path:"pending",component:Er,canActivate:[(0,U.fY)()]},{path:"inactive",component:ac,canActivate:[(0,U.fY)()]}]},{path:"peers",component:o1,data:{sweepAll:!1},canActivate:[(0,U.fY)()]}]},{path:"transactions",component:po,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:St,canActivate:[(0,U.fY)()]},{path:"invoices",component:At,canActivate:[(0,U.fY)()]}]},{path:"routing",component:ho,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Jt,canActivate:[(0,U.fY)()]},{path:"peers",component:Ju,canActivate:[(0,U.fY)()]}]},{path:"reports",component:Qu,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Wu,canActivate:[(0,U.fY)()]},{path:"transactions",component:ap,canActivate:[(0,U.fY)()]}]},{path:"graph",component:lp,canActivate:[(0,U.fY)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Bo,canActivate:[(0,U.fY)()]},{path:"queryroutes",component:y1,canActivate:[(0,U.fY)()]}]},{path:"**",component:op.w}]}],cp=y.Bz.forChild(rp);var up=g(8339);let pp=(()=>{class n{static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275mod=t.oAB({type:n,bootstrap:[Lt]});static#n=this.\u0275inj=t.cJS({imports:[u.ez,up.m,cp]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/570.1e18345ecab5f7fe.js b/frontend/570.1e18345ecab5f7fe.js deleted file mode 100644 index 240500dd..00000000 --- a/frontend/570.1e18345ecab5f7fe.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[570],{4570:(pC,Ie,C)=>{C.r(Ie),C.d(Ie,{LNDModule:()=>rC});var m=C(6814),T=C(4190),rt=C(5256),e=C(9212),_=C(3814),D=C(6007);function ct(n,o){1&n&&e._UZ(0,"mat-progress-bar",3)}let Pe=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof T.OD:this.loading=!0;break;case i instanceof T.m2:case i instanceof T.gk:case i instanceof T.Q3:this.loading=!1}})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0))};static#t=this.\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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,ct,1,0,"mat-progress-bar",1),e._UZ(2,"router-outlet",null,2),e.qZA()),2&i&&(e.xp6(1),e.Q6J("ngIf",a.loading))},dependencies:[m.O5,_.xw,_.Wh,_.yH,D.pW,T.lC],data:{animation:[rt.g]}})}return n})();var u=C(8645),d=C(9773),B=C(2181),Re=C(1449),y=C(590),l=C(2154),f=C(7321),U=C(5980),q=C(4221),W=C(5154),I=C(6339),J=C(5597),F=C(7509),O=C(2296),Z=C(5195),_e=C(3176),ne=C(617),Te=C(7988),P=C(4104),k=C(1476),A=C(3566),c=C(5313),Q=C(7700),v=C(9191),p=C(6223),R=C(2032),g=C(5683),w=C(8525),E=C(3680),de=C(2599),X=C(2596),K=C(6985),ee=C(6082);function pt(n,o){if(1&n&&(e.TgZ(0,"mat-option",28),e._uU(1),e.ALo(2,"titlecase"),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(e.lcZ(2,2,t))}}function ut(n,o){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 mt(n,o){if(1&n&&(e.TgZ(0,"div",29),e._UZ(1,"fa-icon",30),e.YNc(2,ut,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 _t=(()=>{class n{constructor(t,i,a,s,r,h){this.dialogRef=t,this.data=i,this.store=a,this.decimalPipe=s,this.commonService=r,this.actions=h,this.faExclamationTriangle=y.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 u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,d.R)(this.unSubs[2]),(0,B.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:l.$Y,this.store.dispatch((0,v.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,d.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(q.yh),e.Y36(m.JJ),e.Y36(I.v),e.Y36(W.eX))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-create-invoices"]],decls:50,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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","tabindex","1","name","memo",3,"ngModel","ngModelChange"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invoiceValue",3,"step","min","ngModel","ngModelChange","keyup"],["matSuffix",""],["fxLayout","column","fxFlex","24","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","expiry",3,"step","min","ngModel","ngModelChange"],["tabindex","4","name","timeUnit",3,"value","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"ml-2"],["fxFlex","49","fxLayoutAlign","start start"],["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"],["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(i,a){if(1&i){const s=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,"mat-label"),e._uU(13,"Memo"),e.qZA(),e.TgZ(14,"input",10),e.NdJ("ngModelChange",function(h){return a.memo=h}),e.qZA()(),e.TgZ(15,"mat-form-field",11)(16,"mat-label"),e._uU(17,"Amount"),e.qZA(),e.TgZ(18,"input",12),e.NdJ("ngModelChange",function(h){return a.invoiceValue=h})("keyup",function(){return a.onInvoiceValueChange()}),e.qZA(),e.TgZ(19,"span",13),e._uU(20," Sats "),e.qZA(),e.TgZ(21,"mat-hint"),e._uU(22),e.qZA()(),e.TgZ(23,"mat-form-field",14)(24,"mat-label"),e._uU(25,"Expiry"),e.qZA(),e.TgZ(26,"input",15),e.NdJ("ngModelChange",function(h){return a.expiry=h}),e.qZA(),e.TgZ(27,"span",13),e._uU(28),e.ALo(29,"titlecase"),e.qZA()(),e.TgZ(30,"mat-form-field",14)(31,"mat-select",16),e.NdJ("selectionChange",function(h){return a.onTimeUnitChange(h)}),e.YNc(32,pt,3,4,"mat-option",17),e.qZA()(),e.TgZ(33,"div",18)(34,"div",19)(35,"mat-slide-toggle",20),e.NdJ("ngModelChange",function(h){return a.private=h}),e._uU(36,"Private Routing Hints"),e.qZA(),e.TgZ(37,"mat-icon",21),e._uU(38,"info_outline"),e.qZA()(),e.TgZ(39,"div",19)(40,"mat-slide-toggle",22),e.NdJ("ngModelChange",function(h){return a.isAmp=h}),e._uU(41,"AMP Invoice"),e.qZA(),e.TgZ(42,"mat-icon",23),e._uU(43,"info_outline"),e.qZA()()(),e.YNc(44,mt,3,2,"div",24),e.TgZ(45,"div",25)(46,"button",26),e.NdJ("click",function(){return a.resetData()}),e._uU(47,"Clear Field"),e.qZA(),e.TgZ(48,"button",27),e.NdJ("click",function(){e.CHM(s);const h=e.MAs(10);return e.KtG(a.onAddInvoice(h))}),e._uU(49,"Create Invoice"),e.qZA()()()()()()}2&i&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(8),e.Q6J("ngModel",a.memo),e.xp6(4),e.Q6J("step",100)("min",1)("ngModel",a.invoiceValue),e.xp6(4),e.Oqu(a.invoiceValueHint),e.xp6(4),e.Q6J("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1)("ngModel",a.expiry),e.xp6(2),e.hij("",e.lcZ(29,15,a.selTimeUnit)," "),e.xp6(3),e.Q6J("value",a.selTimeUnit),e.xp6(1),e.Q6J("ngForOf",a.timeUnits),e.xp6(3),e.Q6J("ngModel",a.private),e.xp6(5),e.Q6J("ngModel",a.isAmp),e.xp6(4),e.Q6J("ngIf",""!==a.invoiceError))},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.qQ,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,Q.ZT,O.lW,Z.dn,Z.dk,ne.Hw,R.Nt,g.KE,g.hX,g.bx,g.R9,w.gD,E.ey,de.Rr,X.gM,K.h,ee.q,m.rS]})}return n})();var dt=C(5456),L=C(9103),G=C(2995),M=C(2159);function ht(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"mat-label"),e._uU(4,"Memo"),e.qZA(),e.TgZ(5,"input",7),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.memo=a)}),e.qZA()(),e.TgZ(6,"mat-form-field",8)(7,"mat-label"),e._uU(8,"Amount"),e.qZA(),e.TgZ(9,"input",9),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.invoiceValue=a)})("keyup",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onInvoiceValueChange())}),e.qZA(),e.TgZ(10,"span",10),e._uU(11," Sats "),e.qZA(),e.TgZ(12,"mat-hint"),e._uU(13),e.qZA()(),e.TgZ(14,"div",11)(15,"button",12),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.resetData())}),e._uU(16,"Clear Field"),e.qZA(),e.TgZ(17,"button",13),e.NdJ("click",function(){e.CHM(t);const a=e.MAs(1),s=e.oxw();return e.KtG(s.onAddInvoice(a))}),e._uU(18,"Create Invoice"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(5),e.Q6J("ngModel",t.memo),e.xp6(4),e.Q6J("step",100)("min",1)("ngModel",t.invoiceValue),e.xp6(4),e.Oqu(t.invoiceValueHint)}}function gt(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",14)(1,"button",15),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.openCreateInvoiceModal())}),e._uU(2,"Create Invoice"),e.qZA()()}}function ft(n,o){if(1&n&&(e.TgZ(0,"mat-option",64),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function Ct(n,o){1&n&&e._UZ(0,"mat-progress-bar",65)}function xt(n,o){1&n&&e._UZ(0,"th",66)}const he=n=>({"mr-0":n});function yt(n,o){if(1&n&&e._UZ(0,"span",72),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,he,t.screenSize===t.screenSizeEnum.XS))}}function Tt(n,o){if(1&n&&e._UZ(0,"span",73),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,he,t.screenSize===t.screenSizeEnum.XS))}}function bt(n,o){if(1&n&&e._UZ(0,"span",74),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,he,t.screenSize===t.screenSizeEnum.XS))}}function Zt(n,o){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,he,t.screenSize===t.screenSizeEnum.XS))}}function vt(n,o){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,yt,1,3,"span",68)(2,Tt,1,3,"span",69)(3,bt,1,3,"span",70)(4,Zt,1,3,"span",71),e.qZA()),2&n){const t=o.$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 At(n,o){1&n&&e._UZ(0,"th",76)}function St(n,o){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 wt(n,o){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 Lt(n,o){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,St,2,1,"span",77)(2,wt,2,1,"span",78),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf",t.private),e.xp6(1),e.Q6J("ngIf",!t.private)}}function qt(n,o){1&n&&e._UZ(0,"th",82)}function Ft(n,o){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 kt(n,o){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 Ut(n,o){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,Ft,2,1,"span",83)(2,kt,2,1,"span",84),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf",t.is_keysend),e.xp6(1),e.Q6J("ngIf",!t.is_keysend)}}function Ot(n,o){1&n&&e._UZ(0,"th",87)}function Nt(n,o){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 It(n,o){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 Pt(n,o){if(1&n&&(e.TgZ(0,"td",67),e.YNc(1,Nt,2,1,"span",88)(2,It,2,1,"span",89),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf",!t.is_amp),e.xp6(1),e.Q6J("ngIf",t.is_amp)}}function Rt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Date Created"),e.qZA())}function Mt(n,o){if(1&n&&(e.TgZ(0,"td",67),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function Jt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Date Settled"),e.qZA())}function Dt(n,o){if(1&n&&(e.TgZ(0,"td",67),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=o.$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 Qt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Memo"),e.qZA())}const ae=n=>({width:n});function Et(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.memo)}}function Bt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Preimage"),e.qZA())}function Ht(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.r_preimage)}}function Yt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Preimage Hash"),e.qZA())}function Gt(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.r_hash)}}function Vt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Payment Address"),e.qZA())}function zt(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_addr)}}function Wt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Payment Request"),e.qZA())}function Xt(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_request)}}function Kt(n,o){1&n&&(e.TgZ(0,"th",92),e._uU(1,"Description Hash"),e.qZA())}function $t(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"div",93)(2,"span",94),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description_hash)}}function jt(n,o){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Expiry"),e.qZA())}function en(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.expiry)," ")}}function tn(n,o){1&n&&(e.TgZ(0,"th",95),e._uU(1,"CLTV Expiry"),e.qZA())}function nn(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.cltv_expiry)," ")}}function an(n,o){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Add Index"),e.qZA())}function on(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.add_index)," ")}}function sn(n,o){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Settle Index"),e.qZA())}function ln(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.settle_index)," ")}}function rn(n,o){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Amount (Sats)"),e.qZA())}function cn(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.value)," ")}}function pn(n,o){1&n&&(e.TgZ(0,"th",95),e._uU(1,"Amount Settled (Sats)"),e.qZA())}function un(n,o){if(1&n&&(e.TgZ(0,"td",67)(1,"span",96),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.amt_paid_sat)," ")}}function mn(n,o){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(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function _n(n,o){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,r=e.oxw(2);return e.KtG(r.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,r=e.oxw(2);return e.KtG(r.onRefreshInvoice(s))}),e._uU(7,"Refresh"),e.qZA()()()()}}function dn(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No invoice available."),e.qZA())}function hn(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting invoices..."),e.qZA())}function gn(n,o){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 fn(n,o){if(1&n&&(e.TgZ(0,"td",103),e.YNc(1,dn,2,0,"p",104)(2,hn,2,0,"p",104)(3,gn,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 Cn=n=>({"display-none":n});function xn(n,o){if(1&n&&e._UZ(0,"tr",105),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,Cn,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function yn(n,o){1&n&&e._UZ(0,"tr",106)}function Tn(n,o){1&n&&e._UZ(0,"tr",107)}const bn=()=>["all"],Zn=n=>({"error-border":n}),vn=()=>["no_invoice"];function An(n,o){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-label"),e._uU(9,"Filter By"),e.qZA(),e.TgZ(10,"mat-select",23),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selFilterBy=a)})("selectionChange",function(){e.CHM(t);const a=e.oxw();return a.selFilter="",e.KtG(a.applyFilter())}),e.TgZ(11,"perfect-scrollbar"),e.YNc(12,ft,2,2,"mat-option",24),e.qZA()()(),e.TgZ(13,"mat-form-field",22)(14,"mat-label"),e._uU(15,"Filter"),e.qZA(),e.TgZ(16,"input",25),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selFilter=a)})("input",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.applyFilter())})("keyup",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.applyFilter())}),e.qZA()()()(),e.TgZ(17,"div",26),e.YNc(18,Ct,1,0,"mat-progress-bar",27),e.TgZ(19,"table",28,29),e.ynx(21,30),e.YNc(22,xt,1,0,"th",31)(23,vt,5,4,"td",32),e.BQk(),e.ynx(24,33),e.YNc(25,At,1,0,"th",34)(26,Lt,3,2,"td",32),e.BQk(),e.ynx(27,35),e.YNc(28,qt,1,0,"th",36)(29,Ut,3,2,"td",32),e.BQk(),e.ynx(30,37),e.YNc(31,Ot,1,0,"th",38)(32,Pt,3,2,"td",32),e.BQk(),e.ynx(33,39),e.YNc(34,Rt,2,0,"th",40)(35,Mt,3,4,"td",32),e.BQk(),e.ynx(36,41),e.YNc(37,Jt,2,0,"th",40)(38,Dt,3,4,"td",32),e.BQk(),e.ynx(39,42),e.YNc(40,Qt,2,0,"th",40)(41,Et,4,4,"td",32),e.BQk(),e.ynx(42,43),e.YNc(43,Bt,2,0,"th",40)(44,Ht,4,4,"td",32),e.BQk(),e.ynx(45,44),e.YNc(46,Yt,2,0,"th",40)(47,Gt,4,4,"td",32),e.BQk(),e.ynx(48,45),e.YNc(49,Vt,2,0,"th",40)(50,zt,4,4,"td",32),e.BQk(),e.ynx(51,46),e.YNc(52,Wt,2,0,"th",40)(53,Xt,4,4,"td",32),e.BQk(),e.ynx(54,47),e.YNc(55,Kt,2,0,"th",40)(56,$t,4,4,"td",32),e.BQk(),e.ynx(57,48),e.YNc(58,jt,2,0,"th",49)(59,en,4,3,"td",32),e.BQk(),e.ynx(60,50),e.YNc(61,tn,2,0,"th",49)(62,nn,4,3,"td",32),e.BQk(),e.ynx(63,51),e.YNc(64,an,2,0,"th",49)(65,on,4,3,"td",32),e.BQk(),e.ynx(66,52),e.YNc(67,sn,2,0,"th",49)(68,ln,4,3,"td",32),e.BQk(),e.ynx(69,53),e.YNc(70,rn,2,0,"th",49)(71,cn,4,3,"td",32),e.BQk(),e.ynx(72,54),e.YNc(73,pn,2,0,"th",49)(74,un,4,3,"td",32),e.BQk(),e.ynx(75,55),e.YNc(76,mn,6,0,"th",56)(77,_n,8,0,"td",57),e.BQk(),e.ynx(78,58),e.YNc(79,fn,4,3,"td",59),e.BQk(),e.YNc(80,xn,1,3,"tr",60)(81,yn,1,0,"tr",61)(82,Tn,1,0,"tr",62),e.qZA(),e.TgZ(83,"mat-paginator",63),e.NdJ("page",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onPageChange(a))}),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("icon",t.faHistory),e.xp6(7),e.Q6J("ngModel",t.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(16,bn).concat(t.displayedColumns.slice(0,-1))),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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",e.VKq(17,Zn,""!==t.errorMessage)),e.xp6(61),e.Q6J("matFooterRowDef",e.DdM(19,vn)),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 Me=(()=>{class n{constructor(t,i,a,s,r,h,b){this.logger=t,this.store=i,this.decimalPipe=a,this.commonService=s,this.datePipe=r,this.actions=h,this.camelCaseWithReplace=b,this.calledFrom="transactions",this.faEye=y.Mdf,this.faEyeSlash=y.Aq,this.faHistory=y.qO$,this.faArrowsTurnToDots=y.Pyt,this.faArrowsTurnRight=y.d63,this.faBurst=y.Vei,this.faMoneyBill1=y.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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Ef).pipe((0,d.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,d.R)(this.unSubs[4]),(0,B.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&&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:l.$Y;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,v.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:dt.v}}}))}onRefreshInvoice(t){t&&t.r_hash&&this.store.dispatch((0,v.n7)({payload:{openSnackBar:!0,paymentHash:Buffer.from(t.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(t){this.invoicesData=this.invoicesData?.map(i=>i.r_hash===t.r_hash?t:i)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.settle_date?this.datePipe.transform(new Date(1e3*t.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"creation_date":case"settle_date":a=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":a=t?.private?"private":"public";break;case"is_keysend":a=t?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":a=t?.is_amp?"atomic multi path payment":"non atomic payment";break;default:a=typeof t[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadInvoicesTable(t){this.invoices=new c.by(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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,a=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(i=!0,a=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(i=!0,a=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(i=!1,a=0),this.store.dispatch((0,v.WM)({payload:{num_max_invoices:t.pageSize,index_offset:a,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,d.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:_t}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(m.JJ),e.Y36(I.v),e.Y36(m.uU),e.Y36(W.eX),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","tabindex","1","name","memo",3,"ngModel","ngModelChange"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invValue",3,"step","min","ngModel","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,ht,19,5,"form",1)(2,gt,3,0,"div",2)(3,An,84,20,"div",3),e.qZA()),2&i&&(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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.qQ,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,g.bx,g.R9,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,X.gM,k.NW,M.Vv,M.$V,ee.q,m.JJ,m.uU],styles:[".mat-column-state[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();var z=C(8180),te=C(6046),H=C(3305),oe=C(4630);const Sn=["paymentReq"];function wn(n,o){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 Ln(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment request is required."),e.qZA())}function qn(n,o){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 Fn(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment amount is required."),e.qZA())}function kn(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",1)(1,"mat-label"),e._uU(2,"Amount (Sats)"),e.qZA(),e.TgZ(3,"input",30,31),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.paymentAmount=a)})("change",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onAmountChange(a))}),e.qZA(),e.TgZ(5,"mat-hint"),e._uU(6,"It is a zero amount invoice, enter amount to be paid."),e.qZA(),e.YNc(7,Fn,2,0,"mat-error",12),e.qZA()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("ngModel",t.paymentAmount),e.xp6(4),e.Q6J("ngIf",!t.paymentAmount)}}function Un(n,o){if(1&n&&(e.TgZ(0,"mat-option",32),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",null==t?null:t.name," ")}}function On(n,o){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 Nn(n,o){if(1&n&&(e.TgZ(0,"mat-option",32),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function In(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Channel not found in the list."),e.qZA())}function Pn(n,o){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 Rn(n,o){if(1&n&&(e.TgZ(0,"div",33),e._UZ(1,"fa-icon",34),e.YNc(2,Pn,2,1,"span",12),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 Mn=(()=>{class n{constructor(t,i,a,s,r,h,b){this.dialogRef=t,this.store=i,this.logger=a,this.commonService=s,this.decimalPipe=r,this.actions=h,this.dataService=b,this.faExclamationTriangle=y.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 p.p4,this.feeLimit=null,this.selFeeLimitType=l.Vc[0],this.feeLimitTypes=l.Vc,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new u.x,new u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(a=>{this.selNode=a}),this.store.select(f.ZW).pipe((0,d.R)(this.unSubs[1])).subscribe(a=>{this.activeChannels=a.channels&&a.channels.length?a.channels?.filter(s=>s.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(a)}),this.actions.pipe((0,d.R)(this.unSubs[2]),(0,B.h)(a=>a.type===l.uR.UPDATE_API_CALL_STATUS_LND||a.type===l.uR.SEND_PAYMENT_STATUS_LND)).subscribe(a=>{a.type===l.uR.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),a.type===l.uR.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.Bn.ERROR&&"SendPayment"===a.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=a.payload.message)});let t="",i="";this.activeChannels=this.activeChannels.sort((a,s)=>(t=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.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,d.R)(this.unSubs[3])).subscribe(a=>{"string"==typeof a&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(t=>0===(t.remote_alias?t.remote_alias.toLowerCase():t.chan_id?t.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(t.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(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const t=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(i=>{const a=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"";return a.length===this.selectedChannelCtrl.value.length&&0===a.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];t&&t.length>0?(this.selectedChannelCtrl.setValue(t[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(){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,v.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=this.paymentAmount?.toString()||"",this.store.dispatch((0,v.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: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,d.R)(this.unSubs[4])).subscribe({next:a=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats ("+a.symbol+" "+this.decimalPipe.transform(a.OTHER?a.OTHER:0,l.Xz.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:a=>{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 a=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)+(""!==a?" | First Outgoing Channel: "+a:"")}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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(q.yh),e.Y36(U.mQ),e.Y36(I.v),e.Y36(m.JJ),e.Y36(W.eX),e.Y36(te.D))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(i,a){if(1&i&&e.Gf(Sn,5),2&i){let s;e.iGM(s=e.CRH())&&(a.paymentReq=s.first)}},decls:51,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 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"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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"],["fxLayout","column","fxFlex","27","fxLayoutAlign","start end"],["tabindex","5",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","33"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"step","min","disabled","ngModel","ngModelChange"],["fLmt","ngModel"],["fxLayout","column","fxFlex","37","fxLayoutAlign","start end"],["type","text","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","","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(i,a){if(1&i&&(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",9)(12,"mat-label"),e._uU(13,"Payment Request"),e.qZA(),e.TgZ(14,"textarea",10,11),e.NdJ("ngModelChange",function(r){return a.onPaymentRequestEntry(r)})("matTextareaAutosize",function(){return!0}),e.qZA(),e.YNc(16,wn,2,1,"mat-hint",12)(17,Ln,2,0,"mat-error",12)(18,qn,2,1,"mat-error",12),e.qZA(),e.YNc(19,kn,8,2,"mat-form-field",13),e.TgZ(20,"mat-expansion-panel",14),e.NdJ("closed",function(){return a.onAdvancedPanelToggle(!0,!1)})("opened",function(){return a.onAdvancedPanelToggle(!1,!1)}),e.TgZ(21,"mat-expansion-panel-header")(22,"mat-panel-title")(23,"span"),e._uU(24),e.qZA()()(),e.TgZ(25,"div",15)(26,"mat-form-field",16)(27,"mat-label"),e._uU(28,"Fee Limits"),e.qZA(),e.TgZ(29,"mat-select",17),e.NdJ("valueChange",function(r){return a.selFeeLimitType=r}),e.YNc(30,Un,2,2,"mat-option",18),e.qZA()(),e.TgZ(31,"mat-form-field",19)(32,"mat-label"),e._uU(33),e.qZA(),e.TgZ(34,"input",20,21),e.NdJ("ngModelChange",function(r){return a.feeLimit=r}),e.qZA(),e.YNc(36,On,2,1,"mat-error",12),e.qZA(),e.TgZ(37,"mat-form-field",22)(38,"mat-label"),e._uU(39,"First Outgoing Channel"),e.qZA(),e._UZ(40,"input",23),e.TgZ(41,"mat-autocomplete",24,25),e.NdJ("optionSelected",function(){return a.onSelectedChannelChanged()}),e.YNc(43,Nn,2,2,"mat-option",18),e.qZA(),e.YNc(44,In,2,0,"mat-error",12),e.qZA()()(),e.YNc(45,Rn,3,2,"div",26),e.TgZ(46,"div",27)(47,"button",28),e.NdJ("click",function(){return a.resetData()}),e._uU(48,"Clear Fields"),e.qZA(),e.TgZ(49,"button",29),e.NdJ("click",function(){return a.onSendPayment()}),e._uU(50,"Send Payment"),e.qZA()()()()()()),2&i){const s=e.MAs(15),r=e.MAs(42);e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(8),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==s.errors?null:s.errors.decodeError),e.xp6(1),e.Q6J("ngIf",a.zeroAmtInvoice),e.xp6(5),e.Oqu(a.advancedTitle),e.xp6(5),e.Q6J("value",a.selFeeLimitType),e.xp6(1),e.Q6J("ngForOf",a.feeLimitTypes),e.xp6(3),e.Oqu(null==a.selFeeLimitType?null:a.selFeeLimitType.placeholder),e.xp6(1),e.Q6J("step",1)("min",0)("disabled",a.selFeeLimitType===a.feeLimitTypes[0])("ngModel",a.feeLimit),e.xp6(2),e.Q6J("ngIf",a.selFeeLimitType!==a.feeLimitTypes[0]&&!a.feeLimit),e.xp6(4),e.Q6J("formControl",a.selectedChannelCtrl)("matAutocomplete",r),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)}},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.qQ,p.On,p.F,p.oH,J.BN,_.xw,_.Wh,_.yH,Q.ZT,O.lW,Z.dn,Z.dk,H.ib,H.yz,H.yK,R.Nt,g.KE,g.hX,g.bx,g.TO,w.gD,E.ey,oe.XC,oe.ZL,K.h,ee.q]})}return n})();var pe=C(2703);const Jn=["sendPaymentForm"];function Dn(n,o){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 Qn(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Payment request is required."),e.qZA())}function En(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"form",4,5)(2,"mat-form-field",6)(3,"mat-label"),e._uU(4,"Payment Request"),e.qZA(),e.TgZ(5,"textarea",7,8),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return!0}),e.qZA(),e.YNc(7,Dn,2,1,"mat-hint",9)(8,Qn,2,0,"mat-error",9),e.qZA(),e.TgZ(9,"div",10)(10,"button",11),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.resetData())}),e._uU(11,"Clear Field"),e.qZA(),e.TgZ(12,"button",12),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSendPayment())}),e._uU(13,"Send Payment"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(5),e.Q6J("ngModel",t.paymentRequest),e.xp6(2),e.Q6J("ngIf",t.paymentRequest&&""!==t.paymentDecodedHint),e.xp6(1),e.Q6J("ngIf",!t.paymentRequest)}}function Bn(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",13)(1,"button",14),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.openSendPaymentModal())}),e._uU(2,"Send Payment"),e.qZA()()}}function Hn(n,o){if(1&n&&(e.TgZ(0,"mat-option",69),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function Yn(n,o){1&n&&e._UZ(0,"mat-progress-bar",70)}function Gn(n,o){1&n&&e._UZ(0,"th",71)}const se=n=>({"mr-0":n});function Vn(n,o){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,se,t.screenSize===t.screenSizeEnum.XS))}}function zn(n,o){if(1&n&&e._UZ(0,"span",76),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,se,t.screenSize===t.screenSizeEnum.XS))}}function Wn(n,o){if(1&n&&(e.TgZ(0,"td",72),e.YNc(1,Vn,1,3,"span",73)(2,zn,1,3,"span",74),e.qZA()),2&n){const t=o.$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 Xn(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Creation Date"),e.qZA())}function Kn(n,o){if(1&n&&(e.TgZ(0,"td",72),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function $n(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Payment Hash"),e.qZA())}const j=n=>({width:n});function jn(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_hash)}}function ei(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Payment Request"),e.qZA())}function ti(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_request)}}function ni(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Payment Preimage"),e.qZA())}function ii(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.payment_preimage)}}function ai(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Description"),e.qZA())}function oi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description)}}function si(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Description Hash"),e.qZA())}function li(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",78)(2,"span",79),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,j,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.description_hash)}}function ri(n,o){1&n&&(e.TgZ(0,"th",77),e._uU(1,"Failure Reason"),e.qZA())}function ci(n,o){if(1&n&&(e.TgZ(0,"td",72),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.Dn7(2,1,null==t?null:t.failure_reason,"failure_reason","_")," ")}}function pi(n,o){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Payment Index"),e.qZA())}function ui(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.payment_index))}}function mi(n,o){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Fee (Sats)"),e.qZA())}function _i(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.fee))}}function di(n,o){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Value (Sats)"),e.qZA())}function hi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.value))}}function gi(n,o){1&n&&(e.TgZ(0,"th",80),e._uU(1,"Hops"),e.qZA())}function fi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",81),e._uU(2),e.qZA()()),2&n){const t=o.$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 Ci(n,o){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(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function xi(n,o){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,r=e.oxw(2);return e.KtG(r.onPaymentClick(s))}),e._uU(2,"View Info"),e.qZA()()}}function yi(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No payment available."),e.qZA())}function Ti(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting payments..."),e.qZA())}function bi(n,o){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 Zi(n,o){if(1&n&&(e.TgZ(0,"td",88),e.YNc(1,yi,2,0,"p",9)(2,Ti,2,0,"p",9)(3,bi,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 vi(n,o){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,se,t.screenSize===t.screenSizeEnum.XS))}}function Ai(n,o){if(1&n&&e._UZ(0,"span",76),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,se,t.screenSize===t.screenSizeEnum.XS))}}function Si(n,o){if(1&n&&e._UZ(0,"span",75),2&n){const t=e.oxw(5);e.Q6J("ngClass",e.VKq(1,se,t.screenSize===t.screenSizeEnum.XS))}}function wi(n,o){if(1&n&&e._UZ(0,"span",76),2&n){const t=e.oxw(5);e.Q6J("ngClass",e.VKq(1,se,t.screenSize===t.screenSizeEnum.XS))}}function Li(n,o){if(1&n&&(e.TgZ(0,"span",89),e.YNc(1,Si,1,3,"span",73)(2,wi,1,3,"span",74),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf","SUCCEEDED"===t.status),e.xp6(1),e.Q6J("ngIf","SUCCEEDED"!==t.status)}}function qi(n,o){if(1&n&&(e.ynx(0),e.YNc(1,Li,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 Fi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",89),e.YNc(2,vi,1,3,"span",73)(3,Ai,1,3,"span",74),e.qZA(),e.YNc(4,qi,2,1,"ng-container",9),e.qZA()),2&n){const t=o.$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 ki(n,o){if(1&n&&(e.TgZ(0,"span",89),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,t.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function Ui(n,o){if(1&n&&(e.ynx(0),e.YNc(1,ki,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 Oi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",89),e._uU(2),e.qZA(),e.YNc(3,Ui,2,1,"ng-container",9),e.qZA()),2&n){const t=o.$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 Ni(n,o){if(1&n&&(e.TgZ(0,"span",89),e._uU(1),e.qZA()),2&n){const t=o.index;e.xp6(1),e.hij(" HTLC ",t+1," ")}}function Ii(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Ni,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 Pi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Ii,2,1,"span",9),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Ri(n,o){1&n&&e._UZ(0,"span",89)}function Mi(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Ri,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 Ji(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Mi,2,1,"span",9),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Di(n,o){if(1&n&&(e.TgZ(0,"span",89),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.preimage," ")}}function Qi(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Di,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 Ei(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Qi,2,1,"span",9),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Bi(n,o){1&n&&e._UZ(0,"span",89)}function Hi(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Bi,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 Yi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Hi,2,1,"span",9),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Gi(n,o){1&n&&e._UZ(0,"span",89)}function Vi(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Gi,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 zi(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",91)(2,"span",79),e._uU(3),e.qZA()(),e.YNc(4,Vi,2,1,"span",9),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(3,j,i.screenSize===i.screenSizeEnum.XS?"6rem":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 Wi(n,o){1&n&&e._UZ(0,"span",89)}function Xi(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,Wi,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 Ki(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",89),e._uU(2),e.ALo(3,"camelcaseWithReplace"),e.qZA(),e.YNc(4,Xi,2,1,"span",9),e.qZA()),2&n){const t=o.$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 $i(n,o){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,t.attempt_id)," ")}}function ji(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,$i,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 ea(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,ji,2,1,"span",9),e.qZA()),2&n){const t=o.$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 ta(n,o){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function na(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,ta,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 ia(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,na,2,1,"span",9),e.qZA()),2&n){const t=o.$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 aa(n,o){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function oa(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,aa,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 sa(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2),e.ALo(3,"number"),e.qZA(),e.YNc(4,oa,2,1,"span",9),e.qZA()),2&n){const t=o.$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 la(n,o){if(1&n&&(e.TgZ(0,"span",92),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$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 ra(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,la,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 ca(n,o){if(1&n&&(e.TgZ(0,"td",72)(1,"span",92),e._uU(2,"-"),e.qZA(),e.YNc(3,ra,2,1,"span",9),e.qZA()),2&n){const t=o.$implicit;e.xp6(3),e.Q6J("ngIf",null==t?null:t.is_expanded)}}function pa(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",97)(1,"button",98),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2).$implicit,h=e.oxw(2);return e.KtG(h.onHTLCClick(s,r))}),e._uU(2),e.qZA()()}if(2&n){const t=o.index;e.xp6(2),e.hij("View ",t+1,"")}}function ua(n,o){if(1&n&&(e.TgZ(0,"div"),e.YNc(1,pa,3,1,"div",96),e.qZA()),2&n){const t=e.oxw().$implicit;e.xp6(1),e.Q6J("ngForOf",null==t?null:t.htlcs)}}function ma(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",72)(1,"span",94)(2,"button",95),e.NdJ("click",function(){const s=e.CHM(t).$implicit;return e.KtG(s.is_expanded=!(null!=s&&s.is_expanded))}),e._uU(3),e.qZA()(),e.YNc(4,ua,2,1,"div",9),e.qZA()}if(2&n){const t=o.$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 _a(n,o){1&n&&e._UZ(0,"tr",99)}const da=n=>({"display-none":n});function ha(n,o){if(1&n&&e._UZ(0,"tr",100),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,da,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function ga(n,o){1&n&&e._UZ(0,"tr",101)}function fa(n,o){1&n&&e._UZ(0,"tr",99)}const Ca=()=>["all"],xa=n=>({"error-border":n}),ya=()=>["no_payment"];function Ta(n,o){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-label"),e._uU(9,"Filter By"),e.qZA(),e.TgZ(10,"mat-select",22),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selFilterBy=a)})("selectionChange",function(){e.CHM(t);const a=e.oxw();return a.selFilter="",e.KtG(a.applyFilter())}),e.TgZ(11,"perfect-scrollbar"),e.YNc(12,Hn,2,2,"mat-option",23),e.qZA()()(),e.TgZ(13,"mat-form-field",21)(14,"mat-label"),e._uU(15,"Filter"),e.qZA(),e.TgZ(16,"input",24),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selFilter=a)})("input",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.applyFilter())})("keyup",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.applyFilter())}),e.qZA()()()(),e.TgZ(17,"div",25)(18,"div",26),e.YNc(19,Yn,1,0,"mat-progress-bar",27),e.TgZ(20,"table",28,29),e.ynx(22,30),e.YNc(23,Gn,1,0,"th",31)(24,Wn,3,2,"td",32),e.BQk(),e.ynx(25,33),e.YNc(26,Xn,2,0,"th",34)(27,Kn,3,4,"td",32),e.BQk(),e.ynx(28,35),e.YNc(29,$n,2,0,"th",34)(30,jn,4,4,"td",32),e.BQk(),e.ynx(31,36),e.YNc(32,ei,2,0,"th",34)(33,ti,4,4,"td",32),e.BQk(),e.ynx(34,37),e.YNc(35,ni,2,0,"th",34)(36,ii,4,4,"td",32),e.BQk(),e.ynx(37,38),e.YNc(38,ai,2,0,"th",34)(39,oi,4,4,"td",32),e.BQk(),e.ynx(40,39),e.YNc(41,si,2,0,"th",34)(42,li,4,4,"td",32),e.BQk(),e.ynx(43,40),e.YNc(44,ri,2,0,"th",34)(45,ci,3,5,"td",32),e.BQk(),e.ynx(46,41),e.YNc(47,pi,2,0,"th",42)(48,ui,4,3,"td",32),e.BQk(),e.ynx(49,43),e.YNc(50,mi,2,0,"th",42)(51,_i,4,3,"td",32),e.BQk(),e.ynx(52,44),e.YNc(53,di,2,0,"th",42)(54,hi,4,3,"td",32),e.BQk(),e.ynx(55,45),e.YNc(56,gi,2,0,"th",42)(57,fi,3,1,"td",32),e.BQk(),e.ynx(58,46),e.YNc(59,Ci,6,0,"th",47)(60,xi,3,0,"td",48),e.BQk(),e.ynx(61,49),e.YNc(62,Zi,4,3,"td",50),e.BQk(),e.ynx(63,51),e.YNc(64,Fi,5,3,"td",32),e.BQk(),e.ynx(65,52),e.YNc(66,Oi,4,2,"td",32),e.BQk(),e.ynx(67,53),e.YNc(68,Pi,5,5,"td",32),e.BQk(),e.ynx(69,54),e.YNc(70,Ji,5,5,"td",32),e.BQk(),e.ynx(71,55),e.YNc(72,Ei,5,5,"td",32),e.BQk(),e.ynx(73,56),e.YNc(74,Yi,5,5,"td",32),e.BQk(),e.ynx(75,57),e.YNc(76,zi,5,5,"td",32),e.BQk(),e.ynx(77,58),e.YNc(78,Ki,5,6,"td",32),e.BQk(),e.ynx(79,59),e.YNc(80,ea,5,4,"td",32),e.BQk(),e.ynx(81,60),e.YNc(82,ia,5,5,"td",32),e.BQk(),e.ynx(83,61),e.YNc(84,sa,5,5,"td",32),e.BQk(),e.ynx(85,62),e.YNc(86,ca,4,1,"td",32),e.BQk(),e.ynx(87,63),e.YNc(88,ma,5,2,"td",32),e.BQk(),e.YNc(89,_a,1,0,"tr",64)(90,ha,1,3,"tr",65)(91,ga,1,0,"tr",66)(92,fa,1,0,"tr",67),e.qZA(),e.TgZ(93,"mat-paginator",68),e.NdJ("page",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onPageChange(a))}),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("icon",t.faHistory),e.xp6(7),e.Q6J("ngModel",t.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(18,Ca).concat(t.displayedColumns.slice(0,-1))),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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",e.VKq(19,xa,""!==t.errorMessage)),e.xp6(69),e.Q6J("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.xp6(1),e.Q6J("matFooterRowDef",e.DdM(21,ya)),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 Je=(()=>{class n{constructor(t,i,a,s,r,h,b,x){this.logger=t,this.commonService=i,this.dataService=a,this.store=s,this.rtlEffects=r,this.decimalPipe=h,this.datePipe=b,this.camelCaseWithReplace=x,this.calledFrom="transactions",this.faHistory=y.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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(f.Wi).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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(i=>this.htlcColumns.push("group_"+i)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.IV,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.PP).pipe((0,d.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.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,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,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,z.q)(1)).subscribe(i=>{i&&(this.store.dispatch((0,v.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,z.q)(1)).subscribe(a=>{a&&(this.paymentDecoded.num_satoshis=a[0].inputValue,this.store.dispatch((0,v.oV)({payload:{uiMessage:l.m6.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:a[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,L.qR)({payload:{data:{component:Mn}}}))}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(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,d.R)(this.unSubs[6])).subscribe({next:a=>{this.paymentDecodedHint="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats ("+a.symbol+this.decimalPipe.transform(a.OTHER?a.OTHER:0,l.Xz.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{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,a=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(i=!0,a=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(i=!0,a=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(i=!1,a=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((a,s)=>{const r=i.peers.find(h=>h.pub_key===t.pub_key);r&&r.alias?a("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+i.decimalPipe.transform(t.amt_to_forward)+"
"):i.dataService.getAliasesFromPubkeys(t.pub_key||"",!1).pipe((0,d.R)(i.unSubs[7])).subscribe({next:h=>a("
Channel: "+(h.node&&h.node.alias?h.node.alias.padEnd(20):t.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+i.decimalPipe.transform(t.amt_to_forward)+"
"),error:h=>a("
Channel: "+(t.pub_key?t.pub_key?.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,z.q)(1)).subscribe({next:a=>{setTimeout(()=>{this.showHTLCView(t,i,a)},0)},error:a=>{this.showHTLCView(t,i)}}):this.showHTLCView(t,i)}showHTLCView(t,i,a){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,a,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,a,[]),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}prepareData(t,i,a,s){const r=[[{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:t.route?.total_amt,title:"Amount (Sats)",width:33,type:l.Gi.NUMBER},{key:"total_fees",value:t.route?.total_fees,title:"Fee (Sats)",width:33,type:l.Gi.NUMBER},{key:"total_time_lock",value:t.route?.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 a&&a.description&&""!==a.description&&r.splice(3,0,[{key:"description",value:a.description,title:"Description",width:100,type:l.Gi.STRING}]),r}onPaymentClick(t){if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const i=t.htlcs[0].route.hops?.reduce((a,s)=>s.pub_key&&""===a?s.pub_key:a+","+s.pub_key,"");this.dataService.getAliasesFromPubkeys(i,!0).pipe((0,d.R)(this.unSubs[8])).subscribe(a=>{this.showPaymentView(t,a?.reduce((s,r)=>""===s?r:s+"\n"+r,""))})}else this.showPaymentView(t,"")}showPaymentView(t,i){const a=[[{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,z.q)(1)).subscribe(s=>{s&&s.description&&""!==s.description&&a.splice(3,0,[{key:"description",value:s.description,title:"Description",width:100,type:l.Gi.STRING}]),setTimeout(()=>{this.openPaymentAlert(a,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(a,!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(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"status":case"group_status":a="SUCCEEDED"===t?.status?"succeeded":"failed";break;case"creation_date":a=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":a=this.camelCaseWithReplace.transform(t.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":a=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:a=typeof t[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadPaymentsTable(t){this.payments=new c.by(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,a)=>"hops"===a?i.htlcs.length&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length?i.htlcs[0].route.hops.length:0:i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),i=t?.reduce((a,s)=>(s.payment_request&&""!==s.payment_request.trim()&&(a=""===a?s.payment_request:a+","+s.payment_request),a),"");this.dataService.decodePayments(i).pipe((0,d.R)(this.unSubs[9])).subscribe(a=>{let s=0;a.forEach((h,b)=>{if(h){for(;t[b+s].payment_hash!==h.payment_hash;)s+=1;t[b+s].description=h.description}});const r=t?.reduce((h,b)=>h.concat(b),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(te.D),e.Y36(q.yh),e.Y36(pe.V),e.Y36(m.JJ),e.Y36(m.uU),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(i,a){if(1&i&&(e.Gf(Jn,5),e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.form=s.first),e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.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"],["fxLayout","column","fxFlex","100"],["matInput","","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,En,14,3,"form",1)(2,Bn,3,0,"div",2)(3,Ta,94,22,"div",3),e.qZA()),2&i&&(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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,g.bx,g.TO,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,X.gM,k.NW,M.Vv,M.$V,m.JJ,m.uU,G.D3],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.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:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:11rem}"]})}return n})();const De=n=>({backgroundColor:n});function ba(n,o){if(1&n&&e._UZ(0,"span",8),2&n){const t=e.oxw();e.Q6J("ngStyle",e.VKq(1,De,null==t.information?null:t.information.color))}}function Za(n,o){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,De,null==t.information?null:t.information.color)),e.xp6(1),e.hij(" ",e.lcZ(6,2,null==t.information?null:t.information.color)," ")}}function va(n,o){1&n&&e._UZ(0,"span",10)}function Aa(n,o){1&n&&e._UZ(0,"span",11)}function Sa(n,o){if(1&n&&(e.TgZ(0,"span",2),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t)}}let Qe=(()=>{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))}))}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(I.v))};static#t=this.\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,"mt-2"],[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(i,a){1&i&&(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,ba,1,3,"span",3),e.qZA()(),e.YNc(7,Za,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,va,1,0,"span",5)(17,Aa,1,0,"span",6)(18,Sa,2,1,"span",7),e.qZA()()),2&i&&(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("ngIf",null==a.information?null:a.information.synced_to_chain),e.xp6(1),e.Q6J("ngIf",!(null!=a.information&&a.information.synced_to_chain)),e.xp6(1),e.Q6J("ngForOf",a.chains))},dependencies:[m.sg,m.O5,m.PC,_.xw,_.Wh,_.yH,F.Zl,X.gM,m.gd]})}return n})();function wa(n,o){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 La(n,o){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 qa=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=this.\u0275fac=function(i){return new(i||n)};static#t=this.\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(i,a){if(1&i&&e.YNc(0,wa,21,11,"div",0)(1,La,3,1,"ng-template",null,1,e.W1O),2&i){const s=e.MAs(2);e.Q6J("ngIf"," "===a.errorMessage)("ngIfElse",s)}},dependencies:[m.O5,_.xw,_.Wh,_.yH,D.pW,m.JJ]})}return n})();function Fa(n,o){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 ka(n,o){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 Ee=(()=>{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 i=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-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)}static#e=this.\u0275fac=function(i){return new(i||n)};static#t=this.\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(i,a){if(1&i&&e.YNc(0,Fa,45,18,"div",0)(1,ka,3,1,"ng-template",null,1,e.W1O),2&i){const s=e.MAs(2);e.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[m.O5,_.xw,_.Wh,_.yH,m.JJ]})}return n})();function Ua(n,o){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 Oa(n,o){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 Be=(()=>{class n{constructor(){this.channelsStatus={}}static#e=this.\u0275fac=function(i){return new(i||n)};static#t=this.\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(i,a){if(1&i&&e.YNc(0,Ua,55,24,"div",0)(1,Oa,3,1,"ng-template",null,1,e.W1O),2&i){const s=e.MAs(2);e.Q6J("ngIf"," "===a.errorMessage)("ngIfElse",s)}},dependencies:[m.O5,_.xw,_.Wh,_.yH,m.JJ]})}return n})();var $=C(6385);const Na=()=>["../connections/channels/open"],Ia=(n,o)=>({filterColumn:n,filterValue:o});function Pa(n,o){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=o.$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,Na))("state",e.WLB(22,Ia,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),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 Ra(n,o){if(1&n&&(e.TgZ(0,"div",17),e.YNc(1,Pa,20,25,"div",18),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",t.allChannels)}}function Ma(n,o){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,Ra,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 Ja(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.goToChannels())}),e._uU(3,"Open Channel"),e.qZA()()}}function Da(n,o){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 Qa=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=y.DL8,this.faDumbbell=y.FlN,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0))};static#t=this.\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","8","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(i,a){if(1&i&&e.YNc(0,Ma,24,13,"div",0)(1,Ja,4,0,"ng-template",null,1,e.W1O)(3,Da,3,1,"ng-template",null,2,e.W1O),2&i){const s=e.MAs(4);e.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[m.sg,m.O5,J.BN,_.xw,_.Wh,_.yH,O.lW,g.bx,$.d,D.pW,X.gM,M.$V,T.rH,m.OU,m.JJ],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();var He=C(5487),Ye=C(3149);function Ea(n,o){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 Ba(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",24),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2).$implicit,s=e.oxw(3);return e.KtG(s.onLoopOut(a))}),e._uU(1,"Loop Out"),e.qZA()}}function Ha(n,o){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,Ba,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 Ya(n,o){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 Ga(n,o){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 Va=()=>["../connections/channels/open"],za=(n,o)=>({filterColumn:n,filterValue:o});function Wa(n,o){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,Ea,5,3,"mat-hint",16)(6,Ha,7,4,"div",17),e.qZA(),e.YNc(7,Ya,1,1,"mat-progress-bar",18)(8,Ga,1,1,"mat-progress-bar",18),e.qZA()),2&n){const t=o.$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,Va))("state",e.WLB(15,za,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),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 Xa(n,o){if(1&n&&(e.TgZ(0,"div",11),e.YNc(1,Wa,9,18,"div",12),e.qZA()),2&n){const t=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",t.allChannels)}}const Ka=(n,o,t)=>({"mb-4":n,"mb-2":o,"mb-1":t});function $a(n,o){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,Xa,2,1,"div",10),e.qZA()),2&n){const t=e.oxw(),i=e.MAs(2);e.Q6J("ngClass",e.kEZ(6,Ka,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 ja(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",28),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.goToChannels())}),e._uU(1,"Open Channel"),e.qZA()}}function eo(n,o){if(1&n&&(e.TgZ(0,"div",26),e._uU(1," No channels available. "),e.YNc(2,ja,2,0,"button",27),e.qZA()),2&n){const t=e.oxw();e.xp6(2),e.Q6J("ngIf","Out"===t.direction)}}function to(n,o){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 no=(()=>{class n{constructor(t,i,a,s){this.router=t,this.loopService=i,this.commonService=a,this.store=s,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new u.x,new u.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!t?.swapServerUrl||""===t.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,d.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:He.a}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0),e.Y36(Ye.W),e.Y36(I.v),e.Y36(q.yh))};static#t=this.\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","8","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","80","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","end center","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","20","fxLayoutAlign","end center","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(i,a){if(1&i&&e.YNc(0,$a,11,10,"div",0)(1,eo,3,1,"ng-template",null,1,e.W1O)(3,to,3,1,"ng-template",null,2,e.W1O),2&i){const s=e.MAs(4);e.Q6J("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[m.mk,m.sg,m.O5,_.xw,_.Wh,_.yH,F.oO,O.lW,g.bx,$.d,D.pW,X.gM,M.$V,T.rH,m.OU,m.JJ]})}return n})();function io(n,o){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 ao(n,o){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,h=e.oxw(2);return e.KtG(h.onNavigateTo(r.links[s]))}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t)}}function oo(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",27),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(3);return e.KtG(a.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 so(n,o){1&n&&e._UZ(0,"mat-progress-bar",28)}function lo(n,o){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 ro(n,o){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 co(n,o){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 po(n,o){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 uo(n,o){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 mo(n,o){1&n&&(e.TgZ(0,"h3"),e._uU(1,"Error! Unable to find information!"),e.qZA())}const Ge=n=>({"dashboard-card-content":!0,"error-border":n});function _o(n,o){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,io,3,1,"button",12),e.TgZ(10,"mat-menu",13,14),e.YNc(12,ao,2,1,"button",15)(13,oo,2,1,"button",16),e.qZA()()()(),e.TgZ(14,"mat-card-content",17),e.YNc(15,so,1,0,"mat-progress-bar",18),e.TgZ(16,"div",19),e.YNc(17,lo,1,2,"rtl-node-info",20)(18,ro,1,2,"rtl-balances-info",21)(19,co,1,4,"rtl-channel-capacity-info",22)(20,po,1,2,"rtl-fee-info",23)(21,uo,1,2,"rtl-channel-status-info",24)(22,mo,2,0,"h3",25),e.qZA()()()()),2&n){const t=o.$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,Ge,"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 ho(n,o){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,_o,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 go(n,o){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 fo(n,o){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,h=e.oxw(2);return e.KtG(h.onNavigateTo(r.links[s]))}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t)}}function Co(n,o){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,go,3,1,"button",12),e.TgZ(8,"mat-menu",13,43),e.YNc(10,fo,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 xo(n,o){1&n&&e._UZ(0,"mat-progress-bar",28)}function yo(n,o){if(1&n&&e._UZ(0,"rtl-node-info",44),2&n){const t=e.oxw(3);e.Q6J("information",t.information)}}function To(n,o){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 bo(n,o){if(1&n&&e._UZ(0,"rtl-channel-liquidity-info",45),2&n){const t=e.oxw(3);e.Q6J("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function Zo(n,o){if(1&n&&e._UZ(0,"rtl-channel-liquidity-info",45),2&n){const t=e.oxw(3);e.Q6J("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function vo(n,o){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,h=e.oxw(2);return e.KtG(h.onNavigateTo(r.links[s]))}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t)}}function Ao(n,o){if(1&n&&(e.TgZ(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),e._UZ(3,"rtl-lightning-invoices",49),e.qZA(),e.TgZ(4,"mat-tab",50),e._UZ(5,"rtl-lightning-payments",49),e.qZA()(),e.TgZ(6,"div",51)(7,"button",26)(8,"mat-icon"),e._uU(9,"more_vert"),e.qZA()(),e.TgZ(10,"mat-menu",13,52),e.YNc(12,vo,2,1,"button",15),e.qZA()()()),2&n){const t=e.MAs(11),i=e.oxw().$implicit;e.xp6(3),e.Q6J("calledFrom","home"),e.xp6(2),e.Q6J("calledFrom","home"),e.xp6(2),e.Q6J("matMenuTriggerFor",t),e.xp6(5),e.Q6J("ngForOf",i.goToOptions)}}function So(n,o){1&n&&(e.TgZ(0,"h3"),e._uU(1,"Error! Unable to find information!"),e.qZA())}const wo=n=>({"p-0":n});function Lo(n,o){if(1&n&&(e.TgZ(0,"mat-grid-tile",8)(1,"mat-card",36),e.YNc(2,Co,11,4,"mat-card-header",37),e.TgZ(3,"mat-card-content",38),e.YNc(4,xo,1,0,"mat-progress-bar",18),e.TgZ(5,"div",39),e.YNc(6,yo,1,1,"rtl-node-info",40)(7,To,1,2,"rtl-balances-info",21)(8,bo,1,4,"rtl-channel-liquidity-info",41)(9,Zo,1,4,"rtl-channel-liquidity-info",41)(10,Ao,13,4,"span",42)(11,So,2,0,"h3",25),e.qZA()()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(1),e.Q6J("ngClass",e.VKq(13,wo,"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,Ge,"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 qo(n,o){if(1&n&&(e.TgZ(0,"div",34),e._UZ(1,"fa-icon",4),e.TgZ(2,"span",5),e._uU(3),e.qZA()(),e.TgZ(4,"mat-grid-list",35),e.YNc(5,Lo,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 Fo=(()=>{class n{constructor(t,i,a,s,r){switch(this.logger=t,this.store=i,this.actions=a,this.commonService=s,this.router=r,this.faSmile=Re.ctA,this.faFrown=Re.KfU,this.faAngleDoubleDown=y.Sbq,this.faAngleDoubleUp=y.Vfw,this.faChartPie=y.OS1,this.faBolt=y.BDt,this.faServer=y.xf3,this.faNetworkWired=y.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="390px",this.merchantCardHeight="62px",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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.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(f.bx).pipe((0,d.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(f.JG).pipe((0,d.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(f.qU).pipe((0,d.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(f.ni).pipe((0,d.R)(this.unSubs[3])).subscribe(t=>{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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(f.ZW).pipe((0,d.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:"");const i=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,a=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:i,remoteBalance:a,balancedness:+(1-Math.abs((i-a)/(i+a))).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=t.channelsSummary.active?.num_channels||0,this.inactiveChannels=t.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=t.channels?.filter(r=>!0===r.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.remote_balance&&r.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.local_balance&&r.local_balance>0),"local_balance"))),this.allChannels.forEach(r=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(r.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(r.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,d.R)(this.unSubs[5]),(0,B.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:{filterColumn:"active",filterValue:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,i)=>{const a=+(t.local_balance||0)+ +(t.remote_balance||0),s=+(i.local_balance||0)+ +(i.remote_balance||0);return a>s?-1:a{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(W.eX),e.Y36(I.v),e.Y36(T.F0))};static#t=this.\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 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"],["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","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["menuMerchant","matMenu"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[3,"calledFrom"],["label","Pay"],[1,"underline"],["menuTransactions","matMenu"]],template:function(i,a){if(1&i&&e.YNc(0,ho,7,4,"div",0)(1,qo,6,4,"ng-template",null,1,e.W1O),2&i){const s=e.MAs(2);e.Q6J("ngIf",(null==a.selNode?null:a.selNode.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",s)}},dependencies:[m.mk,m.sg,m.O5,m.RF,m.n9,m.ED,J.BN,_.xw,_.Wh,_.yH,F.oO,O.RK,Z.a8,Z.dn,Z.dk,Z.n5,_e.Il,_e.DX,ne.Hw,Te.VK,Te.OP,Te.p6,D.pW,P.uX,P.SP,Me,Je,Qe,qa,Ee,Be,Qa,no]})}return n})();var be=C(9014),Ze=C(3891);function ko(n,o){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 Uo(n,o){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 Oo=(()=>{class n{constructor(t,i,a){this.store=t,this.logger=i,this.router=a,this.selNode={},this.activePeers=0,this.activeChannels=0,this.faUsers=y.FVb,this.faChartPie=y.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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,d.R)(this.unSubs[0]),(0,B.h)(t=>t instanceof T.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(i=>i.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(f.$k).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(f.Wi).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(f.ZW).pipe((0,d.R)(this.unSubs[3])).subscribe(t=>{this.activeChannels=t.channelsSummary.active?.num_channels||0,this.logger.info(t)}),this.store.select(f.qU).pipe((0,d.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh),e.Y36(U.mQ),e.Y36(T.F0))};static#t=this.\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"],["mat-stretch-tabs","false","mat-align-tabs","start",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(i,a){1&i&&(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(r){return a.activeLink=r})("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),e.TgZ(16,"mat-tab"),e.YNc(17,ko,2,1,"ng-template",8),e.qZA(),e.TgZ(18,"mat-tab"),e.YNc(19,Uo,2,1,"ng-template",8),e.qZA()(),e.TgZ(20,"div",9),e._UZ(21,"router-outlet"),e.qZA()()()()),2&i&&(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))},dependencies:[J.BN,_.xw,_.Wh,_.yH,Z.a8,Z.dn,be.k,P.uD,P.uX,P.SP,Ze.D,T.lC]})}return n})();var ve=C(7921),Ve=C(7398),ze=C(3362);const No=["form"];function Io(n,o){if(1&n&&(e.TgZ(0,"mat-option",39),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function Po(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Peer alias is required."),e.qZA())}function Ro(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Peer not found in the list."),e.qZA())}function Mo(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",35)(1,"mat-label"),e._uU(2,"Peer Alias"),e.qZA(),e._UZ(3,"input",36),e.TgZ(4,"mat-autocomplete",37,38),e.NdJ("optionSelected",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSelectedPeerChanged())}),e.YNc(6,Io,2,2,"mat-option",24),e.ALo(7,"async"),e.qZA(),e.YNc(8,Po,2,0,"mat-error",17)(9,Ro,2,0,"mat-error",17),e.qZA()}if(2&n){const t=e.MAs(5),i=e.oxw();e.xp6(3),e.Q6J("formControl",i.selectedPeer)("matAutocomplete",t),e.xp6(1),e.Q6J("displayWith",i.displayFn),e.xp6(2),e.Q6J("ngForOf",e.lcZ(7,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 Jo(n,o){1&n&&e.GkF(0)}function Do(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function Qo(n,o){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 Eo(n,o){if(1&n&&(e.TgZ(0,"mat-option",39),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Bo(n,o){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 Ho(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",28)(1,"mat-slide-toggle",40),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.taprootChannel=a)}),e._uU(2,"Taproot Channel"),e.qZA()()}if(2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngModel",t.taprootChannel)}}function Yo(n,o){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 Go(n,o){if(1&n&&(e.TgZ(0,"div",41),e._UZ(1,"fa-icon",42),e.YNc(2,Yo,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 Vo(n,o){if(1&n&&(e.TgZ(0,"mat-expansion-panel",44)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e._uU(4,"Peer: \xa0"),e.qZA(),e.TgZ(5,"strong",45),e._uU(6),e.qZA()()(),e.TgZ(7,"div",9)(8,"div",46)(9,"div",35)(10,"h4",47),e._uU(11,"Pubkey"),e.qZA(),e.TgZ(12,"span",48),e._uU(13),e.qZA()()(),e._UZ(14,"mat-divider",49),e.TgZ(15,"div",46)(16,"div",50)(17,"h4",47),e._uU(18,"Address"),e.qZA(),e.TgZ(19,"span",51),e._uU(20),e.qZA()(),e.TgZ(21,"div",50)(22,"h4",47),e._uU(23,"Inbound"),e.qZA(),e.TgZ(24,"span",51),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 zo(n,o){if(1&n&&e.YNc(0,Vo,26,4,"mat-expansion-panel",43),2&n){const t=e.oxw();e.Q6J("ngIf",t.peer)}}let We=(()=>{class n{constructor(t,i,a,s,r){this.dialogRef=t,this.data=i,this.store=a,this.actions=s,this.commonService=r,this.selectedPeer=new p.p4,this.selNode={},this.amount=new p.p4,this.faExclamationTriangle=y.eHv,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.isTaprootAvailable=!1,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=l.Dr,this.unSubs=[new u.x,new u.x,new u.x,new u.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.isTaprootAvailable=this.commonService.isVersionCompatible(this.information.version,"0.17.0")):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[],this.isTaprootAvailable=!1),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.unannouncedChannels}),this.actions.pipe((0,d.R)(this.unSubs[1]),(0,B.h)(a=>a.type===l.uR.UPDATE_API_CALL_STATUS_LND||a.type===l.uR.FETCH_CHANNELS_LND)).subscribe(a=>{a.type===l.uR.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.Bn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===l.uR.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",i="";this.sortedPeers=this.peers.sort((a,s)=>(t=a.alias?a.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",ti?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,d.R)(this.unSubs[2]),(0,ve.O)(""),(0,Ve.U)(a=>"string"==typeof a?a:a.alias?a.alias:a.pub_key),(0,Ve.U)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(i=>0===i.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.pub_key:""}onSelectedPeerChanged(){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 t=this.peers?.filter(i=>i.alias?.length===this.selectedPeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].pub_key&&(this.selectedPubkey=t[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=!!this.selNode?.unannouncedChannels,this.taprootChannel=!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,v.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,commitmentType:this.taprootChannel?5:null}}))}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:"")+" | Taproot Channel: "+(this.taprootChannel?"Yes":"No")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(q.yh),e.Y36(W.eX),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(i,a){if(1&i&&e.Gf(No,7),2&i){let s;e.iGM(s=e.CRH())&&(a.form=s.first)}},decls:60,vars:26,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 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"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amnt",3,"step","min","max","ngModel","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"],["fxLayout","column","fxFlex","49"],["tabindex","3",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","tabindex","4","name","transTpValue",3,"required","disabled","step","min","ngModel","ngModelChange"],["transTypeVal","ngModel"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","7","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","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete"],[3,"displayWith","optionSelected"],["auto","matAutocomplete"],[3,"value"],["tabindex","6","color","primary","name","taprootChannel",3,"ngModel","ngModelChange"],["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(i,a){if(1&i&&(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,Mo,10,8,"mat-form-field",10),e.qZA(),e.YNc(13,Jo,1,0,"ng-container",11),e.TgZ(14,"div",9)(15,"div",12)(16,"mat-form-field",13)(17,"mat-label"),e._uU(18,"Amount"),e.qZA(),e.TgZ(19,"input",14,15),e.NdJ("ngModelChange",function(r){return a.fundingAmount=r}),e.qZA(),e.TgZ(21,"mat-hint"),e._uU(22),e.ALo(23,"number"),e.qZA(),e.TgZ(24,"span",16),e._uU(25," Sats "),e.qZA(),e.YNc(26,Do,2,0,"mat-error",17)(27,Qo,2,1,"mat-error",17),e.qZA(),e.TgZ(28,"div",18)(29,"mat-slide-toggle",19),e.NdJ("ngModelChange",function(r){return a.isPrivate=r}),e._uU(30,"Private Channel"),e.qZA()()(),e.TgZ(31,"mat-expansion-panel",20),e.NdJ("closed",function(){return a.onAdvancedPanelToggle(!0)})("opened",function(){return a.onAdvancedPanelToggle(!1)}),e.TgZ(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),e._uU(35),e.qZA()()(),e.TgZ(36,"div",21)(37,"div",12)(38,"mat-form-field",22)(39,"mat-select",23),e.NdJ("valueChange",function(r){return a.selTransType=r}),e.YNc(40,Eo,2,2,"mat-option",24),e.qZA()(),e.TgZ(41,"mat-form-field",22)(42,"mat-label"),e._uU(43),e.qZA(),e.TgZ(44,"input",25,26),e.NdJ("ngModelChange",function(r){return a.transTypeValue=r}),e.qZA(),e.YNc(46,Bo,2,1,"mat-error",17),e.qZA()(),e.TgZ(47,"div",12),e.YNc(48,Ho,3,1,"div",27),e.TgZ(49,"div",28)(50,"mat-slide-toggle",29),e.NdJ("ngModelChange",function(r){return a.spendUnconfirmed=r}),e._uU(51,"Spend Unconfirmed Output"),e.qZA()()()()()(),e.YNc(52,Go,3,2,"div",30),e.TgZ(53,"div",31)(54,"button",32),e._uU(55,"Clear Fields"),e.qZA(),e.TgZ(56,"button",33),e._uU(57,"Open Channel"),e.qZA()()()()()(),e.YNc(58,zo,1,1,"ng-template",null,34,e.W1O)),2&i){const s=e.MAs(59);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",s),e.xp6(6),e.Q6J("step",1e3)("min",1)("max",a.totalBalance)("ngModel",a.fundingAmount),e.xp6(3),e.hij("(Remaining: ",e.lcZ(23,24,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(3),e.Oqu("0"===a.selTransType?"Default":"1"===a.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.xp6(1),e.Q6J("required","0"!==a.selTransType)("disabled","0"===a.selTransType)("step",1)("min",0)("ngModel",a.transTypeValue),e.xp6(2),e.Q6J("ngIf","0"!==a.selTransType&&!a.transTypeValue),e.xp6(2),e.Q6J("ngIf",a.isTaprootAvailable),e.xp6(2),e.Q6J("ngModel",a.spendUnconfirmed),e.xp6(2),e.Q6J("ngIf",""!==a.channelConnectionError)}},dependencies:[m.sg,m.O5,m.tP,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.qQ,p.Fd,p.On,p.F,p.oH,J.BN,_.xw,_.Wh,_.yH,O.lW,Z.dn,Z.dk,H.ib,H.yz,H.yK,R.Nt,g.KE,g.hX,g.bx,g.TO,g.R9,$.d,w.gD,E.ey,de.Rr,oe.XC,oe.ZL,K.h,ze.F,ee.q,m.Ov,m.JJ],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return n})();var le=C(168),Y=C(8257);const Wo=["peersForm"],Xo=["stepper"];function Ko(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw();e.Oqu(t.peerFormLabel)}}function $o(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Address is required."),e.qZA())}function jo(n,o){if(1&n&&(e.TgZ(0,"div",40),e._UZ(1,"fa-icon",41),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 es(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw();e.Oqu(t.channelFormLabel)}}function ts(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function ns(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount must be a positive number."),e.qZA())}function is(n,o){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 as(n,o){if(1&n&&(e.TgZ(0,"mat-option",42),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function os(n,o){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 ss(n,o){1&n&&(e.TgZ(0,"div",35)(1,"mat-slide-toggle",43),e._uU(2,"Taproot Channel"),e.qZA()())}function ls(n,o){if(1&n&&(e.TgZ(0,"div",40),e._UZ(1,"fa-icon",41),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 Xe=(()=>{class n{constructor(t,i,a,s,r,h,b,x){this.dialogRef=t,this.data=i,this.store=a,this.lndEffects=s,this.formBuilder=r,this.actions=h,this.logger=b,this.commonService=x,this.faExclamationTriangle=y.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.isTaprootAvailable=!1,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.unSubs=[new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[p.kI.required]],peerAddress:[this.data.message?.peer?.pub_key?this.data.message?.peer?.pub_key+(this.data.message?.peer?.address?"@"+this.data.message?.peer?.address:""):"",[p.kI.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[p.kI.required,p.kI.min(1),p.kI.max(this.totalBalance)]],isPrivate:[!!this.selNode?.unannouncedChannels],selTransType:[l.Dr[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[p.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(f.bx).pipe((0,d.R)(this.unSubs[0])).subscribe(i=>{this.selNode=i.nodeSettings,this.channelFormGroup.controls.isPrivate.setValue(!!i.nodeSettings?.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(i.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,d.R)(this.unSubs[1])).subscribe(i=>{i===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([p.kI.required]))}),this.actions.pipe((0,d.R)(this.unSubs[2]),(0,B.h)(i=>i.type===l.uR.NEWLY_ADDED_PEER_LND||i.type===l.uR.FETCH_PENDING_CHANNELS_LND||i.type===l.uR.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===l.uR.NEWLY_ADDED_PEER_LND&&(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.uR.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),i.type===l.uR.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.Bn.ERROR&&("SaveNewPeer"===i.payload.action||"FetchGraphNode"===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="";const t=this.peerFormGroup.controls.peerAddress.value.search("@");let i="",a="";t>-1?(i=this.peerFormGroup.controls.peerAddress.value.substring(0,t),a=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(i,a)):(this.store.dispatch((0,v.dV)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,z.q)(1)).subscribe(s=>{setTimeout(()=>{a=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,a)},0)}))}connectPeerWithParams(t,i){this.store.dispatch((0,v.El)({payload:{pubkey:t,host:i,perm:!1}}))}onOpenChannel(){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,v.YX)({payload:{selectedPeerPubkey:this.newlyAddedPeer?.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,commitmentType:this.channelFormGroup.controls.taprootChannel.value?5:null}}))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){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: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(q.yh),e.Y36(le.l),e.Y36(p.QS),e.Y36(W.eX),e.Y36(U.mQ),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(i,a){if(1&i&&(e.Gf(Wo,5),e.Gf(Xo,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.form=s.first),e.iGM(s=e.CRH())&&(a.stepper=s.first)}},decls:67,vars:27,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 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",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","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"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","50"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"step","required"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["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"],["tabindex","6","color","primary","formControlName","taprootChannel","name","taprootChannel",1,"ps-2"]],template:function(i,a){1&i&&(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(r){return a.stepSelectionChanged(r)}),e.TgZ(12,"mat-step",10)(13,"form",11),e.YNc(14,Ko,1,1,"ng-template",12),e.TgZ(15,"mat-form-field",13)(16,"mat-label"),e._uU(17,"Lightning Address (pubkey OR pubkey@ip:port)"),e.qZA(),e._UZ(18,"input",14),e.YNc(19,$o,2,0,"mat-error",15),e.qZA(),e.YNc(20,jo,4,2,"div",16),e.TgZ(21,"div",17)(22,"button",18),e.NdJ("click",function(){return a.onConnectPeer()}),e._uU(23),e.qZA()()()(),e.TgZ(24,"mat-step",10)(25,"form",19),e.YNc(26,es,1,1,"ng-template",20),e.TgZ(27,"div",21)(28,"div",22)(29,"mat-form-field",23)(30,"mat-label"),e._uU(31,"Amount"),e.qZA(),e._UZ(32,"input",24),e.TgZ(33,"mat-hint"),e._uU(34),e.ALo(35,"number"),e.qZA(),e.TgZ(36,"span",25),e._uU(37," Sats "),e.qZA(),e.YNc(38,ts,2,0,"mat-error",15)(39,ns,2,0,"mat-error",15)(40,is,2,1,"mat-error",15),e.qZA(),e.TgZ(41,"div",26)(42,"mat-slide-toggle",27),e._uU(43,"Private Channel"),e.qZA()()(),e.TgZ(44,"div",28)(45,"mat-form-field",29)(46,"mat-label"),e._uU(47,"Transaction Type"),e.qZA(),e.TgZ(48,"mat-select",30),e.YNc(49,as,2,2,"mat-option",31),e.qZA()(),e.TgZ(50,"mat-form-field",32)(51,"mat-label"),e._uU(52),e.qZA(),e._UZ(53,"input",33),e.YNc(54,os,2,1,"mat-error",15),e.qZA()(),e.TgZ(55,"div",28),e.YNc(56,ss,3,0,"div",34),e.TgZ(57,"div",35)(58,"mat-slide-toggle",36),e._uU(59,"Spend Unconfirmed Output"),e.qZA()()()(),e.YNc(60,ls,4,2,"div",16),e.TgZ(61,"div",17)(62,"button",37),e.NdJ("click",function(){return a.onOpenChannel()}),e._uU(63),e.qZA()()()()(),e.TgZ(64,"div",38)(65,"button",39),e._uU(66),e.qZA()()()()()()),2&i&&(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(6),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(7),e.Q6J("step",1e3),e.xp6(2),e.hij("Remaining: ",e.lcZ(35,25,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0)),""),e.xp6(4),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(9),e.Q6J("ngForOf",a.transTypes),e.xp6(3),e.Oqu("0"===a.channelFormGroup.controls.selTransType.value?"Default":"1"===a.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.xp6(1),e.Q6J("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(2),e.Q6J("ngIf",a.isTaprootAvailable),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"))},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.sg,p.u,J.BN,_.xw,_.Wh,_.yH,Q.ZT,O.lW,Z.dn,Z.dk,R.Nt,g.KE,g.hX,g.bx,g.TO,g.R9,w.gD,E.ey,de.Rr,Y.C0,Y.VY,Y.Vq,K.h,m.JJ]})}return n})();function rs(n,o){if(1&n&&(e.TgZ(0,"mat-option",39),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function cs(n,o){1&n&&e._UZ(0,"mat-progress-bar",40)}function ps(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Alias"),e.qZA())}const Ae=n=>({width:n});function us(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias)}}function ms(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Public Key"),e.qZA())}function _s(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.pub_key)}}function ds(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Address"),e.qZA())}function hs(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ae,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.address)}}function gs(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Sync Type"),e.qZA())}function fs(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,null==t?null:t.sync_type,"sync","_"))}}function Cs(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Inbound"),e.qZA())}function xs(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(null!=t&&t.inbound?"Yes":"No")}}function ys(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Bytes Sent"),e.qZA())}function Ts(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.bytes_sent)," ")}}function bs(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Bytes Received"),e.qZA())}function Zs(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.bytes_recv)," ")}}function vs(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Sats Sent"),e.qZA())}function As(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.sat_sent)," ")}}function Ss(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Sats Received"),e.qZA())}function ws(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.sat_recv)," ")}}function Ls(n,o){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 qs(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.ping_time)," ")}}function Fs(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function ks(n,o){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(a){const r=e.CHM(t).$implicit,h=e.oxw();return e.KtG(h.onPeerClick(r,a))}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",50),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.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,r=e.oxw();return e.KtG(r.onPeerDetach(s))}),e._uU(9,"Disconnect"),e.qZA()()()()}}function Us(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No connected peer."),e.qZA())}function Os(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting peers..."),e.qZA())}function Ns(n,o){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 Is(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,Us,2,0,"p",53)(2,Os,2,0,"p",53)(3,Ns,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 Ps=n=>({"display-none":n});function Rs(n,o){if(1&n&&e._UZ(0,"tr",54),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Ps,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function Ms(n,o){1&n&&e._UZ(0,"tr",55)}function Js(n,o){1&n&&e._UZ(0,"tr",56)}const Ds=()=>["all"],Qs=n=>({"error-border":n}),Es=()=>["no_peer"];let Bs=(()=>{class n{constructor(t,i,a,s,r){this.logger=t,this.store=i,this.rtlEffects=a,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=y.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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.qU).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(f.Wi).pipe((0,d.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&&this.sort&&this.paginator&&this.displayedColumns.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",goToFieldValue:t.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",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:Xe}}}))}onOpenChannel(t){this.store.dispatch((0,L.qR)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:We}}}))}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,d.R)(this.unSubs[4])).subscribe(a=>{a&&this.store.dispatch((0,v.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(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(t).toLowerCase();break;case"sync_type":a=this.camelCaseWithReplace.transform(t.sync_type||"","sync","_").trim().toLowerCase();break;default:a=typeof t[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadPeersTable(t){this.peers=new c.by(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(pe.V),e.Y36(I.v),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-peers"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("Peers")}])],decls:64,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModel","ngModelChange","input","keyup"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","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(i,a){1&i&&(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,"div",8)(11,"mat-form-field",9)(12,"mat-label"),e._uU(13,"Filter By"),e.qZA(),e.TgZ(14,"mat-select",10),e.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),e.TgZ(15,"perfect-scrollbar"),e.YNc(16,rs,2,2,"mat-option",11),e.qZA()()(),e.TgZ(17,"mat-form-field",9)(18,"mat-label"),e._uU(19,"Filter"),e.qZA(),e.TgZ(20,"input",12),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(21,"div",13),e.YNc(22,cs,1,0,"mat-progress-bar",14),e.TgZ(23,"table",15,16),e.ynx(25,17),e.YNc(26,ps,2,0,"th",18)(27,us,4,4,"td",19),e.BQk(),e.ynx(28,20),e.YNc(29,ms,2,0,"th",18)(30,_s,4,4,"td",19),e.BQk(),e.ynx(31,21),e.YNc(32,ds,2,0,"th",18)(33,hs,4,4,"td",19),e.BQk(),e.ynx(34,22),e.YNc(35,gs,2,0,"th",18)(36,fs,3,5,"td",19),e.BQk(),e.ynx(37,23),e.YNc(38,Cs,2,0,"th",18)(39,xs,2,1,"td",19),e.BQk(),e.ynx(40,24),e.YNc(41,ys,2,0,"th",25)(42,Ts,4,3,"td",19),e.BQk(),e.ynx(43,26),e.YNc(44,bs,2,0,"th",25)(45,Zs,4,3,"td",19),e.BQk(),e.ynx(46,27),e.YNc(47,vs,2,0,"th",25)(48,As,4,3,"td",19),e.BQk(),e.ynx(49,28),e.YNc(50,Ss,2,0,"th",25)(51,ws,4,3,"td",19),e.BQk(),e.ynx(52,29),e.YNc(53,Ls,5,0,"th",25)(54,qs,4,3,"td",19),e.BQk(),e.ynx(55,30),e.YNc(56,Fs,6,0,"th",31)(57,ks,10,0,"td",32),e.BQk(),e.ynx(58,33),e.YNc(59,Is,4,3,"td",34),e.BQk(),e.YNc(60,Rs,1,3,"tr",35)(61,Ms,1,0,"tr",36)(62,Js,1,0,"tr",37),e.qZA()(),e._UZ(63,"mat-paginator",38),e.qZA()()),2&i&&(e.xp6(7),e.Q6J("icon",a.faUsers),e.xp6(7),e.Q6J("ngModel",a.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(15,Ds).concat(a.displayedColumns.slice(0,-1))),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("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",e.VKq(16,Qs,""!==a.errorMessage)),e.xp6(37),e.Q6J("matFooterRowDef",e.DdM(18,Es)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,J.BN,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.Vv,M.$V,m.JJ,G.D3]})}return n})();function Hs(n,o){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 Ys(n,o){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 Gs(n,o){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 Vs(n,o){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 zs=(()=>{class n{constructor(t,i,a){this.logger=t,this.store=i,this.router=a,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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,d.R)(this.unSubs[0]),(0,B.h)(t=>t instanceof T.Av)).subscribe({next:t=>{this.activeLink=this.links.findIndex(i=>i.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(f.ZW).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=t.channels?.reduce((i,a)=>i+(a.pending_htlcs&&a.pending_htlcs.length>0?a.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(f.ni).pipe((0,d.R)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(f.P2).pipe((0,d.R)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(f.qU).pipe((0,d.R)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(f.Wi).pipe((0,d.R)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(i=>{(!i.alias||""===i.alias)&&(i.alias=i.pub_key?.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:We}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(T.F0))};static#t=this.\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,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",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(i,a){1&i&&(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(r){return a.activeLink=r})("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),e.TgZ(6,"mat-tab"),e.YNc(7,Hs,2,1,"ng-template",5),e.qZA(),e.TgZ(8,"mat-tab"),e.YNc(9,Ys,2,1,"ng-template",5),e.qZA(),e.TgZ(10,"mat-tab"),e.YNc(11,Gs,2,1,"ng-template",5),e.qZA(),e.TgZ(12,"mat-tab"),e.YNc(13,Vs,2,1,"ng-template",5),e.qZA()(),e.TgZ(14,"div",6),e._UZ(15,"router-outlet"),e.qZA()()()),2&i&&(e.xp6(5),e.Q6J("selectedIndex",a.activeLink))},dependencies:[_.xw,_.Wh,_.yH,O.lW,be.k,P.uD,P.uX,P.SP,T.lC]})}return n})();var ie=C(2939),ue=C(7313);function Ws(n,o){if(1&n&&(e.TgZ(0,"div")(1,"div",9)(2,"div",15)(3,"h4",11),e._uU(4,"Commit Fee"),e.qZA(),e.TgZ(5,"span",16),e._uU(6),e.ALo(7,"number"),e.qZA()(),e.TgZ(8,"div",15)(9,"h4",11),e._uU(10,"Commit Weight"),e.qZA(),e.TgZ(11,"span",16),e._uU(12),e.ALo(13,"number"),e.qZA()(),e.TgZ(14,"div",15)(15,"h4",11),e._uU(16,"Fee/KW"),e.qZA(),e.TgZ(17,"span",16),e._uU(18),e.ALo(19,"number"),e.qZA()(),e.TgZ(20,"div",15)(21,"h4",11),e._uU(22,"Static Remote Key"),e.qZA(),e.TgZ(23,"span",16),e._uU(24),e.qZA()()(),e._UZ(25,"mat-divider",14),e.TgZ(26,"div",9)(27,"div",15)(28,"h4",11),e._uU(29),e.qZA(),e.TgZ(30,"span",16),e._uU(31),e.ALo(32,"number"),e.qZA()(),e.TgZ(33,"div",15)(34,"h4",11),e._uU(35),e.qZA(),e.TgZ(36,"span",16),e._uU(37),e.ALo(38,"number"),e.qZA()(),e.TgZ(39,"div",15)(40,"h4",11),e._uU(41,"Unsettled Balance"),e.qZA(),e.TgZ(42,"span",16),e._uU(43),e.ALo(44,"number"),e.qZA()(),e.TgZ(45,"div",15)(46,"h4",11),e._uU(47,"CSV Delay"),e.qZA(),e.TgZ(48,"span",16),e._uU(49),e.ALo(50,"number"),e.qZA()()(),e._UZ(51,"mat-divider",14),e.TgZ(52,"div",9)(53,"div",15)(54,"h4",11),e._uU(55,"Local Reserve (Sats)"),e.qZA(),e.TgZ(56,"span",16),e._uU(57),e.ALo(58,"number"),e.qZA()(),e.TgZ(59,"div",15)(60,"h4",11),e._uU(61,"Remote Reserve (Sats)"),e.qZA(),e.TgZ(62,"span",16),e._uU(63),e.ALo(64,"number"),e.qZA()(),e.TgZ(65,"div",15)(66,"h4",11),e._uU(67,"Lifetime (Seconds)"),e.qZA(),e.TgZ(68,"span",16),e._uU(69),e.ALo(70,"number"),e.qZA()(),e.TgZ(71,"div",15)(72,"h4",11),e._uU(73,"Pending HTLCs"),e.qZA(),e.TgZ(74,"span",16),e._uU(75),e.ALo(76,"number"),e.qZA()()(),e._UZ(77,"mat-divider",14),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 Xs(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Show Advanced"),e.qZA())}function Ks(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Hide Advanced"),e.qZA())}function $s(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",24),e.NdJ("copied",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onCopyChanID(a))}),e._uU(1,"Copy Channel ID"),e.qZA()}if(2&n){const t=e.oxw();e.Q6J("payload",t.channel.chan_id)}}function js(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",25),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onClose())}),e._uU(1,"OK"),e.qZA()}}const el=n=>({"xs-scroll-y":n});let Se=(()=>{class n{constructor(t,i,a,s,r,h){this.dialogRef=t,this.data=i,this.logger=a,this.commonService=s,this.snackBar=r,this.router=h,this.faReceipt=y.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)}onGoToLink(){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:"1",lookupValue:this.channel.chan_id}}),this.onClose()}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(I.v),e.Y36(ie.ux),e.Y36(T.F0))};static#t=this.\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 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"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[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(i,a){if(1&i&&(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.NdJ("click",function(){return a.onGoToLink()}),e._uU(16),e.qZA()(),e.TgZ(17,"div",10)(18,"h4",11),e._uU(19,"Peer Alias"),e.qZA(),e.TgZ(20,"span",13),e._uU(21),e.qZA()()(),e._UZ(22,"mat-divider",14),e.TgZ(23,"div",9)(24,"div",1)(25,"h4",11),e._uU(26,"Channel Point"),e.qZA(),e.TgZ(27,"span",13),e._uU(28),e.qZA()()(),e._UZ(29,"mat-divider",14),e.TgZ(30,"div",9)(31,"div",1)(32,"h4",11),e._uU(33,"Peer Public Key"),e.qZA(),e.TgZ(34,"span",13),e._uU(35),e.qZA()()(),e._UZ(36,"mat-divider",14),e.TgZ(37,"div",9)(38,"div",15)(39,"h4",11),e._uU(40,"Local Balance"),e.qZA(),e.TgZ(41,"span",16),e._uU(42),e.ALo(43,"number"),e.qZA()(),e.TgZ(44,"div",15)(45,"h4",11),e._uU(46,"Remote Balance"),e.qZA(),e.TgZ(47,"span",16),e._uU(48),e.ALo(49,"number"),e.qZA()(),e.TgZ(50,"div",15)(51,"h4",11),e._uU(52,"Capacity"),e.qZA(),e.TgZ(53,"span",16),e._uU(54),e.ALo(55,"number"),e.qZA()(),e.TgZ(56,"div",15)(57,"h4",11),e._uU(58,"Uptime (Seconds)"),e.qZA(),e.TgZ(59,"span",16),e._uU(60),e.ALo(61,"number"),e.qZA()()(),e._UZ(62,"mat-divider",14),e.TgZ(63,"div",9)(64,"div",15)(65,"h4",11),e._uU(66,"Active"),e.qZA(),e.TgZ(67,"span",16),e._uU(68),e.qZA()(),e.TgZ(69,"div",15)(70,"h4",11),e._uU(71,"Private"),e.qZA(),e.TgZ(72,"span",16),e._uU(73),e.qZA()(),e.TgZ(74,"div",15)(75,"h4",11),e._uU(76,"Initiator"),e.qZA(),e.TgZ(77,"span",16),e._uU(78),e.qZA()(),e.TgZ(79,"div",15)(80,"h4",11),e._uU(81,"Number of Updates"),e.qZA(),e.TgZ(82,"span",16),e._uU(83),e.ALo(84,"number"),e.qZA()()(),e._UZ(85,"mat-divider",14),e.YNc(86,Ws,78,39,"div",17),e.TgZ(87,"div",18)(88,"button",19),e.NdJ("click",function(){return a.onShowAdvanced()}),e.YNc(89,Xs,2,0,"p",20)(90,Ks,2,0,"ng-template",null,21,e.W1O),e.qZA(),e.YNc(92,$s,2,1,"button",22)(93,js,2,0,"button",23),e.qZA()()()()()),2&i){const s=e.MAs(91);e.xp6(4),e.Q6J("icon",a.faReceipt),e.xp6(5),e.Q6J("ngClass",e.VKq(34,el,a.screenSize===a.screenSizeEnum.XS)),e.xp6(7),e.hij(" ",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",s),e.xp6(3),e.Q6J("ngIf",a.showCopy),e.xp6(1),e.Q6J("ngIf",!a.showCopy)}},dependencies:[m.mk,m.O5,J.BN,_.xw,_.Wh,_.yH,F.oO,O.lW,Z.dn,Z.dk,$.d,X.gM,ue.y,K.h,m.JJ]})}return n})();var we=C(2096),Le=C(8291),tl=C(3214);function nl(n,o){1&n&&e.GkF(0)}const me=(n,o)=>({"small-svg":n,"large-svg":o});function il(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",6),e.NdJ("swipe",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onSwipe(a))}),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,me,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function al(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",50),e.NdJ("swipe",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onSwipe(a))}),e.O4$(),e.TgZ(1,"svg",51),e._UZ(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),e.TgZ(65,"defs")(66,"linearGradient",90),e._UZ(67,"stop",91)(68,"stop",92)(69,"stop",93),e.qZA(),e.TgZ(70,"linearGradient",94),e._UZ(71,"stop",91)(72,"stop",92)(73,"stop",93),e.qZA(),e.TgZ(74,"linearGradient",95),e._UZ(75,"stop",91)(76,"stop",92)(77,"stop",93),e.qZA(),e.TgZ(78,"linearGradient",96),e._UZ(79,"stop",91)(80,"stop",92)(81,"stop",93),e.qZA(),e.TgZ(82,"linearGradient",97),e._UZ(83,"stop",91)(84,"stop",92)(85,"stop",93),e.qZA(),e.TgZ(86,"linearGradient",98),e._UZ(87,"stop",91)(88,"stop",92)(89,"stop",93),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,me,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function ol(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",50),e.NdJ("swipe",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onSwipe(a))}),e.O4$(),e.TgZ(1,"svg",99),e._UZ(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),e.TgZ(49,"defs")(50,"linearGradient",137),e._UZ(51,"stop",91)(52,"stop",92)(53,"stop",93),e.qZA(),e.TgZ(54,"linearGradient",138),e._UZ(55,"stop",91)(56,"stop",92)(57,"stop",93),e.qZA(),e.TgZ(58,"linearGradient",139),e._UZ(59,"stop",91)(60,"stop",92)(61,"stop",93),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,me,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function sl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",50),e.NdJ("swipe",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onSwipe(a))}),e.O4$(),e.TgZ(1,"svg",140),e._UZ(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),e.TgZ(42,"defs")(43,"linearGradient",180),e._UZ(44,"stop",91)(45,"stop",92)(46,"stop",93),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,me,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function ll(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",50),e.NdJ("swipe",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onSwipe(a))}),e.O4$(),e.TgZ(1,"svg",140),e._UZ(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),e.TgZ(41,"defs")(42,"linearGradient",199),e._UZ(43,"stop",91)(44,"stop",92)(45,"stop",93),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,me,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let rl=(()=>{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))}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(I.v))};static#t=this.\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 starts",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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["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",1,"fill-color-29"],["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",1,"fill-color-29"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["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","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["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",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-25"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["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",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["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",1,"fill-color-25"],["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",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["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",1,"fill-color-19"],["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",1,"fill-color-21"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-primary-darker"],["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",1,"fill-color-25"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-25"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-21"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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",1,"fill-color-17"],["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-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["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",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-17"],["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",1,"fill-color-22"],["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",1,"fill-color-21"],["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(i,a){if(1&i&&e.YNc(0,nl,1,0,"ng-container",0)(1,il,47,5,"ng-template",null,1,e.W1O)(3,al,96,5,"ng-template",null,2,e.W1O)(5,ol,68,5,"ng-template",null,3,e.W1O)(7,sl,53,5,"ng-template",null,4,e.W1O)(9,ll,52,5,"ng-template",null,5,e.W1O),2&i){const s=e.MAs(2),r=e.MAs(4),h=e.MAs(6),b=e.MAs(8),x=e.MAs(10);e.Q6J("ngTemplateOutlet",1===a.stepNumber?s:2===a.stepNumber?r:3===a.stepNumber?h:4===a.stepNumber?b:x)}},dependencies:[m.mk,m.tP,_.xw,_.Wh,_.yH,F.oO,Z.$j,Z.n5],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[tl.l]}})}return n})();const cl=["stepper"];function pl(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.inputFormLabel)}}function ul(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function ml(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount must be a positive number."),e.qZA())}function _l(n,o){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 dl(n,o){if(1&n&&(e.TgZ(0,"mat-option",54),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.AsE("",t.remote_alias," - ",t.chan_id,"")}}function hl(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Receive from Peer is required."),e.qZA())}function gl(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Receive from Peer not found in the list."),e.qZA())}function fl(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.feeFormLabel)}}function Cl(n,o){if(1&n&&(e.TgZ(0,"mat-option",54),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",t.name," ")}}function xl(n,o){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 yl(n,o){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 Tl(n,o){1&n&&e._uU(0,"Invoice/Payment")}function bl(n,o){1&n&&(e.TgZ(0,"mat-icon",55),e._uU(1,"check"),e.qZA())}function Zl(n,o){1&n&&e._UZ(0,"mat-progress-bar",56)}function vl(n,o){if(1&n&&(e.TgZ(0,"mat-icon",55),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 Al(n,o){1&n&&e._UZ(0,"div",5)}function Sl(n,o){1&n&&e._UZ(0,"mat-progress-bar",56)}function wl(n,o){if(1&n&&(e.TgZ(0,"h4",57),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 Ll(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",58),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onRestart())}),e._uU(1,"Start Again"),e.qZA()}}function ql(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",5)(1,"mat-card-header",6)(2,"div",7)(3,"div",8)(4,"span",9),e._uU(5,"Channel Rebalance"),e.qZA()(),e.TgZ(6,"div",10)(7,"button",11),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.showInfo())}),e._uU(8,"?"),e.qZA(),e.TgZ(9,"button",12),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onClose())}),e._uU(10,"X"),e.qZA()()()(),e.TgZ(11,"mat-card-content",13)(12,"div",5)(13,"div",14)(14,"div",15),e._UZ(15,"fa-icon",16),e.TgZ(16,"span"),e._uU(17,"Circular Rebalance is a payment you make to *yourself* 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",17)(19,"p",18)(20,"strong"),e._uU(21,"Channel Peer:\xa0"),e.qZA(),e._uU(22),e.ALo(23,"titlecase"),e.qZA(),e.TgZ(24,"p",18)(25,"strong"),e._uU(26,"Channel ID:\xa0"),e.qZA(),e._uU(27),e.qZA()(),e.TgZ(28,"mat-vertical-stepper",19,20),e.NdJ("selectionChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.stepSelectionChanged(a))}),e.TgZ(30,"mat-step",21)(31,"form",22),e.YNc(32,pl,1,1,"ng-template",23),e.TgZ(33,"div",24)(34,"mat-form-field",25)(35,"mat-label"),e._uU(36,"Amount"),e.qZA(),e._UZ(37,"input",26),e.TgZ(38,"mat-hint"),e._uU(39),e.qZA(),e.TgZ(40,"span",27),e._uU(41,"Sats"),e.qZA(),e.YNc(42,ul,2,0,"mat-error",28)(43,ml,2,0,"mat-error",28)(44,_l,2,1,"mat-error",28),e.qZA(),e.TgZ(45,"mat-form-field",29)(46,"mat-label"),e._uU(47,"Receive from Peer"),e.qZA(),e.TgZ(48,"input",30),e.NdJ("change",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSelectedPeerChanged())}),e.qZA(),e.TgZ(49,"mat-autocomplete",31,32),e.NdJ("optionSelected",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSelectedPeerChanged())}),e.YNc(51,dl,2,3,"mat-option",33),e.ALo(52,"async"),e.qZA(),e.YNc(53,hl,2,0,"mat-error",28)(54,gl,2,0,"mat-error",28),e.qZA()(),e.TgZ(55,"div",34)(56,"button",35),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSelectFee())}),e._uU(57,"Select Fee"),e.qZA()()()(),e.TgZ(58,"mat-step",21)(59,"form",22),e.YNc(60,fl,1,1,"ng-template",36),e.TgZ(61,"div",24)(62,"div",24)(63,"mat-form-field",29)(64,"mat-label"),e._uU(65,"Fee Limits"),e.qZA(),e.TgZ(66,"mat-select",37),e.YNc(67,Cl,2,2,"mat-option",33),e.qZA()(),e.TgZ(68,"mat-form-field",25)(69,"mat-label"),e._uU(70),e.qZA(),e._UZ(71,"input",38),e.YNc(72,xl,2,1,"mat-error",28)(73,yl,2,1,"mat-error",28),e.qZA()()(),e.TgZ(74,"div",34)(75,"button",39),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onRebalance())}),e._uU(76,"Rebalance"),e.qZA()()()(),e.TgZ(77,"mat-step",40)(78,"form",22),e.YNc(79,Tl,1,0,"ng-template",23),e.TgZ(80,"div",41)(81,"mat-expansion-panel",42)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",43),e._uU(85),e.YNc(86,bl,2,0,"mat-icon",44),e.qZA()()(),e.TgZ(87,"div",5)(88,"span",45),e._uU(89),e.qZA()()(),e.YNc(90,Zl,1,0,"mat-progress-bar",46),e.TgZ(91,"mat-expansion-panel",47)(92,"mat-expansion-panel-header")(93,"mat-panel-title")(94,"span",43),e._uU(95),e.YNc(96,vl,2,1,"mat-icon",44),e.qZA()()(),e.YNc(97,Al,1,0,"div",48),e.qZA(),e.YNc(98,Sl,1,0,"mat-progress-bar",46),e.qZA(),e.YNc(99,wl,2,1,"h4",49),e.TgZ(100,"div",50),e.YNc(101,Ll,2,0,"button",51),e.qZA()()()(),e.TgZ(102,"div",52)(103,"button",53),e._uU(104,"Close"),e.qZA()()()()()}if(2&n){const t=e.MAs(50),i=e.oxw(),a=e.MAs(2);e.Q6J("@opacityAnimation",void 0),e.xp6(15),e.Q6J("icon",i.faInfoCircle),e.xp6(7),e.Oqu(e.lcZ(23,42,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(6),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(4),e.Q6J("matAutocomplete",t),e.xp6(1),e.Q6J("displayWith",i.displayFn),e.xp6(2),e.Q6J("ngForOf",e.lcZ(52,44,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(8),e.Q6J("ngForOf",i.feeLimitTypes),e.xp6(3),e.Oqu(i.feeFormGroup.controls.selFeeLimitType.value?i.feeFormGroup.controls.selFeeLimitType.value.placeholder:i.feeLimitTypes[0].placeholder),e.xp6(1),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",a),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 Fl(n,o){1&n&&e.GkF(0)}function kl(n,o){if(1&n&&e.YNc(0,Fl,1,0,"ng-container",59),2&n){const t=e.oxw(),i=e.MAs(4),a=e.MAs(6);e.Q6J("ngTemplateOutlet",t.paymentStatus.error?i:a)}}function Ul(n,o){if(1&n&&(e.TgZ(0,"div",5)(1,"span",45),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Error: ",t.paymentStatus.error,"")}}function Ol(n,o){if(1&n&&(e.TgZ(0,"div",5)(1,"div",60)(2,"div",61)(3,"h4",62),e._uU(4,"Payment Hash"),e.qZA(),e.TgZ(5,"span",45),e._uU(6),e.qZA()()(),e._UZ(7,"mat-divider",63),e.TgZ(8,"div",60)(9,"div",64)(10,"h4",62),e._uU(11),e.qZA(),e.TgZ(12,"span",45),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",45),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 Nl=(n,o)=>({"dot-primary":n,"dot-primary-lighter":o});function Il(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"span",80),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2);return e.KtG(r.onStepChanged(s))}),e._UZ(1,"p",81),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngClass",e.WLB(1,Nl,i.stepNumber===t,i.stepNumber!==t))}}function Pl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",82),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onStepChanged(4))}),e._uU(1,"Back"),e.qZA()}}function Rl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",83),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return a.flgShowInfo=!1,e.KtG(a.stepNumber=1)}),e._uU(1,"Close"),e.qZA()}}function Ml(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",84),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return a.flgShowInfo=!1,e.KtG(a.stepNumber=1)}),e._uU(1,"Close"),e.qZA()}}function Jl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",85),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onStepChanged(a.stepNumber-1))}),e._uU(1,"Back"),e.qZA()}}function Dl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",86),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onStepChanged(a.stepNumber+1))}),e._uU(1,"Next"),e.qZA()}}const Ql=()=>[1,2,3,4,5];function El(n,o){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",12),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return a.flgShowInfo=!1,e.KtG(a.stepNumber=1)}),e._uU(7,"X"),e.qZA()()(),e.TgZ(8,"mat-card-content",70)(9,"rtl-channel-rebalance-infographics",71),e.NdJ("stepNumberChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.stepNumber=a)}),e.qZA()(),e.TgZ(10,"div",72),e.YNc(11,Il,2,4,"span",73),e.qZA(),e.TgZ(12,"div",74),e.YNc(13,Pl,2,0,"button",75)(14,Rl,2,0,"button",76)(15,Ml,2,0,"button",77)(16,Jl,2,0,"button",78)(17,Dl,2,0,"button",79),e.qZA()()()}if(2&n){const t=e.oxw();e.Q6J("@opacityAnimation",void 0),e.xp6(9),e.Q6J("animationDirection",t.animationDirection)("stepNumber",t.stepNumber),e.xp6(2),e.Q6J("ngForOf",e.DdM(9,Ql)),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 Bl=(()=>{class n{constructor(t,i,a,s,r,h,b,x){this.dialogRef=t,this.data=i,this.logger=a,this.store=s,this.actions=r,this.formBuilder=h,this.decimalPipe=b,this.commonService=x,this.faInfoCircle=y.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 u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let t="",i="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.active&&a.chan_id!==this.selChannel.chan_id&&a.remote_balance&&a.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((a,s)=>(t=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",i=s.remote_alias?s.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",ti?1:0)),l.Vc.forEach((a,s)=>{s>0&&this.feeLimitTypes.push(a)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[p.kI.required]],rebalanceAmount:["",[p.kI.required,p.kI.min(1),p.kI.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,p.kI.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],p.kI.required],feeLimit:["",[p.kI.required,p.kI.min(0)]],hiddenFeeLimit:["",[p.kI.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(f.Ef).pipe((0,d.R)(this.unSubs[0])).subscribe(a=>{this.invoices=a.listInvoices,this.logger.info(a)}),this.actions.pipe((0,d.R)(this.unSubs[1]),(0,B.h)(a=>a.type===l.uR.SET_QUERY_ROUTES_LND||a.type===l.uR.SEND_PAYMENT_STATUS_LND||a.type===l.uR.NEWLY_SAVED_INVOICE_LND)).subscribe(a=>{a.type===l.uR.SET_QUERY_ROUTES_LND&&(this.queryRoute=a.payload),a.type===l.uR.SEND_PAYMENT_STATUS_LND&&(this.logger.info(a.payload),this.flgPaymentSent=!0,this.paymentStatus=a.payload,this.flgEditable=!0),a.type===l.uR.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(a.payload),this.flgInvoiceGenerated=!0,this.sendPayment(a.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,d.R)(this.unSubs[2]),(0,ve.O)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,we.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,d.R)(this.unSubs[3]),(0,ve.O)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,we.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){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: "+this.queryRoute.routes[0].hops?.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,v.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:l.$Y,is_amp:!1,pageSize:l.IV,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(t=>(!t.settle_date||0==+t.settle_date)&&t.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==t.state)}sendPayment(t){this.flgInvoiceGenerated=!0,this.paymentRequest=t,this.store.dispatch((0,v.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(){return this.activeChannels?.filter(t=>t.remote_balance&&t.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&t.chan_id!==this.selChannel.chan_id&&(0===t.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===t.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const t=this.activeChannels?.filter(i=>i.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===i.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));t&&t.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(t[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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(q.yh),e.Y36(W.eX),e.Y36(p.QS),e.Y36(m.JJ),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(i,a){if(1&i&&e.Gf(cl,5),2&i){let s;e.iGM(s=e.CRH())&&(a.stepper=s.first)}},decls:8,vars:2,consts:[["fxLayout","column",4,"ngIf"],["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["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.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"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","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","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"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"],["fxFlex","100"],["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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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"],["tabindex","21","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(i,a){1&i&&e.YNc(0,ql,105,46,"div",0)(1,kl,1,1,"ng-template",null,1,e.W1O)(3,Ul,3,1,"ng-template",null,2,e.W1O)(5,Ol,19,4,"ng-template",null,3,e.W1O)(7,El,18,10,"div",4),2&i&&(e.Q6J("ngIf",!a.flgShowInfo),e.xp6(7),e.Q6J("ngIf",a.flgShowInfo))},dependencies:[m.mk,m.sg,m.O5,m.tP,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.sg,p.u,J.BN,_.xw,_.Wh,_.yH,F.oO,Q.ZT,O.lW,Z.dn,Z.dk,H.ib,H.yz,H.yK,ne.Hw,R.Nt,g.KE,g.hX,g.bx,g.TO,g.R9,$.d,D.pW,w.gD,E.ey,Y.C0,Y.VY,Y.Vq,oe.XC,oe.ZL,K.h,rl,m.Ov,m.rS],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Le._]}})}return n})();function Hl(n,o){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 Yl(n,o){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 Gl(n,o){if(1&n&&(e.TgZ(0,"mat-option",29),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function Vl(n,o){1&n&&(e.TgZ(0,"mat-form-field",30)(1,"mat-label"),e._uU(2,"Default"),e.qZA(),e._UZ(3,"input",31),e.qZA())}function zl(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function Wl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"mat-label"),e._uU(2,"Number of Blocks"),e.qZA(),e.TgZ(3,"input",33,34),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.blocks=a)}),e.qZA(),e.YNc(5,zl,2,0,"mat-error",35),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(3),e.Q6J("step",1)("min",0)("ngModel",t.blocks),e.xp6(2),e.Q6J("ngIf",!t.blocks)}}function Xl(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function Kl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"mat-label"),e._uU(2,"Fees (Sats/vByte)"),e.qZA(),e.TgZ(3,"input",36,37),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.fees=a)}),e.qZA(),e.YNc(5,Xl,2,0,"mat-error",35),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(3),e.Q6J("step",1)("min",0)("ngModel",t.fees),e.xp6(2),e.Q6J("ngIf",!t.fees)}}function $l(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",19),e.YNc(1,Yl,4,1,"div",20),e.TgZ(2,"div",21)(3,"mat-form-field",22)(4,"mat-select",23),e.NdJ("valueChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selTransType=a)}),e.YNc(5,Gl,2,2,"mat-option",24),e.qZA()(),e.YNc(6,Vl,4,0,"mat-form-field",25)(7,Wl,6,4,"mat-form-field",26)(8,Kl,6,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("disabled",!t.channelToClose.active)("value",t.selTransType),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 jl(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",38),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.resetData())}),e._uU(1,"Clear"),e.qZA()}}function er(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",39),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.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 tr(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"button",40),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onClose())}),e._uU(1,"Ok"),e.qZA()}}let nr=(()=>{class n{constructor(t,i,a,s,r){this.dialogRef=t,this.data=i,this.store=a,this.actions=s,this.logger=r,this.transTypes=l.Dr,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=y.eHv,this.faInfoCircle=y.sqG,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.unSubs=[new u.x,new u.x]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,d.R)(this.unSubs[0]),(0,B.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(a=>a.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,v.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(q.yh),e.Y36(W.eX),e.Y36(U.mQ))};static#t=this.\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 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"],["fxLayout","column","fxFlex.gt-sm","48"],["tabindex","1",3,"disabled","value","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","","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","","tabindex","2",3,"step","min","ngModel","ngModelChange"],["blcks","ngModel"],[4,"ngIf"],["matInput","","type","number","name","ccfees","required","","tabindex","3",3,"step","min","ngModel","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(i,a){1&i&&(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,Hl,5,1,"div",10)(14,$l,9,7,"div",11),e.qZA(),e.TgZ(15,"div",12),e.YNc(16,jl,2,0,"button",13)(17,er,2,1,"button",14)(18,tr,2,0,"button",15),e.qZA()()()()()),2&i&&(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))},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.qQ,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,O.lW,Z.dn,Z.dk,ne.Hw,R.Nt,g.KE,g.hX,g.TO,w.gD,E.ey,ee.q]})}return n})();function ir(n,o){if(1&n&&(e.TgZ(0,"mat-option",49),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function ar(n,o){1&n&&e._UZ(0,"mat-progress-bar",50)}function or(n,o){1&n&&e._UZ(0,"th",51)}function sr(n,o){1&n&&e._UZ(0,"span",55)}function lr(n,o){1&n&&e._UZ(0,"span",56)}function rr(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,sr,1,0,"span",53)(2,lr,1,0,"span",54),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf",t.active),e.xp6(1),e.Q6J("ngIf",!t.active)}}function cr(n,o){1&n&&e._UZ(0,"th",57)}function pr(n,o){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 ur(n,o){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 mr(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,pr,2,1,"span",58)(2,ur,2,1,"span",59),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf",t.private),e.xp6(1),e.Q6J("ngIf",!t.private)}}function _r(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Peer"),e.qZA())}const ge=n=>({width:n});function dr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.remote_alias)}}function hr(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Pubkey"),e.qZA())}function gr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.remote_pubkey)}}function fr(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Channel Point"),e.qZA())}function Cr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel_point)}}function xr(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Channel ID"),e.qZA())}function yr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",64)(2,"span",65),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.chan_id)}}function Tr(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Initiator"),e.qZA())}function br(n,o){if(1&n&&(e.TgZ(0,"td",52),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t.initiator?"Yes":"No")}}function Zr(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Static Remote Key"),e.qZA())}function vr(n,o){if(1&n&&(e.TgZ(0,"td",52),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t.static_remote_key?"Yes":"No")}}function Ar(n,o){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 Sr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",t.uptime_str," ")}}function wr(n,o){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 Lr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",t.lifetime_str," ")}}function qr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Commit Fee (Sats)"),e.qZA())}function Fr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_fee)," ")}}function kr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Commit Weight"),e.qZA())}function Ur(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_weight)," ")}}function Or(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Fee/KW"),e.qZA())}function Nr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.fee_per_kw)," ")}}function Ir(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Updates"),e.qZA())}function Pr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.num_updates)," ")}}function Rr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Unsettled Balance (Sats)"),e.qZA())}function Mr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.unsettled_balance)," ")}}function Jr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Capacity (Sats)"),e.qZA())}function Dr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.capacity)," ")}}function Qr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Local Reserve (Sats)"),e.qZA())}function Er(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_chan_reserve_sat)," ")}}function Br(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Remote Reserve (Sats)"),e.qZA())}function Hr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_chan_reserve_sat)," ")}}function Yr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Sats Sent"),e.qZA())}function Gr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.total_satoshis_sent)," ")}}function Vr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Sats Received"),e.qZA())}function zr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.total_satoshis_received)," ")}}function Wr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Local Balance (Sats)"),e.qZA())}function Xr(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_balance)," ")}}function Kr(n,o){1&n&&(e.TgZ(0,"th",66),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function $r(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",67),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_balance)," ")}}function jr(n,o){1&n&&(e.TgZ(0,"th",63),e._uU(1,"Balance Score"),e.qZA())}function ec(n,o){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=o.$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 tc(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onChannelUpdate("all"))}),e._uU(5,"Update Fee Policy"),e.qZA(),e.TgZ(6,"mat-option",74),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onDownloadCSV())}),e._uU(7,"Download CSV"),e.qZA()()()()}}function nc(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-option",74),e.NdJ("click",function(){e.CHM(t);const a=e.oxw().$implicit,s=e.oxw();return e.KtG(s.onCircularRebalance(a))}),e._uU(1,"Circular Rebalance"),e.qZA()}}function ic(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-option",74),e.NdJ("click",function(){e.CHM(t);const a=e.oxw().$implicit,s=e.oxw();return e.KtG(s.onLoopOut(a))}),e._uU(1,"Loop Out"),e.qZA()}}function ac(n,o){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,"perfect-scrollbar")(5,"mat-option",74),e.NdJ("click",function(a){const r=e.CHM(t).$implicit,h=e.oxw();return e.KtG(h.onChannelClick(r,a))}),e._uU(6,"View Info"),e.qZA(),e.TgZ(7,"mat-option",74),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onViewRemotePolicy(s))}),e._uU(8,"View Remote Fee "),e.qZA(),e.TgZ(9,"mat-option",74),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onChannelUpdate(s))}),e._uU(10,"Update Fee Policy"),e.qZA(),e.YNc(11,nc,2,0,"mat-option",77)(12,ic,2,0,"mat-option",77),e.TgZ(13,"mat-option",74),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onChannelClose(s))}),e._uU(14,"Close Channel"),e.qZA()()()()()}if(2&n){const t=e.oxw();e.xp6(11),e.Q6J("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.xp6(1),e.Q6J("ngIf",t.selNode.swapServerUrl)}}function oc(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No peers connected. Add a peer in order to open a channel."),e.qZA())}function sc(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No channel available."),e.qZA())}function lc(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting channels..."),e.qZA())}function rc(n,o){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 cc(n,o){if(1&n&&(e.TgZ(0,"td",78),e.YNc(1,oc,2,0,"p",79)(2,sc,2,0,"p",79)(3,lc,2,0,"p",79)(4,rc,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 pc=n=>({"display-none":n});function uc(n,o){if(1&n&&e._UZ(0,"tr",80),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,pc,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function mc(n,o){1&n&&e._UZ(0,"tr",81)}function _c(n,o){1&n&&e._UZ(0,"tr",82)}const dc=()=>["all"],hc=n=>({"error-border":n}),gc=()=>["no_channel"];let fc=(()=>{class n{constructor(t,i,a,s,r,h,b,x){this.logger=t,this.store=i,this.lndEffects=a,this.commonService=s,this.rtlEffects=r,this.decimalPipe=h,this.loopService=b,this.camelCaseWithReplace=x,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=y.Mdf,this.faEyeSlash=y.Aq,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.Bn,this.unSubs=[new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Wi).pipe((0,d.R)(this.unSubs[3])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(f.qU).pipe((0,d.R)(this.unSubs[4])).subscribe(t=>{this.totalBalance=t.blockchainBalance?.total_balance?+t.blockchainBalance?.total_balance:0}),this.store.select(f.ZW).pipe((0,d.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){this.store.dispatch((0,v.$A)({payload:{uiMessage:l.m6.GET_REMOTE_POLICY,channelID:t.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,z.q)(1)).subscribe(i=>{if(!i.fee_base_msat&&!i.fee_rate_milli_msat&&!i.time_lock_delta)return!1;const a=[[{key:"fee_base_msat",value:i.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.Gi.NUMBER},{key:"fee_rate_milli_msat",value:i.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.Gi.NUMBER},{key:"fee_rate_milli_msat",value:i.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.Gi.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:i.time_lock_delta,title:"Time Lock Delta",width:25,type:l.Gi.NUMBER}]],s="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:s,message:a}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,L.qR)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:Bl}}}))}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,step:100,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,d.R)(this.unSubs[6])).subscribe(a=>{a&&this.store.dispatch((0,v.pW)({payload:{baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[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,v.$A)({payload:{uiMessage:l.m6.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,z.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 a="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:a,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,step:100,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,d.R)(this.unSubs[7])).subscribe(i=>{if(i){const a={baseFeeMsat:i[0].inputValue,feeRate:i[1].inputValue,timeLockDelta:i[2].inputValue,chanPoint:t.channel_point};i.length>3&&i[3]&&i[4]&&(a.minHtlcMsat=i[3].inputValue,a.maxHtlcMsat=i[4].inputValue),this.store.dispatch((0,v.pW)({payload:a}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,v.UR)()),this.store.dispatch((0,L.qR)({payload:{data:{channel:t,component:nr}}}))}onChannelClick(t,i){this.store.dispatch((0,L.qR)({payload:{data:{channel:t,showCopy:!0,component:Se}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=(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":a=t?.active?"active":"inactive";break;case"private":a=t?.private?"private":"public";break;default:a=typeof t[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.includes(i)}}loadChannelsTable(t){this.channels=new c.by([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let h=60,b=1,x=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>x&&(x=+S.uptime)}),!0){case x<3600:this.timeUnit="Mins:Secs",h=60,b=1;break;case x>=3600&&x<86400:this.timeUnit="Hrs:Mins",h=3600,b=60;break;case x>=86400&&x<31536e3:this.timeUnit="Days:Hrs",h=86400,b=3600;break;case x>31536e3:this.timeUnit="Yrs:Days",h=31536e3,b=86400;break;default:this.timeUnit="Mins:Secs",h=60,b=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/h),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%h/b),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/h),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%h/b),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,d.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:He.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(le.l),e.Y36(I.v),e.Y36(pe.V),e.Y36(m.JJ),e.Y36(Ye.W),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("Channels")}])],decls:96,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","5",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 grey","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","grey"],["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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&(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-label"),e._uU(6,"Filter By"),e.qZA(),e.TgZ(7,"mat-select",5),e.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),e.TgZ(8,"perfect-scrollbar"),e.YNc(9,ir,2,2,"mat-option",6),e.qZA()()(),e.TgZ(10,"mat-form-field",4)(11,"mat-label"),e._uU(12,"Filter"),e.qZA(),e.TgZ(13,"input",7),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(14,"div",8),e.YNc(15,ar,1,0,"mat-progress-bar",9),e.TgZ(16,"table",10,11),e.ynx(18,12),e.YNc(19,or,1,0,"th",13)(20,rr,3,2,"td",14),e.BQk(),e.ynx(21,15),e.YNc(22,cr,1,0,"th",16)(23,mr,3,2,"td",14),e.BQk(),e.ynx(24,17),e.YNc(25,_r,2,0,"th",18)(26,dr,4,4,"td",14),e.BQk(),e.ynx(27,19),e.YNc(28,hr,2,0,"th",18)(29,gr,4,4,"td",14),e.BQk(),e.ynx(30,20),e.YNc(31,fr,2,0,"th",18)(32,Cr,4,4,"td",14),e.BQk(),e.ynx(33,21),e.YNc(34,xr,2,0,"th",18)(35,yr,4,4,"td",14),e.BQk(),e.ynx(36,22),e.YNc(37,Tr,2,0,"th",18)(38,br,2,1,"td",14),e.BQk(),e.ynx(39,23),e.YNc(40,Zr,2,0,"th",18)(41,vr,2,1,"td",14),e.BQk(),e.ynx(42,24),e.YNc(43,Ar,2,1,"th",25)(44,Sr,3,1,"td",14),e.BQk(),e.ynx(45,26),e.YNc(46,wr,2,1,"th",25)(47,Lr,3,1,"td",14),e.BQk(),e.ynx(48,27),e.YNc(49,qr,2,0,"th",25)(50,Fr,4,3,"td",14),e.BQk(),e.ynx(51,28),e.YNc(52,kr,2,0,"th",25)(53,Ur,4,3,"td",14),e.BQk(),e.ynx(54,29),e.YNc(55,Or,2,0,"th",25)(56,Nr,4,3,"td",14),e.BQk(),e.ynx(57,30),e.YNc(58,Ir,2,0,"th",25)(59,Pr,4,3,"td",14),e.BQk(),e.ynx(60,31),e.YNc(61,Rr,2,0,"th",25)(62,Mr,4,3,"td",14),e.BQk(),e.ynx(63,32),e.YNc(64,Jr,2,0,"th",25)(65,Dr,4,3,"td",14),e.BQk(),e.ynx(66,33),e.YNc(67,Qr,2,0,"th",25)(68,Er,4,3,"td",14),e.BQk(),e.ynx(69,34),e.YNc(70,Br,2,0,"th",25)(71,Hr,4,3,"td",14),e.BQk(),e.ynx(72,35),e.YNc(73,Yr,2,0,"th",25)(74,Gr,4,3,"td",14),e.BQk(),e.ynx(75,36),e.YNc(76,Vr,2,0,"th",25)(77,zr,4,3,"td",14),e.BQk(),e.ynx(78,37),e.YNc(79,Wr,2,0,"th",25)(80,Xr,4,3,"td",14),e.BQk(),e.ynx(81,38),e.YNc(82,Kr,2,0,"th",25)(83,$r,4,3,"td",14),e.BQk(),e.ynx(84,39),e.YNc(85,jr,2,0,"th",18)(86,ec,6,4,"td",14),e.BQk(),e.ynx(87,40),e.YNc(88,tc,8,0,"th",41)(89,ac,15,2,"td",42),e.BQk(),e.ynx(90,43),e.YNc(91,cc,5,4,"td",44),e.BQk(),e.YNc(92,uc,1,3,"tr",45)(93,mc,1,0,"tr",46)(94,_c,1,0,"tr",47),e.qZA()(),e._UZ(95,"mat-paginator",48),e.qZA()),2&i&&(e.xp6(7),e.Q6J("ngModel",a.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(14,dc).concat(a.displayedColumns.slice(0,-1))),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("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.VKq(15,hc,""!==a.errorMessage)),e.xp6(76),e.Q6J("matFooterRowDef",e.DdM(17,gc)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,J.BN,_.xw,_.Wh,_.yH,F.oO,F.Zl,R.Nt,g.KE,g.hX,g.bx,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,X.gM,k.NW,M.Vv,M.$V,m.JJ],styles:[".mat-column-active[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return n})();const Cc=["outputIdx"];function xc(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Index for change output is required."),e.qZA())}function yc(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid index value."),e.qZA())}function Tc(n,o){if(1&n&&(e.TgZ(0,"mat-option",29),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function bc(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function Zc(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",30)(1,"mat-label"),e._uU(2,"Number of Blocks"),e.qZA(),e.TgZ(3,"input",31,32),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.blocks=a)}),e.qZA(),e.YNc(5,bc,2,0,"mat-error",20),e.qZA()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("step",1)("min",0)("ngModel",t.blocks),e.xp6(2),e.Q6J("ngIf",!t.blocks)}}function vc(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function Ac(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",30)(1,"mat-label"),e._uU(2,"Fees (Sats/vByte)"),e.qZA(),e.TgZ(3,"input",33,34),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.fees=a)}),e.qZA(),e.YNc(5,vc,2,0,"mat-error",20),e.qZA()}if(2&n){const t=e.oxw();e.xp6(3),e.Q6J("step",1)("min",0)("ngModel",t.fees),e.xp6(2),e.Q6J("ngIf",!t.fees)}}function Sc(n,o){if(1&n&&(e.TgZ(0,"div",35),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 wc=(()=>{class n{set payReq(t){t&&(this.outputIdx=t)}constructor(t,i,a,s,r){this.dialogRef=t,this.data=i,this.logger=a,this.dataService=s,this.snackBar=r,this.transTypes=[...l.Dr],this.selTransType="2",this.blocks=null,this.fees=null,this.outputIndex=null,this.faCopy=y.kZ_,this.faInfoCircle=y.sqG,this.faExclamationTriangle=y.eHv,this.bumpFeeError="",this.unSubs=[new u.x,new u.x]}ngOnInit(){this.transTypes=this.transTypes.splice(1),this.bumpFeeChannel=this.data.pendingChannel;const t=this.bumpFeeChannel.channel?.channel_point?.split(":")||[];this.bumpFeeChannel&&this.bumpFeeChannel.channel&&(this.bumpFeeChannel.channel.txid_str=t[0]||(this.bumpFeeChannel.channel&&this.bumpFeeChannel.channel.channel_point?this.bumpFeeChannel.channel.channel_point:""),this.bumpFeeChannel.channel.output_index=+t[1]||null)}onBumpFee(){return this.outputIndex===this.bumpFeeChannel.channel?.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,d.R)(this.unSubs[0])).subscribe({next:t=>{this.dialogRef.close(!1)},error:t=>{this.logger.error(t),this.bumpFeeError=t.message?t.message:t}})}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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(te.D),e.Y36(ie.ux))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(i,a){if(1&i&&e.Gf(Cc,5),2&i){let s;e.iGM(s=e.CRH())&&(a.payReq=s.first)}},decls:50,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 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"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","outputIdx",3,"step","min","ngModel","ngModelChange"],["outputIdx","ngModel"],[4,"ngIf"],["fxLayout","column","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"],["fxFlex.gt-sm","32","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","","tabindex","3",3,"step","min","ngModel","ngModelChange"],["blcks","ngModel"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"step","min","ngModel","ngModelChange"],["fee","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(i,a){if(1&i&&(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(r){return a.onCopyID(r)}),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,"mat-label"),e._uU(34,"Index for Change Output"),e.qZA(),e.TgZ(35,"input",18,19),e.NdJ("ngModelChange",function(r){return a.outputIndex=r}),e.qZA(),e.YNc(37,xc,2,0,"mat-error",20)(38,yc,2,0,"mat-error",20),e.qZA(),e.TgZ(39,"mat-form-field",21)(40,"mat-select",22),e.NdJ("valueChange",function(r){return a.selTransType=r})("selectionChange",function(){return a.blocks=null,a.fees=null}),e.YNc(41,Tc,2,2,"mat-option",23),e.qZA()(),e.YNc(42,Zc,6,4,"mat-form-field",24)(43,Ac,6,4,"mat-form-field",24),e.qZA(),e.YNc(44,Sc,4,2,"div",25),e.qZA()(),e.TgZ(45,"div",26)(46,"button",27),e.NdJ("click",function(){return a.resetData()}),e._uU(47,"Clear"),e.qZA(),e.TgZ(48,"button",28),e.NdJ("click",function(){return a.onBumpFee()}),e._uU(49),e.qZA()()()()()()),2&i){const s=e.MAs(36);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(19),e.Q6J("step",1)("min",0)("ngModel",a.outputIndex),e.xp6(2),e.Q6J("ngIf",null==s.errors?null:s.errors.required),e.xp6(1),e.Q6J("ngIf",null==s.errors?null:s.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")}},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.qQ,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,O.lW,Z.dn,Z.dk,R.Nt,g.KE,g.hX,g.TO,g.R9,w.gD,E.ey,X.gM,ue.y,ee.q]})}return n})();function Lc(n,o){1&n&&e._UZ(0,"mat-progress-bar",40)}function qc(n,o){1&n&&e._UZ(0,"mat-progress-bar",40)}function Fc(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Peer"),e.qZA())}const V=n=>({width:n});function kc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function Uc(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Pubkey"),e.qZA())}function Oc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function Nc(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Channel Point"),e.qZA())}function Ic(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function Pc(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Initiator"),e.qZA())}function Rc(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function Mc(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Commitment Type"),e.qZA())}function Jc(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Dc(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Confirmation Height"),e.qZA())}function Qc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.confirmation_height))}}function Ec(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Commit Fee (Sats)"),e.qZA())}function Bc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.commit_fee))}}function Hc(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Commit Weight"),e.qZA())}function Yc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.commit_weight))}}function Gc(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Fee/KW"),e.qZA())}function Vc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.fee_per_kw))}}function zc(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Capacity (Sats)"),e.qZA())}function Wc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function Xc(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Local Balance (Sats)"),e.qZA())}function Kc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function $c(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function jc(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function e1(n,o){1&n&&(e.TgZ(0,"th",47)(1,"div",48),e._uU(2,"Actions"),e.qZA()())}function t1(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",49)(1,"div",48)(2,"mat-select",50),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",51),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onOpenClick(s))}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",51),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onBumpFee(s))}),e._uU(7,"Bump Fee"),e.qZA()()()()}}function n1(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function i1(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function a1(n,o){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 o1(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,n1,2,0,"p",53)(2,i1,2,0,"p",53)(3,a1,2,1,"p",53),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 qe=n=>({"display-none":n});function s1(n,o){if(1&n&&e._UZ(0,"tr",54),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,qe,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function l1(n,o){1&n&&e._UZ(0,"tr",55)}function r1(n,o){1&n&&e._UZ(0,"tr",56)}function c1(n,o){1&n&&e._UZ(0,"mat-progress-bar",40)}function p1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Closing Tx ID"),e.qZA())}function u1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.closing_txid)}}function m1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Peer"),e.qZA())}function _1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function d1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Pubkey"),e.qZA())}function h1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function g1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Channel Point"),e.qZA())}function f1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function C1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Initiator"),e.qZA())}function x1(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function y1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Commitment Type"),e.qZA())}function T1(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function b1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Limbo Balance (Sats)"),e.qZA())}function Z1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.limbo_balance))}}function v1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Maturity Height"),e.qZA())}function A1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.maturity_height))}}function S1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Blocks till Maturity"),e.qZA())}function w1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.blocks_til_maturity))}}function L1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Recovered Balance (Sats)"),e.qZA())}function q1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.recovered_balance))}}function F1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Capacity (Sats)"),e.qZA())}function k1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function U1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Local Balance (Sats)"),e.qZA())}function O1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function N1(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function I1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function P1(n,o){1&n&&(e.TgZ(0,"th",47)(1,"div",48),e._uU(2,"Actions"),e.qZA()())}function R1(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",49)(1,"button",57),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onForceClosingClick(s))}),e._uU(2,"View Info"),e.qZA()()}}function M1(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function J1(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function D1(n,o){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 Q1(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,M1,2,0,"p",53)(2,J1,2,0,"p",53)(3,D1,2,1,"p",53),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 E1(n,o){if(1&n&&e._UZ(0,"tr",54),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,qe,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function B1(n,o){1&n&&e._UZ(0,"tr",55)}function H1(n,o){1&n&&e._UZ(0,"tr",56)}function Y1(n,o){1&n&&e._UZ(0,"mat-progress-bar",40)}function G1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Closing Tx ID"),e.qZA())}function V1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.closing_txid)}}function z1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Peer"),e.qZA())}function W1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function X1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Pubkey"),e.qZA())}function K1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function $1(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Channel Point"),e.qZA())}function j1(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function ep(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Initiator"),e.qZA())}function tp(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function np(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Commitment Type"),e.qZA())}function ip(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function ap(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Capacity (Sats)"),e.qZA())}function op(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function sp(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Local Balance (Sats)"),e.qZA())}function lp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function rp(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function cp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function pp(n,o){1&n&&(e.TgZ(0,"th",47)(1,"div",48),e._uU(2,"Actions"),e.qZA()())}function up(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",49)(1,"button",58),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onClosingClick(s))}),e._uU(2,"View Info"),e.qZA()()}}function mp(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function _p(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function dp(n,o){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 hp(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,mp,2,0,"p",53)(2,_p,2,0,"p",53)(3,dp,2,1,"p",53),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 gp(n,o){if(1&n&&e._UZ(0,"tr",54),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,qe,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function fp(n,o){1&n&&e._UZ(0,"tr",55)}function Cp(n,o){1&n&&e._UZ(0,"tr",56)}function xp(n,o){1&n&&e._UZ(0,"mat-progress-bar",40)}function yp(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Closing Tx ID"),e.qZA())}function Tp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.closing_txid)}}function bp(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Peer"),e.qZA())}function Zp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_alias)}}function vp(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Pubkey"),e.qZA())}function Ap(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.remote_node_pub)}}function Sp(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Channel Point"),e.qZA())}function wp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"div",43)(2,"span",44),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,V,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.channel.channel_point)}}function Lp(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Initiator"),e.qZA())}function qp(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.channel.initiator,"initiator_"))}}function Fp(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Commitment Type"),e.qZA())}function kp(n,o){if(1&n&&(e.TgZ(0,"td",42),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.Dn7(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Up(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Limbo Balance (Sats)"),e.qZA())}function Op(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.limbo_balance))}}function Np(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Capacity (Sats)"),e.qZA())}function Ip(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.capacity))}}function Pp(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Local Balance (Sats)"),e.qZA())}function Rp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.local_balance))}}function Mp(n,o){1&n&&(e.TgZ(0,"th",45),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function Jp(n,o){if(1&n&&(e.TgZ(0,"td",42)(1,"span",46),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.channel.remote_balance))}}function Dp(n,o){1&n&&(e.TgZ(0,"th",47),e._uU(1,' fxLayoutAlign="end center" '),e.TgZ(2,"div",48),e._uU(3,"Actions"),e.qZA()())}function Qp(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",49)(1,"button",59),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onWaitClosingClick(s))}),e._uU(2,"View Info"),e.qZA()()}}function Ep(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No pending channel."),e.qZA())}function Bp(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting pending channels..."),e.qZA())}function Hp(n,o){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 Yp(n,o){if(1&n&&(e.TgZ(0,"td",52),e.YNc(1,Ep,2,0,"p",53)(2,Bp,2,0,"p",53)(3,Hp,2,1,"p",53),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 Gp=n=>({"py-0":!0,"display-none":n});function Vp(n,o){if(1&n&&e._UZ(0,"tr",54),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Gp,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function zp(n,o){1&n&&e._UZ(0,"tr",55)}function Wp(n,o){1&n&&e._UZ(0,"tr",56)}const fe=n=>({"error-border bordered-box":n,"bordered-box":!0}),Xp=()=>["no_pending_open"],Kp=()=>["no_pending_force_closing"],$p=()=>["no_pending_closing"],jp=()=>["no_pending_wait_closing"];let eu=(()=>{class n{constructor(t,i,a){this.logger=t,this.store=i,this.commonService=a,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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.openTableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.forceClosingTableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.closingTableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.waitingCloseTableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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(f.ni).pipe((0,d.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)),a=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,i,a),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:wc}}}))}onForceClosingClick(t){const i=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),a=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,i,a),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)),a=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),s={};Object.assign(s,i,a),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)),a=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,a,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){this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new c.by([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new c.by([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new c.by([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new c.by([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(i,a){if(1&i&&e.Gf(A.YE,5),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("Channels")}])],decls:202,vars:52,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,"matSortActive","matSortDirection","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,"matSortActive","matSortDirection","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"],["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-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(i,a){1&i&&(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,Lc,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,qc,1,0,"mat-progress-bar",3),e.TgZ(12,"table",6,7),e.ynx(14,8),e.YNc(15,Fc,2,0,"th",9)(16,kc,4,4,"td",10),e.BQk(),e.ynx(17,11),e.YNc(18,Uc,2,0,"th",9)(19,Oc,4,4,"td",10),e.BQk(),e.ynx(20,12),e.YNc(21,Nc,2,0,"th",9)(22,Ic,4,4,"td",10),e.BQk(),e.ynx(23,13),e.YNc(24,Pc,2,0,"th",9)(25,Rc,3,4,"td",10),e.BQk(),e.ynx(26,14),e.YNc(27,Mc,2,0,"th",9)(28,Jc,3,5,"td",10),e.BQk(),e.ynx(29,15),e.YNc(30,Dc,2,0,"th",16)(31,Qc,4,3,"td",10),e.BQk(),e.ynx(32,17),e.YNc(33,Ec,2,0,"th",16)(34,Bc,4,3,"td",10),e.BQk(),e.ynx(35,18),e.YNc(36,Hc,2,0,"th",16)(37,Yc,4,3,"td",10),e.BQk(),e.ynx(38,19),e.YNc(39,Gc,2,0,"th",16)(40,Vc,4,3,"td",10),e.BQk(),e.ynx(41,20),e.YNc(42,zc,2,0,"th",16)(43,Wc,4,3,"td",10),e.BQk(),e.ynx(44,21),e.YNc(45,Xc,2,0,"th",16)(46,Kc,4,3,"td",10),e.BQk(),e.ynx(47,22),e.YNc(48,$c,2,0,"th",16)(49,jc,4,3,"td",10),e.BQk(),e.ynx(50,23),e.YNc(51,e1,3,0,"th",24)(52,t1,8,0,"td",25),e.BQk(),e.ynx(53,26),e.YNc(54,o1,4,3,"td",27),e.BQk(),e.YNc(55,s1,1,3,"tr",28)(56,l1,1,0,"tr",29)(57,r1,1,0,"tr",30),e.qZA()()(),e.YNc(58,c1,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,p1,2,0,"th",9)(68,u1,4,4,"td",10),e.BQk(),e.ynx(69,8),e.YNc(70,m1,2,0,"th",9)(71,_1,4,4,"td",10),e.BQk(),e.ynx(72,11),e.YNc(73,d1,2,0,"th",9)(74,h1,4,4,"td",10),e.BQk(),e.ynx(75,12),e.YNc(76,g1,2,0,"th",9)(77,f1,4,4,"td",10),e.BQk(),e.ynx(78,13),e.YNc(79,C1,2,0,"th",9)(80,x1,3,4,"td",10),e.BQk(),e.ynx(81,14),e.YNc(82,y1,2,0,"th",9)(83,T1,3,5,"td",10),e.BQk(),e.ynx(84,33),e.YNc(85,b1,2,0,"th",16)(86,Z1,4,3,"td",10),e.BQk(),e.ynx(87,34),e.YNc(88,v1,2,0,"th",16)(89,A1,4,3,"td",10),e.BQk(),e.ynx(90,35),e.YNc(91,S1,2,0,"th",16)(92,w1,4,3,"td",10),e.BQk(),e.ynx(93,36),e.YNc(94,L1,2,0,"th",16)(95,q1,4,3,"td",10),e.BQk(),e.ynx(96,20),e.YNc(97,F1,2,0,"th",16)(98,k1,4,3,"td",10),e.BQk(),e.ynx(99,21),e.YNc(100,U1,2,0,"th",16)(101,O1,4,3,"td",10),e.BQk(),e.ynx(102,22),e.YNc(103,N1,2,0,"th",16)(104,I1,4,3,"td",10),e.BQk(),e.ynx(105,23),e.YNc(106,P1,3,0,"th",24)(107,R1,3,0,"td",25),e.BQk(),e.ynx(108,37),e.YNc(109,Q1,4,3,"td",27),e.BQk(),e.YNc(110,E1,1,3,"tr",28)(111,B1,1,0,"tr",29)(112,H1,1,0,"tr",30),e.qZA()()(),e.YNc(113,Y1,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,G1,2,0,"th",9)(123,V1,4,4,"td",10),e.BQk(),e.ynx(124,8),e.YNc(125,z1,2,0,"th",9)(126,W1,4,4,"td",10),e.BQk(),e.ynx(127,11),e.YNc(128,X1,2,0,"th",9)(129,K1,4,4,"td",10),e.BQk(),e.ynx(130,12),e.YNc(131,$1,2,0,"th",9)(132,j1,4,4,"td",10),e.BQk(),e.ynx(133,13),e.YNc(134,ep,2,0,"th",9)(135,tp,3,4,"td",10),e.BQk(),e.ynx(136,14),e.YNc(137,np,2,0,"th",9)(138,ip,3,5,"td",10),e.BQk(),e.ynx(139,20),e.YNc(140,ap,2,0,"th",16)(141,op,4,3,"td",10),e.BQk(),e.ynx(142,21),e.YNc(143,sp,2,0,"th",16)(144,lp,4,3,"td",10),e.BQk(),e.ynx(145,22),e.YNc(146,rp,2,0,"th",16)(147,cp,4,3,"td",10),e.BQk(),e.ynx(148,23),e.YNc(149,pp,3,0,"th",24)(150,up,3,0,"td",25),e.BQk(),e.ynx(151,38),e.YNc(152,hp,4,3,"td",27),e.BQk(),e.YNc(153,gp,1,3,"tr",28)(154,fp,1,0,"tr",29)(155,Cp,1,0,"tr",30),e.qZA()()(),e.YNc(156,xp,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,yp,2,0,"th",9)(166,Tp,4,4,"td",10),e.BQk(),e.ynx(167,8),e.YNc(168,bp,2,0,"th",9)(169,Zp,4,4,"td",10),e.BQk(),e.ynx(170,11),e.YNc(171,vp,2,0,"th",9)(172,Ap,4,4,"td",10),e.BQk(),e.ynx(173,12),e.YNc(174,Sp,2,0,"th",9)(175,wp,4,4,"td",10),e.BQk(),e.ynx(176,13),e.YNc(177,Lp,2,0,"th",9)(178,qp,3,4,"td",10),e.BQk(),e.ynx(179,14),e.YNc(180,Fp,2,0,"th",9)(181,kp,3,5,"td",10),e.BQk(),e.ynx(182,33),e.YNc(183,Up,2,0,"th",16)(184,Op,4,3,"td",10),e.BQk(),e.ynx(185,20),e.YNc(186,Np,2,0,"th",16)(187,Ip,4,3,"td",10),e.BQk(),e.ynx(188,21),e.YNc(189,Pp,2,0,"th",16)(190,Rp,4,3,"td",10),e.BQk(),e.ynx(191,22),e.YNc(192,Mp,2,0,"th",16)(193,Jp,4,3,"td",10),e.BQk(),e.ynx(194,23),e.YNc(195,Dp,4,0,"th",24)(196,Qp,3,0,"td",25),e.BQk(),e.ynx(197,39),e.YNc(198,Yp,4,3,"td",27),e.BQk(),e.YNc(199,Vp,1,3,"tr",28)(200,zp,1,0,"tr",29)(201,Wp,1,0,"tr",30),e.qZA()()()()()),2&i&&(e.xp6(2),e.hij("Total Limbo Balance: ",e.lcZ(3,38,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("matSortActive",a.openTableSetting.sortBy)("matSortDirection",a.openTableSetting.sortOrder)("dataSource",a.pendingOpenChannels)("ngClass",e.VKq(40,fe,""!==a.errorMessage)),e.xp6(43),e.Q6J("matFooterRowDef",e.DdM(42,Xp)),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("matSortActive",a.forceClosingTableSetting.sortBy)("matSortDirection",a.forceClosingTableSetting.sortOrder)("dataSource",a.pendingForceClosingChannels)("ngClass",e.VKq(43,fe,""!==a.errorMessage)),e.xp6(46),e.Q6J("matFooterRowDef",e.DdM(45,Kp)),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("matSortActive",a.closingTableSetting.sortBy)("matSortDirection",a.closingTableSetting.sortOrder)("dataSource",a.pendingClosingChannels)("ngClass",e.VKq(46,fe,""!==a.errorMessage)),e.xp6(34),e.Q6J("matFooterRowDef",e.DdM(48,$p)),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("matSortActive",a.waitingCloseTableSetting.sortBy)("matSortDirection",a.waitingCloseTableSetting.sortOrder)("dataSource",a.pendingWaitClosingChannels)("ngClass",e.VKq(49,fe,""!==a.errorMessage)),e.xp6(37),e.Q6J("matFooterRowDef",e.DdM(51,jp)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedWaitClosingColumns),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedWaitClosingColumns))},dependencies:[m.mk,m.O5,m.PC,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,H.pp,H.ib,H.yz,H.yK,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,M.$V,m.JJ,G.D3],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]})}return n})();function tu(n,o){if(1&n&&(e.TgZ(0,"mat-option",36),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function nu(n,o){1&n&&e._UZ(0,"mat-progress-bar",37)}function iu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Close Type"),e.qZA())}function au(n,o){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=o.$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 ou(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Peer"),e.qZA())}const re=n=>({width:n});function su(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_alias)}}function lu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Pubkey"),e.qZA())}function ru(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_pubkey)}}function cu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Channel Point"),e.qZA())}function pu(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function uu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Channel ID"),e.qZA())}function mu(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function _u(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Closing Tx Hash"),e.qZA())}function du(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.closing_tx_hash)}}function hu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Chain Hash"),e.qZA())}function gu(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,re,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chain_hash)}}function fu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Open Initiator"),e.qZA())}function Cu(n,o){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.open_initiator,"initiator_"))}}function xu(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Close Initiator"),e.qZA())}function yu(n,o){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.ALo(2,"camelcaseWithReplace"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,t.close_initiator,"initiator_"))}}function Tu(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Timelocked Balance (Sats)"),e.qZA())}function bu(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.time_locked_balance)," ")}}function Zu(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Capacity (Sats)"),e.qZA())}function vu(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.capacity)," ")}}function Au(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Close Height"),e.qZA())}function Su(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.close_height)," ")}}function wu(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Settled Balance (Sats)"),e.qZA())}function Lu(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.settled_balance)," ")}}function qu(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Fu(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",39)(1,"span",45)(2,"button",50),e.NdJ("click",function(a){const r=e.CHM(t).$implicit,h=e.oxw();return e.KtG(h.onClosedChannelClick(r,a))}),e._uU(3,"View Info"),e.qZA()()()}}function ku(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No closed channel available."),e.qZA())}function Uu(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting closed channels..."),e.qZA())}function Ou(n,o){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 Nu(n,o){if(1&n&&(e.TgZ(0,"td",51),e.YNc(1,ku,2,0,"p",52)(2,Uu,2,0,"p",52)(3,Ou,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 Iu=n=>({"display-none":n});function Pu(n,o){if(1&n&&e._UZ(0,"tr",53),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Iu,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function Ru(n,o){1&n&&e._UZ(0,"tr",54)}function Mu(n,o){1&n&&e._UZ(0,"tr",55)}const Ju=()=>["all"],Du=n=>({"error-border":n,"overflow-auto":!0}),Qu=()=>["no_closed_channel"];let Eu=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.store=i,this.commonService=a,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=y.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 u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.P2).pipe((0,d.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&&this.sort&&this.paginator&&this.displayedColumns.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(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.closedChannels.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(t).toLowerCase();break;case"close_type":a=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":a=this.camelCaseWithReplace.transform(t[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:a=typeof t[this.selFilterBy]>"u"?"":"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===a.indexOf(i):a.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){this.closedChannels=new c.by([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(I.v),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("Channels")}])],decls:66,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(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-label"),e._uU(6,"Filter By"),e.qZA(),e.TgZ(7,"mat-select",5),e.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),e.TgZ(8,"perfect-scrollbar"),e.YNc(9,tu,2,2,"mat-option",6),e.qZA()()(),e.TgZ(10,"mat-form-field",4)(11,"mat-label"),e._uU(12,"Filter"),e.qZA(),e.TgZ(13,"input",7),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(14,"div",8),e.YNc(15,nu,1,0,"mat-progress-bar",9),e.TgZ(16,"table",10,11),e.ynx(18,12),e.YNc(19,iu,2,0,"th",13)(20,au,5,2,"td",14),e.BQk(),e.ynx(21,15),e.YNc(22,ou,2,0,"th",13)(23,su,4,4,"td",14),e.BQk(),e.ynx(24,16),e.YNc(25,lu,2,0,"th",13)(26,ru,4,4,"td",14),e.BQk(),e.ynx(27,17),e.YNc(28,cu,2,0,"th",13)(29,pu,4,4,"td",14),e.BQk(),e.ynx(30,18),e.YNc(31,uu,2,0,"th",13)(32,mu,4,4,"td",14),e.BQk(),e.ynx(33,19),e.YNc(34,_u,2,0,"th",13)(35,du,4,4,"td",14),e.BQk(),e.ynx(36,20),e.YNc(37,hu,2,0,"th",13)(38,gu,4,4,"td",14),e.BQk(),e.ynx(39,21),e.YNc(40,fu,2,0,"th",13)(41,Cu,3,4,"td",14),e.BQk(),e.ynx(42,22),e.YNc(43,xu,2,0,"th",13)(44,yu,3,4,"td",14),e.BQk(),e.ynx(45,23),e.YNc(46,Tu,2,0,"th",24)(47,bu,4,3,"td",14),e.BQk(),e.ynx(48,25),e.YNc(49,Zu,2,0,"th",24)(50,vu,4,3,"td",14),e.BQk(),e.ynx(51,26),e.YNc(52,Au,2,0,"th",24)(53,Su,4,3,"td",14),e.BQk(),e.ynx(54,27),e.YNc(55,wu,2,0,"th",24)(56,Lu,4,3,"td",14),e.BQk(),e.ynx(57,28),e.YNc(58,qu,6,0,"th",29)(59,Fu,4,0,"td",14),e.BQk(),e.ynx(60,30),e.YNc(61,Nu,4,3,"td",31),e.BQk(),e.YNc(62,Pu,1,3,"tr",32)(63,Ru,1,0,"tr",33)(64,Mu,1,0,"tr",34),e.qZA()(),e._UZ(65,"mat-paginator",35),e.qZA()),2&i&&(e.xp6(7),e.Q6J("ngModel",a.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(14,Ju).concat(a.displayedColumns.slice(0,-1))),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("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.closedChannels)("ngClass",e.VKq(15,Du,""!==a.errorMessage)),e.xp6(46),e.Q6J("matFooterRowDef",e.DdM(17,Qu)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,ne.Hw,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,X.gM,k.NW,M.Vv,M.$V,m.JJ,G.D3]})}return n})();function Bu(n,o){if(1&n&&(e.TgZ(0,"mat-option",33),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function Hu(n,o){1&n&&e._UZ(0,"mat-progress-bar",34)}function Yu(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Amount (Sats)"),e.qZA())}function Gu(n,o){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.amount)," ")}}function Vu(n,o){if(1&n&&(e.ynx(0),e.YNc(1,Gu,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 zu(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.qZA(),e.YNc(3,Vu,2,1,"ng-container",38),e.qZA()),2&n){const t=o.$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 Wu(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Alias/Incoming"),e.qZA())}function Xu(n,o){if(1&n&&(e.TgZ(0,"span",37),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function Ku(n,o){if(1&n&&(e.ynx(0),e.YNc(1,Xu,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 $u(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",37),e._uU(2),e.qZA(),e.YNc(3,Ku,2,1,"ng-container",38),e.qZA()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(null==t?null:t.remote_alias),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function ju(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Forwarding Channel"),e.qZA())}function em(n,o){if(1&n&&(e.TgZ(0,"span",37),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.forwarding_channel," ")}}function tm(n,o){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,o){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=o.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function im(n,o){1&n&&(e.TgZ(0,"th",42)(1,"span",40),e._uU(2,"HTLC Index"),e.qZA()())}function am(n,o){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.htlc_index)," ")}}function om(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,am,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 sm(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,om,2,1,"span",38),e.qZA()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function lm(n,o){1&n&&(e.TgZ(0,"th",42)(1,"span",40),e._uU(2,"Forwarding HTLC Index"),e.qZA()())}function rm(n,o){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.lcZ(2,1,null==t?null:t.forwarding_htlc_index)," ")}}function cm(n,o){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 pm(n,o){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=o.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function um(n,o){1&n&&(e.TgZ(0,"th",42)(1,"span",40),e._uU(2,"Expiration Height"),e.qZA()())}function mm(n,o){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.ALo(2,"number"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",e.xi3(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function _m(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,mm,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 dm(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,_m,2,1,"span",38),e.qZA()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function hm(n,o){1&n&&(e.TgZ(0,"th",43)(1,"span",40),e._uU(2,"Hash Lock"),e.qZA()())}function gm(n,o){if(1&n&&(e.TgZ(0,"span",40),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.hij(" ",null==t?null:t.hash_lock," ")}}function fm(n,o){if(1&n&&(e.TgZ(0,"span"),e.YNc(1,gm,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 Cm(n,o){if(1&n&&(e.TgZ(0,"td",44)(1,"span",40),e._uU(2),e.qZA(),e.YNc(3,fm,2,1,"span",38),e.qZA()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(" "),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function xm(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function ym(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",53)(1,"button",54),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2).$implicit,h=e.oxw();return e.KtG(h.onHTLCClick(s,r))}),e._uU(2),e.qZA()()}if(2&n){const t=o.index;e.xp6(2),e.hij("View ",t+1,"")}}function Tm(n,o){if(1&n&&(e.TgZ(0,"div"),e.YNc(1,ym,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 bm(n,o){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 e.KtG(s.is_expanded=!s.is_expanded)}),e._uU(3),e.qZA()(),e.YNc(4,Tm,2,1,"div",38),e.qZA()}if(2&n){const t=o.$implicit;e.xp6(3),e.Oqu(t.is_expanded?"Hide":"Show"),e.xp6(1),e.Q6J("ngIf",t.is_expanded)}}function Zm(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No active htlc available."),e.qZA())}function vm(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting active htlcs..."),e.qZA())}function Am(n,o){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 Sm(n,o){if(1&n&&(e.TgZ(0,"td",55),e.YNc(1,Zm,2,0,"p",38)(2,vm,2,0,"p",38)(3,Am,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 wm=n=>({"display-none":n});function Lm(n,o){if(1&n&&e._UZ(0,"tr",56),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,wm,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function qm(n,o){1&n&&e._UZ(0,"tr",57)}function Fm(n,o){1&n&&e._UZ(0,"tr",58)}const km=()=>["all"],Um=n=>({"error-border":n}),Om=()=>["no_channel"];let Nm=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.commonService=i,this.store=a,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 u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.ZW).pipe((0,d.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.channelsJSONArr=t.channels?.filter(i=>i.pending_htlcs&&i.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&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:Se}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,i)=>{let a="";return a="all"===this.selFilterBy?(t.remote_alias?t.remote_alias.toLowerCase():"")+t.pending_htlcs?.map(s=>JSON.stringify(s)+(s.incoming?"yes":"no")):typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),a.includes(i)}}loadHTLCsTable(t){this.channels=new c.by(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(i,a)=>{switch(a){case"amount":return this.commonService.sortByKey(i.pending_htlcs,a,"number",this.sort?.direction),i.pending_htlcs&&i.pending_htlcs.length?i.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(i.pending_htlcs,a,"boolean",this.sort?.direction),i.remote_alias?i.remote_alias:i.remote_pubkey?i.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(i.pending_htlcs,a,"number",this.sort?.direction),i;default:return i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null}},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(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((a,s)=>a.concat(s.pending_htlcs?s.pending_htlcs:s),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("HTLCs")}])],decls:48,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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","fxLayout","column","fxLayoutAlign","center end",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","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["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(i,a){1&i&&(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-label"),e._uU(6,"Filter By"),e.qZA(),e.TgZ(7,"mat-select",5),e.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),e.TgZ(8,"perfect-scrollbar"),e.YNc(9,Bu,2,2,"mat-option",6),e.qZA()()(),e.TgZ(10,"mat-form-field",4)(11,"mat-label"),e._uU(12,"Filter"),e.qZA(),e.TgZ(13,"input",7),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(14,"div",8),e.YNc(15,Hu,1,0,"mat-progress-bar",9),e.TgZ(16,"table",10,11),e.ynx(18,12),e.YNc(19,Yu,2,0,"th",13)(20,zu,4,2,"td",14),e.BQk(),e.ynx(21,15),e.YNc(22,Wu,2,0,"th",13)(23,$u,4,2,"td",14),e.BQk(),e.ynx(24,16),e.YNc(25,ju,2,0,"th",13)(26,nm,4,2,"td",14),e.BQk(),e.ynx(27,17),e.YNc(28,im,3,0,"th",18)(29,sm,4,2,"td",14),e.BQk(),e.ynx(30,19),e.YNc(31,lm,3,0,"th",18)(32,pm,4,2,"td",14),e.BQk(),e.ynx(33,20),e.YNc(34,um,3,0,"th",18)(35,dm,4,2,"td",14),e.BQk(),e.ynx(36,21),e.YNc(37,hm,3,0,"th",22)(38,Cm,4,2,"td",23),e.BQk(),e.ynx(39,24),e.YNc(40,xm,6,0,"th",25)(41,bm,5,2,"td",26),e.BQk(),e.ynx(42,27),e.YNc(43,Sm,4,3,"td",28),e.BQk(),e.YNc(44,Lm,1,3,"tr",29)(45,qm,1,0,"tr",30)(46,Fm,1,0,"tr",31),e.qZA()(),e._UZ(47,"mat-paginator",32),e.qZA()),2&i&&(e.xp6(7),e.Q6J("ngModel",a.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(14,km).concat(a.displayedColumns.slice(0,-1))),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("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.VKq(15,Um,""!==a.errorMessage)),e.xp6(28),e.Q6J("matFooterRowDef",e.DdM(17,Om)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.sg,m.O5,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,O.lW,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.Vv,M.$V,m.JJ],styles:[".mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:7rem}"]})}return n})();function Im(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Wallet password is required."),e.qZA())}let Pm=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,v.xG)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-unlock-wallet"]],decls:14,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"mat-label"),e._uU(4,"Password"),e.qZA(),e.TgZ(5,"input",3),e.NdJ("ngModelChange",function(r){return a.walletPassword=r}),e.qZA(),e.TgZ(6,"mat-hint"),e._uU(7,"Enter Wallet Password"),e.qZA(),e.YNc(8,Im,2,0,"mat-error",4),e.qZA(),e.TgZ(9,"div",5)(10,"button",6),e.NdJ("click",function(){return a.resetData()}),e._uU(11,"Clear Field"),e.qZA(),e.TgZ(12,"button",7),e.NdJ("click",function(){return a.onUnlockWallet()}),e._uU(13,"Unlock Wallet"),e.qZA()()()()),2&i&&(e.xp6(5),e.Q6J("ngModel",a.walletPassword),e.xp6(3),e.Q6J("ngIf",!a.walletPassword))},dependencies:[m.O5,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,_.xw,_.Wh,_.yH,O.lW,R.Nt,g.KE,g.hX,g.bx,g.TO,K.h]})}return n})();var Rm=C(1657);function Mm(n,o){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 a=e.oxw();return a.proceed=!1,e.KtG(a.warnRes=!0)}),e._uU(6,"Do Not Proceed"),e.qZA(),e.TgZ(7,"button",8),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return a.proceed=!0,e.KtG(a.warnRes=!0)}),e._uU(8,"Proceed"),e.qZA()()()()}}function Jm(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.warnRes=!1)}),e._uU(5,"Go Back"),e.qZA()()()}}function Dm(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function Qm(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password must be at least 8 characters in length."),e.qZA())}function Em(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Confirm password is required."),e.qZA())}function Bm(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Confirm password must be at least 8 characters in length."),e.qZA())}function Hm(n,o){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 Ym(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Cipher seed is required."),e.qZA())}function Gm(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.qZA())}function Vm(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Passphrase is required."),e.qZA())}function zm(n,o){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"vpn_key"),e.qZA())}function Wm(n,o){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"swap_calls"),e.qZA())}function Xm(n,o){1&n&&(e.TgZ(0,"mat-icon"),e._uU(1,"fingerprint"),e.qZA())}function Km(n,o){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)(5,"mat-label"),e._uU(6,"Password"),e.qZA(),e._UZ(7,"input",17),e.TgZ(8,"mat-hint"),e._uU(9,"Enter Wallet Password"),e.qZA(),e.YNc(10,Dm,2,0,"mat-error",1)(11,Qm,2,0,"mat-error",1),e.qZA(),e.TgZ(12,"mat-form-field",16)(13,"mat-label"),e._uU(14,"Confirm Password"),e.qZA(),e._UZ(15,"input",18),e.TgZ(16,"mat-hint"),e._uU(17,"Confirm Wallet Password"),e.qZA(),e.YNc(18,Em,2,0,"mat-error",1)(19,Bm,2,0,"mat-error",1),e.qZA(),e.YNc(20,Hm,4,0,"div",19),e.TgZ(21,"div",20)(22,"button",21),e._uU(23,"Next"),e.qZA()()()(),e.TgZ(24,"mat-step",22)(25,"form",23)(26,"div",24)(27,"mat-slide-toggle",25),e._uU(28,"Existing Cipher"),e.qZA(),e.TgZ(29,"mat-form-field",26)(30,"mat-label"),e._uU(31,"Comma separated array of 24 words cipher seed"),e.qZA(),e._UZ(32,"input",27),e.TgZ(33,"mat-hint"),e._uU(34,"Cipher Seed"),e.qZA(),e.YNc(35,Ym,2,0,"mat-error",1)(36,Gm,2,0,"mat-error",1),e.qZA()(),e.TgZ(37,"div",28)(38,"button",29),e._uU(39,"Back"),e.qZA(),e.TgZ(40,"button",30),e._uU(41,"Next"),e.qZA()()()(),e.TgZ(42,"mat-step",31)(43,"form",23)(44,"div",24)(45,"mat-slide-toggle",32),e._uU(46,"Existing Passphrase"),e.qZA(),e.TgZ(47,"mat-form-field",33)(48,"mat-label"),e._uU(49,"Passphrase"),e.qZA(),e._UZ(50,"input",34),e.TgZ(51,"mat-hint"),e._uU(52,"Enter Passphrase"),e.qZA(),e.YNc(53,Vm,2,0,"mat-error",1),e.qZA()(),e.TgZ(54,"div",28)(55,"button",35),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.resetData())}),e._uU(56,"Clear"),e.qZA(),e.TgZ(57,"button",36),e._uU(58,"Back"),e.qZA(),e.TgZ(59,"button",37),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onInitWallet())}),e._uU(60,"Initialize Wallet"),e.qZA()()()(),e.YNc(61,zm,2,0,"ng-template",38)(62,Wm,2,0,"ng-template",39)(63,Xm,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(7),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(7),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(8),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(8),e.Q6J("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function $m(n,o){if(1&n&&(e.TgZ(0,"span",48),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(t)}}function jm(n,o){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,$m,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(){e.CHM(t);const a=e.oxw();return e.KtG(a.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 e_(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.resetData())}),e._uU(6,"Restart"),e.qZA()()()()}}function t_(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onGoToHome())}),e._uU(8,"Go To Home"),e.qZA()()()()}}function n_(n){const o=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return o&&t&&o.value!==t.value?{unmatchedPasswords:!0}:null}function i_(n){const o=n.value.toString().trim().split(",")||[];return o&&24!==o.length?{invalidCipher:!0}:null}let a_=(()=>{class n{constructor(t,i,a){this.store=t,this.formBuilder=i,this.lndEffects=a,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[p.kI.required,p.kI.minLength(8)]],initWalletConfirmPassword:["",[p.kI.required,p.kI.minLength(8)]]},{validators:n_}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[i_]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,d.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,d.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,d.R)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,d.R)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,v.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,v.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,v.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,v.sQ)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh),e.Y36(p.QS),e.Y36(le.l))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(i,a){if(1&i&&e.Gf(Y.Vq,5),2&i){let s;e.iGM(s=e.CRH())&&(a.stepper=s.first)}},features:[e._Bn([{provide:Rm.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"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","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"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","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"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,Mm,9,0,"div",1)(2,Jm,6,0,"div",2)(3,Km,64,17,"mat-vertical-stepper",3)(4,jm,15,1,"div",1)(5,e_,7,0,"div",1)(6,t_,9,0,"div",1),e.qZA()),2&i&&(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))},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.F,p.sg,p.u,_.xw,_.Wh,_.yH,O.lW,ne.Hw,R.Nt,g.KE,g.hX,g.bx,g.TO,de.Rr,Y.C0,Y.Vq,Y.Ic,Y.fd,Y.z9]})}return n})(),o_=(()=>{class n{constructor(){this.faWallet=y.X5K}static#e=this.\u0275fac=function(i){return new(i||n)};static#t=this.\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"],["mat-stretch-tabs","false","mat-align-tabs","start"],["label","Unlock"],["label","Initialize"]],template:function(i,a){1&i&&(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",5)(8,"mat-tab",6),e._UZ(9,"rtl-unlock-wallet"),e.qZA(),e.TgZ(10,"mat-tab",7),e._UZ(11,"rtl-initialize-wallet"),e.qZA()()()()()),2&i&&(e.xp6(1),e.Q6J("icon",a.faWallet))},dependencies:[J.BN,_.xw,_.Wh,Z.a8,Z.dn,P.uX,P.SP,Pm,a_]})}return n})();var s_=C(2460);function l_(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",12),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let r_=(()=>{class n{constructor(t,i,a){this.logger=t,this.store=i,this.router=a,this.faExchangeAlt=y.Ssp,this.faChartPie=y.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 u.x,new u.x,new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(f.ZW).pipe((0,d.R)(this.unSubs[1]),(0,s_.M)(this.store.select(f.$k))).subscribe(([i,a])=>{this.currencyUnits=a?.currencyUnits||[],this.balances=a?.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(T.F0))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-transactions"]],decls:21,vars:5,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,l_,2,3,"div",9),e.qZA(),e._UZ(17,"mat-tab-nav-panel",null,10),e.TgZ(19,"div",11),e._UZ(20,"router-outlet"),e.qZA()()()()),2&i){const s=e.MAs(18);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(6),e.Q6J("tabPanel",s),e.xp6(1),e.Q6J("ngForOf",a.links)}},dependencies:[m.sg,J.BN,_.xw,_.Wh,_.yH,Z.a8,Z.dn,P.BU,P.sW,P.Nj,Ze.D,T.lC,T.rH]})}return n})();function c_(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",9),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let p_=(()=>{class n{constructor(t){this.router=t,this.faSearch=y.wn1,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.x,new u.x,new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-graph"]],decls:13,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,c_,2,3,"div",6),e.qZA(),e._UZ(9,"mat-tab-nav-panel",null,7),e.TgZ(11,"div",8),e._UZ(12,"router-outlet"),e.qZA()()()()),2&i){const s=e.MAs(10);e.xp6(1),e.Q6J("icon",a.faSearch),e.xp6(6),e.Q6J("tabPanel",s),e.xp6(1),e.Q6J("ngForOf",a.links)}},dependencies:[m.sg,J.BN,_.xw,_.Wh,_.yH,Z.a8,Z.dn,P.BU,P.sW,P.Nj,T.lC,T.rH]})}return n})();function u_(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Destination pubkey is required."),e.qZA())}function m_(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Amount is required."),e.qZA())}function __(n,o){1&n&&e._UZ(0,"mat-progress-bar",39)}function d_(n,o){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Hop"),e.qZA())}function h_(n,o){if(1&n&&(e.TgZ(0,"td",41),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(null==t?null:t.hop_sequence)}}function g_(n,o){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Peer"),e.qZA())}const Fe=n=>({width:n});function f_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.pubkey_alias)}}function C_(n,o){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Peer Pubkey"),e.qZA())}function x_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.pub_key)}}function y_(n,o){1&n&&(e.TgZ(0,"th",40),e._uU(1,"Channel ID"),e.qZA())}function T_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"div",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Fe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function b_(n,o){1&n&&(e.TgZ(0,"th",40),e._uU(1,"TLV Payload"),e.qZA())}function Z_(n,o){if(1&n&&(e.TgZ(0,"td",41),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(null!=t&&t.tlv_payload?"Yes":"No")}}function v_(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Expiry"),e.qZA())}function A_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.expiry))}}function S_(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Capacity (Sats)"),e.qZA())}function w_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,null==t?null:t.chan_capacity))}}function L_(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Amount To Fwd (Sats)"),e.qZA())}function q_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.amt_to_forward)," ")}}function F_(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Fee (mSats)"),e.qZA())}function k_(n,o){if(1&n&&(e.TgZ(0,"td",41)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,null==t?null:t.fee_msat)," ")}}function U_(n,o){1&n&&(e.TgZ(0,"th",46)(1,"div",47),e._uU(2,"Actions"),e.qZA()())}function O_(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",48)(1,"button",49),e.NdJ("click",function(a){const r=e.CHM(t).$implicit,h=e.oxw();return e.KtG(h.onHopClick(r,a))}),e._uU(2,"View Info"),e.qZA()()}}function N_(n,o){1&n&&e._UZ(0,"tr",50)}function I_(n,o){1&n&&e._UZ(0,"tr",51)}const P_=n=>({"overflow-auto error-border":n,"overflow-auto":!0});let R_=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.store=i,this.lndEffects=a,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=y.FpQ,this.faExclamationTriangle=y.eHv,this.screenSize="",this.screenSizeEnum=l.cu,this.unSubs=[new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,d.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=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new c.by([]),this.flgLoading[0]=!0,this.store.dispatch((0,v.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(le.l),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(i,a){if(1&i&&e.Gf(A.YE,5),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first)}},decls:64,vars:17,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"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModel","ngModelChange"],["destPubkey","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"step","min","ngModel","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,"matSortActive","matSortDirection","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(i,a){if(1&i){const s=e.EpF();e.TgZ(0,"div",0)(1,"form",1,2),e.NdJ("ngSubmit",function(){e.CHM(s);const h=e.MAs(2);return e.KtG(h.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,"mat-label"),e._uU(9,"Destination Pubkey"),e.qZA(),e.TgZ(10,"input",6,7),e.NdJ("ngModelChange",function(h){return a.destinationPubkey=h}),e.qZA(),e.YNc(12,u_,2,0,"mat-error",8),e.qZA(),e.TgZ(13,"mat-form-field",9)(14,"mat-label"),e._uU(15,"Amount (Sats)"),e.qZA(),e.TgZ(16,"input",10),e.NdJ("ngModelChange",function(h){return a.amount=h}),e.qZA(),e.YNc(17,m_,2,0,"mat-error",8),e.qZA(),e.TgZ(18,"div",11)(19,"button",12),e.NdJ("click",function(){return a.resetData()}),e._uU(20,"Clear"),e.qZA(),e.TgZ(21,"button",13),e._uU(22,"Query Route"),e.qZA()()(),e.TgZ(23,"div",14)(24,"div",15),e._UZ(25,"fa-icon",16),e.TgZ(26,"span",17),e._uU(27,"Transaction Route"),e.qZA()()(),e.TgZ(28,"div",18),e.YNc(29,__,1,0,"mat-progress-bar",19),e.TgZ(30,"table",20,21),e.ynx(32,22),e.YNc(33,d_,2,0,"th",23)(34,h_,2,1,"td",24),e.BQk(),e.ynx(35,25),e.YNc(36,g_,2,0,"th",23)(37,f_,4,4,"td",24),e.BQk(),e.ynx(38,26),e.YNc(39,C_,2,0,"th",23)(40,x_,4,4,"td",24),e.BQk(),e.ynx(41,27),e.YNc(42,y_,2,0,"th",23)(43,T_,4,4,"td",24),e.BQk(),e.ynx(44,28),e.YNc(45,b_,2,0,"th",23)(46,Z_,2,1,"td",24),e.BQk(),e.ynx(47,29),e.YNc(48,v_,2,0,"th",30)(49,A_,4,3,"td",24),e.BQk(),e.ynx(50,31),e.YNc(51,S_,2,0,"th",30)(52,w_,4,3,"td",24),e.BQk(),e.ynx(53,32),e.YNc(54,L_,2,0,"th",30)(55,q_,4,3,"td",24),e.BQk(),e.ynx(56,33),e.YNc(57,F_,2,0,"th",30)(58,k_,4,3,"td",24),e.BQk(),e.ynx(59,34),e.YNc(60,U_,3,0,"th",35)(61,O_,3,0,"td",36),e.BQk(),e.YNc(62,N_,1,0,"tr",37)(63,I_,1,0,"tr",38),e.qZA()()()}2&i&&(e.xp6(4),e.Q6J("icon",a.faExclamationTriangle),e.xp6(6),e.Q6J("ngModel",a.destinationPubkey),e.xp6(2),e.Q6J("ngIf",!a.destinationPubkey),e.xp6(4),e.Q6J("step",1e3)("min",0)("ngModel",a.amount),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("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.qrHops)("ngClass",e.VKq(15,P_,"error"===a.flgLoading[0])),e.xp6(32),e.Q6J("matHeaderRowDef",a.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",a.displayedColumns))},dependencies:[m.mk,m.O5,m.PC,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.qQ,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,g.TO,D.pW,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.ge,c.ev,c.XQ,c.Gk,M.$V,ee.q,m.JJ]})}return n})();var ce=C(7466);function M_(n,o){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 1"),e.qZA())}function J_(n,o){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 1 (Your Node)"),e.qZA())}function D_(n,o){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 2"),e.qZA())}function Q_(n,o){1&n&&(e.TgZ(0,"h3",15),e._uU(1,"Node 2 (Your Node)"),e.qZA())}function E_(n,o){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,M_,2,0,"h3",12)(32,J_,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,D_,2,0,"h3",12)(78,Q_,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 B_=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.store.select(f.Q5).pipe((0,d.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)})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh))};static#t=this.\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 stretch",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(i,a){1&i&&e.YNc(0,E_,121,44,"div",0),2&i&&e.Q6J("ngIf",a.lookupResult)},dependencies:[m.O5,_.xw,_.Wh,_.yH,$.d,m.JJ,m.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}"]})}return n})();function H_(n,o){if(1&n&&(e.TgZ(0,"span",9),e._uU(1),e.qZA()),2&n){const t=o.$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 Y_(n,o){1&n&&(e.TgZ(0,"th",27),e._uU(1,"Network"),e.qZA())}function G_(n,o){if(1&n&&(e.TgZ(0,"td",28),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(null==t?null:t.network)}}function V_(n,o){1&n&&(e.TgZ(0,"th",27),e._uU(1,"Address"),e.qZA())}function z_(n,o){if(1&n&&(e.TgZ(0,"td",28),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(null==t?null:t.addr)}}function W_(n,o){1&n&&(e.TgZ(0,"th",29)(1,"div",30),e._uU(2,"Actions"),e.qZA()())}function X_(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",31)(1,"div",32)(2,"mat-select",33),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",34),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw(2);return e.KtG(r.onConnectNode(s))}),e._uU(5,"Connect"),e.qZA(),e.TgZ(6,"mat-option",35),e.NdJ("copied",function(){const s=e.CHM(t).$implicit,r=e.oxw(2);return e.KtG(r.onCopyNodeURI(s))}),e._uU(7,"Copy URI"),e.qZA()()()()}if(2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(6),e.Q6J("payload",i.lookupResult.node.pub_key+"@"+t.addr)}}function K_(n,o){1&n&&e._UZ(0,"tr",36)}function $_(n,o){1&n&&e._UZ(0,"tr",37)}const j_=n=>({"background-color":n});function ed(n,o){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,H_,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,Y_,2,0,"th",19)(51,G_,2,1,"td",20),e.BQk(),e.ynx(52,21),e.YNc(53,V_,2,0,"th",19)(54,z_,2,1,"td",20),e.BQk(),e.ynx(55,22),e.YNc(56,W_,3,0,"th",23)(57,X_,8,1,"td",24),e.BQk(),e.YNc(58,K_,1,0,"tr",25)(59,$_,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,j_,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 td=(()=>{class n{constructor(t,i,a){this.logger=t,this.snackBar=i,this.store=a,this.nodeFeaturesEnum=l.hZ,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new u.x,new u.x,new u.x]}ngOnInit(){this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(f.qU).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0})}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}onConnectNode(t){this.store.dispatch((0,L.qR)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:t.addr},information:this.information,balance:this.availableBalance},component:Xe}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(ie.ux),e.Y36(q.yh))};static#t=this.\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-cell","","fxLayoutAlign","end center",4,"matCellDef"],["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"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"payload","copied"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&e.YNc(0,ed,60,26,"div",0),2&i&&e.Q6J("ngIf",a.lookupResult)},dependencies:[m.sg,m.O5,m.PC,_.xw,_.Wh,_.yH,F.Zl,$.d,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.ge,c.ev,c.XQ,c.Gk,M.$V,ue.y,m.JJ,m.uU,m.Nd]})}return n})();function nd(n,o){if(1&n&&(e.TgZ(0,"mat-radio-button",17),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t.id)("checked",i.selectedFieldId===t.id),e.xp6(1),e.hij(" ",t.name," ")}}function id(n,o){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 ad(n,o){1&n&&e._UZ(0,"mat-progress-bar",20)}const od=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function sd(n,o){if(1&n&&(e.TgZ(0,"div",18),e.YNc(1,ad,1,0,"mat-progress-bar",19),e._uU(2),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(3,od,""!==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 ld(n,o){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 rd(n,o){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 cd(n,o){1&n&&(e.TgZ(0,"span"),e._uU(1,' fxFlex="100"'),e.TgZ(2,"h3"),e._uU(3,"Error! Unable to find details!"),e.qZA()())}function pd(n,o){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,ld,2,1,"span",25)(6,rd,2,1,"span",25)(7,cd,4,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 ud=n=>({"mt-1":!0,"mt-2":n});let Ke=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.commonService=i,this.store=a,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=y.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatusEnum=l.Bn,this.unSubs=[new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,d.R)(this.unSubs[0]),(0,B.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,v.Sf)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,v.$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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(W.eX))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lookups"]],decls:21,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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["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"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(i,a){1&i&&(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(r){return a.selectedFieldId=r})("change",function(r){return a.onSelectChange(r)}),e.YNc(7,nd,2,3,"mat-radio-button",7),e.qZA()(),e.TgZ(8,"mat-form-field",8)(9,"mat-label"),e._uU(10),e.qZA(),e.TgZ(11,"input",9,10),e.NdJ("ngModelChange",function(r){return a.lookupKey=r})("change",function(){return a.clearLookupValue()}),e.qZA(),e.YNc(13,id,2,1,"mat-error",11),e.qZA(),e.TgZ(14,"div",12)(15,"button",13),e.NdJ("click",function(){return a.resetData()}),e._uU(16,"Clear"),e.qZA(),e.TgZ(17,"button",14),e.NdJ("click",function(){return a.onLookup()}),e._uU(18,"Lookup"),e.qZA()()(),e.YNc(19,sd,3,5,"div",15)(20,pd,8,4,"div",16),e.qZA()()()),2&i&&(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,ud,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.xp6(2),e.Oqu((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.xp6(1),e.Q6J("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))},dependencies:[m.mk,m.sg,m.O5,m.RF,m.n9,m.ED,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,_.xw,_.Wh,_.yH,F.oO,O.lW,Z.dn,R.Nt,g.KE,g.hX,g.TO,D.pW,ce.VQ,ce.U0,B_,td],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}"]})}return n})();var ke=C(8034);function md(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid date format."),e.qZA())}function _d(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Invalid date format."),e.qZA())}function dd(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",28),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let hd=(()=>{class n{constructor(t,i,a){this.logger=t,this.store=i,this.router=a,this.faMapSigns=y.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 u.x,new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,v.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,v.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,v.QJ)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(T.F0))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing"]],decls:41,vars:16,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"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","name","startDate","tabindex","1",3,"matDatepicker","max","ngModel","ngModelChange"],["strtDate","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],["startDatepicker",""],[4,"ngIf"],["matInput","","name","endDate","tabindex","2",3,"matDatepicker","min","max","ngModel","ngModelChange"],["enDate","ngModel"],["endDatepicker",""],["fxLayout","row",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","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","5","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,"mat-label"),e._uU(13,"Start Date"),e.qZA(),e.TgZ(14,"input",11,12),e.NdJ("ngModelChange",function(r){return a.startDate=r}),e.qZA(),e._UZ(16,"mat-datepicker-toggle",13)(17,"mat-datepicker",14,15),e.YNc(19,md,2,0,"mat-error",16),e.qZA(),e.TgZ(20,"mat-form-field",10)(21,"mat-label"),e._uU(22,"End Date"),e.qZA(),e.TgZ(23,"input",17,18),e.NdJ("ngModelChange",function(r){return a.endDate=r}),e.qZA(),e._UZ(25,"mat-datepicker-toggle",13)(26,"mat-datepicker",14,19),e.YNc(28,_d,2,0,"mat-error",16),e.qZA()(),e.TgZ(29,"div",20)(30,"button",21),e.NdJ("click",function(){return a.resetData()}),e._uU(31,"Clear"),e.qZA(),e.TgZ(32,"button",22),e._uU(33,"Fetch Events"),e.qZA()()(),e.TgZ(34,"div",23)(35,"nav",24),e.YNc(36,dd,2,3,"div",25),e.qZA(),e._UZ(37,"mat-tab-nav-panel",null,26),e.qZA(),e.TgZ(39,"div",27),e._UZ(40,"router-outlet"),e.qZA()()()()()),2&i){const s=e.MAs(15),r=e.MAs(18),h=e.MAs(24),b=e.MAs(27),x=e.MAs(38);e.xp6(2),e.Q6J("icon",a.faMapSigns),e.xp6(12),e.Q6J("matDatepicker",r)("max",a.today)("ngModel",a.startDate),e.xp6(2),e.Q6J("for",r),e.xp6(1),e.Q6J("startAt",a.startDate),e.xp6(2),e.Q6J("ngIf",s.errors),e.xp6(4),e.Q6J("matDatepicker",b)("min",a.startDate)("max",a.today)("ngModel",a.endDate),e.xp6(2),e.Q6J("for",b),e.xp6(1),e.Q6J("startAt",a.endDate),e.xp6(2),e.Q6J("ngIf",h.errors),e.xp6(7),e.Q6J("tabPanel",x),e.xp6(1),e.Q6J("ngForOf",a.links)}},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.JJ,p.JL,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,O.lW,Z.a8,Z.dn,ke.Mq,ke.hl,ke.nW,R.Nt,g.KE,g.hX,g.TO,g.R9,P.BU,P.sW,P.Nj,ze.F,ee.q,T.lC,T.rH]})}return n})();function gd(n,o){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 fd(n,o){if(1&n&&(e.TgZ(0,"mat-option",13),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(2);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}const Cd=()=>["all"];function xd(n,o){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-label"),e._uU(5,"Filter By"),e.qZA(),e.TgZ(6,"mat-select",10),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selFilterBy=a)})("selectionChange",function(){e.CHM(t);const a=e.oxw();return a.selFilter="",e.KtG(a.applyFilter())}),e.TgZ(7,"perfect-scrollbar"),e.YNc(8,fd,2,2,"mat-option",11),e.qZA()()(),e.TgZ(9,"mat-form-field",9)(10,"mat-label"),e._uU(11,"Filter"),e.qZA(),e.TgZ(12,"input",12),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selFilter=a)})("input",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.applyFilter())})("keyup",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.applyFilter())}),e.qZA()()()()}if(2&n){const t=e.oxw();e.xp6(6),e.Q6J("ngModel",t.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(3,Cd).concat(t.displayedColumns.slice(0,-1))),e.xp6(4),e.Q6J("ngModel",t.selFilter)}}function yd(n,o){1&n&&e._UZ(0,"mat-progress-bar",37)}function Td(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Timestamp"),e.qZA())}function bd(n,o){if(1&n&&(e.TgZ(0,"td",39),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function Zd(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Inbound Alias"),e.qZA())}const Ce=n=>({width:n});function vd(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias_in)}}function Ad(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Inbound Channel"),e.qZA())}function Sd(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id_in)}}function wd(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Outbound Alias"),e.qZA())}function Ld(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias_out)}}function qd(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Outbound Channel"),e.qZA())}function Fd(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"div",40)(2,"span",41),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id_out)}}function kd(n,o){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Inbound Amount (Sats)"),e.qZA())}function Ud(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",43),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amt_in))}}function Od(n,o){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Outbound Amount (Sats)"),e.qZA())}function Nd(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",43),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amt_out))}}function Id(n,o){1&n&&(e.TgZ(0,"th",42),e._uU(1,"Fee (mSats)"),e.qZA())}function Pd(n,o){if(1&n&&(e.TgZ(0,"td",39)(1,"span",43),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.fee_msat))}}function Rd(n,o){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(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Md(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",48)(1,"button",49),e.NdJ("click",function(a){const r=e.CHM(t).$implicit,h=e.oxw(2);return e.KtG(h.onForwardingEventClick(r,a))}),e._uU(2,"View Info"),e.qZA()()}}function Jd(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No forwarding history available."),e.qZA())}function Dd(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting forwarding history..."),e.qZA())}function Qd(n,o){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 Ed(n,o){if(1&n&&(e.TgZ(0,"td",50),e.YNc(1,Jd,2,0,"p",51)(2,Dd,2,0,"p",51)(3,Qd,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 Bd=n=>({"display-none":n});function Hd(n,o){if(1&n&&e._UZ(0,"tr",52),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,Bd,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function Yd(n,o){1&n&&e._UZ(0,"tr",53)}function Gd(n,o){1&n&&e._UZ(0,"tr",54)}const Vd=()=>["no_event"];function zd(n,o){if(1&n&&(e.TgZ(0,"div",14),e.YNc(1,yd,1,0,"mat-progress-bar",15),e.TgZ(2,"table",16,17),e.ynx(4,18),e.YNc(5,Td,2,0,"th",19)(6,bd,3,4,"td",20),e.BQk(),e.ynx(7,21),e.YNc(8,Zd,2,0,"th",19)(9,vd,4,4,"td",20),e.BQk(),e.ynx(10,22),e.YNc(11,Ad,2,0,"th",19)(12,Sd,4,4,"td",20),e.BQk(),e.ynx(13,23),e.YNc(14,wd,2,0,"th",19)(15,Ld,4,4,"td",20),e.BQk(),e.ynx(16,24),e.YNc(17,qd,2,0,"th",19)(18,Fd,4,4,"td",20),e.BQk(),e.ynx(19,25),e.YNc(20,kd,2,0,"th",26)(21,Ud,4,3,"td",20),e.BQk(),e.ynx(22,27),e.YNc(23,Od,2,0,"th",26)(24,Nd,4,3,"td",20),e.BQk(),e.ynx(25,28),e.YNc(26,Id,2,0,"th",26)(27,Pd,4,3,"td",20),e.BQk(),e.ynx(28,29),e.YNc(29,Rd,6,0,"th",30)(30,Md,3,0,"td",31),e.BQk(),e.ynx(31,32),e.YNc(32,Ed,4,3,"td",33),e.BQk(),e.YNc(33,Hd,1,3,"tr",34)(34,Yd,1,0,"tr",35)(35,Gd,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(7,Vd)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}function Wd(n,o){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 $e=(()=>{class n{constructor(t,i,a,s,r){this.logger=t,this.commonService=i,this.store=a,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 u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}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())}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Bo).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.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.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}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(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=(t.timestamp?this.datePipe.transform(new Date(1e3*t.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return a.includes(i)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new c.by(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(m.uU),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,gd,2,1,"div",1)(2,xd,13,4,"div",2)(3,zd,36,8,"div",3)(4,Wd,1,3,"mat-paginator",4),e.qZA()),2&i&&(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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.Vv,M.$V,m.JJ,m.uU]})}return n})();const Xd=["tableIn"],Kd=["tableOut"],$d=["paginatorIn"],jd=["paginatorOut"];function eh(n,o){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,o){1&n&&e._UZ(0,"mat-progress-bar",34)}function nh(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Channel ID"),e.qZA())}const xe=n=>({width:n});function ih(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,xe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function ah(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Peer Alias"),e.qZA())}function oh(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,xe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias)}}function sh(n,o){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Events"),e.qZA())}function lh(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.events))}}function rh(n,o){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Total Amount (Sats)"),e.qZA())}function ch(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_amount))}}function ph(n,o){1&n&&(e.TgZ(0,"th",41)(1,"div",42),e._uU(2,"Actions"),e.qZA()())}function uh(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",43)(1,"button",44),e.NdJ("click",function(a){const r=e.CHM(t).$implicit,h=e.oxw(2);return e.KtG(h.onRoutingPeerClick(r,a,"in"))}),e._uU(2,"View Info"),e.qZA()()}}function mh(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No incoming routing peer available."),e.qZA())}function _h(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting incoming routing peers..."),e.qZA())}function dh(n,o){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 hh(n,o){if(1&n&&(e.TgZ(0,"td",45),e.YNc(1,mh,2,0,"p",46)(2,_h,2,0,"p",46)(3,dh,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 je=n=>({"display-none":n});function gh(n,o){if(1&n&&e._UZ(0,"tr",47),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,je,(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function fh(n,o){1&n&&e._UZ(0,"tr",48)}function Ch(n,o){1&n&&e._UZ(0,"tr",49)}function xh(n,o){1&n&&e._UZ(0,"mat-progress-bar",34)}function yh(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Channel ID"),e.qZA())}function Th(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,xe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function bh(n,o){1&n&&(e.TgZ(0,"th",35),e._uU(1,"Peer Alias"),e.qZA())}function Zh(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"div",37)(2,"span",38),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(2);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,xe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.alias)}}function vh(n,o){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Events"),e.qZA())}function Ah(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.events))}}function Sh(n,o){1&n&&(e.TgZ(0,"th",39),e._uU(1,"Total Amount (Sats)"),e.qZA())}function wh(n,o){if(1&n&&(e.TgZ(0,"td",36)(1,"span",40),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_amount))}}function Lh(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No outgoing routing peer available."),e.qZA())}function qh(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting outgoing routing peers..."),e.qZA())}function Fh(n,o){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 kh(n,o){if(1&n&&(e.TgZ(0,"td",45),e.YNc(1,Lh,2,0,"p",46)(2,qh,2,0,"p",46)(3,Fh,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 Uh(n,o){if(1&n&&e._UZ(0,"tr",47),2&n){const t=e.oxw(2);e.Q6J("ngClass",e.VKq(1,je,(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function Oh(n,o){1&n&&e._UZ(0,"tr",48)}function Nh(n,o){1&n&&e._UZ(0,"tr",49)}const Ih=(n,o)=>({"mt-2":n,"mt-1":o}),Ph=()=>["no_incoming_event"],Rh=n=>({"mt-2":n}),Mh=()=>["no_outgoing_event"];function Jh(n,o){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,th,1,0,"mat-progress-bar",10),e.TgZ(8,"table",11,12),e.ynx(10,13),e.YNc(11,nh,2,0,"th",14)(12,ih,4,4,"td",15),e.BQk(),e.ynx(13,16),e.YNc(14,ah,2,0,"th",14)(15,oh,4,4,"td",15),e.BQk(),e.ynx(16,17),e.YNc(17,sh,2,0,"th",18)(18,lh,4,3,"td",15),e.BQk(),e.ynx(19,19),e.YNc(20,rh,2,0,"th",18)(21,ch,4,3,"td",15),e.BQk(),e.ynx(22,20),e.YNc(23,ph,3,0,"th",21)(24,uh,3,0,"td",22),e.BQk(),e.ynx(25,23),e.YNc(26,hh,4,3,"td",24),e.BQk(),e.YNc(27,gh,1,3,"tr",25)(28,fh,1,0,"tr",26)(29,Ch,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,xh,1,0,"mat-progress-bar",10),e.TgZ(39,"table",30,31),e.ynx(41,13),e.YNc(42,yh,2,0,"th",14)(43,Th,4,4,"td",15),e.BQk(),e.ynx(44,16),e.YNc(45,bh,2,0,"th",14)(46,Zh,4,4,"td",15),e.BQk(),e.ynx(47,17),e.YNc(48,vh,2,0,"th",18)(49,Ah,4,3,"td",15),e.BQk(),e.ynx(50,19),e.YNc(51,Sh,2,0,"th",18)(52,wh,4,3,"td",15),e.BQk(),e.ynx(53,32),e.YNc(54,kh,4,3,"td",24),e.BQk(),e.YNc(55,Uh,1,3,"tr",25)(56,Oh,1,0,"tr",26)(57,Nh,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,Ih,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,Ph)),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,Rh,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,Mh)),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 Dh=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.commonService=i,this.store=a,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 u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Bo).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.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=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,a){let s=" Routing Information";s="in"===a?"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(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,i)=>{let a="";return a="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(),a.includes(i)},this.routingPeersOutgoing.filterPredicate=(t,i)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(t).toLowerCase();break;case"total_amount":case"total_fee":a=(+(t[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof t[this.selFilterByOut]?t[this.selFilterByOut].toLowerCase():"boolean"==typeof t[this.selFilterByOut]?t[this.selFilterByOut]?"yes":"no":t[this.selFilterByOut].toString()}return a.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=[],a=[];return t.forEach(s=>{const r=i.find(b=>b.chan_id===s.chan_id_in),h=a.find(b=>b.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)}),h?(h.events++,h.total_amount=+h.total_amount+ +(s.amt_out||0)):a.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(a,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(i,a){if(1&i&&(e.Gf(Xd,5,A.YE),e.Gf(Kd,5,A.YE),e.Gf($d,5),e.Gf(jd,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sortIn=s.first),e.iGM(s=e.CRH())&&(a.sortOut=s.first),e.iGM(s=e.CRH())&&(a.paginatorIn=s.first),e.iGM(s=e.CRH())&&(a.paginatorOut=s.first)}},features:[e._Bn([{provide:k.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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,eh,2,1,"div",1)(2,Jh,60,25,"div",2),e.qZA()),2&i&&(e.xp6(1),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage))},dependencies:[m.mk,m.O5,m.PC,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,D.pW,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.$V,m.JJ]})}return n})();function Qh(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",8),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let Eh=(()=>{class n{constructor(t){this.router=t,this.faChartBar=y.koM,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.x,new u.x,new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-reports"]],decls:12,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,Qh,2,3,"div",6),e.qZA(),e._UZ(9,"mat-tab-nav-panel",null,7)(11,"router-outlet"),e.qZA()()()),2&i){const s=e.MAs(10);e.xp6(1),e.Q6J("icon",a.faChartBar),e.xp6(6),e.Q6J("tabPanel",s),e.xp6(1),e.Q6J("ngForOf",a.links)}},dependencies:[m.sg,J.BN,_.xw,_.Wh,Z.a8,Z.dn,P.BU,P.sW,P.Nj,T.lC,T.rH]})}return n})();var et=C(25),tt=C(1948);function Bh(n,o){1&n&&e._UZ(0,"mat-progress-bar",16)}function Hh(n,o){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 Yh(n,o){1&n&&(e.TgZ(0,"div",18),e._uU(1,"No routing report for the selected period"),e.qZA())}const Gh=n=>({"error-border":n});function Vh(n,o){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,Gh,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.xp6(1),e.Oqu(t.errorMessage)}}function zh(n,o){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=o.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 Wh(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"ngx-charts-bar-vertical",20),e.NdJ("select",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onChartBarSelected(a))})("mouseup",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onChartMouseUp(a))}),e.YNc(1,zh,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 Xh(n,o){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 Kh=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.dataService=i,this.commonService=a,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 u.x,new u.x,new u.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select(f.Q5).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,d.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 a=Math.round(t.getTime()/1e3).toString(),s=Math.round(i.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",a,s).pipe((0,d.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){const i=Math.round(t.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.op[1]){for(let s=0;s<12;s++)a.push({name:l.gg[s].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(s=>{const r=new Date(1e3*+(s.timestamp||0)).getMonth();return a[r].value=a[r].value+ +(s.fee_msat||0)/1e3,a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(s.fee_msat||0),this.events})}else{for(let s=0;s{const r=Math.floor((+(s.timestamp||0)-i)/this.secondsInADay);return a[r].value=a[r].value+ +(s.fee_msat||0)/1e3,a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(s.fee_msat||0),this.events})}return a}prepareEventsReport(t){const i=Math.round(t.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.op[1]){for(let s=0;s<12;s++)a.push({name:l.gg[s].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(s=>{const r=new Date(1e3*+(s.timestamp||0)).getMonth();return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+ +(s.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(s.fee_msat||0),this.events})}else{for(let s=0;s{const r=Math.floor((+(s.timestamp||0)-i)/this.secondsInADay);return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+ +(s.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(s.fee_msat||0),this.events})}return a}onSelectionChange(t){const i=t.selDate.getMonth(),a=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(te.D),e.Y36(I.v),e.Y36(q.yh))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(i,a){1&i&&e.NdJ("mouseup",function(r){return a.onChartMouseUp(r)})},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 center",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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"rtl-horizontal-scroller",1),e.NdJ("stepChanged",function(r){return a.onSelectionChange(r)}),e.qZA(),e.TgZ(2,"div",2)(3,"mat-radio-group",3),e.NdJ("ngModelChange",function(r){return a.selReportBy=r})("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,Bh,1,0,"mat-progress-bar",7),e.TgZ(11,"div",8),e.YNc(12,Hh,4,8,"div",9)(13,Yh,2,0,"div",10)(14,Vh,2,4,"div",11),e.TgZ(15,"div",12),e.YNc(16,Wh,3,11,"ngx-charts-bar-vertical",13),e.qZA()(),e.TgZ(17,"div",14)(18,"div",12),e.YNc(19,Xh,1,4,"rtl-forwarding-history",15),e.qZA()()()),2&i&&(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))},dependencies:[m.mk,m.O5,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,D.pW,ce.VQ,ce.U0,et.K$,tt.D,$e,m.JJ],data:{animation:[Le.J]}})}return n})();var $h=C(3468),jh=C(5362);function eg(n,o){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 tg(n,o){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 ng(n,o){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 ig(n,o){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 ag(n,o){if(1&n&&(e.TgZ(0,"div",14),e.YNc(1,ng,4,7,"div",15)(2,ig,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 og(n,o){1&n&&(e.TgZ(0,"div",17),e._uU(1,"No transactions report for the selected period"),e.qZA())}function sg(n,o){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=o.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 lg(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"ngx-charts-bar-vertical-2d",19),e.NdJ("select",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.onChartBarSelected(a))})("mouseup",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.onChartMouseUp(a))}),e.YNc(1,sg,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 rg(n,o){if(1&n&&(e.TgZ(0,"div",9),e.YNc(1,lg,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 cg(n,o){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 pg=(()=>{class n{constructor(t,i,a){this.logger=t,this.commonService=i,this.store=a,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 u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.cu.XS||this.screenSize===l.cu.SM),this.store.select($h.AS).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.l5).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{t.apiCallStatus.status===l.Bn.UN_INITIATED&&this.store.dispatch((0,v.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,d.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){const a=Math.round(t.getTime()/1e3),s=Math.round(i.getTime()/1e3),r=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const h=this.payments?.filter(x=>"SUCCEEDED"===x.status&&x.creation_date&&x.creation_date>=a&&x.creation_datex.settled&&x.creation_date&&+x.creation_date>=a&&+x.creation_date{const S=new Date(1e3*+(x.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(x.value_msat||0)+ +(x.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(x.value_msat||0)+ +(x.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),b?.map(x=>{const S=new Date(1e3*+(x.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(x.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(x.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let x=0;x{const S=Math.floor((+(x.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(x.value_msat||0)+ +(x.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(x.value_msat||0)+ +(x.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),b?.map(x=>{const S=Math.floor((+(x.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(x.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(x.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((t,i)=>i.series[0].extra.total>0||i.series[1].extra.total>0?t.concat({date:i.date,amount_paid:i.series[0].value,num_payments:i.series[0].extra.total,amount_received:i.series[1].value,num_invoices:i.series[1].extra.total}):t,[])}onSelectionChange(t){const i=t.selDate.getMonth(),a=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.op[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(i,a){1&i&&e.NdJ("mouseup",function(r){return a.onChartMouseUp(r)})},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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"rtl-horizontal-scroller",3),e.NdJ("stepChanged",function(r){return a.onSelectionChange(r)}),e.qZA(),e.YNc(4,eg,4,0,"div",4)(5,tg,2,1,"div",5)(6,ag,3,3,"div",6)(7,og,2,0,"div",7)(8,rg,2,1,"div",8),e.TgZ(9,"div",9),e.YNc(10,cg,1,5,"rtl-transactions-report-table",10),e.qZA()()()()),2&i&&(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))},dependencies:[m.O5,_.xw,_.Wh,_.yH,D.pW,et.H5,tt.D,jh.g,m.JJ],data:{animation:[Le.J]}})}return n})();const ug=["form"];function mg(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"UTXO Label is required."),e.qZA())}function _g(n,o){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 dg(n,o){if(1&n&&(e.TgZ(0,"div",16),e._UZ(1,"fa-icon",17),e.YNc(2,_g,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 hg=(()=>{class n{constructor(t,i,a,s,r,h){this.dialogRef=t,this.data=i,this.dataService=a,this.store=s,this.snackBar=r,this.commonService=h,this.faExclamationTriangle=y.eHv,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new u.x,new u.x,new u.x,new u.x,new u.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,d.R)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,v.mC)()),this.store.dispatch((0,v.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(te.D),e.Y36(q.yh),e.Y36(ie.ux),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(i,a){if(1&i&&e.Gf(ug,7),2&i){let s;e.iGM(s=e.CRH())&&(a.form=s.first)}},decls:22,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 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"],["fxLayout","column","fxFlex.gt-sm","100"],["autoFocus","","matInput","","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(i,a){1&i&&(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,"mat-label"),e._uU(13,"UTXO Label"),e.qZA(),e.TgZ(14,"input",10),e.NdJ("ngModelChange",function(r){return a.label=r}),e.qZA(),e.YNc(15,mg,2,0,"mat-error",11),e.qZA(),e.YNc(16,dg,3,2,"div",12),e.TgZ(17,"div",13)(18,"button",14),e._uU(19,"Clear"),e.qZA(),e.TgZ(20,"button",15),e._uU(21,"Label UTXO"),e.qZA()()()()()()),2&i&&(e.xp6(6),e.Q6J("mat-dialog-close",!1),e.xp6(8),e.Q6J("ngModel",a.label),e.xp6(1),e.Q6J("ngIf",!a.label),e.xp6(1),e.Q6J("ngIf",""!==a.labelError))},dependencies:[m.O5,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,J.BN,_.xw,_.Wh,_.yH,Q.ZT,O.lW,Z.dn,Z.dk,R.Nt,g.KE,g.hX,g.TO,K.h]})}return n})();function gg(n,o){if(1&n&&(e.TgZ(0,"mat-option",34),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function fg(n,o){1&n&&e._UZ(0,"mat-progress-bar",35)}function Cg(n,o){1&n&&e._UZ(0,"th",36)}function xg(n,o){1&n&&(e.TgZ(0,"span",39)(1,"mat-icon",40),e._uU(2,"warning"),e.qZA()())}function yg(n,o){if(1&n&&(e.TgZ(0,"td",37),e.YNc(1,xg,3,0,"span",38),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(),a=e.MAs(52);e.xp6(1),e.Q6J("ngIf",t.amount_sat({width:n});function bg(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"span",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.outpoint.txid_str)}}function Zg(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Output"),e.qZA())}function vg(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"span",45),e._uU(2),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(t.outpoint.output_index)}}function Ag(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Label"),e.qZA())}function Sg(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"span",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(t.label)}}function wg(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Address Type"),e.qZA())}function Lg(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"div",46),e._uU(2),e.qZA()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(2),e.hij(" ",i.addressType[t.address_type].name," ")}}function qg(n,o){1&n&&(e.TgZ(0,"th",41),e._uU(1,"Address"),e.qZA())}function Fg(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"span",42)(2,"span",43),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Ue,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.address)}}function kg(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Amount (Sats)"),e.qZA())}function Ug(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.amount_sat||0))}}function Og(n,o){1&n&&(e.TgZ(0,"th",44),e._uU(1,"Confirmations"),e.qZA())}function Ng(n,o){if(1&n&&(e.TgZ(0,"td",37)(1,"span",45),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.confirmations||0))}}function Ig(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function Pg(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",51)(1,"div",48)(2,"mat-select",52),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",50),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onUTXOClick(s))}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",50),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onLabelUTXO(s))}),e._uU(7,"Label"),e.qZA(),e.TgZ(8,"mat-option",50),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onLeaseUTXO(s))}),e._uU(9,"Lease"),e.qZA()()()()}}function Rg(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No UTXO available."),e.qZA())}function Mg(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting UTXOs..."),e.qZA())}function Jg(n,o){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 Dg(n,o){if(1&n&&(e.TgZ(0,"td",53),e.YNc(1,Rg,2,0,"p",54)(2,Mg,2,0,"p",54)(3,Jg,2,1,"p",54),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 Qg=n=>({"display-none":n});function Eg(n,o){if(1&n&&e._UZ(0,"tr",55),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,Qg,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Bg(n,o){1&n&&e._UZ(0,"tr",56)}function Hg(n,o){1&n&&e._UZ(0,"tr",57)}function Yg(n,o){1&n&&e._UZ(0,"mat-icon",40)}const nt=()=>["all"],Gg=n=>({"error-border":n}),Vg=()=>["no_utxo"];let zg=(()=>{class n{constructor(t,i,a,s,r,h,b,x){this.logger=t,this.commonService=i,this.dataService=a,this.store=s,this.rtlEffects=r,this.decimalPipe=h,this.camelCaseWithReplace=b,this.snackBar=x,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=y.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 u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}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)}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.T4).pipe((0,d.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.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(i=>+(i.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)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.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)=>{let a="";switch(this.selFilterBy){case"all":a=(t.label?t.label.toLowerCase():"")+(t.outpoint?.txid_str?t.outpoint.txid_str.toLowerCase():"")+(t.outpoint?.output_index?t.outpoint?.output_index:"")+(t.outpoint?.txid_bytes?t.outpoint?.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":a=+(t?.amount_sat||0)"u"?"":"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_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===a.indexOf(i):a.includes(i)}}onUTXOClick(t){this.store.dispatch((0,L.qR)({payload:{data:{type:l.n_.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:t.outpoint?.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:t.outpoint?.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}]]}}}))}loadUTXOsTable(t){this.listUTXOs=new c.by([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(i,a)=>{switch(a){case"is_dust":return+(i.amount_sat||0){a&&this.dataService.leaseUTXO(t.outpoint?.txid_bytes||"",t.outpoint?.output_index||0).pipe((0,d.R)(this.unSubs[0])).subscribe({next:s=>{this.snackBar.open("The UTXO has been leased till "+new Date(s).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:s=>{this.snackBar.open(s+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(te.D),e.Y36(q.yh),e.Y36(pe.V),e.Y36(m.JJ),e.Y36(G.D3),e.Y36(ie.ux))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("UTXOs")}]),e.TTD],decls:53,vars:19,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"mat-form-field",3)(4,"mat-label"),e._uU(5,"Filter By"),e.qZA(),e.TgZ(6,"mat-select",4),e.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),e.TgZ(7,"perfect-scrollbar"),e.YNc(8,gg,2,2,"mat-option",5),e.qZA()()(),e.TgZ(9,"mat-form-field",3)(10,"mat-label"),e._uU(11,"Filter"),e.qZA(),e.TgZ(12,"input",6),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(13,"div",7)(14,"div",8),e.YNc(15,fg,1,0,"mat-progress-bar",9),e.TgZ(16,"table",10,11),e.ynx(18,12),e.YNc(19,Cg,1,0,"th",13)(20,yg,2,2,"td",14),e.BQk(),e.ynx(21,15),e.YNc(22,Tg,2,0,"th",16)(23,bg,4,4,"td",14),e.BQk(),e.ynx(24,17),e.YNc(25,Zg,2,0,"th",18)(26,vg,3,1,"td",14),e.BQk(),e.ynx(27,19),e.YNc(28,Ag,2,0,"th",16)(29,Sg,4,4,"td",14),e.BQk(),e.ynx(30,20),e.YNc(31,wg,2,0,"th",16)(32,Lg,3,1,"td",14),e.BQk(),e.ynx(33,21),e.YNc(34,qg,2,0,"th",16)(35,Fg,4,4,"td",14),e.BQk(),e.ynx(36,22),e.YNc(37,kg,2,0,"th",18)(38,Ug,4,3,"td",14),e.BQk(),e.ynx(39,23),e.YNc(40,Og,2,0,"th",18)(41,Ng,4,3,"td",14),e.BQk(),e.ynx(42,24),e.YNc(43,Ig,6,0,"th",25)(44,Pg,10,0,"td",26),e.BQk(),e.ynx(45,27),e.YNc(46,Dg,4,3,"td",28),e.BQk(),e.YNc(47,Eg,1,3,"tr",29)(48,Bg,1,0,"tr",30)(49,Hg,1,0,"tr",31),e.qZA(),e._UZ(50,"mat-paginator",32),e.qZA()()(),e.YNc(51,Yg,1,0,"ng-template",null,33,e.W1O)),2&i&&(e.xp6(6),e.Q6J("ngModel",a.selFilterBy),e.xp6(2),e.Q6J("ngForOf",a.utxos&&a.utxos.length>0&&a.dustUtxos&&a.dustUtxos.length>0&&!a.isDustUTXO?e.DdM(14,nt).concat(a.displayedColumns.slice(0,-1)):e.DdM(15,nt).concat(a.displayedColumns.slice(0,-1))),e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(3),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listUTXOs)("ngClass",e.VKq(16,Gg,""!==a.errorMessage)),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(18,Vg)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,F.Zl,ne.Hw,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,X.gM,k.NW,M.Vv,M.$V,m.JJ],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();function Wg(n,o){if(1&n&&(e.TgZ(0,"mat-option",32),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}function Xg(n,o){1&n&&e._UZ(0,"mat-progress-bar",33)}function Kg(n,o){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Date/Time"),e.qZA())}function $g(n,o){if(1&n&&(e.TgZ(0,"td",35),e._uU(1),e.ALo(2,"date"),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function jg(n,o){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Label"),e.qZA())}const Oe=n=>({width:n});function ef(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Oe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.label)}}function tf(n,o){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Block Hash"),e.qZA())}function nf(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Oe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.block_hash)}}function af(n,o){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Transaction Hash"),e.qZA())}function of(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,Oe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.tx_hash)}}function sf(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Amount (Sats)"),e.qZA())}function lf(n,o){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 rf(n,o){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 cf(n,o){if(1&n&&(e.TgZ(0,"td",35),e.YNc(1,lf,3,3,"span",39)(2,rf,3,3,"span",40),e.qZA()),2&n){const t=o.$implicit;e.xp6(1),e.Q6J("ngIf",t.amount>0||0===t.amount),e.xp6(1),e.Q6J("ngIf",t.amount<0)}}function pf(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Fees (Sats)"),e.qZA())}function uf(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"span",41),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_fees))}}function mf(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Block Height"),e.qZA())}function _f(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"span",41),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.block_height))}}function df(n,o){1&n&&(e.TgZ(0,"th",38),e._uU(1,"Confirmations"),e.qZA())}function hf(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"span",41),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij(" ",e.lcZ(3,1,null==t?null:t.num_confirmations)," ")}}function gf(n,o){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(){e.CHM(t);const a=e.oxw();return e.KtG(a.onDownloadCSV())}),e._uU(5,"Download CSV"),e.qZA()()()()}}function ff(n,o){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,r=e.oxw();return e.KtG(r.onTransactionClick(s))}),e._uU(2,"View Info"),e.qZA()()}}function Cf(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No transaction available."),e.qZA())}function xf(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting transactions..."),e.qZA())}function yf(n,o){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 Tf(n,o){if(1&n&&(e.TgZ(0,"td",49),e.YNc(1,Cf,2,0,"p",50)(2,xf,2,0,"p",50)(3,yf,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 bf=n=>({"display-none":n});function Zf(n,o){if(1&n&&e._UZ(0,"tr",51),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,bf,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function vf(n,o){1&n&&e._UZ(0,"tr",52)}function Af(n,o){1&n&&e._UZ(0,"tr",53)}const Sf=()=>["all"],wf=n=>({"error-border":n}),Lf=()=>["no_transaction"];let qf=(()=>{class n{constructor(t,i,a,s,r){this.logger=t,this.commonService=i,this.store=a,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=y.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 u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.dx).pipe((0,d.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)})}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(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.listTransactions.filterPredicate=(t,i)=>{let a="";switch(this.selFilterBy){case"all":a=(t.time_stamp?this.datePipe.transform(new Date(1e3*t.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"time_stamp":a=this.datePipe.transform(new Date(1e3*(t?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:a=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return a.includes(i)}}loadTransactionsTable(t){this.listTransactions=new c.by([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(m.uU),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("Transactions")}]),e.TTD],decls:51,vars:18,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"div",1)(2,"div",2)(3,"mat-form-field",3)(4,"mat-label"),e._uU(5,"Filter By"),e.qZA(),e.TgZ(6,"mat-select",4),e.NdJ("ngModelChange",function(r){return a.selFilterBy=r})("selectionChange",function(){return a.selFilter="",a.applyFilter()}),e.TgZ(7,"perfect-scrollbar"),e.YNc(8,Wg,2,2,"mat-option",5),e.qZA()()(),e.TgZ(9,"mat-form-field",3)(10,"mat-label"),e._uU(11,"Filter"),e.qZA(),e.TgZ(12,"input",6),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(13,"div",7)(14,"div",8),e.YNc(15,Xg,1,0,"mat-progress-bar",9),e.TgZ(16,"table",10,11),e.ynx(18,12),e.YNc(19,Kg,2,0,"th",13)(20,$g,3,4,"td",14),e.BQk(),e.ynx(21,15),e.YNc(22,jg,2,0,"th",13)(23,ef,4,4,"td",14),e.BQk(),e.ynx(24,16),e.YNc(25,tf,2,0,"th",13)(26,nf,4,4,"td",14),e.BQk(),e.ynx(27,17),e.YNc(28,af,2,0,"th",13)(29,of,4,4,"td",14),e.BQk(),e.ynx(30,18),e.YNc(31,sf,2,0,"th",19)(32,cf,3,2,"td",14),e.BQk(),e.ynx(33,20),e.YNc(34,pf,2,0,"th",19)(35,uf,4,3,"td",14),e.BQk(),e.ynx(36,21),e.YNc(37,mf,2,0,"th",19)(38,_f,4,3,"td",14),e.BQk(),e.ynx(39,22),e.YNc(40,df,2,0,"th",19)(41,hf,4,3,"td",14),e.BQk(),e.ynx(42,23),e.YNc(43,gf,6,0,"th",24)(44,ff,3,0,"td",25),e.BQk(),e.ynx(45,26),e.YNc(46,Tf,4,3,"td",27),e.BQk(),e.YNc(47,Zf,1,3,"tr",28)(48,vf,1,0,"tr",29)(49,Af,1,0,"tr",30),e.qZA(),e._UZ(50,"mat-paginator",31),e.qZA()()()),2&i&&(e.xp6(6),e.Q6J("ngModel",a.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(14,Sf).concat(a.displayedColumns.slice(0,-1))),e.xp6(4),e.Q6J("ngModel",a.selFilter),e.xp6(3),e.Q6J("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.xp6(1),e.Q6J("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",e.VKq(15,wf,""!==a.errorMessage)),e.xp6(31),e.Q6J("matFooterRowDef",e.DdM(17,Lf)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.Vv,M.$V,m.JJ,m.uU]})}return n})();function Ff(n,o){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 kf(n,o){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 Uf(n,o){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 Of=(()=>{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 u.x,new u.x,new u.x]}ngOnInit(){this.store.dispatch((0,v.mC)()),this.store.dispatch((0,v.Ly)()),this.store.select(f.T4).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=t.utxos?.filter(i=>i.amount_sat&&+i.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh))};static#t=this.\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"],["mat-stretch-tabs","false","mat-align-tabs","start",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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"mat-tab-group",1),e.NdJ("selectedIndexChange",function(r){return a.onSelectedIndexChanged(r)}),e.TgZ(2,"mat-tab"),e.YNc(3,Ff,2,1,"ng-template",2),e._UZ(4,"rtl-on-chain-utxos",3),e.qZA(),e.TgZ(5,"mat-tab"),e.YNc(6,kf,2,1,"ng-template",2),e._UZ(7,"rtl-on-chain-transaction-history",4),e.qZA(),e.TgZ(8,"mat-tab"),e.YNc(9,Uf,2,1,"ng-template",2),e._UZ(10,"rtl-on-chain-utxos",3),e.qZA()()()),2&i&&(e.xp6(1),e.Q6J("selectedIndex",a.selectedTableIndex),e.xp6(3),e.Q6J("isDustUTXO",!1)("dustAmount",a.DUST_AMOUNT),e.xp6(6),e.Q6J("isDustUTXO",!0)("dustAmount",a.DUST_AMOUNT))},dependencies:[_.xw,_.Wh,_.yH,be.k,P.uD,P.uX,P.SP,zg,qf]})}return n})();const Nf=(n,o)=>[n,o];function If(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",13),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=null==s?null:s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.Q6J("active",i.activeLink===(null==t?null:t.link))("routerLink",e.WLB(3,Nf,null==t?null:t.link,null==i.selectedTable?null:i.selectedTable.name)),e.xp6(1),e.Oqu(null==t?null:t.name)}}let Pf=(()=>{class n{constructor(t,i,a){this.store=t,this.router=i,this.activatedRoute=a,this.selNode={},this.faExchangeAlt=y.Ssp,this.faChartPie=y.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 u.x,new u.x,new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.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(f.$k).pipe((0,d.R)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(f.qU).pipe((0,d.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh),e.Y36(T.F0),e.Y36(T.gz))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain"]],decls:23,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","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["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"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,If,2,6,"div",8),e.qZA(),e._UZ(17,"mat-tab-nav-panel",null,9),e.TgZ(19,"div",10),e._UZ(20,"router-outlet"),e.qZA(),e.TgZ(21,"div",11)(22,"rtl-utxo-tables",12),e.NdJ("selectedTableIndexChange",function(r){return a.onSelectedTableIndexChanged(r)}),e.qZA()()()()()),2&i){const s=e.MAs(18);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(6),e.Q6J("tabPanel",s),e.xp6(1),e.Q6J("ngForOf",a.links),e.xp6(6),e.Q6J("selectedTableIndex",null==a.selectedTable?null:a.selectedTable.id)}},dependencies:[m.sg,J.BN,_.xw,_.Wh,_.yH,Z.a8,Z.dn,P.BU,P.sW,P.Nj,Ze.D,T.lC,T.rH,Of]})}return n})();var Rf=C(6105);function Mf(n,o){if(1&n&&(e.TgZ(0,"mat-option",6),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.hij(" ",t.addressTp," ")}}let Jf=(()=>{class n{constructor(t,i,a){this.store=t,this.lndEffects=i,this.commonService=a,this.addressTypes=[],this.selectedAddressType=l._t[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.store.select(f.Q5).pipe((0,d.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,v._E)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,z.q)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,L.qR)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:Rf.n}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh),e.Y36(le.l),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-receive"]],decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(i,a){1&i&&(e.TgZ(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),e._uU(4,"Address Type"),e.qZA(),e.TgZ(5,"mat-select",3),e.NdJ("ngModelChange",function(r){return a.selectedAddressType=r}),e.YNc(6,Mf,2,2,"mat-option",4),e.qZA()(),e.TgZ(7,"div")(8,"button",5),e.NdJ("click",function(){return a.onGenerateAddress()}),e._uU(9,"Generate Address"),e.qZA()()()()),2&i&&(e.xp6(5),e.Q6J("ngModel",a.selectedAddressType),e.xp6(1),e.Q6J("ngForOf",a.addressTypes))},dependencies:[m.sg,p.JJ,p.On,_.xw,_.Wh,_.yH,O.lW,g.KE,g.hX,w.gD,E.ey]})}return n})();var Df=C(8927),it=C(4818);const Qf=["form"],Ef=["formSweepAll"],Bf=["stepper"];function Hf(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Bitcoin address is required."),e.qZA())}function Yf(n,o){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 Gf(n,o){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t),e.xp6(1),e.Oqu(t)}}function Vf(n,o){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function zf(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function Wf(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"mat-label"),e._uU(2,"Number of Blocks"),e.qZA(),e.TgZ(3,"input",33,34),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.transactionBlocks=a)}),e.qZA(),e.YNc(5,zf,2,0,"mat-error",14),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(3),e.Q6J("step",1)("min",0)("ngModel",t.transactionBlocks),e.xp6(2),e.Q6J("ngIf",!t.transactionBlocks)}}function Xf(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function Kf(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-form-field",32)(1,"mat-label"),e._uU(2,"Fees (Sats/vByte)"),e.qZA(),e.TgZ(3,"input",35,36),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.transactionFees=a)}),e.qZA(),e.YNc(5,Xf,2,0,"mat-error",14),e.qZA()}if(2&n){const t=e.oxw(2);e.xp6(3),e.Q6J("step",1)("min",0)("ngModel",t.transactionFees),e.xp6(2),e.Q6J("ngIf",!t.transactionFees)}}function $f(n,o){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 jf(n,o){if(1&n&&(e.TgZ(0,"div",37),e._UZ(1,"fa-icon",38),e.YNc(2,$f,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 e2(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"form",9,10),e.NdJ("submit",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSendFunds())})("reset",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.resetData())}),e.TgZ(2,"mat-form-field",11)(3,"mat-label"),e._uU(4,"Bitcoin Address"),e.qZA(),e.TgZ(5,"input",12,13),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.transactionAddress=a)}),e.qZA(),e.YNc(7,Hf,2,0,"mat-error",14),e.qZA(),e.TgZ(8,"mat-form-field",15)(9,"mat-label"),e._uU(10,"Amount"),e.qZA(),e.TgZ(11,"input",16,17),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.transactionAmount=a)}),e.qZA(),e.TgZ(13,"span",18),e._uU(14),e.qZA(),e.YNc(15,Yf,2,1,"mat-error",14),e.qZA(),e.TgZ(16,"mat-form-field",19)(17,"mat-select",20),e.NdJ("selectionChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.onAmountUnitChange(a))}),e.YNc(18,Gf,2,2,"mat-option",21),e.qZA()(),e.TgZ(19,"div",22)(20,"mat-form-field",23)(21,"mat-select",24),e.NdJ("valueChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.selTransType=a)}),e.YNc(22,Vf,2,2,"mat-option",21),e.qZA()(),e.YNc(23,Wf,6,4,"mat-form-field",25)(24,Kf,6,4,"mat-form-field",25),e.qZA(),e._UZ(25,"div",26),e.YNc(26,jf,3,2,"div",27),e.TgZ(27,"div",28)(28,"button",29),e._uU(29,"Clear Fields"),e.qZA(),e.TgZ(30,"button",30),e._uU(31,"Send Funds"),e.qZA()()()}if(2&n){const t=e.oxw();e.xp6(5),e.Q6J("ngModel",t.transactionAddress),e.xp6(2),e.Q6J("ngIf",!t.transactionAddress),e.xp6(4),e.Q6J("step",100)("min",0)("ngModel",t.transactionAmount),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 t2(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw(3);e.Oqu(t.passwordFormLabel)}}function n2(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Password is required."),e.qZA())}function i2(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"mat-step",43)(1,"form",62),e.YNc(2,t2,1,1,"ng-template",56),e.TgZ(3,"div",0)(4,"mat-form-field",63)(5,"mat-label"),e._uU(6,"Password"),e.qZA(),e._UZ(7,"input",64),e.YNc(8,n2,2,0,"mat-error",14),e.qZA()(),e.TgZ(9,"div",65)(10,"button",66),e.NdJ("click",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.onAuthenticate())}),e._uU(11,"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(7),e.Q6J("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function a2(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.sendFundFormLabel)}}function o2(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Bitcoin address is required."),e.qZA())}function s2(n,o){if(1&n&&(e.TgZ(0,"mat-option",31),e._uU(1),e.qZA()),2&n){const t=o.$implicit;e.Q6J("value",t.id),e.xp6(1),e.hij(" ",t.name," ")}}function l2(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Number of blocks is required."),e.qZA())}function r2(n,o){if(1&n&&(e.TgZ(0,"mat-form-field",67)(1,"mat-label"),e._uU(2,"Number of Blocks"),e.qZA(),e._UZ(3,"input",68),e.YNc(4,l2,2,0,"mat-error",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(3),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 c2(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Fees is required."),e.qZA())}function p2(n,o){if(1&n&&(e.TgZ(0,"mat-form-field",67)(1,"mat-label"),e._uU(2,"Fees (Sats/vByte)"),e.qZA(),e._UZ(3,"input",69),e.YNc(4,c2,2,0,"mat-error",14),e.qZA()),2&n){const t=e.oxw(2);e.xp6(3),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 u2(n,o){if(1&n&&e._uU(0),2&n){const t=e.oxw(2);e.Oqu(t.confirmFormLabel)}}function m2(n,o){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 _2(n,o){if(1&n&&(e.TgZ(0,"div",37),e._UZ(1,"fa-icon",38),e.YNc(2,m2,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 d2(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",39)(1,"mat-vertical-stepper",40,41),e.NdJ("selectionChange",function(a){e.CHM(t);const s=e.oxw();return e.KtG(s.stepSelectionChanged(a))}),e.YNc(3,i2,12,4,"mat-step",42),e.TgZ(4,"mat-step",43)(5,"form",44),e.YNc(6,a2,1,1,"ng-template",45),e.TgZ(7,"div",46)(8,"mat-form-field",47)(9,"mat-label"),e._uU(10,"Bitcoin Address"),e.qZA(),e._UZ(11,"input",48),e.YNc(12,o2,2,0,"mat-error",14),e.qZA(),e.TgZ(13,"mat-form-field",49)(14,"mat-select",50),e.YNc(15,s2,2,2,"mat-option",21),e.qZA()(),e.YNc(16,r2,5,3,"mat-form-field",51)(17,p2,5,3,"mat-form-field",51),e.qZA(),e.TgZ(18,"div",52)(19,"button",53),e._uU(20,"Next"),e.qZA()()()(),e.TgZ(21,"mat-step",54)(22,"form",55),e.YNc(23,u2,1,1,"ng-template",56),e.TgZ(24,"div",39)(25,"div",57),e._UZ(26,"fa-icon",58),e.TgZ(27,"span"),e._uU(28,"You are about to sweep all funds from RTL. Are you sure?"),e.qZA()(),e.YNc(29,_2,3,2,"div",27),e.TgZ(30,"div",52)(31,"button",59),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.onSendFunds())}),e._uU(32,"Sweep All Funds"),e.qZA()()()()()(),e.TgZ(33,"div",60)(34,"button",61),e._uU(35),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(7),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 h2=(()=>{class n{constructor(t,i,a,s,r,h,b,x,S,cC){this.dialogRef=t,this.data=i,this.logger=a,this.store=s,this.rtlEffects=r,this.commonService=h,this.decimalPipe=b,this.snackBar=x,this.actions=S,this.formBuilder=cC,this.faExclamationTriangle=y.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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x]}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[p.kI.required]],password:["",[p.kI.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",p.kI.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",p.kI.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([p.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([p.kI.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(it.Yj).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.appConfig=t}),this.store.select(it.dT).pipe((0,d.R)(this.unSubs[2])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,d.R)(this.unSubs[3]),(0,B.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:Df(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,d.R)(this.unSubs[4])).subscribe({next:i=>{this.selAmountUnit=l.NT.SATS,t.amount=+(this.decimalPipe.transform(i[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,v.Wi)({payload:t}))},error:i=>{this.transactionAmount=null,this.selAmountUnit=l.NT.SATS,this.amountError="Conversion Error: "+i}}):this.store.dispatch((0,v.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{this.selAmountUnit=t.value,i.transactionAmount=+(i.decimalPipe.transform(h[s],i.currencyUnitFormats[s])?.replace(/,/g,"")||0)},error:h=>{i.transactionAmount=null,this.amountError="Conversion Error: "+h,this.selAmountUnit=a,s=a}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(Q.so),e.Y36(Q.WI),e.Y36(U.mQ),e.Y36(q.yh),e.Y36(pe.V),e.Y36(I.v),e.Y36(m.JJ),e.Y36(ie.ux),e.Y36(W.eX),e.Y36(p.QS))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(i,a){if(1&i&&(e.Gf(Qf,7),e.Gf(Ef,5),e.Gf(Bf,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.form=s.first),e.iGM(s=e.CRH())&&(a.formSweepAll=s.first),e.iGM(s=e.CRH())&&(a.stepper=s.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 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"],["fxLayout","column","fxFlex.gt-sm","55"],["autoFocus","","matInput","","tabindex","1","name","address","required","",3,"ngModel","ngModelChange"],["address","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"step","min","ngModel","ngModelChange"],["amnt","ngModel"],["matSuffix",""],["fxLayout","column","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"],["fxLayout","column","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"],["fxFlex","48"],["matInput","","type","number","name","blcks","required","","tabindex","5",3,"step","min","ngModel","ngModelChange"],["blocks","ngModel"],["matInput","","type","number","name","chainFees","required","","tabindex","6",3,"step","min","ngModel","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"],["fxLayout","column","fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","tabindex","4","name","address","required",""],["fxLayout","column","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"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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","type","number","name","blcks","required","","tabindex","6",3,"step","min"],["matInput","","formControlName","transactionFees","type","number","name","chainFees","required","","tabindex","7",3,"step","min"]],template:function(i,a){if(1&i&&(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,e2,32,14,"form",7),e.qZA()()(),e.YNc(10,d2,36,15,"ng-template",null,8,e.W1O)),2&i){const s=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",s)}},dependencies:[m.sg,m.O5,p._Y,p.Fj,p.wV,p.JJ,p.JL,p.Q7,p.qQ,p.On,p.F,p.sg,p.u,J.BN,_.xw,_.Wh,_.yH,Q.ZT,O.lW,Z.dn,Z.dk,R.Nt,g.KE,g.hX,g.TO,g.R9,w.gD,E.ey,Y.C0,Y.VY,Y.Vq,Y.Ic,K.h,ee.q]})}return n})(),at=(()=>{class n{constructor(t,i){this.store=t,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new u.x,new u.x]}ngOnInit(){this.activatedRoute.data.pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,L.qR)({payload:{data:{sweepAll:this.sweepAll,component:h2}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(q.yh),e.Y36(T.gz))};static#t=this.\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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"div",1)(2,"button",2),e.NdJ("click",function(){return a.openSendFundsModal()}),e._uU(3),e.qZA()()()),2&i&&(e.xp6(3),e.Oqu(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[_.xw,_.Wh,_.yH,O.lW]})}return n})();function g2(n,o){1&n&&e._UZ(0,"mat-progress-bar",26)}function f2(n,o){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 C2(n,o){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 x2(n,o){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 ot=n=>({"dashboard-card-content":!0,"error-border":n});function y2(n,o){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,g2,1,0,"mat-progress-bar",21),e.TgZ(11,"div",22),e.YNc(12,f2,1,2,"rtl-node-info",23)(13,C2,1,2,"rtl-channel-status-info",24)(14,x2,1,2,"rtl-fee-info",25),e.qZA()()()()()()),2&n){const t=o.$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,ot,"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 T2(n,o){if(1&n&&(e.TgZ(0,"mat-grid-list",11),e.YNc(1,y2,15,12,"mat-grid-tile",12),e.qZA()),2&n){const t=e.oxw();e.xp6(1),e.Q6J("ngForOf",t.nodeCards)}}function b2(n,o){1&n&&e._UZ(0,"mat-progress-bar",26)}function Z2(n,o){1&n&&e.GkF(0)}function v2(n,o){if(1&n&&(e.TgZ(0,"div",34),e.YNc(1,Z2,1,0,"ng-container",35),e.qZA()),2&n){const t=e.oxw(2),i=e.MAs(9),a=e.MAs(11);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?i:a)}}function A2(n,o){1&n&&e.GkF(0)}function S2(n,o){if(1&n&&(e.TgZ(0,"div",34),e.YNc(1,A2,1,0,"ng-container",35),e.qZA()),2&n){const t=e.oxw(2),i=e.MAs(9),a=e.MAs(13);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?i:a)}}function w2(n,o){1&n&&e.GkF(0)}function L2(n,o){if(1&n&&(e.TgZ(0,"div",34),e.YNc(1,w2,1,0,"ng-container",35),e.qZA()),2&n){const t=e.oxw(2),i=e.MAs(9),a=e.MAs(15);e.xp6(1),e.Q6J("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?i:a)}}function q2(n,o){if(1&n&&(e.TgZ(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.YNc(3,b2,1,0,"mat-progress-bar",21),e.TgZ(4,"div",22),e.YNc(5,v2,2,1,"div",33)(6,S2,2,1,"div",33)(7,L2,2,1,"div",33),e.qZA()()()()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("colspan",t.cols)("rowspan",t.rows),e.xp6(2),e.Q6J("ngClass",e.VKq(8,ot,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 F2(n,o){if(1&n&&(e.TgZ(0,"div",36)(1,"p"),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.Oqu(t.errorMessages[1])}}function k2(n,o){if(1&n&&(e.TgZ(0,"div",37)(1,"div")(2,"h4",38),e._uU(3,"Network Capacity"),e.qZA(),e.TgZ(4,"div",39),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",38),e._uU(9,"Number of Nodes"),e.qZA(),e.TgZ(10,"div",39),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div")(14,"h4",38),e._uU(15,"Number of Channels"),e.qZA(),e.TgZ(16,"span",39),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 U2(n,o){if(1&n&&(e.TgZ(0,"div",37)(1,"div")(2,"h4",38),e._uU(3,"Max Channel Size"),e.qZA(),e.TgZ(4,"div",39),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",38),e._uU(9,"Avg Channel Size"),e.qZA(),e.TgZ(10,"div",39),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div")(14,"h4",38),e._uU(15,"Min Channel Size"),e.qZA(),e.TgZ(16,"span",39),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 O2(n,o){if(1&n&&(e.TgZ(0,"div",37)(1,"div")(2,"h4",38),e._uU(3,"Max Out Degree"),e.qZA(),e.TgZ(4,"div",39),e._uU(5),e.ALo(6,"number"),e.qZA()(),e.TgZ(7,"div")(8,"h4",38),e._uU(9,"Avg Out Degree"),e.qZA(),e.TgZ(10,"div",39),e._uU(11),e.ALo(12,"number"),e.qZA()(),e.TgZ(13,"div",40),e._UZ(14,"h4",38)(15,"span",39),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 N2=n=>({"mt-1":n});let I2=(()=>{class n{constructor(t,i,a){this.logger=t,this.commonService=i,this.store=a,this.faProjectDiagram=y.TmZ,this.faBolt=y.BDt,this.faServer=y.xf3,this.faNetworkWired=y.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 u.x,new u.x,new u.x,new u.x,new u.x,new u.x,new u.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(f.bx).pipe((0,d.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(f.N7).pipe((0,d.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(f.JG).pipe((0,d.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(f.ni).pipe((0,d.R)(this.unSubs[3])).subscribe(t=>{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:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(f.ZW).pipe((0,d.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh))};static#t=this.\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",1,"mt-2",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"],["fxLayout","column","fxFlex","100",3,"ngClass"],["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,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,T2,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,q2,8,10,"mat-grid-tile",6),e.qZA()(),e.YNc(8,F2,3,1,"ng-template",null,7,e.W1O)(10,k2,19,9,"ng-template",null,8,e.W1O)(12,U2,19,9,"ng-template",null,9,e.W1O)(14,O2,16,7,"ng-template",null,10,e.W1O)),2&i&&(e.xp6(1),e.Q6J("ngIf",a.selNode.userPersona!==a.userPersonaEnum.OPERATOR),e.xp6(1),e.Q6J("ngClass",e.VKq(4,N2,a.screenSize!==a.screenSizeEnum.XS)),e.xp6(1),e.Q6J("icon",a.faProjectDiagram),e.xp6(4),e.Q6J("ngForOf",a.networkCards))},dependencies:[m.mk,m.sg,m.O5,m.tP,m.RF,m.n9,J.BN,_.xw,_.Wh,_.yH,F.oO,Z.a8,Z.dn,_e.Il,_e.DX,D.pW,Qe,Ee,Be,m.JJ]})}return n})();function P2(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",9),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let R2=(()=>{class n{constructor(t){this.router=t,this.faDownload=y.q7m,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-backup"]],decls:13,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,P2,2,3,"div",6),e.qZA(),e._UZ(9,"mat-tab-nav-panel",null,7),e.TgZ(11,"div",8),e._UZ(12,"router-outlet"),e.qZA()()()()),2&i){const s=e.MAs(10);e.xp6(1),e.Q6J("icon",a.faDownload),e.xp6(6),e.Q6J("tabPanel",s),e.xp6(1),e.Q6J("ngForOf",a.links)}},dependencies:[m.sg,J.BN,_.xw,_.Wh,_.yH,Z.a8,Z.dn,P.BU,P.sW,P.Nj,T.lC,T.rH]})}return n})();function M2(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",24)(1,"h4",25),e._uU(2),e.qZA(),e.TgZ(3,"div",26)(4,"button",27),e.NdJ("click",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.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 J2(n,o){if(1&n&&(e.TgZ(0,"div",28)(1,"h4",25),e._uU(2),e.qZA(),e.TgZ(3,"h4",29),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 D2(n,o){if(1&n&&(e.TgZ(0,"div",28)(1,"h4",25),e._uU(2),e.qZA()()),2&n){const t=e.oxw();e.xp6(2),e.hij("Restore folder location: ",t.selNode.channelBackupPath,"/restore")}}function Q2(n,o){1&n&&e._UZ(0,"mat-progress-bar",30)}function E2(n,o){1&n&&(e.TgZ(0,"th",31),e._uU(1,"Channel Point"),e.qZA())}const B2=n=>({"max-width":n});function H2(n,o){if(1&n&&(e.TgZ(0,"td",32)(1,"div",33)(2,"span",34),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,B2,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function Y2(n,o){1&n&&(e.TgZ(0,"th",35)(1,"div",36),e._uU(2,"Actions"),e.qZA()())}function G2(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",32)(1,"span",37)(2,"button",38),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onRestoreChannels(s))}),e._uU(3,"Restore"),e.qZA()()()}}function V2(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No singular channel backups available."),e.qZA())}function z2(n,o){if(1&n&&(e.TgZ(0,"td",39),e.YNc(1,V2,2,0,"p",40),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 W2=n=>({"display-none":n});function X2(n,o){if(1&n&&e._UZ(0,"tr",41),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,W2,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function K2(n,o){1&n&&e._UZ(0,"tr",42)}function $2(n,o){1&n&&e._UZ(0,"tr",43)}const j2=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),e0=()=>["no_channel"];let t0=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.store=i,this.lndEffects=a,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 u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,v.tb)()),this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,d.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,v.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,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(i,a)=>(i.channel_point?i.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(le.l),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:k.ye,useValue:(0,l.pt)("Channels")}])],decls:28,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"],["fxLayout","column","fxFlex","49"],["matInput","","name","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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,M2,6,1,"div",1)(2,J2,5,1,"div",2)(3,D2,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",7)(9,"mat-label"),e._uU(10,"Filter"),e.qZA(),e.TgZ(11,"input",8),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(12,"div",9),e.YNc(13,Q2,1,0,"mat-progress-bar",10),e.TgZ(14,"table",11,12),e.ynx(16,13),e.YNc(17,E2,2,0,"th",14)(18,H2,4,4,"td",15),e.BQk(),e.ynx(19,16),e.YNc(20,Y2,3,0,"th",17)(21,G2,4,0,"td",15),e.BQk(),e.ynx(22,18),e.YNc(23,z2,2,1,"td",19),e.BQk(),e.YNc(24,X2,1,3,"tr",20)(25,K2,1,0,"tr",21)(26,$2,1,0,"tr",22),e.qZA()(),e._UZ(27,"mat-paginator",23),e.qZA()),2&i&&(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(8),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(13,j2,"error"===a.flgLoading[0])),e.xp6(10),e.Q6J("matFooterRowDef",e.DdM(15,e0)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.O5,m.PC,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,D.pW,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.$V]})}return n})();function n0(n,o){1&n&&e._UZ(0,"mat-progress-bar",33)}function i0(n,o){1&n&&(e.TgZ(0,"th",34),e._uU(1,"Channel Point"),e.qZA())}const a0=n=>({"max-width":n});function o0(n,o){if(1&n&&(e.TgZ(0,"td",35)(1,"div",36)(2,"span",37),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw();e.xp6(1),e.Q6J("ngStyle",e.VKq(2,a0,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function s0(n,o){1&n&&(e.TgZ(0,"th",38)(1,"div",39),e._uU(2,"Actions"),e.qZA()())}function l0(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"td",40)(1,"div",39)(2,"mat-select",41),e._UZ(3,"mat-select-trigger"),e.TgZ(4,"mat-option",42),e.NdJ("click",function(a){const r=e.CHM(t).$implicit,h=e.oxw();return e.KtG(h.onChannelClick(r,a))}),e._uU(5,"View Info"),e.qZA(),e.TgZ(6,"mat-option",42),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onBackupChannels(s))}),e._uU(7,"Backup"),e.qZA(),e.TgZ(8,"mat-option",42),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onDownloadBackup(s))}),e._uU(9,"Download Backup"),e.qZA(),e.TgZ(10,"mat-option",42),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.onVerifyChannels(s))}),e._uU(11,"Verify"),e.qZA()()()()}}function r0(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"No channel available."),e.qZA())}function c0(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting channels..."),e.qZA())}function p0(n,o){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 u0(n,o){if(1&n&&(e.TgZ(0,"td",43),e.YNc(1,r0,2,0,"p",44)(2,c0,2,0,"p",44)(3,p0,2,1,"p",44),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 m0=n=>({"display-none":n});function _0(n,o){if(1&n&&e._UZ(0,"tr",45),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(1,m0,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function d0(n,o){1&n&&e._UZ(0,"tr",46)}function h0(n,o){1&n&&e._UZ(0,"tr",47)}const g0=n=>({"error-border":n}),f0=()=>["no_channel"];let C0=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.store=i,this.actions=a,this.commonService=s,this.faInfoCircle=y.sqG,this.faExclamationTriangle=y.eHv,this.faArchive=y.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 u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.$k).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(f.ZW).pipe((0,d.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,d.R)(this.unSubs[2]),(0,B.h)(t=>t.type===l.uR.SET_CHANNELS_LND||t.type===l.pg.SHOW_FILE)).subscribe(t=>{t.type===l.uR.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.pg.SHOW_FILE&&(this.commonService.downloadFile(t.payload,"channel-"+(this.selectedChannel?.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,v.Vv)({payload:{uiMessage:l.m6.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,v.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:Se}}}))}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,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(i,a)=>(i.channel_point?i.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(q.yh),e.Y36(W.eX),e.Y36(I.v))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:w.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:k.ye,useValue:(0,l.pt)("Channels")}])],decls:46,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"],["fxLayout","column","fxFlex","49"],["matInput","","name","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(i,a){1&i&&(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,"div",13),e._UZ(25,"div",14),e.TgZ(26,"mat-form-field",15)(27,"mat-label"),e._uU(28,"Filter"),e.qZA(),e.TgZ(29,"input",16),e.NdJ("ngModelChange",function(r){return a.selFilter=r})("input",function(){return a.applyFilter()})("keyup",function(){return a.applyFilter()}),e.qZA()()()(),e.TgZ(30,"div",17),e.YNc(31,n0,1,0,"mat-progress-bar",18),e.TgZ(32,"table",19,20),e.ynx(34,21),e.YNc(35,i0,2,0,"th",22)(36,o0,4,4,"td",23),e.BQk(),e.ynx(37,24),e.YNc(38,s0,3,0,"th",25)(39,l0,12,0,"td",26),e.BQk(),e.ynx(40,27),e.YNc(41,u0,4,3,"td",28),e.BQk(),e.YNc(42,_0,1,3,"tr",29)(43,d0,1,0,"tr",30)(44,h0,1,0,"tr",31),e.qZA()(),e._UZ(45,"mat-paginator",32),e.qZA()),2&i&&(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(8),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(14,g0,""!==a.errorMessage)),e.xp6(10),e.Q6J("matFooterRowDef",e.DdM(16,f0)),e.xp6(1),e.Q6J("matHeaderRowDef",a.displayedColumns),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))},dependencies:[m.mk,m.O5,m.PC,p.Fj,p.JJ,p.On,J.BN,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,D.pW,w.gD,w.$L,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.$V]})}return n})();function x0(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",9),e.NdJ("click",function(){const s=e.CHM(t).$implicit,r=e.oxw();return e.KtG(r.activeLink=s.link)}),e._uU(1),e.qZA()}if(2&n){const t=o.$implicit,i=e.oxw();e.s9C("routerLink",t.link),e.Q6J("active",i.activeLink===t.link),e.xp6(1),e.Oqu(t.name)}}let y0=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=y.hkK,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new u.x,new u.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,d.R)(this.unSubs[0]),(0,B.h)(i=>i instanceof T.Av)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(T.F0))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-sign-verify-message"]],decls:13,vars:3,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(i,a){if(1&i&&(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,x0,2,3,"div",6),e.qZA(),e._UZ(9,"mat-tab-nav-panel",null,7),e.TgZ(11,"div",8),e._UZ(12,"router-outlet"),e.qZA()()()()),2&i){const s=e.MAs(10);e.xp6(1),e.Q6J("icon",a.faUserCheck),e.xp6(6),e.Q6J("tabPanel",s),e.xp6(1),e.Q6J("ngForOf",a.links)}},dependencies:[m.sg,J.BN,_.xw,_.Wh,_.yH,Z.a8,Z.dn,P.BU,P.sW,P.Nj,T.lC,T.rH]})}return n})();function T0(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Message is required."),e.qZA())}let b0=(()=>{class n{constructor(t,i,a){this.dataService=t,this.snackBar=i,this.logger=a,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new u.x,new u.x]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,d.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(te.D),e.Y36(ie.ux),e.Y36(U.mQ))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-sign"]],decls:22,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","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","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,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"payload","copied"]],template:function(i,a){1&i&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"mat-label"),e._uU(5,"Message to sign"),e.qZA(),e.TgZ(6,"textarea",4),e.NdJ("ngModelChange",function(r){return a.message=r})("keyup",function(){return a.onMessageChange()}),e.qZA(),e.YNc(7,T0,2,0,"mat-error",5),e.qZA(),e.TgZ(8,"div",6)(9,"button",7),e.NdJ("click",function(){return a.resetData()}),e._uU(10,"Clear Field"),e.qZA(),e.TgZ(11,"button",8),e.NdJ("click",function(){return a.onSign()}),e._uU(12,"Sign"),e.qZA()(),e._UZ(13,"mat-divider",9),e.TgZ(14,"div",10)(15,"p"),e._uU(16,"Generated Signature"),e.qZA()(),e.TgZ(17,"div",11),e._uU(18),e.qZA(),e.TgZ(19,"div",12)(20,"button",13),e.NdJ("copied",function(r){return a.onCopyField(r)}),e._uU(21,"Copy Signature"),e.qZA()()()()),2&i&&(e.xp6(6),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))},dependencies:[m.O5,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,_.xw,_.Wh,_.yH,O.lW,R.Nt,g.KE,g.hX,g.TO,$.d,ue.y,K.h],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return n})();function Z0(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Message is required."),e.qZA())}function v0(n,o){1&n&&(e.TgZ(0,"mat-error"),e._uU(1,"Signature is required."),e.qZA())}function A0(n,o){1&n&&(e.TgZ(0,"p",13)(1,"mat-icon",14),e._uU(2,"close"),e.qZA(),e._uU(3,"Verification failed, please check message and signature"),e.qZA())}function S0(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Pubkey Used"),e.qZA())}function w0(n,o){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 L0(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",21)(1,"button",22),e.NdJ("copied",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.onCopyField(a))}),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 q0(n,o){if(1&n&&(e.TgZ(0,"div",15),e._UZ(1,"mat-divider",16),e.TgZ(2,"div",17),e.YNc(3,S0,2,0,"p",5),e.qZA(),e.YNc(4,w0,3,1,"div",18)(5,L0,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 F0=(()=>{class n{constructor(t,i,a){this.dataService=t,this.snackBar=i,this.logger=a,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new u.x,new u.x]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,d.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(te.D),e.Y36(ie.ux),e.Y36(U.mQ))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-verify"]],decls:21,vars:6,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModel","ngModelChange","keyup"],[4,"ngIf"],["matInput","","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 padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"payload","copied"]],template:function(i,a){1&i&&(e.TgZ(0,"div",0)(1,"form",1,2)(3,"mat-form-field",3)(4,"mat-label"),e._uU(5,"Message to verify"),e.qZA(),e.TgZ(6,"textarea",4),e.NdJ("ngModelChange",function(r){return a.message=r})("keyup",function(){return a.onChange()}),e.qZA(),e.YNc(7,Z0,2,0,"mat-error",5),e.qZA(),e.TgZ(8,"mat-form-field",3)(9,"mat-label"),e._uU(10,"Signature provided"),e.qZA(),e.TgZ(11,"input",6,7),e.NdJ("ngModelChange",function(r){return a.signature=r})("keyup",function(){return a.onChange()}),e.qZA(),e.YNc(13,v0,2,0,"mat-error",5),e.qZA(),e.YNc(14,A0,4,0,"p",8),e.TgZ(15,"div",9)(16,"button",10),e.NdJ("click",function(){return a.resetData()}),e._uU(17,"Clear Fields"),e.qZA(),e.TgZ(18,"button",11),e.NdJ("click",function(){return a.onVerify()}),e._uU(19,"Verify"),e.qZA()(),e.YNc(20,q0,6,4,"div",12),e.qZA()()),2&i&&(e.xp6(6),e.Q6J("ngModel",a.message),e.xp6(1),e.Q6J("ngIf",!a.message),e.xp6(4),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))},dependencies:[m.O5,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,_.xw,_.Wh,_.yH,O.lW,ne.Hw,R.Nt,g.KE,g.hX,g.TO,$.d,ue.y,K.h]})}return n})();var k0=C(4740),N=C(5525);function U0(n,o){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 O0(n,o){if(1&n&&(e.TgZ(0,"mat-option",16),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw(3);e.Q6J("value",t),e.xp6(1),e.Oqu(i.getLabel(t))}}const N0=()=>["all"];function I0(n,o){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-label"),e._uU(6,"Filter By"),e.qZA(),e.TgZ(7,"mat-select",13),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.selFilterBy=a)})("selectionChange",function(){e.CHM(t);const a=e.oxw(2);return a.selFilter="",e.KtG(a.applyFilter())}),e.TgZ(8,"perfect-scrollbar"),e.YNc(9,O0,2,2,"mat-option",14),e.qZA()()(),e.TgZ(10,"mat-form-field",12)(11,"mat-label"),e._uU(12,"Filter"),e.qZA(),e.TgZ(13,"input",15),e.NdJ("ngModelChange",function(a){e.CHM(t);const s=e.oxw(2);return e.KtG(s.selFilter=a)})("input",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.applyFilter())})("keyup",function(){e.CHM(t);const a=e.oxw(2);return e.KtG(a.applyFilter())}),e.qZA()()()()}if(2&n){const t=e.oxw(2);e.xp6(7),e.Q6J("ngModel",t.selFilterBy),e.xp6(2),e.Q6J("ngForOf",e.DdM(3,N0).concat(t.displayedColumns.slice(0,-1))),e.xp6(4),e.Q6J("ngModel",t.selFilter)}}function P0(n,o){1&n&&e._UZ(0,"mat-progress-bar",50)}function R0(n,o){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Channel ID"),e.qZA())}const ye=n=>({"max-width":n});function M0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.chan_id)}}function J0(n,o){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Peer Alias"),e.qZA())}function D0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_alias)}}function Q0(n,o){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Peer Pubkey"),e.qZA())}function E0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.remote_pubkey)}}function B0(n,o){1&n&&(e.TgZ(0,"th",51),e._uU(1,"Channel Point"),e.qZA())}function H0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"div",53)(2,"span",54),e._uU(3),e.qZA()()()),2&n){const t=o.$implicit,i=e.oxw(3);e.xp6(1),e.Q6J("ngStyle",e.VKq(2,ye,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.xp6(2),e.Oqu(null==t?null:t.channel_point)}}function Y0(n,o){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 G0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",t.uptime_str," ")}}function V0(n,o){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 z0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",t.lifetime_str," ")}}function W0(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Commit Fee (Sats)"),e.qZA())}function X0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_fee)," ")}}function K0(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Commit Weight"),e.qZA())}function $0(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.commit_weight)," ")}}function j0(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Fee/KW"),e.qZA())}function e6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.fee_per_kw)," ")}}function t6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Updates"),e.qZA())}function n6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.num_updates)," ")}}function i6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Unsettled Balance (Sats)"),e.qZA())}function a6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.unsettled_balance)," ")}}function o6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Capacity (Sats)"),e.qZA())}function s6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.capacity)," ")}}function l6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Local Reserve (Sats)"),e.qZA())}function r6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.local_chan_reserve_sat)," ")}}function c6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Remote Reserve (Sats)"),e.qZA())}function p6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.hij("",e.lcZ(3,1,t.remote_chan_reserve_sat)," ")}}function u6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Sats Sent"),e.qZA())}function m6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_satoshis_sent))}}function _6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Sats Received"),e.qZA())}function d6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.total_satoshis_received))}}function h6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Local Balance (Sats)"),e.qZA())}function g6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.local_balance))}}function f6(n,o){1&n&&(e.TgZ(0,"th",55),e._uU(1,"Remote Balance (Sats)"),e.qZA())}function C6(n,o){if(1&n&&(e.TgZ(0,"td",52)(1,"span",56),e._uU(2),e.ALo(3,"number"),e.qZA()()),2&n){const t=o.$implicit;e.xp6(2),e.Oqu(e.lcZ(3,1,t.remote_balance))}}function x6(n,o){1&n&&(e.TgZ(0,"th",57)(1,"div",58),e._uU(2,"Actions"),e.qZA()())}function y6(n,o){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,r=e.oxw(3);return e.KtG(r.onManagePeer(s))}),e._uU(2,"Manage"),e.qZA()()}}function T6(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"All peers are routing."),e.qZA())}function b6(n,o){1&n&&(e.TgZ(0,"p"),e._uU(1,"Getting non routing peers..."),e.qZA())}function Z6(n,o){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 v6(n,o){if(1&n&&(e.TgZ(0,"td",61),e.YNc(1,T6,2,0,"p",62)(2,b6,2,0,"p",62)(3,Z6,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 A6=n=>({"display-none":n});function S6(n,o){if(1&n&&e._UZ(0,"tr",63),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,A6,(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)>0))}}function w6(n,o){1&n&&e._UZ(0,"tr",64)}function L6(n,o){1&n&&e._UZ(0,"tr",65)}const q6=()=>["no_non_routing_event"];function F6(n,o){if(1&n&&(e.TgZ(0,"div",17),e.YNc(1,P0,1,0,"mat-progress-bar",18),e.TgZ(2,"table",19,20),e.ynx(4,21),e.YNc(5,R0,2,0,"th",22)(6,M0,4,4,"td",23),e.BQk(),e.ynx(7,24),e.YNc(8,J0,2,0,"th",22)(9,D0,4,4,"td",23),e.BQk(),e.ynx(10,25),e.YNc(11,Q0,2,0,"th",22)(12,E0,4,4,"td",23),e.BQk(),e.ynx(13,26),e.YNc(14,B0,2,0,"th",22)(15,H0,4,4,"td",23),e.BQk(),e.ynx(16,27),e.YNc(17,Y0,2,1,"th",28)(18,G0,3,1,"td",23),e.BQk(),e.ynx(19,29),e.YNc(20,V0,2,1,"th",28)(21,z0,3,1,"td",23),e.BQk(),e.ynx(22,30),e.YNc(23,W0,2,0,"th",28)(24,X0,4,3,"td",23),e.BQk(),e.ynx(25,31),e.YNc(26,K0,2,0,"th",28)(27,$0,4,3,"td",23),e.BQk(),e.ynx(28,32),e.YNc(29,j0,2,0,"th",28)(30,e6,4,3,"td",23),e.BQk(),e.ynx(31,33),e.YNc(32,t6,2,0,"th",28)(33,n6,4,3,"td",23),e.BQk(),e.ynx(34,34),e.YNc(35,i6,2,0,"th",28)(36,a6,4,3,"td",23),e.BQk(),e.ynx(37,35),e.YNc(38,o6,2,0,"th",28)(39,s6,4,3,"td",23),e.BQk(),e.ynx(40,36),e.YNc(41,l6,2,0,"th",28)(42,r6,4,3,"td",23),e.BQk(),e.ynx(43,37),e.YNc(44,c6,2,0,"th",28)(45,p6,4,3,"td",23),e.BQk(),e.ynx(46,38),e.YNc(47,u6,2,0,"th",28)(48,m6,4,3,"td",23),e.BQk(),e.ynx(49,39),e.YNc(50,_6,2,0,"th",28)(51,d6,4,3,"td",23),e.BQk(),e.ynx(52,40),e.YNc(53,h6,2,0,"th",28)(54,g6,4,3,"td",23),e.BQk(),e.ynx(55,41),e.YNc(56,f6,2,0,"th",28)(57,C6,4,3,"td",23),e.BQk(),e.ynx(58,42),e.YNc(59,x6,3,0,"th",43)(60,y6,3,0,"td",44),e.BQk(),e.ynx(61,45),e.YNc(62,v6,4,3,"td",46),e.BQk(),e.YNc(63,S6,1,3,"tr",47)(64,w6,1,0,"tr",48)(65,L6,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("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.nonRoutingPeers),e.xp6(61),e.Q6J("matFooterRowDef",e.DdM(7,q6)),e.xp6(1),e.Q6J("matHeaderRowDef",t.displayedColumns),e.xp6(1),e.Q6J("matRowDefColumns",t.displayedColumns)}}function k6(n,o){if(1&n&&(e.TgZ(0,"div",4),e.YNc(1,I0,14,4,"div",5)(2,F6,66,8,"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 U6=(()=>{class n{constructor(t,i,a,s,r,h,b){this.logger=t,this.commonService=i,this.store=a,this.router=s,this.activatedRoute=r,this.decimalPipe=h,this.camelCaseWithReplace=b,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 u.x,new u.x,new u.x,new u.x,new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(f.Pr).pipe((0,d.R)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.Bn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.gK.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(f.Bo).pipe((0,d.R)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.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=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData&&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(f.ZW).pipe((0,d.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 h=60,b=1,x=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>x&&(x=+S.uptime)}),!0){case x<3600:this.timeUnit="Mins:Secs",h=60,b=1;break;case x>=3600&&x<86400:this.timeUnit="Hrs:Mins",h=3600,b=60;break;case x>=86400&&x<31536e3:this.timeUnit="Days:Hrs",h=86400,b=3600;break;case x>31536e3:this.timeUnit="Yrs:Days",h=31536e3,b=86400;break;default:this.timeUnit="Mins:Secs",h=60,b=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/h),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%h/b),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/h),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%h/b),"2.0-0"):"---"}),t}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:t.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(t){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===t);return i?i.label?i.label:this.camelCaseWithReplace.transform(i.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(t,i)=>{let a="";return a="all"===this.selFilterBy?JSON.stringify(t).toLowerCase():typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),a.includes(i)}}loadNonRoutingPeersTable(t){if(t.length>0){const i=this.calculateUptime(this.activeChannels?.filter(a=>t.findIndex(s=>s.chan_id_in===a.chan_id||s.chan_id_out===a.chan_id)<0));this.nonRoutingPeers=new c.by(i),this.nonRoutingPeers.sort=this.sort,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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(T.F0),e.Y36(T.gz),e.Y36(m.JJ),e.Y36(G.D3))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(i,a){if(1&i&&(e.Gf(A.YE,5),e.Gf(k.NW,5)),2&i){let s;e.iGM(s=e.CRH())&&(a.sort=s.first),e.iGM(s=e.CRH())&&(a.paginator=s.first)}},features:[e._Bn([{provide:k.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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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",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(i,a){1&i&&(e.TgZ(0,"div",0),e.YNc(1,U0,2,1,"div",1)(2,k6,5,5,"div",2),e.qZA()),2&i&&(e.xp6(1),e.Q6J("ngIf",""!==a.errorMessage),e.xp6(1),e.Q6J("ngIf",""===a.errorMessage))},dependencies:[m.mk,m.sg,m.O5,m.PC,p.Fj,p.JJ,p.On,_.xw,_.Wh,_.yH,F.oO,F.Zl,O.lW,R.Nt,g.KE,g.hX,D.pW,w.gD,E.ey,A.YE,A.nU,c.BZ,c.fO,c.as,c.w1,c.Dz,c.nj,c.mD,c.Ke,c.ge,c.ev,c.yh,c.XQ,c.Gk,c.Q2,k.NW,M.Vv,M.$V,m.JJ]})}return n})();var st=C(9007);let O6=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new u.x,new u.x]}ngOnInit(){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 t=this.payment.htlcs[0].route.hops?.reduce((i,a)=>""===i&&a.pub_key?a.pub_key:i+","+a.pub_key,"");this.dataService.getAliasesFromPubkeys(t,!0).pipe((0,d.R)(this.unSubs[0])).subscribe(i=>{this.paths=i?.reduce((a,s)=>""===a?s:a+"\n"+s,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,z.q)(1)).subscribe(t=>{t&&t.description&&""!==t.description&&(this.payment.description=t.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(te.D))};static#t=this.\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(i,a){1&i&&(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&i&&(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))},dependencies:[_.xw,_.Wh,_.yH,Z.dn,$.d,m.JJ]})}return n})();var N6=C(2279);function I6(n,o){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 P6(n,o){1&n&&(e.TgZ(0,"span",23),e._uU(1,"N/A"),e.qZA())}function R6(n,o){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 M6(n,o){1&n&&(e.TgZ(0,"span",24),e._uU(1,"QR Code Not Applicable"),e.qZA())}function J6(n,o){1&n&&e._UZ(0,"mat-divider",16),2&n&&e.Q6J("inset",!0)}function D6(n,o){1&n&&(e.ynx(0),e._uU(1," (zero amount) "),e.BQk())}const Ne=n=>({"mr-0":n});function Q6(n,o){if(1&n&&e._UZ(0,"span",38),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Ne,t.screenSize===t.screenSizeEnum.XS))}}function E6(n,o){if(1&n&&e._UZ(0,"span",39),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Ne,t.screenSize===t.screenSizeEnum.XS))}}function B6(n,o){if(1&n&&e._UZ(0,"span",40),2&n){const t=e.oxw(3);e.Q6J("ngClass",e.VKq(1,Ne,t.screenSize===t.screenSizeEnum.XS))}}function H6(n,o){if(1&n&&(e.TgZ(0,"div",27)(1,"div",32)(2,"span",33),e.YNc(3,Q6,1,3,"span",34)(4,E6,1,3,"span",35)(5,B6,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=o.$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 Y6(n,o){if(1&n){const t=e.EpF();e.TgZ(0,"div",11)(1,"mat-expansion-panel",25),e.NdJ("opened",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.flgOpened=!0)})("closed",function(){e.CHM(t);const a=e.oxw();return e.KtG(a.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,H6,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 G6(n,o){1&n&&e._UZ(0,"mat-divider",16),2&n&&e.Q6J("inset",!0)}const lt=n=>({"display-none":n});let V6=(()=>{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"}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(I.v))};static#t=this.\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(i,a){1&i&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,I6,1,3,"qr-code",2)(3,P6,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,R6,1,3,"qr-code",2)(9,M6,2,0,"span",8),e.qZA(),e.YNc(10,J6,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,D6,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,Y6,14,2,"div",21)(89,G6,1,1,"mat-divider",9),e.qZA()()()()()()),2&i&&(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,lt,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,lt,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))},dependencies:[m.mk,m.sg,m.O5,_.xw,_.Wh,_.yH,F.oO,Z.dn,H.ib,H.yz,H.yK,$.d,X.gM,N6.uU,M.$V,m.JJ,m.uU]})}return n})();function z6(n,o){if(1&n&&(e.TgZ(0,"mat-radio-button",17),e._uU(1),e.qZA()),2&n){const t=o.$implicit,i=e.oxw();e.Q6J("value",t.id)("checked",i.selectedFieldId===t.id),e.xp6(1),e.hij(" ",t.name," ")}}function W6(n,o){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 X6(n,o){1&n&&e._UZ(0,"mat-progress-bar",20)}const K6=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function $6(n,o){if(1&n&&(e.TgZ(0,"div",18),e.YNc(1,X6,1,0,"mat-progress-bar",19),e._uU(2),e.qZA()),2&n){const t=e.oxw();e.Q6J("ngClass",e.VKq(3,K6,""!==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 j6(n,o){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 eC(n,o){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 tC(n,o){1&n&&(e.TgZ(0,"span"),e._uU(1,' fxFlex="100"'),e.TgZ(2,"h3"),e._uU(3,"Error! Unable to find details!"),e.qZA()())}function nC(n,o){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,j6,2,1,"span",25)(6,eC,2,1,"span",25)(7,tC,4,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 iC=n=>({"mt-1":!0,"mt-2":n});let aC=(()=>{class n{constructor(t,i,a,s){this.logger=t,this.commonService=i,this.store=a,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=y.wn1,this.screenSize="",this.screenSizeEnum=l.cu,this.errorMessage="",this.apiCallStatusEnum=l.Bn,this.unSubs=[new u.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,d.R)(this.unSubs[0]),(0,B.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(){if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.yZ)({payload:st.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,v.n7)({payload:{openSnackBar:!1,paymentHash:st.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.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()})}static#e=this.\u0275fac=function(i){return new(i||n)(e.Y36(U.mQ),e.Y36(I.v),e.Y36(q.yh),e.Y36(W.eX))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["rtl-lookup-transactions"]],decls:21,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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModel","ngModelChange","change"],["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"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(i,a){1&i&&(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(r){return a.selectedFieldId=r})("change",function(r){return a.onSelectChange(r)}),e.YNc(7,z6,2,3,"mat-radio-button",7),e.qZA()(),e.TgZ(8,"mat-form-field",8)(9,"mat-label"),e._uU(10),e.qZA(),e.TgZ(11,"input",9,10),e.NdJ("ngModelChange",function(r){return a.lookupKey=r})("change",function(){return a.clearLookupValue()}),e.qZA(),e.YNc(13,W6,2,1,"mat-error",11),e.qZA(),e.TgZ(14,"div",12)(15,"button",13),e.NdJ("click",function(){return a.resetData()}),e._uU(16,"Clear"),e.qZA(),e.TgZ(17,"button",14),e.NdJ("click",function(){return a.onLookup()}),e._uU(18,"Lookup"),e.qZA()()(),e.YNc(19,$6,3,5,"div",15)(20,nC,8,4,"div",16),e.qZA()()()),2&i&&(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,iC,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.xp6(2),e.Oqu((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.xp6(1),e.Q6J("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))},dependencies:[m.mk,m.sg,m.O5,m.RF,m.n9,m.ED,p._Y,p.Fj,p.JJ,p.JL,p.Q7,p.On,p.F,_.xw,_.Wh,_.yH,F.oO,O.lW,Z.dn,R.Nt,g.KE,g.hX,g.TO,D.pW,ce.VQ,ce.U0,O6,V6],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}"]})}return n})();const oC=[{path:"",component:Pe,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Fo,canActivate:[(0,N.QM)()]},{path:"wallet",component:o_,canActivate:[N.a1]},{path:"onchain",component:Pf,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:Jf,canActivate:[(0,N.QM)()]},{path:"send/:selTab",component:at,data:{sweepAll:!1},canActivate:[(0,N.QM)()]},{path:"sweep/:selTab",component:at,data:{sweepAll:!0},canActivate:[(0,N.QM)()]}]},{path:"connections",component:Oo,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:zs,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:fc,canActivate:[(0,N.QM)()]},{path:"pending",component:eu,canActivate:[(0,N.QM)()]},{path:"closed",component:Eu,canActivate:[(0,N.QM)()]},{path:"activehtlcs",component:Nm,canActivate:[(0,N.QM)()]}]},{path:"peers",component:Bs,data:{sweepAll:!1},canActivate:[(0,N.QM)()]}]},{path:"transactions",component:r_,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Je,canActivate:[(0,N.QM)()]},{path:"invoices",component:Me,canActivate:[(0,N.QM)()]},{path:"lookuptransactions",component:aC,canActivate:[(0,N.QM)()]}]},{path:"messages",component:y0,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:b0,canActivate:[(0,N.QM)()]},{path:"verify",component:F0,canActivate:[(0,N.QM)()]}]},{path:"channelbackup",component:R2,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:C0,canActivate:[(0,N.QM)()]},{path:"restore",component:t0,canActivate:[(0,N.QM)()]}]},{path:"routing",component:hd,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:$e,canActivate:[(0,N.QM)()]},{path:"peers",component:Dh,canActivate:[(0,N.QM)()]},{path:"nonroutingprs",component:U6,canActivate:[(0,N.QM)()]}]},{path:"reports",component:Eh,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Kh,canActivate:[(0,N.QM)()]},{path:"transactions",component:pg,canActivate:[(0,N.QM)()]}]},{path:"graph",component:p_,canActivate:[(0,N.QM)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Ke,canActivate:[(0,N.QM)()]},{path:"queryroutes",component:R_,canActivate:[(0,N.QM)()]}]},{path:"lookups",component:Ke,canActivate:[(0,N.QM)()]},{path:"network",component:I2,canActivate:[(0,N.QM)()]},{path:"**",component:k0.w},{path:"rates",redirectTo:"network"}]}],sC=T.Bz.forChild(oC);var lC=C(8339);let rC=(()=>{class n{static#e=this.\u0275fac=function(i){return new(i||n)};static#t=this.\u0275mod=e.oAB({type:n,bootstrap:[Pe]});static#n=this.\u0275inj=e.cJS({imports:[m.ez,lC.m,sC]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/758.8736aa34f95f1235.js b/frontend/758.8736aa34f95f1235.js deleted file mode 100644 index 56779d82..00000000 --- a/frontend/758.8736aa34f95f1235.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[758],{3891:(X,k,r)=>{r.d(k,{D:()=>w});var a=r(8645),T=r(9773),m=r(2154),e=r(4818),t=r(9212),A=r(6339),R=r(4221),F=r(6814),V=r(3814),c=r(617),B=r(2596),D=r(4104);function y(h,v){if(1&h&&(t.TgZ(0,"mat-icon",10),t._uU(1,"info_outline"),t.qZA()),2&h){const d=t.oxw().$implicit;t.Q6J("matTooltip",d.tooltip)}}function x(h,v){if(1&h&&(t.TgZ(0,"span",11),t._uU(1),t.ALo(2,"number"),t.qZA()),2&h){const d=t.oxw().$implicit;t.xp6(1),t.hij(" ",t.xi3(2,1,d.dataValue,"1.0-0")," ")}}function N(h,v){if(1&h&&(t.TgZ(0,"span",11),t._uU(1),t.ALo(2,"number"),t.qZA()),2&h){const d=t.oxw().$implicit,s=t.oxw(2);t.xp6(1),t.hij(" ",t.xi3(2,1,d[s.currencyUnitEnum.BTC],s.currencyUnitFormats.BTC)," ")}}function E(h,v){if(1&h&&(t.TgZ(0,"span",11),t._uU(1),t.ALo(2,"number"),t.qZA()),2&h){const d=t.oxw().$implicit,s=t.oxw(2);t.xp6(1),t.hij(" ",t.xi3(2,1,d[s.currencyUnitEnum.OTHER],s.currencyUnitFormats.OTHER)," ")}}function Z(h,v){if(1&h&&(t.TgZ(0,"div",6)(1,"div",7),t._uU(2),t.YNc(3,y,2,1,"mat-icon",8),t.qZA(),t.YNc(4,x,3,4,"span",9)(5,N,3,4,"span",9)(6,E,3,4,"span",9),t.qZA()),2&h){const d=v.$implicit,s=t.oxw().$implicit,H=t.oxw();t.xp6(2),t.hij(" ",d.title," "),t.xp6(1),t.Q6J("ngIf",d.tooltip),t.xp6(1),t.Q6J("ngIf",s===H.currencyUnitEnum.SATS),t.xp6(1),t.Q6J("ngIf",s===H.currencyUnitEnum.BTC),t.xp6(1),t.Q6J("ngIf",H.fiatConversion&&s!==H.currencyUnitEnum.SATS&&s!==H.currencyUnitEnum.BTC&&""===H.conversionErrorMsg)}}function O(h,v){if(1&h&&(t.TgZ(0,"div",12)(1,"div",13),t._uU(2),t.qZA()()),2&h){const d=t.oxw(2);t.xp6(2),t.Oqu(d.conversionErrorMsg)}}function P(h,v){if(1&h&&(t.TgZ(0,"mat-tab",2)(1,"div",3),t.YNc(2,Z,7,5,"div",4),t.qZA(),t.YNc(3,O,3,1,"div",5),t.qZA()),2&h){const d=v.$implicit,s=t.oxw();t.s9C("label",d),t.xp6(2),t.Q6J("ngForOf",s.values),t.xp6(1),t.Q6J("ngIf",s.fiatConversion&&d!==s.currencyUnitEnum.SATS&&d!==s.currencyUnitEnum.BTC&&""!==s.conversionErrorMsg)}}let w=(()=>{class h{constructor(d,s){this.commonService=d,this.store=s,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]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues(this.values)}ngOnInit(){this.store.select(e.dT).pipe((0,T.R)(this.unSubs[0])).subscribe(d=>{this.fiatConversion=d.settings.fiatConversion,this.currencyUnits=d.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)})}getCurrencyValues(d){d.forEach(s=>{s.dataValue>0?(this.commonService.convertCurrency(s.dataValue,m.NT.SATS,m.NT.BTC,"",!0).pipe((0,T.R)(this.unSubs[1])).subscribe(H=>{s[m.NT.BTC]=H.BTC}),this.commonService.convertCurrency(s.dataValue,m.NT.SATS,m.NT.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.R)(this.unSubs[2])).subscribe({next:H=>{s[m.NT.OTHER]=H.OTHER},error:H=>{this.conversionErrorMsg="Conversion Error: "+H}})):(s[m.NT.BTC]=s.dataValue,""===this.conversionErrorMsg&&(s[m.NT.OTHER]=s.dataValue))})}ngOnDestroy(){this.unSubs.forEach(d=>{d.next(null),d.complete()})}static#c=this.\u0275fac=function(s){return new(s||h)(t.Y36(A.v),t.Y36(R.yh))};static#a=this.\u0275cmp=t.Xpm({type:h,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},features:[t.TTD],decls:2,vars:1,consts:[["mat-stretch-tabs","false","mat-align-tabs","start"],[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 start",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(s,H){1&s&&(t.TgZ(0,"mat-tab-group",0),t.YNc(1,P,4,3,"mat-tab",1),t.qZA()),2&s&&(t.xp6(1),t.Q6J("ngForOf",H.currencyUnits))},dependencies:[F.sg,F.O5,V.xw,V.Wh,V.yH,c.Hw,B.gM,D.uX,D.SP,F.JJ]})}return h})()},6105:(X,k,r)=>{r.d(k,{n:()=>d});var a=r(7700),T=r(590),m=r(2154),e=r(9212),t=r(5980),A=r(6339),R=r(2939),F=r(6814),V=r(5597),c=r(3814),B=r(7509),D=r(2296),y=r(5195),x=r(6385),N=r(2279),E=r(7313),Z=r(6985);const O=s=>({"display-none":s});function P(s,H){if(1&s&&(e.TgZ(0,"div",20),e._UZ(1,"qr-code",21),e.qZA()),2&s){const _=e.oxw();e.Q6J("ngClass",e.VKq(4,O,_.screenSize===_.screenSizeEnum.XS||_.screenSize===_.screenSizeEnum.SM)),e.xp6(1),e.Q6J("value",_.address)("size",_.qrWidth)("errorCorrectionLevel","L")}}function w(s,H){if(1&s&&(e.TgZ(0,"div",22),e._UZ(1,"qr-code",21),e.qZA()),2&s){const _=e.oxw();e.Q6J("ngClass",e.VKq(4,O,_.screenSize!==_.screenSizeEnum.XS&&_.screenSize!==_.screenSizeEnum.SM)),e.xp6(1),e.Q6J("value",_.address)("size",_.qrWidth)("errorCorrectionLevel","L")}}function h(s,H){if(1&s&&(e.TgZ(0,"div",13)(1,"div",14)(2,"h4",15),e._uU(3,"Address Type"),e.qZA(),e.TgZ(4,"span",23),e._uU(5),e.qZA()()()),2&s){const _=e.oxw();e.xp6(5),e.Oqu(_.addressType)}}function v(s,H){1&s&&e._UZ(0,"mat-divider",17)}let d=(()=>{class s{constructor(_,S,g,I,U){this.dialogRef=_,this.data=S,this.logger=g,this.commonService=I,this.snackBar=U,this.faReceipt=T.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(_){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+_)}static#c=this.\u0275fac=function(S){return new(S||s)(e.Y36(a.so),e.Y36(a.WI),e.Y36(t.mQ),e.Y36(A.v),e.Y36(R.ux))};static#a=this.\u0275cmp=e.Xpm({type:s,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 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(S,g){1&S&&(e.TgZ(0,"div",0),e.YNc(1,P,2,6,"div",1),e.TgZ(2,"div",2)(3,"mat-card-header",3)(4,"div",4),e._UZ(5,"fa-icon",5),e.TgZ(6,"span",6),e._uU(7),e.qZA()(),e.TgZ(8,"button",7),e.NdJ("click",function(){return g.onClose()}),e._uU(9,"X"),e.qZA()(),e.TgZ(10,"mat-card-content",8)(11,"div",9),e.YNc(12,w,2,6,"div",10)(13,h,6,1,"div",11)(14,v,1,0,"mat-divider",12),e.TgZ(15,"div",13)(16,"div",14)(17,"h4",15),e._uU(18,"Address"),e.qZA(),e.TgZ(19,"span",16),e._uU(20),e.qZA()()(),e._UZ(21,"mat-divider",17),e.TgZ(22,"div",18)(23,"button",19),e.NdJ("copied",function(U){return g.onCopyAddress(U)}),e._uU(24,"Copy Address"),e.qZA()()()()()()),2&S&&(e.xp6(1),e.Q6J("ngIf",g.address),e.xp6(4),e.Q6J("icon",g.faReceipt),e.xp6(2),e.Oqu(g.screenSize===g.screenSizeEnum.XS?"Address":"Generated Address"),e.xp6(5),e.Q6J("ngIf",g.address),e.xp6(1),e.Q6J("ngIf",""!==g.addressType),e.xp6(1),e.Q6J("ngIf",""!==g.addressType),e.xp6(6),e.Oqu(g.address),e.xp6(3),e.Q6J("payload",g.address))},dependencies:[F.mk,F.O5,V.BN,c.xw,c.Wh,c.yH,B.oO,D.lW,y.dn,y.dk,x.d,N.uU,E.y,Z.h]})}return s})()},1948:(X,k,r)=>{r.d(k,{D:()=>K});var a=r(9212),T=r(3214),m=r(2154),e=r(5980),t=r(6814),A=r(6223),R=r(3814),F=r(2296),V=r(8034),c=r(617),B=r(2032),D=r(5683),y=r(8525),x=r(3680);let N=(()=>{class o extends x.LF{constructor(i){super(i)}format(i,f){return"MMM YYYY"===f?m.gg[i.getMonth()].name+", "+i.getFullYear():"YYYY"===f?i.getFullYear().toString():i.getDate()+"/"+m.gg[i.getMonth()].name+"/"+i.getFullYear()}static#c=this.\u0275fac=function(f){return new(f||o)(a.LFG(x.Ad,8))};static#a=this.\u0275prov=a.Yz7({token:o,factory:o.\u0275fac})}return o})();const E={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},Z={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let O=(()=>{class o{static#c=this.\u0275fac=function(f){return new(f||o)};static#a=this.\u0275dir=a.lG2({type:o,selectors:[["","monthlyDate",""]],features:[a._Bn([{provide:x._A,useClass:N},{provide:x.sG,useValue:E}])]})}return o})(),P=(()=>{class o{static#c=this.\u0275fac=function(f){return new(f||o)};static#a=this.\u0275dir=a.lG2({type:o,selectors:[["","yearlyDate",""]],features:[a._Bn([{provide:x._A,useClass:N},{provide:x.sG,useValue:Z}])]})}return o})();var w=r(3362),h=r(6082);const v=["monthlyDatepicker"],d=["yearlyDatepicker"],s=()=>({animationDirection:"forward"});function H(o,b){if(1&o&&a.GkF(0,9),2&o){a.oxw();const i=a.MAs(19);a.Q6J("ngTemplateOutlet",i)("ngTemplateOutletContext",a.DdM(2,s))}}const _=()=>({animationDirection:"backward"});function S(o,b){if(1&o&&a.GkF(0,9),2&o){a.oxw();const i=a.MAs(19);a.Q6J("ngTemplateOutlet",i)("ngTemplateOutletContext",a.DdM(2,_))}}const g=()=>({animationDirection:""});function I(o,b){if(1&o&&a.GkF(0,9),2&o){a.oxw();const i=a.MAs(19);a.Q6J("ngTemplateOutlet",i)("ngTemplateOutletContext",a.DdM(2,g))}}function U(o,b){if(1&o&&(a.TgZ(0,"mat-option",17),a._uU(1),a.ALo(2,"titlecase"),a.qZA()),2&o){const i=b.$implicit;a.Q6J("value",i),a.xp6(1),a.hij(" ",a.lcZ(2,2,i)," ")}}function Y(o,b){if(1&o){const i=a.EpF();a.TgZ(0,"mat-form-field",18)(1,"input",19,20),a.NdJ("ngModelChange",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.selectedValue=p)}),a.qZA(),a._UZ(3,"mat-datepicker-toggle",21),a.TgZ(4,"mat-datepicker",22,23),a.NdJ("monthSelected",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.onMonthSelected(p))})("dateSelected",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.onMonthSelected(p))}),a.qZA()()}if(2&o){const i=a.MAs(5),f=a.oxw(2);a.xp6(1),a.Q6J("matDatepicker",i)("min",f.first)("max",f.last)("ngModel",f.selectedValue),a.xp6(2),a.Q6J("for",i),a.xp6(1),a.Q6J("startAt",f.selectedValue)}}function W(o,b){if(1&o){const i=a.EpF();a.TgZ(0,"mat-form-field",24)(1,"input",25,26),a.NdJ("ngModelChange",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.selectedValue=p)}),a.qZA(),a._UZ(3,"mat-datepicker-toggle",21),a.TgZ(4,"mat-datepicker",27,28),a.NdJ("yearSelected",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.onYearSelected(p))})("monthSelected",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.onYearSelected(p))})("dateSelected",function(p){a.CHM(i);const C=a.oxw(2);return a.KtG(C.onYearSelected(p))}),a.qZA()()}if(2&o){const i=a.MAs(5),f=a.oxw(2);a.xp6(1),a.Q6J("matDatepicker",i)("min",f.first)("max",f.last)("ngModel",f.selectedValue),a.xp6(2),a.Q6J("for",i),a.xp6(1),a.Q6J("startAt",f.selectedValue)}}function q(o,b){if(1&o){const i=a.EpF();a.TgZ(0,"div",10)(1,"div",11)(2,"mat-select",12),a.NdJ("ngModelChange",function(p){a.CHM(i);const C=a.oxw();return a.KtG(C.selScrollRange=p)})("selectionChange",function(p){a.CHM(i);const C=a.oxw();return a.KtG(C.onRangeChanged(p))}),a.YNc(3,U,3,4,"mat-option",13),a.qZA()(),a.TgZ(4,"div",14),a.YNc(5,Y,6,6,"mat-form-field",15)(6,W,6,6,"mat-form-field",16),a.qZA()()}if(2&o){const i=a.oxw();a.Q6J("@sliderAnimation",i.animationDirection),a.xp6(2),a.Q6J("ngModel",i.selScrollRange),a.xp6(1),a.Q6J("ngForOf",i.scrollRanges),a.xp6(2),a.Q6J("ngIf",i.selScrollRange===i.scrollRanges[0]),a.xp6(1),a.Q6J("ngIf",i.selScrollRange===i.scrollRanges[1])}}let K=(()=>{class o{constructor(i){this.logger=i,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(i){this.selScrollRange=i.value,this.onStepChange("LAST")}onMonthSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(i){switch(this.logger.info(i),i){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(i){"monthlyDate"===i.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===i.srcElement.name&&this.yearlyDatepicker.open()}static#c=this.\u0275fac=function(f){return new(f||o)(a.Y36(e.mQ))};static#a=this.\u0275cmp=a.Xpm({type:o,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(f,p){if(1&f&&(a.Gf(v,5),a.Gf(d,5)),2&f){let C;a.iGM(C=a.CRH())&&(p.monthlyDatepicker=C.first),a.iGM(C=a.CRH())&&(p.yearlyDatepicker=C.first)}},hostBindings:function(f,p){1&f&&a.NdJ("click",function(J){return p.onChartMouseUp(J)})},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","20"],["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","20"],["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","58"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["fxFlex","60","fxFlex.gt-md","30","name","selScrlRange","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","","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","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","","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(f,p){1&f&&(a.TgZ(0,"div",0)(1,"div",1)(2,"button",2),a.NdJ("click",function(){return p.onStepChange("FIRST")}),a.TgZ(3,"mat-icon"),a._uU(4,"skip_previous"),a.qZA()(),a.TgZ(5,"button",3),a.NdJ("click",function(){return p.onStepChange("PREVIOUS")}),a.TgZ(6,"mat-icon"),a._uU(7,"navigate_before"),a.qZA()()(),a.YNc(8,H,1,3,"ng-container",4)(9,S,1,3,"ng-container",4)(10,I,1,3,"ng-container",4),a.TgZ(11,"div",5)(12,"button",6),a.NdJ("click",function(){return p.onStepChange("NEXT")}),a.TgZ(13,"mat-icon"),a._uU(14,"navigate_next"),a.qZA()(),a.TgZ(15,"button",7),a.NdJ("click",function(){return p.onStepChange("LAST")}),a.TgZ(16,"mat-icon"),a._uU(17,"skip_next"),a.qZA()()()(),a.YNc(18,q,7,5,"ng-template",null,8,a.W1O)),2&f&&(a.xp6(5),a.Q6J("disabled",p.disablePrev),a.xp6(3),a.Q6J("ngIf","forward"===p.animationDirection),a.xp6(1),a.Q6J("ngIf","backward"===p.animationDirection),a.xp6(1),a.Q6J("ngIf",""===p.animationDirection),a.xp6(2),a.Q6J("disabled",p.disableNext))},dependencies:[t.sg,t.O5,t.tP,A.Fj,A.JJ,A.On,R.xw,R.Wh,R.yH,F.RK,V.Mq,V.hl,V.nW,c.Hw,B.Nt,D.KE,D.R9,y.gD,x.ey,O,P,w.F,h.q,t.rS],data:{animation:[T.l]}})}return o})()},5362:(X,k,r)=>{r.d(k,{g:()=>c2});var a=r(1476),T=r(3566),m=r(5313),e=r(2154),t=r(9103),A=r(8645),R=r(9773),F=r(4818),V=r(8525),c=r(9212),B=r(6339),D=r(4221),y=r(6814),x=r(2995),N=r(6223),E=r(3814),Z=r(7509),O=r(2296),P=r(2032),w=r(5683),h=r(3680),v=r(2159);function d(l,M){if(1&l&&(c.TgZ(0,"mat-option",30),c._uU(1),c.qZA()),2&l){const n=M.$implicit,z=c.oxw();c.Q6J("value",n),c.xp6(1),c.Oqu(z.getLabel(n))}}function s(l,M){1&l&&(c.TgZ(0,"th",31),c._uU(1,"Date"),c.qZA())}function H(l,M){if(1&l&&(c.TgZ(0,"td",32),c._uU(1),c.ALo(2,"date"),c.qZA()),2&l){const n=M.$implicit,z=c.oxw();c.xp6(1),c.Oqu(c.xi3(2,1,null==n?null:n.date,z.dataRange===z.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function _(l,M){1&l&&(c.TgZ(0,"th",33),c._uU(1,"Amount Paid (Sats)"),c.qZA())}function S(l,M){if(1&l&&(c.TgZ(0,"td",32)(1,"span",34),c._uU(2),c.ALo(3,"number"),c.qZA()()),2&l){const n=M.$implicit;c.xp6(2),c.Oqu(c.xi3(3,1,null==n?null:n.amount_paid,"1.0-2"))}}function g(l,M){1&l&&(c.TgZ(0,"th",33),c._uU(1,"# Payments"),c.qZA())}function I(l,M){if(1&l&&(c.TgZ(0,"td",32)(1,"span",34),c._uU(2),c.ALo(3,"number"),c.qZA()()),2&l){const n=M.$implicit;c.xp6(2),c.Oqu(c.lcZ(3,1,null==n?null:n.num_payments))}}function U(l,M){1&l&&(c.TgZ(0,"th",33),c._uU(1,"Amount Received (Sats)"),c.qZA())}function Y(l,M){if(1&l&&(c.TgZ(0,"td",32)(1,"span",34),c._uU(2),c.ALo(3,"number"),c.qZA()()),2&l){const n=M.$implicit;c.xp6(2),c.Oqu(c.xi3(3,1,null==n?null:n.amount_received,"1.0-2"))}}function W(l,M){1&l&&(c.TgZ(0,"th",33),c._uU(1,"# Invoices"),c.qZA())}function q(l,M){if(1&l&&(c.TgZ(0,"td",32)(1,"span",34),c._uU(2),c.ALo(3,"number"),c.qZA()()),2&l){const n=M.$implicit;c.xp6(2),c.Oqu(c.lcZ(3,1,null==n?null:n.num_invoices))}}function K(l,M){if(1&l){const n=c.EpF();c.TgZ(0,"th",35)(1,"div",36)(2,"mat-select",37),c._UZ(3,"mat-select-trigger"),c.TgZ(4,"mat-option",38),c.NdJ("click",function(){c.CHM(n);const u=c.oxw();return c.KtG(u.onDownloadCSV())}),c._uU(5,"Download CSV"),c.qZA()()()()}}function o(l,M){if(1&l){const n=c.EpF();c.TgZ(0,"td",39)(1,"button",40),c.NdJ("click",function(){const L=c.CHM(n).$implicit,G=c.oxw();return c.KtG(G.onTransactionClick(L))}),c._uU(2,"View Info"),c.qZA()()}}function b(l,M){1&l&&(c.TgZ(0,"p"),c._uU(1,"No transaction available."),c.qZA())}function i(l,M){if(1&l&&(c.TgZ(0,"td",41),c.YNc(1,b,2,0,"p",42),c.qZA()),2&l){const n=c.oxw();c.xp6(1),c.Q6J("ngIf",!(null!=n.transactions&&n.transactions.data)||(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)<1)}}const f=l=>({"display-none":l});function p(l,M){if(1&l&&c._UZ(0,"tr",43),2&l){const n=c.oxw();c.Q6J("ngClass",c.VKq(1,f,(null==n.transactions?null:n.transactions.data)&&(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)>0))}}function C(l,M){1&l&&c._UZ(0,"tr",44)}function J(l,M){1&l&&c._UZ(0,"tr",45)}const Q=()=>["all"],$=()=>["no_transaction"];let c2=(()=>{class l{constructor(n,z,u,L){this.commonService=n,this.store=z,this.datePipe=u,this.camelCaseWithReplace=L,this.dataRange=e.op[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:e.IV,sortBy:"date",sortOrder:e.Pi.DESCENDING},this.nodePageDefs=e.hG,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=e.op,this.transactions=new m.by([]),this.pageSize=e.IV,this.pageSizeOptions=e.TJ,this.screenSize="",this.screenSizeEnum=e.cu,this.unSubs=[new A.x,new A.x],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.dataList&&!n.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.IV,this.loadTransactionsTable(this.dataList)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(F.dT).pipe((0,R.R)(this.unSubs[0])).subscribe(n=>{this.nodePageDefs="CLN"===n.lnImplementation?e.At:"ECL"===n.lnImplementation?e.Xk:e.hG}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.IV,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(n){const z=[[{key:"date",value:this.datePipe.transform(n.date,this.dataRange===e.op[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:e.Gi.DATE}],[{key:"amount_paid",value:Math.round(n.amount_paid),title:"Amount Paid (Sats)",width:50,type:e.Gi.NUMBER},{key:"num_payments",value:n.num_payments,title:"# Payments",width:50,type:e.Gi.NUMBER}],[{key:"amount_received",value:Math.round(n.amount_received),title:"Amount Received (Sats)",width:50,type:e.Gi.NUMBER},{key:"num_invoices",value:n.num_invoices,title:"# Invoices",width:50,type:e.Gi.NUMBER}]];this.store.dispatch((0,t.qR)({payload:{data:{type:e.n_.INFORMATION,alertTitle:"Transaction Summary",message:z}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const z=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(u=>u.column===n);return z?z.label?z.label:this.camelCaseWithReplace.transform(z.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.transactions.filterPredicate=(n,z)=>{let u="";switch(this.selFilterBy){case"all":u=(n.date?(this.datePipe.transform(n.date,"dd/MMM")+"/"+n.date.getFullYear()).toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"date":u=this.datePipe.transform(new Date(n[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:u=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return u.includes(z)}}loadTransactionsTable(n){this.transactions=new m.by(n?[...n]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(n,z)=>n[z]&&isNaN(n[z])?n[z].toLocaleLowerCase():n[z]?+n[z]:null,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(n=>{n.next(),n.complete()})}static#c=this.\u0275fac=function(z){return new(z||l)(c.Y36(B.v),c.Y36(D.yh),c.Y36(y.uU),c.Y36(x.D3))};static#a=this.\u0275cmp=c.Xpm({type:l,selectors:[["rtl-transactions-report-table"]],viewQuery:function(z,u){if(1&z&&(c.Gf(T.YE,5),c.Gf(a.NW,5)),2&z){let L;c.iGM(L=c.CRH())&&(u.sort=L.first),c.iGM(L=c.CRH())&&(u.paginator=L.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},features:[c._Bn([{provide:V.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:a.ye,useValue:(0,e.pt)("Transactions")}]),c.TTD],decls:43,vars:14,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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(z,u){1&z&&(c.TgZ(0,"div",0)(1,"div",1)(2,"div",2),c._UZ(3,"div",3),c.TgZ(4,"div",4)(5,"mat-form-field",5)(6,"mat-label"),c._uU(7,"Filter By"),c.qZA(),c.TgZ(8,"mat-select",6),c.NdJ("ngModelChange",function(G){return u.selFilterBy=G})("selectionChange",function(){return u.selFilter="",u.applyFilter()}),c.TgZ(9,"perfect-scrollbar"),c.YNc(10,d,2,2,"mat-option",7),c.qZA()()(),c.TgZ(11,"mat-form-field",5)(12,"mat-label"),c._uU(13,"Filter"),c.qZA(),c.TgZ(14,"input",8),c.NdJ("ngModelChange",function(G){return u.selFilter=G})("input",function(){return u.applyFilter()})("keyup",function(){return u.applyFilter()}),c.qZA()()()(),c.TgZ(15,"div",9)(16,"div",10)(17,"table",11,12),c.ynx(19,13),c.YNc(20,s,2,0,"th",14)(21,H,3,4,"td",15),c.BQk(),c.ynx(22,16),c.YNc(23,_,2,0,"th",17)(24,S,4,4,"td",15),c.BQk(),c.ynx(25,18),c.YNc(26,g,2,0,"th",17)(27,I,4,3,"td",15),c.BQk(),c.ynx(28,19),c.YNc(29,U,2,0,"th",17)(30,Y,4,4,"td",15),c.BQk(),c.ynx(31,20),c.YNc(32,W,2,0,"th",17)(33,q,4,3,"td",15),c.BQk(),c.ynx(34,21),c.YNc(35,K,6,0,"th",22)(36,o,3,0,"td",23),c.BQk(),c.ynx(37,24),c.YNc(38,i,2,1,"td",25),c.BQk(),c.YNc(39,p,1,3,"tr",26)(40,C,1,0,"tr",27)(41,J,1,0,"tr",28),c.qZA(),c._UZ(42,"mat-paginator",29),c.qZA()()()()),2&z&&(c.xp6(8),c.Q6J("ngModel",u.selFilterBy),c.xp6(2),c.Q6J("ngForOf",c.DdM(12,Q).concat(u.displayedColumns.slice(0,-1))),c.xp6(4),c.Q6J("ngModel",u.selFilter),c.xp6(3),c.Q6J("matSortActive",u.tableSetting.sortBy)("matSortDirection",u.tableSetting.sortOrder)("dataSource",u.transactions),c.xp6(22),c.Q6J("matFooterRowDef",c.DdM(13,$)),c.xp6(1),c.Q6J("matHeaderRowDef",u.displayedColumns),c.xp6(1),c.Q6J("matRowDefColumns",u.displayedColumns),c.xp6(1),c.Q6J("pageSize",u.pageSize)("pageSizeOptions",u.pageSizeOptions)("showFirstLastButtons",u.screenSize!==u.screenSizeEnum.XS))},dependencies:[y.mk,y.sg,y.O5,N.Fj,N.JJ,N.On,E.xw,E.Wh,E.yH,Z.oO,O.lW,P.Nt,w.KE,w.hX,V.gD,V.$L,h.ey,T.YE,T.nU,m.BZ,m.fO,m.as,m.w1,m.Dz,m.nj,m.mD,m.Ke,m.ge,m.ev,m.yh,m.XQ,m.Gk,m.Q2,a.NW,v.Vv,v.$V,y.JJ,y.uU]})}return l})()},1449:(X,k,r)=>{r.d(k,{KfU:()=>P2,ctA:()=>r1});var P2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},r1={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]}}}]); \ No newline at end of file diff --git a/frontend/853.c4ce8a9a0bef2bb7.js b/frontend/853.c4ce8a9a0bef2bb7.js new file mode 100644 index 00000000..ec9472c8 --- /dev/null +++ b/frontend/853.c4ce8a9a0bef2bb7.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{4853:(Gl,br,Pt)=>{"use strict";Pt.r(br),Pt.d(br,{CLNModule:()=>TC});var st=Pt(177),le=Pt(1188),b=Pt(9881),A=Pt(4438),n=Pt(2920),B=Pt(7575);function a(i,D){1&i&&A.nrm(0,"mat-progress-bar",3)}let s=(()=>{class i{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(l=>{switch(!0){case l instanceof le.Z:this.loading=!0;break;case l instanceof le.wF:case l instanceof le.j5:case l instanceof le.L6:this.loading=!1}})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-root"]],decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,a,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",c.loading))},dependencies:[st.bT,n.DJ,n.sA,n.UI,B.HM,le.n3],data:{animation:[b.E]}})}return i})();var o=Pt(1413),g=Pt(6977),f=Pt(3993),w=Pt(614),u=Pt(5383),r=Pt(4416),d=Pt(9647),E=Pt(9584),C=Pt(8570),e=Pt(9640),h=Pt(2571),Q=Pt(60),I=Pt(6038),R=Pt(8834),p=Pt(5596),m=Pt(6195),y=Pt(9213),x=Pt(9115),Y=Pt(6850),v=Pt(5964),S=Pt(6695),z=Pt(2042),F=Pt(9159),$=Pt(2798),gA=Pt(5351),_=Pt(8430),fA=Pt(4054),iA=Pt(9417),wA=Pt(9631),IA=Pt(6467),FA=Pt(6600),YA=Pt(450),HA=Pt(4823),J=Pt(9587),BA=Pt(6114);function aA(i,D){1&i&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function eA(i,D){if(1&i&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function EA(i,D){if(1&i&&A.nrm(0,"span",34),2&i){const t=A.XpG();A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function xA(i,D){if(1&i&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(A.bMT(2,2,t))}}function OA(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.invoiceError)}}function W(i,D){if(1&i&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,OA,2,1,"span",38),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.invoiceError)}}let L=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.store=c,this.decimalPipe=j,this.commonService=PA,this.actions=WA,this.faExclamationTriangle=u.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.timeUnitEnum=r.F7,this.timeUnits=r.SY,this.selTimeUnit=r.F7.SECS,this.invoiceError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===t.payload.action&&(t.payload.status===r.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===r.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let l=this.expiry?this.expiry:r.It;this.selTimeUnit!==r.F7.SECS&&this.expiry&&(l=this.commonService.convertTime(this.expiry,this.selTimeUnit,r.F7.SECS)),this.store.dispatch((0,_.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=r.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-create-invoices"]],decls:48,vars:19,consts:[["addInvoiceForm","ngForm"],["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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","expiry","type","number","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"ml-2"],["tabindex","6","color","primary","name","private",3,"ngModelChange","ngModel"],["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"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Invoice"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.description,WA)||(c.description=WA),A.Njj(WA)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.invoiceValue,WA)||(c.invoiceValue=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,aA,2,0,"span",16)(24,eA,2,1,"span",17)(25,EA,1,1,"span",18),A.EFF(26),A.k0s()(),A.j41(27,"mat-form-field",19)(28,"mat-label"),A.EFF(29,"Expiry"),A.k0s(),A.j41(30,"input",20),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.expiry,WA)||(c.expiry=WA),A.Njj(WA)}),A.k0s(),A.j41(31,"span",14),A.EFF(32),A.nI1(33,"titlecase"),A.k0s()(),A.j41(34,"mat-form-field",21)(35,"mat-select",22),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onTimeUnitChange(WA))}),A.DNE(36,xA,3,4,"mat-option",23),A.k0s()()(),A.j41(37,"div",24)(38,"mat-slide-toggle",25),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.private,WA)||(c.private=WA),A.Njj(WA)}),A.EFF(39,"Private Routing Hints"),A.k0s(),A.j41(40,"mat-icon",26),A.EFF(41,"info_outline"),A.k0s()(),A.DNE(42,W,3,2,"div",27),A.j41(43,"div",28)(44,"button",29),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(45,"Clear Field"),A.k0s(),A.j41(46,"button",30),A.bIt("click",function(){A.eBV(j);const WA=A.sdS(10);return A.Njj(c.onAddInvoice(WA))}),A.EFF(47,"Create Invoice"),A.k0s()()()()()()}2&l&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",c.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",c.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==c.invoiceValueHint),A.R7$(),A.Y8G("ngIf",c.convertedCurrency&&"FA"===c.convertedCurrency.iconType&&""!==c.invoiceValueHint),A.R7$(),A.Y8G("ngIf",c.convertedCurrency&&"SVG"===c.convertedCurrency.iconType&&""!==c.invoiceValueHint),A.R7$(),A.SpI(" ",c.invoiceValueHint," "),A.R7$(4),A.Y8G("step",c.selTimeUnit===c.timeUnitEnum.SECS?300:c.selTimeUnit===c.timeUnitEnum.MINS?10:c.selTimeUnit===c.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",c.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,c.selTimeUnit)," "),A.R7$(3),A.Y8G("value",c.selTimeUnit),A.R7$(),A.Y8G("ngForOf",c.timeUnits),A.R7$(2),A.R50("ngModel",c.private),A.R7$(4),A.Y8G("ngIf",""!==c.invoiceError))},dependencies:[st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,$.VO,FA.wT,YA.sG,HA.oV,J.N,BA.V,st.PV]})}return i})();var rA=Pt(8321),AA=Pt(1771),QA=Pt(7541),yA=Pt(2929),cA=Pt(497);const CA=()=>["all"],DA=i=>({"error-border":i}),NA=()=>["no_invoice"],zA=i=>({"mr-0":i}),pA=i=>({width:i}),JA=i=>({"display-none":i});function ft(i,D){1&i&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function wt(i,D){if(1&i&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function gt(i,D){if(1&i&&A.nrm(0,"span",22),2&i){const t=A.XpG(2);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function pt(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),A.EFF(4,"Description"),A.k0s(),A.j41(5,"input",8),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.description,c)||(j.description=c),A.Njj(c)}),A.k0s()(),A.j41(6,"mat-form-field",9)(7,"mat-label"),A.EFF(8,"Amount"),A.k0s(),A.j41(9,"input",10),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.invoiceValue,c)||(j.invoiceValue=c),A.Njj(c)}),A.bIt("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ft,2,0,"span",13)(14,wt,2,1,"span",14)(15,gt,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){A.eBV(t);const c=A.sdS(1),j=A.XpG();return A.Njj(j.onAddInvoice(c))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(5),A.R50("ngModel",t.description),A.R7$(4),A.Y8G("step",100)("min",1),A.R50("ngModel",t.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==t.invoiceValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),A.R7$(),A.SpI(" ",t.invoiceValueHint," ")}}function Yt(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function VA(i,D){if(1&i&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function _A(i,D){1&i&&A.nrm(0,"mat-progress-bar",63)}function Qt(i,D){1&i&&A.nrm(0,"th",64)}function ht(i,D){if(1&i&&A.nrm(0,"span",69),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function vt(i,D){if(1&i&&A.nrm(0,"span",70),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function Nt(i,D){if(1&i&&A.nrm(0,"span",71),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function vA(i,D){if(1&i&&(A.j41(0,"td",65),A.DNE(1,ht,1,3,"span",66)(2,vt,1,3,"span",67)(3,Nt,1,3,"span",68),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","paid"===(null==t?null:t.status)),A.R7$(),A.Y8G("ngIf","unpaid"===(null==t?null:t.status)),A.R7$(),A.Y8G("ngIf","expired"===(null==t?null:t.status))}}function Bt(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function Z(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==t?null:t.expires_at),"dd/MMM/y HH:mm")," ")}}function k(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function U(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.paid_at),"dd/MMM/y HH:mm")||"-")}}function hA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function q(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11&&t.label.includes("keysend-")?"Keysend":"Bolt11")}}function GA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function At(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.description)}}function O(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function qA(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label)}}function nt(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function MA(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function jA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function ot(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11)}}function Tt(i,D){1&i&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function yt(i,D){if(1&i&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function Ut(i,D){1&i&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function Lt(i,D){if(1&i&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_received_msat)/1e3,(null==t?null:t.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function sn(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",77)(1,"div",78)(2,"mat-select",79),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function $t(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",81)(1,"div",78)(2,"mat-select",82),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onInvoiceClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onRefreshInvoice(c))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function Kt(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function Me(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function ze(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Re(i,D){if(1&i&&(A.j41(0,"td",83),A.DNE(1,Kt,2,0,"p",84)(2,Me,2,0,"p",84)(3,ze,2,1,"p",84),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function yn(i,D){if(1&i&&A.nrm(0,"tr",85),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,JA,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function Mn(i,D){1&i&&A.nrm(0,"tr",86)}function ee(i,D){1&i&&A.nrm(0,"tr",87)}function An(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",26)(1,"div",27)(2,"div",28),A.nrm(3,"fa-icon",29),A.j41(4,"span",30),A.EFF(5,"Invoices History"),A.k0s()(),A.j41(6,"div",31)(7,"mat-form-field",32)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",33),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,VA,2,2,"mat-option",34),A.k0s()()(),A.j41(13,"mat-form-field",32)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",35),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,_A,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,Qt,1,0,"th",40)(23,vA,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,Bt,2,0,"th",43)(26,Z,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,k,2,0,"th",43)(29,U,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,hA,2,0,"th",43)(32,q,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,GA,2,0,"th",43)(35,At,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,O,2,0,"th",43)(38,qA,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,nt,2,0,"th",43)(41,MA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,jA,2,0,"th",43)(44,ot,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,Tt,2,0,"th",51)(47,yt,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,Ut,2,0,"th",51)(50,Lt,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,sn,6,0,"th",54)(53,$t,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Re,4,3,"td",57),A.bVm(),A.DNE(56,yn,1,3,"tr",58)(57,Mn,1,0,"tr",59)(58,ee,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("icon",t.faHistory),A.R7$(7),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,CA).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter),A.R7$(2),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",A.eq3(16,DA,""!==t.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,NA)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Te=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe){this.logger=t,this.store=l,this.decimalPipe=c,this.commonService=j,this.rtlEffects=PA,this.datePipe=WA,this.actions=an,this.camelCaseWithReplace=fe,this.calledFrom="transactions",this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:r.md,sortBy:"expires_at",sortOrder:r.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new F.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Pj).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.SET_LOOKUP_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,AA.xO)({payload:{data:{pageSize:this.pageSize,component:L}}}))}onAddInvoice(t){this.invoiceValue||(this.invoiceValue=0);const l=this.expiry?this.expiry:r.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,_.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,AA.I1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{t&&this.store.dispatch((0,_.a5)({payload:null}))})}onInvoiceClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{invoice:{amount_msat:t.amount_msat,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,amount_received_msat:t.amount_received_msat},newlyAdded:!1,component:rA.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 l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=this.datePipe.transform(new Date(1e3*(t.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(t.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":c="paid"===t?.status?"paid":"unpaid"===t?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":c=t?.bolt12?"bolt12":t?.bolt11&&t?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":c=((t.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":c=((t.amount_received_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,r.BQ.SATS,r.BQ.OTHER,this.selNode?.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onRefreshInvoice(t){this.store.dispatch((0,_.Yi)({payload:t.label}))}updateInvoicesData(t){this.invoiceJSONArr=this.invoiceJSONArr?.map(l=>l.label===t.label?t:l)}loadInvoicesTable(t){this.invoices=new F.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi":return l.amount_msat;case"msatoshi_received":return l.amount_received_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(fA.En),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","110","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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","name","invoiceValue","type","number","tabindex","3",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["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"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(l,c){1&l&&(A.j41(0,"div",2),A.DNE(1,pt,22,8,"form",3)(2,Yt,5,0,"div",4)(3,An,60,19,"div",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf","home"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,BA.V,st.QX,st.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();var Fe=Pt(6697),Qe=Pt(1534),In=Pt(2765),wn=Pt(5951);const kt=["sendPaymentForm"],zt=["paymentAmt"],Wt=["offerAmt"],ae=["paymentReq"],mn=["offerReq"];function dn(i,D){if(1&i&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&i){const t=A.XpG();A.FS9("value",t.paymentTypes.OFFER)}}function Tn(i,D){1&i&&A.eu8(0)}function Wn(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.paymentError)}}function ti(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,Wn,2,1,"span",29),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.paymentError)}}function xn(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function ZA(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function SA(i,D){if(1&i&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,xn,2,1,"span",35)(3,ZA,1,1,"span",36),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.SpI(" ",t.paymentDecodedHintPost," ")}}function it(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function RA(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.paymentDecodedHint)}}function TA(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function UA(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",40,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.paymentAmount,c)||(j.paymentAmount=c),A.Njj(c)}),A.bIt("change",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onAmountChange(c))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount invoice, enter amount to be paid."),A.k0s(),A.DNE(7,TA,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.paymentAmount),A.R7$(4),A.Y8G("ngIf",!t.paymentAmount)}}function kA(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Payment Request"),A.k0s(),A.j41(3,"textarea",31,4),A.bIt("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(5,SA,5,4,"mat-hint",32)(6,it,2,0,"mat-error",29)(7,RA,2,1,"mat-error",29),A.k0s(),A.DNE(8,UA,8,2,"mat-form-field",33)}if(2&i){const t=A.sdS(4),l=A.XpG();A.R7$(3),A.Y8G("ngModel",l.paymentRequest),A.R7$(2),A.Y8G("ngIf",l.paymentRequest&&""!==l.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!l.paymentRequest),A.R7$(),A.Y8G("ngIf",null==t.errors?null:t.errors.decodeError),A.R7$(),A.Y8G("ngIf",l.zeroAmtInvoice)}}function et(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function LA(i,D){1&i&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function at(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function XA(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(2);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function dt(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function xt(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Pubkey"),A.k0s(),A.j41(3,"input",41),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.pubkey,c)||(j.pubkey=c),A.Njj(c)}),A.k0s(),A.DNE(4,et,2,0,"mat-error",29),A.k0s(),A.j41(5,"mat-form-field",30)(6,"mat-label"),A.EFF(7,"Amount"),A.k0s(),A.j41(8,"input",42,6),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.keysendAmount,c)||(j.keysendAmount=c),A.Njj(c)}),A.bIt("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,LA,2,0,"span",44)(14,at,2,1,"span",35)(15,XA,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,dt,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.R50("ngModel",t.pubkey),A.R7$(),A.Y8G("ngIf",!t.pubkey),A.R7$(4),A.R50("ngModel",t.keysendAmount),A.R7$(5),A.Y8G("ngIf",""!==t.keysendValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.keysendValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.keysendValueHint),A.R7$(),A.SpI(" ",t.keysendValueHint," "),A.R7$(),A.Y8G("ngIf",!t.keysendAmount)}}function St(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function jt(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function Xt(i,D){if(1&i&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,St,2,1,"span",35)(3,jt,1,1,"span",36),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.offerDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.offerDecodedHintPre),A.R7$(),A.SpI(" ",t.offerDecodedHintPost," ")}}function ne(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function Et(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.offerDecodedHint)}}function Rt(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function Zt(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",51,8),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.offerAmount,c)||(j.offerAmount=c),A.Njj(c)}),A.bIt("change",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onAmountChange(c))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount offer, enter amount to be paid."),A.k0s(),A.DNE(7,Rt,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.offerAmount),A.R7$(4),A.Y8G("ngIf",!t.offerAmount)}}function Ht(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Title to Save"),A.k0s(),A.j41(3,"input",53),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.offerTitle,c)||(j.offerTitle=c),A.Njj(c)}),A.k0s()()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.offerTitle)}}function ie(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Offer Request"),A.k0s(),A.j41(3,"textarea",46,7),A.bIt("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(5,Xt,5,4,"mat-hint",32)(6,ne,2,0,"mat-error",29)(7,Et,2,1,"mat-error",29),A.k0s(),A.DNE(8,Zt,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgSaveToDB,c)||(j.flgSaveToDB=c),A.Njj(c)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,Ht,4,1,"mat-form-field",50)}if(2&i){const t=A.sdS(4),l=A.XpG();A.R7$(3),A.Y8G("ngModel",l.offerRequest),A.R7$(2),A.Y8G("ngIf",l.offerRequest&&""!==l.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!l.offerRequest),A.R7$(),A.Y8G("ngIf",null==t.errors?null:t.errors.decodeError),A.R7$(),A.Y8G("ngIf",l.zeroAmtOffer),A.R7$(2),A.R50("ngModel",l.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",l.flgSaveToDB||""!==l.offerTitle)}}let Jt=(()=>{class i{set payReq(t){t&&(this.paymentReq=t)}set offrReq(t){t&&(this.offerReq=t)}constructor(t,l,c,j,PA,WA,an,fe){this.dialogRef=t,this.data=l,this.store=c,this.logger=j,this.commonService=PA,this.decimalPipe=WA,this.actions=an,this.dataService=fe,this.faExclamationTriangle=u.zpE,this.convertedCurrency=null,this.paymentTypes=r.Y0,this.paymentType=r.Y0.INVOICE,this.offerDecoded={},this.offerRequest="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerDescription="",this.offerIssuer="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.keysendValueHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=r.nv[0],this.feeLimitTypes=r.nv,this.paymentError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case r.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case r.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case r.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.activeChannels=t.activeChannels,this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[3]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.SEND_PAYMENT_STATUS_CLN||t.type===r.TC.SET_OFFER_INVOICE_CLN)).subscribe(t=>{t.type===r.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),t.type===r.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=t.payload,this.sendPayment()),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&("SendPayment"===t.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=t.payload.message),"DecodePayment"===t.payload.action&&(this.paymentType===r.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+t.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===r.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+t.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===r.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+t.payload.message)),"FetchOfferInvoice"===t.payload.action&&this.paymentType===r.Y0.OFFER&&(this.paymentError=t.payload.message))})}onSendPayment(){switch(this.paymentType){case r.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case r.Y0.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.Q)(this.unSubs[4])).subscribe(t=>{"bolt12 offer"===t.type&&t.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=t,this.setPaymentDecodedDetails())}));break;case r.Y0.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.Q)(this.unSubs[5])).subscribe(t=>{"bolt11 invoice"===t.type&&t.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=t,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_KEYSEND,paymentType:r.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===r.Y0.INVOICE?this.store.dispatch((0,_.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===r.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.OFFER,bolt11:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount_msat:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,issuer:this.offerIssuer,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,_.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(t){this.paymentType===r.Y0.INVOICE?(this.paymentRequest=t,this.resetInvoiceDetails()):this.paymentType===r.Y0.OFFER&&(this.offerRequest=t,this.resetOfferDetails()),t.length>100&&this.dataService.decodePayment(t,!0).pipe((0,g.Q)(this.unSubs[6])).subscribe(l=>{this.paymentType===r.Y0.INVOICE?"bolt12 offer"===l.type&&l.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=l,this.setPaymentDecodedDetails()):this.paymentType===r.Y0.OFFER&&("bolt11 invoice"===l.type&&l.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=l,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(t){this.paymentType===r.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+t.target.value),this.paymentType===r.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=t.target.value)}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat?(this.offerDecoded.offer_amount_msat=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.offerDecodedHintPre="Zero Amount Offer | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""):(this.zeroAmtOffer=!1,this.offerAmount=this.offerDecoded.offer_amount_msat?this.offerDecoded.offer_amount_msat/1e3:0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.offerAmount,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[7])).subscribe({next:t=>{this.convertedCurrency=t,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:t=>{this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description+". Unable to convert currency.",this.offerDecodedHintPost=""}}):(this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""))}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.amount_msat?(this.paymentDecoded.amount_msat=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[8])).subscribe({next:t=>{this.convertedCurrency=t,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:t=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))}resetData(){switch(this.paymentType){case r.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case r.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=r.nv[0],this.resetInvoiceDetails();break;case r.Y0.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}onKeysendAmountChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.keysendValueHint="",this.keysendAmount&&this.keysendAmount>99&&this.commonService.convertCurrency(this.keysendAmount,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.keysendValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(C.gP),A.rXU(h.h),A.rXU(st.QX),A.rXU(fA.En),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(l,c){if(1&l&&(A.GBs(kt,5),A.GBs(zt,5),A.GBs(Wt,5),A.GBs(ae,5),A.GBs(mn,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.paymentAmt=j.first),A.mGM(j=A.lsd())&&(c.offerAmt=j.first),A.mGM(j=A.lsd())&&(c.payReq=j.first),A.mGM(j=A.lsd())&&(c.offrReq=j.first)}},decls:30,vars:7,consts:[["sendPaymentForm","ngForm"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["paymentReq","ngModel"],["paymentAmt","ngModel"],["keysendAmt","ngModel"],["offerReq","ngModel"],["offerAmt","ngModel"],["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 center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModelChange","change","ngModel"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],[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"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["autoFocus","","matInput","","name","pubkey","tabindex","4","required","",3,"ngModelChange","ngModel"],["matInput","","name","keysendAmount","tabindex","5","required","",3,"ngModelChange","keyup","ngModel"],["matSuffix",""],["class","mr-3px",4,"ngIf"],[1,"mr-3px"],["autoFocus","","matInput","","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModelChange","ngModel"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","name","amountoffer","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","tabindex","7",3,"ngModelChange","ngModel"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",9)(1,"div",10)(2,"mat-card-header",11)(3,"div",12)(4,"span",13),A.EFF(5,"Send Payment"),A.k0s()(),A.j41(6,"button",14),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",15)(9,"mat-radio-group",16),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.paymentType,WA)||(c.paymentType=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.onPaymentTypeChange())}),A.j41(10,"mat-radio-button",17),A.EFF(11,"Invoice"),A.k0s(),A.j41(12,"mat-radio-button",18),A.EFF(13,"Keysend"),A.k0s(),A.DNE(14,dn,2,1,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return A.eBV(j),A.Njj(c.onSendPayment())})("reset",function(){return A.eBV(j),A.Njj(c.resetData())}),A.DNE(17,Tn,1,0,"ng-container",21)(18,ti,3,2,"div",22),A.j41(19,"div",23)(20,"button",24),A.EFF(21,"Clear Fields"),A.k0s(),A.j41(22,"button",25),A.EFF(23,"Send Payment"),A.k0s()()()()()(),A.DNE(24,kA,9,5,"ng-template",null,1,A.C5r)(26,xt,18,8,"ng-template",null,2,A.C5r)(28,ie,15,7,"ng-template",null,3,A.C5r)}if(2&l){const j=A.sdS(25),PA=A.sdS(27),WA=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",c.paymentType),A.R7$(),A.FS9("value",c.paymentTypes.INVOICE),A.R7$(2),A.FS9("value",c.paymentTypes.KEYSEND),A.R7$(2),A.Y8G("ngIf",c.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",c.paymentType===c.paymentTypes.KEYSEND?PA:c.paymentType===c.paymentTypes.OFFER?WA:j),A.R7$(),A.Y8G("ngIf",""!==c.paymentError)}},dependencies:[st.bT,st.T3,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,In.So,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,wn.VT,wn._g,HA.oV,J.N]})}return i})();const ue=["sendPaymentForm"],se=()=>["all"],ve=i=>({"error-border":i}),Oe=()=>["no_payment"],ge=i=>({width:i}),xe=i=>({"display-none":i});function Ne(i,D){if(1&i&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function qe(i,D){if(1&i&&A.nrm(0,"span",20),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function Dn(i,D){if(1&i&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,Ne,2,1,"span",16)(3,qe,1,1,"span",17),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.SpI(" ",t.paymentDecodedHintPost," ")}}function tn(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Qn(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),A.EFF(4,"Payment Request"),A.k0s(),A.j41(5,"textarea",9,1),A.bIt("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(7,Dn,5,4,"mat-hint",10)(8,tn,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(5),A.Y8G("ngModel",t.paymentRequest),A.R7$(2),A.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!t.paymentRequest)}}function Yn(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function en(i,D){if(1&i&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function gn(i,D){1&i&&A.nrm(0,"mat-progress-bar",71)}function on(i,D){1&i&&A.nrm(0,"th",72)}function Mi(i,D){1&i&&A.nrm(0,"span",76)}function Ii(i,D){1&i&&A.nrm(0,"span",77)}function Kn(i,D){if(1&i&&(A.j41(0,"td",73),A.DNE(1,Mi,1,0,"span",74)(2,Ii,1,0,"span",75),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status)}}function Di(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function vi(i,D){if(1&i&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==t?null:t.created_at),"dd/MMM/y HH:mm")," ")}}function jn(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function Ci(i,D){if(1&i&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function ei(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function Sn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function sa(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function dA(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11)}}function H(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function T(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label)}}function X(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function V(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.destination)}}function uA(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function mA(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.memo)}}function tt(i,D){1&i&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function rt(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_sent_msat)/1e3,"1.0-4"))}}function ut(i,D){1&i&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function Ct(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_msat)/1e3,"1.0-4"))}}function Mt(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",83)(1,"div",84)(2,"mat-select",85),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",86),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Dt(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onPaymentClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function Ft(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function Ot(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function Vt(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Ae(i,D){if(1&i&&(A.j41(0,"td",89),A.DNE(1,Ft,2,0,"p",11)(2,Ot,2,0,"p",11)(3,Vt,2,1,"p",11),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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 Be(i,D){1&i&&A.nrm(0,"span",76)}function Ye(i,D){1&i&&A.nrm(0,"span",77)}function Ze(i,D){1&i&&A.nrm(0,"span",76)}function me(i,D){1&i&&A.nrm(0,"span",77)}function Ve(i,D){if(1&i&&(A.j41(0,"span",90),A.DNE(1,Ze,1,0,"span",74)(2,me,1,0,"span",75),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status)}}function hn(i,D){if(1&i&&(A.qex(0),A.DNE(1,Ve,3,2,"span",91),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function We(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,Be,1,0,"span",74)(3,Ye,1,0,"span",75),A.k0s(),A.DNE(4,hn,2,1,"ng-container",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function En(i,D){if(1&i&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*t.created_at,"dd/MMM/y HH:mm")," ")}}function vn(i,D){if(1&i&&(A.qex(0),A.DNE(1,En,3,4,"span",91),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Xn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,vn,2,1,"ng-container",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==t?null:t.total_parts," "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function On(i,D){1&i&&A.nrm(0,"span",90)}function bi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,On,1,0,"span",91),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Jn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,bi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function ni(i,D){if(1&i&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" Part ID ",t.partid?t.partid:0," ")}}function Zn(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,ni,2,1,"span",91),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function qn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Zn,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Hn(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Ri(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Hn,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Ti(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Ri,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Ui(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Fi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ui,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Li(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Fi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Pi(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function ir(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Pi,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function zi(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,ir,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.destination),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Vn(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Gi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Vn,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function ii(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Gi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.memo),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Rr(i,D){if(1&i&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,t.amount_sent_msat/1e3,t.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function Tr(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Rr,3,4,"span",96),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Bs(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,Tr,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==t?null:t.amount_sent_msat)/1e3,(null==t?null:t.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",t.is_expanded)}}function us(i,D){if(1&i&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,t.amount_msat/1e3,t.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function fs(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,us,3,4,"span",96),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function hs(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,fs,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",t.is_expanded)}}function Es(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(4);return A.Njj(j.onPaymentClick(c))}),A.EFF(2),A.k0s()()}if(2&i){const t=D.$implicit;A.R7$(2),A.SpI("View ",t.partid?t.partid:0,"")}}function oa(i,D){if(1&i&&(A.j41(0,"div"),A.DNE(1,Es,3,1,"div",99),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Cs(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const c=A.eBV(t).$implicit;return A.Njj(c.is_expanded=!c.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,oa,2,1,"div",11),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(3),A.JRh(t.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function la(i,D){1&i&&A.nrm(0,"tr",102)}function ca(i,D){if(1&i&&A.nrm(0,"tr",103),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,xe,(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 ws(i,D){1&i&&A.nrm(0,"tr",104)}function ds(i,D){1&i&&A.nrm(0,"tr",102)}function Qs(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",22)(1,"div",23)(2,"div",24),A.nrm(3,"fa-icon",25),A.j41(4,"span",26),A.EFF(5,"Payments History"),A.k0s()(),A.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",29),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,en,2,2,"mat-option",30),A.k0s()()(),A.j41(13,"mat-form-field",28)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",31),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,gn,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,on,1,0,"th",37)(24,Kn,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,Di,2,0,"th",40)(27,vi,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,jn,2,0,"th",40)(30,Ci,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ei,2,0,"th",40)(33,Sn,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,sa,2,0,"th",40)(36,dA,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,H,2,0,"th",40)(39,T,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,X,2,0,"th",40)(42,V,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,uA,2,0,"th",40)(45,mA,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,tt,2,0,"th",48)(48,rt,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,ut,2,0,"th",48)(51,Ct,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Mt,6,0,"th",51)(54,Dt,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,Ae,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,We,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,Xn,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,Jn,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,qn,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,Ti,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,Li,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,zi,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,ii,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,Bs,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,hs,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,Cs,5,2,"td",38),A.bVm(),A.DNE(79,la,1,0,"tr",66)(80,ca,1,3,"tr",67)(81,ws,1,0,"tr",68)(82,ds,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("icon",t.faHistory),A.R7$(7),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(18,se).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter),A.R7$(3),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",A.eq3(19,ve,""!==t.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",t.mppColumns)("matRowDefWhen",t.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Oe)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)("matRowDefWhen",!t.is_group),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let ga=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe,cn){this.logger=t,this.commonService=l,this.store=c,this.rtlEffects=j,this.decimalPipe=PA,this.titleCasePipe=WA,this.datePipe=an,this.dataService=fe,this.camelCaseWithReplace=cn,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:r.md,sortBy:"created_at",sortOrder:r.oi.DESCENDING},this.faHistory=u.Int,this.newlyAddedPayment="",this.information={},this.payments=new F.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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(l=>this.mppColumns.push("group_"+l)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(E.KT).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(t,l){return l.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.created_at?(this.paymentDecoded.amount_msat||(this.paymentDecoded.amount_msat=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded?.payment_hash||"",this.paymentDecoded.amount_msat&&0!==this.paymentDecoded.amount_msat?(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.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.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:r.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:r.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Fe.s)(1)).subscribe(l=>{l&&(this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.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.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:r.UN.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.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Fe.s)(1)).subscribe(c=>{c&&(this.paymentDecoded.amount_msat=c[0].inputValue,this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*c[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.Q)(this.unSubs[5])).subscribe(l=>{this.paymentDecoded=l,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:c=>{this.convertedCurrency=c,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:c=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,AA.xO)({payload:{data:{component:Jt}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(t){const l=[[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:r.UN.STRING}],[{key:"id",value:t.id,title:"ID",width:20,type:r.UN.STRING},{key:"destination",value:t.destination,title:"Destination",width:80,type:r.UN.STRING}],[{key:"created_at",value:t.created_at,title:"Creation Date",width:50,type:r.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(t.status),title:"Status",width:50,type:r.UN.STRING}],[{key:"amount_msat",value:t.amount_msat,title:"Amount (mSats)",width:50,type:r.UN.NUMBER},{key:"amount_sent_msat",value:t.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:r.UN.NUMBER}]];t.bolt11&&""!==t.bolt11&&l?.unshift([{key:"bolt11",value:t.bolt11,title:"Bolt 11",width:100,type:r.UN.STRING}]),t.bolt12&&""!==t.bolt12&&l?.unshift([{key:"bolt12",value:t.bolt12,title:"Bolt 12",width:100,type:r.UN.STRING}]),t.memo&&""!==t.memo&&l?.splice(2,0,[{key:"memo",value:t.memo,title:"Memo",width:100,type:r.UN.STRING}]),t.hasOwnProperty("partid")?l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:80,type:r.UN.STRING},{key:"partid",value:t.partid,title:"Part ID",width:20,type:r.UN.STRING}]):l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Payment Information",message:l}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.created_at?this.datePipe.transform(new Date(1e3*t.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":c="complete"===t?.status?"completed":"incomplete/failed";break;case"created_at":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":c=((t.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":c=((t.amount_msat||0)/1e3).toString()||"";break;case"type":c=t?.bolt12?"bolt12":t?.bolt11?"bolt11":"keysend";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}loadPaymentsTable(t){this.payments=new F.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_sent":return l.amount_sent_msat;case"msatoshi":return l.amount_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const l=JSON.parse(JSON.stringify(this.payments.data))?.reduce((c,j)=>j.mpps?c.concat(j.mpps):(delete j.is_group,delete j.is_expanded,delete j.total_parts,c.concat(j)),[]);this.commonService.downloadFile(l,"Payments")}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(QA.H),A.rXU(st.QX),A.rXU(st.PV),A.rXU(st.vh),A.rXU(Qe.u),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(l,c){if(1&l&&(A.GBs(ue,5),A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","110","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"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-3"],["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 wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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.gt-xs","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"],["fxLayoutAlign","end center",1,"mpp-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["class","mpp-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-details"],["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(l,c){1&l&&(A.j41(0,"div",3),A.DNE(1,Qn,14,3,"form",4)(2,Yn,3,0,"div",5)(3,Qs,84,22,"div",6),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf","home"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX,st.vh],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.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:2rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:3rem}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:11rem}"]})}return i})();const Ba=i=>({backgroundColor:i});function ms(i,D){if(1&i&&A.nrm(0,"span",6),2&i){const t=A.XpG();A.Y8G("ngStyle",A.eq3(1,Ba,"#"+(null==t.information?null:t.information.color)))}}function ps(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",1),A.EFF(2,"Color"),A.k0s(),A.j41(3,"div",2),A.nrm(4,"span",7),A.EFF(5),A.nI1(6,"uppercase"),A.k0s()()),2&i){const t=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,Ba,"#"+(null==t.information?null:t.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Ms(i,D){if(1&i&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}let ua=(()=>{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||""))}))}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[A.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[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(l,c){1&l&&(A.j41(0,"div",0)(1,"div")(2,"h4",1),A.EFF(3,"Alias"),A.k0s(),A.j41(4,"div",2),A.EFF(5),A.DNE(6,ms,1,3,"span",3),A.k0s()(),A.DNE(7,ps,7,6,"div",4),A.j41(8,"div")(9,"h4",1),A.EFF(10,"Implementation"),A.k0s(),A.j41(11,"div",2),A.EFF(12),A.k0s()(),A.j41(13,"div")(14,"h4",1),A.EFF(15,"Chain"),A.k0s(),A.DNE(16,Ms,2,1,"span",5),A.k0s()()),2&l&&(A.R7$(5),A.SpI(" ",null==c.information?null:c.information.alias," "),A.R7$(),A.Y8G("ngIf",!c.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",c.showColorFieldSeparately),A.R7$(5),A.JRh(null!=c.information&&c.information.lnImplementation||null!=c.information&&c.information.version?(null==c.information?null:c.information.lnImplementation)+" "+(null==c.information?null:c.information.version):""),A.R7$(4),A.Y8G("ngForOf",c.chains))},dependencies:[st.Sq,st.bT,st.B3,n.DJ,n.sA,n.UI,I.eI,st.Pc]})}return i})();function Is(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div")(2,"h4",3),A.EFF(3,"Lightning"),A.k0s(),A.j41(4,"div",4),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",5),A.k0s(),A.j41(8,"div")(9,"h4",3),A.EFF(10,"On-chain"),A.k0s(),A.j41(11,"div",4),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.nrm(14,"mat-progress-bar",5),A.k0s(),A.j41(15,"div")(16,"h4",3),A.EFF(17,"Total"),A.k0s(),A.j41(18,"div",4),A.EFF(19),A.nI1(20,"number"),A.k0s()()()),2&i){const t=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,5,t.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.balances.lightning/t.balances.total*100),A.R7$(5),A.SpI("",A.i5U(13,8,t.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.balances.onchain/t.balances.total*100),A.R7$(5),A.SpI("",A.i5U(20,11,t.balances.total,"1.0-0")," Sats")}}function fa(i,D){if(1&i&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Ds=(()=>{class i{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["class","mt-1","fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["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(l,c){if(1&l&&A.DNE(0,Is,21,14,"div",1)(1,fa,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,B.HM,st.QX]})}return i})();const vs=()=>["../routing"];function Fs(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"div",5),A.EFF(4),A.nI1(5,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==t.fees?null:t.fees.totalTxCount))}}function ys(i,D){1&i&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"a",8),A.EFF(4," Go to Routing "),A.k0s()()),2&i&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,vs)))}function _n(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Total"),A.k0s(),A.j41(5,"div",5),A.EFF(6),A.nI1(7,"number"),A.k0s()()(),A.j41(8,"div",6),A.DNE(9,Fs,6,3,"div",7)(10,ys,5,2,"div",7),A.k0s()()),2&i){const t=A.XpG();A.R7$(6),A.SpI("",A.bMT(7,3,(null==t.fees?null:t.fees.feeCollected)/1e3)," Sats"),A.R7$(3),A.Y8G("ngIf",null==t.fees?null:t.fees.totalTxCount),A.R7$(),A.Y8G("ngIf",!(null!=t.fees&&t.fees.totalTxCount))}}function gi(i,D){if(1&i&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Hi=(()=>{class i{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["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"],[1,"overflow-wrap","dashboard-info-value",3,"routerLink"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,_n,11,5,"div",1)(1,gi,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,le.Wk,st.QX]})}return i})();function xs(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Active"),A.k0s(),A.j41(5,"div",5),A.nrm(6,"span",6),A.EFF(7),A.nI1(8,"number"),A.k0s()(),A.j41(9,"div")(10,"h4",4),A.EFF(11,"Pending"),A.k0s(),A.j41(12,"div",5),A.nrm(13,"span",7),A.EFF(14),A.nI1(15,"number"),A.k0s()(),A.j41(16,"div")(17,"h4",4),A.EFF(18,"Inactive"),A.k0s(),A.j41(19,"div",5),A.nrm(20,"span",8),A.EFF(21),A.nI1(22,"number"),A.k0s()()(),A.j41(23,"div",3)(24,"div")(25,"h4",4),A.EFF(26,"Capacity"),A.k0s(),A.j41(27,"div",5),A.EFF(28),A.nI1(29,"number"),A.k0s()(),A.j41(30,"div")(31,"h4",4),A.EFF(32,"Capacity"),A.k0s(),A.j41(33,"div",5),A.EFF(34),A.nI1(35,"number"),A.k0s()(),A.j41(36,"div")(37,"h4",4),A.EFF(38,"Capacity"),A.k0s(),A.j41(39,"div",5),A.EFF(40),A.nI1(41,"number"),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(7),A.JRh(A.bMT(8,6,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.channels)||0)),A.R7$(7),A.JRh(A.bMT(15,8,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.channels)||0)),A.R7$(7),A.JRh(A.bMT(22,10,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.channels)||0)),A.R7$(7),A.SpI("",A.i5U(29,12,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(35,15,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(41,18,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function Ys(i,D){if(1&i&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let ha=(()=>{class i{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["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(l,c){if(1&l&&A.DNE(0,xs,42,21,"div",1)(1,Ys,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,st.QX]})}return i})();var ri=Pt(1997);const Ss=()=>["../connections/channels/open"],Ns=(i,D)=>({filterColumn:i,filterValue:D});function bs(i,D){if(1&i&&(A.j41(0,"div",19)(1,"a",20),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",22),A.nrm(11,"fa-icon",23),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",24)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",25),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(3);A.R7$(),A.FS9("matTooltip",t.alias||t.peer_id),A.FS9("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Y8G("routerLink",A.lJ4(23,Ss))("state",A.l_i(24,Ns,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,11,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,15,t.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",l.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,18,t.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,20,t.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function Rs(i,D){if(1&i&&(A.j41(0,"div",17),A.DNE(1,bs,20,27,"div",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngForOf",t.activeChannels)}}function Ts(i,D){if(1&i&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",9),A.nrm(11,"fa-icon",10),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",11)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",12),A.k0s(),A.j41(20,"div",13),A.nrm(21,"mat-divider",14),A.k0s(),A.j41(22,"div",15),A.DNE(23,Rs,2,1,"div",16),A.k0s()()),2&i){const t=A.XpG(),l=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",t.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,10,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,12,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("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.R7$(4),A.Y8G("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",l)}}function Us(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function Ls(i,D){if(1&i&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Ps=(()=>{class i{constructor(t){this.router=t,this.faBalanceScale=u.GR4,this.faDumbbell=u.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","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(l,c){if(1&l&&A.DNE(0,Ts,24,15,"div",2)(1,Us,4,0,"ng-template",null,0,A.C5r)(3,Ls,3,1,"ng-template",null,1,A.C5r),2&l){const j=A.sdS(4);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.Sq,st.bT,Q.aY,n.DJ,n.sA,n.UI,R.$z,IA.MV,ri.q,B.HM,HA.oV,cA.Ld,le.Wk,st.P9,st.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return i})();const zs=(i,D,t)=>({"mb-4":i,"mb-2":D,"mb-1":t}),Gs=()=>["../connections/channels/open"],Hs=(i,D)=>({filterColumn:i,filterValue:D});function ks(i,D){if(1&i&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,t.to_them_msat/1e3||0,"1.0-0")," Sats")}}function js(i,D){if(1&i&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,t.to_us_msat/1e3||0,"1.0-0")," Sats")}}function Os(i,D){if(1&i&&A.nrm(0,"mat-progress-bar",21),2&i){const t=A.XpG().$implicit,l=A.XpG(3);A.FS9("value",l.totalLiquidity>0?(t.to_them_msat/1e3||0)/l.totalLiquidity*100:0)}}function Js(i,D){if(1&i&&A.nrm(0,"mat-progress-bar",21),2&i){const t=A.XpG().$implicit,l=A.XpG(3);A.FS9("value",l.totalLiquidity>0?(t.to_us_msat/1e3||0)/l.totalLiquidity*100:0)}}function Ea(i,D){if(1&i&&(A.j41(0,"div",14)(1,"a",15),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",16),A.DNE(5,ks,5,4,"mat-hint",17)(6,js,5,4,"mat-hint",17),A.k0s(),A.DNE(7,Os,1,1,"mat-progress-bar",18)(8,Js,1,1,"mat-progress-bar",18),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(3);A.R7$(),A.FS9("matTooltip",t.alias||t.peer_id),A.FS9("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Y8G("routerLink",A.lJ4(14,Gs))("state",A.l_i(15,Hs,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,10,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===l.direction),A.R7$(),A.Y8G("ngIf","Out"===l.direction),A.R7$(),A.Y8G("ngIf","In"===l.direction),A.R7$(),A.Y8G("ngIf","Out"===l.direction)}}function Vs(i,D){if(1&i&&(A.j41(0,"div",12),A.DNE(1,Ea,9,18,"div",13),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngForOf",t.activeChannels)}}function Ws(i,D){if(1&i&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"mat-hint",6),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",7),A.k0s(),A.j41(8,"div",8),A.nrm(9,"mat-divider",9),A.k0s(),A.j41(10,"div",10),A.DNE(11,Vs,2,1,"div",11),A.k0s()()),2&i){const t=A.XpG(),l=A.sdS(2);A.Y8G("ngClass",A.sMw(7,zs,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.R7$(5),A.SpI("",A.i5U(6,4,t.totalLiquidity,"1.0-0")," Sats"),A.R7$(6),A.Y8G("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",l)}}function Ks(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function Xs(i,D){if(1&i&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Ks,2,0,"button",24),A.k0s()()),2&i){const t=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===t.direction)}}function Zs(i,D){if(1&i&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let qs=(()=>{class i{constructor(t,l){this.router=t,this.commonService=l,this.screenSize="",this.screenSizeEnum=r.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix),A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","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","column","fxFlex","100","fxLayoutAlign","start stretch",1,"w-100","mt-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["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(l,c){if(1&l&&A.DNE(0,Ws,12,11,"div",2)(1,Xs,5,1,"ng-template",null,0,A.C5r)(3,Zs,3,1,"ng-template",null,1,A.C5r),2&l){const j=A.sdS(4);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,n.DJ,n.sA,n.UI,I.PW,R.$z,IA.MV,ri.q,B.HM,HA.oV,cA.Ld,le.Wk,st.P9,st.QX]})}return i})();const Ca=i=>({"dashboard-card-content":!0,"error-border":i}),_s=i=>({"p-0":i});function $s(i,D){if(1&i&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&i){A.XpG();const t=A.sdS(11);A.Y8G("matMenuTriggerFor",t)}}function Ao(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG().$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function to(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){A.eBV(t);const c=A.XpG(3);return A.Njj(c.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&i){const t=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function eo(i,D){1&i&&A.nrm(0,"mat-progress-bar",30)}function oe(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",31),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function no(i,D){if(1&i&&A.nrm(0,"rtl-cln-balances-info",32),2&i){const t=A.XpG(3);A.Y8G("balances",t.balances)("errorMessage",t.errorMessages[1])}}function rr(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&i){const t=A.XpG(3);A.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("activeChannels",t.activeChannelsCapacity)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[1])}}function ar(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",34),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function yi(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",35),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1]+" "+t.errorMessages[2])}}function Bi(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Ur(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),A.nrm(5,"fa-icon",14),A.j41(6,"span"),A.EFF(7),A.k0s()(),A.j41(8,"div"),A.DNE(9,$s,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,Ao,2,1,"button",17)(13,to,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,eo,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,oe,1,2,"rtl-cln-node-info",22)(18,no,1,2,"rtl-cln-balances-info",23)(19,rr,1,4,"rtl-cln-channel-capacity-info",24)(20,ar,1,2,"rtl-cln-fee-info",25)(21,yi,1,2,"rtl-cln-channel-status-info",26)(22,Bi,2,0,"h3",27),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(5),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(2),A.Y8G("ngIf",t.links[0]),A.R7$(3),A.Y8G("ngForOf",t.goToOptions),A.R7$(),A.Y8G("ngIf","capacity"===t.id),A.R7$(),A.FS9("fxFlex","capacity"===t.id?90:70),A.Y8G("ngClass",A.eq3(16,Ca,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","capacity"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","status")}}function io(i,D){if(1&i&&(A.j41(0,"div",5)(1,"div",6),A.nrm(2,"fa-icon",7),A.j41(3,"span",8),A.EFF(4),A.k0s()(),A.j41(5,"mat-grid-list",9),A.DNE(6,Ur,23,18,"mat-grid-tile",10),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),A.R7$(2),A.JRh(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.R7$(),A.Y8G("rowHeight",t.operatorCardHeight),A.R7$(),A.Y8G("ngForOf",t.operatorCards)}}function ro(i,D){if(1&i&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&i){A.XpG();const t=A.sdS(9);A.Y8G("matMenuTriggerFor",t)}}function ao(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG(2).$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function xi(i,D){if(1&i&&(A.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),A.nrm(3,"fa-icon",14),A.j41(4,"span"),A.EFF(5),A.k0s()(),A.j41(6,"div"),A.DNE(7,ro,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,ao,2,1,"button",17),A.k0s()()()()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(2),A.Y8G("ngIf",t.links[0]),A.R7$(3),A.Y8G("ngForOf",t.goToOptions)}}function Yi(i,D){1&i&&A.nrm(0,"mat-progress-bar",30)}function Lr(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",44),2&i){const t=A.XpG(3);A.Y8G("information",t.information)}}function Pr(i,D){if(1&i&&A.nrm(0,"rtl-cln-balances-info",32),2&i){const t=A.XpG(3);A.Y8G("balances",t.balances)("errorMessage",t.errorMessages[1])}}function zr(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&i){const t=A.XpG(3);A.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("activeChannels",t.allInboundChannels)("errorMessage",t.errorMessages[2])}}function so(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&i){const t=A.XpG(3);A.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("activeChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[2])}}function wa(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG(2).$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function oo(i,D){if(1&i&&(A.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),A.nrm(3,"rtl-cln-lightning-invoices-table",49),A.k0s(),A.j41(4,"mat-tab",50),A.nrm(5,"rtl-cln-lightning-payments",51),A.k0s()(),A.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,wa,2,1,"button",17),A.k0s()()()),2&i){const t=A.sdS(11),l=A.XpG().$implicit;A.R7$(3),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("matMenuTriggerFor",t),A.R7$(5),A.Y8G("ngForOf",l.goToOptions)}}function lo(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function co(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,xi,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,Yi,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,Lr,1,1,"rtl-cln-node-info",41)(7,Pr,1,2,"rtl-cln-balances-info",23)(8,zr,1,4,"rtl-cln-channel-liquidity-info",42)(9,so,1,4,"rtl-cln-channel-liquidity-info",42)(10,oo,13,4,"span",43)(11,lo,2,0,"h3",27),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(),A.Y8G("ngClass",A.eq3(13,_s,"transactions"===t.id)),A.R7$(),A.Y8G("ngIf","transactions"!==t.id),A.R7$(),A.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),A.Y8G("ngClass",A.eq3(15,Ca,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","inboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","outboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","transactions")}}function go(i,D){if(1&i&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",7),A.j41(2,"span",8),A.EFF(3),A.k0s()(),A.j41(4,"mat-grid-list",37),A.DNE(5,co,12,17,"mat-grid-tile",10),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faSmile),A.R7$(2),A.SpI("Welcome ",t.information.alias,"! Your node is up and running."),A.R7$(),A.Y8G("rowHeight",t.merchantCardHeight),A.R7$(),A.Y8G("ngForOf",t.merchantCards)}}let Bo=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.store=l,this.commonService=c,this.router=j,this.faSmile=w.Qpm,this.faFrown=w.wB1,this.faAngleDoubleDown=u.WxX,this.faAngleDoubleUp=u.$sC,this.faChartPie=u.W1p,this.faBolt=u.zm_,this.faServer=u.D6w,this.faNetworkWired=u.eGi,this.userPersonaEnum=r.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},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="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusBalances=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.f7.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.f7.SM||this.screenSize===r.f7.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(E.RQ).pipe((0,g.Q)(this.unSubs[0]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusFHistory=t.apisCallStatus[1],this.apiCallStatusNodeInfo.status===r.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===r.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=l,this.information=t.information,this.fees=t.fees}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===r.wn.ERROR&&(this.errorMessages[2]=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(this.activeChannels?.filter(l=>!!l.to_them_msat&&l.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(l=>!!l.to_us_msat&&l.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(l=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((l.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((l.to_us_msat||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(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusBalances=t.apiCallStatus,this.apiCallStatusBalances.status===r.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=t.balance,this.balances.onchain=t.balance.totalBalance||0,this.balances.lightning=t.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const l=t.localRemoteBalance.localBalance?+t.localRemoteBalance.localBalance:0,c=t.localRemoteBalance.remoteBalance?+t.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:l,remoteBalance:c,balancedness:+(1-Math.abs((l-c)/(l+c))).toFixed(3)},this.channelsStatus.active.capacity=t.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=t.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=t.localRemoteBalance.inactiveBalance||0,this.logger.info(t)})}onNavigateTo(t){this.router.navigateByUrl("/cln/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((t,l)=>{const c=(t.to_us_msat?+t.to_us_msat:0)+(t.to_them_msat?+t.to_them_msat:0),j=(l.to_them_msat?+l.to_them_msat:0)+(l.to_them_msat?+l.to_them_msat:0);return c>j?-1:c{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-home"]],decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["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"],["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","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(l,c){if(1&l&&A.DNE(0,io,7,4,"div",4)(1,go,6,4,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",(null==c.selNode?null:c.selNode.settings.userPersona)===c.userPersonaEnum.OPERATOR)("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,st.fG,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.iY,p.RN,p.m2,p.MM,p.dh,m.B_,m.NS,y.An,x.kk,x.fb,x.Cp,B.HM,Y.mq,Y.T8,Te,ga,ua,Ds,Hi,ha,Ps,qs]})}return i})();var Gr=Pt(4572),uo=Pt(2852),ki=Pt(5416),Nn=Pt(9454),bt=Pt(6013);const sr=["form"],or=["formSweepAll"],wi=["stepper"],Hr=(i,D)=>({"mr-6":i,"mr-2":D});function lr(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function fo(i,D){1&i&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function da(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.amountError)}}function ho(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(t)}}function ji(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function cr(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Eo(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",48,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.customFeeRate,c)||(j.customFeeRate=c),A.Njj(c)}),A.k0s(),A.DNE(5,cr,2,0,"mat-error",18),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R50("ngModel",t.customFeeRate),A.R7$(2),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function Qa(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function ma(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.SpI("",A.i5U(2,2,t.amount_msat/1e3,"1.0-0")," Sats")}}function pa(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.sendFundError)}}function Co(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.DNE(2,pa,2,1,"span",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.sendFundError)}}function wo(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",15,1),A.bIt("submit",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendFunds())})("reset",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.j41(2,"mat-form-field",16)(3,"mat-label"),A.EFF(4,"Bitcoin Address"),A.k0s(),A.j41(5,"input",17,2),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.transaction.destination,c)||(j.transaction.destination=c),A.Njj(c)}),A.k0s(),A.DNE(7,lr,2,0,"mat-error",18),A.k0s(),A.j41(8,"mat-form-field",19)(9,"mat-label"),A.EFF(10,"Amount"),A.k0s(),A.j41(11,"input",20,3),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.transaction.satoshi,c)||(j.transaction.satoshi=c),A.Njj(c)}),A.k0s(),A.DNE(13,fo,2,0,"mat-hint",18),A.j41(14,"span",21),A.EFF(15),A.k0s(),A.DNE(16,da,2,1,"mat-error",18),A.k0s(),A.j41(17,"mat-form-field",22)(18,"mat-select",23),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onAmountUnitChange(c))}),A.DNE(19,ho,2,2,"mat-option",24),A.k0s()(),A.j41(20,"div",25)(21,"div",26)(22,"div",27)(23,"mat-form-field",28)(24,"mat-label"),A.EFF(25,"Fee Rate"),A.k0s(),A.j41(26,"mat-select",29),A.mxI("valueChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFeeRate,c)||(j.selFeeRate=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.customFeeRate=null)}),A.DNE(27,ji,2,2,"mat-option",24),A.k0s()(),A.DNE(28,Eo,6,5,"mat-form-field",30),A.k0s(),A.j41(29,"div",31)(30,"mat-checkbox",32),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgMinConf,c)||(j.flgMinConf=c),A.Njj(c)}),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.flgMinConf?c.selFeeRate=null:c.minConfValue=null)}),A.k0s(),A.j41(31,"mat-form-field",33)(32,"mat-label"),A.EFF(33,"Min Confirmation Blocks"),A.k0s(),A.j41(34,"input",34,4),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.minConfValue,c)||(j.minConfValue=c),A.Njj(c)}),A.k0s(),A.DNE(36,Qa,2,0,"mat-error",18),A.k0s()()(),A.j41(37,"mat-expansion-panel",35),A.bIt("closed",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onAdvancedPanelToggle(!0))})("opened",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onAdvancedPanelToggle(!1))}),A.j41(38,"mat-expansion-panel-header")(39,"mat-panel-title")(40,"span"),A.EFF(41),A.k0s()()(),A.j41(42,"div",25)(43,"div",36)(44,"mat-form-field",37)(45,"mat-label"),A.EFF(46,"Coin Selection"),A.k0s(),A.j41(47,"mat-select",38),A.mxI("valueChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selUTXOs,c)||(j.selUTXOs=c),A.Njj(c)}),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onUTXOSelectionChange(c))}),A.j41(48,"mat-select-trigger"),A.EFF(49),A.nI1(50,"number"),A.k0s(),A.DNE(51,ma,3,5,"mat-option",24),A.k0s()(),A.j41(52,"div",39)(53,"mat-slide-toggle",40),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgUseAllBalance,c)||(j.flgUseAllBalance=c),A.Njj(c)}),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onUTXOAllBalanceChange())}),A.EFF(54," Use selected UTXOs balance "),A.k0s(),A.j41(55,"mat-icon",41),A.EFF(56,"info_outline"),A.k0s()()()()(),A.nrm(57,"div",25),A.DNE(58,Co,3,2,"div",42),A.j41(59,"div",43)(60,"button",44),A.EFF(61,"Clear Fields"),A.k0s(),A.j41(62,"button",45),A.EFF(63,"Send Funds"),A.k0s()()()()}if(2&i){const t=A.XpG();A.R7$(5),A.R50("ngModel",t.transaction.destination),A.R7$(2),A.Y8G("ngIf",!t.transaction.destination),A.R7$(4),A.Y8G("type",t.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",t.flgUseAllBalance),A.R50("ngModel",t.transaction.satoshi),A.R7$(2),A.Y8G("ngIf",t.flgUseAllBalance),A.R7$(2),A.SpI("",t.selAmountUnit," "),A.R7$(),A.Y8G("ngIf",!t.transaction.satoshi),A.R7$(2),A.Y8G("value",t.selAmountUnit)("disabled",t.flgUseAllBalance),A.R7$(),A.Y8G("ngForOf",t.amountUnits),A.R7$(4),A.Y8G("fxFlex","customperkb"!==t.selFeeRate||t.flgMinConf?"100":"48"),A.R7$(3),A.Y8G("disabled",t.flgMinConf),A.R50("value",t.selFeeRate),A.R7$(),A.Y8G("ngForOf",t.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(36,Hr,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.R50("ngModel",t.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",t.flgMinConf)("disabled",!t.flgMinConf),A.R50("ngModel",t.minConfValue),A.R7$(2),A.Y8G("ngIf",t.flgMinConf&&!t.minConfValue),A.R7$(5),A.JRh(t.advancedTitle),A.R7$(6),A.R50("value",t.selUTXOs),A.R7$(2),A.Lme("",A.bMT(50,34,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",t.utxos),A.R7$(2),A.Y8G("disabled",t.selUTXOs.length<1),A.R50("ngModel",t.flgUseAllBalance),A.R7$(5),A.Y8G("ngIf",""!==t.sendFundError)}}function Oi(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(3);A.JRh(t.passwordFormLabel)}}function Qo(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function mo(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-step",54)(1,"form",73),A.DNE(2,Oi,1,1,"ng-template",67),A.j41(3,"div",7)(4,"mat-form-field",57)(5,"mat-label"),A.EFF(6,"Password"),A.k0s(),A.nrm(7,"input",74),A.DNE(8,Qo,2,0,"mat-error",18),A.k0s()(),A.j41(9,"div",75)(10,"button",76),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&i){const t=A.XpG(2);A.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),A.R7$(),A.Y8G("formGroup",t.passwordFormGroup),A.R7$(7),A.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function po(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(2);A.JRh(t.sendFundFormLabel)}}function Ma(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Mo(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function Io(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Do(i,D){if(1&i&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",77),A.DNE(4,Io,2,0,"mat-error",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0),A.R7$(),A.Y8G("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.customFeeRate.value)}}function vo(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Fo(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(2);A.JRh(t.confirmFormLabel)}}function Ia(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.sendFundError)}}function yo(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.DNE(2,Ia,2,1,"span",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.sendFundError)}}function xo(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",51)(1,"mat-vertical-stepper",52,6),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.stepSelectionChanged(c))}),A.DNE(3,mo,12,4,"mat-step",53),A.j41(4,"mat-step",54)(5,"form",55),A.DNE(6,po,1,1,"ng-template",56),A.j41(7,"div",25)(8,"mat-form-field",57)(9,"mat-label"),A.EFF(10,"Bitcoin Address"),A.k0s(),A.nrm(11,"input",58),A.DNE(12,Ma,2,0,"mat-error",18),A.k0s(),A.j41(13,"div",59)(14,"div",27)(15,"mat-form-field",28)(16,"mat-label"),A.EFF(17,"Fee Rate"),A.k0s(),A.j41(18,"mat-select",60),A.DNE(19,Mo,2,2,"mat-option",24),A.k0s()(),A.DNE(20,Do,5,3,"mat-form-field",30),A.k0s(),A.j41(21,"div",31),A.nrm(22,"mat-checkbox",61),A.j41(23,"mat-form-field",33)(24,"mat-label"),A.EFF(25,"Min Confirmation Blocks"),A.k0s(),A.nrm(26,"input",62),A.DNE(27,vo,2,0,"mat-error",18),A.k0s()()()(),A.j41(28,"div",63)(29,"button",64),A.EFF(30,"Next"),A.k0s()()()(),A.j41(31,"mat-step",65)(32,"form",66),A.DNE(33,Fo,1,1,"ng-template",67),A.j41(34,"div",51)(35,"div",68),A.nrm(36,"fa-icon",69),A.j41(37,"span"),A.EFF(38,"You are about to sweep all funds from RTL. Are you sure?"),A.k0s()(),A.DNE(39,yo,3,2,"div",42),A.j41(40,"div",63)(41,"button",70),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",71)(44,"button",72),A.EFF(45),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(),A.Y8G("linear",!0),A.R7$(2),A.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),A.R7$(),A.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),A.R7$(),A.Y8G("formGroup",t.sendFundFormGroup),A.R7$(7),A.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),A.R7$(3),A.Y8G("fxFlex","customperkb"!==t.sendFundFormGroup.controls.selFeeRate.value||t.sendFundFormGroup.controls.flgMinConf.value?"100":"48"),A.R7$(4),A.Y8G("ngForOf",t.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(20,Hr,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.R7$(4),A.Y8G("step",1)("min",0)("required",t.sendFundFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.minConfValue.value),A.R7$(4),A.Y8G("stepControl",t.confirmFormGroup),A.R7$(),A.Y8G("formGroup",t.confirmFormGroup),A.R7$(4),A.Y8G("icon",t.faExclamationTriangle),A.R7$(3),A.Y8G("ngIf",""!==t.sendFundError),A.R7$(5),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(t.flgValidated?"Close":"Cancel")}}let Da=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe,cn,UC){this.dialogRef=t,this.data=l,this.logger=c,this.store=j,this.commonService=PA,this.decimalPipe=WA,this.actions=an,this.formBuilder=fe,this.rtlEffects=cn,this.snackBar=UC,this.faExclamationTriangle=u.zpE,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=r.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=r.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=r.A0,this.selAmountUnit=r.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=r.k,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.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[iA.k0.required]],password:["",[iA.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",iA.k0.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.Q)(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([iA.k0.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.Q)(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:[iA.k0.required])}),(0,Gr.z)([this.store.select(d._c),this.store.select(d.qv)]).pipe((0,g.Q)(this.unSubs[1])).subscribe(([t,l])=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.appConfig=l}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.information=t}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value"),this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(t=>{t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,AA.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.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,AA.oz)({payload:uo(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Fe.s)(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.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(t=>this.transaction.utxos?.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.satoshi="all",this.transaction.destination=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,_.aB)({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.selFeeRate:null,!this.transaction.destination||""===this.transaction.destination||!this.transaction.satoshi||+this.transaction.satoshi<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi&&"all"!==this.transaction.satoshi&&this.selAmountUnit!==r.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?r.BQ.OTHER:this.selAmountUnit,r.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:t=>{this.transaction.satoshi=t[r.BQ.SATS],this.selAmountUnit=r.BQ.SATS,this.store.dispatch((0,_.aB)({payload:this.transaction}))},error:t=>{this.transaction.satoshi=null,this.selAmountUnit=r.BQ.SATS,this.amountError="Conversion Error: "+t}}):this.store.dispatch((0,_.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=r.A0[0]}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.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+this.feeRateTypes.find(l=>l.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}t.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,c)=>l+(c.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshi=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshi=this.totalSelectedUTXOAmount,this.selAmountUnit=r.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(t){const l=this,c=this.selAmountUnit===this.amountUnits[2]?r.BQ.OTHER:this.selAmountUnit;let j=t.value===this.amountUnits[2]?r.BQ.OTHER:t.value;this.transaction.satoshi&&this.selAmountUnit!==t.value&&this.commonService.convertCurrency(+this.transaction.satoshi,c,j,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:PA=>{this.selAmountUnit=t.value,l.transaction.satoshi=l.decimalPipe.transform(PA[j],l.currencyUnitFormats[j])?.replace(/,/g,"")},error:PA=>{l.transaction.satoshi=null,this.amountError="Conversion Error: "+PA,this.selAmountUnit=c,j=c}})}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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(st.QX),A.rXU(fA.En),A.rXU(iA.ze),A.rXU(QA.H),A.rXU(ki.UG))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(l,c){if(1&l&&(A.GBs(sr,7),A.GBs(or,5),A.GBs(wi,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.formSweepAll=j.first),A.mGM(j=A.lsd())&&(c.stepper=j.first)}},decls:12,vars:4,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amount","ngModel"],["blocks","ngModel"],["custFeeRate","ngModel"],["stepper",""],["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 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"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","type","step","min","disabled","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value","disabled"],[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 start"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4",3,"valueChange","selectionChange","disabled","value"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["tabindex","8","multiple","",3,"valueChange","selectionChange","value"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["tabindex","9","color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["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","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","","type","number","name","custFeeRate","tabindex","4",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100"],["matInput","","formControlName","transactionAddress","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","formControlName","selFeeRate"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","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","","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","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(l,c){if(1&l&&(A.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),A.EFF(5),A.k0s()(),A.j41(6,"button",12),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",13),A.DNE(9,wo,64,39,"form",14),A.k0s()()(),A.DNE(10,xo,46,23,"ng-template",null,0,A.C5r)),2&l){const j=A.sdS(11);A.R7$(5),A.JRh(c.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",!c.sweepAll)("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,iA.j4,iA.JD,Q.aY,n.DJ,n.sA,n.UI,I.PW,gA.tx,R.$z,p.m2,p.MM,In.So,Nn.GK,Nn.Z2,Nn.WN,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,$.VO,$.$2,FA.wT,YA.sG,HA.oV,bt.V5,bt.Ti,bt.M6,bt.F7,J.N,BA.V,st.QX]})}return i})();var kr=Pt(5837),jr=Pt(1975);const bn=()=>["all"],Yo=i=>({"error-border":i}),So=()=>["no_utxo"],Or=i=>({width:i}),No=i=>({"display-none":i});function bo(i,D){if(1&i&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Ro(i,D){1&i&&A.nrm(0,"mat-progress-bar",38)}function To(i,D){1&i&&A.nrm(0,"th",39)}function Uo(i,D){1&i&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function ui(i,D){if(1&i&&(A.j41(0,"td",40),A.DNE(1,Uo,3,0,"span",41),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(),c=A.sdS(56);A.R7$(),A.Y8G("ngIf",l.numDustUTXOs>0&&!l.isDustUTXO&&(null==t?null:t.amount_msat)/1e30||0===t.amount_msat),A.R7$(),A.Y8G("ngIf",t.amount_msat<0)}}function fr(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function ai(i,D){if(1&i&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==t?null:t.blockheight)," ")}}function Fa(i,D){1&i&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function Si(i,D){if(1&i&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(t.reserved?"Yes":"No")}}function ya(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",57)(1,"div",58)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",60),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function jo(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onUTXOClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function hr(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function Er(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function di(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Oo(i,D){if(1&i&&(A.j41(0,"td",63),A.DNE(1,hr,2,0,"p",64)(2,Er,2,0,"p",64)(3,di,2,1,"p",64),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function Cr(i,D){if(1&i&&A.nrm(0,"tr",65),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,No,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Ji(i,D){1&i&&A.nrm(0,"tr",66)}function Jo(i,D){1&i&&A.nrm(0,"tr",67)}function Vo(i,D){1&i&&A.nrm(0,"mat-icon",68)}let Wo=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:r.md,sortBy:"status",sortOrder:r.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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=t.utxos?.filter(l=>+(l.amount_msat||0)/1e30&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(t)})}ngAfterViewInit(){setTimeout(()=>{this.isDustUTXO?this.dustUtxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)},0)}onUTXOClick(t,l){const c=[[{key:"txid",value:t.txid,title:"Transaction ID",width:100,type:r.UN.STRING,explorerLink:"tx"}],[{key:"output",value:t.output,title:"Output",width:50,type:r.UN.NUMBER},{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:r.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(t.status||""),title:"Status",width:50,type:r.UN.STRING},{key:"blockheight",value:t.blockheight,title:"Blockheight",width:50,type:r.UN.NUMBER}],[{key:"address",value:t.address,title:"Address",width:100}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"UTXO Information",message:c}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"is_dust":c=(t?.amount_msat||0)/1e3"u"?"":"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_dust"===this.selFilterBy||"status"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadUTXOsTable(t){this.listUTXOs=new F.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(l,c)=>{switch(c){case"is_dust":return(l.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("UTXOs")}])],decls:57,vars:18,consts:[["table",""],["emptySpace",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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"],[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.gt-xs","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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"div",3),A.nrm(2,"div",4),A.j41(3,"div",5)(4,"mat-form-field",6)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",7),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,bo,2,2,"mat-option",8),A.k0s()()(),A.j41(10,"mat-form-field",6)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",9),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,Ro,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,To,1,0,"th",15)(21,ui,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,Lo,1,0,"th",18)(24,Ke,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,fi,2,0,"th",20)(27,Vr,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,Po,2,0,"th",20)(30,gr,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,Br,2,0,"th",20)(33,ur,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,ye,2,0,"th",24)(36,zo,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,hi,2,0,"th",24)(39,ko,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,fr,2,0,"th",24)(42,ai,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,Fa,2,0,"th",20)(45,Si,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,ya,6,0,"th",29)(48,jo,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,Oo,4,3,"td",32),A.bVm(),A.DNE(51,Cr,1,3,"tr",33)(52,Ji,1,0,"tr",34)(53,Jo,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,Vo,1,0,"ng-template",null,1,A.C5r)}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,bn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(3),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.listUTXOs)("ngClass",A.eq3(15,Yo,""!==c.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,So)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,y.An,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX,st.PV],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:3rem;width:3rem;text-overflow:unset}.mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();function xa(i,D){if(1&i&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.numUtxos)}}function Ko(i,D){if(1&i&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.numDustUtxos)}}let Xo=(()=>{class i{constructor(t,l){this.logger=t,this.store=l,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length||0,this.numDustUtxos=t.utxos?.filter(l=>+(l.amount_msat||0)/1e3{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({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"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false","matBadgeColor","primary",1,"tab-badge",3,"matBadge"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(PA){return c.onSelectedIndexChanged(PA)}),A.j41(2,"mat-tab"),A.DNE(3,xa,2,1,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,Ko,2,1,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&l&&(A.R7$(),A.Y8G("selectedIndex",c.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",c.numDustUtxos)("isDustUTXO",!1)("dustAmount",c.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",c.numDustUtxos)("isDustUTXO",!0)("dustAmount",c.DUST_AMOUNT))},dependencies:[n.DJ,n.sA,n.UI,jr.k,Y.ES,Y.mq,Y.T8,Wo]})}return i})();const Zo=(i,D)=>[i,D];function qo(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=null==c?null:c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.Y8G("active",l.activeLink===(null==t?null:t.link))("routerLink",A.l_i(3,Zo,null==t?null:t.link,null==l.selectedTable?null:l.selectedTable.name)),A.R7$(),A.JRh(null==t?null:t.name)}}let _o=(()=>{class i{constructor(t,l,c){this.store=t,this.router=l,this.activatedRoute=c,this.faExchangeAlt=u._qq,this.faChartPie=u.W1p,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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link,this.selectedTable=this.tables.find(j=>j.name===l.urlAfterRedirects.substring(l.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(l=>{this.selNode=l}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[2])).subscribe(l=>{this.balances=[{title:"Total Balance",dataValue:l.balance.totalBalance||0},{title:"Confirmed",dataValue:l.balance.confBalance||0},{title:"Unconfirmed",dataValue:l.balance.unconfBalance||0}]})}openSendFundsModal(t){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:t,component:Da}}}))}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(l=>l.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(le.Ix),A.rXU(le.nX))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain"]],decls:23,vars:6,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",1),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"On-chain Transactions"),A.k0s()(),A.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),A.DNE(16,qo,2,6,"div",9),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",10),A.nrm(20,"router-outlet"),A.k0s(),A.j41(21,"div",11)(22,"rtl-cln-utxo-tables",12),A.bIt("selectedTableIndexChange",function(WA){return A.eBV(j),A.Njj(c.onSelectedTableIndexChanged(WA))}),A.k0s()()()()()}if(2&l){const j=A.sdS(18);A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links),A.R7$(6),A.Y8G("selectedTableIndex",null==c.selectedTable?null:c.selectedTable.id)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,kr.f,le.n3,le.Wk,Xo]})}return i})();function $o(i,D){if(1&i&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activeChannels)}}function A0(i,D){if(1&i&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activePeers)}}let t0=(()=>{class i{constructor(t,l,c){this.store=t,this.logger=l,this.router=c,this.activePeers=0,this.activeChannels=0,this.faUsers=u.gdJ,this.faChartPie=u.W1p,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 o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t instanceof le.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.activeChannels=t.activeChannels.length||0}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(C.gP),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({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"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["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(l,c){1&l&&(A.j41(0,"div",0),A.nrm(1,"fa-icon",1),A.j41(2,"span",2),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A.nrm(7,"rtl-currency-unit-converter",5),A.k0s()()(),A.j41(8,"div",0),A.nrm(9,"fa-icon",1),A.j41(10,"span",2),A.EFF(11,"Connections"),A.k0s()(),A.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.mxI("selectedIndexChange",function(PA){return A.DH7(c.activeLink,PA)||(c.activeLink=PA),PA}),A.bIt("selectedTabChange",function(PA){return c.onSelectedTabChange(PA)}),A.j41(16,"mat-tab"),A.DNE(17,$o,2,1,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,A0,2,1,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&l&&(A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faUsers),A.R7$(6),A.R50("selectedIndex",c.activeLink))},dependencies:[Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,jr.k,Y.ES,Y.mq,Y.T8,kr.f,le.n3]})}return i})();function e0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let n0=(()=>{class i{constructor(t,l,c){this.logger=t,this.store=l,this.router=c,this.faExchangeAlt=u._qq,this.faChartPie=u.W1p,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.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link,this.routerUrl=l.urlAfterRedirects}}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(l=>{if(this.selNode=l,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,_.Eb)()),this.store.dispatch((0,_.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const c=this.links.find(j=>this.router.url.includes(j.link));this.activeLink=c?c.link:this.links[0].link}}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[2]),(0,f.E)(this.store.select(d._c))).subscribe(([l,c])=>{this.currencyUnits=c?.settings.currencyUnits||[],this.balances=c&&c.settings.userPersona===r.HW.OPERATOR?[{title:"Local Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(l)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-transactions"]],decls:21,vars:5,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Lightning Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",7),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"Lightning Transactions"),A.k0s()(),A.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),A.DNE(16,e0,2,3,"div",10),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",11),A.nrm(20,"router-outlet"),A.k0s()()()()),2&l){const j=A.sdS(18);A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,kr.f,le.n3,le.Wk]})}return i})();function i0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let wr=(()=>{class i{constructor(t){this.router=t,this.faMapSigns=u.knH,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 o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing"]],decls:15,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1)(1,"div",2),A.nrm(2,"fa-icon",3),A.j41(3,"span",4),A.EFF(4,"Routing"),A.k0s()(),A.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),A.DNE(10,i0,2,3,"div",10),A.k0s(),A.nrm(11,"mat-tab-nav-panel",null,0),A.k0s(),A.j41(13,"div",11),A.nrm(14,"router-outlet"),A.k0s()()()()()),2&l){const j=A.sdS(12);A.R7$(2),A.Y8G("icon",c.faMapSigns),A.R7$(7),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();function Wr(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function dr(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function Ya(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function r0(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Qr(i,D){if(1&i&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,Wr,2,0,"h3",5)(6,dr,2,0,"h3",5),A.k0s(),A.nrm(7,"mat-divider",6),A.j41(8,"div",4)(9,"h4",7),A.EFF(10,"Short Channel ID"),A.k0s(),A.j41(11,"span",8),A.EFF(12),A.k0s()(),A.nrm(13,"mat-divider",6),A.j41(14,"div",4)(15,"h4",7),A.EFF(16,"Active"),A.k0s(),A.j41(17,"span",8),A.EFF(18),A.k0s()(),A.nrm(19,"mat-divider",6),A.j41(20,"div",4)(21,"h4",7),A.EFF(22,"Last Update"),A.k0s(),A.j41(23,"span",8),A.EFF(24),A.nI1(25,"date"),A.k0s()(),A.nrm(26,"mat-divider",6),A.j41(27,"div",4)(28,"h4",7),A.EFF(29,"Amount (Sats)"),A.k0s(),A.j41(30,"span",8),A.EFF(31),A.nI1(32,"number"),A.k0s()(),A.nrm(33,"mat-divider",6),A.j41(34,"div",4)(35,"h4",7),A.EFF(36,"Base Fee (mSats)"),A.k0s(),A.j41(37,"span",8),A.EFF(38),A.nI1(39,"number"),A.k0s()(),A.nrm(40,"mat-divider",6),A.j41(41,"div",4)(42,"h4",7),A.EFF(43,"Fee/Millionth"),A.k0s(),A.j41(44,"span",8),A.EFF(45),A.nI1(46,"number"),A.k0s()(),A.nrm(47,"mat-divider",6),A.j41(48,"div",4)(49,"h4",7),A.EFF(50,"Channel Flags"),A.k0s(),A.j41(51,"span",8),A.EFF(52),A.nI1(53,"number"),A.k0s()(),A.nrm(54,"mat-divider",6),A.j41(55,"div",4)(56,"h4",7),A.EFF(57,"Delay"),A.k0s(),A.j41(58,"span",8),A.EFF(59),A.nI1(60,"number"),A.k0s()(),A.nrm(61,"mat-divider",6),A.j41(62,"div",4)(63,"h4",7),A.EFF(64,"Max Htlc (mSat)"),A.k0s(),A.j41(65,"span",8),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.nrm(68,"mat-divider",6),A.j41(69,"div",4)(70,"h4",7),A.EFF(71,"Min Htlc (mSat)"),A.k0s(),A.j41(72,"span",8),A.EFF(73),A.nI1(74,"number"),A.k0s()(),A.nrm(75,"mat-divider",6),A.j41(76,"div",4)(77,"h4",7),A.EFF(78,"Message Flags"),A.k0s(),A.j41(79,"span",8),A.EFF(80),A.nI1(81,"number"),A.k0s()(),A.nrm(82,"mat-divider",6),A.j41(83,"div",4)(84,"h4",7),A.EFF(85,"Public"),A.k0s(),A.j41(86,"span",8),A.EFF(87),A.k0s()(),A.nrm(88,"mat-divider",6),A.j41(89,"div",4)(90,"h4",7),A.EFF(91,"Source"),A.k0s(),A.j41(92,"span",8),A.EFF(93),A.k0s()(),A.nrm(94,"mat-divider",6),A.j41(95,"div",4)(96,"h4",7),A.EFF(97,"Destination"),A.k0s(),A.j41(98,"span",8),A.EFF(99),A.k0s()()(),A.j41(100,"div",3)(101,"div"),A.DNE(102,Ya,2,0,"h3",5)(103,r0,2,0,"h3",5),A.k0s(),A.nrm(104,"mat-divider",6),A.j41(105,"div",4)(106,"h4",7),A.EFF(107,"Short Channel ID"),A.k0s(),A.j41(108,"span",8),A.EFF(109),A.k0s()(),A.nrm(110,"mat-divider",6),A.j41(111,"div",4)(112,"h4",7),A.EFF(113,"Active"),A.k0s(),A.j41(114,"span",8),A.EFF(115),A.k0s()(),A.nrm(116,"mat-divider",6),A.j41(117,"div",4)(118,"h4",7),A.EFF(119,"Last Update"),A.k0s(),A.j41(120,"span",8),A.EFF(121),A.nI1(122,"date"),A.k0s()(),A.nrm(123,"mat-divider",6),A.j41(124,"div",4)(125,"h4",7),A.EFF(126,"Amount (Sats)"),A.k0s(),A.j41(127,"span",8),A.EFF(128),A.nI1(129,"number"),A.k0s()(),A.nrm(130,"mat-divider",6),A.j41(131,"div",4)(132,"h4",7),A.EFF(133,"Base Fee (mSats)"),A.k0s(),A.j41(134,"span",8),A.EFF(135),A.nI1(136,"number"),A.k0s()(),A.nrm(137,"mat-divider",6),A.j41(138,"div",4)(139,"h4",7),A.EFF(140,"Fee/Millionth"),A.k0s(),A.j41(141,"span",8),A.EFF(142),A.nI1(143,"number"),A.k0s()(),A.nrm(144,"mat-divider",6),A.j41(145,"div",4)(146,"h4",7),A.EFF(147,"Channel Flags"),A.k0s(),A.j41(148,"span",8),A.EFF(149),A.nI1(150,"number"),A.k0s()(),A.nrm(151,"mat-divider",6),A.j41(152,"div",4)(153,"h4",7),A.EFF(154,"Delay"),A.k0s(),A.j41(155,"span",8),A.EFF(156),A.nI1(157,"number"),A.k0s()(),A.nrm(158,"mat-divider",6),A.j41(159,"div",4)(160,"h4",7),A.EFF(161,"Max Htlc (mSat)"),A.k0s(),A.j41(162,"span",8),A.EFF(163),A.nI1(164,"number"),A.k0s()(),A.nrm(165,"mat-divider",6),A.j41(166,"div",4)(167,"h4",7),A.EFF(168,"Min Htlc (mSat)"),A.k0s(),A.j41(169,"span",8),A.EFF(170),A.nI1(171,"number"),A.k0s()(),A.nrm(172,"mat-divider",6),A.j41(173,"div",4)(174,"h4",7),A.EFF(175,"Message Flags"),A.k0s(),A.j41(176,"span",8),A.EFF(177),A.nI1(178,"number"),A.k0s()(),A.nrm(179,"mat-divider",6),A.j41(180,"div",4)(181,"h4",7),A.EFF(182,"Public"),A.k0s(),A.j41(183,"span",8),A.EFF(184),A.k0s()(),A.nrm(185,"mat-divider",6),A.j41(186,"div",4)(187,"h4",7),A.EFF(188,"Source"),A.k0s(),A.j41(189,"span",8),A.EFF(190),A.k0s()(),A.nrm(191,"mat-divider",6),A.j41(192,"div",4)(193,"h4",7),A.EFF(194,"Destination"),A.k0s(),A.j41(195,"span",8),A.EFF(196),A.k0s()()()()()),2&i){const t=A.XpG();A.R7$(5),A.Y8G("ngIf",!t.node1_match),A.R7$(),A.Y8G("ngIf",t.node1_match),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].short_channel_id),A.R7$(6),A.JRh(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(25,32,1e3*(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(32,35,(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(39,38,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(46,40,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(53,42,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].channel_flags)),A.R7$(7),A.JRh(A.bMT(60,44,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].delay)),A.R7$(7),A.JRh(A.bMT(67,46,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(74,48,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(81,50,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].message_flags)),A.R7$(7),A.JRh(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].public?"Yes":"No"),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].source),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].destination),A.R7$(3),A.Y8G("ngIf",!t.node2_match),A.R7$(),A.Y8G("ngIf",t.node2_match),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].short_channel_id),A.R7$(6),A.JRh(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(122,52,1e3*(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(129,55,(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(136,58,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(143,60,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(150,62,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].channel_flags)),A.R7$(7),A.JRh(A.bMT(157,64,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].delay)),A.R7$(7),A.JRh(A.bMT(164,66,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(171,68,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(178,70,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].message_flags)),A.R7$(7),A.JRh(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].public?"Yes":"No"),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].source),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].destination)}}let Un=(()=>{class i{constructor(t){this.store=t,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===t.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===t.id&&(this.node2_match=!0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({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 stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"page-title","font-bold-500"]],template:function(l,c){1&l&&A.DNE(0,Qr,197,72,"div",0),2&l&&A.Y8G("ngIf",c.lookupResult)},dependencies:[st.bT,n.DJ,n.sA,n.UI,ri.q,st.QX,st.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]})}return i})();const si=["peersForm"],Kr=["stepper"],Xr=(i,D)=>({"mr-6":i,"mr-2":D});function Zr(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG();A.JRh(t.peerFormLabel)}}function a0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Vi(i,D){if(1&i&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.peerConnectionError)}}function Sa(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG();A.JRh(t.channelFormLabel)}}function s0(i,D){if(1&i&&(A.j41(0,"div",44),A.nrm(1,"fa-icon",43),A.j41(2,"span",13)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",45)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faInfoCircle),A.R7$(6),A.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),A.R7$(2),A.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),A.R7$(2),A.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function o0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function l0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function c0(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function g0(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function B0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function u0(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function f0(i,D){if(1&i&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",48),A.j41(4,"mat-hint"),A.EFF(5),A.k0s(),A.DNE(6,B0,2,0,"mat-error",15)(7,u0,2,1,"mat-error",15),A.k0s()),2&i){const t=A.XpG();A.R7$(3),A.Y8G("step",1)("min",t.recommendedFee.minimumFee||0),A.R7$(2),A.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===t.channelFormGroup.controls.selFeeRate.value&&!t.channelFormGroup.controls.flgMinConf.value&&!t.channelFormGroup.controls.customFeeRate.value),A.R7$(),A.Y8G("ngIf",t.channelFormGroup.controls.customFeeRate.value&&(null==t.channelFormGroup.controls.customFeeRate.errors?null:t.channelFormGroup.controls.customFeeRate.errors.minimum))}}function h0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function E0(i,D){if(1&i&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.channelConnectionError)}}let Na=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe){this.dialogRef=t,this.data=l,this.store=c,this.formBuilder=j,this.actions=PA,this.logger=WA,this.commonService=an,this.dataService=fe,this.faExclamationTriangle=u.zpE,this.faInfoCircle=u.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=r.G,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.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B],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:["",[iA.k0.required]],peerAddress:[this.peerAddress,[iA.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[iA.k0.required,iA.k0.min(1),iA.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[iA.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.channelFormGroup.controls.isPrivate.setValue(!!t?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.Q)(this.unSubs[1])).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([iA.k0.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.Q)(this.unSubs[2])).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:[iA.k0.required])}),this.actions.pipe((0,g.Q)(this.unSubs[3]),(0,v.p)(t=>t.type===r.TC.NEWLY_ADDED_PEER_CLN||t.type===r.TC.FETCH_CHANNELS_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.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===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&("SaveNewPeer"===t.payload.action?this.peerConnectionError=t.payload.message:"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[4])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,_.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.customFeeRate.value?(this.channelFormGroup.controls.customFeeRate.setErrors({minimum:!0}),!0):!!(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)||(this.channelConnectionError="",void this.store.dispatch((0,_.vL)({payload:{peerId:this.newlyAddedPeer?.id,amount: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){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: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer?.alias:this.newlyAddedPeer?.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(iA.ze),A.rXU(fA.En),A.rXU(C.gP),A.rXU(h.h),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(l,c){if(1&l&&(A.GBs(si,5),A.GBs(Kr,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.stepper=j.first)}},decls:67,vars:33,consts:[["stepper",""],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[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","fxFlex","100"],["autoFocus","","matInput","","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,"ngSubmit","formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxLayout","column","fxFlex","53","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","45","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","53","fxLayoutAlign","space-between end"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","45","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxLayout","column","fxFlex","93"],["matInput","","formControlName","minConfValue","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"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Connect to a new peer"),A.k0s()(),A.j41(6,"button",6),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.stepSelectionChanged(WA))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,Zr,1,1,"ng-template",12),A.j41(15,"mat-form-field",13)(16,"mat-label"),A.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),A.k0s(),A.nrm(18,"input",14),A.DNE(19,a0,2,0,"mat-error",15),A.k0s(),A.DNE(20,Vi,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return A.eBV(j),A.Njj(c.onOpenChannel())}),A.DNE(26,Sa,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,s0,16,6,"div",22),A.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),A.EFF(32,"Amount"),A.k0s(),A.nrm(33,"input",25),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",26),A.EFF(38," Sats "),A.k0s(),A.DNE(39,o0,2,0,"mat-error",15)(40,l0,2,0,"mat-error",15)(41,c0,2,1,"mat-error",15),A.k0s(),A.j41(42,"div",27)(43,"mat-slide-toggle",28),A.EFF(44,"Private Channel"),A.k0s()()(),A.j41(45,"div",29)(46,"div",30)(47,"mat-form-field",31)(48,"mat-label"),A.EFF(49,"Fee Rate"),A.k0s(),A.j41(50,"mat-select",32),A.DNE(51,g0,2,2,"mat-option",33),A.k0s()(),A.DNE(52,f0,8,5,"mat-form-field",34),A.k0s(),A.j41(53,"div",35),A.nrm(54,"mat-checkbox",36),A.j41(55,"mat-form-field",37)(56,"mat-label"),A.EFF(57,"Min Confirmation Blocks"),A.k0s(),A.nrm(58,"input",38),A.DNE(59,h0,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,E0,4,2,"div",16),A.j41(61,"div",17)(62,"button",39),A.EFF(63),A.k0s()()()()(),A.j41(64,"div",40)(65,"button",41),A.EFF(66),A.k0s()()()()()()}2&l&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",c.peerFormGroup)("editable",c.flgEditable),A.R7$(),A.Y8G("formGroup",c.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==c.peerFormGroup.controls.peerAddress.errors?null:c.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==c.peerConnectionError),A.R7$(3),A.JRh(""!==c.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",c.channelFormGroup)("editable",c.flgEditable),A.R7$(),A.Y8G("formGroup",c.channelFormGroup),A.R7$(3),A.Y8G("ngIf",c.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,c.totalBalance-(c.channelFormGroup.controls.fundingAmount.value?c.channelFormGroup.controls.fundingAmount.value:0)),""),A.R7$(4),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("fxFlex","customperkb"!==c.channelFormGroup.controls.selFeeRate.value||c.channelFormGroup.controls.flgMinConf.value?"100":"25"),A.R7$(4),A.Y8G("ngForOf",c.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===c.channelFormGroup.controls.selFeeRate.value&&!c.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,Xr,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM,c.screenSize===c.screenSizeEnum.MD||c.screenSize===c.screenSizeEnum.LG||c.screenSize===c.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",c.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",c.channelFormGroup.controls.flgMinConf.value&&!c.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==c.channelConnectionError),A.R7$(3),A.JRh(""!==c.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=c.newlyAddedPeer&&c.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[st.YU,st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.j4,iA.JD,Q.aY,n.DJ,n.sA,n.UI,I.PW,gA.tx,R.$z,p.m2,p.MM,In.So,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,$.VO,FA.wT,YA.sG,bt.V5,bt.Ti,bt.M6,J.N,BA.V,st.QX]})}return i})();var mr=Pt(9157);const C0=i=>({"background-color":i});function pr(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function Ie(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function te(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.type)}}function w0(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function ba(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.address)}}function Wi(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function Ra(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.port)}}function d0(i,D){1&i&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function Q0(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",34),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onConnectNode(c))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onCopyNodeURI(c))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==l.lookupResult?null:l.lookupResult.nodeid)+"@"+t.address+":"+t.port)}}function Ta(i,D){1&i&&A.nrm(0,"tr",36)}function m0(i,D){1&i&&A.nrm(0,"tr",37)}function Bn(i,D){if(1&i&&(A.j41(0,"div",2),A.nrm(1,"mat-divider",3),A.j41(2,"div",4)(3,"div",5)(4,"h4",6),A.EFF(5,"Alias"),A.k0s(),A.j41(6,"span",7),A.EFF(7),A.j41(8,"span",8),A.EFF(9),A.k0s()()(),A.j41(10,"div",9)(11,"h4",6),A.EFF(12,"Pub Key"),A.k0s(),A.j41(13,"span",10),A.EFF(14),A.k0s()()(),A.nrm(15,"mat-divider",11),A.j41(16,"div",4)(17,"div",5)(18,"h4",6),A.EFF(19,"Last Update"),A.k0s(),A.j41(20,"span",7),A.EFF(21),A.nI1(22,"date"),A.k0s()(),A.j41(23,"div",9)(24,"h4",6),A.EFF(25,"Features"),A.k0s(),A.DNE(26,pr,2,1,"span",12),A.k0s()(),A.nrm(27,"mat-divider",11),A.j41(28,"div",13)(29,"h4",14),A.EFF(30,"Addresses"),A.k0s(),A.j41(31,"div",15)(32,"table",16,0),A.qex(34,17),A.DNE(35,Ie,2,0,"th",18)(36,te,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,w0,2,0,"th",18)(39,ba,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,Wi,2,0,"th",18)(42,Ra,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,d0,3,0,"th",23)(45,Q0,8,1,"td",24),A.bVm(),A.DNE(46,Ta,1,0,"tr",25)(47,m0,1,0,"tr",26),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(7),A.JRh(null==t.lookupResult?null:t.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,C0,"#"+(null==t.lookupResult?null:t.lookupResult.color))),A.R7$(),A.JRh(null!=t.lookupResult&&t.lookupResult.color?"#"+(null==t.lookupResult?null:t.lookupResult.color):""),A.R7$(5),A.JRh(null==t.lookupResult?null:t.lookupResult.nodeid),A.R7$(7),A.JRh(A.i5U(22,9,1e3*(null==t.lookupResult?null:t.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.R7$(5),A.Y8G("ngForOf",t.featureDescriptions),A.R7$(6),A.Y8G("dataSource",t.addresses),A.R7$(14),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}let qr=(()=>{class i{constructor(t,l,c){this.logger=t,this.snackBar=l,this.store=c,this.featureDescriptions=[],this.addresses=new F.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new o.B]}ngOnInit(){if(this.addresses=new F.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(t,l)=>t[l]&&isNaN(t[l])?t[l].toLocaleLowerCase():t[l]?+t[l]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const t=parseInt(this.lookupResult.features,16);r.TH.forEach(l=>{t&1<{this.information=t.information,this.availableBalance=t.balance.totalBalance||0})}onConnectNode(t){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+t.address+":"+t.port},information:this.information,balance:this.availableBalance},component:Na}}}))}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(ki.UG),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(l,c){if(1&l&&A.GBs(z.B4,5),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1"],["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"],["class","foreground-secondary-text",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"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["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"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(l,c){1&l&&A.DNE(0,Bn,48,14,"div",1),2&l&&A.Y8G("ngIf",c.lookupResult)},dependencies:[st.Sq,st.bT,st.B3,n.DJ,n.sA,n.UI,I.eI,ri.q,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,cA.Ld,mr.U,st.vh]})}return i})();const Ua=["form"],Mr=i=>({"mt-1":!0,"mt-2":i});function p0(i,D){if(1&i&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t.id)("checked",l.selectedFieldId===t.id),A.R7$(),A.SpI(" ",t.name," ")}}function Qi(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function $n(i,D){if(1&i&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("lookupResult",t.nodeLookupValue)}}function oi(i,D){if(1&i&&(A.j41(0,"span",24),A.DNE(1,$n,2,1,"div",25),A.k0s()),2&i){const t=A.XpG(2),l=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==t.nodeLookupValue.nodeid)("ngIfElse",l)}}function li(i,D){if(1&i&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("lookupResult",t.channelLookupValue)}}function M0(i,D){if(1&i&&(A.j41(0,"span",24),A.DNE(1,li,2,1,"div",25),A.k0s()),2&i){const t=A.XpG(2),l=A.sdS(21);A.R7$(),A.Y8G("ngIf",t.channelLookupValue.channels&&t.channelLookupValue.channels.length>0)("ngIfElse",l)}}function I0(i,D){1&i&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function D0(i,D){if(1&i&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,oi,2,2,"span",22)(6,M0,2,2,"span",22)(7,I0,4,0,"span",23),A.k0s()()),2&i){const t=A.XpG();A.R7$(3),A.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),A.R7$(),A.Y8G("ngSwitch",t.selectedFieldId),A.R7$(),A.Y8G("ngSwitchCase",0),A.R7$(),A.Y8G("ngSwitchCase",1)}}function Ir(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let v0=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.actions=j,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=u.MjD,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t.type===r.TC.SET_LOOKUP_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{if(t.type===r.TC.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=t.payload.channels&&"object"!=typeof t.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(t.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.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,_.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,_.ij)({payload:{uiMessage:r.MZ.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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lookups"]],viewQuery:function(l,c){if(1&l&&A.GBs(Ua,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:22,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["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"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[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"],[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"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selectedFieldId,WA)||(c.selectedFieldId=WA),A.Njj(WA)}),A.bIt("change",function(WA){return A.eBV(j),A.Njj(c.onSelectChange(WA))}),A.DNE(7,p0,2,3,"mat-radio-button",9),A.k0s()(),A.j41(8,"mat-form-field",10)(9,"mat-label"),A.EFF(10),A.k0s(),A.j41(11,"input",11,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.lookupKey,WA)||(c.lookupKey=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.clearLookupValue())}),A.k0s(),A.DNE(13,Qi,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,D0,8,4,"div",16),A.k0s()()(),A.DNE(20,Ir,2,0,"ng-template",null,2,A.C5r)}2&l&&(A.R7$(6),A.R50("ngModel",c.selectedFieldId),A.R7$(),A.Y8G("ngForOf",c.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,Mr,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==c.lookupFields[c.selectedFieldId]?null:c.lookupFields[c.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",c.lookupKey),A.R7$(2),A.Y8G("ngIf",!c.lookupKey),A.R7$(6),A.Y8G("ngIf",c.flgSetLookupValue))},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,st.fG,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,wA.fg,IA.rl,IA.nJ,IA.TL,wn.VT,wn._g,Un,qr],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}"]})}return i})();var Dr=function(i){return i.KB="KB",i.KW="KW",i}(Dr||{});function F0(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 2 Blocks "),A.j41(3,"mat-icon",16),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[0].smoothed_feerate))}}function y0(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 6 Blocks "),A.j41(3,"mat-icon",17),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[1].smoothed_feerate))}}function we(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 12 Blocks "),A.j41(3,"mat-icon",18),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[2].smoothed_feerate))}}function La(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 100 Blocks "),A.j41(3,"mat-icon",19),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[3].smoothed_feerate))}}function x0(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"div")(4,"h4",5),A.EFF(5," Opening "),A.j41(6,"mat-icon",6),A.EFF(7,"info_outline"),A.k0s()(),A.j41(8,"div",7),A.EFF(9),A.nI1(10,"number"),A.k0s()(),A.j41(11,"div")(12,"h4",5),A.EFF(13," Mutual Close "),A.j41(14,"mat-icon",8),A.EFF(15,"info_outline"),A.k0s()(),A.j41(16,"div",7),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.j41(19,"div")(20,"h4",5),A.EFF(21," Unilateral Close "),A.j41(22,"mat-icon",9),A.EFF(23,"info_outline"),A.k0s()(),A.j41(24,"div",7),A.EFF(25),A.nI1(26,"number"),A.k0s()(),A.j41(27,"div")(28,"h4",5),A.EFF(29," Delayed To Us "),A.j41(30,"mat-icon",10),A.EFF(31,"info_outline"),A.k0s()(),A.j41(32,"div",7),A.EFF(33),A.nI1(34,"number"),A.k0s()(),A.j41(35,"div")(36,"h4",5),A.EFF(37," Minimum Acceptable "),A.j41(38,"mat-icon",11),A.EFF(39,"info_outline"),A.k0s()(),A.j41(40,"div",7),A.EFF(41),A.nI1(42,"number"),A.k0s()(),A.j41(43,"div")(44,"h4",5),A.EFF(45," Maximum Acceptable "),A.j41(46,"mat-icon",12),A.EFF(47,"info_outline"),A.k0s()(),A.j41(48,"div",7),A.EFF(49),A.nI1(50,"number"),A.k0s()()(),A.j41(51,"div",4)(52,"div")(53,"h4",5),A.EFF(54," HTLC Resolution "),A.j41(55,"mat-icon",13),A.EFF(56,"info_outline"),A.k0s()(),A.j41(57,"div",7),A.EFF(58),A.nI1(59,"number"),A.k0s()(),A.j41(60,"div")(61,"h4",5),A.EFF(62," Penalty "),A.j41(63,"mat-icon",14),A.EFF(64,"info_outline"),A.k0s()(),A.j41(65,"div",7),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.DNE(68,F0,8,3,"div",15)(69,y0,8,3,"div",15)(70,we,8,3,"div",15)(71,La,8,3,"div",15),A.k0s()()()),2&i){const t=A.XpG();A.R7$(9),A.JRh(A.bMT(10,12,null==t.perkbw?null:t.perkbw.opening)),A.R7$(8),A.JRh(A.bMT(18,14,null==t.perkbw?null:t.perkbw.mutual_close)),A.R7$(8),A.JRh(A.bMT(26,16,null==t.perkbw?null:t.perkbw.unilateral_close)),A.R7$(8),A.JRh(A.bMT(34,18,null==t.perkbw?null:t.perkbw.delayed_to_us)),A.R7$(8),A.JRh(A.bMT(42,20,null==t.perkbw?null:t.perkbw.min_acceptable)),A.R7$(8),A.JRh(A.bMT(50,22,null==t.perkbw?null:t.perkbw.max_acceptable)),A.R7$(9),A.JRh(A.bMT(59,24,null==t.perkbw?null:t.perkbw.htlc_resolution)),A.R7$(8),A.JRh(A.bMT(67,26,null==t.perkbw?null:t.perkbw.penalty)),A.R7$(2),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3)}}function Y0(i,D){if(1&i&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Pa=(()=>{class i{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===Dr.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===Dr.KW&&(this.perkbw=this.feeRates.perkw||{})}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",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"],[4,"ngIf"],["matTooltip","Fee rate estimate for 2 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 6 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 12 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 100 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,x0,72,28,"div",1)(1,Y0,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,y.An,HA.oV,st.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();function S0(i,D){if(1&i&&(A.j41(0,"div",3)(1,"div",4)(2,"div")(3,"h4",5),A.EFF(4," Opening Channel "),A.j41(5,"mat-icon",6),A.EFF(6,"info_outline"),A.k0s()(),A.j41(7,"div",7),A.EFF(8),A.nI1(9,"number"),A.k0s()(),A.j41(10,"div")(11,"h4",5),A.EFF(12," Mutual Close "),A.j41(13,"mat-icon",8),A.EFF(14,"info_outline"),A.k0s()(),A.j41(15,"div",7),A.EFF(16),A.nI1(17,"number"),A.k0s()(),A.j41(18,"div")(19,"h4",5),A.EFF(20," Unilateral Close "),A.j41(21,"mat-icon",9),A.EFF(22,"info_outline"),A.k0s()(),A.j41(23,"div",7),A.EFF(24),A.nI1(25,"number"),A.k0s()(),A.j41(26,"div",10),A.nrm(27,"h4",5)(28,"div",7),A.k0s()(),A.j41(29,"div",4)(30,"div")(31,"h4",5),A.EFF(32," HTLC Timeout "),A.j41(33,"mat-icon",11),A.EFF(34,"info_outline"),A.k0s()(),A.j41(35,"div",7),A.EFF(36),A.nI1(37,"number"),A.k0s()(),A.j41(38,"div")(39,"h4",5),A.EFF(40," HTLC Success "),A.j41(41,"mat-icon",12),A.EFF(42,"info_outline"),A.k0s()(),A.j41(43,"div",7),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.j41(46,"div",10),A.nrm(47,"h4",5)(48,"div",7),A.k0s(),A.j41(49,"div",10),A.nrm(50,"h4",5)(51,"div",7),A.k0s()()()),2&i){const t=A.XpG();A.R7$(8),A.JRh(A.bMT(9,5,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.R7$(8),A.JRh(A.bMT(17,7,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.R7$(8),A.JRh(A.bMT(25,9,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.R7$(12),A.JRh(A.bMT(37,11,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.R7$(8),A.JRh(A.bMT(45,13,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function N0(i,D){if(1&i&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let b0=(()=>{class i{constructor(){}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},decls:4,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",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(l,c){if(1&l&&(A.j41(0,"div",1),A.DNE(1,S0,52,15,"div",2)(2,N0,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&l){const j=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,y.An,HA.oV,st.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();const _r=i=>({"dashboard-card-content":!0,"error-border":i});function vr(i,D){1&i&&A.nrm(0,"mat-progress-bar",19)}function za(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",20),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function R0(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",21),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1])}}function T0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",22),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function U0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[4])}}function L0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[5])}}function P0(i,D){if(1&i&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[4])}}function z0(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,vr,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,za,1,2,"rtl-cln-node-info",14)(13,R0,1,2,"rtl-cln-channel-status-info",15)(14,T0,1,2,"rtl-cln-fee-info",16)(15,U0,1,3,"rtl-cln-fee-rates",17)(16,L0,1,3,"rtl-cln-fee-rates",17)(17,P0,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(4),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,_r,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function G0(i,D){if(1&i&&(A.j41(0,"mat-grid-list",2),A.DNE(1,z0,18,15,"mat-grid-tile",3),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngForOf",t.nodeCardsOperator)}}function Fr(i,D){1&i&&A.nrm(0,"mat-progress-bar",19)}function H0(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",20),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function $r(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",21),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1])}}function Ga(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",22),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function k0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[4])}}function Ki(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[4])}}function un(i,D){if(1&i&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[4])}}function yr(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",25),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,Fr,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,H0,1,2,"rtl-cln-node-info",14)(13,$r,1,2,"rtl-cln-channel-status-info",15)(14,Ga,1,2,"rtl-cln-fee-info",16)(15,k0,1,3,"rtl-cln-fee-rates",17)(16,Ki,1,3,"rtl-cln-fee-rates",17)(17,un,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(4),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,_r,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Ha(i,D){if(1&i&&(A.j41(0,"mat-grid-list",2),A.DNE(1,yr,18,15,"mat-grid-tile",3),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngForOf",t.nodeCardsMerchant)}}let j0=(()=>{class i{constructor(t,l,c){this.logger=t,this.commonService=l,this.store=c,this.faBolt=u.zm_,this.faServer=u.D6w,this.faNetworkWired=u.eGi,this.faLink=u.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=r.f7,this.userPersonaEnum=r.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.f7.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:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}]):(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:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}])}ngOnInit(){this.store.select(E.RQ).pipe((0,g.Q)(this.unSubs[0]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusNodeInfo.status===r.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=l,this.information=t.information,this.fees=t.fees,this.logger.info(t)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(E.Al))).subscribe(([t,l])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=l.apiCallStatus,this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusLRBal.status===r.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===r.wn.ERROR&&(this.errorMessages[2]="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=l.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=l.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=l.localRemoteBalance.inactiveBalance||0}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusFHistory=t.apiCallStatus,this.apiCallStatusFHistory.status===r.wn.ERROR&&(this.errorMessages[3]="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(E.kr).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPerKB=t.apiCallStatus,this.apiCallStatusPerKB.status===r.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=t.feeRatesPerKB}),this.store.select(E.RB).pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessages[5]="",this.apiCallStatusPerKW=t.apiCallStatus,this.apiCallStatusPerKW.status===r.wn.ERROR&&(this.errorMessages[5]="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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({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(l,c){1&l&&(A.j41(0,"div",0),A.DNE(1,G0,2,1,"mat-grid-list",1)(2,Ha,2,1,"mat-grid-list",1),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",c.selNode.settings.userPersona===c.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",c.selNode.settings.userPersona===c.userPersonaEnum.MERCHANT))},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,Q.aY,n.DJ,n.sA,n.UI,I.PW,p.RN,p.m2,m.B_,m.NS,B.HM,ua,Hi,ha,Pa,b0]})}return i})();function O0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let J0=(()=>{class i{constructor(t){this.router=t,this.faUserCheck=u.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-sign-verify-message"]],decls:13,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","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"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Sign/Verify Message"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,O0,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faUserCheck),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var V0=Pt(396),Aa=Pt(283);function W0(i,D){if(1&i&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.SpI(" ",t.addressTp," ")}}let K0=(()=>{class i{constructor(t,l){this.store=t,this.clnEffects=l,this.addressTypes=r.Ld,this.selectedAddressType=r.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,_.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,Fe.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:V0.f}}}))},0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(Aa.i))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-receive"]],decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),A.EFF(4,"Address Type"),A.k0s(),A.j41(5,"mat-select",3),A.mxI("ngModelChange",function(PA){return A.DH7(c.selectedAddressType,PA)||(c.selectedAddressType=PA),PA}),A.DNE(6,W0,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return c.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&l&&(A.R7$(5),A.R50("ngModel",c.selectedAddressType),A.R7$(),A.Y8G("ngForOf",c.addressTypes))},dependencies:[st.Sq,iA.BC,iA.vS,n.DJ,n.sA,n.UI,R.$z,IA.rl,IA.nJ,$.VO,FA.wT]})}return i})(),ka=(()=>{class i{constructor(t,l){this.store=t,this.activatedRoute=l,this.sweepAll=!1,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:this.sweepAll,component:Da}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(le.nX))};static#t=this.\u0275cmp=A.VBU({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(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return c.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&l&&(A.R7$(3),A.JRh(c.sweepAll?"Sweep All":"Send Funds"))},dependencies:[n.DJ,n.sA,n.UI,R.$z]})}return i})();var ja=Pt(9172),Oa=Pt(6354),Ja=Pt(850),Va=Pt(92);const ci=["form"],X0=(i,D)=>({"mr-6":i,"mr-2":D});function xr(i,D){if(1&i&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(t.alias?t.alias:t.id?t.id:"")}}function Z0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function q0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function _0(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",7)(1,"mat-label"),A.EFF(2,"Peer Alias"),A.k0s(),A.j41(3,"input",46),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSelectedPeerChanged())}),A.DNE(6,xr,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,Z0,2,0,"mat-error",21)(9,q0,2,0,"mat-error",21),A.k0s()}if(2&i){const t=A.sdS(5),l=A.XpG();A.R7$(3),A.Y8G("formControl",l.selectedPeer)("matAutocomplete",t),A.R7$(),A.Y8G("displayWith",l.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,l.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.notfound)}}function Wa(i,D){1&i&&A.eu8(0)}function $0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Al(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function tl(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.j41(2,"span",51)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",52)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faInfoCircle),A.R7$(6),A.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),A.R7$(2),A.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),A.R7$(2),A.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function el(i,D){if(1&i&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function Ka(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function nl(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function Xa(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",53)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",54,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.customFeeRate,c)||(j.customFeeRate=c),A.Njj(c)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,Ka,2,0,"mat-error",21)(8,nl,2,1,"mat-error",21),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("step",1)("min",t.recommendedFee.minimumFee)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R50("ngModel",t.customFeeRate),A.R7$(3),A.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&t.customFeeRate&&t.customFeeRate{class i{constructor(t,l,c,j,PA,WA,an,fe){this.logger=t,this.dialogRef=l,this.data=c,this.store=j,this.actions=PA,this.decimalPipe=WA,this.commonService=an,this.dataService=fe,this.selectedPeer=new iA.hs,this.faExclamationTriangle=u.zpE,this.faInfoCircle=u.iW_,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.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=r.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(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.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(c=>{this.selNode=c,this.isPrivate=!!c?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,v.p)(c=>c.type===r.TC.UPDATE_API_CALL_STATUS_CLN||c.type===r.TC.FETCH_CHANNELS_CLN)).subscribe(c=>{c.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&c.payload.status===r.wn.ERROR&&"SaveNewChannel"===c.payload.action&&(this.channelConnectionError=c.payload.message),c.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let t="",l="";this.sortedPeers=this.peers.sort((c,j)=>(t=c.alias?c.alias.toLowerCase():c.id?c.id.toLowerCase():"",l=j.alias?j.alias.toLowerCase():c.id?c.id.toLowerCase():"",tl?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,ja.Z)(""),(0,Oa.T)(c=>"string"==typeof c?c:c.alias?c.alias:c.id),(0,Oa.T)(c=>c?this.filterPeers(c):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(l=>0===l.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.id?t.id:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const t=this.peers?.filter(l=>l.alias?.length===this.selectedPeer.value.length&&0===l.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].id&&(this.selectedPubkey=t[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=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(t){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)":this.feeRateTypes.find(l=>l.feeRateId===this.selFeeRate)?.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){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,c)=>l+(c.amount_msat||0)/1e3,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||"customperkb"===this.selFeeRate&&this.recommendedFee.minimumFee>this.customFeeRate)return!0;const t={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,amount: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(l=>t.utxos.push(l.txid+":"+l.output))),this.store.dispatch((0,_.vL)({payload:t}))}onSelFeeRateChanged(t){this.customFeeRate=null,"customperkb"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:l=>{this.recommendedFee=l},error:l=>{this.logger.error(l)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(fA.En),A.rXU(st.QX),A.rXU(h.h),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-open-channel"]],viewQuery:function(l,c){if(1&l&&A.GBs(ci,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:75,vars:42,consts:[["form","ngForm"],["amount","ngModel"],["blocks","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["custFeeRate","ngModel"],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","disabled","ngModel"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","25","fxLayoutAlign","center start"],["fxLayout","column","fxLayoutAlign","center start","tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","64","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4",3,"valueChange","selectionChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","32","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","54","fxLayoutAlign","start end"],["tabindex","6","multiple","",3,"valueChange","selectionChange","value"],["fxFlex","41","fxLayout","row","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["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","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"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate","tabindex","4",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return A.eBV(j),A.Njj(c.onOpenChannel())})("reset",function(){return A.eBV(j),A.Njj(c.resetData())}),A.j41(11,"div",14),A.DNE(12,_0,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,Wa,1,0,"ng-container",16),A.j41(14,"div",14)(15,"div",17)(16,"mat-form-field",18)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",19,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.fundingAmount,WA)||(c.fundingAmount=WA),A.Njj(WA)}),A.k0s(),A.j41(21,"mat-hint"),A.EFF(22),A.nI1(23,"number"),A.k0s(),A.j41(24,"span",20),A.EFF(25," Sats "),A.k0s(),A.DNE(26,$0,2,0,"mat-error",21)(27,Al,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.isPrivate,WA)||(c.isPrivate=WA),A.Njj(WA)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return A.eBV(j),A.Njj(c.onAdvancedPanelToggle(!0))})("opened",function(){return A.eBV(j),A.Njj(c.onAdvancedPanelToggle(!1))}),A.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),A.EFF(35),A.k0s()()(),A.j41(36,"div",25),A.DNE(37,tl,16,6,"div",26),A.j41(38,"div",27)(39,"div",28)(40,"mat-form-field",29)(41,"mat-label"),A.EFF(42,"Fee Rate"),A.k0s(),A.j41(43,"mat-select",30),A.mxI("valueChange",function(WA){return A.eBV(j),A.DH7(c.selFeeRate,WA)||(c.selFeeRate=WA),A.Njj(WA)}),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onSelFeeRateChanged(WA))}),A.DNE(44,el,2,2,"mat-option",31),A.k0s()(),A.DNE(45,Xa,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.flgMinConf,WA)||(c.flgMinConf=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.flgMinConf?c.selFeeRate=null:c.minConfValue=null)}),A.k0s(),A.j41(48,"mat-form-field",35)(49,"mat-label"),A.EFF(50,"Min Confirmation Blocks"),A.k0s(),A.j41(51,"input",36,2),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.minConfValue,WA)||(c.minConfValue=WA),A.Njj(WA)}),A.k0s(),A.DNE(53,Za,2,0,"mat-error",21),A.k0s()()(),A.j41(54,"mat-form-field",37)(55,"mat-label"),A.EFF(56,"Coin Selection"),A.k0s(),A.j41(57,"mat-select",38),A.mxI("valueChange",function(WA){return A.eBV(j),A.DH7(c.selUTXOs,WA)||(c.selUTXOs=WA),A.Njj(WA)}),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onUTXOSelectionChange(WA))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,qa,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.flgUseAllBalance,WA)||(c.flgUseAllBalance=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.onUTXOAllBalanceChange())}),A.EFF(64," Use selected UTXOs balance "),A.k0s(),A.j41(65,"mat-icon",41),A.EFF(66,"info_outline"),A.k0s()()()()(),A.DNE(67,rl,3,2,"div",42),A.j41(68,"div",43)(69,"button",44),A.EFF(70,"Clear Fields"),A.k0s(),A.j41(71,"button",45),A.EFF(72,"Open Channel"),A.k0s()()()()()(),A.DNE(73,sl,1,1,"ng-template",null,3,A.C5r)}if(2&l){const j=A.sdS(20),PA=A.sdS(74);A.R7$(5),A.JRh(c.alertTitle),A.R7$(7),A.Y8G("ngIf",!c.peer&&c.peers&&c.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",PA),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",c.totalBalance)("disabled",c.flgUseAllBalance),A.R50("ngModel",c.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,c.totalBalance-(c.fundingAmount?c.fundingAmount:0)),"",c.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.R7$(4),A.Y8G("ngIf",(null==j.errors?null:j.errors.required)||!c.fundingAmount),A.R7$(),A.Y8G("ngIf",null==j.errors?null:j.errors.max),A.R7$(2),A.R50("ngModel",c.isPrivate),A.R7$(6),A.JRh(c.advancedTitle),A.R7$(2),A.Y8G("ngIf",c.recommendedFee.minimumFee),A.R7$(3),A.Y8G("fxFlex","customperkb"!==c.selFeeRate||c.flgMinConf?"100":"40"),A.R7$(3),A.Y8G("disabled",c.flgMinConf),A.R50("value",c.selFeeRate),A.R7$(),A.Y8G("ngForOf",c.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===c.selFeeRate&&!c.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,X0,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM,c.screenSize===c.screenSizeEnum.MD||c.screenSize===c.screenSizeEnum.LG||c.screenSize===c.screenSizeEnum.XL)),A.R50("ngModel",c.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",c.flgMinConf)("disabled",!c.flgMinConf),A.R50("ngModel",c.minConfValue),A.R7$(2),A.Y8G("ngIf",c.flgMinConf&&!c.minConfValue),A.R7$(4),A.R50("value",c.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,c.totalSelectedUTXOAmount)," Sats (",c.selUTXOs.length>1?c.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",c.utxos),A.R7$(2),A.Y8G("disabled",c.selUTXOs.length<1),A.R50("ngModel",c.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==c.channelConnectionError)}},dependencies:[st.YU,st.Sq,st.bT,st.T3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.zX,iA.vS,iA.cV,iA.l_,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,p.MM,In.So,Nn.GK,Nn.Z2,Nn.WN,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,ri.q,$.VO,$.$2,FA.wT,YA.sG,HA.oV,Ja.$3,Ja.pN,J.N,Va.z,BA.V,st.Jj,st.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();function $a(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.openChannels)}}function ol(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.pendingChannels)}}function ll(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activeHTLCs)}}let cl=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.store=l,this.commonService=c,this.router=j,this.openChannels=0,this.pendingChannels=0,this.activeHTLCs=0,this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t instanceof le.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.kQ).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.selNode=l,this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.openChannels=t.activeChannels.length||0,this.pendingChannels=t.pendingChannels.length+t.inactiveChannels.length||0;const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.activeHTLCs=l?.reduce((c,j)=>c+(j.htlcs&&j.htlcs.length>0?j.htlcs.length:0),0),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:_a}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-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,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["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(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return c.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(PA){return A.DH7(c.activeLink,PA)||(c.activeLink=PA),PA}),A.bIt("selectedTabChange",function(PA){return c.onSelectedTabChange(PA)}),A.j41(6,"mat-tab"),A.DNE(7,$a,2,1,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,ol,2,1,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,ll,2,1,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&l&&(A.R7$(5),A.R50("selectedIndex",c.activeLink))},dependencies:[n.DJ,n.sA,n.UI,R.$z,jr.k,Y.ES,Y.mq,Y.T8,le.n3]})}return i})();const gl=i=>({"xs-scroll-y":i}),Bl=(i,D)=>({"mt-2":i,"mt-1":D});function ul(i,D){if(1&i&&(A.j41(0,"div")(1,"div",10)(2,"div",11)(3,"h4",12),A.EFF(4,"Receivable (Sats)"),A.k0s(),A.j41(5,"span",19),A.EFF(6),A.nI1(7,"number"),A.k0s()(),A.j41(8,"div",11)(9,"h4",12),A.EFF(10,"Spendable (Sats)"),A.k0s(),A.j41(11,"span",19),A.EFF(12),A.nI1(13,"number"),A.k0s()()(),A.nrm(14,"mat-divider",15),A.j41(15,"div",10)(16,"div",11)(17,"h4",12),A.EFF(18,"Their Reserve (Sats)"),A.k0s(),A.j41(19,"span",19),A.EFF(20),A.nI1(21,"number"),A.k0s()(),A.j41(22,"div",11)(23,"h4",12),A.EFF(24,"Our Reserve (Sats)"),A.k0s(),A.j41(25,"span",19),A.EFF(26),A.nI1(27,"number"),A.k0s()()(),A.nrm(28,"mat-divider",15),A.k0s()),2&i){const t=A.XpG();A.R7$(6),A.JRh(A.i5U(7,4,t.channel.receivable_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(13,7,t.channel.spendable_msat/1e3,"1.0-0")),A.R7$(8),A.JRh(A.i5U(21,10,t.channel.their_reserve_msat/1e3,"1.0-2")),A.R7$(6),A.JRh(A.i5U(27,13,t.channel.our_reserve_msat/1e3,"1.0-2"))}}function As(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function ts(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function fl(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",27),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onCopyChanID(c))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("payload",t.channel.short_channel_id)}}function hl(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",28),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onClose())}),A.EFF(1,"OK"),A.k0s()}}let es=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.logger=c,this.commonService=j,this.snackBar=PA,this.router=WA,this.faReceipt=u.Mf0,this.faUpRightFromSquare=u.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=r.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,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)}onGoToLink(t,l){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:t,lookupValue:l}}),this.onClose()}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(C.gP),A.rXU(h.h),A.rXU(ki.UG),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-information"]],decls:91,vars:38,consts:[["hideAdvancedText",""],["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 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"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1"],["tabindex","5","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","33"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","6",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),A.nrm(4,"fa-icon",5),A.j41(5,"span",6),A.EFF(6,"Channel Information"),A.k0s()(),A.j41(7,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(8,"X"),A.k0s()(),A.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),A.EFF(14,"Short Channel ID"),A.k0s(),A.j41(15,"span",13),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onGoToLink("1",c.channel.short_channel_id))}),A.EFF(16),A.k0s()(),A.j41(17,"div",11)(18,"h4",12),A.EFF(19,"Peer Alias"),A.k0s(),A.j41(20,"span",14),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",15),A.j41(23,"div",10)(24,"div",2)(25,"h4",12),A.EFF(26,"Channel ID"),A.k0s(),A.j41(27,"span",14),A.EFF(28),A.k0s()()(),A.nrm(29,"mat-divider",15),A.j41(30,"div",10)(31,"div",2)(32,"h4",12),A.EFF(33,"Peer Public Key"),A.k0s(),A.j41(34,"span",16),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onGoToLink("0",c.channel.peer_id))}),A.EFF(35),A.k0s()()(),A.nrm(36,"mat-divider",15),A.j41(37,"div",10)(38,"div",2)(39,"h4",12),A.EFF(40,"Funding Transaction ID"),A.k0s(),A.j41(41,"span",14),A.EFF(42),A.j41(43,"fa-icon",17),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onExplorerClicked())}),A.k0s()()()(),A.nrm(44,"mat-divider",15),A.j41(45,"div",10)(46,"div",18)(47,"h4",12),A.EFF(48,"State"),A.k0s(),A.j41(49,"span",19),A.EFF(50),A.nI1(51,"camelcaseWithReplace"),A.k0s()(),A.j41(52,"div",18)(53,"h4",12),A.EFF(54,"Connected"),A.k0s(),A.j41(55,"span",19),A.EFF(56),A.k0s()(),A.j41(57,"div",20)(58,"h4",12),A.EFF(59,"Private"),A.k0s(),A.j41(60,"span",19),A.EFF(61),A.k0s()()(),A.nrm(62,"mat-divider",15),A.j41(63,"div",10)(64,"div",18)(65,"h4",12),A.EFF(66,"Remote Balance (Sats)"),A.k0s(),A.j41(67,"span",19),A.EFF(68),A.nI1(69,"number"),A.k0s()(),A.j41(70,"div",18)(71,"h4",12),A.EFF(72,"Local Balance (Sats)"),A.k0s(),A.j41(73,"span",19),A.EFF(74),A.nI1(75,"number"),A.k0s()(),A.j41(76,"div",20)(77,"h4",12),A.EFF(78,"Total (Sats)"),A.k0s(),A.j41(79,"span",19),A.EFF(80),A.nI1(81,"number"),A.k0s()()(),A.nrm(82,"mat-divider",15),A.DNE(83,ul,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onShowAdvanced())}),A.DNE(86,As,2,0,"p",24)(87,ts,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,fl,2,1,"button",25)(90,hl,2,0,"button",26),A.k0s()()()()()}if(2&l){const j=A.sdS(88);A.R7$(4),A.Y8G("icon",c.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(33,gl,c.screenSize===c.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",c.channel.short_channel_id," "),A.R7$(5),A.JRh(c.channel.alias),A.R7$(7),A.JRh(c.channel.channel_id),A.R7$(7),A.SpI(" ",c.channel.peer_id," "),A.R7$(7),A.SpI(" ",c.channel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+c.selNode.settings.blockExplorerUrl),A.Y8G("icon",c.faUpRightFromSquare),A.R7$(7),A.JRh(A.i5U(51,21,null==c.channel?null:c.channel.state,"_")),A.R7$(6),A.JRh(c.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(c.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,24,c.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,27,c.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,30,c.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",c.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(35,Bl,!c.showAdvanced,c.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!c.showAdvanced)("ngIfElse",j),A.R7$(3),A.Y8G("ngIf",c.showCopy),A.R7$(),A.Y8G("ngIf",!c.showCopy)}},dependencies:[st.YU,st.bT,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,p.MM,ri.q,HA.oV,mr.U,J.N,st.QX,yA.VD]})}return i})();const nn=()=>["all"],mi=i=>({"error-border":i}),El=()=>["no_peer"],Ni=i=>({width:i}),Cl=i=>({"display-none":i});function wl(i,D){if(1&i&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function ns(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function dl(i,D){1&i&&A.nrm(0,"th",41)}function Ql(i,D){if(1&i&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEyeSlash)}}function is(i,D){if(1&i&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEye)}}function ml(i,D){if(1&i&&(A.j41(0,"td",42),A.DNE(1,Ql,2,1,"span",43)(2,is,2,1,"span",44),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.private),A.R7$(),A.Y8G("ngIf",!t.private)}}function pi(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function pl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.short_channel_id)}}function Ml(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function Il(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Dl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function rs(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function ta(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function Ai(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.channel_id)}}function vl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Fl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.funding_txid)}}function yl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function xl(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.connected?"Connected":"Disconnected")}}function Hl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function Yl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function Sl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function Nl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function bl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function as(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Rl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function tA(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function G(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function K(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function M(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function N(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function P(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function nA(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",53)(2,"mat-hint",54),A.EFF(3),A.nI1(4,"number"),A.k0s()(),A.nrm(5,"mat-progress-bar",55),A.k0s()),2&i){const t=D.$implicit;A.R7$(3),A.JRh(A.bMT(4,2,t.balancedness||0)),A.R7$(2),A.FS9("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function oA(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",56)(1,"div",57)(2,"mat-select",58),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function lA(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",60)(1,"div",57)(2,"mat-select",61),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onChannelClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onViewRemotePolicy(c))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onChannelUpdate(c))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onChannelClose(c))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function sA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function bA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function KA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function lt(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function $A(i,D){if(1&i&&(A.j41(0,"td",62),A.DNE(1,sA,2,0,"p",63)(2,bA,2,0,"p",63)(3,KA,2,0,"p",63)(4,lt,2,1,"p",63),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function ct(i,D){if(1&i&&A.nrm(0,"tr",64),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Cl,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function mt(i,D){1&i&&A.nrm(0,"tr",65)}function It(i,D){1&i&&A.nrm(0,"tr",66)}let Gt=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.rtlEffects=c,this.clnEffects=j,this.commonService=PA,this.camelCaseWithReplace=WA,this.faEye=u.pS3,this.faEyeSlash=u.k6j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new F.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.G,this.selFilter="",this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(E.GX).pipe((0,g.Q)(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(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.selNode=t})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,_.ij)({payload:{uiMessage:r.MZ.GET_REMOTE_POLICY,shortChannelID:t.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,Fe.s)(1)).subscribe(l=>{if(l.channels&&0===l.channels.length)return!1;let c={};c=l.channels[0].source!==this.information.id?l.channels[0]:l.channels[1];const j=[[{key:"base_fee_millisatoshi",value:c.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:r.UN.NUMBER},{key:"fee_per_millionth",value:c.fee_per_millionth,title:"Fee/Millionth",width:33,type:r.UN.NUMBER},{key:"delay",value:c.delay,title:"Delay",width:33,type:r.UN.NUMBER}]],PA="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,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:PA,message:j}}}))},0)})}onChannelUpdate(t){"all"!==t&&"ONCHAIN"===t.state||("all"===t?(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.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:r.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(l=>{l&&this.store.dispatch((0,_.fy)({payload:{feebase:l[0].inputValue,feeppm:l[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"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),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:r.UN.NUMBER,inputValue:""===t.fee_base_msat?0:t.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.UN.NUMBER,inputValue:t.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(j=>{j&&this.store.dispatch((0,_.fy)({payload:{feebase:j[0].inputValue,feeppm:j[1].inputValue,id:t.channel_id}}))})),this.applyFilter())}percentHintFunction(t){return(t/1e4).toString()+"%"}onChannelClose(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.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.Q)(this.unSubs[6])).subscribe(l=>{l&&this.store.dispatch((0,_.w0)({payload:{id:t.id||"",channelId:t.channel_id||"",force:!1}}))})}onChannelClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:es}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.peer_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.to_them_msat?t.to_them_msat/1e3:"")+(t.to_us_msat?t.to_us_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":c=t?.private?"private":"public";break;case"connected":c=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":c=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":c=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":c=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":c=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":c=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":c=((t.their_reserve_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}loadChannelsTable(t){this.channels=new F.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(Aa.i),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Channels")}])],decls:69,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","5",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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,wl,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.DNE(14,ns,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,dl,1,0,"th",13)(20,ml,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,pi,2,0,"th",16)(23,pl,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Ml,2,0,"th",16)(26,Il,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Dl,2,0,"th",16)(29,rs,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,ta,2,0,"th",16)(32,Ai,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,vl,2,0,"th",16)(35,Fl,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,yl,2,0,"th",16)(38,xl,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,Hl,2,0,"th",23)(41,Yl,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,Sl,2,0,"th",23)(44,Nl,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,bl,2,0,"th",23)(47,as,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,Rl,2,0,"th",23)(50,tA,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,G,2,0,"th",23)(53,K,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,M,2,0,"th",23)(56,N,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,P,2,0,"th",16)(59,nA,6,4,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,oA,8,0,"th",31)(62,lA,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,$A,5,4,"td",34),A.bVm(),A.DNE(65,ct,1,3,"tr",35)(66,mt,1,0,"tr",36)(67,It,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,nn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,mi,""!==c.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,El)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,IA.MV,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return i})();const _t=["outputIdx"];function qt(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3,"Change output balance "),A.j41(4,"strong"),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,t.dustOutputValue))}}function re(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function ce(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function Ce(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function de(i,D){if(1&i&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.bumpFeeError)}}let Ge=(()=>{class i{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,l,c,j,PA,WA){this.actions=t,this.dialogRef=l,this.data=c,this.store=j,this.logger=PA,this.dataService=WA,this.faUpRightFromSquare=u.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=u.jPR,this.faInfoCircle=u.iW_,this.faExclamationTriangle=u.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:t=>{this.outputIndex=0===t.vout.findIndex(l=>l.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,_.XT)({payload:r.Ld[0]})),this.actions.pipe((0,v.p)(t=>t.type===r.TC.SET_NEW_ADDRESS_CLN),(0,Fe.s)(1)).subscribe(t=>{this.store.dispatch((0,_.aB)({payload:{destination:t.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,v.p)(t=>t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,Fe.s)(1)).subscribe(t=>{this.store.dispatch((0,AA.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN),(0,g.Q)(this.unSubs[3])).subscribe(t=>{t.payload.status===r.wn.ERROR&&("SetChannelTransaction"===t.payload.action||"GenerateNewAddress"===t.payload.action)&&(this.logger.error(t.payload.message),this.bumpFeeError=t.payload.message)})}onExplorerClicked(t){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+t,"_blank")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.flgShowDustWarning=!1,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(fA.En),A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(C.gP),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(l,c){if(1&l&&A.GBs(_t,5),2&l){let j;A.mGM(j=A.lsd())&&(c.outputIndx=j.first)}},decls:47,vars:19,consts:[["outputIndx","ngModel"],["fee","ngModel"],["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 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"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["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"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"ngModelChange","step","min","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-warn"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5,"Bump Fee"),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),A.EFF(12),A.j41(13,"fa-icon",12),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onExplorerClicked(null==c.bumpFeeChannel?null:c.bumpFeeChannel.funding_txid))}),A.k0s()(),A.j41(14,"div",13)(15,"div",14),A.nrm(16,"fa-icon",15),A.j41(17,"span",16)(18,"div"),A.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(20,"div"),A.EFF(21),A.k0s(),A.j41(22,"div"),A.EFF(23),A.k0s(),A.j41(24,"div"),A.EFF(25),A.k0s()()(),A.DNE(26,qt,8,4,"div",17),A.j41(27,"div",18)(28,"mat-form-field",19)(29,"mat-label"),A.EFF(30,"Output Index"),A.k0s(),A.j41(31,"input",20,0),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.outputIndex,WA)||(c.outputIndex=WA),A.Njj(WA)}),A.k0s(),A.DNE(33,re,2,0,"mat-error",21)(34,ce,2,0,"mat-error",21),A.k0s(),A.j41(35,"mat-form-field",19)(36,"mat-label"),A.EFF(37,"Fees (Sats/vByte)"),A.k0s(),A.j41(38,"input",22,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.fees,WA)||(c.fees=WA),A.Njj(WA)}),A.k0s(),A.DNE(40,Ce,2,0,"mat-error",21),A.k0s()(),A.DNE(41,de,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&l){const j=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==c.bumpFeeChannel?null:c.bumpFeeChannel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+c.selNode.settings.blockExplorerUrl),A.Y8G("icon",c.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",c.faInfoCircle),A.R7$(5),A.SpI("- High: ",c.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",c.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",c.recommendedFee.hourFee||"Unknown",""),A.R7$(),A.Y8G("ngIf",c.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",c.outputIndex),A.R7$(2),A.Y8G("ngIf",null==j.errors?null:j.errors.required),A.R7$(),A.Y8G("ngIf",null==j.errors?null:j.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",c.fees),A.R7$(2),A.Y8G("ngIf",!c.fees),A.R7$(),A.Y8G("ngIf",""!==c.bumpFeeError),A.R7$(5),A.JRh(""!==c.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,R.$z,p.m2,p.MM,wA.fg,IA.rl,IA.nJ,IA.TL,HA.oV,J.N,BA.V,st.QX]})}return i})();const rn=()=>["all"],Ue=i=>({"error-border":i}),he=()=>["no_peer"],Je=i=>({width:i}),He=i=>({"display-none":i});function ke(i,D){if(1&i&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function pe(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function Le(i,D){1&i&&A.nrm(0,"th",41)}function _e(i,D){if(1&i&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEyeSlash)}}function Ee(i,D){if(1&i&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEye)}}function $e(i,D){if(1&i&&(A.j41(0,"td",42),A.DNE(1,_e,2,1,"span",43)(2,Ee,2,1,"span",44),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.private),A.R7$(),A.Y8G("ngIf",!t.private)}}function Ln(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function fn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Fn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function Rn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function Pn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function pn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.channel_id)}}function zn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Cn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.funding_txid)}}function kn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function De(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.connected?"Connected":"Disconnected")}}function be(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function Se(i,D){if(1&i&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(),A.JRh(l.CLNChannelPendingState[null==t?null:t.state])}}function Xe(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function je(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function ln(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function ea(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function Gn(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function na(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ia(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function Tl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ul(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function Yr(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Xi(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function ra(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Sr(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",54)(1,"div",55)(2,"mat-select",56),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Nr(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onChannelClose(c))}),A.EFF(1,"Close Channel"),A.k0s()}}function Zi(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onBumpFee(c))}),A.EFF(1,"Bump Fee"),A.k0s()}}function qi(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",58)(1,"div",55)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onChannelClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Nr,2,0,"mat-option",60)(7,Zi,2,0,"mat-option",60),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(6),A.Y8G("ngIf","CHANNELD_SHUTTING_DOWN"===t.state||"CLOSINGD_SIGEXCHANGE"===t.state||!t.connected&&"CHANNELD_NORMAL"===t.state),A.R7$(),A.Y8G("ngIf","CHANNELD_AWAITING_LOCKIN"===t.state)}}function _i(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function $i(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function Ar(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function tr(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function er(i,D){if(1&i&&(A.j41(0,"td",61),A.DNE(1,_i,2,0,"p",62)(2,$i,2,0,"p",62)(3,Ar,2,0,"p",62)(4,tr,2,1,"p",62),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function nr(i,D){if(1&i&&A.nrm(0,"tr",63),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,He,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Ei(i,D){1&i&&A.nrm(0,"tr",64)}function ss(i,D){1&i&&A.nrm(0,"tr",65)}let os=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.store=l,this.rtlEffects=c,this.commonService=j,this.camelCaseWithReplace=PA,this.faEye=u.pS3,this.faEyeSlash=u.k6j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new F.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.G,this.selFilter="",this.CLNChannelPendingState=r.Zb,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.GX).pipe((0,g.Q)(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(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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((l,c)=>this.CLNChannelPendingState[l.state||""]>=this.CLNChannelPendingState[c.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.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,AA.xO)({payload:{data:{channel:t,component:Ge}}}))}onChannelClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,showCopy:!0,component:es}}}))}onChannelClose(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.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.Q)(this.unSubs[3])).subscribe(l=>{l&&this.store.dispatch((0,_.w0)({payload:{id:t.id,channelId:t.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.peer_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.to_us_msat?t.to_us_msat:"")+(t.to_them_msat?t.to_them_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":c=t?.private?"private":"public";break;case"connected":c=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":c=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":c=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":c=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":c=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":c=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":c=((t.their_reserve_msat||0)/1e3).toString()||"";break;case"state":c=t?.state?this.CLNChannelPendingState[t?.state]:"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}loadChannelsTable(t){this.channels=new F.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;case"state":return this.CLNChannelPendingState[l.state];default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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","5",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","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,ke,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.DNE(14,pe,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,Le,1,0,"th",13)(20,$e,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Ln,2,0,"th",16)(23,fn,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Fn,2,0,"th",16)(26,Rn,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Pn,2,0,"th",16)(29,pn,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,zn,2,0,"th",16)(32,Cn,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,kn,2,0,"th",16)(35,De,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,be,2,0,"th",16)(38,Se,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,Xe,2,0,"th",24)(41,je,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,ln,2,0,"th",24)(44,ea,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,Gn,2,0,"th",24)(47,na,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,ia,2,0,"th",24)(50,Tl,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,Ul,2,0,"th",24)(53,Yr,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,Xi,2,0,"th",24)(56,ra,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,Sr,6,0,"th",31)(59,qi,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,er,5,4,"td",34),A.bVm(),A.DNE(62,nr,1,3,"tr",35)(63,Ei,1,0,"tr",36)(64,ss,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,rn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,Ue,""!==c.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,he)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const ls=()=>["all"],cs=i=>({"error-border":i}),aa=()=>["no_peer"],kl=i=>({"mr-0":i}),Ll=i=>({width:i}),ec=i=>({"display-none":i});function nc(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function ic(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function rc(i,D){1&i&&A.nrm(0,"th",36)}function ac(i,D){if(1&i&&A.nrm(0,"span",40),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kl,t.screenSize===t.screenSizeEnum.XS))}}function sc(i,D){if(1&i&&A.nrm(0,"span",41),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kl,t.screenSize===t.screenSizeEnum.XS))}}function oc(i,D){if(1&i&&(A.j41(0,"td",37),A.DNE(1,ac,1,3,"span",38)(2,sc,1,3,"span",39),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.connected),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.connected))}}function lc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function cc(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function gc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Bc(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function uc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function fc(i,D){1&i&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function hc(i,D){if(1&i&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,fc,3,0,"span",46),A.k0s()),2&i){const t=D.$implicit,l=D.last;A.R7$(),A.JRh(t),A.R7$(),A.Y8G("ngIf",!l)}}function Ec(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,hc,3,2,"span",45),A.k0s()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(),A.Y8G("ngForOf",null==t?null:t.netaddr)}}function Cc(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function wc(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onPeerDetach(c))}),A.EFF(1,"Disconnect"),A.k0s()}}function dc(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onConnectPeer(c))}),A.EFF(1,"Reconnect"),A.k0s()}}function Qc(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onPeerClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOpenChannel(c))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,wc,2,0,"mat-option",52)(9,dc,2,0,"mat-option",52),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(8),A.Y8G("ngIf",t.connected),A.R7$(),A.Y8G("ngIf",!t.connected)}}function mc(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function pc(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function Mc(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Ic(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,mc,2,0,"p",46)(2,pc,2,0,"p",46)(3,Mc,2,1,"p",46),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function Dc(i,D){if(1&i&&A.nrm(0,"tr",54),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,ec,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function vc(i,D){1&i&&A.nrm(0,"tr",55)}function Fc(i,D){1&i&&A.nrm(0,"tr",56)}let yc=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.rtlEffects=c,this.actions=j,this.commonService=PA,this.camelCaseWithReplace=WA,this.faUsers=u.gdJ,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new F.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.kQ).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.availableBalance=t.balance.totalBalance||0}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.SET_PEERS_CLN)).subscribe(t=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",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,AA.xO)({payload:{data:{message:{peer:t.id?t:null,information:this.information,balance:this.availableBalance},component:Na}}}))}onOpenChannel(t){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:_a}}}))}onPeerDetach(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(c=>{c&&this.store.dispatch((0,_.ed)({payload:{id:t.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"connected":c=t?.connected?"connected":"disconnected";break;case"netaddr":c=t.netaddr?t.netaddr.reduce((j,PA)=>j+PA," "):"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}loadPeersTable(t){this.peers=new F.I6([...t]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(l,c)=>{if("netaddr"===c){if(l.netaddr&&l.netaddr[0]){const j=l.netaddr[0].toString().split(".");return j[0]?+j[0]:l.netaddr[0]}return""}return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(fA.En),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-peers"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Peers")}])],decls:47,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-x-hidden","overflow-y-hidden",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onConnectPeer({}))}),A.EFF(4,"Add Peer"),A.k0s()(),A.j41(5,"div",5)(6,"div",6)(7,"div",7),A.nrm(8,"fa-icon",8),A.j41(9,"span",9),A.EFF(10,"Connected Peers"),A.k0s()(),A.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),A.EFF(14,"Filter By"),A.k0s(),A.j41(15,"mat-select",12),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,nc,2,2,"mat-option",13),A.k0s()()(),A.j41(18,"mat-form-field",11)(19,"mat-label"),A.EFF(20,"Filter"),A.k0s(),A.j41(21,"input",14),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,ic,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,rc,1,0,"th",19)(28,oc,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,lc,2,0,"th",22)(31,cc,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,gc,2,0,"th",22)(34,Bc,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,uc,2,0,"th",22)(37,Ec,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,Cc,6,0,"th",26)(40,Qc,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,Ic,4,3,"td",29),A.bVm(),A.DNE(43,Dc,1,3,"tr",30)(44,vc,1,0,"tr",31)(45,Fc,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(8),A.Y8G("icon",c.faUsers),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,ls).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.peers)("ngClass",A.eq3(16,cs,""!==c.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,aa)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.BC,iA.cb,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const xc=["queryRoutesForm"],Yc=i=>({"overflow-auto error-border":i,"overflow-auto":!0}),jl=i=>({width:i});function Sc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function Nc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function bc(i,D){1&i&&A.nrm(0,"mat-progress-bar",36)}function Rc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function Tc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function Uc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function Lc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Pc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function zc(i,D){if(1&i&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.channel)}}function Gc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function Hc(i,D){if(1&i&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.direction)}}function kc(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function jc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==t?null:t.delay)," ")}}function Oc(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function Jc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==t?null:t.amount_msat)/1e3))}}function Vc(i,D){1&i&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function Wc(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onHopClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function Kc(i,D){1&i&&A.nrm(0,"tr",47)}function Xc(i,D){1&i&&A.nrm(0,"tr",48)}let Zc=(()=>{class i{constructor(t,l,c){this.store=t,this.clnEffects=l,this.commonService=c,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:r.md,sortBy:"id",sortOrder:r.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new F.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=u.TBz,this.faExclamationTriangle=u.zpE,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops.data=[],t.route&&t.route.length&&t.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new F.I6([...t.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,_.T4)({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,l){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:t.id,title:"ID",width:100,type:r.UN.STRING}],[{key:"channel",value:t.channel,title:"Channel",width:50,type:r.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:r.UN.STRING}],[{key:"amount_msat",value:t.amount_msat,title:"Amount (mSat)",width:34,type:r.UN.NUMBER},{key:"direction",value:t.direction,title:"Direction",width:33,type:r.UN.STRING},{key:"delay",value:t.delay,title:"Delay",width:33,type:r.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(Aa.i),A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-query-routes"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(xc,7)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:55,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["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,"matSortActive","matSortDirection","dataSource","ngClass"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){A.eBV(j);const WA=A.sdS(2);return A.Njj(WA.form.valid&&c.onQueryRoutes())}),A.j41(3,"div",5),A.nrm(4,"fa-icon",6),A.j41(5,"span"),A.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.k0s()(),A.j41(7,"mat-form-field",7)(8,"mat-label"),A.EFF(9,"Destination Pubkey"),A.k0s(),A.j41(10,"input",8,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.destinationPubkey,WA)||(c.destinationPubkey=WA),A.Njj(WA)}),A.k0s(),A.DNE(12,Sc,2,0,"mat-error",9),A.k0s(),A.j41(13,"mat-form-field",10)(14,"mat-label"),A.EFF(15,"Amount (Sats)"),A.k0s(),A.j41(16,"input",11),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.amount,WA)||(c.amount=WA),A.Njj(WA)}),A.k0s(),A.DNE(17,Nc,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(20,"Clear"),A.k0s(),A.j41(21,"button",14),A.EFF(22,"Query Route"),A.k0s()()(),A.j41(23,"div",15)(24,"div",16),A.nrm(25,"fa-icon",17),A.j41(26,"span",18),A.EFF(27,"Transaction Route"),A.k0s()()(),A.j41(28,"div",19),A.DNE(29,bc,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,Rc,2,0,"th",23)(34,Tc,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,Uc,2,0,"th",23)(37,Lc,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,Pc,2,0,"th",23)(40,zc,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,Gc,2,0,"th",23)(43,Hc,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,kc,2,0,"th",29)(46,jc,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,Oc,2,0,"th",29)(49,Jc,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,Vc,3,0,"th",32)(52,Wc,3,0,"td",33),A.bVm(),A.DNE(53,Kc,1,0,"tr",34)(54,Xc,1,0,"tr",35),A.k0s()()()}2&l&&(A.R7$(4),A.Y8G("icon",c.faExclamationTriangle),A.R7$(6),A.R50("ngModel",c.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!c.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",c.amount),A.R7$(),A.Y8G("ngIf",!c.amount),A.R7$(8),A.Y8G("icon",c.faRoute),A.R7$(4),A.Y8G("ngIf",!0===c.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.qrHops)("ngClass",A.eq3(15,Yc,"error"===c.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns))},dependencies:[st.YU,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.TL,B.HM,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,cA.Ld,BA.V,st.QX]})}return i})();function qc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let _c=(()=>{class i{constructor(t,l,c){this.dataService=t,this.snackBar=l,this.logger=c,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new o.B,new o.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,g.Q)(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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(Qe.u),A.rXU(ki.UG),A.rXU(C.gP))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-sign"]],decls:22,vars:4,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[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"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),A.EFF(5,"Message to sign"),A.k0s(),A.j41(6,"textarea",4),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.message,WA)||(c.message=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onMessageChange())}),A.k0s(),A.DNE(7,qc,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onSign())}),A.EFF(12,"Sign"),A.k0s()(),A.nrm(13,"mat-divider",9),A.j41(14,"div",10)(15,"p"),A.EFF(16,"Generated Signature"),A.k0s()(),A.j41(17,"div",11),A.EFF(18),A.k0s(),A.j41(19,"div",12)(20,"button",13),A.bIt("copied",function(WA){return A.eBV(j),A.Njj(c.onCopyField(WA))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&l&&(A.R7$(6),A.R50("ngModel",c.message),A.R7$(),A.Y8G("ngIf",!c.message),A.R7$(11),A.JRh(c.signature),A.R7$(2),A.Y8G("payload",c.signature))},dependencies:[st.bT,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,R.$z,wA.fg,IA.rl,IA.nJ,IA.TL,ri.q,mr.U,J.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return i})();function $c(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function Ag(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function tg(i,D){1&i&&(A.j41(0,"p",13)(1,"mat-icon",14),A.EFF(2,"close"),A.k0s(),A.EFF(3,"Verification failed, please check message and signature"),A.k0s())}function eg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function ng(i,D){if(1&i&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(2),A.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function ig(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onCopyField(c))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&i){const t=A.XpG(2);A.R7$(),A.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function rg(i,D){if(1&i&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,eg,2,0,"p",6),A.k0s(),A.DNE(4,ng,3,1,"div",18)(5,ig,3,1,"div",19),A.k0s()),2&i){const t=A.XpG();A.R7$(3),A.Y8G("ngIf",t.verifyRes.verified),A.R7$(),A.Y8G("ngIf",t.verifyRes.verified),A.R7$(),A.Y8G("ngIf",t.verifyRes.verified)}}let ag=(()=>{class i{constructor(t,l,c){this.dataService=t,this.snackBar=l,this.logger=c,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new o.B,new o.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,g.Q)(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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(Qe.u),A.rXU(ki.UG),A.rXU(C.gP))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-verify"]],decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","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"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),A.EFF(5,"Message to verify"),A.k0s(),A.j41(6,"textarea",5),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.message,WA)||(c.message=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onChange())}),A.k0s(),A.DNE(7,$c,2,0,"mat-error",6),A.k0s(),A.j41(8,"mat-form-field",4)(9,"mat-label"),A.EFF(10,"Signature provided"),A.k0s(),A.j41(11,"input",7,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.signature,WA)||(c.signature=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onChange())}),A.k0s(),A.DNE(13,Ag,2,0,"mat-error",6),A.k0s(),A.DNE(14,tg,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,rg,6,3,"div",12),A.k0s()()}2&l&&(A.R7$(6),A.R50("ngModel",c.message),A.R7$(),A.Y8G("ngIf",!c.message),A.R7$(4),A.R50("ngModel",c.signature),A.R7$(2),A.Y8G("ngIf",!c.signature),A.R7$(),A.Y8G("ngIf",c.showVerifyStatus&&!c.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",c.showVerifyStatus&&c.verifyRes.verified))},dependencies:[st.bT,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,R.$z,y.An,wA.fg,IA.rl,IA.nJ,IA.TL,ri.q,mr.U,J.N]})}return i})();const sg=()=>["all"],og=()=>["no_event"],Pl=i=>({width:i}),lg=i=>({"display-none":i});function cg(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function gg(i,D){if(1&i&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Bg(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",7),A.nrm(1,"div",8),A.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),A.EFF(5,"Filter By"),A.k0s(),A.j41(6,"mat-select",11),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,gg,2,2,"mat-option",12),A.k0s()()(),A.j41(9,"mat-form-field",10)(10,"mat-label"),A.EFF(11,"Filter"),A.k0s(),A.j41(12,"input",13),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()}if(2&i){const t=A.XpG();A.R7$(6),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,sg).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function ug(i,D){1&i&&A.nrm(0,"mat-progress-bar",39)}function fg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function hg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Eg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function Cg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function wg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function dg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function Qg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function mg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function pg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function Mg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function Ig(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function Dg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function vg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function Fg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function yg(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function xg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Yg(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function Sg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ng(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function bg(i,D){if(1&i&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.fee)," ")}}function Rg(i,D){if(1&i&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.fee_msat)," ")}}function Tg(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,bg,3,3,"span",46)(2,Rg,3,3,"span",46),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.fee),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function Ug(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Lg(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG(2);return A.Njj(PA.onForwardingEventClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function Pg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function zg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function Gg(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Hg(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,Pg,2,0,"p",54)(2,zg,2,0,"p",54)(3,Gg,2,1,"p",54),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function kg(i,D){if(1&i&&A.nrm(0,"tr",55),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,lg,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function jg(i,D){1&i&&A.nrm(0,"tr",56)}function Og(i,D){1&i&&A.nrm(0,"tr",57)}function Jg(i,D){if(1&i&&(A.j41(0,"div",15),A.DNE(1,ug,1,0,"mat-progress-bar",16),A.j41(2,"table",17,0),A.qex(4,18),A.DNE(5,fg,2,0,"th",19)(6,hg,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,Eg,2,0,"th",19)(9,Cg,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,wg,2,0,"th",19)(12,dg,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,Qg,2,0,"th",19)(15,mg,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,pg,2,0,"th",19)(18,Mg,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,Ig,2,0,"th",19)(21,Dg,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,vg,2,0,"th",19)(24,Fg,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,yg,2,0,"th",28)(27,xg,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,Yg,2,0,"th",28)(30,Sg,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,Ng,2,0,"th",28)(33,Tg,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,Ug,6,0,"th",32)(36,Lg,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,Hg,4,3,"td",35),A.bVm(),A.DNE(39,kg,1,3,"tr",36)(40,jg,1,0,"tr",37)(41,Og,1,0,"tr",38),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(7,og)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function Vg(i,D){if(1&i&&A.nrm(0,"mat-paginator",58),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Ol=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new F.I6([]),this.totalForwardedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.wn.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())}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(t,l){const c=[[{key:"status",value:"Settled",title:"Status",width:50,type:r.UN.STRING},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:50,type:r.UN.NUMBER}],[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.UN.DATE_TIME}],[{key:"in_channel",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING},{key:"out_channel",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"In (mSats)",width:50,type:r.UN.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Out (mSats)",width:50,type:r.UN.NUMBER}]];t.payment_hash&&c.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Event Information",message:c}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const l=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.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_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":c=(+(t.fee_msat||0)).toString()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":c=(+(t.out_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new F.I6([...t]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Events")}]),A.OA$],decls:5,vars:4,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[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,"matSortActive","matSortDirection","dataSource"],["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"],["fxLayoutAlign","end center",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"],["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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,cg,2,1,"div",2)(2,Bg,13,4,"div",3)(3,Jg,42,8,"div",4)(4,Vg,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const Wg=()=>["all"],Kg=()=>["no_event"],Jl=i=>({width:i}),Xg=i=>({"display-none":i});function Zg(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function qg(i,D){if(1&i&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function _g(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,qg,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()()}if(2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.faExclamationTriangle),A.R7$(9),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,Wg).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function $g(i,D){1&i&&A.nrm(0,"mat-progress-bar",41)}function AB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function tB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function eB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function nB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function iB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function rB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function aB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function sB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function oB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function lB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function cB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function gB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function BB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function uB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function fB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function hB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function EB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function CB(i,D){if(1&i&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.fee,"1.0-0")," ")}}function wB(i,D){if(1&i&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.fee_msat,"1.0-0")," ")}}function dB(i,D){if(1&i&&(A.j41(0,"td",43),A.DNE(1,CB,3,4,"span",48)(2,wB,3,4,"span",48),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.fee),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function QB(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",49)(1,"div",50)(2,"mat-select",51),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",52),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function mB(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onFailedEventClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function pB(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function MB(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function IB(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function DB(i,D){if(1&i&&(A.j41(0,"td",55),A.DNE(1,pB,2,0,"p",56)(2,MB,2,0,"p",56)(3,IB,2,1,"p",56),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function vB(i,D){if(1&i&&A.nrm(0,"tr",57),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Xg,(null==t.failedForwardingEvents?null:t.failedForwardingEvents.data)&&(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)>0))}}function FB(i,D){1&i&&A.nrm(0,"tr",58)}function yB(i,D){1&i&&A.nrm(0,"tr",59)}function xB(i,D){if(1&i&&(A.j41(0,"div",18),A.DNE(1,$g,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,AB,2,0,"th",22)(6,tB,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,eB,2,0,"th",22)(9,nB,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,iB,2,0,"th",22)(12,rB,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,aB,2,0,"th",22)(15,sB,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,oB,2,0,"th",22)(18,lB,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,cB,2,0,"th",22)(21,gB,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,BB,2,0,"th",30)(24,uB,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,fB,2,0,"th",30)(27,hB,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,EB,2,0,"th",30)(30,dB,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,QB,6,0,"th",34)(33,mB,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,DB,4,3,"td",37),A.bVm(),A.DNE(36,vB,1,3,"tr",38)(37,FB,1,0,"tr",39)(38,yB,1,0,"tr",40),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedForwardingEvents),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(7,Kg)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function YB(i,D){if(1&i&&A.nrm(0,"mat-paginator",60),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let SB=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.faExclamationTriangle=u.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new F.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,_.uK)({payload:{status:r.xk.FAILED}})),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Dv).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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&&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 l=[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.UN.DATE_TIME}],[{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING},{key:"out_channel_alias",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"Amount In (mSats)",width:33,type:r.UN.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Amount Out (mSats)",width:33,type:r.UN.NUMBER},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:34,type:r.UN.NUMBER}]];t.payment_hash&&l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Failed Event Information",message:l}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.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.fee_msat?t.fee_msat+" ":"")+(t.in_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":c=(t.fee_msat||0)?.toString()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":c=(+(t.out_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadFailedEventsTable(t){this.failedForwardingEvents=new F.I6([...t]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-failed-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","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","fxLayoutAlign","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[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,"matSortActive","matSortDirection","dataSource"],["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.gt-xs","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"],["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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,Zg,2,1,"div",2)(2,_g,18,5,"div",3)(3,xB,39,8,"div",4)(4,YB,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const NB=["tableIn"],bB=["tableOut"],RB=["paginatorIn"],TB=["paginatorOut"],UB=(i,D)=>({"mt-2":i,"mt-1":D}),LB=()=>["no_incoming_event"],PB=i=>({"mt-2":i}),zB=()=>["no_outgoing_event"],gs=i=>({width:i}),Vl=i=>({"display-none":i});function GB(i,D){if(1&i&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function HB(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function kB(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function jB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.channel_id)}}function OB(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function JB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.alias)}}function VB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function WB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,t.events))}}function KB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function XB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function ZB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function qB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(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.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function $B(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function Au(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function tu(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,_B,2,0,"p",42)(2,$B,2,0,"p",42)(3,Au,2,1,"p",42),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function eu(i,D){if(1&i&&A.nrm(0,"tr",43),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Vl,(null==t.routingPeersIncoming?null:t.routingPeersIncoming.data)&&(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function nu(i,D){1&i&&A.nrm(0,"tr",44)}function iu(i,D){1&i&&A.nrm(0,"tr",45)}function ru(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function au(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function su(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.channel_id)}}function ou(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function lu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.alias)}}function cu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function gu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,t.events))}}function Bu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function uu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function fu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function hu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function Eu(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function Cu(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function wu(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function du(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,Eu,2,0,"p",42)(2,Cu,2,0,"p",42)(3,wu,2,1,"p",42),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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 Qu(i,D){if(1&i&&A.nrm(0,"tr",43),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Vl,(null==t.routingPeersOutgoing?null:t.routingPeersOutgoing.data)&&(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function mu(i,D){1&i&&A.nrm(0,"tr",44)}function pu(i,D){1&i&&A.nrm(0,"tr",45)}function Mu(i,D){if(1&i&&(A.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),A.EFF(4,"Incoming"),A.k0s(),A.nrm(5,"div",12),A.k0s(),A.j41(6,"div",13),A.DNE(7,HB,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,kB,2,0,"th",17)(12,jB,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,OB,2,0,"th",17)(15,JB,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,VB,2,0,"th",21)(18,WB,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,KB,2,0,"th",21)(21,XB,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,ZB,2,0,"th",21)(24,qB,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,tu,4,3,"td",25),A.bVm(),A.DNE(27,eu,1,3,"tr",26)(28,nu,1,0,"tr",27)(29,iu,1,0,"tr",28),A.k0s()(),A.nrm(30,"mat-paginator",29,1),A.k0s(),A.j41(32,"div",30)(33,"div",10)(34,"div",11),A.EFF(35,"Outgoing"),A.k0s(),A.nrm(36,"div",12),A.k0s(),A.j41(37,"div",31),A.DNE(38,ru,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,au,2,0,"th",17)(43,su,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,ou,2,0,"th",17)(46,lu,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,cu,2,0,"th",21)(49,gu,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,Bu,2,0,"th",21)(52,uu,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,fu,2,0,"th",21)(55,hu,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,du,4,3,"td",25),A.bVm(),A.DNE(58,Qu,1,3,"tr",26)(59,mu,1,0,"tr",27)(60,pu,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&i){const t=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,UB,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),A.R7$(5),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersIncoming),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(25,LB)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),A.R7$(3),A.Y8G("ngClass",A.eq3(26,PB,t.screenSize!==t.screenSizeEnum.LG)),A.R7$(5),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersOutgoing),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(28,zB)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Iu=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.eventsData=[],this.selFilter="",this.nodePageDefs=r.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:r.md,sortBy:"total_fee",sortOrder:r.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new F.I6([]),this.routingPeersOutgoing=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,t.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l),this.routingPeersOutgoing.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l)}loadRoutingPeersTable(t){if(t.length>0){const l=this.groupRoutingPeers(t);this.routingPeersIncoming=new F.I6(l[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new F.I6(l[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new F.I6([]),this.routingPeersOutgoing=new F.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(t){const l=[],c=[];return t.forEach(j=>{const PA=l?.find(an=>an.channel_id===j.in_channel),WA=c?.find(an=>an.channel_id===j.out_channel);PA?(PA.events++,PA.total_amount=+PA.total_amount+ +(j.in_msat||0),PA.total_fee=+(j.in_msat||0)-+(j.out_msat||0)+ +PA.total_fee):l.push({channel_id:j.in_channel,alias:j.in_channel_alias,events:1,total_amount:+(j.in_msat||0),total_fee:+(j.in_msat||0)-+(j.out_msat||0)}),WA?(WA.events++,WA.total_amount=+WA.total_amount+ +(j.out_msat||0),WA.total_fee=+(j.in_msat||0)-+(j.out_msat||0)+ +WA.total_fee):c.push({channel_id:j.out_channel,alias:j.out_channel_alias,events:1,total_amount:+(j.out_msat||0),total_fee:+(j.in_msat||0)-+(j.out_msat||0)})}),[this.commonService.sortDescByKey(l,"total_fee"),this.commonService.sortDescByKey(c,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(l,c){if(1&l&&(A.GBs(NB,5,z.B4),A.GBs(bB,5,z.B4),A.GBs(RB,5),A.GBs(TB,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sortIn=j.first),A.mGM(j=A.lsd())&&(c.sortOut=j.first),A.mGM(j=A.lsd())&&(c.paginatorIn=j.first),A.mGM(j=A.lsd())&&(c.paginatorOut=j.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:S.xX,useValue:(0,r.on)("Peers")}]),A.OA$],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["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,"matSortActive","matSortDirection","dataSource"],["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"],["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,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["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(l,c){1&l&&(A.j41(0,"div",4),A.DNE(1,GB,2,1,"div",5)(2,Mu,63,29,"div",6),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.bT,st.B3,n.DJ,n.sA,n.UI,I.PW,I.eI,B.HM,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.Ld,st.QX]})}return i})();const Du=()=>["all"],vu=i=>({"error-border":i}),Fu=()=>["no_channel"],Wl=i=>({width:i}),yu=i=>({"display-none":i});function xu(i,D){if(1&i&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Yu(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function Su(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function Nu(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==t?null:t.amount_msat)/1e3,"1.0-2")," ")}}function bu(i,D){if(1&i&&(A.qex(0),A.DNE(1,Nu,3,4,"span",39),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ru(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,bu,2,1,"ng-container",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" Active HTLCs: ",null==t||null==t.htlcs?null:t.htlcs.length," "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Tu(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function Uu(i,D){if(1&i&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.direction)," ")}}function Lu(i,D){if(1&i&&(A.qex(0),A.DNE(1,Uu,3,3,"span",41),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Pu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,Lu,2,1,"ng-container",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null==t?null:t.alias),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function zu(i,D){1&i&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function Gu(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.id)," ")}}function Hu(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Gu,3,3,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function ku(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Hu,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null==t?null:t.id),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function ju(i,D){1&i&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function Ou(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.expiry,"1.0-0")," ")}}function Ju(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ou,3,4,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Vu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Ju,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Wu(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function Ku(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.state,"_")," ")}}function Xu(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ku,3,4,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zu(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Xu,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function qu(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function _u(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",null!=t&&t.local_trimmed?"Yes":"No"," ")}}function $u(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,_u,2,1,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Af(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,$u,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function tf(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function ef(i,D){if(1&i&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&i){const t=D.$implicit,l=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,Wl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function nf(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,ef,3,4,"span",47),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function rf(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,nf,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Wl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function af(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",53),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function sf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2).$implicit,PA=A.XpG();return A.Njj(PA.onHTLCClick(c,j))}),A.EFF(2),A.k0s()()}if(2&i){const t=D.index;A.R7$(2),A.SpI("View ",t+1,"")}}function of(i,D){if(1&i&&(A.j41(0,"div"),A.DNE(1,sf,3,1,"div",57),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function lf(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const c=A.eBV(t).$implicit;return A.Njj(c.is_expanded=!c.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,of,2,1,"div",38),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(3),A.JRh(t.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function cf(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function gf(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function Bf(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function uf(i,D){if(1&i&&(A.j41(0,"td",60),A.DNE(1,cf,2,0,"p",38)(2,gf,2,0,"p",38)(3,Bf,2,1,"p",38),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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),A.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function ff(i,D){if(1&i&&A.nrm(0,"tr",61),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,yu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function hf(i,D){1&i&&A.nrm(0,"tr",62)}function Ef(i,D){1&i&&A.nrm(0,"tr",63)}let Cf=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:r.md,sortBy:"expiry",sortOrder:r.oi.DESCENDING},this.channels=new F.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.channelsJSONArr=l?.filter(c=>c.htlcs&&c.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,l){const c=[[{key:"alias",value:l.alias,title:"Alias",width:100,type:r.UN.STRING}],[{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:r.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(t.direction||""),title:"Direction",width:50,type:r.UN.STRING}],[{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:r.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(t.state||"","_"),title:"State",width:50,type:r.UN.STRING}],[{key:"id",value:t.id,title:"HTLC ID",width:50,type:r.UN.STRING},{key:"local_trimmed",value:t.local_trimmed,title:"Local Trimmed",width:50,type:r.UN.BOOLEAN}],[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"HTLC Information",message:c}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.alias?t.alias.toLowerCase():"")+t.htlcs?.map(j=>JSON.stringify(j).toLowerCase()+(j.local_trimmed?" yes ":" no "));break;case"direction":c=t.htlcs?.map(j=>j.direction+" ").toString()||"";break;case"id":c=t.htlcs?.map(j=>j.id+" ").toString()||"";break;case"expiry":c=t.htlcs?.map(j=>j.expiry+" ").toString()||"";break;case"state":c=t.htlcs?.map(j=>this.camelCaseWithReplace.transform(j.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":c=t.htlcs?.map(j=>j.payment_hash+" ").toString()||"";break;case"local_trimmed":c=t.htlcs?.map(j=>j.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":c=t.htlcs?.map(j=>(j.amount_msat||0)/1e3)?.toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadHTLCsTable(t){this.channels=new F.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"amount_msat":return this.commonService.sortByKey(l.htlcs,c,"number",this.sort?.direction),l.htlcs&&l.htlcs.length?l.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(l.htlcs,c,"string",this.sort?.direction),l;case"direction":return this.commonService.sortByKey(l.htlcs,c,"string",this.sort?.direction),l.alias?l.alias:l.id?l.id:null;case"expiry":return this.commonService.sortByKey(l.htlcs,c,"number",this.sort?.direction),l;case"local_trimmed":return this.commonService.sortByKey(l.htlcs,c,"boolean",this.sort?.direction),l;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((c,j)=>c.concat(j.htlcs?j.htlcs:j),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount_msat"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","direction"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expiry"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","local_trimmed"],["matColumnDef","payment_hash"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",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"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"ellipsis-child"],["fxLayoutAlign","start center","class","ellipsis-parent htlc-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,xu,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,Yu,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,Su,2,0,"th",13)(20,Ru,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Tu,2,0,"th",13)(23,Pu,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,zu,3,0,"th",17)(26,ku,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,ju,3,0,"th",17)(29,Vu,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Wu,3,0,"th",20)(32,Zu,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,qu,3,0,"th",20)(35,Af,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,tf,3,0,"th",20)(38,rf,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,af,6,0,"th",25)(41,lf,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,uf,4,3,"td",28),A.bVm(),A.DNE(44,ff,1,3,"tr",29)(45,hf,1,0,"tr",30)(46,Ef,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Du).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,vu,""!==c.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,Fu)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.PV,yA.VD],styles:[".mat-column-amount_msat[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}"]})}return i})();function wf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let df=(()=>{class i{constructor(t){this.router=t,this.faChartBar=u.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-reports"]],decls:12,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Reports"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,wf,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faChartBar),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var Kl=Pt(1001),Xl=Pt(6064),Zl=Pt(4655);function Qf(i,D){1&i&&(A.j41(0,"div",15),A.nrm(1,"mat-progress-bar",16),A.j41(2,"p"),A.EFF(3,"Getting Forwarding History..."),A.k0s()())}function mf(i,D){if(1&i&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function pf(i,D){if(1&i&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG();A.Y8G("@fadeIn",t.totalFeeMsat),A.R7$(),A.Lme("",A.i5U(2,3,t.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.bMT(3,6,t.filteredEventsBySelectedPeriod.length||0)," Events")}}function Mf(i,D){1&i&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function If(i,D){if(1&i&&(A.j41(0,"span")(1,"span",20),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.j41(4,"span",20),A.EFF(5),A.nI1(6,"number"),A.k0s()()),2&i){const t=D.model,l=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(l.selReportBy===l.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(l.selReportBy===l.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function Df(i,D){if(1&i){const t=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartBarSelected(c))})("mouseup",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartMouseUp(c))}),A.DNE(1,If,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("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 vf(i,D){if(1&i&&A.nrm(0,"rtl-cln-forwarding-history",21),2&i){const t=A.XpG();A.Y8G("pageId","reports")("tableId","routing")("eventsData",t.filteredEventsBySelectedPeriod)("selFilter",t.eventFilterValue)}}let Ff=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.dataService=j,this.reportPeriod=r.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=r.aR,this.selReportBy=r.aR.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.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.f7.XS||this.screenSize===r.f7.SM),this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t.forwardingHistory.status===r.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===r.wn.COMPLETED&&(this.events=t.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(t))}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case r.f7.MD:this.screenPaddingX=t.width/10;break;case r.f7.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,l){const c=Math.round(t.getTime()/1e3),j=Math.round(l.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(PA=>{PA.received_time&&PA.received_time>=c&&PA.received_time0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===r.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+r.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const l=Math.round(t.getTime()/1e3),c=[];if(this.totalFeeMsat=0,this.reportPeriod===r.rs[1]){for(let j=0;j<12;j++)c.push({name:r.KR[j].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(j=>{const PA=j.received_time?new Date(1e3*+j.received_time).getMonth():12;return c[PA].extra.totalEvents=c[PA].extra.totalEvents+1,c[PA].value=c[PA].value+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let j=0;j{const PA=j.received_time?Math.floor((+j.received_time-l)/this.secondsInADay):0;return c[PA].extra.totalEvents=c[PA].extra.totalEvents+1,c[PA].value=c[PA].value+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}return c}prepareEventsReport(t){const l=Math.round(t.getTime()/1e3),c=[];if(this.totalFeeMsat=0,this.reportPeriod===r.rs[1]){for(let j=0;j<12;j++)c.push({name:r.KR[j].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(j=>{const PA=j.received_time?new Date(1e3*+j.received_time).getMonth():12;return c[PA].value=c[PA].value+1,c[PA].extra.totalFees=c[PA].extra.totalFees+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let j=0;j{const PA=j.received_time?Math.floor((+j.received_time-l)/this.secondsInADay):0;return c[PA].value=c[PA].value+1,c[PA].extra.totalFees=c[PA].extra.totalFees+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}return c}onSelectionChange(t){const l=t.selDate.getMonth(),c=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.rs[1]?(this.startDate=new Date(c,0,1,0,0,0),this.endDate=new Date(c,11,31,23,59,59)):(this.startDate=new Date(c,l,1,0,0,0),this.endDate=new Date(c,l,this.getMonthDays(l,c),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.KR[t].days+1:r.KR[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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing-report"]],hostBindings:function(l,c){1&l&&A.bIt("mouseup",function(PA){return c.onChartMouseUp(PA)})},decls:19,vars:9,consts:[["tooltipTemplate",""],["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 center",1,"my-1",3,"ngModelChange","change","ngModel"],[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,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(l,c){1&l&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(PA){return c.onSelectionChange(PA)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(PA){return A.DH7(c.selReportBy,PA)||(c.selReportBy=PA),PA}),A.bIt("change",function(){return c.onSelReportByChange()}),A.j41(4,"span",5),A.EFF(5,"Report By: "),A.k0s(),A.j41(6,"mat-radio-button",6),A.EFF(7,"Fees"),A.k0s(),A.j41(8,"mat-radio-button",7),A.EFF(9,"Events"),A.k0s()()(),A.j41(10,"div",8),A.DNE(11,Qf,4,0,"div",9)(12,mf,2,1,"div",10)(13,pf,4,8,"div",11)(14,Mf,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,Df,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,vf,1,4,"rtl-cln-forwarding-history",14),A.k0s()()()),2&l&&(A.R7$(3),A.R50("ngModel",c.selReportBy),A.R7$(3),A.FS9("value",c.reportBy.FEES),A.R7$(2),A.FS9("value",c.reportBy.EVENTS),A.R7$(3),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.COMPLETED&&c.routingReportData.length>0&&c.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.COMPLETED&&(c.routingReportData.length<=0||c.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",c.routingReportData.length>0&&c.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",c.filteredEventsBySelectedPeriod&&c.filteredEventsBySelectedPeriod.length>0))},dependencies:[st.bT,iA.BC,iA.vS,n.DJ,n.sA,n.UI,B.HM,wn.VT,wn._g,Xl.L8,Zl.m,Ol,st.QX],data:{animation:[Kl.q]}})}return i})();var yf=Pt(5085);function xf(i,D){if(1&i&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Lme(" Paid ",A.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Yf(i,D){if(1&i&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Lme(" Received ",A.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Sf(i,D){if(1&i&&(A.j41(0,"div",9),A.DNE(1,xf,4,7,"div",10)(2,Yf,4,7,"div",10),A.k0s()),2&i){const t=A.XpG();A.Y8G("@fadeIn",t.transactionsReportSummary),A.R7$(),A.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod),A.R7$(),A.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function Nf(i,D){1&i&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function bf(i,D){if(1&i&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.model;A.R7$(),A.LHq("",t.name,": ",A.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",A.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function Rf(i,D){if(1&i){const t=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartBarSelected(c))})("mouseup",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartMouseUp(c))}),A.DNE(1,bf,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("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 Tf(i,D){if(1&i&&A.nrm(0,"rtl-transactions-report-table",15),2&i){const t=A.XpG();A.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let Uf=(()=>{class i{constructor(t,l,c){this.logger=t,this.commonService=l,this.store=c,this.scrollRanges=r.rs,this.reportPeriod=r.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:r.md,sortBy:"date",sortOrder:r.oi.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.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.f7.XS||this.screenSize===r.f7.SM),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.KT).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(E.Pj))).subscribe(([t,l])=>{this.payments=t.payments,this.invoices=l.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case r.f7.MD:this.screenPaddingX=t.width/10;break;case r.f7.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.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+r.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,l){const c=Math.round(t.getTime()/1e3),j=Math.round(l.getTime()/1e3),PA=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const WA=this.payments?.filter(fe=>"complete"===fe.status&&fe.created_at&&fe.created_at>=c&&fe.created_at"paid"===fe.status&&fe.paid_at&&fe.paid_at>=c&&fe.paid_at{const cn=new Date(1e3*(fe.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(fe.amount_sent_msat||0),PA[cn].series[0].value=PA[cn].series[0].value+(fe.amount_sent_msat||0)/1e3,PA[cn].series[0].extra.total=PA[cn].series[0].extra.total+1,this.transactionsReportSummary}),an?.map(fe=>{const cn=new Date(1e3*+(fe.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(fe.amount_received_msat||0),PA[cn].series[1].value=PA[cn].series[1].value+(fe.amount_received_msat||0)/1e3,PA[cn].series[1].extra.total=PA[cn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let fe=0;fe{const cn=Math.floor((+(fe.created_at||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(fe.amount_sent_msat||0),PA[cn].series[0].value=PA[cn].series[0].value+(fe.amount_sent_msat||0)/1e3,PA[cn].series[0].extra.total=PA[cn].series[0].extra.total+1,this.transactionsReportSummary}),an?.map(fe=>{const cn=Math.floor((+(fe.paid_at||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(fe.amount_received_msat||0),PA[cn].series[1].value=PA[cn].series[1].value+(fe.amount_received_msat||0)/1e3,PA[cn].series[1].extra.total=PA[cn].series[1].extra.total+1,this.transactionsReportSummary})}return PA}prepareTableData(){return this.transactionsReportData?.reduce((t,l)=>l.series[0].extra.total>0||l.series[1].extra.total>0?t.concat({date:l.date,amount_paid:l.series[0].value,num_payments:l.series[0].extra.total,amount_received:l.series[1].value,num_invoices:l.series[1].extra.total}):t,[])}onSelectionChange(t){const l=t.selDate.getMonth(),c=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.rs[1]?(this.startDate=new Date(c,0,1,0,0,0),this.endDate=new Date(c,11,31,23,59,59)):(this.startDate=new Date(c,l,1,0,0,0),this.endDate=new Date(c,l,this.getMonthDays(l,c),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.KR[t].days+1:r.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(l,c){1&l&&A.bIt("mouseup",function(PA){return c.onChartMouseUp(PA)})},decls:9,vars:4,consts:[["tooltipTemplate",""],["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,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(l,c){1&l&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(PA){return c.onSelectionChange(PA)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,Sf,3,3,"div",4)(4,Nf,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,Rf,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,Tf,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&l&&(A.R7$(3),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",c.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0))},dependencies:[st.bT,n.DJ,n.sA,n.UI,Xl.Dl,Zl.m,yf.T,st.QX],data:{animation:[Kl.q]}})}return i})();var Pe=Pt(7186),Lf=Pt(13);function Pf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let zf=(()=>{class i{constructor(t){this.router=t,this.faSearch=u.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-graph"]],decls:13,vars:3,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Graph Lookups"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,Pf,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faSearch),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var Gf=Pt(2643),Hf=Pt(7235);function kf(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.offerError)}}function jf(i,D){if(1&i&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,kf,2,1,"span",23),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.offerError)}}let Of=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.store=c,this.decimalPipe=j,this.commonService=PA,this.actions=WA,this.faExclamationTriangle=u.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=r.md,this.offerError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.issuer=this.information.alias}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===t.payload.action&&(t.payload.status===r.wn.ERROR&&(this.offerError=t.payload.message),t.payload.status===r.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const t=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,_.y0)({payload:{amount:t,description:this.description,issuer:this.issuer}}))}resetData(){this.description="",this.issuer=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:t=>{this.offerValueHint="= "+this.decimalPipe.transform(t.OTHER,r.k.OTHER)+" "+t.unit},error:t=>{this.offerValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-create-offer"]],decls:34,vars:8,consts:[["addOfferForm","ngForm"],["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 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"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","1","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","2","name","offerValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","58","fxLayoutAlign","start end"],["matInput","","tabindex","3","name","issuer",3,"ngModelChange","ngModel"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Offer"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.description,WA)||(c.description=WA),A.Njj(WA)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.offerValue,WA)||(c.offerValue=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onOfferValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint"),A.EFF(23),A.k0s()(),A.j41(24,"mat-form-field",15)(25,"mat-label"),A.EFF(26,"Issuer"),A.k0s(),A.j41(27,"input",16),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.issuer,WA)||(c.issuer=WA),A.Njj(WA)}),A.k0s()()(),A.DNE(28,jf,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&l&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",c.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",c.offerValue),A.R7$(4),A.JRh(c.offerValueHint),A.R7$(4),A.R50("ngModel",c.issuer),A.R7$(),A.Y8G("ngIf",""!==c.offerError))},dependencies:[st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,J.N,BA.V]})}return i})();var ql=Pt(2142);const Jf=()=>["all"],Vf=i=>({"error-border":i}),Wf=()=>["no_offer"],_l=i=>({"mr-0":i}),$l=i=>({width:i}),Kf=i=>({"display-none":i});function Xf(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Zf(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function qf(i,D){1&i&&A.nrm(0,"th",36)}function _f(i,D){if(1&i&&A.nrm(0,"span",40),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_l,t.screenSize===t.screenSizeEnum.XS))}}function $f(i,D){if(1&i&&A.nrm(0,"span",41),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_l,t.screenSize===t.screenSizeEnum.XS))}}function Ah(i,D){if(1&i&&(A.j41(0,"td",37),A.DNE(1,_f,1,3,"span",38)(2,$f,1,3,"span",39),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.active),A.R7$(),A.Y8G("ngIf",!t.active)}}function th(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function eh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",t.offer_id," ")}}function nh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function ih(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t.single_use?"Yes":"No")}}function rh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function ah(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",t.used?"Yes":"No"," ")}}function sh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function oh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",t.bolt12," ")}}function lh(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function ch(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onDisableOffer(c))}),A.EFF(1,"Disable Offer"),A.k0s()}}function gh(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onPrintOffer(c))}),A.EFF(1,"Export QR code"),A.k0s()}}function Bh(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",49)(1,"div",46)(2,"mat-select",50),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOfferClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,ch,2,0,"mat-option",51)(7,gh,2,0,"mat-option",51),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(6),A.Y8G("ngIf",t.active),A.R7$(),A.Y8G("ngIf",t.active)}}function uh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function fh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function hh(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Eh(i,D){if(1&i&&(A.j41(0,"td",52),A.DNE(1,uh,2,0,"p",53)(2,fh,2,0,"p",53)(3,hh,2,1,"p",53),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function Ch(i,D){if(1&i&&A.nrm(0,"tr",54),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Kf,(null==t.offers?null:t.offers.data)&&(null==t.offers||null==t.offers.data?null:t.offers.data.length)>0))}}function wh(i,D){1&i&&A.nrm(0,"tr",55)}function dh(i,D){1&i&&A.nrm(0,"tr",56)}let Qh=(()=>{class i{constructor(t,l,c,j,PA,WA,an){this.logger=t,this.store=l,this.commonService=c,this.rtlEffects=j,this.dataService=PA,this.decimalPipe=WA,this.camelCaseWithReplace=an,this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:r.md,sortBy:"offer_id",sortOrder:r.oi.DESCENDING},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.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.O5).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,AA.xO)({payload:{data:{pageSize:this.pageSize,component:Of}}}))}onOfferClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{used:t.used,single_use:t.single_use,active:t.active,offer_id:t.offer_id,bolt12:t.bolt12,created:t.created,label:t.label},newlyAdded:!1,component:ql.f}}}))}onDisableOffer(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(t.offer_id||t.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(l=>{l&&this.store.dispatch((0,_.jQ)({payload:{offer_id:t.offer_id}}))})}onPrintOffer(t){this.dataService.decodePayment(t.bolt12,!1).pipe((0,Fe.s)(1)).subscribe(l=>{l.offer_id&&!l.offer_amount_msat&&(l.offer_amount_msat=0);const c={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:l.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:l.offer_description?l.offer_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:l?.offer_amount_msat&&0!==l?.offer_amount_msat?this.decimalPipe.transform((l.offer_amount_msat||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"}};Gf.createPdf(c,null,null,Hf.b.vfs).download("Offer-"+(l&&l.offer_description?l.offer_description:t.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offers.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.active?" active":" inactive")+(t.used?" yes":" no")+(t.single_use?" single":" multiple")+JSON.stringify(t).toLowerCase(),("active"===l||"inactive"===l||"single"===l||"multiple"===l)&&(l=" "+l);break;case"active":c=t?.active?"active":"inactive";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}loadOffersTable(t){this.offers=new F.I6(t?[...t]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(QA.H),A.rXU(Qe.u),A.rXU(st.QX),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-offers-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Offers")}])],decls:49,vars:19,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return A.eBV(j),A.Njj(c.openCreateOfferModal())}),A.EFF(3,"Create Offer"),A.k0s()(),A.j41(4,"div",4)(5,"div",5)(6,"div",6),A.nrm(7,"fa-icon",7),A.j41(8,"span",8),A.EFF(9,"Offers History"),A.k0s()(),A.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),A.EFF(13,"Filter By"),A.k0s(),A.j41(14,"mat-select",11),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,Xf,2,2,"mat-option",12),A.k0s()()(),A.j41(17,"mat-form-field",10)(18,"mat-label"),A.EFF(19,"Filter"),A.k0s(),A.j41(20,"input",13),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,Zf,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,qf,1,0,"th",18)(27,Ah,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,th,2,0,"th",21)(30,eh,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,nh,2,0,"th",21)(33,ih,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,rh,2,0,"th",21)(36,ah,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,sh,2,0,"th",21)(39,oh,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,lh,6,0,"th",26)(42,Bh,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,Eh,4,3,"td",29),A.bVm(),A.DNE(45,Ch,1,3,"tr",30)(46,wh,1,0,"tr",31)(47,dh,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(7),A.Y8G("icon",c.faHistory),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,Jf).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.offers)("ngClass",A.eq3(16,Vf,""!==c.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,Wf)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const mh=()=>["all"],ph=i=>({"error-border":i}),Mh=()=>["no_offer"],zl=i=>({width:i}),Ih=i=>({"display-none":i});function Dh(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function vh(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function Fh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function yh(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,t.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function xh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function Yh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.title)}}function Sh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function Nh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.description)}}function bh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function Rh(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t.issuer)}}function Th(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function Uh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.bolt12)}}function Lh(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function Ph(i,D){if(1&i&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(0===t.amountMSat?"Open":A.bMT(3,1,t.amountMSat/1e3))}}function zh(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",42)(1,"div",43)(2,"mat-select",44),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Gh(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",46)(1,"div",43)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOfferBookmarkClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onRePayOffer(c))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onDeleteBookmark(c))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function Hh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function kh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function jh(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Oh(i,D){if(1&i&&(A.j41(0,"td",48),A.DNE(1,Hh,2,0,"p",49)(2,kh,2,0,"p",49)(3,jh,2,1,"p",49),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function Jh(i,D){if(1&i&&A.nrm(0,"tr",50),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Ih,(null==t.offersBookmarks?null:t.offersBookmarks.data)&&(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)>0))}}function Vh(i,D){1&i&&A.nrm(0,"tr",51)}function Wh(i,D){1&i&&A.nrm(0,"tr",52)}let Kh=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.commonService=c,this.rtlEffects=j,this.datePipe=PA,this.camelCaseWithReplace=WA,this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:r.md,sortBy:"lastUpdatedAt",sortOrder:r.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new F.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.ip).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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,AA.xO)({payload:{data:{offer:{bolt12:t.bolt12},newlyAdded:!1,component:ql.f}}}))}onDeleteBookmark(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(t.title||t.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[2])).subscribe(l=>{l&&this.store.dispatch((0,_.ED)({payload:{bolt12:t.bolt12}}))})}onRePayOffer(t){this.store.dispatch((0,AA.xO)({payload:{data:{paymentType:r.Y0.OFFER,bolt12:t.bolt12,offerTitle:t.title,component:Jt}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"lastUpdatedAt":c=this.datePipe.transform(new Date(t.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":c=(t.amountMSat&&0!==t.amountMSat?(t.amountMSat/1e3).toString():"Open")||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadOffersTable(t){this.offersBookmarks=new F.I6(t?[...t]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Offer Bookmarks")}])],decls:50,vars:19,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","issuer"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1),A.nrm(1,"div",2),A.j41(2,"div",3)(3,"div",4)(4,"div",5),A.nrm(5,"fa-icon",6),A.j41(6,"span",7),A.EFF(7,"Offer Bookmarks"),A.k0s()(),A.j41(8,"div",8)(9,"mat-form-field",9)(10,"mat-label"),A.EFF(11,"Filter By"),A.k0s(),A.j41(12,"mat-select",10),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,Dh,2,2,"mat-option",11),A.k0s()()(),A.j41(15,"mat-form-field",9)(16,"mat-label"),A.EFF(17,"Filter"),A.k0s(),A.j41(18,"input",12),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,vh,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,Fh,2,0,"th",17)(25,yh,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,xh,2,0,"th",17)(28,Yh,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,Sh,2,0,"th",17)(31,Nh,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,bh,2,0,"th",17)(34,Rh,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,Th,2,0,"th",17)(37,Uh,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,Lh,2,0,"th",24)(40,Ph,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,zh,6,0,"th",26)(43,Gh,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,Oh,4,3,"td",29),A.bVm(),A.DNE(46,Jh,1,3,"tr",30)(47,Vh,1,0,"tr",31)(48,Wh,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(5),A.Y8G("icon",c.faHistory),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,mh).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.offersBookmarks)("ngClass",A.eq3(16,ph,""!==c.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,Mh)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const Xh=()=>["all"],Zh=()=>["no_event"],Ac=i=>({width:i}),qh=i=>({"display-none":i});function _h(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function $h(i,D){if(1&i&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function AE(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 local failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,$h,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()()}if(2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.faExclamationTriangle),A.R7$(9),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,Xh).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function tE(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function eE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function nE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function iE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function rE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function aE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function sE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ac,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function oE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function lE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function cE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function gE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ac,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function BE(i,D){1&i&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function uE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function fE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function hE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.style)}}function EE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function CE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.JRh(l.CLNFailReason[null==t?null:t.failreason])}}function wE(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function dE(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onFailedLocalEventClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function QE(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function mE(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function pE(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function ME(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,QE,2,0,"p",54)(2,mE,2,0,"p",54)(3,pE,2,1,"p",54),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("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.R7$(),A.Y8G("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.R7$(),A.Y8G("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)}}function IE(i,D){if(1&i&&A.nrm(0,"tr",55),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,qh,(null==t.failedLocalForwardingEvents?null:t.failedLocalForwardingEvents.data)&&(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)>0))}}function DE(i,D){1&i&&A.nrm(0,"tr",56)}function vE(i,D){1&i&&A.nrm(0,"tr",57)}function FE(i,D){if(1&i&&(A.j41(0,"div",18),A.DNE(1,tE,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,eE,2,0,"th",22)(6,nE,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,iE,2,0,"th",22)(9,rE,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,aE,2,0,"th",22)(12,sE,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,oE,2,0,"th",22)(15,lE,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,cE,2,0,"th",22)(18,gE,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,BE,2,0,"th",29)(21,uE,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,fE,2,0,"th",22)(24,hE,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,EE,2,0,"th",22)(27,CE,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,wE,6,0,"th",33)(30,dE,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,ME,4,3,"td",36),A.bVm(),A.DNE(33,IE,1,3,"tr",37)(34,DE,1,0,"tr",38)(35,vE,1,0,"tr",39),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedLocalForwardingEvents),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(7,Zh)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function yE(i,D){if(1&i&&A.nrm(0,"mat-paginator",58),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let xE=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.faExclamationTriangle=u.zpE,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.CLNFailReason=r.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new F.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,_.uK)({payload:{status:r.xk.LOCAL_FAILED}})),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.aJ).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.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&&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,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"Amount In (mSats)",width:100,type:r.UN.NUMBER}],[{key:"failreason",value:t.failreason?this.CLNFailReason[t.failreason]:"",title:"Reason for Failure",width:100,type:r.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase():"")+(t.failreason&&this.CLNFailReason[t.failreason]?this.CLNFailReason[t.failreason].toLowerCase():"")+(t.in_msat?t.in_msat:"");break;case"received_time":c=this.datePipe.transform(new Date(1e3*(t.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"failreason":c=t?.failreason?this.CLNFailReason[t?.failreason]:"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"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===c.indexOf(l):c.includes(l)}}loadLocalfailedLocalEventsTable(t){this.failedLocalForwardingEvents=new F.I6([...t]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"failreason":return l.failreason?this.CLNFailReason[l.failreason]:"";default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Local failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","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","fxLayoutAlign","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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[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,"matSortActive","matSortDirection","dataSource"],["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.gt-xs","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(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,_h,2,1,"div",2)(2,AE,18,5,"div",3)(3,FE,36,8,"div",4)(4,yE,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const YE=["form"];function SE(i,D){1&i&&A.eu8(0)}function NE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function bE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function RE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function TE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(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.k0s())}function UE(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",t.totalBalance,".")}}function LE(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.channelConnectionError)}}function PE(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,LE,2,1,"span",19),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.channelConnectionError)}}function zE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function GE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.type)}}function HE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function kE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.address)}}function jE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function OE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.port)}}function JE(i,D){1&i&&A.nrm(0,"tr",49)}function VE(i,D){1&i&&A.nrm(0,"tr",50)}function WE(i,D){if(1&i&&(A.j41(0,"mat-expansion-panel",30)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A.EFF(4,"Node: \xa0"),A.k0s(),A.j41(5,"strong",31),A.EFF(6),A.k0s()()(),A.j41(7,"div",13)(8,"div",6)(9,"div",7)(10,"h4",32),A.EFF(11,"Pubkey"),A.k0s(),A.j41(12,"span",33),A.EFF(13),A.k0s()()(),A.nrm(14,"mat-divider",34),A.j41(15,"div",6)(16,"div",7)(17,"h4",32),A.EFF(18,"Last Timestamp"),A.k0s(),A.j41(19,"span",35),A.EFF(20),A.nI1(21,"date"),A.k0s()()(),A.nrm(22,"mat-divider",34),A.j41(23,"div",36)(24,"h4",37),A.EFF(25,"Addresses"),A.k0s(),A.j41(26,"div",38)(27,"table",39,5),A.qex(29,40),A.DNE(30,zE,2,0,"th",41)(31,GE,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,HE,2,0,"th",41)(34,kE,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,jE,2,0,"th",41)(37,OE,2,1,"td",42),A.bVm(),A.DNE(38,JE,1,0,"tr",45)(39,VE,1,0,"tr",46),A.k0s()()()()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh((null==t.node?null:t.node.alias)||(null==t.node?null:t.node.nodeid)),A.R7$(7),A.JRh(t.node.nodeid),A.R7$(7),A.JRh(A.i5U(21,6,1e3*t.node.last_timestamp,"dd/MMM/y HH:mm")),A.R7$(7),A.Y8G("dataSource",t.node.addresses),A.R7$(11),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function KE(i,D){if(1&i&&A.DNE(0,WE,40,9,"mat-expansion-panel",29),2&i){const t=A.XpG();A.Y8G("ngIf",t.node)}}let XE=(()=>{class i{constructor(t,l,c,j){this.dialogRef=t,this.data=l,this.actions=c,this.store=j,this.faExclamationTriangle=u.zpE,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new o.B,new o.B]}ngOnInit(){this.alertTitle=this.data.alertTitle||"",this.totalBalance=this.data.message?.balance||0,this.node=this.data.message?.node||{},this.requestedAmount=this.data.message?.requestedAmount||0,this.feeRate=this.data.message?.feeRate||0,this.localAmount=this.data.message?.localAmount||0,this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.FETCH_CHANNELS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message),t.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){this.form.resetForm(),this.form.controls.ramount.setValue(this.data.message?.requestedAmount),this.form.controls.feerate.setValue(this.data.message?.feeRate),this.form.controls.lamount.setValue(this.data.message?.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){this.node.channel_opening_fee=+(this.node.option_will_fund?.lease_fee_base_msat||0)/1e3+this.requestedAmount*+(this.node.option_will_fund?.lease_fee_basis||0)/1e4+ +(this.node.option_will_fund?.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||"",amount: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,_.vL)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(fA.En),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(l,c){if(1&l&&A.GBs(YE,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:54,vars:24,consts:[["form","ngForm"],["ramount","ngModel"],["feeRt","ngModel"],["lamount","ngModel"],["nodeDetailsExpansionBlock",""],["table",""],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","ramount",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","required","","name","feerate",3,"ngModelChange","keyup","step","min","ngModel"],["matInput","","type","number","tabindex","3","required","","name","lamount",3,"ngModelChange","step","min","max","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"],["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"],["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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,SE,1,0,"ng-container",14),A.j41(12,"div",15)(13,"mat-form-field",16)(14,"mat-label"),A.EFF(15,"Requested Amount"),A.k0s(),A.j41(16,"input",17,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.requestedAmount,WA)||(c.requestedAmount=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,NE,2,0,"mat-error",19),A.k0s(),A.j41(21,"mat-form-field",16)(22,"mat-label"),A.EFF(23,"Fee Rate"),A.k0s(),A.j41(24,"input",20,2),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.feeRate,WA)||(c.feeRate=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,bE,2,0,"mat-error",19),A.k0s(),A.j41(29,"mat-form-field",16)(30,"mat-label"),A.EFF(31,"Local Amount"),A.k0s(),A.j41(32,"input",21,3),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.localAmount,WA)||(c.localAmount=WA),A.Njj(WA)}),A.k0s(),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",18),A.EFF(38," Sats "),A.k0s(),A.DNE(39,RE,2,0,"mat-error",19)(40,TE,2,0,"mat-error",19)(41,UE,2,1,"mat-error",19),A.k0s()(),A.j41(42,"div",22)(43,"span"),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.DNE(46,PE,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,KE,1,1,"ng-template",null,4,A.C5r)}if(2&l){const j=A.sdS(17),PA=A.sdS(25),WA=A.sdS(33),an=A.sdS(53);A.R7$(5),A.JRh(c.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",an),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",c.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==j.errors?null:j.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",c.feeRate),A.R7$(4),A.Y8G("ngIf",null==PA.errors?null:PA.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",c.totalBalance),A.R50("ngModel",c.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,c.totalBalance-(c.localAmount?c.localAmount:0)),""),A.R7$(4),A.Y8G("ngIf",null==WA.errors?null:WA.errors.required),A.R7$(),A.Y8G("ngIf",null==WA.errors?null:WA.errors.min),A.R7$(),A.Y8G("ngIf",null==WA.errors?null:WA.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,c.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==c.channelConnectionError)}},dependencies:[st.bT,st.T3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.zX,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,R.$z,p.m2,p.MM,Nn.GK,Nn.Z2,Nn.WN,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,ri.q,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,J.N,Va.z,BA.V,st.QX,st.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();var ZE=Pt(6471);const qE=()=>["all"],_E=i=>({"error-border":i}),$E=()=>["no_lqNode"],tc=i=>({width:i}),AC=i=>({"display-none":i});function tC(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function eC(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function nC(i,D){if(1&i&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function iC(i,D){1&i&&A.nrm(0,"mat-progress-bar",50)}function rC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function aC(i,D){if(1&i&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ","tor"===t?"Tor":"ipv"===t?"Clearnet":t," ")}}function sC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,aC,2,1,"mat-chip",56),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,tc,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",null==t?null:t.alias," "),A.R7$(2),A.Y8G("ngForOf",t.address_types)}}function oC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function lC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,tc,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.nodeid)}}function cC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function gC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function BC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function uC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t||null==t.option_will_fund?null:t.option_will_fund.compact_lease)}}function fC(i,D){1&i&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function hC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function EC(i,D){1&i&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function CC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Lme(" ",A.i5U(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.i5U(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 wC(i,D){1&i&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function dC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,t.channel_opening_fee,"1.0-0")," ")}}function QC(i,D){1&i&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function mC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,null==t||null==t.option_will_fund?null:t.option_will_fund.funding_weight,"1.0-0")," ")}}function pC(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",59)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function MC(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",65)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onViewLeaseInfo(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOpenChannel(c))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.viewLeaseOn(c,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.viewLeaseOn(c,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function IC(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function DC(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function vC(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function FC(i,D){if(1&i&&(A.j41(0,"td",66),A.DNE(1,IC,2,0,"p",17)(2,DC,2,0,"p",17)(3,vC,2,1,"p",17),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.ERROR)}}function yC(i,D){if(1&i&&A.nrm(0,"tr",67),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,AC,(null==t.liquidityNodes?null:t.liquidityNodes.data)&&(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)>0))}}function xC(i,D){1&i&&A.nrm(0,"tr",68)}function YC(i,D){1&i&&A.nrm(0,"tr",69)}let SC=(()=>{class i{constructor(t,l,c,j,PA,WA,an){this.logger=t,this.store=l,this.dataService=c,this.commonService=j,this.rtlEffects=PA,this.datePipe=WA,this.camelCaseWithReplace=an,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:r.md,sortBy:"channel_opening_fee",sortOrder:r.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=u.e4L,this.faExclamationTriangle=u.zpE,this.faUsers=u.gdJ,this.totalBalance=0,this.channelAmount=1e5,this.channel_opening_feeRate=10,this.node_capacity=5e5,this.channel_count=5,this.liquidityNodesData=[],this.liquidityNodes=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=r.wn.INITIATED,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],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(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",t.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=t.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.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.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Gr.z)([this.store.select(E.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,g.Q)(this.unSubs[1])).subscribe({next:([t,l])=>{this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t),l&&!l.length&&(l=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(l)),this.listNodesCallStatus=r.wn.COMPLETED,l.forEach(c=>{c.address_types=Array.from(new Set(c.addresses?.reduce((PA,WA)=>((WA.type?.includes("ipv")||WA.type?.includes("tor"))&&PA.push(WA.type?.substring(0,3)),PA),[])))}),this.liquidityNodesData=l.filter(c=>c.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:t=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(t)),this.listNodesCallStatus=r.wn.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 l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.alias?t.alias.toLocaleLowerCase():"")+(t.channel_opening_fee?t.channel_opening_fee+" Sats":"")+(t.option_will_fund?.lease_fee_base_msat?t.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(t.option_will_fund?.lease_fee_basis?t.option_will_fund?.lease_fee_basis/100+"%":"")+(t.option_will_fund?.channel_fee_max_base_msat?t.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(t.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*t.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(t.address_types?t.address_types.reduce((j,PA)=>j+("tor"===PA?" tor":"ipv"===PA?" clearnet":" "+PA.toLowerCase()),""):"");break;case"alias":c=(t?.alias?.toLowerCase()||" ")+t?.address_types?.reduce((j,PA)=>j+(PA?"ipv"===PA?"clearnet":PA:"")," ")||"";break;case"last_timestamp":c=this.datePipe.transform(new Date(1e3*(t.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":c=t?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":c=((t.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((t.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":c=((t.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(t.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadLiqNodesTable(t){this.liquidityNodes=new F.I6([...t]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(t,l){"LN"===l?window.open("https://lnrouter.app/node/"+t.nodeid,"_blank"):"AM"===l&&window.open("https://amboss.space/node/"+t.nodeid,"_blank")}onOpenChannel(t){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:t,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:XE}}}))}onViewLeaseInfo(t){const l=t.addresses?.reduce((PA,WA)=>(WA.address&&WA.address.length>40&&(WA.address=WA.address.substring(0,39)+"..."),PA.concat(JSON.stringify(WA).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),c=[];if(t.features&&""!==t.features.trim()){const PA=parseInt(t.features,16);r.TH.forEach(WA=>{PA&1<{PA&&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()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(Qe.u),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Liquidity Ads")}])],decls:83,vars:26,consts:[["formAsk","ngForm"],["table",""],["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","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex.gt-xs","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"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","30"],[1,"page-text"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxLayout","column","fxFlex","34"],["autoFocus","","matInput","","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","channel_opening_feeRate","type","number","step","10","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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.gt-xs","row","fxLayoutAlign.gt-xs","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(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2),A.nrm(1,"fa-icon",3),A.j41(2,"span",4),A.EFF(3,"Liquidity Ads"),A.k0s()(),A.j41(4,"div",5)(5,"mat-card")(6,"mat-card-content",6)(7,"div",7)(8,"form",8,0)(10,"div",9),A.nrm(11,"fa-icon",10),A.j41(12,"span"),A.EFF(13,"Ads should be supplemented with additional research of the node, before buying liquidity."),A.k0s()(),A.j41(14,"div",11)(15,"div",12)(16,"span",13),A.EFF(17,"Liquidity Ask"),A.k0s(),A.j41(18,"mat-icon",14),A.EFF(19,"info_outline"),A.k0s()(),A.j41(20,"mat-form-field",15)(21,"mat-label"),A.EFF(22,"Channel Amount (Sats)"),A.k0s(),A.j41(23,"input",16),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.channelAmount,WA)||(c.channelAmount=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,tC,2,0,"mat-error",17),A.k0s(),A.j41(25,"mat-form-field",15)(26,"mat-label"),A.EFF(27,"Channel Opening Fee Rate (Sats/vByte)"),A.k0s(),A.j41(28,"input",18),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.channel_opening_feeRate,WA)||(c.channel_opening_feeRate=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,eC,2,0,"mat-error",17),A.k0s()()(),A.j41(30,"div",19)(31,"div",20),A.nrm(32,"fa-icon",3),A.j41(33,"span",4),A.EFF(34,"Liquidity Providing Peers"),A.k0s()(),A.j41(35,"div",21)(36,"mat-form-field",22)(37,"mat-label"),A.EFF(38,"Filter By"),A.k0s(),A.j41(39,"mat-select",23),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,nC,2,2,"mat-option",24),A.k0s()()(),A.j41(42,"mat-form-field",22)(43,"mat-label"),A.EFF(44,"Filter"),A.k0s(),A.j41(45,"input",25),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,iC,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,rC,2,0,"th",30)(52,sC,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,oC,2,0,"th",30)(55,lC,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,cC,2,0,"th",30)(58,gC,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,BC,2,0,"th",30)(61,uC,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,fC,2,0,"th",36)(64,hC,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,EC,2,0,"th",36)(67,CC,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,wC,2,0,"th",39)(70,dC,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,QC,2,0,"th",39)(73,mC,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,pC,6,0,"th",36)(76,MC,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,FC,4,3,"td",44),A.bVm(),A.DNE(79,yC,1,3,"tr",45)(80,xC,1,0,"tr",46)(81,YC,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&l&&(A.R7$(),A.Y8G("icon",c.faBullhorn),A.R7$(10),A.Y8G("icon",c.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",c.askTooltipMsg),A.R7$(5),A.R50("ngModel",c.channelAmount),A.R7$(),A.Y8G("ngIf",!c.channelAmount),A.R7$(4),A.R50("ngModel",c.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!c.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",c.faUsers),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,qE).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.listNodesCallStatus===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.liquidityNodes)("ngClass",A.eq3(23,_E,""!==c.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,$E)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,p.RN,p.m2,y.An,wA.fg,IA.rl,IA.nJ,IA.TL,B.HM,ZE.Jl,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,J.N,st.QX,st.vh]})}return i})();const NC=[{path:"",component:s,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Bo,canActivate:[(0,Pe.Wz)()]},{path:"onchain",component:_o,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:K0,canActivate:[(0,Pe.Wz)()]},{path:"send/:selTab",component:ka,data:{sweepAll:!1},canActivate:[(0,Pe.Wz)()]},{path:"sweep/:selTab",component:ka,data:{sweepAll:!0},canActivate:[(0,Pe.Wz)()]}]},{path:"connections",component:t0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:cl,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Gt,canActivate:[(0,Pe.Wz)()]},{path:"pending",component:os,canActivate:[(0,Pe.Wz)()]},{path:"activehtlcs",component:Cf,canActivate:[(0,Pe.Wz)()]}]},{path:"peers",component:yc,data:{sweepAll:!1},canActivate:[(0,Pe.Wz)()]}]},{path:"liquidityads",component:SC,canActivate:[(0,Pe.Wz)()]},{path:"transactions",component:n0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:ga,canActivate:[(0,Pe.Wz)()]},{path:"invoices",component:Te,canActivate:[(0,Pe.Wz)()]},{path:"offers",component:Qh,canActivate:[(0,Pe.Wz)()]},{path:"offrBookmarks",component:Kh,canActivate:[(0,Pe.Wz)()]}]},{path:"messages",component:J0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:_c,canActivate:[(0,Pe.Wz)()]},{path:"verify",component:ag,canActivate:[(0,Pe.Wz)()]}]},{path:"routing",component:wr,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ol,canActivate:[(0,Pe.Wz)()]},{path:"failedtransactions",component:SB,canActivate:[(0,Pe.Wz)()]},{path:"localfail",component:xE,canActivate:[(0,Pe.Wz)()]},{path:"routingpeers",component:Iu,canActivate:[(0,Pe.Wz)()]}]},{path:"reports",component:df,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Ff,canActivate:[(0,Pe.Wz)()]},{path:"transactions",component:Uf,canActivate:[(0,Pe.Wz)()]}]},{path:"graph",component:zf,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:v0,canActivate:[(0,Pe.Wz)()]},{path:"queryroutes",component:Zc,canActivate:[(0,Pe.Wz)()]}]},{path:"rates",component:j0,canActivate:[(0,Pe.Wz)()]},{path:"**",component:Lf.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],bC=le.iI.forChild(NC);var RC=Pt(9029);let TC=(()=>{class i{static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275mod=A.$C({type:i,bootstrap:[s]});static#e=this.\u0275inj=A.G2t({imports:[st.MD,RC.G,bC]})}return i})()},2643:function(Gl){typeof self<"u"&&self,Gl.exports=function(){var br={41783:function(b,A){"use strict";A.OP=0,A.CL=1,A.CP=2,A.QU=3,A.GL=4,A.NS=5,A.EX=6,A.SY=7,A.IS=8,A.PR=9,A.PO=10,A.NU=11,A.AL=12,A.HL=13,A.ID=14,A.IN=15,A.HY=16,A.BA=17,A.BB=18,A.B2=19,A.ZW=20,A.CM=21,A.WJ=22,A.H2=23,A.H3=24,A.JL=25,A.JV=26,A.JT=27,A.RI=28,A.EB=29,A.EM=30,A.ZWJ=31,A.CB=32,A.AI=33,A.BK=34,A.CJ=35,A.CR=36,A.LF=37,A.NL=38,A.SA=39,A.SG=40,A.SP=41,A.XX=42},98282:function(b,A){"use strict";A.DI_BRK=0,A.IN_BRK=1,A.CI_BRK=2,A.CP_BRK=3,A.PR_BRK=4,A.pairTable=[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4],[0,4,4,1,1,4,4,4,4,1,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,4,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[4,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,0,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,1,1,1,1,0,0,4,2,4,1,1,1,1,1,0,1,1,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,1,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,4,4,2,4,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,4,0,0,0,0,0,0,0,0,0,0,0,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,1,1,1,1,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,1,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,1,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0]]},57013:function(b,A,n){"use strict";n(18756),A.EncodeStream=n(16176),A.DecodeStream=n(78984),A.Array=n(38637),A.LazyArray=n(88687),A.Bitfield=n(72959),A.Boolean=n(64888),A.Buffer=n(77324),A.Enum=n(71499),A.Optional=n(72526),A.Reserved=n(10298),A.String=n(36291),A.Struct=n(2731),A.VersionedStruct=n(48084);var B=n(76949),a=n(63787),s=n(41545);Object.assign(A,B,a,s)},38637:function(b,A,n){"use strict";function B(u,r){var d=typeof Symbol<"u"&&u[Symbol.iterator]||u["@@iterator"];if(d)return(d=d.call(u)).next.bind(d);if(Array.isArray(u)||(d=function a(u,r){if(u){if("string"==typeof u)return s(u,r);var d=Object.prototype.toString.call(u).slice(8,-1);if("Object"===d&&u.constructor&&(d=u.constructor.name),"Map"===d||"Set"===d)return Array.from(u);if("Arguments"===d||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(d))return s(u,r)}}(u))||r&&u&&"number"==typeof u.length){d&&(u=d);var E=0;return function(){return E>=u.length?{done:!0}:{done:!1,value:u[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(u,r){(null==r||r>u.length)&&(r=u.length);for(var d=0,E=new Array(r);dthis.buffer.length)return this.flush()},C.flush=function(){if(this.bufferOffset>0)return this.push(B.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},C.writeBuffer=function(h){return this.flush(),this.push(h),this.pos+=h.length},C.writeString=function(h,Q){switch(void 0===Q&&(Q="ascii"),Q){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(B.from(h,Q));case"utf16be":for(var I=B.from(h,"utf16le"),R=0,p=I.length-1;R>>16&255,this.buffer[this.bufferOffset++]=h>>>8&255,this.buffer[this.bufferOffset++]=255&h,this.pos+=3},C.writeUInt24LE=function(h){return this.ensure(3),this.buffer[this.bufferOffset++]=255&h,this.buffer[this.bufferOffset++]=h>>>8&255,this.buffer[this.bufferOffset++]=h>>>16&255,this.pos+=3},C.writeInt24BE=function(h){return this.writeUInt24BE(h>=0?h:h+16777215+1)},C.writeInt24LE=function(h){return this.writeUInt24LE(h>=0?h:h+16777215+1)},C.fill=function(h,Q){if(Q=this.length)){if(null==this.items[h]){var Q=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*h,this.items[h]=this.type.decode(this.stream,this.ctx),this.stream.pos=Q}return this.items[h]}},C.toArray=function(){for(var h=[],Q=0,I=this.length;Q>1),(C=f.call(this,"Int"+r,d)||this)._point=1<E)throw new RangeError('The value "'+Z+'" is invalid for option "size"');var k=new Uint8Array(Z);return Object.setPrototypeOf(k,h.prototype),k}function h(Z,k,U){if("number"==typeof Z){if("string"==typeof k)throw new TypeError('The "string" argument must be of type string. Received type number');return p(Z)}return Q(Z,k,U)}function Q(Z,k,U){if("string"==typeof Z)return function m(Z,k){if(("string"!=typeof k||""===k)&&(k="utf8"),!h.isEncoding(k))throw new TypeError("Unknown encoding: "+k);var U=0|F(Z,k),hA=e(U),q=hA.write(Z,k);return q!==U&&(hA=hA.slice(0,q)),hA}(Z,k);if(ArrayBuffer.isView(Z))return function x(Z){if(ht(Z,Uint8Array)){var k=new Uint8Array(Z);return Y(k.buffer,k.byteOffset,k.byteLength)}return y(Z)}(Z);if(null==Z)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z);if(ht(Z,ArrayBuffer)||Z&&ht(Z.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(ht(Z,SharedArrayBuffer)||Z&&ht(Z.buffer,SharedArrayBuffer)))return Y(Z,k,U);if("number"==typeof Z)throw new TypeError('The "value" argument must not be of type number. Received type number');var hA=Z.valueOf&&Z.valueOf();if(null!=hA&&hA!==Z)return h.from(hA,k,U);var q=function v(Z){if(h.isBuffer(Z)){var k=0|S(Z.length),U=e(k);return 0===U.length||Z.copy(U,0,0,k),U}return void 0!==Z.length?"number"!=typeof Z.length||vt(Z.length)?e(0):y(Z):"Buffer"===Z.type&&Array.isArray(Z.data)?y(Z.data):void 0}(Z);if(q)return q;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof Z[Symbol.toPrimitive])return h.from(Z[Symbol.toPrimitive]("string"),k,U);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z)}function I(Z){if("number"!=typeof Z)throw new TypeError('"size" argument must be of type number');if(Z<0)throw new RangeError('The value "'+Z+'" is invalid for option "size"')}function p(Z){return I(Z),e(Z<0?0:0|S(Z))}function y(Z){for(var k=Z.length<0?0:0|S(Z.length),U=e(k),hA=0;hA=E)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+E.toString(16)+" bytes");return 0|Z}function F(Z,k){if(h.isBuffer(Z))return Z.length;if(ArrayBuffer.isView(Z)||ht(Z,ArrayBuffer))return Z.byteLength;if("string"!=typeof Z)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof Z);var U=Z.length,hA=arguments.length>2&&!0===arguments[2];if(!hA&&0===U)return 0;for(var q=!1;;)switch(k){case"ascii":case"latin1":case"binary":return U;case"utf8":case"utf-8":return pt(Z).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*U;case"hex":return U>>>1;case"base64":return _A(Z).length;default:if(q)return hA?-1:pt(Z).length;k=(""+k).toLowerCase(),q=!0}}function $(Z,k,U){var hA=!1;if((void 0===k||k<0)&&(k=0),k>this.length||((void 0===U||U>this.length)&&(U=this.length),U<=0)||(U>>>=0)<=(k>>>=0))return"";for(Z||(Z="utf8");;)switch(Z){case"hex":return xA(this,k,U);case"utf8":case"utf-8":return J(this,k,U);case"ascii":return eA(this,k,U);case"latin1":case"binary":return EA(this,k,U);case"base64":return HA(this,k,U);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return OA(this,k,U);default:if(hA)throw new TypeError("Unknown encoding: "+Z);Z=(Z+"").toLowerCase(),hA=!0}}function gA(Z,k,U){var hA=Z[k];Z[k]=Z[U],Z[U]=hA}function _(Z,k,U,hA,q){if(0===Z.length)return-1;if("string"==typeof U?(hA=U,U=0):U>2147483647?U=2147483647:U<-2147483648&&(U=-2147483648),vt(U=+U)&&(U=q?0:Z.length-1),U<0&&(U=Z.length+U),U>=Z.length){if(q)return-1;U=Z.length-1}else if(U<0){if(!q)return-1;U=0}if("string"==typeof k&&(k=h.from(k,hA)),h.isBuffer(k))return 0===k.length?-1:fA(Z,k,U,hA,q);if("number"==typeof k)return k&=255,"function"==typeof Uint8Array.prototype.indexOf?q?Uint8Array.prototype.indexOf.call(Z,k,U):Uint8Array.prototype.lastIndexOf.call(Z,k,U):fA(Z,[k],U,hA,q);throw new TypeError("val must be string, number or Buffer")}function fA(Z,k,U,hA,q){var nt,GA=1,At=Z.length,O=k.length;if(void 0!==hA&&("ucs2"===(hA=String(hA).toLowerCase())||"ucs-2"===hA||"utf16le"===hA||"utf-16le"===hA)){if(Z.length<2||k.length<2)return-1;GA=2,At/=2,O/=2,U/=2}function qA(Tt,yt){return 1===GA?Tt[yt]:Tt.readUInt16BE(yt*GA)}if(q){var MA=-1;for(nt=U;ntAt&&(U=At-O),nt=U;nt>=0;nt--){for(var jA=!0,ot=0;otq&&(hA=q):hA=q;var At,GA=k.length;for(hA>GA/2&&(hA=GA/2),At=0;At>8,GA.push(U%256),GA.push(hA);return GA}(k,Z.length-U),Z,U,hA)}function HA(Z,k,U){return u.fromByteArray(0===k&&U===Z.length?Z:Z.slice(k,U))}function J(Z,k,U){U=Math.min(Z.length,U);for(var hA=[],q=k;q239?4:GA>223?3:GA>191?2:1;if(q+O<=U){var qA=void 0,nt=void 0,MA=void 0,jA=void 0;switch(O){case 1:GA<128&&(At=GA);break;case 2:128==(192&(qA=Z[q+1]))&&(jA=(31&GA)<<6|63&qA)>127&&(At=jA);break;case 3:nt=Z[q+2],128==(192&(qA=Z[q+1]))&&128==(192&nt)&&(jA=(15&GA)<<12|(63&qA)<<6|63&nt)>2047&&(jA<55296||jA>57343)&&(At=jA);break;case 4:nt=Z[q+2],MA=Z[q+3],128==(192&(qA=Z[q+1]))&&128==(192&nt)&&128==(192&MA)&&(jA=(15&GA)<<18|(63&qA)<<12|(63&nt)<<6|63&MA)>65535&&jA<1114112&&(At=jA)}}null===At?(At=65533,O=1):At>65535&&(hA.push((At-=65536)>>>10&1023|55296),At=56320|1023&At),hA.push(At),q+=O}return function aA(Z){var k=Z.length;if(k<=BA)return String.fromCharCode.apply(String,Z);for(var U="",hA=0;hAq.length?(h.isBuffer(At)||(At=h.from(At)),At.copy(q,GA)):Uint8Array.prototype.set.call(q,At,GA);else{if(!h.isBuffer(At))throw new TypeError('"list" argument must be an Array of Buffers');At.copy(q,GA)}GA+=At.length}return q},h.byteLength=F,h.prototype._isBuffer=!0,h.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 U=0;UU&&(k+=" ... "),""},d&&(h.prototype[d]=h.prototype.inspect),h.prototype.compare=function(k,U,hA,q,GA){if(ht(k,Uint8Array)&&(k=h.from(k,k.offset,k.byteLength)),!h.isBuffer(k))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof k);if(void 0===U&&(U=0),void 0===hA&&(hA=k?k.length:0),void 0===q&&(q=0),void 0===GA&&(GA=this.length),U<0||hA>k.length||q<0||GA>this.length)throw new RangeError("out of range index");if(q>=GA&&U>=hA)return 0;if(q>=GA)return-1;if(U>=hA)return 1;if(this===k)return 0;for(var At=(GA>>>=0)-(q>>>=0),O=(hA>>>=0)-(U>>>=0),qA=Math.min(At,O),nt=this.slice(q,GA),MA=k.slice(U,hA),jA=0;jA>>=0,isFinite(hA)?(hA>>>=0,void 0===q&&(q="utf8")):(q=hA,hA=void 0)}var GA=this.length-U;if((void 0===hA||hA>GA)&&(hA=GA),k.length>0&&(hA<0||U<0)||U>this.length)throw new RangeError("Attempt to write outside buffer bounds");q||(q="utf8");for(var At=!1;;)switch(q){case"hex":return iA(this,k,U,hA);case"utf8":case"utf-8":return wA(this,k,U,hA);case"ascii":case"latin1":case"binary":return IA(this,k,U,hA);case"base64":return FA(this,k,U,hA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return YA(this,k,U,hA);default:if(At)throw new TypeError("Unknown encoding: "+q);q=(""+q).toLowerCase(),At=!0}},h.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var BA=4096;function eA(Z,k,U){var hA="";U=Math.min(Z.length,U);for(var q=k;qhA)&&(U=hA);for(var q="",GA=k;GAU)throw new RangeError("Trying to access beyond buffer length")}function L(Z,k,U,hA,q,GA){if(!h.isBuffer(Z))throw new TypeError('"buffer" argument must be a Buffer instance');if(k>q||kZ.length)throw new RangeError("Index out of range")}function rA(Z,k,U,hA,q){pA(k,hA,q,Z,U,7);var GA=Number(k&BigInt(4294967295));Z[U++]=GA,Z[U++]=GA>>=8,Z[U++]=GA>>=8,Z[U++]=GA>>=8;var At=Number(k>>BigInt(32)&BigInt(4294967295));return Z[U++]=At,Z[U++]=At>>=8,Z[U++]=At>>=8,Z[U++]=At>>=8,U}function AA(Z,k,U,hA,q){pA(k,hA,q,Z,U,7);var GA=Number(k&BigInt(4294967295));Z[U+7]=GA,Z[U+6]=GA>>=8,Z[U+5]=GA>>=8,Z[U+4]=GA>>=8;var At=Number(k>>BigInt(32)&BigInt(4294967295));return Z[U+3]=At,Z[U+2]=At>>=8,Z[U+1]=At>>=8,Z[U]=At>>=8,U+8}function QA(Z,k,U,hA,q,GA){if(U+hA>Z.length)throw new RangeError("Index out of range");if(U<0)throw new RangeError("Index out of range")}function yA(Z,k,U,hA,q){return k=+k,U>>>=0,q||QA(Z,0,U,4),r.write(Z,k,U,hA,23,4),U+4}function cA(Z,k,U,hA,q){return k=+k,U>>>=0,q||QA(Z,0,U,8),r.write(Z,k,U,hA,52,8),U+8}h.prototype.slice=function(k,U){var hA=this.length;(k=~~k)<0?(k+=hA)<0&&(k=0):k>hA&&(k=hA),(U=void 0===U?hA:~~U)<0?(U+=hA)<0&&(U=0):U>hA&&(U=hA),U>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k],GA=1,At=0;++At>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k+--U],GA=1;U>0&&(GA*=256);)q+=this[k+--U]*GA;return q},h.prototype.readUint8=h.prototype.readUInt8=function(k,U){return k>>>=0,U||W(k,1,this.length),this[k]},h.prototype.readUint16LE=h.prototype.readUInt16LE=function(k,U){return k>>>=0,U||W(k,2,this.length),this[k]|this[k+1]<<8},h.prototype.readUint16BE=h.prototype.readUInt16BE=function(k,U){return k>>>=0,U||W(k,2,this.length),this[k]<<8|this[k+1]},h.prototype.readUint32LE=h.prototype.readUInt32LE=function(k,U){return k>>>=0,U||W(k,4,this.length),(this[k]|this[k+1]<<8|this[k+2]<<16)+16777216*this[k+3]},h.prototype.readUint32BE=h.prototype.readUInt32BE=function(k,U){return k>>>=0,U||W(k,4,this.length),16777216*this[k]+(this[k+1]<<16|this[k+2]<<8|this[k+3])},h.prototype.readBigUInt64LE=vA(function(k){JA(k>>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=U+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,24),GA=this[++k]+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+hA*Math.pow(2,24);return BigInt(q)+(BigInt(GA)<>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=U*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k],GA=this[++k]*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+hA;return(BigInt(q)<>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k],GA=1,At=0;++At=(GA*=128)&&(q-=Math.pow(2,8*U)),q},h.prototype.readIntBE=function(k,U,hA){k>>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=U,GA=1,At=this[k+--q];q>0&&(GA*=256);)At+=this[k+--q]*GA;return At>=(GA*=128)&&(At-=Math.pow(2,8*U)),At},h.prototype.readInt8=function(k,U){return k>>>=0,U||W(k,1,this.length),128&this[k]?-1*(255-this[k]+1):this[k]},h.prototype.readInt16LE=function(k,U){k>>>=0,U||W(k,2,this.length);var hA=this[k]|this[k+1]<<8;return 32768&hA?4294901760|hA:hA},h.prototype.readInt16BE=function(k,U){k>>>=0,U||W(k,2,this.length);var hA=this[k+1]|this[k]<<8;return 32768&hA?4294901760|hA:hA},h.prototype.readInt32LE=function(k,U){return k>>>=0,U||W(k,4,this.length),this[k]|this[k+1]<<8|this[k+2]<<16|this[k+3]<<24},h.prototype.readInt32BE=function(k,U){return k>>>=0,U||W(k,4,this.length),this[k]<<24|this[k+1]<<16|this[k+2]<<8|this[k+3]},h.prototype.readBigInt64LE=vA(function(k){JA(k>>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=this[k+4]+this[k+5]*Math.pow(2,8)+this[k+6]*Math.pow(2,16)+(hA<<24);return(BigInt(q)<>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=(U<<24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k];return(BigInt(q)<>>=0,U||W(k,4,this.length),r.read(this,k,!0,23,4)},h.prototype.readFloatBE=function(k,U){return k>>>=0,U||W(k,4,this.length),r.read(this,k,!1,23,4)},h.prototype.readDoubleLE=function(k,U){return k>>>=0,U||W(k,8,this.length),r.read(this,k,!0,52,8)},h.prototype.readDoubleBE=function(k,U){return k>>>=0,U||W(k,8,this.length),r.read(this,k,!1,52,8)},h.prototype.writeUintLE=h.prototype.writeUIntLE=function(k,U,hA,q){k=+k,U>>>=0,hA>>>=0,q||L(this,k,U,hA,Math.pow(2,8*hA)-1,0);var At=1,O=0;for(this[U]=255&k;++O>>=0,hA>>>=0,q||L(this,k,U,hA,Math.pow(2,8*hA)-1,0);var At=hA-1,O=1;for(this[U+At]=255&k;--At>=0&&(O*=256);)this[U+At]=k/O&255;return U+hA},h.prototype.writeUint8=h.prototype.writeUInt8=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,1,255,0),this[U]=255&k,U+1},h.prototype.writeUint16LE=h.prototype.writeUInt16LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,65535,0),this[U]=255&k,this[U+1]=k>>>8,U+2},h.prototype.writeUint16BE=h.prototype.writeUInt16BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,65535,0),this[U]=k>>>8,this[U+1]=255&k,U+2},h.prototype.writeUint32LE=h.prototype.writeUInt32LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,4294967295,0),this[U+3]=k>>>24,this[U+2]=k>>>16,this[U+1]=k>>>8,this[U]=255&k,U+4},h.prototype.writeUint32BE=h.prototype.writeUInt32BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,4294967295,0),this[U]=k>>>24,this[U+1]=k>>>16,this[U+2]=k>>>8,this[U+3]=255&k,U+4},h.prototype.writeBigUInt64LE=vA(function(k,U){return void 0===U&&(U=0),rA(this,k,U,BigInt(0),BigInt("0xffffffffffffffff"))}),h.prototype.writeBigUInt64BE=vA(function(k,U){return void 0===U&&(U=0),AA(this,k,U,BigInt(0),BigInt("0xffffffffffffffff"))}),h.prototype.writeIntLE=function(k,U,hA,q){if(k=+k,U>>>=0,!q){var GA=Math.pow(2,8*hA-1);L(this,k,U,hA,GA-1,-GA)}var At=0,O=1,qA=0;for(this[U]=255&k;++At>>=0,!q){var GA=Math.pow(2,8*hA-1);L(this,k,U,hA,GA-1,-GA)}var At=hA-1,O=1,qA=0;for(this[U+At]=255&k;--At>=0&&(O*=256);)k<0&&0===qA&&0!==this[U+At+1]&&(qA=1),this[U+At]=(k/O|0)-qA&255;return U+hA},h.prototype.writeInt8=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,1,127,-128),k<0&&(k=255+k+1),this[U]=255&k,U+1},h.prototype.writeInt16LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,32767,-32768),this[U]=255&k,this[U+1]=k>>>8,U+2},h.prototype.writeInt16BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,32767,-32768),this[U]=k>>>8,this[U+1]=255&k,U+2},h.prototype.writeInt32LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,2147483647,-2147483648),this[U]=255&k,this[U+1]=k>>>8,this[U+2]=k>>>16,this[U+3]=k>>>24,U+4},h.prototype.writeInt32BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,2147483647,-2147483648),k<0&&(k=4294967295+k+1),this[U]=k>>>24,this[U+1]=k>>>16,this[U+2]=k>>>8,this[U+3]=255&k,U+4},h.prototype.writeBigInt64LE=vA(function(k,U){return void 0===U&&(U=0),rA(this,k,U,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),h.prototype.writeBigInt64BE=vA(function(k,U){return void 0===U&&(U=0),AA(this,k,U,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),h.prototype.writeFloatLE=function(k,U,hA){return yA(this,k,U,!0,hA)},h.prototype.writeFloatBE=function(k,U,hA){return yA(this,k,U,!1,hA)},h.prototype.writeDoubleLE=function(k,U,hA){return cA(this,k,U,!0,hA)},h.prototype.writeDoubleBE=function(k,U,hA){return cA(this,k,U,!1,hA)},h.prototype.copy=function(k,U,hA,q){if(!h.isBuffer(k))throw new TypeError("argument should be a Buffer");if(hA||(hA=0),!q&&0!==q&&(q=this.length),U>=k.length&&(U=k.length),U||(U=0),q>0&&q=this.length)throw new RangeError("Index out of range");if(q<0)throw new RangeError("sourceEnd out of bounds");q>this.length&&(q=this.length),k.length-U>>=0,hA=void 0===hA?this.length:hA>>>0,k||(k=0),"number"==typeof k)for(At=U;At=hA+4;U-=3)k="_"+Z.slice(U-3,U)+k;return""+Z.slice(0,U)+k}function pA(Z,k,U,hA,q,GA){if(Z>U||Z3?0===k||k===BigInt(0)?">= 0"+At+" and < 2"+At+" ** "+8*(GA+1)+At:">= -(2"+At+" ** "+(8*(GA+1)-1)+At+") and < 2 ** "+(8*(GA+1)-1)+At:">= "+k+At+" and <= "+U+At,new CA.ERR_OUT_OF_RANGE("value",O,Z)}!function zA(Z,k,U){JA(k,"offset"),(void 0===Z[k]||void 0===Z[k+U])&&ft(k,Z.length-(U+1))}(hA,q,GA)}function JA(Z,k){if("number"!=typeof Z)throw new CA.ERR_INVALID_ARG_TYPE(k,"number",Z)}function ft(Z,k,U){throw Math.floor(Z)!==Z?(JA(Z,U),new CA.ERR_OUT_OF_RANGE(U||"offset","an integer",Z)):k<0?new CA.ERR_BUFFER_OUT_OF_BOUNDS:new CA.ERR_OUT_OF_RANGE(U||"offset",">= "+(U?1:0)+" and <= "+k,Z)}DA("ERR_BUFFER_OUT_OF_BOUNDS",function(Z){return Z?Z+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),DA("ERR_INVALID_ARG_TYPE",function(Z,k){return'The "'+Z+'" argument must be of type number. Received type '+typeof k},TypeError),DA("ERR_OUT_OF_RANGE",function(Z,k,U){var hA='The value of "'+Z+'" is out of range.',q=U;return Number.isInteger(U)&&Math.abs(U)>Math.pow(2,32)?q=NA(String(U)):"bigint"==typeof U&&(q=String(U),(U>Math.pow(BigInt(2),BigInt(32))||U<-Math.pow(BigInt(2),BigInt(32)))&&(q=NA(q)),q+="n"),hA+" It must be "+k+". Received "+q},RangeError);var wt=/[^+/0-9A-Za-z-_]/g;function pt(Z,k){k=k||1/0;for(var U,hA=Z.length,q=null,GA=[],At=0;At55295&&U<57344){if(!q){if(U>56319){(k-=3)>-1&&GA.push(239,191,189);continue}if(At+1===hA){(k-=3)>-1&&GA.push(239,191,189);continue}q=U;continue}if(U<56320){(k-=3)>-1&&GA.push(239,191,189),q=U;continue}U=65536+(q-55296<<10|U-56320)}else q&&(k-=3)>-1&&GA.push(239,191,189);if(q=null,U<128){if((k-=1)<0)break;GA.push(U)}else if(U<2048){if((k-=2)<0)break;GA.push(U>>6|192,63&U|128)}else if(U<65536){if((k-=3)<0)break;GA.push(U>>12|224,U>>6&63|128,63&U|128)}else{if(!(U<1114112))throw new Error("Invalid code point");if((k-=4)<0)break;GA.push(U>>18|240,U>>12&63|128,U>>6&63|128,63&U|128)}}return GA}function _A(Z){return u.toByteArray(function gt(Z){if((Z=(Z=Z.split("=")[0]).trim().replace(wt,"")).length<2)return"";for(;Z.length%4!=0;)Z+="=";return Z}(Z))}function Qt(Z,k,U,hA){var q;for(q=0;q=k.length||q>=Z.length);++q)k[q+U]=Z[q];return q}function ht(Z,k){return Z instanceof k||null!=Z&&null!=Z.constructor&&null!=Z.constructor.name&&Z.constructor.name===k.name}function vt(Z){return Z!=Z}var Nt=function(){for(var Z="0123456789abcdef",k=new Array(256),U=0;U<16;++U)for(var hA=16*U,q=0;q<16;++q)k[hA+q]=Z[U]+Z[q];return k}();function vA(Z){return typeof BigInt>"u"?Bt:Z}function Bt(){throw new Error("BigInt not supported")}},38719:function(b,A,n){"use strict";n(10720),n(14032),b.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},36597:function(b,A,n){"use strict";var fA,iA,wA,B=n(38719),a=n(15567),s=n(32010),o=n(94578),g=n(24517),f=n(20340),w=n(52564),u=n(68664),r=n(48914),d=n(13711),E=n(95892).f,C=n(70176),e=n(69548),h=n(3840),Q=n(38688),I=n(46859),R=s.Int8Array,p=R&&R.prototype,m=s.Uint8ClampedArray,y=m&&m.prototype,x=R&&e(R),Y=p&&e(p),v=Object.prototype,S=s.TypeError,z=Q("toStringTag"),F=I("TYPED_ARRAY_TAG"),$=I("TYPED_ARRAY_CONSTRUCTOR"),gA=B&&!!h&&"Opera"!==w(s.opera),_=!1,IA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},FA={BigInt64Array:8,BigUint64Array:8},HA=function(xA){if(!g(xA))return!1;var OA=w(xA);return f(IA,OA)||f(FA,OA)};for(fA in IA)(wA=(iA=s[fA])&&iA.prototype)?r(wA,$,iA):gA=!1;for(fA in FA)(wA=(iA=s[fA])&&iA.prototype)&&r(wA,$,iA);if((!gA||!o(x)||x===Function.prototype)&&(x=function(){throw S("Incorrect invocation")},gA))for(fA in IA)s[fA]&&h(s[fA],x);if((!gA||!Y||Y===v)&&(Y=x.prototype,gA))for(fA in IA)s[fA]&&h(s[fA].prototype,Y);if(gA&&e(y)!==Y&&h(y,Y),a&&!f(Y,z))for(fA in _=!0,E(Y,z,{get:function(){return g(this)?this[F]:void 0}}),IA)s[fA]&&r(s[fA],F,fA);b.exports={NATIVE_ARRAY_BUFFER_VIEWS:gA,TYPED_ARRAY_CONSTRUCTOR:$,TYPED_ARRAY_TAG:_&&F,aTypedArray:function(xA){if(HA(xA))return xA;throw S("Target is not a typed array")},aTypedArrayConstructor:function(xA){if(o(xA)&&(!h||C(x,xA)))return xA;throw S(u(xA)+" is not a typed array constructor")},exportTypedArrayMethod:function(xA,OA,W){if(a){if(W)for(var L in IA){var rA=s[L];if(rA&&f(rA.prototype,xA))try{delete rA.prototype[xA]}catch{}}(!Y[xA]||W)&&d(Y,xA,W?OA:gA&&p[xA]||OA)}},exportTypedArrayStaticMethod:function(xA,OA,W){var L,rA;if(a){if(h){if(W)for(L in IA)if((rA=s[L])&&f(rA,xA))try{delete rA[xA]}catch{}if(x[xA]&&!W)return;try{return d(x,xA,W?OA:gA&&x[xA]||OA)}catch{}}for(L in IA)(rA=s[L])&&(!rA[xA]||W)&&d(rA,xA,OA)}},isView:function(xA){if(!g(xA))return!1;var OA=w(xA);return"DataView"===OA||f(IA,OA)||f(FA,OA)},isTypedArray:HA,TypedArray:x,TypedArrayPrototype:Y}},89987:function(b,A,n){"use strict";n(24863);var B=n(32010),a=n(38347),s=n(15567),o=n(38719),g=n(7081),f=n(48914),w=n(15341),u=n(47044),r=n(2868),d=n(26882),E=n(23417),C=n(71265),e=n(64397),h=n(69548),Q=n(3840),I=n(6611).f,R=n(95892).f,p=n(72864),m=n(73163),y=n(15216),x=n(70172),Y=g.PROPER,v=g.CONFIGURABLE,S=x.get,z=x.set,F="ArrayBuffer",$="DataView",gA="prototype",fA="Wrong index",iA=B[F],wA=iA,IA=wA&&wA[gA],FA=B[$],YA=FA&&FA[gA],HA=Object.prototype,J=B.Array,BA=B.RangeError,aA=a(p),eA=a([].reverse),EA=e.pack,xA=e.unpack,OA=function(gt){return[255>]},W=function(gt){return[255>,gt>>8&255]},L=function(gt){return[255>,gt>>8&255,gt>>16&255,gt>>24&255]},rA=function(gt){return gt[3]<<24|gt[2]<<16|gt[1]<<8|gt[0]},AA=function(gt){return EA(gt,23,4)},QA=function(gt){return EA(gt,52,8)},yA=function(gt,pt){R(gt[gA],pt,{get:function(){return S(this)[pt]}})},cA=function(gt,pt,Yt,VA){var _A=C(Yt),Qt=S(gt);if(_A+pt>Qt.byteLength)throw BA(fA);var ht=S(Qt.buffer).bytes,vt=_A+Qt.byteOffset,Nt=m(ht,vt,vt+pt);return VA?Nt:eA(Nt)},CA=function(gt,pt,Yt,VA,_A,Qt){var ht=C(Yt),vt=S(gt);if(ht+pt>vt.byteLength)throw BA(fA);for(var Nt=S(vt.buffer).bytes,vA=ht+vt.byteOffset,Bt=VA(+_A),Z=0;ZzA;)(pA=NA[zA++])in wA||f(wA,pA,iA[pA]);IA.constructor=wA}Q&&h(YA)!==HA&&Q(YA,HA);var JA=new FA(new wA(2)),ft=a(YA.setInt8);JA.setInt8(0,2147483648),JA.setInt8(1,2147483649),(JA.getInt8(0)||!JA.getInt8(1))&&w(YA,{setInt8:function(gt,pt){ft(this,gt,pt<<24>>24)},setUint8:function(gt,pt){ft(this,gt,pt<<24>>24)}},{unsafe:!0})}else IA=(wA=function(gt){r(this,IA);var pt=C(gt);z(this,{bytes:aA(J(pt),0),byteLength:pt}),s||(this.byteLength=pt)})[gA],YA=(FA=function(gt,pt,Yt){r(this,YA),r(gt,IA);var VA=S(gt).byteLength,_A=d(pt);if(_A<0||_A>VA)throw BA("Wrong offset");if(_A+(Yt=void 0===Yt?VA-_A:E(Yt))>VA)throw BA("Wrong length");z(this,{buffer:gt,byteLength:Yt,byteOffset:_A}),s||(this.buffer=gt,this.byteLength=Yt,this.byteOffset=_A)})[gA],s&&(yA(wA,"byteLength"),yA(FA,"buffer"),yA(FA,"byteLength"),yA(FA,"byteOffset")),w(YA,{getInt8:function(gt){return cA(this,1,gt)[0]<<24>>24},getUint8:function(gt){return cA(this,1,gt)[0]},getInt16:function(gt){var pt=cA(this,2,gt,arguments.length>1?arguments[1]:void 0);return(pt[1]<<8|pt[0])<<16>>16},getUint16:function(gt){var pt=cA(this,2,gt,arguments.length>1?arguments[1]:void 0);return pt[1]<<8|pt[0]},getInt32:function(gt){return rA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0))},getUint32:function(gt){return rA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(gt){return xA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(gt){return xA(cA(this,8,gt,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(gt,pt){CA(this,1,gt,OA,pt)},setUint8:function(gt,pt){CA(this,1,gt,OA,pt)},setInt16:function(gt,pt){CA(this,2,gt,W,pt,arguments.length>2?arguments[2]:void 0)},setUint16:function(gt,pt){CA(this,2,gt,W,pt,arguments.length>2?arguments[2]:void 0)},setInt32:function(gt,pt){CA(this,4,gt,L,pt,arguments.length>2?arguments[2]:void 0)},setUint32:function(gt,pt){CA(this,4,gt,L,pt,arguments.length>2?arguments[2]:void 0)},setFloat32:function(gt,pt){CA(this,4,gt,AA,pt,arguments.length>2?arguments[2]:void 0)},setFloat64:function(gt,pt){CA(this,8,gt,QA,pt,arguments.length>2?arguments[2]:void 0)}});y(wA,F),y(FA,$),b.exports={ArrayBuffer:wA,DataView:FA}},10720:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(89987),o=n(51334),g="ArrayBuffer",f=s[g];B({global:!0,forced:a[g]!==f},{ArrayBuffer:f}),o(g)},6993:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.BlockCipher,g=a.algo,f=[],w=[],u=[],r=[],d=[],E=[],C=[],e=[],h=[],Q=[];!function(){for(var p=[],m=0;m<256;m++)p[m]=m<128?m<<1:m<<1^283;var y=0,x=0;for(m=0;m<256;m++){var Y=x^x<<1^x<<2^x<<3^x<<4;f[y]=Y=Y>>>8^255&Y^99,w[Y]=y;var F,v=p[y],S=p[v],z=p[S];u[y]=(F=257*p[Y]^16843008*Y)<<24|F>>>8,r[y]=F<<16|F>>>16,d[y]=F<<8|F>>>24,E[y]=F,C[Y]=(F=16843009*z^65537*S^257*v^16843008*y)<<24|F>>>8,e[Y]=F<<16|F>>>16,h[Y]=F<<8|F>>>24,Q[Y]=F,y?(y=v^p[p[p[z^v]]],x^=p[p[x]]):y=x=1}}();var I=[0,1,2,4,8,16,32,64,128,27,54],R=g.AES=o.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var y=this._keyPriorReset=this._key,x=y.words,Y=y.sigBytes/4,S=4*((this._nRounds=Y+6)+1),z=this._keySchedule=[],F=0;F6&&F%Y==4&&(m=f[m>>>24]<<24|f[m>>>16&255]<<16|f[m>>>8&255]<<8|f[255&m]):(m=f[(m=m<<8|m>>>24)>>>24]<<24|f[m>>>16&255]<<16|f[m>>>8&255]<<8|f[255&m],m^=I[F/Y|0]<<24),z[F]=z[F-Y]^m);for(var $=this._invKeySchedule=[],gA=0;gA>>24]]^e[f[m>>>16&255]]^h[f[m>>>8&255]]^Q[f[255&m]]}}},encryptBlock:function(m,y){this._doCryptBlock(m,y,this._keySchedule,u,r,d,E,f)},decryptBlock:function(m,y){var x=m[y+1];m[y+1]=m[y+3],m[y+3]=x,this._doCryptBlock(m,y,this._invKeySchedule,C,e,h,Q,w),x=m[y+1],m[y+1]=m[y+3],m[y+3]=x},_doCryptBlock:function(m,y,x,Y,v,S,z,F){for(var $=this._nRounds,gA=m[y]^x[0],_=m[y+1]^x[1],fA=m[y+2]^x[2],iA=m[y+3]^x[3],wA=4,IA=1;IA<$;IA++){var FA=Y[gA>>>24]^v[_>>>16&255]^S[fA>>>8&255]^z[255&iA]^x[wA++],YA=Y[_>>>24]^v[fA>>>16&255]^S[iA>>>8&255]^z[255&gA]^x[wA++],HA=Y[fA>>>24]^v[iA>>>16&255]^S[gA>>>8&255]^z[255&_]^x[wA++],J=Y[iA>>>24]^v[gA>>>16&255]^S[_>>>8&255]^z[255&fA]^x[wA++];gA=FA,_=YA,fA=HA,iA=J}FA=(F[gA>>>24]<<24|F[_>>>16&255]<<16|F[fA>>>8&255]<<8|F[255&iA])^x[wA++],YA=(F[_>>>24]<<24|F[fA>>>16&255]<<16|F[iA>>>8&255]<<8|F[255&gA])^x[wA++],HA=(F[fA>>>24]<<24|F[iA>>>16&255]<<16|F[gA>>>8&255]<<8|F[255&_])^x[wA++],J=(F[iA>>>24]<<24|F[gA>>>16&255]<<16|F[_>>>8&255]<<8|F[255&fA])^x[wA++],m[y]=FA,m[y+1]=YA,m[y+2]=HA,m[y+3]=J},keySize:8});a.AES=o._createHelper(R)}(),B.AES)},83122:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.BlockCipher,f=16,w=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],u=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]],r={pbox:[],sbox:[]};function d(Q,I){var x=Q.sbox[0][I>>24&255]+Q.sbox[1][I>>16&255];return(x^=Q.sbox[2][I>>8&255])+Q.sbox[3][255&I]}function E(Q,I,R){for(var y,p=I,m=R,x=0;x=R&&(y=0);for(var Y=0,v=0,S=0,z=0;z1;--x)y=p^=Q.pbox[x],p=m=d(Q,p)^m,m=y;return y=p,p=m,m=y,{left:p^=Q.pbox[0],right:m^=Q.pbox[1]}}(r,I[R],I[R+1]);I[R]=p.left,I[R+1]=p.right},blockSize:2,keySize:4,ivSize:2});a.Blowfish=o._createHelper(h)}(),B.Blowfish)},28395:function(b,A,n){"use strict";var B,s,o,g,f,w,d,C,e,Q,I,R,m,x,v,S,F,$;n(39081),n(20731),n(23913),n(14032),n(57114),b.exports=(B=n(34559),n(36572),void(B.lib.Cipher||(f=(o=(s=B).lib).WordArray,d=s.enc.Base64,C=s.algo.EvpKDF,e=o.Cipher=(w=o.BufferedBlockAlgorithm).extend({cfg:(g=o.Base).extend(),createEncryptor:function(_,fA){return this.create(this._ENC_XFORM_MODE,_,fA)},createDecryptor:function(_,fA){return this.create(this._DEC_XFORM_MODE,_,fA)},init:function(_,fA,iA){this.cfg=this.cfg.extend(iA),this._xformMode=_,this._key=fA,this.reset()},reset:function(){w.reset.call(this),this._doReset()},process:function(_){return this._append(_),this._process()},finalize:function(_){return _&&this._append(_),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function gA(_){return"string"==typeof _?$:S}return function(_){return{encrypt:function(iA,wA,IA){return gA(wA).encrypt(_,iA,wA,IA)},decrypt:function(iA,wA,IA){return gA(wA).decrypt(_,iA,wA,IA)}}}}()}),o.StreamCipher=e.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),Q=s.mode={},I=o.BlockCipherMode=g.extend({createEncryptor:function(_,fA){return this.Encryptor.create(_,fA)},createDecryptor:function(_,fA){return this.Decryptor.create(_,fA)},init:function(_,fA){this._cipher=_,this._iv=fA}}),R=Q.CBC=function(){var gA=I.extend();function _(fA,iA,wA){var IA,FA=this._iv;FA?(IA=FA,this._iv=void 0):IA=this._prevBlock;for(var YA=0;YA>>2]}},o.BlockCipher=e.extend({cfg:e.cfg.extend({mode:R,padding:m}),reset:function(){var _;e.reset.call(this);var fA=this.cfg,iA=fA.iv,wA=fA.mode;this._xformMode==this._ENC_XFORM_MODE?_=wA.createEncryptor:(_=wA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==_?this._mode.init(this,iA&&iA.words):(this._mode=_.call(wA,this,iA&&iA.words),this._mode.__creator=_)},_doProcessBlock:function(_,fA){this._mode.processBlock(_,fA)},_doFinalize:function(){var _,fA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(fA.pad(this._data,this.blockSize),_=this._process(!0)):(_=this._process(!0),fA.unpad(_)),_},blockSize:4}),x=o.CipherParams=g.extend({init:function(_){this.mixIn(_)},toString:function(_){return(_||this.formatter).stringify(this)}}),v=(s.format={}).OpenSSL={stringify:function(_){var iA=_.ciphertext,wA=_.salt;return(wA?f.create([1398893684,1701076831]).concat(wA).concat(iA):iA).toString(d)},parse:function(_){var fA,iA=d.parse(_),wA=iA.words;return 1398893684==wA[0]&&1701076831==wA[1]&&(fA=f.create(wA.slice(2,4)),wA.splice(0,4),iA.sigBytes-=16),x.create({ciphertext:iA,salt:fA})}},S=o.SerializableCipher=g.extend({cfg:g.extend({format:v}),encrypt:function(_,fA,iA,wA){wA=this.cfg.extend(wA);var IA=_.createEncryptor(iA,wA),FA=IA.finalize(fA),YA=IA.cfg;return x.create({ciphertext:FA,key:iA,iv:YA.iv,algorithm:_,mode:YA.mode,padding:YA.padding,blockSize:_.blockSize,formatter:wA.format})},decrypt:function(_,fA,iA,wA){return wA=this.cfg.extend(wA),fA=this._parse(fA,wA.format),_.createDecryptor(iA,wA).finalize(fA.ciphertext)},_parse:function(_,fA){return"string"==typeof _?fA.parse(_,this):_}}),F=(s.kdf={}).OpenSSL={execute:function(_,fA,iA,wA,IA){if(wA||(wA=f.random(8)),IA)var FA=C.create({keySize:fA+iA,hasher:IA}).compute(_,wA);else FA=C.create({keySize:fA+iA}).compute(_,wA);var YA=f.create(FA.words.slice(fA),4*iA);return FA.sigBytes=4*fA,x.create({key:FA,iv:YA,salt:wA})}},$=o.PasswordBasedCipher=S.extend({cfg:S.cfg.extend({kdf:F}),encrypt:function(_,fA,iA,wA){var IA=(wA=this.cfg.extend(wA)).kdf.execute(iA,_.keySize,_.ivSize,wA.salt,wA.hasher);wA.iv=IA.iv;var FA=S.encrypt.call(this,_,fA,IA.key,wA);return FA.mixIn(IA),FA},decrypt:function(_,fA,iA,wA){wA=this.cfg.extend(wA),fA=this._parse(fA,wA.format);var IA=wA.kdf.execute(iA,_.keySize,_.ivSize,fA.salt,wA.hasher);return wA.iv=IA.iv,S.decrypt.call(this,_,fA,IA.key,wA)}}))))},34559:function(b,A,n){"use strict";var a;n(39081),n(81755),n(94845),n(20731),n(23913),n(14032),n(57114),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529),n(49109),a=function(){var B=B||function(a,s){var o;if(typeof window<"u"&&window.crypto&&(o=window.crypto),typeof self<"u"&&self.crypto&&(o=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(o=globalThis.crypto),!o&&typeof window<"u"&&window.msCrypto&&(o=window.msCrypto),!o&&typeof n.g<"u"&&n.g.crypto&&(o=n.g.crypto),!o)try{o=n(50477)}catch{}var g=function(){if(o){if("function"==typeof o.getRandomValues)try{return o.getRandomValues(new Uint32Array(1))[0]}catch{}if("function"==typeof o.randomBytes)try{return o.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},f=Object.create||function(){function p(){}return function(m){var y;return p.prototype=m,y=new p,p.prototype=null,y}}(),w={},u=w.lib={},r=u.Base=function(){return{extend:function(m){var y=f(this);return m&&y.mixIn(m),(!y.hasOwnProperty("init")||this.init===y.init)&&(y.init=function(){y.$super.init.apply(this,arguments)}),y.init.prototype=y,y.$super=this,y},create:function(){var m=this.extend();return m.init.apply(m,arguments),m},init:function(){},mixIn:function(m){for(var y in m)m.hasOwnProperty(y)&&(this[y]=m[y]);m.hasOwnProperty("toString")&&(this.toString=m.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),d=u.WordArray=r.extend({init:function(m,y){m=this.words=m||[],this.sigBytes=null!=y?y:4*m.length},toString:function(m){return(m||C).stringify(this)},concat:function(m){var y=this.words,x=m.words,Y=this.sigBytes,v=m.sigBytes;if(this.clamp(),Y%4)for(var S=0;S>>2]|=(x[S>>>2]>>>24-S%4*8&255)<<24-(Y+S)%4*8;else for(var F=0;F>>2]=x[F>>>2];return this.sigBytes+=v,this},clamp:function(){var m=this.words,y=this.sigBytes;m[y>>>2]&=4294967295<<32-y%4*8,m.length=a.ceil(y/4)},clone:function(){var m=r.clone.call(this);return m.words=this.words.slice(0),m},random:function(m){for(var y=[],x=0;x>>2]>>>24-v%4*8&255;Y.push((S>>>4).toString(16)),Y.push((15&S).toString(16))}return Y.join("")},parse:function(m){for(var y=m.length,x=[],Y=0;Y>>3]|=parseInt(m.substr(Y,2),16)<<24-Y%8*4;return new d.init(x,y/2)}},e=E.Latin1={stringify:function(m){for(var y=m.words,x=m.sigBytes,Y=[],v=0;v>>2]>>>24-v%4*8&255));return Y.join("")},parse:function(m){for(var y=m.length,x=[],Y=0;Y>>2]|=(255&m.charCodeAt(Y))<<24-Y%4*8;return new d.init(x,y)}},h=E.Utf8={stringify:function(m){try{return decodeURIComponent(escape(e.stringify(m)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(m){return e.parse(unescape(encodeURIComponent(m)))}},Q=u.BufferedBlockAlgorithm=r.extend({reset:function(){this._data=new d.init,this._nDataBytes=0},_append:function(m){"string"==typeof m&&(m=h.parse(m)),this._data.concat(m),this._nDataBytes+=m.sigBytes},_process:function(m){var y,x=this._data,Y=x.words,v=x.sigBytes,S=this.blockSize,F=v/(4*S),$=(F=m?a.ceil(F):a.max((0|F)-this._minBufferSize,0))*S,gA=a.min(4*$,v);if($){for(var _=0;_<$;_+=S)this._doProcessBlock(Y,_);y=Y.splice(0,$),x.sigBytes-=gA}return new d.init(y,gA)},clone:function(){var m=r.clone.call(this);return m._data=this._data.clone(),m},_minBufferSize:0}),R=(u.Hasher=Q.extend({cfg:r.extend(),init:function(m){this.cfg=this.cfg.extend(m),this.reset()},reset:function(){Q.reset.call(this),this._doReset()},update:function(m){return this._append(m),this._process(),this},finalize:function(m){return m&&this._append(m),this._doFinalize()},blockSize:16,_createHelper:function(m){return function(y,x){return new m.init(x).finalize(y)}},_createHmacHelper:function(m){return function(y,x){return new R.HMAC.init(m,x).finalize(y)}}}),w.algo={});return w}(Math);return B},b.exports=a()},49300:function(b,A,n){"use strict";var B,o;n(94845),b.exports=(B=n(34559),o=B.lib.WordArray,B.enc.Base64={stringify:function(r){var d=r.words,E=r.sigBytes,C=this._map;r.clamp();for(var e=[],h=0;h>>2]>>>24-h%4*8&255)<<16|(d[h+1>>>2]>>>24-(h+1)%4*8&255)<<8|d[h+2>>>2]>>>24-(h+2)%4*8&255,m=0;m<4&&h+.75*m>>6*(3-m)&63));var y=C.charAt(64);if(y)for(;e.length%4;)e.push(y);return e.join("")},parse:function(r){var d=r.length,E=this._map,C=this._reverseMap;if(!C){C=this._reverseMap=[];for(var e=0;e>>6-e%4*2;E[C>>>2]|=(h|Q)<<24-C%4*8,C++}return o.create(E,C)}(r,d,C)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},B.enc.Base64)},375:function(b,A,n){"use strict";var B,o;n(94845),b.exports=(B=n(34559),o=B.lib.WordArray,B.enc.Base64url={stringify:function(r,d){void 0===d&&(d=!0);var E=r.words,C=r.sigBytes,e=d?this._safe_map:this._map;r.clamp();for(var h=[],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,y=0;y<4&&Q+.75*y>>6*(3-y)&63));var x=e.charAt(64);if(x)for(;h.length%4;)h.push(x);return h.join("")},parse:function(r,d){void 0===d&&(d=!0);var E=r.length,C=d?this._safe_map:this._map,e=this._reverseMap;if(!e){e=this._reverseMap=[];for(var h=0;h>>6-e%4*2;E[C>>>2]|=(h|Q)<<24-C%4*8,C++}return o.create(E,C)}(r,E,e)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},B.enc.Base64url)},56217:function(b,A,n){"use strict";var B;n(94845),b.exports=(B=n(34559),function(){var o=B.lib.WordArray,g=B.enc;function w(u){return u<<8&4278255360|u>>>8&16711935}g.Utf16=g.Utf16BE={stringify:function(r){for(var d=r.words,E=r.sigBytes,C=[],e=0;e>>2]>>>16-e%4*8&65535));return C.join("")},parse:function(r){for(var d=r.length,E=[],C=0;C>>1]|=r.charCodeAt(C)<<16-C%2*16;return o.create(E,2*d)}},g.Utf16LE={stringify:function(r){for(var d=r.words,E=r.sigBytes,C=[],e=0;e>>2]>>>16-e%4*8&65535);C.push(String.fromCharCode(h))}return C.join("")},parse:function(r){for(var d=r.length,E=[],C=0;C>>1]|=w(r.charCodeAt(C)<<16-C%2*16);return o.create(E,2*d)}}}(),B.enc.Utf16)},36572:function(b,A,n){"use strict";var B,a,s,o,g,f,u;n(39081),b.exports=(B=n(34559),n(76289),n(30443),g=(s=(a=B).lib).WordArray,u=(f=a.algo).EvpKDF=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:f.MD5,iterations:1}),init:function(d){this.cfg=this.cfg.extend(d)},compute:function(d,E){for(var C,e=this.cfg,h=e.hasher.create(),Q=g.create(),I=Q.words,R=e.keySize,p=e.iterations;I.lengthe&&(E=d.finalize(E)),E.clamp();for(var h=this._oKey=E.clone(),Q=this._iKey=E.clone(),I=h.words,R=Q.words,p=0;p>>2]|=w[d]<<24-d%4*8;g.call(this,r,u)}else g.apply(this,arguments)};f.prototype=o}}(),B.lib.WordArray},b.exports=a(n(34559))},72342:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=[];!function(){for(var h=0;h<64;h++)u[h]=4294967296*a.abs(a.sin(h+1))|0}();var r=w.MD5=f.extend({_doReset:function(){this._hash=new g.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(Q,I){for(var R=0;R<16;R++){var p=I+R,m=Q[p];Q[p]=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8)}var y=this._hash.words,x=Q[I+0],Y=Q[I+1],v=Q[I+2],S=Q[I+3],z=Q[I+4],F=Q[I+5],$=Q[I+6],gA=Q[I+7],_=Q[I+8],fA=Q[I+9],iA=Q[I+10],wA=Q[I+11],IA=Q[I+12],FA=Q[I+13],YA=Q[I+14],HA=Q[I+15],J=y[0],BA=y[1],aA=y[2],eA=y[3];J=d(J,BA,aA,eA,x,7,u[0]),eA=d(eA,J,BA,aA,Y,12,u[1]),aA=d(aA,eA,J,BA,v,17,u[2]),BA=d(BA,aA,eA,J,S,22,u[3]),J=d(J,BA,aA,eA,z,7,u[4]),eA=d(eA,J,BA,aA,F,12,u[5]),aA=d(aA,eA,J,BA,$,17,u[6]),BA=d(BA,aA,eA,J,gA,22,u[7]),J=d(J,BA,aA,eA,_,7,u[8]),eA=d(eA,J,BA,aA,fA,12,u[9]),aA=d(aA,eA,J,BA,iA,17,u[10]),BA=d(BA,aA,eA,J,wA,22,u[11]),J=d(J,BA,aA,eA,IA,7,u[12]),eA=d(eA,J,BA,aA,FA,12,u[13]),aA=d(aA,eA,J,BA,YA,17,u[14]),J=E(J,BA=d(BA,aA,eA,J,HA,22,u[15]),aA,eA,Y,5,u[16]),eA=E(eA,J,BA,aA,$,9,u[17]),aA=E(aA,eA,J,BA,wA,14,u[18]),BA=E(BA,aA,eA,J,x,20,u[19]),J=E(J,BA,aA,eA,F,5,u[20]),eA=E(eA,J,BA,aA,iA,9,u[21]),aA=E(aA,eA,J,BA,HA,14,u[22]),BA=E(BA,aA,eA,J,z,20,u[23]),J=E(J,BA,aA,eA,fA,5,u[24]),eA=E(eA,J,BA,aA,YA,9,u[25]),aA=E(aA,eA,J,BA,S,14,u[26]),BA=E(BA,aA,eA,J,_,20,u[27]),J=E(J,BA,aA,eA,FA,5,u[28]),eA=E(eA,J,BA,aA,v,9,u[29]),aA=E(aA,eA,J,BA,gA,14,u[30]),J=C(J,BA=E(BA,aA,eA,J,IA,20,u[31]),aA,eA,F,4,u[32]),eA=C(eA,J,BA,aA,_,11,u[33]),aA=C(aA,eA,J,BA,wA,16,u[34]),BA=C(BA,aA,eA,J,YA,23,u[35]),J=C(J,BA,aA,eA,Y,4,u[36]),eA=C(eA,J,BA,aA,z,11,u[37]),aA=C(aA,eA,J,BA,gA,16,u[38]),BA=C(BA,aA,eA,J,iA,23,u[39]),J=C(J,BA,aA,eA,FA,4,u[40]),eA=C(eA,J,BA,aA,x,11,u[41]),aA=C(aA,eA,J,BA,S,16,u[42]),BA=C(BA,aA,eA,J,$,23,u[43]),J=C(J,BA,aA,eA,fA,4,u[44]),eA=C(eA,J,BA,aA,IA,11,u[45]),aA=C(aA,eA,J,BA,HA,16,u[46]),J=e(J,BA=C(BA,aA,eA,J,v,23,u[47]),aA,eA,x,6,u[48]),eA=e(eA,J,BA,aA,gA,10,u[49]),aA=e(aA,eA,J,BA,YA,15,u[50]),BA=e(BA,aA,eA,J,F,21,u[51]),J=e(J,BA,aA,eA,IA,6,u[52]),eA=e(eA,J,BA,aA,S,10,u[53]),aA=e(aA,eA,J,BA,iA,15,u[54]),BA=e(BA,aA,eA,J,Y,21,u[55]),J=e(J,BA,aA,eA,_,6,u[56]),eA=e(eA,J,BA,aA,HA,10,u[57]),aA=e(aA,eA,J,BA,$,15,u[58]),BA=e(BA,aA,eA,J,FA,21,u[59]),J=e(J,BA,aA,eA,z,6,u[60]),eA=e(eA,J,BA,aA,wA,10,u[61]),aA=e(aA,eA,J,BA,v,15,u[62]),BA=e(BA,aA,eA,J,fA,21,u[63]),y[0]=y[0]+J|0,y[1]=y[1]+BA|0,y[2]=y[2]+aA|0,y[3]=y[3]+eA|0},_doFinalize:function(){var Q=this._data,I=Q.words,R=8*this._nDataBytes,p=8*Q.sigBytes;I[p>>>5]|=128<<24-p%32;var m=a.floor(R/4294967296),y=R;I[15+(p+64>>>9<<4)]=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),I[14+(p+64>>>9<<4)]=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),Q.sigBytes=4*(I.length+1),this._process();for(var x=this._hash,Y=x.words,v=0;v<4;v++){var S=Y[v];Y[v]=16711935&(S<<8|S>>>24)|4278255360&(S<<24|S>>>8)}return x},clone:function(){var Q=f.clone.call(this);return Q._hash=this._hash.clone(),Q}});function d(h,Q,I,R,p,m,y){var x=h+(Q&I|~Q&R)+p+y;return(x<>>32-m)+Q}function E(h,Q,I,R,p,m,y){var x=h+(Q&R|I&~R)+p+y;return(x<>>32-m)+Q}function C(h,Q,I,R,p,m,y){var x=h+(Q^I^R)+p+y;return(x<>>32-m)+Q}function e(h,Q,I,R,p,m,y){var x=h+(I^(Q|~R))+p+y;return(x<>>32-m)+Q}s.MD5=f._createHelper(r),s.HmacMD5=f._createHmacHelper(r)}(Math),B.MD5)},2727:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(28395),B.mode.CFB=function(){var a=B.lib.BlockCipherMode.extend();function s(o,g,f,w){var u,r=this._iv;r?(u=r.slice(0),this._iv=void 0):u=this._prevBlock,w.encryptBlock(u,0);for(var d=0;d>24))f+=16777216;else{var w=f>>16&255,u=f>>8&255,r=255&f;255===w?(w=0,255===u?(u=0,255===r?r=0:++r):++u):++w,f=0,f+=w<<16,f+=u<<8,f+=r}return f}var g=a.Encryptor=a.extend({processBlock:function(w,u){var r=this._cipher,d=r.blockSize,E=this._iv,C=this._counter;E&&(C=this._counter=E.slice(0),this._iv=void 0),function o(f){return 0===(f[0]=s(f[0]))&&(f[1]=s(f[1])),f}(C);var e=C.slice(0);r.encryptBlock(e,0);for(var h=0;h>>2]|=w<<24-u%4*8,s.sigBytes+=w},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},B.pad.Ansix923)},99215:function(b,A,n){"use strict";var B;n(39081),b.exports=(B=n(34559),n(28395),B.pad.Iso10126={pad:function(s,o){var g=4*o,f=g-s.sigBytes%g;s.concat(B.lib.WordArray.random(f-1)).concat(B.lib.WordArray.create([f<<24],1))},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},B.pad.Iso10126)},43960:function(b,A,n){"use strict";var B;n(39081),b.exports=(B=n(34559),n(28395),B.pad.Iso97971={pad:function(s,o){s.concat(B.lib.WordArray.create([2147483648],1)),B.pad.ZeroPadding.pad(s,o)},unpad:function(s){B.pad.ZeroPadding.unpad(s),s.sigBytes--}},B.pad.Iso97971)},16934:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(28395),B.pad.NoPadding={pad:function(){},unpad:function(){}},B.pad.NoPadding)},40681:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(28395),B.pad.ZeroPadding={pad:function(s,o){var g=4*o;s.clamp(),s.sigBytes+=g-(s.sigBytes%g||g)},unpad:function(s){var o=s.words,g=s.sigBytes-1;for(g=s.sigBytes-1;g>=0;g--)if(o[g>>>2]>>>24-g%4*8&255){s.sigBytes=g+1;break}}},B.pad.ZeroPadding)},95729:function(b,A,n){"use strict";var B,a,s,o,g,f,u,r;n(39081),b.exports=(B=n(34559),n(26739),n(30443),g=(s=(a=B).lib).WordArray,u=(f=a.algo).HMAC,r=f.PBKDF2=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:f.SHA256,iterations:25e4}),init:function(E){this.cfg=this.cfg.extend(E)},compute:function(E,C){for(var e=this.cfg,h=u.create(e.hasher,E),Q=g.create(),I=g.create([1]),R=Q.words,p=I.words,m=e.keySize,y=e.iterations;R.length>>16,C[1],C[0]<<16|C[3]>>>16,C[2],C[1]<<16|C[0]>>>16,C[3],C[2]<<16|C[1]>>>16],Q=this._C=[C[2]<<16|C[2]>>>16,4294901760&C[0]|65535&C[1],C[3]<<16|C[3]>>>16,4294901760&C[1]|65535&C[2],C[0]<<16|C[0]>>>16,4294901760&C[2]|65535&C[3],C[1]<<16|C[1]>>>16,4294901760&C[3]|65535&C[0]];this._b=0;for(var I=0;I<4;I++)d.call(this);for(I=0;I<8;I++)Q[I]^=h[I+4&7];if(e){var R=e.words,p=R[0],m=R[1],y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),x=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),Y=y>>>16|4294901760&x,v=x<<16|65535&y;for(Q[0]^=y,Q[1]^=Y,Q[2]^=x,Q[3]^=v,Q[4]^=y,Q[5]^=Y,Q[6]^=x,Q[7]^=v,I=0;I<4;I++)d.call(this)}},_doProcessBlock:function(C,e){var h=this._X;d.call(this),f[0]=h[0]^h[5]>>>16^h[3]<<16,f[1]=h[2]^h[7]>>>16^h[5]<<16,f[2]=h[4]^h[1]>>>16^h[7]<<16,f[3]=h[6]^h[3]>>>16^h[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),C[e+Q]^=f[Q]},blockSize:4,ivSize:2});function d(){for(var E=this._X,C=this._C,e=0;e<8;e++)w[e]=C[e];for(C[0]=C[0]+1295307597+this._b|0,C[1]=C[1]+3545052371+(C[0]>>>0>>0?1:0)|0,C[2]=C[2]+886263092+(C[1]>>>0>>0?1:0)|0,C[3]=C[3]+1295307597+(C[2]>>>0>>0?1:0)|0,C[4]=C[4]+3545052371+(C[3]>>>0>>0?1:0)|0,C[5]=C[5]+886263092+(C[4]>>>0>>0?1:0)|0,C[6]=C[6]+1295307597+(C[5]>>>0>>0?1:0)|0,C[7]=C[7]+3545052371+(C[6]>>>0>>0?1:0)|0,this._b=C[7]>>>0>>0?1:0,e=0;e<8;e++){var h=E[e]+C[e],Q=65535&h,I=h>>>16;u[e]=((Q*Q>>>17)+Q*I>>>15)+I*I^((4294901760&h)*h|0)+((65535&h)*h|0)}E[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,E[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,E[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,E[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,E[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,E[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,E[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,E[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}a.RabbitLegacy=o._createHelper(r)}(),B.RabbitLegacy)},55380:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.StreamCipher,f=[],w=[],u=[],r=a.algo.Rabbit=o.extend({_doReset:function(){for(var C=this._key.words,e=this.cfg.iv,h=0;h<4;h++)C[h]=16711935&(C[h]<<8|C[h]>>>24)|4278255360&(C[h]<<24|C[h]>>>8);var Q=this._X=[C[0],C[3]<<16|C[2]>>>16,C[1],C[0]<<16|C[3]>>>16,C[2],C[1]<<16|C[0]>>>16,C[3],C[2]<<16|C[1]>>>16],I=this._C=[C[2]<<16|C[2]>>>16,4294901760&C[0]|65535&C[1],C[3]<<16|C[3]>>>16,4294901760&C[1]|65535&C[2],C[0]<<16|C[0]>>>16,4294901760&C[2]|65535&C[3],C[1]<<16|C[1]>>>16,4294901760&C[3]|65535&C[0]];for(this._b=0,h=0;h<4;h++)d.call(this);for(h=0;h<8;h++)I[h]^=Q[h+4&7];if(e){var R=e.words,p=R[0],m=R[1],y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),x=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),Y=y>>>16|4294901760&x,v=x<<16|65535&y;for(I[0]^=y,I[1]^=Y,I[2]^=x,I[3]^=v,I[4]^=y,I[5]^=Y,I[6]^=x,I[7]^=v,h=0;h<4;h++)d.call(this)}},_doProcessBlock:function(C,e){var h=this._X;d.call(this),f[0]=h[0]^h[5]>>>16^h[3]<<16,f[1]=h[2]^h[7]>>>16^h[5]<<16,f[2]=h[4]^h[1]>>>16^h[7]<<16,f[3]=h[6]^h[3]>>>16^h[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),C[e+Q]^=f[Q]},blockSize:4,ivSize:2});function d(){for(var E=this._X,C=this._C,e=0;e<8;e++)w[e]=C[e];for(C[0]=C[0]+1295307597+this._b|0,C[1]=C[1]+3545052371+(C[0]>>>0>>0?1:0)|0,C[2]=C[2]+886263092+(C[1]>>>0>>0?1:0)|0,C[3]=C[3]+1295307597+(C[2]>>>0>>0?1:0)|0,C[4]=C[4]+3545052371+(C[3]>>>0>>0?1:0)|0,C[5]=C[5]+886263092+(C[4]>>>0>>0?1:0)|0,C[6]=C[6]+1295307597+(C[5]>>>0>>0?1:0)|0,C[7]=C[7]+3545052371+(C[6]>>>0>>0?1:0)|0,this._b=C[7]>>>0>>0?1:0,e=0;e<8;e++){var h=E[e]+C[e],Q=65535&h,I=h>>>16;u[e]=((Q*Q>>>17)+Q*I>>>15)+I*I^((4294901760&h)*h|0)+((65535&h)*h|0)}E[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,E[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,E[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,E[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,E[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,E[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,E[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,E[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}a.Rabbit=o._createHelper(r)}(),B.Rabbit)},76635:function(b,A,n){"use strict";var B;n(14032),n(68067),b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.StreamCipher,g=a.algo,f=g.RC4=o.extend({_doReset:function(){for(var d=this._key,E=d.words,C=d.sigBytes,e=this._S=[],h=0;h<256;h++)e[h]=h;h=0;for(var Q=0;h<256;h++){var I=h%C,p=e[h];e[h]=e[Q=(Q+e[h]+(E[I>>>2]>>>24-I%4*8&255))%256],e[Q]=p}this._i=this._j=0},_doProcessBlock:function(d,E){d[E]^=w.call(this)},keySize:8,ivSize:0});function w(){for(var r=this._S,d=this._i,E=this._j,C=0,e=0;e<4;e++){var h=r[d=(d+1)%256];r[d]=r[E=(E+r[d])%256],r[E]=h,C|=r[(r[d]+r[E])%256]<<24-8*e}return this._i=d,this._j=E,C}a.RC4=o._createHelper(f);var u=g.RC4Drop=f.extend({cfg:f.cfg.extend({drop:192}),_doReset:function(){f._doReset.call(this);for(var d=this.cfg.drop;d>0;d--)w.call(this)}});a.RC4Drop=o._createHelper(u)}(),B.RC4)},76930:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=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]),d=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]),C=g.create([0,1518500249,1859775393,2400959708,2840853838]),e=g.create([1352829926,1548603684,1836072691,2053994217,0]),h=w.RIPEMD160=f.extend({_doReset:function(){this._hash=g.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(Y,v){for(var S=0;S<16;S++){var z=v+S,F=Y[z];Y[z]=16711935&(F<<8|F>>>24)|4278255360&(F<<24|F>>>8)}var FA,YA,HA,J,BA,aA,eA,EA,xA,OA,W,$=this._hash.words,gA=C.words,_=e.words,fA=u.words,iA=r.words,wA=d.words,IA=E.words;for(aA=FA=$[0],eA=YA=$[1],EA=HA=$[2],xA=J=$[3],OA=BA=$[4],S=0;S<80;S+=1)W=FA+Y[v+fA[S]]|0,W+=S<16?Q(YA,HA,J)+gA[0]:S<32?I(YA,HA,J)+gA[1]:S<48?R(YA,HA,J)+gA[2]:S<64?p(YA,HA,J)+gA[3]:m(YA,HA,J)+gA[4],W=(W=y(W|=0,wA[S]))+BA|0,FA=BA,BA=J,J=y(HA,10),HA=YA,YA=W,W=aA+Y[v+iA[S]]|0,W+=S<16?m(eA,EA,xA)+_[0]:S<32?p(eA,EA,xA)+_[1]:S<48?R(eA,EA,xA)+_[2]:S<64?I(eA,EA,xA)+_[3]:Q(eA,EA,xA)+_[4],W=(W=y(W|=0,IA[S]))+OA|0,aA=OA,OA=xA,xA=y(EA,10),EA=eA,eA=W;W=$[1]+HA+xA|0,$[1]=$[2]+J+OA|0,$[2]=$[3]+BA+aA|0,$[3]=$[4]+FA+eA|0,$[4]=$[0]+YA+EA|0,$[0]=W},_doFinalize:function(){var Y=this._data,v=Y.words,S=8*this._nDataBytes,z=8*Y.sigBytes;v[z>>>5]|=128<<24-z%32,v[14+(z+64>>>9<<4)]=16711935&(S<<8|S>>>24)|4278255360&(S<<24|S>>>8),Y.sigBytes=4*(v.length+1),this._process();for(var F=this._hash,$=F.words,gA=0;gA<5;gA++){var _=$[gA];$[gA]=16711935&(_<<8|_>>>24)|4278255360&(_<<24|_>>>8)}return F},clone:function(){var Y=f.clone.call(this);return Y._hash=this._hash.clone(),Y}});function Q(x,Y,v){return x^Y^v}function I(x,Y,v){return x&Y|~x&v}function R(x,Y,v){return(x|~Y)^v}function p(x,Y,v){return x&v|Y&~v}function m(x,Y,v){return x^(Y|~v)}function y(x,Y){return x<>>32-Y}s.RIPEMD160=f._createHelper(h),s.HmacRIPEMD160=f._createHmacHelper(h)}(Math),B.RIPEMD160)},76289:function(b,A,n){"use strict";var B,a,s,o,g,w,u;b.exports=(B=n(34559),o=(s=(a=B).lib).WordArray,w=[],u=a.algo.SHA1=(g=s.Hasher).extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(d,E){for(var C=this._hash.words,e=C[0],h=C[1],Q=C[2],I=C[3],R=C[4],p=0;p<80;p++){if(p<16)w[p]=0|d[E+p];else{var m=w[p-3]^w[p-8]^w[p-14]^w[p-16];w[p]=m<<1|m>>>31}var y=(e<<5|e>>>27)+R+w[p];y+=p<20?1518500249+(h&Q|~h&I):p<40?1859775393+(h^Q^I):p<60?(h&Q|h&I|Q&I)-1894007588:(h^Q^I)-899497514,R=I,I=Q,Q=h<<30|h>>>2,h=e,e=y}C[0]=C[0]+e|0,C[1]=C[1]+h|0,C[2]=C[2]+Q|0,C[3]=C[3]+I|0,C[4]=C[4]+R|0},_doFinalize:function(){var d=this._data,E=d.words,C=8*this._nDataBytes,e=8*d.sigBytes;return E[e>>>5]|=128<<24-e%32,E[14+(e+64>>>9<<4)]=Math.floor(C/4294967296),E[15+(e+64>>>9<<4)]=C,d.sigBytes=4*E.length,this._process(),this._hash},clone:function(){var d=g.clone.call(this);return d._hash=this._hash.clone(),d}}),a.SHA1=g._createHelper(u),a.HmacSHA1=g._createHmacHelper(u),B.SHA1)},75230:function(b,A,n){"use strict";var B,a,o,g,f,w;b.exports=(B=n(34559),n(26739),o=(a=B).lib.WordArray,w=(g=a.algo).SHA224=(f=g.SHA256).extend({_doReset:function(){this._hash=new o.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var r=f._doFinalize.call(this);return r.sigBytes-=4,r}}),a.SHA224=f._createHelper(w),a.HmacSHA224=f._createHmacHelper(w),B.SHA224)},26739:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=[],r=[];!function(){function C(I){for(var R=a.sqrt(I),p=2;p<=R;p++)if(!(I%p))return!1;return!0}function e(I){return 4294967296*(I-(0|I))|0}for(var h=2,Q=0;Q<64;)C(h)&&(Q<8&&(u[Q]=e(a.pow(h,.5))),r[Q]=e(a.pow(h,.3333333333333333)),Q++),h++}();var d=[],E=w.SHA256=f.extend({_doReset:function(){this._hash=new g.init(u.slice(0))},_doProcessBlock:function(e,h){for(var Q=this._hash.words,I=Q[0],R=Q[1],p=Q[2],m=Q[3],y=Q[4],x=Q[5],Y=Q[6],v=Q[7],S=0;S<64;S++){if(S<16)d[S]=0|e[h+S];else{var z=d[S-15],$=d[S-2];d[S]=((z<<25|z>>>7)^(z<<14|z>>>18)^z>>>3)+d[S-7]+(($<<15|$>>>17)^($<<13|$>>>19)^$>>>10)+d[S-16]}var fA=I&R^I&p^R&p,IA=v+((y<<26|y>>>6)^(y<<21|y>>>11)^(y<<7|y>>>25))+(y&x^~y&Y)+r[S]+d[S];v=Y,Y=x,x=y,y=m+IA|0,m=p,p=R,R=I,I=IA+(((I<<30|I>>>2)^(I<<19|I>>>13)^(I<<10|I>>>22))+fA)|0}Q[0]=Q[0]+I|0,Q[1]=Q[1]+R|0,Q[2]=Q[2]+p|0,Q[3]=Q[3]+m|0,Q[4]=Q[4]+y|0,Q[5]=Q[5]+x|0,Q[6]=Q[6]+Y|0,Q[7]=Q[7]+v|0},_doFinalize:function(){var e=this._data,h=e.words,Q=8*this._nDataBytes,I=8*e.sigBytes;return h[I>>>5]|=128<<24-I%32,h[14+(I+64>>>9<<4)]=a.floor(Q/4294967296),h[15+(I+64>>>9<<4)]=Q,e.sigBytes=4*h.length,this._process(),this._hash},clone:function(){var e=f.clone.call(this);return e._hash=this._hash.clone(),e}});s.SHA256=f._createHelper(E),s.HmacSHA256=f._createHmacHelper(E)}(Math),B.SHA256)},80767:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(26478),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,u=s.x64.Word,r=s.algo,d=[],E=[],C=[];!function(){for(var Q=1,I=0,R=0;R<24;R++){d[Q+5*I]=(R+1)*(R+2)/2%64;var m=(2*Q+3*I)%5;Q=I%5,I=m}for(Q=0;Q<5;Q++)for(I=0;I<5;I++)E[Q+5*I]=I+(2*Q+3*I)%5*5;for(var y=1,x=0;x<24;x++){for(var Y=0,v=0,S=0;S<7;S++){if(1&y){var z=(1<>>24)|4278255360&(x<<24|x>>>8),(v=p[y]).high^=Y=16711935&(Y<<8|Y>>>24)|4278255360&(Y<<24|Y>>>8),v.low^=x}for(var S=0;S<24;S++){for(var z=0;z<5;z++){for(var F=0,$=0,gA=0;gA<5;gA++)F^=(v=p[z+5*gA]).high,$^=v.low;var _=e[z];_.high=F,_.low=$}for(z=0;z<5;z++){var fA=e[(z+4)%5],iA=e[(z+1)%5],wA=iA.high,IA=iA.low;for(F=fA.high^(wA<<1|IA>>>31),$=fA.low^(IA<<1|wA>>>31),gA=0;gA<5;gA++)(v=p[z+5*gA]).high^=F,v.low^=$}for(var FA=1;FA<25;FA++){var YA=(v=p[FA]).high,HA=v.low,J=d[FA];J<32?(F=YA<>>32-J,$=HA<>>32-J):(F=HA<>>64-J,$=YA<>>64-J);var BA=e[E[FA]];BA.high=F,BA.low=$}var aA=e[0],eA=p[0];for(aA.high=eA.high,aA.low=eA.low,z=0;z<5;z++)for(gA=0;gA<5;gA++){var EA=e[FA=z+5*gA],xA=e[(z+1)%5+5*gA],OA=e[(z+2)%5+5*gA];(v=p[FA]).high=EA.high^~xA.high&OA.high,v.low=EA.low^~xA.low&OA.low}var v,W=C[S];(v=p[0]).high^=W.high,v.low^=W.low}},_doFinalize:function(){var I=this._data,R=I.words,m=8*I.sigBytes,y=32*this.blockSize;R[m>>>5]|=1<<24-m%32,R[(a.ceil((m+1)/y)*y>>>5)-1]|=128,I.sigBytes=4*R.length,this._process();for(var x=this._state,Y=this.cfg.outputLength/8,v=Y/8,S=[],z=0;z>>24)|4278255360&($<<24|$>>>8),S.push(gA=16711935&(gA<<8|gA>>>24)|4278255360&(gA<<24|gA>>>8)),S.push($)}return new g.init(S,Y)},clone:function(){for(var I=f.clone.call(this),R=I._state=this._state.slice(0),p=0;p<25;p++)R[p]=R[p].clone();return I}});s.SHA3=f._createHelper(h),s.HmacSHA3=f._createHmacHelper(h)}(Math),B.SHA3)},371:function(b,A,n){"use strict";var B,a,s,o,g,f,w,u;b.exports=(B=n(34559),n(26478),n(97074),o=(s=(a=B).x64).Word,g=s.WordArray,u=(f=a.algo).SHA384=(w=f.SHA512).extend({_doReset:function(){this._hash=new g.init([new o.init(3418070365,3238371032),new o.init(1654270250,914150663),new o.init(2438529370,812702999),new o.init(355462360,4144912697),new o.init(1731405415,4290775857),new o.init(2394180231,1750603025),new o.init(3675008525,1694076839),new o.init(1203062813,3204075428)])},_doFinalize:function(){var d=w._doFinalize.call(this);return d.sigBytes-=16,d}}),a.SHA384=w._createHelper(u),a.HmacSHA384=w._createHmacHelper(u),B.SHA384)},97074:function(b,A,n){"use strict";var a;a=function(B){return function(){var a=B,o=a.lib.Hasher,g=a.x64,f=g.Word,w=g.WordArray,u=a.algo;function r(){return f.create.apply(f,arguments)}var d=[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 e=0;e<80;e++)E[e]=r()}();var C=u.SHA512=o.extend({_doReset:function(){this._hash=new w.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(h,Q){for(var I=this._hash.words,R=I[0],p=I[1],m=I[2],y=I[3],x=I[4],Y=I[5],v=I[6],S=I[7],z=R.high,F=R.low,$=p.high,gA=p.low,_=m.high,fA=m.low,iA=y.high,wA=y.low,IA=x.high,FA=x.low,YA=Y.high,HA=Y.low,J=v.high,BA=v.low,aA=S.high,eA=S.low,EA=z,xA=F,OA=$,W=gA,L=_,rA=fA,AA=iA,QA=wA,yA=IA,cA=FA,CA=YA,DA=HA,NA=J,zA=BA,pA=aA,JA=eA,ft=0;ft<80;ft++){var wt,gt,pt=E[ft];if(ft<16)gt=pt.high=0|h[Q+2*ft],wt=pt.low=0|h[Q+2*ft+1];else{var Yt=E[ft-15],VA=Yt.high,_A=Yt.low,ht=(_A>>>1|VA<<31)^(_A>>>8|VA<<24)^(_A>>>7|VA<<25),vt=E[ft-2],Nt=vt.high,vA=vt.low,Z=(vA>>>19|Nt<<13)^(vA<<3|Nt>>>29)^(vA>>>6|Nt<<26),k=E[ft-7],q=E[ft-16],At=q.low;pt.high=gt=(gt=(gt=((VA>>>1|_A<<31)^(VA>>>8|_A<<24)^VA>>>7)+k.high+((wt=ht+k.low)>>>0>>0?1:0))+((Nt>>>19|vA<<13)^(Nt<<3|vA>>>29)^Nt>>>6)+((wt+=Z)>>>0>>0?1:0))+q.high+((wt+=At)>>>0>>0?1:0),pt.low=wt}var $t,O=yA&CA^~yA&NA,qA=cA&DA^~cA&zA,nt=EA&OA^EA&L^OA&L,ot=(xA>>>28|EA<<4)^(xA<<30|EA>>>2)^(xA<<25|EA>>>7),Ut=d[ft],sn=Ut.low,Kt=pA+((yA>>>14|cA<<18)^(yA>>>18|cA<<14)^(yA<<23|cA>>>9))+(($t=JA+((cA>>>14|yA<<18)^(cA>>>18|yA<<14)^(cA<<23|yA>>>9)))>>>0>>0?1:0),Me=ot+(xA&W^xA&rA^W&rA);pA=NA,JA=zA,NA=CA,zA=DA,CA=yA,DA=cA,yA=AA+(Kt=(Kt=(Kt=Kt+O+(($t+=qA)>>>0>>0?1:0))+Ut.high+(($t+=sn)>>>0>>0?1:0))+gt+(($t+=wt)>>>0>>0?1:0))+((cA=QA+$t|0)>>>0>>0?1:0)|0,AA=L,QA=rA,L=OA,rA=W,OA=EA,W=xA,EA=Kt+(((EA>>>28|xA<<4)^(EA<<30|xA>>>2)^(EA<<25|xA>>>7))+nt+(Me>>>0>>0?1:0))+((xA=$t+Me|0)>>>0<$t>>>0?1:0)|0}F=R.low=F+xA,R.high=z+EA+(F>>>0>>0?1:0),gA=p.low=gA+W,p.high=$+OA+(gA>>>0>>0?1:0),fA=m.low=fA+rA,m.high=_+L+(fA>>>0>>0?1:0),wA=y.low=wA+QA,y.high=iA+AA+(wA>>>0>>0?1:0),FA=x.low=FA+cA,x.high=IA+yA+(FA>>>0>>0?1:0),HA=Y.low=HA+DA,Y.high=YA+CA+(HA>>>0>>0?1:0),BA=v.low=BA+zA,v.high=J+NA+(BA>>>0>>0?1:0),eA=S.low=eA+JA,S.high=aA+pA+(eA>>>0>>0?1:0)},_doFinalize:function(){var h=this._data,Q=h.words,I=8*this._nDataBytes,R=8*h.sigBytes;return Q[R>>>5]|=128<<24-R%32,Q[30+(R+128>>>10<<5)]=Math.floor(I/4294967296),Q[31+(R+128>>>10<<5)]=I,h.sigBytes=4*Q.length,this._process(),this._hash.toX32()},clone:function(){var h=o.clone.call(this);return h._hash=this._hash.clone(),h},blockSize:32});a.SHA512=o._createHelper(C),a.HmacSHA512=o._createHmacHelper(C)}(),B.SHA512},b.exports=a(n(34559),n(26478))},64390:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,s=a.lib,o=s.WordArray,g=s.BlockCipher,f=a.algo,w=[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],u=[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],d=[{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],C=f.DES=g.extend({_doReset:function(){for(var p=this._key.words,m=[],y=0;y<56;y++){var x=w[y]-1;m[y]=p[x>>>5]>>>31-x%32&1}for(var Y=this._subKeys=[],v=0;v<16;v++){var S=Y[v]=[],z=r[v];for(y=0;y<24;y++)S[y/6|0]|=m[(u[y]-1+z)%28]<<31-y%6,S[4+(y/6|0)]|=m[28+(u[y+24]-1+z)%28]<<31-y%6;for(S[0]=S[0]<<1|S[0]>>>31,y=1;y<7;y++)S[y]=S[y]>>>4*(y-1)+3;S[7]=S[7]<<5|S[7]>>>27}var F=this._invSubKeys=[];for(y=0;y<16;y++)F[y]=Y[15-y]},encryptBlock:function(R,p){this._doCryptBlock(R,p,this._subKeys)},decryptBlock:function(R,p){this._doCryptBlock(R,p,this._invSubKeys)},_doCryptBlock:function(R,p,m){this._lBlock=R[p],this._rBlock=R[p+1],e.call(this,4,252645135),e.call(this,16,65535),h.call(this,2,858993459),h.call(this,8,16711935),e.call(this,1,1431655765);for(var y=0;y<16;y++){for(var x=m[y],Y=this._lBlock,v=this._rBlock,S=0,z=0;z<8;z++)S|=d[z][((v^x[z])&E[z])>>>0];this._lBlock=v,this._rBlock=Y^S}var F=this._lBlock;this._lBlock=this._rBlock,this._rBlock=F,e.call(this,1,1431655765),h.call(this,8,16711935),h.call(this,2,858993459),e.call(this,16,65535),e.call(this,4,252645135),R[p]=this._lBlock,R[p+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function e(I,R){var p=(this._lBlock>>>I^this._rBlock)&R;this._rBlock^=p,this._lBlock^=p<>>I^this._lBlock)&R;this._lBlock^=p,this._rBlock^=p<192.");var m=p.slice(0,2),y=p.length<4?p.slice(0,2):p.slice(2,4),x=p.length<6?p.slice(0,2):p.slice(4,6);this._des1=C.createEncryptor(o.create(m)),this._des2=C.createEncryptor(o.create(y)),this._des3=C.createEncryptor(o.create(x))},encryptBlock:function(R,p){this._des1.encryptBlock(R,p),this._des2.decryptBlock(R,p),this._des3.encryptBlock(R,p)},decryptBlock:function(R,p){this._des3.decryptBlock(R,p),this._des2.encryptBlock(R,p),this._des1.decryptBlock(R,p)},keySize:6,ivSize:2,blockSize:2});a.TripleDES=g._createHelper(Q)}(),B.TripleDES)},26478:function(b,A,n){"use strict";var B,o,g,f,w;n(20731),b.exports=(B=n(34559),g=(o=B.lib).Base,f=o.WordArray,(w=B.x64={}).Word=g.extend({init:function(E,C){this.high=E,this.low=C}}),w.WordArray=g.extend({init:function(E,C){E=this.words=E||[],this.sigBytes=null!=C?C:8*E.length},toX32:function(){for(var E=this.words,C=E.length,e=[],h=0;h=u.length?{done:!0}:{done:!1,value:u[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(u,r){(null==r||r>u.length)&&(r=u.length);for(var d=0,E=new Array(r);d=0;--W){var L=this.tryEntries[W],rA=L.completion;if("root"===L.tryLoc)return OA("end");if(L.tryLoc<=this.prev){var AA=E.call(L,"catchLoc"),QA=E.call(L,"finallyLoc");if(AA&&QA){if(this.prev=0;--OA){var W=this.tryEntries[OA];if(W.tryLoc<=this.prev&&E.call(W,"finallyLoc")&&this.prev=0;--xA){var OA=this.tryEntries[xA];if(OA.finallyLoc===EA)return this.complete(OA.completion,OA.afterLoc),J(OA),S}},catch:function(EA){for(var xA=this.tryEntries.length-1;xA>=0;--xA){var OA=this.tryEntries[xA];if(OA.tryLoc===EA){var W=OA.completion;if("throw"===W.type){var L=W.arg;J(OA)}return L}}throw new Error("illegal catch attempt")},delegateYield:function(EA,xA,OA){return this.delegate={iterator:aA(EA),resultName:xA,nextLoc:OA},"next"===this.method&&(this.arg=u),S}},r}n(35877),n(38178),n(11765),n(24863),n(43448),n(63956),n(71950),n(68067),n(57114),n(42437),n(65292),n(73844),n(69330),n(81755),n(20731),n(14032),n(61726),n(58281),n(6422),n(94712);b.exports=function(){function u(d){this.stateTable=d.stateTable,this.accepting=d.accepting,this.tags=d.tags}var r=u.prototype;return r.match=function(E){var C,e=this;return(C={})[Symbol.iterator]=o().mark(function h(){var Q,I,R,p,m,y;return o().wrap(function(Y){for(;;)switch(Y.prev=Y.next){case 0:Q=1,I=null,R=null,p=null,m=0;case 5:if(!(m=I)){Y.next=13;break}return Y.next=13,[I,R,e.tags[p]];case 13:Q=e.stateTable[1][y],I=null;case 15:0!==Q&&null==I&&(I=m),e.accepting[Q]&&(R=m),0===Q&&(Q=1);case 18:m++,Y.next=5;break;case 21:if(!(null!=I&&null!=R&&R>=I)){Y.next=24;break}return Y.next=24,[I,R,e.tags[Q]];case 24:case"end":return Y.stop()}},h)}),C},r.apply=function(E,C){for(var h,e=B(this.match(E));!(h=e()).done;)for(var y,Q=h.value,I=Q[0],R=Q[1],m=B(Q[2]);!(y=m()).done;){var x=y.value;"function"==typeof C[x]&&C[x](I,R,E.slice(I,R+1))}},u}()},80646:function(b,A,n){"use strict";var B=n(50621).Buffer;n(58028),n(20731),n(14032),n(68067);var a=n(48181),s=n(6729);b.exports=function(){function o(f){var w;for(this.data=f,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var u=this.readUInt32(),r="";for(w=0;w<4;w++)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(u);break;case"IDAT":for(w=0;w0)for(w=0;wthis.data.length)throw new Error("Incomplete or corrupt PNG file")}}o.decode=function(w,u){return a.readFile(w,function(r,d){return new o(d).decode(function(C){return u(C)})})},o.load=function(w){return new o(a.readFileSync(w))};var g=o.prototype;return g.read=function(w){for(var u=new Array(w),r=0;r"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof w);return s(w,u,r)}),f.alloc||(f.alloc=function(w,u,r){if("number"!=typeof w)throw new TypeError('The "size" argument must be of type number. Received type '+typeof w);if(w<0||w>=2147483648)throw new RangeError('The value "'+w+'" is invalid for option "size"');var d=s(w);return u&&0!==u.length?"string"==typeof r?d.fill(u,r):d.fill(u):d.fill(0),d}),!o.kStringMaxLength)try{o.kStringMaxLength=B.binding("buffer").kStringMaxLength}catch{}o.constants||(o.constants={MAX_LENGTH:o.kMaxLength},o.kStringMaxLength&&(o.constants.MAX_STRING_LENGTH=o.kStringMaxLength)),b.exports=o},57540:function(b,A,n){"use strict";function B(Q,I){var R=Object.keys(Q);if(Object.getOwnPropertySymbols){var p=Object.getOwnPropertySymbols(Q);I&&(p=p.filter(function(m){return Object.getOwnPropertyDescriptor(Q,m).enumerable})),R.push.apply(R,p)}return R}function a(Q){for(var I=1;I0?this.tail.next=p:this.head=p,this.tail=p,++this.length}},{key:"unshift",value:function(R){var p={data:R,next:this.head};0===this.length&&(this.tail=p),this.head=p,++this.length}},{key:"shift",value:function(){if(0!==this.length){var R=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,R}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(R){if(0===this.length)return"";for(var p=this.head,m=""+p.data;p=p.next;)m+=R+p.data;return m}},{key:"concat",value:function(R){if(0===this.length)return d.alloc(0);for(var p=d.allocUnsafe(R>>>0),m=this.head,y=0;m;)h(m.data,p,y),y+=m.data.length,m=m.next;return p}},{key:"consume",value:function(R,p){var m;return Rx.length?x.length:R;if(y+=Y===x.length?x:x.slice(0,R),0==(R-=Y)){Y===x.length?(++m,this.head=p.next?p.next:this.tail=null):(this.head=p,p.data=x.slice(Y));break}++m}return this.length-=m,y}},{key:"_getBuffer",value:function(R){var p=d.allocUnsafe(R),m=this.head,y=1;for(m.data.copy(p),R-=m.data.length;m=m.next;){var x=m.data,Y=R>x.length?x.length:R;if(x.copy(p,p.length-R,0,Y),0==(R-=Y)){Y===x.length?(++y,this.head=m.next?m.next:this.tail=null):(this.head=m,m.data=x.slice(Y));break}++y}return this.length-=y,p}},{key:e,value:function(R,p){return C(this,a(a({},p),{},{depth:0,customInspect:!1}))}}]),Q}()},72361:function(b,A,n){"use strict";n(41584);var B=n(50621),a=B.Buffer;function s(g,f){for(var w in g)f[w]=g[w]}function o(g,f,w){return a(g,f,w)}a.from&&a.alloc&&a.allocUnsafe&&a.allocUnsafeSlow?b.exports=B:(s(B,A),A.Buffer=o),s(a,o),o.from=function(g,f,w){if("number"==typeof g)throw new TypeError("Argument must not be a number");return a(g,f,w)},o.alloc=function(g,f,w){if("number"!=typeof g)throw new TypeError("Argument must be a number");var u=a(g);return void 0!==f?"string"==typeof w?u.fill(f,w):u.fill(f):u.fill(0),u},o.allocUnsafe=function(g){if("number"!=typeof g)throw new TypeError("Argument must be a number");return a(g)},o.allocUnsafeSlow=function(g){if("number"!=typeof g)throw new TypeError("Argument must be a number");return B.SlowBuffer(g)}},41209:function(b,A,n){"use strict";n(81755),n(20731),n(14032),n(56912),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529);var B=n(3483),s=n(51014).swap32LE;b.exports=function(){function x(v){var S="function"==typeof v.readUInt32BE&&"function"==typeof v.slice;if(S||v instanceof Uint8Array){var z;if(S)this.highStart=v.readUInt32LE(0),this.errorValue=v.readUInt32LE(4),z=v.readUInt32LE(8),v=v.slice(12);else{var F=new DataView(v.buffer);this.highStart=F.getUint32(0,!0),this.errorValue=F.getUint32(4,!0),z=F.getUint32(8,!0),v=v.subarray(12)}v=B(v,new Uint8Array(z)),v=B(v,new Uint8Array(z)),s(v),this.data=new Uint32Array(v.buffer)}else{var $=v;this.data=$.data,this.highStart=$.highStart,this.errorValue=$.errorValue}}return x.prototype.get=function(S){return S<0||S>1114111?this.errorValue:S<55296||S>56319&&S<=65535?this.data[(this.data[S>>5]<<2)+(31&S)]:S<=65535?this.data[(this.data[2048+(S-55296>>5)]<<2)+(31&S)]:S>11)]+(S>>5&63)]<<2)+(31&S)]:this.data[this.data.length-4]},x}()},51014:function(b,A,n){"use strict";n(81755),n(14032),n(56912),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529);var B=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],a=function(f,w,u){var r=f[w];f[w]=f[u],f[u]=r};b.exports={swap32LE:function(f){B&&function(f){for(var w=f.length,u=0;u/)){for(;at=et();)XA.childNodes.push(at),at.parentNode=XA,XA.textContent+=3===at.nodeType||4===at.nodeType?at.nodeValue:at.textContent;return(LA=it.match(/^<\/([\w:.-]+)\s*>/,!0))?(LA[1]===XA.nodeName||(ee('parseXml: tag not matching, opening "'+XA.nodeName+'" & closing "'+LA[1]+'"'),UA=!0),XA):(ee('parseXml: tag not matching, opening "'+XA.nodeName+'" & not closing'),UA=!0,XA)}if(it.match(/^\/>/))return XA;ee('parseXml: tag could not be parsed "'+XA.nodeName+'"'),UA=!0}else{if(LA=it.match(/^/))return new SA(null,8,LA,UA);if(LA=it.match(/^<\?[\s\S]*?\?>/))return new SA(null,7,LA,UA);if(LA=it.match(/^/))return new SA(null,10,LA,UA);if(LA=it.match(/^/,!0))return new SA("#cdata-section",4,LA[1],UA);if(LA=it.match(/^([^<]+)/,!0))return new SA("#text",3,_(LA[1]),UA)}};TA=kA();)1!==TA.nodeType||RA?(1===TA.nodeType||3===TA.nodeType&&""!==TA.nodeValue.trim())&&ee("parseXml: data after document end has been discarded"):RA=TA;return it.matchAll()&&ee("parseXml: parsing error"),RA}function _(ZA){return ZA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(SA,it,RA,TA){return it?String.fromCharCode(parseInt(it,10)):RA?String.fromCharCode(parseInt(RA,16)):TA&&d[TA]?String.fromCharCode(d[TA]):SA})}function fA(ZA){var SA,it;return ZA=(ZA||"").trim(),(SA=u[ZA])?it=[SA.slice(),1]:(SA=ZA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(SA[1]=parseInt(SA[1]),SA[2]=parseInt(SA[2]),SA[3]=parseInt(SA[3]),SA[4]=parseFloat(SA[4]),SA[1]<256&&SA[2]<256&&SA[3]<256&&SA[4]<=1&&(it=[SA.slice(1,4),SA[4]])):(SA=ZA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(SA[1]=parseInt(SA[1]),SA[2]=parseInt(SA[2]),SA[3]=parseInt(SA[3]),SA[1]<256&&SA[2]<256&&SA[3]<256&&(it=[SA.slice(1,4),1])):(SA=ZA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(SA[1]=2.55*parseFloat(SA[1]),SA[2]=2.55*parseFloat(SA[2]),SA[3]=2.55*parseFloat(SA[3]),SA[1]<256&&SA[2]<256&&SA[3]<256&&(it=[SA.slice(1,4),1])):(SA=ZA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?it=[[parseInt(SA[1],16),parseInt(SA[2],16),parseInt(SA[3],16)],1]:(SA=ZA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(it=[[17*parseInt(SA[1],16),17*parseInt(SA[2],16),17*parseInt(SA[3],16)],1]),Fe?Fe(it,ZA):it}function iA(ZA,SA,it){var RA=ZA[0].slice(),TA=ZA[1]*SA;if(it){for(var UA=0;UA=0;SA--)ZA=wA(wn[SA].savedMatrix,ZA);return ZA}function YA(){return(new Yt).M(0,0).L(s.page.width,0).L(s.page.width,s.page.height).L(0,s.page.height).transform(HA(FA())).getBoundingBox()}function HA(ZA){var SA=ZA[0]*ZA[3]-ZA[1]*ZA[2];return[ZA[3]/SA,-ZA[1]/SA,-ZA[2]/SA,ZA[0]/SA,(ZA[2]*ZA[5]-ZA[3]*ZA[4])/SA,(ZA[1]*ZA[4]-ZA[0]*ZA[5])/SA]}function J(ZA){var SA=xA(ZA[0]),it=xA(ZA[1]),RA=xA(ZA[2]),TA=xA(ZA[3]),UA=xA(ZA[4]),kA=xA(ZA[5]);if(EA(SA*TA-it*RA,0))return[SA,it,RA,TA,UA,kA]}function BA(ZA){var SA=ZA[2]||0,it=ZA[1]||0,RA=ZA[0]||0;if(eA(SA,0)&&eA(it,0))return[];if(eA(SA,0))return[-RA/it];var TA=it*it-4*SA*RA;return EA(TA,0)&&TA>0?[(-it+Math.sqrt(TA))/(2*SA),(-it-Math.sqrt(TA))/(2*SA)]:eA(TA,0)?[-it/(2*SA)]:[]}function aA(ZA,SA){return(SA[0]||0)+(SA[1]||0)*ZA+(SA[2]||0)*ZA*ZA+(SA[3]||0)*ZA*ZA*ZA}function eA(ZA,SA){return Math.abs(ZA-SA)<1e-10}function EA(ZA,SA){return Math.abs(ZA-SA)>=1e-10}function xA(ZA){return ZA>-1e21&&ZA<1e21?Math.round(1e6*ZA)/1e6:0}function W(ZA){for(var RA,SA=new wt((ZA||"").trim()),it=[1,0,0,1,0,0];RA=SA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var TA=RA[1],UA=[],kA=new wt(RA[2].trim()),et=void 0;et=kA.matchNumber();)UA.push(Number(et)),kA.matchSeparator();if("matrix"===TA&&6===UA.length)it=wA(it,[UA[0],UA[1],UA[2],UA[3],UA[4],UA[5]]);else if("translate"===TA&&2===UA.length)it=wA(it,[1,0,0,1,UA[0],UA[1]]);else if("translate"===TA&&1===UA.length)it=wA(it,[1,0,0,1,UA[0],0]);else if("scale"===TA&&2===UA.length)it=wA(it,[UA[0],0,0,UA[1],0,0]);else if("scale"===TA&&1===UA.length)it=wA(it,[UA[0],0,0,UA[0],0,0]);else if("rotate"===TA&&3===UA.length){var LA=UA[0]*Math.PI/180;it=wA(it,[1,0,0,1,UA[1],UA[2]],[Math.cos(LA),Math.sin(LA),-Math.sin(LA),Math.cos(LA),0,0],[1,0,0,1,-UA[1],-UA[2]])}else if("rotate"===TA&&1===UA.length){var at=UA[0]*Math.PI/180;it=wA(it,[Math.cos(at),Math.sin(at),-Math.sin(at),Math.cos(at),0,0])}else if("skewX"===TA&&1===UA.length){var XA=UA[0]*Math.PI/180;it=wA(it,[1,0,Math.tan(XA),1,0,0])}else{if("skewY"!==TA||1!==UA.length)return;var dt=UA[0]*Math.PI/180;it=wA(it,[1,Math.tan(dt),0,1,0,0])}SA.matchSeparator()}if(!SA.matchAll())return it}function L(ZA,SA,it,RA,TA,UA){var kA=(ZA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],et=kA[1]||kA[4]||"meet",XA=SA/RA,dt=it/TA,xt={Min:0,Mid:.5,Max:1}[kA[2]||"Mid"]-(UA||0),St={Min:0,Mid:.5,Max:1}[kA[3]||"Mid"]-(UA||0);return"slice"===et?dt=XA=Math.max(XA,dt):"meet"===et&&(dt=XA=Math.min(XA,dt)),[XA,0,0,dt,xt*(SA-RA*XA),St*(it-TA*dt)]}function rA(ZA){var SA=Object.create(null);ZA=(ZA||"").trim().split(/;/);for(var it=0;itue&&(Ht=ue,ue=ie,ie=Ht),Jt>se&&(Ht=se,se=Jt,Jt=Ht);for(var ve=BA(xt),Oe=0;Oe=0&&ve[Oe]<=1){var ge=aA(ve[Oe],XA);geue&&(ue=ge)}for(var xe=BA(St),Ne=0;Ne=0&&xe[Ne]<=1){var qe=aA(xe[Ne],dt);qese&&(se=qe)}return[ie,Jt,ue,se]},this.getPointAtLength=function(Ht){if(eA(Ht,0))return this.startPoint;if(eA(Ht,this.totalLength))return this.endPoint;if(!(Ht<0||Ht>this.totalLength))for(var ie=1;ie<=at;ie++){var Jt=jt[ie-1],ue=jt[ie];if(Jt<=Ht&&Ht<=ue){var se=(ie-(ue-Ht)/(ue-Jt))/at,ve=aA(se,XA),Oe=aA(se,dt),ge=aA(se,xt),xe=aA(se,St);return[ve,Oe,Math.atan2(xe,ge)]}}}},pt=function(SA,it,RA,TA){this.totalLength=Math.sqrt((RA-SA)*(RA-SA)+(TA-it)*(TA-it)),this.startPoint=[SA,it,Math.atan2(TA-it,RA-SA)],this.endPoint=[RA,TA,Math.atan2(TA-it,RA-SA)],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(UA){if(UA>=0&&UA<=this.totalLength){var kA=UA/this.totalLength||0;return[this.startPoint[0]+kA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+kA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},Yt=function ZA(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var UA,kA,et,SA=0,it=0,RA=0,TA=0;this.move=function(LA,at){return SA=RA=LA,it=TA=at,null},this.line=function(LA,at){var XA=new pt(RA,TA,LA,at);return RA=LA,TA=at,XA},this.curve=function(LA,at,XA,dt,xt,St){var jt=new gt(RA,TA,LA,at,XA,dt,xt,St);return RA=xt,TA=St,jt},this.close=function(){var LA=new pt(RA,TA,SA,it);return RA=SA,TA=it,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]),UA="M",this},this.m=function(LA,at){return this.M(RA+LA,TA+at)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),UA="Z",this},this.L=function(LA,at){return this.addCommand(["line",!0,!0,LA,at]),UA="L",this},this.l=function(LA,at){return this.L(RA+LA,TA+at)},this.H=function(LA){return this.L(LA,TA)},this.h=function(LA){return this.L(RA+LA,TA)},this.V=function(LA){return this.L(RA,LA)},this.v=function(LA){return this.L(RA,TA+LA)},this.C=function(LA,at,XA,dt,xt,St){return this.addCommand(["curve",!0,!0,LA,at,XA,dt,xt,St]),UA="C",kA=XA,et=dt,this},this.c=function(LA,at,XA,dt,xt,St){return this.C(RA+LA,TA+at,RA+XA,TA+dt,RA+xt,TA+St)},this.S=function(LA,at,XA,dt){return this.C(RA+("C"===UA?RA-kA:0),TA+("C"===UA?TA-et:0),LA,at,XA,dt)},this.s=function(LA,at,XA,dt){return this.C(RA+("C"===UA?RA-kA:0),TA+("C"===UA?TA-et:0),RA+LA,TA+at,RA+XA,TA+dt)},this.Q=function(LA,at,XA,dt){return this.addCommand(["curve",!0,!0,RA+.6666666666666666*(LA-RA),TA+2/3*(at-TA),XA+2/3*(LA-XA),dt+2/3*(at-dt),XA,dt]),UA="Q",kA=LA,et=at,this},this.q=function(LA,at,XA,dt){return this.Q(RA+LA,TA+at,RA+XA,TA+dt)},this.T=function(LA,at){return this.Q(RA+("Q"===UA?RA-kA:0),TA+("Q"===UA?TA-et:0),LA,at)},this.t=function(LA,at){return this.Q(RA+("Q"===UA?RA-kA:0),TA+("Q"===UA?TA-et:0),RA+LA,TA+at)},this.A=function(LA,at,XA,dt,xt,St,jt){if(eA(LA,0)||eA(at,0))this.addCommand(["line",!0,!0,St,jt]);else{XA*=Math.PI/180,LA=Math.abs(LA),at=Math.abs(at),dt=1*!!dt,xt=1*!!xt;var Xt=Math.cos(XA)*(RA-St)/2+Math.sin(XA)*(TA-jt)/2,ne=Math.cos(XA)*(TA-jt)/2-Math.sin(XA)*(RA-St)/2,Et=Xt*Xt/(LA*LA)+ne*ne/(at*at);Et>1&&(LA*=Math.sqrt(Et),at*=Math.sqrt(Et));var Rt=Math.sqrt(Math.max(0,LA*LA*at*at-LA*LA*ne*ne-at*at*Xt*Xt)/(LA*LA*ne*ne+at*at*Xt*Xt)),Zt=(dt===xt?-1:1)*Rt*LA*ne/at,Ht=(dt===xt?1:-1)*Rt*at*Xt/LA,ie=Math.cos(XA)*Zt-Math.sin(XA)*Ht+(RA+St)/2,Jt=Math.sin(XA)*Zt+Math.cos(XA)*Ht+(TA+jt)/2,ue=Math.atan2((ne-Ht)/at,(Xt-Zt)/LA),se=Math.atan2((-ne-Ht)/at,(-Xt-Zt)/LA);0===xt&&se-ue>0?se-=2*Math.PI:1===xt&&se-ue<0&&(se+=2*Math.PI);for(var ve=Math.ceil(Math.abs(se-ue)/(Math.PI/In)),Oe=0;OeLA[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,XA=0;XATA.selector.specificity||(SA[UA]=TA.css[UA],it[UA]=TA.selector.specificity)}return SA}(SA),this.allowedChildren=[],this.attr=function(UA){if("function"==typeof SA.getAttribute)return SA.getAttribute(UA)},this.resolveUrl=function(UA){var kA=(UA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],et=kA[1]||kA[3]||kA[5]||kA[7],LA=kA[2]||kA[4]||kA[6]||kA[8];if(LA){if(!et){var at=o.getElementById(LA);if(at)return-1===this.stack.indexOf(at)?at:void ee('SVGtoPDF: loop of circular references for id "'+LA+'"')}if(Qe){var XA=kt[et];if(!XA){(function OA(ZA){return"object"==typeof ZA&&null!==ZA&&"number"==typeof ZA.length})(XA=Qe(et))||(XA=[XA]);for(var dt=0;dt=0&&et[3]>=0?et:kA},this.getPercent=function(UA,kA){var et=this.attr(UA),LA=new wt((et||"").trim()),dt=LA.matchNumber();return!dt||(LA.match("%")&&(dt*=.01),LA.matchAll())?kA:Math.max(0,Math.min(1,dt))},this.chooseValue=function(UA){for(var kA=0;kA=0&&(LA=XA);break;case"stroke-miterlimit":null!=(XA=parseFloat(et))&&XA>=1&&(LA=XA);break;case"word-spacing":case"letter-spacing":LA=this.computeLength(et,this.getViewport());break;case"stroke-dashoffset":if(null!=(LA=this.computeLength(et,this.getViewport()))&&LA<0)for(var ne=this.get("stroke-dasharray"),Et=0;Et0?kA:this.ref?this.ref.getChildren():[]},this.getPaint=function(kA,et,LA,at){var XA="userSpaceOnUse"!==this.attr("patternUnits"),dt="objectBoundingBox"===this.attr("patternContentUnits"),xt=this.getLength("x",XA?1:this.getParentVWidth(),0),St=this.getLength("y",XA?1:this.getParentVHeight(),0),jt=this.getLength("width",XA?1:this.getParentVWidth(),0),Xt=this.getLength("height",XA?1:this.getParentVHeight(),0);dt&&!XA?(xt=(xt-kA[0])/(kA[2]-kA[0])||0,St=(St-kA[1])/(kA[3]-kA[1])||0,jt=jt/(kA[2]-kA[0])||0,Xt=Xt/(kA[3]-kA[1])||0):!dt&&XA&&(xt=kA[0]+xt*(kA[2]-kA[0]),St=kA[1]+St*(kA[3]-kA[1]),jt*=kA[2]-kA[0],Xt*=kA[3]-kA[1]);var ne=this.getViewbox("viewBox",[0,0,jt,Xt]),Rt=wA(L((this.attr("preserveAspectRatio")||"").trim(),jt,Xt,ne[2],ne[3],0),[1,0,0,1,-ne[0],-ne[1]]),Zt=W(this.attr("patternTransform"));if(dt&&(Zt=wA([kA[2]-kA[0],0,0,kA[3]-kA[1],kA[0],kA[1]],Zt)),(Zt=J(Zt=wA(Zt,[1,0,0,1,xt,St])))&&(Rt=J(Rt))&&(jt=xA(jt))&&(Xt=xA(Xt))){var Ht=h([0,0,jt,Xt]);return s.transform.apply(s,Rt),this.drawChildren(LA,at),Q(Ht),[p(Ht,jt,Xt,Zt),et]}return RA?[RA[0],RA[1]*et]:void 0},this.getVWidth=function(){var kA="userSpaceOnUse"!==this.attr("patternUnits"),et=this.getLength("width",kA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,et,0])[2]},this.getVHeight=function(){var kA="userSpaceOnUse"!==this.attr("patternUnits"),et=this.getLength("height",kA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,et])[3]}},hA=function ZA(SA,it,RA){VA.call(this,SA,it),this.allowedChildren=["stop"],this.ref=function(){var kA=this.getUrl("href")||this.getUrl("xlink:href");if(kA&&kA.nodeName===SA.nodeName)return new ZA(kA,it,RA)}.call(this);var TA=this.attr;this.attr=function(kA){var et=TA.call(this,kA);return null!=et||"href"===kA||"xlink:href"===kA?et:this.ref?this.ref.attr(kA):null};var UA=this.getChildren;this.getChildren=function(){var kA=UA.call(this);return kA.length>0?kA:this.ref?this.ref.getChildren():[]},this.getPaint=function(kA,et,LA,at){var XA=this.getChildren();if(0!==XA.length){if(1===XA.length){var dt=XA[0],xt=dt.get("stop-color");return"none"===xt?void 0:iA(xt,dt.get("stop-opacity")*et,at)}var ne,Et,Rt,Zt,Ht,ie,St="userSpaceOnUse"!==this.attr("gradientUnits"),jt=W(this.attr("gradientTransform")),Xt=this.attr("spreadMethod"),Jt=0,ue=0,se=1;if(St&&(jt=wA([kA[2]-kA[0],0,0,kA[3]-kA[1],kA[0],kA[1]],jt)),jt=J(jt)){if("linearGradient"===this.name)Et=this.getLength("x1",St?1:this.getVWidth(),0),Rt=this.getLength("x2",St?1:this.getVWidth(),St?1:this.getVWidth()),Zt=this.getLength("y1",St?1:this.getVHeight(),0),Ht=this.getLength("y2",St?1:this.getVHeight(),0);else{Rt=this.getLength("cx",St?1:this.getVWidth(),St?.5:.5*this.getVWidth()),Ht=this.getLength("cy",St?1:this.getVHeight(),St?.5:.5*this.getVHeight()),ie=this.getLength("r",St?1:this.getViewport(),St?.5:.5*this.getViewport()),Et=this.getLength("fx",St?1:this.getVWidth(),Rt),Zt=this.getLength("fy",St?1:this.getVHeight(),Ht),ie<0&&ee("SvgElemGradient: negative r value");var ve=Math.sqrt(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2)),Oe=1;ve>ie&&(Et=Rt+(Et-Rt)*(Oe=ie/ve),Zt=Ht+(Zt-Ht)*Oe),ie=Math.max(ie,ve*Oe*1.000001)}if("reflect"===Xt||"repeat"===Xt){var ge=HA(jt),xe=IA([kA[0],kA[1]],ge),Ne=IA([kA[2],kA[1]],ge),qe=IA([kA[2],kA[3]],ge),Dn=IA([kA[0],kA[3]],ge);"linearGradient"===this.name?(Jt=Math.max((xe[0]-Rt)*(Rt-Et)+(xe[1]-Ht)*(Ht-Zt),(Ne[0]-Rt)*(Rt-Et)+(Ne[1]-Ht)*(Ht-Zt),(qe[0]-Rt)*(Rt-Et)+(qe[1]-Ht)*(Ht-Zt),(Dn[0]-Rt)*(Rt-Et)+(Dn[1]-Ht)*(Ht-Zt))/(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2)),ue=Math.max((xe[0]-Et)*(Et-Rt)+(xe[1]-Zt)*(Zt-Ht),(Ne[0]-Et)*(Et-Rt)+(Ne[1]-Zt)*(Zt-Ht),(qe[0]-Et)*(Et-Rt)+(qe[1]-Zt)*(Zt-Ht),(Dn[0]-Et)*(Et-Rt)+(Dn[1]-Zt)*(Zt-Ht))/(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2))):Jt=Math.sqrt(Math.max(Math.pow(xe[0]-Rt,2)+Math.pow(xe[1]-Ht,2),Math.pow(Ne[0]-Rt,2)+Math.pow(Ne[1]-Ht,2),Math.pow(qe[0]-Rt,2)+Math.pow(qe[1]-Ht,2),Math.pow(Dn[0]-Rt,2)+Math.pow(Dn[1]-Ht,2)))/ie-1,Jt=Math.ceil(Jt+.5),se=(ue=Math.ceil(ue+.5))+1+Jt}ne="linearGradient"===this.name?s.linearGradient(Et-ue*(Rt-Et),Zt-ue*(Ht-Zt),Rt+Jt*(Rt-Et),Ht+Jt*(Ht-Zt)):s.radialGradient(Et,Zt,0,Rt,Ht,ie+Jt*ie);for(var tn=0;tn0&&ne.stop((tn+0)/se,on[0],on[1]),ne.stop((tn+Qn)/(Jt+ue+1),on[0],on[1]),en===XA.length-1&&Qn<1&&ne.stop((tn+1)/se,on[0],on[1])}return ne.setTransform.apply(ne,jt),[ne,1]}return RA?[RA[0],RA[1]*et]:void 0}}},q=function(SA,it){_A.call(this,SA,it),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(RA,TA){if("hidden"!==this.get("visibility")&&this.shape){if(s.save(),this.transform(),this.clip(),RA)this.shape.insertInDocument(),z(r.white),s.fill(this.get("clip-rule"));else{var kA;this.mask()&&(kA=h(YA()));var et=this.shape.getSubPaths(),LA=this.getFill(RA,TA),at=this.getStroke(RA,TA),XA=this.get("stroke-width"),dt=this.get("stroke-linecap");if(LA||at){if(LA&&z(LA),at){for(var xt=0;xt0&&et[xt].startPoint&&et[xt].startPoint.length>1){var St=et[xt].startPoint[0],jt=et[xt].startPoint[1];z(at),"square"===dt?s.rect(St-.5*XA,jt-.5*XA,XA,XA):"round"===dt&&s.circle(St,jt,.5*XA),s.fill()}var Xt=this.get("stroke-dasharray"),ne=this.get("stroke-dashoffset");if(EA(this.dashScale,1)){for(var Et=0;Et0&&et[Rt].insertInDocument();LA&&at?s.fillAndStroke(this.get("fill-rule")):LA?s.fill(this.get("fill-rule")):at&&s.stroke()}var Zt=this.get("marker-start"),Ht=this.get("marker-mid"),ie=this.get("marker-end");if("none"!==Zt||"none"!==Ht||"none"!==ie){var Jt=this.shape.getMarkers();if("none"!==Zt&&new ot(Zt,null).drawMarker(!1,TA,Jt[0],XA),"none"!==Ht)for(var se=1;se0&&kA>0?et&&LA?(et=Math.min(et,.5*UA),LA=Math.min(LA,.5*kA),this.shape=(new Yt).M(RA+et,TA).L(RA+UA-et,TA).A(et,LA,0,0,1,RA+UA,TA+LA).L(RA+UA,TA+kA-LA).A(et,LA,0,0,1,RA+UA-et,TA+kA).L(RA+et,TA+kA).A(et,LA,0,0,1,RA,TA+kA-LA).L(RA,TA+LA).A(et,LA,0,0,1,RA+et,TA).Z()):this.shape=(new Yt).M(RA,TA).L(RA+UA,TA).L(RA+UA,TA+kA).L(RA,TA+kA).Z():this.shape=new Yt},At=function(SA,it){q.call(this,SA,it);var RA=this.getLength("cx",this.getVWidth(),0),TA=this.getLength("cy",this.getVHeight(),0),UA=this.getLength("r",this.getViewport(),0);this.shape=UA>0?(new Yt).M(RA+UA,TA).A(UA,UA,0,0,1,RA-UA,TA).A(UA,UA,0,0,1,RA+UA,TA).Z():new Yt},O=function(SA,it){q.call(this,SA,it);var RA=this.getLength("cx",this.getVWidth(),0),TA=this.getLength("cy",this.getVHeight(),0),UA=this.getLength("rx",this.getVWidth(),0),kA=this.getLength("ry",this.getVHeight(),0);this.shape=UA>0&&kA>0?(new Yt).M(RA+UA,TA).A(UA,kA,0,0,1,RA-UA,TA).A(UA,kA,0,0,1,RA+UA,TA).Z():new Yt},qA=function(SA,it){q.call(this,SA,it);var RA=this.getLength("x1",this.getVWidth(),0),TA=this.getLength("y1",this.getVHeight(),0),UA=this.getLength("x2",this.getVWidth(),0),kA=this.getLength("y2",this.getVHeight(),0);this.shape=(new Yt).M(RA,TA).L(UA,kA)},nt=function(SA,it){q.call(this,SA,it);var RA=this.getNumberList("points");this.shape=new Yt;for(var TA=0;TA0?RA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},ot=function(SA,it){Qt.call(this,SA,it);var RA=this.getLength("markerWidth",this.getParentVWidth(),3),TA=this.getLength("markerHeight",this.getParentVHeight(),3),UA=this.getViewbox("viewBox",[0,0,RA,TA]);this.getVWidth=function(){return UA[2]},this.getVHeight=function(){return UA[3]},this.drawMarker=function(kA,et,LA,at){s.save();var XA=this.attr("orient"),dt=this.attr("markerUnits"),xt="auto"===XA?LA[2]:(parseFloat(XA)||0)*Math.PI/180,St="userSpaceOnUse"===dt?1:at;s.transform(Math.cos(xt)*St,Math.sin(xt)*St,-Math.sin(xt)*St,Math.cos(xt)*St,LA[0],LA[1]);var Et,jt=this.getLength("refX",this.getVWidth(),0),Xt=this.getLength("refY",this.getVHeight(),0),ne=L(this.attr("preserveAspectRatio"),RA,TA,UA[2],UA[3],.5);"hidden"===this.get("overflow")&&s.rect(ne[0]*(UA[0]+UA[2]/2-jt)-RA/2,ne[3]*(UA[1]+UA[3]/2-Xt)-TA/2,RA,TA).clip(),s.transform.apply(s,ne),s.translate(-jt,-Xt),this.get("opacity")<1&&!kA&&(Et=h(YA())),this.drawChildren(kA,et),Et&&(Q(Et),s.fillOpacity(this.get("opacity")),I(Et)),s.restore()}},Tt=function(SA,it){Qt.call(this,SA,it),this.useMask=function(RA){var TA=h(YA());s.save(),"objectBoundingBox"===this.attr("clipPathUnits")&&s.transform(RA[2]-RA[0],0,0,RA[3]-RA[1],RA[0],RA[1]),this.clip(),this.drawChildren(!0,!1),s.restore(),Q(TA),R(TA,!0)}},yt=function(SA,it){Qt.call(this,SA,it),this.useMask=function(RA){var UA,kA,et,LA,TA=h(YA());s.save(),"userSpaceOnUse"===this.attr("maskUnits")?(UA=this.getLength("x",this.getVWidth(),-.1*(RA[2]-RA[0])+RA[0]),kA=this.getLength("y",this.getVHeight(),-.1*(RA[3]-RA[1])+RA[1]),et=this.getLength("width",this.getVWidth(),1.2*(RA[2]-RA[0])),LA=this.getLength("height",this.getVHeight(),1.2*(RA[3]-RA[1]))):(UA=this.getLength("x",this.getVWidth(),-.1)*(RA[2]-RA[0])+RA[0],kA=this.getLength("y",this.getVHeight(),-.1)*(RA[3]-RA[1])+RA[1],et=this.getLength("width",this.getVWidth(),1.2)*(RA[2]-RA[0]),LA=this.getLength("height",this.getVHeight(),1.2)*(RA[3]-RA[1])),s.rect(UA,kA,et,LA).clip(),"objectBoundingBox"===this.attr("maskContentUnits")&&s.transform(RA[2]-RA[0],0,0,RA[3]-RA[1],RA[0],RA[1]),this.clip(),this.drawChildren(!1,!0),s.restore(),Q(TA),R(TA,!0)}},Ut=function(SA,it){_A.call(this,SA,it),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var RA=new Yt,TA=0;TA Tj")}s.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(DA(this._font.font,this._font.size)+NA(this._font.font,this._font.size)),RA,TA)},this.decorate=function(RA,TA,UA,kA){var et=this.getFill(UA,kA),LA=this.getStroke(UA,kA);et&&z(et),LA&&(F(LA),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,XA=this._pos;at0?kA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((UA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===UA.nodeName){var et=new jA(UA,this);this.pathObject=et.shape.clone().transform(et.get("transform")),this.pathLength=this.chooseValue(et.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},Kt=function(SA,it){Ut.call(this,SA,it),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(RA){var LA,at,TA="",UA=SA.textContent,kA=[],et=[],XA=0,dt=0;function xt(){if(et.length)for(var Et=et[et.length-1],Ht={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[LA+at]*(Et.x+Et.width-et[0].x)||0,ie=0;ieZt||ue<0)Et._pos[Jt].hidden=!0;else{var se=Rt.getPointAtLength(ue*Ht);EA(Ht,1)&&(Et._pos[Jt].scale*=Ht,Et._pos[Jt].width*=Ht),Et._pos[Jt].x=se[0]-.5*Et._pos[Jt].width*Math.cos(se[2])-Et._pos[Jt].y*Math.sin(se[2]),Et._pos[Jt].y=se[1]-.5*Et._pos[Jt].width*Math.sin(se[2])+Et._pos[Jt].y*Math.cos(se[2]),Et._pos[Jt].rotate=se[2]+Et._pos[Jt].rotate,Et._pos[Jt].continuous=!1}}else for(var ve=0;ve0&&se<1/0)for(var ve=0;ve=2)for(var Oe=(Rt-(ue-Jt))/(Et.length-1),ge=0;ge"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}();return function(){var V,X=m(dA);if(H){var uA=m(this).constructor;V=Reflect.construct(X,arguments,uA)}else V=X.apply(this,arguments);return function v(dA,H){return!H||"object"!=typeof H&&"function"!=typeof H?Y(dA):H}(this,V)}}function z(dA,H){return function gA(dA){if(Array.isArray(dA))return dA}(dA)||function fA(dA,H){if(!(typeof Symbol>"u")&&Symbol.iterator in Object(dA)){var T=[],X=!0,V=!1,uA=void 0;try{for(var tt,mA=dA[Symbol.iterator]();!(X=(tt=mA.next()).done)&&(T.push(tt.value),!H||T.length!==H);X=!0);}catch(rt){V=!0,uA=rt}finally{try{!X&&null!=mA.return&&mA.return()}finally{if(V)throw uA}}return T}}(dA,H)||iA(dA,H)||function FA(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(dA){return function $(dA){if(Array.isArray(dA))return wA(dA)}(dA)||function _(dA){if(typeof Symbol<"u"&&Symbol.iterator in Object(dA))return Array.from(dA)}(dA)||iA(dA)||function IA(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function iA(dA,H){if(dA){if("string"==typeof dA)return wA(dA,H);var T=Object.prototype.toString.call(dA).slice(8,-1);if("Object"===T&&dA.constructor&&(T=dA.constructor.name),"Map"===T||"Set"===T)return Array.from(dA);if("Arguments"===T||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(T))return wA(dA,H)}}function wA(dA,H){(null==H||H>dA.length)&&(H=dA.length);for(var T=0,X=new Array(H);T"u"||null==dA[Symbol.iterator]){if(Array.isArray(dA)||(T=iA(dA))||H&&dA&&"number"==typeof dA.length){T&&(dA=T);var X=0,V=function(){};return{s:V,n:function(){return X>=dA.length?{done:!0}:{done:!1,value:dA[X++]}},e:function(ut){throw ut},f:V}}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 tt,uA=!0,mA=!1;return{s:function(){T=dA[Symbol.iterator]()},n:function(){var ut=T.next();return uA=ut.done,ut},e:function(ut){mA=!0,tt=ut},f:function(){try{!uA&&null!=T.return&&T.return()}finally{if(mA)throw tt}}}}var HA=function(){function dA(){C(this,dA)}return h(dA,[{key:"toString",value:function(){throw new Error("Must be implemented by subclasses")}}]),dA}(),J=function(){function dA(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};C(this,dA),this._items={},this.limits="boolean"!=typeof H.limits||H.limits}return h(dA,[{key:"add",value:function(T,X){return this._items[T]=X}},{key:"get",value:function(T){return this._items[T]}},{key:"toString",value:function(){var T=this,X=Object.keys(this._items).sort(function(Ct,Mt){return T._compareKeys(Ct,Mt)}),V=["<<"];if(this.limits&&X.length>1){var mA=X[X.length-1];V.push(" /Limits ".concat(xA.convert([this._dataForKey(X[0]),this._dataForKey(mA)])))}V.push(" /".concat(this._keysName()," ["));var rt,tt=YA(X);try{for(tt.s();!(rt=tt.n()).done;){var ut=rt.value;V.push(" ".concat(xA.convert(this._dataForKey(ut))," ").concat(xA.convert(this._items[ut])))}}catch(Ct){tt.e(Ct)}finally{tt.f()}return V.push("]"),V.push(">>"),V.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")}}]),dA}(),BA=function(H,T){return(Array(T+1).join("0")+H).slice(-T)},aA=/[\n\r\t\b\f()\\]/g,eA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},xA=function(){function dA(){C(this,dA)}return h(dA,null,[{key:"convert",value:function(T){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof T)return"/".concat(T);if(T instanceof String){for(var V=T,uA=!1,mA=0,tt=V.length;mA127){uA=!0;break}var rt;return rt=uA?function(H){var T=H.length;if(1&T)throw new Error("Buffer length must be even");for(var X=0,V=T-1;X");if(T instanceof HA||T instanceof J)return T.toString();if(T instanceof Date){var ut="D:".concat(BA(T.getUTCFullYear(),4))+BA(T.getUTCMonth()+1,2)+BA(T.getUTCDate(),2)+BA(T.getUTCHours(),2)+BA(T.getUTCMinutes(),2)+BA(T.getUTCSeconds(),2)+"Z";return X&&(ut=(ut=X(a.from(ut,"ascii")).toString("binary")).replace(aA,function(Ot){return eA[Ot]})),"(".concat(ut,")")}if(Array.isArray(T)){var Ct=T.map(function(Ot){return dA.convert(Ot,X)}).join(" ");return"[".concat(Ct,"]")}if("[object Object]"==={}.toString.call(T)){var Mt=["<<"];for(var Dt in T){var Ft=T[Dt];Mt.push("/".concat(Dt," ").concat(dA.convert(Ft,X)))}return Mt.push(">>"),Mt.join("\n")}return"number"==typeof T?dA.number(T):"".concat(T)}},{key:"number",value:function(T){if(T>-1e21&&T<1e21)return Math.round(1e6*T)/1e6;throw new Error("unsupported number: ".concat(T))}}]),dA}(),OA=function(dA){p(T,dA);var H=S(T);function T(X,V){var uA,mA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return C(this,T),(uA=H.call(this)).document=X,uA.id=V,uA.data=mA,uA.gen=0,uA.compress=uA.document.compress&&!uA.data.Filter,uA.uncompressedLength=0,uA.buffer=[],uA}return h(T,[{key:"write",value:function(V){if(a.isBuffer(V)||(V=a.from(V+"\n","binary")),this.uncompressedLength+=V.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(V),this.data.Length+=V.length,this.compress)return this.data.Filter="FlateDecode"}},{key:"end",value:function(V){return V&&this.write(V),this.finalize()}},{key:"finalize",value:function(){this.offset=this.document._offset;var V=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=a.concat(this.buffer),this.compress&&(this.buffer=o.default.deflateSync(this.buffer)),V&&(this.buffer=V(this.buffer)),this.data.Length=this.buffer.length),this.document._write("".concat(this.id," ").concat(this.gen," obj")),this.document._write(xA.convert(this.data,V)),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")}}]),T}(HA),W={top:72,left:72,bottom:72,right:72},L={"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]},rA=function(){function dA(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};C(this,dA),this.document=H,this.size=T.size||"letter",this.layout=T.layout||"portrait",this.margins="number"==typeof T.margin?{top:T.margin,left:T.margin,bottom:T.margin,right:T.margin}:T.margins||W;var X=Array.isArray(this.size)?this.size:L[this.size.toUpperCase()];this.width=X["portrait"===this.layout?0:1],this.height=X["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 h(dA,[{key:"maxY",value:function(){return this.height-this.margins.bottom}},{key:"write",value:function(T){return this.content.write(T)}},{key:"end",value:function(){return this.dictionary.end(),this.resources.end(),this.content.end()}},{key:"fonts",get:function(){var T=this.resources.data;return null!=T.Font?T.Font:T.Font={}}},{key:"xobjects",get:function(){var T=this.resources.data;return null!=T.XObject?T.XObject:T.XObject={}}},{key:"ext_gstates",get:function(){var T=this.resources.data;return null!=T.ExtGState?T.ExtGState:T.ExtGState={}}},{key:"patterns",get:function(){var T=this.resources.data;return null!=T.Pattern?T.Pattern:T.Pattern={}}},{key:"colorSpaces",get:function(){var T=this.resources.data;return T.ColorSpace||(T.ColorSpace={})}},{key:"annotations",get:function(){var T=this.dictionary.data;return null!=T.Annots?T.Annots:T.Annots=[]}},{key:"structParentTreeKey",get:function(){var T=this.dictionary.data;return null!=T.StructParents?T.StructParents:T.StructParents=this.document.createStructParentTreeNextKey()}}]),dA}(),AA=function(dA){p(T,dA);var H=S(T);function T(){return C(this,T),H.apply(this,arguments)}return h(T,[{key:"_compareKeys",value:function(V,uA){return V.localeCompare(uA)}},{key:"_keysName",value:function(){return"Names"}},{key:"_dataForKey",value:function(V){return new String(V)}}]),T}(J);function QA(dA,H){if(dA=H[uA]&&dA<=H[uA+1])return!0;dA>H[uA+1]?T=V+1:X=V-1}return!1}var yA=[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],cA=function(H){return QA(H,yA)},CA=[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],NA=[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],pA=[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],JA=[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],ft=[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],wt=function(H){return QA(H,NA)||QA(H,ft)||QA(H,pA)||QA(H,JA)},gt=[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],pt=function(H){return QA(H,gt)},Yt=[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],VA=function(H){return QA(H,Yt)},_A=function(H){return QA(H,NA)},Qt=function(H){return QA(H,CA)},ht=function(H){return H.codePointAt(0)},vt=function(H){return H[0]},Nt=function(H){return H[H.length-1]};function vA(dA){for(var H=[],T=dA.length,X=0;X=55296&&V<=56319&&T>X+1){var uA=dA.charCodeAt(X+1);if(uA>=56320&&uA<=57343){H.push(1024*(V-55296)+uA-56320+65536),X+=1;continue}}H.push(V)}return H}var Z=function(){function dA(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(C(this,dA),!T.ownerPassword&&!T.userPassword)throw new Error("None of owner password and user password is defined.");this.document=H,this._setupEncryption(T)}return h(dA,null,[{key:"generateFileID",value:function(){var T=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X="".concat(T.CreationDate.getTime(),"\n");for(var V in T)T.hasOwnProperty(V)&&(X+="".concat(V,": ").concat(T[V].valueOf(),"\n"));return Lt(g.default.MD5(X))}},{key:"generateRandomWordArray",value:function(T){return g.default.lib.WordArray.random(T)}},{key:"create",value:function(T){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return X.ownerPassword||X.userPassword?new dA(T,X):null}}]),h(dA,[{key:"_setupEncryption",value:function(T){switch(T.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 X={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,X,T);break;case 5:this._setupEncryptionV5(X,T)}this.dictionary=this.document.ref(X)}},{key:"_setupEncryptionV1V2V4",value:function(T,X,V){var uA,mA;switch(T){case 1:uA=2,this.keyBits=40,mA=function k(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=-64;return dA.printing&&(H|=4),dA.modifying&&(H|=8),dA.copying&&(H|=16),dA.annotating&&(H|=32),H}(V.permissions);break;case 2:uA=3,this.keyBits=128,mA=U(V.permissions);break;case 4:uA=4,this.keyBits=128,mA=U(V.permissions)}var Ct,tt=Tt(V.userPassword),rt=V.ownerPassword?Tt(V.ownerPassword):tt,ut=function GA(dA,H,T,X){for(var V=X,uA=dA>=3?51:1,mA=0;mA=3?20:1;for(var ut=0;ut=3?51:1,rt=0;rt=2&&(X.Length=this.keyBits),4===T&&(X.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},X.StmF="StdCF",X.StrF="StdCF"),X.R=uA,X.O=Lt(ut),X.U=Lt(Ct),X.P=mA}},{key:"_setupEncryptionV5",value:function(T,X){this.keyBits=256;var V=U(X.permissions),uA=yt(X.userPassword),mA=X.ownerPassword?yt(X.ownerPassword):uA;this.encryptionKey=function jA(dA){return dA(32)}(dA.generateRandomWordArray);var tt=function O(dA,H){var T=H(8),X=H(8);return g.default.SHA256(dA.clone().concat(T)).concat(T).concat(X)}(uA,dA.generateRandomWordArray),ut=function qA(dA,H,T){var X=g.default.SHA256(dA.clone().concat(H)),V={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(T,X,V).ciphertext}(uA,g.default.lib.WordArray.create(tt.words.slice(10,12),8),this.encryptionKey),Ct=function nt(dA,H,T){var X=T(8),V=T(8);return g.default.SHA256(dA.clone().concat(X).concat(H)).concat(X).concat(V)}(mA,tt,dA.generateRandomWordArray),Dt=function MA(dA,H,T,X){var V=g.default.SHA256(dA.clone().concat(H).concat(T)),uA={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(X,V,uA).ciphertext}(mA,g.default.lib.WordArray.create(Ct.words.slice(10,12),8),tt,this.encryptionKey),Ft=function ot(dA,H,T){var X=g.default.lib.WordArray.create([Ut(dA),4294967295,1415668834],12).concat(T(4));return g.default.AES.encrypt(X,H,{mode:g.default.mode.ECB,padding:g.default.pad.NoPadding}).ciphertext}(V,this.encryptionKey,dA.generateRandomWordArray);T.V=5,T.Length=this.keyBits,T.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},T.StmF="StdCF",T.StrF="StdCF",T.R=5,T.O=Lt(Ct),T.OE=Lt(Dt),T.U=Lt(tt),T.UE=Lt(ut),T.P=V,T.Perms=Lt(Ft)}},{key:"getEncryptFn",value:function(T,X){var V,mA;if(this.version<5&&(V=this.encryptionKey.clone().concat(g.default.lib.WordArray.create([(255&T)<<24|(65280&T)<<8|T>>8&65280|255&X,(65280&X)<<16],5))),1===this.version||2===this.version){var uA=g.default.MD5(V);return uA.sigBytes=Math.min(16,this.keyBits/8+5),function(ut){return Lt(g.default.RC4.encrypt(g.default.lib.WordArray.create(ut),uA).ciphertext)}}mA=4===this.version?g.default.MD5(V.concat(g.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var tt=dA.generateRandomWordArray(16),rt={mode:g.default.mode.CBC,padding:g.default.pad.Pkcs7,iv:tt};return function(ut){return Lt(tt.clone().concat(g.default.AES.encrypt(g.default.lib.WordArray.create(ut),mA,rt).ciphertext))}}},{key:"end",value:function(){this.dictionary.end()}}]),dA}();function U(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=-3904;return"lowResolution"===dA.printing&&(H|=4),"highResolution"===dA.printing&&(H|=2052),dA.modifying&&(H|=8),dA.copying&&(H|=16),dA.annotating&&(H|=32),dA.fillingForms&&(H|=256),dA.contentAccessibility&&(H|=512),dA.documentAssembly&&(H|=1024),H}function Tt(){for(var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",H=a.alloc(32),T=dA.length,X=0;X255)throw new Error("Password contains one or more invalid characters.");H[X]=V,X++}for(;X<32;)H[X]=sn[X-T],X++;return g.default.lib.WordArray.create(H)}function yt(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";dA=unescape(encodeURIComponent(function Bt(dA){var H=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof dA)throw new TypeError("Expected string.");if(0===dA.length)return"";var T=vA(dA).map(function(Mt){return _A(Mt)?32:Mt}).filter(function(Mt){return!Qt(Mt)}),X=String.fromCodePoint.apply(null,T).normalize("NFKC"),V=vA(X);if(V.some(wt))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==H.allowUnassigned&&V.some(cA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var tt=V.some(pt),rt=V.some(VA);if(tt&&rt)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=pt(ht(vt(X))),Ct=pt(ht(Nt(X)));if(tt&&(!ut||!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 X}(dA)));for(var H=Math.min(127,dA.length),T=a.alloc(H),X=0;X>8&65280|dA>>24&255}function Lt(dA){for(var H=[],T=0;T>8*(3-T%4)&255);return a.from(H)}var kt,zt,Wt,ae,mn,dn,sn=[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],$t=xA.number,Kt=function(){function dA(H){C(this,dA),this.doc=H,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}return h(dA,[{key:"stop",value:function(T,X,V){if(null==V&&(V=1),X=this.doc._normalizeColor(X),0===this.stops.length)if(3===X.length)this._colorSpace="DeviceRGB";else if(4===X.length)this._colorSpace="DeviceCMYK";else{if(1!==X.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==X.length||"DeviceCMYK"===this._colorSpace&&4!==X.length||"DeviceGray"===this._colorSpace&&1!==X.length)throw new Error("All gradient stops must use the same color space");return V=Math.max(0,Math.min(1,V)),this.stops.push([T,X,V]),this}},{key:"setTransform",value:function(T,X,V,uA,mA,tt){return this.transform=[T,X,V,uA,mA,tt],this}},{key:"embed",value:function(T){var X,V=this.stops.length;if(0!==V){this.embedded=!0,this.matrix=T;var uA=this.stops[V-1];uA[0]<1&&this.stops.push([1,uA[1],uA[2]]);for(var mA=[],tt=[],rt=[],ut=0;ut>16,T>>8&255,255&T]}else wn[H]&&(H=wn[H]);return Array.isArray(H)?(3===H.length?H=H.map(function(X){return X/255}):4===H.length&&(H=H.map(function(X){return X/100})),H):null},_setColor:function(H,T){return H instanceof An?(H.apply(T),!0):Array.isArray(H)&&H[0]instanceof Qe?(H[0].apply(T,H[1]),!0):this._setColorCore(H,T)},_setColorCore:function(H,T){if(!(H=this._normalizeColor(H)))return!1;var X=T?"SCN":"scn",V=this._getColorSpace(H);return this._setColorSpace(V,T),H=H.join(" "),this.addContent("".concat(H," ").concat(X)),!0},_setColorSpace:function(H,T){var X=T?"CS":"cs";return this.addContent("/".concat(H," ").concat(X))},_getColorSpace:function(H){return 4===H.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(H,T){return this._setColor(H,!1)&&this.fillOpacity(T),this._fillColor=[H,T],this},strokeColor:function(H,T){return this._setColor(H,!0)&&this.strokeOpacity(T),this},opacity:function(H){return this._doOpacity(H,H),this},fillOpacity:function(H){return this._doOpacity(H,null),this},strokeOpacity:function(H){return this._doOpacity(null,H),this},_doOpacity:function(H,T){var X,V;if(null!=H||null!=T){null!=H&&(H=Math.max(0,Math.min(1,H))),null!=T&&(T=Math.max(0,Math.min(1,T)));var uA="".concat(H,"_").concat(T);if(this._opacityRegistry[uA]){var mA=z(this._opacityRegistry[uA],2);X=mA[0],V=mA[1]}else{X={Type:"ExtGState"},null!=H&&(X.ca=H),null!=T&&(X.CA=T),(X=this.ref(X)).end();var tt=++this._opacityCount;V="Gs".concat(tt),this._opacityRegistry[uA]=[X,V]}return this.page.ext_gstates[V]=X,this.addContent("/".concat(V," gs"))}},linearGradient:function(H,T,X,V){return new Te(this,H,T,X,V)},radialGradient:function(H,T,X,V,uA,mA){return new Fe(this,H,T,X,V,uA,mA)},pattern:function(H,T,X,V){return new Qe(this,H,T,X,V)}},wn={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=zt=Wt=ae=mn=dn=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},xn={M:function(H,T){return Wt=ae=null,mn=kt=T[0],dn=zt=T[1],H.moveTo(kt,zt)},m:function(H,T){return Wt=ae=null,mn=kt+=T[0],dn=zt+=T[1],H.moveTo(kt,zt)},C:function(H,T){return kt=T[4],zt=T[5],Wt=T[2],ae=T[3],H.bezierCurveTo.apply(H,F(T))},c:function(H,T){return H.bezierCurveTo(T[0]+kt,T[1]+zt,T[2]+kt,T[3]+zt,T[4]+kt,T[5]+zt),Wt=kt+T[2],ae=zt+T[3],kt+=T[4],zt+=T[5]},S:function(H,T){return null===Wt&&(Wt=kt,ae=zt),H.bezierCurveTo(kt-(Wt-kt),zt-(ae-zt),T[0],T[1],T[2],T[3]),Wt=T[0],ae=T[1],kt=T[2],zt=T[3]},s:function(H,T){return null===Wt&&(Wt=kt,ae=zt),H.bezierCurveTo(kt-(Wt-kt),zt-(ae-zt),kt+T[0],zt+T[1],kt+T[2],zt+T[3]),Wt=kt+T[0],ae=zt+T[1],kt+=T[2],zt+=T[3]},Q:function(H,T){return Wt=T[0],ae=T[1],H.quadraticCurveTo(T[0],T[1],kt=T[2],zt=T[3])},q:function(H,T){return H.quadraticCurveTo(T[0]+kt,T[1]+zt,T[2]+kt,T[3]+zt),Wt=kt+T[0],ae=zt+T[1],kt+=T[2],zt+=T[3]},T:function(H,T){return null===Wt?(Wt=kt,ae=zt):(Wt=kt-(Wt-kt),ae=zt-(ae-zt)),H.quadraticCurveTo(Wt,ae,T[0],T[1]),Wt=kt-(Wt-kt),ae=zt-(ae-zt),kt=T[0],zt=T[1]},t:function(H,T){return null===Wt?(Wt=kt,ae=zt):(Wt=kt-(Wt-kt),ae=zt-(ae-zt)),H.quadraticCurveTo(Wt,ae,kt+T[0],zt+T[1]),kt+=T[0],zt+=T[1]},A:function(H,T){return ZA(H,kt,zt,T),kt=T[5],zt=T[6]},a:function(H,T){return T[5]+=kt,T[6]+=zt,ZA(H,kt,zt,T),kt=T[5],zt=T[6]},L:function(H,T){return Wt=ae=null,H.lineTo(kt=T[0],zt=T[1])},l:function(H,T){return Wt=ae=null,H.lineTo(kt+=T[0],zt+=T[1])},H:function(H,T){return Wt=ae=null,H.lineTo(kt=T[0],zt)},h:function(H,T){return Wt=ae=null,H.lineTo(kt+=T[0],zt)},V:function(H,T){return Wt=ae=null,H.lineTo(kt,zt=T[0])},v:function(H,T){return Wt=ae=null,H.lineTo(kt,zt+=T[0])},Z:function(H){return H.closePath(),kt=mn,zt=dn},z:function(H){return H.closePath(),kt=mn,zt=dn}},ZA=function(H,T,X,V){var Vt,uA=z(V,7),Ot=YA(SA(uA[5],uA[6],uA[0],uA[1],uA[3],uA[4],uA[2],T,X));try{for(Ot.s();!(Vt=Ot.n()).done;){var Be=it.apply(void 0,F(Vt.value));H.bezierCurveTo.apply(H,F(Be))}}catch(Ye){Ot.e(Ye)}finally{Ot.f()}},SA=function(H,T,X,V,uA,mA,tt,rt,ut){var Ct=tt*(Math.PI/180),Mt=Math.sin(Ct),Dt=Math.cos(Ct);X=Math.abs(X),V=Math.abs(V);var Ft=(Wt=Dt*(rt-H)*.5+Mt*(ut-T)*.5)*Wt/(X*X)+(ae=Dt*(ut-T)*.5-Mt*(rt-H)*.5)*ae/(V*V);Ft>1&&(X*=Ft=Math.sqrt(Ft),V*=Ft);var Ot=Dt/X,Vt=Mt/X,Ae=-Mt/V,Be=Dt/V,Ye=Ot*rt+Vt*ut,Ze=Ae*rt+Be*ut,me=Ot*H+Vt*T,Ve=Ae*H+Be*T,We=1/((me-Ye)*(me-Ye)+(Ve-Ze)*(Ve-Ze))-.25;We<0&&(We=0);var En=Math.sqrt(We);mA===uA&&(En=-En);var vn=.5*(Ye+me)-En*(Ve-Ze),Xn=.5*(Ze+Ve)+En*(me-Ye),On=Math.atan2(Ze-Xn,Ye-vn),Jn=Math.atan2(Ve-Xn,me-vn)-On;Jn<0&&1===mA?Jn+=2*Math.PI:Jn>0&&0===mA&&(Jn-=2*Math.PI);for(var ni=Math.ceil(Math.abs(Jn/(.5*Math.PI+.001))),Zn=[],qn=0;qn0&&(V[V.length]=+uA),X[X.length]={cmd:T,args:V},V=[],uA="",mA=!1),T=Ct;else if([" ",","].includes(Ct)||"-"===Ct&&uA.length>0&&"e"!==uA[uA.length-1]||"."===Ct&&mA){if(0===uA.length)continue;V.length===tt?(X[X.length]={cmd:T,args:V},V=[+uA],"M"===T&&(T="L"),"m"===T&&(T="l")):V[V.length]=+uA,mA="."===Ct,uA=["-","."].includes(Ct)?Ct:""}else uA+=Ct,"."===Ct&&(mA=!0)}}catch(Mt){rt.e(Mt)}finally{rt.f()}return uA.length>0&&(V.length===tt?(X[X.length]={cmd:T,args:V},V=[+uA],"M"===T&&(T="L"),"m"===T&&(T="l")):V[V.length]=+uA),X[X.length]={cmd:T,args:V},X}(X);!function(H,T){kt=zt=Wt=ae=mn=dn=0;for(var X=0;X1&&void 0!==arguments[1]?arguments[1]:{},X=H;if(Array.isArray(H)||(H=[H,T.space||H]),!H.every(function(uA){return Number.isFinite(uA)&&uA>0}))throw new Error("dash(".concat(JSON.stringify(X),", ").concat(JSON.stringify(T),") invalid, lengths must be numeric and greater than zero"));return H=H.map(TA).join(" "),this.addContent("[".concat(H,"] ").concat(TA(T.phase||0)," d"))},undash:function(){return this.addContent("[] 0 d")},moveTo:function(H,T){return this.addContent("".concat(TA(H)," ").concat(TA(T)," m"))},lineTo:function(H,T){return this.addContent("".concat(TA(H)," ").concat(TA(T)," l"))},bezierCurveTo:function(H,T,X,V,uA,mA){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," ").concat(TA(uA)," ").concat(TA(mA)," c"))},quadraticCurveTo:function(H,T,X,V){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," v"))},rect:function(H,T,X,V){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," re"))},roundedRect:function(H,T,X,V,uA){null==uA&&(uA=0);var mA=(uA=Math.min(uA,.5*X,.5*V))*(1-UA);return this.moveTo(H+uA,T),this.lineTo(H+X-uA,T),this.bezierCurveTo(H+X-mA,T,H+X,T+mA,H+X,T+uA),this.lineTo(H+X,T+V-uA),this.bezierCurveTo(H+X,T+V-mA,H+X-mA,T+V,H+X-uA,T+V),this.lineTo(H+uA,T+V),this.bezierCurveTo(H+mA,T+V,H,T+V-mA,H,T+V-uA),this.lineTo(H,T+uA),this.bezierCurveTo(H,T+mA,H+mA,T,H+uA,T),this.closePath()},ellipse:function(H,T,X,V){null==V&&(V=X);var uA=X*UA,mA=V*UA,tt=(H-=X)+2*X,rt=(T-=V)+2*V,ut=H+X,Ct=T+V;return this.moveTo(H,Ct),this.bezierCurveTo(H,Ct-mA,ut-uA,T,ut,T),this.bezierCurveTo(ut+uA,T,tt,Ct-mA,tt,Ct),this.bezierCurveTo(tt,Ct+mA,ut+uA,rt,ut,rt),this.bezierCurveTo(ut-uA,rt,H,Ct+mA,H,Ct),this.closePath()},circle:function(H,T,X){return this.ellipse(H,T,X)},arc:function(H,T,X,V,uA,mA){null==mA&&(mA=!1);var tt=2*Math.PI,rt=.5*Math.PI,ut=uA-V;Math.abs(ut)>tt?ut=tt:0!==ut&&mA!==ut<0&&(ut=(mA?-1:1)*tt+ut);var Mt=Math.ceil(Math.abs(ut)/rt),Dt=ut/Mt,Ft=Dt/rt*UA*X,Ot=V,Vt=-Math.sin(Ot)*Ft,Ae=Math.cos(Ot)*Ft,Be=H+Math.cos(Ot)*X,Ye=T+Math.sin(Ot)*X;this.moveTo(Be,Ye);for(var Ze=0;Ze1&&void 0!==arguments[1]?arguments[1]:{},V=H*Math.PI/180,uA=Math.cos(V),mA=Math.sin(V),tt=X=0;if(null!=T.origin){var rt=z(T.origin,2),Ct=(tt=rt[0])*mA+(X=rt[1])*uA;tt-=tt*uA-X*mA,X-=Ct}return this.transform(uA,mA,-mA,uA,tt,X)},scale:function(H,T){var V,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==T&&(T=H),"object"==typeof T&&(X=T,T=H);var uA=V=0;if(null!=X.origin){var mA=z(X.origin,2);uA=mA[0],V=mA[1],uA-=H*uA,V-=T*V}return this.transform(H,0,0,T,uA,V)}},et={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 dA(H){C(this,dA),this.contents=H,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var T=0;T<=255;T++)this.charWidths[T]=this.glyphWidths[LA[T]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(X){return+X}),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 h(dA,null,[{key:"open",value:function(T){return new dA(E.readFileSync(T,"utf8"))}}]),h(dA,[{key:"parse",value:function(){var V,T="",X=YA(this.contents.split("\n"));try{for(X.s();!(V=X.n()).done;){var mA,tt,uA=V.value;if(mA=uA.match(/^Start(\w+)/))T=mA[1];else if(mA=uA.match(/^End(\w+)/))T="";else switch(T){case"FontMetrics":var rt=(mA=uA.match(/(^\w+)\s+(.*)/))[1],ut=mA[2];(tt=this.attributes[rt])?(Array.isArray(tt)||(tt=this.attributes[rt]=[tt]),tt.push(ut)):this.attributes[rt]=ut;break;case"CharMetrics":if(!/^CH?\s/.test(uA))continue;var Ct=uA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Ct]=+uA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(mA=uA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[mA[1]+"\0"+mA[2]]=parseInt(mA[3]))}}}catch(Mt){X.e(Mt)}finally{X.f()}}},{key:"encodeText",value:function(T){for(var X=[],V=0,uA=T.length;V>8,rt=0;this.font.post.isFixedPitch&&(rt|=1),1<=tt&&tt<=7&&(rt|=2),rt|=4,10===tt&&(rt|=8),this.font.head.macStyle.italic&&(rt|=64);var Ct=[1,2,3,4,5,6].map(function(Be){return String.fromCharCode((V.id.charCodeAt(Be)||73)+17)}).join("")+"+"+this.font.postscriptName,Mt=this.font.bbox,Dt=this.document.ref({Type:"FontDescriptor",FontName:Ct,Flags:rt,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});if(uA?Dt.data.FontFile3=mA:Dt.data.FontFile2=mA,this.document.subset){var Ft=a.from("FFFFFFFFC0","hex"),Ot=this.document.ref();Ot.write(Ft),Ot.end(),Dt.data.CIDSet=Ot}Dt.end();var Vt={Type:"Font",Subtype:"CIDFontType0",BaseFont:Ct,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:Dt,W:[0,this.widths]};uA||(Vt.Subtype="CIDFontType2",Vt.CIDToGIDMap="Identity");var Ae=this.document.ref(Vt);return Ae.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Ct,Encoding:"Identity-H",DescendantFonts:[Ae],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}},{key:"toUnicodeCmap",value:function(){var tt,V=this.document.ref(),uA=[],mA=YA(this.unicode);try{for(mA.s();!(tt=mA.n()).done;){var Mt,ut=[],Ct=YA(tt.value);try{for(Ct.s();!(Mt=Ct.n()).done;){var Dt=Mt.value;Dt>65535&&(ut.push(St((Dt-=65536)>>>10&1023|55296)),Dt=56320|1023&Dt),ut.push(St(Dt))}}catch(Ft){Ct.e(Ft)}finally{Ct.f()}uA.push("<".concat(ut.join(" "),">"))}}catch(Ft){mA.e(Ft)}finally{mA.f()}return V.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(St(uA.length-1),"> [").concat(uA.join(" "),"]\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend")),V}}]),T}(XA),Xt=function(){function dA(){C(this,dA)}return h(dA,null,[{key:"open",value:function(T,X,V,uA){var mA;if("string"==typeof X){if(xt.isStandardFont(X))return new xt(T,X,uA);X=E.readFileSync(X)}if(a.isBuffer(X)?mA=f.default.create(X,V):X instanceof Uint8Array?mA=f.default.create(a.from(X),V):X instanceof ArrayBuffer&&(mA=f.default.create(a.from(new Uint8Array(X)),V)),null==mA)throw new Error("Not a supported font format or standard PDF font.");return new jt(T,mA,uA)}}]),dA}(),ne={initFonts:function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica";this._fontFamilies={},this._fontCount=0,this._fontSize=12,this._font=null,this._registeredFonts={},H&&this.font(H)},font:function(H,T,X){var V,uA;if("number"==typeof T&&(X=T,T=null),"string"==typeof H&&this._registeredFonts[H]){V=H;var mA=this._registeredFonts[H];H=mA.src,T=mA.family}else"string"!=typeof(V=T||H)&&(V=null);if(null!=X&&this.fontSize(X),uA=this._fontFamilies[V])return this._font=uA,this;var tt="F".concat(++this._fontCount);return this._font=Xt.open(this,H,T,tt),(uA=this._fontFamilies[this._font.name])?(this._font=uA,this):(V&&(this._fontFamilies[V]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize:function(H){return this._fontSize=H,this},currentLineHeight:function(H){return null==H&&(H=!1),this._font.lineHeight(this._fontSize,H)},registerFont:function(H,T,X){return this._registeredFonts[H]={src:T,family:X},this}},Et=function(dA){p(T,dA);var H=S(T);function T(X,V){var uA;return C(this,T),(uA=H.call(this)).document=X,uA.indent=V.indent||0,uA.characterSpacing=V.characterSpacing||0,uA.wordSpacing=0===V.wordSpacing,uA.columns=V.columns||1,uA.columnGap=null!=V.columnGap?V.columnGap:18,uA.lineWidth=(V.width-uA.columnGap*(uA.columns-1))/uA.columns,uA.spaceLeft=uA.lineWidth,uA.startX=uA.document.x,uA.startY=uA.document.y,uA.column=1,uA.ellipsis=V.ellipsis,uA.continuedX=0,uA.features=V.features,null!=V.height?(uA.height=V.height,uA.maxY=uA.startY+V.height):uA.maxY=uA.document.page.maxY(),uA.on("firstLine",function(mA){var tt=uA.continuedX||uA.indent;return uA.document.x+=tt,uA.lineWidth-=tt,uA.once("line",function(){if(uA.document.x-=tt,uA.lineWidth+=tt,mA.continued&&!uA.continuedX&&(uA.continuedX=uA.indent),!mA.continued)return uA.continuedX=0})}),uA.on("lastLine",function(mA){var tt=mA.align;return"justify"===tt&&(mA.align="left"),uA.lastLine=!0,uA.once("line",function(){return uA.document.y+=mA.paragraphGap||0,mA.align=tt,uA.lastLine=!1})}),uA}return h(T,[{key:"wordWidth",value:function(V){return this.document.widthOfString(V,this)+this.characterSpacing+this.wordSpacing}},{key:"eachWord",value:function(V,uA){for(var mA,tt=new u.default(V),rt=null,ut=Object.create(null);mA=tt.nextBreak();){var Ct,Mt=V.slice(rt?.position||0,mA.position),Dt=null!=ut[Mt]?ut[Mt]:ut[Mt]=this.wordWidth(Mt);if(Dt>this.lineWidth+this.continuedX)for(var Ft=rt,Ot={};Mt.length;){var Vt,Ae;Dt>this.spaceLeft?(Vt=Math.ceil(this.spaceLeft/(Dt/Mt.length)),Ae=(Dt=this.wordWidth(Mt.slice(0,Vt)))<=this.spaceLeft&&Vtthis.spaceLeft&&Vt>0;Be||Ae;)Be?Be=(Dt=this.wordWidth(Mt.slice(0,--Vt)))>this.spaceLeft&&Vt>0:(Be=(Dt=this.wordWidth(Mt.slice(0,++Vt)))>this.spaceLeft&&Vt>0,Ae=Dt<=this.spaceLeft&&Vtthis.maxY||tt>this.maxY)&&this.nextSection();var rt="",ut=0,Ct=0,Mt=0,Dt=this.document.y,Ft=function(){return uA.textWidth=ut+mA.wordSpacing*(Ct-1),uA.wordCount=Ct,uA.lineWidth=mA.lineWidth,Dt=mA.document.y,mA.emit("line",rt,uA,mA),Mt++};return this.emit("sectionStart",uA,this),this.eachWord(V,function(Ot,Vt,Ae,Be){if((null==Be||Be.required)&&(mA.emit("firstLine",uA,mA),mA.spaceLeft=mA.lineWidth),Vt<=mA.spaceLeft&&(rt+=Ot,ut+=Vt,Ct++),Ae.required||Vt>mA.spaceLeft){var Ye=mA.document.currentLineHeight(!0);if(null!=mA.height&&mA.ellipsis&&mA.document.y+2*Ye>mA.maxY&&mA.column>=mA.columns){for(!0===mA.ellipsis&&(mA.ellipsis="\u2026"),rt=rt.replace(/\s+$/,""),ut=mA.wordWidth(rt+mA.ellipsis);rt&&ut>mA.lineWidth;)rt=rt.slice(0,-1).replace(/\s+$/,""),ut=mA.wordWidth(rt+mA.ellipsis);ut<=mA.lineWidth&&(rt+=mA.ellipsis),ut=mA.wordWidth(rt)}return Ae.required&&(Vt>mA.spaceLeft&&(Ft(),rt=Ot,ut=Vt,Ct=1),mA.emit("lastLine",uA,mA)),Ft(),mA.document.y+Ye>mA.maxY&&!mA.nextSection()?(Ct=0,rt="",!1):Ae.required?(mA.spaceLeft=mA.lineWidth,rt="",ut=0,Ct=0):(mA.spaceLeft=mA.lineWidth-Vt,rt=Ot,ut=Vt,Ct=1)}return mA.spaceLeft-=Vt}),Ct>0&&(this.emit("lastLine",uA,this),Ft()),this.emit("sectionEnd",uA,this),!0===uA.continued?(Mt>1&&(this.continuedX=0),this.continuedX+=uA.textWidth||0,this.document.y=Dt):this.document.x=this.startX}},{key:"nextSection",value:function(V){if(this.emit("sectionEnd",V,this),++this.column>this.columns){if(null!=this.height)return!1;var uA;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&&(uA=this.document).fillColor.apply(uA,F(this.document._fillColor)),this.emit("pageBreak",V,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",V,this);return this.emit("sectionStart",V,this),!0}}]),T}(w.EventEmitter),Rt=xA.number,Zt={initText:function(){return this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap:function(H){return this._lineGap=H,this},moveDown:function(H){return null==H&&(H=1),this.y+=this.currentLineHeight(!0)*H+this._lineGap,this},moveUp:function(H){return null==H&&(H=1),this.y-=this.currentLineHeight(!0)*H+this._lineGap,this},_text:function(H,T,X,V,uA){var mA=this;V=this._initOptions(T,X,V),H=null==H?"":"".concat(H),V.wordSpacing&&(H=H.replace(/\s{2,}/g," "));var tt=function(){V.structParent&&V.structParent.add(mA.struct(V.structType||"P",[mA.markStructureContent(V.structType||"P")]))};if(V.width){var rt=this._wrapper;rt||((rt=new Et(this,V)).on("line",uA),rt.on("firstLine",tt)),this._wrapper=V.continued?rt:null,this._textOptions=V.continued?V:null,rt.wrap(H,V)}else{var Ct,ut=YA(H.split("\n"));try{for(ut.s();!(Ct=ut.n()).done;){var Mt=Ct.value;tt(),uA(Mt,V)}}catch(Dt){ut.e(Dt)}finally{ut.f()}}return this},text:function(H,T,X,V){return this._text(H,T,X,V,this._line)},widthOfString:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(H,this._fontSize,T.features)+(T.characterSpacing||0)*(H.length-1)},heightOfString:function(H,T){var X=this,V=this.x,uA=this.y;(T=this._initOptions(T)).height=1/0;var mA=T.lineGap||this._lineGap||0;this._text(H,this.x,this.y,T,function(){return X.y+=X.currentLineHeight(!0)+mA});var tt=this.y-uA;return this.x=V,this.y=uA,tt},list:function(H,T,X,V,uA){var mA=this,tt=(V=this._initOptions(T,X,V)).listType||"bullet",rt=Math.round(this._font.ascender/1e3*this._fontSize),ut=rt/2,Ct=V.bulletRadius||rt/3,Mt=V.textIndent||("bullet"===tt?5*Ct:2*rt),Dt=V.bulletIndent||("bullet"===tt?8*Ct:2*rt),Ft=1,Ot=[],Vt=[],Ae=[];!function me(Ve){for(var hn=1,We=0;We0&&void 0!==arguments[0]?arguments[0]:{},T=arguments.length>1?arguments[1]:void 0,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof H&&(X=H,H=null);var V=Object.assign({},X);if(this._textOptions)for(var uA in this._textOptions)"continued"!==uA&&void 0===V[uA]&&(V[uA]=this._textOptions[uA]);return null!=H&&(this.x=H),null!=T&&(this.y=T),!1!==V.lineBreak&&(null==V.width&&(V.width=this.page.width-this.x-this.page.margins.right),V.width=Math.max(V.width,0)),V.columns||(V.columns=0),null==V.columnGap&&(V.columnGap=18),V},_line:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=arguments.length>2?arguments[2]:void 0;this._fragment(H,this.x,this.y,T);var V=T.lineGap||this._lineGap||0;return X?this.y+=this.currentLineHeight(!0)+V:this.x+=this.widthOfString(H)},_fragment:function(H,T,X,V){var mA,tt,rt,ut,Ct,Mt,uA=this;if(0!==(H="".concat(H).replace(/\n/g,"")).length){var Ft=V.wordSpacing||0,Ot=V.characterSpacing||0;if(V.width)switch(V.align||"left"){case"right":Ct=this.widthOfString(H.replace(/\s+$/,""),V),T+=V.lineWidth-Ct;break;case"center":T+=V.lineWidth/2-V.textWidth/2;break;case"justify":Mt=H.trim().split(/\s+/),Ct=this.widthOfString(H.replace(/\s+/g,""),V);var Vt=this.widthOfString(" ")+Ot;Ft=Math.max(0,(V.lineWidth-Ct)/Math.max(1,Mt.length-1)-Vt)}if("number"==typeof V.baseline)mA=-V.baseline;else{switch(V.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 Ve,Ae=V.textWidth+Ft*(V.wordCount-1)+Ot*(H.length-1);if(null!=V.link&&this.link(T,X,Ae,this.currentLineHeight(),V.link),null!=V.goTo&&this.goTo(T,X,Ae,this.currentLineHeight(),V.goTo),null!=V.destination&&this.addNamedDestination(V.destination,"XYZ",T,X,null),V.underline){this.save(),V.stroke||this.strokeColor.apply(this,F(this._fillColor||[]));var Be=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Be);var Ye=X+this.currentLineHeight()-Be;this.moveTo(T,Ye),this.lineTo(T+Ae,Ye),this.stroke(),this.restore()}if(V.strike){this.save(),V.stroke||this.strokeColor.apply(this,F(this._fillColor||[]));var Ze=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Ze);var me=X+this.currentLineHeight()/2;this.moveTo(T,me),this.lineTo(T+Ae,me),this.stroke(),this.restore()}this.save(),V.oblique&&(Ve="number"==typeof V.oblique?-Math.tan(V.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,T,X),this.transform(1,0,Ve,1,-Ve*mA,0),this.transform(1,0,0,1,-T,-X)),this.transform(1,0,0,-1,0,this.page.height),X=this.page.height-X-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(Rt(T)," ").concat(Rt(X)," Tm")),this.addContent("/".concat(this._font.id," ").concat(Rt(this._fontSize)," Tf"));var hn=V.fill&&V.stroke?2:V.stroke?1:0;if(hn&&this.addContent("".concat(hn," Tr")),Ot&&this.addContent("".concat(Rt(Ot)," Tc")),Ft){Mt=H.trim().split(/\s+/),Ft+=this.widthOfString(" ")+Ot,Ft*=1e3/this._fontSize,tt=[],ut=[];var En,We=YA(Mt);try{for(We.s();!(En=We.n()).done;){var On=z(this._font.encode(En.value,V.features),2),Jn=On[1];tt=tt.concat(On[0]),ut=ut.concat(Jn);var ni={},Zn=ut[ut.length-1];for(var qn in Zn)ni[qn]=Zn[qn];ni.xAdvance+=Ft,ut[ut.length-1]=ni}}catch(Gi){We.e(Gi)}finally{We.f()}}else{var Ti=z(this._font.encode(H,V.features),2);tt=Ti[0],ut=Ti[1]}var Ui=this._fontSize/1e3,Fi=[],Li=0,Pi=!1,ir=function(ii){if(Li ").concat(Rt(-Tr)))}return Li=ii},zi=function(ii){if(ir(ii),Fi.length>0)return uA.addContent("[".concat(Fi.join(" "),"] TJ")),Fi.length=0};for(rt=0;rt3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof T&&(V=T,T=null),T=null!=(Ct=T??V.x)?Ct:this.x,X=null!=(Mt=X??V.y)?Mt:this.y,"string"==typeof H&&(rt=this._imageRegistry[H]),rt||(rt=H.width&&H.height?H:this.openImage(H)),rt.obj||rt.embed(this),null==this.page.xobjects[rt.label]&&(this.page.xobjects[rt.label]=rt.obj);var Dt=V.width||rt.width,Ft=V.height||rt.height;if(V.width&&!V.height){var Ot=Dt/rt.width;Dt=rt.width*Ot,Ft=rt.height*Ot}else if(V.height&&!V.width){var Vt=Ft/rt.height;Dt=rt.width*Vt,Ft=rt.height*Vt}else if(V.scale)Dt=rt.width*V.scale,Ft=rt.height*V.scale;else if(V.fit){var Ae=z(V.fit,2);(ut=rt.width/rt.height)>(tt=Ae[0])/(uA=Ae[1])?(Dt=tt,Ft=tt/ut):(Ft=uA,Dt=uA*ut)}else if(V.cover){var Be=z(V.cover,2);(ut=rt.width/rt.height)>(tt=Be[0])/(uA=Be[1])?(Ft=uA,Dt=uA*ut):(Dt=tt,Ft=tt/ut)}return(V.fit||V.cover)&&("center"===V.align?T=T+tt/2-Dt/2:"right"===V.align&&(T=T+tt-Dt),"center"===V.valign?X=X+uA/2-Ft/2:"bottom"===V.valign&&(X=X+uA-Ft)),null!=V.link&&this.link(T,X,Dt,Ft,V.link),null!=V.goTo&&this.goTo(T,X,Dt,Ft,V.goTo),null!=V.destination&&this.addNamedDestination(V.destination,"XYZ",T,X,null),this.y===X&&(this.y+=Ft),this.save(),this.transform(Dt,0,0,-Ft,T,X+Ft),this.addContent("/".concat(rt.label," Do")),this.restore(),this},openImage:function(H){var T;return"string"==typeof H&&(T=this._imageRegistry[H]),T||(T=se.open(H,"I".concat(++this._imageCount)),"string"==typeof H&&(this._imageRegistry[H]=T)),T}},Oe={annotate:function(H,T,X,V,uA){for(var mA in uA.Type="Annot",uA.Rect=this._convertRect(H,T,X,V),uA.Border=[0,0,0],"Link"===uA.Subtype&&typeof uA.F>"u"&&(uA.F=4),"Link"!==uA.Subtype&&null==uA.C&&(uA.C=this._normalizeColor(uA.color||[0,0,0])),delete uA.color,"string"==typeof uA.Dest&&(uA.Dest=new String(uA.Dest)),uA){var tt=uA[mA];uA[mA[0].toUpperCase()+mA.slice(1)]=tt}var rt=this.ref(uA);return this.page.annotations.push(rt),rt.end(),this},note:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="Text",mA.Contents=new String(uA),mA.Name="Comment",null==mA.color&&(mA.color=[243,223,92]),this.annotate(H,T,X,V,mA)},goTo:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="Link",mA.A=this.ref({S:"GoTo",D:new String(uA)}),mA.A.end(),this.annotate(H,T,X,V,mA)},link:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(mA.Subtype="Link","number"==typeof uA){var tt=this._root.data.Pages.data;if(!(uA>=0&&uA4&&void 0!==arguments[4]?arguments[4]:{},tt=z(this._convertRect(H,T,X,V),4),rt=tt[0],ut=tt[1],Ct=tt[2],Mt=tt[3];return uA.QuadPoints=[rt,Mt,Ct,Mt,rt,ut,Ct,ut],uA.Contents=new String,this.annotate(H,T,X,V,uA)},highlight:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Highlight",null==uA.color&&(uA.color=[241,238,148]),this._markup(H,T,X,V,uA)},underline:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Underline",this._markup(H,T,X,V,uA)},strike:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="StrikeOut",this._markup(H,T,X,V,uA)},lineAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Line",uA.Contents=new String,uA.L=[H,this.page.height-T,X,this.page.height-V],this.annotate(H,T,X,V,uA)},rectAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Square",uA.Contents=new String,this.annotate(H,T,X,V,uA)},ellipseAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Circle",uA.Contents=new String,this.annotate(H,T,X,V,uA)},textAnnotation:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="FreeText",mA.Contents=new String(uA),mA.DA=new String,this.annotate(H,T,X,V,mA)},fileAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},tt=this.file(uA.src,Object.assign({hidden:!0},uA));return mA.Subtype="FileAttachment",mA.FS=tt,mA.Contents?mA.Contents=new String(mA.Contents):tt.data.Desc&&(mA.Contents=tt.data.Desc),this.annotate(H,T,X,V,mA)},_convertRect:function(H,T,X,V){var uA=T;T+=V;var mA=H+X,tt=z(this._ctm,6),rt=tt[0],ut=tt[1],Ct=tt[2],Mt=tt[3],Dt=tt[4],Ft=tt[5];return[H=rt*H+Ct*T+Dt,T=ut*H+Mt*T+Ft,mA=rt*mA+Ct*uA+Dt,uA=ut*mA+Mt*uA+Ft]}},ge=function(){function dA(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};C(this,dA),this.document=H,this.options=uA,this.outlineData={},null!==V&&(this.outlineData.Dest=[V.dictionary,"Fit"]),null!==T&&(this.outlineData.Parent=T),null!==X&&(this.outlineData.Title=new String(X)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}return h(dA,[{key:"addItem",value:function(T){var V=new dA(this.document,this.dictionary,T,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(V),V}},{key:"endOutline",value:function(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);var X=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=X.dictionary;for(var V=0,uA=this.children.length;V0&&(mA.outlineData.Prev=this.children[V-1].dictionary),V0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},Ne=function(){function dA(H,T){C(this,dA),this.refs=[{pageRef:H,mcid:T}]}return h(dA,[{key:"push",value:function(T){var X=this;T.refs.forEach(function(V){return X.refs.push(V)})}}]),dA}(),qe=function(){function dA(H,T){var X=this,V=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},uA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;C(this,dA),this.document=H,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=H.ref({S:T});var mA=this.dictionary.data;(Array.isArray(V)||this._isValidChild(V))&&(uA=V,V={}),typeof V.title<"u"&&(mA.T=new String(V.title)),typeof V.lang<"u"&&(mA.Lang=new String(V.lang)),typeof V.alt<"u"&&(mA.Alt=new String(V.alt)),typeof V.expanded<"u"&&(mA.E=new String(V.expanded)),typeof V.actual<"u"&&(mA.ActualText=new String(V.actual)),this._children=[],uA&&(Array.isArray(uA)||(uA=[uA]),uA.forEach(function(tt){return X.add(tt)}),this.end())}return h(dA,[{key:"add",value:function(T){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(T))throw new Error("Invalid structure element child");return T instanceof dA&&(T.setParent(this.dictionary),this._attached&&T.setAttached()),T instanceof Ne&&this._addContentToParentTree(T),"function"==typeof T&&this._attached&&(T=this._contentForClosure(T)),this._children.push(T),this}},{key:"_addContentToParentTree",value:function(T){var X=this;T.refs.forEach(function(V){var uA=V.pageRef,mA=V.mcid;X.document.getStructParentTree().get(uA.data.StructParents)[mA]=X.dictionary})}},{key:"setParent",value:function(T){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=T,this._flush()}},{key:"setAttached",value:function(){var T=this;this._attached||(this._children.forEach(function(X,V){X instanceof dA&&X.setAttached(),"function"==typeof X&&(T._children[V]=T._contentForClosure(X))}),this._attached=!0,this._flush())}},{key:"end",value:function(){this._ended||(this._children.filter(function(T){return T instanceof dA}).forEach(function(T){return T.end()}),this._ended=!0,this._flush())}},{key:"_isValidChild",value:function(T){return T instanceof dA||T instanceof Ne||"function"==typeof T}},{key:"_contentForClosure",value:function(T){var X=this.document.markStructureContent(this.dictionary.data.S);return T(),this.document.endMarkedContent(),this._addContentToParentTree(X),X}},{key:"_isFlushable",value:function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(T){return"function"!=typeof T&&(!(T instanceof dA)||T._isFlushable())})}},{key:"_flush",value:function(){var T=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(X){return T._flushChild(X)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}},{key:"_flushChild",value:function(T){var X=this;T instanceof dA&&this.dictionary.data.K.push(T.dictionary),T instanceof Ne&&T.refs.forEach(function(V){var uA=V.pageRef,mA=V.mcid;X.dictionary.data.Pg||(X.dictionary.data.Pg=uA),X.dictionary.data.K.push(X.dictionary.data.Pg===uA?mA:{Type:"MCR",Pg:uA,MCID:mA})})}}]),dA}(),Dn=function(dA){p(T,dA);var H=S(T);function T(){return C(this,T),H.apply(this,arguments)}return h(T,[{key:"_compareKeys",value:function(V,uA){return parseInt(V)-parseInt(uA)}},{key:"_keysName",value:function(){return"Nums"}},{key:"_dataForKey",value:function(V){return parseInt(V)}}]),T}(J),tn={initMarkings:function(H){this.structChildren=[],H.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===H||T&&T.mcid){var X=0;for(this.page.markings.forEach(function(uA){(X||uA.structContent||"Artifact"===uA.tag)&&X++});X--;)this.endMarkedContent()}if(!T)return this.page.markings.push({tag:H}),this.addContent("/".concat(H," BMC")),this;this.page.markings.push({tag:H,options:T});var V={};return typeof T.mcid<"u"&&(V.MCID=T.mcid),"Artifact"===H&&("string"==typeof T.type&&(V.Type=T.type),Array.isArray(T.bbox)&&(V.BBox=[T.bbox[0],this.page.height-T.bbox[3],T.bbox[2],this.page.height-T.bbox[1]]),Array.isArray(T.attached)&&T.attached.every(function(uA){return"string"==typeof uA})&&(V.Attached=T.attached)),"Span"===H&&(T.lang&&(V.Lang=new String(T.lang)),T.alt&&(V.Alt=new String(T.alt)),T.expanded&&(V.E=new String(T.expanded)),T.actual&&(V.ActualText=new String(T.actual))),this.addContent("/".concat(H," ").concat(xA.convert(V)," BDC")),this},markStructureContent:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=this.getStructParentTree().get(this.page.structParentTreeKey),V=X.length;X.push(null),this.markContent(H,R(R({},T),{},{mcid:V}));var uA=new Ne(this.page.dictionary,V);return this.page.markings.slice(-1)[0].structContent=uA,uA},endMarkedContent:function(){return this.page.markings.pop(),this.addContent("EMC"),this},struct:function(H){return new qe(this,H,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure:function(H){var T=this.getStructTreeRoot();return H.setParent(T),H.setAttached(),this.structChildren.push(H),T.data.K||(T.data.K=[]),T.data.K.push(H.dictionary),this},initPageMarkings:function(H){var T=this;H.forEach(function(X){if(X.structContent){var V=X.structContent,uA=T.markStructureContent(X.tag,X.options);V.push(uA),T.page.markings.slice(-1)[0].structContent=V}else T.markContent(X.tag,X.options)})},endPageMarkings:function(H){var T=H.markings;return T.forEach(function(){return H.write("EMC")}),H.markings=[],T},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 Dn,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var H=this.getStructTreeRoot(),T=H.data.ParentTreeNextKey++;return H.data.ParentTree.add(T,[]),T},endMarkings:function(){var H=this._root.data.StructTreeRoot;H&&(H.end(),this.structChildren.forEach(function(T){return T.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},Qn={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},en={value:"V",defaultValue:"DV"},gn={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},on_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},on_percent={nDec:0,sepComma:!1},Mi={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 H={Fields:[],NeedAppearances:!0,DA:new String("/".concat(this._font.id," 0 Tf 0 g")),DR:{Font:{}}};H.DR.Font[this._font.id]=this._font.ref();var T=this.ref(H);return this._root.data.AcroForm=T,this},endAcroForm:function(){var H=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 T=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(X){T[X]=H._acroform.fonts[X]}),this._root.data.AcroForm.data.Fields.forEach(function(X){H._endChild(X)}),this._root.data.AcroForm.end()}return this},_endChild:function(H){var T=this;return Array.isArray(H.data.Kids)&&(H.data.Kids.forEach(function(X){T._endChild(X)}),H.end()),this},formField:function(H){var X=this._fieldDict(H,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),V=this.ref(X);return this._addToParent(V),V},formAnnotation:function(H,T,X,V,uA,mA){var rt=this._fieldDict(H,T,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return rt.Subtype="Widget",void 0===rt.F&&(rt.F=4),this.annotate(X,V,uA,mA,rt),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(H,T,X,V,uA){return this.formAnnotation(H,"text",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(H,T,X,V,uA){return this.formAnnotation(H,"pushButton",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(H,T,X,V,uA){return this.formAnnotation(H,"combo",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(H,T,X,V,uA){return this.formAnnotation(H,"list",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(H,T,X,V,uA){return this.formAnnotation(H,"radioButton",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(H,T,X,V,uA){return this.formAnnotation(H,"checkbox",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(H){var T=H.data.Parent;return T?(T.data.Kids||(T.data.Kids=[]),T.data.Kids.push(H)):this._root.data.AcroForm.data.Fields.push(H),this},_fieldDict:function(H,T){var X=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 V=Object.assign({},X);return null!==T&&(V=this._resolveType(T,X)),V=this._resolveFlags(V),V=this._resolveJustify(V),V=this._resolveFont(V),V=this._resolveStrings(V),V=this._resolveColors(V),(V=this._resolveFormat(V)).T=new String(H),V.parent&&(V.Parent=V.parent,delete V.parent),V},_resolveType:function(H,T){if("text"===H)T.FT="Tx";else if("pushButton"===H)T.FT="Btn",T.pushButton=!0;else if("radioButton"===H)T.FT="Btn",T.radioButton=!0;else if("checkbox"===H)T.FT="Btn";else if("combo"===H)T.FT="Ch",T.combo=!0;else{if("list"!==H)throw new Error("Invalid form annotation type '".concat(H,"'"));T.FT="Ch"}return T},_resolveFormat:function(H){var T=H.format;if(T&&T.type){var X,V,uA="";if(void 0!==gn[T.type])X="AFSpecial_Keystroke",V="AFSpecial_Format",uA=gn[T.type];else{var mA=T.type.charAt(0).toUpperCase()+T.type.slice(1);if(X="AF".concat(mA,"_Keystroke"),V="AF".concat(mA,"_Format"),"date"===T.type)X+="Ex",uA=String(T.param);else if("time"===T.type)uA=String(T.param);else if("number"===T.type){var tt=Object.assign({},on_number,T);uA=String([String(tt.nDec),tt.sepComma?"0":"1",'"'+tt.negStyle+'"',"null",'"'+tt.currency+'"',String(tt.currencyPrepend)].join(","))}else if("percent"===T.type){var rt=Object.assign({},on_percent,T);uA=String([String(rt.nDec),rt.sepComma?"0":"1"].join(","))}}H.AA=H.AA?H.AA:{},H.AA.K={S:"JavaScript",JS:new String("".concat(X,"(").concat(uA,");"))},H.AA.F={S:"JavaScript",JS:new String("".concat(V,"(").concat(uA,");"))}}return delete H.format,H},_resolveColors:function(H){var T=this._normalizeColor(H.backgroundColor);return T&&(H.MK||(H.MK={}),H.MK.BG=T),(T=this._normalizeColor(H.borderColor))&&(H.MK||(H.MK={}),H.MK.BC=T),delete H.backgroundColor,delete H.borderColor,H},_resolveFlags:function(H){var T=0;return Object.keys(H).forEach(function(X){Qn[X]&&(T|=Qn[X],delete H[X])}),0!==T&&(H.Ff=H.Ff?H.Ff:0,H.Ff|=T),H},_resolveJustify:function(H){var T=0;return void 0!==H.align&&("number"==typeof Yn[H.align]&&(T=Yn[H.align]),delete H.align),0!==T&&(H.Q=T),H},_resolveFont:function(H){if(null===this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){H.DR={Font:{}};var T=H.fontSize||0;H.DR.Font[this._font.id]=this._font.ref(),H.DA=new String("/".concat(this._font.id," ").concat(T," Tf 0 g"))}return H},_resolveStrings:function(H){var T=[];function X(V){if(Array.isArray(V))for(var uA=0;uA1&&void 0!==arguments[1]?arguments[1]:{};T.name=T.name||H;var V,X={Type:"EmbeddedFile",Params:{}};if(!H)throw new Error("No src specified");if(a.isBuffer(H))V=H;else if(H instanceof ArrayBuffer)V=a.from(new Uint8Array(H));else{var uA;if(uA=/^data:(.*);base64,(.*)$/.exec(H))uA[1]&&(X.Subtype=uA[1].replace("/","#2F")),V=a.from(uA[2],"base64");else{if(!(V=E.readFileSync(H)))throw new Error("Could not read contents of file at filepath ".concat(H));var mA=E.statSync(H),rt=mA.ctime;X.Params.CreationDate=mA.birthtime,X.Params.ModDate=rt}}T.creationDate instanceof Date&&(X.Params.CreationDate=T.creationDate),T.modifiedDate instanceof Date&&(X.Params.ModDate=T.modifiedDate),T.type&&(X.Subtype=T.type.replace("/","#2F"));var Ct,ut=g.default.MD5(g.default.lib.WordArray.create(new Uint8Array(V)));X.Params.CheckSum=new String(ut),X.Params.Size=V.byteLength,this._fileRegistry||(this._fileRegistry={});var Mt=this._fileRegistry[T.name];Mt&&function Kn(dA,H){return dA.Subtype===H.Subtype&&dA.Params.CheckSum.toString()===H.Params.CheckSum.toString()&&dA.Params.Size===H.Params.Size&&dA.Params.CreationDate===H.Params.CreationDate&&dA.Params.ModDate===H.Params.ModDate}(X,Mt)?Ct=Mt.ref:((Ct=this.ref(X)).end(V),this._fileRegistry[T.name]=R(R({},X),{},{ref:Ct}));var Dt={Type:"Filespec",F:new String(T.name),EF:{F:Ct},UF:new String(T.name)};T.description&&(Dt.Desc=new String(T.description));var Ft=this.ref(Dt);return Ft.end(),T.hidden||this.addNamedEmbeddedFile(T.name,Ft),Ft}};var Di={initPDFA:function(H){"-"===H.charAt(H.length-3)?(this.subset_conformance=H.charAt(H.length-1).toUpperCase(),this.subset=parseInt(H.charAt(H.length-2))):(this.subset_conformance="B",this.subset=parseInt(H.charAt(H.length-1)))},endSubset:function(){this._addPdfaMetadata();var H="".concat(B,"/data/sRGB_IEC61966_2_1.icc"),T="".concat(B,"/../color_profiles/sRGB_IEC61966_2_1.icc");this._addColorOutputIntent(E.existsSync(H)?H:T)},_addColorOutputIntent:function(H){var T=E.readFileSync(H),X=this.ref({Length:T.length,N:3});X.write(T),X.end();var V=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:X});V.end(),this._root.data.OutputIntents=[V]},_getPdfaid:function(){return'\n \n '.concat(this.subset,"\n ").concat(this.subset_conformance,"\n \n ")},_addPdfaMetadata:function(){this.appendXML(this._getPdfaid())}},vi={_importSubset:function(H){Object.assign(this,H)},initSubset:function(H){switch(H.subset){case"PDF/A-1":case"PDF/A-1a":case"PDF/A-1b":case"PDF/A-2":case"PDF/A-2a":case"PDF/A-2b":case"PDF/A-3":case"PDF/A-3a":case"PDF/A-3b":this._importSubset(Di),this.initPDFA(H.subset)}}},jn=function(){function dA(){C(this,dA),this._metadata='\n \n \n \n '}return h(dA,[{key:"_closeTags",value:function(){this._metadata=this._metadata.concat('\n \n \n \n ')}},{key:"append",value:function(T){var X=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this._metadata=this._metadata.concat(T),X&&(this._metadata=this._metadata.concat("\n"))}},{key:"getXML",value:function(){return this._metadata}},{key:"getLength",value:function(){return this._metadata.length}},{key:"end",value:function(){this._closeTags(),this._metadata=this._metadata.trim()}}]),dA}(),Ci={initMetadata:function(){this.metadata=new jn},appendXML:function(H){this.metadata.append(H,!(arguments.length>1&&void 0!==arguments[1])||arguments[1])},_addInfo:function(){this.appendXML('\n \n '.concat(this.info.CreationDate.toISOString().split(".")[0]+"Z","\n ").concat(this.info.Creator,"\n \n ")),(this.info.Title||this.info.Author||this.info.Subject)&&(this.appendXML('\n \n '),this.info.Title&&this.appendXML('\n \n \n '.concat(this.info.Title,"\n \n \n ")),this.info.Author&&this.appendXML("\n \n \n ".concat(this.info.Author,"\n \n \n ")),this.info.Subject&&this.appendXML('\n \n \n '.concat(this.info.Subject,"\n \n \n ")),this.appendXML("\n \n ")),this.appendXML('\n \n '.concat(this.info.Creator,""),!1),this.info.Keywords&&this.appendXML("\n ".concat(this.info.Keywords,""),!1),this.appendXML("\n \n ")},endMetadata:function(){this._addInfo(),this.metadata.end(),1.3!=this.version&&(this.metadataRef=this.ref({length:this.metadata.getLength(),Type:"Metadata",Subtype:"XML"}),this.metadataRef.compress=!1,this.metadataRef.write(a.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}},ei=function(dA){p(T,dA);var H=S(T);function T(){var X,V=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(C(this,T),(X=H.call(this,V)).options=V,V.pdfVersion){case"1.4":X.version=1.4;break;case"1.5":X.version=1.5;break;case"1.6":X.version=1.6;break;case"1.7":case"1.7ext3":X.version=1.7;break;default:X.version=1.3}X.compress=null==X.options.compress||X.options.compress,X._pageBuffer=[],X._pageBufferStart=0,X._offsets=[],X._waiting=0,X._ended=!1,X._offset=0;var uA=X.ref({Type:"Pages",Count:0,Kids:[]}),mA=X.ref({Dests:new AA});if(X._root=X.ref({Type:"Catalog",Pages:uA,Names:mA}),X.options.lang&&(X._root.data.Lang=new String(X.options.lang)),X.page=null,X.initMetadata(),X.initColor(),X.initVector(),X.initFonts(V.font),X.initText(),X.initImages(),X.initOutline(),X.initMarkings(V),X.initSubset(V),X.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},X.options.info)for(var tt in X.options.info)X.info[tt]=X.options.info[tt];return X.options.displayTitle&&(X._root.data.ViewerPreferences=X.ref({DisplayDocTitle:!0})),X._id=Z.generateFileID(X.info),X._security=Z.create(Y(X),V),X._write("%PDF-".concat(X.version)),X._write("%\xff\xff\xff\xff"),!1!==X.options.autoFirstPage&&X.addPage(),X}return h(T,[{key:"addPage",value:function(V){null==V&&(V=this.options),this.options.bufferPages||this.flushPages(),this.page=new rA(this,V),this._pageBuffer.push(this.page);var uA=this._root.data.Pages.data;return uA.Kids.push(this.page.dictionary),uA.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(V){var uA=this.endPageMarkings(this.page);return this.addPage(V),this.initPageMarkings(uA),this}},{key:"bufferedPageRange",value:function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}},{key:"switchToPage",value:function(V){var uA;if(!(uA=this._pageBuffer[V-this._pageBufferStart]))throw new Error("switchToPage(".concat(V,") out of bounds, current buffer covers pages ").concat(this._pageBufferStart," to ").concat(this._pageBufferStart+this._pageBuffer.length-1));return this.page=uA}},{key:"flushPages",value:function(){var V=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=V.length;var mA,uA=YA(V);try{for(uA.s();!(mA=uA.n()).done;){var tt=mA.value;this.endPageMarkings(tt),tt.end()}}catch(rt){uA.e(rt)}finally{uA.f()}}},{key:"addNamedDestination",value:function(V){for(var uA=arguments.length,mA=new Array(uA>1?uA-1:0),tt=1;tt"u"&&(a.pdfMake=B),b.exports=B},80182:function(b,A,n){"use strict";var B=n(9964);function a(DA){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(NA){return typeof NA}:function(NA){return NA&&"function"==typeof Symbol&&NA.constructor===Symbol&&NA!==Symbol.prototype?"symbol":typeof NA})(DA)}function s(DA,NA){for(var zA=0;zA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function p(J,BA){return(p=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(eA,EA){return eA.__proto__=EA,eA})(J,BA)}function m(J){return(m=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(aA){return aA.__proto__||Object.getPrototypeOf(aA)})(J)}function y(J){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(BA){return typeof BA}:function(BA){return BA&&"function"==typeof Symbol&&BA.constructor===Symbol&&BA!==Symbol.prototype?"symbol":typeof BA})(J)}var Y=n(7187).inspect,S=n(35403).codes.ERR_INVALID_ARG_TYPE;function z(J,BA,aA){return(void 0===aA||aA>J.length)&&(aA=J.length),J.substring(aA-BA.length,aA)===BA}var $="",gA="",_="",fA="",iA={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 IA(J){var BA=Object.keys(J),aA=Object.create(Object.getPrototypeOf(J));return BA.forEach(function(eA){aA[eA]=J[eA]}),Object.defineProperty(aA,"message",{value:J.message}),aA}function FA(J){return Y(J,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function YA(J,BA,aA){var eA="",EA="",xA=0,OA="",W=!1,L=FA(J),rA=L.split("\n"),AA=FA(BA).split("\n"),QA=0,yA="";if("strictEqual"===aA&&"object"===y(J)&&"object"===y(BA)&&null!==J&&null!==BA&&(aA="strictEqualObject"),1===rA.length&&1===AA.length&&rA[0]!==AA[0]){var cA=rA[0].length+AA[0].length;if(cA<=10){if(!("object"===y(J)&&null!==J||"object"===y(BA)&&null!==BA||0===J&&0===BA))return"".concat(iA[aA],"\n\n")+"".concat(rA[0]," !== ").concat(AA[0],"\n")}else if("strictEqualObject"!==aA&&cA<(B.stderr&&B.stderr.isTTY?B.stderr.columns:80)){for(;rA[0][QA]===AA[0][QA];)QA++;QA>2&&(yA="\n ".concat(function F(J,BA){if(BA=Math.floor(BA),0==J.length||0==BA)return"";var aA=J.length*BA;for(BA=Math.floor(Math.log(BA)/Math.log(2));BA;)J+=J,BA--;return J+J.substring(0,aA-J.length)}(" ",QA),"^"),QA=0)}}for(var DA=rA[rA.length-1],NA=AA[AA.length-1];DA===NA&&(QA++<2?OA="\n ".concat(DA).concat(OA):eA=DA,rA.pop(),AA.pop(),0!==rA.length&&0!==AA.length);)DA=rA[rA.length-1],NA=AA[AA.length-1];var zA=Math.max(rA.length,AA.length);if(0===zA){var pA=L.split("\n");if(pA.length>30)for(pA[26]="".concat($,"...").concat(fA);pA.length>27;)pA.pop();return"".concat(iA.notIdentical,"\n\n").concat(pA.join("\n"),"\n")}QA>3&&(OA="\n".concat($,"...").concat(fA).concat(OA),W=!0),""!==eA&&(OA="\n ".concat(eA).concat(OA),eA="");var JA=0,ft=iA[aA]+"\n".concat(gA,"+ actual").concat(fA," ").concat(_,"- expected").concat(fA),wt=" ".concat($,"...").concat(fA," Lines skipped");for(QA=0;QA1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(AA[QA-2]),JA++),EA+="\n ".concat(AA[QA-1]),JA++),xA=QA,eA+="\n".concat(_,"-").concat(fA," ").concat(AA[QA]),JA++;else if(AA.length1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(rA[QA-2]),JA++),EA+="\n ".concat(rA[QA-1]),JA++),xA=QA,EA+="\n".concat(gA,"+").concat(fA," ").concat(rA[QA]),JA++;else{var pt=AA[QA],Yt=rA[QA],VA=Yt!==pt&&(!z(Yt,",")||Yt.slice(0,-1)!==pt);VA&&z(pt,",")&&pt.slice(0,-1)===Yt&&(VA=!1,Yt+=","),VA?(gt>1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(rA[QA-2]),JA++),EA+="\n ".concat(rA[QA-1]),JA++),xA=QA,EA+="\n".concat(gA,"+").concat(fA," ").concat(Yt),eA+="\n".concat(_,"-").concat(fA," ").concat(pt),JA+=2):(EA+=eA,eA="",(1===gt||0===QA)&&(EA+="\n ".concat(Yt),JA++))}if(JA>20&&QA30)for(cA[26]="".concat($,"...").concat(fA);cA.length>27;)cA.pop();xA=aA.call(this,1===cA.length?"".concat(yA," ").concat(cA[0]):"".concat(yA,"\n\n").concat(cA.join("\n"),"\n"))}else{var CA=FA(rA),DA="",NA=iA[W];"notDeepEqual"===W||"notEqual"===W?(CA="".concat(iA[W],"\n\n").concat(CA)).length>1024&&(CA="".concat(CA.slice(0,1021),"...")):(DA="".concat(FA(AA)),CA.length>512&&(CA="".concat(CA.slice(0,509),"...")),DA.length>512&&(DA="".concat(DA.slice(0,509),"...")),"deepEqual"===W||"equal"===W?CA="".concat(NA,"\n\n").concat(CA,"\n\nshould equal\n\n"):DA=" ".concat(W," ").concat(DA)),xA=aA.call(this,"".concat(CA).concat(DA))}return Error.stackTraceLimit=QA,xA.generatedMessage=!OA,Object.defineProperty(e(xA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),xA.code="ERR_ASSERTION",xA.actual=rA,xA.expected=AA,xA.operator=W,Error.captureStackTrace&&Error.captureStackTrace(e(xA),L),xA.name="AssertionError",C(xA)}return function w(J,BA,aA){return BA&&f(J.prototype,BA),aA&&f(J,aA),Object.defineProperty(J,"prototype",{writable:!1}),J}(eA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:BA,value:function(xA,OA){return Y(this,s(s({},OA),{},{customInspect:!1,depth:0}))}}]),eA}(h(Error),Y.custom);b.exports=HA},35403:function(b,A,n){"use strict";function B(Y){return(B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(v){return typeof v}:function(v){return v&&"function"==typeof Symbol&&v.constructor===Symbol&&v!==Symbol.prototype?"symbol":typeof v})(Y)}function a(Y,v){for(var S=0;S"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var F,z=e(Y);if(v){var $=e(this).constructor;F=Reflect.construct(z,arguments,$)}else F=z.apply(this,arguments);return function d(Y,v){if(v&&("object"===B(v)||"function"==typeof v))return v;if(void 0!==v)throw new TypeError("Derived constructors may only return object or undefined");return function E(Y){if(void 0===Y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Y}(Y)}(this,F)}}function e(Y){return(e=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(S){return S.__proto__||Object.getPrototypeOf(S)})(Y)}var Q,I,h={};function R(Y,v,S){S||(S=Error),h[Y]=function($){!function w(Y,v){if("function"!=typeof v&&null!==v)throw new TypeError("Super expression must either be null or a function");Y.prototype=Object.create(v&&v.prototype,{constructor:{value:Y,writable:!0,configurable:!0}}),Object.defineProperty(Y,"prototype",{writable:!1}),v&&u(Y,v)}(_,$);var gA=r(_);function _(fA,iA,wA){var IA;return function f(Y,v){if(!(Y instanceof v))throw new TypeError("Cannot call a class as a function")}(this,_),(IA=gA.call(this,function z($,gA,_){return"string"==typeof v?v:v($,gA,_)}(fA,iA,wA))).code=Y,IA}return function s(Y,v,S){return v&&a(Y.prototype,v),S&&a(Y,S),Object.defineProperty(Y,"prototype",{writable:!1}),Y}(_)}(S)}function p(Y,v){if(Array.isArray(Y)){var S=Y.length;return Y=Y.map(function(z){return String(z)}),S>2?"one of ".concat(v," ").concat(Y.slice(0,S-1).join(", "),", or ")+Y[S-1]:2===S?"one of ".concat(v," ").concat(Y[0]," or ").concat(Y[1]):"of ".concat(v," ").concat(Y[0])}return"of ".concat(v," ").concat(String(Y))}R("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),R("ERR_INVALID_ARG_TYPE",function(Y,v,S){var z,F;if(void 0===Q&&(Q=n(80182)),Q("string"==typeof Y,"'name' must be a string"),"string"==typeof v&&function m(Y,v,S){return Y.substr(!S||S<0?0:+S,v.length)===v}(v,"not ")?(z="must not be",v=v.replace(/^not /,"")):z="must be",function y(Y,v,S){return(void 0===S||S>Y.length)&&(S=Y.length),Y.substring(S-v.length,S)===v}(Y," argument"))F="The ".concat(Y," ").concat(z," ").concat(p(v,"type"));else{var $=function x(Y,v,S){return"number"!=typeof S&&(S=0),!(S+v.length>Y.length)&&-1!==Y.indexOf(v,S)}(Y,".")?"property":"argument";F='The "'.concat(Y,'" ').concat($," ").concat(z," ").concat(p(v,"type"))}return F+". Received type ".concat(B(S))},TypeError),R("ERR_INVALID_ARG_VALUE",function(Y,v){var S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===I&&(I=n(7187));var z=I.inspect(v);return z.length>128&&(z="".concat(z.slice(0,128),"...")),"The argument '".concat(Y,"' ").concat(S,". Received ").concat(z)},TypeError,RangeError),R("ERR_INVALID_RETURN_VALUE",function(Y,v,S){var z;return z=S&&S.constructor&&S.constructor.name?"instance of ".concat(S.constructor.name):"type ".concat(B(S)),"Expected ".concat(Y,' to be returned from the "').concat(v,'"')+" function but got ".concat(z,".")},TypeError),R("ERR_MISSING_ARGS",function(){for(var Y=arguments.length,v=new Array(Y),S=0;S0,"At least one arg needs to be specified");var z="The ",F=v.length;switch(v=v.map(function($){return'"'.concat($,'"')}),F){case 1:z+="".concat(v[0]," argument");break;case 2:z+="".concat(v[0]," and ").concat(v[1]," arguments");break;default:z+=v.slice(0,F-1).join(", "),z+=", and ".concat(v[F-1]," arguments")}return"".concat(z," must be specified")},TypeError),b.exports.codes=h},86781:function(b,A,n){"use strict";function B(VA,_A){return function f(VA){if(Array.isArray(VA))return VA}(VA)||function g(VA,_A){var Qt=null==VA?null:typeof Symbol<"u"&&VA[Symbol.iterator]||VA["@@iterator"];if(null!=Qt){var ht,vt,Nt,vA,Bt=[],Z=!0,k=!1;try{if(Nt=(Qt=Qt.call(VA)).next,0===_A){if(Object(Qt)!==Qt)return;Z=!1}else for(;!(Z=(ht=Nt.call(Qt)).done)&&(Bt.push(ht.value),Bt.length!==_A);Z=!0);}catch(U){k=!0,vt=U}finally{try{if(!Z&&null!=Qt.return&&(vA=Qt.return(),Object(vA)!==vA))return}finally{if(k)throw vt}}return Bt}}(VA,_A)||function s(VA,_A){if(VA){if("string"==typeof VA)return o(VA,_A);var Qt=Object.prototype.toString.call(VA).slice(8,-1);if("Object"===Qt&&VA.constructor&&(Qt=VA.constructor.name),"Map"===Qt||"Set"===Qt)return Array.from(VA);if("Arguments"===Qt||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(Qt))return o(VA,_A)}}(VA,_A)||function a(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(VA,_A){(null==_A||_A>VA.length)&&(_A=VA.length);for(var Qt=0,ht=new Array(_A);Qt<_A;Qt++)ht[Qt]=VA[Qt];return ht}function w(VA){return(w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(_A){return typeof _A}:function(_A){return _A&&"function"==typeof Symbol&&_A.constructor===Symbol&&_A!==Symbol.prototype?"symbol":typeof _A})(VA)}var u=void 0!==/a/g.flags,r=function(_A){var Qt=[];return _A.forEach(function(ht){return Qt.push(ht)}),Qt},d=function(_A){var Qt=[];return _A.forEach(function(ht,vt){return Qt.push([vt,ht])}),Qt},E=Object.is?Object.is:n(98527),C=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},e=Number.isNaN?Number.isNaN:n(7051);function h(VA){return VA.call.bind(VA)}var Q=h(Object.prototype.hasOwnProperty),I=h(Object.prototype.propertyIsEnumerable),R=h(Object.prototype.toString),p=n(7187).types,m=p.isAnyArrayBuffer,y=p.isArrayBufferView,x=p.isDate,Y=p.isMap,v=p.isRegExp,S=p.isSet,z=p.isNativeError,F=p.isBoxedPrimitive,$=p.isNumberObject,gA=p.isStringObject,_=p.isBooleanObject,fA=p.isBigIntObject,iA=p.isSymbolObject,wA=p.isFloat32Array,IA=p.isFloat64Array;function FA(VA){if(0===VA.length||VA.length>10)return!0;for(var _A=0;_A57)return!0}return 10===VA.length&&VA>=Math.pow(2,32)}function YA(VA){return Object.keys(VA).filter(FA).concat(C(VA).filter(Object.prototype.propertyIsEnumerable.bind(VA)))}function HA(VA,_A){if(VA===_A)return 0;for(var Qt=VA.length,ht=_A.length,vt=0,Nt=Math.min(Qt,ht);vt0?I-4:I;for(x=0;x>16&255,p[m++]=h>>8&255,p[m++]=255&h;return 2===R&&(h=B[e.charCodeAt(x)]<<2|B[e.charCodeAt(x+1)]>>4,p[m++]=255&h),1===R&&(h=B[e.charCodeAt(x)]<<10|B[e.charCodeAt(x+1)]<<4|B[e.charCodeAt(x+2)]>>2,p[m++]=h>>8&255,p[m++]=255&h),p},A.fromByteArray=function C(e){for(var h,Q=e.length,I=Q%3,R=[],p=16383,m=0,y=Q-I;my?y:m+p));return 1===I?R.push(n[(h=e[Q-1])>>2]+n[h<<4&63]+"=="):2===I&&R.push(n[(h=(e[Q-2]<<8)+e[Q-1])>>10]+n[h>>4&63]+n[h<<2&63]+"="),R.join("")};for(var n=[],B=[],a=typeof Uint8Array<"u"?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=s[o],B[s.charCodeAt(o)]=o;function f(e){var h=e.length;if(h%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var Q=e.indexOf("=");return-1===Q&&(Q=h),[Q,Q===h?0:4-Q%4]}function d(e){return n[e>>18&63]+n[e>>12&63]+n[e>>6&63]+n[63&e]}function E(e,h,Q){for(var R=[],p=h;p0},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 o=this.buf_ptr_,g=this.input_.read(this.buf_,o,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(o){32-this.bit_pos_>>this.bit_pos_&a[o];return this.bit_pos_+=o,g},b.exports=s},7043:function(b,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])},20980:function(b,A,n){var a=n(98197).z,s=n(98197).y,o=n(34097),g=n(80614),f=n(81561).z,w=n(81561).u,u=n(7043),r=n(42210),d=n(87984),E=8,C=16,e=256,h=704,Q=26,I=6,R=2,p=8,m=255,y=1080,x=18,Y=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),v=16,S=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),z=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),F=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 $(rA){var AA;return 0===rA.readBits(1)?16:(AA=rA.readBits(3))>0?17+AA:(AA=rA.readBits(3))>0?8+AA:17}function gA(rA){if(rA.readBits(1)){var AA=rA.readBits(3);return 0===AA?1:rA.readBits(AA)+(1<1&&0===CA)throw new Error("Invalid size byte");AA.meta_block_length|=CA<<8*cA}}else for(cA=0;cA4&&0===DA)throw new Error("Invalid size nibble");AA.meta_block_length|=DA<<4*cA}return++AA.meta_block_length,!AA.input_end&&!AA.is_metadata&&(AA.is_uncompressed=rA.readBits(1)),AA}function iA(rA,AA,QA){var cA;return QA.fillBitWindow(),(cA=rA[AA+=QA.val_>>>QA.bit_pos_&m].bits-p)>0&&(QA.bit_pos_+=p,AA+=rA[AA].value,AA+=QA.val_>>>QA.bit_pos_&(1<>=1,++pA;for(NA=0;NA0;++NA){var Qt,VA=Y[NA],_A=0;yA.fillBitWindow(),yA.bit_pos_+=Yt[_A+=yA.val_>>>yA.bit_pos_&15].bits,wt[VA]=Qt=Yt[_A].value,0!==Qt&&(gt-=32>>Qt,++pt)}if(1!==pt&&0!==gt)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function wA(rA,AA,QA,yA){for(var cA=0,CA=E,DA=0,NA=0,zA=32768,pA=[],JA=0;JA<32;JA++)pA.push(new f(0,0));for(w(pA,0,5,rA,x);cA0;){var wt,ft=0;if(yA.readMoreInput(),yA.fillBitWindow(),yA.bit_pos_+=pA[ft+=yA.val_>>>yA.bit_pos_&31].bits,(wt=255&pA[ft].value)>wt);else{var pt,Yt,gt=wt-14,VA=0;if(wt===C&&(VA=CA),NA!==VA&&(DA=0,NA=VA),pt=DA,DA>0&&(DA-=2,DA<<=gt),cA+(Yt=(DA+=yA.readBits(gt)+3)-pt)>AA)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var _A=0;_A>>5]),this.htrees=new Uint32Array(AA)}function aA(rA,AA){var CA,DA,QA={num_htrees:null,context_map:null},cA=0;AA.readMoreInput();var NA=QA.num_htrees=gA(AA)+1,zA=QA.context_map=new Uint8Array(rA);if(NA<=1)return QA;for(AA.readBits(1)&&(cA=AA.readBits(4)+1),CA=[],DA=0;DA=rA)throw new Error("[DecodeContextMap] i >= context_map_size");zA[DA]=0,++DA}else zA[DA]=pA-cA,++DA}return AA.readBits(1)&&function J(rA,AA){var yA,QA=new Uint8Array(256);for(yA=0;yA<256;++yA)QA[yA]=yA;for(yA=0;yA=rA&&(JA-=rA),yA[QA]=JA,cA[NA+(1&CA[zA])]=JA,++CA[zA]}function EA(rA,AA,QA,yA,cA,CA){var pA,DA=cA+1,NA=QA&cA,zA=CA.pos_&o.IBUF_MASK;if(AA<8||CA.bit_pos_+(AA<<3)0;)CA.readMoreInput(),yA[NA++]=CA.readBits(8),NA===DA&&(rA.write(yA,DA),NA=0);else{if(CA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;CA.bit_pos_<32;)yA[NA]=CA.val_>>>CA.bit_pos_,CA.bit_pos_+=8,++NA,--AA;if(zA+(pA=CA.bit_end_pos_-CA.bit_pos_>>3)>o.IBUF_MASK){for(var JA=o.IBUF_MASK+1-zA,ft=0;ft=DA)for(rA.write(yA,DA),NA-=DA,ft=0;ft=DA;){if(CA.input_.read(yA,NA,pA=DA-NA)AA.buffer.length){var ee=new Uint8Array(yA+vA);ee.set(AA.buffer),AA.buffer=ee}if(cA=Mn.input_end,Bt=Mn.is_uncompressed,Mn.is_metadata)for(xA(ht);vA>0;--vA)ht.readMoreInput(),ht.readBits(8);else if(0!==vA){if(Bt){ht.bit_pos_=ht.bit_pos_+7&-8,EA(AA,vA,yA,JA,pA,ht),yA+=vA;continue}for(QA=0;QA<3;++QA)U[QA]=gA(ht)+1,U[QA]>=2&&(IA(U[QA]+2,_A,QA*y,ht),IA(Q,Qt,QA*y,ht),Z[QA]=FA(Qt,QA*y,ht),q[QA]=1);for(ht.readMoreInput(),O=(1<<(GA=ht.readBits(2)))-1,qA=(At=v+(ht.readBits(4)<0;){var Fe,Qe,In,wn,kt,zt,Wt,ae,dn,Tn,Wn,ti;for(ht.readMoreInput(),0===Z[1]&&(eA(U[1],_A,1,k,hA,q,ht),Z[1]=FA(Qt,y,ht),yn=VA[1].htrees[k[1]]),--Z[1],(Qe=(Fe=iA(VA[1].codes,yn,ht))>>6)>=2?(Qe-=2,Wt=-1):Wt=0,wn=r.kCopyRangeLut[Qe]+(7&Fe),kt=r.kInsertLengthPrefixCode[In=r.kInsertRangeLut[Qe]+(Fe>>3&7)].offset+ht.readBits(r.kInsertLengthPrefixCode[In].nbits),zt=r.kCopyLengthPrefixCode[wn].offset+ht.readBits(r.kCopyLengthPrefixCode[wn].nbits),pt=JA[yA-1&pA],Yt=JA[yA-2&pA],dn=0;dn4?3:zt-2))]],ht))>=At&&(ti=(Wt-=At)&O,Wt=At+((xn=(2+(1&(Wt>>=GA))<<(Wn=1+(Wt>>1)))-4)+ht.readBits(Wn)<(NA=yA=g.minDictionaryWordLength&&zt<=g.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+yA+" distance: "+ae+" len: "+zt+" bytes left: "+vA);var xn=g.offsetsByLength[zt],ZA=ae-NA-1,SA=g.sizeBitsByLength[zt],TA=ZA>>SA;if(xn+=(ZA&(1<=ft){AA.write(JA,zA);for(var kA=0;kA0&&(wt[3>]=ae,++gt),zt>vA)throw new Error("Invalid backward reference. pos: "+yA+" distance: "+ae+" len: "+zt+" bytes left: "+vA);for(dn=0;dn>=1;return(g&w-1)+w}function s(g,f,w,u,r){do{g[f+(u-=w)]=new n(r.bits,r.value)}while(u>0)}function o(g,f,w){for(var u=1<0;--Y[C])s(g,f+h,Q,m,new n(255&C,65535&x[e++])),h=a(h,C);for(R=y-1,I=-1,C=w+1,Q=2;C<=B;++C,Q<<=1)for(;Y[C]>0;--Y[C])(h&R)!==I&&(f+=m,y+=m=1<<(p=o(Y,C,w)),g[d+(I=h&R)]=new n(p+w&255,f-d-I&65535)),s(g,f+(h>>w),Q,m,new n(C-w&255,65535&x[e++])),h=a(h,C);return y}},42210:function(b,A){function n(B,a){this.offset=B,this.nbits=a}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]},98197:function(b,A){function n(a){this.buffer=a,this.pos=0}function B(a){this.buffer=a,this.pos=0}n.prototype.read=function(a,s,o){this.pos+o>this.buffer.length&&(o=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(a.subarray(0,s),this.pos),this.pos+=s,s},A.y=B},87984:function(b,A,n){var B=n(80614),C=10,e=11;function v(F,$,gA){this.prefix=new Uint8Array(F.length),this.transform=$,this.suffix=new Uint8Array(gA.length);for(var _=0;_'),new v("",0,"\n"),new v("",3,""),new v("",0,"]"),new v("",0," for "),new v("",14,""),new v("",2,""),new v("",0," a "),new v("",0," that "),new v(" ",C,""),new v("",0,". "),new v(".",0,""),new v(" ",0,", "),new v("",15,""),new v("",0," with "),new v("",0,"'"),new v("",0," from "),new v("",0," by "),new v("",16,""),new v("",17,""),new v(" the ",0,""),new v("",4,""),new v("",0,". The "),new v("",e,""),new v("",0," on "),new v("",0," as "),new v("",0," is "),new v("",7,""),new v("",1,"ing "),new v("",0,"\n\t"),new v("",0,":"),new v(" ",0,". "),new v("",0,"ed "),new v("",20,""),new v("",18,""),new v("",6,""),new v("",0,"("),new v("",C,", "),new v("",8,""),new v("",0," at "),new v("",0,"ly "),new v(" the ",0," of "),new v("",5,""),new v("",9,""),new v(" ",C,", "),new v("",C,'"'),new v(".",0,"("),new v("",e," "),new v("",C,'">'),new v("",0,'="'),new v(" ",0,"."),new v(".com/",0,""),new v(" the ",0," of the "),new v("",C,"'"),new v("",0,". This "),new v("",0,","),new v(".",0," "),new v("",C,"("),new v("",C,"."),new v("",0," not "),new v(" ",0,'="'),new v("",0,"er "),new v(" ",e," "),new v("",0,"al "),new v(" ",e,""),new v("",0,"='"),new v("",e,'"'),new v("",C,". "),new v(" ",0,"("),new v("",0,"ful "),new v(" ",C,". "),new v("",0,"ive "),new v("",0,"less "),new v("",e,"'"),new v("",0,"est "),new v(" ",C,"."),new v("",e,'">'),new v(" ",0,"='"),new v("",C,","),new v("",0,"ize "),new v("",e,"."),new v("\xc2\xa0",0,""),new v(" ",0,","),new v("",C,'="'),new v("",e,'="'),new v("",0,"ous "),new v("",e,", "),new v("",C,"='"),new v(" ",C,","),new v(" ",e,'="'),new v(" ",e,", "),new v("",e,","),new v("",e,"("),new v("",e,". "),new v(" ",e,"."),new v("",e,"='"),new v(" ",e,". "),new v(" ",C,'="'),new v(" ",e,"='"),new v(" ",C,"='")];function z(F,$){return F[$]<192?(F[$]>=97&&F[$]<=122&&(F[$]^=32),1):F[$]<224?(F[$+1]^=32,2):(F[$+2]^=5,3)}A.kTransforms=S,A.kNumTransforms=S.length,A.transformDictionaryWord=function(F,$,gA,_,fA){var J,iA=S[fA].prefix,wA=S[fA].suffix,IA=S[fA].transform,FA=IA<12?0:IA-11,YA=0,HA=$;FA>_&&(FA=_);for(var BA=0;BA0;){var aA=z(F,J);J+=aA,_-=aA}for(var eA=0;eAA.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=C,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(C,e,h,Q,I,R,p){return this._write(!0,C,e,h,Q,I,R,p)},E.prototype.writeSync=function(C,e,h,Q,I,R,p){return this._write(!1,C,e,h,Q,I,R,p)},E.prototype._write=function(C,e,h,Q,I,R,p,m){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===e,"must provide flush value"),this.write_in_progress=!0,e!==A.Z_NO_FLUSH&&e!==A.Z_PARTIAL_FLUSH&&e!==A.Z_SYNC_FLUSH&&e!==A.Z_FULL_FLUSH&&e!==A.Z_FINISH&&e!==A.Z_BLOCK)throw new Error("Invalid flush value");if(null==h&&(h=B.alloc(0),I=0,Q=0),this.strm.avail_in=I,this.strm.input=h,this.strm.next_in=Q,this.strm.avail_out=m,this.strm.output=R,this.strm.next_out=p,this.flush=e,!C)return this._process(),this._checkError()?this._afterSync():void 0;var y=this;return a.nextTick(function(){y._process(),y._after()}),this},E.prototype._afterSync=function(){var C=this.strm.avail_out,e=this.strm.avail_in;return this.write_in_progress=!1,[e,C]},E.prototype._process=function(){var C=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&&(C=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===C)break;if(31!==this.strm.input[C]){this.mode=A.INFLATE;break}if(this.gzip_id_bytes_read=1,C++,1===this.strm.avail_in)break;case 1:if(null===C)break;139===this.strm.input[C]?(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 C=this.strm.avail_out,e=this.strm.avail_in;this.write_in_progress=!1,this.callback(e,C),this.pending_close&&this.close()}},E.prototype._error=function(C){this.strm.msg&&(C=this.strm.msg),this.onerror(C,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},E.prototype.init=function(C,e,h,Q,I){s(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),s(C>=8&&C<=15,"invalid windowBits"),s(e>=-1&&e<=9,"invalid compression level"),s(h>=1&&h<=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(e,C,h,Q,I),this._setDictionary()},E.prototype.params=function(){throw new Error("deflateParams Not supported")},E.prototype.reset=function(){this._reset(),this._setDictionary()},E.prototype._init=function(C,e,h,Q,I){switch(this.level=C,this.windowBits=e,this.memLevel=h,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 o,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=I,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},6729:function(b,A,n){"use strict";var B=n(9964),a=n(50621).Buffer,s=n(9760).Transform,o=n(72908),g=n(7187),f=n(80182).ok,w=n(50621).kMaxLength,u="Cannot create final Buffer. It would be larger than 0x"+w.toString(16)+" bytes";o.Z_MIN_WINDOWBITS=8,o.Z_MAX_WINDOWBITS=15,o.Z_DEFAULT_WINDOWBITS=15,o.Z_MIN_CHUNK=64,o.Z_MAX_CHUNK=1/0,o.Z_DEFAULT_CHUNK=16384,o.Z_MIN_MEMLEVEL=1,o.Z_MAX_MEMLEVEL=9,o.Z_DEFAULT_MEMLEVEL=8,o.Z_MIN_LEVEL=-1,o.Z_MAX_LEVEL=9,o.Z_DEFAULT_LEVEL=o.Z_DEFAULT_COMPRESSION;for(var r=Object.keys(o),d=0;d=w?BA=new RangeError(u):J=a.concat(wA,IA),wA=[],_.close(),iA(BA,J)}_.on("error",function YA(J){_.removeListener("end",HA),_.removeListener("readable",FA),iA(J)}),_.on("end",HA),_.end(fA),FA()}function R(_,fA){if("string"==typeof fA&&(fA=a.from(fA)),!a.isBuffer(fA))throw new TypeError("Not a string or buffer");return _._processChunk(fA,_._finishFlushFlag)}function p(_){if(!(this instanceof p))return new p(_);F.call(this,_,o.DEFLATE)}function m(_){if(!(this instanceof m))return new m(_);F.call(this,_,o.INFLATE)}function y(_){if(!(this instanceof y))return new y(_);F.call(this,_,o.GZIP)}function x(_){if(!(this instanceof x))return new x(_);F.call(this,_,o.GUNZIP)}function Y(_){if(!(this instanceof Y))return new Y(_);F.call(this,_,o.DEFLATERAW)}function v(_){if(!(this instanceof v))return new v(_);F.call(this,_,o.INFLATERAW)}function S(_){if(!(this instanceof S))return new S(_);F.call(this,_,o.UNZIP)}function z(_){return _===o.Z_NO_FLUSH||_===o.Z_PARTIAL_FLUSH||_===o.Z_SYNC_FLUSH||_===o.Z_FULL_FLUSH||_===o.Z_FINISH||_===o.Z_BLOCK}function F(_,fA){var iA=this;if(this._opts=_=_||{},this._chunkSize=_.chunkSize||A.Z_DEFAULT_CHUNK,s.call(this,_),_.flush&&!z(_.flush))throw new Error("Invalid flush flag: "+_.flush);if(_.finishFlush&&!z(_.finishFlush))throw new Error("Invalid flush flag: "+_.finishFlush);if(this._flushFlag=_.flush||o.Z_NO_FLUSH,this._finishFlushFlag=typeof _.finishFlush<"u"?_.finishFlush:o.Z_FINISH,_.chunkSize&&(_.chunkSizeA.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+_.chunkSize);if(_.windowBits&&(_.windowBitsA.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+_.windowBits);if(_.level&&(_.levelA.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+_.level);if(_.memLevel&&(_.memLevelA.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+_.memLevel);if(_.strategy&&_.strategy!=A.Z_FILTERED&&_.strategy!=A.Z_HUFFMAN_ONLY&&_.strategy!=A.Z_RLE&&_.strategy!=A.Z_FIXED&&_.strategy!=A.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+_.strategy);if(_.dictionary&&!a.isBuffer(_.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new o.Zlib(fA);var wA=this;this._hadError=!1,this._handle.onerror=function(YA,HA){$(wA),wA._hadError=!0;var J=new Error(YA);J.errno=HA,J.code=A.codes[HA],wA.emit("error",J)};var IA=A.Z_DEFAULT_COMPRESSION;"number"==typeof _.level&&(IA=_.level);var FA=A.Z_DEFAULT_STRATEGY;"number"==typeof _.strategy&&(FA=_.strategy),this._handle.init(_.windowBits||A.Z_DEFAULT_WINDOWBITS,IA,_.memLevel||A.Z_DEFAULT_MEMLEVEL,FA,_.dictionary),this._buffer=a.allocUnsafe(this._chunkSize),this._offset=0,this._level=IA,this._strategy=FA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!iA._handle},configurable:!0,enumerable:!0})}function $(_,fA){fA&&B.nextTick(fA),_._handle&&(_._handle.close(),_._handle=null)}function gA(_){_.emit("close")}Object.defineProperty(A,"codes",{enumerable:!0,value:Object.freeze(C),writable:!1}),A.Deflate=p,A.Inflate=m,A.Gzip=y,A.Gunzip=x,A.DeflateRaw=Y,A.InflateRaw=v,A.Unzip=S,A.createDeflate=function(_){return new p(_)},A.createInflate=function(_){return new m(_)},A.createDeflateRaw=function(_){return new Y(_)},A.createInflateRaw=function(_){return new v(_)},A.createGzip=function(_){return new y(_)},A.createGunzip=function(_){return new x(_)},A.createUnzip=function(_){return new S(_)},A.deflate=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new p(fA),_,iA)},A.deflateSync=function(_,fA){return R(new p(fA),_)},A.gzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new y(fA),_,iA)},A.gzipSync=function(_,fA){return R(new y(fA),_)},A.deflateRaw=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new Y(fA),_,iA)},A.deflateRawSync=function(_,fA){return R(new Y(fA),_)},A.unzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new S(fA),_,iA)},A.unzipSync=function(_,fA){return R(new S(fA),_)},A.inflate=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new m(fA),_,iA)},A.inflateSync=function(_,fA){return R(new m(fA),_)},A.gunzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new x(fA),_,iA)},A.gunzipSync=function(_,fA){return R(new x(fA),_)},A.inflateRaw=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new v(fA),_,iA)},A.inflateRawSync=function(_,fA){return R(new v(fA),_)},g.inherits(F,s),F.prototype.params=function(_,fA,iA){if(_A.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+_);if(fA!=A.Z_FILTERED&&fA!=A.Z_HUFFMAN_ONLY&&fA!=A.Z_RLE&&fA!=A.Z_FIXED&&fA!=A.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+fA);if(this._level!==_||this._strategy!==fA){var wA=this;this.flush(o.Z_SYNC_FLUSH,function(){f(wA._handle,"zlib binding closed"),wA._handle.params(_,fA),wA._hadError||(wA._level=_,wA._strategy=fA,iA&&iA())})}else B.nextTick(iA)},F.prototype.reset=function(){return f(this._handle,"zlib binding closed"),this._handle.reset()},F.prototype._flush=function(_){this._transform(a.alloc(0),"",_)},F.prototype.flush=function(_,fA){var iA=this,wA=this._writableState;("function"==typeof _||void 0===_&&!fA)&&(fA=_,_=o.Z_FULL_FLUSH),wA.ended?fA&&B.nextTick(fA):wA.ending?fA&&this.once("end",fA):wA.needDrain?fA&&this.once("drain",function(){return iA.flush(_,fA)}):(this._flushFlag=_,this.write(a.alloc(0),"",fA))},F.prototype.close=function(_){$(this,_),B.nextTick(gA,this)},F.prototype._transform=function(_,fA,iA){var wA,IA=this._writableState,YA=(IA.ending||IA.ended)&&(!_||IA.length===_.length);return null===_||a.isBuffer(_)?this._handle?(YA?wA=this._finishFlushFlag:(wA=this._flushFlag,_.length>=IA.length&&(this._flushFlag=this._opts.flush||o.Z_NO_FLUSH)),void this._processChunk(_,wA,iA)):iA(new Error("zlib binding closed")):iA(new Error("invalid input"))},F.prototype._processChunk=function(_,fA,iA){var wA=_&&_.length,IA=this._chunkSize-this._offset,FA=0,YA=this,HA="function"==typeof iA;if(!HA){var aA,J=[],BA=0;this.on("error",function(W){aA=W}),f(this._handle,"zlib binding closed");do{var eA=this._handle.writeSync(fA,_,FA,wA,this._buffer,this._offset,IA)}while(!this._hadError&&OA(eA[0],eA[1]));if(this._hadError)throw aA;if(BA>=w)throw $(this),new RangeError(u);var EA=a.concat(J,BA);return $(this),EA}f(this._handle,"zlib binding closed");var xA=this._handle.write(fA,_,FA,wA,this._buffer,this._offset,IA);function OA(W,L){if(this&&(this.buffer=null,this.callback=null),!YA._hadError){var rA=IA-L;if(f(rA>=0,"have should not go down"),rA>0){var AA=YA._buffer.slice(YA._offset,YA._offset+rA);YA._offset+=rA,HA?YA.push(AA):(J.push(AA),BA+=AA.length)}if((0===L||YA._offset>=YA._chunkSize)&&(IA=YA._chunkSize,YA._offset=0,YA._buffer=a.allocUnsafe(YA._chunkSize)),0===L){if(FA+=wA-W,wA=W,!HA)return!0;var QA=YA._handle.write(fA,_,FA,wA,YA._buffer,YA._offset,YA._chunkSize);return QA.callback=OA,void(QA.buffer=_)}if(!HA)return!1;iA()}}xA.buffer=_,xA.callback=OA},g.inherits(p,F),g.inherits(m,F),g.inherits(y,F),g.inherits(x,F),g.inherits(Y,F),g.inherits(v,F),g.inherits(S,F)},67913:function(b,A,n){"use strict";var B=n(28651),a=n(26601),s=a(B("String.prototype.indexOf"));b.exports=function(g,f){var w=B(g,!!f);return"function"==typeof w&&s(g,".prototype.")>-1?a(w):w}},26601:function(b,A,n){"use strict";var B=n(5049),a=n(28651),s=n(86255),o=n(96785),g=a("%Function.prototype.apply%"),f=a("%Function.prototype.call%"),w=a("%Reflect.apply%",!0)||B.call(f,g),u=n(56649),r=a("%Math.max%");b.exports=function(C){if("function"!=typeof C)throw new o("a function is required");var e=w(B,f,arguments);return s(e,1+r(0,C.length-(arguments.length-1)),!0)};var d=function(){return w(B,g,arguments)};u?u(b.exports,"apply",{value:d}):b.exports.apply=d},41613:function(b,A,n){var B=n(50621).Buffer,a=function(){"use strict";function s(r,d,E,C){"object"==typeof d&&(E=d.depth,C=d.prototype,d=d.circular);var h=[],Q=[],I=typeof B<"u";return typeof d>"u"&&(d=!0),typeof E>"u"&&(E=1/0),function R(p,m){if(null===p)return null;if(0==m)return p;var y,x;if("object"!=typeof p)return p;if(s.__isArray(p))y=[];else if(s.__isRegExp(p))y=new RegExp(p.source,u(p)),p.lastIndex&&(y.lastIndex=p.lastIndex);else if(s.__isDate(p))y=new Date(p.getTime());else{if(I&&B.isBuffer(p))return y=B.allocUnsafe?B.allocUnsafe(p.length):new B(p.length),p.copy(y),y;typeof C>"u"?(x=Object.getPrototypeOf(p),y=Object.create(x)):(y=Object.create(C),x=C)}if(d){var Y=h.indexOf(p);if(-1!=Y)return Q[Y];h.push(p),Q.push(y)}for(var v in p){var S;x&&(S=Object.getOwnPropertyDescriptor(x,v)),(!S||null!=S.set)&&(y[v]=R(p[v],m-1))}return y}(r,E)}function o(r){return Object.prototype.toString.call(r)}function u(r){var d="";return r.global&&(d+="g"),r.ignoreCase&&(d+="i"),r.multiline&&(d+="m"),d}return s.clonePrototype=function(d){if(null===d)return null;var E=function(){};return E.prototype=d,new E},s.__objToStr=o,s.__isDate=function g(r){return"object"==typeof r&&"[object Date]"===o(r)},s.__isArray=function f(r){return"object"==typeof r&&"[object Array]"===o(r)},s.__isRegExp=function w(r){return"object"==typeof r&&"[object RegExp]"===o(r)},s.__getRegExpFlags=u,s}();b.exports&&(b.exports=a)},83043:function(b,A,n){n(59883);var B=n(11206);b.exports=B.Object.values},42075:function(b,A,n){n(94910),n(81755),n(14032),n(68067),n(77074),n(44455),n(58605),n(58281);var B=n(11206);b.exports=B.Promise},98168:function(b,A,n){var B=n(90780);n(84151),n(98443),n(49261),n(67858),b.exports=B},32631:function(b,A,n){var B=n(32010),a=n(94578),s=n(68664),o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not a function")}},69075:function(b,A,n){var B=n(32010),a=n(20884),s=n(68664),o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not a constructor")}},58659:function(b,A,n){var B=n(32010),a=n(94578),s=B.String,o=B.TypeError;b.exports=function(g){if("object"==typeof g||a(g))return g;throw o("Can't set "+s(g)+" as a prototype")}},71156:function(b,A,n){var B=n(38688),a=n(10819),s=n(95892),o=B("unscopables"),g=Array.prototype;null==g[o]&&s.f(g,o,{configurable:!0,value:a(null)}),b.exports=function(f){g[o][f]=!0}},36352:function(b,A,n){"use strict";var B=n(69510).charAt;b.exports=function(a,s,o){return s+(o?B(a,s).length:1)}},2868:function(b,A,n){var B=n(32010),a=n(70176),s=B.TypeError;b.exports=function(o,g){if(a(g,o))return o;throw s("Incorrect invocation")}},34984:function(b,A,n){var B=n(32010),a=n(24517),s=B.String,o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not an object")}},92642:function(b,A,n){"use strict";var B=n(43162),a=n(74841),s=n(45495),o=Math.min;b.exports=[].copyWithin||function(f,w){var u=B(this),r=s(u),d=a(f,r),E=a(w,r),C=arguments.length>2?arguments[2]:void 0,e=o((void 0===C?r:a(C,r))-E,r-d),h=1;for(E0;)E in u?u[d]=u[E]:delete u[d],d+=h,E+=h;return u}},72864:function(b,A,n){"use strict";var B=n(43162),a=n(74841),s=n(45495);b.exports=function(g){for(var f=B(this),w=s(f),u=arguments.length,r=a(u>1?arguments[1]:void 0,w),d=u>2?arguments[2]:void 0,E=void 0===d?w:a(d,w);E>r;)f[r++]=g;return f}},82938:function(b,A,n){"use strict";var B=n(91102).forEach,s=n(81007)("forEach");b.exports=s?[].forEach:function(g){return B(this,g,arguments.length>1?arguments[1]:void 0)}},34269:function(b){b.exports=function(A,n){for(var B=0,a=n.length,s=new A(a);a>B;)s[B]=n[B++];return s}},95717:function(b,A,n){"use strict";var B=n(32010),a=n(25567),s=n(2834),o=n(43162),g=n(97738),f=n(89564),w=n(20884),u=n(45495),r=n(38639),d=n(15892),E=n(13872),C=B.Array;b.exports=function(h){var Q=o(h),I=w(this),R=arguments.length,p=R>1?arguments[1]:void 0,m=void 0!==p;m&&(p=a(p,R>2?arguments[2]:void 0));var Y,v,S,z,F,$,y=E(Q),x=0;if(!y||this==C&&f(y))for(Y=u(Q),v=I?new this(Y):C(Y);Y>x;x++)$=m?p(Q[x],x):Q[x],r(v,x,$);else for(F=(z=d(Q,y)).next,v=I?new this:[];!(S=s(F,z)).done;x++)$=m?g(z,p,[S.value,x],!0):S.value,r(v,x,$);return v.length=x,v}},12636:function(b,A,n){var B=n(98086),a=n(74841),s=n(45495),o=function(g){return function(f,w,u){var C,r=B(f),d=s(r),E=a(u,d);if(g&&w!=w){for(;d>E;)if((C=r[E++])!=C)return!0}else for(;d>E;E++)if((g||E in r)&&r[E]===w)return g||E||0;return!g&&-1}};b.exports={includes:o(!0),indexOf:o(!1)}},91102:function(b,A,n){var B=n(25567),a=n(38347),s=n(7514),o=n(43162),g=n(45495),f=n(45744),w=a([].push),u=function(r){var d=1==r,E=2==r,C=3==r,e=4==r,h=6==r,Q=7==r,I=5==r||h;return function(R,p,m,y){for(var gA,_,x=o(R),Y=s(x),v=B(p,m),S=g(Y),z=0,F=y||f,$=d?F(R,S):E||Q?F(R,0):void 0;S>z;z++)if((I||z in Y)&&(_=v(gA=Y[z],z,x),r))if(d)$[z]=_;else if(_)switch(r){case 3:return!0;case 5:return gA;case 6:return z;case 2:w($,gA)}else switch(r){case 4:return!1;case 7:w($,gA)}return h?-1:C||e?e:$}};b.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)}},84320:function(b,A,n){"use strict";var B=n(58448),a=n(98086),s=n(26882),o=n(45495),g=n(81007),f=Math.min,w=[].lastIndexOf,u=!!w&&1/[1].lastIndexOf(1,-0)<0,r=g("lastIndexOf");b.exports=u||!r?function(C){if(u)return B(w,this,arguments)||0;var e=a(this),h=o(e),Q=h-1;for(arguments.length>1&&(Q=f(Q,s(arguments[1]))),Q<0&&(Q=h+Q);Q>=0;Q--)if(Q in e&&e[Q]===C)return Q||0;return-1}:w},56280:function(b,A,n){var B=n(47044),a=n(38688),s=n(70091),o=a("species");b.exports=function(g){return s>=51||!B(function(){var f=[];return(f.constructor={})[o]=function(){return{foo:1}},1!==f[g](Boolean).foo})}},81007:function(b,A,n){"use strict";var B=n(47044);b.exports=function(a,s){var o=[][a];return!!o&&B(function(){o.call(null,s||function(){throw 1},1)})}},32843:function(b,A,n){var B=n(32010),a=n(32631),s=n(43162),o=n(7514),g=n(45495),f=B.TypeError,w=function(u){return function(r,d,E,C){a(d);var e=s(r),h=o(e),Q=g(e),I=u?Q-1:0,R=u?-1:1;if(E<2)for(;;){if(I in h){C=h[I],I+=R;break}if(I+=R,u?I<0:Q<=I)throw f("Reduce of empty array with no initial value")}for(;u?I>=0:Q>I;I+=R)I in h&&(C=d(C,h[I],I,e));return C}};b.exports={left:w(!1),right:w(!0)}},73163:function(b,A,n){var B=n(38347);b.exports=B([].slice)},43977:function(b,A,n){var B=n(73163),a=Math.floor,s=function(f,w){var u=f.length,r=a(u/2);return u<8?o(f,w):g(f,s(B(f,0,r),w),s(B(f,r),w),w)},o=function(f,w){for(var d,E,u=f.length,r=1;r0;)f[E]=f[--E];E!==r++&&(f[E]=d)}return f},g=function(f,w,u,r){for(var d=w.length,E=u.length,C=0,e=0;C1?arguments[1]:void 0);$=$?$.next:z.first;)for(F($.value,$.key,this);$&&$.removed;)$=$.previous},has:function(S){return!!Y(this,S)}}),s(m,I?{get:function(S){var z=Y(this,S);return z&&z.value},set:function(S,z){return x(this,0===S?0:S,z)}}:{add:function(S){return x(this,S=0===S?0:S,S)}}),r&&B(m,"size",{get:function(){return y(this).size}}),p},setStrong:function(h,Q,I){var R=Q+" Iterator",p=e(Q),m=e(R);w(h,Q,function(y,x){C(this,{type:R,target:y,state:p(y),kind:x,last:void 0})},function(){for(var y=m(this),x=y.kind,Y=y.last;Y&&Y.removed;)Y=Y.previous;return y.target&&(y.last=Y=Y?Y.next:y.state.first)?"keys"==x?{value:Y.key,done:!1}:"values"==x?{value:Y.value,done:!1}:{value:[Y.key,Y.value],done:!1}:(y.target=void 0,{value:void 0,done:!0})},I?"entries":"values",!I,!0),u(Q)}}},36673:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(38347),o=n(39599),g=n(13711),f=n(62148),w=n(80383),u=n(2868),r=n(94578),d=n(24517),E=n(47044),C=n(46769),e=n(15216),h=n(51868);b.exports=function(Q,I,R){var p=-1!==Q.indexOf("Map"),m=-1!==Q.indexOf("Weak"),y=p?"set":"add",x=a[Q],Y=x&&x.prototype,v=x,S={},z=function(wA){var IA=s(Y[wA]);g(Y,wA,"add"==wA?function(YA){return IA(this,0===YA?0:YA),this}:"delete"==wA?function(FA){return!(m&&!d(FA))&&IA(this,0===FA?0:FA)}:"get"==wA?function(YA){return m&&!d(YA)?void 0:IA(this,0===YA?0:YA)}:"has"==wA?function(YA){return!(m&&!d(YA))&&IA(this,0===YA?0:YA)}:function(YA,HA){return IA(this,0===YA?0:YA,HA),this})};if(o(Q,!r(x)||!(m||Y.forEach&&!E(function(){(new x).entries().next()}))))v=R.getConstructor(I,Q,p,y),f.enable();else if(o(Q,!0)){var $=new v,gA=$[y](m?{}:-0,1)!=$,_=E(function(){$.has(1)}),fA=C(function(wA){new x(wA)}),iA=!m&&E(function(){for(var wA=new x,IA=5;IA--;)wA[y](IA,IA);return!wA.has(-0)});fA||((v=I(function(wA,IA){u(wA,Y);var FA=h(new x,wA,v);return null!=IA&&w(IA,FA[y],{that:FA,AS_ENTRIES:p}),FA})).prototype=Y,Y.constructor=v),(_||iA)&&(z("delete"),z("has"),p&&z("get")),(iA||gA)&&z(y),m&&Y.clear&&delete Y.clear}return S[Q]=v,B({global:!0,forced:v!=x},S),e(v,Q),m||R.setStrong(v,Q,p),v}},2675:function(b,A,n){var B=n(20340),a=n(21594),s=n(72062),o=n(95892);b.exports=function(g,f){for(var w=a(f),u=o.f,r=s.f,d=0;d"+d+""}},13945:function(b,A,n){"use strict";var B=n(5844).IteratorPrototype,a=n(10819),s=n(97841),o=n(15216),g=n(15366),f=function(){return this};b.exports=function(w,u,r){var d=u+" Iterator";return w.prototype=a(B,{next:s(1,r)}),o(w,d,!1,!0),g[d]=f,w}},48914:function(b,A,n){var B=n(15567),a=n(95892),s=n(97841);b.exports=B?function(o,g,f){return a.f(o,g,s(1,f))}:function(o,g,f){return o[g]=f,o}},97841:function(b){b.exports=function(A,n){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:n}}},38639:function(b,A,n){"use strict";var B=n(63918),a=n(95892),s=n(97841);b.exports=function(o,g,f){var w=B(g);w in o?a.f(o,w,s(0,f)):o[w]=f}},53087:function(b,A,n){"use strict";var B=n(32010),a=n(34984),s=n(39629),o=B.TypeError;b.exports=function(g){if(a(this),"string"===g||"default"===g)g="string";else if("number"!==g)throw o("Incorrect hint");return s(this,g)}},97001:function(b,A,n){"use strict";var B=n(56475),a=n(2834),s=n(63432),o=n(7081),g=n(94578),f=n(13945),w=n(69548),u=n(3840),r=n(15216),d=n(48914),E=n(13711),C=n(38688),e=n(15366),h=n(5844),Q=o.PROPER,I=o.CONFIGURABLE,R=h.IteratorPrototype,p=h.BUGGY_SAFARI_ITERATORS,m=C("iterator"),y="keys",x="values",Y="entries",v=function(){return this};b.exports=function(S,z,F,$,gA,_,fA){f(F,z,$);var BA,aA,eA,iA=function(EA){if(EA===gA&&HA)return HA;if(!p&&EA in FA)return FA[EA];switch(EA){case y:case x:case Y:return function(){return new F(this,EA)}}return function(){return new F(this)}},wA=z+" Iterator",IA=!1,FA=S.prototype,YA=FA[m]||FA["@@iterator"]||gA&&FA[gA],HA=!p&&YA||iA(gA),J="Array"==z&&FA.entries||YA;if(J&&(BA=w(J.call(new S)))!==Object.prototype&&BA.next&&(!s&&w(BA)!==R&&(u?u(BA,R):g(BA[m])||E(BA,m,v)),r(BA,wA,!0,!0),s&&(e[wA]=v)),Q&&gA==x&&YA&&YA.name!==x&&(!s&&I?d(FA,"name",x):(IA=!0,HA=function(){return a(YA,this)})),gA)if(aA={values:iA(x),keys:_?HA:iA(y),entries:iA(Y)},fA)for(eA in aA)(p||IA||!(eA in FA))&&E(FA,eA,aA[eA]);else B({target:z,proto:!0,forced:p||IA},aA);return(!s||fA)&&FA[m]!==HA&&E(FA,m,HA,{name:gA}),e[z]=HA,aA}},46042:function(b,A,n){var B=n(11206),a=n(20340),s=n(75960),o=n(95892).f;b.exports=function(g){var f=B.Symbol||(B.Symbol={});a(f,g)||o(f,g,{value:s.f(g)})}},15567:function(b,A,n){var B=n(47044);b.exports=!B(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},12072:function(b,A,n){var B=n(32010),a=n(24517),s=B.document,o=a(s)&&a(s.createElement);b.exports=function(g){return o?s.createElement(g):{}}},23327:function(b){b.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}},67797:function(b,A,n){var a=n(12072)("span").classList,s=a&&a.constructor&&a.constructor.prototype;b.exports=s===Object.prototype?void 0:s},3809:function(b,A,n){var a=n(40715).match(/firefox\/(\d+)/i);b.exports=!!a&&+a[1]},3157:function(b){b.exports="object"==typeof window},21983:function(b,A,n){var B=n(40715);b.exports=/MSIE|Trident/.test(B)},70573:function(b,A,n){var B=n(40715),a=n(32010);b.exports=/ipad|iphone|ipod/i.test(B)&&void 0!==a.Pebble},17716:function(b,A,n){var B=n(40715);b.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(B)},95053:function(b,A,n){var B=n(93975),a=n(32010);b.exports="process"==B(a.process)},664:function(b,A,n){var B=n(40715);b.exports=/web0s(?!.*chrome)/i.test(B)},40715:function(b,A,n){var B=n(38486);b.exports=B("navigator","userAgent")||""},70091:function(b,A,n){var w,u,B=n(32010),a=n(40715),s=B.process,o=B.Deno,g=s&&s.versions||o&&o.version,f=g&&g.v8;f&&(u=(w=f.split("."))[0]>0&&w[0]<4?1:+(w[0]+w[1])),!u&&a&&(!(w=a.match(/Edge\/(\d+)/))||w[1]>=74)&&(w=a.match(/Chrome\/(\d+)/))&&(u=+w[1]),b.exports=u},41731:function(b,A,n){var a=n(40715).match(/AppleWebKit\/(\d+)\./);b.exports=!!a&&+a[1]},2416:function(b){b.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},45144:function(b,A,n){var B=n(47044),a=n(97841);b.exports=!B(function(){var s=Error("a");return!("stack"in s)||(Object.defineProperty(s,"stack",a(1,7)),7!==s.stack)})},56475:function(b,A,n){var B=n(32010),a=n(72062).f,s=n(48914),o=n(13711),g=n(7421),f=n(2675),w=n(39599);b.exports=function(u,r){var h,Q,I,R,p,d=u.target,E=u.global,C=u.stat;if(h=E?B:C?B[d]||g(d,{}):(B[d]||{}).prototype)for(Q in r){if(R=r[Q],I=u.noTargetGet?(p=a(h,Q))&&p.value:h[Q],!w(E?Q:d+(C?".":"#")+Q,u.forced)&&void 0!==I){if(typeof R==typeof I)continue;f(R,I)}(u.sham||I&&I.sham)&&s(R,"sham",!0),o(h,Q,R,u)}}},47044:function(b){b.exports=function(A){try{return!!A()}catch{return!0}}},11813:function(b,A,n){"use strict";n(61726);var B=n(38347),a=n(13711),s=n(49820),o=n(47044),g=n(38688),f=n(48914),w=g("species"),u=RegExp.prototype;b.exports=function(r,d,E,C){var e=g(r),h=!o(function(){var p={};return p[e]=function(){return 7},7!=""[r](p)}),Q=h&&!o(function(){var p=!1,m=/a/;return"split"===r&&((m={}).constructor={},m.constructor[w]=function(){return m},m.flags="",m[e]=/./[e]),m.exec=function(){return p=!0,null},m[e](""),!p});if(!h||!Q||E){var I=B(/./[e]),R=d(e,""[r],function(p,m,y,x,Y){var v=B(p),S=m.exec;return S===s||S===u.exec?h&&!Y?{done:!0,value:I(m,y,x)}:{done:!0,value:v(y,m,x)}:{done:!1}});a(String.prototype,r,R[0]),a(u,e,R[1])}C&&f(u[e],"sham",!0)}},55481:function(b,A,n){var B=n(47044);b.exports=!B(function(){return Object.isExtensible(Object.preventExtensions({}))})},58448:function(b){var A=Function.prototype,n=A.apply,a=A.call;b.exports="object"==typeof Reflect&&Reflect.apply||(A.bind?a.bind(n):function(){return a.apply(n,arguments)})},25567:function(b,A,n){var B=n(38347),a=n(32631),s=B(B.bind);b.exports=function(o,g){return a(o),void 0===g?o:s?s(o,g):function(){return o.apply(g,arguments)}}},5481:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(32631),o=n(24517),g=n(20340),f=n(73163),w=B.Function,u=a([].concat),r=a([].join),d={};b.exports=w.bind||function(e){var h=s(this),Q=h.prototype,I=f(arguments,1),R=function(){var m=u(I,f(arguments));return this instanceof R?function(C,e,h){if(!g(d,e)){for(var Q=[],I=0;I]*>)/g,u=/\$([$&'`]|\d{1,2})/g;b.exports=function(r,d,E,C,e,h){var Q=E+r.length,I=C.length,R=u;return void 0!==e&&(e=a(e),R=w),g(h,R,function(p,m){var y;switch(o(m,0)){case"$":return"$";case"&":return r;case"`":return f(d,0,E);case"'":return f(d,Q);case"<":y=e[f(m,1,-1)];break;default:var x=+m;if(0===x)return p;if(x>I){var Y=s(x/10);return 0===Y?p:Y<=I?void 0===C[Y-1]?o(m,1):C[Y-1]+o(m,1):p}y=C[x-1]}return void 0===y?"":y})}},32010:function(b,A,n){var B=function(a){return a&&a.Math==Math&&a};b.exports=B("object"==typeof globalThis&&globalThis)||B("object"==typeof window&&window)||B("object"==typeof self&&self)||B("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},20340:function(b,A,n){var B=n(38347),a=n(43162),s=B({}.hasOwnProperty);b.exports=Object.hasOwn||function(g,f){return s(a(g),f)}},90682:function(b){b.exports={}},61144:function(b,A,n){var B=n(32010);b.exports=function(a,s){var o=B.console;o&&o.error&&(1==arguments.length?o.error(a):o.error(a,s))}},520:function(b,A,n){var B=n(38486);b.exports=B("document","documentElement")},18904:function(b,A,n){var B=n(15567),a=n(47044),s=n(12072);b.exports=!B&&!a(function(){return 7!=Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a})},64397:function(b,A,n){var a=n(32010).Array,s=Math.abs,o=Math.pow,g=Math.floor,f=Math.log,w=Math.LN2;b.exports={pack:function(d,E,C){var y,x,Y,e=a(C),h=8*C-E-1,Q=(1<>1,R=23===E?o(2,-24)-o(2,-77):0,p=d<0||0===d&&1/d<0?1:0,m=0;for((d=s(d))!=d||d===1/0?(x=d!=d?1:0,y=Q):(y=g(f(d)/w),d*(Y=o(2,-y))<1&&(y--,Y*=2),(d+=y+I>=1?R/Y:R*o(2,1-I))*Y>=2&&(y++,Y/=2),y+I>=Q?(x=0,y=Q):y+I>=1?(x=(d*Y-1)*o(2,E),y+=I):(x=d*o(2,I-1)*o(2,E),y=0));E>=8;e[m++]=255&x,x/=256,E-=8);for(y=y<0;e[m++]=255&y,y/=256,h-=8);return e[--m]|=128*p,e},unpack:function(d,E){var y,C=d.length,e=8*C-E-1,h=(1<>1,I=e-7,R=C-1,p=d[R--],m=127&p;for(p>>=7;I>0;m=256*m+d[R],R--,I-=8);for(y=m&(1<<-I)-1,m>>=-I,I+=E;I>0;y=256*y+d[R],R--,I-=8);if(0===m)m=1-Q;else{if(m===h)return y?NaN:p?-1/0:1/0;y+=o(2,E),m-=Q}return(p?-1:1)*y*o(2,m-E)}}},7514:function(b,A,n){var B=n(32010),a=n(38347),s=n(47044),o=n(93975),g=B.Object,f=a("".split);b.exports=s(function(){return!g("z").propertyIsEnumerable(0)})?function(w){return"String"==o(w)?f(w,""):g(w)}:g},51868:function(b,A,n){var B=n(94578),a=n(24517),s=n(3840);b.exports=function(o,g,f){var w,u;return s&&B(w=g.constructor)&&w!==f&&a(u=w.prototype)&&u!==f.prototype&&s(o,u),o}},10447:function(b,A,n){var B=n(38347),a=n(94578),s=n(55480),o=B(Function.toString);a(s.inspectSource)||(s.inspectSource=function(g){return o(g)}),b.exports=s.inspectSource},87811:function(b,A,n){var B=n(24517),a=n(48914);b.exports=function(s,o){B(o)&&"cause"in o&&a(s,"cause",o.cause)}},62148:function(b,A,n){var B=n(56475),a=n(38347),s=n(90682),o=n(24517),g=n(20340),f=n(95892).f,w=n(6611),u=n(8807),r=n(46859),d=n(55481),E=!1,C=r("meta"),e=0,h=Object.isExtensible||function(){return!0},Q=function(x){f(x,C,{value:{objectID:"O"+e++,weakData:{}}})},y=b.exports={enable:function(){y.enable=function(){},E=!0;var x=w.f,Y=a([].splice),v={};v[C]=1,x(v).length&&(w.f=function(S){for(var z=x(S),F=0,$=z.length;F<$;F++)if(z[F]===C){Y(z,F,1);break}return z},B({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:u.f}))},fastKey:function(x,Y){if(!o(x))return"symbol"==typeof x?x:("string"==typeof x?"S":"P")+x;if(!g(x,C)){if(!h(x))return"F";if(!Y)return"E";Q(x)}return x[C].objectID},getWeakData:function(x,Y){if(!g(x,C)){if(!h(x))return!0;if(!Y)return!1;Q(x)}return x[C].weakData},onFreeze:function(x){return d&&E&&h(x)&&!g(x,C)&&Q(x),x}};s[C]=!0},70172:function(b,A,n){var e,h,Q,B=n(26168),a=n(32010),s=n(38347),o=n(24517),g=n(48914),f=n(20340),w=n(55480),u=n(82194),r=n(90682),d="Object already initialized",E=a.TypeError;if(B||w.state){var p=w.state||(w.state=new(0,a.WeakMap)),m=s(p.get),y=s(p.has),x=s(p.set);e=function(v,S){if(y(p,v))throw new E(d);return S.facade=v,x(p,v,S),S},h=function(v){return m(p,v)||{}},Q=function(v){return y(p,v)}}else{var Y=u("state");r[Y]=!0,e=function(v,S){if(f(v,Y))throw new E(d);return S.facade=v,g(v,Y,S),S},h=function(v){return f(v,Y)?v[Y]:{}},Q=function(v){return f(v,Y)}}b.exports={set:e,get:h,has:Q,enforce:function(v){return Q(v)?h(v):e(v,{})},getterFor:function(v){return function(S){var z;if(!o(S)||(z=h(S)).type!==v)throw E("Incompatible receiver, "+v+" required");return z}}}},89564:function(b,A,n){var B=n(38688),a=n(15366),s=B("iterator"),o=Array.prototype;b.exports=function(g){return void 0!==g&&(a.Array===g||o[s]===g)}},59113:function(b,A,n){var B=n(93975);b.exports=Array.isArray||function(s){return"Array"==B(s)}},94578:function(b){b.exports=function(A){return"function"==typeof A}},20884:function(b,A,n){var B=n(38347),a=n(47044),s=n(94578),o=n(52564),g=n(38486),f=n(10447),w=function(){},u=[],r=g("Reflect","construct"),d=/^\s*(?:class|function)\b/,E=B(d.exec),C=!d.exec(w),e=function(Q){if(!s(Q))return!1;try{return r(w,u,Q),!0}catch{return!1}};b.exports=!r||a(function(){var Q;return e(e.call)||!e(Object)||!e(function(){Q=!0})||Q})?function(Q){if(!s(Q))return!1;switch(o(Q)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return C||!!E(d,f(Q))}:e},39599:function(b,A,n){var B=n(47044),a=n(94578),s=/#|\.prototype\./,o=function(r,d){var E=f[g(r)];return E==u||E!=w&&(a(d)?B(d):!!d)},g=o.normalize=function(r){return String(r).replace(s,".").toLowerCase()},f=o.data={},w=o.NATIVE="N",u=o.POLYFILL="P";b.exports=o},17506:function(b,A,n){var B=n(24517),a=Math.floor;b.exports=Number.isInteger||function(o){return!B(o)&&isFinite(o)&&a(o)===o}},24517:function(b,A,n){var B=n(94578);b.exports=function(a){return"object"==typeof a?null!==a:B(a)}},63432:function(b){b.exports=!1},28831:function(b,A,n){var B=n(24517),a=n(93975),o=n(38688)("match");b.exports=function(g){var f;return B(g)&&(void 0!==(f=g[o])?!!f:"RegExp"==a(g))}},46290:function(b,A,n){var B=n(32010),a=n(38486),s=n(94578),o=n(70176),g=n(9567),f=B.Object;b.exports=g?function(w){return"symbol"==typeof w}:function(w){var u=a("Symbol");return s(u)&&o(u.prototype,f(w))}},80383:function(b,A,n){var B=n(32010),a=n(25567),s=n(2834),o=n(34984),g=n(68664),f=n(89564),w=n(45495),u=n(70176),r=n(15892),d=n(13872),E=n(50194),C=B.TypeError,e=function(Q,I){this.stopped=Q,this.result=I},h=e.prototype;b.exports=function(Q,I,R){var v,S,z,F,$,gA,_,m=!(!R||!R.AS_ENTRIES),y=!(!R||!R.IS_ITERATOR),x=!(!R||!R.INTERRUPTED),Y=a(I,R&&R.that),fA=function(wA){return v&&E(v,"normal",wA),new e(!0,wA)},iA=function(wA){return m?(o(wA),x?Y(wA[0],wA[1],fA):Y(wA[0],wA[1])):x?Y(wA,fA):Y(wA)};if(y)v=Q;else{if(!(S=d(Q)))throw C(g(Q)+" is not iterable");if(f(S)){for(z=0,F=w(Q);F>z;z++)if(($=iA(Q[z]))&&u(h,$))return $;return new e(!1)}v=r(Q,S)}for(gA=v.next;!(_=s(gA,v)).done;){try{$=iA(_.value)}catch(wA){E(v,"throw",wA)}if("object"==typeof $&&$&&u(h,$))return $}return new e(!1)}},50194:function(b,A,n){var B=n(2834),a=n(34984),s=n(51839);b.exports=function(o,g,f){var w,u;a(o);try{if(!(w=s(o,"return"))){if("throw"===g)throw f;return f}w=B(w,o)}catch(r){u=!0,w=r}if("throw"===g)throw f;if(u)throw w;return a(w),f}},5844:function(b,A,n){"use strict";var d,E,C,B=n(47044),a=n(94578),s=n(10819),o=n(69548),g=n(13711),f=n(38688),w=n(63432),u=f("iterator"),r=!1;[].keys&&("next"in(C=[].keys())?(E=o(o(C)))!==Object.prototype&&(d=E):r=!0),null==d||B(function(){var h={};return d[u].call(h)!==h})?d={}:w&&(d=s(d)),a(d[u])||g(d,u,function(){return this}),b.exports={IteratorPrototype:d,BUGGY_SAFARI_ITERATORS:r}},15366:function(b){b.exports={}},45495:function(b,A,n){var B=n(23417);b.exports=function(a){return B(a.length)}},59804:function(b,A,n){var Q,I,R,p,m,y,x,Y,B=n(32010),a=n(25567),s=n(72062).f,o=n(6616).set,g=n(17716),f=n(70573),w=n(664),u=n(95053),r=B.MutationObserver||B.WebKitMutationObserver,d=B.document,E=B.process,C=B.Promise,e=s(B,"queueMicrotask"),h=e&&e.value;h||(Q=function(){var v,S;for(u&&(v=E.domain)&&v.exit();I;){S=I.fn,I=I.next;try{S()}catch(z){throw I?p():R=void 0,z}}R=void 0,v&&v.enter()},g||u||w||!r||!d?!f&&C&&C.resolve?((x=C.resolve(void 0)).constructor=C,Y=a(x.then,x),p=function(){Y(Q)}):u?p=function(){E.nextTick(Q)}:(o=a(o,B),p=function(){o(Q)}):(m=!0,y=d.createTextNode(""),new r(Q).observe(y,{characterData:!0}),p=function(){y.data=m=!m})),b.exports=h||function(v){var S={fn:v,next:void 0};R&&(R.next=S),I||(I=S,p()),R=S}},5155:function(b,A,n){var B=n(32010);b.exports=B.Promise},46887:function(b,A,n){var B=n(70091),a=n(47044);b.exports=!!Object.getOwnPropertySymbols&&!a(function(){var s=Symbol();return!String(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&B&&B<41})},26168:function(b,A,n){var B=n(32010),a=n(94578),s=n(10447),o=B.WeakMap;b.exports=a(o)&&/native code/.test(s(o))},56614:function(b,A,n){"use strict";var B=n(32631),a=function(s){var o,g;this.promise=new s(function(f,w){if(void 0!==o||void 0!==g)throw TypeError("Bad Promise constructor");o=f,g=w}),this.resolve=B(o),this.reject=B(g)};b.exports.f=function(s){return new a(s)}},86392:function(b,A,n){var B=n(25096);b.exports=function(a,s){return void 0===a?arguments.length<2?"":s:B(a)}},93666:function(b,A,n){var B=n(32010),a=n(28831),s=B.TypeError;b.exports=function(o){if(a(o))throw s("The method doesn't accept regular expressions");return o}},59805:function(b,A,n){var a=n(32010).isFinite;b.exports=Number.isFinite||function(o){return"number"==typeof o&&a(o)}},87146:function(b,A,n){"use strict";var B=n(15567),a=n(38347),s=n(2834),o=n(47044),g=n(84675),f=n(61146),w=n(55574),u=n(43162),r=n(7514),d=Object.assign,E=Object.defineProperty,C=a([].concat);b.exports=!d||o(function(){if(B&&1!==d({b:1},d(E({},"a",{enumerable:!0,get:function(){E(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},h={},Q=Symbol(),I="abcdefghijklmnopqrst";return e[Q]=7,I.split("").forEach(function(R){h[R]=R}),7!=d({},e)[Q]||g(d({},h)).join("")!=I})?function(h,Q){for(var I=u(h),R=arguments.length,p=1,m=f.f,y=w.f;R>p;)for(var z,x=r(arguments[p++]),Y=m?C(g(x),m(x)):g(x),v=Y.length,S=0;v>S;)z=Y[S++],(!B||s(y,x,z))&&(I[z]=x[z]);return I}:d},10819:function(b,A,n){var R,B=n(34984),a=n(10196),s=n(2416),o=n(90682),g=n(520),f=n(12072),w=n(82194),d="prototype",E="script",C=w("IE_PROTO"),e=function(){},h=function(m){return"<"+E+">"+m+""},Q=function(m){m.write(h("")),m.close();var y=m.parentWindow.Object;return m=null,y},p=function(){try{R=new ActiveXObject("htmlfile")}catch{}p=typeof document<"u"?document.domain&&R?Q(R):function(){var x,m=f("iframe"),y="java"+E+":";return m.style.display="none",g.appendChild(m),m.src=String(y),(x=m.contentWindow.document).open(),x.write(h("document.F=Object")),x.close(),x.F}():Q(R);for(var m=s.length;m--;)delete p[d][s[m]];return p()};o[C]=!0,b.exports=Object.create||function(y,x){var Y;return null!==y?(e[d]=B(y),Y=new e,e[d]=null,Y[C]=y):Y=p(),void 0===x?Y:a(Y,x)}},10196:function(b,A,n){var B=n(15567),a=n(95892),s=n(34984),o=n(98086),g=n(84675);b.exports=B?Object.defineProperties:function(w,u){s(w);for(var e,r=o(u),d=g(u),E=d.length,C=0;E>C;)a.f(w,e=d[C++],r[e]);return w}},95892:function(b,A,n){var B=n(32010),a=n(15567),s=n(18904),o=n(34984),g=n(63918),f=B.TypeError,w=Object.defineProperty;A.f=a?w:function(r,d,E){if(o(r),d=g(d),o(E),s)try{return w(r,d,E)}catch{}if("get"in E||"set"in E)throw f("Accessors not supported");return"value"in E&&(r[d]=E.value),r}},72062:function(b,A,n){var B=n(15567),a=n(2834),s=n(55574),o=n(97841),g=n(98086),f=n(63918),w=n(20340),u=n(18904),r=Object.getOwnPropertyDescriptor;A.f=B?r:function(E,C){if(E=g(E),C=f(C),u)try{return r(E,C)}catch{}if(w(E,C))return o(!a(s.f,E,C),E[C])}},8807:function(b,A,n){var B=n(93975),a=n(98086),s=n(6611).f,o=n(73163),g="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];b.exports.f=function(u){return g&&"Window"==B(u)?function(w){try{return s(w)}catch{return o(g)}}(u):s(a(u))}},6611:function(b,A,n){var B=n(64429),s=n(2416).concat("length","prototype");A.f=Object.getOwnPropertyNames||function(g){return B(g,s)}},61146:function(b,A){A.f=Object.getOwnPropertySymbols},69548:function(b,A,n){var B=n(32010),a=n(20340),s=n(94578),o=n(43162),g=n(82194),f=n(68494),w=g("IE_PROTO"),u=B.Object,r=u.prototype;b.exports=f?u.getPrototypeOf:function(d){var E=o(d);if(a(E,w))return E[w];var C=E.constructor;return s(C)&&E instanceof C?C.prototype:E instanceof u?r:null}},70176:function(b,A,n){var B=n(38347);b.exports=B({}.isPrototypeOf)},64429:function(b,A,n){var B=n(38347),a=n(20340),s=n(98086),o=n(12636).indexOf,g=n(90682),f=B([].push);b.exports=function(w,u){var C,r=s(w),d=0,E=[];for(C in r)!a(g,C)&&a(r,C)&&f(E,C);for(;u.length>d;)a(r,C=u[d++])&&(~o(E,C)||f(E,C));return E}},84675:function(b,A,n){var B=n(64429),a=n(2416);b.exports=Object.keys||function(o){return B(o,a)}},55574:function(b,A){"use strict";var n={}.propertyIsEnumerable,B=Object.getOwnPropertyDescriptor,a=B&&!n.call({1:2},1);A.f=a?function(o){var g=B(this,o);return!!g&&g.enumerable}:n},3840:function(b,A,n){var B=n(38347),a=n(34984),s=n(58659);b.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var f,o=!1,g={};try{(f=B(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(g,[]),o=g instanceof Array}catch{}return function(u,r){return a(u),s(r),o?f(u,r):u.__proto__=r,u}}():void 0)},80754:function(b,A,n){var B=n(15567),a=n(38347),s=n(84675),o=n(98086),f=a(n(55574).f),w=a([].push),u=function(r){return function(d){for(var I,E=o(d),C=s(E),e=C.length,h=0,Q=[];e>h;)I=C[h++],(!B||f(E,I))&&w(Q,r?[I,E[I]]:E[I]);return Q}};b.exports={entries:u(!0),values:u(!1)}},52598:function(b,A,n){"use strict";var B=n(24663),a=n(52564);b.exports=B?{}.toString:function(){return"[object "+a(this)+"]"}},39629:function(b,A,n){var B=n(32010),a=n(2834),s=n(94578),o=n(24517),g=B.TypeError;b.exports=function(f,w){var u,r;if("string"===w&&s(u=f.toString)&&!o(r=a(u,f))||s(u=f.valueOf)&&!o(r=a(u,f))||"string"!==w&&s(u=f.toString)&&!o(r=a(u,f)))return r;throw g("Can't convert object to primitive value")}},21594:function(b,A,n){var B=n(38486),a=n(38347),s=n(6611),o=n(61146),g=n(34984),f=a([].concat);b.exports=B("Reflect","ownKeys")||function(u){var r=s.f(g(u)),d=o.f;return d?f(r,d(u)):r}},11206:function(b,A,n){var B=n(32010);b.exports=B},61900:function(b){b.exports=function(A){try{return{error:!1,value:A()}}catch(n){return{error:!0,value:n}}}},28617:function(b,A,n){var B=n(34984),a=n(24517),s=n(56614);b.exports=function(o,g){if(B(o),a(g)&&g.constructor===o)return g;var f=s.f(o);return(0,f.resolve)(g),f.promise}},15341:function(b,A,n){var B=n(13711);b.exports=function(a,s,o){for(var g in s)B(a,g,s[g],o);return a}},13711:function(b,A,n){var B=n(32010),a=n(94578),s=n(20340),o=n(48914),g=n(7421),f=n(10447),w=n(70172),u=n(7081).CONFIGURABLE,r=w.get,d=w.enforce,E=String(String).split("String");(b.exports=function(C,e,h,Q){var y,I=!!Q&&!!Q.unsafe,R=!!Q&&!!Q.enumerable,p=!!Q&&!!Q.noTargetGet,m=Q&&void 0!==Q.name?Q.name:e;a(h)&&("Symbol("===String(m).slice(0,7)&&(m="["+String(m).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!s(h,"name")||u&&h.name!==m)&&o(h,"name",m),(y=d(h)).source||(y.source=E.join("string"==typeof m?m:""))),C!==B?(I?!p&&C[e]&&(R=!0):delete C[e],R?C[e]=h:o(C,e,h)):R?C[e]=h:g(e,h)})(Function.prototype,"toString",function(){return a(this)&&r(this).source||f(this)})},66723:function(b,A,n){var B=n(32010),a=n(2834),s=n(34984),o=n(94578),g=n(93975),f=n(49820),w=B.TypeError;b.exports=function(u,r){var d=u.exec;if(o(d)){var E=a(d,u,r);return null!==E&&s(E),E}if("RegExp"===g(u))return a(f,u,r);throw w("RegExp#exec called on incompatible receiver")}},49820:function(b,A,n){"use strict";var Y,v,B=n(2834),a=n(38347),s=n(25096),o=n(21182),g=n(74846),f=n(464),w=n(10819),u=n(70172).get,r=n(84030),d=n(97739),E=f("native-string-replace",String.prototype.replace),C=RegExp.prototype.exec,e=C,h=a("".charAt),Q=a("".indexOf),I=a("".replace),R=a("".slice),p=(v=/b*/g,B(C,Y=/a/,"a"),B(C,v,"a"),0!==Y.lastIndex||0!==v.lastIndex),m=g.UNSUPPORTED_Y||g.BROKEN_CARET,y=void 0!==/()??/.exec("")[1];(p||y||m||r||d)&&(e=function(v){var gA,_,fA,iA,wA,IA,FA,S=this,z=u(S),F=s(v),$=z.raw;if($)return $.lastIndex=S.lastIndex,gA=B(e,$,F),S.lastIndex=$.lastIndex,gA;var YA=z.groups,HA=m&&S.sticky,J=B(o,S),BA=S.source,aA=0,eA=F;if(HA&&(J=I(J,"y",""),-1===Q(J,"g")&&(J+="g"),eA=R(F,S.lastIndex),S.lastIndex>0&&(!S.multiline||S.multiline&&"\n"!==h(F,S.lastIndex-1))&&(BA="(?: "+BA+")",eA=" "+eA,aA++),_=new RegExp("^(?:"+BA+")",J)),y&&(_=new RegExp("^"+BA+"$(?!\\s)",J)),p&&(fA=S.lastIndex),iA=B(C,HA?_:S,eA),HA?iA?(iA.input=R(iA.input,aA),iA[0]=R(iA[0],aA),iA.index=S.lastIndex,S.lastIndex+=iA[0].length):S.lastIndex=0:p&&iA&&(S.lastIndex=S.global?iA.index+iA[0].length:fA),y&&iA&&iA.length>1&&B(E,iA[0],_,function(){for(wA=1;wAb)","g");return"b"!==o.exec("b").groups.a||"bc"!=="b".replace(o,"$
c")})},83943:function(b,A,n){var a=n(32010).TypeError;b.exports=function(s){if(null==s)throw a("Can't call method on "+s);return s}},7421:function(b,A,n){var B=n(32010),a=Object.defineProperty;b.exports=function(s,o){try{a(B,s,{value:o,configurable:!0,writable:!0})}catch{B[s]=o}return o}},51334:function(b,A,n){"use strict";var B=n(38486),a=n(95892),s=n(38688),o=n(15567),g=s("species");b.exports=function(f){var w=B(f);o&&w&&!w[g]&&(0,a.f)(w,g,{configurable:!0,get:function(){return this}})}},15216:function(b,A,n){var B=n(95892).f,a=n(20340),o=n(38688)("toStringTag");b.exports=function(g,f,w){g&&!a(g=w?g:g.prototype,o)&&B(g,o,{configurable:!0,value:f})}},82194:function(b,A,n){var B=n(464),a=n(46859),s=B("keys");b.exports=function(o){return s[o]||(s[o]=a(o))}},55480:function(b,A,n){var B=n(32010),a=n(7421),s="__core-js_shared__",o=B[s]||a(s,{});b.exports=o},464:function(b,A,n){var B=n(63432),a=n(55480);(b.exports=function(s,o){return a[s]||(a[s]=void 0!==o?o:{})})("versions",[]).push({version:"3.19.0",mode:B?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},27754:function(b,A,n){var B=n(34984),a=n(69075),o=n(38688)("species");b.exports=function(g,f){var u,w=B(g).constructor;return void 0===w||null==(u=B(w)[o])?f:a(u)}},7452:function(b,A,n){var B=n(47044);b.exports=function(a){return B(function(){var s=""[a]('"');return s!==s.toLowerCase()||s.split('"').length>3})}},69510:function(b,A,n){var B=n(38347),a=n(26882),s=n(25096),o=n(83943),g=B("".charAt),f=B("".charCodeAt),w=B("".slice),u=function(r){return function(d,E){var Q,I,C=s(o(d)),e=a(E),h=C.length;return e<0||e>=h?r?"":void 0:(Q=f(C,e))<55296||Q>56319||e+1===h||(I=f(C,e+1))<56320||I>57343?r?g(C,e):Q:r?w(C,e,e+2):I-56320+(Q-55296<<10)+65536}};b.exports={codeAt:u(!1),charAt:u(!0)}},34858:function(b,A,n){"use strict";var B=n(32010),a=n(26882),s=n(25096),o=n(83943),g=B.RangeError;b.exports=function(w){var u=s(o(this)),r="",d=a(w);if(d<0||d==1/0)throw g("Wrong number of repetitions");for(;d>0;(d>>>=1)&&(u+=u))1&d&&(r+=u);return r}},68899:function(b,A,n){var B=n(7081).PROPER,a=n(47044),s=n(43187);b.exports=function(g){return a(function(){return!!s[g]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[g]()||B&&s[g].name!==g})}},29841:function(b,A,n){var B=n(38347),a=n(83943),s=n(25096),o=n(43187),g=B("".replace),f="["+o+"]",w=RegExp("^"+f+f+"*"),u=RegExp(f+f+"*$"),r=function(d){return function(E){var C=s(a(E));return 1&d&&(C=g(C,w,"")),2&d&&(C=g(C,u,"")),C}};b.exports={start:r(1),end:r(2),trim:r(3)}},6616:function(b,A,n){var Y,v,S,z,B=n(32010),a=n(58448),s=n(25567),o=n(94578),g=n(20340),f=n(47044),w=n(520),u=n(73163),r=n(12072),d=n(17716),E=n(95053),C=B.setImmediate,e=B.clearImmediate,h=B.process,Q=B.Dispatch,I=B.Function,R=B.MessageChannel,p=B.String,m=0,y={},x="onreadystatechange";try{Y=B.location}catch{}var F=function(fA){if(g(y,fA)){var iA=y[fA];delete y[fA],iA()}},$=function(fA){return function(){F(fA)}},gA=function(fA){F(fA.data)},_=function(fA){B.postMessage(p(fA),Y.protocol+"//"+Y.host)};(!C||!e)&&(C=function(iA){var wA=u(arguments,1);return y[++m]=function(){a(o(iA)?iA:I(iA),void 0,wA)},v(m),m},e=function(iA){delete y[iA]},E?v=function(fA){h.nextTick($(fA))}:Q&&Q.now?v=function(fA){Q.now($(fA))}:R&&!d?(z=(S=new R).port2,S.port1.onmessage=gA,v=s(z.postMessage,z)):B.addEventListener&&o(B.postMessage)&&!B.importScripts&&Y&&"file:"!==Y.protocol&&!f(_)?(v=_,B.addEventListener("message",gA,!1)):v=x in r("script")?function(fA){w.appendChild(r("script"))[x]=function(){w.removeChild(this),F(fA)}}:function(fA){setTimeout($(fA),0)}),b.exports={set:C,clear:e}},16679:function(b,A,n){var B=n(38347);b.exports=B(1..valueOf)},74841:function(b,A,n){var B=n(26882),a=Math.max,s=Math.min;b.exports=function(o,g){var f=B(o);return f<0?a(f+g,0):s(f,g)}},71265:function(b,A,n){var B=n(32010),a=n(26882),s=n(23417),o=B.RangeError;b.exports=function(g){if(void 0===g)return 0;var f=a(g),w=s(f);if(f!==w)throw o("Wrong length or index");return w}},98086:function(b,A,n){var B=n(7514),a=n(83943);b.exports=function(s){return B(a(s))}},26882:function(b){var A=Math.ceil,n=Math.floor;b.exports=function(B){var a=+B;return a!=a||0===a?0:(a>0?n:A)(a)}},23417:function(b,A,n){var B=n(26882),a=Math.min;b.exports=function(s){return s>0?a(B(s),9007199254740991):0}},43162:function(b,A,n){var B=n(32010),a=n(83943),s=B.Object;b.exports=function(o){return s(a(o))}},80670:function(b,A,n){var B=n(32010),a=n(64913),s=B.RangeError;b.exports=function(o,g){var f=a(o);if(f%g)throw s("Wrong offset");return f}},64913:function(b,A,n){var B=n(32010),a=n(26882),s=B.RangeError;b.exports=function(o){var g=a(o);if(g<0)throw s("The argument can't be less than 0");return g}},2644:function(b,A,n){var B=n(32010),a=n(2834),s=n(24517),o=n(46290),g=n(51839),f=n(39629),w=n(38688),u=B.TypeError,r=w("toPrimitive");b.exports=function(d,E){if(!s(d)||o(d))return d;var e,C=g(d,r);if(C){if(void 0===E&&(E="default"),e=a(C,d,E),!s(e)||o(e))return e;throw u("Can't convert object to primitive value")}return void 0===E&&(E="number"),f(d,E)}},63918:function(b,A,n){var B=n(2644),a=n(46290);b.exports=function(s){var o=B(s,"string");return a(o)?o:o+""}},24663:function(b,A,n){var s={};s[n(38688)("toStringTag")]="z",b.exports="[object z]"===String(s)},25096:function(b,A,n){var B=n(32010),a=n(52564),s=B.String;b.exports=function(o){if("Symbol"===a(o))throw TypeError("Cannot convert a Symbol value to a string");return s(o)}},68664:function(b,A,n){var a=n(32010).String;b.exports=function(s){try{return a(s)}catch{return"Object"}}},98828:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(2834),o=n(15567),g=n(28834),f=n(36597),w=n(89987),u=n(2868),r=n(97841),d=n(48914),E=n(17506),C=n(23417),e=n(71265),h=n(80670),Q=n(63918),I=n(20340),R=n(52564),p=n(24517),m=n(46290),y=n(10819),x=n(70176),Y=n(3840),v=n(6611).f,S=n(83590),z=n(91102).forEach,F=n(51334),$=n(95892),gA=n(72062),_=n(70172),fA=n(51868),iA=_.get,wA=_.set,IA=$.f,FA=gA.f,YA=Math.round,HA=a.RangeError,J=w.ArrayBuffer,BA=J.prototype,aA=w.DataView,eA=f.NATIVE_ARRAY_BUFFER_VIEWS,EA=f.TYPED_ARRAY_CONSTRUCTOR,xA=f.TYPED_ARRAY_TAG,OA=f.TypedArray,W=f.TypedArrayPrototype,L=f.aTypedArrayConstructor,rA=f.isTypedArray,AA="BYTES_PER_ELEMENT",QA="Wrong length",yA=function(pA,JA){L(pA);for(var ft=0,wt=JA.length,gt=new pA(wt);wt>ft;)gt[ft]=JA[ft++];return gt},cA=function(pA,JA){IA(pA,JA,{get:function(){return iA(this)[JA]}})},CA=function(pA){var JA;return x(BA,pA)||"ArrayBuffer"==(JA=R(pA))||"SharedArrayBuffer"==JA},DA=function(pA,JA){return rA(pA)&&!m(JA)&&JA in pA&&E(+JA)&&JA>=0},NA=function(JA,ft){return ft=Q(ft),DA(JA,ft)?r(2,JA[ft]):FA(JA,ft)},zA=function(JA,ft,wt){return ft=Q(ft),!(DA(JA,ft)&&p(wt)&&I(wt,"value"))||I(wt,"get")||I(wt,"set")||wt.configurable||I(wt,"writable")&&!wt.writable||I(wt,"enumerable")&&!wt.enumerable?IA(JA,ft,wt):(JA[ft]=wt.value,JA)};o?(eA||(gA.f=NA,$.f=zA,cA(W,"buffer"),cA(W,"byteOffset"),cA(W,"byteLength"),cA(W,"length")),B({target:"Object",stat:!0,forced:!eA},{getOwnPropertyDescriptor:NA,defineProperty:zA}),b.exports=function(pA,JA,ft){var wt=pA.match(/\d+$/)[0]/8,gt=pA+(ft?"Clamped":"")+"Array",pt="get"+pA,Yt="set"+pA,VA=a[gt],_A=VA,Qt=_A&&_A.prototype,ht={},vA=function(Bt,Z){IA(Bt,Z,{get:function(){return function(Bt,Z){var k=iA(Bt);return k.view[pt](Z*wt+k.byteOffset,!0)}(this,Z)},set:function(k){return function(Bt,Z,k){var U=iA(Bt);ft&&(k=(k=YA(k))<0?0:k>255?255:255&k),U.view[Yt](Z*wt+U.byteOffset,k,!0)}(this,Z,k)},enumerable:!0})};eA?g&&(_A=JA(function(Bt,Z,k,U){return u(Bt,Qt),fA(p(Z)?CA(Z)?void 0!==U?new VA(Z,h(k,wt),U):void 0!==k?new VA(Z,h(k,wt)):new VA(Z):rA(Z)?yA(_A,Z):s(S,_A,Z):new VA(e(Z)),Bt,_A)}),Y&&Y(_A,OA),z(v(VA),function(Bt){Bt in _A||d(_A,Bt,VA[Bt])}),_A.prototype=Qt):(_A=JA(function(Bt,Z,k,U){u(Bt,Qt);var GA,At,O,hA=0,q=0;if(p(Z)){if(!CA(Z))return rA(Z)?yA(_A,Z):s(S,_A,Z);GA=Z,q=h(k,wt);var qA=Z.byteLength;if(void 0===U){if(qA%wt||(At=qA-q)<0)throw HA(QA)}else if((At=C(U)*wt)+q>qA)throw HA(QA);O=At/wt}else O=e(Z),GA=new J(At=O*wt);for(wA(Bt,{buffer:GA,byteOffset:q,byteLength:At,length:O,view:new aA(GA)});hA1?arguments[1]:void 0,I=void 0!==Q,R=w(e);if(R&&!u(R))for(v=(Y=f(e,R)).next,e=[];!(x=a(v,Y)).done;)e.push(x.value);for(I&&h>2&&(Q=B(Q,arguments[2])),m=g(e),y=new(r(C))(m),p=0;m>p;p++)y[p]=I?Q(e[p],p):e[p];return y}},34815:function(b,A,n){var B=n(36597),a=n(27754),s=B.TYPED_ARRAY_CONSTRUCTOR,o=B.aTypedArrayConstructor;b.exports=function(g){return o(a(g,g[s]))}},46859:function(b,A,n){var B=n(38347),a=0,s=Math.random(),o=B(1..toString);b.exports=function(g){return"Symbol("+(void 0===g?"":g)+")_"+o(++a+s,36)}},9567:function(b,A,n){var B=n(46887);b.exports=B&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},75960:function(b,A,n){var B=n(38688);A.f=B},38688:function(b,A,n){var B=n(32010),a=n(464),s=n(20340),o=n(46859),g=n(46887),f=n(9567),w=a("wks"),u=B.Symbol,r=u&&u.for,d=f?u:u&&u.withoutSetter||o;b.exports=function(E){if(!s(w,E)||!g&&"string"!=typeof w[E]){var C="Symbol."+E;w[E]=g&&s(u,E)?u[E]:f&&r?r(C):d(C)}return w[E]}},43187:function(b){b.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"},94910:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(70176),o=n(69548),g=n(3840),f=n(2675),w=n(10819),u=n(48914),r=n(97841),d=n(34074),E=n(87811),C=n(80383),e=n(86392),h=n(45144),Q=a.Error,I=[].push,R=function(y,x){var Y=s(p,this)?this:w(p),v=arguments.length>2?arguments[2]:void 0;g&&(Y=g(new Q(void 0),o(Y))),u(Y,"message",e(x,"")),h&&u(Y,"stack",d(Y.stack,1)),E(Y,v);var S=[];return C(y,I,{that:S}),u(Y,"errors",S),Y};g?g(R,Q):f(R,Q);var p=R.prototype=w(Q.prototype,{constructor:r(1,R),message:r(1,""),name:r(1,"AggregateError")});B({global:!0},{AggregateError:R})},39081:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(47044),o=n(59113),g=n(24517),f=n(43162),w=n(45495),u=n(38639),r=n(45744),d=n(56280),E=n(38688),C=n(70091),e=E("isConcatSpreadable"),h=9007199254740991,Q="Maximum allowed index exceeded",I=a.TypeError,R=C>=51||!s(function(){var x=[];return x[e]=!1,x.concat()[0]!==x}),p=d("concat"),m=function(x){if(!g(x))return!1;var Y=x[e];return void 0!==Y?!!Y:o(x)};B({target:"Array",proto:!0,forced:!R||!p},{concat:function(Y){var F,$,gA,_,fA,v=f(this),S=r(v,0),z=0;for(F=-1,gA=arguments.length;Fh)throw I(Q);for($=0;$<_;$++,z++)$ in fA&&u(S,z,fA[$])}else{if(z>=h)throw I(Q);u(S,z++,fA)}return S.length=z,S}})},68626:function(b,A,n){var B=n(56475),a=n(92642),s=n(71156);B({target:"Array",proto:!0},{copyWithin:a}),s("copyWithin")},41584:function(b,A,n){var B=n(56475),a=n(72864),s=n(71156);B({target:"Array",proto:!0},{fill:a}),s("fill")},49063:function(b,A,n){"use strict";var B=n(56475),a=n(91102).filter;B({target:"Array",proto:!0,forced:!n(56280)("filter")},{filter:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}})},11765:function(b,A,n){var B=n(56475),a=n(95717);B({target:"Array",stat:!0,forced:!n(46769)(function(g){Array.from(g)})},{from:a})},58028:function(b,A,n){"use strict";var B=n(56475),a=n(12636).includes,s=n(71156);B({target:"Array",proto:!0},{includes:function(g){return a(this,g,arguments.length>1?arguments[1]:void 0)}}),s("includes")},81755:function(b,A,n){"use strict";var B=n(98086),a=n(71156),s=n(15366),o=n(70172),g=n(97001),f="Array Iterator",w=o.set,u=o.getterFor(f);b.exports=g(Array,"Array",function(r,d){w(this,{type:f,target:B(r),index:0,kind:d})},function(){var r=u(this),d=r.target,E=r.kind,C=r.index++;return!d||C>=d.length?(r.target=void 0,{value:void 0,done:!0}):"keys"==E?{value:C,done:!1}:"values"==E?{value:d[C],done:!1}:{value:[C,d[C]],done:!1}},"values"),s.Arguments=s.Array,a("keys"),a("values"),a("entries")},94845:function(b,A,n){"use strict";var B=n(56475),a=n(38347),s=n(7514),o=n(98086),g=n(81007),f=a([].join),w=s!=Object,u=g("join",",");B({target:"Array",proto:!0,forced:w||!u},{join:function(d){return f(o(this),void 0===d?",":d)}})},80055:function(b,A,n){"use strict";var B=n(56475),a=n(91102).map;B({target:"Array",proto:!0,forced:!n(56280)("map")},{map:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}})},20731:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(59113),o=n(20884),g=n(24517),f=n(74841),w=n(45495),u=n(98086),r=n(38639),d=n(38688),E=n(56280),C=n(73163),e=E("slice"),h=d("species"),Q=a.Array,I=Math.max;B({target:"Array",proto:!0,forced:!e},{slice:function(p,m){var S,z,F,y=u(this),x=w(y),Y=f(p,x),v=f(void 0===m?x:m,x);if(s(y)&&((o(S=y.constructor)&&(S===Q||s(S.prototype))||g(S)&&null===(S=S[h]))&&(S=void 0),S===Q||void 0===S))return C(y,Y,v);for(z=new(void 0===S?Q:S)(I(v-Y,0)),F=0;Y3)){if(E)return!0;if(e)return e<603;var S,z,F,$,v="";for(S=65;S<76;S++){switch(z=String.fromCharCode(S),S){case 66:case 69:case 70:case 72:F=3;break;case 68:case 71:F=4;break;default:F=2}for($=0;$<47;$++)h.push({k:z+$,v:F})}for(h.sort(function(gA,_){return _.v-gA.v}),$=0;$f(z)?1:-1}}(S)),gA=F.length,_=0;_9007199254740991)throw E("Maximum allowed length exceeded");for(z=w(m,S),F=0;Fy-S+v;F--)delete m[F-1]}else if(v>S)for(F=y-S;F>x;F--)gA=F+v-1,($=F+S-1)in m?m[gA]=m[$]:delete m[gA];for(F=0;F2)if(fA=I(fA),43===(iA=Y(fA,0))||45===iA){if(88===(wA=Y(fA,2))||120===wA)return NaN}else if(48===iA){switch(Y(fA,1)){case 66:case 98:IA=2,FA=49;break;case 79:case 111:IA=8,FA=55;break;default:return+fA}for(HA=(YA=x(fA,2)).length,J=0;JFA)return NaN;return parseInt(YA,IA)}return+fA};if(o(R,!p(" 0o1")||!p("0b1")||p("+0x1"))){for(var gA,z=function(fA){var iA=arguments.length<1?0:p(function(_){var fA=d(_,"number");return"bigint"==typeof fA?fA:S(fA)}(fA)),wA=this;return u(m,wA)&&E(function(){Q(wA)})?w(Object(iA),wA,z):iA},F=B?C(p):"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(","),$=0;F.length>$;$++)f(p,gA=F[$])&&!f(z,gA)&&h(z,gA,e(p,gA));z.prototype=m,m.constructor=z,g(a,R,z)}},58549:function(b,A,n){n(56475)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},70095:function(b,A,n){n(56475)({target:"Number",stat:!0},{isFinite:n(59805)})},2876:function(b,A,n){n(56475)({target:"Number",stat:!0},{isInteger:n(17506)})},10849:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(38347),o=n(26882),g=n(16679),f=n(34858),w=n(47044),u=a.RangeError,r=a.String,d=Math.floor,E=s(f),C=s("".slice),e=s(1..toFixed),h=function(y,x,Y){return 0===x?Y:x%2==1?h(y,x-1,Y*y):h(y*y,x/2,Y)},I=function(y,x,Y){for(var v=-1,S=Y;++v<6;)y[v]=(S+=x*y[v])%1e7,S=d(S/1e7)},R=function(y,x){for(var Y=6,v=0;--Y>=0;)y[Y]=d((v+=y[Y])/x),v=v%x*1e7},p=function(y){for(var x=6,Y="";--x>=0;)if(""!==Y||0===x||0!==y[x]){var v=r(y[x]);Y=""===Y?v:Y+E("0",7-v.length)+v}return Y};B({target:"Number",proto:!0,forced:w(function(){return"0.000"!==e(8e-5,3)||"1"!==e(.9,0)||"1.25"!==e(1.255,2)||"1000000000000000128"!==e(0xde0b6b3a7640080,0)})||!w(function(){e({})})},{toFixed:function(x){var $,gA,_,fA,Y=g(this),v=o(x),S=[0,0,0,0,0,0],z="",F="0";if(v<0||v>20)throw u("Incorrect fraction digits");if(Y!=Y)return"NaN";if(Y<=-1e21||Y>=1e21)return r(Y);if(Y<0&&(z="-",Y=-Y),Y>1e-21)if(gA=($=function(y){for(var x=0,Y=y;Y>=4096;)x+=12,Y/=4096;for(;Y>=2;)x+=1,Y/=2;return x}(Y*h(2,69,1))-69)<0?Y*h(2,-$,1):Y/h(2,$,1),gA*=4503599627370496,($=52-$)>0){for(I(S,0,gA),_=v;_>=7;)I(S,1e7,0),_-=7;for(I(S,h(10,_,1),0),_=$-1;_>=23;)R(S,8388608),_-=23;R(S,1<<_),I(S,1,1),R(S,2),F=p(S)}else I(S,0,gA),I(S,1<<-$,0),F=p(S)+E("0",v);return v>0?z+((fA=F.length)<=v?"0."+E("0",v-fA)+F:C(F,0,fA-v)+"."+C(F,fA-v)):z+F}})},18756:function(b,A,n){var B=n(56475),a=n(87146);B({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},75174:function(b,A,n){var B=n(56475),a=n(55481),s=n(47044),o=n(24517),g=n(62148).onFreeze,f=Object.freeze;B({target:"Object",stat:!0,forced:s(function(){f(1)}),sham:!a},{freeze:function(r){return f&&o(r)?f(g(r)):r}})},57444:function(b,A,n){var B=n(56475),a=n(47044),s=n(98086),o=n(72062).f,g=n(15567),f=a(function(){o(1)});B({target:"Object",stat:!0,forced:!g||f,sham:!g},{getOwnPropertyDescriptor:function(r,d){return o(s(r),d)}})},28331:function(b,A,n){var B=n(56475),a=n(15567),s=n(21594),o=n(98086),g=n(72062),f=n(38639);B({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(u){for(var h,Q,r=o(u),d=g.f,E=s(r),C={},e=0;E.length>e;)void 0!==(Q=d(r,h=E[e++]))&&f(C,h,Q);return C}})},71950:function(b,A,n){var B=n(56475),a=n(47044),s=n(43162),o=n(69548),g=n(68494);B({target:"Object",stat:!0,forced:a(function(){o(1)}),sham:!g},{getPrototypeOf:function(u){return o(s(u))}})},37309:function(b,A,n){var B=n(56475),a=n(43162),s=n(84675);B({target:"Object",stat:!0,forced:n(47044)(function(){s(1)})},{keys:function(w){return s(a(w))}})},14032:function(b,A,n){var B=n(24663),a=n(13711),s=n(52598);B||a(Object.prototype,"toString",s,{unsafe:!0})},59883:function(b,A,n){var B=n(56475),a=n(80754).values;B({target:"Object",stat:!0},{values:function(o){return a(o)}})},77074:function(b,A,n){"use strict";var B=n(56475),a=n(2834),s=n(32631),o=n(56614),g=n(61900),f=n(80383);B({target:"Promise",stat:!0},{allSettled:function(u){var r=this,d=o.f(r),E=d.resolve,C=d.reject,e=g(function(){var h=s(r.resolve),Q=[],I=0,R=1;f(u,function(p){var m=I++,y=!1;R++,a(h,r,p).then(function(x){y||(y=!0,Q[m]={status:"fulfilled",value:x},--R||E(Q))},function(x){y||(y=!0,Q[m]={status:"rejected",reason:x},--R||E(Q))})}),--R||E(Q)});return e.error&&C(e.value),d.promise}})},44455:function(b,A,n){"use strict";var B=n(56475),a=n(32631),s=n(38486),o=n(2834),g=n(56614),f=n(61900),w=n(80383),u="No one promise resolved";B({target:"Promise",stat:!0},{any:function(d){var E=this,C=s("AggregateError"),e=g.f(E),h=e.resolve,Q=e.reject,I=f(function(){var R=a(E.resolve),p=[],m=0,y=1,x=!1;w(d,function(Y){var v=m++,S=!1;y++,o(R,E,Y).then(function(z){S||x||(x=!0,h(z))},function(z){S||x||(S=!0,p[v]=z,--y||Q(new C(p,u)))})}),--y||Q(new C(p,u))});return I.error&&Q(I.value),e.promise}})},58605:function(b,A,n){"use strict";var B=n(56475),a=n(63432),s=n(5155),o=n(47044),g=n(38486),f=n(94578),w=n(27754),u=n(28617),r=n(13711);if(B({target:"Promise",proto:!0,real:!0,forced:!!s&&o(function(){s.prototype.finally.call({then:function(){}},function(){})})},{finally:function(C){var e=w(this,g("Promise")),h=f(C);return this.then(h?function(Q){return u(e,C()).then(function(){return Q})}:C,h?function(Q){return u(e,C()).then(function(){throw Q})}:C)}}),!a&&f(s)){var E=g("Promise").prototype.finally;s.prototype.finally!==E&&r(s.prototype,"finally",E,{unsafe:!0})}},68067:function(b,A,n){"use strict";var pA,JA,ft,wt,B=n(56475),a=n(63432),s=n(32010),o=n(38486),g=n(2834),f=n(5155),w=n(13711),u=n(15341),r=n(3840),d=n(15216),E=n(51334),C=n(32631),e=n(94578),h=n(24517),Q=n(2868),I=n(10447),R=n(80383),p=n(46769),m=n(27754),y=n(6616).set,x=n(59804),Y=n(28617),v=n(61144),S=n(56614),z=n(61900),F=n(70172),$=n(39599),gA=n(38688),_=n(3157),fA=n(95053),iA=n(70091),wA=gA("species"),IA="Promise",FA=F.get,YA=F.set,HA=F.getterFor(IA),J=f&&f.prototype,BA=f,aA=J,eA=s.TypeError,EA=s.document,xA=s.process,OA=S.f,W=OA,L=!!(EA&&EA.createEvent&&s.dispatchEvent),rA=e(s.PromiseRejectionEvent),AA="unhandledrejection",zA=!1,gt=$(IA,function(){var Z=I(BA),k=Z!==String(BA);if(!k&&66===iA||a&&!aA.finally)return!0;if(iA>=51&&/native code/.test(Z))return!1;var U=new BA(function(GA){GA(1)}),hA=function(GA){GA(function(){},function(){})};return(U.constructor={})[wA]=hA,!(zA=U.then(function(){})instanceof hA)||!k&&_&&!rA}),pt=gt||!p(function(Z){BA.all(Z).catch(function(){})}),Yt=function(Z){var k;return!(!h(Z)||!e(k=Z.then))&&k},VA=function(Z,k){if(!Z.notified){Z.notified=!0;var U=Z.reactions;x(function(){for(var hA=Z.value,q=1==Z.state,GA=0;U.length>GA;){var jA,ot,Tt,At=U[GA++],O=q?At.ok:At.fail,qA=At.resolve,nt=At.reject,MA=At.domain;try{O?(q||(2===Z.rejection&&vt(Z),Z.rejection=1),!0===O?jA=hA:(MA&&MA.enter(),jA=O(hA),MA&&(MA.exit(),Tt=!0)),jA===At.promise?nt(eA("Promise-chain cycle")):(ot=Yt(jA))?g(ot,jA,qA,nt):qA(jA)):nt(hA)}catch(yt){MA&&!Tt&&MA.exit(),nt(yt)}}Z.reactions=[],Z.notified=!1,k&&!Z.rejection&&Qt(Z)})}},_A=function(Z,k,U){var hA,q;L?((hA=EA.createEvent("Event")).promise=k,hA.reason=U,hA.initEvent(Z,!1,!0),s.dispatchEvent(hA)):hA={promise:k,reason:U},!rA&&(q=s["on"+Z])?q(hA):Z===AA&&v("Unhandled promise rejection",U)},Qt=function(Z){g(y,s,function(){var q,k=Z.facade,U=Z.value;if(ht(Z)&&(q=z(function(){fA?xA.emit("unhandledRejection",U,k):_A(AA,k,U)}),Z.rejection=fA||ht(Z)?2:1,q.error))throw q.value})},ht=function(Z){return 1!==Z.rejection&&!Z.parent},vt=function(Z){g(y,s,function(){var k=Z.facade;fA?xA.emit("rejectionHandled",k):_A("rejectionhandled",k,Z.value)})},Nt=function(Z,k,U){return function(hA){Z(k,hA,U)}},vA=function(Z,k,U){Z.done||(Z.done=!0,U&&(Z=U),Z.value=k,Z.state=2,VA(Z,!0))},Bt=function(Z,k,U){if(!Z.done){Z.done=!0,U&&(Z=U);try{if(Z.facade===k)throw eA("Promise can't be resolved itself");var hA=Yt(k);hA?x(function(){var q={done:!1};try{g(hA,k,Nt(Bt,q,Z),Nt(vA,q,Z))}catch(GA){vA(q,GA,Z)}}):(Z.value=k,Z.state=1,VA(Z,!1))}catch(q){vA({done:!1},q,Z)}}};if(gt&&(BA=function(k){Q(this,aA),C(k),g(pA,this);var U=FA(this);try{k(Nt(Bt,U),Nt(vA,U))}catch(hA){vA(U,hA)}},(pA=function(k){YA(this,{type:IA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=u(aA=BA.prototype,{then:function(k,U){var hA=HA(this),q=hA.reactions,GA=OA(m(this,BA));return GA.ok=!e(k)||k,GA.fail=e(U)&&U,GA.domain=fA?xA.domain:void 0,hA.parent=!0,q[q.length]=GA,0!=hA.state&&VA(hA,!1),GA.promise},catch:function(Z){return this.then(void 0,Z)}}),JA=function(){var Z=new pA,k=FA(Z);this.promise=Z,this.resolve=Nt(Bt,k),this.reject=Nt(vA,k)},S.f=OA=function(Z){return Z===BA||Z===ft?new JA(Z):W(Z)},!a&&e(f)&&J!==Object.prototype)){wt=J.then,zA||(w(J,"then",function(k,U){var hA=this;return new BA(function(q,GA){g(wt,hA,q,GA)}).then(k,U)},{unsafe:!0}),w(J,"catch",aA.catch,{unsafe:!0}));try{delete J.constructor}catch{}r&&r(J,aA)}B({global:!0,wrap:!0,forced:gt},{Promise:BA}),d(BA,IA,!1,!0),E(IA),ft=o(IA),B({target:IA,stat:!0,forced:gt},{reject:function(k){var U=OA(this);return g(U.reject,void 0,k),U.promise}}),B({target:IA,stat:!0,forced:a||gt},{resolve:function(k){return Y(a&&this===ft?BA:this,k)}}),B({target:IA,stat:!0,forced:pt},{all:function(k){var U=this,hA=OA(U),q=hA.resolve,GA=hA.reject,At=z(function(){var O=C(U.resolve),qA=[],nt=0,MA=1;R(k,function(jA){var ot=nt++,Tt=!1;MA++,g(O,U,jA).then(function(yt){Tt||(Tt=!0,qA[ot]=yt,--MA||q(qA))},GA)}),--MA||q(qA)});return At.error&&GA(At.value),hA.promise},race:function(k){var U=this,hA=OA(U),q=hA.reject,GA=z(function(){var At=C(U.resolve);R(k,function(O){g(At,U,O).then(hA.resolve,q)})});return GA.error&&q(GA.value),hA.promise}})},73228:function(b,A,n){var B=n(56475),a=n(38486),s=n(58448),o=n(5481),g=n(69075),f=n(34984),w=n(24517),u=n(10819),r=n(47044),d=a("Reflect","construct"),E=Object.prototype,C=[].push,e=r(function(){function I(){}return!(d(function(){},[],I)instanceof I)}),h=!r(function(){d(function(){})}),Q=e||h;B({target:"Reflect",stat:!0,forced:Q,sham:Q},{construct:function(R,p){g(R),f(p);var m=arguments.length<3?R:g(arguments[2]);if(h&&!e)return d(R,p,m);if(R==m){switch(p.length){case 0:return new R;case 1:return new R(p[0]);case 2:return new R(p[0],p[1]);case 3:return new R(p[0],p[1],p[2]);case 4:return new R(p[0],p[1],p[2],p[3])}var y=[null];return s(C,y,p),new(s(o,R,y))}var x=m.prototype,Y=u(w(x)?x:E),v=s(R,Y,p);return w(v)?v:Y}})},61726:function(b,A,n){"use strict";var B=n(56475),a=n(49820);B({target:"RegExp",proto:!0,forced:/./.exec!==a},{exec:a})},74516:function(b,A,n){var B=n(15567),a=n(95892),s=n(21182),o=n(47044),g=RegExp.prototype;B&&o(function(){return"sy"!==Object.getOwnPropertyDescriptor(g,"flags").get.call({dotAll:!0,sticky:!0})})&&a.f(g,"flags",{configurable:!0,get:s})},57114:function(b,A,n){"use strict";var B=n(38347),a=n(7081).PROPER,s=n(13711),o=n(34984),g=n(70176),f=n(25096),w=n(47044),u=n(21182),r="toString",d=RegExp.prototype,E=d[r],C=B(u);(w(function(){return"/a/b"!=E.call({source:"a",flags:"b"})})||a&&E.name!=r)&&s(RegExp.prototype,r,function(){var I=o(this),R=f(I.source),p=I.flags;return"/"+R+"/"+f(void 0===p&&g(d,I)&&!("flags"in d)?C(I):p)},{unsafe:!0})},76014:function(b,A,n){"use strict";n(36673)("Set",function(s){return function(){return s(this,arguments.length?arguments[0]:void 0)}},n(9649))},26663:function(b,A,n){"use strict";var B=n(56475),a=n(69510).codeAt;B({target:"String",proto:!0},{codePointAt:function(o){return a(this,o)}})},65578:function(b,A,n){var B=n(56475),a=n(32010),s=n(38347),o=n(74841),g=a.RangeError,f=String.fromCharCode,w=String.fromCodePoint,u=s([].join);B({target:"String",stat:!0,forced:!!w&&1!=w.length},{fromCodePoint:function(E){for(var Q,C=[],e=arguments.length,h=0;e>h;){if(Q=+arguments[h++],o(Q,1114111)!==Q)throw g(Q+" is not a valid code point");C[h]=Q<65536?f(Q):f(55296+((Q-=65536)>>10),Q%1024+56320)}return u(C,"")}})},47458:function(b,A,n){"use strict";var B=n(56475),a=n(38347),s=n(93666),o=n(83943),g=n(25096),f=n(91151),w=a("".indexOf);B({target:"String",proto:!0,forced:!f("includes")},{includes:function(r){return!!~w(g(o(this)),g(s(r)),arguments.length>1?arguments[1]:void 0)}})},62046:function(b,A,n){"use strict";var B=n(56475),a=n(91159);B({target:"String",proto:!0,forced:n(7452)("italics")},{italics:function(){return a(this,"i","","")}})},58281:function(b,A,n){"use strict";var B=n(69510).charAt,a=n(25096),s=n(70172),o=n(97001),g="String Iterator",f=s.set,w=s.getterFor(g);o(String,"String",function(u){f(this,{type:g,string:a(u),index:0})},function(){var C,r=w(this),d=r.string,E=r.index;return E>=d.length?{value:void 0,done:!0}:(C=B(d,E),r.index+=C.length,{value:C,done:!1})})},47259:function(b,A,n){"use strict";var B=n(56475),a=n(91159);B({target:"String",proto:!0,forced:n(7452)("link")},{link:function(g){return a(this,"a","href",g)}})},71768:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(2834),o=n(38347),g=n(13945),f=n(83943),w=n(23417),u=n(25096),r=n(34984),d=n(93975),E=n(70176),C=n(28831),e=n(21182),h=n(51839),Q=n(13711),I=n(47044),R=n(38688),p=n(27754),m=n(36352),y=n(66723),x=n(70172),Y=n(63432),v=R("matchAll"),S="RegExp String",z=S+" Iterator",F=x.set,$=x.getterFor(z),gA=RegExp.prototype,_=a.TypeError,fA=o(e),iA=o("".indexOf),wA=o("".matchAll),IA=!!wA&&!I(function(){wA("a",/./)}),FA=g(function(J,BA,aA,eA){F(this,{type:z,regexp:J,string:BA,global:aA,unicode:eA,done:!1})},S,function(){var J=$(this);if(J.done)return{value:void 0,done:!0};var BA=J.regexp,aA=J.string,eA=y(BA,aA);return null===eA?{value:void 0,done:J.done=!0}:J.global?(""===u(eA[0])&&(BA.lastIndex=m(aA,w(BA.lastIndex),J.unicode)),{value:eA,done:!1}):(J.done=!0,{value:eA,done:!1})}),YA=function(HA){var aA,eA,EA,xA,OA,W,J=r(this),BA=u(HA);return aA=p(J,RegExp),void 0===(eA=J.flags)&&E(gA,J)&&!("flags"in gA)&&(eA=fA(J)),EA=void 0===eA?"":u(eA),xA=new aA(aA===RegExp?J.source:J,EA),OA=!!~iA(EA,"g"),W=!!~iA(EA,"u"),xA.lastIndex=w(J.lastIndex),new FA(xA,BA,OA,W)};B({target:"String",proto:!0,forced:IA},{matchAll:function(J){var aA,eA,EA,xA,BA=f(this);if(null!=J){if(C(J)&&(aA=u(f("flags"in gA?J.flags:fA(J))),!~iA(aA,"g")))throw _("`.matchAll` does not allow non-global regexes");if(IA)return wA(BA,J);if(void 0===(EA=h(J,v))&&Y&&"RegExp"==d(J)&&(EA=YA),EA)return s(EA,J,BA)}else if(IA)return wA(BA,J);return eA=u(BA),xA=new RegExp(J,"g"),Y?s(YA,xA,eA):xA[v](eA)}}),Y||v in gA||Q(gA,v,YA)},6422:function(b,A,n){"use strict";var B=n(2834),a=n(11813),s=n(34984),o=n(23417),g=n(25096),f=n(83943),w=n(51839),u=n(36352),r=n(66723);a("match",function(d,E,C){return[function(h){var Q=f(this),I=null==h?void 0:w(h,d);return I?B(I,h,Q):new RegExp(h)[d](g(Q))},function(e){var h=s(this),Q=g(e),I=C(E,h,Q);if(I.done)return I.value;if(!h.global)return r(h,Q);var R=h.unicode;h.lastIndex=0;for(var y,p=[],m=0;null!==(y=r(h,Q));){var x=g(y[0]);p[m]=x,""===x&&(h.lastIndex=u(Q,o(h.lastIndex),R)),m++}return 0===m?null:p}]})},28264:function(b,A,n){n(56475)({target:"String",proto:!0},{repeat:n(34858)})},46467:function(b,A,n){"use strict";var B=n(58448),a=n(2834),s=n(38347),o=n(11813),g=n(47044),f=n(34984),w=n(94578),u=n(26882),r=n(23417),d=n(25096),E=n(83943),C=n(36352),e=n(51839),h=n(29519),Q=n(66723),R=n(38688)("replace"),p=Math.max,m=Math.min,y=s([].concat),x=s([].push),Y=s("".indexOf),v=s("".slice),S=function(gA){return void 0===gA?gA:String(gA)},z="$0"==="a".replace(/./,"$0"),F=!!/./[R]&&""===/./[R]("a","$0");o("replace",function(gA,_,fA){var iA=F?"$":"$0";return[function(IA,FA){var YA=E(this),HA=null==IA?void 0:e(IA,R);return HA?a(HA,IA,YA,FA):a(_,d(YA),IA,FA)},function(wA,IA){var FA=f(this),YA=d(wA);if("string"==typeof IA&&-1===Y(IA,iA)&&-1===Y(IA,"$<")){var HA=fA(_,FA,YA,IA);if(HA.done)return HA.value}var J=w(IA);J||(IA=d(IA));var BA=FA.global;if(BA){var aA=FA.unicode;FA.lastIndex=0}for(var eA=[];;){var EA=Q(FA,YA);if(null===EA||(x(eA,EA),!BA))break;""===d(EA[0])&&(FA.lastIndex=C(YA,r(FA.lastIndex),aA))}for(var OA="",W=0,L=0;L=W&&(OA+=v(YA,W,AA)+DA,W=AA+rA.length)}return OA+v(YA,W)}]},!!g(function(){var gA=/./;return gA.exec=function(){var _=[];return _.groups={a:"7"},_},"7"!=="".replace(gA,"$")})||!z||F)},7851:function(b,A,n){"use strict";var B=n(58448),a=n(2834),s=n(38347),o=n(11813),g=n(28831),f=n(34984),w=n(83943),u=n(27754),r=n(36352),d=n(23417),E=n(25096),C=n(51839),e=n(73163),h=n(66723),Q=n(49820),I=n(74846),R=n(47044),p=I.UNSUPPORTED_Y,m=4294967295,y=Math.min,x=[].push,Y=s(/./.exec),v=s(x),S=s("".slice),z=!R(function(){var F=/(?:)/,$=F.exec;F.exec=function(){return $.apply(this,arguments)};var gA="ab".split(F);return 2!==gA.length||"a"!==gA[0]||"b"!==gA[1]});o("split",function(F,$,gA){var _;return _="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(fA,iA){var wA=E(w(this)),IA=void 0===iA?m:iA>>>0;if(0===IA)return[];if(void 0===fA)return[wA];if(!g(fA))return a($,wA,fA,IA);for(var BA,aA,eA,FA=[],HA=0,J=new RegExp(fA.source,(fA.ignoreCase?"i":"")+(fA.multiline?"m":"")+(fA.unicode?"u":"")+(fA.sticky?"y":"")+"g");(BA=a(Q,J,wA))&&!((aA=J.lastIndex)>HA&&(v(FA,S(wA,HA,BA.index)),BA.length>1&&BA.index=IA));)J.lastIndex===BA.index&&J.lastIndex++;return HA===wA.length?(eA||!Y(J,""))&&v(FA,""):v(FA,S(wA,HA)),FA.length>IA?e(FA,0,IA):FA}:"0".split(void 0,0).length?function(fA,iA){return void 0===fA&&0===iA?[]:a($,this,fA,iA)}:$,[function(iA,wA){var IA=w(this),FA=null==iA?void 0:C(iA,F);return FA?a(FA,iA,IA,wA):a(_,E(IA),iA,wA)},function(fA,iA){var wA=f(this),IA=E(fA),FA=gA(_,wA,IA,iA,_!==$);if(FA.done)return FA.value;var YA=u(wA,RegExp),HA=wA.unicode,BA=new YA(p?"^(?:"+wA.source+")":wA,(wA.ignoreCase?"i":"")+(wA.multiline?"m":"")+(wA.unicode?"u":"")+(p?"g":"y")),aA=void 0===iA?m:iA>>>0;if(0===aA)return[];if(0===IA.length)return null===h(BA,IA)?[IA]:[];for(var eA=0,EA=0,xA=[];EA2?arguments[2]:void 0)})},29883:function(b,A,n){"use strict";var B=n(36597),a=n(91102).every,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("every",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},35471:function(b,A,n){"use strict";var B=n(36597),a=n(2834),s=n(72864),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("fill",function(w){var u=arguments.length;return a(s,o(this),w,u>1?arguments[1]:void 0,u>2?arguments[2]:void 0)})},21012:function(b,A,n){"use strict";var B=n(36597),a=n(91102).filter,s=n(59610),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("filter",function(w){var u=a(o(this),w,arguments.length>1?arguments[1]:void 0);return s(this,u)})},97464:function(b,A,n){"use strict";var B=n(36597),a=n(91102).findIndex,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("findIndex",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},88997:function(b,A,n){"use strict";var B=n(36597),a=n(91102).find,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("find",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},3131:function(b,A,n){n(98828)("Float32",function(a){return function(o,g,f){return a(this,o,g,f)}})},90868:function(b,A,n){n(98828)("Float64",function(a){return function(o,g,f){return a(this,o,g,f)}})},2857:function(b,A,n){"use strict";var B=n(36597),a=n(91102).forEach,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("forEach",function(f){a(s(this),f,arguments.length>1?arguments[1]:void 0)})},83326:function(b,A,n){"use strict";var B=n(28834);(0,n(36597).exportTypedArrayStaticMethod)("from",n(83590),B)},94715:function(b,A,n){"use strict";var B=n(36597),a=n(12636).includes,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("includes",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},13624:function(b,A,n){"use strict";var B=n(36597),a=n(12636).indexOf,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("indexOf",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},75626:function(b,A,n){n(98828)("Int16",function(a){return function(o,g,f){return a(this,o,g,f)}})},95756:function(b,A,n){n(98828)("Int32",function(a){return function(o,g,f){return a(this,o,g,f)}})},65553:function(b,A,n){n(98828)("Int8",function(a){return function(o,g,f){return a(this,o,g,f)}})},91132:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(7081).PROPER,o=n(36597),g=n(81755),w=n(38688)("iterator"),u=B.Uint8Array,r=a(g.values),d=a(g.keys),E=a(g.entries),C=o.aTypedArray,e=o.exportTypedArrayMethod,h=u&&u.prototype[w],Q=!!h&&"values"===h.name,I=function(){return r(C(this))};e("entries",function(){return E(C(this))}),e("keys",function(){return d(C(this))}),e("values",I,s&&!Q),e(w,I,s&&!Q)},62514:function(b,A,n){"use strict";var B=n(36597),a=n(38347),s=B.aTypedArray,o=B.exportTypedArrayMethod,g=a([].join);o("join",function(w){return g(s(this),w)})},24597:function(b,A,n){"use strict";var B=n(36597),a=n(58448),s=n(84320),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("lastIndexOf",function(w){var u=arguments.length;return a(s,o(this),u>1?[w,arguments[1]]:[w])})},88042:function(b,A,n){"use strict";var B=n(36597),a=n(91102).map,s=n(34815),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("map",function(w){return a(o(this),w,arguments.length>1?arguments[1]:void 0,function(u,r){return new(s(u))(r)})})},92451:function(b,A,n){"use strict";var B=n(36597),a=n(32843).right,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("reduceRight",function(f){var w=arguments.length;return a(s(this),f,w,w>1?arguments[1]:void 0)})},4660:function(b,A,n){"use strict";var B=n(36597),a=n(32843).left,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("reduce",function(f){var w=arguments.length;return a(s(this),f,w,w>1?arguments[1]:void 0)})},44206:function(b,A,n){"use strict";var B=n(36597),a=B.aTypedArray,o=Math.floor;(0,B.exportTypedArrayMethod)("reverse",function(){for(var d,f=this,w=a(f).length,u=o(w/2),r=0;r1?arguments[1]:void 0,1),h=this.length,Q=g(C),I=s(Q),R=0;if(I+e>h)throw w("Wrong length");for(;Re;)Q[e]=E[e++];return Q},s(function(){new Int8Array(1).slice()}))},3858:function(b,A,n){"use strict";var B=n(36597),a=n(91102).some,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("some",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},84538:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(47044),o=n(32631),g=n(43977),f=n(36597),w=n(3809),u=n(21983),r=n(70091),d=n(41731),E=B.Array,C=f.aTypedArray,e=f.exportTypedArrayMethod,h=B.Uint16Array,Q=h&&a(h.prototype.sort),I=!(!Q||s(function(){Q(new h(2),null)})&&s(function(){Q(new h(2),{})})),R=!!Q&&!s(function(){if(r)return r<74;if(w)return w<67;if(u)return!0;if(d)return d<602;var x,Y,m=new h(516),y=E(516);for(x=0;x<516;x++)Y=x%4,m[x]=515-x,y[x]=x-2*Y+3;for(Q(m,function(v,S){return(v/4|0)-(S/4|0)}),x=0;x<516;x++)if(m[x]!==y[x])return!0});e("sort",function(y){return void 0!==y&&o(y),R?Q(this,y):g(C(this),(m=y,function(y,x){return void 0!==m?+m(y,x)||0:x!=x?-1:y!=y?1:0===y&&0===x?1/y>0&&1/x<0?1:-1:y>x}));var m},!R||I)},64793:function(b,A,n){"use strict";var B=n(36597),a=n(23417),s=n(74841),o=n(34815),g=B.aTypedArray;(0,B.exportTypedArrayMethod)("subarray",function(u,r){var d=g(this),E=d.length,C=s(u,E);return new(o(d))(d.buffer,d.byteOffset+C*d.BYTES_PER_ELEMENT,a((void 0===r?E:s(r,E))-C))})},74202:function(b,A,n){"use strict";var B=n(32010),a=n(58448),s=n(36597),o=n(47044),g=n(73163),f=B.Int8Array,w=s.aTypedArray,u=s.exportTypedArrayMethod,r=[].toLocaleString,d=!!f&&o(function(){r.call(new f(1))});u("toLocaleString",function(){return a(r,d?g(w(this)):w(this),g(arguments))},o(function(){return[1,2].toLocaleString()!=new f([1,2]).toLocaleString()})||!o(function(){f.prototype.toLocaleString.call([1,2])}))},52529:function(b,A,n){"use strict";var B=n(36597).exportTypedArrayMethod,a=n(47044),s=n(32010),o=n(38347),g=s.Uint8Array,f=g&&g.prototype||{},w=[].toString,u=o([].join);a(function(){w.call({})})&&(w=function(){return u(this)}),B("toString",w,f.toString!=w)},47969:function(b,A,n){n(98828)("Uint16",function(a){return function(o,g,f){return a(this,o,g,f)}})},59735:function(b,A,n){n(98828)("Uint32",function(a){return function(o,g,f){return a(this,o,g,f)}})},56912:function(b,A,n){n(98828)("Uint8",function(a){return function(o,g,f){return a(this,o,g,f)}})},58099:function(b,A,n){n(98828)("Uint8",function(a){return function(o,g,f){return a(this,o,g,f)}},!0)},84151:function(b,A,n){n(94910)},49109:function(b,A,n){n(64384)},98443:function(b,A,n){n(77074)},67858:function(b,A,n){n(44455)},49261:function(b,A,n){"use strict";var B=n(56475),a=n(56614),s=n(61900);B({target:"Promise",stat:!0},{try:function(o){var g=a.f(this),f=s(o);return(f.error?g.reject:g.resolve)(f.value),g.promise}})},1083:function(b,A,n){n(71768)},42437:function(b,A,n){var B=n(32010),a=n(23327),s=n(67797),o=n(82938),g=n(48914),f=function(u){if(u&&u.forEach!==o)try{g(u,"forEach",o)}catch{u.forEach=o}};for(var w in a)a[w]&&f(B[w]&&B[w].prototype);f(s)},94712:function(b,A,n){var B=n(32010),a=n(23327),s=n(67797),o=n(81755),g=n(48914),f=n(38688),w=f("iterator"),u=f("toStringTag"),r=o.values,d=function(C,e){if(C){if(C[w]!==r)try{g(C,w,r)}catch{C[w]=r}if(C[u]||g(C,u,e),a[e])for(var h in o)if(C[h]!==o[h])try{g(C,h,o[h])}catch{C[h]=o[h]}}};for(var E in a)d(B[E]&&B[E].prototype,E);d(s,"DOMTokenList")},41863:function(b,A,n){"use strict";var B=n(56475),a=n(2834);B({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return a(URL.prototype.toString,this)}})},90780:function(b,A,n){var B=n(42075);n(94712),b.exports=B},45728:function(b,A,n){var B=n(35643),a=n(67906),s=n(98527),o=n(71689),g=n(64607),f=n(71230),w=Date.prototype.getTime;function u(C,e,h){var Q=h||{};return!!(Q.strict?s(C,e):C===e)||(!C||!e||"object"!=typeof C&&"object"!=typeof e?Q.strict?s(C,e):C==e:function E(C,e,h){var Q,I;if(typeof C!=typeof e||r(C)||r(e)||C.prototype!==e.prototype||a(C)!==a(e))return!1;var R=o(C),p=o(e);if(R!==p)return!1;if(R||p)return C.source===e.source&&g(C)===g(e);if(f(C)&&f(e))return w.call(C)===w.call(e);var m=d(C),y=d(e);if(m!==y)return!1;if(m||y){if(C.length!==e.length)return!1;for(Q=0;Q=0;Q--)if(x[Q]!=Y[Q])return!1;for(Q=x.length-1;Q>=0;Q--)if(!u(C[I=x[Q]],e[I],h))return!1;return!0}(C,e,Q))}function r(C){return null==C}function d(C){return!(!C||"object"!=typeof C||"number"!=typeof C.length||"function"!=typeof C.copy||"function"!=typeof C.slice||C.length>0&&"number"!=typeof C[0])}b.exports=u},89295:function(b,A,n){"use strict";var B=n(56649),a=n(57770),s=n(96785),o=n(68109);b.exports=function(f,w,u){if(!f||"object"!=typeof f&&"function"!=typeof f)throw new s("`obj` must be an object or a function`");if("string"!=typeof w&&"symbol"!=typeof w)throw new s("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new s("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new s("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new s("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new s("`loose`, if provided, must be a boolean");var r=arguments.length>3?arguments[3]:null,d=arguments.length>4?arguments[4]:null,E=arguments.length>5?arguments[5]:null,C=arguments.length>6&&arguments[6],e=!!o&&o(f,w);if(B)B(f,w,{configurable:null===E&&e?e.configurable:!E,enumerable:null===r&&e?e.enumerable:!r,value:u,writable:null===d&&e?e.writable:!d});else{if(!C&&(r||d||E))throw new a("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");f[w]=u}}},77802:function(b,A,n){"use strict";var B=n(35643),a="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),s=Object.prototype.toString,o=Array.prototype.concat,g=n(89295),w=n(18890)(),u=function(d,E,C,e){if(E in d)if(!0===e){if(d[E]===C)return}else if(!function(d){return"function"==typeof d&&"[object Function]"===s.call(d)}(e)||!e())return;w?g(d,E,C,!0):g(d,E,C)},r=function(d,E){var C=arguments.length>2?arguments[2]:{},e=B(E);a&&(e=o.call(e,Object.getOwnPropertySymbols(E)));for(var h=0;h0&&z.length>v&&!z.warned){z.warned=!0;var F=new Error("Possible EventEmitter memory leak detected. "+z.length+" "+String(y)+" listeners added. Use emitter.setMaxListeners() to increase limit");F.name="MaxListenersExceededWarning",F.emitter=m,F.type=y,F.count=z.length,function a(m){console&&console.warn&&console.warn(m)}(F)}return m}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 d(m,y,x){var Y={fired:!1,wrapFn:void 0,target:m,type:y,listener:x},v=r.bind(Y);return v.listener=x,Y.wrapFn=v,v}function E(m,y,x){var Y=m._events;if(void 0===Y)return[];var v=Y[y];return void 0===v?[]:"function"==typeof v?x?[v.listener||v]:[v]:x?function Q(m){for(var y=new Array(m.length),x=0;x0&&(z=x[0]),z instanceof Error)throw z;var F=new Error("Unhandled error."+(z?" ("+z.message+")":""));throw F.context=z,F}var $=S[y];if(void 0===$)return!1;if("function"==typeof $)n($,this,x);else{var gA=$.length,_=e($,gA);for(Y=0;Y=0;z--)if(Y[z]===x||Y[z].listener===x){F=Y[z].listener,S=z;break}if(S<0)return this;0===S?Y.shift():function h(m,y){for(;y+1=0;v--)this.removeListener(y,x[v]);return this},o.prototype.listeners=function(y){return E(this,y,!0)},o.prototype.rawListeners=function(y){return E(this,y,!1)},o.listenerCount=function(m,y){return"function"==typeof m.listenerCount?m.listenerCount(y):C.call(m,y)},o.prototype.listenerCount=C,o.prototype.eventNames=function(){return this._eventsCount>0?B(this._events):[]}},72022:function(b,A,n){"use strict";b.exports=function(){if("object"==typeof globalThis)return globalThis;var B;try{B=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof n.g<"u")return n.g}return B}()},68404:function(b,A,n){"use strict";var B=n(3746),a=Object.prototype.toString,s=Object.prototype.hasOwnProperty;b.exports=function(r,d,E){if(!B(d))throw new TypeError("iterator must be a function");var C;arguments.length>=3&&(C=E),"[object Array]"===a.call(r)?function(r,d,E){for(var C=0,e=r.length;C"u"||!I?B:I(Uint8Array),m={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?B:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?B:ArrayBuffer,"%ArrayIteratorPrototype%":h&&I?I([][Symbol.iterator]()):B,"%AsyncFromSyncIteratorPrototype%":B,"%AsyncFunction%":R,"%AsyncGenerator%":R,"%AsyncGeneratorFunction%":R,"%AsyncIteratorPrototype%":R,"%Atomics%":typeof Atomics>"u"?B:Atomics,"%BigInt%":typeof BigInt>"u"?B:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?B:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?B:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?B:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":a,"%eval%":eval,"%EvalError%":s,"%Float32Array%":typeof Float32Array>"u"?B:Float32Array,"%Float64Array%":typeof Float64Array>"u"?B:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?B:FinalizationRegistry,"%Function%":r,"%GeneratorFunction%":R,"%Int8Array%":typeof Int8Array>"u"?B:Int8Array,"%Int16Array%":typeof Int16Array>"u"?B:Int16Array,"%Int32Array%":typeof Int32Array>"u"?B:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":h&&I?I(I([][Symbol.iterator]())):B,"%JSON%":"object"==typeof JSON?JSON:B,"%Map%":typeof Map>"u"?B:Map,"%MapIteratorPrototype%":typeof Map>"u"||!h||!I?B:I((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?B:Promise,"%Proxy%":typeof Proxy>"u"?B:Proxy,"%RangeError%":o,"%ReferenceError%":g,"%Reflect%":typeof Reflect>"u"?B:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?B:Set,"%SetIteratorPrototype%":typeof Set>"u"||!h||!I?B:I((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?B:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":h&&I?I(""[Symbol.iterator]()):B,"%Symbol%":h?Symbol:B,"%SyntaxError%":f,"%ThrowTypeError%":e,"%TypedArray%":p,"%TypeError%":w,"%Uint8Array%":typeof Uint8Array>"u"?B:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?B:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?B:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?B:Uint32Array,"%URIError%":u,"%WeakMap%":typeof WeakMap>"u"?B:WeakMap,"%WeakRef%":typeof WeakRef>"u"?B:WeakRef,"%WeakSet%":typeof WeakSet>"u"?B:WeakSet};if(I)try{null.error}catch(FA){var y=I(I(FA));m["%Error.prototype%"]=y}var x=function FA(YA){var HA;if("%AsyncFunction%"===YA)HA=d("async function () {}");else if("%GeneratorFunction%"===YA)HA=d("function* () {}");else if("%AsyncGeneratorFunction%"===YA)HA=d("async function* () {}");else if("%AsyncGenerator%"===YA){var J=FA("%AsyncGeneratorFunction%");J&&(HA=J.prototype)}else if("%AsyncIteratorPrototype%"===YA){var BA=FA("%AsyncGenerator%");BA&&I&&(HA=I(BA.prototype))}return m[YA]=HA,HA},Y={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},v=n(5049),S=n(55215),z=v.call(Function.call,Array.prototype.concat),F=v.call(Function.apply,Array.prototype.splice),$=v.call(Function.call,String.prototype.replace),gA=v.call(Function.call,String.prototype.slice),_=v.call(Function.call,RegExp.prototype.exec),fA=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,iA=/\\(\\)?/g,IA=function(YA,HA){var BA,J=YA;if(S(Y,J)&&(J="%"+(BA=Y[J])[0]+"%"),S(m,J)){var aA=m[J];if(aA===R&&(aA=x(J)),typeof aA>"u"&&!HA)throw new w("intrinsic "+YA+" exists, but is not available. Please file an issue!");return{alias:BA,name:J,value:aA}}throw new f("intrinsic "+YA+" does not exist!")};b.exports=function(YA,HA){if("string"!=typeof YA||0===YA.length)throw new w("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof HA)throw new w('"allowMissing" argument must be a boolean');if(null===_(/^%?[^%]*%?$/,YA))throw new f("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var J=function(YA){var HA=gA(YA,0,1),J=gA(YA,-1);if("%"===HA&&"%"!==J)throw new f("invalid intrinsic syntax, expected closing `%`");if("%"===J&&"%"!==HA)throw new f("invalid intrinsic syntax, expected opening `%`");var BA=[];return $(YA,fA,function(aA,eA,EA,xA){BA[BA.length]=EA?$(xA,iA,"$1"):eA||aA}),BA}(YA),BA=J.length>0?J[0]:"",aA=IA("%"+BA+"%",HA),eA=aA.name,EA=aA.value,xA=!1,OA=aA.alias;OA&&(BA=OA[0],F(J,z([0,1],OA)));for(var W=1,L=!0;W=J.length){var yA=E(EA,rA);EA=(L=!!yA)&&"get"in yA&&!("originalValue"in yA.get)?yA.get:EA[rA]}else L=S(EA,rA),EA=EA[rA];L&&!xA&&(m[eA]=EA)}}return EA}},68109:function(b,A,n){"use strict";var a=n(28651)("%Object.getOwnPropertyDescriptor%",!0);if(a)try{a([],"length")}catch{a=null}b.exports=a},18890:function(b,A,n){"use strict";var B=n(56649),a=function(){return!!B};a.hasArrayLengthDefineBug=function(){if(!B)return null;try{return 1!==B([],"length",{value:1}).length}catch{return!0}},b.exports=a},85726:function(b){"use strict";var A={__proto__:null,foo:{}},n=Object;b.exports=function(){return{__proto__:A}.foo===A.foo&&!(A instanceof n)}},73257:function(b,A,n){"use strict";var B=typeof Symbol<"u"&&Symbol,a=n(12843);b.exports=function(){return"function"==typeof B&&"function"==typeof Symbol&&"symbol"==typeof B("foo")&&"symbol"==typeof Symbol("bar")&&a()}},12843:function(b){"use strict";b.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var n={},B=Symbol("test"),a=Object(B);if("string"==typeof B||"[object Symbol]"!==Object.prototype.toString.call(B)||"[object Symbol]"!==Object.prototype.toString.call(a))return!1;for(B in n[B]=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 o=Object.getOwnPropertySymbols(n);if(1!==o.length||o[0]!==B||!Object.prototype.propertyIsEnumerable.call(n,B))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var g=Object.getOwnPropertyDescriptor(n,B);if(42!==g.value||!0!==g.enumerable)return!1}return!0}},26626:function(b,A,n){"use strict";var B=n(12843);b.exports=function(){return B()&&!!Symbol.toStringTag}},55215:function(b,A,n){"use strict";var B=Function.prototype.call,a=Object.prototype.hasOwnProperty,s=n(5049);b.exports=s.call(B,a)},35143:function(b,A,n){"use strict";var B=n(16696).Buffer;A._dbcs=r;for(var a=-1,s=-2,o=-10,g=-1e3,f=new Array(256),u=0;u<256;u++)f[u]=a;function r(e,h){if(this.encodingName=e.encodingName,!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var Q=e.table();this.decodeTables=[],this.decodeTables[0]=f.slice(0),this.decodeTableSeq=[];for(var I=0;Ig)throw new Error("gb18030 decode tables conflict at byte 2");for(var Y=this.decodeTables[g-y[x]],v=129;v<=254;v++){if(Y[v]===a)Y[v]=g-p;else{if(Y[v]===g-p)continue;if(Y[v]>g)throw new Error("gb18030 decode tables conflict at byte 3")}for(var S=this.decodeTables[g-Y[v]],z=48;z<=57;z++)S[z]===a&&(S[z]=s)}}}this.defaultCharUnicode=h.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var F={};if(e.encodeSkipVals)for(I=0;Ih)return-1;for(var Q=0,I=e.length;Q>1);e[R]<=h?Q=R:I=R}return Q}r.prototype.encoder=d,r.prototype.decoder=E,r.prototype._getDecodeTrieNode=function(e){for(var h=[];e>0;e>>>=8)h.push(255&e);0==h.length&&h.push(0);for(var Q=this.decodeTables[0],I=h.length-1;I>0;I--){var R=Q[h[I]];if(R==a)Q[h[I]]=g-this.decodeTables.length,this.decodeTables.push(Q=f.slice(0));else{if(!(R<=g))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16));Q=this.decodeTables[g-R]}}return Q},r.prototype._addDecodeChunk=function(e){var h=parseInt(e[0],16),Q=this._getDecodeTrieNode(h);h&=255;for(var I=1;I255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+h)},r.prototype._getEncodeBucket=function(e){var h=e>>8;return void 0===this.encodeTable[h]&&(this.encodeTable[h]=f.slice(0)),this.encodeTable[h]},r.prototype._setEncodeChar=function(e,h){var Q=this._getEncodeBucket(e),I=255&e;Q[I]<=o?this.encodeTableSeq[o-Q[I]][-1]=h:Q[I]==a&&(Q[I]=h)},r.prototype._setEncodeSequence=function(e,h){var p,Q=e[0],I=this._getEncodeBucket(Q),R=255&Q;I[R]<=o?p=this.encodeTableSeq[o-I[R]]:(p={},I[R]!==a&&(p[-1]=I[R]),I[R]=o-this.encodeTableSeq.length,this.encodeTableSeq.push(p));for(var m=1;m=0)this._setEncodeChar(y,x),R=!0;else if(y<=g){var Y=g-y;p[Y]||(this._fillEncodeTable(Y,x<<8>>>0,Q)?R=!0:p[Y]=!0)}else y<=o&&(this._setEncodeSequence(this.decodeTableSeq[o-y],x),R=!0)}return R},d.prototype.write=function(e){for(var h=B.alloc(e.length*(this.gb18030?4:3)),Q=this.leadSurrogate,I=this.seqObj,R=-1,p=0,m=0;;){if(-1===R){if(p==e.length)break;var y=e.charCodeAt(p++)}else y=R,R=-1;if(55296<=y&&y<57344)if(y<56320){if(-1===Q){Q=y;continue}Q=y,y=a}else-1!==Q?(y=65536+1024*(Q-55296)+(y-56320),Q=-1):y=a;else-1!==Q&&(R=y,y=a,Q=-1);var x=a;if(void 0!==I&&y!=a){var Y=I[y];if("object"==typeof Y){I=Y;continue}"number"==typeof Y?x=Y:null==Y&&void 0!==(Y=I[-1])&&(x=Y,R=y),I=void 0}else if(y>=0){var v=this.encodeTable[y>>8];if(void 0!==v&&(x=v[255&y]),x<=o){I=this.encodeTableSeq[o-x];continue}if(x==a&&this.gb18030){var S=C(this.gb18030.uChars,y);if(-1!=S){x=this.gb18030.gbChars[S]+(y-this.gb18030.uChars[S]),h[m++]=129+Math.floor(x/12600),x%=12600,h[m++]=48+Math.floor(x/1260),x%=1260,h[m++]=129+Math.floor(x/10),h[m++]=48+(x%=10);continue}}}x===a&&(x=this.defaultCharSingleByte),x<256?h[m++]=x:x<65536?(h[m++]=x>>8,h[m++]=255&x):x<16777216?(h[m++]=x>>16,h[m++]=x>>8&255,h[m++]=255&x):(h[m++]=x>>>24,h[m++]=x>>>16&255,h[m++]=x>>>8&255,h[m++]=255&x)}return this.seqObj=I,this.leadSurrogate=Q,h.slice(0,m)},d.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var e=B.alloc(10),h=0;if(this.seqObj){var Q=this.seqObj[-1];void 0!==Q&&(Q<256?e[h++]=Q:(e[h++]=Q>>8,e[h++]=255&Q)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(e[h++]=this.defaultCharSingleByte,this.leadSurrogate=-1),e.slice(0,h)}},d.prototype.findIdx=C,E.prototype.write=function(e){for(var h=B.alloc(2*e.length),Q=this.nodeIdx,I=this.prevBytes,R=this.prevBytes.length,p=-this.prevBytes.length,y=0,x=0;y=0?e[y]:I[y+R];if(!((m=this.decodeTables[Q][Y])>=0))if(m===a)m=this.defaultCharUnicode.charCodeAt(0),y=p;else if(m===s){if(y>=3)var v=12600*(e[y-3]-129)+1260*(e[y-2]-48)+10*(e[y-1]-129)+(Y-48);else v=12600*(I[y-3+R]-129)+1260*((y-2>=0?e[y-2]:I[y-2+R])-48)+10*((y-1>=0?e[y-1]:I[y-1+R])-129)+(Y-48);var S=C(this.gb18030.gbChars,v);m=this.gb18030.uChars[S]+v-this.gb18030.gbChars[S]}else{if(m<=g){Q=g-m;continue}if(!(m<=o))throw new Error("iconv-lite internal error: invalid decoding table value "+m+" at "+Q+"/"+Y);for(var z=this.decodeTableSeq[o-m],F=0;F>8;m=z[z.length-1]}if(m>=65536){var $=55296|(m-=65536)>>10;h[x++]=255&$,h[x++]=$>>8,m=56320|1023&m}h[x++]=255&m,h[x++]=m>>8,Q=0,p=y+1}return this.nodeIdx=Q,this.prevBytes=p>=0?Array.prototype.slice.call(e,p):I.slice(p+R).concat(Array.prototype.slice.call(e)),h.slice(0,x).toString("ucs2")},E.prototype.end=function(){for(var e="";this.prevBytes.length>0;){e+=this.defaultCharUnicode;var h=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,h.length>0&&(e+=this.write(h))}return this.prevBytes=[],this.nodeIdx=0,e}},90481:function(b,A,n){"use strict";b.exports={shiftjis:{type:"_dbcs",table:function(){return n(40679)},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(56406)},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(74488)}},gbk:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))},gb18030:function(){return n(99129)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(21166)}},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(72324)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(72324).concat(n(43267))},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"}},26326:function(b,A,n){"use strict";for(var B=[n(16793),n(24162),n(17100),n(11326),n(99948),n(99900),n(81492),n(35143),n(90481)],a=0;a>>6),d[E++]=128+(63&e)):(d[E++]=224+(e>>>12),d[E++]=128+(e>>>6&63),d[E++]=128+(63&e))}return d.slice(0,E)},w.prototype.end=function(){},u.prototype.write=function(r){for(var d=this.acc,E=this.contBytes,C=this.accBytes,e="",h=0;h0&&(e+=this.defaultCharUnicode,E=0),Q<128?e+=String.fromCharCode(Q):Q<224?(d=31&Q,E=1,C=1):Q<240?(d=15&Q,E=2,C=1):e+=this.defaultCharUnicode):E>0?(d=d<<6|63&Q,C++,0==--E&&(e+=2===C&&d<128&&d>0||3===C&&d<2048?this.defaultCharUnicode:String.fromCharCode(d))):e+=this.defaultCharUnicode}return this.acc=d,this.contBytes=E,this.accBytes=C,e},u.prototype.end=function(){var r=0;return this.contBytes>0&&(r+=this.defaultCharUnicode),r}},99948:function(b,A,n){"use strict";var B=n(16696).Buffer;function a(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 w="",u=0;u<128;u++)w+=String.fromCharCode(u);g.chars=w+g.chars}this.decodeBuf=B.from(g.chars,"ucs2");var r=B.alloc(65536,f.defaultCharSingleByte.charCodeAt(0));for(u=0;u?@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"}}},99900:function(b){"use strict";b.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"}},17100:function(b,A,n){"use strict";var B=n(16696).Buffer;function a(){}function s(){}function o(){this.overflowByte=-1}function g(r,d){this.iconv=d}function f(r,d){void 0===(r=r||{}).addBOM&&(r.addBOM=!0),this.encoder=d.iconv.getEncoder("utf-16le",r)}function w(r,d){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=r||{},this.iconv=d.iconv}function u(r,d){var E=[],C=0,e=0,h=0;A:for(var Q=0;Q=100)break A}return h>e?"utf-16be":h1114111)&&(C=e),C>=65536){var h=55296|(C-=65536)>>10;d[E++]=255&h,d[E++]=h>>8,C=56320|1023&C}return d[E++]=255&C,d[E++]=C>>8,E}function f(d,E){this.iconv=E}function w(d,E){void 0===(d=d||{}).addBOM&&(d.addBOM=!0),this.encoder=E.iconv.getEncoder(d.defaultEncoding||"utf-32le",d)}function u(d,E){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=d||{},this.iconv=E.iconv}function r(d,E){var C=[],e=0,h=0,Q=0,I=0,R=0;A:for(var p=0;p16)&&Q++,(0!==C[3]||C[2]>16)&&h++,0===C[0]&&0===C[1]&&(0!==C[2]||0!==C[3])&&R++,(0!==C[0]||0!==C[1])&&0===C[2]&&0===C[3]&&I++,C.length=0,++e>=100)break A}return R-Q>I-h?"utf-32be":R-Q0){for(;E0&&(I=this.iconv.decode(B.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",I},A.utf7imap=C,C.prototype.encoder=e,C.prototype.decoder=h,C.prototype.bomAware=!0,e.prototype.write=function(I){for(var R=this.inBase64,p=this.base64Accum,m=this.base64AccumIdx,y=B.alloc(5*I.length+10),x=0,Y=0;Y0&&(x+=y.write(p.slice(0,m).toString("base64").replace(/\//g,",").replace(/=+$/,""),x),m=0),y[x++]=d,R=!1),R||(y[x++]=v,38===v&&(y[x++]=d))):(R||(y[x++]=38,R=!0),R&&(p[m++]=v>>8,p[m++]=255&v,m==p.length&&(x+=y.write(p.toString("base64").replace(/\//g,","),x),m=0)))}return this.inBase64=R,this.base64AccumIdx=m,y.slice(0,x)},e.prototype.end=function(){var I=B.alloc(10),R=0;return this.inBase64&&(this.base64AccumIdx>0&&(R+=I.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),R),this.base64AccumIdx=0),I[R++]=d,this.inBase64=!1),I.slice(0,R)};var Q=w.slice();Q[44]=!0,h.prototype.write=function(I){for(var R="",p=0,m=this.inBase64,y=this.base64Accum,x=0;x0&&(I=this.iconv.decode(B.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",I}},52331:function(b,A){"use strict";function B(s,o){this.encoder=s,this.addBOM=!0}function a(s,o){this.decoder=s,this.pass=!1,this.options=o||{}}A.PrependBOM=B,B.prototype.write=function(s){return this.addBOM&&(s="\ufeff"+s,this.addBOM=!1),this.encoder.write(s)},B.prototype.end=function(){return this.encoder.end()},A.StripBOM=a,a.prototype.write=function(s){var o=this.decoder.write(s);return this.pass||!o||("\ufeff"===o[0]&&(o=o.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),o},a.prototype.end=function(){return this.decoder.end()}},54171:function(b,A,n){"use strict";var o,B=n(16696).Buffer,a=n(52331),s=b.exports;s.encodings=null,s.defaultCharUnicode="\ufffd",s.defaultCharSingleByte="?",s.encode=function(f,w,u){f=""+(f||"");var r=s.getEncoder(w,u),d=r.write(f),E=r.end();return E&&E.length>0?B.concat([d,E]):d},s.decode=function(f,w,u){"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=B.from(""+(f||""),"binary"));var r=s.getDecoder(w,u),d=r.write(f),E=r.end();return E?d+E:d},s.encodingExists=function(f){try{return s.getCodec(f),!0}catch{return!1}},s.toEncoding=s.encode,s.fromEncoding=s.decode,s._codecDataCache={},s.getCodec=function(f){s.encodings||(s.encodings=n(26326));for(var w=s._canonicalizeEncoding(f),u={};;){var r=s._codecDataCache[w];if(r)return r;var d=s.encodings[w];switch(typeof d){case"string":w=d;break;case"object":for(var E in d)u[E]=d[E];u.encodingName||(u.encodingName=w),w=d.type;break;case"function":return u.encodingName||(u.encodingName=w),r=new d(u,s),s._codecDataCache[u.encodingName]=r,r;default:throw new Error("Encoding not recognized: '"+f+"' (searched as: '"+w+"')")}}},s._canonicalizeEncoding=function(g){return(""+g).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},s.getEncoder=function(f,w){var u=s.getCodec(f),r=new u.encoder(w,u);return u.bomAware&&w&&w.addBOM&&(r=new a.PrependBOM(r,w)),r},s.getDecoder=function(f,w){var u=s.getCodec(f),r=new u.decoder(w,u);return u.bomAware&&!(w&&!1===w.stripBOM)&&(r=new a.StripBOM(r,w)),r},s.enableStreamingAPI=function(f){if(!s.supportsStreams){var w=n(34506)(f);s.IconvLiteEncoderStream=w.IconvLiteEncoderStream,s.IconvLiteDecoderStream=w.IconvLiteDecoderStream,s.encodeStream=function(r,d){return new s.IconvLiteEncoderStream(s.getEncoder(r,d),d)},s.decodeStream=function(r,d){return new s.IconvLiteDecoderStream(s.getDecoder(r,d),d)},s.supportsStreams=!0}};try{o=n(16403)}catch{}o&&o.Transform?s.enableStreamingAPI(o):s.encodeStream=s.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},34506:function(b,A,n){"use strict";var B=n(16696).Buffer;b.exports=function(a){var s=a.Transform;function o(f,w){this.conv=f,(w=w||{}).decodeStrings=!1,s.call(this,w)}function g(f,w){this.conv=f,(w=w||{}).encoding=this.encoding="utf8",s.call(this,w)}return(o.prototype=Object.create(s.prototype,{constructor:{value:o}}))._transform=function(f,w,u){if("string"!=typeof f)return u(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r),u()}catch(d){u(d)}},o.prototype._flush=function(f){try{var w=this.conv.end();w&&w.length&&this.push(w),f()}catch(u){f(u)}},o.prototype.collect=function(f){var w=[];return this.on("error",f),this.on("data",function(u){w.push(u)}),this.on("end",function(){f(null,B.concat(w))}),this},(g.prototype=Object.create(s.prototype,{constructor:{value:g}}))._transform=function(f,w,u){if(!(B.isBuffer(f)||f instanceof Uint8Array))return u(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),u()}catch(d){u(d)}},g.prototype._flush=function(f){try{var w=this.conv.end();w&&w.length&&this.push(w,this.encoding),f()}catch(u){f(u)}},g.prototype.collect=function(f){var w="";return this.on("error",f),this.on("data",function(u){w+=u}),this.on("end",function(){f(null,w)}),this},{IconvLiteEncoderStream:o,IconvLiteDecoderStream:g}}},89029:function(b,A){A.read=function(n,B,a,s,o){var g,f,w=8*o-s-1,u=(1<>1,d=-7,E=a?o-1:0,C=a?-1:1,e=n[B+E];for(E+=C,g=e&(1<<-d)-1,e>>=-d,d+=w;d>0;g=256*g+n[B+E],E+=C,d-=8);for(f=g&(1<<-d)-1,g>>=-d,d+=s;d>0;f=256*f+n[B+E],E+=C,d-=8);if(0===g)g=1-r;else{if(g===u)return f?NaN:1/0*(e?-1:1);f+=Math.pow(2,s),g-=r}return(e?-1:1)*f*Math.pow(2,g-s)},A.write=function(n,B,a,s,o,g){var f,w,u,r=8*g-o-1,d=(1<>1,C=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,e=s?0:g-1,h=s?1:-1,Q=B<0||0===B&&1/B<0?1:0;for(B=Math.abs(B),isNaN(B)||B===1/0?(w=isNaN(B)?1:0,f=d):(f=Math.floor(Math.log(B)/Math.LN2),B*(u=Math.pow(2,-f))<1&&(f--,u*=2),(B+=f+E>=1?C/u:C*Math.pow(2,1-E))*u>=2&&(f++,u/=2),f+E>=d?(w=0,f=d):f+E>=1?(w=(B*u-1)*Math.pow(2,o),f+=E):(w=B*Math.pow(2,E-1)*Math.pow(2,o),f=0));o>=8;n[a+e]=255&w,e+=h,w/=256,o-=8);for(f=f<0;n[a+e]=255&f,e+=h,f/=256,r-=8);n[a+e-h]|=128*Q}},89784:function(b){b.exports="function"==typeof Object.create?function(n,B){B&&(n.super_=B,n.prototype=Object.create(B.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}))}:function(n,B){if(B){n.super_=B;var a=function(){};a.prototype=B.prototype,n.prototype=new a,n.prototype.constructor=n}}},67906:function(b,A,n){"use strict";var B=n(26626)(),s=n(67913)("Object.prototype.toString"),o=function(u){return!(B&&u&&"object"==typeof u&&Symbol.toStringTag in u)&&"[object Arguments]"===s(u)},g=function(u){return!!o(u)||null!==u&&"object"==typeof u&&"number"==typeof u.length&&u.length>=0&&"[object Array]"!==s(u)&&"[object Function]"===s(u.callee)},f=function(){return o(arguments)}();o.isLegacyArguments=g,b.exports=f?o:g},3746:function(b){"use strict";var B,a,A=Function.prototype.toString,n="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof n&&"function"==typeof Object.defineProperty)try{B=Object.defineProperty({},"length",{get:function(){throw a}}),a={},n(function(){throw 42},null,B)}catch(R){R!==a&&(n=null)}else n=null;var s=/^\s*class\b/,o=function(p){try{var m=A.call(p);return s.test(m)}catch{return!1}},g=function(p){try{return!o(p)&&(A.call(p),!0)}catch{return!1}},f=Object.prototype.toString,e="function"==typeof Symbol&&!!Symbol.toStringTag,h=!(0 in[,]),Q=function(){return!1};if("object"==typeof document){var I=document.all;f.call(I)===f.call(document.all)&&(Q=function(p){if((h||!p)&&(typeof p>"u"||"object"==typeof p))try{var m=f.call(p);return("[object HTMLAllCollection]"===m||"[object HTML document.all class]"===m||"[object HTMLCollection]"===m||"[object Object]"===m)&&null==p("")}catch{}return!1})}b.exports=n?function(p){if(Q(p))return!0;if(!p||"function"!=typeof p&&"object"!=typeof p)return!1;try{n(p,null,B)}catch(m){if(m!==a)return!1}return!o(p)&&g(p)}:function(p){if(Q(p))return!0;if(!p||"function"!=typeof p&&"object"!=typeof p)return!1;if(e)return g(p);if(o(p))return!1;var m=f.call(p);return!("[object Function]"!==m&&"[object GeneratorFunction]"!==m&&!/^\[object HTML/.test(m))&&g(p)}},71230:function(b,A,n){"use strict";var B=Date.prototype.getDay,s=Object.prototype.toString,g=n(26626)();b.exports=function(w){return"object"==typeof w&&null!==w&&(g?function(w){try{return B.call(w),!0}catch{return!1}}(w):"[object Date]"===s.call(w))}},44610:function(b,A,n){"use strict";var w,B=Object.prototype.toString,a=Function.prototype.toString,s=/^\s*(?:function)?\*/,o=n(26626)(),g=Object.getPrototypeOf;b.exports=function(r){if("function"!=typeof r)return!1;if(s.test(a.call(r)))return!0;if(!o)return"[object GeneratorFunction]"===B.call(r);if(!g)return!1;if(typeof w>"u"){var E=function(){if(!o)return!1;try{return Function("return function*() {}")()}catch{}}();w=!!E&&g(E)}return g(r)===w}},82621:function(b){"use strict";b.exports=function(n){return n!=n}},7051:function(b,A,n){"use strict";var B=n(26601),a=n(77802),s=n(82621),o=n(61320),g=n(35074),f=B(o(),Number);a(f,{getPolyfill:o,implementation:s,shim:g}),b.exports=f},61320:function(b,A,n){"use strict";var B=n(82621);b.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:B}},35074:function(b,A,n){"use strict";var B=n(77802),a=n(61320);b.exports=function(){var o=a();return B(Number,{isNaN:o},{isNaN:function(){return Number.isNaN!==o}}),o}},71689:function(b,A,n){"use strict";var s,o,g,f,B=n(67913),a=n(26626)();if(a){s=B("Object.prototype.hasOwnProperty"),o=B("RegExp.prototype.exec"),g={};var w=function(){throw g};f={toString:w,valueOf:w},"symbol"==typeof Symbol.toPrimitive&&(f[Symbol.toPrimitive]=w)}var u=B("Object.prototype.toString"),r=Object.getOwnPropertyDescriptor;b.exports=a?function(C){if(!C||"object"!=typeof C)return!1;var e=r(C,"lastIndex");if(!e||!s(e,"value"))return!1;try{o(C,f)}catch(Q){return Q===g}}:function(C){return!(!C||"object"!=typeof C&&"function"!=typeof C)&&"[object RegExp]"===u(C)}},46094:function(b,A,n){"use strict";var B=n(43381);b.exports=function(s){return!!B(s)}},63249:function(b){"use strict";var A=function(n){return n!=n};b.exports=function(B,a){return 0===B&&0===a?1/B==1/a:!!(B===a||A(B)&&A(a))}},98527:function(b,A,n){"use strict";var B=n(77802),a=n(26601),s=n(63249),o=n(89636),g=n(3534),f=a(o(),Object);B(f,{getPolyfill:o,implementation:s,shim:g}),b.exports=f},89636:function(b,A,n){"use strict";var B=n(63249);b.exports=function(){return"function"==typeof Object.is?Object.is:B}},3534:function(b,A,n){"use strict";var B=n(89636),a=n(77802);b.exports=function(){var o=B();return a(Object,{is:o},{is:function(){return Object.is!==o}}),o}},48461:function(b,A,n){"use strict";var B;if(!Object.keys){var a=Object.prototype.hasOwnProperty,s=Object.prototype.toString,o=n(76515),g=Object.prototype.propertyIsEnumerable,f=!g.call({toString:null},"toString"),w=g.call(function(){},"prototype"),u=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],r=function(e){var h=e.constructor;return h&&h.prototype===e},d={$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(typeof window>"u")return!1;for(var e in window)try{if(!d["$"+e]&&a.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{r(window[e])}catch{return!0}}catch{return!0}return!1}();B=function(h){var Q=null!==h&&"object"==typeof h,I="[object Function]"===s.call(h),R=o(h),p=Q&&"[object String]"===s.call(h),m=[];if(!Q&&!I&&!R)throw new TypeError("Object.keys called on a non-object");var y=w&&I;if(p&&h.length>0&&!a.call(h,0))for(var x=0;x0)for(var Y=0;Y"u"||!E)return r(e);try{return r(e)}catch{return!1}}(h),z=0;z=0&&"[object Function]"===A.call(B.callee)),s}},36521:function(b,A,n){"use strict";var B=n(35643),a=n(12843)(),s=n(67913),o=Object,g=s("Array.prototype.push"),f=s("Object.prototype.propertyIsEnumerable"),w=a?Object.getOwnPropertySymbols:null;b.exports=function(r,d){if(null==r)throw new TypeError("target must be an object");var E=o(r);if(1===arguments.length)return E;for(var C=1;C>>16&65535,f=0;0!==a;){a-=f=a>2e3?2e3:a;do{g=g+(o=o+B[s++]|0)|0}while(--f);o%=65521,g%=65521}return o|g<<16}},81607:function(b){"use strict";b.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}},99049:function(b){"use strict";var n=function A(){for(var a,s=[],o=0;o<256;o++){a=o;for(var g=0;g<8;g++)a=1&a?3988292384^a>>>1:a>>>1;s[o]=a}return s}();b.exports=function B(a,s,o,g){var f=n,w=g+o;a^=-1;for(var u=g;u>>8^f[255&(a^s[u])];return~a}},22925:function(b,A,n){"use strict";var vt,B=n(72519),a=n(22367),s=n(46911),o=n(99049),g=n(56228),f=0,r=4,E=0,e=-2,I=-1,y=4,Y=2,v=8,S=9,_=286,fA=30,iA=19,wA=2*_+1,IA=15,FA=3,YA=258,HA=YA+FA+1,BA=42,OA=113,W=666,L=1,rA=2,AA=3,QA=4;function cA(O,qA){return O.msg=g[qA],qA}function CA(O){return(O<<1)-(O>4?9:0)}function DA(O){for(var qA=O.length;--qA>=0;)O[qA]=0}function NA(O){var qA=O.state,nt=qA.pending;nt>O.avail_out&&(nt=O.avail_out),0!==nt&&(B.arraySet(O.output,qA.pending_buf,qA.pending_out,nt,O.next_out),O.next_out+=nt,qA.pending_out+=nt,O.total_out+=nt,O.avail_out-=nt,qA.pending-=nt,0===qA.pending&&(qA.pending_out=0))}function zA(O,qA){a._tr_flush_block(O,O.block_start>=0?O.block_start:-1,O.strstart-O.block_start,qA),O.block_start=O.strstart,NA(O.strm)}function pA(O,qA){O.pending_buf[O.pending++]=qA}function JA(O,qA){O.pending_buf[O.pending++]=qA>>>8&255,O.pending_buf[O.pending++]=255&qA}function ft(O,qA,nt,MA){var jA=O.avail_in;return jA>MA&&(jA=MA),0===jA?0:(O.avail_in-=jA,B.arraySet(qA,O.input,O.next_in,jA,nt),1===O.state.wrap?O.adler=s(O.adler,qA,jA,nt):2===O.state.wrap&&(O.adler=o(O.adler,qA,jA,nt)),O.next_in+=jA,O.total_in+=jA,jA)}function wt(O,qA){var jA,ot,nt=O.max_chain_length,MA=O.strstart,Tt=O.prev_length,yt=O.nice_match,Ut=O.strstart>O.w_size-HA?O.strstart-(O.w_size-HA):0,Lt=O.window,sn=O.w_mask,$t=O.prev,Kt=O.strstart+YA,Me=Lt[MA+Tt-1],ze=Lt[MA+Tt];O.prev_length>=O.good_match&&(nt>>=2),yt>O.lookahead&&(yt=O.lookahead);do{if(Lt[(jA=qA)+Tt]===ze&&Lt[jA+Tt-1]===Me&&Lt[jA]===Lt[MA]&&Lt[++jA]===Lt[MA+1]){MA+=2,jA++;do{}while(Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&MATt){if(O.match_start=qA,Tt=ot,ot>=yt)break;Me=Lt[MA+Tt-1],ze=Lt[MA+Tt]}}}while((qA=$t[qA&sn])>Ut&&0!=--nt);return Tt<=O.lookahead?Tt:O.lookahead}function gt(O){var nt,MA,jA,ot,Tt,qA=O.w_size;do{if(ot=O.window_size-O.lookahead-O.strstart,O.strstart>=qA+(qA-HA)){B.arraySet(O.window,O.window,qA,qA,0),O.match_start-=qA,O.strstart-=qA,O.block_start-=qA,nt=MA=O.hash_size;do{jA=O.head[--nt],O.head[nt]=jA>=qA?jA-qA:0}while(--MA);nt=MA=qA;do{jA=O.prev[--nt],O.prev[nt]=jA>=qA?jA-qA:0}while(--MA);ot+=qA}if(0===O.strm.avail_in)break;if(MA=ft(O.strm,O.window,O.strstart+O.lookahead,ot),O.lookahead+=MA,O.lookahead+O.insert>=FA)for(O.ins_h=O.window[Tt=O.strstart-O.insert],O.ins_h=(O.ins_h<=FA&&(O.ins_h=(O.ins_h<=FA)if(MA=a._tr_tally(O,O.strstart-O.match_start,O.match_length-FA),O.lookahead-=O.match_length,O.match_length<=O.max_lazy_match&&O.lookahead>=FA){O.match_length--;do{O.strstart++,O.ins_h=(O.ins_h<=FA&&(O.ins_h=(O.ins_h<4096)&&(O.match_length=FA-1)),O.prev_length>=FA&&O.match_length<=O.prev_length){jA=O.strstart+O.lookahead-FA,MA=a._tr_tally(O,O.strstart-1-O.prev_match,O.prev_length-FA),O.lookahead-=O.prev_length-1,O.prev_length-=2;do{++O.strstart<=jA&&(O.ins_h=(O.ins_h<15&&(Tt=2,MA-=16),jA<1||jA>S||nt!==v||MA<8||MA>15||qA<0||qA>9||ot<0||ot>y)return cA(O,e);8===MA&&(MA=9);var yt=new vA;return O.state=yt,yt.strm=O,yt.wrap=Tt,yt.gzhead=null,yt.w_bits=MA,yt.w_size=1<O.pending_buf_size-5&&(nt=O.pending_buf_size-5);;){if(O.lookahead<=1){if(gt(O),0===O.lookahead&&qA===f)return L;if(0===O.lookahead)break}O.strstart+=O.lookahead,O.lookahead=0;var MA=O.block_start+nt;if((0===O.strstart||O.strstart>=MA)&&(O.lookahead=O.strstart-MA,O.strstart=MA,zA(O,!1),0===O.strm.avail_out)||O.strstart-O.block_start>=O.w_size-HA&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):(O.strstart>O.block_start&&zA(O,!1),L)}),new ht(4,4,8,4,Yt),new ht(4,5,16,8,Yt),new ht(4,6,32,32,Yt),new ht(4,4,16,16,VA),new ht(8,16,32,32,VA),new ht(8,16,128,128,VA),new ht(8,32,128,256,VA),new ht(32,128,258,1024,VA),new ht(32,258,258,4096,VA)],A.deflateInit=function hA(O,qA){return U(O,qA,v,15,8,0)},A.deflateInit2=U,A.deflateReset=Z,A.deflateResetKeep=Bt,A.deflateSetHeader=function k(O,qA){return O&&O.state&&2===O.state.wrap?(O.state.gzhead=qA,E):e},A.deflate=function q(O,qA){var nt,MA,jA,ot;if(!O||!O.state||qA>5||qA<0)return O?cA(O,e):e;if(MA=O.state,!O.output||!O.input&&0!==O.avail_in||MA.status===W&&qA!==r)return cA(O,0===O.avail_out?-5:e);if(MA.strm=O,nt=MA.last_flush,MA.last_flush=qA,MA.status===BA)if(2===MA.wrap)O.adler=0,pA(MA,31),pA(MA,139),pA(MA,8),MA.gzhead?(pA(MA,(MA.gzhead.text?1:0)+(MA.gzhead.hcrc?2:0)+(MA.gzhead.extra?4:0)+(MA.gzhead.name?8:0)+(MA.gzhead.comment?16:0)),pA(MA,255&MA.gzhead.time),pA(MA,MA.gzhead.time>>8&255),pA(MA,MA.gzhead.time>>16&255),pA(MA,MA.gzhead.time>>24&255),pA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),pA(MA,255&MA.gzhead.os),MA.gzhead.extra&&MA.gzhead.extra.length&&(pA(MA,255&MA.gzhead.extra.length),pA(MA,MA.gzhead.extra.length>>8&255)),MA.gzhead.hcrc&&(O.adler=o(O.adler,MA.pending_buf,MA.pending,0)),MA.gzindex=0,MA.status=69):(pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),pA(MA,3),MA.status=OA);else{var Tt=v+(MA.w_bits-8<<4)<<8;Tt|=(MA.strategy>=2||MA.level<2?0:MA.level<6?1:6===MA.level?2:3)<<6,0!==MA.strstart&&(Tt|=32),Tt+=31-Tt%31,MA.status=OA,JA(MA,Tt),0!==MA.strstart&&(JA(MA,O.adler>>>16),JA(MA,65535&O.adler)),O.adler=1}if(69===MA.status)if(MA.gzhead.extra){for(jA=MA.pending;MA.gzindex<(65535&MA.gzhead.extra.length)&&(MA.pending!==MA.pending_buf_size||(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending!==MA.pending_buf_size));)pA(MA,255&MA.gzhead.extra[MA.gzindex]),MA.gzindex++;MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),MA.gzindex===MA.gzhead.extra.length&&(MA.gzindex=0,MA.status=73)}else MA.status=73;if(73===MA.status)if(MA.gzhead.name){jA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending===MA.pending_buf_size)){ot=1;break}ot=MA.gzindexjA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),0===ot&&(MA.gzindex=0,MA.status=91)}else MA.status=91;if(91===MA.status)if(MA.gzhead.comment){jA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending===MA.pending_buf_size)){ot=1;break}ot=MA.gzindexjA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),0===ot&&(MA.status=103)}else MA.status=103;if(103===MA.status&&(MA.gzhead.hcrc?(MA.pending+2>MA.pending_buf_size&&NA(O),MA.pending+2<=MA.pending_buf_size&&(pA(MA,255&O.adler),pA(MA,O.adler>>8&255),O.adler=0,MA.status=OA)):MA.status=OA),0!==MA.pending){if(NA(O),0===O.avail_out)return MA.last_flush=-1,E}else if(0===O.avail_in&&CA(qA)<=CA(nt)&&qA!==r)return cA(O,-5);if(MA.status===W&&0!==O.avail_in)return cA(O,-5);if(0!==O.avail_in||0!==MA.lookahead||qA!==f&&MA.status!==W){var Ut=2===MA.strategy?function Qt(O,qA){for(var nt;;){if(0===O.lookahead&&(gt(O),0===O.lookahead)){if(qA===f)return L;break}if(O.match_length=0,nt=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++,nt&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?L:rA}(MA,qA):3===MA.strategy?function _A(O,qA){for(var nt,MA,jA,ot,Tt=O.window;;){if(O.lookahead<=YA){if(gt(O),O.lookahead<=YA&&qA===f)return L;if(0===O.lookahead)break}if(O.match_length=0,O.lookahead>=FA&&O.strstart>0&&(MA=Tt[jA=O.strstart-1])===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]){ot=O.strstart+YA;do{}while(MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&jAO.lookahead&&(O.match_length=O.lookahead)}if(O.match_length>=FA?(nt=a._tr_tally(O,1,O.match_length-FA),O.lookahead-=O.match_length,O.strstart+=O.match_length,O.match_length=0):(nt=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++),nt&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?L:rA}(MA,qA):vt[MA.level].func(MA,qA);if((Ut===AA||Ut===QA)&&(MA.status=W),Ut===L||Ut===AA)return 0===O.avail_out&&(MA.last_flush=-1),E;if(Ut===rA&&(1===qA?a._tr_align(MA):5!==qA&&(a._tr_stored_block(MA,0,0,!1),3===qA&&(DA(MA.head),0===MA.lookahead&&(MA.strstart=0,MA.block_start=0,MA.insert=0))),NA(O),0===O.avail_out))return MA.last_flush=-1,E}return qA!==r?E:MA.wrap<=0?1:(2===MA.wrap?(pA(MA,255&O.adler),pA(MA,O.adler>>8&255),pA(MA,O.adler>>16&255),pA(MA,O.adler>>24&255),pA(MA,255&O.total_in),pA(MA,O.total_in>>8&255),pA(MA,O.total_in>>16&255),pA(MA,O.total_in>>24&255)):(JA(MA,O.adler>>>16),JA(MA,65535&O.adler)),NA(O),MA.wrap>0&&(MA.wrap=-MA.wrap),0!==MA.pending?E:1)},A.deflateEnd=function GA(O){var qA;return O&&O.state?(qA=O.state.status)!==BA&&69!==qA&&73!==qA&&91!==qA&&103!==qA&&qA!==OA&&qA!==W?cA(O,e):(O.state=null,qA===OA?cA(O,-3):E):e},A.deflateSetDictionary=function At(O,qA){var MA,jA,ot,Tt,yt,Ut,Lt,sn,nt=qA.length;if(!O||!O.state||2===(Tt=(MA=O.state).wrap)||1===Tt&&MA.status!==BA||MA.lookahead)return e;for(1===Tt&&(O.adler=s(O.adler,qA,nt,0)),MA.wrap=0,nt>=MA.w_size&&(0===Tt&&(DA(MA.head),MA.strstart=0,MA.block_start=0,MA.insert=0),sn=new B.Buf8(MA.w_size),B.arraySet(sn,qA,nt-MA.w_size,MA.w_size,0),qA=sn,nt=MA.w_size),yt=O.avail_in,Ut=O.next_in,Lt=O.input,O.avail_in=nt,O.next_in=0,O.input=qA,gt(MA);MA.lookahead>=FA;){jA=MA.strstart,ot=MA.lookahead-(FA-1);do{MA.ins_h=(MA.ins_h<>>=Y=x>>>24,I-=Y,0==(Y=x>>>16&255))gA[w++]=65535&x;else{if(!(16&Y)){if(64&Y){if(32&Y){o.mode=12;break A}a.msg="invalid literal/length code",o.mode=30;break A}x=R[(65535&x)+(Q&(1<>>=Y,I-=Y),I<15&&(Q+=$[g++]<>>=Y=x>>>24,I-=Y,16&(Y=x>>>16&255)){if(S=65535&x,I<(Y&=15)&&(Q+=$[g++]<d){a.msg="invalid distance too far back",o.mode=30;break A}if(Q>>>=Y,I-=Y,S>(Y=w-u)){if((Y=S-Y)>C&&o.sane){a.msg="invalid distance too far back",o.mode=30;break A}if(z=0,F=h,0===e){if(z+=E-Y,Y2;)gA[w++]=F[z++],gA[w++]=F[z++],gA[w++]=F[z++],v-=3;v&&(gA[w++]=F[z++],v>1&&(gA[w++]=F[z++]))}else{z=w-S;do{gA[w++]=gA[z++],gA[w++]=gA[z++],gA[w++]=gA[z++],v-=3}while(v>2);v&&(gA[w++]=gA[z++],v>1&&(gA[w++]=gA[z++]))}break}if(64&Y){a.msg="invalid distance code",o.mode=30;break A}x=p[(65535&x)+(Q&(1<>3)<<3))-1,a.next_in=g-=v,a.next_out=w,a.avail_in=g>>24&255)+(U>>>8&65280)+((65280&U)<<8)+((255&U)<<24)}function ft(){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 B.Buf16(320),this.work=new B.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function wt(U){var hA;return U&&U.state?(U.total_in=U.total_out=(hA=U.state).total=0,U.msg="",hA.wrap&&(U.adler=1&hA.wrap),hA.mode=y,hA.last=0,hA.havedict=0,hA.dmax=32768,hA.head=null,hA.hold=0,hA.bits=0,hA.lencode=hA.lendyn=new B.Buf32(DA),hA.distcode=hA.distdyn=new B.Buf32(NA),hA.sane=1,hA.back=-1,C):Q}function gt(U){var hA;return U&&U.state?((hA=U.state).wsize=0,hA.whave=0,hA.wnext=0,wt(U)):Q}function pt(U,hA){var q,GA;return!U||!U.state||(GA=U.state,hA<0?(q=0,hA=-hA):(q=1+(hA>>4),hA<48&&(hA&=15)),hA&&(hA<8||hA>15))?Q:(null!==GA.window&&GA.wbits!==hA&&(GA.window=null),GA.wrap=q,GA.wbits=hA,gt(U))}function Yt(U,hA){var q,GA;return U?(GA=new ft,U.state=GA,GA.window=null,(q=pt(U,hA))!==C&&(U.state=null),q):Q}var Qt,ht,_A=!0;function vt(U){if(_A){var hA;for(Qt=new B.Buf32(512),ht=new B.Buf32(32),hA=0;hA<144;)U.lens[hA++]=8;for(;hA<256;)U.lens[hA++]=9;for(;hA<280;)U.lens[hA++]=7;for(;hA<288;)U.lens[hA++]=8;for(g(w,U.lens,0,288,Qt,0,U.work,{bits:9}),hA=0;hA<32;)U.lens[hA++]=5;g(u,U.lens,0,32,ht,0,U.work,{bits:5}),_A=!1}U.lencode=Qt,U.lenbits=9,U.distcode=ht,U.distbits=5}function Nt(U,hA,q,GA){var At,O=U.state;return null===O.window&&(O.wsize=1<=O.wsize?(B.arraySet(O.window,hA,q-O.wsize,O.wsize,0),O.wnext=0,O.whave=O.wsize):((At=O.wsize-O.wnext)>GA&&(At=GA),B.arraySet(O.window,hA,q-GA,At,O.wnext),(GA-=At)?(B.arraySet(O.window,hA,q-GA,GA,0),O.wnext=GA,O.whave=O.wsize):(O.wnext+=At,O.wnext===O.wsize&&(O.wnext=0),O.whave>>8&255,q.check=s(q.check,Te,2,0),jA=0,ot=0,q.mode=2;break}if(q.flags=0,q.head&&(q.head.done=!1),!(1&q.wrap)||(((255&jA)<<8)+(jA>>8))%31){U.msg="incorrect header check",q.mode=30;break}if(8!=(15&jA)){U.msg="unknown compression method",q.mode=30;break}if(ot-=4,ee=8+(15&(jA>>>=4)),0===q.wbits)q.wbits=ee;else if(ee>q.wbits){U.msg="invalid window size",q.mode=30;break}q.dmax=1<>8&1),512&q.flags&&(Te[0]=255&jA,Te[1]=jA>>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0,q.mode=3;case 3:for(;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>8&255,Te[2]=jA>>>16&255,Te[3]=jA>>>24&255,q.check=s(q.check,Te,4,0)),jA=0,ot=0,q.mode=4;case 4:for(;ot<16;){if(0===nt)break A;nt--,jA+=GA[O++]<>8),512&q.flags&&(Te[0]=255&jA,Te[1]=jA>>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0,q.mode=5;case 5:if(1024&q.flags){for(;ot<16;){if(0===nt)break A;nt--,jA+=GA[O++]<>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0}else q.head&&(q.head.extra=null);q.mode=6;case 6:if(1024&q.flags&&((Ut=q.length)>nt&&(Ut=nt),Ut&&(q.head&&(ee=q.head.extra_len-q.length,q.head.extra||(q.head.extra=new Array(q.head.extra_len)),B.arraySet(q.head.extra,GA,O,Ut,ee)),512&q.flags&&(q.check=s(q.check,GA,Ut,O)),nt-=Ut,O+=Ut,q.length-=Ut),q.length))break A;q.length=0,q.mode=7;case 7:if(2048&q.flags){if(0===nt)break A;Ut=0;do{ee=GA[O+Ut++],q.head&&ee&&q.length<65536&&(q.head.name+=String.fromCharCode(ee))}while(ee&&Ut>9&1,q.head.done=!0),U.adler=q.check=0,q.mode=12;break;case 10:for(;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=7&ot,ot-=7&ot,q.mode=27;break}for(;ot<3;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=1)){case 0:q.mode=14;break;case 1:if(vt(q),q.mode=20,6===hA){jA>>>=2,ot-=2;break A}break;case 2:q.mode=17;break;case 3:U.msg="invalid block type",q.mode=30}jA>>>=2,ot-=2;break;case 14:for(jA>>>=7&ot,ot-=7&ot;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>16^65535)){U.msg="invalid stored block lengths",q.mode=30;break}if(q.length=65535&jA,jA=0,ot=0,q.mode=15,6===hA)break A;case 15:q.mode=16;case 16:if(Ut=q.length){if(Ut>nt&&(Ut=nt),Ut>MA&&(Ut=MA),0===Ut)break A;B.arraySet(At,GA,O,Ut,qA),nt-=Ut,O+=Ut,MA-=Ut,qA+=Ut,q.length-=Ut;break}q.mode=12;break;case 17:for(;ot<14;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=5)),ot-=5,q.ncode=4+(15&(jA>>>=5)),jA>>>=4,ot-=4,q.nlen>286||q.ndist>30){U.msg="too many length or distance symbols",q.mode=30;break}q.have=0,q.mode=18;case 18:for(;q.have>>=3,ot-=3}for(;q.have<19;)q.lens[In[q.have++]]=0;if(q.lencode=q.lendyn,q.lenbits=7,An=g(0,q.lens,0,19,q.lencode,0,q.work,Fe={bits:q.lenbits}),q.lenbits=Fe.bits,An){U.msg="invalid code lengths set",q.mode=30;break}q.have=0,q.mode=19;case 19:for(;q.have>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Kt,ot-=Kt,q.lens[q.have++]=ze;else{if(16===ze){for(Qe=Kt+2;ot>>=Kt,ot-=Kt,0===q.have){U.msg="invalid bit length repeat",q.mode=30;break}ee=q.lens[q.have-1],Ut=3+(3&jA),jA>>>=2,ot-=2}else if(17===ze){for(Qe=Kt+3;ot>>=Kt)),jA>>>=3,ot-=3}else{for(Qe=Kt+7;ot>>=Kt)),jA>>>=7,ot-=7}if(q.have+Ut>q.nlen+q.ndist){U.msg="invalid bit length repeat",q.mode=30;break}for(;Ut--;)q.lens[q.have++]=ee}}if(30===q.mode)break;if(0===q.lens[256]){U.msg="invalid code -- missing end-of-block",q.mode=30;break}if(q.lenbits=9,An=g(w,q.lens,0,q.nlen,q.lencode,0,q.work,Fe={bits:q.lenbits}),q.lenbits=Fe.bits,An){U.msg="invalid literal/lengths set",q.mode=30;break}if(q.distbits=6,q.distcode=q.distdyn,An=g(u,q.lens,q.nlen,q.ndist,q.distcode,0,q.work,Fe={bits:q.distbits}),q.distbits=Fe.bits,An){U.msg="invalid distances set",q.mode=30;break}if(q.mode=20,6===hA)break A;case 20:q.mode=21;case 21:if(nt>=6&&MA>=258){U.next_out=qA,U.avail_out=MA,U.next_in=O,U.avail_in=nt,q.hold=jA,q.bits=ot,o(U,yt),qA=U.next_out,At=U.output,MA=U.avail_out,O=U.next_in,GA=U.input,nt=U.avail_in,jA=q.hold,ot=q.bits,12===q.mode&&(q.back=-1);break}for(q.back=0;Me=($t=q.lencode[jA&(1<>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>Re)])>>>16&255,ze=65535&$t,!(Re+(Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Re,ot-=Re,q.back+=Re}if(jA>>>=Kt,ot-=Kt,q.back+=Kt,q.length=ze,0===Me){q.mode=26;break}if(32&Me){q.back=-1,q.mode=12;break}if(64&Me){U.msg="invalid literal/length code",q.mode=30;break}q.extra=15&Me,q.mode=22;case 22:if(q.extra){for(Qe=q.extra;ot>>=q.extra,ot-=q.extra,q.back+=q.extra}q.was=q.length,q.mode=23;case 23:for(;Me=($t=q.distcode[jA&(1<>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>Re)])>>>16&255,ze=65535&$t,!(Re+(Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Re,ot-=Re,q.back+=Re}if(jA>>>=Kt,ot-=Kt,q.back+=Kt,64&Me){U.msg="invalid distance code",q.mode=30;break}q.offset=ze,q.extra=15&Me,q.mode=24;case 24:if(q.extra){for(Qe=q.extra;ot>>=q.extra,ot-=q.extra,q.back+=q.extra}if(q.offset>q.dmax){U.msg="invalid distance too far back",q.mode=30;break}q.mode=25;case 25:if(0===MA)break A;if(q.offset>(Ut=yt-MA)){if((Ut=q.offset-Ut)>q.whave&&q.sane){U.msg="invalid distance too far back",q.mode=30;break}Lt=Ut>q.wnext?q.wsize-(Ut-=q.wnext):q.wnext-Ut,Ut>q.length&&(Ut=q.length),sn=q.window}else sn=At,Lt=qA-q.offset,Ut=q.length;Ut>MA&&(Ut=MA),MA-=Ut,q.length-=Ut;do{At[qA++]=sn[Lt++]}while(--Ut);0===q.length&&(q.mode=21);break;case 26:if(0===MA)break A;At[qA++]=q.length,MA--,q.mode=21;break;case 27:if(q.wrap){for(;ot<32;){if(0===nt)break A;nt--,jA|=GA[O++]<=1&&0===eA[z];z--);if(F>z&&(F=z),0===z)return R[p++]=20971520,R[p++]=20971520,y.bits=1,0;for(S=1;S0&&(0===e||1!==z))return-1;for(EA[1]=0,Y=1;Y852||2===e&&fA>592)return 1;for(;;){W=Y-gA,m[v]aA?(L=xA[OA+m[v]],rA=J[BA+m[v]]):(L=96,rA=0),wA=1<>gA)+(IA-=wA)]=W<<24|L<<16|rA}while(0!==IA);for(wA=1<>=1;if(0!==wA?(iA&=wA-1,iA+=wA):iA=0,v++,0==--eA[Y]){if(Y===z)break;Y=h[Q+m[v]]}if(Y>F&&(iA&YA)!==FA){for(0===gA&&(gA=F),HA+=S,_=1<<($=Y-gA);$+gA852||2===e&&fA>592)return 1;R[FA=iA&YA]=F<<24|$<<16|HA-p}}return 0!==iA&&(R[HA+iA]=4194304|Y-gA<<24),y.bits=F,0}},56228:function(b){"use strict";b.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"}},22367:function(b,A,n){"use strict";var B=n(72519),s=0,o=1;function f(vA){for(var Bt=vA.length;--Bt>=0;)vA[Bt]=0}var w=0,C=29,e=256,h=e+1+C,Q=30,I=19,R=2*h+1,p=15,m=16,y=7,x=256,Y=16,v=17,S=18,z=[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],F=[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],$=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],gA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],fA=new Array(2*(h+2));f(fA);var iA=new Array(2*Q);f(iA);var wA=new Array(512);f(wA);var IA=new Array(256);f(IA);var FA=new Array(C);f(FA);var J,BA,aA,YA=new Array(Q);function HA(vA,Bt,Z,k,U){this.static_tree=vA,this.extra_bits=Bt,this.extra_base=Z,this.elems=k,this.max_length=U,this.has_stree=vA&&vA.length}function eA(vA,Bt){this.dyn_tree=vA,this.max_code=0,this.stat_desc=Bt}function EA(vA){return vA<256?wA[vA]:wA[256+(vA>>>7)]}function xA(vA,Bt){vA.pending_buf[vA.pending++]=255&Bt,vA.pending_buf[vA.pending++]=Bt>>>8&255}function OA(vA,Bt,Z){vA.bi_valid>m-Z?(vA.bi_buf|=Bt<>m-vA.bi_valid,vA.bi_valid+=Z-m):(vA.bi_buf|=Bt<>>=1,Z<<=1}while(--Bt>0);return Z>>>1}function QA(vA,Bt,Z){var hA,q,k=new Array(p+1),U=0;for(hA=1;hA<=p;hA++)k[hA]=U=U+Z[hA-1]<<1;for(q=0;q<=Bt;q++){var GA=vA[2*q+1];0!==GA&&(vA[2*q]=L(k[GA]++,GA))}}function cA(vA){var Bt;for(Bt=0;Bt8?xA(vA,vA.bi_buf):vA.bi_valid>0&&(vA.pending_buf[vA.pending++]=vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0}function NA(vA,Bt,Z,k){var U=2*Bt,hA=2*Z;return vA[U]>1;q>=1;q--)zA(vA,Z,q);O=hA;do{q=vA.heap[1],vA.heap[1]=vA.heap[vA.heap_len--],zA(vA,Z,1),GA=vA.heap[1],vA.heap[--vA.heap_max]=q,vA.heap[--vA.heap_max]=GA,Z[2*O]=Z[2*q]+Z[2*GA],vA.depth[O]=(vA.depth[q]>=vA.depth[GA]?vA.depth[q]:vA.depth[GA])+1,Z[2*q+1]=Z[2*GA+1]=O,vA.heap[1]=O++,zA(vA,Z,1)}while(vA.heap_len>=2);vA.heap[--vA.heap_max]=vA.heap[1],function AA(vA,Bt){var O,qA,nt,MA,jA,ot,Z=Bt.dyn_tree,k=Bt.max_code,U=Bt.stat_desc.static_tree,hA=Bt.stat_desc.has_stree,q=Bt.stat_desc.extra_bits,GA=Bt.stat_desc.extra_base,At=Bt.stat_desc.max_length,Tt=0;for(MA=0;MA<=p;MA++)vA.bl_count[MA]=0;for(Z[2*vA.heap[vA.heap_max]+1]=0,O=vA.heap_max+1;OAt&&(MA=At,Tt++),Z[2*qA+1]=MA,!(qA>k)&&(vA.bl_count[MA]++,jA=0,qA>=GA&&(jA=q[qA-GA]),vA.opt_len+=(ot=Z[2*qA])*(MA+jA),hA&&(vA.static_len+=ot*(U[2*qA+1]+jA)));if(0!==Tt){do{for(MA=At-1;0===vA.bl_count[MA];)MA--;vA.bl_count[MA]--,vA.bl_count[MA+1]+=2,vA.bl_count[At]--,Tt-=2}while(Tt>0);for(MA=At;0!==MA;MA--)for(qA=vA.bl_count[MA];0!==qA;)!((nt=vA.heap[--O])>k)&&(Z[2*nt+1]!==MA&&(vA.opt_len+=(MA-Z[2*nt+1])*Z[2*nt],Z[2*nt+1]=MA),qA--)}}(vA,Bt),QA(Z,At,vA.bl_count)}function ft(vA,Bt,Z){var k,hA,U=-1,q=Bt[1],GA=0,At=7,O=4;for(0===q&&(At=138,O=3),Bt[2*(Z+1)+1]=65535,k=0;k<=Z;k++)hA=q,q=Bt[2*(k+1)+1],!(++GA>=7;k0?(2===vA.strm.data_type&&(vA.strm.data_type=function Yt(vA){var Z,Bt=4093624447;for(Z=0;Z<=31;Z++,Bt>>>=1)if(1&Bt&&0!==vA.dyn_ltree[2*Z])return s;if(0!==vA.dyn_ltree[18]||0!==vA.dyn_ltree[20]||0!==vA.dyn_ltree[26])return o;for(Z=32;Z=3&&0===vA.bl_tree[2*gA[Bt]+1];Bt--);return vA.opt_len+=3*(Bt+1)+5+5+4,Bt}(vA),(hA=vA.static_len+3+7>>>3)<=(U=vA.opt_len+3+7>>>3)&&(U=hA)):U=hA=Z+5,Z+4<=U&&-1!==Bt?Qt(vA,Bt,Z,k):4===vA.strategy||hA===U?(OA(vA,2+(k?1:0),3),pA(vA,fA,iA)):(OA(vA,4+(k?1:0),3),function pt(vA,Bt,Z,k){var U;for(OA(vA,Bt-257,5),OA(vA,Z-1,5),OA(vA,k-4,4),U=0;U>>8&255,vA.pending_buf[vA.d_buf+2*vA.last_lit+1]=255&Bt,vA.pending_buf[vA.l_buf+vA.last_lit]=255&Z,vA.last_lit++,0===Bt?vA.dyn_ltree[2*Z]++:(vA.matches++,Bt--,vA.dyn_ltree[2*(IA[Z]+e+1)]++,vA.dyn_dtree[2*EA(Bt)]++),vA.last_lit===vA.lit_bufsize-1},A._tr_align=function ht(vA){OA(vA,2,3),W(vA,x,fA),function rA(vA){16===vA.bi_valid?(xA(vA,vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0):vA.bi_valid>=8&&(vA.pending_buf[vA.pending++]=255&vA.bi_buf,vA.bi_buf>>=8,vA.bi_valid-=8)}(vA)}},37468:function(b){"use strict";b.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}},10884:function(b){"use strict";b.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},9964:function(b){var n,B,A=b.exports={};function a(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function o(h){if(n===setTimeout)return setTimeout(h,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(h,0);try{return n(h,0)}catch{try{return n.call(null,h,0)}catch{return n.call(this,h,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch{n=a}try{B="function"==typeof clearTimeout?clearTimeout:s}catch{B=s}}();var u,f=[],w=!1,r=-1;function d(){!w||!u||(w=!1,u.length?f=u.concat(f):r=-1,f.length&&E())}function E(){if(!w){var h=o(d);w=!0;for(var Q=f.length;Q;){for(u=f,f=[];++r1)for(var I=1;I"===AA?(_(L,"onsgmldeclaration",L.sgmlDecl),L.sgmlDecl="",L.state=F.TEXT):(Y(AA)&&(L.state=F.SGML_DECL_QUOTED),L.sgmlDecl+=AA);continue;case F.SGML_DECL_QUOTED:AA===L.q&&(L.state=F.SGML_DECL,L.q=""),L.sgmlDecl+=AA;continue;case F.DOCTYPE:">"===AA?(L.state=F.TEXT,_(L,"ondoctype",L.doctype),L.doctype=!0):(L.doctype+=AA,"["===AA?L.state=F.DOCTYPE_DTD:Y(AA)&&(L.state=F.DOCTYPE_QUOTED,L.q=AA));continue;case F.DOCTYPE_QUOTED:L.doctype+=AA,AA===L.q&&(L.q="",L.state=F.DOCTYPE);continue;case F.DOCTYPE_DTD:L.doctype+=AA,"]"===AA?L.state=F.DOCTYPE:Y(AA)&&(L.state=F.DOCTYPE_DTD_QUOTED,L.q=AA);continue;case F.DOCTYPE_DTD_QUOTED:L.doctype+=AA,AA===L.q&&(L.state=F.DOCTYPE_DTD,L.q="");continue;case F.COMMENT:"-"===AA?L.state=F.COMMENT_ENDING:L.comment+=AA;continue;case F.COMMENT_ENDING:"-"===AA?(L.state=F.COMMENT_ENDED,L.comment=iA(L.opt,L.comment),L.comment&&_(L,"oncomment",L.comment),L.comment=""):(L.comment+="-"+AA,L.state=F.COMMENT);continue;case F.COMMENT_ENDED:">"!==AA?(FA(L,"Malformed comment"),L.comment+="--"+AA,L.state=F.COMMENT):L.state=F.TEXT;continue;case F.CDATA:"]"===AA?L.state=F.CDATA_ENDING:L.cdata+=AA;continue;case F.CDATA_ENDING:"]"===AA?L.state=F.CDATA_ENDING_2:(L.cdata+="]"+AA,L.state=F.CDATA);continue;case F.CDATA_ENDING_2:">"===AA?(L.cdata&&_(L,"oncdata",L.cdata),_(L,"onclosecdata"),L.cdata="",L.state=F.TEXT):"]"===AA?L.cdata+="]":(L.cdata+="]]"+AA,L.state=F.CDATA);continue;case F.PROC_INST:"?"===AA?L.state=F.PROC_INST_ENDING:x(AA)?L.state=F.PROC_INST_BODY:L.procInstName+=AA;continue;case F.PROC_INST_BODY:if(!L.procInstBody&&x(AA))continue;"?"===AA?L.state=F.PROC_INST_ENDING:L.procInstBody+=AA;continue;case F.PROC_INST_ENDING:">"===AA?(_(L,"onprocessinginstruction",{name:L.procInstName,body:L.procInstBody}),L.procInstName=L.procInstBody="",L.state=F.TEXT):(L.procInstBody+="?"+AA,L.state=F.PROC_INST_BODY);continue;case F.OPEN_TAG:S(p,AA)?L.tagName+=AA:(YA(L),">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:(x(AA)||FA(L,"Invalid character in tag name"),L.state=F.ATTRIB));continue;case F.OPEN_TAG_SLASH:">"===AA?(BA(L,!0),aA(L)):(FA(L,"Forward-slash in opening tag not followed by >"),L.state=F.ATTRIB);continue;case F.ATTRIB:if(x(AA))continue;">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:S(R,AA)?(L.attribName=AA,L.attribValue="",L.state=F.ATTRIB_NAME):FA(L,"Invalid attribute name");continue;case F.ATTRIB_NAME:"="===AA?L.state=F.ATTRIB_VALUE:">"===AA?(FA(L,"Attribute without value"),L.attribValue=L.attribName,J(L),BA(L)):x(AA)?L.state=F.ATTRIB_NAME_SAW_WHITE:S(p,AA)?L.attribName+=AA:FA(L,"Invalid attribute name");continue;case F.ATTRIB_NAME_SAW_WHITE:if("="===AA)L.state=F.ATTRIB_VALUE;else{if(x(AA))continue;FA(L,"Attribute without value"),L.tag.attributes[L.attribName]="",L.attribValue="",_(L,"onattribute",{name:L.attribName,value:""}),L.attribName="",">"===AA?BA(L):S(R,AA)?(L.attribName=AA,L.state=F.ATTRIB_NAME):(FA(L,"Invalid attribute name"),L.state=F.ATTRIB)}continue;case F.ATTRIB_VALUE:if(x(AA))continue;Y(AA)?(L.q=AA,L.state=F.ATTRIB_VALUE_QUOTED):(FA(L,"Unquoted attribute value"),L.state=F.ATTRIB_VALUE_UNQUOTED,L.attribValue=AA);continue;case F.ATTRIB_VALUE_QUOTED:if(AA!==L.q){"&"===AA?L.state=F.ATTRIB_VALUE_ENTITY_Q:L.attribValue+=AA;continue}J(L),L.q="",L.state=F.ATTRIB_VALUE_CLOSED;continue;case F.ATTRIB_VALUE_CLOSED:x(AA)?L.state=F.ATTRIB:">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:S(R,AA)?(FA(L,"No whitespace between attributes"),L.attribName=AA,L.attribValue="",L.state=F.ATTRIB_NAME):FA(L,"Invalid attribute name");continue;case F.ATTRIB_VALUE_UNQUOTED:if(!v(AA)){"&"===AA?L.state=F.ATTRIB_VALUE_ENTITY_U:L.attribValue+=AA;continue}J(L),">"===AA?BA(L):L.state=F.ATTRIB;continue;case F.CLOSE_TAG:if(L.tagName)">"===AA?aA(L):S(p,AA)?L.tagName+=AA:L.script?(L.script+=""===AA?aA(L):FA(L,"Invalid characters in closing tag");continue;case F.TEXT_ENTITY:case F.ATTRIB_VALUE_ENTITY_Q:case F.ATTRIB_VALUE_ENTITY_U:var cA,CA;switch(L.state){case F.TEXT_ENTITY:cA=F.TEXT,CA="textNode";break;case F.ATTRIB_VALUE_ENTITY_Q:cA=F.ATTRIB_VALUE_QUOTED,CA="attribValue";break;case F.ATTRIB_VALUE_ENTITY_U:cA=F.ATTRIB_VALUE_UNQUOTED,CA="attribValue"}if(";"===AA)if(L.opt.unparsedEntities){var DA=eA(L);L.entity="",L.state=cA,L.write(DA)}else L[CA]+=eA(L),L.entity="",L.state=cA;else S(L.entity.length?y:m,AA)?L.entity+=AA:(FA(L,"Invalid character in entity name"),L[CA]+="&"+L.entity+AA,L.entity="",L.state=cA);continue;default:throw new Error(L,"Unknown state: "+L.state)}return L.position>=L.bufferCheckPosition&&function g(W){for(var L=Math.max(a.MAX_BUFFER_LENGTH,10),rA=0,AA=0,QA=s.length;AAL)switch(s[AA]){case"textNode":fA(W);break;case"cdata":_(W,"oncdata",W.cdata),W.cdata="";break;case"script":_(W,"onscript",W.script),W.script="";break;default:wA(W,"Max buffer length exceeded: "+s[AA])}rA=Math.max(rA,yA)}W.bufferCheckPosition=a.MAX_BUFFER_LENGTH-rA+W.position}(L),L},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function w(W){fA(W),""!==W.cdata&&(_(W,"oncdata",W.cdata),W.cdata=""),""!==W.script&&(_(W,"onscript",W.script),W.script="")}(this)}};try{u=n(9760).Stream}catch{u=function(){}}u||(u=function(){});var r=a.EVENTS.filter(function(W){return"error"!==W&&"end"!==W});function E(W,L){if(!(this instanceof E))return new E(W,L);u.apply(this),this._parser=new o(W,L),this.writable=!0,this.readable=!0;var rA=this;this._parser.onend=function(){rA.emit("end")},this._parser.onerror=function(AA){rA.emit("error",AA),rA._parser.error=null},this._decoder=null,r.forEach(function(AA){Object.defineProperty(rA,"on"+AA,{get:function(){return rA._parser["on"+AA]},set:function(QA){if(!QA)return rA.removeAllListeners(AA),rA._parser["on"+AA]=QA,QA;rA.on(AA,QA)},enumerable:!0,configurable:!1})})}(E.prototype=Object.create(u.prototype,{constructor:{value:E}})).write=function(W){if("function"==typeof B&&"function"==typeof B.isBuffer&&B.isBuffer(W)){if(!this._decoder){var L=n(43143).I;this._decoder=new L("utf8")}W=this._decoder.write(W)}return this._parser.write(W.toString()),this.emit("data",W),!0},E.prototype.end=function(W){return W&&W.length&&this.write(W),this._parser.end(),!0},E.prototype.on=function(W,L){var rA=this;return!rA._parser["on"+W]&&-1!==r.indexOf(W)&&(rA._parser["on"+W]=function(){var AA=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);AA.splice(0,0,W),rA.emit.apply(rA,AA)}),u.prototype.on.call(rA,W,L)};var C="[CDATA[",e="DOCTYPE",h="http://www.w3.org/XML/1998/namespace",Q="http://www.w3.org/2000/xmlns/",I={xml:h,xmlns:Q},R=/[:_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]/,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\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,m=/[#:_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-]/;function x(W){return" "===W||"\n"===W||"\r"===W||"\t"===W}function Y(W){return'"'===W||"'"===W}function v(W){return">"===W||x(W)}function S(W,L){return W.test(L)}function z(W,L){return!S(W,L)}var W,L,rA,F=0;for(var $ in a.STATE={BEGIN:F++,BEGIN_WHITESPACE:F++,TEXT:F++,TEXT_ENTITY:F++,OPEN_WAKA:F++,SGML_DECL:F++,SGML_DECL_QUOTED:F++,DOCTYPE:F++,DOCTYPE_QUOTED:F++,DOCTYPE_DTD:F++,DOCTYPE_DTD_QUOTED:F++,COMMENT_STARTING:F++,COMMENT:F++,COMMENT_ENDING:F++,COMMENT_ENDED:F++,CDATA:F++,CDATA_ENDING:F++,CDATA_ENDING_2:F++,PROC_INST:F++,PROC_INST_BODY:F++,PROC_INST_ENDING:F++,OPEN_TAG:F++,OPEN_TAG_SLASH:F++,ATTRIB:F++,ATTRIB_NAME:F++,ATTRIB_NAME_SAW_WHITE:F++,ATTRIB_VALUE:F++,ATTRIB_VALUE_QUOTED:F++,ATTRIB_VALUE_CLOSED:F++,ATTRIB_VALUE_UNQUOTED:F++,ATTRIB_VALUE_ENTITY_Q:F++,ATTRIB_VALUE_ENTITY_U:F++,CLOSE_TAG:F++,CLOSE_TAG_SAW_WHITE:F++,SCRIPT:F++,SCRIPT_ENDING:F++},a.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},a.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(a.ENTITIES).forEach(function(W){var L=a.ENTITIES[W],rA="number"==typeof L?String.fromCharCode(L):L;a.ENTITIES[W]=rA}),a.STATE)a.STATE[a.STATE[$]]=$;function gA(W,L,rA){W[L]&&W[L](rA)}function _(W,L,rA){W.textNode&&fA(W),gA(W,L,rA)}function fA(W){W.textNode=iA(W.opt,W.textNode),W.textNode&&gA(W,"ontext",W.textNode),W.textNode=""}function iA(W,L){return W.trim&&(L=L.trim()),W.normalize&&(L=L.replace(/\s+/g," ")),L}function wA(W,L){return fA(W),W.trackPosition&&(L+="\nLine: "+W.line+"\nColumn: "+W.column+"\nChar: "+W.c),L=new Error(L),W.error=L,gA(W,"onerror",L),W}function IA(W){return W.sawRoot&&!W.closedRoot&&FA(W,"Unclosed root tag"),W.state!==F.BEGIN&&W.state!==F.BEGIN_WHITESPACE&&W.state!==F.TEXT&&wA(W,"Unexpected end"),fA(W),W.c="",W.closed=!0,gA(W,"onend"),o.call(W,W.strict,W.opt),W}function FA(W,L){if("object"!=typeof W||!(W instanceof o))throw new Error("bad call to strictFail");W.strict&&wA(W,L)}function YA(W){W.strict||(W.tagName=W.tagName[W.looseCase]());var L=W.tags[W.tags.length-1]||W,rA=W.tag={name:W.tagName,attributes:{}};W.opt.xmlns&&(rA.ns=L.ns),W.attribList.length=0,_(W,"onopentagstart",rA)}function HA(W,L){var AA=W.indexOf(":")<0?["",W]:W.split(":"),QA=AA[0],yA=AA[1];return L&&"xmlns"===W&&(QA="xmlns",yA=""),{prefix:QA,local:yA}}function J(W){if(W.strict||(W.attribName=W.attribName[W.looseCase]()),-1!==W.attribList.indexOf(W.attribName)||W.tag.attributes.hasOwnProperty(W.attribName))W.attribName=W.attribValue="";else{if(W.opt.xmlns){var L=HA(W.attribName,!0),AA=L.local;if("xmlns"===L.prefix)if("xml"===AA&&W.attribValue!==h)FA(W,"xml: prefix must be bound to "+h+"\nActual: "+W.attribValue);else if("xmlns"===AA&&W.attribValue!==Q)FA(W,"xmlns: prefix must be bound to "+Q+"\nActual: "+W.attribValue);else{var QA=W.tag,yA=W.tags[W.tags.length-1]||W;QA.ns===yA.ns&&(QA.ns=Object.create(yA.ns)),QA.ns[AA]=W.attribValue}W.attribList.push([W.attribName,W.attribValue])}else W.tag.attributes[W.attribName]=W.attribValue,_(W,"onattribute",{name:W.attribName,value:W.attribValue});W.attribName=W.attribValue=""}}function BA(W,L){if(W.opt.xmlns){var rA=W.tag,AA=HA(W.tagName);rA.prefix=AA.prefix,rA.local=AA.local,rA.uri=rA.ns[AA.prefix]||"",rA.prefix&&!rA.uri&&(FA(W,"Unbound namespace prefix: "+JSON.stringify(W.tagName)),rA.uri=AA.prefix),rA.ns&&(W.tags[W.tags.length-1]||W).ns!==rA.ns&&Object.keys(rA.ns).forEach(function(gt){_(W,"onopennamespace",{prefix:gt,uri:rA.ns[gt]})});for(var yA=0,cA=W.attribList.length;yA",W.tagName="",void(W.state=F.SCRIPT);_(W,"onscript",W.script),W.script=""}var L=W.tags.length,rA=W.tagName;W.strict||(rA=rA[W.looseCase]());for(var AA=rA;L--&&W.tags[L].name!==AA;)FA(W,"Unexpected close tag");if(L<0)return FA(W,"Unmatched closing tag: "+W.tagName),W.textNode+="",void(W.state=F.TEXT);W.tagName=rA;for(var yA=W.tags.length;yA-- >L;){var cA=W.tag=W.tags.pop();W.tagName=W.tag.name,_(W,"onclosetag",W.tagName);var CA={};for(var DA in cA.ns)CA[DA]=cA.ns[DA];W.opt.xmlns&&cA.ns!==(W.tags[W.tags.length-1]||W).ns&&Object.keys(cA.ns).forEach(function(zA){_(W,"onclosenamespace",{prefix:zA,uri:cA.ns[zA]})})}0===L&&(W.closedRoot=!0),W.tagName=W.attribValue=W.attribName="",W.attribList.length=0,W.state=F.TEXT}function eA(W){var AA,L=W.entity,rA=L.toLowerCase(),QA="";return W.ENTITIES[L]?W.ENTITIES[L]:W.ENTITIES[rA]?W.ENTITIES[rA]:("#"===(L=rA).charAt(0)&&("x"===L.charAt(1)?(L=L.slice(2),QA=(AA=parseInt(L,16)).toString(16)):(L=L.slice(1),QA=(AA=parseInt(L,10)).toString(10))),L=L.replace(/^0+/,""),isNaN(AA)||QA.toLowerCase()!==L?(FA(W,"Invalid character entity"),"&"+W.entity+";"):String.fromCodePoint(AA))}function EA(W,L){"<"===L?(W.state=F.OPEN_WAKA,W.startTagPosition=W.position):x(L)||(FA(W,"Non-whitespace before first tag."),W.textNode=L,W.state=F.TEXT)}function xA(W,L){var rA="";return L1114111||L(zA)!==zA)throw RangeError("Invalid code point: "+zA);zA<=65535?QA.push(zA):QA.push(55296+((zA-=65536)>>10),zA%1024+56320),(CA+1===DA||QA.length>16384)&&(NA+=W.apply(null,QA),QA.length=0)}return NA},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:rA,configurable:!0,writable:!0}):String.fromCodePoint=rA)}(A)},86255:function(b,A,n){"use strict";var B=n(28651),a=n(89295),s=n(18890)(),o=n(68109),g=n(96785),f=B("%Math.floor%");b.exports=function(u,r){if("function"!=typeof u)throw new g("`fn` is not a function");if("number"!=typeof r||r<0||r>4294967295||f(r)!==r)throw new g("`length` must be a positive 32-bit integer");var d=arguments.length>2&&!!arguments[2],E=!0,C=!0;if("length"in u&&o){var e=o(u,"length");e&&!e.configurable&&(E=!1),e&&!e.writable&&(C=!1)}return(E||C||!d)&&(s?a(u,"length",r,!0,!0):a(u,"length",r)),u}},95304:function(b,A,n){"use strict";var B=n(89295),a=n(18890)(),s=n(61084).functionsHaveConfigurableNames(),o=n(96785);b.exports=function(f,w){if("function"!=typeof f)throw new o("`fn` is not a function");return(!(arguments.length>2&&arguments[2])||s)&&(a?B(f,"name",w,!0,!0):B(f,"name",w)),f}},9760:function(b,A,n){b.exports=s;var B=n(64785).EventEmitter;function s(){B.call(this)}n(89784)(s,B),s.Readable=n(88261),s.Writable=n(29781),s.Duplex=n(14903),s.Transform=n(48569),s.PassThrough=n(17723),s.finished=n(12167),s.pipeline=n(43765),s.Stream=s,s.prototype.pipe=function(o,g){var f=this;function w(h){o.writable&&!1===o.write(h)&&f.pause&&f.pause()}function u(){f.readable&&f.resume&&f.resume()}f.on("data",w),o.on("drain",u),!o._isStdio&&(!g||!1!==g.end)&&(f.on("end",d),f.on("close",E));var r=!1;function d(){r||(r=!0,o.end())}function E(){r||(r=!0,"function"==typeof o.destroy&&o.destroy())}function C(h){if(e(),0===B.listenerCount(this,"error"))throw h}function e(){f.removeListener("data",w),o.removeListener("drain",u),f.removeListener("end",d),f.removeListener("close",E),f.removeListener("error",C),o.removeListener("error",C),f.removeListener("end",e),f.removeListener("close",e),o.removeListener("close",e)}return f.on("error",C),o.on("error",C),f.on("end",e),f.on("close",e),o.on("close",e),o.emit("pipe",f),o}},83797:function(b){"use strict";var n={};function B(f,w,u){u||(u=Error);var d=function(E){function C(e,h,Q){return E.call(this,function r(E,C,e){return"string"==typeof w?w:w(E,C,e)}(e,h,Q))||this}return function A(f,w){f.prototype=Object.create(w.prototype),f.prototype.constructor=f,f.__proto__=w}(C,E),C}(u);d.prototype.name=u.name,d.prototype.code=f,n[f]=d}function a(f,w){if(Array.isArray(f)){var u=f.length;return f=f.map(function(r){return String(r)}),u>2?"one of ".concat(w," ").concat(f.slice(0,u-1).join(", "),", or ")+f[u-1]:2===u?"one of ".concat(w," ").concat(f[0]," or ").concat(f[1]):"of ".concat(w," ").concat(f[0])}return"of ".concat(w," ").concat(String(f))}B("ERR_INVALID_OPT_VALUE",function(f,w){return'The value "'+w+'" is invalid for option "'+f+'"'},TypeError),B("ERR_INVALID_ARG_TYPE",function(f,w,u){var r,d;if("string"==typeof w&&function s(f,w,u){return f.substr(!u||u<0?0:+u,w.length)===w}(w,"not ")?(r="must not be",w=w.replace(/^not /,"")):r="must be",function o(f,w,u){return(void 0===u||u>f.length)&&(u=f.length),f.substring(u-w.length,u)===w}(f," argument"))d="The ".concat(f," ").concat(r," ").concat(a(w,"type"));else{var E=function g(f,w,u){return"number"!=typeof u&&(u=0),!(u+w.length>f.length)&&-1!==f.indexOf(w,u)}(f,".")?"property":"argument";d='The "'.concat(f,'" ').concat(E," ").concat(r," ").concat(a(w,"type"))}return d+". Received type ".concat(typeof u)},TypeError),B("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),B("ERR_METHOD_NOT_IMPLEMENTED",function(f){return"The "+f+" method is not implemented"}),B("ERR_STREAM_PREMATURE_CLOSE","Premature close"),B("ERR_STREAM_DESTROYED",function(f){return"Cannot call "+f+" after a stream was destroyed"}),B("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),B("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),B("ERR_STREAM_WRITE_AFTER_END","write after end"),B("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),B("ERR_UNKNOWN_ENCODING",function(f){return"Unknown encoding: "+f},TypeError),B("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),b.exports.F=n},14903:function(b,A,n){"use strict";var B=n(9964),a=Object.keys||function(E){var C=[];for(var e in E)C.push(e);return C};b.exports=u;var s=n(88261),o=n(29781);n(89784)(u,s);for(var g=a(o.prototype),f=0;f0)if("string"!=typeof CA&&!pA.objectMode&&Object.getPrototypeOf(CA)!==f.prototype&&(CA=function u(cA){return f.from(cA)}(CA)),NA)pA.endEmitted?S(cA,new y):fA(cA,pA,CA,!0);else if(pA.ended)S(cA,new p);else{if(pA.destroyed)return!1;pA.reading=!1,pA.decoder&&!DA?(CA=pA.decoder.write(CA),pA.objectMode||0!==CA.length?fA(cA,pA,CA,!1):BA(cA,pA)):fA(cA,pA,CA,!1)}else NA||(pA.reading=!1,BA(cA,pA));return!pA.ended&&(pA.lengthCA.highWaterMark&&(CA.highWaterMark=function IA(cA){return cA>=wA?cA=wA:(cA--,cA|=cA>>>1,cA|=cA>>>2,cA|=cA>>>4,cA|=cA>>>8,cA|=cA>>>16,cA++),cA}(cA)),cA<=CA.length?cA:CA.ended?CA.length:(CA.needReadable=!0,0))}function HA(cA){var CA=cA._readableState;E("emitReadable",CA.needReadable,CA.emittedReadable),CA.needReadable=!1,CA.emittedReadable||(E("emitReadable",CA.flowing),CA.emittedReadable=!0,B.nextTick(J,cA))}function J(cA){var CA=cA._readableState;E("emitReadable_",CA.destroyed,CA.length,CA.ended),!CA.destroyed&&(CA.length||CA.ended)&&(cA.emit("readable"),CA.emittedReadable=!1),CA.needReadable=!CA.flowing&&!CA.ended&&CA.length<=CA.highWaterMark,L(cA)}function BA(cA,CA){CA.readingMore||(CA.readingMore=!0,B.nextTick(aA,cA,CA))}function aA(cA,CA){for(;!CA.reading&&!CA.ended&&(CA.length0,CA.resumeScheduled&&!CA.paused?CA.flowing=!0:cA.listenerCount("data")>0&&cA.resume()}function xA(cA){E("readable nexttick read 0"),cA.read(0)}function W(cA,CA){E("resume",CA.reading),CA.reading||cA.read(0),CA.resumeScheduled=!1,cA.emit("resume"),L(cA),CA.flowing&&!CA.reading&&cA.read(0)}function L(cA){var CA=cA._readableState;for(E("flow",CA.flowing);CA.flowing&&null!==cA.read(););}function rA(cA,CA){return 0===CA.length?null:(CA.objectMode?DA=CA.buffer.shift():!cA||cA>=CA.length?(DA=CA.decoder?CA.buffer.join(""):1===CA.buffer.length?CA.buffer.first():CA.buffer.concat(CA.length),CA.buffer.clear()):DA=CA.buffer.consume(cA,CA.decoder),DA);var DA}function AA(cA){var CA=cA._readableState;E("endReadable",CA.endEmitted),CA.endEmitted||(CA.ended=!0,B.nextTick(QA,CA,cA))}function QA(cA,CA){if(E("endReadableNT",cA.endEmitted,cA.length),!cA.endEmitted&&0===cA.length&&(cA.endEmitted=!0,CA.readable=!1,CA.emit("end"),cA.autoDestroy)){var DA=CA._writableState;(!DA||DA.autoDestroy&&DA.finished)&&CA.destroy()}}function yA(cA,CA){for(var DA=0,NA=cA.length;DA=CA.highWaterMark:CA.length>0)||CA.ended))return E("read: emitReadable",CA.length,CA.ended),0===CA.length&&CA.ended?AA(this):HA(this),null;if(0===(cA=FA(cA,CA))&&CA.ended)return 0===CA.length&&AA(this),null;var zA,NA=CA.needReadable;return E("need readable",NA),(0===CA.length||CA.length-cA0?rA(cA,CA):null)?(CA.needReadable=CA.length<=CA.highWaterMark,cA=0):(CA.length-=cA,CA.awaitDrain=0),0===CA.length&&(CA.ended||(CA.needReadable=!0),DA!==cA&&CA.ended&&AA(this)),null!==zA&&this.emit("data",zA),zA},gA.prototype._read=function(cA){S(this,new m("_read()"))},gA.prototype.pipe=function(cA,CA){var DA=this,NA=this._readableState;switch(NA.pipesCount){case 0:NA.pipes=cA;break;case 1:NA.pipes=[NA.pipes,cA];break;default:NA.pipes.push(cA)}NA.pipesCount+=1,E("pipe count=%d opts=%j",NA.pipesCount,CA);var pA=CA&&!1===CA.end||cA===B.stdout||cA===B.stderr?ht:ft;function JA(vt,Nt){E("onunpipe"),vt===DA&&Nt&&!1===Nt.hasUnpiped&&(Nt.hasUnpiped=!0,function pt(){E("cleanup"),cA.removeListener("close",_A),cA.removeListener("finish",Qt),cA.removeListener("drain",wt),cA.removeListener("error",VA),cA.removeListener("unpipe",JA),DA.removeListener("end",ft),DA.removeListener("end",ht),DA.removeListener("data",Yt),gt=!0,NA.awaitDrain&&(!cA._writableState||cA._writableState.needDrain)&&wt()}())}function ft(){E("onend"),cA.end()}NA.endEmitted?B.nextTick(pA):DA.once("end",pA),cA.on("unpipe",JA);var wt=function eA(cA){return function(){var DA=cA._readableState;E("pipeOnDrain",DA.awaitDrain),DA.awaitDrain&&DA.awaitDrain--,0===DA.awaitDrain&&o(cA,"data")&&(DA.flowing=!0,L(cA))}}(DA);cA.on("drain",wt);var gt=!1;function Yt(vt){E("ondata");var Nt=cA.write(vt);E("dest.write",Nt),!1===Nt&&((1===NA.pipesCount&&NA.pipes===cA||NA.pipesCount>1&&-1!==yA(NA.pipes,cA))&&!gt&&(E("false write response, pause",NA.awaitDrain),NA.awaitDrain++),DA.pause())}function VA(vt){E("onerror",vt),ht(),cA.removeListener("error",VA),0===o(cA,"error")&&S(cA,vt)}function _A(){cA.removeListener("finish",Qt),ht()}function Qt(){E("onfinish"),cA.removeListener("close",_A),ht()}function ht(){E("unpipe"),DA.unpipe(cA)}return DA.on("data",Yt),function F(cA,CA,DA){if("function"==typeof cA.prependListener)return cA.prependListener(CA,DA);cA._events&&cA._events[CA]?Array.isArray(cA._events[CA])?cA._events[CA].unshift(DA):cA._events[CA]=[DA,cA._events[CA]]:cA.on(CA,DA)}(cA,"error",VA),cA.once("close",_A),cA.once("finish",Qt),cA.emit("pipe",DA),NA.flowing||(E("pipe resume"),DA.resume()),cA},gA.prototype.unpipe=function(cA){var CA=this._readableState,DA={hasUnpiped:!1};if(0===CA.pipesCount)return this;if(1===CA.pipesCount)return cA&&cA!==CA.pipes||(cA||(cA=CA.pipes),CA.pipes=null,CA.pipesCount=0,CA.flowing=!1,cA&&cA.emit("unpipe",this,DA)),this;if(!cA){var NA=CA.pipes,zA=CA.pipesCount;CA.pipes=null,CA.pipesCount=0,CA.flowing=!1;for(var pA=0;pA0,!1!==NA.flowing&&this.resume()):"readable"===cA&&!NA.endEmitted&&!NA.readableListening&&(NA.readableListening=NA.needReadable=!0,NA.flowing=!1,NA.emittedReadable=!1,E("on readable",NA.length,NA.reading),NA.length?HA(this):NA.reading||B.nextTick(xA,this)),DA},gA.prototype.removeListener=function(cA,CA){var DA=g.prototype.removeListener.call(this,cA,CA);return"readable"===cA&&B.nextTick(EA,this),DA},gA.prototype.removeAllListeners=function(cA){var CA=g.prototype.removeAllListeners.apply(this,arguments);return("readable"===cA||void 0===cA)&&B.nextTick(EA,this),CA},gA.prototype.resume=function(){var cA=this._readableState;return cA.flowing||(E("resume"),cA.flowing=!cA.readableListening,function OA(cA,CA){CA.resumeScheduled||(CA.resumeScheduled=!0,B.nextTick(W,cA,CA))}(this,cA)),cA.paused=!1,this},gA.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},gA.prototype.wrap=function(cA){var CA=this,DA=this._readableState,NA=!1;for(var zA in cA.on("end",function(){if(E("wrapped end"),DA.decoder&&!DA.ended){var JA=DA.decoder.end();JA&&JA.length&&CA.push(JA)}CA.push(null)}),cA.on("data",function(JA){E("wrapped data"),DA.decoder&&(JA=DA.decoder.write(JA)),DA.objectMode&&null==JA||!(DA.objectMode||JA&&JA.length)||CA.push(JA)||(NA=!0,cA.pause())}),cA)void 0===this[zA]&&"function"==typeof cA[zA]&&(this[zA]=function(ft){return function(){return cA[ft].apply(cA,arguments)}}(zA));for(var pA=0;pA-1))throw new Y(rA);return this._writableState.defaultEncoding=rA,this},Object.defineProperty($.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty($.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),$.prototype._write=function(L,rA,AA){AA(new I("_write()"))},$.prototype._writev=null,$.prototype.end=function(L,rA,AA){var QA=this._writableState;return"function"==typeof L?(AA=L,L=null,rA=null):"function"==typeof rA&&(AA=rA,rA=null),null!=L&&this.write(L,rA),QA.corked&&(QA.corked=1,this.uncork()),QA.ending||function OA(L,rA,AA){rA.ending=!0,xA(L,rA),AA&&(rA.finished?B.nextTick(AA):L.once("finish",AA)),rA.ended=!0,L.writable=!1}(this,QA,AA),this},Object.defineProperty($.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty($.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(rA){this._writableState&&(this._writableState.destroyed=rA)}}),$.prototype.destroy=E.destroy,$.prototype._undestroy=E.undestroy,$.prototype._destroy=function(L,rA){rA(L)}},79676:function(b,A,n){"use strict";var a,B=n(9964);function s(x,Y,v){return(Y=function o(x){var Y=function g(x,Y){if("object"!=typeof x||null===x)return x;var v=x[Symbol.toPrimitive];if(void 0!==v){var S=v.call(x,Y||"default");if("object"!=typeof S)return S;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===Y?String:Number)(x)}(x,"string");return"symbol"==typeof Y?Y:String(Y)}(Y))in x?Object.defineProperty(x,Y,{value:v,enumerable:!0,configurable:!0,writable:!0}):x[Y]=v,x}var f=n(12167),w=Symbol("lastResolve"),u=Symbol("lastReject"),r=Symbol("error"),d=Symbol("ended"),E=Symbol("lastPromise"),C=Symbol("handlePromise"),e=Symbol("stream");function h(x,Y){return{value:x,done:Y}}function Q(x){var Y=x[w];if(null!==Y){var v=x[e].read();null!==v&&(x[E]=null,x[w]=null,x[u]=null,Y(h(v,!1)))}}function I(x){B.nextTick(Q,x)}var p=Object.getPrototypeOf(function(){}),m=Object.setPrototypeOf((s(a={get stream(){return this[e]},next:function(){var Y=this,v=this[r];if(null!==v)return Promise.reject(v);if(this[d])return Promise.resolve(h(void 0,!0));if(this[e].destroyed)return new Promise(function($,gA){B.nextTick(function(){Y[r]?gA(Y[r]):$(h(void 0,!0))})});var z,S=this[E];if(S)z=new Promise(function R(x,Y){return function(v,S){x.then(function(){Y[d]?v(h(void 0,!0)):Y[C](v,S)},S)}}(S,this));else{var F=this[e].read();if(null!==F)return Promise.resolve(h(F,!1));z=new Promise(this[C])}return this[E]=z,z}},Symbol.asyncIterator,function(){return this}),s(a,"return",function(){var Y=this;return new Promise(function(v,S){Y[e].destroy(null,function(z){z?S(z):v(h(void 0,!0))})})}),a),p);b.exports=function(Y){var v,S=Object.create(m,(s(v={},e,{value:Y,writable:!0}),s(v,w,{value:null,writable:!0}),s(v,u,{value:null,writable:!0}),s(v,r,{value:null,writable:!0}),s(v,d,{value:Y._readableState.endEmitted,writable:!0}),s(v,C,{value:function(F,$){var gA=S[e].read();gA?(S[E]=null,S[w]=null,S[u]=null,F(h(gA,!1))):(S[w]=F,S[u]=$)},writable:!0}),v));return S[E]=null,f(Y,function(z){if(z&&"ERR_STREAM_PREMATURE_CLOSE"!==z.code){var F=S[u];return null!==F&&(S[E]=null,S[w]=null,S[u]=null,F(z)),void(S[r]=z)}var $=S[w];null!==$&&(S[E]=null,S[w]=null,S[u]=null,$(h(void 0,!0))),S[d]=!0}),Y.on("readable",I.bind(null,S)),S}},37385:function(b,A,n){"use strict";var B=n(9964);function s(u,r){f(u,r),o(u)}function o(u){u._writableState&&!u._writableState.emitClose||u._readableState&&!u._readableState.emitClose||u.emit("close")}function f(u,r){u.emit("error",r)}b.exports={destroy:function a(u,r){var d=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(r?r(u):u&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,B.nextTick(f,this,u)):B.nextTick(f,this,u)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(u||null,function(e){!r&&e?d._writableState?d._writableState.errorEmitted?B.nextTick(o,d):(d._writableState.errorEmitted=!0,B.nextTick(s,d,e)):B.nextTick(s,d,e):r?(B.nextTick(o,d),r(e)):B.nextTick(o,d)}),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 w(u,r){var d=u._readableState,E=u._writableState;d&&d.autoDestroy||E&&E.autoDestroy?u.destroy(r):u.emit("error",r)}}},12167:function(b,A,n){"use strict";var B=n(83797).F.ERR_STREAM_PREMATURE_CLOSE;function s(){}b.exports=function g(f,w,u){if("function"==typeof w)return g(f,null,w);w||(w={}),u=function a(f){var w=!1;return function(){if(!w){w=!0;for(var u=arguments.length,r=new Array(u),d=0;d0,function(v){R||(R=v),v&&p.forEach(r),!x&&(p.forEach(r),I(R))})});return h.reduce(d)}},68130:function(b,A,n){"use strict";var B=n(83797).F.ERR_INVALID_OPT_VALUE;b.exports={getHighWaterMark:function s(o,g,f,w){var u=function a(o,g,f){return null!=o.highWaterMark?o.highWaterMark:g?o[f]:null}(g,w,f);if(null!=u){if(!isFinite(u)||Math.floor(u)!==u||u<0)throw new B(w?f:"highWaterMark",u);return Math.floor(u)}return o.objectMode?16:16384}}},99018:function(b,A,n){b.exports=n(64785).EventEmitter},43143:function(b,A,n){"use strict";var B=n(72361).Buffer,a=B.isEncoding||function(p){switch((p=""+p)&&p.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(p){var m;switch(this.encoding=function o(p){var m=function s(p){if(!p)return"utf8";for(var m;;)switch(p){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 p;default:if(m)return;p=(""+p).toLowerCase(),m=!0}}(p);if("string"!=typeof m&&(B.isEncoding===a||!a(p)))throw new Error("Unknown encoding: "+p);return m||p}(p),this.encoding){case"utf16le":this.text=C,this.end=e,m=4;break;case"utf8":this.fillLast=r,m=4;break;case"base64":this.text=h,this.end=Q,m=3;break;default:return this.write=I,void(this.end=R)}this.lastNeed=0,this.lastTotal=0,this.lastChar=B.allocUnsafe(m)}function f(p){return p<=127?0:p>>5==6?2:p>>4==14?3:p>>3==30?4:p>>6==2?-1:-2}function r(p){var m=this.lastTotal-this.lastNeed,y=function u(p,m,y){if(128!=(192&m[0]))return p.lastNeed=0,"\ufffd";if(p.lastNeed>1&&m.length>1){if(128!=(192&m[1]))return p.lastNeed=1,"\ufffd";if(p.lastNeed>2&&m.length>2&&128!=(192&m[2]))return p.lastNeed=2,"\ufffd"}}(this,p);return void 0!==y?y:this.lastNeed<=p.length?(p.copy(this.lastChar,m,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(p.copy(this.lastChar,m,0,p.length),void(this.lastNeed-=p.length))}function C(p,m){if((p.length-m)%2==0){var y=p.toString("utf16le",m);if(y){var x=y.charCodeAt(y.length-1);if(x>=55296&&x<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=p[p.length-2],this.lastChar[1]=p[p.length-1],y.slice(0,-1)}return y}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=p[p.length-1],p.toString("utf16le",m,p.length-1)}function e(p){var m=p&&p.length?this.write(p):"";return this.lastNeed?m+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):m}function h(p,m){var y=(p.length-m)%3;return 0===y?p.toString("base64",m):(this.lastNeed=3-y,this.lastTotal=3,1===y?this.lastChar[0]=p[p.length-1]:(this.lastChar[0]=p[p.length-2],this.lastChar[1]=p[p.length-1]),p.toString("base64",m,p.length-y))}function Q(p){var m=p&&p.length?this.write(p):"";return this.lastNeed?m+this.lastChar.toString("base64",0,3-this.lastNeed):m}function I(p){return p.toString(this.encoding)}function R(p){return p&&p.length?this.write(p):""}A.I=g,g.prototype.write=function(p){if(0===p.length)return"";var m,y;if(this.lastNeed){if(void 0===(m=this.fillLast(p)))return"";y=this.lastNeed,this.lastNeed=0}else y=0;return y=0?(Y>0&&(p.lastNeed=Y-1),Y):--x=0?(Y>0&&(p.lastNeed=Y-2),Y):--x=0?(Y>0&&(2===Y?Y=0:p.lastNeed=Y-3),Y):0}(this,p,m);if(!this.lastNeed)return p.toString("utf8",m);this.lastTotal=y;var x=p.length-(y-this.lastNeed);return p.copy(this.lastChar,0,x),p.toString("utf8",m,x)},g.prototype.fillLast=function(p){if(this.lastNeed<=p.length)return p.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);p.copy(this.lastChar,this.lastTotal-this.lastNeed,0,p.length),this.lastNeed-=p.length}},3483:function(b){var A=0,n=-3;function B(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function a(v,S){this.source=v,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=S,this.destLen=0,this.ltree=new B,this.dtree=new B}var s=new B,o=new B,g=new Uint8Array(30),f=new Uint16Array(30),w=new Uint8Array(30),u=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]),d=new B,E=new Uint8Array(320);function C(v,S,z,F){var $,gA;for($=0;$>>=1,S}function R(v,S,z){if(!S)return z;for(;v.bitcount<24;)v.tag|=v.source[v.sourceIndex++]<>>16-S;return v.tag>>>=S,v.bitcount-=S,F+z}function p(v,S){for(;v.bitcount<24;)v.tag|=v.source[v.sourceIndex++]<>>=1,++$,z+=S.table[$],F-=S.table[$]}while(F>=0);return v.tag=gA,v.bitcount-=$,S.trans[z+F]}function m(v,S,z){var F,$,gA,_,fA,iA;for(F=R(v,5,257),$=R(v,5,1),gA=R(v,4,4),_=0;_<19;++_)E[_]=0;for(_=0;_8;)v.sourceIndex--,v.bitcount-=8;if((S=256*(S=v.source[v.sourceIndex+1])+v.source[v.sourceIndex])!==(65535&~(256*v.source[v.sourceIndex+3]+v.source[v.sourceIndex+2])))return n;for(v.sourceIndex+=4,F=S;F;--F)v.dest[v.destLen++]=v.source[v.sourceIndex++];return v.bitcount=0,A}(function e(v,S){var z;for(z=0;z<7;++z)v.table[z]=0;for(v.table[7]=24,v.table[8]=152,v.table[9]=112,z=0;z<24;++z)v.trans[z]=256+z;for(z=0;z<144;++z)v.trans[24+z]=z;for(z=0;z<8;++z)v.trans[168+z]=280+z;for(z=0;z<112;++z)v.trans[176+z]=144+z;for(z=0;z<5;++z)S.table[z]=0;for(S.table[5]=32,z=0;z<32;++z)S.trans[z]=z})(s,o),C(g,f,4,3),C(w,u,2,1),g[28]=0,f[28]=258,b.exports=function Y(v,S){var F,gA,z=new a(v,S);do{switch(F=I(z),R(z,2,0)){case 0:gA=x(z);break;case 1:gA=y(z,s,o);break;case 2:m(z,z.ltree,z.dtree),gA=y(z,z.ltree,z.dtree);break;default:gA=n}if(gA!==A)throw new Error("Data error")}while(!F);return z.destLen"u")&&(HA.working?HA(pA):pA instanceof ArrayBuffer)}function BA(pA){return"[object DataView]"===u(pA)}function aA(pA){return!(typeof DataView>"u")&&(BA.working?BA(pA):pA instanceof DataView)}A.isArgumentsObject=B,A.isGeneratorFunction=a,A.isTypedArray=o,A.isPromise=function Q(pA){return typeof Promise<"u"&&pA instanceof Promise||null!==pA&&"object"==typeof pA&&"function"==typeof pA.then&&"function"==typeof pA.catch},A.isArrayBufferView=function I(pA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(pA):o(pA)||aA(pA)},A.isUint8Array=function R(pA){return"Uint8Array"===s(pA)},A.isUint8ClampedArray=function p(pA){return"Uint8ClampedArray"===s(pA)},A.isUint16Array=function m(pA){return"Uint16Array"===s(pA)},A.isUint32Array=function y(pA){return"Uint32Array"===s(pA)},A.isInt8Array=function x(pA){return"Int8Array"===s(pA)},A.isInt16Array=function Y(pA){return"Int16Array"===s(pA)},A.isInt32Array=function v(pA){return"Int32Array"===s(pA)},A.isFloat32Array=function S(pA){return"Float32Array"===s(pA)},A.isFloat64Array=function z(pA){return"Float64Array"===s(pA)},A.isBigInt64Array=function F(pA){return"BigInt64Array"===s(pA)},A.isBigUint64Array=function $(pA){return"BigUint64Array"===s(pA)},gA.working=typeof Map<"u"&&gA(new Map),A.isMap=function _(pA){return!(typeof Map>"u")&&(gA.working?gA(pA):pA instanceof Map)},fA.working=typeof Set<"u"&&fA(new Set),A.isSet=function iA(pA){return!(typeof Set>"u")&&(fA.working?fA(pA):pA instanceof Set)},wA.working=typeof WeakMap<"u"&&wA(new WeakMap),A.isWeakMap=function IA(pA){return!(typeof WeakMap>"u")&&(wA.working?wA(pA):pA instanceof WeakMap)},FA.working=typeof WeakSet<"u"&&FA(new WeakSet),A.isWeakSet=function YA(pA){return FA(pA)},HA.working=typeof ArrayBuffer<"u"&&HA(new ArrayBuffer),A.isArrayBuffer=J,BA.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&BA(new DataView(new ArrayBuffer(1),0,1)),A.isDataView=aA;var eA=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function EA(pA){return"[object SharedArrayBuffer]"===u(pA)}function xA(pA){return!(typeof eA>"u")&&(typeof EA.working>"u"&&(EA.working=EA(new eA)),EA.working?EA(pA):pA instanceof eA)}function QA(pA){return h(pA,r)}function yA(pA){return h(pA,d)}function cA(pA){return h(pA,E)}function CA(pA){return f&&h(pA,C)}function DA(pA){return w&&h(pA,e)}A.isSharedArrayBuffer=xA,A.isAsyncFunction=function OA(pA){return"[object AsyncFunction]"===u(pA)},A.isMapIterator=function W(pA){return"[object Map Iterator]"===u(pA)},A.isSetIterator=function L(pA){return"[object Set Iterator]"===u(pA)},A.isGeneratorObject=function rA(pA){return"[object Generator]"===u(pA)},A.isWebAssemblyCompiledModule=function AA(pA){return"[object WebAssembly.Module]"===u(pA)},A.isNumberObject=QA,A.isStringObject=yA,A.isBooleanObject=cA,A.isBigIntObject=CA,A.isSymbolObject=DA,A.isBoxedPrimitive=function NA(pA){return QA(pA)||yA(pA)||cA(pA)||CA(pA)||DA(pA)},A.isAnyArrayBuffer=function zA(pA){return typeof Uint8Array<"u"&&(J(pA)||xA(pA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(pA){Object.defineProperty(A,pA,{enumerable:!1,value:function(){throw new Error(pA+" is not supported in userland")}})})},7187:function(b,A,n){var B=n(9964),a=Object.getOwnPropertyDescriptors||function(eA){for(var EA=Object.keys(eA),xA={},OA=0;OA=OA)return rA;switch(rA){case"%s":return String(xA[EA++]);case"%d":return Number(xA[EA++]);case"%j":try{return JSON.stringify(xA[EA++])}catch{return"[Circular]"}default:return rA}}),L=xA[EA];EA"u")return function(){return A.deprecate(aA,eA).apply(this,arguments)};var EA=!1;return function xA(){if(!EA){if(B.throwDeprecation)throw new Error(eA);B.traceDeprecation?console.trace(eA):console.error(eA),EA=!0}return aA.apply(this,arguments)}};var o={},g=/^$/;if(B.env.NODE_DEBUG){var f=B.env.NODE_DEBUG;f=f.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),g=new RegExp("^"+f+"$","i")}function w(aA,eA){var EA={seen:[],stylize:r};return arguments.length>=3&&(EA.depth=arguments[2]),arguments.length>=4&&(EA.colors=arguments[3]),p(eA)?EA.showHidden=eA:eA&&A._extend(EA,eA),S(EA.showHidden)&&(EA.showHidden=!1),S(EA.depth)&&(EA.depth=2),S(EA.colors)&&(EA.colors=!1),S(EA.customInspect)&&(EA.customInspect=!0),EA.colors&&(EA.stylize=u),E(EA,aA,EA.depth)}function u(aA,eA){var EA=w.styles[eA];return EA?"\x1b["+w.colors[EA][0]+"m"+aA+"\x1b["+w.colors[EA][1]+"m":aA}function r(aA,eA){return aA}function E(aA,eA,EA){if(aA.customInspect&&eA&&_(eA.inspect)&&eA.inspect!==A.inspect&&(!eA.constructor||eA.constructor.prototype!==eA)){var xA=eA.inspect(EA,aA);return Y(xA)||(xA=E(aA,xA,EA)),xA}var OA=function C(aA,eA){if(S(eA))return aA.stylize("undefined","undefined");if(Y(eA)){var EA="'"+JSON.stringify(eA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return aA.stylize(EA,"string")}return x(eA)?aA.stylize(""+eA,"number"):p(eA)?aA.stylize(""+eA,"boolean"):m(eA)?aA.stylize("null","null"):void 0}(aA,eA);if(OA)return OA;var W=Object.keys(eA),L=function d(aA){var eA={};return aA.forEach(function(EA,xA){eA[EA]=!0}),eA}(W);if(aA.showHidden&&(W=Object.getOwnPropertyNames(eA)),gA(eA)&&(W.indexOf("message")>=0||W.indexOf("description")>=0))return e(eA);if(0===W.length){if(_(eA))return aA.stylize("[Function"+(eA.name?": "+eA.name:"")+"]","special");if(z(eA))return aA.stylize(RegExp.prototype.toString.call(eA),"regexp");if($(eA))return aA.stylize(Date.prototype.toString.call(eA),"date");if(gA(eA))return e(eA)}var CA,AA="",QA=!1,yA=["{","}"];return R(eA)&&(QA=!0,yA=["[","]"]),_(eA)&&(AA=" [Function"+(eA.name?": "+eA.name:"")+"]"),z(eA)&&(AA=" "+RegExp.prototype.toString.call(eA)),$(eA)&&(AA=" "+Date.prototype.toUTCString.call(eA)),gA(eA)&&(AA=" "+e(eA)),0!==W.length||QA&&0!=eA.length?EA<0?z(eA)?aA.stylize(RegExp.prototype.toString.call(eA),"regexp"):aA.stylize("[Object]","special"):(aA.seen.push(eA),CA=QA?function h(aA,eA,EA,xA,OA){for(var W=[],L=0,rA=eA.length;L60?EA[0]+(""===eA?"":eA+"\n ")+" "+aA.join(",\n ")+" "+EA[1]:EA[0]+eA+" "+aA.join(", ")+" "+EA[1]}(CA,AA,yA)):yA[0]+AA+yA[1]}function e(aA){return"["+Error.prototype.toString.call(aA)+"]"}function Q(aA,eA,EA,xA,OA,W){var L,rA,AA;if((AA=Object.getOwnPropertyDescriptor(eA,OA)||{value:eA[OA]}).get?rA=aA.stylize(AA.set?"[Getter/Setter]":"[Getter]","special"):AA.set&&(rA=aA.stylize("[Setter]","special")),YA(xA,OA)||(L="["+OA+"]"),rA||(aA.seen.indexOf(AA.value)<0?(rA=m(EA)?E(aA,AA.value,null):E(aA,AA.value,EA-1)).indexOf("\n")>-1&&(rA=W?rA.split("\n").map(function(QA){return" "+QA}).join("\n").slice(2):"\n"+rA.split("\n").map(function(QA){return" "+QA}).join("\n")):rA=aA.stylize("[Circular]","special")),S(L)){if(W&&OA.match(/^\d+$/))return rA;(L=JSON.stringify(""+OA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(L=L.slice(1,-1),L=aA.stylize(L,"name")):(L=L.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),L=aA.stylize(L,"string"))}return L+": "+rA}function R(aA){return Array.isArray(aA)}function p(aA){return"boolean"==typeof aA}function m(aA){return null===aA}function x(aA){return"number"==typeof aA}function Y(aA){return"string"==typeof aA}function S(aA){return void 0===aA}function z(aA){return F(aA)&&"[object RegExp]"===iA(aA)}function F(aA){return"object"==typeof aA&&null!==aA}function $(aA){return F(aA)&&"[object Date]"===iA(aA)}function gA(aA){return F(aA)&&("[object Error]"===iA(aA)||aA instanceof Error)}function _(aA){return"function"==typeof aA}function iA(aA){return Object.prototype.toString.call(aA)}function wA(aA){return aA<10?"0"+aA.toString(10):aA.toString(10)}A.debuglog=function(aA){if(aA=aA.toUpperCase(),!o[aA])if(g.test(aA)){var eA=B.pid;o[aA]=function(){var EA=A.format.apply(A,arguments);console.error("%s %d: %s",aA,eA,EA)}}else o[aA]=function(){};return o[aA]},A.inspect=w,w.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]},w.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},A.types=n(29490),A.isArray=R,A.isBoolean=p,A.isNull=m,A.isNullOrUndefined=function y(aA){return null==aA},A.isNumber=x,A.isString=Y,A.isSymbol=function v(aA){return"symbol"==typeof aA},A.isUndefined=S,A.isRegExp=z,A.types.isRegExp=z,A.isObject=F,A.isDate=$,A.types.isDate=$,A.isError=gA,A.types.isNativeError=gA,A.isFunction=_,A.isPrimitive=function fA(aA){return null===aA||"boolean"==typeof aA||"number"==typeof aA||"string"==typeof aA||"symbol"==typeof aA||typeof aA>"u"},A.isBuffer=n(41201);var IA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function YA(aA,eA){return Object.prototype.hasOwnProperty.call(aA,eA)}A.log=function(){console.log("%s - %s",function FA(){var aA=new Date,eA=[wA(aA.getHours()),wA(aA.getMinutes()),wA(aA.getSeconds())].join(":");return[aA.getDate(),IA[aA.getMonth()],eA].join(" ")}(),A.format.apply(A,arguments))},A.inherits=n(89784),A._extend=function(aA,eA){if(!eA||!F(eA))return aA;for(var EA=Object.keys(eA),xA=EA.length;xA--;)aA[EA[xA]]=eA[EA[xA]];return aA};var HA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function J(aA,eA){if(!aA){var EA=new Error("Promise was rejected with a falsy value");EA.reason=aA,aA=EA}return eA(aA)}A.promisify=function(eA){if("function"!=typeof eA)throw new TypeError('The "original" argument must be of type Function');if(HA&&eA[HA]){var EA;if("function"!=typeof(EA=eA[HA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(EA,HA,{value:EA,enumerable:!1,writable:!1,configurable:!0}),EA}function EA(){for(var xA,OA,W=new Promise(function(AA,QA){xA=AA,OA=QA}),L=[],rA=0;rA"u"?n.g:globalThis,r=a(),d=o("String.prototype.slice"),E=Object.getPrototypeOf,C=o("Array.prototype.indexOf",!0)||function(R,p){for(var m=0;m-1?p:"Object"===p&&function(R){var p=!1;return B(e,function(m,y){if(!p)try{m(R),p=d(y,1)}catch{}}),p}(R)}return g?function(R){var p=!1;return B(e,function(m,y){if(!p)try{"$"+m(R)===y&&(p=d(y,1))}catch{}}),p}(R):null}},52242:function(b,A,n){b.exports=n(45349)},45349:function(b,A,n){!function(){var B;if(b.exports&&!n.g.xmldocAssumeBrowser)B=n(61733);else if(!(B=this.sax))throw new Error("Expected sax to be defined. Make sure you're including sax.js before this file.");function a(m,y){if(!y){var x=w[w.length-1];x.parser&&(y=x.parser)}this.name=m.name,this.attr=m.attributes,this.val="",this.children=[],this.firstChild=null,this.lastChild=null,this.line=y?y.line:null,this.column=y?y.column:null,this.position=y?y.position:null,this.startTagPosition=y?y.startTagPosition:null}function s(m){this.text=m}function o(m){this.cdata=m}function g(m){this.comment=m}function f(m){if(m&&(m=m.toString().trim()),!m)throw new Error("No XML to parse!");this.doctype="",this.parser=B.parser(!0),function u(m){m.onopentag=r,m.onclosetag=d,m.ontext=E,m.oncdata=C,m.oncomment=e,m.ondoctype=h,m.onerror=Q}(this.parser),w=[this];try{this.parser.write(m)}finally{delete this.parser}}a.prototype._addChild=function(m){this.children.push(m),this.firstChild||(this.firstChild=m),this.lastChild=m},a.prototype._opentag=function(m){var y=new a(m);this._addChild(y),w.unshift(y)},a.prototype._closetag=function(){w.shift()},a.prototype._text=function(m){typeof this.children>"u"||(this.val+=m,this._addChild(new s(m)))},a.prototype._cdata=function(m){this.val+=m,this._addChild(new o(m))},a.prototype._comment=function(m){typeof this.children>"u"||this._addChild(new g(m))},a.prototype._error=function(m){throw m},a.prototype.eachChild=function(m,y){for(var x=0,Y=this.children.length;x1?x.attr[y[1]]:x.val},a.prototype.toString=function(m){return this.toStringWithIndent("",m)},a.prototype.toStringWithIndent=function(m,y){var x=m+"<"+this.name,Y=y&&y.compressed?"":"\n";for(var S in this.attr)Object.prototype.hasOwnProperty.call(this.attr,S)&&(x+=" "+S+'="'+R(this.attr[S])+'"');if(1===this.children.length&&"element"!==this.children[0].type)x+=">"+this.children[0].toString(y)+"";else if(this.children.length){x+=">"+Y;for(var z=m+(y&&y.compressed?"":" "),F=0,$=this.children.length;F<$;F++)x+=this.children[F].toStringWithIndent(z,y)+Y;x+=m+""}else y&&y.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?x+="/>":x+=">":x+="/>";return x},s.prototype.toString=function(m){return p(R(this.text),m)},s.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},o.prototype.toString=function(m){return""},o.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},g.prototype.toString=function(m){return"\x3c!--"+p(R(this.comment),m)+"--\x3e"},g.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},a.prototype.type="element",s.prototype.type="text",o.prototype.type="cdata",g.prototype.type="comment",function I(m,y){for(var x in y)y.hasOwnProperty(x)&&(m[x]=y[x])}(f.prototype,a.prototype),f.prototype._opentag=function(m){typeof this.children>"u"?a.call(this,m):a.prototype._opentag.apply(this,arguments)},f.prototype._doctype=function(m){this.doctype+=m};var w=null;function r(){w[0]&&w[0]._opentag.apply(w[0],arguments)}function d(){w[0]&&w[0]._closetag.apply(w[0],arguments)}function E(){w[0]&&w[0]._text.apply(w[0],arguments)}function C(){w[0]&&w[0]._cdata.apply(w[0],arguments)}function e(){w[0]&&w[0]._comment.apply(w[0],arguments)}function h(){w[0]&&w[0]._doctype.apply(w[0],arguments)}function Q(){w[0]&&w[0]._error.apply(w[0],arguments)}function R(m){return m.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function p(m,y){var x=m;return y&&y.trimmed&&m.length>25&&(x=x.substring(0,25).trim()+"\u2026"),y&&y.preserveWhitespace||(x=x.trim()),x}b.exports&&!n.g.xmldocAssumeBrowser?(b.exports.XmlDocument=f,b.exports.XmlElement=a,b.exports.XmlTextNode=s,b.exports.XmlCDataNode=o,b.exports.XmlCommentNode=g):(this.XmlDocument=f,this.XmlElement=a,this.XmlTextNode=s,this.XmlCDataNode=o,this.XmlCommentNode=g)}()},7785:function(b,A,n){"use strict";typeof window<"u"&&!window.Promise&&n(98168),n(83043);function a(s){this.fs=s,this.resolving={}}a.prototype.resolve=function(s,o){if(!this.resolving[s]){var g=this;this.resolving[s]=new Promise(function(f,w){0===s.toLowerCase().indexOf("https://")||0===s.toLowerCase().indexOf("http://")?g.fs.existsSync(s)?f():function(s,o){return new Promise(function(g,f){var w=new XMLHttpRequest;for(var u in w.open("GET",s,!0),o)w.setRequestHeader(u,o[u]);w.responseType="arraybuffer",w.onreadystatechange=function(){4===w.readyState&&(w.status>=200&&w.status<300||setTimeout(function(){f(new TypeError('Failed to fetch (url: "'+s+'")'))},0))},w.onload=function(){w.status>=200&&w.status<300&&g(w.response)},w.onerror=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},w.ontimeout=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},w.send()})}(s,o).then(function(u){g.fs.writeFileSync(s,u),f()},function(u){w(u)}):f()})}return this.resolving[s]},a.prototype.resolved=function(){var s=this;return new Promise(function(o,g){Promise.all(Object.values(s.resolving)).then(function(){o()},function(f){g(f)})})},b.exports=a},45314:function(b,A,n){"use strict";var B=n(50621).Buffer,a=n(91867).isFunction,s=n(91867).isUndefined,f=(n(91867),n(44134).saveAs),w={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function u(d,E,C,e){this.docDefinition=d,this.tableLayouts=E||null,this.fonts=C||w,this.vfs=e}u.prototype._createDoc=function(d,E){var C=function(Y){return"object"==typeof Y?{url:Y.url,headers:Y.headers}:{url:Y,headers:{}}};d=d||{},this.tableLayouts&&(d.tableLayouts=this.tableLayouts);var h=new(n(81566))(this.fonts);if(n(48181).bindFS(this.vfs),!a(E))return h.createPdfKitDocument(this.docDefinition,d);var R=new(n(7785))(n(48181));for(var p in this.fonts)if(this.fonts.hasOwnProperty(p)){if(this.fonts[p].normal)if(Array.isArray(this.fonts[p].normal)){var m=C(this.fonts[p].normal[0]);R.resolve(m.url,m.headers),this.fonts[p].normal[0]=m.url}else m=C(this.fonts[p].normal),R.resolve(m.url,m.headers),this.fonts[p].normal=m.url;this.fonts[p].bold&&(Array.isArray(this.fonts[p].bold)?(m=C(this.fonts[p].bold[0]),R.resolve(m.url,m.headers),this.fonts[p].bold[0]=m.url):(m=C(this.fonts[p].bold),R.resolve(m.url,m.headers),this.fonts[p].bold=m.url)),this.fonts[p].italics&&(Array.isArray(this.fonts[p].italics)?(m=C(this.fonts[p].italics[0]),R.resolve(m.url,m.headers),this.fonts[p].italics[0]=m.url):(m=C(this.fonts[p].italics),R.resolve(m.url,m.headers),this.fonts[p].italics=m.url)),this.fonts[p].bolditalics&&(Array.isArray(this.fonts[p].bolditalics)?(m=C(this.fonts[p].bolditalics[0]),R.resolve(m.url,m.headers),this.fonts[p].bolditalics[0]=m.url):(m=C(this.fonts[p].bolditalics),R.resolve(m.url,m.headers),this.fonts[p].bolditalics=m.url))}if(this.docDefinition.images)for(var y in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(y)&&(m=C(this.docDefinition.images[y]),R.resolve(m.url,m.headers),this.docDefinition.images[y]=m.url);var x=this;R.resolved().then(function(){var Y=h.createPdfKitDocument(x.docDefinition,d);E(Y)},function(Y){throw Y})},u.prototype._flushDoc=function(d,E){var e,C=[];d.on("readable",function(){for(var h;null!==(h=d.read(9007199254740991));)C.push(h)}),d.on("end",function(){e=B.concat(C),E(e,d._pdfMakePages)}),d.end()},u.prototype._getPages=function(d,E){if(!E)throw"_getPages is an async method and needs a callback argument";var C=this;this._createDoc(d,function(e){C._flushDoc(e,function(h,Q){E(Q)})})},u.prototype._bufferToBlob=function(d){var E;try{E=new Blob([d],{type:"application/pdf"})}catch(e){if("InvalidStateError"===e.name){var C=new Uint8Array(d);E=new Blob([C.buffer],{type:"application/pdf"})}}if(!E)throw"Could not generate blob";return E},u.prototype._openWindow=function(){var d=window.open("","_blank");if(null===d)throw"Open PDF in new window blocked by browser";return d},u.prototype._openPdf=function(d,E){E||(E=this._openWindow());try{this.getBlob(function(C){var h=(window.URL||window.webkitURL).createObjectURL(C);E.location.href=h},d)}catch(C){throw E.close(),C}},u.prototype.open=function(d,E){(d=d||{}).autoPrint=!1,this._openPdf(d,E=E||null)},u.prototype.print=function(d,E){(d=d||{}).autoPrint=!0,this._openPdf(d,E=E||null)},u.prototype.download=function(d,E,C){a(d)&&(s(E)||(C=E),E=d,d=null),d=d||"file.pdf",this.getBlob(function(e){f(e,d),a(E)&&E()},C)},u.prototype.getBase64=function(d,E){if(!d)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(C){d(C.toString("base64"))},E)},u.prototype.getDataUrl=function(d,E){if(!d)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(C){d("data:application/pdf;base64,"+C.toString("base64"))},E)},u.prototype.getBlob=function(d,E){if(!d)throw"getBlob is an async method and needs a callback argument";var C=this;this.getBuffer(function(e){var h=C._bufferToBlob(e);d(h)},E)},u.prototype.getBuffer=function(d,E){if(!d)throw"getBuffer is an async method and needs a callback argument";var C=this;this._createDoc(E,function(e){C._flushDoc(e,function(h){d(h)})})},u.prototype.getStream=function(d,E){if(!a(E))return this._createDoc(d);this._createDoc(d,function(e){E(e)})},b.exports={createPdf:function(d,E,C,e){if(!function r(){try{var d=new Uint8Array(1),E={foo:function(){return 42}};return Object.setPrototypeOf(E,Uint8Array.prototype),Object.setPrototypeOf(d,E),42===d.foo()}catch{return!1}}())throw"Your browser does not provide the level of support needed";return new u(d,E||n.g.pdfMake.tableLayouts,C||n.g.pdfMake.fonts,e||n.g.pdfMake.vfs)}}},48181:function(b,A,n){"use strict";var a=n(50621).Buffer;function s(){this.fileSystem={},this.dataSystem={}}function o(g){return 0===g.indexOf("/")&&(g=g.substring(1)),0===g.indexOf("/")&&(g=g.substring(1)),g}s.prototype.existsSync=function(g){return g=o(g),typeof this.fileSystem[g]<"u"||typeof this.dataSystem[g]<"u"},s.prototype.readFileSync=function(g,f){g=o(g);var w=this.dataSystem[g];if("string"==typeof w&&"utf8"===f)return w;if(w)return new a(w,"string"==typeof w?"base64":void 0);var u=this.fileSystem[g];if(u)return u;throw"File '"+g+"' not found in virtual file system"},s.prototype.writeFileSync=function(g,f){this.fileSystem[o(g)]=f},s.prototype.bindFS=function(g){this.dataSystem=g||{}},b.exports=new s},77530:function(b,A,n){"use strict";var B=n(91867).isString;function s(f){return"auto"===f.width}function o(f){return null==f.width||"*"===f.width||"star"===f.width}b.exports={buildColumnWidths:function a(f,w){var u=[],r=0,d=0,E=[],C=0,e=0,h=[],Q=w;f.forEach(function(x){s(x)?(u.push(x),r+=x._minWidth,d+=x._maxWidth):o(x)?(E.push(x),C=Math.max(C,x._minWidth),e=Math.max(e,x._maxWidth)):h.push(x)}),h.forEach(function(x){B(x.width)&&/\d+%/.test(x.width)&&(x.width=parseFloat(x.width)*Q/100),x._calcWidth=x.width=w)u.forEach(function(x){x._calcWidth=x._minWidth}),E.forEach(function(x){x._calcWidth=C});else{if(R0){var y=w/E.length;E.forEach(function(x){x._calcWidth=y})}}},measureMinMax:function g(f){for(var w={min:0,max:0},u={min:0,max:0},r=0,d=0,E=f.length;d=0;z--){var $=h.styleStack.styleDictionary[v[z]];for(var gA in $)$.hasOwnProperty(gA)&&(S[gA]=$[gA])}return S}function m(v){return g(v)?v=[v,v,v,v]:w(v)&&2===v.length&&(v=[v[0],v[1],v[0],v[1]]),v}var y=[void 0,void 0,void 0,void 0];if(e.style){var Y=p(w(e.style)?e.style:[e.style]);Y&&(y=R(Y,y)),Y.margin&&(y=m(Y.margin))}return y=R(e,y),e.margin&&(y=m(e.margin)),void 0===y[0]&&void 0===y[1]&&void 0===y[2]&&void 0===y[3]?null:y}(),e.columns)return Q(h.measureColumns(e));if(e.stack)return Q(h.measureVerticalContainer(e));if(e.ul)return Q(h.measureUnorderedList(e));if(e.ol)return Q(h.measureOrderedList(e));if(e.table)return Q(h.measureTable(e));if(void 0!==e.text)return Q(h.measureLeaf(e));if(e.toc)return Q(h.measureToc(e));if(e.image)return Q(h.measureImage(e));if(e.svg)return Q(h.measureSVG(e));if(e.canvas)return Q(h.measureCanvas(e));if(e.qr)return Q(h.measureQr(e));throw"Unrecognized document structure: "+JSON.stringify(e,u)});function Q(R){var p=R._margin;return p&&(R._minWidth+=p[0]+p[2],R._maxWidth+=p[0]+p[2]),R}},C.prototype.convertIfBase64Image=function(e){if(/^data:image\/(jpeg|jpg|png);base64,/.test(e.image)){var h="$$pdfmake$$"+this.autoImageIndex++;this.images[h]=e.image,e.image=h}},C.prototype.measureImageWithDimensions=function(e,h){if(e.fit){var Q=h.width/h.height>e.fit[0]/e.fit[1]?e.fit[0]/h.width:e.fit[1]/h.height;e._width=e._minWidth=e._maxWidth=h.width*Q,e._height=h.height*Q}else e.cover?(e._width=e._minWidth=e._maxWidth=e.cover.width,e._height=e._minHeight=e._maxHeight=e.cover.height):(e._width=e._minWidth=e._maxWidth=e.width||h.width,e._height=e.height||h.height*e._width/h.width,g(e.maxWidth)&&e.maxWidthe._width&&(e._width=e._minWidth=e._maxWidth=e.minWidth,e._height=e._width*h.height/h.width),g(e.minHeight)&&e.minHeight>e._height&&(e._height=e.minHeight,e._width=e._minWidth=e._maxWidth=e._height*h.width/h.height));e._alignment=this.styleStack.getProperty("alignment")},C.prototype.measureImage=function(e){this.images&&this.convertIfBase64Image(e);var h=this.imageMeasure.measureImage(e.image);return this.measureImageWithDimensions(e,h),e},C.prototype.measureSVG=function(e){var h=this.svgMeasure.measureSVG(e.svg);return this.measureImageWithDimensions(e,h),e.font=this.styleStack.getProperty("font"),e.svg=this.svgMeasure.writeDimensions(e.svg,{width:e._width,height:e._height}),e},C.prototype.measureLeaf=function(e){e._textRef&&e._textRef._textNodeRef.text&&(e.text=e._textRef._textNodeRef.text);var h=this.styleStack.clone();h.push(e);var Q=this.textTools.buildInlines(e.text,h);return e._inlines=Q.items,e._minWidth=Q.minWidth,e._maxWidth=Q.maxWidth,e},C.prototype.measureToc=function(e){if(e.toc.title&&(e.toc.title=this.measureNode(e.toc.title)),e.toc._items.length>0){for(var h=[],Q=e.toc.textStyle||{},I=e.toc.numberStyle||Q,R=e.toc.textMargin||[0,0,0,0],p=0,m=e.toc._items.length;p=26?S((z/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[z%26|0]}(v-1)}function p(v){if(v<1||v>4999)return v.toString();var $,S=v,z={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},F="";for($ in z)for(;S>=z[$];)F+=$,S-=z[$];return F}var y;switch(Q){case"none":y=null;break;case"upper-alpha":y=R(e).toUpperCase();break;case"lower-alpha":y=R(e);break;case"upper-roman":y=p(e);break;case"lower-roman":y=p(e).toLowerCase();break;default:y=function m(v){return v.toString()}(e)}if(null===y)return{};I&&(w(I)?(I[0]&&(y=I[0]+y),I[1]&&(y+=I[1]),y+=" "):y+=I+" ");var x={text:y},Y=h.getProperty("markerColor");return Y&&(x.color=Y),{_inlines:this.textTools.buildInlines(x,h).items}},C.prototype.measureUnorderedList=function(e){var h=this.styleStack.clone(),Q=e.ul;e.type=e.type||"disc",e._gapSize=this.gapSizeForList(),e._minWidth=0,e._maxWidth=0;for(var I=0,R=Q.length;I0?h.length-1:0;return e._minWidth=R.min+e._gap*p,e._maxWidth=R.max+e._gap*p,e},C.prototype.measureTable=function(e){(function fA(iA){if(iA.table.widths||(iA.table.widths="auto"),o(iA.table.widths))for(iA.table.widths=[iA.table.widths];iA.table.widths.length1?(gA(y,Q,x.colSpan),h.push({col:Q,span:x.colSpan,minWidth:x._minWidth,maxWidth:x._maxWidth})):(m._minWidth=Math.max(m._minWidth,x._minWidth),m._maxWidth=Math.max(m._maxWidth,x._maxWidth))),x.rowSpan&&x.rowSpan>1&&_(e.table,I,Q,x.rowSpan)}}!function F(){for(var iA,wA,IA=0,FA=h.length;IA0)for(iA=J/YA.span,wA=0;wA0)for(iA=BA/YA.span,wA=0;wAu.page?w:u.page>w.page?u:w.y>u.y?w:u).page,x:r.x,y:r.y,availableHeight:r.availableHeight,availableWidth:r.availableWidth}}(this,w.bottomMost)},s.prototype.markEnding=function(w){this.page=w._columnEndingContext.page,this.x=w._columnEndingContext.x,this.y=w._columnEndingContext.y,this.availableWidth=w._columnEndingContext.availableWidth,this.availableHeight=w._columnEndingContext.availableHeight,this.lastColumnWidth=w._columnEndingContext.lastColumnWidth},s.prototype.saveContextInEndingCell=function(w){w._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},s.prototype.completeColumnGroup=function(w){var u=this.snapshots.pop();this.calculateBottomMost(u),this.endingCell=null,this.x=u.x;var r=u.bottomMost.y;w&&(u.page===u.bottomMost.page?u.y+w>r&&(r=u.y+w):r+=w),this.y=r,this.page=u.bottomMost.page,this.availableWidth=u.availableWidth,this.availableHeight=u.bottomMost.availableHeight,w&&(this.availableHeight-=r-u.bottomMost.y),this.lastColumnWidth=u.lastColumnWidth},s.prototype.addMargin=function(w,u){this.x+=w,this.availableWidth-=w+(u||0)},s.prototype.moveDown=function(w){return this.y+=w,this.availableHeight-=w,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(w,u){null!=w&&(this.x=w,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=u&&(this.y=u,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},s.prototype.moveToRelative=function(w,u){null!=w&&(this.x=this.x+w),null!=u&&(this.y=this.y+u)},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 w=this.snapshots.pop();this.x=w.x,this.y=w.y,this.availableWidth=w.availableWidth,this.availableHeight=w.availableHeight,this.page=w.page,this.endingCell=w.endingCell,this.lastColumnWidth=w.lastColumnWidth};var g=function(w,u){return(u=function o(w,u){return void 0===w?u:a(w)&&"landscape"===w.toLowerCase()?"landscape":"portrait"}(u,w.pageSize.orientation))!==w.pageSize.orientation?{orientation:u,width:w.pageSize.height,height:w.pageSize.width}:{orientation:w.pageSize.orientation,width:w.pageSize.width,height:w.pageSize.height}};s.prototype.moveToNextPage=function(w){var u=this.page+1,r=this.page,d=this.y,E=u>=this.pages.length;if(E){var C=this.availableWidth,e=this.getCurrentPage().pageSize.orientation,h=g(this.getCurrentPage(),w);this.addPage(h),e===h.orientation&&(this.availableWidth=C)}else this.page=u,this.initializePage();return{newPageCreated:E,prevPage:r,prevY:d,y:this.y}},s.prototype.addPage=function(w){var u={items:[],pageSize:w};return this.pages.push(u),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),u},s.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},s.prototype.getCurrentPosition=function(){var w=this.getCurrentPage().pageSize,u=w.height-this.pageMargins.top-this.pageMargins.bottom,r=w.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:w.orientation,pageInnerHeight:u,pageInnerWidth:r,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/u,horizontalRatio:(this.x-this.pageMargins.left)/r}},b.exports=s},54861:function(b,A,n){"use strict";var B=n(70770),a=n(91867).isNumber,s=n(91867).pack,o=n(91867).offsetVector,g=n(79178);function f(r,d){this.context=r,this.contextStack=[],this.tracker=d}function w(r,d,E){null==E||E<0||E>r.items.length?r.items.push(d):r.items.splice(E,0,d)}f.prototype.addLine=function(r,d,E){var C=r.getHeight(),e=this.context,h=e.getCurrentPage(),Q=this.getCurrentPositionOnPage();return!(e.availableHeight0&&r.inlines[0].alignment,e=0;switch(C){case"right":e=d-E;break;case"center":e=(d-E)/2}if(e&&(r.x=(r.x||0)+e),"justify"===C&&!r.newLineForced&&!r.lastLineInParagraph&&r.inlines.length>1)for(var h=(d-E)/(r.inlines.length-1),Q=1,I=r.inlines.length;Q0)&&(void 0===r._x&&(r._x=r.x||0),r.x=C.x+r._x,r.y=C.y,this.alignImage(r),w(e,{type:E||"image",item:r},d),C.moveDown(r._height),h)},f.prototype.addSVG=function(r,d){return this.addImage(r,d,"svg")},f.prototype.addQr=function(r,d){var E=this.context,C=E.getCurrentPage(),e=this.getCurrentPositionOnPage();if(!C||void 0===r.absolutePosition&&E.availableHeighte.availableHeight||(r.items.forEach(function(Q){switch(Q.type){case"line":var I=function u(r){var d=new B(r.maxWidth);for(var E in r)r.hasOwnProperty(E)&&(d[E]=r[E]);return d}(Q.item);I._node&&(I._node.positions[0].pageNumber=e.page+1),I.x=(I.x||0)+(d?r.xOffset||0:e.x),I.y=(I.y||0)+(E?r.yOffset||0:e.y),h.items.push({type:"line",item:I});break;case"vector":var R=s(Q.item);o(R,d?r.xOffset||0:e.x,E?r.yOffset||0:e.y),h.items.push({type:"vector",item:R});break;case"image":case"svg":var p=s(Q.item);p.x=(p.x||0)+(d?r.xOffset||0:e.x),p.y=(p.y||0)+(E?r.yOffset||0:e.y),h.items.push({type:Q.type,item:p})}}),C||e.moveDown(r.height),0))},f.prototype.pushContext=function(r,d){void 0===r&&(d=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,r=this.context.availableWidth),a(r)&&(r=new g({width:r,height:d},{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()},b.exports=f},28284:function(b,A,n){"use strict";var B=n(91867).isArray;function s(o,g){for(var f in this.fonts={},this.pdfKitDoc=g,this.fontCache={},o)if(o.hasOwnProperty(f)){var w=o[f];this.fonts[f]={normal:w.normal,bold:w.bold,italics:w.italics,bolditalics:w.bolditalics}}}s.prototype.getFontType=function(o,g){return function a(o,g){var f="normal";return o&&g?f="bolditalics":o?f="bold":g&&(f="italics"),f}(o,g)},s.prototype.getFontFile=function(o,g,f){var w=this.getFontType(g,f);return this.fonts[o]&&this.fonts[o][w]?this.fonts[o][w]:null},s.prototype.provideFont=function(o,g,f){var w=this.getFontType(g,f);if(null===this.getFontFile(o,g,f))throw new Error("Font '"+o+"' in style '"+w+"' is not defined in the font section of the document definition.");if(this.fontCache[o]=this.fontCache[o]||{},!this.fontCache[o][w]){var u=this.fonts[o][w];B(u)||(u=[u]),this.fontCache[o][w]=this.pdfKitDoc.font.apply(this.pdfKitDoc,u)._font}return this.fontCache[o][w]},b.exports=s},91867:function(b){"use strict";function a(e){return Array.isArray(e)}b.exports={isString:function A(e){return"string"==typeof e||e instanceof String},isNumber:function n(e){return"number"==typeof e||e instanceof Number},isBoolean:function B(e){return"boolean"==typeof e},isArray:a,isFunction:function s(e){return"function"==typeof e},isObject:function o(e){return null!==e&&"object"==typeof e},isNull:function g(e){return null===e},isUndefined:function f(e){return void 0===e},pack:function w(){for(var e={},h=0,Q=arguments.length;h0})).forEach(function(AA){var QA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(yA){void 0!==AA[yA]&&(QA[yA]=AA[yA])}),QA.startPosition=AA.positions[0],QA.pageNumbers=Array.from(new Set(AA.positions.map(function(yA){return yA.pageNumber}))),QA.pages=BA.length,QA.stack=d(AA.stack),AA.nodeInfo=QA});for(var aA=0;aA1)for(var L=aA+1,rA=J.length;L-1&&xA.push(J[L].nodeInfo),IA.length>2&&J[L].nodeInfo.pageNumbers.indexOf(EA+1)>-1&&OA.push(J[L].nodeInfo);if(IA.length>3)for(L=0;L-1&&W.push(J[L].nodeInfo);if(IA(eA.nodeInfo,xA,OA,W))return eA.pageBreak="before",!0}}return!1}this.docPreprocessor=new a,this.docMeasure=new s(z,F,$,this.imageMeasure,this.svgMeasure,this.tableLayouts,iA);for(var HA=this.tryLayoutDocument(S,z,F,$,gA,_,fA,iA,wA);FA(HA.linearNodeList,HA.pages);)HA.linearNodeList.forEach(function(BA){BA.resetXY()}),HA=this.tryLayoutDocument(S,z,F,$,gA,_,fA,iA,wA);return HA.pages},Y.prototype.tryLayoutDocument=function(S,z,F,$,gA,_,fA,iA,wA,IA){this.linearNodeList=[],S=this.docPreprocessor.preprocessDocument(S),S=this.docMeasure.measureDocument(S),this.writer=new g(new o(this.pageSize,this.pageMargins),this.tracker);var FA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){FA.addBackground(gA)}),this.addBackground(gA),this.processNode(S),this.addHeadersAndFooters(_,fA),null!=wA&&this.addWatermark(wA,z,$),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},Y.prototype.addBackground=function(S){var z=R(S)?S:function(){return S},F=this.writer.context(),$=F.getCurrentPage().pageSize,gA=z(F.page+1,$);gA&&(this.writer.beginUnbreakableBlock($.width,$.height),gA=this.docPreprocessor.preprocessDocument(gA),this.processNode(this.docMeasure.measureDocument(gA)),this.writer.commitUnbreakableBlock(0,0),F.backgroundLength[F.page]+=gA.positions.length)},Y.prototype.addStaticRepeatable=function(S,z){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(S))},z)},Y.prototype.addDynamicRepeatable=function(S,z){for(var $=0,gA=this.writer.context().pages.length;$1;)J.push({fontSize:EA}),(BA=HA.sizeOfRotatedText(FA.text,FA.angle,J)).width>IA.width?EA=(aA+(eA=EA))/2:BA.widthIA.height?(aA+(eA=EA))/2:((aA=EA)+eA)/2),J.pop();return EA}(this.pageSize,S,z));var $={text:S.text,font:z.provideFont(S.font,S.bold,S.italics),fontSize:S.fontSize,color:S.color,opacity:S.opacity,angle:S.angle};$._size=function iA(IA,FA){var YA=new p(FA),HA=new m(null,{font:IA.font,bold:IA.bold,italics:IA.italics});return HA.push({fontSize:IA.fontSize}),{size:YA.sizeOfString(IA.text,HA),rotatedSize:YA.sizeOfRotatedText(IA.text,IA.angle,HA)}}(S,z);for(var gA=this.writer.context().pages,_=0,fA=gA.length;_0;wA--)iA.push(fA);return iA}(S._gap);$&&(F-=($.length-1)*S._gap),f.buildColumnWidths(z,F);var gA=this.processRow(z,z,$);x(S.positions,gA.positions)},Y.prototype.processRow=function(S,z,F,$,gA,_){var fA=this,iA=[],wA=[];return this.tracker.auto("pageChanged",function IA(HA){for(var J,BA=0,aA=iA.length;BA1)for(var EA=1;EAHA?F[HA]:0}function YA(HA,J){if(HA.rowSpan&&HA.rowSpan>1){var BA=gA+HA.rowSpan-1;if(BA>=$.length)throw"Row span for column "+J+" (with indexes starting from 0) exceeded row count";return $[BA][J]}return null}},Y.prototype.processList=function(S,z){var _,F=this,$=S?z.ol:z.ul,gA=z._gapSize;this.writer.context().addMargin(gA.width),this.tracker.auto("lineAdded",function fA(iA){if(_){var wA=_;if(_=null,wA.canvas){var IA=wA.canvas[0];h(IA,-wA._minWidth,0),F.writer.addVector(IA)}else if(wA._inlines){var FA=new u(F.pageSize.width);FA.addInline(wA._inlines[0]),FA.x=-wA._minWidth,FA.y=iA.getAscenderHeight()-FA.getAscenderHeight(),F.writer.addLine(FA,!0)}}},function(){$.forEach(function(iA){_=iA.listMarker,F.processNode(iA),x(z.positions,iA.positions)})}),this.writer.context().addMargin(-gA.width)},Y.prototype.processTable=function(S){var z=new w(S);z.beginTable(this.writer);for(var F=S.table.heights,$=0,gA=S.table.body.length;$0&&(F.hasEnoughSpaceForInline(S._inlines[0],S._inlines.slice(1))||gA);){var _=!1,fA=S._inlines.shift();if(gA=!1,!fA.noWrap&&fA.text.length>1&&fA.width>F.getAvailableWidth()){var iA=fA.width/fA.text.length,wA=Math.floor(F.getAvailableWidth()/iA);if(wA<1&&(wA=1),wA0){var r=w.pages[0];if(r.xOffset=g,r.yOffset=f,u>1)if(void 0!==g||void 0!==f)r.height=w.getCurrentPage().pageSize.height-w.pageMargins.top-w.pageMargins.bottom;else{r.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var d=0,E=this.repeatables.length;dOA.item.y2?OA.item.y1:OA.item.y2:OA.item.h:0}(OA)}var EA=v(BA||40),xA=EA.top;return J.forEach(function(OA){OA.items.forEach(function(W){var L=eA(W);L>xA&&(xA=L)})}),xA+=EA.bottom}function Y(J,BA){J&&"auto"===J.height&&(J.height=1/0);var eA=function z(J){if(d(J)){var BA=o[J.toUpperCase()];if(!BA)throw"Page size "+J+" not recognized";return{width:BA[0],height:BA[1]}}return J}(J||"A4");return function aA(EA){return!!d(EA)&&("portrait"===(EA=EA.toLowerCase())&&eA.width>eA.height||"landscape"===EA&&eA.widtheA.height?"landscape":"portrait",eA}function v(J){if(E(J))J={left:J,right:J,top:J,bottom:J};else if(e(J))if(2===J.length)J={left:J[0],top:J[1],right:J[0],bottom:J[1]};else{if(4!==J.length)throw"Invalid pageMargins definition";J={left:J[0],top:J[1],right:J[2],bottom:J[3]}}return J}function F(J,BA){J.pageSize.orientation!==(BA.options.size[0]>BA.options.size[1]?"landscape":"portrait")&&(BA.options.size=[BA.options.size[1],BA.options.size[0]])}function gA(J,BA){var aA=J;return BA.sup&&(aA-=.75*BA.fontSize),BA.sub&&(aA+=.35*BA.fontSize),aA}function _(J,BA,aA,eA,EA){function xA(zA,pA){var JA,ft,wt=new u(null);if(h(zA.positions))throw"Page reference id not found";var gt=zA.positions[0].pageNumber.toString();switch(pA.text=gt,JA=wt.widthOfString(pA.text,pA.font,pA.fontSize,pA.characterSpacing,pA.fontFeatures),ft=pA.width-JA,pA.width=JA,pA.alignment){case"right":pA.x+=ft;break;case"center":pA.x+=ft/2}}J._pageNodeRef&&xA(J._pageNodeRef,J.inlines[0]),BA=BA||0,aA=aA||0;var OA=J.getHeight(),L=OA-J.getAscenderHeight();w.drawBackground(J,BA,aA,eA,EA);for(var rA=0,AA=J.inlines.length;rA1){var OA=J.points[0],W=J.points[J.points.length-1];(J.closePath||OA.x===W.x&&OA.y===W.y)&&aA.closePath()}break;case"path":aA.path(J.d)}if(J.linearGradient&&eA){var L=1/(J.linearGradient.length-1);for(EA=0;EA-1&&(xA=xA.slice(0,OA)),aA.height===1/0){var W=x(xA,J.pageMargins);this.pdfKitDoc.options.size=[aA.width,W]}var L=function HA(J,BA){var aA={};return Object.keys(J).forEach(function(eA){var EA=J[eA];aA[eA]=BA.pattern(EA.boundingBox,EA.xStep,EA.yStep,EA.pattern,EA.colored)}),aA}(J.patterns||{},this.pdfKitDoc);if(function $(J,BA,aA,eA,EA){aA._pdfMakePages=J,aA.addPage();var xA=0;EA&&J.forEach(function(yA){xA+=yA.items.length});var OA=0;EA=EA||function(){};for(var W=0;W0&&(F(J[W],aA),aA.addPage(aA.options));for(var L=J[W],rA=0,AA=L.items.length;rA=128?285:0);var I=[[]];for(h=0;h<30;++h){for(var R=I[h],p=[],m=0;m<=h;++m)p.push(e[(m6},$=function(W,L){var rA=-8&function(W){var L=A[W],rA=16*W*W+128*W+64;return S(W)&&(rA-=36),L[2].length&&(rA-=25*L[2].length*L[2].length-10*L[2].length-55),rA}(W),AA=A[W];return rA-8*AA[0][L]*AA[1][L]},gA=function(W,L){switch(L){case B:return W<10?10:W<27?12:14;case a:return W<10?9:W<27?11:13;case s:return W<10?8:16;case 8:return W<10?8:W<27?10:12}},_=function(W,L,rA){var AA=$(W,rA)-4-gA(W,L);switch(L){case B:return 3*(AA/10|0)+(AA%10<4?0:AA%10<7?1:2);case a:return 2*(AA/11|0)+(AA%11<6?0:1);case s:return AA/8|0;case 8:return AA/13|0}},fA=function(W,L){switch(W){case B:return L.match(g)?L:null;case a:return L.match(f)?L.toUpperCase():null;case s:if("string"==typeof L){for(var rA=[],AA=0;AA>6,128|63&QA):QA<65536?rA.push(224|QA>>12,128|QA>>6&63,128|63&QA):rA.push(240|QA>>18,128|QA>>12&63,128|QA>>6&63,128|63&QA)}return rA}return L}},wA=function(W,L){for(var rA=W.slice(0),AA=W.length,QA=L.length,yA=0;yA=0)for(var CA=0;CA=0;--yA)QA>>AA+yA&1&&(QA^=rA<>cA&1;return W},aA=function(W){for(var yA=function(pt){for(var Yt=0,VA=0;VA=5&&(Yt+=pt[VA]-5+3);for(VA=5;VA=4*_A||pt[VA+1]>=4*_A)&&(Yt+=40)}return Yt},cA=W.length,CA=0,DA=0,NA=0;NA=cA){for(QA.push(yA|pA>>(JA-=cA));JA>=8;)QA.push(pA>>(JA-=8)&255);yA=0,cA=8}JA>0&&(yA|=(pA&(1<>3);cA=function(W,L,rA){for(var AA=[],QA=W.length/L|0,yA=0,cA=L-W.length%L,CA=0;CA>Qt&1,QA[wt+_A][gt+Qt]=1};for(cA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),cA(rA-8,0,8,9,[256,127,65,93,93,93,65,127]),cA(0,rA-8,9,8,[254,130,186,186,186,130,254,0,0]),yA=9;yA>ft++&1,QA[yA][rA-11+pA]=QA[rA-11+pA][yA]=1}return{matrix:AA,reserved:QA}}(L),DA=CA.matrix,NA=CA.reserved;if(function(W,L,rA){for(var AA=W.length,QA=0,yA=-1,cA=AA-1;cA>=0;cA-=2){6==cA&&--cA;for(var CA=yA<0?AA-1:0,DA=0;DAcA-2;--NA)L[CA][NA]||(W[CA][NA]=rA[QA>>3]>>(7&~QA)&1,++QA);CA+=yA}yA=-yA}}(DA,NA,cA),QA<0){J(DA,NA,0),BA(DA,0,AA,0);var zA=0,pA=aA(DA);for(J(DA,NA,0),QA=1;QA<8;++QA){J(DA,NA,QA),BA(DA,0,AA,QA);var JA=aA(DA);pA>JA&&(pA=JA,zA=QA),J(DA,NA,QA)}QA=zA}return J(DA,NA,QA),BA(DA,0,AA,QA),DA};function xA(W,L){var rA=[],AA=L.background||"#fff",QA=L.foreground||"#000",yA=L.padding||0,cA=function EA(W,L){var rA={numeric:B,alphanumeric:a,octet:s},QA=(L=L||{}).version||-1,yA={L:u,M:r,Q:d,H:E}[(L.eccLevel||"L").toUpperCase()],cA=L.mode?rA[L.mode.toLowerCase()]:-1,CA="mask"in L?L.mask:-1;if(cA<0)cA="string"==typeof W?W.match(g)?B:W.match(w)?a:s:s;else if(cA!=B&&cA!=a&&cA!=s)throw"invalid or unsupported mode";if(null===(W=fA(cA,W)))throw"invalid data format";if(yA<0||yA>3)throw"invalid ECC level";if(QA<0){for(QA=1;QA<=40&&!(W.length<=_(QA,cA,yA));++QA);if(QA>40)throw"too large data for the Qr format"}else if(QA<1||QA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=CA&&(CA<0||CA>8))throw"invalid mask";return eA(W,QA,cA,yA,CA)}(W,L),CA=cA.length,DA=Math.floor(L.fit?L.fit/CA:5),NA=CA*DA+DA*yA*2,zA=DA*yA;rA.push({type:"rect",x:0,y:0,w:NA,h:NA,lineWidth:0,color:AA});for(var pA=0;pA0;)this.styleOverrides.pop()},g.prototype.autopush=function(f){if(B(f))return 0;var w=[];f.style&&(w=a(f.style)?f.style:[f.style]);for(var u=0,r=w.length;u0&&this.pop(u),r},g.prototype.getProperty=function(f){if(this.styleOverrides)for(var w=this.styleOverrides.length-1;w>=0;w--){var u=this.styleOverrides[w];if(B(u)){var r=this.styleDictionary[u];if(r&&!s(r[f])&&!o(r[f]))return r[f]}else if(!s(u[f])&&!o(u[f]))return u[f]}return this.defaultStyle&&this.defaultStyle[f]},b.exports=g},89638:function(b,A,n){"use strict";var B=n(52242);function a(g){var f=parseFloat(g);if("number"==typeof f&&!isNaN(f))return f}function s(g){var f;try{f=new B.XmlDocument(g)}catch(w){throw new Error("SVGMeasure: "+w)}if("svg"!==f.name)throw new Error("SVGMeasure: expected document");return f}function o(){}o.prototype.measureSVG=function(g){var f=s(g),w=a(f.attr.width),u=a(f.attr.height);if((null==w||null==u)&&"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==w&&(w=a(r[2])),null==u&&(u=a(r[3]))}return{width:w,height:u}},o.prototype.writeDimensions=function(g,f){var w=s(g);return w.attr.width=""+f.width,w.attr.height=""+f.height,w.toString()},b.exports=o},89836:function(b,A,n){"use strict";var B=n(77530),a=n(91867).isFunction,s=n(91867).isNumber;function o(g){this.tableNode=g}o.prototype.beginTable=function(g){var f,w,u=this;if(this.offsets=(f=this.tableNode)._offsets,this.layout=f._layout,w=g.context().availableWidth-this.offsets.total,B.buildColumnWidths(f.table.widths,w),this.tableWidth=f._offsets.total+function r(){var C=0;return f.table.widths.forEach(function(e){C+=e._calcWidth}),C}(),this.rowSpanData=function d(){var C=[],e=0,h=0;C.push({left:0,rowSpan:0});for(var Q=0,I=u.tableNode.table.body[0].length;Qf.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${f.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows+(f.table.keepWithHeaderRows||0),this.dontBreakRows=f.table.dontBreakRows||!1,this.rowsWithoutPageBreak&&g.beginUnbreakableBlock(),function E(C){for(var e=0;e0&&x(e+m,Q,0,I.border[0]),void 0!==I.border[2]&&x(e+m,Q+p-1,2,I.border[2]);for(var y=0;y0&&x(e,Q+y,1,I.border[1]),void 0!==I.border[3]&&x(e+R-1,Q+y,3,I.border[3])}}function x(Y,v,S,z){var F=C[Y][v];F.border=F.border||{},F.border[S]=z}}(this.tableNode.table.body),this.drawHorizontalLine(0,g)},o.prototype.onRowBreak=function(g,f){var w=this;return function(){var u=w.rowPaddingTop+(w.headerRows?0:w.topLineWidth);f.context().availableHeight-=w.reservedAtBottom,f.context().moveDown(u)}},o.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)},o.prototype.drawHorizontalLine=function(g,f,w){var u=this.layout.hLineWidth(g,this.tableNode);if(u){var d,r=this.layout.hLineStyle(g,this.tableNode);r&&r.dash&&(d=r.dash);for(var h,Q,I,E=u/2,C=null,e=this.tableNode.table.body,R=0,p=this.rowSpanData.length;R0&&(v=(h=e[g-1][R]).border?h.border[3]:this.layout.defaultBorder)&&h.borderColor&&(x=h.borderColor[3]),gz;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else if(h&&h.colSpan&&v){for(;h.colSpan>z;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else if(Q&&Q.colSpan&&Y){for(;Q.colSpan>z;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else C.width+=this.rowSpanData[R].width||0}var F=(w||0)+E;y&&C&&C.width&&(f.addVector({type:"line",x1:C.left,x2:C.left+C.width,y1:F,y2:F,lineWidth:u,dash:d,lineColor:x},!1,w),C=null,x=null,h=null,Q=null,I=null)}f.context().moveDown(u)}},o.prototype.drawVerticalLine=function(g,f,w,u,r,d,E){var C=this.layout.vLineWidth(u,this.tableNode);if(0!==C){var h,e=this.layout.vLineStyle(u,this.tableNode);e&&e.dash&&(h=e.dash);var I,R,p,Q=this.tableNode.table.body;if(u>0&&(I=Q[d][E])&&I.borderColor&&(I.border?I.border[2]:this.layout.defaultBorder)&&(p=I.borderColor[2]),null==p&&u0&&rA--}return L.push({x:d.rowSpanData[d.rowSpanData.length-1].left,index:d.rowSpanData.length-1}),L}(),h=[],Q=w&&w.length>0,I=this.tableNode.table.body;if(h.push({y0:this.rowTopY,page:Q?w[0].prevPage:E}),Q)for(r=0,u=w.length;r0&&!this.headerRows,v=Y?0:this.topLineWidth,S=h[m].y0,z=h[m].y1;for(x&&(z+=this.rowPaddingBottom),f.context().page!=h[m].page&&(f.context().page=h[m].page,this.reservedAtBottom=0),r=0,u=e.length;r0&&!F&&(F=(_=I[g][gA-1]).border?_.border[2]:this.layout.defaultBorder),gA+11)for(var OA=1;OA1)for(OA=1;OA0&&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(){!d.headerRows&&!1!==d.layout.hLineWhenBroken&&d.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)},b.exports=o},84786:function(b,A,n){"use strict";var B=n(91867).isArray,a=n(91867).isPattern,s=n(91867).getPattern;function g(u,r,d,E){var h=u.inlines[0],Q=function C(){for(var FA=0,YA=0,HA=u.inlines.length;YAFA?YA:FA;return u.inlines[FA]}(),I=function e(){for(var FA=0,YA=0,HA=u.inlines.length;YA=0&&a.splice(s,1)}},A.prototype.emit=function(n){var B=Array.prototype.slice.call(arguments,1),a=this.events[n];a&&a.forEach(function(s){s.apply(this,B)})},A.prototype.auto=function(n,B,a){this.startTracking(n,B),a(),this.stopTracking(n,B)},b.exports=A},44134:function(b,A,n){var B,s;void 0!==(s="function"==typeof(B=function(){"use strict";function g(E,C,e){var h=new XMLHttpRequest;h.open("GET",E),h.responseType="blob",h.onload=function(){d(h.response,C,e)},h.onerror=function(){console.error("could not download file")},h.send()}function f(E){var C=new XMLHttpRequest;C.open("HEAD",E,!1);try{C.send()}catch{}return 200<=C.status&&299>=C.status}function w(E){try{E.dispatchEvent(new MouseEvent("click"))}catch{var C=document.createEvent("MouseEvents");C.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),E.dispatchEvent(C)}}var u="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=u.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),d=u.saveAs||("object"!=typeof window||window!==u?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!r?function(E,C,e){var h=u.URL||u.webkitURL,Q=document.createElement("a");Q.download=C=C||E.name||"download",Q.rel="noopener","string"==typeof E?(Q.href=E,Q.origin===location.origin?w(Q):f(Q.href)?g(E,C,e):w(Q,Q.target="_blank")):(Q.href=h.createObjectURL(E),setTimeout(function(){h.revokeObjectURL(Q.href)},4e4),setTimeout(function(){w(Q)},0))}:"msSaveOrOpenBlob"in navigator?function(E,C,e){if(C=C||E.name||"download","string"!=typeof E)navigator.msSaveOrOpenBlob(function o(E,C){return typeof C>"u"?C={autoBom:!1}:"object"!=typeof C&&(console.warn("Deprecated: Expected third argument to be a object"),C={autoBom:!C}),C.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,e),C);else if(f(E))g(E,C,e);else{var h=document.createElement("a");h.href=E,h.target="_blank",setTimeout(function(){w(h)})}}:function(E,C,e,h){if((h=h||open("","_blank"))&&(h.document.title=h.document.body.innerText="downloading..."),"string"==typeof E)return g(E,C,e);var Q="application/octet-stream"===E.type,I=/constructor/i.test(u.HTMLElement)||u.safari,R=/CriOS\/[\d]+/.test(navigator.userAgent);if((R||Q&&I||r)&&typeof FileReader<"u"){var p=new FileReader;p.onloadend=function(){var x=p.result;x=R?x:x.replace(/^data:[^;]*;/,"data:attachment/file;"),h?h.location.href=x:location=x,h=null},p.readAsDataURL(E)}else{var m=u.URL||u.webkitURL,y=m.createObjectURL(E);h?h.location=y:location.href=y,h=null,setTimeout(function(){m.revokeObjectURL(y)},4e4)}});u.saveAs=d.saveAs=d,b.exports=d})?B.apply(A,[]):B)&&(b.exports=s)},60421:function(b,A,n){"use strict";var a,B=n(50621).Buffer;function s(tA,G){for(var K=0;K=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 E(tA,G){(null==G||G>tA.length)&&(G=tA.length);for(var K=0,M=new Array(G);K0?sA[0]:"value";if(nA.has(KA))return nA.get(KA);var lt=N.apply(this,sA);return nA.set(KA,lt),lt}return Object.defineProperty(this,G,{value:oA}),oA}}}}v.registerFormat=function(tA){S.push(tA)},v.openSync=function(tA,G){var K=Y.readFileSync(tA);return v.create(K,G)},v.open=function(tA,G,K){"function"==typeof G&&(K=G,G=null),Y.readFile(tA,function(M,N){if(M)return K(M);try{var P=v.create(N,G)}catch(nA){return K(nA)}return K(null,P)})},v.create=function(tA,G){for(var K=0;K>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(_,"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(_,"nGroups")},13:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},14:{length:e.uint32,numRecords:e.uint32,varSelectors:new e.LazyArray(FA,"numRecords")}}),HA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,table:new e.Pointer(e.uint32,YA,{type:"parent",lazy:!0})}),J=new e.Struct({version:e.uint16,numSubtables:e.uint16,tables:new e.Array(HA,"numSubtables")}),BA=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}),aA=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}),eA=new e.Struct({advance:e.uint16,bearing:e.int16}),EA=new e.Struct({metrics:new e.LazyArray(eA,function(tA){return tA.parent.hhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.hhea.numberOfMetrics})}),xA=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 OA(tA,G,K){return void 0===K&&(K=0),1===tA&&L[K]?L[K]:W[tA][G]}var W=[["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"]],L={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"},rA=[[],{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"}],AA=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 OA(tA.platformID,tA.encodingID,tA.languageID)}),{type:"parent",relativeTo:function(G){return G.parent.stringOffset},allowNull:!1})}),QA=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}})}),yA=new e.VersionedStruct(e.uint16,{0:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(AA,"count")},1:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(AA,"count"),langTagCount:e.uint16,langTags:new e.Array(QA,"langTagCount")}}),cA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];yA.process=function(tA){for(var M,G={},K=r(this.records);!(M=K()).done;){var N=M.value,P=rA[N.platformID][N.languageID];null==P&&null!=this.langTags&&N.languageID>=32768&&(P=this.langTags[N.languageID-32768].tag),null==P&&(P=N.platformID+"-"+N.languageID);var nA=N.nameID>=256?"fontFeatures":cA[N.nameID]||N.nameID;null==G[nA]&&(G[nA]={});var oA=G[nA];N.nameID>=256&&(oA=oA[N.nameID]||(oA[N.nameID]={})),("string"==typeof N.string||"string"!=typeof oA[P])&&(oA[P]=N.string)}this.records=G},yA.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var tA=[];for(var G in this.records){var K=this.records[G];"fontFeatures"!==G&&(tA.push({platformID:3,encodingID:1,languageID:1033,nameID:cA.indexOf(G),length:B.byteLength(K.en,"utf16le"),string:K.en}),"postscriptName"===G&&tA.push({platformID:1,encodingID:0,languageID:0,nameID:cA.indexOf(G),length:K.en.length,string:K.en}))}this.records=tA,this.count=tA.length,this.stringOffset=yA.size(this,null,!1)}};var CA=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}}),DA=CA.versions;DA[3]=DA[4]=DA[2];var NA=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)}),pA=new e.Struct({instructions:new e.Array(e.uint8)}),JA=new e.VersionedStruct("head.indexToLocFormat",{0:{offsets:new e.Array(e.uint16)},1:{offsets:new e.Array(e.uint32)}});JA.process=function(){if(0===this.version)for(var tA=0;tA>>=1};var ft=new e.Struct({controlValueProgram:new e.Array(e.uint8)}),wt=new e.Array(new e.Buffer),gt=function(){function tA(K){this.type=K}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,N){var nA=this.getCFFVersion(N)>=2?M.readUInt32BE():M.readUInt16BE();if(0===nA)return[];var lA,oA=M.readUInt8();if(1===oA)lA=e.uint8;else if(2===oA)lA=e.uint16;else if(3===oA)lA=e.uint24;else{if(4!==oA)throw new Error("Bad offset size in CFFIndex: ".concat(oA," ").concat(M.pos));lA=e.uint32}for(var sA=[],bA=M.pos+(nA+1)*oA-1,KA=lA.decode(M),lt=0;lt>4;if(15===nA)break;N+=Yt[nA];var oA=15&P;if(15===oA)break;N+=Yt[oA]}return parseFloat(N)}return null},tA.size=function(K){return K.forceLarge&&(K=32768),(0|K)!==K?1+Math.ceil(((""+K).length+1)/2):-107<=K&&K<=107?1:108<=K&&K<=1131||-1131<=K&&K<=-108?2:-32768<=K&&K<=32767?3:5},tA.encode=function(K,M){var N=Number(M);if(M.forceLarge)return K.writeUInt8(29),K.writeInt32BE(N);if((0|N)===N)return-107<=N&&N<=107?K.writeUInt8(N+139):108<=N&&N<=1131?(K.writeUInt8(247+((N-=108)>>8)),K.writeUInt8(255&N)):-1131<=N&&N<=-108?(K.writeUInt8(251+((N=-N-108)>>8)),K.writeUInt8(255&N)):-32768<=N&&N<=32767?(K.writeUInt8(28),K.writeInt16BE(N)):(K.writeUInt8(29),K.writeInt32BE(N));K.writeUInt8(30);for(var P=""+N,nA=0;nAP;)N.pop()},tA}(),null],[19,"Subrs",new ht(new gt,{type:"local"}),null]]),Bt=[".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"],Z=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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"],U=[".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"],GA=new e.Struct({reserved:new e.Reserved(e.uint16),reqFeatureIndex:e.uint16,featureCount:e.uint16,featureIndexes:new e.Array(e.uint16,"featureCount")}),At=new e.Struct({tag:new e.String(4),langSys:new e.Pointer(e.uint16,GA,{type:"parent"})}),O=new e.Struct({defaultLangSys:new e.Pointer(e.uint16,GA),count:e.uint16,langSysRecords:new e.Array(At,"count")}),qA=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,O,{type:"parent"})}),nt=new e.Array(qA,e.uint16),MA=new e.Struct({featureParams:e.uint16,lookupCount:e.uint16,lookupListIndexes:new e.Array(e.uint16,"lookupCount")}),jA=new e.Struct({tag:new e.String(4),feature:new e.Pointer(e.uint16,MA,{type:"parent"})}),ot=new e.Array(jA,e.uint16),Tt=new e.Struct({markAttachmentType:e.uint8,flags:new e.Bitfield(e.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function yt(tA){var G=new e.Struct({lookupType:e.uint16,flags:Tt,subTableCount:e.uint16,subTables:new e.Array(new e.Pointer(e.uint16,tA),"subTableCount"),markFilteringSet:new e.Optional(e.uint16,function(K){return K.flags.flags.useMarkFilteringSet})});return new e.LazyArray(new e.Pointer(e.uint16,G),e.uint16)}var Ut=new e.Struct({start:e.uint16,end:e.uint16,startCoverageIndex:e.uint16}),Lt=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")}}),sn=new e.Struct({start:e.uint16,end:e.uint16,class:e.uint16}),$t=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(sn,"classRangeCount")}}),Kt=new e.Struct({a:e.uint16,b:e.uint16,deltaFormat:e.uint16}),Me=new e.Struct({sequenceIndex:e.uint16,lookupListIndex:e.uint16}),ze=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(Me,"lookupCount")}),Re=new e.Array(new e.Pointer(e.uint16,ze),e.uint16),yn=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(Me,"lookupCount")}),Mn=new e.Array(new e.Pointer(e.uint16,yn),e.uint16),ee=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),ruleSetCount:e.uint16,ruleSets:new e.Array(new e.Pointer(e.uint16,Re),"ruleSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),classDef:new e.Pointer(e.uint16,$t),classSetCnt:e.uint16,classSet:new e.Array(new e.Pointer(e.uint16,Mn),"classSetCnt")},3:{glyphCount:e.uint16,lookupCount:e.uint16,coverages:new e.Array(new e.Pointer(e.uint16,Lt),"glyphCount"),lookupRecords:new e.Array(Me,"lookupCount")}}),An=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(Me,"lookupCount")}),Te=new e.Array(new e.Pointer(e.uint16,An),e.uint16),Fe=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),chainCount:e.uint16,chainRuleSets:new e.Array(new e.Pointer(e.uint16,Te),"chainCount")},2:{coverage:new e.Pointer(e.uint16,Lt),backtrackClassDef:new e.Pointer(e.uint16,$t),inputClassDef:new e.Pointer(e.uint16,$t),lookaheadClassDef:new e.Pointer(e.uint16,$t),chainCount:e.uint16,chainClassSet:new e.Array(new e.Pointer(e.uint16,Te),"chainCount")},3:{backtrackGlyphCount:e.uint16,backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),inputGlyphCount:e.uint16,inputCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"inputGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(Me,"lookupCount")}}),Qe=new e.Fixed(16,"BE",14),In=new e.Struct({startCoord:Qe,peakCoord:Qe,endCoord:Qe}),wn=new e.Struct({axisCount:e.uint16,regionCount:e.uint16,variationRegions:new e.Array(new e.Array(In,"axisCount"),"regionCount")}),kt=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)}}),zt=new e.Struct({itemCount:e.uint16,shortDeltaCount:e.uint16,regionIndexCount:e.uint16,regionIndexes:new e.Array(e.uint16,"regionIndexCount"),deltaSets:new e.Array(kt,"itemCount")}),Wt=new e.Struct({format:e.uint16,variationRegionList:new e.Pointer(e.uint32,wn),variationDataCount:e.uint16,itemVariationData:new e.Array(new e.Pointer(e.uint32,zt),"variationDataCount")}),ae=new e.VersionedStruct(e.uint16,{1:(a={axisIndex:e.uint16},a.axisIndex=e.uint16,a.filterRangeMinValue=Qe,a.filterRangeMaxValue=Qe,a)}),mn=new e.Struct({conditionCount:e.uint16,conditionTable:new e.Array(new e.Pointer(e.uint32,ae),"conditionCount")}),dn=new e.Struct({featureIndex:e.uint16,alternateFeatureTable:new e.Pointer(e.uint32,MA,{type:"parent"})}),Tn=new e.Struct({version:e.fixed32,substitutionCount:e.uint16,substitutions:new e.Array(dn,"substitutionCount")}),Wn=new e.Struct({conditionSet:new e.Pointer(e.uint32,mn,{type:"parent"}),featureTableSubstitution:new e.Pointer(e.uint32,Tn,{type:"parent"})}),ti=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,featureVariationRecordCount:e.uint32,featureVariationRecords:new e.Array(Wn,"featureVariationRecordCount")}),xn=function(){function tA(K,M){this.predefinedOps=K,this.type=M}var G=tA.prototype;return G.decode=function(M,N,P){return this.predefinedOps[P[0]]?this.predefinedOps[P[0]]:this.type.decode(M,N,P)},G.size=function(M,N){return this.type.size(M,N)},G.encode=function(M,N,P){var nA=this.predefinedOps.indexOf(N);return-1!==nA?nA:this.type.encode(M,N,P)},tA}(),ZA=function(tA){function G(){return tA.call(this,"UInt8")||this}return w(G,tA),G.prototype.decode=function(N){return 127&e.uint8.decode(N)},G}(e.Number),SA=new e.Struct({first:e.uint16,nLeft:e.uint8}),it=new e.Struct({first:e.uint16,nLeft:e.uint16}),TA=new xn([Z,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","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 ht(new e.VersionedStruct(new ZA,{0:{nCodes:e.uint8,codes:new e.Array(e.uint8,"nCodes")},1:{nRanges:e.uint8,ranges:new e.Array(SA,"nRanges")}}),{lazy:!0})),UA=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.prototype.decode=function(N,P){for(var nA=h.resolveLength(this.length,N,P),oA=0,lA=[];oA=2?null:M=2||this.isCIDFont)return null;var N=this.topDict.charset;if(Array.isArray(N))return N[M];if(0===M)return".notdef";switch(M-=1,N.version){case 0:return this.string(N.glyphs[M]);case 1:case 2:for(var P=0;P>1;if(M=N[oA+1].first))return N[oA].fd;P=oA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},G.privateDictForGlyph=function(M){if(this.topDict.FDSelect){var N=this.fdForGlyph(M);return this.topDict.FDArray[N]?this.topDict.FDArray[N].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},o(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}(),Zt=new e.Struct({glyphIndex:e.uint16,vertOriginY:e.int16}),Ht=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,defaultVertOriginY:e.int16,numVertOriginYMetrics:e.uint16,metrics:new e.Array(Zt,"numVertOriginYMetrics")}),ie=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}),ue=new e.Struct({glyph:e.uint16,xOffset:e.int8,yOffset:e.int8}),se=function(){},ve=function(){},ge=(new e.VersionedStruct("version",{1:{metrics:Jt,data:se},2:{metrics:Jt,data:ve},5:{data:ve},6:{metrics:ie,data:se},7:{metrics:ie,data:ve},8:{metrics:Jt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},9:{metrics:ie,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},17:{metrics:Jt,dataLen:e.uint32,data:new e.Buffer("dataLen")},18:{metrics:ie,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)})),xe=new e.Struct({glyphCode:e.uint16,offset:e.uint16}),Ne=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:ie},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(xe,function(tA){return tA.numGlyphs+1})},5:{imageSize:e.uint32,bigMetrics:ie,numGlyphs:e.uint32,glyphCodeArray:new e.Array(e.uint16,"numGlyphs")}}),qe=new e.Struct({firstGlyphIndex:e.uint16,lastGlyphIndex:e.uint16,subtable:new e.Pointer(e.uint32,Ne)}),Dn=new e.Struct({indexSubTableArray:new e.Pointer(e.uint32,new e.Array(qe,1),{type:"parent"}),indexTablesSize:e.uint32,numberOfIndexSubTables:e.uint32,colorRef:e.uint32,hori:ge,vert:ge,startGlyphIndex:e.uint16,endGlyphIndex:e.uint16,ppemX:e.uint8,ppemY:e.uint8,bitDepth:e.uint8,flags:new e.Bitfield(e.uint8,["horizontal","vertical"])}),tn=new e.Struct({version:e.uint32,numSizes:e.uint32,sizes:new e.Array(Dn,"numSizes")}),Qn=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})}),Yn=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,Qn),"numImgTables")}),en=new e.Struct({gid:e.uint16,paletteIndex:e.uint16}),gn=new e.Struct({gid:e.uint16,firstLayerIndex:e.uint16,numLayers:e.uint16}),on=new e.Struct({version:e.uint16,numBaseGlyphRecords:e.uint16,baseGlyphRecord:new e.Pointer(e.uint32,new e.Array(gn,"numBaseGlyphRecords")),layerRecords:new e.Pointer(e.uint32,new e.Array(en,"numLayerRecords"),{lazy:!0}),numLayerRecords:e.uint16}),Mi=new e.Struct({blue:e.uint8,green:e.uint8,red:e.uint8,alpha:e.uint8}),Ii=new e.VersionedStruct(e.uint16,{header:{numPaletteEntries:e.uint16,numPalettes:e.uint16,numColorRecords:e.uint16,colorRecords:new e.Pointer(e.uint32,new e.Array(Mi,"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"))}}),Kn=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,Kt)}}),Di=new e.Struct({defaultIndex:e.uint16,baseCoordCount:e.uint16,baseCoords:new e.Array(new e.Pointer(e.uint16,Kn),"baseCoordCount")}),vi=new e.Struct({tag:new e.String(4),minCoord:new e.Pointer(e.uint16,Kn,{type:"parent"}),maxCoord:new e.Pointer(e.uint16,Kn,{type:"parent"})}),jn=new e.Struct({minCoord:new e.Pointer(e.uint16,Kn),maxCoord:new e.Pointer(e.uint16,Kn),featMinMaxCount:e.uint16,featMinMaxRecords:new e.Array(vi,"featMinMaxCount")}),Ci=new e.Struct({tag:new e.String(4),minMax:new e.Pointer(e.uint16,jn,{type:"parent"})}),ei=new e.Struct({baseValues:new e.Pointer(e.uint16,Di),defaultMinMax:new e.Pointer(e.uint16,jn),baseLangSysCount:e.uint16,baseLangSysRecords:new e.Array(Ci,"baseLangSysCount")}),Sn=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,ei,{type:"parent"})}),sa=new e.Array(Sn,e.uint16),dA=new e.Array(new e.String(4),e.uint16),H=new e.Struct({baseTagList:new e.Pointer(e.uint16,dA),baseScriptList:new e.Pointer(e.uint16,sa)}),T=new e.VersionedStruct(e.uint32,{header:{horizAxis:new e.Pointer(e.uint16,H),vertAxis:new e.Pointer(e.uint16,H)},65536:{},65537:{itemVariationStore:new e.Pointer(e.uint32,Wt)}}),X=new e.Array(e.uint16,e.uint16),V=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,attachPoints:new e.Array(new e.Pointer(e.uint16,X),"glyphCount")}),uA=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{caretValuePoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Kt)}}),mA=new e.Array(new e.Pointer(e.uint16,uA),e.uint16),tt=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),ligGlyphCount:e.uint16,ligGlyphs:new e.Array(new e.Pointer(e.uint16,mA),"ligGlyphCount")}),rt=new e.Struct({markSetTableFormat:e.uint16,markSetCount:e.uint16,coverage:new e.Array(new e.Pointer(e.uint32,Lt),"markSetCount")}),ut=new e.VersionedStruct(e.uint32,{header:{glyphClassDef:new e.Pointer(e.uint16,$t),attachList:new e.Pointer(e.uint16,V),ligCaretList:new e.Pointer(e.uint16,tt),markAttachClassDef:new e.Pointer(e.uint16,$t)},65536:{},65538:{markGlyphSetsDef:new e.Pointer(e.uint16,rt)},65539:{markGlyphSetsDef:new e.Pointer(e.uint16,rt),itemVariationStore:new e.Pointer(e.uint32,Wt)}}),Ct=new e.Bitfield(e.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Mt={xPlacement:e.int16,yPlacement:e.int16,xAdvance:e.int16,yAdvance:e.int16,xPlaDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),yPlaDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),xAdvDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),yAdvDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}})},Dt=function(){function tA(K){void 0===K&&(K="valueFormat"),this.key=K}var G=tA.prototype;return G.buildStruct=function(M){for(var N=M;!N[this.key]&&N.parent;)N=N.parent;if(N[this.key]){var P={rel:function(){return N._startOffset}},nA=N[this.key];for(var oA in nA)nA[oA]&&(P[oA]=Mt[oA]);return new e.Struct(P)}},G.size=function(M,N){return this.buildStruct(N).size(M,N)},G.decode=function(M,N){var P=this.buildStruct(N).decode(M,N);return delete P.rel,P},tA}(),Ft=new e.Struct({secondGlyph:e.uint16,value1:new Dt("valueFormat1"),value2:new Dt("valueFormat2")}),Ot=new e.Array(Ft,e.uint16),Vt=new e.Struct({value1:new Dt("valueFormat1"),value2:new Dt("valueFormat2")}),Ae=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,Kt),yDeviceTable:new e.Pointer(e.uint16,Kt)}}),Be=new e.Struct({entryAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"}),exitAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"})}),Ye=new e.Struct({class:e.uint16,markAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"})}),Ze=new e.Array(Ye,e.uint16),me=new e.Array(new e.Pointer(e.uint16,Ae),function(tA){return tA.parent.classCount}),Ve=new e.Array(me,e.uint16),hn=new e.Array(new e.Pointer(e.uint16,Ae),function(tA){return tA.parent.parent.classCount}),We=new e.Array(hn,e.uint16),En=new e.Array(new e.Pointer(e.uint16,We),e.uint16),vn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Ct,value:new Dt},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Ct,valueCount:e.uint16,values:new e.LazyArray(new Dt,"valueCount")}}),2:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Ct,valueFormat2:Ct,pairSetCount:e.uint16,pairSets:new e.LazyArray(new e.Pointer(e.uint16,Ot),"pairSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Ct,valueFormat2:Ct,classDef1:new e.Pointer(e.uint16,$t),classDef2:new e.Pointer(e.uint16,$t),class1Count:e.uint16,class2Count:e.uint16,classRecords:new e.LazyArray(new e.LazyArray(Vt,"class2Count"),"class1Count")}}),3:{format:e.uint16,coverage:new e.Pointer(e.uint16,Lt),entryExitCount:e.uint16,entryExitRecords:new e.Array(Be,"entryExitCount")},4:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),baseCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ze),baseArray:new e.Pointer(e.uint16,Ve)},5:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),ligatureCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ze),ligatureArray:new e.Pointer(e.uint16,En)},6:{format:e.uint16,mark1Coverage:new e.Pointer(e.uint16,Lt),mark2Coverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,mark1Array:new e.Pointer(e.uint16,Ze),mark2Array:new e.Pointer(e.uint16,Ve)},7:ee,8:Fe,9:{posFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,vn)}});vn.versions[9].extension.type=vn;var Xn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,nt),featureList:new e.Pointer(e.uint16,ot),lookupList:new e.Pointer(e.uint16,new yt(vn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ti)}}),On=new e.Array(e.uint16,e.uint16),bi=On,Jn=new e.Struct({glyph:e.uint16,compCount:e.uint16,components:new e.Array(e.uint16,function(tA){return tA.compCount-1})}),ni=new e.Array(new e.Pointer(e.uint16,Jn),e.uint16),Zn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),deltaGlyphID:e.int16},2:{coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,substitute:new e.LazyArray(e.uint16,"glyphCount")}}),2:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,sequences:new e.LazyArray(new e.Pointer(e.uint16,On),"count")},3:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,alternateSet:new e.LazyArray(new e.Pointer(e.uint16,bi),"count")},4:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,ligatureSets:new e.LazyArray(new e.Pointer(e.uint16,ni),"count")},5:ee,6:Fe,7:{substFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Zn)},8:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),glyphCount:e.uint16,substitutes:new e.Array(e.uint16,"glyphCount")}});Zn.versions[7].extension.type=Zn;var qn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,nt),featureList:new e.Pointer(e.uint16,ot),lookupList:new e.Pointer(e.uint16,new yt(Zn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ti)}}),Hn=new e.Array(e.uint16,e.uint16),Ri=new e.Struct({shrinkageEnableGSUB:new e.Pointer(e.uint16,Hn),shrinkageDisableGSUB:new e.Pointer(e.uint16,Hn),shrinkageEnableGPOS:new e.Pointer(e.uint16,Hn),shrinkageDisableGPOS:new e.Pointer(e.uint16,Hn),shrinkageJstfMax:new e.Pointer(e.uint16,new yt(vn)),extensionEnableGSUB:new e.Pointer(e.uint16,Hn),extensionDisableGSUB:new e.Pointer(e.uint16,Hn),extensionEnableGPOS:new e.Pointer(e.uint16,Hn),extensionDisableGPOS:new e.Pointer(e.uint16,Hn),extensionJstfMax:new e.Pointer(e.uint16,new yt(vn))}),Ti=new e.Array(new e.Pointer(e.uint16,Ri),e.uint16),Ui=new e.Struct({tag:new e.String(4),jstfLangSys:new e.Pointer(e.uint16,Ti)}),Fi=new e.Struct({extenderGlyphs:new e.Pointer(e.uint16,new e.Array(e.uint16,e.uint16)),defaultLangSys:new e.Pointer(e.uint16,Ti),langSysCount:e.uint16,langSysRecords:new e.Array(Ui,"langSysCount")}),Li=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,Fi,{type:"parent"})}),Pi=new e.Struct({version:e.uint32,scriptCount:e.uint16,scriptList:new e.Array(Li,"scriptCount")}),zi=new e.Struct({entry:new(function(){function tA(K){this._size=K}var G=tA.prototype;return G.decode=function(M,N){switch(this.size(0,N)){case 1:return M.readUInt8();case 2:return M.readUInt16BE();case 3:return M.readUInt24BE();case 4:return M.readUInt32BE()}},G.size=function(M,N){return h.resolveLength(this._size,null,N)},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}}),Vn=new e.Struct({entryFormat:e.uint16,mapCount:e.uint16,mapData:new e.Array(zi,"mapCount")}),Gi=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,itemVariationStore:new e.Pointer(e.uint32,Wt),advanceWidthMapping:new e.Pointer(e.uint32,Vn),LSBMapping:new e.Pointer(e.uint32,Vn),RSBMapping:new e.Pointer(e.uint32,Vn)}),ii=new e.Struct({format:e.uint32,length:e.uint32,offset:e.uint32}),Rr=new e.Struct({reserved:new e.Reserved(e.uint16,2),cbSignature:e.uint32,signature:new e.Buffer("cbSignature")}),Tr=new e.Struct({ulVersion:e.uint32,usNumSigs:e.uint16,usFlag:e.uint16,signatures:new e.Array(ii,"usNumSigs"),signatureBlocks:new e.Array(Rr,"usNumSigs")}),Bs=new e.Struct({rangeMaxPPEM:e.uint16,rangeGaspBehavior:new e.Bitfield(e.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),us=new e.Struct({version:e.uint16,numRanges:e.uint16,gaspRanges:new e.Array(Bs,"numRanges")}),fs=new e.Struct({pixelSize:e.uint8,maximumWidth:e.uint8,widths:new e.Array(e.uint8,function(tA){return tA.parent.parent.maxp.numGlyphs})}),hs=new e.Struct({version:e.uint16,numRecords:e.int16,sizeDeviceRecord:e.int32,records:new e.Array(fs,"numRecords")}),Es=new e.Struct({left:e.uint16,right:e.uint16,value:e.int16}),oa=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)}}),Cs=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")}),la=new e.VersionedStruct("format",{0:{nPairs:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,pairs:new e.Array(Es,"nPairs")},2:{rowWidth:e.uint16,leftTable:new e.Pointer(e.uint16,oa,{type:"parent"}),rightTable:new e.Pointer(e.uint16,oa,{type:"parent"}),array:new e.Pointer(e.uint16,Cs,{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})}}),ca=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:la,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:la,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}}),ws=new e.VersionedStruct(e.uint16,{0:{nTables:e.uint16,tables:new e.Array(ca,"nTables")},1:{reserved:new e.Reserved(e.uint16),nTables:e.uint32,tables:new e.Array(ca,"nTables")}}),ds=new e.Struct({version:e.uint16,numGlyphs:e.uint16,yPels:new e.Array(e.uint8,"numGlyphs")}),Qs=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)}),ga=new e.Struct({bCharSet:e.uint8,xRatio:e.uint8,yStartRatio:e.uint8,yEndRatio:e.uint8}),Ba=new e.Struct({yPelHeight:e.uint16,yMax:e.int16,yMin:e.int16}),ms=new e.Struct({recs:e.uint16,startsz:e.uint8,endsz:e.uint8,entries:new e.Array(Ba,"recs")}),ps=new e.Struct({version:e.uint16,numRecs:e.uint16,numRatios:e.uint16,ratioRanges:new e.Array(ga,"numRatios"),offsets:new e.Array(e.uint16,"numRatios"),groups:new e.Array(ms,"numRecs")}),Ms=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}),ua=new e.Struct({advance:e.uint16,bearing:e.int16}),Is=new e.Struct({metrics:new e.LazyArray(ua,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),Ds=new e.Struct({fromCoord:fa,toCoord:fa}),vs=new e.Struct({pairCount:e.uint16,correspondence:new e.Array(Ds,"pairCount")}),Fs=new e.Struct({version:e.fixed32,axisCount:e.uint32,segment:new e.Array(vs,"axisCount")}),ys=function(){function tA(K,M,N){this.type=K,this.stream=M,this.parent=N,this.base=this.stream.pos,this._items=[]}var G=tA.prototype;return G.getItem=function(M){if(null==this._items[M]){var N=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=N}return this._items[M]},G.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},tA}(),_n=function(tA){function G(M){return tA.call(this,M,0)||this}return w(G,tA),G.prototype.decode=function(N,P){return new ys(this.type,N,P)},G}(e.Array),gi=function(G){void 0===G&&(G=e.uint16),G=new(function(){function oA(sA){this.type=sA}var lA=oA.prototype;return lA.decode=function(bA,KA){return this.type.decode(bA,KA=KA.parent.parent)},lA.size=function(bA,KA){return this.type.size(bA,KA=KA.parent.parent)},lA.encode=function(bA,KA,lt){return this.type.encode(bA,KA,lt=lt.parent.parent)},oA}())(G);var M=new e.Struct({unitSize:e.uint16,nUnits:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16}),N=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,value:G}),P=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,values:new e.Pointer(e.uint16,new e.Array(G,function(oA){return oA.lastGlyph-oA.firstGlyph+1}),{type:"parent"})}),nA=new e.Struct({glyph:e.uint16,value:G});return new e.VersionedStruct(e.uint16,{0:{values:new _n(G)},2:{binarySearchHeader:M,segments:new e.Array(N,function(oA){return oA.binarySearchHeader.nUnits})},4:{binarySearchHeader:M,segments:new e.Array(P,function(oA){return oA.binarySearchHeader.nUnits})},6:{binarySearchHeader:M,segments:new e.Array(nA,function(oA){return oA.binarySearchHeader.nUnits})},8:{firstGlyph:e.uint16,count:e.uint16,values:new e.Array(G,"count")}})};function Hi(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var K=Object.assign({newState:e.uint16,flags:e.uint16},tA),M=new e.Struct(K),N=new _n(new e.Array(e.uint16,function(nA){return nA.nClasses}));return new e.Struct({nClasses:e.uint32,classTable:new e.Pointer(e.uint32,new gi(G)),stateArray:new e.Pointer(e.uint32,N),entryTable:new e.Pointer(e.uint32,new _n(M))})}var Ys=new e.VersionedStruct("format",{0:{deltas:new e.Array(e.int16,32)},1:{deltas:new e.Array(e.int16,32),mappingData:new gi(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 gi(e.uint16)}}),ha=new e.Struct({version:e.fixed32,format:e.uint16,defaultBaseline:e.uint16,subtable:Ys}),ri=new e.Struct({setting:e.uint16,nameIndex:e.int16,name:function(G){return G.parent.parent.parent.name.records.fontFeatures[G.nameIndex]}}),Ss=new e.Struct({feature:e.uint16,nSettings:e.uint16,settingTable:new e.Pointer(e.uint32,new e.Array(ri,"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]}}),Ns=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(Ss,"featureNameCount")}),bs=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]}}),Rs=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})}),Ts=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(bs,"axisCount"),instance:new e.Array(Rs,"instanceCount")}),Us=new e.Fixed(16,"BE",14),Ls=function(){function tA(){}return tA.decode=function(K,M){return M.flags?K.readUInt32BE():2*K.readUInt16BE()},tA}(),Ps=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(Us,"axisCount"),"globalCoordCount")),glyphCount:e.uint16,flags:e.uint16,offsetToData:e.uint32,offsets:new e.Array(new e.Pointer(Ls,"void",{relativeTo:function(G){return G.offsetToData},allowNull:!1}),function(tA){return tA.glyphCount+1})}),zs=new e.Struct({length:e.uint16,coverage:e.uint16,subFeatureFlags:e.uint32,stateTable:new function xs(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var K=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(lA){return(lA.newStateOffset-(lA.parent.stateArray.base-lA.parent._startOffset))/lA.parent.nClasses},flags:e.uint16},tA),N=new e.Struct(M),P=new _n(new e.Array(e.uint8,function(oA){return oA.nClasses}));return new e.Struct({nClasses:e.uint16,classTable:new e.Pointer(e.uint16,K),stateArray:new e.Pointer(e.uint16,P),entryTable:new e.Pointer(e.uint16,new _n(N))})}}),Gs=new e.Struct({justClass:e.uint32,beforeGrowLimit:e.fixed32,beforeShrinkLimit:e.fixed32,afterGrowLimit:e.fixed32,afterShrinkLimit:e.fixed32,growFlags:e.uint16,shrinkFlags:e.uint16}),Hs=new e.Array(Gs,e.uint32),ks=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}}),js=new e.Struct({actionClass:e.uint16,actionType:e.uint16,actionLength:e.uint32,actionData:ks,padding:new e.Reserved(e.uint8,function(tA){return tA.actionLength-tA._currentOffset})}),Os=new e.Array(js,e.uint32),Js=new e.Struct({lookupTable:new gi(new e.Pointer(e.uint16,Os))}),Ea=new e.Struct({classTable:new e.Pointer(e.uint16,zs,{type:"parent"}),wdcOffset:e.uint16,postCompensationTable:new e.Pointer(e.uint16,Js,{type:"parent"}),widthDeltaClusters:new gi(new e.Pointer(e.uint16,Hs,{type:"parent",relativeTo:function(G){return G.wdcOffset}}))}),Vs=new e.Struct({version:e.uint32,format:e.uint16,horizontal:new e.Pointer(e.uint16,Ea),vertical:new e.Pointer(e.uint16,Ea)}),Ws={action:e.uint16},Ks={markIndex:e.uint16,currentIndex:e.uint16},Xs={currentInsertIndex:e.uint16,markedInsertIndex:e.uint16},Zs=new e.Struct({items:new _n(new e.Pointer(e.uint32,new gi))}),qs=new e.VersionedStruct("type",{0:{stateTable:new Hi},1:{stateTable:new Hi(Ks),substitutionTable:new e.Pointer(e.uint32,Zs)},2:{stateTable:new Hi(Ws),ligatureActions:new e.Pointer(e.uint32,new _n(e.uint32)),components:new e.Pointer(e.uint32,new _n(e.uint16)),ligatureList:new e.Pointer(e.uint32,new _n(e.uint16))},4:{lookupTable:new gi},5:{stateTable:new Hi(Xs),insertionActions:new e.Pointer(e.uint32,new _n(e.uint16))}}),Ca=new e.Struct({length:e.uint32,coverage:e.uint24,type:e.uint8,subFeatureFlags:e.uint32,table:qs,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}),_s=new e.Struct({featureType:e.uint16,featureSetting:e.uint16,enableFlags:e.uint32,disableFlags:e.uint32}),$s=new e.Struct({defaultFlags:e.uint32,chainLength:e.uint32,nFeatureEntries:e.uint32,nSubtables:e.uint32,features:new e.Array(_s,"nFeatureEntries"),subtables:new e.Array(Ca,"nSubtables")}),Ao=new e.Struct({version:e.uint16,unused:new e.Reserved(e.uint16),nChains:e.uint32,chains:new e.Array($s,"nChains")}),to=new e.Struct({left:e.int16,top:e.int16,right:e.int16,bottom:e.int16}),eo=new e.Struct({version:e.fixed32,format:e.uint16,lookupTable:new gi(to)}),oe={};oe.cmap=J,oe.head=BA,oe.hhea=aA,oe.hmtx=EA,oe.maxp=xA,oe.name=yA,oe["OS/2"]=CA,oe.post=NA,oe.fpgm=pA,oe.loca=JA,oe.prep=ft,oe["cvt "]=zA,oe.glyf=wt,oe["CFF "]=Rt,oe.CFF2=Rt,oe.VORG=Ht,oe.EBLC=tn,oe.CBLC=oe.EBLC,oe.sbix=Yn,oe.COLR=on,oe.CPAL=Ii,oe.BASE=T,oe.GDEF=ut,oe.GPOS=Xn,oe.GSUB=qn,oe.JSTF=Pi,oe.HVAR=Gi,oe.DSIG=Tr,oe.gasp=us,oe.hdmx=hs,oe.kern=ws,oe.LTSH=ds,oe.PCLT=Qs,oe.VDMX=ps,oe.vhea=Ms,oe.vmtx=Is,oe.avar=Fs,oe.bsln=ha,oe.feat=Ns,oe.fvar=Ts,oe.gvar=Ps,oe.just=Vs,oe.morx=Ao,oe.opbd=eo;var Bi,no=new e.Struct({tag:new e.String(4),checkSum:e.uint32,offset:new e.Pointer(e.uint32,"void",{type:"global"}),length:e.uint32}),rr=new e.Struct({tag:new e.String(4),numTables:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,tables:new e.Array(no,"numTables")});function ar(tA,G){for(var K=0,M=tA.length-1;K<=M;){var N=K+M>>1,P=G(tA[N]);if(P<0)M=N-1;else{if(!(P>0))return N;K=N+1}}return-1}function yi(tA,G){for(var K=[];tA>1;if(MlA.endCode.get(KA))){var lt=lA.idRangeOffset.get(KA),$A=void 0;if(0===lt)$A=M+lA.idDelta.get(KA);else{var ct=lt/2+(M-lA.startCode.get(KA))-(lA.segCount-KA);0!==($A=lA.glyphIndexArray.get(ct)||0)&&($A+=lA.idDelta.get(KA))}return 65535&$A}sA=KA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return lA.glyphIndices.get(M-lA.firstCode)||0;case 12:case 13:for(var mt=0,It=lA.nGroups-1;mt<=It;){var Gt=mt+It>>1,_t=lA.groups.get(Gt);if(M<_t.startCharCode)It=Gt-1;else{if(!(M>_t.endCharCode))return 12===lA.version?_t.glyphID+(M-_t.startCharCode):_t.glyphID;mt=Gt+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(lA.version))}},G.getVariationSelector=function(M,N){if(!this.uvs)return 0;var P=this.uvs.varSelectors.toArray(),nA=ar(P,function(lA){return N-lA.varSelector}),oA=P[nA];return-1!==nA&&oA.defaultUVS&&(nA=ar(oA.defaultUVS,function(lA){return MlA.startUnicodeValue+lA.additionalCount?1:0})),-1!==nA&&oA.nonDefaultUVS&&-1!==(nA=ar(oA.nonDefaultUVS,function(lA){return M-lA.unicodeValue}))?oA.nonDefaultUVS[nA].glyphID:0},G.getCharacterSet=function(){var M=this.cmap;switch(M.version){case 0:return yi(0,M.codeMap.length);case 4:for(var N=[],P=M.endCode.toArray(),nA=0;nA=qt.glyphID&&M<=qt.glyphID+(qt.endCharCode-qt.startCharCode)&&It.push(qt.startCharCode+(M-qt.glyphID))}return It;case 13:for(var Ce,re=[],ce=r(N.groups.toArray());!(Ce=ce()).done;){var de=Ce.value;M===de.glyphID&&re.push.apply(re,yi(de.startCharCode,de.endCharCode+1))}return re;default:throw new Error("Unknown cmap format ".concat(N.version))}},tA}()).prototype,"getCharacterSet",[$],Object.getOwnPropertyDescriptor(Bi.prototype,"getCharacterSet"),Bi.prototype),F(Bi.prototype,"codePointsForGlyph",[$],Object.getOwnPropertyDescriptor(Bi.prototype,"codePointsForGlyph"),Bi.prototype),Bi),ro=function(){function tA(K){this.kern=K.kern}var G=tA.prototype;return G.process=function(M,N){for(var P=0;P=0&&(sA=bA.pairs[KA].value);break;case 2:var $A=0;N>=bA.rightTable.firstGlyph&&N=bA.leftTable.firstGlyph&&M=bA.glyphCount||N>=bA.glyphCount)return 0;sA=bA.kernValue[bA.kernIndex[bA.leftClass[M]*bA.rightClassCount+bA.rightClass[N]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(lA.format))}lA.coverage.override?P=sA:P+=sA}}return P},tA}(),ao=function(){function tA(K){this.font=K}var G=tA.prototype;return G.positionGlyphs=function(M,N){for(var P=0,nA=0,oA=0;oA1&&(lA.minX+=(oA.codePoints.length-1)*lA.width/oA.codePoints.length);for(var sA=-N[P].xAdvance,bA=0,KA=this.font.unitsPerEm/16,lt=P+1;lt<=nA;lt++){var $A=M[lt],ct=$A.cbox,mt=N[lt],It=this.getCombiningClass($A.codePoints[0]);if("Not_Reordered"!==It){switch(mt.xOffset=mt.yOffset=0,It){case"Double_Above":case"Double_Below":mt.xOffset+=lA.minX-ct.width/2-ct.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":mt.xOffset+=lA.minX-ct.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":mt.xOffset+=lA.maxX-ct.width-ct.minX;break;default:mt.xOffset+=lA.minX+(lA.width-ct.width)/2-ct.minX}switch(It){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===It||"Attached_Below"===It)&&(lA.minY+=KA),mt.yOffset=-lA.minY-ct.maxY,lA.minY+=ct.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===It||"Attached_Above_Right"===It)&&(lA.maxY+=KA),mt.yOffset=lA.maxY-ct.minY,lA.maxY+=ct.height}mt.xAdvance=mt.yAdvance=0,mt.xOffset+=sA,mt.yOffset+=bA}else sA-=mt.xAdvance,bA-=mt.yAdvance}},G.getCombiningClass=function(M){var N=I.getCombiningClass(M);if(3584==(-256&M))if("Not_Reordered"===N)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(N){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 N},tA}(),xi=function(){function tA(K,M,N,P){void 0===K&&(K=1/0),void 0===M&&(M=1/0),void 0===N&&(N=-1/0),void 0===P&&(P=-1/0),this.minX=K,this.minY=M,this.maxX=N,this.maxY=P}var G=tA.prototype;return G.addPoint=function(M,N){Math.abs(M)!==1/0&&(Mthis.maxX&&(this.maxX=M)),Math.abs(N)!==1/0&&(Nthis.maxY&&(this.maxY=N))},G.copy=function(){return new tA(this.minX,this.minY,this.maxX,this.maxY)},o(tA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}]),tA}(),Yi={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"},Lr={};for(var Pr in Yi){var zr=Yi[Pr];if(Array.isArray(zr))for(var wa,so=r(zr);!(wa=so()).done;)Lr[wa.value]=Pr;else Lr[zr]=Pr}var Bo={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 Gr(tA){return Bo[tA]?"rtl":"ltr"}for(var uo=function(){function tA(G,K,M,N,P){if(this.glyphs=G,this.positions=null,this.script=M,this.language=N||null,this.direction=P||Gr(M),this.features={},Array.isArray(K))for(var oA,nA=r(K);!(oA=nA()).done;)this.features[oA.value]=!0;else"object"==typeof K&&(this.features=K)}return o(tA,[{key:"advanceWidth",get:function(){for(var N,K=0,M=r(this.positions);!(N=M()).done;)K+=N.value.xAdvance;return K}},{key:"advanceHeight",get:function(){for(var N,K=0,M=r(this.positions);!(N=M()).done;)K+=N.value.yAdvance;return K}},{key:"bbox",get:function(){for(var K=new xi,M=0,N=0,P=0;P>1]).firstGlyph)return null;if(MoA.lastGlyph))return 2===this.table.version?oA.value:oA.values[M-oA.firstGlyph];N=nA+1}}return null;case 6:for(var lA=0,sA=this.table.binarySearchHeader.nUnits-1;lA<=sA;){var nA,oA;if(65535===(oA=this.table.segments[nA=lA+sA>>1]).glyph)return null;if(MoA.glyph))return oA.value;lA=nA+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 N=[];switch(this.table.version){case 2:case 4:for(var nA,P=r(this.table.segments);!(nA=P()).done;){var oA=nA.value;if(2===this.table.version&&oA.value===M)N.push.apply(N,yi(oA.firstGlyph,oA.lastGlyph+1));else for(var lA=0;lA=-1;){var sA=null,bA=1,KA=!0;oA===M.length||-1===oA?bA=0:65535===(sA=M[oA]).id?bA=2:null==(bA=this.lookupTable.lookup(sA.id))&&(bA=1);var lt=this.stateTable.stateArray.getItem(nA),ct=this.stateTable.entryTable.getItem(lt[bA]);0!==bA&&2!==bA&&(P(sA,ct,oA),KA=!(16384&ct.flags)),nA=ct.newState,KA&&(oA+=lA)}return M},G.traverse=function(M,N,P){if(void 0===N&&(N=0),void 0===P&&(P=new Set),!P.has(N)){P.add(N);for(var nA=this.stateTable,oA=nA.nClasses,sA=nA.entryTable,bA=nA.stateArray.getItem(N),KA=4;KA=0;)65535===M[It].id&&M.splice(It,1),It--;return M},G.processSubtable=function(M,N){if(this.subtable=M,this.glyphs=N,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var P=this.getStateMachine(M),nA=this.getProcessor();return P.process(this.glyphs,!!(4194304&this.subtable.coverage),nA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},G.getStateMachine=function(M){return new wo(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,N,P){32768&N.flags&&(this.firstGlyph=P),8192&N.flags&&(this.lastGlyph=P),function Yo(tA,G,K,M){switch(G){case 0:return tA;case 1:return bn(tA,[K,1],[M,0]);case 2:return bn(tA,[K,0],[M,1]);case 3:return bn(tA,[K,1],[M,1]);case 4:return bn(tA,[K,2],[M,0]);case 5:return bn(tA,[K,2],[M,0],!0,!1);case 6:return bn(tA,[K,0],[M,2]);case 7:return bn(tA,[K,0],[M,2],!1,!0);case 8:return bn(tA,[K,1],[M,2]);case 9:return bn(tA,[K,1],[M,2],!1,!0);case 10:return bn(tA,[K,2],[M,1]);case 11:return bn(tA,[K,2],[M,1],!0,!1);case 12:return bn(tA,[K,2],[M,2]);case 13:return bn(tA,[K,2],[M,2],!0,!1);case 14:return bn(tA,[K,2],[M,2],!1,!0);case 15:return bn(tA,[K,2],[M,2],!0,!0);default:throw new Error("Unknown verb: ".concat(G))}}(this.glyphs,15&N.flags,this.firstGlyph,this.lastGlyph)},G.processContextualSubstitution=function(M,N,P){var nA=this.subtable.table.substitutionTable.items;if(65535!==N.markIndex){var oA=nA.getItem(N.markIndex);(sA=new cr(oA).lookup((M=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(sA,M.codePoints))}if(65535!==N.currentIndex){var sA,bA=nA.getItem(N.currentIndex);(sA=new cr(bA).lookup((M=this.glyphs[P]).id))&&(this.glyphs[P]=this.font.getGlyph(sA,M.codePoints))}32768&N.flags&&(this.markedGlyph=P)},G.processLigature=function(M,N,P){if(32768&N.flags&&this.ligatureStack.push(P),8192&N.flags){for(var nA,oA=this.subtable.table.ligatureActions,lA=this.subtable.table.components,sA=this.subtable.table.ligatureList,bA=N.action,KA=!1,lt=0,$A=[],ct=[];!KA;){var mt,It=this.ligatureStack.pop();(mt=$A).unshift.apply(mt,this.glyphs[It].codePoints);var Gt=oA.getItem(bA++);KA=!!(2147483648&Gt);var _t=!!(1073741824&Gt),qt=(1073741823&Gt)<<2>>2;if(lt+=lA.getItem(qt+=this.glyphs[It].id),KA||_t){var ce=sA.getItem(lt);this.glyphs[It]=this.font.getGlyph(ce,$A),ct.push(It),lt=0,$A=[]}else this.glyphs[It]=this.font.getGlyph(65535)}(nA=this.ligatureStack).push.apply(nA,ct)}},G.processNoncontextualSubstitutions=function(M,N,P){var nA=new cr(M.table.lookupTable);for(P=0;P>>5,!!(1024&N.flags)),65535!==N.currentInsertIndex&&this._insertGlyphs(P,N.currentInsertIndex,(992&N.flags)>>>5,!!(2048&N.flags))},G.getSupportedFeatures=function(){for(var P,M=[],N=r(this.morx.chains);!(P=N()).done;)for(var lA,oA=r(P.value.features);!(lA=oA()).done;){var sA=lA.value;M.push([sA.featureType,sA.featureSetting])}return M},G.generateInputs=function(M){return this.inputCache||this.generateInputCache(),this.inputCache[M]||[]},G.generateInputCache=function(){this.inputCache={};for(var N,M=r(this.morx.chains);!(N=M()).done;)for(var lA,P=N.value,nA=P.defaultFlags,oA=r(P.subtables);!(lA=oA()).done;){var sA=lA.value;sA.subFeatureFlags&nA&&this.generateInputsForSubtable(sA)}},G.generateInputsForSubtable=function(M){var N=this;if(2===M.type){if(4194304&M.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=M,this.ligatureStack=[];var nA=this.getStateMachine(M),oA=this.getProcessor(),lA=[],sA=[];this.glyphs=[],nA.traverse({enter:function(KA,lt){var $A=N.glyphs;sA.push({glyphs:$A.slice(),ligatureStack:N.ligatureStack.slice()});var ct=N.font.getGlyph(KA);lA.push(ct),$A.push(lA[lA.length-1]),oA($A[$A.length-1],lt,$A.length-1);for(var mt=0,It=0,Gt=0;Gt<$A.length&&mt<=1;Gt++)65535!==$A[Gt].id&&(mt++,It=$A[Gt].id);if(1===mt){var _t=lA.map(function(re){return re.id}),qt=N.inputCache[It];qt?qt.push(_t):N.inputCache[It]=[_t]}},exit:function(){var KA=sA.pop();N.glyphs=KA.glyphs,N.ligatureStack=KA.ligatureStack,lA.pop()}})}},tA}()).prototype,"getStateMachine",[$],Object.getOwnPropertyDescriptor(Oi.prototype,"getStateMachine"),Oi.prototype),Oi);function bn(tA,G,K,M,N){void 0===M&&(M=!1),void 0===N&&(N=!1);var P=tA.splice(K[0]-(K[1]-1),K[1]);N&&P.reverse();var nA=tA.splice.apply(tA,[G[0],G[1]].concat(P));return M&&nA.reverse(),tA.splice.apply(tA,[K[0]-(G[1]-1),0].concat(nA)),tA}var So=function(){function tA(K){this.font=K,this.morxProcessor=new jr(K),this.fallbackPosition=!1}var G=tA.prototype;return G.substitute=function(M){"rtl"===M.direction&&M.glyphs.reverse(),this.morxProcessor.process(M.glyphs,function fo(tA){var G={};for(var K in tA){var M;(M=sr[K])&&(null==G[M[0]]&&(G[M[0]]={}),G[M[0]][M[1]]=tA[K])}return G}(M.features))},G.getAvailableFeatures=function(M,N){return function ho(tA){var G={};if(Array.isArray(tA))for(var K=0;K0&&M.applyFeatures(lA,N,P)}},tA}(),No=["rvrn"],bo=["ccmp","locl","rlig","mark","mkmk"],Ro=["frac","numr","dnom"],To=["calt","clig","liga","rclt","curs","kern"],Uo={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},ui=function(){function tA(){}return tA.plan=function(K,M,N){this.planPreprocessing(K),this.planFeatures(K),this.planPostprocessing(K,N),K.assignGlobalFeatures(M),this.assignFeatures(K,M)},tA.planPreprocessing=function(K){K.add({global:[].concat(No,Uo[K.direction]),local:Ro})},tA.planFeatures=function(K){},tA.planPostprocessing=function(K,M){K.add([].concat(bo,To)),K.setFeatureOverrides(M)},tA.assignFeatures=function(K,M){for(var N=0;N0&&I.isDigit(M[nA-1].codePoints[0]);)M[nA-1].features.numr=!0,M[nA-1].features.frac=!0,nA--;for(;oAthis.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 N=this.index,P=this.increment(M);return this.index=N,P},G.peekIndex=function(M){void 0===M&&(M=1);var N=this.index;this.increment(M);var P=this.index;return this.index=N,P},G.increment=function(M){void 0===M&&(M=1);var N=M<0?-1:1;for(M=Math.abs(M);M--;)this.move(N);return this.glyphs[this.index]},o(tA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}]),tA}(),ko=["DFLT","dflt","latn"],fr=function(){function tA(K,M){this.font=K,this.table=M,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=K._variationProcessor?this.findVariationsIndex(K._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 P,N=r(M);!(P=N()).done;)for(var lA,nA=P.value,oA=r(this.table.scriptList);!(lA=oA()).done;){var sA=lA.value;if(sA.tag===nA)return sA}return null},G.selectScript=function(M,N,P){var oA,nA=!1;if(!this.script||M!==this.scriptTag){if((oA=this.findScript(M))||(oA=this.findScript(ko)),!oA)return this.scriptTag;this.scriptTag=oA.tag,this.script=oA.script,this.language=null,this.languageTag=null,nA=!0}if((!P||P!==this.direction)&&(this.direction=P||Gr(M)),N&&N.length<4&&(N+=" ".repeat(4-N.length)),!N||N!==this.languageTag){this.language=null;for(var sA,lA=r(this.script.langSysRecords);!(sA=lA()).done;){var bA=sA.value;if(bA.tag===N){this.language=bA.langSys,this.languageTag=bA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),nA=!0}if(nA&&(this.features={},this.language))for(var lt,KA=r(this.language.featureIndexes);!(lt=KA()).done;){var $A=lt.value,ct=this.table.featureList[$A],mt=this.substituteFeatureForVariations($A);this.features[ct.tag]=mt||ct.feature}return this.scriptTag},G.lookupsForFeatures=function(M,N){void 0===M&&(M=[]);for(var oA,P=[],nA=r(M);!(oA=nA()).done;){var lA=oA.value,sA=this.features[lA];if(sA)for(var KA,bA=r(sA.lookupListIndexes);!(KA=bA()).done;){var lt=KA.value;N&&-1!==N.indexOf(lt)||P.push({feature:lA,index:lt,lookup:this.table.lookupList.get(lt)})}}return P.sort(function($A,ct){return $A.index-ct.index}),P},G.substituteFeatureForVariations=function(M){if(-1===this.variationsIndex)return null;for(var oA,nA=r(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(oA=nA()).done;){var lA=oA.value;if(lA.featureIndex===M)return lA.alternateFeatureTable}return null},G.findVariationsIndex=function(M){var N=this.table.featureVariations;if(!N)return-1;for(var P=N.featureVariationRecords,nA=0;nA=0})},G.getClassID=function(M,N){switch(N.version){case 1:var P=M-N.startGlyph;if(P>=0&&P0&&this.codePoints.every(I.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}]),tA}(),Fa=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.planFeatures=function(M){M.add(["ljmo","vjmo","tjmo"],!1)},G.assignFeatures=function(M,N){for(var P=0,nA=0;nAdi){var lt=Vi(K,nA,M.features);lt.features.tjmo=!0,KA.push(lt)}return tA.splice.apply(tA,[G,1].concat(KA)),G+KA.length-1}function s0(tA,G,K){var lA,sA,bA,KA,M=tA[G],P=Qr(tA[G].codePoints[0]),nA=tA[G-1].codePoints[0],oA=Qr(nA);if(oA===dr&&P===Wr)lA=nA,KA=M;else{P===wr?(sA=tA[G-1],bA=M):(sA=tA[G-2],bA=tA[G-1],KA=M);var lt=sA.codePoints[0],$A=bA.codePoints[0];A0(lt)&&t0($A)&&(lA=Si+((lt-hr)*Cr+($A-Er))*Ji)}var ct=KA&&KA.codePoints[0]||di;if(null!=lA&&(ct===di||e0(ct))){var mt=lA+(ct-di);if(K.hasGlyphForCodePoint(mt)){var It=oA===wr?3:2;return tA.splice(G-It+1,It,Vi(K,mt,M.features)),G-It+1}}return sA&&(sA.features.ljmo=!0),bA&&(bA.features.vjmo=!0),KA&&(KA.features.tjmo=!0),oA===dr?(Sa(tA,G-1,K),G+1):G}function l0(tA,G,K){var M=tA[G];if(0!==K.glyphForCodePoint(tA[G].codePoints[0]).advanceWidth){var nA=function o0(tA){switch(Qr(tA)){case dr:case Ya:return 1;case wr:return 2;case Wr:return 3}}(tA[G-1].codePoints[0]);return tA.splice(G,1),tA.splice(G-nA,0,M)}}function c0(tA,G,K){var M=tA[G],N=tA[G].codePoints[0];if(K.hasGlyphForCodePoint(xa)){var P=Vi(K,xa,M.features),nA=0===K.glyphForCodePoint(N).advanceWidth?G:G+1;tA.splice(nA,0,P),G++}return G}var pr={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"]]},Ie_X=1,Ie_N=8,Ie_H=16,Ie_ZWNJ=32,Ie_ZWJ=64,Ie_M=128,Ie_RS=8192,Ie_Repha=32768,Ie_Ra=65536,Ie_CM=1<<17,te={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},w0=2|Ie_Ra|Ie_CM|4|2048|4096,ba=Ie_ZWJ|Ie_ZWNJ,Wi=Ie_H|16384,Ra={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:te.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:te.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:te.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:te.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:te.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:te.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:te.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:te.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},d0={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},Q0=pr.decompositions,Ta=new R(B("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","base64")),m0=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"]]}),Bn=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.planFeatures=function(M){M.addStage(p0),M.addStage(["locl","ccmp"]),M.addStage(I0),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(D0),M.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),M.unicodeScript=function lo(tA){return Lr[tA]}(M.script),M.indicConfig=Ra[M.unicodeScript]||Ra.Default,M.isOldSpec=M.indicConfig.hasOldSpec&&"2"!==M.script[M.script.length-1]},G.assignFeatures=function(M,N){for(var P=function(lA){var sA=N[lA].codePoints[0],bA=d0[sA]||Q0[sA];if(bA){var KA=bA.map(function(lt){var $A=M.font.glyphForCodePoint(lt);return new ai(M.font,$A.id,[lt],N[lA].features)});N.splice.apply(N,[lA,1].concat(KA))}},nA=N.length-1;nA>=0;nA--)P(nA)},G}(ui);function qr(tA){return Ta.get(tA.codePoints[0])>>8}function Ua(tA){return 1<<(255&Ta.get(tA.codePoints[0]))}z(Bn,"zeroMarkWidths","NONE");var Mr=function(G,K,M,N){this.category=G,this.position=K,this.syllableType=M,this.syllable=N};function p0(tA,G){for(var P,K=0,M=0,N=r(m0.match(G.map(qr)));!(P=N()).done;){var nA=P.value,oA=nA[0],lA=nA[1],sA=nA[2];if(oA>M){++K;for(var bA=M;bAGt);break;case"First":for(var de=(It=sA)+1;deHe&&!(Qi(G[ke])||Je&&G[ke].shaperInfo.category===Ie_H);ke--);if(G[ke].shaperInfo.category!==Ie_H&&ke>He){var pe=G[He];G.splice.apply(G,[He,0].concat(G.splice(He+1,ke-He))),G[ke]=pe}break}for(var Le=te.Start,_e=sA;_esA;$e--)if(G[$e-1].shaperInfo.position!==te.Pre_M){Ee.position=G[$e-1].shaperInfo.position;break}}else Ee.position!==te.SMVD&&(Le=Ee.position)}for(var Ln=It,fn=It+1;fnsA&&!Qi(G[Gn]))}}}}function D0(tA,G,K){for(var M=K.indicConfig,N=tA._layoutEngine.engine.GSUBProcessor.features,P=0,nA=Ir(G,0);P=te.Base_C){if(oA&&lA+1te.Base_C&&lA--;break}if(lA===nA&&PP&&!(G[KA].shaperInfo.category&(Ie_M|Wi));)KA--;oi(G[KA])&&G[KA].shaperInfo.position!==te.Pre_M?KA+1P;lt--)if(G[lt-1].shaperInfo.position===te.Pre_M){var $A=lt-1;$AP&&G[mt].shaperInfo.position===te.SMVD;)mt--;if(oi(G[mt]))for(var _t=lA+1;_tP&&!(G[ce-1].shaperInfo.category&(Ie_M|Wi));)ce--;if(ce>P&&G[ce-1].shaperInfo.category===Ie_M)for(var Ce=re,de=lA+1;deP&&oi(G[ce-1])&&ce=tA.length)return G;for(var K=tA[G].shaperInfo.syllable;++G=0;nA--)P(nA)},G}(ui);function La(tA){return F0.get(tA.codePoints[0])}z(we,"zeroMarkWidths","BEFORE_GPOS");var x0=function(G,K,M){this.category=G,this.syllableType=K,this.syllable=M};function Y0(tA,G){for(var N,K=0,M=r(y0.match(G.map(La)));!(N=M()).done;){var P=N.value,nA=P[0],oA=P[1],lA=P[2];++K;for(var sA=nA;sA<=oA;sA++)G[sA].shaperInfo=new x0(v0[La(G[sA])],lA[0],K);for(var bA="R"===G[nA].shaperInfo.category?1:Math.min(3,oA-nA),KA=nA;KA1)for(P=M+1;P=tA.length)return G;for(var K=tA[G].shaperInfo.syllable;++G=0;Pn--)this.glyphs.splice(ce[Pn],1);return this.glyphs[this.glyphIterator.index]=Je,!0}}return!1;case 5:return this.applyContext(P);case 6:return this.applyChainingContext(P);case 7:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("GSUB lookupType ".concat(N," is not supported"))}},G}(fr),L0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K.applyPositionValue=function(N,P){var nA=this.positions[this.glyphIterator.peekIndex(N)];null!=P.xAdvance&&(nA.xAdvance+=P.xAdvance),null!=P.yAdvance&&(nA.yAdvance+=P.yAdvance),null!=P.xPlacement&&(nA.xOffset+=P.xPlacement),null!=P.yPlacement&&(nA.yOffset+=P.yPlacement);var oA=this.font._variationProcessor,lA=this.font.GDEF&&this.font.GDEF.itemVariationStore;oA&&lA&&(P.xPlaDevice&&(nA.xOffset+=oA.getDelta(lA,P.xPlaDevice.a,P.xPlaDevice.b)),P.yPlaDevice&&(nA.yOffset+=oA.getDelta(lA,P.yPlaDevice.a,P.yPlaDevice.b)),P.xAdvDevice&&(nA.xAdvance+=oA.getDelta(lA,P.xAdvDevice.a,P.xAdvDevice.b)),P.yAdvDevice&&(nA.yAdvance+=oA.getDelta(lA,P.yAdvDevice.a,P.yAdvDevice.b)))},K.applyLookup=function(N,P){switch(N){case 1:var nA=this.coverageIndex(P.coverage);if(-1===nA)return!1;switch(P.version){case 1:this.applyPositionValue(0,P.value);break;case 2:this.applyPositionValue(0,P.values.get(nA))}return!0;case 2:var oA=this.glyphIterator.peek();if(!oA)return!1;var lA=this.coverageIndex(P.coverage);if(-1===lA)return!1;switch(P.version){case 1:for(var KA,bA=r(P.pairSets.get(lA));!(KA=bA()).done;){var lt=KA.value;if(lt.secondGlyph===oA.id)return this.applyPositionValue(0,lt.value1),this.applyPositionValue(1,lt.value2),!0}return!1;case 2:var $A=this.getClassID(this.glyphIterator.cur.id,P.classDef1),ct=this.getClassID(oA.id,P.classDef2);if(-1===$A||-1===ct)return!1;var mt=P.classRecords.get($A).get(ct);return this.applyPositionValue(0,mt.value1),this.applyPositionValue(1,mt.value2),!0}case 3:var It=this.glyphIterator.peekIndex(),Gt=this.glyphs[It];if(!Gt)return!1;var _t=P.entryExitRecords[this.coverageIndex(P.coverage)];if(!_t||!_t.exitAnchor)return!1;var qt=P.entryExitRecords[this.coverageIndex(P.coverage,Gt.id)];if(!qt||!qt.entryAnchor)return!1;var re=this.getAnchor(qt.entryAnchor),ce=this.getAnchor(_t.exitAnchor),Ce=this.positions[this.glyphIterator.index],de=this.positions[It];switch(this.direction){case"ltr":Ce.xAdvance=ce.x+Ce.xOffset;var Ge=re.x+de.xOffset;de.xAdvance-=Ge,de.xOffset-=Ge;break;case"rtl":Ce.xAdvance-=Ge=ce.x+Ce.xOffset,Ce.xOffset-=Ge,de.xAdvance=re.x+de.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=It,Ce.yOffset=re.y-ce.y):(Gt.cursiveAttachment=this.glyphIterator.index,Ce.yOffset=ce.y-re.y),!0;case 4:var rn=this.coverageIndex(P.markCoverage);if(-1===rn)return!1;for(var Ue=this.glyphIterator.index;--Ue>=0&&(this.glyphs[Ue].isMark||this.glyphs[Ue].ligatureComponent>0););if(Ue<0)return!1;var he=this.coverageIndex(P.baseCoverage,this.glyphs[Ue].id);if(-1===he)return!1;var Je=P.markArray[rn];return this.applyAnchor(Je,P.baseArray[he][Je.class],Ue),!0;case 5:var ke=this.coverageIndex(P.markCoverage);if(-1===ke)return!1;for(var pe=this.glyphIterator.index;--pe>=0&&this.glyphs[pe].isMark;);if(pe<0)return!1;var Le=this.coverageIndex(P.ligatureCoverage,this.glyphs[pe].id);if(-1===Le)return!1;var _e=P.ligatureArray[Le],Ee=this.glyphIterator.cur,$e=this.glyphs[pe],Ln=$e.ligatureID&&$e.ligatureID===Ee.ligatureID&&Ee.ligatureComponent>0?Math.min(Ee.ligatureComponent,$e.codePoints.length)-1:$e.codePoints.length-1,fn=P.markArray[ke];return this.applyAnchor(fn,_e[Ln][fn.class],pe),!0;case 6:var Rn=this.coverageIndex(P.mark1Coverage);if(-1===Rn)return!1;var Pn=this.glyphIterator.peekIndex(-1),pn=this.glyphs[Pn];if(!pn||!pn.isMark)return!1;var zn=this.glyphIterator.cur,Cn=!1;if(zn.ligatureID===pn.ligatureID?zn.ligatureID?zn.ligatureComponent===pn.ligatureComponent&&(Cn=!0):Cn=!0:(zn.ligatureID&&!zn.ligatureComponent||pn.ligatureID&&!pn.ligatureComponent)&&(Cn=!0),!Cn)return!1;var kn=this.coverageIndex(P.mark2Coverage,pn.id);if(-1===kn)return!1;var De=P.mark1Array[Rn];return this.applyAnchor(De,P.mark2Array[kn][De.class],Pn),!0;case 7:return this.applyContext(P);case 8:return this.applyChainingContext(P);case 9:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("Unsupported GPOS table: ".concat(N))}},K.applyAnchor=function(N,P,nA){var oA=this.getAnchor(P),lA=this.getAnchor(N.markAnchor),bA=this.positions[this.glyphIterator.index];bA.xOffset=oA.x-lA.x,bA.yOffset=oA.y-lA.y,this.glyphIterator.cur.markAttachment=nA},K.getAnchor=function(N){var P=N.xCoordinate,nA=N.yCoordinate,oA=this.font._variationProcessor,lA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return oA&&lA&&(N.xDeviceTable&&(P+=oA.getDelta(lA,N.xDeviceTable.a,N.xDeviceTable.b)),N.yDeviceTable&&(nA+=oA.getDelta(lA,N.yDeviceTable.a,N.yDeviceTable.b))),{x:P,y:nA}},K.applyFeatures=function(N,P,nA){tA.prototype.applyFeatures.call(this,N,P,nA);for(var oA=0;oA>16;if(0===N)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(N){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,N){var P=[];return this.engine&&P.push.apply(P,this.engine.getAvailableFeatures(M,N)),this.font.kern&&-1===P.indexOf("kern")&&P.push("kern"),P},G.stringsForGlyph=function(M){for(var oA,N=new Set,nA=r(this.font._cmapProcessor.codePointsForGlyph(M));!(oA=nA()).done;)N.add(String.fromCodePoint(oA.value));if(this.engine&&this.engine.stringsForGlyph)for(var bA,sA=r(this.engine.stringsForGlyph(M));!(bA=sA()).done;)N.add(bA.value);return Array.from(N)},tA}(),G0={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},Fr=function(){function tA(){this.commands=[],this._bbox=null,this._cbox=null}var G=tA.prototype;return G.toFunction=function(){var M=this;return function(N){M.commands.forEach(function(P){return N[P.command].apply(N,P.args)})}},G.toSVG=function(){return this.commands.map(function(N){var P=N.args.map(function(nA){return Math.round(100*nA)/100});return"".concat(G0[N.command]).concat(P.join(" "))}).join("")},G.mapPoints=function(M){for(var nA,N=new tA,P=r(this.commands);!(nA=P()).done;){for(var oA=nA.value,lA=[],sA=0;sA0&&this.codePoints.every(I.isMark),this.isLigature=this.codePoints.length>1}var G=tA.prototype;return G._getPath=function(){return new Fr},G._getCBox=function(){return this.path.cbox},G._getBBox=function(){return this.path.bbox},G._getTableMetrics=function(M){if(this.id"u"||null===M)&&(M=this.cbox),(bA=this._font["OS/2"])&&bA.version>0)lA=Math.abs(bA.typoAscender-bA.typoDescender),sA=bA.typoAscender-M.maxY;else{var KA=this._font.hhea;lA=Math.abs(KA.ascent-KA.descent),sA=KA.ascent-M.maxY}return this._font._variationProcessor&&this._font.HVAR&&(P+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:P,advanceHeight:lA,leftBearing:nA,topBearing:sA}},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 Ki[this.id];case 2:var N=M.glyphNameIndex[this.id];return N0?this._decodeSimple(lA,nA):lA.numberOfContours<0&&this._decodeComposite(lA,nA,oA),lA},K._decodeSimple=function(N,P){N.points=[];var nA=new e.Array(e.uint16,N.numberOfContours).decode(P);N.instructions=new e.Array(e.uint8,e.uint16).decode(P);for(var oA=[],lA=nA[nA.length-1]+1;oA.length=0,0,0);N.points.push($A)}var ct=0;for(lt=0;lt>1,sA.length=0}function Je(ke,pe){Gt&&lA.closePath(),lA.moveTo(ke,pe),Gt=!0}return function ke(){for(;P.pos1&&Ue(),ct+=sA.shift(),Je($A,ct);break;case 5:for(;sA.length>=2;)$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);break;case 6:case 7:for(var Le=6===pe;sA.length>=1;)Le?$A+=sA.shift():ct+=sA.shift(),lA.lineTo($A,ct),Le=!Le;break;case 8:for(;sA.length>0;){var De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift();$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct)}break;case 10:var _e=sA.pop()+Ce,Ee=ce[_e];if(Ee){It[_e]=!0;var $e=P.pos,Ln=oA;P.pos=Ee.offset,oA=Ee.offset+Ee.length,ke(),P.pos=$e,oA=Ln}break;case 11:if(N.version>=2)break;return;case 14:if(N.version>=2)break;sA.length>0&&Ue(),Gt&&(lA.closePath(),Gt=!1);break;case 15:if(N.version<2)throw new Error("vsindex operator not supported in CFF v1");Ge=sA.pop();break;case 16:if(N.version<2)throw new Error("blend operator not supported in CFF v1");if(!rn)throw new Error("blend operator in non-variation font");for(var fn=rn.getBlendVector(de,Ge),Fn=sA.pop(),Rn=Fn*fn.length,Pn=sA.length-Rn,pn=Pn-Fn,zn=0;zn>3;break;case 21:sA.length>2&&Ue(),$A+=sA.shift(),ct+=sA.shift(),Je($A,ct);break;case 22:sA.length>1&&Ue(),Je($A+=sA.shift(),ct);break;case 24:for(;sA.length>=8;)De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);break;case 25:for(;sA.length>=8;)$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);break;case 26:for(sA.length%2&&($A+=sA.shift());sA.length>=4;)De=$A,be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se,ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);break;case 27:for(sA.length%2&&(ct+=sA.shift());sA.length>=4;)De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct=Xe);break;case 28:sA.push(P.readInt16BE());break;case 29:_e=sA.pop()+qt,(Ee=_t[_e])&&(mt[_e]=!0,$e=P.pos,Ln=oA,P.pos=Ee.offset,oA=Ee.offset+Ee.length,ke(),P.pos=$e,oA=Ln);break;case 30:case 31:for(Le=31===pe;sA.length>=4;)Le?(De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift(),ct=Xe+sA.shift(),$A=Se+(1===sA.length?sA.shift():0)):(De=$A,be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+(1===sA.length?sA.shift():0)),lA.bezierCurveTo(De,be,Se,Xe,$A,ct),Le=!Le;break;case 12:switch(pe=P.readUInt8()){case 3:var je=sA.pop(),ln=sA.pop();sA.push(je&&ln?1:0);break;case 4:je=sA.pop(),ln=sA.pop(),sA.push(je||ln?1:0);break;case 5:je=sA.pop(),sA.push(je?0:1);break;case 9:je=sA.pop(),sA.push(Math.abs(je));break;case 10:je=sA.pop(),ln=sA.pop(),sA.push(je+ln);break;case 11:je=sA.pop(),ln=sA.pop(),sA.push(je-ln);break;case 12:je=sA.pop(),ln=sA.pop(),sA.push(je/ln);break;case 14:je=sA.pop(),sA.push(-je);break;case 15:je=sA.pop(),ln=sA.pop(),sA.push(je===ln?1:0);break;case 18:sA.pop();break;case 20:var ea=sA.pop(),Gn=sA.pop();bA[Gn]=ea;break;case 21:Gn=sA.pop(),sA.push(bA[Gn]||0);break;case 22:var na=sA.pop(),ia=sA.pop(),Tl=sA.pop(),Ul=sA.pop();sA.push(Tl<=Ul?na:ia);break;case 23:sA.push(Math.random());break;case 24:je=sA.pop(),ln=sA.pop(),sA.push(je*ln);break;case 26:je=sA.pop(),sA.push(Math.sqrt(je));break;case 27:je=sA.pop(),sA.push(je,je);break;case 28:je=sA.pop(),ln=sA.pop(),sA.push(ln,je);break;case 29:(Gn=sA.pop())<0?Gn=0:Gn>sA.length-1&&(Gn=sA.length-1),sA.push(sA[Gn]);break;case 30:var Yr=sA.pop(),Xi=sA.pop();if(Xi>=0)for(;Xi>0;){for(var ra=sA[Yr-1],Sr=Yr-2;Sr>=0;Sr--)sA[Sr+1]=sA[Sr];sA[0]=ra,Xi--}else for(;Xi<0;){ra=sA[0];for(var Nr=0;Nr<=Yr;Nr++)sA[Nr]=sA[Nr+1];sA[Yr-1]=ra,Xi++}break;case 34:De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift();var Zi=Se+sA.shift(),qi=Xe,_i=Zi+sA.shift(),$i=qi,Ar=_i+sA.shift(),tr=$i,er=Ar+sA.shift(),nr=tr;$A=er,ct=nr,lA.bezierCurveTo(De,be,Se,Xe,Zi,qi),lA.bezierCurveTo(_i,$i,Ar,tr,er,nr);break;case 35:for(var Ei=[],ss=0;ss<=5;ss++)$A+=sA.shift(),ct+=sA.shift(),Ei.push($A,ct);lA.bezierCurveTo.apply(lA,Ei.slice(0,6)),lA.bezierCurveTo.apply(lA,Ei.slice(6)),sA.shift();break;case 36:De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),$i=qi=Xe=be+sA.shift(),Ar=(_i=(Zi=Se+sA.shift())+sA.shift())+sA.shift(),tr=$i+sA.shift(),er=Ar+sA.shift(),$A=er,ct=nr=tr,lA.bezierCurveTo(De,be,Se,Xe,Zi,qi),lA.bezierCurveTo(_i,$i,Ar,tr,er,nr);break;case 37:var os=$A,ls=ct;Ei=[];for(var cs=0;cs<=4;cs++)$A+=sA.shift(),ct+=sA.shift(),Ei.push($A,ct);Math.abs($A-os)>Math.abs(ct-ls)?($A+=sA.shift(),ct=ls):($A=os,ct+=sA.shift()),Ei.push($A,ct),lA.bezierCurveTo.apply(lA,Ei.slice(0,6)),lA.bezierCurveTo.apply(lA,Ei.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(pe))}break;default:throw new Error("Unknown op: ".concat(pe))}else if(pe<247)sA.push(pe-139);else if(pe<251){var aa=P.readUInt8();sA.push(256*(pe-247)+aa+108)}else pe<255?(aa=P.readUInt8(),sA.push(256*-(pe-251)-aa-108)):sA.push(P.readInt32BE()/65536)}}(),Gt&&lA.closePath(),lA},G}(yr),q0=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})}),_0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K.getImageForSize=function(N){for(var P=0;P=N)break}var oA=nA.imageOffsets,lA=oA[this.id],sA=oA[this.id+1];return lA===sA?null:(this._font.stream.pos=lA,q0.decode(this._font.stream,{buflen:sA-lA}))},K.render=function(N,P){var nA=this.getImageForSize(P);null!=nA&&N.image(nA.data,{height:P,x:nA.originX,y:P/this._font.unitsPerEm*(this.bbox.minY-nA.originY)}),this._font.sbix.flags.renderOutlines&&tA.prototype.render.call(this,N,P)},G}(xr),Wa=function(G,K){this.glyph=G,this.color=K},$0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K._getBBox=function(){for(var N=new xi,P=0;P>1;if(this.id<(sA=P.baseGlyphRecord[lA]).gid)oA=lA-1;else{if(!(this.id>sA.gid)){var bA=sA;break}nA=lA+1}}if(null==bA){var KA=this._font._getBaseGlyph(this.id);return[new Wa(KA,lt={red:0,green:0,blue:0,alpha:255})]}for(var $A=[],ct=bA.firstLayerIndex;ct=1&&N[P]=P.glyphCount)){var nA=P.offsets[M];if(nA!==P.offsets[M+1]){var oA=this.font.stream;if(oA.pos=nA,!(oA.pos>=oA.length)){var lA=oA.readUInt16BE(),sA=nA+oA.readUInt16BE();if(32768&lA){var bA=oA.pos;oA.pos=sA;var KA=this.decodePoints();sA=oA.pos,oA.pos=bA}var lt=N.map(function(fn){return fn.copy()});lA&=4095;for(var $A=0;$A=P.globalCoordCount)throw new Error("Invalid gvar table");It=P.globalCoords[4095&mt]}if(16384&mt){for(var _t=[],qt=0;qtnA[bA])return 0;sA=oA[bA]Math.max(0,N[bA]))return 0;sA=(sA*oA[bA]+Number.EPSILON)/(N[bA]+Number.EPSILON)}}return sA},G.interpolateMissingDeltas=function(M,N,P){if(0!==M.length)for(var nA=0;nAlA)){var bA=nA,KA=nA;for(nA++;nA<=lA;)P[nA]&&(this.deltaInterpolate(KA+1,nA-1,KA,nA,N,M),KA=nA),nA++;KA===bA?this.deltaShift(oA,lA,KA,N,M):(this.deltaInterpolate(KA+1,lA,KA,bA,N,M),bA>0&&this.deltaInterpolate(oA,bA-1,KA,bA,N,M)),nA=lA+1}}},G.deltaInterpolate=function(M,N,P,nA,oA,lA){if(!(M>N))for(var sA=["x","y"],bA=0;bAoA[nA][KA]){var lt=P;P=nA,nA=lt}var $A=oA[P][KA],ct=oA[nA][KA],mt=lA[P][KA],It=lA[nA][KA];if($A!==ct||mt===It)for(var Gt=$A===ct?0:(It-mt)/(ct-$A),_t=M;_t<=N;_t++){var qt=oA[_t][KA];qt<=$A?qt+=mt-$A:qt>=ct?qt+=It-ct:qt=mt+(qt-$A)*Gt,lA[_t][KA]=qt}}},G.deltaShift=function(M,N,P,nA,oA){var lA=oA[P].x-nA[P].x,sA=oA[P].y-nA[P].y;if(0!==lA||0!==sA)for(var bA=M;bA<=N;bA++)bA!==P&&(oA[bA].x+=lA,oA[bA].y+=sA)},G.getAdvanceAdjustment=function(M,N){var P,nA;if(N.advanceWidthMapping){var oA=M;oA>=N.advanceWidthMapping.mapCount&&(oA=N.advanceWidthMapping.mapCount-1);var sA=N.advanceWidthMapping.mapData[oA];P=sA.outerIndex,nA=sA.innerIndex}else P=0,nA=M;return this.getDelta(N.itemVariationStore,P,nA)},G.getDelta=function(M,N,P){if(N>=M.itemVariationData.length)return 0;var nA=M.itemVariationData[N];if(P>=nA.deltaSets.length)return 0;for(var oA=nA.deltaSets[P],lA=this.getBlendVector(M,N),sA=0,bA=0;bA$A.peakCoord||$A.peakCoord>$A.endCoord||$A.startCoord<0&&$A.endCoord>0&&0!==$A.peakCoord||0===$A.peakCoord?1:nA[lt]<$A.startCoord||nA[lt]>$A.endCoord?0:nA[lt]===$A.peakCoord?1:nA[lt]<$A.peakCoord?(nA[lt]-$A.startCoord+Number.EPSILON)/($A.peakCoord-$A.startCoord+Number.EPSILON):($A.endCoord-nA[lt]+Number.EPSILON)/($A.endCoord-$A.peakCoord+Number.EPSILON)}oA[lA]=sA}return this.blendVectors.set(P,oA),oA},tA}(),_a=Promise.resolve(),$a=function(){function tA(K){this.font=K,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,N=new e.EncodeStream;return _a.then(function(){return M.encode(N),N.end()}),N},tA}(),As=function(){function tA(){}return tA.size=function(K){return K>=0&&K<=255?1:2},tA.encode=function(K,M){M>=0&&M<=255?K.writeUInt8(M):K.writeInt16BE(M)},tA}(),ts=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(As,0),yPoints:new e.Array(As,0)}),fl=function(){function tA(){}var G=tA.prototype;return G.encodeSimple=function(M,N){void 0===N&&(N=[]);for(var P=[],nA=[],oA=[],lA=[],sA=0,bA=0,KA=0,lt=0,$A=0,ct=0;ct0&&(lA.push(sA),sA=0),lA.push(qt),lt=qt),bA=Gt,KA=_t,$A++}"closePath"===mt.command&&P.push($A-1)}M.commands.length>1&&"closePath"!==M.commands[M.commands.length-1].command&&P.push($A-1);var de=M.bbox,Ge={numberOfContours:P.length,xMin:de.minX,yMin:de.minY,xMax:de.maxX,yMax:de.maxY,endPtsOfContours:P,instructions:N,flags:lA,xPoints:nA,yPoints:oA},rn=ts.size(Ge),Ue=4-rn%4,he=new e.EncodeStream(rn+Ue);return ts.encode(he,Ge),0!==Ue&&he.fill(0,Ue),he.buffer},G._encodePoint=function(M,N,P,nA,oA,lA){var sA=M-N;return M===N?nA|=lA:(-255<=sA&&sA<=255&&(nA|=oA,sA<0?sA=-sA:nA|=lA),P.push(sA)),nA},tA}(),hl=function(tA){function G(M){var N;return(N=tA.call(this,M)||this).glyphEncoder=new fl,N}w(G,tA);var K=G.prototype;return K._addGlyph=function(N){var P=this.font.getGlyph(N),nA=P._decode(),oA=this.font.loca.offsets[N],lA=this.font.loca.offsets[N+1],sA=this.font._getTableStream("glyf");sA.pos+=oA;var bA=sA.readBuffer(lA-oA);if(nA&&nA.numberOfContours<0){bA=B.from(bA);for(var lt,KA=r(nA.components);!(lt=KA()).done;){var $A=lt.value;N=this.includeGlyph($A.glyphID),bA.writeUInt16BE(N,$A.pos)}}else nA&&this.font._variationProcessor&&(bA=this.glyphEncoder.encodeSimple(P.path,nA.instructions));return this.glyf.push(bA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:P.advanceWidth,bearing:P._getMetrics().leftBearing}),this.offset+=bA.length,this.glyf.length-1},K.encode=function(N){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var P=0;P255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},nA=Object.assign({},this.cff.topDict);nA.Private=null,nA.charset=P,nA.Encoding=null,nA.CharStrings=this.charstrings;for(var oA=0,lA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];oA0&&Object.defineProperty(this,N,{get:this._getTable.bind(this,P)})}}tA.probe=function(M){var N=M.toString("ascii",0,4);return"true"===N||"OTTO"===N||"\0\x01\0\0"===N};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(N){v.logErrors&&(console.error("Error decoding table ".concat(M.tag)),console.error(N.stack))}return this._tables[M.tag]},G._getTableStream=function(M){var N=this.directory.tables[M];return N?(this.stream.pos=N.offset,this.stream):null},G._decodeDirectory=function(){return this.directory=rr.decode(this.stream,{_startOffset:0})},G._decodeTable=function(M){var N=this.stream.pos,P=this._getTableStream(M.tag),nA=oe[M.tag].decode(P,this,M.length);return this.stream.pos=N,nA},G.getName=function(M,N){void 0===N&&(N=this.defaultLanguage||v.defaultLanguage);var P=this.name&&this.name.records[M];return P&&(P[N]||P[this.defaultLanguage]||P[v.defaultLanguage]||P.en||P[Object.keys(P)[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 N=[],P=M.length,nA=0,oA=-1,lA=-1;nA<=P;){var sA=0,bA=0;if(nA>>6&3},transformed:function(G){return"glyf"===G.tag||"loca"===G.tag?0===G.transformVersion:0!==G.transformVersion},transformLength:new e.Optional(ns,function(tA){return tA.transformed})}),is=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(Ql,"numTables")});is.process=function(){for(var tA={},G=0;G0){for(var sA=[],bA=0,KA=0;KA>7);if((sA&=127)<10)oA=0,lA=Ai(sA,((14&sA)<<7)+G.readUInt8());else if(sA<20)oA=Ai(sA,((sA-10&14)<<7)+G.readUInt8()),lA=0;else if(sA<84)oA=Ai(sA,1+(48&(KA=sA-20))+((lt=G.readUInt8())>>4)),lA=Ai(sA>>1,1+((12&KA)<<2)+(15<));else if(sA<120){var KA;oA=Ai(sA,1+((KA=sA-84)/12<<8)+G.readUInt8()),lA=Ai(sA>>1,1+(KA%12>>2<<8)+G.readUInt8())}else if(sA<124){var lt=G.readUInt8(),$A=G.readUInt8();oA=Ai(sA,(lt<<4)+($A>>4)),lA=Ai(sA>>1,((15&$A)<<8)+G.readUInt8())}else oA=Ai(sA,G.readUInt16BE()),lA=Ai(sA>>1,G.readUInt16BE());P.push(new ci(bA,!1,N+=oA,M+=lA))}return P}var Fl=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}}),yl=function(){function tA(K){if(this.stream=K,"ttcf"!==K.readString(4))throw new Error("Not a TrueType collection");this.header=Fl.decode(K)}return tA.probe=function(M){return"ttcf"===M.toString("ascii",0,4)},tA.prototype.getFont=function(M){for(var P,N=r(this.header.offsets);!(P=N()).done;){var nA=P.value,oA=new e.DecodeStream(this.stream.buffer);oA.pos=nA;var lA=new mi(oA);if(lA.postscriptName===M)return lA}return null},o(tA,[{key:"fonts",get:function(){for(var P,M=[],N=r(this.header.offsets);!(P=N()).done;){var nA=P.value,oA=new e.DecodeStream(this.stream.buffer);oA.pos=nA,M.push(new mi(oA))}return M}}]),tA}(),xl=new e.String(e.uint8),Yl=(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})),Sl=new e.Struct({name:new e.String(4),maxTypeIndex:e.uint16,refList:new e.Pointer(e.uint16,new e.Array(Yl,function(tA){return tA.maxTypeIndex+1}),{type:"parent"})}),Nl=new e.Struct({length:e.uint16,types:new e.Array(Sl,function(tA){return tA.length+1})}),bl=new e.Struct({reserved:new e.Reserved(e.uint8,24),typeList:new e.Pointer(e.uint16,Nl),nameListOffset:new e.Pointer(e.uint16,"void")}),as=new e.Struct({dataOffset:e.uint32,map:new e.Pointer(e.uint32,bl),dataLength:e.uint32,mapLength:e.uint32}),Rl=function(){function tA(K){this.stream=K,this.header=as.decode(this.stream);for(var N,M=r(this.header.map.typeList.types);!(N=M()).done;){for(var oA,P=N.value,nA=r(P.refList);!(oA=nA()).done;){var lA=oA.value;lA.nameOffset>=0?(this.stream.pos=lA.nameOffset+this.header.map.nameListOffset,lA.name=xl.decode(this.stream)):lA.name=null}"sfnt"===P.name&&(this.sfnt=P)}}return tA.probe=function(M){var N=new e.DecodeStream(M);try{var P=as.decode(N)}catch{return!1}for(var oA,nA=r(P.map.typeList.types);!(oA=nA()).done;)if("sfnt"===oA.value.name)return!0;return!1},tA.prototype.getFont=function(M){if(!this.sfnt)return null;for(var P,N=r(this.sfnt.refList);!(P=N()).done;){var lA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4)),sA=new mi(lA);if(sA.postscriptName===M)return sA}return null},o(tA,[{key:"fonts",get:function(){for(var P,M=[],N=r(this.sfnt.refList);!(P=N()).done;){var lA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4));M.push(new mi(lA))}return M}}]),tA}();v.registerFormat(mi),v.registerFormat(Cl),v.registerFormat(ml),v.registerFormat(yl),v.registerFormat(Rl),b.exports=v},19304:function(b,A,n){"use strict";var B=n(41209),a=n(32504),s=n(41783),o=s.BK,g=s.CR,f=s.LF,w=s.NL,u=s.SG,r=s.WJ,d=s.SP,E=s.ZWJ,C=s.BA,e=s.HY,h=s.NS,Q=s.AI,I=s.AL,R=s.CJ,p=s.HL,m=s.RI,y=s.SA,x=s.XX,Y=n(98282),v=Y.DI_BRK,S=Y.IN_BRK,z=Y.CI_BRK,F=Y.CP_BRK,gA=Y.pairTable,fA=new B(a.toByteArray("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")),iA=function(HA){switch(HA){case Q:case y:case u:case x:return I;case R:return h;default:return HA}},wA=function(HA){switch(HA){case f:case w:return o;case d:return r;default:return HA}},IA=function(HA,J){void 0===J&&(J=!1),this.position=HA,this.required=J};b.exports=function(){function YA(J){this.string=J,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var HA=YA.prototype;return HA.nextCodePoint=function(){var BA=this.string.charCodeAt(this.pos++),aA=this.string.charCodeAt(this.pos);return 55296<=BA&&BA<=56319&&56320<=aA&&aA<=57343?(this.pos++,1024*(BA-55296)+(aA-56320)+65536):BA},HA.nextCharClass=function(){return iA(fA.get(this.nextCodePoint()))},HA.getSimpleBreak=function(){switch(this.nextClass){case d:return!1;case o:case f:case w:return this.curClass=o,!1;case g:return this.curClass=g,!1}return null},HA.getPairTableBreak=function(BA){var aA=!1;switch(gA[this.curClass][this.nextClass]){case v:aA=!0;break;case S:aA=BA===d;break;case z:if(!(aA=BA===d))return!1;break;case F:if(BA!==d)return aA}return this.LB8a&&(aA=!1),!this.LB21a||this.curClass!==e&&this.curClass!==C?this.LB21a=this.curClass===p:(aA=!1,this.LB21a=!1),this.curClass===m?(this.LB30a++,2==this.LB30a&&this.nextClass===m&&(aA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,aA},HA.nextBreak=function(){if(null==this.curClass){var BA=this.nextCharClass();this.curClass=wA(BA),this.nextClass=BA,this.LB8a=BA===E,this.LB30a=0}for(;this.pos"u"?n.g:globalThis;b.exports=function(){for(var o=[],g=0;gS),g(b.exports,"getCombiningClass",()=>z),g(b.exports,"getScript",()=>F),g(b.exports,"getEastAsianWidth",()=>$),g(b.exports,"getNumericValue",()=>gA),g(b.exports,"isAlphabetic",()=>_),g(b.exports,"isDigit",()=>fA),g(b.exports,"isPunctuation",()=>iA),g(b.exports,"isLowerCase",()=>wA),g(b.exports,"isUpperCase",()=>IA),g(b.exports,"isTitleCase",()=>FA),g(b.exports,"isWhiteSpace",()=>YA),g(b.exports,"isBaseForm",()=>HA),g(b.exports,"isMark",()=>J),g(b.exports,"default",()=>BA);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 w=new(s(a))(s(B).toByteArray("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")),u=Math.log2||(aA=>Math.log(aA)/Math.LN2),r=aA=>u(aA)+1|0,d=r(s(f).categories.length-1),E=r(s(f).combiningClasses.length-1),C=r(s(f).scripts.length-1),e=r(s(f).eaw.length-1),Q=E+C+e+10,I=C+e+10,R=e+10,p=10,m=(1<>Q&m]}function z(aA){const eA=w.get(aA);return s(f).combiningClasses[eA>>I&y]}function F(aA){const eA=w.get(aA);return s(f).scripts[eA>>R&x]}function $(aA){const eA=w.get(aA);return s(f).eaw[eA>>p&Y]}function gA(aA){let eA=w.get(aA),EA=eA&v;if(0===EA)return null;if(EA<=50)return EA-1;if(EA<480)return((EA>>4)-12)/(1+(15&EA));if(EA<768){eA=(EA>>5)-14;let xA=2+(31&EA);for(;xA>0;)eA*=10,xA--;return eA}{eA=(EA>>2)-191;let xA=1+(3&EA);for(;xA>0;)eA*=60,xA--;return eA}}function _(aA){const eA=S(aA);return"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Nl"===eA}function fA(aA){return"Nd"===S(aA)}function iA(aA){const eA=S(aA);return"Pc"===eA||"Pd"===eA||"Pe"===eA||"Pf"===eA||"Pi"===eA||"Po"===eA||"Ps"===eA}function wA(aA){return"Ll"===S(aA)}function IA(aA){return"Lu"===S(aA)}function FA(aA){return"Lt"===S(aA)}function YA(aA){const eA=S(aA);return"Zs"===eA||"Zl"===eA||"Zp"===eA}function HA(aA){const eA=S(aA);return"Nd"===eA||"No"===eA||"Nl"===eA||"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Me"===eA||"Mc"===eA}function J(aA){const eA=S(aA);return"Mn"===eA||"Me"===eA||"Mc"===eA}var BA={getCategory:S,getCombiningClass:z,getScript:F,getEastAsianWidth:$,getNumericValue:gA,isAlphabetic:_,isDigit:fA,isPunctuation:iA,isLowerCase:wA,isUpperCase:IA,isTitleCase:FA,isWhiteSpace:YA,isBaseForm:HA,isMark:J}},43267:function(b){"use strict";b.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"]]')},74488:function(b){"use strict";b.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"]]')},21166:function(b){"use strict";b.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"]]')},72324:function(b){"use strict";b.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"]]')},56406:function(b){"use strict";b.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"]]')},99129:function(b){"use strict";b.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]}')},55914:function(b){"use strict";b.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"]]')},40679:function(b){"use strict";b.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 st(b){var A=Pt[b];if(void 0!==A)return A.exports;var n=Pt[b]={id:b,loaded:!1,exports:{}};return br[b].call(n.exports,n,n.exports,st),n.loaded=!0,n.exports}return st.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch{if("object"==typeof window)return window}}(),st.nmd=function(b){return b.paths=[],b.children||(b.children=[]),b},st(36164)}()},7235:function(){this.b=this.b||{},this.b.vfs={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAddgAAACWEdQT1N/jKrdAAHZuAAAWMBHU1VCm18k/AACMngAABX2T1MvMpeDsUwAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHXVAAAAAxnbHlmNN3JWAAAOswAAZmmaGVhZAh9pEIAAAEcAAAANmhoZWEMnBKkAAABVAAAACRobXR4VUzdowAAAfgAABSkbG9jYV8SwLgAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOSJt5gAB1HQAAALAcG9zdP9hAGQAAdc0AAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDJn8J2NfDzz1ABsIAAAAAADE8BEuAAAAAODgRcL6N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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//wAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgMfAIgC4QCJAuEAcwHiAI8B4gA+A0cAfgLi/9wC4gAtAuL/qwLi/7wC4v+yAuL/2ALi/94C4v/wAuL/yQLi//gDKf/cAuv/3QLr/8cB4v/oAeL/nQSD//MGJQAKBl8AOQg/ADsFvgAJBfwAHwRcAFEFrQBDBAMASgRSAAsFH//yBSb/5QW7AMwDsQBLB/sANQTbAOsE8QB/BgEAtgasAJIGpQCQBkMAvgRtAE0FZAAkBIv/rQRwAKsEoABBB/sASwH9/xUEXwAzBEIAcAP8/9MEGQAYA+kAQgJEAHcCfABxAfX/5ATXAHUETQBZBGgAdQagAHUGoAB1BMgAdQZoACgAAAAAB/X/qwg1AFwC2P/qAtgAbALYABwD8QBpA/EAJwPxAHAD8ABLA/EASgPx//cD8QAXA/H//QPxAL0D8QBGBAP/3QQLAHUEM/+3BeYAlARGAHkEWwBCBAcAbgQAABIEKQAdBJgARgQ7AB4EmABMBL0AHgXUAB4DmQAeBDQAHgOy//YB2gArBL4AHgSIAEwDrwAeBAAAEgQUAAYDhQAZA5MAHgRG/7AEmABMBEb/sANu/9MEqgAeA9L/1gU+AFIE8AB9BM0ADgVJAG0EWgBIBwr/wwcYAB4FSgBuBKkAHgQ5ACAE/f+JBd3/rwQfABIExgAgBC0AHwSc/8QEAABaBQEAHgRIAFYGIAAeBnkAHgT2AFEFzQAgBC4AIARaACAGRQAeBGT/4APz//oGGP+vBFcAHwTjAB8FDwBqBZcAUARHAHUEhP+3BjEAbQRIAFUESAAeBZgALgSmAEAEHwASBJwARgQUAAADxgAfB+QAHgSH/94C2P/7Atj/8QLYABcC2AAdAtgALwLYAAgC2AA3A3sAkwKgAQsDyAAeBBr/mQSfAEgFIwBEBP0ARAP1ACYFFQBEA/AAJgRdAB4EWgBIBDAAHgRj/6YB7wD8A4kBEgAA/SoD0gDTA9YAIgPwAM4D1wDNA5MAHgOEARIDgwETAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgVYAIAFgwCBBWgARAWzAIMFtgCDA7gAvARfADkEN/+BBKr/0wRJ/9UEDgArA4kBFAGG/74GcQBMBJYAPgHt/w8EZv+sBGb/4wRm/7gEZgAsBGYAVgRmACQEZgBmBGYAGwRmAEAEZgENAgD/CQH//wkB9gAvAfb/eAH2AC8EMAAeBNoAZAQBAGIEXAAfBBMARARwAEMEaQAjBHwAQgRr/9cEeQBCBB0ARgRcADUETv+/A2gAqQSxACwDmf/pBgr/mgPaAB4EmP/0BL0AHgS9AB4B9wAAAiUAGgU2AC8FNgAvBGQAPgShAKkCiv/0BRD/rwUQ/68FEP+vBRD/rwUQ/68FEP+vBRD/rwUNAHAEaQA7BGkAOwRpADsEaQA7AhwASQIcAEkCHABJAhwASQWJADsFVwBzBVcAcwVXAHMFVwBzBVcAcwUIAGMFCABjBQgAYwUIAGMEqQCoBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEOQAxBDkAMQQQAEYEHQBFBB0ARQQdAEUEHQBFAewALwHsAC8B7AAvAewALwRJACAEbQBGBG0ARgRtAEYEbQBGBG0ARgRHAFsERwBbBEcAWwRHAFsDrP+qA6z/qgUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUNAHAEEABGBQ0AcAQQAEYFDQBwBBAARgUNAHAEEABGBRgAOwT2AEcEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBUkAdARcAAMFSQB0BFwAAwVJAHQEXAADBUkAdARcAAMFiQA7BEYAIAIcAEkB7AARAhwASQHsAC4CHABJAewALwIc/4sB4/9tAhwASQZkAEkDvgAvBEgABwH1/wkE3gA7A+8AIAQuADsB4wAvBC4AOwHj/6IELgA7AnkALwQuADsCvwAvBYkAOwRJACAFiQA7BEkAIAWJADsESQAgBEkAIAVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgTIADsCoQAgBMgAOwKh/58EyAA7AqEAIAScACkEAQAuBJwAKQQBAC4EnAApBAEALgScACkEAQAuBJwAKQQBAC4EoQCpAooAQwShAKkCigBDBKEAqQKyAEMFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsG4gDDBdUAgASpAKgDrP+qBKkAqASm/+wD2v/uBKb/7APa/+4Epv/sA9r/7gdB/4MGjgATBVcAIARmADoEXf+vBF3/rwQHAG4EY/+mBGP/pgRj/6YEY/+mBGP/pgRj/6YEY/+mBFoASAPIAB4DyAAeA8gAHgPIAB4B2gArAdoAKwHaACsB2gArBL0AHgSYAEwEmABMBJgATASYAEwEmABMBFsAQgRbAEIEWwBCBFsAQgQLAHUEY/+mBGP/pgRj/6YEWgBIBFoASARaAEgEWgBIBF0AHgPIAB4DyAAeA8gAHgPIAB4DyAAeBIgATASIAEwEiABMBIgATAS+AB4B2gAOAdoAKwHaACsB5P+CAdoAKwOy//YENAAeA5kAHgOZAB4DmQAeA5kAHgS9AB4EvQAeBL0AHgSYAEwEmABMBJgATAQpAB0EKQAdBCkAHQQAABIEAAASBAAAEgQAABIEBwBuBAcAbgQHAG4EWwBCBFsAQgRbAEIEWwBCBFsAQgRbAEIF5gCUBAsAdQQLAHUEA//dBAP/3QQD/90FEP+vBM0AAwXtABECgAAXBWsAawUN/+0FPQAeAoQAIAUQ/68E1gA7BGkAOwSm/+wFiQA7AhwASQTeADsGxgA7BYkAOwVXAHME5QA7BKEAqQSpAKgE3f/UAhwASQSpAKgEYwBIBDAAKQRmACUChACEBDwAaARSAC4EbQBGBGb/5gPCAG4ETv+/AoQAZQQ8AGgEbQBGBDwAaAZkAGcEaQA7BFEARAScACkCHABJAhwASQRIAAcE/QBEBN4AOwThAJQFEP+vBNYAOwRRAEQEaQA7BYkARAbGADsFiQA7BVcAcwWJAEQE5QA7BQ0AcAShAKkE3f/UBDkAMQQdAEUEewAwBG0ARgRc/9cEEABGA6z/qgPa/8UEHQBFA0IALgQBAC4B4wAvAewALwHb/xMEMgAwA6z/qgbiAMMF1QCABuIAwwXVAIAG4gDDBdUAgASpAKgDrP+qAVsArAJ8AMkEAABEAfX/CQGOAIkGxgA7Bs4AHgUQ/68EOQAxBGkAOwWJAEQEHQBFBHsAMAVeAIUFbwBOBOQArQPlAIUIGQBGCQMAcwScACUD8QAgBQ0AcAQQAEYEqQCoA+QAhQIcAEkHC/+rBfL/pwIcAEkFEP+vBDkAMQUQ/68EOQAxB0H/gwaOABMEaQA7BB0ARQVdAFIEGAA/BBgAPwcL/6sF8v+nBJwAJQPxACAFiQBEBHsAMAWJAEQEewAwBVcAcwRtAEYFSABnBGkAQwVIAGcEaQBDBTwAdgQtADIE4QCUA6z/qgThAJQDrP+qBOEAlAOs/6oFUADLBDkAeQbAAEQGEAAxBGAARwUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUCHABJAewALwIcAA0B4//wBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBQgAYwRHAFsFCABjBEcAWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsEqQCoA6z/qgSpAKgDrP+qBKkAqAOs/6oEfgAABKEAqQO7AGAFUADLBDkAeQRRAEQDQgAuBgAAiASaAAQERgAgBN4ALATeACwEUQARA0L/5wURAFgECQA6BKkAqAPkAF4E3f/UA9r/xQQwACkESv/XBhkAmARcABgEXAA1BFwABQRcAHIEcACBBIQAVARwAJQEhAB+BUkAdARcAAMFiQA7BEkAIAUQ/68EOQAxBGkAOwQdAEUCHP/gAez/jQVXAHMEbQBGBMgAOwKhACAFCABjBEcAWwSG/7EE1gA7BFwAHwUYADsEYABHBRgAOwRgAEcFiQA7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AGUAcwAvAEwASQBDAEUATgBTAEUALQAyAC4AMAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAErTAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/5UAAAAA/4gAAP9WAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLrQABAAAAIUeQh4IHYwdkh3QHwYgAjbCMNQ08ih8Hn4x6izCH9AlEB5+Hn4hHB5+Hn4efimMJBQefh+mJJIjJB5cJ9IiZB28JzQdmB98I5ovwh4sIN4lkiG4HyweLCIOH1IhZiA4HywgpB7CHewdsh98HiwmHB28H9AdmCBuIG4gbh5+H9AdmB5+Hn4d+h28H9AdmCLCJhwefh5+IG4gbiEcIKQdniYcHn4efh36Hd4eGiamH9AeoB2oHsIeLB2yHZgdqB28HbIdqB3sHbIeGh7kHbIefh/QHZgefiCkHqAgpB6gHagdqB2oH9AdmB36HsIewh4sIRwdsiEcHbIhHB2yJqYmHB28HcYfpiYcIG4e5AABOcYABAAAAPQswChIKEgy9CzWK2goTit2PCArhCzsKE4objUkMi4tMiyuLQIoWjHwK6AycBemN8IXpjccF6YXphemK5IzOihULRgoVDKyKE4ziCycKEg4nChIKEgoSChCLVQteig8KGQoNitaKDYraChOKE4oTihOLTIs1izWLNYs1izWLNYs1itoK3Yrdit2K3YoTihOKE4oTihOMfAXphemF6YXphemF6YXphemF6YXpihUKFQs1izWLNYraCtoK2graChOK3YXpit2F6YrdhemK3YXpit2F6YXpiuELOws7CzsLOwXphemF6YXpihOF6YoThemKE4XpiuSK5Irki0yLTItMi0CMfAoVDHwK6AroCugKDwoPChCKDYoNig2KDYoNig2KDYoPCg8KDwoPCg8KDYoNig2KDwoZChkKGQoZCg8KDwoPChCLQItAi0CMfAoVChIKEgoSBemLNYs1izWLNYs1izWLNYs1izWLNYs1izWLNYrdhemK3YXpit2F6YrdhemK3YXpit2F6YrdhemK3YXpihOF6YoThemKE4XpihOF6YoThemKE4XpihOF6YXpjHwKFQx8ChUMfAoVBemLNYrdihO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/58AOgCyAA8A0v/mANQADgDW/+YA2QATANoADgDdAA4A3gALAOH/5QDm/+YA5//0AO0AEgDyAA8A9v/nAPn/6AD+AAABBAAPAQ0ADwEZ/+YBMwAOATn/5gE6/+cBQwAOAUX/5gFH/+UBSP/oAUn/5QFK/+gBTP/kAVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoADwBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd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/8oBif/KA9D/7QPc/9ID3f/0A+D/0QPi/9ED5P/mA+X/7wPn/9ED7P/RA+3/5gP2/8oD9//KA/r/ygQC/9EEBf/UBAb/5gQN/9MEDv/mBBD/9AQR/+8EHv/0BB//7wQj/9EEJf/RBC7/7QQv/+YEMP/tBDH/5gQy/+0EM//mBDT/4QQ3/9EEkv/SBJT/4QSX/9EEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR//FAEj/xQBJ/8UAS//FAEwAIABPACAAUAAgAFP/gABV/8UAV/+QAFsACwCU/8UAmf/FAdv/kAK8/8UCvf/FAr7/xQK//8UCwP/FAsb/gALH/4ACyP+AAsn/gALK/4AC2P/FAtr/xQLc/8UC3v/FAuD/xQLi/8UC5P/FAub/xQLo/8UC6v/FAuz/xQLu/8UC8P/FAvL/xQMU/4ADFv+AAxj/gAMg/5ADIv+QAyT/kAMm/5ADKP+QBFL/xQRU/8UEVv/FBFj/xQRa/8UEXP/FBF7/xQRg/8UEZv+ABGj/gARq/4AEbP+ABG7/gARw/4AEcv+ABHT/xQR2/8UEeP/FBHr/gAR8/8UEt//FBLv/gATE/8UExv/FBMgAIATKACAEzAAgBNn/kAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgGG/xYBiv8WAY7/FgGP/xYCBf/AAk3/wAKa/1YCm/9WApz/VgKd/1YCnv9WAp//VgKg/1YCtf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/1YC0v/eAtP/VgLU/94C1f9WAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD++AMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/A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AiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcGUAAACWEdQT1OYN0PaAAHD7AAAWPxHU1VCm18k/AACHOgAABX2T1MvMpfnsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBiAAAAAxnbHlml3ag9QAAOswAAYOyaGVhZAiGpEQAAAEcAAAANmhoZWEK9griAAABVAAAACRobXR4QNtY9AAAAfgAABSkbG9jYcJrHvoAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lQmB1PgABvoAAAALmcG9zdP9tAGQAAcFoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDPWGK6FfDzz1ABkIAAAAAADE8BEuAAAAAODgRcT6Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/QCNBaoAjQHPAF4HrgBQAnQAbAJpAFUDmQArAvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwM5AFAC8wBQAvMAUAIDAFMCAwBQA1wAZwL1AEwC9QCCAvUAPQL1ADcC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDOQBQAvMAUALzAFACAwBTAgMAUAS1AGIGbgAjBr8AmQiVAJQGOwAjBpsAfQSMAFwF6gAjBC0AKgSbACQFYgBPBX4AKwXkAG4D4wBFCCkAkAUIAG8FFACWBjcAXAbeAFYG0ABeBqwAXASTAGEFigCmBN4APwSAAJwEnQA7CFIAYQIy/6cEkQBlBIAAjwQSAD0EKAB9BA4AJQJRAJwCjgBkAekARwUZACsErQAaBL0AKwcoACsHKAArBQ8AKwa3AEkAAAAACDAAWQg1AFwC9QA9AvUAggL1AEwEHQBPBB0AVwQdADgEHQBfBB0AZgQdADMEHQA9BB0AQwQdAJgEHQBYBCsAQQQ+AAYEXAATBgkAJwR5AAgEiABpBD8AJQQ3AD8EZAB1BL0ATQRrAHYEvQBOBNwAdgYFAHYDtwB2BF4AdgPWACYB/gCGBN0AdgSnAFYDyAB2BDcAPwRoADoDpQAKA7wAdgR5AAgEvQBOBHkACAOdAEYE2QB2BB4ARAWmAE8FWABPBOAAXgWSACMEgABPB1YAJAdYAHYFmQAlBNgAdgRyAHYFXgAnBkUAGwRGAEME4gB2BF0AdgTLACQETAAfBWIAdgSNAEMGhAB2Bw4AdgVhAAkGFgB2BGcAdgSAAD0GjwB2BIQAQgQoAAsGowAbBKAAdgUNAHYFdAAhBfgATgRWAAYExAATBpcAIwSNAEMEjQB2BgAADgTOAE0ERwBDBL0ATgRoADoD9ABFCC0AdgT0ACgC9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHA7YAjQKuAJgD4AB2BDoADAS2AFYFQQCZBSgAmQQwAIEFNQCZBCgAgQR6AHYEgABPBGAAdgSaAAgB/gCQA6EAdQAA/J4D9wB6A/r/UQQLAHkD+gB5A7wAdgOdAHUDnQB1AvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwVzAGkFngBpBX8AmQXZAGkF2gBpBCgAlgSCAGsEWAAPBLsANARrAGcELgBCA6EAdgG6AGIGmABOBK8AbgIM/6cEjAA4BIwAaASMACwEjABiBIwAXwSMADQEjABsBIwAWQSMAGcEjADmAib/rgIl/64CFwCQAhf/+gIXAJAEYAB2BOYAYAQwADkEiAB9BD4ATwSVAE4EkQBOBJ0ASQSSAH0EmgBOBEkAUQSJAFAEWQA0A60AYQUMAF8DxAAFBkb/7AQHAHYEvQBOBQ4ANATcAHYB/QAAArgAUAVXABcFVwAXBJD/9QTgAC0Cqv/rBU4AEQVOABEFTgARBU4AEQVOABEFTgARBU4AEQU5AGYEhQCUBIUAlASFAJQEhQCUAkT/ywJEAKUCRP/KAkT/vgWtAJQFgwBlBYMAZQWDAGUFgwBlBYMAZQU8AIAFPACABTwAgAU8AIAE4wAIBFAAVgRQAFYEUABWBFAAVgRQAFYEUABWBFAAVgQtAE4ESQBRBEkAUQRJAFEESQBRAhf/tQIXAJACF/+zAhf/qAR0AHoEigBOBIoATgSKAE4EigBOBIoATgRzAHcEcwB3BHMAdwRzAHcD6wAMA+sADAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgU5AGYELQBOBTkAZgQtAE4FOQBmBC0ATgU5AGYELQBOBTkAlAUYAFAEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBXMAawSJAFIFcwBrBIkAUgVzAGsEiQBSBXMAawSJAFIFrQCUBHIAegJE/7QCF/+dAkT/0QIX/7sCRP/dAhf/xgJEABgCCv//AkQAnwa1AKUECwB8BHIALwIl/64FDgCUBCwAfQRSAJQCCgCMBFIAlAIKAFkEUgCUAqAAjARSAJQC5gCMBa0AlAR0AHoFrQCUBHQAegWtAJQEdAB6BHT/owWDAGUEigBOBYMAZQSKAE4FgwBlBIoATgUJAJQC1AB9BQkAlALUAFIFCQCUAtQANwTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE4AAtAqoACgTgAC0CqgAKBOAALQLSAAoFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcHCwAvBfAAIwTjAAgD6wAMBOMACATTAFAEBgBRBNMAUAQGAFEE0wBQBAYAUQd+//wGwgBIBYEAaQSGAE4Eev+lBHr/pQQ/ACUEmgAIBJoACASaAAgEmgAIBJoACASaAAgEmgAIBIAATwPgAHYD4AB2A+AAdgPgAHYB/v+pAf4AhgH+/6cB/v+cBNwAdgS9AE4EvQBOBL0ATgS9AE4EvQBOBIgAaQSIAGkEiABpBIgAaQQ+AAYEmgAIBJoACASaAAgEgABPBIAATwSAAE8EgABPBHoAYQPgAHYD4AB2A+AAdgPgAHYD4AB2BKcAVgSnAFYEpwBWBKcAVgTdAHYB/v+RAf7/rwH+/7oB/gAXAf4AfQPWACYEXgB2A7cAdgO3AHYDtwB2A7cAdgTcAHYE3AB2BNwAdgS9AE4EvQBOBL0ATgRkAHUEZAB1BGQAdQQ3AD8ENwA/BDcAPwQ3AD8EPwAlBD8AJQQ/ACUEiABpBIgAaQSIAGkEiABpBIgAaQSIAGkGCQAnBD4ABgQ+AAYEKwBBBCsAQQQrAEEFTgARBOn/QgYR/0oCqP9OBZf/tAVH/0EFbf/CAqX/hQVOABEFDQCUBIUAlATTAFAFrQCUAkQApQUOAJQG/wCUBa0AlAWDAGUFGwCUBOAALQTjAAgFDQAmAkT/vgTjAAgEhABWBGUAYgSGAH0CpQCjBF0AfwSaAI0EigBOBMEAkwP4ABYEWQA0AqX/wwRdAH8EigBOBF0AfwaUAGUEhQCUBHQAmQTYAEsCRAClAkT/vgRyAC8FKACZBQ4AlAULADIFTgARBQ0AlAR0AJkEhQCUBaYAkgb/AJQFrQCUBYMAZQWuAJkFGwCUBTkAZgTgAC0FDQAmBFAAVgRJAFEEkgCEBIoATgR/AH0ELQBOA+sADAQGAB8ESQBR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ALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAEriAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/68AAAAA/4gAAP8sAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLvAABAAAAIUeQh4IHYwdkh3QHwYgLDb+MRA1LiimHn4yJiz+H/olOh5+Hn4hRh5+Hn4efinIJD4efh/QJLwjTh5cJ/wijh28J14dmB9SI8Qv/h4sIQglvCHiHyweLCI4H3whkCBiHywgzh7CHewdsh+mHiwmRh28H/odmCCYIJggmB5+H/odmB5+Hn4d+h28H/odmCLsJkYefh5+IJggmCFGIM4dniZGHn4efh36Hd4eGibQH/oeoB2oHsIeLB2yHZgdqB28HbIdqB3sHbIeGh7kHbIefh/6HZgefiDOHqAgzh6gHagdqB2oH/odmB36HsIewh4sIUYdsiFGHbIhRh2yJtAmRh28HcYf0CZGIJge5AABOgIABAAAAPQs/Ch4KHgzMC0SK6QoiiuyPFwrwC0oKIooqjVgMmotbizqLT4oljIsK9wyrCh+N/4oYDdYF6YXpiiEK84zdiiQLVQokDLuKIozxCzYKHg42Ch4KHgoeChyLZAttihsKKAoZiuWKGYrpCiKKIooiiiKLW4tEi0SLRItEi0SLRItEiukK7IrsiuyK7IoiiiKKIooiiiKMiwofih+KH4ofhemKIQohCiEKIQohCiQKJAtEi0SLRIrpCukK6QrpCiKK7IofiuyKH4rsih+K7IofiuyKH4XpivALSgtKC0oLSgXphemF6YXpiiKKIQoiiiEKIoohCvOK84rzi1uLW4tbi0+MiwokDIsK9wr3CvcKGwobChyKGYoZihmKGYoZihmKGYobChsKGwobChsKGYoZihmKGwooCigKKAooChsKGwobChyLT4tPi0+MiwokCh4KHgoeBemLRItEi0SLRItEi0SLRItEi0SLRItEi0SLRIrsih+K7IofiuyKH4rsih+K7IofiuyKH4rsih+K7IofiiKKIQoiiiEKIoohCiKKIQoiiiEKIoohCiKKIQohDIsKJAyLCiQMiwokBemLRIrsiiKKIQrziiKKIoXpivAK8AtKBemF6YoiiiqK84tbizqKJAs6iiQLT4r3AACOfwABAAAPQg9/AAYABQAAAAAAAAAAP/FAAD/iAAAAAAAAAAA/+wAAAAA/7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAP/kAAAAAAAAAAAAAAAAABEAAAAAAAAAEgAAAAD/kwAAAAAAAP/rAAD/1f/tAAAAAAAAAAAAAP/q/+n/7f/1/+sAAP+IAAAAAAAA//UAAP/x/40AAP/E/+7/zv/1//QAAAAAAAAAAAAAAAAAAP8m/6f/v//Z/43/4wAS/6sAAP/Y/+z/y/+/AA0AAP+r/+//jQAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAA//IAAAAAAAAAAAAAAAAAAAAAAAAAAP/t/+8AAAAAAAAAAP/wAAD/5gAA/+0AAAAAAAAAAAAAAAD/oQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//fwAA//MAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qAAAAAAAAAAAAAAAAAAD/7AAAAAD/igAAAAAAAAAAAAAAAAAAAAAAAAAA//EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/yQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/qv/m/+sAAP/nAAAAAAAAAAD/4f/n/+sAAAAAAAAAAAAAAAAAAP5h/kn/Sv9e/zr/vQAHAAAAAP8//2wAAP9QAAAAAAAAAAD/OgAAAAAAAP+b/+b/6QAA/+EAAAAAAAD/8f/Y/+f/5QAAAAAAAAAAAAAAAAAA/p8AAP/zAAD/ZwAAAAD/rAAAAAAADwAA//P/2v/i/6wAAP9nAAAAAP8X/wn/of+s/6L/5AAQ/68AAP+a/7T/uf91AAAAAP+v/+3/ogAAAAAAAAAA/+v/7QAN/+YAAAANAAAAAP/l/+z/6wAAAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAP+/AAAAAP/yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAP/jAAAAAAAAAAAAAAAAAAAAAAAAAAD/9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9QAA//H/jQAA/8T/7v/O//X/9AAAAAAAAAAAAAAAAjtcAAQAADxsQRIAIgAeAAAAAAAAAAAAAAAAABEAAAAAAAD/4wAAAAAAEQAAAAAAEv/kABEAAP/lAAAAAAAA/+QAAAAAABIAAAAAAAD/7P/FAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/iAAAAAD/uAAA/84AAAAAAAAAAAAAAAAAAP+sAAAAAP/zAAAADwAAAAAAAP9/AAAAAAAAAAAAAAAAAAAAAAAA/9f/8QAA//EAAAAAAAAAAAAAAAAAAAAAAAAAAP/m/+cAAP/hAAAAAAAA/+cAAP+qAAAAEQAAAAAAAAAAABH/6//RAAAAAAAOAAAAAAAAAAAAAAAAAAAAAP/sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/5QAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8f/m/+EAAP/YAAAAAAAA/+cAAP+bAAAAAAAAAAAAAAAAAAD/5f+jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8v/zAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/P/9K/70AAP9sAAD/av5hAAAAB/5JAAD/kgAAAAD/OgAA/w//UP8M/z8AAAAHAAcAAAAA/zoAAP9AAAAAAAAAAAD/wAAA//b/yQAAAAD/MwAAAAD/+f/rAAAAAP/nAAAAAAAAAAAAAP/I/60AAAAAAAAAAAAAAAD/of+9/+kAAAAAAAAAAP5xAAAAEv9sAAD/ygAAAAD/pQAA/7v/vf/p/5wAAAAAABIAAAAA/6UAAP/SAAAAAP/sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9j/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4//1AAD/8QAAAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/ef/OAAD/8QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/dAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAAAAP/mAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAD/7QAAAAD/8AAAAAAAAAAAAAAAAAAAAAD/7gAA//H/iP/OAAAAAAAA//X/ggAA/8cAEQAAAAAAAP/JABL/9P+sAAD/xP+t/40AAAAAAAAAAAAAAAAAAAAAAAD/iv/xAAD/6wAAAAAAAAAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+oAAP+TAAD/0AAAAAD/4QAA//X/6wAAAAAAAAAAAAAAAP/q/9X/7f/t/+sAAAAAAAAAAAAAAAD/z//xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/mv+h/+QAAP+0AAD/s/8X/7kAEP8J//H/ywAA/+3/ogAA/37/df98/3sAAAAQABD/r/+v/6L/Gf+bAAAAAAAAAAD/9QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/U//MAAP/1AAAAAP8j/9kAAP+vAAAAAAAAAAD/tQAAAAD/0gAA/9IAAAAAAAD/tP+0/7UAAAAAAAD/2P+//+MAAP/sAA3/6f8m/8sAEf+n//MAAAAA/+//jQAAAAD/vwAA/7sAAAASABL/q/+r/43/oP/GAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAA/8AAAAAAAAAAAAAAAAAAAAAAAAD/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//IAAAAA/8AAAAAAAAAAAAAAAAAAAAAAAAD/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+4AAAAA/+wAAAAAAAAAAAAAAAD/6gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7gAA//EAAP/OAAAAAAAA//X/ggAA/8cAEQAAAAAAAP/JABL/9P+sAAD/xP+t/40AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6gAAAAAAAAAAAAAAAAAAAAD/6//r/+oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/5QAAAAAAAP/zAAAAAAAAAAAAAAAAAAAAAP/o/8kAAAAAAAAAAAAAAAAAAP/zAAAAAAAP/9oAAP6fAAAAAAAAAAD/qAAAAAD/ZwAA/8f/8wAA//UAAAAAAAD/rP+s/2f/PgAAAAAAAAAAAAD/oQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAI26gAEAAA8zkJaACMAIgAAAAAAAP/rAAAAAAAAAAAAAAAAAAD/7QAAAAD/1QAAAAAAAP+T/9D/6QAAAAAAAAAA/+oAAAAAAAD/6v/1/+3/6wAAAAAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAP/kAAAAAAAAAAD/4wAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAAASAAAAAP/xAAAAAAAA//X/9f/0/+//7v/xAAD/zv+I/40AAAAA/8YAAP+CAAAAAAAAAAz/xP+tAAD/3f/HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/x/88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAAAAAAA/+//7QAAAAAAAAAA/+YAAAAAAAAAAAAAAAAAFAAAAAAAAAAA//AAAAAA/+0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8//yAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/x/4oAAAAAAAAAAAAAAAAAAAAAAAD/8AAAAAAAAAAAAAAAAAAAAAAAAP/rAAAAAAAA/+oAAAAAAAAAAAAAAAAAAP/rAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6//qAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP+hAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qAAAAAAAA/+4AAP/sAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAA/9j/wAAAAAAAAAAAAAAAAAAA//MAAP/xAAAAAP/xAAAAAAAAAAAAAAAPAAAAAAAAAAD/fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/xf+I/84AAAAA/7gAAP/sAAAAAAAAAAAAAP+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/4/+//43/u//L/9n/v/+g/9gAAP+r/+wAAAAS/8b/8AAR/yYAEQAA/6cAAP/iAAAAEv+g//P/8wAN/+//q/+N/+kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAATAAD/8v/fAAD/1QAA/+EAE/9/AAD/AgAAAAD/gwAA/wcAAAAAAAAAAP9r/0YAAP+r/2sAAAAAABMAEwAAAAD/5P+h/6L/e/+5/6z/dQAA/5oAAP+v/7QAAAAQ/5v/8AAP/xcAEAAA/wn/vP/EAAAAEP8Z//H/8QAA/+3/r/+i/7MAAAAA/+H/1f/f/+f/7f/hAAAAAAAA/8sAAAAAAAAAAAAAAAD/fgAOAAD/xAAAAAAAAAAAAAAAAAAAAAAAAP/L/9UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/tAAD/3AAAAAD/5gAAAAAAAAAAABIAEAAAAAAAAAAA/3MAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/m/+sADQAA/+z/7f/rAAAAAAAAAA3/5QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/1/+MAAAAAAAAAAAAAAAAAAAAAAAD/8QAAAAAAAAAAAAAAAAAAAAAAAP/xAAAAAAAAAAAAAP/vAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/7QAAAAA/9X/uwAAAAAAAAAAAAAAAAAA//AAAAAAAAAAAP/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+H/5gAAAAD/5//p/+UAAP/xAAAAAP/YAAAAAAAAAAAAAAAAAAAAAP+bAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8//U/7X/0v/Z/+T/0gAAAAAAAP+0//UAAAAAAAAAAAAA/yMAAAAA/68AAAAAAAAAAAAAAAAAAAAAAAD/tP+1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/yQAAAAAAAAAA/+UAAAAAAAAAAAAA/+gAAAAAAAAAAAAAAAAAAAAAAAAAAP/z/2f/9QAAAAD/8wAAAAAAAP+sAA8AAAAAAAAAAAAA/p8AAP/iAAAAAAAAAAAAAP8+AAAAAP/aAAD/rP9nAAAAAAAAAAAAAAAA/+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+f/5gAAAAD/5//r/+sAAAAAAAAAAP/hAAAAAAAAAAAAAAAAAAAAAP+qAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/yAAAAAAAAAAD/7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/78AAAAA/9j/wAAAAAAAAAAAAAAAAAAAAAD/6wAAAAAAAAAAAAAAAAAA/+0AAAAA/9UAAAAAAAD/k//Q/+kAAAAAAAAAAP/qAAAAAAAA/+r/9f/t/+sAAAAA//EAAAAAAAD/9f/1//T/7//u//EAAP/OAAD/jQAAAAD/xgAA/4IAAAAAAAAADP/E/60AAP/d/8cAAAAAAAAAAAAAAAAAAP/sAAAAAAAAAAD/5QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAT/xcAAQAj/7wAAQADABMAnQCyAAoABgAAAAsAAAGEAAABhQAAAYcAAAGIAAABiQAAA/YAAAP3AAAD+gAAAAEAEgAGAAsAEAASAJYAsgGEAYUBhgGHAYgBiQGKAY4BjwP2A/cD+gABAMQADgABAMr/9AABAMr/6gABAMoAEwABAYX/oQACAAcAEAAQAAEAEgASAAEAlgCWAAIAsgCyAAMBhgGGAAEBigGKAAEBjgGPAAEAAgC9AAADwQAAAAIAvf/0A8H/9AACALj/ywDN/+QAAgC4/8UAyv+0AAIAyv/qAYX/pAADA6YAFgO1ABYDuAAWAAMAtQAAALcAAADEAAAAAwC+//kAxP/EAMf/2gADALX/8wC3//AAxP/qAAQAs//zAMQADQOl//MDsv/zAAQAvv/5AMYACwDH/+oAygAMAAUAIwAAALj/5QC5/9EAxAARAMr/yAAFALP/5gC4/8IAxAAQA6X/5gOy/+YABQAj/7wAuP/lALn/0QDEABEAyv/IAAYAu/+0AMj/tADJ/7QDuf+0A7//egPF/3oACAC4/9QAvv/2AML/7QDEABEAyv/gAMz/5wDN/+UAzv/uAAkAsv/kALT/5ADE/+IDof/kA6b/0wOp/+QDtf/TA7b/0gO4/9MACwAQ/y0AEv8tALL/zQC0/80Ax//yAYb/LQGK/y0Bjv8tAY//LQOh/80Dqf/NAAsAEAAEABIABAC7/+cAxAAPAMj/5wDJ/+cBhgAEAYoABAGOAAQBjwAEA7n/5wAMAG3+LwB8/qkAuP9nAL7/uQC//w8Aw/70AMb/KwDH/vEAyv9SAMz++QDN/wMAzv7sAA0ABP/RAG3++gB8/0IAuP+yAL7/3QC//34Aw/9uAMb/jgDH/2wAyv+lAMz/cQDN/3cAzv9pAAIAEAAGAAYAAQALAAsAAQAQABAAAgARABEAAwASABIAAgCyALIABAGBAYIAAwGEAYUAAQGGAYYAAgGHAYkAAQGKAYoAAgGOAY8AAgKUApQAAwP2A/cAAQP6A/oAAQSnBKcAAwAUAAb/wwAL/8MAvf/bAML/9QDEAAoAxv/zAMr/cgDL//cBhP/DAYX/wwGH/8MBiP/DAYn/wwO9//cDwf/bA8T/9wPG//cD9v/DA/f/wwP6/8MAAQApAAwAlgCdALEAsgCzALQAtQC3ALgAuQC7AL0AvgDAAMEAwwDEAMUAxwDJAMoAzgGFA6EDpQOmA6kDrAOvA7IDswO0A7UDtgO4A7sDvwPBA8UE5QAVAAr/4gANABQADv/PAEEAEgBhABMAbf+uAHz/zQC4/9AAvP/qAL7/9QC//8YAwAANAML/6QDD/9YAxv/oAMf/ugDK/+kAzP/LAM3/2gDO/8cBjf/TABgAu//cAL3/4QC+//UAv//mAMH/4QDC/+sAw//pAMX/8ADG/+cAyP/cAMn/3ADK/+MAy//dAMz/zgDN/9QAzv/bA7n/3AO7/+EDvf/dA7//1gPB/+EDxP/dA8X/1gPG/90AGQAG/9oAC//aALv/8AC9/9wAwv/sAMQADwDG/+oAyP/wAMn/8ADK/8gAy//vAMz/5wGE/9oBhf/aAYf/2gGI/9oBif/aA7n/8AO9/+8Dwf/cA8T/7wPG/+8D9v/aA/f/2gP6/9oAHwAGAAwACwAMALv/6AC9AAsAvv/0AMT/1wDGAAsAyP/oAMn/6ADKAAwBhAAMAYUADAGHAAwBiAAMAYkADAIF/78CBv/tAgf/vwO5/+gDv//qA8EACwPF/+oD9gAMA/cADAP6AAwE5v+/BOr/7QTrAA0E7f+/BPkADQT8AA0AAQPN/+4AAQPN/+wAAQEc//EAAgERAAsBbP/mAAIA9v/1AYX/tgACAO3/yAEc//EAAgDt/6UBHP/uAAIA9v/IAYX/oQADANkAAADmAAABbAAAAAMA2f9xAO3/ngFf/9wAAwANABQAQQARAGEAEwADANn/3wDm/+ABbP/gAAQBGQAUBAUAFAQNABYEoQAWAAQADf/mAEH/9ABh/+8BTf/tAAUA7f/uAPb/vgD+//kBOv/sAW3/7AAGANL/0QDW/9EBOf/RAUX/0QPc/9EEkv/RAAgA0v/rANb/6wE5/+sBRf/rA9z/6wQN//MEkv/rBKH/8wAIANkAFQDtABUBSf/kAUr/5QFM/+QBYv/jAWT/4gFs/+QACAD2//AA/v/6AQn/8QEg//MBOv/xAWP/8wFl/+0Bbf/eAAgA7f+4APb/5wEJ//ABIP/xATr/6wFj//UBbf/sAYX/pAAIAAr/4gANABQADv/PAEEAEgBhABMAbf+uAHz/zQGN/9MACQD2AAABGgAAA+QAAAPtAAAEBgAABA4AAAQvAAAEMQAABDMAAAAJAPb/nQD+/+sBCf/TASD/2wE6/z4BSv+6AWP/8AFl//IBbf9QAAoABv/1AAv/9QGE//UBhf/1AYf/9QGI//UBif/1A/b/9QP3//UD+v/1AAoABv/WAAv/1gGE/9YBhf/WAYf/1gGI/9YBif/WA/b/1gP3/9YD+v/WAAoABv/qAAv/6gGE/+oBhf/qAYf/6gGI/+oBif/qA/b/6gP3/+oD+v/qAAoA5v/DAPb/zwD+//ABOv/OAUn/5wFM/98BYv/RAWT/7AFs/6ABbf/RAAwA2QASAOr/6QD2/9cBOv/XAUr/0wFM/9YBTf/FAVj/5wFiAA0BZAAMAW3/1gFu//IADQDZABMA5v/FAPb/ygE6/5QBSf9YAUr/fwFM/6UBTf/dAVj/8gFi/4sBZP/KAWz/cAFt/6IADQD2/5oA+f/WAP7/8gEJ/9MBIP/bATr/PgFI/9YBSv+6AWP/8AFl//IBbf9QBDX/1gSV/9YADQDq/9cA9v+5AP7/6QEJ/7IBHP/SASD/yAE6/6ABSv/FAVj/5AFj/8wBZf/MAW3/ywFu/+8ADgAj/7wA2QATAOb/xQD2/8oBOv+UAUn/WAFK/38BTP+lAU3/3QFY//IBYv+LAWT/ygFs/3ABbf+iAA8A7QAUAPIAEAD2//AA+f/wAP7/+gEBABABBAAQATr/7AFI//ABSv/iAVEAEAFt//ABcAAQBDX/8ASV//AAEgDZ/64A5gASAOv/4ADt/60A7//WAP3/3wEB/9IBB//gARz/zgEu/90BMP/iATj/4AFA/+ABSv/pAU3/2gFf/70Baf/fAWwAEQAUAO7/7QD2/6EA+f/RAP7/7wEJ/9MBIP/bATT/7QE6/z4BRP/tAUj/0QFK/7oBXv/tAWP/8AFl//IBbf9QA+X/7QQR/+0EH//tBDX/0QSV/9EAFQD2/6UA+f/hAP7/+gEJ/9MBGv/SASD/2wE6/00BSP/hAUr/uwFj//gBZf/zAW3/XwPk/9ID7f/SBAb/0gQO/9IEL//SBDH/0gQz/9IENf/hBJX/4QAVAO3/7wDu//AA8v/zAP7/+QEE//MBGv/0ATT/8AFE//ABUf/zAV7/8AFw//MD5P/0A+X/8APt//QEBv/0BA7/9AQR//AEH//wBC//9AQx//QEM//0ABcABv/yAAv/8gD2//QA/v/8AQn/9QEa//UBOv/1AW3/9QGE//IBhf/yAYf/8gGI//IBif/yA+T/9QPt//UD9v/yA/f/8gP6//IEBv/1BA7/9QQv//UEMf/1BDP/9QAYAPf/tAED/7QBGP96AR7/tAEi/7QBQv+0AWD/tAFh/7QBa/+0A9//tAPh/3oD4/+0A+b/tAPo/2QEAf+0BAf/tAQM/7QEGv+0BBz/tAQd/7QEJ/96BCn/tAQr/3oEOP+0AB0A0v/iANT/5ADW/+IA2f/hANr/5ADd/+QA3v/pAO3/5ADy/+sBBP/rATP/5AE5/+IBQ//kAUX/4gFQ/+QBUf/rAV3/5AFm/+QBb//kAXD/6wPQ/+kD3P/iA93/5AQQ/+QEHv/kBC7/6QQw/+kEMv/pBJL/4gAeAPf/8AED//ABGP/eARz/6wEe//ABIv/wAUL/8AFg//ABYf/wAWv/8AIP/+sCK//rAjT/6wPf//AD4f/eA+P/8APm//AEAf/wBAf/8AQM//AEGv/wBBz/8AQd//AEJ//eBCn/8AQr/94EOP/wBQz/6wUP/+sFFP/rAB8ABv/AAAv/wADe/+sA4f/nAOb/wwD2/84A/v/wARn/yAE6/80BR//nAUn/5wFM/98BYv/RAWT/7AFs/6ABbf/QAYT/wAGF/8ABh//AAYj/wAGJ/8AD0P/rA/b/wAP3/8AD+v/ABAX/yAQu/+sEMP/rBDL/6wQ0/+cElP/nAB8A0v/jANT/5QDW/+MA2f/iANr/5QDd/+UA3v/pAPL/6gEE/+oBM//lATn/4wFD/+UBRf/jAVD/5QFR/+oBXf/lAWb/5QFs/+QBb//lAXD/6gPQ/+kD3P/jA93/5QQN/+QEEP/lBB7/5QQu/+kEMP/pBDL/6QSS/+MEof/kACAAG//yANL/8QDU//UA1v/xANr/9ADd//UA3v/zAOb/8QEZ//QBM//0ATn/8QFD//QBRf/xAVD/9QFd//QBYv/yAWT/8gFm//UBbP/yAW//9QPQ//MD3P/xA93/9AQF//QEDf/wBBD/9AQe//QELv/zBDD/8wQy//MEkv/xBKH/8AAiAO0AKwDyABQA9v/jAPcAAQD5//AA/P/mAP7/9QEDAAEBBAAUAR4AAQEiAAEBOv/TAUIAAQFI//ABSv/fAVEAFAFgAAEBYQABAWsAAQFt/+MBcAAUA98AAQPjAAED5gABBAEAAQQHAAEEDAABBBoAAQQcAAEEHQABBCkAAQQ1//AEOAABBJX/8AAiAG3+LwB8/qkA2f9YAOYABQDq/70A6/9JAO3+/gDv/xMA9v9oAP3/DgD+/0YA//8TAQH/BwECABIBB/8OAQn/EQEc/x0BIP+sAS7/FQEw/zwBOP8OATr/agFA/0kBSv8MAUz/PwFN/vEBWP/AAV/+7wFj/zEBZf9fAWn/CgFsAAUBbf8wAW7/1QAjAAT/0QBt/voAfP9CANn/qQDmAA8A6v/kAOv/oADt/3QA7/+AAPb/sgD9/30A/v+eAP//gAEB/3kBAgAPAQf/fQEJ/38BHP+GASD/2gEu/4EBMP+YATj/fQE6/7MBQP+gAUr/fAFM/5oBTf9sAVj/5gFf/2sBY/+SAWX/rQFp/3sBbAAPAW3/kQFu//IAJwDs//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/+0D4P/5A+L/+QPn//kD7P/5BAL/+QQj//kEJf/5BDX/7QQ3//kElf/tBJf/+QAqAOz/7wDt/+4A7v/wAPD/7wDx/+8A8//vAPT/7wD1/+8A9v/uAPj/7wD6/+8A+//vAP7/7wEA/+8BBf/vAQn/9AEg//EBK//vATT/8AE2/+8BOv/vATz/7wE+/+8BRP/wAVP/7wFV/+8BV//vAVz/7wFe//ABbf/vA+D/7wPi/+8D5f/wA+f/7wPs/+8EAv/vBBH/8AQf//AEI//vBCX/7wQ3/+8El//vADMA0v++ANb/vgDm/8kA7P/1APD/9QDx//UA8//1APT/9QD1//UA9v/fAPj/9QD6//UA+//1AP7/9QEA//UBBf/1AQn/7QEa/+8BIP/rASv/9QE2//UBOf++ATr/3wE8//UBPv/1AUX/vgFM/+kBU//1AVX/9QFX//UBXP/1AWP/9QFt/+AD3P++A+D/9QPi//UD5P/vA+f/9QPs//UD7f/vBAL/9QQG/+8EDv/vBCP/9QQl//UEL//vBDH/7wQz/+8EN//1BJL/vgSX//UAAQGF/6cAAQHw/8cAAQHw//EAAQHwAA0AAQBbAAsAAQGF/7YAAQGF/6QAAQCB/98AAQBKAA0AAgH1/+kCS//pAAIB8P+3AfX/8AACAFgADgCB/1YAOgCyAA8A0v/mANQADgDW/+YA2QATANoADgDdAA4A3gALAOH/5QDm/+YA5//0AO0AEgDyAA8A9v/nAPn/6AD+//cBBAAPAQ0ADwEZ/+YBMwAOATn/5gE6/+cBQwAOAUX/5gFH/+UBSP/oAUn/5QFK/+gBTP/kAVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoAEQBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd/+gBH//oASH/6AE5/+ABQf/oAUX/4AFH/+EBSP/gAUn/4QFK/+ABTf/hAVAAEAFRABABWP/pAWL/3wFk/94BZgAQAWr/6AFs/98Bbv/yAW8AEAFwABAD0QAQA9j/6APb/+gD3P/gBAX/4AQI/+gEC//oBA3/3wQT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/+0EM//mBDT/4QQ3/+IEkv/SBJT/4QSX/+IEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR/+0AEj/tABJ/7QAS/+0AEwAFABPABQAUAAUAFP/egBV/7QAV/9kAFsACwCU/7QAmf+0Adv/ZAK8/7QCvf+0Ar7/tAK//7QCwP+0Asb/egLH/3oCyP96Asn/egLK/3oC2P+0Atr/tALc/7QC3v+0AuD/tALi/7QC5P+0Aub/tALo/7QC6v+0Auz/tALu/7QC8P+0AvL/tAMU/3oDFv96Axj/egMg/2QDIv9kAyT/ZAMm/2QDKP9kBFL/tARU/7QEVv+0BFj/tARa/7QEXP+0BF7/tARg/7QEZv96BGj/egRq/3oEbP96BG7/egRw/3oEcv96BHT/tAR2/7QEeP+0BHr/egR8/7QEt/+0BLv/egTE/7QExv+0BMgAFATKABQEzAAUBNn/ZAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8HABL/BwAl/04ALv8NADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/TgGG/wcBiv8HAY7/BwGP/wcCBf/AAk3/wAKa/04Cm/9OApz/TgKd/04Cnv9OAp//TgKg/04Ctf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/04C0v/eAtP/TgLU/94C1f9OAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD/DQMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/AA07/wANP/8ADUP/AA1H/wANS/8ADU//AA2j/wANp/8ADav/AA/X/6AP9/04D/v/eBDn/TgQ6/94EO/9OBDz/3gQ9/04EPv/eBD//TgRA/94EQf9OBEL/3gRD/04ERP/eBEX/TgRG/94ER/9OBEj/3gRJ/04ESv/eBEv/TgRM/94ETf9OBE7/3gRP/04EUP/eBFL/6wRU/+sEVv/rBFj/6wRa/+sEXP/rBF7/6wRg/+sEZv/rBGj/6wRq/+sEbP/rBG7/6wRw/+sEcv/rBHT/6wR2/+sEeP/rBHr/6wR8/+sEfv/qBID/6gSC/+oEhP/qBIb/6gSI/+oEiv/qBIz/6ASO/+gEkP/oBLT/TgS1/94Et//rBLv/6wS//+oExP/rBMb/6wTaABQE3v/oBOD/6AACACgAlgCWABYAsQCxAA0AsgCyABcAswCzAAIAtAC0AAMAvQC9AAgAwQDBAAcAxwDHABUCBQIFABICBgIGAAkCBwIHAAUDoQOhAAMDogOiAAYDowOkAAEDpQOlAAIDpgOmAAQDqQOpAAMDqgOqAAsDqwOrAAYDrAOsABEDrQOuAAEDrwOvAA4DsAOxAAEDsgOyAAIDswOzAA8DtAO0ABADtQO1AAQDtgO2AAwDtwO3AAEDuAO4AAQDuwO7AAcDvwO/AAoDwQPBAAgDxQPFAAoE5QTlAAIE5gTmAAUE6gTqAAkE7QTtAAUE8wTzABME+AT4ABQAAgAyAAYABgABAAsACwABABAAEAACABEAEQADABIAEgACALIAsgATALMAswAHALQAtAAGALsAuwAEAL0AvQAMAMEAwQALAMgAyQAEAMsAywAFAYEBggADAYQBhQABAYYBhgACAYcBiQABAYoBigACAY4BjwACAgUCBQARAgYCBgANAgcCBwAJApQClAADA6EDoQAGA6UDpQAHA6YDpgAIA6kDqQAGA6wDrAAQA7IDsgAHA7UDtQAIA7YDtgAPA7gDuAAIA7kDuQAEA7sDuwALA70DvQAFA78DvwAOA8EDwQAMA8QDxAAFA8UDxQAOA8YDxgAFA/YD9wABA/oD+gABBKcEpwADBOYE5gAJBOoE6gANBOsE6wAKBO0E7QAJBPkE+QAKBPoE+gASBPwE/AAKAAEAhgAGAAsAlgCyANQA1QDXANoA3ADdAN4A4ADhAOIA4wDkAOUA5gDsAO4A9wD8AP4A/wEEAQUBCgENARgBGQEaAS4BLwEwATMBNAE1ATcBOQE7AUMBRAFUAVYBWAFcAV0BXgGEAYUBhwGIAYkCBQIZAigCKQIqA8gDyQPLA8wDzQPOA88D0APRA9ID0wPUA9YD1wPYA9oD2wPcA90D3gPfA+ED4gPjA+QD5QPmA+cD7QP2A/cD+gP/BAEEBQQGBAsEDAQNBA4EDwQQBBEEEgQTBBQEFQQWBBkEGgQcBB0EHgQfBCYEJwQrBC0ELgQvBDAEMQQyBDMEkgSWBJcEmgScBJ0EnwShBQMFBQUMBRAAAgBrAAYABgABAAsACwABAJYAlgAcALIAsgAdANQA1QAJANoA2gADAN4A3gAKAOQA5AAJAOYA5gAJAOwA7AALAO4A7gAEAPcA9wAMAPwA/AANAP4A/gANAP8A/wAMAQQBBQANAQoBCgANAQ0BDQAPARgBGAAQARkBGQAWARoBGgACAS4BLgAMAS8BLwAIATABMAALATMBMwADATQBNAAEATUBNQAFATcBNwAFATkBOQAFAUMBQwADAUQBRAAEAVgBWAARAVwBXAALAV0BXQADAV4BXgAEAYQBhQABAYcBiQABAgUCBQAYAhkCGQAHAigCKgAHA8gDyAAOA8kDyQAIA80DzQAeA84DzwAFA9AD0AAKA9ED0QAPA9ID0gAfA9MD0wAIA9QD1AAOA9gD2AARA9oD2gAgA9sD2wATA9wD3AAUA90D3QADA94D3gASA98D3wAGA+ED4QAQA+ID4gAMA+MD4wAVA+QD5AACA+UD5QAEA+YD5gAGA+cD5wALA+0D7QACA/YD9wABA/oD+gABA/8D/wAOBAEEAQAGBAUEBQAWBAYEBgACBAsECwATBAwEDAAVBA0EDQAXBA4EDgACBBAEEAADBBEEEQAEBBMEEwAPBBQEFAASBBUEFQAPBBYEFgASBBkEGQAOBBoEGgAGBBwEHQAGBB4EHgADBB8EHwAEBCYEJgARBCcEJwAQBCsEKwAQBC0ELQAMBC4ELgAKBC8ELwACBDAEMAAKBDEEMQACBDIEMgAKBDMEMwACBJIEkgAUBJYElgAIBJcElwALBJoEmgAhBJwEnAAJBJ0EnQAIBJ8EnwAFBKEEoQAXBQMFAwAHBQUFBQAZBQwFDAAaBRAFEAAbAAIAWgAGAAYAAAALAAsAAQAlACkAAgAsADQABwA4AD4AEABFAEcAFwBJAEkAGgBMAEwAGwBRAFQAHABWAFYAIABaAFoAIQBcAF4AIgCKAIoAJQCWAJYAJgCyALIAJwGEAYUAKAGHAYkAKgHyAfIALQH3AfcALgH6AfsALwIFAgUAMQJKAkoAMgJNAk0AMwJfAl8ANAJhAmIANQKVApYANwKYApgAOQKaAsAAOgLFAsoAYQLPAt8AZwLhAuoAeALzAvUAggL3AvcAhQL5AvkAhgL7AvsAhwL9Av0AiAMAAwAAiQMCAwIAigMEAwQAiwMGAwYAjAMIAwgAjQMKAwoAjgMMAxgAjwMaAxoAnAMcAxwAnQMeAx4AngMpAykAnwMrAysAoAMtAy0AoQMvAy8AogMxAzEAowMzAzMApAM1AzUApQM3AzcApgM5AzkApwM7AzsAqAM9A0UAqQNKA1MAsgNeA2IAvANoA2oAwQNvA28AxAOAA4QAxQOIA4oAygOTA5MAzQPuA+4AzgPwA/AAzwPyA/IA0AP0A/cA0QP6A/4A1QQ5BGEA2gRjBGMBAwRlBHIBBAR6BHoBEgR9BH0BEwR/BH8BFASLBJABFQSyBLYBGwS4BLgBIAS6BLsBIQS9BL0BIwTBBMMBJATFBMUBJwTHBMkBKATLBMsBKwTNBM0BLATPBNUBLQTXBNcBNATaBNoBNQTcBOEBNgTjBOQBPAACAKAABgAGAAQACwALAAQAEAAQAAgAEQARAAsAEgASAAgAsgCyABsA0gDSAAoA0wDTAAMA1ADUAA0A1gDWAAoA2gDaAAYA3QDdAA0A3gDeAA4A4QDhABEA7ADsAAEA7gDuAAcA8ADxAAEA8gDyABIA8wD1AAEA9wD3AAIA+AD4AAEA+QD5ABQA+gD7AAEA/gD+AAEBAAEAAAEBAwEDAAIBBAEEABIBBQEFAAEBCAEIAAMBDQENABABFwEXAAMBGAEYABMBGQEZABcBGgEaAAUBGwEbAAMBHQEdAAMBHgEeAAIBHwEfAAMBIQEhAAMBIgEiAAIBKwErAAEBMwEzAAYBNAE0AAcBNgE2AAEBOQE5AAoBPAE8AAEBPgE+AAEBQQFBAAMBQgFCAAIBQwFDAAYBRAFEAAcBRQFFAAoBRwFHABEBSAFIABQBUAFQAA0BUQFRABIBUwFTAAEBVQFVAAEBVwFXAAEBXAFcAAEBXQFdAAYBXgFeAAcBYAFhAAIBZgFmAA0BagFqAAMBawFrAAIBbwFvAA0BcAFwABIBgQGCAAsBhAGFAAQBhgGGAAgBhwGJAAQBigGKAAgBjgGPAAgCBQIFABkCDgIOAAwCDwIPAAkCEgISAAwCFgIWAA8CJwInAA8CKgIqAAwCKwIrAAkCLAIsABYCLQItAA8CLgIuAAwCNAI0AAkClAKUAAsDzQPNABwD0APQAA4D0QPRABAD2APYAAMD2wPbAAMD3APcAAoD3QPdAAYD3gPeABUD3wPfAAID4APgAAED4QPhABMD4gPiAAED4wPjAAID5APkAAUD5QPlAAcD5gPmAAID5wPnAAED6APoAB0D7APsAAED7QPtAAUD9gP3AAQD+gP6AAQEAQQBAAIEAgQCAAEEBQQFABcEBgQGAAUEBwQHAAIECAQIAAMECwQLAAMEDAQMAAIEDQQNABgEDgQOAAUEEAQQAAYEEQQRAAcEEwQTABAEFAQUABUEFQQVABAEFgQWABUEGgQaAAIEHAQdAAIEHgQeAAYEHwQfAAcEIwQjAAEEJQQlAAEEJgQmAAMEJwQnABMEKAQoAAMEKQQpAAIEKgQqAAMEKwQrABMELgQuAA4ELwQvAAUEMAQwAA4EMQQxAAUEMgQyAA4EMwQzAAUENAQ0ABEENQQ1ABQENwQ3AAEEOAQ4AAIEkgSSAAoElASUABEElQSVABQElwSXAAEEoQShABgEpwSnAAsFBQUFABoFDAUMAAkFDwUPAAkFEAUQAAwFEQURAA8FFAUUAAkFFQUVABYAAgDsAAYABgAMAAsACwAMACUAJQACACYAJgAbACcAJwAOACkAKQAEACwALQABAC4ALgAHAC8ALwAYADAAMAAPADEAMgABADQANAAcADgAOAAQADkAOQAHADoAOgAZADsAOwARADwAPAAeAD0APQANAD4APgAUAEUARQADAEYARgAVAEcARwASAEkASQAFAEwATAAIAFEAUgAIAFMAUwAGAFQAVAAVAFYAVgATAFoAWgALAFwAXAAiAF0AXQALAF4AXgAXAIoAigAVAJYAlgAgALIAsgAhAYQBhQAMAYcBiQAMAfIB8gAaAfcB9wAJAfoB+gAWAfsB+wAdAgUCBQAfAkoCSgAJAk0CTQAKAl8CXwAOApgCmAAQApoCoAACAqECoQAOAqICpQAEAqYCqgABArACswAHArQCtAANArUCuwADArwCvAASAr0CwAAFAsUCxQAIAsYCygAGAs8C0AALAtEC0QACAtIC0gADAtMC0wACAtQC1AADAtUC1QACAtYC1gADAtcC1wAOAtgC2AASAtkC2QAOAtoC2gASAtsC2wAOAtwC3AASAt0C3QAOAt4C3gASAuEC4QAEAuIC4gAFAuMC4wAEAuQC5AAFAuUC5QAEAuYC5gAFAucC5wAEAugC6AAFAukC6QAEAuoC6gAFAvMC8wABAvQC9AAIAvUC9QABAvcC9wABAvkC+QABAvsC+wABAv0C/QABAwADAAAHAwIDAgAYAwQDBAAPAwYDBgAPAwgDCAAPAwoDCgAPAwwDDAABAw0DDQAIAw4DDgABAw8DDwAIAxADEAABAxEDEgAIAxQDFAAGAxYDFgAGAxgDGAAGAxoDGgATAxwDHAATAx4DHgATAykDKQAQAysDKwAQAy0DLQAQAy8DLwAHAzEDMQAHAzMDMwAHAzUDNQAHAzcDNwAHAzkDOQAHAzsDOwARAz0DPQANAz4DPgALAz8DPwANA0ADQAAUA0EDQQAXA0IDQgAUA0MDQwAXA0QDRAAUA0UDRQAXA0oDSwAJA0wDTAAaA00DUwAKA14DYgAJA2gDagAKA28DbwAJA4ADgAAdA4EDhAAWA4gDigAJA5MDkwAaA+4D7gARA/AD8AARA/ID8gARA/QD9AANA/UD9QALA/YD9wAMA/oD+gAMA/sD+wABA/wD/AAIA/0D/QACA/4D/gADBDkEOQACBDoEOgADBDsEOwACBDwEPAADBD0EPQACBD4EPgADBD8EPwACBEAEQAADBEEEQQACBEIEQgADBEMEQwACBEQERAADBEUERQACBEYERgADBEcERwACBEgESAADBEkESQACBEoESgADBEsESwACBEwETAADBE0ETQACBE4ETgADBE8ETwACBFAEUAADBFEEUQAEBFIEUgAFBFMEUwAEBFQEVAAFBFUEVQAEBFYEVgAFBFcEVwAEBFgEWAAFBFkEWQAEBFoEWgAFBFsEWwAEBFwEXAAFBF0EXQAEBF4EXgAFBF8EXwAEBGAEYAAFBGEEYQABBGMEYwABBGYEZgAGBGgEaAAGBGoEagAGBGwEbAAGBG4EbgAGBHAEcAAGBHIEcgAGBHoEegAGBH0EfQAHBH8EfwAHBIsEiwANBIwEjAALBI0EjQANBI4EjgALBI8EjwANBJAEkAALBLIEsgABBLMEswAIBLQEtAACBLUEtQADBLYEtgAEBLgEuAABBLsEuwAGBL0EvQATBMEEwQAbBMIEwgAVBMcExwABBMgEyAAIBMkEyQAYBMsEywAYBM0EzQAPBM8EzwABBNAE0AAIBNEE0QABBNIE0gAIBNQE1AAcBNUE1QAVBNcE1wATBNoE2gAQBNwE3AAHBN0E3QAZBN4E3gALBN8E3wAZBOAE4AALBOEE4QARBOME4wAUBOQE5AAXAAIBCQAGAAYADQALAAsADQAQABAAEgARABEAFQASABIAEgAlACUAAwAnACcAAQArACsAAQAuAC4AGgAzADMAAQA1ADUAAQA3ADcAEAA4ADgAEwA5ADkACAA6ADoAGQA7ADsAEQA8ADwAHQA9AD0ADgA+AD4AFABFAEUABABHAEkAAgBLAEsAAgBRAFIACQBTAFMABwBUAFQACQBVAFUAAgBXAFcADwBZAFkABgBaAFoADABcAFwAIQBdAF0ADABeAF4AFwCDAIMAAQCTAJMAAQCUAJQAAgCYAJgAAQCZAJkAAgCbAJsABgCyALIAIAGBAYIAFQGEAYUADQGGAYYAEgGHAYkADQGKAYoAEgGOAY8AEgHbAdsADwHtAe0AGAHuAe4AHgHvAe8AGwHxAfEACgHyAfIAHAHzAfMAFgH1AfUABQH3AfcABQH/Af8ABQIFAgUAHwJLAksABQJNAk0ACwJfAmAAAQJiAmMAAQKUApQAFQKaAqAAAwKhAqEAAQKrAq8AAQKwArMACAK0ArQADgK1ArsABAK8AsAAAgLFAsUACQLGAsoABwLLAs4ABgLPAtAADALRAtEAAwLSAtIABALTAtMAAwLUAtQABALVAtUAAwLWAtYABALXAtcAAQLYAtgAAgLZAtkAAQLaAtoAAgLbAtsAAQLcAtwAAgLdAt0AAQLeAt4AAgLgAuAAAgLiAuIAAgLkAuQAAgLmAuYAAgLoAugAAgLqAuoAAgLrAusAAQLsAuwAAgLtAu0AAQLuAu4AAgLvAu8AAQLwAvAAAgLxAvEAAQLyAvIAAgMAAwAAGgMNAw0ACQMPAw8ACQMRAxIACQMTAxMAAQMUAxQABwMVAxUAAQMWAxYABwMXAxcAAQMYAxgABwMfAx8AEAMgAyAADwMhAyEAEAMiAyIADwMjAyMAEAMkAyQADwMlAyUAEAMmAyYADwMnAycAEAMoAygADwMpAykAEwMrAysAEwMtAy0AEwMvAy8ACAMwAzAABgMxAzEACAMyAzIABgMzAzMACAM0AzQABgM1AzUACAM2AzYABgM3AzcACAM4AzgABgM5AzkACAM6AzoABgM7AzsAEQM9Az0ADgM+Az4ADAM/Az8ADgNAA0AAFANBA0EAFwNCA0IAFANDA0MAFwNEA0QAFANFA0UAFwNIA0gAAQNNA1MACwNUA1QABQNeA2IABQNjA2YACgNnA2cAGANoA2oACwNrA24ABQN1A3gABQOIA4oABQOOA5EAFgOTA5MAHAOVA5oACgObA5sAGwOcA50AGAPuA+4AEQPwA/AAEQPyA/IAEQP0A/QADgP1A/UADAP2A/cADQP6A/oADQP8A/wACQP9A/0AAwP+A/4ABAQ5BDkAAwQ6BDoABAQ7BDsAAwQ8BDwABAQ9BD0AAwQ+BD4ABAQ/BD8AAwRABEAABARBBEEAAwRCBEIABARDBEMAAwREBEQABARFBEUAAwRGBEYABARHBEcAAwRIBEgABARJBEkAAwRKBEoABARLBEsAAwRMBEwABARNBE0AAwROBE4ABARPBE8AAwRQBFAABARSBFIAAgRUBFQAAgRWBFYAAgRYBFgAAgRaBFoAAgRcBFwAAgReBF4AAgRgBGAAAgRlBGUAAQRmBGYABwRnBGcAAQRoBGgABwRpBGkAAQRqBGoABwRrBGsAAQRsBGwABwRtBG0AAQRuBG4ABwRvBG8AAQRwBHAABwRxBHEAAQRyBHIABwRzBHMAAQR0BHQAAgR1BHUAAQR2BHYAAgR3BHcAAQR4BHgAAgR5BHkAAQR6BHoABwR7BHsAAQR8BHwAAgR9BH0ACAR+BH4ABgR/BH8ACASABIAABgSCBIIABgSEBIQABgSGBIYABgSIBIgABgSKBIoABgSLBIsADgSMBIwADASNBI0ADgSOBI4ADASPBI8ADgSQBJAADASnBKcAFQSzBLMACQS0BLQAAwS1BLUABAS3BLcAAgS6BLoAAQS7BLsABwS/BL8ABgTEBMQAAgTGBMYAAgTQBNAACQTSBNIACQTTBNMAAQTYBNgAEATZBNkADwTaBNoAEwTcBNwACATdBN0AGQTeBN4ADATfBN8AGQTgBOAADAThBOEAEQTjBOMAFATkBOQAFwABAAAACgBkACQABERGTFQA/mN5cmwA/mdyZWsA/mxhdG4BAgAfARYBHgEmAS4BNgE+AT4BRgFOAVYBXgFmAW4BdgF+AYYBjgGWAZ4BpgGuAbYBvgHGAc4B1gHeAdYB3gHmAe4AG2Myc2MBtmNjbXACQGRsaWcBvGRub20BwmZyYWMCUGxpZ2EByGxpZ2ECWmxpZ2ECSGxudW0BzmxvY2wB1GxvY2wB2mxvY2wB4GxvY2wB5m51bXIB7G9udW0B8nBudW0B+HNtY3AB/nNzMDECBHNzMDICCnNzMDMCEHNzMDQCFnNzMDUCHHNzMDYCInNzMDcCKHN1YnMCLnN1cHMCNHRudW0COgHCAAADxgAHQVpFIAP2Q1JUIAP2RlJBIAQmTU9MIARYTkFWIASKUk9NIAS8VFJLIAP2AAEAAAABBw4AAQAAAAEFKgAGAAAAAQJKAAEAAAABAgwABAAAAAEEoAABAAAAAQGWAAEAAAABAgYAAQAAAAEBjAAEAAAAAQGoAAQAAAABAagABAAAAAEBvAABAAAAAQFyAAEAAAABAXAAAQAAAAEBbgABAAAAAQGIAAEAAAABAYoAAQAAAAECQgABAAAAAQGQAAEAAAABAlAAAQAAAAECdgABAAAAAQKcAAEAAAABAsIAAQAAAAEBLAAGAAAAAQGQAAEAAAABAbQAAQAAAAEBxgABAAAAAQHYAAEAAAABAQoAAAABAAAAAAABAAsAAAABABsAAAABAAoAAAABABYAAAABAAgAAAABAAUAAAABAAcAAAABAAYAAAABABwAAAABABMAAAABABQAAAABAAEAAAABAAwAAAABAA0AAAABAA4AAAABAA8AAAABABAAAAABABEAAAABABIAAAABAB4AAAABAB0AAAABABUAAAACAAIABAAAAAIACQAKAAAAAwAXABgAGgAAAAQACQAKAAkACgAA//8AFAAAAAEAAgADAAQACAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAQdoAAIAAQdEAAEAAQdEAfgAAQdEAYkAAQdEAg8AAQdEAYEAAQdkAY4AAQ46AAEHRgABDjIAAQdEAAIHWAACAkYCRwACB04AAgJIAkkAAQ4uAAMHLgcyBzYAAgdAAAMCiAKJAokAAgdWAAYCewJ5AnwCfQJ6BSgAAgc0AAYFIgUjBSQFJQUmBScAAwABB0IAAQb+AAAAAQAAABkAAgcgBwgHggdGAAcAAAcMBwwHDAcMBwwHDAACBtIACgHhAeAB3wI5AjoCOwI8Aj0CPgI/AAIGuAAKAlgAegBzAHQCWQJaAlsCXAJdAl4AAgaeAAoBlQB6AHMAdAGWAZcBmAGZAZoBmwACBu4ADAJfAmECYAJiAmMCgQKCAoMChAKFAoYChwACByQAFAJ0AngCcgJvAnECcAJ1AnMCdwJ2AmkCZAJlAmYCZwJoABoAHAJtAn8AAga+ABQErwKLBKgEqQSqBKsErAKABK0ErgJmAmgCZwJlAmkCfwAaAm0AHAJkAAIHDAAUAnUCdwJ4AnICbwJxAnACcwJ2AnQAGwAVABYAFwAYABkAGgAcAB0AFAACBrYAFASsBK0CiwSoBKkEqgSrAoAErgAXABkAGAAWABsAFAAaAB0AHAAVBK8AAP//ABUAAAABAAIAAwAEAAcACAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAP//ABUAAAABAAIAAwAEAAUACAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAP//ABYAAAABAAIAAwAEAAYACAAJAA0ADgAPABAAEQASABMAFAAVABYAFwAYABkAGgAA//8AFgAAAAEAAgADAAQABgAIAAoADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAWAAAAAQACAAMABAAGAAgACwANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAP//ABYAAAABAAIAAwAEAAYACAAMAA0ADgAPABAAEQASABMAFAAVABYAFwAYABkAGgABD5IANgbyBbQFuAXwBwAF9gW8Bw4GMgY6BfwGhgdUBcAGcgZCBgIHZAYIBkoGkgYOBxwFxAXIBhQHKgXMBdAF1AZSBloGGgaeBzgF2AZ8BmIGIAdGBiYGagaqBiwF3AXgBeQF6Aa2BsIGzgbaBuYF7AACBwIA6wKMAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AJ+Ao4DSwKQAo8DSgH9Ao0CkgJsBO0E7gIEAgUE7wTwBPECBgTyAgcCCAIJBPcCCgIKBPgE+QILAgwCDQIUBQYFBwIVAhYCFwIYAhkCGgUKBQsFDQUQBRkCHAIdAh4CHwIgAiECIgIjAiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-MediumItalic.ttf":"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BGH/0QQI//YGcP+qBHwACgTmAAoFSgBgBcoAPgQ/AGwEn/+iBmUAYgRqAFsEagAJBdIAOwSpADIEJgAOBJwANARGAAcD1gAeB+8ACQTO/9oC3v/1At7/8wLeAAsC3gAWAt4AJQLeAAUC3gA0A5kAkQKaAQgDwgAJBBr/hwSSADsFGQArBQAAKwQQABQFDQArBAkAFARXAAkEXgA5BD8ACQR2/5oB7wDoA4UBBAAA/ScD2QDcA9sAFgPsANwD3ADbA58ACQOBAQQDgQEFAugAiQLoAGYC6AB+AugAiQLoAJgC6AB4AugApwVKAGwFcwBrBVUAKwWsAG4FrgBtBAkAqwRfABwEN/+BBJf/0QRJ/9gEDgAxA4UBBQGt/7gGZgA7BIsARQH8/wAEc/+pBHP/2QRz/8kEcwATBHMATARzACIEcwBXBHMAMQRzADcEcwD4Ah//BAIf/wQCEQAjAhH/fAIRACMEPwAJBMEATAQQAFYEZgAQBB4ANgRyADcEbgAtBHoAMgRv/8gEdwA2BCgAOgRmAC4EOP+fA5sAqwTmACQDp//vBhX/fgPoAAkEmf/bBOcAIgS2AAkB+AAAAqMAQAUvACAFLwAgBG4AKwS6AJ0Clv/lBSX/owUl/6MFJf+jBSX/owUl/6MFJf+jBSX/owURAF8EYwAmBGMAJgRjACYEYwAmAjIANwIyADcCMgA3AjIANwWBACYFWQBiBVkAYgVZAGIFWQBiBVkAYgUUAFgFFABYBRQAWAUUAFgEvQChBC8AHAQvABwELwAcBC8AHAQvABwELwAcBC8AHAQNADcEKAA6BCgAOgQoADoEKAA6AgcAIwIHACMCBwAjAgcAIwRSAA0EZwA4BGcAOARnADgEZwA4BGcAOARRAEoEUQBKBFEASgRRAEoDzf+8A83/vAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAURAF8EDQA3BREAXwQNADcFEQBfBA0ANwURAF8EDQA3BREAJgT1ADgEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BUkAZgRm//kFSQBmBGb/+QVJAGYEZv/5BUkAZgRm//kFgQAmBFAADQIyADcCBwATAjIANwIHACMCMgA3AgcAIwIy/44B+v91AjIANwaCADcD7AAgBE8ABAIV/wQE5wAmBAwAEQQxACYB+gAgBDEAJgH6/6YEMQAmApAAIAQxACYC1gAgBYEAJgRSAA0FgQAmBFIADQWBACYEUgANBFIADQVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOATiACYCvgARBOIAJgK+/58E4gAmAr4AEQS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEugCdApYAPwS6AJ0ClgA/BLoAnQK+AD8FFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoG1QC1BcIAeQS9AKEDzf+8BL0AoQSu/+UD6P/mBK7/5QPo/+YErv/lA+j/5gdF/40GjgAOBVcAFgRjACoEV/+WBFf/lgQeAGMEdv+aBHb/mgR2/5oEdv+aBHb/mgR2/5oEdv+aBF4AOQPCAAkDwgAJA8IACQPCAAkB7wAaAe8AGgHvABoB7wAaBLYACQSZADsEmQA7BJkAOwSZADsEmQA7BGYAOARmADgEZgA4BGYAOAQeAGwEdv+aBHb/mgR2/5oEXgA5BF4AOQReADkEXgA5BFcACQPCAAkDwgAJA8IACQPCAAkDwgAJBIMAPwSDAD8EgwA/BIMAPwS3AAkB7wAOAe8AGgHvABoB+f+XAe8AGgO5//MEPAAJA5sACQObAAkDmwAJA5sACQS2AAkEtgAJBLYACQSZADsEmQA7BJkAOwRDAAkEQwAJBEMACQQWAA8EFgAPBBYADwQWAA8EHgBjBB4AYwQeAGMEZgA4BGYAOARmADgEZgA4BGYAOARmADgF2gCLBB4AbAQeAGwEC//WBAv/1gQL/9YFJf+jBMf/ugXl/8IClv/GBW0AJgUh/7gFRAAeApAACQUl/6ME5gAmBGMAJgSu/+UFgQAmAjIANwTnACYGyQAmBYEAJgVZAGIE9AAmBLoAnQS9AKEE5v/AAjIANwS9AKEEYQA7BEMAKARjABECkABmBDwAVwR3ACEEZwA4BJ3/3gPaAGQEOP+fApAARAQ8AFcEZwA4BDwAVwZhAFIEYwAmBFIAKwS0ACYCMgA3AjIANwRPAAQFAAArBOcAJgTkAJkFJf+jBOYAJgRSACsEYwAmBXoAJQbJACYFgQAmBVkAYgWCACsE9AAmBREAXwS6AJ0E5v/ABC8AHAQoADoEbwAXBGcAOARd/8gEDQA3A83/vAPo/7oEKAA6A0EAFgP/ABsB+gAgAgcAIwHy/wIESgAiA83/vAbVALUFwgB5BtUAtQXCAHkG1QC1BcIAeQS9AKEDzf+8AUwAkQJ6AJ0EGwAzAhX/BAGtAI0GyQAmBsMADwUl/6MELwAcBGMAJgV6ACUEKAA6BG8AFwWFAHYFnwA/BPEAqAPuAHUINAA4CSYAYgS2AB8D+AAXBREAXwQNADcEvQChA+0AdQIyADcHbv+kBlX/sAIyADcFJf+jBC8AHAUl/6MELwAcB0X/jQaOAA4EYwAmBCgAOgViAEsEGQA0BBkANAdu/6QGVf+wBLYAHwP4ABcFegAlBG8AFwV6ACUEbwAXBVkAYgRnADgFUABhBGUANAVQAGEEZQA0BSAASAQZACAE5ACZA83/vATkAJkDzf+8BOQAmQPN/7wFWgDEBEMAbQbFACwGSAAjBF8AOAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHARjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoCMgA3AgcAIwIy//8B+v/jBVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BRQAWARRAEoFFABYBFEASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoEvQChA83/vAS9AKEDzf+8BL0AoQPN/7wEff/0BLoAnQPbAFQFWgDEBEMAbQRSACsDQQAWBewAVQSg//IEUAANBNsAJATbACQEUgAAA0H/xwUUAD8EJAAoBL0AoQPtAFIE5v/AA+j/ugRDACgERv/CBgQAfARpAA0EaQAmBGkADQRpAFgEfQBxBJEASwR9AIwEkQBzBUkAZgRm//kFgQAmBFIADQUl/6MELwAcBGMAJgQoADoCMv/PAgf/gAVZAGIEZwA4BOIAJgK+AAwFFABYBFEASgTI/4UE5gAmBF0AEAURACYEXwA4BREAJgRfADgFgQAmBFAADQTnACYEDAARBOcAJgQMABEEMQAmAfr/4wbJACYGwwAPBYEAJgRSAA0FWQBiBPQAJgRd/8gE4gAmAr7/3QS0ACYD/wAbBLoAnQKWAD8FFABYBQMAmgPaAGQFAwCaA9oAZAbVALUFwgB5BK7/5QPo/+YFn/8BBHb/mgP+/6YE8/+uAiv/sQSj/9gEWv9lBMX/6gR2/5oEPwAJA8IACQQL/9YEtwAJAe8AGgQ8AAkF1wAJBLYACQSZADsESQAJBB4AYwQeAGwEO/+iAe8AGgQeAGwDwgAJA58ACQQWAA8B7wAaAe8AGgO5//MEPAAJBCsAdgR2/5oEPwAJA58ACQPCAAkEvAALBdcACQS3AAkEmQA7BLMACQRJAAkEXgA5BB4AYwQ7/6IEJQAOBLcACQReADkEHgBsBdIAOwS8AAsEKwB2BXsAQQWoABoGFf9+BJn/2wQWAA8F2gCLBdoAiwXaAIsEHgBsBSX/owQvABwEYwAmBCgAOgR2/5oDwgAJAgf/4wAAAAIAAAADAAAAFAADAAEAAAAUAAQGbgAAAPQAgAAGAHQAAAACAA0AfgCgAKwArQC/AMYAzwDmAO8A/gEPAREBJQEnATABUwFfAWcBfgF/AY8BkgGhAbAB8AH/AhsCNwJZArwCxwLJAt0C8wMBAwMDCQMPAyMDigOMA5IDoQOwA7kDyQPOA9ID1gQlBC8ERQRPBGIEbwR5BIYEnwSpBLEEugTOBNcE4QT1BQEFEAUTHgEePx6FHvEe8x75H00gCSALIBEgFSAeICIgJyAwIDMgOiA8IEQgcCCOIKQgqiCsILEguiC9IQUhEyEWISIhJiEuIV4iAiIGIg8iEiIaIh4iKyJIImAiZSXK7gL2w/sE/v///f//AAAAAAACAA0AIACgAKEArQCuAMAAxwDQAOcA8AD/ARABEgEmASgBMQFUAWABaAF/AY8BkgGgAa8B8AH6AhgCNwJZArwCxgLJAtgC8wMAAwMDCQMPAyMDhAOMA44DkwOjA7EDugPKA9ED1gQABCYEMARGBFAEYwRwBHoEiASgBKoEsgS7BM8E2ATiBPYFAgURHgAePh6AHqAe8h70H00gACAKIBAgEyAXICAgJSAwIDIgOSA8IEQgcCB0IKMgpiCrILEguSC8IQUhEyEWISIhJiEuIVsiAiIGIg8iESIaIh4iKyJIImAiZCXK7gH2w/sB/v///P//AAEAAP/2/+QB8//CAef/wQAAAdoAAAHVAAAB0QAAAc8AAAHNAAABxQAAAcf/Fv8H/wX++P7rAgkAAAAA/mX+RAE+/dj91/3J/bT9qP2n/aL9nf2KAAAAGQAYAAAAAP0KAAD/+fz+/PsAAPy6AAD8sgAA/KcAAPyhAAD8mQAA/JEAAP9DAAD/QAAA/F4AAOX95b3lbuWZ5QLll+WY4XLhc+FvAADhbOFr4WnhYePE4VnjvOFQ4SXhIgAA4QwAAOEH4QDg/+C44KvgqeCe35Tgk+Bn38TerN+437ffsN+t36Hfhd9u32vcBxPRCxEG1QLdAeEAAQAAAAAAAAAAAAAAAAAAAAAA5AAAAO4AAAEYAAABMgAAATIAAAEyAAABdAAAAAAAAAAAAAAAAAAAAXQBfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFsAAAAAAF0AZAAAAGoAAAAAAAAAcAAAAIIAAACMAAAAlIAAAJiAAACjgAAApoAAAK+AAACzgAAAuIAAAAAAAAAAAAAAAAAAAAAAAAAAALSAAAAAAAAAAAAAAAAAAAAAAAAAAACwgAAAsIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACmgKbApwCnQKeAp8AgQKWAqoCqwKsAq0CrgKvAIIAgwKwArECsgKzArQAhACFArUCtgK3ArgCuQK6AIYAhwLFAsYCxwLIAskCygCIAIkCywLMAs0CzgLPAIoClQCLAIwClwCNAv4C/wMAAwEDAgMDAI4DBAMFAwYDBwMIAwkDCgMLAI8AkAMMAw0DDgMPAxADEQMSAJEAkgMTAxQDFQMWAxcDGACTAJQDJwMoAysDLAMtAy4CmAKZAqACuwNGA0cDSANJAyUDJgMpAyoArgCvA6EAsAOiA6MDpACxALIDqwOsA60AswOuA68AtAOwA7EAtQOyALYDswC3A7QDtQC4A7YAuQC6A7cDuAO5A7oDuwO8A70DvgDEA8ADwQDFA78AxgDHAMgAyQDKAMsAzAPCAM0AzgP/A8gA0gPJANMDygPLA8wDzQDUANUA1gPPBAAD0ADXA9EA2APSA9MA2QPUANoA2wDcA9UDzgDdA9YD1wPYA9kD2gPbA9wA3gDfA90D3gDqAOsA7ADtA98A7gDvAPAD4ADxAPIA8wD0A+EA9QPiA+MA9gPkAPcD5QQBA+YBAgPnAQMD6APpA+oD6wEEAQUBBgPsBAID7QEHAQgBCQScBAMEBAEXARgBGQEaBAUEBgQIBAcBKAEpASoBKwSbASwBLQEuAS8BMASdBJ4BMQEyATMBNAQJBAoBNQE2ATcBOASfBKAECwQMBJIEkwQNBA4EoQSiBJoBTAFNBJgEmQQPBBAEEQFOAU8BUAFRAVIBUwFUAVUElASVAVYBVwFYBBwEGwQdBB4EHwQgBCEBWQFaBJYElwQ2BDcBWwFcAV0BXgSjBKQBXwQ4BKUBbwFwAYEBggSnBKYBsQSRAbcAAEBKmZiXloeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUVBPTk1MS0pJSEdGKB8QCgksAbELCkMjQ2UKLSwAsQoLQyNDCy0sAbAGQ7AHQ2UKLSywTysgsEBRWCFLUlhFRBshIVkbIyGwQLAEJUWwBCVFYWSKY1JYRUQbISFZWS0sALAHQ7AGQwstLEtTI0tRWlggRYpgRBshIVktLEtUWCBFimBEGyEhWS0sS1MjS1FaWDgbISFZLSxLVFg4GyEhWS0ssAJDVFiwRisbISEhIVktLLACQ1RYsEcrGyEhIVktLLACQ1RYsEgrGyEhISFZLSywAkNUWLBJKxshISFZLSwjILAAUIqKZLEAAyVUWLBAG7EBAyVUWLAFQ4tZsE8rWSOwYisjISNYZVktLLEIAAwhVGBDLSyxDAAMIVRgQy0sASBHsAJDILgQAGK4EABjVyO4AQBiuBAAY1daWLAgYGZZSC0ssQACJbACJbACJVO4ADUjeLACJbACJWCwIGMgILAGJSNiUFiKIbABYCMbICCwBiUjYlJYIyGwAWEbiiEjISBZWbj/wRxgsCBjIyEtLLECAEKxIwGIUbFAAYhTWli4EACwIIhUWLICAQJDYEJZsSQBiFFYuCAAsECIVFiyAgICQ2BCsSQBiFRYsgIgAkNgQgBLAUtSWLICCAJDYEJZG7hAALCAiFRYsgIEAkNgQlm4QACwgGO4AQCIVFiyAggCQ2BCWblAAAEAY7gCAIhUWLICEAJDYEJZsSYBiFFYuUAAAgBjuAQAiFRYsgJAAkNgQlm5QAAEAGO4CACIVFiyAoACQ2BCWbEoAYhRWLlAAAgAY7gQAIhUWLkAAgEAsAJDYEJZWVlZWVlZsQACQ1RYQAoFQAhACUAMAg0CG7EBAkNUWLIFQAi6AQAACQEAswwBDQEbsYACQ1JYsgVACLgBgLEJQBu4AQCwAkNSWLIFQAi6AYAACQFAG7gBgLACQ1JYsgVACLgCALEJQBuyBUAIugEAAAkBAFlZWbhAALCAiFW5QAACAGO4BACIVVpYswwADQEbswwADQFZWVlCQkJCQi0sRbECTisjsE8rILBAUVghS1FYsAIlRbEBTitgWRsjS1FYsAMlRSBkimOwQFNYsQJOK2AbIVkbIVlZRC0sILAAUCBYI2UbI1mxFBSKcEWwTysjsWEGJmAriliwBUOLWSNYZVkjEDotLLADJUljI0ZgsE8rI7AEJbAEJUmwAyVjViBgsGJgK7ADJSAQRopGYLAgY2E6LSywABaxAgMlsQEEJQE+AD6xAQIGDLAKI2VCsAsjQrECAyWxAQQlAT8AP7EBAgYMsAYjZUKwByNCsAEWsQACQ1RYRSNFIBhpimMjYiAgsEBQWGcbZllhsCBjsEAjYbAEI0IbsQQAQiEhWRgBLSwgRbEATitELSxLUbFATytQW1ggRbEBTisgiopEILFABCZhY2GxAU4rRCEbIyGKRbEBTisgiiNERFktLEtRsUBPK1BbWEUgirBAYWNgGyMhRVmxAU4rRC0sI0UgikUjYSBksEBRsAQlILAAUyOwQFFaWrFATytUWliKDGQjZCNTWLFAQIphIGNhGyBjWRuKWWOxAk4rYEQtLAEtLAAtLAWxCwpDI0NlCi0ssQoLQyNDCwItLLACJWNmsAIluCAAYmAjYi0ssAIlY7AgYGawAiW4IABiYCNiLSywAiVjZ7ACJbggAGJgI2ItLLACJWNmsCBgsAIluCAAYmAjYi0sI0qxAk4rLSwjSrEBTistLCOKSiNFZLACJWSwAiVhZLADQ1JYISBkWbECTisjsABQWGVZLSwjikojRWSwAiVksAIlYWSwA0NSWCEgZFmxAU4rI7AAUFhlWS0sILADJUqxAk4rihA7LSwgsAMlSrEBTiuKEDstLLADJbADJYqwZyuKEDstLLADJbADJYqwaCuKEDstLLADJUawAyVGYLAEJS6wBCWwBCWwBCYgsABQWCGwahuwbFkrsAMlRrADJUZgYbCAYiCKIBAjOiMgECM6LSywAyVHsAMlR2CwBSVHsIBjYbACJbAGJUljI7AFJUqwgGMgWGIbIVmwBCZGYIpGikZgsCBjYS0ssAQmsAQlsAQlsAQmsG4rIIogECM6IyAQIzotLCMgsAFUWCGwAiWxAk4rsIBQIGBZIGBgILABUVghIRsgsAVRWCEgZmGwQCNhsQADJVCwAyWwAyVQWlggsAMlYYpTWCGwAFkbIVkbsAdUWCBmYWUjIRshIbAAWVlZsQJOKy0ssAIlsAQlSrAAU1iwABuKiiOKsAFZsAQlRiBmYSCwBSawBiZJsAUmsAUmsHArI2FlsCBgIGZhsCBhZS0ssAIlRiCKILAAUFghsQJOKxtFIyFZYWWwAiUQOy0ssAQmILgCAGIguAIAY4ojYSCwXWArsAUlEYoSiiA5ili5AF0QALAEJmNWYCsjISAQIEYgsQJOKyNhGyMhIIogEEmxAk4rWTstLLkAXRAAsAklY1ZgK7AFJbAFJbAFJrBtK7FdByVgK7AFJbAFJbAFJbAFJbBvK7kAXRAAsAgmY1ZgKyCwAFJYsFArsAUlsAUlsAclsAclsAUlsHErsAIXOLAAUrACJbABUlpYsAQlsAYlSbADJbAFJUlgILBAUlghG7AAUlggsAJUWLAEJbAEJbAHJbAHJUmwAhc4G7AEJbAEJbAEJbAGJUmwAhc4WVlZWVkhISEhIS0suQBdEACwCyVjVmArsAclsAclsAYlsAYlsAwlsAwlsAklsAglsG4rsAQXOLAHJbAHJbAHJrBtK7AEJbAEJbAEJrBtK7BQK7AGJbAGJbADJbBxK7AFJbAFJbADJbACFzggsAYlsAYlsAUlsHErYLAGJbAGJbAEJWWwAhc4sAIlsAIlYCCwQFNYIbBAYSOwQGEjG7j/wFBYsEBgI7BAYCNZWbAIJbAIJbAEJrACFziwBSWwBSWKsAIXOCCwAFJYsAYlsAglSbADJbAFJUlgILBAUlghG7AAUliwBiWwBiWwBiWwBiWwCyWwCyVJsAQXOLAGJbAGJbAGJbAGJbAKJbAKJbAHJbBxK7AEFziwBCWwBCWwBSWwByWwBSWwcSuwAhc4G7AEJbAEJbj/wLACFzhZWVkhISEhISEhIS0ssAQlsAMlh7ADJbADJYogsABQWCGwZRuwaFkrZLAEJbAEJQawBCWwBCVJICBjsAMlIGNRsQADJVRbWCEhIyEHGyBjsAIlIGNhILBTK4pjsAUlsAUlh7AEJbAEJkqwAFBYZVmwBCYgAUYjAEawBSYgAUYjAEawABYAsAAjSAGwACNIACCwASNIsAIjSAEgsAEjSLACI0gjsgIAAQgjOLICAAEJIzixAgEHsAEWWS0sIxANDIpjI4pjYGS5QAAEAGNQWLAAOBs8WS0ssAYlsAklsAklsAcmsHYrI7AAVFgFGwRZsAQlsAYmsHcrsAUlsAUmsAUlsAUmsHYrsABUWAUbBFmwdystLLAHJbAKJbAKJbAIJrB2K4qwAFRYBRsEWbAFJbAHJrB3K7AGJbAGJrAGJbAGJrB2KwiwdystLLAHJbAKJbAKJbAIJrB2K4qKCLAEJbAGJrB3K7AFJbAFJrAFJbAFJrB2K7AAVFgFGwRZsHcrLSywCCWwCyWwCyWwCSawdiuwBCawBCYIsAUlsAcmsHcrsAYlsAYmsAYlsAYmsHYrCLB3Ky0sA7ADJbADJUqwBCWwAyVKArAFJbAFJkqwBSawBSZKsAQmY4qKY2EtLLFdDiVgK7AMJhGwBSYSsAolObAHJTmwCiWwCiWwCSWwfCuwAFCwCyWwCCWwCiWwfCuwAFBUWLAHJbALJYewBCWwBCULsAolELAJJcGwAiWwAiULsAclELAGJcEbsAclsAslsAsluP//sHYrsAQlsAQlC7AHJbAKJbB3K7AKJbAIJbAIJbj//7B2K7ACJbACJQuwCiWwByWwdytZsAolRrAKJUZgsAglRrAIJUZgsAYlsAYlC7AMJbAMJbAMJiCwAFBYIbBqG7BsWSuwBCWwBCULsAklsAklsAkmILAAUFghsGobsGxZKyOwCiVGsAolRmBhsCBjI7AIJUawCCVGYGGwIGOxAQwlVFgEGwVZsAomIBCwAyU6sAYmsAYmC7AHJiAQijqxAQcmVFgEGwVZsAUmIBCwAiU6iooLIyAQIzotLCOwAVRYuQAAQAAbuEAAsABZirABVFi5AABAABu4QACwAFmwfSstLIqKCA2KsAFUWLkAAEAAG7hAALAAWbB9Ky0sCLABVFi5AABAABu4QACwAFkNsH0rLSywBCawBCYIDbAEJrAEJggNsH0rLSwgAUYjAEawCkOwC0OKYyNiYS0ssAkrsAYlLrAFJX3FsAYlsAUlsAQlILAAUFghsGobsGxZK7AFJbAEJbADJSCwAFBYIbBqG7BsWSsYsAglsAclsAYlsAolsG8rsAYlsAUlsAQmILAAUFghsGYbsGhZK7AFJbAEJbAEJiCwAFBYIbBmG7BoWStUWH2wBCUQsAMlxbACJRCwASXFsAUmIbAFJiEbsAYmsAQlsAMlsAgmsG8rWbEAAkNUWH2wAiWwgiuwBSWwgisgIGlhsARDASNhsGBgIGlhsCBhILAIJrAIJoqwAhc4iophIGlhYbACFzgbISEhIVkYLSxLUrEBAkNTWlgjECABPAA8GyEhWS0sI7ACJbACJVNYILAEJVg8GzlZsAFguP/pHFkhISEtLLACJUewAiVHVIogIBARsAFgiiASsAFhsIUrLSywBCVHsAIlR1QjIBKwAWEjILAGJiAgEBGwAWCwBiawhSuKirCFKy0ssAJDVFgMAopLU7AEJktRWlgKOBsKISFZGyEhISFZLSywmCtYDAKKS1OwBCZLUVpYCjgbCiEhWRshISEhWS0sILACQ1SwASO4AGgjeCGxAAJDuABeI3khsAJDI7AgIFxYISEhsAC4AE0cWYqKIIogiiO4EABjVli4EABjVlghISGwAbgAMBxZGyFZsIBiIFxYISEhsAC4AB0cWSOwgGIgXFghISGwALgADBxZirABYbj/qxwjIS0sILACQ1SwASO4AIEjeCGxAAJDuAB3I3khsQACQ4qwICBcWCEhIbgAZxxZioogiiCKI7gQAGNWWLgQAGNWWLAEJrABW7AEJrAEJrAEJhshISEhuAA4sAAjHFkbIVmwBCYjsIBiIFxYilyKWiMhIyG4AB4cWYqwgGIgXFghISMhuAAOHFmwBCawAWG4/5McIyEtAABA/340fVV8Pv8fezv/H3o9/x95O0AfeDz/H3c8PR92NQcfdTr/H3Q6Zx9zOU8fcjn/H3E2/x9wOM0fbzj/H243Xh9tN80fbDf/H2s3LR9qNxgfaTT/H2gy/x9nMs0fZjP/H2Ux/x9kMP8fYzCrH2IwZx9hLv8fYC6AH18v/x9eL5MfXS3/H1ws/x9bK/8fWirNH1kq/x9YKg0fVyn/H1Yo/x9VJyQfVCctH1MlXh9SJf8fUSWrH1Am/x9PJoAfTiT/H00jKx9MI6sfSyP/H0ojVh9JIysfSCL/H0cg/x9GIHIfRSH/H0Qhch9DH/8fQh6TH0Ee/x9AHf8fPxz/Hz07k0DqHzw7NB86NQ4fOTZyHzg2Tx83NiIfNjWTHzMyQB8xMHIfLy5KHysqQB8nGQQfJiUoHyUzGxlcJBoSHyMFGhlcIhn/HyEgPR8gOBgWXB8YLR8eF/8fHRb/HxwWBx8bMxkcWxg0FhxbGjMZHFsXNBYcWxUZPhamWhMxElURMRBVElkQWQ00DFUFNARVDFkEWR8EXwQCDwR/BO8EAw9eDlULNApVBzQGVQExAFUOWQpZBll/BgEvBk8GbwYDPwZfBn8GAwBZLwABLwBvAO8AAwk0CFUDNAJVCFkCWR8CXwICDwJ/Au8CAwNAQAUBuAGQsFQrS7gH/1JLsAlQW7ABiLAlU7ABiLBAUVqwBoiwAFVaW1ixAQGOWYWNjQAdQkuwkFNYsgMAAB1CWbECAkNRWLEEA45Zc3QAKwArKytzdAArc3R1ACsAKwArKysrK3N0ACsAKysrACsAKysrASsBKwErASsBKwErKwArKwErKwErACsAKwErKysrKwErKwArKysrKysrASsrACsrKysrKysBKwArKysrKysrKysrKysrASsrACsrKysrKysrKysBKysrKysrKwArKysrKysrKysrKysrKysrKysrKysYAAAGAAAVBbAAFAWwABQEOgAUAAD/7AAA/+wAAP/s/mD/9QWwABUAAP/rAAAAvQDAAJ0AnQC6AJcAlwAnAMAAnQCGALwAqwC6AJoA0wCzAJkB4ACWALoAmgCpAQsAggCuAKAAjACVALkAqQAXAJMAmgB7AIsAoQDeAKAAjACdALYAJwDAAJ0ApACGAKIAqwC2AL8AugCCAI4AmgCiALIA0wCRAJkArQCzAL4ByQH9AJYAugBHAJgAnQCpAQsAggCZAJ8AqQCwAIEAhQCLAJQAqQC1ALoAFwBQAGMAeAB9AIMAiwCQAJgAogCuANQA3gEmAHsAiQCTAJ0ApQC0BI0AEAAAAAAAMgAyADIAMgAyAFwAfgC1ATQBwwI/AlUChgK3AuQDAwMfAzEDTwNjA7kD0wQXBIkEtgUHBWkFhwYBBmIGbgZ6BqEGvgblBz0H7wgmCI0I2AkdCVIJfgnSCf0KEgpBCnYKlwrLCvALQgt7C9oMIgyJDKkM2w0CDUMNcQ2WDcYN4g32DhIONw5IDlwOzQ8nD3MPzRAiEFUQxhEDES0RahGfEbUSGRJXEqQS/xNaE5AT7hQiFF4UgxTGFPMVLxVdFaoVvhYNFlAWdhbYFycXjRfXF/MYkBjDGUgZphmyGdEaeRqLGsIa6hsmG4wboBvkHAUcIRxNHGYcqxy3HMgc2RzqHUEdkh2wHhIeUB61H2EfyCAFIGAgvCEgIVUhaiGdIcoh7CIsIn8i9COLI7MkByRbJMclJyVsJbwl5CY2JlcmdyZ/JqUmwibzJyAnYCd/J68nwyfYJ+EoDygsKEkoXSidKKUovijuKVEpdymhKcAp+CpUKpgrASt1K+EsDyyCLPMtRy2FLeguEC5kLt0vGi9wL8AwGzBPMI0w5TEqMZsyBTJeMtszKjOCM+U0NDR4NJ806DU/NYs1/jYiNl02mjb0NyA3WjeCN7Y3+Tg+OHg40Dk6OX459TphOno6wjsSO4E7pTvYPBM8RDxvPJg8tj1XPYI9uz3iPhY+Wj6ePtg/Lj+VP9tAPUCSQPNBQ0GJQbBCDkJtQrJDFUN3Q7ND7ERBRJJE+0VhRd9GXUbmR2tH2EguSGRInEkMSXNKKkrfS1FLxEwPTFdMhUyjTNRM6kz/TbZOCk4mTkJOhE7MTzdPW09/T79P/VAQUCNQL1BCUINQwlD+UTpRTVFgUZVRylIOUlxS01NGU1lTbFOiU9hT61P+VEdUj1TJVTNVm1XoVjJWRVZYVpNW0FbjVvZXCVccV3BXwVgSWCFYMVg9WElYgFjdWVpZ2FpUWstbQFuhXARcU1ymXPddR12MXdFeRV5RXl1eiV6JXoleiV6JXoleiV6JXoleiV6JXoleiV6JXpFemV6rXr1e2l72XxJfLl9JX1VfYV+QX7Ff31//YAtgG2A4YQBhJGFEYVthZGFtYXZhf2GIYZFhmmG7Yc1h6WIWYkNifGKFYo5il2KgYqlismK7YsRizWLWYt9i6GLxYxpjQ2ObY9ZkN2RDZJxk6mVEZZVl6mYwZnFmsmc9Z49n+Wg3aIVom2isaMJo2GlFaWJpmWmraddqcWquaw1rPGtwa6Rr12vkbAJsHmwqbGZspm0JbXNt126Nbo1vqm/wcCpwT3CScOtxZnGCcdtyI3JMcrly93MQc11zi3O8c+h0KXRMdHx0mnT8dT91nHXTdiB2QnZ0dpF2wnbudwF3K3d6d6Z4IXhxeLF4znj+eVZ5eHmhecd6AHpTepp7A3tQe6N7/3xKfIx8v30AfUp9nH4KfjZ+aX6jft5/E39Kf3x/vn/9gAmAPoCRgPWBQoFtgcqCCIJHgoKC9oMCgzyDeoO/g/WEVYSmhPWFV4WzhguGeIa7hxeHQIeCh9SH74haiKyIvoj7iS6J24o7ipmKzYsAizGLZouni++MVoyGjKOM0Y0QjTWNW42bjeSOEI4/jpCOmY6ijquOtI69jsaOz48ej3WPt5ALkG6QjZDQkRaRQJGNkamR/5IRkouS75MUkxyTJJMskzSTPJNEk0yTVJNck2STbJN0k3yTjpOWk/+US5RplMOVDpVoldmWJpaBltyXLZedl+yX9JhomJWY5pkfmXuZrpnymfKZ+ppLmpya4psKm0ubXptxm4Sbl5urm7+b1Zvom/ucDpwhnDWcSJxbnG6cgpyVnKicu5zOnOGc9Z0InRudLp1CnVWdaJ17nY2dn52yncad3J3vngKeFZ4nnjqeTJ5ennGehZ6XnqqevZ7PnuGe9J8HnxqfLJ8/n1KfZZ94n4qfnZ+woAmgm6CuoMGg1KDmoPmhDKEfoTGhRKFXoWqhfKGPoaGhtKHHoiKimqKtor+i0qLkovejCaMcoy+jQ6NWo2mjfKOPo6KjtaPIo9uj7qQApBKkJaQxpD2kUKRjpHeki6SepLGkxaTZpOyk/6ULpRelKqU9pVGlZaV4pYqlnaWwpcKl1aXopfymEKYjpjamSqZepnGmg6aWpqmmvKbOpuGm9KcIpxynL6dBp1Wnaad8p4+noqe2p8mn26fuqACoE6gmqDqoTqhiqHaozakvqUKpValoqXqpjqmhqbSpx6naqe2p/6oSqiWqOKpLqleqY6puqoGqlKqmqriqzKrgquyq+KsLqx6rMKtDq1WrZ6t6q46roau0q8er2avsrACsE6wmrDisTKxfrHGshKzXrOqs/K0PrSGtM61FrVetaq3BrdOt5a34rguuH64xrkSuV65qrnWuh66arqauuK7Mrtiu5K73rwOvFq8orzuvT69ir26vgK+Tr6Wvsa/Dr9ev6a/1sAewGbAssECwVLCqsL2wz7DisPWxCLEasS2xQbFNsWGxdbGIsZyxsbG5scGxybHRsdmx4bHpsfGx+bIBsgmyEbIZsiGyNbJJslyyb7KCspSyqLKwsriywLLIstCy5LL3swqzHbMws0SzV7O8s8Sz2LPgs+iz+7QOtBa0HrQmtC60QbRJtFG0WbRhtGm0cbR5tIG0ibSRtKS0rLS0tP21BbUNtSC1M7U7tUO1V7VftXK1hLWXtaq1vbXQteS1+LYLth22JbYttjm2TLZUtme2eraPtqS2t7bKtt228Lb4twC3FLcotzS3QLdTt2a3ebeMt5S3nLekt7e3yrfSt+W3+LgMuB+4J7gvuEK4VLhouHC4g7iXuKu4v7jSuOW497kLuR+5M7lGuU65VrlquX25kbmkube5ybndufC6BLoYuiy6P7pTume6b7qDupe6qrq9utG65Lr4uwu7H7syu0a7Wbt2u5K7pru5u8274Lv0vAe8G7wuvEu8aLx8vJC8o7y2vMm827zvvQK9Fr0pvT29UL1kvXe9lL2wvcO91r3qvf6+Er4mvjm+TL5gvnO+h76avq6+wb7Vvui/Bb8hvzS/R79av22/gL+Tv6a/uL/Mv+C/9MAIwBvALsBBwFTAZ8B6wI3AoMCzwMXA2cDtwQHBFcEowTvBTsFgwX3BkMGjwbbBycHcwe/CAsIVwh3CYMKiwsfC7MMtw3DDoMPVxA3ERMRMxGDEaMRwxHjEgMSIxJDEmMSgxKjEu8TOxOHE9MUIxRzFMMVExVjFbMWAxZTFqMW8xdDF5MXwxgTGGMYsxkDGVMZoxnzGkMajxrbGysbexvLHBscaxy7HQsdWx2rHfceQx6THuMfMx+DH9MgIyBzIL8hByFXIach9yJHIpci5yM3I2cjlyPHI/ckJyRXJIckpyTHJOclByUnJUclZyWHJaclxyXnJgcmJyZHJpcm4ycvJ3snmye7KAsoKyh3KMMo4ykDKSMpQymPKa8pzynvKg8qLypPKm8qjyx/LU8umy67LusvNy9/L58vzzAbMGcwlzDjMS8xfzGvMfsyRzKTMt8zDzM/M4wAGAGQAAAMoBbAAAwAHAAsADwATABcAAEEVITUzESMRIREjERMVITUBASMBEQEzAQMJ/XYbNgLENhf9dgKK/a86AlH9rzoCUQWwNjb6UAWw+lAFsPqGNjYFXPqMBXT6jAV0+owAAgAz//ACHAWwAAMADwATQAkCAgcNC3IAAnIAKyvdzi8wMUEDIxMDNDY3NhYXFAYjBiYCHMnLm/BOOThNAU45OE0FsPv9BAP6vjtLAQFHOTlMAUYAAgCdA/gCvAYAAAUACwAMswkDCwUALzPNMjAxQQcDIxM3IQcDIxM3AZkXW4o7FwHNF1yJPBYGAJX+jQF0lJX+jQF8jAAEADIAAATcBbAAAwAHAAsADwAjQBEEAAUNDg4ACgkJAAICcgAScgArKxE5LzMROS8zMhEzMDFzATMBMwEzAQEhNyEDITchggIApv3/1QIBpP4AAh/8DhsD87f8DRsD8wWw+lAFsPpQA3Wb/YqbAAMAQf8sBEkGmQADAAcAPQA2QBwEBzo6CCsQIwQULzU1Bi8NcgECHx8UGhoDFAVyACvNMy8RMxI5OSvNMy8REhc5MxI5OTAxQQMjEwMDIxMBNiYmJy4CNz4CFx4DByM2LgInJgYGBwYWFhceAgcOAicuAzczBh4CFxY2NgNIMJcweyqWKwFaCDFbNWWnXQgIiNV9aJZfKQXqAgoiRThBYz0HCDFdNmSlXQgKkN+BaaFsNAXsAxEtUDpDcEkGmf7VASv5n/70AQwBSkFaPxYrcKR7gbliAwJKgKpgLV9RMwECNWA/Q1g9GCtypHmIuFwCAkR8qWY0YEsrAQExXwAABQC1/+gFOAXIABEAIwA1AEcASwAjQBFJMksFO0QpMhcOIAUFcjINcgArKzLEMhDEMjMRMxEzMDFTNz4CFx4CBwcOAicuAjcHBhYWFxY2Njc3NiYmJyYGBgE3PgIXHgIHBw4CJy4CNwcGFhYXFjY2Nzc2JiYnJgYGAQEnAboGCVmOW1d8PwYGCViOWlZ9QLIJAxMyLC1DKAcKAxIyLC5EKQFpBghajlpXfD8FBglXj1pWfUCyCAISMisvQygGCgISMiwuRCkBWPyRdwNwBEtMWItOAgJQiFRNWIlNAgJPh6FQJUctAQEsSSlOJkgvAQEtSfxVTViKTgICUIdUTliJTgICUIeiUSVGLwECLEoqTyZILgEBLEkDSfuYTgRnAAEAKf/qBJ4FxwBCACRAFCMSAA8iAQYaMDArERE7E3IHGgNyACsyKzIvMjIvERc5MDFBJTY2NzYmJyIGBgcGFhYXASEBLgI3PgIXHgIHDgIHBQ4CBwYWFhcWPgI3Mw4CBwYGBwYGJy4CNz4CAXwBEDZUBwZGOTNMMAYHJj4cAh3/AP5GLFY3Bghts3JZk1QFBEFlOf6zJEIuBggqWkBorYNRDckKPm5OCREKVuF0dsBsCAdmkwMZqSNZQzpLATNSLzZoXyr81AKVQI2ZUnCsXgMCT4xdSndgJ94aRFAuP2I6AwNbm7xcaLujRQgTCUxQAgNhs31hlXMAAQCRA/4BlQYAAAUACLEDBQAvxjAxQQcDIxM3AZUXUps9FAYAi/6JAYGBAAABAGj+MQMXBl8AFwAIsQYTAC8vMDFTNzYSEjY3Fw4DBwcGBhYWFwcmJgICeQMVX5rajyRqm2xDEwMPDhlYWDd8k0QHAjsRkgE4ASDoQY1Pzev8fhVm+v3fTINM9AEhASgAAAH/lP4wAksGXQAXAAixEwYALy8wMUEHBgICBgcnPgM3NzY2JiYnNxYWEhICOgIVYZzdkSRpm21DEwQODhtXVzl7lUcJAlURk/7I/t7mQYdQzu3+fhZk+f7gS4NM8v7e/tkAAQBoAk4DqgWxAA4AFEAKDQEHBAQODAYCcgArxDIXOTAxUxMlNwUTMwMlFwUTBwMDjPn+404BGy+rTAE0F/68m5GB4ALFAQ5ZnXgBYP6lcq9b/u9fASP+6QAAAgA8AJIEKwS2AAMABwAQtQcHAwMGAgAvxjMQxi8wMUEHITcBAyMTBCsl/DYmAp645LgDHtnZAZj73AQkAAAB/4/+uAEVAOgACgAIsQQAAC/NMDFlBwYGByc+Ajc3ARUdEn5dfCE8LQsg6Kt1yUdNMF5mOrUAAAEAQAIOAmUCzgADAAixAwIALzMwMUEHITcCZSL9/SECzsDAAAEALv/yAUIA/wALAAqzAwkLcgArMjAxdyY2NzYWFRYGBwYmLwFQOjpPAVA7OFB0O04BAUk6O00BAUgAAAH/fv+DA3kFsAADAAmyAAIBAC8/MDFBASMBA3n8x8IDOQWw+dMGLQACAF//6AQ4BcgAFwAvABNACSsGHxIFcgYNcgArKzIRMzAxQQcOAycuBDc3PgMXHgQBEzY2LgInJg4CBwMGBh4CFxY+AgQtJRJKgcSLao9YKAQLIxJMgcSJapFXKQT+4S4FCQchRjtSbEMjCi0FCQYgRjxSbUEkA1Ltd+S3awQCTIChslfud+K1aAQCSn2gsf6YATYqaGhZOQIES3uOQP7LKWlsWzsDA0x+kQAAAQDxAAADeQW1AAYADLUGBHIBDHIAKyswMUEDIxMFNyUDeffrzP6OJQJBBbX6SwSSedHLAAEADQAABDwFxwAfABlADBAQDBUFcgMfHwIMcgArMhEzKzIyLzAxZQchNwE+Ajc2JiYnJgYGBwc+AhceAgcOAwcBA98e/EwbAhIzcVcLByBRQlF1RQrpC5Hnine8ZgsHSGt6Of6VwMCuAf0xdoZLPGZAAQNKfksBi9N0AgJcsH1Ulod4Nv6lAAACACb/6gQ4BccAHAA7ACpAFhscHh8EAAAdHRIzLy8pDXINDQkSBXIAKzIyLysyLzIROS8zEhc5MDFBFz4CNzYmJicmBgYHBz4CFx4CBw4DIycHNxceAwcOAycuAzczBhYWFxY2Njc2JiYnAaKCSntQCAckVEFCaUQL6wqQ2Xl6wGgJBluNplG+CBaiVZt3PwYHW5K3Y12cczwC6gMvXENKeEsICTBlSQNFAgI1aExAYDcCATRfPwF+tV8CAmC1gFyJXC8BNoQBAixXiWBopHA4AgI6aphfQWI4AgI8bktLZjYCAAACAA0AAAQrBbAABwALAB1ADgMHBwYCAgUJDHILBQRyACsyKxI5LzkzEjkwMUEHITcBMwkCAyMTBCsi/AQUAwLL/vH+QgL7/Ov8AgfAnQPM/pD9yAOo+lAFsAABAFj/6ARzBbAAKQAdQA4nCQkCHRkZEw1yBQIEcgArMisyLzIROS8zMDFBJxMhByEDNjYzMh4CBw4DJy4DJzMeAhcWPgI3Ni4CJyYGAXjAvgL9IP3KZzJzO2aTWiMICVKJuW5cl24+AuUEKlZDQmJFJgYFEC9SPEBpAqYxAtnM/poeHVCHrF1stoZJAwE+b5dbPmQ8AgE0WXA6NWRQLwIBLAABAF3/6QQOBboANgAbQA0OLBgiIiwDAARyLA1yACsrMhE5LzMRMzAxQTMHIyYOAgcHBh4CFxY+Ajc2LgInJgYGByc+AxceAwcOAycuAzc3NhI2JAOpIxQMdsKTXhEfBgUkTkM/YkUoBgULKUs7R3hUEFcPTHOXW2OKVSAICVOIt21zpGQmDA0Yfc0BGwW6xQFKir1x5jN4bUgCAjVbbjcwZ1g3AgFBbkIfVZNuPAMCVIqpV2m4jU4DAmSkyGdkqQEn4X8AAQCGAAAEmwWwAAYAE0AJAQUFBgRyAwxyACsrMhEzMDFBBwEhASE3BJsW/QP+/gL5/SofBbCQ+uAE8MAABAA3/+kEQgXHABAAIAAwAEAAIUAQDT09JS0VFQQ1LQVyHQQNcgArMisyEjkvEjkzEjkwMUEOAicuAjc+AxceAgc2JiYnJgYGBwYWFhcWNjYBDgInLgI3PgIXHgIHNiYmJyYGBgcGFhYXFjY2A+IKk+WDecJrCQdckrJdcsNx8QcnV0NKdUoIBydYREp0SQFJCI/Wc2q2agcIh9Z9dbRg9QUgSzxCZjwHBh5MPUJlPgGVisBiAwJhtYFjm2k1AgJer24/aUIBAkN1RkFnPQECP3EC4HquWwMCWaNygrthAwJgsIE3YD0BAT5qPzdhPQEBP2sAAAEAjP/2BCwFxwA4ABtADQA4FiEhOAwrBXI4DHIAKysyETkvMxEzMDF3MxY+Ajc3Ni4CJyYOAgcGHgIXFj4CNxcOAycuAzc+AxceAwcHDgQHI+EPd7yMWBEjBgQiS0M+YUQnBQUKJ0k7OGFMNAtWCUp3l1VkjFUhBwlTh7hueKFaHQsLElWHvPCUG70BQXy0c/wwe3BMAQM6X3I2MGdbOgIBKUpeMxxRl3ZFAgJUiqpYaL2RUQMCa6zOZleJ9cmSUAH//wAn//IB0ARTBCYAEvkAAAcAEgCOA1T///+f/rgBvQRTBCcAEgB7A1QABgAQEAAAAgAzAK0DxwRSAAQACQAWQAwBAwcGAAQIBQgCCQIALy8SFzkwMVMBBwE3JQUHNwHrAmIo/Q4aA0/9X8QcA3QCkf7+4gF0lKb8JqYBcwAAAgBgAWQEGAPSAAMABwAOtQYHEgMCEAA/Mz8zMDFBByE3AQchNwQYI/y0IwMDJPy1IgPSxsb+WMbGAAIALQCiA9cESAAEAAkAFUALBQgEAAYDAQcCCQIALy8SFzkwMUEBNwEHBSU3BwEDFv2TJwMHG/ycAq7NHvx4AmkBAN/+jJWp+yum/owAAAIAk//yA9oFxwAgACwAG0ANAQEkJCoLchERDRYDcgArMjIvKzIRMy8wMUEHPgI3PgI3NiYmJyYGBgcHPgIXHgIHDgIHBgYBNDY3NhYVFgYHBiYCF9YIL1Q/LVpDCQYWQTg6WTkL6w2Bynlyq1kKB12GRD5B/stNOTlNAU46N00BrQJThnI2JlFiPzJVNAIBMFY3AXyuWQIDW6h1X5V7ODF4/nY6TAEBRzk6SgEBRgAAAgAu/joGqQWRAEEAaAAnQBISBQVHUhNyYWRkC11dHR08KTAALzMvMxEzLzMzETMrMjIRMzAxQQ4DJy4DNxMzAwYGFhYXFj4CNzY0LgInJg4DBwYGHgIXFjY3FwYGJy4DAjc2EjY2JBceAxIFBgYWFhcWPgI3Fw4DJy4DNz4EFxYWFwcmJicmDgIGkhBJd6hvRl0zDQqPro4FBgomJklpRioKFDRyuYaH6b2RYBgVATNxuIVYqlAcUMNdoOyeVA4YG3ax6AEZoJzmmlMR+/8GCwotMi5JOSoPQhdEWXJGVWMrAQwOO1l2lVlViENlI1YzUXZQMQIOX8OjYgMCO2F1PQI5/ccbQj0pAgNSg4w3ctq/klQCA1me0e16b9zDmVgBASYjhzMlAQJkr+cBDI+TARr0uGYCAmKs4/779iFcWT8CAjFOVSJXOnJcNgIDV4WWQUuilnhFAgE9MnUkKAICUYOVAAAD/6MAAASrBbAABAAJAA0AKUAUBAcHCg0NBgALDAwCCAMCcgUCCHIAKzIrMhE5LzM5OTMRMzIRMzAxQQEhATMTAzczAQMHITcDKP2F/vYDEKtUzg+fARmyI/z+IwTh+x8FsPpQBPy0+lACHMfHAAIAJv//BLcFsAAZADAAKUAUGSkmAicnASYmDgwPAnIcGxsOCHIAKzIRMysyETkvMzMRMxI5OTAxQSE3BTI2Njc2JiYnJwMjEwUeAwcOAgcDITcFMjY2NzYmJiclNwUXHgIHDgICt/6MHgEtR4BYCwkvYkL42vb9AdFdpn1DBwh4uWbT/j+QAThLgFULCSJYRv7gIgFaKl6HQwYLnPICkrcBLV9NSFYnAQH7GAWwAQIrWpFpcJVPCv0wxwE0aU1EYzcDAbcBRQlZkl+WwFsAAQBf/+gFCgXHACcAFUAKGRUQA3IkAAUJcgArzDMrzDMwMUE3BgYEJy4DNzc+AxceAhcnNCYmJyYOAgcHBhQWFhcWNjYDtvAYrf78nI/CbiMRERRqq+yVmdFwBfMvbF5mlGU6DRIKKWlgZI9dAdkDnOF3BAN4xfJ9eYb6xG8DA3/glAFWhk4DA1SQr1Z8SKaUYQMERoYAAgAmAAAE2QWwABoAHgAbQA0CAQEdDg8PHgJyHQhyACsrMhEzETMRMzAxYSE3BTI2Njc3Ni4CJyU3BR4DBwcOAgQDAyMTAdD+wyUBH5PPexUKCws+fGf+tSMBL5LVhjMQChV8xP7/UP32/ccChuCHUFWpjVcDAcgBA3G/9odOk/26ZwWw+lAFsAAABAAmAAAEvAWwAAMABwALAA8AHUAOCwoKBg8OBwJyAwIGCHIAKzIyKzIyETkvMzAxZQchNwEDIxMBByE3AQchNwPoI/0RIgEh/fb9AtMi/XIjA1Mj/RYkx8fHBOn6UAWw/aDExAJgyMgAAAMAJgAABKkFsAADAAcACwAbQA0HBgYCCgsLAwJyAghyACsrMhEzETkvMzAxQQMjEwEHITcBByE3Ahn99v0CxyP9gSMDPiP9MCQFsPpQBbD9g8fHAn3IyAABAGb/6wUXBccAKwAbQA0rKioFGRUQA3IkBQlyACsyK8wzEjkvMzAxQQMOAicuAzc3PgMXHgIXIy4CJyYOAgcHBh4CFxY2NjcTITcE5lk+udBflMx4KREPE2mr7pqT0HUK7Qc3bFNpl2Y8DQ8KBjV1ZDVmXio1/tohAuj901BbJQECd8b3hGSL/cVwAwJxzpBPdkMDBFiTslhoT6yWXgIBDycjASG7AAADACYAAAWFBbAAAwAHAAsAG0ANCQYIAwICBgcCcgYIcgArKxE5LzMyETMwMUEHITcTAyMTIQMjEwRhI/0QI6j99v0EYv3z/ANQx8cCYPpQBbD6UAWwAAEANwAAAikFsAADAAy1AAJyAQhyACsrMDFBAyMTAin99f0FsPpQBbAAAAEABP/oBF0FsAATABNACRAMDAcJcgICcgArKzIvMjAxQRMzAw4CJy4CNzMGFhYXFjY2Aruu9K4TjeCNhrtdB/YFHVBJTG9DAbQD/PwFitBzAgNrw4ZCakECAkd3AAADACYAAAVyBbAAAwAJAA0AHEAQBgcLBQwIBgIEAwJyCgIIcgArMisyEhc5MDFBAyMTIQEBEwEBAwE3AQIZ/fb9BE/9R/53AQEYAe7J/qC9AbYFsPpQBbD9P/6ZAQwBIwH5+lACvKL8ogAAAgAmAAADwAWwAAMABwAVQAoDAgIGBwJyBghyACsrETMRMzAxZQchNwEDIxMDwCP9OSMBIP32/cfHxwTp+lAFsAAAAwAmAAAGzgWwAAYACwAQABtADQIHDgULCHIMBAAHAnIAKzIyMisyMhE5MDFBMxMBMwEjATMDAyMBMwMjEwGL0dUCWuT86K7+etCFU/UF1tL99VcFsPufBGH6UAWw/Cv+JQWw+lAB8AABACYAAAWGBbAACQAXQAsDCAUJBwJyAgUIcgArMisyEjk5MDFBAyMBAyMTMwETBYb97v43tvb97gHKtwWw+lAEHfvjBbD74QQfAAIAYv/pBSIFxwAVACsAE0AJJwYcEQNyBglyACsrMhEzMDFBBwYCBgYnLgM3NzYSNjYXHgMFNzYuAicmDgIHBwYeAhcWPgIFEgoUa63wmZLIcSYQCxRsrvCYk8dxJP7wCwkCLm1kZ5loPQwLCgMubmJpmGg9AwJPiv7/y3QDA3zM+YBPiQEAy3QDA3vM+NJTS6uZYgQEWZa0V1NKrJplAwRalrQAAQAmAAAE+gWwABcAF0ALAgEBDgwPAnIOCHIAKysyETkvMzAxQSU3BTI2Njc2JiYnJQMjEwUeAgcOAgKs/oIjAWNTi1sLCyxkTP7P2vb9AguH1HEMDaX+Ah4BxwE5clhKcUEDAfsYBbABA23IjZ3NYgAAAwBe/wMFHgXHAAMAGQAvABlADCAVA3IAKysDCglyAgAvKzIyETMrMjAxZQEHAQEHBgIGBicuAzc3NhI2NhceAwU3Ni4CJyYOAgcHBh4CFxY+AgMqAUqr/rwCiQsTa67wmJPIcSUQChRsrvGXk8dyJP7vCwkBLm5jaJhoPgwLCQIubmNomWc8wv7HhgE2AslPiv7+ynQDA3zM+YBQiAEAy3QDA3vL+dJTS6uZYgQEWZa0V1NKrJplAwRalrQAAAIAJgAABNUFsAAYAB0AI0ASGxoJAwwMCwsAHBkYCHIWAAJyACsyKzIyEjkvMxIXOTAxQQUeAgcOAgcHITcFMjY2NzYmJiclAyMhAzcTFQEjAeeF03MMCWWjZ1H+MSEBRFCIWgsKLGRK/vPa9gMt2/XrBbABA168kHSjcCUkxwE7cVJMajkCAfsYAo4B/X8OAAEAJv/qBL0FxgA5AB9ADwomDzYxMSsJchgUFA8DcgArMi8yKzIvMhE5OTAxQTYuAicuAzc+AxceAgcjNiYmJyYGBgcGHgIXHgMHDgMnLgM3FwYeAjMWNjYDUAkoS14uTJR3QgYIZ6C+XoXQdgX0BjFoTUWAWQsILVBcKFGVdD4HCWaevmFnt4pLBPQEIUZlP0SBWwF+O1E3JhEbSmaLXWmbZjECA2zGiExtPQECLV5KNEw0JA4cTWqRYWubYi4CAT53qm0BQGNCIgIqWwAAAgCdAAAFJQWwAAMABwAVQAoAAwMGBwJyAQhyACsrMjIRMzAxQQMjEyEHITcDavz0/QKuI/ubIwWw+lAFsMjIAAEAWP/oBTEFsAAVABNACQERBgsCcgYJcgArKxEzMjAxQTMDDgInLgI3EzMDBhYWFxY2NjcEPPWmF6X/npXaaxKm9KUKJmpbYY9YDgWw/DWd5noDA33hlwPN/DJUh1ICA0uMXAACAJoAAAV/BbAABAAJABdACwAGCAEJAnIDCAhyACsyKzISOTkwMUEBIQEjAxMXIwECQAIpARb9Ir5EuQiy/uwBFQSb+lAFsPtP/wWwAAAEALUAAAc6BbAABQAKAA8AFQAbQA0QDAEKAnITEg4ECQhyACsyMjIyKzIyMjAxQQEzAwEjExMDIwMBATMBIwMTAyMDEwHIAcWWPf4hnTo2HqNkBAEBjPj91qYPZweYdBoBUgRe/tL7fgWw+5T+vAWw+64EUvpQBbD7iP7IBJgBGAAAAf/AAAAFRgWwAAsAGkAOBwQKAQQJAwsCcgYJCHIAKzIrMhIXOTAxQRMBIQEBIQMBIQEBAcnYAX4BJ/3bAT/+8N7+eP7WAjL+yQWw/e8CEf0j/S0CHP3kAuoCxgABAKEAAAVQBbAACAAXQAwEBwEDBgMIAnIGCHIAKysyEhc5MDFBEwEhAQMjEwEBps4BwAEc/Xxb92D+xwWw/UsCtfxc/fQCJQOLAAP/5QAABOsFsAADAAkADQAfQA8EDAwJDQJyBwMDAgIGCHIAKzIRMxEzKzIyETMwMWUHITcBASM3ATMjByE3BCcj/CojBH37w6weBD6qWyP8VyPHx8cEQ/r2qwUFyMgAAAH/8P66ArQGjwAHAA60AwYCBwYALy8zETMwMUEHIwMzByEBArQen/+gHf51ATkGj7r5oLsH1QAAAQCr/4MCxwWwAAMACbIBAgAALz8wMUUBMwEB5v7F4QE7fQYt+dMAAAH/ev66AkAGjwAHAA60BQQAAQQALy8zETMwMVM3IQEhNzMTlh4BjP7H/nMdof4F1br4K7sGYAAAAgBEAtkDMQWwAAQACQAWQAkIBwcGAAUCAwIAP80yOTkzETMwMUEBIwEzEQMnMxMCIP700AGhkWgCgqMEv/4aAtf9KQH+2f0pAAAB/3n/RAMRAAAAAwAIsQIDAC8zMDFhByE3AxEh/IkhvLwAAQDPBNMCWQYAAAMACrIDgAIALxrNMDFBEyMDAcuOtNYGAP7TASwAAAIAHP/pA9EEUAAbADoAKUAVKyweJx46Og8nMQtyGBkKcgkFDwdyACsyMisyKzISOS8zERI5OTAxZRM2JiYnJgYGBwc+AxceAgcDBgYXBwcmNBMHJyIOAgcGFhYXFjY2NxcOAycuAjc+AzMCiFIGGkU4Mlg9CusGWYmfTG6qWQtPCQcTAukPdRicMGVYPAcFH0AsO3NVED8WT2h7QVqUVgUFYZm2WdkCBzRUMQEBI0QxAVV/UycBAlqkdP4eOXc3EgE1bwHvlQESLEs4LUEmAQEwWTpsPWZKKAECT45daY1TJAADABD/6AQRBgAABAAaAC8AGUAOIRYHcisLC3IECnIAAHIAKysrMisyMDFBMwMHIwEHDgMnLgM3Nz4DFx4DBzc2LgInJg4CBwcGFhYXFj4CARvs5TvXA/cCDUN1q3RniU4cBAgRS3ina3CMSRP4AwYBHktGPmRMMg0cAyhcS0tpQyYGAPrZ2QItFWTHpGEDAmKct1hEXb2dXQMDZaC+cBYzeGxFAgMtT2Y3t0N8UQIDQmyCAAABADf/6gPmBFEAJwAZQAwdGRkUB3IEBAAJC3IAKzIyLysyLzIwMWUWNjY3Nw4CJy4DNzc+AxceAgcnNCYmJyYOAgcHBh4CAeA7YkEN3w2Jy3Fzo2QnCgQMU4u+d3iuXAHdJU8/SmlFJwcEBQMiT6sBLlY4AXSsXQICWpjBaCRvxplWAwJqt3UBOGE9AgI+an8+IzV5akQAAAMAOP/oBIcGAAAEABoALwAZQA0hBAQWC3IrCwdyAQByACsrMisyLzIwMWUTMwEjATc+AxceAwcHDgMnLgM3BwYeAhcWNjY3NzYuAicmDgICueHt/vXU/ZkCDUV3rXVmiE0cBQgQTHmna2uMTBb5AgYCH0tET3tSERwDEzBPOEprRSjuBRL6AAIJFWTIpmIDA2Set1dEXLycXAMEZaG7cBU0dmtGAwNOfke3MmJQMwEDQm6CAAEAOv/rA/AEUQArAB9AEGcTAQYTEhIAGQsHciQAC3IAKzIrMhE5LzNfXTAxRS4DNzc+AxceAwcHITcFNzYmJicmDgIHBwYeAhcWNjcXDgIB9m+rcDIIBAtUjcB2cZxcHwsO/NQcAj0ECR9SRUtrRicIBAYSNFxEVYs5dC6HnRQCU4+7ailty59cAwJalbxlZ60BFT9wSAICQnCDPig7dF87AgJLPHtFWisAAgBeAAADWwYZABEAFQAVQAsUFQZyDQYBcgEKcgArKzIrMjAxYSMTPgIXFhYXByYmJyIGBgcXByE3AU7syg5ssHYkSCMXFi0XOVc3Ccgg/ZwgBKJyqVwBAQoIvAUGASxPOGiwsAAAA//5/lEEQgRRABMAKQA+ABtADzAlC3I6GgdyDgYPcgAGcgArKzIrMisyMDFBMwMOAicuAic3FhYXFjY2NxMBNz4DFx4DBwcOAycuAzcHBh4CFxY2Njc3Ni4CJyYOAgNq2LMUk+iQSIx4K3sufE1UglMNjP0WAwxIea91aolLGgUIEEx5p2xrjk4Z+AIGBCJOQ1F9UxEcBBQxUDlLbUkqBDr75Y/QbwQBK1A7jD5IAgJBeFIDOP64FmTJpWACA2KcuFpEXbybXAMDZaC8cBU1dmpFAgRMfkm3M2NQMQEDQm6CAAIADQAAA/IGAAADABoAF0AMEQIWCgdyAwByAgpyACsrKzIRMzAxQQEjARMjPgMXHgMHAyMTNiYmJyYOAgID/vXrAQsfSg1FdqZtWXdEFgl07XYGFERBRmtLLgYA+gAGAPxFXruZWgMCQnGRUf1JAro7XjkBAjhgdgAAAgAgAAACCgXYAAMADwAQtwcNAwZyAgpyACsrzjIwMUEDIxMTJjY3NhYVFgYHBiYBx7zrvCEBTjk3TwFPODdOBDr7xgQ6ARg6SgEBRTk6SAEBQwAAAv8C/kYCAQXYABEAHQATQAkNBg9yFRsABnIAK84yKzIwMVMzAw4CJyYmJzcWFjMyNjY3EyY2NzYWFRQGBwYm1+3IDVubbSNFIhUWKxYvQigH5wFOODhPTjg3TwQ6+2honVcCAQoIvAQIJkQtBbA6SgEBRTk6SAEBQwADABEAAAROBgAAAwAJAA0AHUARBgcLBQwIBgIJBgMAcgoCCnIAKzIrPxIXOTAxQQEjCQMnNwEDATcBAgj+9ewBCwMy/eH+zRzgAWB5/v6oAV0GAPoABgD+Ov36/u/c6gFR+8YCBqD9WgAAAQAgAAACFgYAAAMADLUDAHICCnIAKyswMUEBIwECFv716wEKBgD6AAYAAAADAA8AAAZhBFEABAAbADIAIUARKRICLiIiFwsDBnILB3ICCnIAKysrETMzETMRMzMwMUEDIxMzAyM+AxceAwcDIxM2JiYnJg4CJQc+AxceAwcDIxM2JiYnJg4CAY6T7LzebE4MRXaqcFNxRBYHeOx2BxZFQEdoRSsCjXILR3ekaFh4RRYJdex2BxVEQTpbQSgDUPywBDr+C2O9llYDAj5qh0z9LwK9Ol04AgI4YHcEGV6viU8CAkFwj1H9RAK+O102AQIrS2AAAAIADQAAA/IEUQAEABsAGUANEgIXCwMGcgsHcgIKcgArKysRMxEzMDFBAyMTMwMHPgMXHgMHAyMTNiYmJyYOAgGKkey83W9IDEd2qW9YdUEUCXTtdgYUREBGakwvA0X8uwQ6/gsBYb2XWAMCQnCQT/1FAr46XTcBAjhhdgACADj/6QQeBFEAFQArABC3HBELcicGB3IAKzIrMjAxUzc+AxceAwcHDgMnLgM3BwYeAhcWPgI3NzYuAicmDgJBAwxWj8N4dKdpKgoCDVePw3dzp2kq9gIFCChURkpuSiwHAgYIKFRGS25KKwILF3DKnVgDAlyZw2oXcMibVwMCW5jBgBc3empEAgJAbIE+FzZ7bUUCAkFuggAAA//I/mAEEARRAAQAGgAvABlADiEWB3IrCwtyAwZyAg5yACsrKzIrMjAxQQMjATMBBw4DJy4DNzc+AxceAwc3Ni4CJyYOAgcHBhYWFxY+AgGS3uwBBNkCYQIMRXWqc2WKUiEEChBNeqhtb4xJE/gDBQMgTUQ+ZEwzCx8DK11ISmpGKQNc+wQF2v3zFWLHpWIDAl2Ws1hQX76dXAMDZKC+cBYzeGtGAgMtUGY3xEJ3TAICQm+DAAADADf+YAQ4BFEABAAaAC8AGUAOIRYLcisLB3IEDnIDBnIAKysrMisyMDFBEzczAQE3PgMXHgMHBw4DJy4DNwcGHgIXFjY2Nzc2LgInJg4CAkfhO9X++/0OAwxFd651aIhPHAQIEU16qGttjEwX+gMGAyBLRFF8UhIcAxQxTzlLakcp/mAFEcn6JgOrFWTJpGACA2Odt1hEXrybXAMEZaC9bxUzeGxHAwNOgUi3M2NQMwECQm+CAAIAEQAAAvIEUwAEABYAGUANBgkJBRQHcgMGcgIKcgArKysyMhEzMDFBAyMTMyUHJiYjJg4CBwc+AxcyFgGSluu83wFGGhcvFz1iSjIOOAoxWIhhFy4DYPygBDoJ4QQGASRDXTkET6qTWwIIAAEAG//rA8EETwA1ABdACxsADjIpC3IXDgdyACsyKzIROTkwMUE2JiYnLgM3PgMXHgIHJzYmJicmBgYHBh4CFx4CBw4DJy4CNRcUFhYXMjY2ApcIQGAoPXlkOgMEUH+YS2mxawHqAidKNC1XPgcGIjxDG1WkaAUDVoafTWq7ceMvVTkvX0UBKzc9IAoPL0hpSVR+VCgBAk6YcAEySSgBASBAMSYxHhMGF0d/Z1h/USYBAlSfcwE6UCkBGz4AAgA//+0CrgVDAAMAFQATQAkKEQtyBAIDBnIAKzIvKzIwMUEHITcTMwMGFhYXFjY3BwYGJy4CNwKuH/2wHtnrswQJJScVKxYRJEsmWm4sCAQ6sLABCfvmIzQdAQEGA7oLCgEBUYhUAAACAEr/6AQvBDoABAAbABVACgERBnIYAwMLC3IAKzIvMisyMDFBEzMDIxM3DgMnLgM3EzMDBh4CFxY2NgK2jey83mNODEBupG9ZeUYXCHXrdgMGHDctYIFLAQsDL/vGAeADYreQUgMDQXCQUAK7/UInSDojAgNRjgACAGQAAAQSBDoABAAJABdACwAGCAEJBnIDCApyACsyKzISOTkwMWUBMwEjAxMHIwMBjgGI/P3pnQ18EJPGyQNx+8YEOvx2sAQ6AAQAeQAABfQEOgAFAAoADwAVACRAFAcLABEDFAYJEAwBCgZyEg4ECQpyACsyMjIrMjIyEhc5MDFlATMDASMTEwcjAwEBMwEjExMHIwM3AVgBf55a/oKNSSsYk2ADTAFD7P4pnAdgDYFpA/sDP/75/M0EOvyk3gQ6/MgDOPvGBDr8suwDS+8AAf+6AAAEEgQ6AAsAGkAOBwQKAQQJAwsGcgYJCnIAKzIrMhIXOTAxQRMBIQETIwMBIQEDAXGOAQQBD/5n7/Wb/vH+8QGo5gQ6/psBZf3h/eUBdf6LAjICCAAAAv+8/kcEGQQ6ABMAGAAZQA0XFhUDCAIYBnIPCA9yACsyKzISFzkwMWUBIQEOAyMmJic3FhYzFjY2NxMTBwcDAVcBvgEE/YYbRVhtRB89HhELFgs5VkEZd24CpL6CA7j7IDhkTCsBCwe5AQMCIUQxBJf8yvYqBFYAA//mAAAD5AQ6AAMACQANABxADQQMDAkNBnIHAwMGAhIAPzMzETMrMjIRMzAxZQchNwEBIzcBMyMHITcDXyL88SIDePy/oR0DPKVaIv0kIsDAwALZ/GemA5TAwAACAC3+lQMDBj8AEQAlABlACh0JCgocHBITAQAALzIvMzkvMxI5OTAxQRcGBgcHDgIHNzY2Nzc+AgMHLgI3NzYmJic3HgIHBwYWFgLfJG5nDxwPgMd3C2dvDxwQaa1tM2yKOQwcBxRFQgttqFoLGwgGOQY/iyiybs5/nUsDiwN6Ys58uH35AYkkhbhwzT1gOwWLBFOedM1BgWgAAQAh/vIBzQWwAAMACbIAAgEALz8wMUEBIwEBzf7yngEOBbD5Qga+AAL/mP6SAm4GPAATACYAG0ALHgsKCh8fARUUAAEALzMvMxI5LzMSOTkwMVM3HgIHBwYWFhcHLgI3NzYmJgEnPgI3Nz4CNwcGBgcHDgKgNWuJOg0bCBRFQgprqloLGwgHOf7ZJEleMwsbEIDGdwtnbhAcEGitBbWHI4a4b889XzoFhQRQmnPPQYFp+PqMG2KCScyAmkgDhAR6Y8x9uH0AAQBcAYMExwMyAB8AG0ALDAAAFgaAHAYQEAYALzMvETMaEM0yLzIwMUE3DgMnJiYnJiYnIgYGBwc+AxcWFhcWFhcyNjYEGK8GMleAU1KBOCBLMTZHJgi3BjJZf1NSgzYgSzI3SCoDEQJKj3RDAQJOOSI6ATlZLQFKjHFBAQJPOSE7ATxcAAAC/+b+kwHOBE8AAwAPAAyzAQcNAAAvL93OMDFDEzMDExQGIwYmJzQ2MzYWGsrJme5NOThOAU46N03+kwQD+/0FPjpMAUY5OksBRQAAAwBN/wsEAgUmAAMABwAvACVAEgIBJSUhAxwHcgcECAgMBhENcgArzcwzEjk5K83MMxI5OTAxQQMjEwMDIxM3FjY2NzcOAicuAzc3PgMXHgIHIzYmJicmDgIHBwYeAgMXNLs0IjO7M3I8YkMN3w6KzXF0oWElCwQNVo3Ad3isWwLeASRNP0prRygJAwcCIE0FJv7fASH7Bf7gASCAAi9WOAF1rF0CA1qYwWckcMeYVgMDarZ1OWE+AQM/aYA+IzR5akYAAAP/9wAABKIFxwADAAcAIgAhQBAGBQUBHxYFcgwNDQICAQxyACsyETMRMysyETkvMzAxYSE3IQMhNyElAwYGByc+AjcTPgIXHgIHJzYmJicmBgYD8PwHIwP59/1AIgLB/utMC1tSticuGAVVEIXUhnqrVwTtAx1JPURhOccBkcP1/ZVglTFIEEdXJgJ0g8duAwNltHgBOFw4AgFFbwAABgAG/+UFfwTxABMAJwArAC8AMwA3AA61DxkFIw1yACsyLzMwMUEGHgIXFj4CNzYuAicmDgIHPgMXHgMHDgMnLgMBByc3AQcnNwEnNxcBJzcXASoLIFGDVl+mg1MNCx9SgVdfpoNUuw5xtOeDfcB/Nw0NcbTng33AfzcFD9103vxK3XPdA1ypkar8jamQqQJXT5t+TQIDSoOmWU+afU0DA0uBplh+5rNmAgNpsNt0fue0ZwMDarHbAnfElsT7ucSVw/6n2IHYAzHZgNgABQAuAAAErgWxAAMABwAMABEAFQAtQBYLEBAGBxIVFQgOAwMCAhEUDHIJEQRyACsyKxI5LzMSOTkyETPOMjMRMzAxQQchNwEHITclASEBIwMTBwcDAQMjEwPHGvy0GgMaGvyzGwGaAbwBD/3Rj1HDLo/+AfyF9IUC45WV/t2UlPgC+PyUA2388V0BA2z9Tv0CAv4AAAL/7v7yAfUFsAADAAcADbQBAgYHAgA/3d7NMDFTIxMzEwMjE8nbituihNyE/vIDGQOl/QoC9gAAAv/g/iQEqwXHAC8AYQAeQBNTPwABBStdNTEwDyEMT0QdFBFyACsyLzMXOTAxZTc+Ajc2LgInLgM3PgMXHgIHIzYmJicmBgYHBh4CFx4DBw4DAwcOAgcGHgIXHgMHDgMnLgM3NwYeAjMWNjY3Ni4CJy4DNz4DAk4LPXNQCwgvU2ApTpRzPQcGZZy4WobLawbqBDBiST5+XAsJLFFfK0+VdUAHBmKXsF0LPmlHCggqUF8tT5VyPgYHY5q4W2WtgUQD7gQgQFw4PX5cCwkwVF8mTpR1QAYGXpKqeoMCKVZCN0szIg4aQ16HYGeSXCsCAmO+i0dpPAEBIlNGOEkuHw0ZQV6HYGWESyAC8YUDKVRBOkwxIA4bQV6HYWmRWSkBAjVon2wBO1c5HgEiUUQ2SDAgDRlCXodgYYNOIQACANcE4wONBc8ACwAXAA60AwkJDxUALzMzLzMwMVM0Njc2FhcUBgcGJiUmNjc2FhUWBgcGJtdHMjJIAUcyMUkBwQFGMzJJAUgyMUgFVjNEAQFAMzNDAQFAMTNEAQFANDNCAQE/AAADAFz/6AXcBccAHwAzAEcAH0AOHQQEJSVDFA0NLy85A3IAKzIRMxEzLzMRMxEzMDFBNwYGJy4CNzc+AhcWFgcnNiYnJgYGBwcGFhYXFjYlBh4CFxY+Ajc2LgInJg4CBzYSNiQXHgISBwYCBgQnLgICA6mQDLiYbIc7CAwLX6JxkZwFkgVCWklhNwkNBhJERV1g/UUQMHm7fYTnt3URDy95u3yE6Ld1hRCG1QERnJXnmkMPEYXV/u+cleeaQwJVAZapBANvr2J1aLJsAgOpkAFUYwIBS3dAdzh0UQIEZNRz3LFrAgNmteZ9c9qxawIDZrPmfZUBEdV6AwJ+0/76jJT+7tZ7AwJ/1AEHAAIAvwKyA0cFyAAXADEAGrUxGhoNFiq4AQCyCA0DAD8zGtzEEjkvMzAxQRM2JiYnJgYHJz4CFx4CBwMGBhcjJhMHIw4CBwYWFzI2NjcXDgIjJiY3PgIzAmo1AwwoJzhTD6IHXotMU3Q5BjEHAwifDmIUgidXQQYIPSomUkIQBhdNXTRkfwICcKJQA14BViM5JAECMjYMU2gyAgFHe1L+xi9aLlABbXEBFjUuLyYBHzYkcy5BIQF1ZmFoJwD//wBGAIkDrAOnBCYBkuz+AAcBkgFL//4AAgCAAXcDxgMiAAMABwAStgYHAwYCAgMALzMRMxI5LzAxQQchNwUDIxMDxhz81h4DGz26PgMipaVL/qABYAAEAFz/6AXbBccAHgAvAEMAVwA1QBsfGxggBAICAQEPKQ0NNTVTDA8PSVMTcj9JA3IAKzIrEjkvMxEzETMvMxI5fS8zEhc5MDFBIzcXPgI3NiYmJyMDIxMFHgIHDgIHBgYHDgIHNxYWBwcGFhcHJyY2Nzc2JiUGHgIXFj4CNzYuAicmDgIHNhI2JBceAhIHBgIGBCcuAgIDNd8SsClSPQgJJEUtjXCOhQEBToVPBAJJaTUEBwQKEBIhF3F/CAYDAwIBjgUEBAcGNv15DzB4vH2D6Ld1EA8veLt9hOi3dYURhdUBEZyV55pDDxCF1v7vm5bnmkICjoIBAho2LTM1FAL9MQNQAQI0blZLTC4dAgkDBwgEAmMDdHY3IT0hEgEkSSU1SDxLc9yxawMCZrXmfXPbsGsCA2az5n2VARHVegMCftP++oyU/u7WewIDf9MBCAABAQQFEAOxBaoAAwAIsQMCAC8zMDFBByE3A7EY/WsZBaqamgACAOUDrwLlBccADwAbAA+1EwzAGQQDAD8zGswyMDFTPgIXHgIHDgInLgI3BhYzMjY3NiYnIgboAU18S0VpOgEDSXpLRms9hgY5MjhRBwY0MzhWBLBJgE4BAUt2Qkl+TAEBR3VFMElSNS9MAVQAAAMAGQABBAIE/QADAAcACwAStwsCAwMEChJyACsvOS8zMjAxQQchNwEDIxMBByE3BAIf/IUgAmeX0ZcBVR/8xR8Dg8TEAXr8PAPE+8XBwQAAAQBXApsC7gW+ABwAE7EcArgBALMLEwNyACsyGswyMDFBByE3AT4CNzYmJyIGBwc+AhceAgcOAgcHAsEa/bAXATgaPi8HBiwqOkUMtAhWiVNJfEoDA0xrM58DLJGEAQEWOEAlKTEBSDUCVHpBAQEzZ1BGbVgldQAAAgBoAo4C+QW+ABkAMwAsQAwcGAAAGhoQLCkpJBC4AQC1CwsIEANyACsyMi8aEMwyLzIROS8zEjk5MDFBMz4CNzYmJyIGByM+AhceAgcOAgcjBzcXHgIHDgInLgI1MxYWFzI2NzYmJicBYUkiQS8GBjooK0MOtgdXhElEglQCAl2HPoAID2JBe1ACAWaXSkx+TK4BQDExWggGHTYgBGsCFS4mLCgBJihNZS8BAS1gTktYJgEoUgECIFJNVmoxAgE2a1AyLAE0NiUpEgEAAQDHBNMCzQYAAAMACrIBgAAALxrNMDFTEyEBx+0BGf7IBNMBLf7TAAP/3v5gBFkEOgAEABoAHgAZQAwdBQAWCxNyAxJyHAAALzIrKzIROS8wMUEzAyMTNzcOAycuAicTMwYeAhcWPgIBMwEjA23svNgaRlQKMFuUbD92VAsOgQQBGUA7Tm5HKf3G6/776gQ6+8YBCPICWLyfYgMCMFxDARIvZFY3AgI0XnsChPomAAABAH4AAAPQBbEADAAOtgMLAnIAEnIAKyvNMDFhIxMnLgI3PgIzBQLUxltEh8FfDQ6V7JEBJQIIAQN1zIeU1XQBAAABAJ8CRAGyA1AACwAIsQMJAC8zMDFTNDY3NhYXFAYjBiagTjs6TgFQOjlQAsU7TgEBSTo7TQFHAAH/zf49AS8ABAATABG2CwqAEwIAEgA/MjIazDIwMXc3BxYWBw4DBzc+Ajc2JiYnGawUPkABAURqejgHIEIxBgYsQhgDATwNVj9GWjIVAooCEiklJR8JAwABAOQCmwKABa8ABgAKswYCcgEALyswMUEDIxMHNyUCgIOxZMwbAWoFr/zsAjwxl3IAAAIAvgKwA3AFyAARACMAELYXDiAFA3IOAC8rMhEzMDFTNz4CFx4CBwcOAicuAjcHBhYWFxY2Njc3NiYmJyYGBsUHCmOhamSIQAgHC2GgamSJQLUJBRI+PD1VMggJBRQ9Oj5WMgQTT2SkXgIDYZ9gUGSiXQIDYJ+vUjJfQAECPWI3UTFgPwICPGIA//8ABQCLA3UDqAQmAZMJAAAHAZMBcgAA//8AwQAABSIFrAQnAeAAUQKYACcBlAEVAAgABwI6AqkAAP//ALUAAAV4Ba8EJwGUAOsACAAnAeAARQKbAAcB3wL9AAD//wCWAAAFoQW+BCcBlAGjAAgAJwI6AygAAAAHAjkAoQKbAAL/1P57Ax8EUAAhAC0AGEAKAAAlJSsQERENFgAvMzMvPzMvMy8wMUE3DgIHDgIHBhYWFxY2Njc3DgInLgI3PgI3PgIBFAYjBiYnNDY3NhYBkNUHLlE+LlpCCQcZQzc8WjkL6wyBynpyrloJB16GRSg1HgE1TTk4TgFOOThOApYBUoNwNyhUZUA0UjEBAjJXNwJ9r1sDAlmnd2CYfjghSVUBbjpMAUY5OkoBAUYAAAb/jQAAB28FsAAEAAgADAAQABQAGAAxQBgAFxcIBxQTBxMHEwINAxgCcgwLCw4CCHIAKzIyETMrMjIROTkvLxEzETMyETMwMUEBIQEzAwchNwEHITcTAyMTAQchNwEHITcEM/x//tsEIJsfJf0qJQV9Iv04IvPB68ICpyL9myIDHCL9OSIFC/r1BbD8etLS/pfBwQTv+lAFsP2hwcECX8HBAAIAHwDKBA8EdwADAAcADLMEBgIAAC8vMzIwMXcnARcBATcBnX4Dc33+9f2NnQJyy5wDEJz87wMmh/zbAAMAFv+iBZAF7QADABsAMwAXQAsBAC8KIxYDcgoJcgArKzIRMzIzMDFBASMBEwcGAgYGJy4ENzc2EjY2Fx4EBTc2Ni4CJyYOAgcHBgYeAhcWPgIFkPs3sQTLNQoUaq7wmXWvdkESDAsUbK7wmHWudkIR/vMLBwMVOGZOaJlnPgwLCAIVOWVOaZhnPQXt+bUGS/0VUIn+/8t0AwJSjLPKZ1CIAQDLdAMCUouzyrhTPIiCakMDA1mWtFdTPIeDbEMDBFqWtAACACcAAASBBbAAAwAZAB1ADg8ODgMZBAQDAAJyAwhyACsrETkvMxE5LzMwMUEzAyMBIR4CBw4CIyU3BTI2Njc2JiYnJwEk7P3sATABaoHOcQsMovaM/tghAQ1PiVsMCS1jSPgFsPpQBJcDZL2JlsZiAb8BOnFSSGo7AwEAAQAd/+kEUAYYADkAGUANIxs2CAIKcggBchsLcgArKysRMxEzMDFBAyMTPgMXHgIHDgMHBh4DBw4CJy4CJzcWFjMyNjY3Ni4DNz4DNzYmJicmBgYBw7vrvQ1Ne6hpZ6FYCAYuOzIJCSlHSjEDB3/IdC9hXipBLm44NV9ACQgsSUswBAUvPTMHBho+MUxeMgRS+64EU2OnekEDAlKZbDtiWV43NFpWV2I7e6VQAQENHBfAHiMlSzc2WlRVYz43X1ldOC5MLgIDTnwAAAMADv/qBl8EUQAUADIAXgA3QBxXMzMyF0ZFFCUAAykXRRdFDx8pC3JMPj4FDwdyACsyMhEzKzISOTkvLxIXOREzETMyETMwMWUTNiYmJyYGBgcnPgMXHgIHAwMHJyIGBgcGFhYzFj4CNxcOAicuAjc+AzMBLgM3Nz4DFx4DBwchNyE3NiYmJyYOAgcHBh4CFxY2NxcOAgKCWAUVQTk0XkQK6QdZiKBQdaZQDFJvHNU5dVQJBydHLChfWkIMYSuWsVRimlQFBl6TrlQCWnOnaSsKBw1Vib10aJdbIAsV/OYdAioGCRVLREdrSSoICAYNMV1IVZZJODODjbUCFzNXNwIBI0c1Elh/USUBA2Ktdv4RAaukASVPQTA+HgEaMUQqlk1gKgECTJBnZINNIP1oAlORvGs6a8SZVgMCUIeuYIynHzxrRQIDPWl9PDk/dV46AgI2KKUrNRgAAgBG/+gESAYtADQAOAAZQAs2IBYWASoMC3I4AQAvMysyEjkvMzMwMUE3HgISBwcOAycuAzc+AxceAhUnNi4CJyYOAgcGHgIXFj4CNzc2LgIlAScBAXpWp/aYORUMEFmPw3pkn2wzCQlNgbFuaKBcVwMlQlIpSG5NLgcGEC1POUpsSSwJDhMlb7wCSf21PAJLBW3AKrL6/tGnVW3QpmEDA02DrGFmu5FSAwRlpmYCL0YtFwECNV52QTJkVDUCAkRygz1mhe3Eji3+nXUBYgADAD4AlAQ8BMsAAwAPABsAE7cZEwIHDQMCEgA/3cYyEMYyMDFBByE3ATQ2NzYWFRYGBwYmAzY2NzYWFRQGBwYmBDwk/CYkAZtQOTlQAVA6OFCOAU47OVBQOjlQAxjOzgEpPEwBAUc6PEoBAUb9DDxLAQFHOjtLAQFGAAMAKv91BDAEvQADABkALwAZQAwgAQEVC3IrAAAKB3IAKzIvMisyLzIwMUEBIwEBNz4DFx4DBwcOAycuAzcHBh4CFxY+Ajc3Ni4CJyYOAgQw/JOZA278pwMOWZHEeXOmZigLAg5akcR4c6VnKPkDBQUmU0VLb0wtCQIHBiZTRktvTCwEvfq4BUj9TRdwy51ZAwNcmsJpGHDJm1cDA1uXwYAXNnlrRAICP2yCPhc2em1GAgJAboMAA//N/mAEFQYAAAMAGQAvABtADysKIBUHcgoLcgMAcgIOcgArKysrMhEzMDFBASMBAQcOAycuAzc3PgMXHgMHNzYuAicmDgIHBwYeAhcWPgICDP6t7AFTAusCDUR1qnNmilIhBQoQTXmpbG+MSRT4AwUDIE1EPmRNMgsfAxgyTzdKakYpBgD4YAeg/C0VY8alYgMCXZazWFBfvp1dAwNlob1vFTR3a0YCAy1QZjfEMlxLLQEDRG6DAAQAN//oBRMGAAAEABoALwAzAB1ADyEEBBYLcjMyKwsHcgEAcgArKzLOMisyLzIwMWUTMwEjATc+AxceAwcHDgMnLgM3BwYeAhcWNjY3NzYuAicmDgIBByE3Arnh7f711P2ZAgxGd610Z4hNHAUIEEx5p2trjEwX+gIGAh9LRE97UhEcAxMwTzhKa0UoA9od/XMd7gUS+gACCBZjyaZjAwRknrdXRFy8nFwDBGWgu3EVNHZrRwIDTX9HtzJiUDMBA0JuggMUp6cABAAsAAAF2gWwAAMABwALAA8AH0APAwKABwYGCgwLAnINCghyACsyKzIROS8zGswyMDFBByE3AQchNxMDIxMhAyMTBdoc+qscA+Ej/RAkp/31/QRi/fT8BKuenv6lx8cCYPpQBbD6UAWwAAEAIwAAAcoEOgADAAy1AwZyAgpyACsrMDFBAyMTAcq867wEOvvGBDoAAAMAIQAABJAEOgADAAkADQAfQA8MBwcLBgYCCQMGcgoCCnIAKzIrMhE5LzMzETMwMUEDIxMhASE3MwEDATcBAci867sDtP2c/vUHowGPmf7wxwFmBDr7xgQ6/XXaAbH7xgHhgf2eAAMAHwAAA9IFsAADAAcACwAbQA0CCgAHBgYKCwJyCghyACsrETMRMzIRMzAxQQcFNwEHITcBAyMTArga/YEbA5gk/TojAR/99f0Dspi8mv3Px8cE6fpQBbAAAAIAIAAAAl8GAAADAAcAE0AJAgYABwByBgpyACsrMhEzMDFBBwU3AQEjAQJfG/3cGwH4/vbsAQsDtJi7mAMH+gAGAAAAAwAj/kcFewWzAAMABwAZAB1ADhUOBgcHAwhyCQUEAAJyACsyMjIrMhEzLzMwMUEzAyMBNwEHEzMBDgInIiYnNxYWMzI2NjcBH/b99QE0tQI7tfT1/v4PZKp3I0UjIxgwGTRDJgcFsPpQBURv+rlsBbD6GXCvYwIKCcIHCDdVLQACABH+SAP5BFEABAAqABlADhwVD3ImCwdyAwZyAgpyACsrKzIrMjAxQQMjEzMDBz4DFx4DBwMOAiMmJic3FhYzFjY2NxM2LgInJg4CAY2R67zXfSMMQW+iblx5QRMJdg9ip3UjRCEhGDIYNUMlCHYGBR0+NUpyUTQDRfy7BDr+BgJdvZxdAgJKe5hR/SNvq2ABCQnBBwgBNVMuAtwtVEQoAgM2X3kABQBQ/+wHjQXGACMAJwArAC8AMwAzQBovLi4mMigzAnIpJyYIchUSEhYZCQQHBwMAAwA/MjIRMz8zMxEzKzIyKzIyETkvMzAxQTIWFwcmJiMmDgIHAwYeAhcWNjcHBgYnLgM3Ez4DAQchNwEDIxMBByE3AQchNwMdSZJJFkSLRVuOZUENMAkMNmtVSZFIE0aMRn2+fTMQLxNtqt8EICL9ECMBIPz2/QLTI/1zIwNTI/0WIwXGDgjGDhABP3GUU/7NSI1zRwICDgzHCAsBA2Ck1HgBMH/ao1r7AcfHBOn6UAWw/aDExAJgyMgAAwA//+gGzgRSACoAQABWACdAEyQAAEc8ExISPFIZCwsxB3I8C3IAKysyETMyETkvMxEzMxEzMDFFLgM3Nz4DFx4DBwchNwU3NiYmJyYOAgcHBh4CFxY2NxcGBgE3PgMXHgMHBw4DJy4DNwcGHgIXFj4CNzc2LgInJg4CBMpwo2YqCgQMVYu7c2iXXSMMFvzsHgIlBQoaTURFZkYoCAUGCytVRVWaRz1P1vsZAw1Yj8N5c6VkJgoDDliQwnhzpGUn+wIGBCRQRktuSisJAgYFJVBHS21KKhQCWJa9Zitpxp5bAwNPha1ijq0BHTxqRAICQ25+OSo4dmQ/AgMyLJ5GOgIgF3DLnVgDAlybwmgYcMmbVwIDXJnAfxc2eWpFAgNAbII/FjZ6bUYCAkFuggABABwAAAMaBhkAEQAOtg0GAXIBCnIAKysyMDFhIxM+AhcWFhcHJiYjIgYGBwEH68oOaK12J00nJRcuGDhSMgkEonGpXQEBDQe4BggvUzUAAAEAS//pBS0FxAAsABtADQ8ABgkJABoiA3IACXIAKysyETkvMxEzMDFFLgM3NyEHIQcGHgIXFj4CNzc2LgInJgYHJz4CFx4DBwcOAwJNks55KRIXBAMj/PkIDRVEdlVimG5DDhINE0uKaWO+XB46lppElt+MNhMRE3O18BQCbbrxh4/DI06IZjsDAlOMq1V8XKmFTwICKCPFJScMAQFrvfiOe4T3xXAAAAH/RP5GA0wGGQAnAClAFRQCAhUnBnIfIiIeGwFyCw4OCgcPcgArMjIRMysyMhEzKzIyETMwMUEHIwMOAiciJic3FhYzMjY2NxMjNzM3PgIXMhYXByYmIyIGBgcHAsIbyZUNXaFzI0MhIBYuGDRAIgaWoRuhDQ5nrHUoTiYnGDAYOE8uCQ4EOrD8MW2oYAILCbsHCTVSLQPPsGhyqF0CDgi4BgYuUDVoAAMAXP/pBiEGLQAJACEAOQAdQA4FBgYpKQAAHANyNRAJcgArMisyLzIROREzMDFBNw4CBzc+AgMHBgIGBicuBDc3NhI2NhceBAU3NjYuAicmDgIHBwYGHgIXFj4CBXmoCmCzhw5TYDBlCxNrrvCYdq51QxINCxRrr/CYda52QRL+8gsIAxY4ZFBomGg9DQsIAhY4ZU9pmGc9BisCg75oBJICUH79IE+K/v/LdAMCUoy0ymZQiAEAynUDAlKLs8q4UzyIgmpCAwRZl7NYUjyHg2xEAgRalrQAAAMANP/pBPAEqgAJAB8ANQAVQAomGwtyMQAAEAdyACsyLzIrMjAxQTcOAgc3PgIBNz4DFx4DBwcOAycuAzcHBh4CFxY+Ajc3Ni4CJyYOAgRZlwlXoXoLTVgq+/ACDliSxHl0pWYoCwIOWZLEeHKmZin5AgYFJlNGSm9MLQkCBwYmUkZMb0wsBKgCd6VWBHkCRXD9phdwy51YAwJcmsJpGHDJm1YCA1uYwIAXN3hrRAICP22BPhc2em1GAgJAboMAAAIAWP/pBqQGAwAJAB8AGUAMBQoKAAAVAnIbEAlyACsyKzIvMhEzMDFBNw4CBzc+AiUzAw4CJy4CNxMzAwYWFhcWNjY3Bf+lDG3Ilw5ldz3+SfWmGKT+n5XaaxKm9KUKJmpbYY9YDgYCAZTGZwOSAkuHC/w0neV5AwJ94ZcDzfwyVIhRAwNMjFwAAAMASv/oBVkElgAJAA4AJQAdQA4FCwsAABsGciIODhULcgArMi8yKzIvMhEzMDFBNw4CBzc+AgETMwMjEzcOAycuAzcTMwMGHgIXFjY2BMSVCl6qfgxUXzD9/o3svN5jTQw/bqRwWXhFGAh163YEBxw3LWCCSgSVAX6bSgJ9AjJm/MMDL/vGAeADYriPUgMCQnCQUAK7/UInSDojAgRSjgAB/wT+RwHbBDoAEQAOtg0GD3IBBnIAKysyMDFTMwMOAicmJic3FhYzMjY2N+/sww5ip3UjQyIiGC8ZNEQmBwQ6+4lvrGEBAQoJuwcJN1ctAAEANP/qA9oEUQAqABlADBEUFAAZCwtyJAAHcgArMisyEjkvMzAxQR4DBwcOAycuAzc3IQclBwYWFhcWPgI3NzYuAicmBgcnNjYCOHCjZikKBAxVirxyaZhcIgwVAxUf/dwFCxpNQ0ZmRigIBQYLK1VEVZtHPU/XBE8CWZW9Zitqxp1aAwJPha1ijq4BHDxqRAICQ25+OSo4dWRAAgMyLJ1HOgAAAQD+BN4DoAYAAAgAFLcHBQUEAQOACAAvGs0yOTIRMzAxQRMVJycHBycBArTsuXiwwAEBLwYA/u8RA5ybAxIBDwAAAQEJBOADvQYDAAgAErYBBoAHBAIAAC8yMjIazTkwMUEXNzcXASMDJwHMdK3PAf7LlOoBBgCcmwQQ/u0BExAA//8BBAUQA7EFqgYGAHAAAAABAP0EywNyBegADgAQtQEBCYAMBQAvMxrMMi8wMUE3DgInJiY1FwYWFxY2AsSuB1yTWYCmrwM4Q0RQBeYCW4BCAgKWgwE+TwEBTwAAAQEDBOICAAXXAAsACbIDCRAAPzMwMUE0Njc2FhUUBgcGJgEDSDU1S0g2NUoFWDdGAQFCNjZFAQFAAAIA+gSMAqIGJgANABkADrQXBIARCwAvMxrMMjAxUzQ2NjMyFhUUBgYjIiY3BhYzMjY3NiYjIgb6PWU7VHc+ZTtTd2gFMCwwSgYGMC0wSgVPPGI5c1U8YDZuVyo/Ri8qQUkAAf+o/lUBIAA7ABUADrQID4ABAAAvMhrMMjAxdxcOAgcGFhcyNjcXBgYjIiY3PgKrdSNSPgYDGB0YLBUNIk4pVWkCAU52Oz0ZOkovHSABDgmNFRRpV0pwUAAAAQDcBN8DxAXzABkAJ0ATAAABAQoSQA8aSBIFgA0NDg4XBQAvMzMvMy8aEM0rMjIvMy8wMUEXDgInLgMHBgYHJz4CFx4DNzY2AzaOBTdkSCZAPD4jLzAMkgY4ZEkkPzw/JS4yBfMKQXdLAQEeJhwBAj4oB0B4TAEBHSYcAQE/AAACAK4E0QPrBf8AAwAHAA60AQWAAAQALzMazTIwMUEBMwEhEzMBAeQBEvX+yP375O7+8QTRAS7+0gEu/tIAAAL/9P5sAVH/vgALABcADrQPCYAVAwAvMxrMMjAxRyY2MzIWFRYGBwYmNwYWMzI2NzYmIyIGCwFrSkRjAWhIRWdiBCIeITYFBB4fIjjzS2ZeRkljAQFaSR0tNCAbMTUAAAH9VgTT/tsGAAADAAqyA4ACAC8azTAxQRMjA/5RirTRBgD+0wEsAAAB/dwE0//oBgAAAwAKsgGAAAAvGs0wMUETBQH93PIBGv7DBNMBLQH+1P///PgE3//gBfMEBwCl/BwAAAAB/dUE5f88BnwAFAAQtRQCAIALDAAvMxrMMjIwMUEnNz4CNzYuAic3HgMHBgYH/oy3CxpFNwUEHC4wEBAqa2M/AQJjQATlAZABCh4jGRsLAgF4AQ4mSDpISAsAAAL8vATk/7AF7gADAAcADrQHA4AEAAAvMhrNMjAxQSMDIQEjAzP+idvyAQoB6s/A/wTkAQr+9gEKAAAB/KH+lf2v/4wACwAIsQMJAC8zMDFFJjY3NhYVFgYHBib8ogFQNzVRAVE1NVL0OUUBAUE3OUQBAUAAAQE2BOwCkQZAAAMACrIAgAEALxrNMDFBEzMDATZ64cYE7AFU/qwAAAMA7wTjBCAGsAADAA8AGwAZQAoTGRkNAYAAAAcNAC8zMy8azREzETMwMUETMwMFNDY3NhYVFgYHBiYlJjY3NhYVFAYHBiYCQGDksv4dRjMxSQFHMjJIAj0BRjMySUYyMkkFhwEp/tcyNEQBAUAyNEMBAT8xNEQBAUAzNEIBAT7//wCfAkQBsgNQBgYAeAAAAAEAKwAABKwFsAAFAA62AgUCcgQIcgArKzIwMUEHIQMjEwSsI/1x2vX9BbDI+xgFsAAAA/+sAAAFDwWwAAQACQANABtADQYCBwMCcg0MDAUCEnIAKzIyETMrMhI5MDFBASEBMxMBNzMBJwchNwON/Sj+9wM+jqL++jmOATSxI/w2IwUi+t4FsPpQBUNt+lDHx8cAAwBd/+kFFwXHAAMAGwAzABtADS8KAwICCiMWA3IKCXIAKysyETkvMxEzMDFBByE3BQcGAgYGJy4ENzc2EjY2Fx4EBTc2Ni4CJyYOAgcHBgYeAhcWPgIDqyH+USIDDQsTa67wmHaudkISDQoUbK/wl3WvdUIS/vILCAIVOGVPaJhoPQ0LCAIWOGVPaJlnPAM5v783T4v+/8p0AwJSjLTKZlCIAQDLdAMCUYyzyrhTPIiCakIDBFmWtFdTPIeDbEQCBFqWtAAAAv+yAAAEfQWwAAQACQAXQAsGAAIHAwJyBQIIcgArMisyEjk5MDFBASEBMxMDNzMTAxf9q/7wAumxMrMbqO8Ew/s9BbD6UAThz/pQAAP//gAABIQFsAADAAcACwAbQA0BAAUEBAAICQJyAAhyACsrMhE5LzMRMzAxYzchBwE3IQcBNyEHAiMDqST9LCMC2yL9OCQDeiTHxwKHwsICYcjIAAEAKwAABYMFsAAHABNACQIGBAcCcgYIcgArKzIRMzAxQQMjEyEDIxMFg/302f2P2vX9BbD6UATo+xgFsAAAA//cAAAEnQWwAAMABwAQACFAEA4GBgcHDwJyDAMDAgILCHIAKzIRMxEzKzIRMxEzMDFlByE3AQchNwEHASM3AQE3MwPmI/x2IwRBI/ycIwHjAv17uRwCI/6mGKnHx8cE6cjI/TgV/S2dAkwCQYYAAAMAVAAABawFsAATACcAKwAhQBAUFRUBACkIch8eHgoLKAJyACvNMjIRMyvNMjIRMzAxZScuAzc2EiQzFx4DBwYGBCUXMjY2NzYuAicnJgYGBwYeAgEDIxMDEMR2wIQ+DBG2AR2pyXa/hD0MEbn+4v6dx26saw8IFT9pS8xvrWsNCRdBawHx/fX9qgICT4/Fd6wBAI0CA1KTx3at/IfTA1WebUd6WzUDAgFZom5Id1czBDH6UAWwAAACAHYAAAXRBbAAGQAdABlADBQHBw0cCHIdAQ0CcgArMjIrETkRMzAxQTMDBgIEJycuAzcTMwMGHgIXFxY2NjcDAyMTBNv2VBu7/t64VYDIgzcPU/RTCRNAcVNTerNuErn89f0FsP4Stf72jwEBBFic1IAB7v4RTIlrQAQBAmOxdAHu+lAFsAAAAwAKAAAE7wXHAC0AMQA1ACVAEigSEi8pKTQRETMuMhJyBh0DcgArMisyMjIRMzMRMzIRMzAxQTc2LgInJg4CBwcGBhYWFwcuAzc3PgMXHgMHBw4DBzc+AwE3IQchNyEHA8oOCAMnXVJYgFczCg8IDRFDSQ1yn14gDQ4RaKTdiIC7cywPDhFjnc9+D1NzSiz+oyMB4SP7xyQB6CMC72g/kIBUAwNLf5hJZz2jpYAbjxeNyN1nZHzjsWQDA2ux3XVkdufCghKQHXaYqP1hyMjIyAAAAwA7/+cEMgRSABYALABBABpADS4GNDs7HRILcigGB3IAKzIrMjIRMz8wMVM3PgMXHgQHBw4DJy4DNwcGHgIXFj4CNzc2LgInJg4CATMDBgYWFhcWNjcXBgYnLgM3E0QDDEN1rndRcUgmDAQHD0Vwn2lqjE0X+QIGAyBLQkJoTzMNCQMMKU8/TWtEJgIpzYECBQMUGAYOBwYaOB89UC0PAl4B9BVk0K1oAwNGc4qSQj5Yu55fAwNembZwFjNxZEADAjlhdDlGM3VrRgIDSniJAfP9Bw8tLR8CAQQBtA8MAQE5W2s0Aj4AAAL/5v51BGkFxwAcADoAHkAONQAmJyccHDAdAxMJC3IAKzI/MzkvMxI5OS8wMUEXHgIHDgInLgM3NwYWFhcWNjY3NiYmJycTHgIHDgIjIzczMjY2NzYmJicmBgYHAyMTPgICL3tztWEJCoLXiFeSaTcEXQVKfEZNflAKCB9RRXzCc7VlCQiMz25vFEFGa0IIBiJNOkRuRwv46/cSk9wDLQEDWqp6h8xwAwI5aZBYG01mMwIBQnVLQG5HAwEDIAJcq3h5olOEN2VGN1w3AgJAbD/6VwWofsFrAAMAdf5fBDAEOgADAAgADQAZQA4IDAMECgUBBQ0GcgEOcgArKzISFzkwMWUDIxM3ATMBIxMTByMDAhtc7FyGAX79/dCmB24Jmbht/fICDqEDLPvGBDr8t/EEOgAAAgA1/+kEHAYkACwAQgAZQA0UKD4DBDMeC3ILBAFyACsyKzISFzkwMUE+AhcWFhcHJiYHIgYGBwYeAhceAgcHDgMnLgM3Nz4CNzUuAgMHBh4CFxY+Ajc3Ni4CJyYOAgE6BX29ZUSAQBM3dz4pVT8JBhkxNxd6p0wOAg5ZkcJ1caRoKwkDDGeocDBDIgcDBQYnUUVIbUstCQMFDixMOUhvTS4E5HCOQgEBHRa/FyABGDYtITAmGwo1n9eHFnDEl1MDAlaTu2gXbr+EFQ0bTWD9bhY2d2lDAgI/aoA+FTFvZkkLBkBtgQACACj/6gQEBE8AHwA/AB9ADwAhPj4DAxY1KwdyDBYLcgArMisyEjkvMxI5OTAxQRcHJyIGBgcGHgIXFjY2NzcOAycuAzc+AwUnLgM3PgMXHgMVJzYmJiciBgYHBh4CFxcB7fMWrzhvUQkFIDtGITVqUA3sCFuNpVNImYFNAwRWhpoBLtU5gG9EAgNbkKZNS45zQ+gBNlUtMGdNCAYaMz8eywJMAXcBG0VBKDgiEAEBIEc4AVyDUiUCASNKeVdXcUAaRwECHTxjR119SiACAihQeVMBMz4cAR1CNyYyHA0BAQAAAgBm/nwEPgWwACgALAAVQAkVAiwsKSkAAnIAKzIvMxEzLzAxQTMHAQ4CBwYeAhcXHgIHDgIHJz4CNzYmJicnLgM3PgI3AyEHIQOwjhv+ZUV+WQ8FBhguI1w9b0MEBUprNXYYMiYGBhwvF0hEakgfBwxtnFDoAvYh/QoFsJj+XUWUqWUlPTAlDh8VMFVNRHplJGgZN0AjHSQWBxYVQFd1SnbbwFEB2L4AAgAR/mED+wRRAAQAHAAXQAwYCwMGcgIKcgsHchEALysrKxEzMDFBAyMTMwMHPgMXHgMHAyMTNi4CJyYOAgGOkuu813A+C0N1qG9beUMUCLvsuwYIID4ySm5OMANF/LsEOv4HBGK9m1oCAkNwklP7rARULU08IwEDN2F6AAMAbv/pBEIFxwAZACcANgAdQBANKGowIGowMA0AGmoADQtyACsvKxI5LysrMDFBHgQHBw4EJy4ENzc+BBcmDgIHByE3NjYuAgMWPgM3NyEHBgYeAgLGaY9XKQQLIA42V3ypbWmPVykECyAONld9qGBRbUMlCgcByAgFCAYhRPxBXkMsGgcH/jcGBggHIEUFxANOgqSxVtZcu6eBSAMDT4Wls1TXXbqlf0bBBFCBkT40NihpbV48+6YDNVxxdDEuLyhqb2E+AAEAZv/1AgAEOgARAA62Bg0LcgAGcgArKzIwMVMzAwYWFhcyNjcHBgYjLgI38eyEBAkmJhUsFREkSyZabiwIBDr8+CM0HgIGArkLCgJRiVQAAv+n//AD2gX7AAQAJgAeQBAAGwQDBAIgBQByDxYWAgpyACsyLzMrMhIXOTAxQQEhARcBMh4CFxMeAhcWNjMHBgYjLgInAwMuAicmBgc3NjYCKv6G/vcCT6j+/ixLPCsL4wURHRoJEwkOFSoWRV87EJk+CBgnHg4cDg0ePgLk/RwEUggBsBYsQCv7yhcqHQIBAcAEAwE1XkEDEgEFGykYAQEBAbQHCAAAAgBC/nYEHgXGAB4ARgAZQAsfEQ8PISEzBRsDcgArMi85LzMSOTkwMUEHLgIjIgYGBwYeAhcXBycuAzc+AxcyFhYBFwcnIgYGBwYWFhcXHgIHDgIHJz4CNzYmJicnLgM3PgMEHjYiR0glOn5eCggiQ1QrnBqDSJ+MVAQGXJOwWDFdW/7TnBh9Yq92DAkuXj5ePHBFBQRLazN7GDYoBgUdLxY3V5FmMgcKd7fYBZi6ChIKH0tEM0QnEQEBjAEBHkZ3W2SOWikBCxT9xQGIATuDakVnRRIZETJYSUR5ZCRmGjg/JhwiFAgRG0dkkWN7p2QtAAADAGH/9QTlBDoAAwAHABkAGUANDhULcgYKcgkHAgMGcgArMjIyKysyMDFBByE3IQMjEyEzAwYWFhcyNjcHBgYjLgI3BOUh+50hAZS87LwCLuyEBAolJRYqFQ4lSyVbbiwHBDq6uvvGBDr8+CM0HgEFA7oLCgJRiVQAAAH/y/5gBA8EUQAvABdADB4pBhELcgYHcgAOcgArKysRMzIwMUMTPgMXHgMHBw4DJy4DJx4CFx4CFxY+Ajc3NjYmJicmDgIHAzWqEFSGuHR3nFYbCwIMRXWocGiGSyEBDRwcDwMpWk1HaEYoCQIFAhtLRkNhQScIqP5gA+JpwJNTAwNlpclmFWK+m1oDA12VsVcKFBQJQ3VIAwI7ZHo8FTKBeFADAkJsejb8LAABADb+iQPjBFEALQAOtRsJBQAHcgArzDMvMDFBHgIHIzYmJicmDgIHBwYWFhceAgcOAgcnPgI3NiYmJy4CNzc+AwJreapVBN4EH0pASGlIKggECi1oUD50SgQDS2ozeBgzJgUEGS0XgLBUDQQMVo6+BE4CabZ3OmA9AgNAbH48I1WBWxsWMVhQQnplJGgYOD8mHCQUCCqIyI0jbceaVwAAAwA3/+kErwRCABgALgAyABNACSoGMgZyHxQLcgArMisyMjAxUzc+AxceAhceAgcHDgMnLgM3BwYeAhcWPgI3NzYuAicmDgIBByE3QQMNWZHCdx0zNSFRaS8HAwtaj71vc6RlJvgDBQUkUUdJa0gpCAIGBiNPQ0hsSywDeCL90yICChdsx5pUBg8xMw8njaxWF2u8j04CAluawH8XNnlqRQMCQmyBPRc0c2ZCAgI7Z3wB28DAAAACAGz/7AQkBDoAAwAVABVACgUKEQIDBnIRC3IAKysyETMyMDFBByE3ITMDBhYWFxY2NxcGBicuAjcEJCH8aSEBSuuEAwQeIhkuFxIoVS9fbSkIBDq+vvzwHTYkAQENB7IVEgECWpJXAAEAV//nA+4EPAAeABNACRAHGQAGchkLcgArKxEzMjAxUzMDBgYWFhcWPgI3NgInFxYWBgcOAycuAzfP620EARIyL0lvTS4IEwog4BoVAwsPUorEfmOJUh4JBDr9ZyJTTTQBBE9+jDqAAQZ9AlGsr1Vx1qphAwJGep9bAAABADH+IgVeBEUALwAZQAwrBQUZGAZyIg8LcgAALysyKzIyETMwMUETPgIXHgMHDgMnLgM3PgI3Fw4CBwYeAhcWNjY3Ni4CJwYGBwMBmt0JU4JQbalyMQsQgcr7iondmUMQDU5+V4w1VDoMDyBXi1t71I0PBggoUD4eIQjj/iIFHE92QgECWZa+Z5DbkkkCAlGZ24xqvqA+kjJ2hUhak2k6AgJZr381c2RDBQkWH/rdAAIAP/4lBV8EPAAeACIAFUAKIQcZC3IgEAAGcgArMjIrMi8wMVMzAwYeAhcWPgI3NiYnFx4CBw4DJy4DNwEzASOi7FIMGEqCX2OrhFYQExMj2x8bAgoTfcT9ko3bkDsRAlTr/vLsBDr+EliXcUACAjhtnWJ7/ncCTqaoU5PlnE8CAlWf4o8B6fnrAAIAUv/nBgQEPQAeAD8AGUAMARcKCik2HwZyNgtyACsrETMzETMyMDFBFx4CBw4DJy4DNxMzAwYGFhYXFj4CNzYCJRcGAgcGBh4CFxY+AjcTMwMOAycuBDc+AgTe3SMiBAsMQHGte2d9PQwKM6w0BQMUOjlEWjUcBxEX/CrwQ4IWBQkBFzYwPlU2HgY1qzMNO2WabF1/TSMDCQw7WQQ9A1Grr1Zn07BoAwNjm7NSATf+uidoY0MCA1aCiDGCAQd5AX3+/44eX2ldPgIEO2FvMAFG/slauZpcAwJJeJWgS2G1qQABAFL/6ASOBcoAOAAdQA0dHhc2BAQNIxcLci0NAC8zKzIROS8zEMwyMDFBBwYGJy4CNzc+AhceAwcDDgInLgM3EzcDBhYWFxY2NjcTNjYmJiciBgYHBwYWFhcyNgSOBzh1O5jyhQwBC2eqcFV3SBoIZxOI25Bim2csCy7kLgkgV0xOaDoLZwMBDiQiLjsgBgEIRotiOXQDIMYSFQEBgeeeFGusZAMCQ2+NTf2GidZ4AwJLf6hgASEB/t1EeE4CA059RAKLGzs0IwIvSikWYY1NAhIAAAMAbgAABRcFyAADABYAKQAeQA4QCQkfJgNyGhgWAwMCEgA/MxEzMzMrMjIRMzAxQQMjEzcBPgIXMhYXByYmIyIGBgcBJwMTBwcDLgInJgYHJzY2Mx4CAr559Hh4AR4fUm5LJUYjOA0bDRwqIw7+Y6gQewWbrwYWIBYPHA8QHj8hQ18+Arf9SQK3NQIBPmQ5AhANuwIFFSQV/U8BAvj939cBArEUIBMBAQQDwQwMATdeAAADAFT/5waFBD0AAwAkAEUAIUAQJgUDHA8vPAtyPA8CAwZyDwAvKzIROSsyETMRMzMwMUEHITclFx4CBw4EJy4DNzczBwYGFhYXFj4DNzYCJRcGAgcOAhYWFxY+Ajc3MwcOAycuBDc+AgaFIPn5HwRJ3CQiAwoKKUZnkWBngD8OCiKsIwUCFz06NEkwHxAFERj8RfBDgxYDCwISLyw/VzgfCCKsIg08aJ1sXHlGHwEIDTtZBDqysgMDUKyvVk+nm3tGAwJim7NU1OMpaWNCAQE6X21mJIIBB3kBff7/jhpdaWBAAwY7YnAw49RcuZpaAgNMepedR2G1qQAAAwCU/+4FgAWwABsAHwAjACFAER8jGAUFDiIjHghyIwJyDglyACsrKxEzEjkvMxEzMDFBNz4CFx4CBw4DBzc+Azc2JiYnJgYGEwMjEyEHITcCMhA5en09itZxDAtloMpvEUFuVDYICTBqTj96eLX99PwC1iP7tCMCbswUHxABAmbGknmtbjgCvwEhQWNCT248AQIRHgMu+lAFsMjIAAACAGH/6QUNBccAAwAsAB1ADgMCAgkdGRQDcikECQlyACvMMyvMMxI5LzMwMUEHITcBNwYGBCcuAzc3PgMXHgIXIy4CJyYOAgcHBgYeAhcWNjYDaSP9viMCkPIZrf78m5DCbiMQEhRprOuWmdJwBfMCLmteZ5VkPA0RCAQTNGFNZJBdA0DHx/6ZApvhdgMDd8XzfXeI+cVvAwOA4JNXhk8DBFaRr1Z7OoN/aUICA0aIAAP/xv//B+4FsAARABUALgAnQBMkISEJLhYWAAoJCHIUFRUjAAJyACsyMhEzKzISOS8zETMRMzAxQTMDDgQnIzc3PgQ3AQchNwEFHgIHDgMnIRMzAwU+Ajc2JiYnJQHu9J8UM0x3rnxJGiNTcUgsHAsDXST9YCMCsgFUhtJyDApkoMds/eb99dsBC1OMWwsKLWNK/o8FsP0tY9C9llgBxgIGVoScmj8Ck8jI/e4BA27JjHOweD0BBbD7FwIBQ3xVSHBBAwEAAAMAK///B/QFsAADAAcAIAAjQBEIICADAgIGFQcCchYTEwYIcgArMhEzKzIROS8zMy8zMDFBByE3EwMjEwEFHgIHDgMnIRMzAwU+Ajc2JiYnJQRdI/0WI6r99f0DrgFUgtR0Cwlln8dq/eb89dkBCVGLXQsKMWVH/pADQcbGAm/6UAWw/dQBBGbBi3KudDoBBbD7GwEBPXVTR2g6AwEAAwCdAAAFiwWwABUAGQAdAB1ADhkBGAYRERgcHQJyGAhyACsrMhE5LzMRMzIwMWEjEzYmJicmDgIHNz4DFx4CBwEDIxMhByE3BS/0TAokZ1gyYWNgLxQtXl9hMJHXaxH9pv32/QLVI/vBIwHGVnQ8AgEIDhYOyg4WDAYBAmfNmgPs+lAFsMjIAAIAIv6ZBXoFsAAHAAsAF0ALCQYBAnILAwMACHIAKzISOSsyLzAxcxMzAyETMwMlAyMTIv312gJw2/X9/nhf9V8FsPsXBOn6ULv93gIiAAIAI///BKQFsAAFAB4AIUAQBh4eBAITEwUCchQREQQIcgArMhEzKzIRMxE5LzMwMUEHIQMjExMFHgIHDgMnIRMzAwUyNjY3NiYmJyUEpCP9cNr0/EgBVYPUdQwJZKDGa/3m/PbbAQpSi1sMCTBlR/6OBbDI+xgFsP3RAQNkwIxzrXQ6AQWw+xcBPnZVSWc3AwEABv+I/poFkAWwAAMABwALAA8AEwAlACdAEwsRESADAwceCHIODw8QFAJyCQUALzMrMjIRMysyMhEzMhEzMDFlByE3MwMjEyEDIxMTByE3IQMjEyEzAw4FByM3Fz4DNwSnI/vuIz1h6VYFhm/oYWgj/XMjA0f89P39eviKES9AUmiCTpEdPkxtTDMTx8fH/dMCLf3UAiwE6cjI+lAFsP2zTKmupJBtH8cCO5uwu1wABf+kAAAH6AWwAAUACQANABMAFwAnQBMWEQkDAwAADw8UDAgIcg4KAQJyACsyMisyMjIvMxEzETMzMzAxQQEhEyEHJwEhAQEDIxMhASE3MwEDAzcBAkn+ggEd7gEISNX+Iv7BAnwCsfz0/QQK/Wr+rATxAb3Z/ssBVwJ2Azr9n9kV/XUDPwJx+lAFsPzG2QJh+lACoKL8vgACAB//6gSkBcYAHgA+ACNAEQAgAgI+PhU0MCoJcg8LFQNyACsyzCvMMxI5LzMSOTkwMUEnNxcyNjY3NiYmJyYGBgcHPgMXHgMHDgMlFx4DBw4DJy4DNxcGFhYXFjY2NzYuAicnApPTGZxLg1cKCTttQUR4VQ30CWOauV9fq4RGCAdjmbH+6LZWpH9FBwdsqctmYaqARgPzAzxpREyRaAsHGTxYN7cCuQGPATBlUEdcLgEBMF9FAWebZjMBAjFjmGphjFssWAECKVeLZHKmazICAjhqnmcBRmM2AwEzalE7VTccAgEAAAEAJQAABXwFsAAJABdACwUABgIIAnIEBghyACsyKzISOTkwMUEBMwMjEwEjEzMBYgMe/P31tPzj/P30AagECPpQBAn79wWwAAP/xf/+BX4FsAADAAcAGQAZQAwSBREIcgIDAwQIAnIAKzIyETMrMjIwMUEHITchAyMTITMDDgQnIzc3PgQ3BMMj/VojA2H99f39Y/WfFTJNdq97SRojVHFIKxsNBbDIyPpQBbD9LWLQv5hWAscCBlWEm5pAAAACAJn/6AVWBbAAEwAYABpADhcWABUECAIYAnIPCAlyACsyKzISFzkwMUEBIQEOAyMiJic3FhYzMjY2NwMTFwcBAjgCBgEY/UojUGF5TRs3GxYSKBQ0SzgXAdoYt/7GAgUDq/tXP2lOKQQDxwMEJkMrBG38z/sIBDQAAAMAVf/EBgwF7AAVACkALQAbQAwfDAwrFgAAKyoDcisALysROS8zETkvMzAxQQUeAwcOAyMlLgM3PgMXJgYGBwYeAhcFMjY2NzYuAicTASMBAv8BFXvBgjoNDXG15oP+63zBgjoNDXG053x5t28PCRRAb1EBGHi1cA4KEz9tUyH+7+wBEQUoAgNeoNN3g9ygWQICW5/QeITdpFrIAWu4dkmGakADAmi2c0qIbEIDAY752AYoAAIAIf6hBXkFsAAFAA0AGUAMDAcCcgUEBAkGCHIBAC8rMjIRMysyMDFlAyMTIzcFEzMDIRMzAwVOcuM+fyP8Rv312gJx2vX8yf3YAV/JyQWw+xcE6fpQAAACAMQAAAVdBbAAFQAZABdACxcGEREYAAJyGAhyACsrETkvMzIwMUEzAwYWFhcWPgI3Bw4DJy4CNwEzAyMBIfRKCiRmWDFiYWAvEy5dYWAwktdqEQOT9f31BbD+PFd0PAIBBw8WDckPFg0GAQJozpoBw/pQAAEAKAAAB2UFsAALABlADAUJBgICCwACcgsIcgArKxEzETMyMjAxQTMDIRMzAyETMwMhASX12gGz2vXbAa/a9f35wAWw+xcE6fsXBOn6UAAAAgAo/qEHZQWwAAUAEQAdQA4MBQgIBBEIcg8LBgJyAQAvKzIyKzIyETMzMDFlAyMTIzcBMwMhEzMDIRMzAyEHMXDZPX8h+1712gGz2vXbAa/a9f35wL/94gFfvwTx+xcE6fsXBOn6UAACAIf//wWbBbAAAwAcAB1ADhESDwQcHA8AAQJyDwhyACsrMhE5LzMRMzIwMVM3IQcTBR4CBw4DJyETMwMFPgI3NiYmJyWHIgHeIRQBVIPVdQwJZKDGbP3m/fXbAQpTilsMCS9mRv6OBPDAwP6RAQNkwIxzrXQ6AQWw+xcCAT92VElnNwMBAAIALP//BrkFsAAYABwAHUAOGhkOCwAYGAsMAnILCHIAKysROS8zETMyMzAxQQUeAgcOAychEzMDBTI2Njc2JiYnJQEDIxMBcAFVg9R0Cwpkn8Zs/eb89toBCVOKXAsKMGZH/o8FbP30/AOBAQNkwIxzrXQ6AQWw+xcBPnZVSWc3AwEC9vpQBbAAAAEAJP//BIgFsAAYABlADA4LABgYCwwCcgsIcgArKxE5LzMRMzAxQQUeAgcOAychEzMDBTI2Njc2JiYnJQFnAVWD1HUMCWSgxmv95vz22wEKUotbDAkwZUf+jgOBAQNkwIxzrXQ6AQWw+xcBPnZVSWc3AwEAAgBI/+kE8gXHAAMALAAdQA4DAgIeCQUpCXIZFR4DcgArMswrzDMSOS8zMDFBByE3ATMeAhcWPgI3NzY2LgInJgYGBwc2NiQXHgMHBw4DJy4CBFcj/bAj/kHyAzJvX2aSYjkNEQgDFTdkTWSOWhbzG6oBAJyQxHIkEBITaKjpk5jYdgM7yMj+oFmDSwMDV5KvVXs6hH9oQAMDS4pcAZrkegMCeMbzfniG+MRwAwN63QAEADP/6QcCBccAAwAHAB0AMwAjQBMvBwYGDiQZAwJyAghyGQNyDglyACsrKysRMxI5LzMyMDFBAyMTAQchNwUHBgIGBicuAzc3NhI2NhceAwU3Ni4CJyYOAgcHBh4CFxY+AgIl/fX9AaQY/pUXBYoLE2ut8JmTx3EmEAsUbK7wmJPHcST+8AsJAi5tY2iZaD0MCwoCLm5jaZhnPQWw+lAFsP1xwMAfT4r+/8t0AwN8zPmAT4kBAMt0AwN7zPjSU0urmWIEBFmWtFdTSqyaZQMEWpa0AAL/pwAABMwFsQAWABoAH0APFxYWAAAJDAwZCHIOCQJyACsyKzIREjkvMxI5MDFBIScmJjc+AjMFAyMTJwYGBwYWFhcFBQEhAQOF/oZYiZENDKT8kQHp/Pba2YCzEAknYUwBRP7P/kX+7AG/AiIqOsubnMhhAfpQBOgCAYWDSnBBAwFQ/W4CkgADAEL/6ARWBhUAFgAvAEQAGUAMOiIwFxciAAFyIgtyACsrETkvMxEzMDFBNw4DBw4DDwI3NhI2Njc+AgMeAwcHDgMnLgM3Nz4CNz4CFyYGBgcHBh4CFxY+Ajc3Ni4CA5q8BkBri1F2nWIzCwm9CRBOidGSMWlR92mWXiYIAgxXj79zdKVnKggCBCEoDTeRtzpafUgKAgYLKFNER2pJKwcCBQ0sUwYUAVx2SCoPFnChxW1EEUSHAQfhnRwKGDj+IwNTi69gFm7AkVADAlqZwGkWGi8tFlucXcACWJBQFjdyYT4BAjlheD0WNmxXNwAAAgAj//8EDwQ6ABsAMwAtQBYCARsrKSkoASgBKA8NEAZyHh0dDwpyACsyETMrMhE5OS8vETMSOTkRMzAxQSE3BT4CNzYuAiMnAyMTBR4DBw4DBwMhNwU+Ajc2JiYnJTcFFx4CBw4DAmj+phwBCC9lTAkGGzNAH8yb6rsBm0aReEcEBEJoeTqN/lh+ATAxXkMJByZJKf7mIAE0NUZ6SgIEUoWeAc+qAQITOTgnMRoLAfyEBDoBARxAcFZFXzwhBf3wvgEBGT43MTgYAQGqAUIJOmlOXHtHHwAAAQAWAAADiAQ6AAUADrYCBQZyBApyACsrMjAxQQchAyMTA4gi/jab67wEOsD8hgQ6AAAD/4X+vgRjBDoADwAVAB0AIUAQHRgJFhYbEwgKchUQEAAGcgArMhEzKzIyMhEzLzMwMUEzAw4DByM3Nz4DNxMhAyMTIQEhAyMTIQMjAYrsThRHcaRyUBofOllALA+KApy865n+T/48BHha6zj9YTjvBDr+hG3awpIjvQE3cnuLUAF9+8YDbv1S/f4BQv6+AAAF/7AAAAaBBDoABQAJAA0AEwAXADBAFxUQEAAWEREJAwMGAAAUBwwSEw0NAgZyACsyETM/MzM5LzMzETMzETMRMxEzMDFBASETMwcnASEBAQMjEyEBITczAQMDNwEBv/7MAROr1kSl/qf+0wHlAl+867wDeP3u/tkHwwFAnMDDARQBtQKF/lbbGv4xAl8B2/vGBDr9e9sBqvvGAeGB/Z4AAgAX/+oDvQRQAB0AOwAjQBEAHwICOzsUMi4pC3IPCxQHcgArMswrzDMSOS8zEjk5MDFBJzcXPgI3NiYmJyYGBgcHPgIXHgMHDgMlFx4DBw4DJy4CNxcGFhYXMjY2NzYmJicnAirYFpYxVzwHBiRFKjBXPwvsCYjFaEeLbz8EBEx1if70u0J/ZToDBVeKo05ps20C6AEvUTIzYEMIByNKL7ECBAF6AQEcPjUvPB4BASBAMAFxkUYCASNJdFNLakIfRwEBHT5oTVuAUCQCAk2WcAE0RSMBIkg2NT4bAQEAAQAXAAAERQQ6AAkAF0ALBQAGAggGcgQGCnIAKzIrMhI5OTAxQQEzAyMTASMTMwFCAhDzvOx9/e/yvOsBbwLL+8YCy/01BDoAAwAiAAAEfgQ6AAMACQANAB9ADwwHBwsGBgIJAwZyCgIKcgArMisyETkvMzMRMzAxQQMjEyEBITczAQMDNwEByLvrvAOg/bb+7ge6AWaa8MYBUQQ6+8YEOv112gGx+8YB4YH9ngAAA/+8//8ERQQ6AAMABwAZABlADBIFEQpyAgMDBAgGcgArMjIRMysyMjAxQQchNyEDIxMhMwMOBCcjNzc+BDcDjyL9/iICuLzrvP3463cPKT5eh15RFyM7UTQhEwgEOsDA+8YEOv3qTZ2Obz4BxQIEPVxtbS0AAAMAIwAABZsEOgAGAAoADgAbQA0ACQwGAQoGcgsDCQpyACsyMisyMjISOTAxQQEzASMDMyMDIxMBEzMDAq0Bwtb9kaH3wje86rsDFbzsvAEmAxT7xgQ6+8YEOvvGBDr7xgAAAwAXAAAEQwQ6AAMABwALABtADQkGCAMCAgYHBnIGCnIAKysROS8zMhEzMDFBByE3EwMjEyEDIxMDTCH93iKTvOu8A3C87LwCdr6+AcT7xgQ6+8YEOgADABcAAARFBDoAAwAHAAsAGUAMCQYIAgMDBwZyBgpyACsrMhEzMhEzMDFBByE3MwMjEyEDIxMDjSH9+CI4vOu8A3K87bwEOsDA+8YEOvvGBDoAAgBUAAAEDAQ6AAMABwAQtwMGBwZyAgpyACsrMjIwMUEDIxMhByE3ArS87LwCRCH8aSEEOvvGBDq+vgAABQA5/mAFUgYAABYAKwBCAFYAWgAnQBUnBgZJHhERUjM+C3IzB3JYAHJXDnIAKysrKxEzMxEzMjIRMzAxQQcOAycuAzcTPgMXHgQHNzY2LgInJgYGBwMeAjMWPgIlNz4EFx4DBwMOAycuAzcHBgYWFhcWNjY3Ey4CJyYOAhMBMwEFSgIMPm2hb09zSyIDMA1AZYlXWXdHIAT0AgQFCB8/NjpXPRFKBypHMUVhQCT76wIKKkhoj1xRckUdAi4NQGSHVmmDRBH4AgUCGEE/OFY+E0cFJEQ2SmM+IHEBU+z+rQIWFV6/nl8DA0NwiUgBO02XekcCAkp6lJpaFiRgZVY3AgMsUDH+VC4+IwJAZ3ksFUykmXlGAwJMepFI/tNMk3VFAwNim7VrFixwZ0QCAiVHMAGgMEwuAQFMeoj8HQeg+GAAAAIAF/6/BEUEOgAHAA0AG0ANBgEDDQwMAApyAQZyCQAvKysyETMyETMwMXMTMwMhEzMDNwMjEyM3F7zrmgGamu28sGzYOH4hBDr8hgN6+8a//gABQb8AAgBtAAAEGAQ7AAMAFwAXQAsPFAkJAQAGcgEKcgArKxE5LzMyMDFBAyMTEwcOAicuAjcTMwMGFhYXFjY2BBi77LwuEjJucTh+ulsONes1CRtNRjpxbgQ6+8YEOv4hwRcdDgEBYLaDAUj+t0JfNQIBESAAAQAXAAAGLQQ6AAsAGUAMBQkGAgILAAZyCwpyACsrETMRMzIyMDFTMwMhEzMDIRMzAyHT65oBTJrsmgFLm+u8+qYEOvyGA3r8hgN6+8YAAgAR/r8GQgQ6AAUAEQAdQA4MBQgIBBEKcg8LBgZyAQAvKzIyKzIyETMzMDFlAyMTIzcBMwMhEzMDIRMzAyEGQmvZOH4h+/TrmwFMm+yaAUua7Lz6pr/+AAFBvwN7/IYDevyGA3r7xgACAFH//wSrBDoAAwAcAB1ADhESDxwEBA8CAwZyDwpyACsrMhE5LzMRMzIwMUEHITcBBR4CBw4DJyETMwMXPgI3NiYmJyUCbiL+BSIBkQEna7FkCAZThqVX/iC87ZvYOmNECQcgRzL+vAQ6wMD+qAEEUp10YI5fLgEEOvyFAQEpUT00SyoCAQAAAgAj//8F+AQ6ABgAHAAdQA4aGQ4LGAAACwwGcgsKcgArKxE5LzMRMzIzMDFBBR4CBw4DJyETMwMXPgI3NiYmJyUBAyMTAT0BJ2yxZAgGU4alV/4hu+ua2TpjRAkHH0gy/rwE3LzsvALiAQNTnXRfj18uAQQ6/IUBASlRPTRLKgIBAhj7xgQ6AAEAI///A+UEOgAYABlADA4LGAAACwwGcgsKcgArKxE5LzMRMzAxQQUeAgcOAychEzMDFz4CNzYmJiclAT0BJ2yxZAgGU4alV/4hu+ua2TpjRAkHH0gy/rwC4gEDU510X49fLgEEOvyFAQEpUT00SyoCAQAAAgAg/+gDzARRACcAKwAdQA4rKioJHRkUC3IEAAkHcgArMswrzDMSOS8zMDFBJgYGBwc+AhceAwcHDgMnLgI3FwYWFhcWPgI3NzYuAhMHITcCKDpePwveCofMcHGgYSUKBA5Vjb92datZBd8EIUs8SGpIKQgEBgMhTdMd/lUdA48CMFU4AXSsXgMCXJq/ZiRtx5lYAwJst3QBN2E+AwJAa387IzR3bEf+6KOjAAQAJf/oBgkEUgADAAcAHQAzACNAEyQDAgIZLw4HBnIGCnIOB3IZC3IAKysrKxEzEjkvMzIwMUEHITcBAyMTATc+AxceAwcHDgMnLgM3BwYeAhcWPgI3NzYuAicmDgIC7CL9zCEBFbzrvAFJAw5YkcR5dKZmKAsDDVqSxHhypWco+QIGBSZSRkpwTC0JAwYGJ1JHS25MLAKFwMABtfvGBDr90Bdwy51ZAwNcmsJpGHDJm1cDA1uYwIAXNnlqRQICP2yBPxc2e2xGAgJAboMAAv+9AAAEGAQ7AAMAHQAdQA4BEhITEwMJBAZyBwMKcgArMisyEjkvMxI5MDFBIQEhAQUDIxMnDgIHBhYWFwUHJS4DNz4DAUIBAv56/v8CiQHSvOubzDVjRwkHIkQrAUMf/tlJiWk6BQVVh6QCEf3vBDsB+8YDfAEBJks4L0AjAgGwAQErUXtRXYZXKQAEAA3+RwPxBgAAEQAVACwAMAAdQBAwLygcB3IVAHIUCnINBg9yACsyKysrMswyMDFBMwMOAiciJic3FhYzMjY2NwMBIwETIz4DFx4DBwMjEzYmJicmDgIBByE3AtjtVw5hp3YjQyIgGDMZNUMkB37+9esBCx9KDUV2pmxad0QVCHTtdQcUQ0FHa0suAakd/XMdAc799W6sYgEKCbwICThXLQY++gAGAPxFXruZWgMCQnGRUf1JAro7XjkCATdgdwLVpqYAAgA5/+kD7ARRAAMAKwAbQA0EDQMCAg0hGAdyDQtyACsrMhE5LzMRMzAxQQchNwEWNjY3Nw4CJy4DNzc+AxceAgcjNCYmJyYOAgcHBh4CApQc/jUcARQ7YkMO3QyKznFzomEkCgQOVY3Ad3mrWgHdI08+SmtHKAkDBgEgTgJoo6P+QwIvVjgBdK1dAgNamMFnJHDGmVYDAmu2dTlhPQIDP2mAPiM0eWpGAAAD/7j//wZJBDoAEQAVAC4AJUASFi4uACQhIQoJCnIUFRUjAAZyACsyMhEzKzIyETMROS8zMDFBMwMOBCcjNzc+BDcBByE3AQUeAgcOAychEzMDFz4CNzYmJiclAVDqdw8oPl6HXlMZIjtRNCEUCAKKIv4NIgIZASZns2kHBVWGpFX+Ibzsm9g3ZEQJCCZKLv69BDr96k2djm8+AcUCBDxdbW0tAc/AwP6HAQNLlXJeilkrAQQ6/IQBASdNOzJBHwIBAAMAF///BloEOgADAAcAIAAlQBIVFhMTBggDIAMCAgYHBnIGCnIAKysROS8zMxEzETMRMzIwMUEHITcTAyMTAQUeAgcOAychEzMDFz4CNzYmJiclA1Mi/d8hjbzrvALeASdnsmkHBlSGpFT+ILzsm9g4Y0UICCZJL/69Apy+vgGe+8YEOv6HAQNKlXNdilorAQQ6/IQBASdNOzJBHwIBAAADAA0AAAPyBgAAAwAaAB4AGUANHh0WCgdyAwByEQIKcgArMisrMswyMDFBASMBEyM+AxceAwcDIxM2JiYnJg4CAQchNwID/vXrAQsfSg1FdqZtWXdEFgl07XYGFERBRmtLLgG7Hv1zHgYA+gAGAPxFXruZWgMCQnGRUf1JAro7XjkBAjhgdgLep6cAAAIAF/6bBEUEOgADAAsAF0ALAAYGCwpyCQQGcgIALysyKzISOTAxZTMDIwMzAyETMwMhAX3sYOtL65oBmprtvPyOwP3bBZ/8hgN6+8YAAAIAX//mBzAFsAAYADAAG0AOLB8JchQHCXImGg4AAnIAKzIyMisyKzIwMUEzAw4DJy4DNxMzAwYeAhcWNjY3ATMDDgInLgM3EzMDBh4CFxY2NjcDqMivDUp3pWhimGMqC671rQUGID81TW1ACwNB9a4ThtmNYYtWIAqux60GCSNENUxoPQoFsPwBYad+RAICRnukYAQA+/8sV0ouAgNFdkYEAPwBiNBzAwNLfqFaBAD7/y1ZSC0CA0Z3RAAAAgBH/+cGKgQ6ABgAMQAbQA4sHwtyFAcLciYaDgAGcgArMjIyKzIrMjAxQTMDDgMnLgM3EzMDBh4CFxY2NjcBMwMOAicuAzcTMwMGHgIXFj4CNwMBwHIMQmyVYVuGVSIJcuxyBAIWMi1EXTYJAq/scxB1wYNafUkbCXLAcQQDGzgvMkgxHQYEOv1YWZt2QAIDQ3OXVwKp/VYiT0UuAwNCbDwCqv1YfMJtBAJHd5VRAqn9ViZQRCsCAihEUyoAAAIAIf/+A+cGFwAXABsAIUAQDQoAFxcKGhsbCgsBcgoKcgArKxE5LzMROS8zETMwMUEFHgIHDgInIQEzAxc+Ajc2JiYnJQEHITcBQgEnbrBgCAqI03n+IAEP7O7YPmZBCAgdRTb+vQHaHf1YHQMAAQRYo3WBsVsCBhf6qAEBMFk/NVEwAwECoKenAAMAK//qBuQFyQADACwAMAAgQBEDAgIvMAJyLwgdFANyKQkJcgArMisyPysSOS8zMDFBByE3ATcGBgQnLgM3Nz4DFx4CFycuAicmDgIHBwYGHgIXFjY2AQMjEwUsIfwvIgQz8Bit/vydjsJuIxASFGqr7JWY0nAG9AEtbF5mlWQ7DBIHBRI0YUxkkF38pP30/QNOwMD+jAKc4HYDA3jE8315hvrEcAMDgd+UAVaGTwMDVZCvVnw5g35pQQIER4UEM/pQBbAAAAMAGf/pBaQEUQADACsALwAkQBMDAgIuLwZyLgohHRgHcggEDQtyACsyzCvMMz8rEjkvMzAxQQchNwEWNjY3Nw4CJy4DNzc+AxceAgcjNCYmJyYOAgcHBh4CAQMjEwRkHfywHQKAO2JDDt0Mis5wdKJhJAsDDVeMwXd4rFoC3CNPPkprRykIBAYCIE3+c7zsvAJxp6f+OgIvVjgBdaxdAgNamcBnJHDGmVYDA2q2dTlhPgEDP2mAPiM0eWpGA477xgQ6AAAE/6wAAASJBbAABAAJAA0AEQAkQBERDQwMAgAGBgcDAnIPBQUCCAA/MxEzKzIyETMROS8zMzAxQQEhATMTAzczEwMHITcFAyMTA0H9c/74AvSPZMo6kPagIP0rIAHQXtheBRb66gWw+lAFOHj6UAJmuLhK/eQCHAAE/50AAAO6BDoABAAJAA0AEQAeQA4RDQwMAQcDBnIQBQUBCgA/MxEzKzISOS8zMzAxQQEjATMTAwMzEwMHITcFAyMTAg/+ifsCWLoljBiq4HEe/XUeAY9EtUQCwv0+BDr7xgLYAWL7xgHFqalA/nsBhQAGAD4AAAaTBbAAAwAIAA0AEQAVABkANEAaCRQUBgYYFREREBADAgIYCBYCcgQKCgsHAnIAKzIyETMrPzkvMzMRMxEzETMRMxEzMDFBByE3AQEhATMTAzczEwMHITcFAyMTAQMjEwNwIf3PIAQN/XP+9wL1j2PJOpD2oCH9KyEBz17YXv4b/fX9Ama3twKx+ukFsPpQBTh4+lACZri4Sv3kAhwDlPpQBbAAAAYALQAABYIEOgADAAgADQARABUAGQAuQBcVEREQEAMCAhgZBnIJFBQGBhgKCwcGcgArMj8zETMRMysSOS8zMxEzETMwMUEHITclASMBMxMDAzMTAwchNwUDIxMBAyMTAvQe/dIeAxL+iPsCWLoljBiq4HEe/XYeAY5DtUP+dbzsvAHFqKj9/T4EOvvGAtkBYfvGAcWpqUD+ewGFArX7xgQ6AAUAEgAABl8FsQAWABoAHwAkACgANEAZGRoaJBsfHyMjEygGBhMTARwkAnINJycBCAA/MxEzKzISOS8zETMRMxEzETMRMxEzMDFhIxM+AjMFHgIHAyMTNiYmJyUiBgcBByE3EwEhASMDAQcjAQEDIxMBB/U6FpbwmwHWkM1jEDr1OgoeXVL+K4efFQQ6I/0FI7cCCwEd/XeSogEYMoz+pQJXhfSGAWGgx10BAmPGmP6fAWJRbTkCBHWJBE/Jyf0XAun8lwNq/PtlA2n9Ufz/AwEAAAUAFQAABScEOwAXABsAIAAlACkAMEAXGhsbJSAkJBMpBgYTEwEdJQZyDSgoAQoAPzMRMysyEjkvMxEzETMRMxEzETMwMWEjNz4CMwUeAgcHIzc2JiYnJSIGBgcBByE3EwEhASMDEwcjAQEDIxMBAOsaFIPYkwE1iLZSDxrsGwgOSEz+ylVwQAwDhh79RB20AYABD/4FiGXJK4H+7wH+X+xgrZPDXwIDZcCKrq9EbUMDBDpxUQONq6v9xwI4/VoCp/2vVgKm/ez92gImAAcANwAACJMFsQADAAcAHgAiACcALAAwADxAHiEiIiQsAnInKysbMA4OGxsDAgIFBwJyFS8vCQkFCAA/MxEzETMrEjkvMzMRMxEzETMRMysyMhEzMDFBByE3EwMjEwEjEz4CMwUeAgcDIxM2JiYnJSIGBwEHITcTASEBIwMBByMBAQMjEwUBIvxrIr399f0CB/U5FJfymwHVkc5iETn1OgoeXFP+KoafFQQ6I/0FI7cCDAEc/XaRogEYMoz+pQJYhfaGAyfAwAKJ+lAFsPpQAWChyFwBAmLGmf6fAWJRbTkCBHaIBE/Jyf0XAun8lwNq/PxmA2n9Ufz/AwEAAAcAIwAABygEOwADAAcAHwAjACgALQAxAD5AHiUiIyMtLQcoLCwbMQ4OGxsDAgIGBwZyFTAwCQkGCgA/MxEzETMrEjkvMzMRMxEzETMRMxEzETMRMzMwMUEHITcTAyMTASM3PgIzBR4CBwcjNzYmJiclIgYGBwEHITcTASEBIwMTByMBAQMjEwStIPw9IOC867wCIuwbFIPYkwE1ibZRDxrtHAgOR03+ylVwQAwDhh79Qx60AYABD/4GiGbJKoH+7gH/YOtfAmG1tQHZ+8YEOvvGrZTCXwIDZcCKrq9EbUMDBDpxUQONq6v9xwI4/VoCp/2tVAKm/ez92gImAAP/qf5FBDIHigAXAEAASQArQBQYDQxAQAArLAlFQ0NCSEGARxcAAgA/Mt4azTI5MhEzPzMSOS8zMzMwMUEFHgMHDgMjJzcXMjY2NzYmJiclExceAwcOAyMnBgYHBhYWFwcuAjc+AjMXPgM3Ni4CJycBFzc3FwEjAzUBDwEDWKF9QwYHZZy4WaEYgkmEWQsJNGI9/uEtf1eujE4HCF2VumY4N14IByE7IVZKcT4EBWqlXTg2Z1Q4CQgdQl85mAE/da3PAf7Kk+sFsAECLFuOYmiPWCgBjAEuYk9DVCkCAf4kAQEnVI1obaRtNgEBMzwrPSwQkxtfg1NnfDgCAR48WDo+WDkdAQEE/pybBBD+7QETEAAD/7T+TQPEBh4AGABBAEoAJkARDRkMQUEALUNJRkRCgEgYAAYAPzLeGs0yMjI5LxI5LzMzMzAxUxceAwcOAyMnNxc+Ajc2LgIjJRMXHgMHDgMjJwYGBwYWFhcHLgI3PgIzMzI+Ajc2LgInJxMXNzcVASMDJ83/RZSATAQDYpSjRqkWiTRvUQkGIDpDHv7jRIhAnI5aAwRajqRPMThkCgYdOCBVQms8AwRlnlYyJldPNwgIJ0VQIaH4dazQ/suU6wEEOgEBHUJxVlhyPxkBfQEBGUM9JzEbCgH+vQEBEzdpVV2ATSMBAjA+KjwtEoodYH5MYnY0DyI8Li44HQoBAQRRnJsEEf7uARMQAAMAYf/pBRsFxwAXACgAOQAfQBIMKWoyIGoyMgwAGGoAA3IMCXIAKysrEjkvKyswMUEeBAcHBgIGBicuBDc3NhI2NhcmDgIHBgYHITY2NTYuAgEWPgI3NjY3IQYUBwYeAgMvda52QhENCxNrru+Zda53QhINCxRrr/CLXpBmQhABAwICpgEBBww0a/7iX49lQRECAgH9WQEBBQ01awXEAlKLs8lnT4r+/8t0AwJSi7TJZ1CJAQDLdM8DSX+fUQcMBwYLBkqYgVL7wgNIf59RBgwFBQsGSJaCUgAAAwA0/+gEHQRSABUAIAArAB9AEgshaicbaicnCwAWagAHcgsLcgArKysSOS8rKzAxQR4DBwcOAycuAzc3PgMXJg4CByE2LgIDFj4CNyEGHgICd3OmZSgLAg5ZksR4cqZmKQsCDliSxGxAY0kyDwHvARAsTLs/ZUoyDv4PAhArTgRPA1yawmkYcMmaWAMDW5jAaRdwy51ZwwIvUmg3MmRTNP0cAi9TajcyZVQ0AAIAqAAABWEFxgAOABMAGUANDhIIBRMCcgUDchIIcgArKysRMxEzMDFBAT4CFxcHJw4CBwEjAxMTIwMCWgFdJGKPZi8ZEyg7KxD95b8YghSw4wGGAvxVlVoBAdIBASY8IvuSBbD7xP6MBbAAAAIAdQAABEoEUgASABcAFUALFwZyEhYKcgwFB3IAKzIrMiswMUETPgIXMhYXByYmIw4CBwEjGwIjAwHPvh1af1cfNhsqCxcMHjEmDP55pRxEC5ekAW4BwUqFVAEMDLoDBQEeLxj83wQ6/Sf+nwQ6AAAEAGH/dgUbBi4AAwAHAB8ANwAkQBACAicnAxoDcgcHMzMGDglyACvNMxEzfC8rGM0zETN9LzAxQQMjEwMDIxMBBwYCBgYnLgQ3NzYSNjYXHgQFNzY2LgInJg4CBwcGBh4CFxY+AgOvSrhJJUu4SwL1CxNqrvGYda53QhINCxNsr/CYda52QRL+8gsIAxY3ZU9omGg9DQwHAhU5ZE9pmGc9Bi7+WQGn+vj+UAGwAdxQif7+ynQDA1GLtMlmUYkBAMt0AwJSi7PKuFM8h4JrQwMDWZezWFI8h4NsQwMEWpe0AAQANf+GBB4EtQADAAcAHQAzACRAEAcHJCQGGQtyAgIvLwMOB3IAK80zETN9LysYzTMRM3wvMDFBAyMTEwMjEyU3PgMXHgMHBw4DJy4DNwcGHgIXFj4CNzc2LgInJg4CAvFHqUcISKlI/pkCDlmRxHlzpmYoCwIOWpHEeHOlZin5AwUFJlJGS29MLQkCBwYmU0ZLb0wsBLX+aAGY/HD+YQGf5Rdwy51ZAwNcmsJpGHDJm1cDA1uXwYAXNnlrRAICP2yCPhc2em1GAgJAboMABABj/+cG2QdAABUAIABBAGUAM0AZW04JclQxMSw4CXJCQ0MRCAgbGxYWIiECcgArMjJ8LzMYLzMRMzIRMysyMi8zKzIwMUEzBycuAyMiBgcHJzc2NhceAwEnNjY3NxcHDgIlBw4CBwMGHgIXFjY2NxMzAw4DJy4DNxM+AgU3HgMHAw4DJy4DNxMzAwYeAhcWPgI3EzYuAgXcIAgZPHBvbjgzRAoCfgIJgms9cG5y/k5RHTMKEp4NBzVK/roWT2g7DFQFAx0/OE1tPwtBxkANSnmkZ2WYYCYKVRSH3AMSEGSVXyYLVQ9Qgq9sYoxYIgpBxj8GCiZGNjtWPCMIVQYDG0AGwIQBAycwJTozEwEmanMCASYxJf5TPSFGLF8BZS1MO4nIAU99R/3tLF1SNQIERndGAYb+emCnfUUDAkyCqmACEpHUdMnLBU2AqWD97maugkcDAkp+oVsBhv55L1pILAICLlJjMwITL1xOMgAABABM/+cFwwXnABUAIABCAGYAM0AZXE8LclUyMiw5C3JDREQRCAgbGxYWIiEGcgArMjJ8LzMYLzMRMzIRMysyMi8zKzIwMUE3BycuAyMiBgcHJzc2NhceAwEnNjY3NxcHDgIlBw4CBwcGBhYWFxY+Ajc3MwcOAycuAzc3PgIFNx4DBwcOAycuAzc3MwcGHgIXFj4CNzc2NCYmBTciCB07cWxuODRFCAJ/AgiEaz1wbXL+T04dMwkSnw4HN0r+5xVGWjIKIgQBFDAuMUk0Hwceth4LPWWQXV2FUSAJIhJ6ygKLEFyIVSIJIgxEcZtjWHlIGQgfth0FBxw3LTJGLRoFIwQWNgVnAYUBAicxJTozEgEla3ICASYxJf5SPSBHLF4BZS5KO3vAAUhxPvIhU000AgMoRFQqxsVUmnlDAwJJepxW8YbDbMDBBEh3mlnxW6F6RAMDSXiVTsXGJU9GLAEDL0tYKPQoUkYvAAADAF//5gcwBxAABwAgADgAK0AVNCcJcgUCAQEHBy0hCAgVAnIcDwlyACsyKzIRMzMzfC8zGC8zMysyMDFBITchByEHIwczAw4DJy4DNxMzAwYeAhcWNjY3ATMDDgInLgM3EzMDBh4CFxY2NjcD8v7AFQM6FP6vF6k0yK8NSnelZ2OYYyoLrvWtBQYgQDRNbUALA0H1rhOG2Y1hi1YgCq7HrQYJI0Q1TGg9CgaYeHh+avwBYad+RAIBR3ukYAQA+/8sWEkuAgNFdkYEAPwBiNBzAwJLfqJaBAD7/y1ZSC0CA0d2RAADAEf/5wYqBbEABwAgADkAK0AVNCcLcgUCAQEHBy0hCAgVBnIcDwtyACsyKzIRMzMzfC8zGC8zMysyMDFBITchByEHIwczAw4DJy4DNxMzAwYeAhcWNjY3ATMDDgInLgM3EzMDBh4CFxY+AjcDSf7QFQMYEf69F6kxwHIMQWyWYFyHVSEIc+xyBAIWMi1EXTYJAq/scxB1wYNafUoaCXLAcQQDGzcwMUkxHQYFOXh4f4D9WFmcdUEDAkRzl1cCqf1WIk9FLgIDQWw8Aqr9WHzCbQMCR3eWUQKp/VYmUEMrAgInQ1QqAAIAWP6OBNwFyAAhACUAGUAMFhINA3IlAAAkAQlyACvNMxEzK8wzMDFlBy4ENxM+AxceAgcjNiYmJyYOAgcDBh4DFwMjEwI0EGWccUMXDCoTZ6LahZjUZwj0BidoXFWCXDkLLAgBFzRX4F/0YLPJBUZ2mLBdARB736xiAwJ73ZdUhVACAkh6lEn+7TVxaFU1Bf3cAiQAAAIARP6LA+8EUQAfACMAGUAMFREMB3IgAAAiAQtyACvNMxEzK8wzMDFlBy4DNzc+AxceAgcnNiYmJyYOAgcHBh4CFwMjEwHlEm+eXyMLAw1Wjb91d6pYBd0DIEs8SGpIKwgFBgIgTtpf7GCtwwddmL1mI23HmlcDA2u3cwE2YT8CA0BrfzwjN3ZmRAf94AIgAAEAOwAABLgFPgATAAixDwUALy8wMUEBFwcnAyMBJzcXASc3FxMzARcHAzz+8fxT/em1ASb7Uv4BDf1U/PCy/tX/VgMs/ouscqn+vgGWq3KqAXWrdKoBS/5hq3EAAfzwBKX/4AX8AAcAFbcGBgQEAQICAQAvMy8RMxEzfC8wMUMhByc3ITcXRv3zF6YqAg4SpgUjfgHqbAEAAf0QBRb/8gYUABUAErYBFBQPBoALAC8azDIzETMwMUEXFj4CFxYWBwcnNzYmJyYOAgcj/RoZQXp1eEBkcwUDfQIDJjE9d3h7PyUFmgEBJjElAQFvZicBFC42AgIjMScBAAAB/jEFGP8CBmIABQAKsgCAAgAvGs0wMUEnNzMHF/62hRa0HyYFGM97pG0AAAH+PQUa/1cGYgAFAAqyAYAEAC8azTAxQwcnNzczw7VLThi0BdG3THGLAAj6Q/7CAaEFsQANABsAKQA3AEUAUwBhAG8AAEEHNjYXFhYXJzYmIyYGAQc2NhcWFhcnNiYjJgYTBzY2FxYWFyc2JiMiBgEHNjYXFhYXJzYmIyIGAQc2NhcWFhcnNiYjJgYBBzY2FxYWFyc2JiMmBgEHNjYXFhYXJzYmIyIGEwc2NhcWFhcnNiYjIgb+D3AIcVpYawFsAx4wMDQCAnEIcllYbAFsAh0xLzRRbghwWlhqAWsCHTAwNf7bbghwWldrAWsCHTAwNf2VcQlxWldrAWsCHTAwNf6ncQhyWlhrAWwDHTEwNP7xbghwWldrAWsCHTEvNTxvCHBaV2wBbAIdMDA0BPQBWGYBAWdXASo8ATv+wQFYZgEBZ1cBKjwBPP3gAVdmAQFmVwEqPDv90AFXZgEBZlcBKjw7/rsBWGYBAWdXASo8ATsE8AFYZgEBZ1cBKjwBO/3fAVdmAQFmVwEqPDv90AFXZgEBZlcBKjw7AAj6c/5jAXgFxgAEAAkADgATABgAHQAiACcAAEU3FwMjAQcnEzMBNzcFByUHByU3ASc3JRcBFwcFJwEHJwM3ATcXEwf9Y4UOq2YBpYQOqmYBIA0LATgQ+lsOCf7HEQVoWwMBTD762loC/rZAAgZnEV9CAt9nE15DPQMT/rAGBAMRAVH8JowKgFqUjAqAWgEIYhKYTvwxYhOYTwQCXwIBUTv7V2AC/q88//8AJf6ABXwHJgQmANwAAAAnAKEBRwE+AQcAEARN/8gAFUAOAiMEAACYVgEPAQEBXlYAKzQrNAD//wAX/oAEbQXbBCYA8AAAACcAoQCL//MBBwAQA1j/yAAVQA4CIwQBAJhWAQ8BAQF9VgArNCs0AAACACH//gPnBmAAFwAbABpADBoLGwJyABcXDQ0KEgA/MxEzLzMrzjMwMUEFHgIHDgInIQEzAxc+Ajc2JiYnJQEHITcBQgEnbrBgCAqI03n+IAEb7PrYPmZBCAgdRTb+vQH/Hv1XHgMAAQRYo3WCsVoCBmD6XwEBMFo+NVEwAwEDb6amAAACACYAAAT6BbAAAwAbACNAEQECBQADBgYFBRIQEwJyEghyACsrMhE5LzMRMzMRMzMwMUEBBwEDJTcFMjY2NzYmJiclAyMTBR4CBw4CA1kBRGv+vUP+giMBY1OLWwsLLGRM/s7a9f0CC4fTcgwNpf4D3/42VgHJ/pYBxwE5c1dKcUEDAfsYBbABA23JjJ3NYgAE/8j+YAQQBFIAAwAIAB4ANAAlQBQAAzABAjAlGg8LcgcGchoHcgYOcgArKysrETMyMjIRMzMwMUEBBwEDAyMBMwEHDgMnLgM3Nz4DFx4DBzc2LgInJg4CBwcGHgIXFj4CAoIBHGz+5YXe7AEE2QJhAgxFdapzZolTIAQKEE16qG1vjEkT9wIFAyBNRD5kTDMLHwIXM082SmpHKAGr/lNWAa4CBvsEBdr98xVix6ViAwJdlrNYUF++nV0EA2ShvXAWM3hrRgIDLVBmN8QyXEssAgJCb4MAAgAjAAAE6gcTAAMACQAVQAoCBgYDCQJyCAhyACsrzjMRMzAxQQMjExMHIQMjEwTqX+xfpiP9cNr0/AcT/d4CIv6dyPsYBbAAAgARAAAD0gV3AAMACQAVQAoCBgYDCQZyCApyACsrzjMRMzAxQQMjExMHIQMjEwPSWexZnSL+NpvrvAV3/gMB/f7DwPyGBDoAAgAr/sMErAWwAAUAHQAZQAwGBwcTEgIFAnIECHIAKysyLzM5LzMwMUEHIQMjExM3Fx4DBw4DBzc+Azc2LgInBKwj/XHa9f0YI+iBxYE2Dg1alc+CE1N2TywJCRE8b1UFsMj7GAWw/M3GAQJVl9F/f9GaVQK3AkFtiUpMiWk/AgACABH+4AOFBDoAFAAaABtADQABAQsXGgZyGQpyDAsALzMrKzIROS8zMDFTNxceAgcOAwcnPgI3NiYmJwEHIQMjE64j3YzZcg4ITHeWUUhGckoKCy9sUgHcIv42m+u8AcrGAQNy0pNYmHhWF60ZUXNNUXlFAwJxwPyGBDr///+k/poH6AWwBCYA2gAAAQcCawaFAAAAC7YFGwwAAJpWACs0AP///7D+mgaBBDoEJgDuAAABBwJrBUgAAAALtgUbDAAAmlYAKzQA//8AK/6YBXYFsAQmAkYAAAAHAmsEDP/+//8AIv6aBH4EOgQmAPEAAAEHAmsDVAAAAAu2AxECAQCaVgArNAAABAAkAAAFgwWwAAMABwANABEAL0AXDw4OCwwEBAwMCwcHCwsAEAMIcggAAnIAKzIrMhI5LzMvETMRMy8REjkRMzAxQTMDIwEzAyMBIQEhNyEHNwEhASD2/fUCDJt8mwKYATf9nP4hBgGFHsYBMf7VBbD6UARL/TgELfzA2ami/L4AAAQAIQAABMoEOgADAAcADQARAC1AFg8ODgsEBAwMCwcHCwsAEAMKcgkABnIAKzIrMhI5LzMvETMRMy8RMxEzMDFTMwMjATMDIwEhASE3IQc3EyHc7LzrAdWSapICDAEy/g7+SQcBYSW/9/7gBDr7xgNT/aUDQv112qeA/Z4AAAQApAAABuEFsAADAAcADQARACNAERAPDwsKCgMOBghyDQcCAwJyACsyMjIrMhI5LzMzETMwMUEHITchAyMTIQEhNzMBAwE3AQLjIf3iIgLB/PX9BE79Mf6hBegCBrz+pLYBvgWwwMD6UAWw/MLaAmT6UAKkt/ylAAQAbAAABbQEOgADAAcADQARACNAERAPDwsKCgMOBgpyDQcCAwZyACsyMjIrMhI5LzMzETMwMUEHITchAyMTIQEhNzMBAwM3AQKTIv37IgJxvOy8A6H9tv7uB7kBZ5rvxgFPBDrAwPvGBDr9ddoBsfvGAeGB/Z4A//8AJv6aBYUFsAQmACwAAAEHAmsEYAAAAAu2Aw8KAACaVgArNAD//wAX/poEYQQ6BCYA9AAAAQcCawNgAAAAC7YDDwoAAJpWACs0AAAEACYAAAfqBbAAAwAHAAsADwAfQA8HBgYKAgMDDAsCcg0KCHIAKzIrMjIRMxE5LzMwMUEHJScDByE3EwMjEyEDIxMH6iH9m5ZuI/0RI6j99v0EYv30/AWwwAG+/aHHxwJg+lAFsPpQBbAABAARAAAFlgQ6AAMABwALAA8AH0APBwYGCgIDAwwLBnINCgpyACsyKzIyETMROS8zMDFBByE3AwchNxMDIxMhAyMTBZYi/lAjoCL93iGUvOu8A3C87LwEOsDA/jy+vgHE+8YEOvvGBDoAAAIAKv7CB4kFsAAHAB8AGUAMCAkJFAQHAnIGCHICAC8rKzIvOS8zMDFBAyMTIQMjEwE3Fx4DBw4DBzc+Azc2LgInBYH989n9j9r1/QNaI+mBxIE2Dg1Zls6DE1N2TywJChI8b1UFsPpQBOj7GAWw/MzGAQJVl9F/f9GaVQK3AkFtiUpMiGo/AgAEABH+4wZHBDoAFAAYABwAIAAjQBEeFxgYAAEBCx0cBnIbCnIMCwAvMysrMhE5LzMyETMvMDFBNwUeAgcOAwcnPgI3NiYmJwMHITczAyMTIQMjEwMyIwEKjuF5DQdLd5RRS0ZySgoLN3ZT0SL9+CI5vOu8A3K87LwBzcYBA27Rl1mXeVYXrhlQdE1VeUECAm7AwPvGBDr7xgQ6AAABAF//6AXmBccAQwAdQA45DAwjIgNyAAEBLhcJcgArMjIRMysyMhEzMDFlByYkJgI3Nz4DFx4DBwcGAgYEJy4DNzc+AzcHDgMHBwYeAhcWPgI3NzY2JiYnJg4CBwcGHgIFZBGg/uXQZBggDkd4qG9xkU0XDCAXjNj+7Z2P2o06Eh0SWpLKgRhMakgoCh4LEUN+YnC7kF4RIgUHEDo7PlQzHAYhEj2Oy7DGBWa7AQ6u017DpGMEA22tx1vOmP76xWsDA3HB9YbBdtuvaAPPAlJ9iz7EUaiNWAMDT4+6aOMnc3JPAwNHbXcu2ILGiEcAAQBL/+gElgRTAEMAHUAOOQwMIyIHcgABAS4XC3IAKzIyLzMrMjIRMzAxZQcuAzc3PgMXHgMHBw4DJy4DNzc+AzcHDgMHBwYeAhcWPgI3NzY2JiYnIg4CBwcGHgIEUwp+5KpVEBEKNlyEV1dwPRIHERBtqdV5dK5wLQsKDEd1oWUXMUUsGgcKBwksWEdNgWM/ChICBQoiJCc0IBIDEg44daCOowVLj9KMgUqYfUsDA1iKnEd/dsiUTwMDYKDKbE5fq4RNA8YFOVNdKU86fm9IAwM3Y4FHghhOUzsEMEpOHYdllWMxAP///8D+mgVGBbAEJgA8AAABBwJrA7IAAAALtgEPBgAAmlYAKzQA////uv6aBBIEOgQmAFwAAAEHAmsCvQAAAAu2AQ8GAACaVgArNAAAAwCa/qEGbQWwAAMACQARAB1ADgkNDQgKCHIFEAwCAwJyACsyMjIvKzIyETMwMUEHITcBAyMTIzcFEzMDIRMzAwReIvxeIgWFcuI9fyT8Rvz22wJy2vX9BbDAwPsZ/dgBX8nJBbD7FwTp+lAAAwBX/r8E2QQ7AAMACwARAB9ADwIDAw0KBQZyCAcHEAQKcgArMjIRMysyLzkvMzAxQQchNxMTMwMhEzMDNwMjEyM3Ayki/VAiMbzsmwGbmu28sGvaOH4iBDvAwPvFBDr8hgN6+8a//gABQb///wDE/poFXQWwBCYA4QAAAQcCawQ0AAAAC7YCHRkAAJpWACs0AP//AG3+mgQ3BDsEJgD5AAABBwJrAzYAAAALtgIbAgAAmlYAKzQAAAMAtAAABU4FsAADABkAHQAjQBEDAwoKFQICFRUEHAhyGwQCcgArMisROS8zLxEzETMvMDFBAyMTATMDBhYWFxY+AjcHDgMnLgI3ATMDIwNDf5p//mj1SgokZVkxYmFgLhIuXmBhL5LYahIDk/X99QQQ/SQC3AGg/jxXdDwCAQcPFg3JDxYNBgECaM6aAcP6UAAAAwCCAAAELgQ7AAMABwAbACNAEAAAGBgNAQENDQUKchIEBnIAKzIrMi8zfS8RMxEzGC8wMUEDIxMBAyMTEwcOAicuAjcTMwMGFhYXFjY2AqBqmmoCKLzsvC0RMm5xN3+5XA416zUIGk1GOnFuAyz9oAJgAQ77xgQ6/iHCFh4NAQFgtoMBSP63Ql81AgERIAAAAgAcAAAEtQWwABUAGQAZQAwBFwYRERcYAnIXCHIAKysROS8zETMwMWEjEzYmJicmDgIHNz4DFx4CBwEjEzMEWfVKCiNlWTFiYWEvFC1eX2AwkthqEfxu9v31AcVWdTsCAQcPFQ7JDxUNBgECZ86a/j0FsAACAFX/6QW7BcYACQA2ACVAEgUdAQEdHQYcHAokFQNyLwoJcgArMisyETkvMzMRMy8RMzAxUxcGFhYXBy4CAS4DNzc+AxceAwcHITchNzYuAicmDgIHAwYeAhcWNjcXDgJbrAYfUUcPeJhEAwGK1Ys6EicTa6rchY26ZRsRFfxdIgKnBgwIL2JQVYVhPA0pCxRGfV5etFcdNYuSBDoBRGU7Ba8FbbX8IgFeqeSG/3rhrmIDA3bC7XuJviJChG5EAgNFd5JL/wBTlHNCAgIoIsMmJwwAAAL/8v/qBHMEUQAIADUAJUASBBwBARwcBRsbCSMUB3IuCQtyACsyKzISOS8zMxEzLxEzMDFDFwYWFwcuAgEuAzc3PgMXHgMHByE3BTc2LgInJg4CBwcGHgIXFjY3Fw4CCKAIS2UOcI9BAnxvqG8vCQUMV47CdnGaWh4MEPzTHgI+BQcMKUg0S2xJKQgFBhAyWkRWjDpzL4eeA10BYnAGogVkp/z6AlOQumopbcyfWwMDWZa7ZWetARYuWEYqAwJCcIQ+KDtzYDsCAks8fERaLAADACT+uQVUBbAAAwAJACEAIUAQCgYGCwgHBxcWCQMCcgIIcgArKzIvMzkvMzMzETMwMUEDIxMhASE3MwEBNxceAwcOAwc3PgM3Ni4CJwIW/fX8BDT9Ff7YBs4CBv1tJPGAxoA3Dg1bmNCCElF2TS0JCRA6bFQFsPpQBbD8w98CXvzCzQECVZnQgH/Sm1YDwAFBa4dJSoZpQAIAAwAh/uQEfgQ6AAMACQAeACFAEBYVCQZyBgoKBwsLAQMGcgEALysSOS8zMxEzKy8zMDFBAyMTIQEjNzMBATcFHgIHDgMHJz4CNzYmJicByLzruwOi/aH+B6MBff15IwEMi+R9DQhMeZRQR0RxTAkMO3hQBDr7xgQ6/XXaAbH9dsUBA2XHmFiUdFMWrRhMb0tWbzkC////xf6ABX4FsAQmAN0AAAEHABAETP/IAAu2AyQGAACYVgArNAD///+8/oAEbQQ6BCYA8gAAAQcAEANY/8gAC7YDJAYBAJhWACs0AAABACv+SAWCBbAAGQAZQAwZCHIXAgIRCgUAAnIAKzIvMzkvMyswMUEzAyETMwEOAiciJic3FhYzMjY2NxMhAyMBKPVvAnBv9f7+D2SpeCNFIiMXMRg1QyUIcf2RbPUFsP2CAn76GHCvYQELCMIHCDdVLQKj/ZUAAQAR/kgEPQQ6ABkAHUAPGQpyFwICABEKD3IFAAZyACsyKzISOS8zKzAxUzMDIRMzAw4CJyImJzcWFjMWNjY3EyEDI83rTwGZT+zDDmKmdSNDIiIXMBk0RCUHVP5nTOsEOv48AcT7iG+rYAEJCbwHCQE4Vi4B9v5IAP//ACb+gAWFBbAEJgAsAAABBwAQBFb/yAALtgMWCgEAmFYAKzQA//8AF/6ABGsEOgQmAPQAAAEHABADVv/IAAu2AxYKAQCYVgArNAD//wAm/oAGzgWwBCYAMQAAAQcAEAWY/8gAC7YDGw8AAJhWACs0AP//ACP+gAXDBDoEJgDzAAABBwAQBK7/yAALtgMZCwEAmFYAKzQAAAEAS//pBS0FxAAsABtADRoLERQUCyUAA3ILCXIAKysyETkvMxEzMDFBHgMHBw4DJy4DNzchByEHBh4CFxY+Ajc3Ni4CJyYGByc+AgLtl+KQNxMRE3O18JGSznkpEhcEAyP8+QgNFUR2VWKYbkMOEg0TS4ppY75cHjqRlwXDAWq8+JB7hPjEcAMDbLrxh4/DI06IZjsDAlOMq1V8XKmFTwICKCPFJScMAAIAL//oBJ4FsAAHACUAH0APBQgIBCUlABwSCXIHAAJyACsyKzIROREzMxEzMDFBIQcBIzcBIRM3NhYWBw4DJy4DNzMGFhYXFjY2NzYmJicnASEDfR79164XAZr9pMCUis9rCwljncBmYJ9yPAXzBCtbQkmCWAoLLG1WkwWwrP3igQGB/nMHAWzKjm6lbjYCAjxvnGE/ZDwCAzlrS1Z6QgMBAAL/8f5zBFYEOgAHACUAH0AOCAUFBCUlABwYEgcABnIAKzIvzDMSOS8zMxEzMDFTIQcBIzcBJRM3MhYWBw4DJy4DNzMGFhYXFjY2NzYmJicn3QN5G/3arhcBlf2owY+J0GwLCWGcv2VgnnI6BOoELVxES4RaCgstb1iTBDqk/diCAYkB/mcGaceObaVuNgICPG6cYEBoPQIDOm5NV3pCAwEA//8AJ/5HBPgFsAQmALFMAAAmAkCpKAAHAm4BJwAA////+v5DA9QEOgQmAOxMAAAnAkD/gv92AAcCbgD6//z////A/kcFRgWwBCYAPAAAAAcCbgOrAAD///+6/kcEEgQ6BCYAXAAAAAcCbgK2AAAAAQApAAAE7AWwABgAErcDAAALEA0CcgArLzM5LzMwMUEFByUOAgcGFhYXBRMzAyUuAjc+AwJ1AXIj/qpSilwKCytjSgEk2vX8/gKG0nEMCmSgxgOaAccBAT92VEhyRAMBBOn6UAEEbceOc652PAACAEL//wZtBbAAGAAtAB9ADhsLCxAlJQMAABoQDQJyACsvMzkvMzMvETMRMzAxQQUHJQ4CBwYWFhcFEzMDJS4CNz4DASM3Fz4CNzY2NCYnFxYWBgcOAgKOAXIk/qpSilwLCitjSgEl2vX9/gKG0nALCmWfxwI/liR7Tm1ADQgKCgvmDAwBCBSF2QOaAccBAT92VEhyRAMBBOn6UAEEbMiOc652PPxmxgEBT3xILFxeXSwCO3t7PIvXeAADAET/5wZKBhgAFgArAEcAHUAQM0QLcjstAXIdEgtyJwYHcgArMisyKy8rMjAxUzc+AxceBAcHDgMnLgM3BwYeAhcWNjY3NzYuAicmDgIFEzMDBhYWFxY+Ajc2NicXFhYHDgMnLgJOAg1Cda53UXNKKQ4ECA9IdKFoa4tMGPkCBgMgSkNOfVUQHAQUMlA4TWpFJwGPy+zMBQ0vMkhqRyoKEAQR3g4HDhBUi795c5VDAfQVZM+uaAMDRXGJkkNDWrucXQMDXpm2cBYzcGNAAgNMfEi3M2JTMwICSXaI4ASw+08oVDwDBENwgTpkyWMBZMdjb8qbWgIBYasAAgCs/+kFtwWwACAARgAhQBAoJycCAQEOMkMJcjoNDgJyACsyLysyETkvMzMRMzAxQSM3FzI2Njc2LgInJTcFHgMHDgQHDgIHBgYTJzc2JiYnNx4DBwcGFhYXFj4CNzY2JxcWFgcOAycuAgHC5SOXUo5fCwccO1Mx/p8jAUVgqn9CCAY4V2tyNQcGBgcMOIsBCAcgUEQaVZVtOAkHAg0nIkVhQCYJEAQS6A0HDg9Tib14bYI7AmfJASxoWjZLMBYCAckBAi9hmGpUaEAsLSIFEREFCAj+0QJDQWU8BXgCKFOEXkcgOSgDAURtfTZjymMBZMdjbcmeWgECUpYAAgBh/+MExQQ6AB0AQgAlQBI+PT0bAgEBDSoqIjMLcgwNBnIAKzIrMjIvETkvMzMzETMwMUElNxc+Ajc2JiYnJTcXHgIHDgMHDgIHBgYFNwYWFxY+Ajc2JicXFhYHDgMnIi4CNzc2JiYnNx4CBwFt/vQfqDFhRQgIJ0kt/vMc9mK1cAYEPVpkLAkEBAgJMwExBAMTLThSNyIHDAYU3g8SCgtKd6JkPGxULgMJAyA+KC9Tl1kJAaABuAEBGj44Mz4eAgG/AQI+h3JOTyclJQcaGwYHCL0TKjYHAjNVZC9OoE0BTp1OX6V9RgIZOF1DTi4yGQODASxtYgADAJP+twPfBbAAHwA0AD8AH0AOOjk/LAwNAnIhICABAQIALzMRMxEzKzIvMy8zMDFBITcXMjY2NzYmJiclNwUeAgcOBAcOAgcOAgc3HgIHBwYGFhcHIyYmNjc3NiYmAQcGBgcnPgI3NwGq/ukhvFGNXQsKL2NH/tcfAQ+BznIKBzJQYmw1BgcHBgkfHzMxd7RdDxEGAhEZA+gaEQUFEQolXAITHBKAXHwhPC4KIQJdwAEvaVdJZTQCAcABA1q2i1BmQTAvIQUPDgUGCQYBgAJQon95JU1IHhkhU1kndkloPf6PrHTJR0wwX2Y5tgAAAwCL/qgDvAQ6AB4AMwA+AB5ADjggHx8CAQE+KwoMDQZyACsyPzM5LzMzETMvMDFBITcXPgI3NiYmJyU3BR4DBw4DBwYGBw4CIzceAgcHBgYWFwcHJiY2Nzc2JiYFBwYGByc+Ajc3Abv+0B7YNGdKCgcrTi7+1h0BEkyPc0AFBEFhbjMIBgcIGhtFPV2gWgoLBAENEALsDwsDBAsGJUwCBhwTfVt/ITwtCyABna8BARxCPDRBHwEBvgECJU17VlFXLygiBhcGBgcFeQE2fGpWGzIvFhIBGDg6HVU5RSDArHTJSE0wXmY6tgAAA//b/+YHQwWwABEAFQAyAB1ADiYmHi8JchcUABUCcgsIAC8zKzIyMisyMi8wMUEzAw4EIyM3Nz4ENwEHITcBEzMDBh4CFxY+Ajc2NicXFhYHDgMnLgICAvSfFDJNdq58SRojU3BJLBsMA0Uj/ZYjAXS59bkDBRUrJUZnRCkJEAQS6Q0GDRBVjL96dZpDBbD9LWTPvZZXxwIFVoWbmj8Ck8nJ+7sERfu6HT43IwIEQm5/OGPKYwFjyGNvy51aAwNgqwAD/9n/5gYfBDoAEQAVADMAH0AQJyceLwtyFxQAFQZyCwgKcgArMisyMjIrMjIvMDFBMwMOBCcjNzc+BDcBByE3ARMzAwYeAhcWPgI3NjYnMxYWBw4DJy4DAXDreA8oPl6HXlIZIztQNCEUCAKDIv4iIwEjeet5AwYZLyY9VzghCA4CEd0OCg0NS3usbleEViQEOv3qTJ2Pbz4BxQIEPF1tbS0Bz8LC/S4C0v0tIEA3IwECPWRwL16/XV69XmK7k1UDAjdkiwADACf/5wdCBbAAAwAHACMAIEARFhYOHwlyCAJyAAMDBggEAnIAKz85LzMrKzIyLzAxQSEHIQMzAyMBMwMGFhYXFj4CNzY2JxcWFgcOAycuAjcBbALiI/0eJfX99QRY9LcEDC4vRmdFKQkQAxLpDAcNEFaKwHpzl0QJAzLHA0X6UAWw+7knUzoDA0JvfjhjymMBY8hjcMmeWQICYqxyAAMAB//oBh4EOgADAAcAJQAiQBIZGRAhC3IJBnIDAgIFBwZyBQoAPysSOS8zKysyMi8wMUEHITcTAyMTARMzAwYeAhcWPgI3NjYnMxYWBw4DJy4DAzAi/fIhj7ztvAIVeex5AwYYMCY9VzkgCA8BEd0OCg0NS3usb1aCVSQCfL+/Ab77xgQ6/S4C0v0tIEA3IgICPWRwL16/XV69XmO6klQBAThljAABAEv/6ASLBcgAKwAVQAoSCwNyJSUdAAlyACsyMi8rMjAxRS4DNxM+AxcyFhcHJiYnJg4CBwMGHgIXFjY2NzYmJxcWFgcOAgJMgceDNhApFHSy54lbrE9KQIxJWZJsRw0qChI+cFRSgVQODwIM6gkICxOf8hUDY6zdewEGguKqXwIpL7YkIgEBRHeWUv73R5J7TAICQnZPVrFWAVeuVpLRbQABAD3/6AOnBFEAKwAVQAohGgdyBwcADwtyACsyMi8rMjAxZRY2Njc2NiczFhYHDgInLgM3Nz4DFxYWFwcmJiMmDgIHBwYeAgICMU4xCAkBBd4FBQYNertucqlsLQoFDVqTwXRJjT9AMXQ6SG1OLwkFBw0tWKwBIUIxNm82Nm02c5pMAgNYlsBqK27Gl1YBAR0nuCAdAT5ofT4qOHloQQAAAgCR/+YFLQWwAAMAIAAXQAsUFAwdCXIFAgMCcgArMjIrMjIvMDFBByE3ExMzAwYeAhcWPgI3NjYnFxYWBw4DJy4CBRMj+6Ej/bn0uQIEFSskR2ZFKQoQAxHnDgYOD1WLv3p0l0UFsMnJ+7sERfu6HT82JAIDQm9+OGPKYwFkx2Nvy51aAwJirAAAAgBz/+gEkgQ6AAMAIAAXQAsTEwscC3IFAgMGcgArMjIrMjIvMDFBByE3ExMzAwYWFhcWPgI3NiYnFxYWBw4DJy4DBAYh/I4iwnnreQQPNDM2UjsjCA0JFNwQFAoMTX6nZleDVCUEOr+//S4C0v0tKlQ6AgIsTV4uTZlKAUqYTGGnfEUBATdljAAAAgBQ/+kFGQXHACAAPwAjQBEAIj8/AgIXNTEsA3IRDRcJcgArMswrzDMSOS8zEjk5MDFBFwcnIg4CBwYeAhcWNjY3Nw4DJy4DNz4DBScuAzc+AxceAgcnNiYmJyYGBgcGHgIXFwKe5RivQHpnRAgIL1VoM0qRag/zCW6qy2ZgvZlVBwhuq8YBNchNpYtTBgdwr89ne9uGA/ICQ3FBSZlwCwkiRl0zygMSAYwBGDdgSD1VNBgBATBmTgFxomgwAgExZJ5wcpVXJVgBAilVhV51pGQsAgNctYcBR1wtAgIrY1M7UTAXAQEA////xf5HBYsFsAQmAN0AAAAHAm4EUAAA////vP5HBJcEOgQmAPIAAAAHAm4DXAAAAAIA6ARyA0kF2AAFAA8AErYFBQ0HAgIHAC8zLxDNMi8wMUE3EzcHASU3MwcGFhcHJiYB5AGgxAH+9P60DKUPChAnTEdEBIMWAT4BF/7D+VpVO2QuQyuNAP//AEACDgJlAs4EBgARAAD//wBAAg4CZQLOBAYAEQAAAAEAmwJwBKUDMQADAAixAwIALzMwMUEHITcEpSn8HykDMcHBAAEAfAJwBd4DMQADAAixAwIALzMwMUEHITcF3jb61DcDMcHBAAL/WP5mAxUAAAADAAcADrQCA4AGBwAvMxrOMjAxQQchNwEHITcC6Bv8ixsDohv8ixv+/piYAQKYmAABALIEJgIcBhwACgAIsQUAAC/NMDFTNz4CNxcGBgcHshQLP1w5dzBKDxgEJodJhXMuTkKLUokAAAEAjQQEAfoGAAAKAAixBQAAL80wMUEHDgIHJzY2NzcB+hYLPlw4ejFKDxkGAIxKhXMuT0KLUY8AAf+n/toBEwDPAAoACLEFAAAvzTAxZQcOAgcnNjY3NwETFQw+Wzl5MUUPGM+FSoVzLk5CjFGIAAABAM0EBgHGBgAACgAIsQYAAC/NMDFTMwcGFhcHLgI368sZDBIjdi09GQcGAJBNkEZHL3iEQv//ALoEJgNhBhwEJgGECAAABwGEAUUAAP//AJoEBANEBgAEJgGFDQAABwGFAUoAAAAC/6T+yAJSAP4ACgAVAAyzEAULAAAvMs0yMDFlBw4CByc2Njc3IQcOAgcnNjY3NwEbHgw9XDt5MkcPIAIGHgw/Xzp5MkoQIP60TIt6MU1HlVa3tE2LeTFNR5VWtwAAAgBpAAAESgWwAAMABwAVQAoGBwcCAwJyAhJyACsrETkvMzAxQQMjEwEHITcDF+Ts5AIfIPw/HwWw+lAFsP6KxMQAA//8/mAEZgWwAAMABwALAB1ADgsKBgcHAQMKEnIDAnIBAC8rKxESOS8zETMwMUEBIwEBByE3AQchNwMz/tvsASUCHx78Px4DNh78Px4FsPiwB1D+isDA/IbAwAABAJ8CAwJPA9gADQAIsQQLAC/NMDFTNzY2MxYWBwcGBicmJp8CBXtjXm0BAQZ8YltuAtIoYX0Bd1wpYHgBAXL//wA1//IDAwD/BCYAEgcAAAcAEgHBAAD//wA1//IErwD/BCYAEgcAACcAEgHBAAAABwASA20AAAABAF4B7gFrAvEACwAIsQMJAC/NMDFTJjY3NhYVFAYHBiZfAU45N09OODdPAms6SgEBRTk7SAEBRAAABwCi/+gHAwXHABEAIwA1AEcAWQBrAG8AKUATX1ZWMmhNTUQpKTsyDRcODiAFBQA/MzMvMz8zMy8zMy8zETMvMzAxUzc+AhceAgcHDgInLgI3BwYWFhcWNjY3NzYmJicmBgYBNz4CFx4CBwcOAicuAjcHBhYWFxY2Njc3NiYmJyYGBgU3PgIXHgIHBw4CJy4CNwcGFhYXFjY2Nzc2JiYnJgYGAwEnAacGCVaLWVV9QAYGCVmPWFV5PaoJAxIyLC5DKQYJBBIyLS1EKQGTBghaj1lUcjYFBglPg1dWfUGzCgITMisvRCcGCQQTMiwuRCgBHgYIUIRYVnxABQcIWI9YVXI3mwkDEzMrL0MoBgoDEzIsLkMqePyRdwNwBEtMVYtQAgJRh1NNV4lOAgJSh55PJkYuAQEsSCpOJkgvAQEtSfxVTVeKTwICVYdPTlKLUgICUYehUCVHLgICLEoqTyZILgEBLEl4TVOKUwICUYdTTlaKTwICVYicUCVHLgICLUkqTyZILgEBLEkDSfuYTgRnAAIAWgCLAmEDqQAEAAkAEkAJAQUDCQIIBgYAAC8vFzkwMUEBBzUBAxMHAzUCYf7HxwFQlK6U3QOo/m8DEgGD/nb+bQEBhBIAAAL//ACLAgMDqAAEAAkADrQCCAgFAAAvLzkvMzAxZwE3FwEDMxMVJwQBOccB/q8Zk93CjAGRAxL+fQMd/n0SAgAB/+AAcAPGBSUAAwAOswADAgEAfC8zGC8zMDFBAScBA8b8kHYDcATY+5hOBGf//wCJAowC9AW/BgcB4QBzApv//wBmApsC7AWwBgcCOgBzApv//wB+Ao4DBQWwBgcCOwBzApv//wCJAo4C3wW/BgcCPABzApv//wCYApsDLQWwBgcCPQBzApv//wB4Ao4C9QW9BgcCPgBzApv//wCnAo8C7wW9BgcCPwBzApsAAgCGAo8DKAVRAAMABwAVtwYGAgIDBwcDAC8zLxEzETN9LzAxQQchNwEDIxMDKBr9eBsBwnudewQ7l5cBFv0+AsIAAQCHA6YC5AQ+AAMACLEDAgAvMzAxQQchNwLkG/2+GgQ+mJgAAgBvAx0C+wTAAAMABwAMswIDBwYALzPOMjAxQQchNwEHITcCzBr9vRsCcRv9vRsDtZiYAQuXlwABAIsBhQI7BjUAFQAMsxARBgUALzMvMzAxUzc+AjcXDgIHBwYGFhYXBy4DkwEQVZdxOkRfOg0CCAgKJyhLRVEnBQPMEXXswjV+QJKmXBM6fX1zMHQsiaOmAAABAD4BggHvBjIAFQAMsxARBgUALzMvMzAxQQcOAgcnPgI3NzY2JiYnNx4DAecCD1WXcTtGXjoNAggICicoTERRJwUD6xF17cI0e0GSpV8TOXx8cy94LImjpwACAGsCjANMBb0ABAAZABO3FgsEBAsCEQIALzM/My8RMzAxQQMjEzMDBz4DFx4CBwMjEzYmJicmBgYBkmq9jI8uKQgpSHBPWmYlB1K7SgUGKzVBUSwE8/2ZAyH+iQFBinZHAgJXi1D+BQHMKVk+AgFFa////9f+hAJCAbcGBwHh/8H+k///ADH+lAHNAagGBwHg/8H+lP///6X+lAI8AbcGBwHf/8H+lP///7b+hwJGAbcGBwI5/8H+lP///7T+lAI6AakGBwI6/8H+lP///8z+hwJTAakGBwI7/8H+lP///9f+hwItAbgGBwI8/8H+lP///+b+lAJ7AakGBwI9/8H+lP///8b+hwJDAbYGBwI+/8H+lP////X+iAI9AbYGBwI//8H+lP///9r+qAJ8AWoGBwGc/1T8Gf///9v/vwI4AFcGBwGd/1T8Gf///8P/NgJPANkGBwGe/1T8GQAB/+X96wGQAlkAFAAIsQUQAC8vMDFnNz4CNxcOAgcHBgYWFwcuAxMCDlWWbjpDXTkMAgkEJzVMQ1IpCQ4SceG2MX85iJxXE0mekzp0KX+YnQAAAf+e/egBSgJWABQACLEQBQAvLzAxZQcOAgcnPgI3NzY2Jic3HgMBQwIOVZZuPEReOQwDCAMnNUtCUyoJORFz47czfDyKnVsSRpuQOHkofpacAAT/9wAABKIFxwADAB4AIgAmACJAECIhJSYmARsXEgVyCQICAQwAPzMRMyvMMxI5LzPOMjAxYSE3IQEDBgYHJz4CNxM+AhceAgcnNiYmJyYGBgUHITcBByE3A/D8ByMD+f4XTAtbUrYnLhgFVRCF1IZ6q1cE7QMdST5EYDkBFxj9QxoCjhr9RBnHA0n9lmCWMUkPR1cmAnSDx24DA2WzeQE4XDgCAUVv4I2N/veOjgAAAwAPAAAGWwWwAAMABwARACJAEAMCBgsOEAcHDREOBHIKDQwAPzMrMhI5LzkSOTPOMjAxQQchNwEHITcBAyMBAyMTMwETBlsb+gUbBcUb+gUcBbb87f43t/X97QHKtwPEm5v+yZubAyP6UAQd++MFsPvhBB8AAAMALP/tBl0FsAAXABsALQAjQBIiKQ0cGRgGcgIBAQ4MDwRyDgwAPysyEjkvMysyzD8zMDFBJzcXMjY2NzYmJicnAyMTBR4CBw4CAQchNxMzAwYWFhcWNjcHBgYnLgI3AhfkJMhVfkwLCh5YTJXd8/0Bb4fGZAwOlu8Dsx/9sB/Y6rIECSUmFSsVECRLJVpuLAgCHAHJAUF3U0dtQAMB+xgFsAEEa8SKmNJtAh+wsAEJ++YjNB0BAQYDugsKAQFRiVP//wAm/+sIFQWwBCYANgAAAAcAVwRUAAAABgAgAAAGRQWwAAMABwANABIAFwAdACpAFB0VCgoSBgcDAgIREgRyExsbCBEMAD8zMxEzKxI5LzPOMhEzETMzMDFBByE3AQchNwETATMDAQsCIwMBEwEzAQsCIxMTBj0c+jYcBZIb+jYcATNSAWqPQf6LJREjmiECn1YBZ/n95icRJZcNMAQtmpr+wpqa/REBZgRK/qH7rwWw+53+swWw+lABaQRH+lAFsPud/rMEXgFSAAIAEP/+BkUEOgARACIAIEAPFhMTERQIFAgRChwPAAZyACsyMj85OS8vETMRMzAxUwUeAwcDIxM2LgInJQMjISETMwMFFjY2NxMzAw4DzAJ0XXtFFAkz7TUFBR09Mf6lm+wDvP3Wf+tdAUFKZTwMcuxxDVyNsAQ6AgI/bJJW/sIBQC1MOSACAfyGAtf96QIBMWBIAqT9XWSaZzQAAAMAS//tBJ8FxgAjACcAKwAdQA4qKycmJgcZEgVyAAcNcgArMisyEjkvM84yMDFlFjY3FwYGJy4DNxM+AxcWFhcHJiYnJg4CBwMGHgITByE3AQchNwLgNGYyCTt4PHy5dS8ONRRnpNyIPHU7Ly5eMFmJYz0MNgkNNGf8Gf0IGQLJGP0HGrQBEQ/KDg4BAlebzHgBU4HZnlUBARIMyhATAQE6a45T/qpHg2c+AvGJif70iYkAAAMARAAABgMFsAADAAcAHwApQBMGBwMCAhQKFBcJCgoWFwRyFgxyACsrEjl9LzMRMxESORgvM84yMDFBByE3BQchNwElNwUyNjY3NiYmJyUDIxMFHgIHDgIGAxz6hRwFUxz6hRsCkP6BJAFjU4tbDAkrZEz+ztr0/AILhtRzDA2m/QSmm5vqm5v+YgHHATlyWEpxQQMB+xgFsAEDbciOncxjAAMARAAABH4FsAADABwAIAAtQBUfICARAwIFBgYaAhoCGgQQEQRyBAwAPysyEjk5fS8vETMRMxEzETMRMzAxQQchNwEBNxcyNjY3NiYmJyU3Fx4CBw4CBwEHAQchNwQ/T/xrTwEj/ncZ21KJXAsKKmVN/u9XwIzTbQwNhdiKAWIBAaNP/RBQBEexsfu5AluLAT51VE1uPgIByAEDYsOTk79nD/3jDwWwsbEABAAV/+cEPgWwAAMAFAAYABwAFUAJBAQDDwELDQMEAD8/MzMSOS8wMUEDIxMBNwcGAgYGJyYmJyU+AzcDBwE3BQcBNwJ3/fT9AcnyCQ9ssPKXP3w+AQBrnGo9DAwl/T4jAook/T0kBbD6UAWw/U8BTov+/8p1AgEQBrcDVY+zXwKAzP71zEDM/vXLAAAC/+UAAASuBDoAGwAfABhACwgVFR4fBnIOAR4KAD8zMysSOS8zMDFhIzc2Ni4CJyYOAgcHIzc+AxceBAcBAyMTBITsHgkBGD1pUWmdbUIOHewdFW6v8Jl1r3dEEg7+xrzsvLU/iYNrQgIEWpa2WrOxif/LdAMCUou0ymcDifvGBDoAAv/qAAAFWgWwABcAGwAaQAwZGAMAAA4MDwRyDgwAPysyEjkvM84yMDFBJTcFMjY2NzYmJiclAyMTBR4CBw4CBwchNwMM/RMjAs1WjVsLCi1kSv7O2fX9AgqG03MLDqT+myP9CSMCHgHHATl0WUlwQAMB+xgFsAEDa8aOnc5kasfHAAQAwP/oBTgFyQAhADMARQBJACVAEkInMEdHOTANch8FDklJFg4FcgArMjIvEMwyKzIyLxDMMjAxQTcOAicuAjc3PgIXHgIVJzYmJyYGBgcHBhYWFzI2Ezc+AhceAgcHDgInLgI3BwYWFhcWNjY3NzYmJicmBgYBAScBAkKiBk6BUFRzOAUGCFGHWE91QKMCLDgsPCQFCgMKKSg2QaAGCFqPWVd8PwUGCViOWlZ+P7IIAxMyKy9DKAYJAxIyLC5EKQFQ/JF3A3AEIgJQd0ACAlOIT01Ui1ICAkN2TgExRwEBMUomTiBIMwFF/SRNWYlOAwFQh1ROWIlOAgJQh6JRJUctAgIsSipPJkgvAQEtSQNJ+5hOBGcAAQAr/+oD2gX6AC4AFLcZGBgBJAwAAQAvMy8zEjkvMzAxZQcuAzcTPgMXHgMHBw4EBzc+Azc3NjQmJiciDgIHAwYeAgJ7E2OZZioLbwo2XIZaRGdBHAQFDXu/6v14EnboxYQRBgEJGBgiKxoNA2wHAx9FxNoFQ3ejYwKmT5Z6RgMCN1t1QCqF4LJ+RAG0Ak2Pyn0qESwoHAMpP0Ia/V80XEksAAAEACMAAAfgBcMAAwAVACcAMQAlQBErMC4qAgMbEiQJCTEuBCotDAA/Mz8zMy8z3DLOMhESOTkwMUEHITcTNz4CFx4CBwcOAicuAjcHBhYWFxY2Njc3NiYmJyYGBgMDIwEDIxMzARMHUhr9tBouBwtiompkh0EICApioWlkiEG1CQQTPjs+VTEICQUUPjo+VjL2/fz+zbjs/P4BM7gCL4+PAdtUZKNeAgNhnWBTZaFdAwNenbNVMl0+AQI8YjdUMV8/AQI8YwEb+lAEHPvkBbD74gQeAAIA8AOUBNEFsAAMABQAJEARCQQBAwYKBwcTFAIAAwMGBhEALzMRMxEzPzMzETMSFzkwMUETAwcDAyMTMxMTMwMBByMDIxMjNwQGP69AOUNuXoM6xIZe/hERhU51TYgQA5UBY/6dAQF//oICG/6DAX395QIbXv5EAbxeAAACAH3/6wRuBFEAHQAmABdACiIXFwQeDgcbBAsAPzM/MxI5LzMwMWUHBgYnLgM3PgMXHgMHBgYHIQMWFhcWNgMmBgcDIRMmJgOpAVO/Y22ocDEKCmWhy3Fvn2IrBAECAf0RPC55RWnAclOSPjQCCjUsd8VoNT0CAmCewmVrzaZfAwNem79iDBcM/rYyNwIDSANeAkky/uoBHzQ7AP//ALr/8wWMBZoEJwHgAEoChgAnAZQA+AAAAQcCPgMKAAAAB7EGBAA/MDEA//8Ahf/zBiYFtwQnAjkAkAKUACcBlAGbAAAABwI+A6QAAP//AIv/8wYWBagEJwI7AIACkwAnAZQBggAAAQcCPgOUAAAAB7ECBAA/MDEA//8Auv/zBdgFpAQnAj0AlQKPACcBlAEtAAABBwI+A1YAAAAHsQYEAD8wMQAAAgBE/+gERgX3ACkAPwAZQAwqAAASNR8LcgkSAHIAKzIrMhE5LzMwMUEWFhc2LgMnJgYGByc+AhceAwYHBw4EJy4DNzc+AxcmDgIHBwYeAhcWPgI3Ny4DAmFRjjQECSA7W0AvWFYsDy9maTaCql8mAg0IDT1fha1scKRnKQoDDFWJt31Fa0wvCAMFBydQQ1FzSiwKDwQoPkkEBgJDPzR0b104AwENGg+zGCEPAQJsstnfYjtcva2GTQMCV5K8aBZquItLwQI0W3Q9FjZyYj0DAkt8kEFcKD4sGAABAB7/FgVJBbAABwAOtQQHAnICBgAvMysyMDFBASMTIQMjAQVJ/vjt6/236+0BCAWw+WYF3fojBpoAA/+m/vMFAQWwAAMABwAQAB9ADg4GBgcHDwJyDAMDCgILAC8zMzMRMysyETMRMzAxRQchNwEHITcBBwEjNwEBNzMEKiL79yIE4CL8JyICRgP85KkbArX+QxiYTr+/Bf6/v/yyH/ywmwLQAsyGAAABAJoCcAP4AzEAAwAIsQMCAC8zMDFBByE3A/gi/MQiAzHBwQADADT//wTzBbAABAAJAA0AFkAKCQsLCgQICAECcgArPzMvMxEzMDFlATMBIxMTByMDBzchBwHcAkLV/TmgHVIIiI2qIwFKIvUEu/pPAwP91NcDA8LCwgAABABJ/+gHrgRRABcALwBHAF8AHUAOWzY2HhMLck5DQysGB3IAKzIyETMrMjIRMzAxUzc+AxceBBcHDgQnLgM3BwYeAhcWPgM3NzYuAycmDgIFBw4DJy4EJzc+BBceAwc3Ni4CJyYOAwcHBh4DFxY+AlMDDVqSwnZXiGZHLgsFE1F0jqBUcKJoKvQDBQkqVUU1ZFlJNg4GBBcuQ1IvSXJRMQZfAw1aksR2V4hlRy0KBBNSdY6gVG+jZyn0AwUJKlNFNWRYSjYPBwMVLkJSLktyUTECChdtyp9aAwNAa4iXSyRPn45vPgECXpvAexc3eGlDAQErSl5kLyMsXlhGLAICP2yCMRdtyp9aAwNCbYuYSyRPnYxsPgICXpy/exc2eGlEAgEqSFtjMCIrYFpJLQIDP2yBAAAB/w/+RgMeBhkAHwAQtxsUAXILBA9yACsyKzIwMUUOAicmJic3FhYzFjY2NxM+AhcyFhcHJiYjIgYGBwEdDWCkcyREIiMTKRU1SCgIvw5mrHUoTCYkFy0XOFExCE1vpFoCAQsJugcIAi5PMATxcahcAQ0ItwYHLlM0AAIAMQEEBDgD+QAZADMAG0ALFwSAChFAMR6AJCsALzMa3TIa3jIazTIwMVM3NjYzNhYXFhYzMjY3BwYGIyImJyYmIwYGAzc2NjM2FhcWFjMyNjcHBgYnIiYnJiYjBgZ6EzKBSEFrNzJjPEt9NBYvdEQ8ZjI3aUBPh4ATMn1HQWs4MmQ7TH81FjB3RTxlMzZpQE6EArnTMjoBKyAcKk0x0zA8KR4fKwFL/ivTMTsBLB8dKUwy0zA9ASkdHywBSwADAGAAgQQYBL0AAwAHAAsAH0ANAgEBCgoLAAMDBwcGCwAvzjIRMxEzETMRMxEzMDFBAScBFwchNwEHITcD2f0oaQLZpyP8tCMDAyT8tSIEevwHQgP668bG/ljGxgAAA//WAAED3wRRAAQACQANACJAEAMHBgAECAYFCQkBAgINDQwALzN8EM4vMjIYLzMXOTAxQQUHATclBQc3AQMHITcBAwJiKP0NGwNO/WDFHgNzrCL8xSICyuPDAUZ+k90fjQFF/Gi4uAADABQAAAPxBFQABAAJAA0AIkAQAwcGAAQIBgECAgUJCQ0NDAAvM3wQzi8yMhgvMxc5MDFBJTcBBwUlNwcBBQchNwMx/ZInAwca/JwCrc0d/HgDKSL8xSICs+HA/rt/l90kjv68b7m5AAIAPAAAA+MFsAAHAA8AHUAOBQgIDgcScgMKCgsBAnIAKzIyETMrMjIRMzAxUwEzBwETByM3AQM3MxMBIzwB6bRK/pWxBJlWAWyvA5n8/harAuQCzL/92f3cprwCKAIkqP0a/TYA//8AYwCoAgoFCAQnABIANQC2AAcAEgDIBAkAAgBnAoQCdgQ6AAMABwAQtgYCAgcDBnIAKzIyETMwMUEDIxMhAyMTAUhMlU0Bwk2UTQQ6/koBtv5KAbYAAf/R/2QBDAEAAAkACrIEgAkALxrNMDFBBwYGByc2Njc3AQwKDWJLdyk8DQ8BAEpjrkFNO3lHVP//AF4AAAWQBhkEJgBKAAAABwBKAjUAAAADAE4AAARTBhkAEAAUABgAG0APGAYXCnITFAZyDQYBcgEKAD8rMisyKz8wMWEjEz4CFxYWFwcmJiMmBgcXByE3IQMjEwE97MURgM2DTpZKNzp5PmaEEMog/aEfA+a87LwEf4O3YAICJRbFFxwCZWVGsLD7xgQ6AAADAF4AAAStBhkAEgAWABoAG0APGRoGchQAcg4GAXITAQpyACsyKzIrKzIwMWEjEz4CFx4CFwcmJiMiBgYHEwEzAQMHITcBTuzIEHjAfEqWk0l4S5pNPWFACqMBB+v++sUg/ZwgBJl8rFgCAQ8XC7YOGStTPPtkBef6GQQ6sLAAAAUAXgAABrwGGgARABUAJgAqAC4AJUAUIxwBci4qFBUGcg0GAXItFxcBCnIAKzIRMysyKzIyMisyMDFhIxM+AhcWFhcHJiYjIgYGBxcHITcBIxM+AhcWFhcHJiYjJgYHFwchNyEDIxMBTuzKDmywdyRHIxcWLRc5VzcJzh/9lSADKezEEYDNg06VSjY6eT9khBHKH/2gHwPmvOy8BKJyqlwBAQsIvAYGK1A4aLCw+8YEfoS2YAEBJRfFFhwBY2VGsLD7xgQ6AAUAXgAABwYGGgARABUAKAAsADAAKUAXKwByJBwBci4UFC0VBnINBgFyKRcBCnIAKzIyKzIrMjIRMysyKzAxYSMTPgIXFhYXByYmIyIGBgcXByE3ASMTPgIXHgIXByYmIyYGBgcTATMBAwchNwFO7MoObLF2JEcjFxYuFzhXNwnPIP2VIAMp7MkQeL97SpaVSHdMmkw9YkAKowEG7P76xR/9mx8EonKqXAEBCwi8BgYrUDhosLD7xgSafKpYAQEQFgu2DRgBKlM8+2QF5/oZBDqwsAAABABe/+0E+wYZAAMAFwAbAC0AJUAUIikLchMKcgkcHA0NBAFyGAIDBnIAKzIyKzIRMxEzKysyMDFBByE3ARYWFwcnNyYmIyIGBgcDIxM+AgEHITcTMwMGFhYXFjY3BwYGJy4CNwHVH/6oIAJIctpoH+cQJlgpOFIxCsvryg5prgKqIP2vH9nrswQKJSYVKxQQJEkmWm0uCAQ6sLAB3gI+K88BWBMPL1I1+10EonKpXP4hsLABCfvmIjQdAQEFA7oLCgEBUYhUAAAEABX/6gabBhYAGwAfADEAZwAxQBs7MkBkYFsLcgFFSUAHciYtC3IeEB8GchQKAXIAKzIrMjIrMisyzDIrzDMSOTkwMUEjLgI3PgMXHgMHIzYmJicmBgcGHgIBByE3NzMDBhYWFxY2NwcGBicuAjcFNiYmJy4DNz4DFx4CByc2JiYnIgYGBwYeAhceAgcOAycuAjcXFBYWFzI2NgPFchA6KAcHTXWNRluMXy0E7AMXQj5KbQwIBhAMAtEe/bUetOyRBAckJxUrFBAkSyZgaiUJ/hwJPl8oPHljOQQEUYCZTGixaQLqAiVKMi9XQAcHITtCHFWiZQYEVoegTWu5bwHjLVQ6L19HAvZQp6lTTnJKIwECN2SOWTVdOgEBV0o4cnJyAQqwsFn8qCE9JwIBBgO6CwoBAmGYVBE2PSAKDy9IZ0pUf1QoAQJPl3EBM0koAR9BMCYxHhMHFkd/Zll/UiYCAlSfcwE6UCkBGz4AFf+o/nIIRAWuAAUACwARABcAGwAfACMAJwArAC8AMwA3ADsAPwBDAEcAVwBzAIwAmgCoAABBIxMhByMhIzchAyMBIRMzBzMFITczNzMBITchBSE3IQEhNyEBByM3EwcjNwEhNyEBByM3ASE3IQUhNyEBByM3EwcjNwEHIzcFEzMDBgYjIiYnFwYWNzI2JSM3FzY2NzYmJycDIxMXHgIHDgIHBgYHBiIHJzczNjY3NiYnJzc3MhYXFgYXHgIVBgYBBwYGJyYmNzc2NhcWFgc3NiYnJgYHBwYWFxY2ASdvMgEtFL4GfsIVAS4ybfkx/tI4byS/Bhn+0hTAJG3+J/7xFAEP/OT+8hUBDQEY/vMVAQ0D4SxuLfAtbSz8Tf7xFQEO/J8tby0E6P7yFQEOAW/+8RUBD/ovLW8tsCxvLAcZLG4t/vY6YzsJaFBRaQJZAiUwLDr985oEbCxWCQlAImZRXmCoLlk6AQIyRh8EAgQEDy6+NH8rSgkGLCR8BosFEwQDAwQYNSMBgP7DBwmGZGBzAwgKhWNfdGoOBTBAQ1EKDwYxQURQBJEBHXR0/uP54QE7ynFxyv7FcXFxBld0+3T5+QLy+vr6XnECP/n5BBh0dHT87vz8AXj6+v6I/Pz0AXv+hU5cUlUCKzMBOnBGAQIiMiwUAQH+LwIlAQEZPjc4JxEYAw8DBPUDSAMoLykjAwFGAQIFAw8DGBIiMldJAUdwYX4CAnxfcGJ8AgJ8znI6VwIBWD1yO1cCAVgABQBc/dUH1whzAAMAHgAiACYAKgAAUwkCAzM0Njc2NjU0JiMiBgczNjYzMhYVFAYHDgITNSMVEzUzFQM1MxVcA7wDv/xBd8oZKURip5V/sQLLAj4nODk1KC89HcnKfwQGBAKDA8/8MfwxAt4zPhslgVKAl32NNzBANDRNGiE6Tv67qqr9SAQECpoEBAAB/+QAAAJ7AyMAHAAQtQMcHAsTAgAvzDIzETMwMWUHITcBPgI3NiYnIgYHBz4CFx4CBw4CBwcCThr9sBcBOBo+LwcGLCo6RQy0B1eJU0h9SgMDTGwznpGRhAEBFjhAJSkxAUg1AlR6QQEBM2dQRm1YJXUAAAEAcAAAAgwDFAAGACNAFQQFBQMDLwB/AAIPAF8ArwD/AAQAAQAvzV1xMhEzETMwMUEDIxMHNyUCDIKxY8wbAWsDFPzsAjwxl3IAAgAW//ECgQMkABEAIwAMsxcOIAUALzPEMjAxQQcOAicuAjc3PgIXHgIHNzYmJicmBgYHBwYWFhcWNjYCehAKUIxlYHYzBxELT4xmX3cxzRQEBScuMTseBRUEBicvMTsdAdaYXZhYAwNak1qYXphYAwNblfuxI085AQI2UiiwJE85AQI1UwABAGH/8wO0BKAAMgAXQAoUHh4mATEKDCZ+AD8zPzMSOS8zMDF3MxY+Ajc3Ni4CJyYGBgcGFhYXFj4CNxcOAicuAjc+AhceAwcHDgMHI8EPXZ98UQ8gBAcgPjFBYDoIBRxHOydLPy4KPw5rmVNxlkcICoXQfGaSWCAJCRN0vPycG7MCJ1aIYNkpVEUrAQFCajw1WzkBARctPiZEVX5FAQJmrGt8wWwCAk6Dql5LmvClVQEABAAe/+4DvwSgABIAIgA0AEQAHUANKBcXQQ4OBTkxfh8FCwA/Mz8zEjkvMzMRMzAxQQ4DJy4CNz4DFx4DBzYmJicmBgYHBhYWFxY2NgEOAycuAzc+AhceAgc2JiYjJgYGBwYWFhcyNjYDeAVThqJRY7ZwBQVWiJ9OR4xzQ+wHK04uNWFBBwYpTjA1YEIBMARQfpVIQoRrPgIFgMRoYalm8wYjQiowUTYGBSFBKzBSNwFHW4RTJwIBRo9xWX9RJgIBJk12QDJFIwEBJ0w5M0UjAQEoTQI9UndMJAECJEhuTHSVSAICRot5LD8hASVGMC1BIgEmSQAAAQBZAAAEFASNAAYADrUFAQZ9AwoAPz8zMzAxQQcBIQElNwQUGf1j/vsCnv2AIQSNkfwEA8wBwAABADz/7AOeBJwAMQAVQAkWHx8OJwsDAH4APzI/MzkvMzAxQTMHIyYOAgcHBh4CFxY2Njc2JiYnJgYGByc+AhceAgcOAicuAzc3PgIkAzYnFQxiqYVYDxkFCSJBND9iPgcGH0k6NWZMDzgOcqFXbZJECAmFz3pklmEoCgkUecABAAScxAItYZNlrCtXSS0BATtkOjdXNAEBKUw1SFeCRgECaaxnfLtmAwNIfqZgUZnxqVoAAQAw/+sD3QSNACMAF0AKIQkJAhkRCwUCfQA/Mz8zEjkvMzAxQScTIQchBzY2FzYWFgcOAicuAiczFhYXMjY2NzYmJicmBgE8wa4CtCL+E1ctZTNwnE0ICYPRfGWvbQPmBFxKQmE6BgYkTzs2XQIPMQJNw/wXFgEBYKhufrljAwJQlmtMRQE4Yz85WDIBASAAAv//AAADtQSNAAcACwAVQAkAAQEKBAt9ChIAPz8zEjkvMzAxQQchNwEzCQIDIxMDtSL8bBICk8n+9/6jApTK68oBu8CjAu/+qP6HAtH7cwSNAAIACP/uA8AEoAAdAD0AHUANHwAAHR4eEjQqCwkSfgA/Mz8zEjkvMzMRMzAxQRc+Ajc2JiYjJgYGBwc+AhceAwcOAyMnBzcXHgMHDgMnLgM3FwYWFhcWNjY3Ni4CJwFtcDZoSQgHJ0ktL1U9C+4Jh8dnS41wPgQEU4KTRbIKFZRHinA/BQRZjaZSUI9sPgLpATBRMTdkRQgGGTNGKAKnAQEhSzwxQB8BHDwvAXKRRQIBJk96VVJxRR8BN3MBARxAb1RdhlYnAgEsV4BWATNEIQECJU06LT0lEQEAAf/yAAADvASgAB4AErcLFH4DHh4CEgA/MxEzPzMwMWUHITcBPgI3NiYnJgYGBwc+AhceAgcOAwcFA3Qi/KAeAdUpYUwJCk9FP2A+CewKiNF2Z69lCAVDZHI1/uW/v6wBhiNVZTlGUgEBMFo8AXuvWwIBTZZwSX1rXCnUAAEAtAAAAwwEjQAGAAqzBn0CCgA/PzAxQQMjEwU3JQMMw+yZ/r4kAhUEjftzA3FSxqgAAgA5/+0DvQSgABUAKwAOtRwRficGCwA/Mz8zMDFBBw4DJy4DNzc+AxceAwE3NjQmJicmDgIHBwYUFhYXFj4CA7IcDkl6rXBqk1UdCx0OSXqtcGuSVRz+6yIFGT84PFY3HwgiBRk+OT1VNyACrcxntotMAwJTirBhzWe1i0wDAlOKsP6++CthVTgCAjFVZjP2LGJWOQICMlZnAAP/1gAABCoEjQADAAkADQAcQAwEDAwNDQh9BwMDBgIALzMzETM/My8zETMwMWUHITcBASM3ATMjByE3A5Ei/KYiA9n8dK4aA5OnUiH8yiK/v78DPfwElAP5wMAAAwBsAAAEggSOAAQACQANABtAEAgHAwQGAAoNCAEMCnIFAX0APzMrERc5MDFBASEBIwMTByMBAQMjEwHIAasBD/3XiXDaMYD+4wIMX+tfAg4Cf/z3Awr9aHIDCf2V/d4CIgAB/6IAAAR9BI0ACwAVQAoHCgQBBAkFAwB9AD8yLzMXOTAxQRMBIQEBIQMBIQEBAYejATIBIf4mARf+97L+xP7fAeb++wSN/msBlf2x/cIBnP5kAlcCNgAABACLAAAGHgSNAAUACgAPABUAIEAOEgQQAQ4EDAEIBAYBfQQALz8zETMRMxEzETMRMzAxZQEzBwEjExMHIwMBATMBIxMTByMDNwFaAY2JHf5mjDogH5VIA0kBX+v+JJMFShWNTiLTA7rQ/EMEjfw/zASN/FMDrftzBI38M8AD1bgAAAIAbgAABLcEjQAEAAkAD7UHAwUBfQMALz8zETMwMUEBIQEjAxMTIwMCCQGsAQL9i7cshRKo4AE6A1P7cwSN/Jf+3ASNAAABADj/7ARkBI0AFQAPtQwRBgB9BgAvPxEzMjAxQTMDDgInLgI3EzMDBhYWFxY2NjcDd+2CEpLehXvCZg6B64IIJFhFSXBICwSN/QCGvF8DAmK4ggMA/P9DYjcCAjRkSAACAGMAAAReBI0AAwAHABG2BgcHAQB9AQAvPxE5LzMwMUEDIxMhByE3AuTK7MsCZSP8KCMEjftzBI3AwAABAA//7gP+BJ4AOQAYQAoKJg82MSsYFA9+AD/MMy/MMxI5OTAxQTYuAicuAzc+AxceAgcnNiYmIyIGBgcGHgIXHgMHDgMnLgM3FwYeAjMyNjYCvQgiPUohRIVrPAUFV4ehTm+8cQLqAy5WODFkSggHJ0JKHUaEaDkFBlmKpFBXnntFAusDHTtSMTJlSQE4LDsnGAoUNlB1U1iCVCYBAlCfdwE6TigdQjYpNyUXCRQ5VHlUXIBQJAIBMF2NXgE0Si4XHEAAAgAJAAAEFgSNABkAHgAYQAobDQ0MDBoYFwB9AD8yLzM5LzMSOTAxUwUeAwcOAgcHITcFMjY2NzYmJicnAyMhAzcTFdMBr1CUcj4GBlWJVVL+aSABGztrSwkHKFA136nsArO/7c4EjQECKFGBWmWEVyMpwAEnUUE4SyUCAfwzAgQC/gcNAAADADr/LwRWBKAAAwAZAC8AHEAMAAMDKysKCgIgFX4CAC8/MxI5LzMSOREzMDFlAQcBAQcOAycuAzc3PgMXHgMHNzYuAicmDgIHBwYeAhcWPgICqwEkov7jAjsGD16Zzn55rGspCwYOX5nPfXmtain8BwYIKlpMUXlUMgkIBgcqWk1Re1Myrv78ewEFAjE4d9KfWAMCXp7Kbjp30aBYAwJfn8qiOj2AbkUDA0BviUY7PYFxSAMDQnKLAAABAAkAAAQwBI0AGAATtwIBAQ0MD30NAC8/MxI5LzMwMUElNwU+Ajc2JiYnJwMjEwUeAgcOAwI0/rgiASw8cE4KCChTNvep7MsBxnC7awgHWY6sAZoBwAEBJVBCOVIsAwH8MwSNAQNWpnlkkFsrAAIAO//tBFgEoAAVACsAELYnBhwRfgYLAD8/MxEzMDFBBw4DJy4DNzc+AxceAwc3Ni4CJyYOAgcHBh4CFxY+AgRMBg5emM9+ea1rKQsHDl+Zzn54rWoq/QcGCCpZTFF5VDIJBwcHK1pMUnlUMAJpOXbUoFkDAl6eym46d9GgWAMCXZ7Jpjo9gG1GAwNAb4lGOz2BcUgDA0NxiwABAAkAAASoBI0ACQARtgMIBQEHAH0APzIvMzk5MDFBAyMBAyMTMwETBKjK5P6JjuzL4wF4jQSN+3MDLfzTBI380wMtAAMACQAABcgEjQAGAAsAEAAWQAkCDgoFDAcEAH0APzIyMi8zMzkwMUEzEwEzASMBMwMDIwEzAyMTAUDCswHY1v12ov6dx3A27AT1ysvsOgSN/LEDT/tzBI38qP7LBI37cwFKAAACAAkAAAMxBI0AAwAHAA+1BgMCBH0CAC8/ETMzMDFlByE3EwMjEwMxIv2bIvPK7Mu/v78DzvtzBI0AAwAJAAAEnQSNAAMACQANABdADAYHCwUMCAYKAQQAfQA/Mi8zFzkwMUEDIxMhAQEnNwEDATcBAb/K7MsDyf21/r8R4wGEmf7hvAFtBI37cwSN/bn+7vPpAX37cwIjjf1QAAAB//P/7QOvBI0AEwANtBAMBwF9AD8vzDMwMUETMwMOAicuAjcXBhYWFxY2NgI8hu2HEHm+dnOrWgXrAx1EOTlRLwFuAx/84nSuYAIDVqJ3ATVQLQECN1gAAQAaAAABzwSNAAMACbIAfQEALz8wMUEDIxMBz8rrygSN+3MEjQADAAkAAASpBI0AAwAHAAsAGEAKAgMDBAkFCAR9BQAvPzMRMxI5LzMwMUEHITcTAyMTIQMjEwOnIf1+IpnK7MsD1cvqygKdwMAB8PtzBI37cwSNAAABAD//7wROBKAAKgAWQAkpKioFGRB+JAUALzM/MxI5LzMwMUEDDgInLgM3Nz4DFx4CFycuAicmDgIHBwYeAhcWNjc3IzcELEc4pLVQerBvLA0JD1yWy399um0K4gYyWUFReFQxCgoICjBgTj1zMyj1HwJi/i9BRhsCAVqbyXJJd86bVQMCWKt/AUBWLAMCPWqFSExBgmtBAgEZIcytAAMACQAAA+gEjQADAAcACwAaQAsHBgYBCgsLAQB9AQAvPxE5LzMROS8zMDFBAyMTAQchNwEHITcBv8rsywJ/Iv3XIgK+Iv2XIgSN+3MEjf4RwMAB78DAAAADAA//EwP+BXMAAwAHAEEAKUATBz4+JAgXMwYGMwsCICAXAAAXfgA/My8RMxEzPzMvERI5OTMRMzAxQQMjEwMDIxMlNi4CJy4DNz4DFx4CByc2JiYjJgYGBwYeAhceAwcOAycuAzcXBh4CMz4CAvM1ljZQNpY2AUUIIj1JIkSFazwFBVaIoE9vvHEC6gMuVjgxZEkJBydCSh1GhGg5BQZZiqRQV557RQLrAx07UjIxZUoFc/7MATT61P7MATTxLDsnGAoUNVB2UlmCUycBAlCfdwE6TigBHkM2KDclFwkUOVR5U1yBUCQBAi9ejV4BNEouFwEbQAADABEAAAQIBKAAAwAHACYAHUANBAUFASIZfg4CAg0BCgA/MzMRMz8zEjkvMzAxYSE3IQMHITclBw4CByc+AzcTPgMXHgIHJzYmJicmDgIDlPx9IQOEfxn9BhkBkBwIOmNFiiYwHQ8FHwpDcZ5leaBLBO4EEDo8M0ktGcABuZCQaflTj3QrWQ5CVlciAQFeo3pEAwJns3YBMWBAAgEtTFsABQACAAAD5wSOAAMABwAMABEAFQAbQAsGBwMCAhEUCgkRfQA/Mz8SOXwvMxjOMjAxQQchNwUHITclASEBIwMTByMDAQMjEwM7Gv0HGQLUGv0HGQFpAWIBAf4miSeNLIHMAb1g62ACRJGR2I+PogJ//PcDCv1ocgMJ/ZX93gIiAAACAAkAAAPgBI0AAwAHAA61BwYDfQIKAD8/MzMwMUEDIxMhByE3Ab/K7MsDDCL9nCIEjftzBI3AwAAAA/+kAAAD6wSNAAMACAANABtADAgMfQAFBQkCAwMJCgA/MxEzETMRMz8zMDFhNyEHARMzAyMBARMjAQMrIv0zIgIKhP/hs/48AbV3pv2LwMADUfyvBI37cwNqASP7cwAAAwA7/+0EWASgAAMAGQAvABdACgMCAgogFX4rCgsAPzM/MxI5LzMwMUEHITcFBw4DJy4DNzc+AxceAwc3Ni4CJyYOAgcHBh4CFxY+AgMtIv5mIQK6Bg5emM9+ea1rKQsHDl+Zzn54rWoq/QcGCCpZTFF5VDIJBwcHK1pMUnpTMQKhwMA4OXfToFkDAl6eym46d9GgWAIDXZ7Jpjs8gG5FAwNAb4lGOz2BcUgDAkJxiwAC/6QAAAPrBI0ABAAJAA61AQkKBAh9AD8zPzMwMUETMwMjAQETIwECaIT/4bP+PAG1d6b9iwNR/K8EjftzA2oBI/tzAAP/2wAAA6EEjQADAAcACwAXQAoHBgYCCgt9AwIKAD8zPzMSOS8zMDFlByE3AQchNwEHITcC+CL9BSEDDCP9lyEDBCH9AyLAwMAB/sHBAc/AwAADAAkAAASkBI0AAwAHAAsAE7cKBQsHAgADfQA/MzMzMy8zMDFBByE3MwMjEyEDIxMD+yL9fyJFyuzLA9DK7csEjcDA+3MEjftzBI0AA//aAAEEDASNAAMABwAQACVAEg0ICQMKBhAQDgd9CgIMAwMCCgA/MxEzETM/MzMRMxIXOTAxZQchNwEHITcBBwEjNwEDNzMDhyL8zyIDtiL88CIBfwL+DKsbAYbvGJrAv78DzcDA/dAX/budAb4Bq4YAAwBBAAAFNASNABUAJwArABVACRYAACt9HgwqCgA/zTI/My8zMDFBFx4DBw4DIycuAzc+AxcmBgYHBhYWFxcWNjY3NiYmJxMDIxMCwXhou45KCQpxstlzeGq7jEgJCnGy2WRhpGwODDl7WYtkpGsMCzp8V1nL7MsEGQECOXCqc323eDoCAjt0rXN8tXQ4uwE7gGddeT8DAQE/hGlcdToDAS/7cwSNAAIAbQAABUUEjQAZAB0AH0AOFRQUBgcHDRwOAB0dDX0APzMRMz8SOREzMxEzMDFBMwMGAgQnJy4DNxMzAwYeAhcXFjY2NwMDIxMEWusyGqX+8rhJgbpyKxAy6zIJBzBmVUp9o1sSuMvrygSN/tOx/viTAQEDW57SewEu/tFJim5EBAEDZ7RzAS77cwSNAAADAAAAAARxBKAALAAwADQAJ0ATLTQKLjMKKBISKRERMjIxCgYdfgA/Mz8zETMRMzMRMz8zPzMwMUE3Ni4CJyYOAgcHBgYWFhcHLgM3Nz4DFx4DBwcOAwc3PgIBNyEHITchBwNzBQcML1tHTHZVNAkFBwIaRkAKZ5RcJQkEDGSdyXJtrHQ1CQMNWY68cQtgeD/+ySMBwCL8ECIBwCMCays+c104AgI0XnxFKzp9c1kYdRJml7ViI3K9i0sDAk6Lt2okcMCSXQ91IH+o/fXBwcHBAAADAGL/6wULBI0AAwAHACMAHEANFxYLIA0NAwQKBQIDfQA/MzM/EjkvMz8zMDFBByE3ExMzAxM3PgIXHgIHDgMHNzI+Ajc2JiYnJgYGBBsi/Gkih8rtywcPNXx+O3y4YAkHWo+0YBMyWUYsCAgmWUM8dnQEjcDA+3MEjftzAfu/Gh4MAQFdsYBtlFkoAboXL0w1RVswAQITHwAAAgA5/+0ERASgAAMAKwAXQAoAAQEJHRR+KAkLAD8zPzMSOS8zMDFBByE3ATcOAicuAzc3PgMXHgIXIy4CJyYOAgcHBh4CFxY2NgK9Iv5EIQIM6hSY44J4qWYlDAoOXJXJe4G9bAjqAi1dR1B2TzAJCgcDJVVMS3JMAqfAwP7cAYW3WwMCXJzHbU9zzpxWAwJjuH9GYTQDAj1rh0RRO39tRgIDL2EAAAP/wf//BsMEjQARACkALQAgQA8oKSkcLB0BLX0fHAoLCAoAPzM/Mz8zMzMSOS8zMDFBMwMOBCcjNzc+BDclHgIHDgMnIRMzAxc2Njc2JiYnJTcDByE3AXPvbhIsRGyecTYWIkNaOSIVCAQgbrtsCAdYjq1b/hvK7andXpkOCCpTNP62IiAi/dIiBI39+Fy6poFJAcgBBEFleHk0XwNToXlkk2IvAQSN/DMBAWdjOEsoAgHAAZXAwAADAAn//wbGBI0AFwAbAB8AIUAPFxYWGxoaHgsffQ0KCh4KAD8zETM/MxI5LzMzLzMwMUEeAgcOAychEzMDFzY2NzYmJiclNwcHITcTAyMTBS9uvG0IBlqNrlr+Gsvrqd9emA4IKlI1/rciayH9jSKZyuzLAvcDU6F5Y5RiLwEEjfwzAQFnYjlLKAIBwFvAwAHw+3MEjQADAGMAAAUKBI0AAwAHABsAGUALGA0NAxMECgUCA30APzMzPzMSOS8zMDFBByE3ExMzAxM3PgIXHgIHAyMTNiYmJyYGBgQcIvxpI4fK7MsHDTZ7fjuDuVgON+w4CR5VSzt2cwSNwMD7cwSN+3MB+78aHgwBAWS7h/6qAVdIZTcCAhMfAAAEAAn+oQSjBI0AAwAHAAsADwAbQAwPC30DBwcOCgICCgoAPzMvETMzETM/MzAxZQMjEyUHITcTAyMTIQMjEwKOXOxcAbAi/X8i7srsywPPyuzLs/3uAhINwMADzftzBI37cwSNAAACAAv//AP4BI0AFwAbABtADAIBAQ0LDgobGhoNfQA/MxEzPzMSOS8zMDFBIQcFHgIHBgYHJxMjAwUWPgI3NiYmNzchBwJv/rkiASw0XDcBAo1a+6rpygHIXLCTYg0QX7X6If2HIgLpwAEBIkk8Y10BAQPN+3MCAi9gk2J5nk/pvr4AA/+D/q8EvwSNABAAFgAeACNAEBodHQkXCgocFAkKFhERAH0APzIRMz8zMzMRMxEzLzMwMUEzAw4EByM3Fz4DNxMhAyMTIQEhAyMTIQMjAZrrUxAyTGySYFAaIEBeQSwPjALpyuup/gH+LATIXOw7/Q877ASN/mNau7KYcx6/ATx/iplXAZr7cwPN/PP97wFR/rAAAAX/qgAABkUEjQADAAkADQATABcANUAZFBcXEQwLCwcHEREGDg4PCgICFQoJAwMPfQA/MxEzPzMRMxI5LzMzETMRMxEzETMRMzAxQQMjEyEBITczAQMDNwkCIRMzBycBIQED48rsygNO/gf+1xWnAUOqu8wBBPwX/v4BCZ22NY3+n/7PAe0EjftzBI39S9UB4PtzAguQ/WUB2AK1/iDVH/4JApcAAgAO/+4D6wSfAB4APgAdQA0fAgIBPj4VNCoLCxV+AD8zPzMSOS8zMxEzMDFBJzcXPgI3NiYmIyYGBgcHPgMXHgMHDgMnFx4DBw4DJy4DNxceAhcWNjY3Ni4CJycCLsIWgTdqSggINFguMVdBDO0HVYSdUEmTekYEA1SCl/6lRIpxQgQFX5OtVVCTcUAC6AExUjQ5clIJBho2SSiXAisBfQEBHUc/NkEbARs8MQFYfk8kAQEhRndXVHhMJUcBASBEb1JhhlIkAgEqVIFZATdDHQEBIEpALz8kEQEBAAMACwAABK0EjgADAAcACwAbQAwAAwoHCwoBAgUFCH0APzMRMzM/MzMzMzAxdwEXAQEzAyMBMwMjWgNyj/yQAtnpyun92+nK6VYEOFf7yQSN+3MEjftzAAADAAoAAARqBI0AAwAJAA0AH0AODAsLBwcGBgIJA30KAgoAPzM/MxI5LzMRMxEzMDFBAyMTIQEhNzMBAwM3AQHAyuzLA5X9uv7uBrQBfa36tgFbBI37cwSN/UvVAeD7cwILkP1lAAAD/8H//gSYBI0AAwAHABkAGEALExAKBwIDAwh9BgoAPz8zETMzPzMwMUEHITchAyMTITMDDgQnIzc3PgQ3A+Ai/dIiAubL7Mr9yO5vEi1Fap1wNhciQlk5IhUJBI3AwPtzBI3991u4p4JKAsgCB0Fjdng0AAIAdv/oBIkEjQASABcAF0AKARd9FRYWDg4HCwA/MxEzETM/MzAxQQEhAQ4CByImJzcWFjMyNjY3AxMTBwECCAF1AQz93C1oi2McNhoRFCkUMkc2FyCfKKz+6wHnAqb8eFCBSwEDAsEDBClDKANS/af+80UDqwAEAAn+rwS4BI0ABQAJAA0AEQAdQA0RDX0FCQkQCwgCAggKAD8zLxEzMzMRMz8zMDFlAyMTIzczByE3EwMjEyEDIxMEuG7ZOoAiBSL9fyLuyuzLA9DK7cvA/e8BUcDAwAPN+3MEjftzBI0AAgBbAAAEWwSNAAMAFwATtxQJCQIDDn0CAC8/MxI5LzMwMUEDIxMDBw4CJy4CNxMzAwYWFhcWNjYEW8rsyggONXR2OoXBXw857DoIHVZLO3ZzBI37cwSN/f+/GB8OAgFfu4wBXP6jSGQ3AwESHwAEAAkAAAZDBI0AAwAHAAsADwAZQAsLBwcPEAoGBgMOfQA/MzMRMz8zETMwMWUHITcBAyMTIQMjEyEDIxME8SL7xiIDSsrsygMuyuzK/GjK7MvAwMADzftzBI37cwSN+3MEjQAABQAJ/q8GVwSNAAUACQANABEAFQAnQBIRDQ0VfQQQAgIQEAwMExMJCAoAPzMzETMRMxEzLxEzPzMRMzAxZQMjEyM3MwchNwEDIxMhAyMTIQMjEwZXbtg6gCIEIvvGIgNKyuzKAy/L7Mr8aMrsy8D97wFRwMDAA837cwSN+3MEjftzBI0AAgBL//wE5QSNAAMAGgAXQAoGBQUPEgoRAQB9AD8yMj8zOS8zMDFTByE3ASUHBR4CBwYGBycTIwMFFjY2NzYmJmwhAbsiAT3+uSIBKjZbNwECj1r7qunKAch75J4SEF+zBI3AwP5qAcABAiZMO2JmAQEDzftzAgJZsYF4olP//wAL//wF2QSNBCYCIgAAAAcB/QQKAAAAAQAL//wD8wSNABYAFUAJFRYWCgwJCgp9AD8/MxI5LzMwMUEeAgcOAiclEzMDFzY2NzQmJiclNwJxb7NgERKe5Xr+OMrpqvtbjQM2WzX+1SEC9wNToniBsVkDAQSN/DMBAWZiO0wmAgHAAAIAFP/tBB8EoAADACsAF0AKAgEBHAgnCxMcfgA/Mz8zEjkvMzAxQSE3IQEeAhcWPgI3NzYuAicmBgYHBz4CFx4DBwcOAycuAicDWP5FIQG8/YQCL15IUXROLQoKBwUmV0pLc0wQ7BaY4IR3qmcnDAoPWpPHfX7BcAYB58D+3kdeMAIDPmuGRVE6fm5GAwIzZEcBhbpfAwJcncZuT3TNm1YDA1+zgAAEAAn/7QYaBKAAAwAHAB0AMwAdQA4kGX4vDgsDAgIGB30GCgA/PxI5LzM/Mz8zMDFBByE3EwMjEwEHDgMnLgM3Nz4DFx4DBzc2LgInJg4CBwcGHgIXFj4CApUi/pMil8rsywU8Bw5dmc5+ea5rKQwGD16azn14rWop/AcGBypaS1F6VTIJBwcIK1pMUXpTMQKkwMAB6ftzBI393Dl306BZAwJfnstvOHbRoFgCA12eyao7PYFuRwMDQG+KRjo9gnBIAwNBcYoAAAL/0QAABFIEjgADACMAGUALIwAEBBkbFn0ZAQoAPzM/MxI5LzMzMDFBASEBBSUiJiYnLgInLgI3PgMzBQMjEycGBgcGFhYXBQJn/nT+9gGSAd7+ow0VFQoEBgYDSG07BQVWiqVWAc3K7KnHV40OByZMMgE1Akv9tQJLjQEHCQUFDQwGHU5zVGCIVScB+3MDzQEBVFw3RCICAQAD//YAAARJBI0AAwAHAAsAG0AMCwoKAwIGBwcDfQIKAD8/MxEzERI5LzMwMUEDIxMhByE3EwchNwIoyuzKAw0h/Zsiux39cx4EjftzBI3AwP4BpqYAAAb/qv6vBkUEjQADAAcADQARABcAGwA7QBwCDgEBDg4GGxgYFRISEA8MCQkTBgYZCg0HBxN9AD8zETM/MxESOS8zMzMzETMzETMRMxEzLxEzMDFBIxMzAQMjEyEBITczAQMDNwkCIRMzBycBIQEFpclcyf3iyuzKA07+B/7XFacBQ6q7zAEE/Bf+/gEJnbY1jf6f/s8B7f6vAhADzvtzBI39S9UB4PtzAguR/WQB2AK1/iDVH/4JApcAAAQACv6vBGoEjQADAAcADQARACdAEhAPDwsKCgYNB30CDgEBDg4GCgA/MxEzLxEzPzMSOS8zMxEzMDFBIxMzAQMjEyEBITczAQMDNwEDu8lcyP2qyuzLA5X9uv7uBrQBfa36tgFb/q8CEAPO+3MEjf1L1QHg+3MCC5D9ZQAEAAoAAAUVBI0AAwAHAA0AEQApQBMQDw8KAAsLCgMDCgoGDQd9DgYKAD8zPzMSOS8zLxEzETMRMxEzMDFBMwMjEwMjEyEBITchAQMDNwEB15pwmlnK7MsEQP26/kMGAV4Bfqz8twFbA439fgOC+3MEjf1L1QHg+3MCC5D9ZQAEAGAAAAV0BI0AAwAHAA0AEQAhQA8QDw8LCgoOBgoNBwcDAH0APzIyETM/MzkvMzMRMzAxUyEHISUDIxMhASE3MwEDAzcBggG/Iv5BAmrK7MsDlf26/u4GtAF9rPq1AVwEjcDA+3MEjf1L1QHg+3MCC5D9ZQAAAQA+/+gFdwSoAEQAG0AMAAEBLxgLJCMjOg1+AD8zMxEzPzMzLzMwMWUHLgQ3Nz4DFx4DBwcOAgQnLgM3Nz4DNwcOAwcHBh4CFxY+Ajc3NjYmJicmDgIHBwYeAgUmEHzkv4dADQULRHSmbGqMUBoJCROJ0/77j4nTiz0OBQ5YkcR6FkttSSsJBQkZSYBcaLOMWQ0GBQUQODg9VDMcBgUORJDKr8EDNGSa1YopYbeRUwIDVo6vXUaQ7qpcAwJZoN6GMHXKl1UDyAFAaoBBJVaUcEACAz96p2Y1J2diQgMCOl5sMC2Fsmsu//8AbAAABIIEjgQmAe0AAAAHAkAACf7TAAL/ov6vBH0EjQADAA8AIkARCw4IBQQKBg99AgoBAQoKDQoAPzMRMy8RMz8zEhc5MDFBIxMzARMBIQEBIQMBIQEBA8LIXMj9aaMBMgEh/iYBF/73sv7E/t8B5v77/q8CEAPO/msBlf2x/cIBnP5kAlcCNgAABQBi/q8FvASNAAUACQANABEAFQAiQBARDQ0UFX0QEgwJBAgCAggSAD8zLxEzMzM/PzMzETMwMWUDIxMjNzMHITcTAyMTIQMjEyMHITcFvG7ZO4AhBSH9fiLuyuzKA9HL68qtIvx1IsD97wFRwMDAA837cwSN+3MEjcDAAAMAWwAABFsEjQADAAcAGwAfQA4AGBgNAwMNDQYHEn0GCgA/PzMSOS8zLxEzETMwMUEzAyMBAyMTAwcOAicuAjcTMwMGFhYXFjY2Af2Zb5oCzsrsyggONXR3OYXCXg857DkJHlVLO3ZzA0L9fgPN+3MEjf3/vxgeDwIBX7uMAVz+o0hlNgMBEh8AAAIACQAABAkEjQADABcAFEAJDxIUCQkBfQASAD8/OS8zPzAxcxMzAxM3PgIXHgIHAyMTNiYmJyYGBgnL68oJDzN0dziGwl4OOes5CR5VSzx1cwSN+3MCAr8YHw4BAl+7i/6iAV5IZTcCAhIgAAEAO//wBZQEpwA0ABtADBgYHR0RESILfi0ACwA/Mj8zOS8zETMvMDFFLgM3Nz4DFx4DBwclLgM3FwYWFhcFNzYmJicmDgIHBwYeAhcWNjcXDgIDVnnDhj0ODw9moM93eLJwKw4X/CNdhVIjBboEGUdBAwcFDittVUx6WTkLEwoYQ3FOUJhJMTR7gQ8BTpDHe3RzyJRSAgNTksN0mAEDQXGVWAE7ZD8EAxtSf0sCAjZifUaFS3pXMQECIxy3ICIMAAEAMv/tBG8EpAArABVACREUFBkLCyQAfgA/Mj8zOS8zMDFBHgMHBw4DJy4DNzchByUHBhYWFxY+Ajc3Ni4CJyYGByc+AgJ7eMCCOg0QD2efznh4sm8sDhgDZiL9jQUOLGxVTHpaOAsTCRdDcU5Rl0kwNX6EBKMBUJHHeHRzx5VSAwJSksR0mcABGlGASgMCN2F9R4NLe1gxAQEiHbgfIgwAAAIADv/oBAYEjQAHACYAG0AMCAUFBCYmHRMLBwB9AD8yPzM5LzMzETMwMVMhBwEjNwEhExceAwcOAycuAzcXFBYWFzI2Njc2JiYnJ8oDPBv+MqQXASv97eSdTItqOgUGXZGwWVGTcT8C6DNVNTxwTQgIMFo2kASNo/5lfQEB/ugCAi1Vf1Rjj1kpAgIrVoJaAThFHwEkUUI+SSECAQAAAwA0/+0EUAShABUAJAA0ABtADgslai0dai0tCwAWagALAC8vKxI5LysrMDFBHgMHBw4DJy4DNzc+AxcmBgYHBgYHITY0JzYmJgMWNjY3NjY3IRQGFwYeAgKXeaxqKgsGDl6ZzX95rWspCwcOX5nOcFqDVBUBAwICIAEBAiRd5FqCVBQCAwH94QEBARMwVASeA12eyW45dtSgWQMCXp7Kbjp30aBZwwRRhk8GCwYGCwZHglb80wJPhk8GCgYFCQQ2Z1M0AAQABwAABAoEoAADAAcACwAqACFADwYHAwICCSYdfhIKChEJEgA/MzMRMz8zEjkvM84yMDFBByE3BQchNwEhNyEBBw4CByc+AzcTPgMXHgIHJzYmJicmDgIDQxn9BhkC0Rn9BhoDc/x9IQOE/hccCDpjRIsmMB0PBR8KQ3GeZXehTgXsAxI6OzRILhkCvJGR64+P/i/AAiL5U490K1kOQlZXIgEBXqN6RAMCY611ATJaOgIBLUxbAAADAB7/8QPuBKEAIwAnACsAHUANJyYmKisrBxkSfgAHCwA/Mz8zEjkvMzMvMzAxZRY2NxcGBicuAzc3PgMXFhYXByYmJyIOAgcHBh4CAQchNwUHITcCZTNkMgY1bDdupWkrDBsQWI7AdzpyOSkwYjNJbUsuCRwHBidQATAZ/Q0aAskZ/Q4ZsQEQDL4ODwECS4Sza8ByvIlJAQEUDbsQDwExWHRDwzlqVjQCUJGR7pCQAAQACQAAB7YEoQADABUAJwAxAClAEiswLi0kCQkxLn0qLQobEhICAwAvMzN8LzMYPzM/MzMvMxESOTkwMUEHITcTNz4CFx4CBwcOAicuAjcHBhYWFxY2Njc3NiYmJyYGBgEDIwEDIxMzARMHIxr91hoTBgpkomViiEUHBwpjoWVgiUayCAQXPzg7VTQHCAQYPzc6VjP+6Mrk/omO7MvjAXiNAWGQkAGiSWSbVgICWZZfSWOZVQICV5WqSzJWNwECNVo2SjFWNwICNVkBCPtzAy380wSN/NMDLQAAAv/aAAAEtASNABgAHAAbQAsbHAIBAQ4MD30OCgA/PzMSOXwvMxjOMjAxQSU3BT4CNzYmJiclAyMTBR4CBw4DBwchNwK//UcfAp4+bUoICCVONf8AqevKAc9tuGoIBliLqlsf/TsfAZ0BsgEBL1hAOE8sAgH8MwSNAQNUonZikV8uTbKyAAAC//X/8wKFAyMAGQAzABlAChsAABkaGggQLCQALzPMMjkvMzMRMzAxUzM+Ajc2JiciBgcjPgIXHgIHDgIHIwc3Fx4CBw4CJy4CNTMWFhcyNjc2JiYn7kkiQS4GBzopKkMPtgdYhEhFgVQBAl2HPoEHD2JBe08BAmaWS0t+TK0BQTExWQkGHTcfAdACFS4mLCgBJihNZS8BAS1gTktYJgEoUgECIFJNVmoxAgE2a1AyLAE0NiUpEgEAAv/zAAACeQMVAAcACwAXQAkDBwcBAQYFCAoAL8wyMjkvMxEzMDFBByE3ATMDBwEDIxMCeRr9lAwBspzJzgG2ibKKATmUggHu/v/aAdv86wMVAAEAC//zApIDFQAhABK2HwkJBAMZEQAvM8wyOS8zMDFTJxMhByEHNjYzNhYWBw4CJy4CJxcWFjcyNjc2JiciBs+WeAHhGv62Oh5AIEtsOAMDWI1VR3xQA60ENS89SggGNjciOwFeJwGQkZwNDwE+cEpXf0QCATZnSwIuJwFMOzVBARUAAAEAFv/zAmwDJAAtABO2ExwcAwAMJAAvM8wyOX0vMzAxQTMHJyYGBgcHBhYWNz4CNzYmByIGBgcnPgIzMhYWBw4CJy4CNzc+AwIeIg4HWY5eDg8DDi4rJT0nBAc1MyE9MA0uCElrPUpnMgMDWI5TXX48BgQMUoewAySWAQM0dFt3JEMqAQElPCQzPgEXKx8jPl00RnVHVX9GAQJUj1o1a6RyOgAAAQAlAAACugMVAAYADLMFAQYCAC/MMjIwMUEHASMBJTcCuhT+R8gBvP5bGgMVcv1dAoIBkgAABAAF//MCggMiAA8AHwAvAD0AF0AKDCQ7AxQUNCwcBAAvM8wyOS8XMzAxZQ4CJy4CNz4CFx4CBzYmJiMiBgYHBhYWMzI2NhMOAiMuAjU0NjYXHgIHNiYmIyIGBwYWFjMyNgJTAl2OSkSBUgECYI5HQoBUrQQaMRsgOykFBBovHCA7KuACWYVCPXlQVoZGQ3hMtgQUJxoqRAcEFCgZK0ThVWkwAQEtYk1SZjABAS1ePR8oFBcuIh8pFBcwAXtMXywBKlhGT2cxAQEuX1caJhMyLBsmFDQAAAEANP/0AnwDIgAuABO2EhsbCiMBLQAvM8wyOXwvMzAxdxcWNjY3NzYmJiMiBgYHBhYWMzI2NjcXDgIjLgI3PgIXHgIHBw4DByd4ClKBVQ0UAwwpKSc7JQQDEy0jIDgrCjcJQ2Q6TWk1AwNYj1RddjQGBQpOga5qFoYBAitlVpohQCkrQyQhNx8WKh0hOVkzAUN0SVaFSwECWJFXNm2jbTcBAQAAAQCRAosDPAMxAAMACLEDAgAvMzAxQQchNwM8Hv1zHQMxpqYAAwEIBEwDWgaaAAMADwAbABlACRMNDQcBAwMZBwAvMzN8LxjNETMRMzAxQTcXBQUmNjcyFhUUBiMiJjcUFjMyNjc2JiciBgGix/H+7/7AAW9NR2dsTEhqYCAkJToFBiIjKTUF2MIBweRNagFiSUxpXksgMTclIDMBOgAEAAkAAAP7BI0AAwAHAAsADwAbQAwLCgoGDw4HfQMCBgoAPzMzPzMzEjkvMzAxZQchNxMDIxMBByE3AQchNwNUIv14IvPK7MsChCL9yyIC2CL9eSK/v78DzvtzBI3+Lb+/AdPAwAAE/4f+SQRLBFEAEgAkAFsAXwAzQBpdXwZyJSYYGA9AQUEuU1MPDwVKNw9yIQUHcgArMisyETkvOREzMxEzETMSOTkrMjAxUzc+AhceAgcHDgMnLgI3BwYWFhcWNjY3NzYmJiciBgYDFwYGBwYWFhcXHgIHDgMnLgM3PgI3Fw4CBwYeAjMWPgI3NiYmJycuAjc+AgEHITdaAgqQ1XNrt2wGAQhZiaRTaLhv8QMDLFEyN2VHCQMEK1A0OGZGLVwkPwcFHC8YrVulYgYFd7PBTjyXi1gDA2aXTjMlPyoHBidDTCAoaWdKCQgpRybBOXBJAQI+XgNcGf6MEALGFnunUwMCU550F1qLXS4CAlSciBY1TSoBAS1TOBY1TiwBLFT+tTgTOiweHgoBAQI5fWpiilUmAQEYO2hQWnxLEVsKLkIoKzYdDAEPJkEzLjASAgIBIk5DQF1DAomVlQAABAA7/+cEiQRSABUAKwAvADMAF0AMMAotBhwRC3InBgdyACsyKzI/PzAxUzc+AxceAwcHDgMnLgM3BwYeAhcWPgI3NzYuAicmDgIFEzMDAxMzE0QDDEV4sXhpiU0bBAcRTHqobWuOTxn5AgUDH0tDQWNILQsHBAgiSD1Ma0QmAcqp2sbFDLQQAfQVZtCtZgMDZaG7WDhfvptcAwNdl7dyFjJyZUEBAkBpdzY0LnVvSQMDSXmJKwIe/eL95AIc/eQAAgArAAAE6gWwABkALgAfQA8mCBsaGgIBAQ4MDwJyDggAPysyEjkvMzMRMz8wMUEhNwUyNjY3NiYmJyUDIxMFHgIHDgIPAjceAgcHBgYWFwcjJiY2Nzc2JiYC2v5iIQFMT4pbCwkrYEX+2dr1/QIKgMttCgl4tWMgezl2s1oPEQUDERoD8RsQBAYQCSJXAljGAS9nVUdiNAIB+xgFsAEDWrWKcZRZGDEUhAJSon91JE1HHhwhVFknckhoOwADACsAAAV2BbAAAwAJAA0AIEAQCggJAgwLCwcGBgIDAnICCAA/KxI5LzMzETM/PzAxQQMjEyEBITczAQMBNwECHf31/QRO/TL+oAXpAga8/qS2Ab0FsPpQBbD8wtoCZPpQAqS3/KUAAAMAFAAABEYGAAADAAkADQAcQA4LBwYGAgkGcgMAcgoCCgA/MysrEjkvMzMwMUEBIwkCISczAQMDNwECCv716wELAyf96f7gI98BWIH2rgFMBgD6AAYA/jr9ob8BoPvGAgWg/VsAAAMAKwAABWAFsAADAAkADQAaQA4GCwcIDAUCCQMCcgoCCAA/MysyEhc5MDFBAyMTIQEhNzMBAwE3AQId/fX9BDj9Df7OCmMCd8j+GeECJgWw+lAFsP0GdgKE+lAC32D8wQAAAwAUAAAEMwYYAAMACQANACBAEAwLCwcGBgIJBnIDAXIKAgoAPzMrKxI5LzMzETMwMUEBIwkCITUzAQMBNwECDv7x6wEPAxD9vP78fgGbfv60vAGbBhj56AYY/iL9wZ4BofvGAh95/WgAAAIACf//BBYEjQAZAB0AFkAJGxoPAgEOD30BAC8/MxEzETMyMDFhITcXFjY2Nzc2LgInJTcFHgMHBwYGBAMDIxMBhv7qI/p0pWQPCAgNNGVR/uEiAQJ3t3s2DAYUsP7ub8rsy78BAVukbzpHf2M7AwHAAQNWlcZzOaf7iwSO+3MEjQABADn/7QREBKAAJwARthkVEH4kAAUAL8wzP8wzMDFBNw4CJy4DNzc+AxceAhcjLgInJg4CBwcGHgIXFjY2AwzqFJjjgneqZiUMCg5clcl8gL1sCOoCLV1HUHZPMAkKBwMlVUxLckwBgwGFt1sDAlycx21Pc86cVgMCY7h/RmE0AwI9bIVFUTt/bUYCAy9hAAACAAn//wQABI0AGQAxAChAExwbKRkCAgEbJgEBJhsDDQwPfQ0ALz8zEhc5Ly8vETMSOTkRMzAxQSE3BT4CNzYmJicnAyMTBR4DBw4CBwMhNwU+Ajc2JiYnJzcFFx4CBw4DAkL+uxwBCTRlSAgIKU4vz6nsywGSS5R3RAUFaqFWs/56gQEMNWZJCggiSDH9HwEkKU58RQQFVYilAf2mAQEcQzo3PRsBAfwzBI0BAh9Gd1lieDsF/cW/AQIfRjs1QyICAaYBQQRAdFNihE8iAAP/mgAABAEEjQAEAAkADQAcQAwNAAYDDAwBBwN9BQEALzM/MxI5LxI5OTMwMUEBIwEzEwM3MxMDByE3AoD+E/kCkqZMtwSb+6sg/XkgA5P8bQSN+3MDq+L7cwGwtbUAAAEA6ARtAiwGKgAKAAqyBYAAAC8azTAxUzc+AjcXBgYHB+gUCC5JMn8jNgwXBG2EPXNjJlI6dEN6AAACAQQE0gN9BnwADwATABK1EhMKAA0FAC8zfNwy1hjNMDFBNw4CJy4CJxcGFhcyNicnMxcC06oHZpRKR4lbA6YCSDs9XaSHolEFsAJUYykCASxhUQI9NQE2R8HBAAL9JwS+/3YGiQAXABsAHUAMABUVBRkbGwkREQwFAC8zMxEzMy8zETMRMzAxQxcOAgcGJiYHBgYHJz4CMzIWFjc2Nic3Fwf6YgYnRzMqREQnJioLZgUqSDQpREYnJinzpMrVBZ4cLlM2AQEoJwMCNSAaLlU1JycDAjc60QHQAAIA3ATnBR0GigAGAAoAFLcIBwcFAYAEBgAvMxrNOTMvzTAxUyUXFwcnByUTMwHcAUGY77WCtAG/w+L/AATn9gH0AY2NmwEI/vgAAgAWBNsDoQZ/AAYACgAXQAkHQAgIAwaAAgQALzMazTkzLxrNMDFBFyMnByMlJRMjAwKz7rWCs94BQf6/aomkBdH2jo72rv74AQcAAAIA3AToBI8GxwAGABoAH0ANERIIQBoJCAgDBoACBAAvMxrNOTMRMzMaEMwyMDFBFwcnBwclBSc3PgI3NiYmIzceAwcGBgcCv+Slj8XOATcB5o0KFjovBQQrOhIQI1ZOMQICUzYF3vUBn54B93QBewIIGR0dFwVnAQ0iPDA+OwsAAgDbBOgDowbMAAYAHgAlQBAIBwcQGAxAFBMTHAwMBoAEAC8azTIRMzMRMxoQzTIyETMwMUEXBycHByUlFw4CBwYmJgcGBgcnPgIzMhYWNzY2Aq32pZLCzwFFARpZBiQ/LCVAPSUfJgtbBiQ/LSRAPyQgJgXS6QGOjQHq+hwoSC4BASYlAwItGhgnSTAmIwMDLQADAAkAAAQWBcQAAwAHAAsAG0AMAgoKCwsHAwMHfQYKAD8/My8RMxEzETMwMUEDIxMBAyMTIQchNwQWWOtY/pTK7MsDDCL9nCIFxP4JAff+yftzBI3AwAAAAgEEBNEDfAZ8AA8AEwAStRETAAoNBQAvM3zcMhjWzTAxQTcOAicuAicXBhYXMjYnNxcHAtOpBmaUSkeKWwKlAUg7PV3MlsDIBa8CVWIpAgEsYVECPTUBNknAAb8AAAIBBQTTA3UHBwAPACUAKEARGxwcESUSEhERCQ0FAAkJBRAAPzN8LzMRMxEzGC8zETMRMy8zMDFBNw4CJy4CJxcGFhcyNicjNz4CNzYmJiIjNx4DFQ4CBwLPpgZlkUpHiFoBowJIOjtdJaIHFUM4BAQgMC4LDSBiYUABMUgiBa8CU2IpAgErYFECPDMBNFN1AQUXHRUVCF8BCBw4MSoxFwYA//8AiQKJAvQFvAYHAeEAcwKY//8AZgKYAuwFrQYHAjoAcwKY//8AfgKLAwUFrQYHAjsAcwKY//8AiQKLAt8FvAYHAjwAcwKY//8AmAKYAy0FrQYHAj0AcwKY//8AeAKLAvUFugYHAj4AcwKY//8ApwKMAu8FugYHAj8AcwKYAAEAbP/oBT8FyAApABVAChoWEQNyJgAFCXIAK8wzK8wzMDFBNwYGBCcuBDc3NhI2NhceAhcnLgInJg4CBwcGHgMXFjY2A+nyG67++513s31HFg0HEnK4+Jmb2ncG9AQ2cV5qoXFFDQcIARtAalFjkWAB2QKd4HYDAlKOts1pOI0BBc53AwN94JcBV4ZPAwNdnLtZOT6NiG9GAgNJiAAAAQBr/+oFRgXIAC0AG0ANLSwsBRoWEQNyJgUJcgArMivMMxI5LzMwMUEDDgInLgQ3NzYSNjYXHgIXIy4CJyYOAgcHBh4DFxY2NjcTITcFE1c7u9Bdeb6IUh0OBRNyufublNh9C+4HP3NUa6V0Rg0GCQUlSXVUNGliKTb+4yEC4f3aUFsmAQJQi7fSbiiOAQjSeQMDbs+SUXZBAwNfoL1cKEWSh21BAgEOJSIBH7sAAgArAAAFFQWwABsAHwAStxwPEAJyAh0AAC8yMisyMjAxYSE3BTI+Ajc3Ni4CJyU3BR4DBwcGAgYEAwMjEwHg/rclASJzvpJbEAYNGFCRbf6yIwE7luSUPhAFFIjW/u9g/fX9xwFLirpwLGCzjFQDAcgBA3DC/I4tm/79vmcFsPpQBbAAAgBu/+gFaQXIABkAMQAQtyEUA3ItBwlyACsyKzIwMUEHDgQnLgQ3Nz4EFx4EBTc2LgMnJg4CBwcGHgMXFj4CBV0FD1GCrdN7drR+TBkMBQ9Tg63SeHa1f0sZ/vsGCAQfQm1RaKZ5SQ0GCAQfQm1Ra6Z3SAL1LXDXvY1PAwJVkLjOZy1v1ruNTwMCVI63zpMuP4yFbkMDA16dvFkuPo2IcEYCBF6gvwAAAwBt/wQFaQXIAAMAHQA1ABtADSUYA3IAAwMxCwlyAQIALzMrMjIRMysyMDFlAQcBAQcOBCcuBDc3PgQXHgQFNzYuAycmDgIHBwYeAxcWPgIDYwE+rP7JAp4ED1KArNV7d7V/ShkNBA9Tga3Tene1f0sY/vwFCAMeQm1Saqd3SQ4ECAMfQW5RbaZ2SML+yIYBNgK1I3HZvY5PAwJVkbjQaSJx2LyOTwMCVY650IokQI2Hb0QDA1+fvVwjP46JcUYCBF+hwAAAAQCrAAADMASNAAYAFUAJAwQEBQUGfQIKAD8/My8zETMwMUEDIxMFNyUDMMTql/6SJQI9BI37cwNqetDNAAABABwAAAQJBKIAIAAXQAoQEAwVfgMgIAISAD8zETM/MzMvMDFlByE3AT4CNzYmJicmBgYHBz4CFx4DBw4DBwUDySH8dB0CGipSPAgHJ0wxRWtFDOkLkt58TI5vPQcEO1ppMv7Gv7+lAZ8iTFo5NEUkAQI5ZUEBgbpiAgIoUH1WRXViVij5AAH/gf6hBBIEjQAfABpACwYAHh4DFg8FAgN9AD8zMy8zEjkvMzMwMUEBITchBwEeAgcOAycmJic3FhYXFjY2NzYmJicnAUQBf/3SIgNbGv5jaZBECAtxs+N9Zr9bRkWcUmm0eA4NQIheUwJfAW7Al/6CE4G4aILLjUkCATossysvAQJVnGpkfj0BAQAAAv/R/sQEHwSNAAcACwAWQAkGBAt9CgMHBwIALzMRMy8/MzMwMWUHITcBMwkDIwEEHyL71BQDO8j+8f4RAzD+/+sBAb/AngPw/oj9qwPN+jcFyQAAAf/Y/p0ETQSMACcAFkAJJAkJAhoTBQJ9AD8zLzMSOS8zMDFBJxMhByEDNjYXMh4CBw4DJyYmJzcWFhcWPgI3Ni4CJyYGBgErztwDFCT9r3Q2eD1nklgiCQtlo9B4asNZWDybUEyAYz0KBg4uUT0wUkMBahIDEMz+nx8ZAU+HrF54xZBMAQI9N680MQEBNF59SjVnUzQBARYyAAEAMf7EBFoEjQAGAA+1AQUFBn0DAC8/MxEzMDFBBwEjASU3BFoZ/Oj4Awz9QyIEjZH6yAUIAcAAAgEFBMwDgwbZAA8AJwApQBEREBAZISEVHRwcJRUVAAkNBQAvM80yMnwvMzMRMxEzGC8zMxEzMDFBNw4CJy4CJxcGFhcyNhMXDgIjBiYmBwYGByc+AjMyFhY3NjYCzacGZJJLR4dYAqUDRTs8XGNhBClINClERScmKQtnBilJNChFRicmKwWuAlVjLAIBLmNRAjw1ATUBZxsvVDUBKCcCAzUhHC5UNigmAgM1AAH/uP6aAQEAswADAAixAQAAL80wMWUDIxMBAV3sXrP95wIZAAUAO//wBp8EnwApAC0AMQA1ADkAMUAYODk5MX0WLS0XMAo1NDQmGwEGBiZ+ERsLAD8zPzMRMxESOS8zPzMzETM/MxEzMDFBBy4DJyYOAgcHBh4CFxY+AjcXDgInLgM3Nz4DMx4CAQchNxMDIxMBByE3AQchNwQmJyxaWlotUntWMwoHBwYoWEstWltZLgU+fn0+eaxpKQsHD16azn5BgoICEiH9eCH0yuzLAoQi/csiAtgi/XkiBI3DAgYIBgEBQG2KSDs8gG9HBAIDBQYBvwMHBgIDXZ3Jbjp40J9YAQgJ/DK/vwPO+3MEjf4tv78B08DAAAABAEX+sQQ9BKQAOwAUtwAVHx81Cyk1AC8vMxI5LzMyMDFFFj4CNzc2LgInJg4CBwYeAhcWPgI3Nw4CJy4DNz4DFx4DBwcOBCcmJic3FhYBUXGjbkEPJAcEJlRGRGlJKgcFCSlMPDlrWz8MZA6AzYRolFojCApVjLtweaxnJQ4fEEhwncp9S5BEQDFlkAJgocFf9jh4aUIDATtkeDsxa1w8AgIfPlk5CoDFbQMDU4uvX2rAk1QCA16fy2/Pbte/klICASEdsBUcAAH/AP5HATsAzgARAAqyDQYAAC/MMjAxdzMDDgInIiYnNxYWMzI2NjdP7CkPYaZ1I0MhIBcxGTRCJgfO/vVurGIBCgjCBgk0VC3///+p/qEEOgSNBAYCZigA////2v6dBE8EjAQGAmgCAP///8n+xAQXBI0EBgJn+AD//wATAAAEAASiBAYCZfcA//8ATf7EBHYEjQQGAmkcAP//ACL/6AQ/BKMEBgJ/1gD//wBW/+kEBwW6BAYAGvkA//8AMf6xBCkEpAQGAm3sAP//ADf/6QRCBccGBgAcAAD//wD4AAADfQSNBAYCZE0A////BP5HAdsEOgQGAJwAAP///wT+RwHbBDoGBgCcAAD//wAjAAABygQ6BgYAjQAA////fP5fAcoEOgYmAI0AAAEGAKTUCgALtgEEAgAAQ1YAKzQA//8AIwAAAcoEOgYGAI0AAAADAAn/5gPnBKEAAwAWADEAKUAUDyYmDSMjCRsvC3IEAAACEwl+AgoAPz8zEjkvMysyETkvMzMRMzAxQQMjExcHPgIXFhYXASc3NyYmJyYGBgM3FhYzMjY2NzYmJicnNzc2HgIHDgInJiYBc4PnguvgCm3Ci36/UP50ixXxHEUoR1gvQlUeRCY5VzYHCDZeNV4cX0uQc0AECHG8cz5zAu39EwLtAgKFx2wDA3hb/mYDe/wcIAEBS3T8/LYYHDZYNj9CGAEBngUCI0x6VXWvYQIBHgACAEz/6ARpBKMAFQArAA61HBF+JwYLAD8zPzMwMUEHDgMnLgM3Nz4DFx4DBzc2LgInJg4CBwcGHgIXFj4CBF4CD1uX0YR+rmgmDAIPXZjRg32uZyX6BgYIKVlMUXtWMwkFBgcqWU1Se1UxAlURetupXgMDY6fRcRN52addAwJjpdCRMjyCcUkDA0NzjEYxPIR0SwMDRHWOAAEAVgAABGEFsAAGABNACQEFBQYEcgMMcgArKzIRMzAxQQcBIwEhNwRhGf0G+AL6/VohBbCR+uEE8MAAAAMAEP/oBCUGAAAEABoALwAZQA4hFgdyKwsLcgQKcgAAcgArKysyKzIwMUEzAwcjAQcOAycuAzc3PgMXHgMHNzYuAicmDgIHBwYWFhcWPgIBG+zlRM4ECwMMSn2wdGeJTh0FCBBLeKhrcZJQGfgCBgYlUUc9Zk40Cx0EK15KS29LLAYA+tnZAi0WZMijYAMDYZq2WERdv51eAwNjn79yFjd4aUQCAixQZzi3Q3tPAgNAbYEAAAEANv/pA/YEUQAnABlADB0ZGRQHcgQEAAkLcgArMjIvKzIvMjAxZRY2Njc3DgInLgM3Nz4DFx4CByM0JiYnJg4CBwcGHgIB4zxiRg/dDozOcXOlZCgLBQ1YkMN4eKxcAdsmUD9KbUssCAQGBCNQqgIvVjgCdaxdAgNal8FoJHDImFUDA2q2dTlhPQIDPmmAPyM2eWpEAAMAN//oBJkGAAAEABoALwAZQA0hBAQWC3IrCwdyAQByACsrMisyLzIwMWUTMwEjATc+AxceAwcHDgMnLgM3BwYeAhcWNjY3NzYuAicmDgICzOHs/vXK/XwDDEt/s3Noh00cBAgQTXmna2yRUxz5AwYHJ1FET35UERwDFDFQOEtwTS7uBRL6AAIJFmXKpGADA2Sdt1dEXbycXAMEY6C8chU2d2pEAwNNf0i3MmJQMgEDQG2CAAMALf5SBEoEUQATACkAPgAbQA8wJQtyOhoHcg4GD3IABnIAKysyKzIrMjAxQTMDDgMnJiYnNxYWFxY2NjcTATc+AxceAwcHDgMnLgM3BwYeAhcWNjY3NzYuAicmDgIDfc2rEViOwHhVpEpAOH9CZIlRDoT9CwIMS32zdWqJSxsFCBFMeahrbJFSHPkDBgcnUURRfFQQHQMTMlA5S29NLgQ6/BZyvIhIAgEwKawiKAEDUo9eAwj+txZmyaJgAwJim7haQ169m1wDA2WgvHEWNXdqRAIETX5JtzNjTzECAkBtggACADL/6QQ0BFEAFQArABC3HBELcicGB3IAKzIrMjAxUzc+AxceAwcHDgMnLgM3BwYeAhcWPgI3NzYuAicmDgI8Aw1dlsh5c6lsLAoDDl6XyHhxqWws+AMGCipXRkpzUjEJAwUILFZGS3NRMQIKF3HMnFcDAluawmoYccqZVgMCWpjBgBc4emlDAgM/a4JBFjh7a0UCAkBtgwAAA//I/mAEJARSAAQAGgAvABlADiEWB3IrCwtyAwZyAg5yACsrKzIrMjAxQQMjATMBBw4DJy4DNzc+AxceAwc3Ni4CJyYOAgcHBhYWFxY+AgGS3uwBBNICfAMMSn2xc2WJUyAEChBNeqlsb5JQGvkDBggnU0U9Z000DB8DLV5ISnBOLgNc+wQF2v3zFWTIo2EDA12VslhRXr6eXQMDY6C+cRU2eGpEAgMtUGY4xEJ3SwMCQm6CAAADADb+YARKBFIABAAaAC8AGUAOIRYLcisLB3IEDnIDBnIAKysrMisyMDFBEzczAQE3PgMXHgMHBw4DJy4DNwcGHgIXFjY2Nzc2LgInJg4CAlnhQc/+/Pz6AwxKf7R1aIlOHAQIEE17qGttklQc+gMGBydSRVB/VBEdAxQyUTlLcU4u/mAFEcn6JgOpFmbKo2ADA2OduFdEXr2bWwMDY5+9chU2eGpGAwJNgEq3M2NRMQICQW6DAAEAOv/sA/UEUQAqABlADBMSEgAZCwdyJAALcgArMisyETkvMzAxRS4DNzc+AxceAwcHITcFNzYmJicmDgIHBwYeAhcWNjcXBgYCBHKwdTMJBA1Xj8B1bZtdIQwU/NQfAj0FCxxRRkpsSSoIBQgVPGZKTJJCKUrDEwFTkcBtK23Hm1gDAlOMtGV/rQEdQGxDAwI/a4A+KkJ5XzgCASwmpzsvAAMALv5SBDkEUQASACgAPQAbQA8vJAtyORkHcg0GD3IABnIAKysyKzIrMjAxQTMDDgInJiYnNxYWFxY2NjcTATc+AxceAwcHDgMnLgM3BwYeAhcWNjY3NzYuAicmDgIDa86tFpDqnU+cRkA1dT1hiVIOhv0dAwxFdq10a4lLGgUIEEx5p2tsjEsW+AIGAh9LQ1F7UBEdAxMvTzlLakYnBDr8C5fiegIBKSStHiEBAkyKXAMU/rYWZMilYQIDYZy4WkRdvJxcAwRlobxuFTN2a0YCBE1/SLczYlAxAgJCboEAAv+f/k8EZwRIAAMAJQAZQAwOFQEBFR8EB3IDBnIAKysyLzMvETMwMUEBIwElHgMXEx4CFxY2NwcGBicuAycDLgInJgYHNzY2BGf8M/sDzf2MP1g+KxDuBxclHxMoEzQYLxg6UTYjDuEKIjcpECIQDB49BDr6JgXaDQEsSmA0/GYaOiwGAwEBwQYFAgI6WWcvA3UjQisBAQMBuQcJAP//AKsAAAMzBbUEBgAVugAAAQAk/+0ESQSfAEEAF0ALODgQIn4ZCjMAC3IAKzI/PzM5LzAxRS4DNz4CNyU2Njc2JgciBgcGFhYXASMBLgI3PgIXHgIHDgIHBQ4CBwYWFhcWPgI3NwYGBwYGBwYGAZhChW4/BARCZToBHyNIBwU7KzNQCAYgMxQCF/L+QSZFKwQGaaBWT41VBQM1Ui/+xhktIAUHKUgpXZ96Tg3LDWtZDh4QVuARASNHbk1KblcksxhCLy00AUMyJUM8Gv1PAkQwYmxBXX9AAQI/eVg7YE4exxEpMyAvOhoBBD1wl1kBfsxXDhwLRj4AAAP/7wAAAz0EjQADAAcACwAdQA0ICQkLCgoGB30DAgYKAD8zMz8SOS8zMy8zMDFlByE3EwMjEwEHBTcDPSL9myLzyuvKAagb/YIbv7+/A877cwSN/qWZupgAAAb/fgAABg8EjQADAAcACwAQABQAGAAzQBgKCwsYGA8HBhQTBhMGEw0PfQMCAhcXDQoAPzMRMxEzPxI5OS8vETMRMxEzETMRMzAxZQchNwEHITcBByE3BwEhATMTByE3AQMjEwWQIv2WIQJdIf3gIgKsIf2VInH9Vf71AySjLiL9miEC+KHpob6+vgIAvr4Bz76+f/vyBI39N7y8Asn7cwSNAAIACQAAA7wEjQADABkAF0AKDxAQAX0FBAQACgA/Mi8zPzMvMzAxcxMzAyc3FzI2Njc2JiYnJzcXHgIHDgIjCcvryiki2T1wTQkIKlM18iPUb7ttCAmT3nsEjftz5MEBKFNDOk4pAgHAAQNTonmGq1AAAAP/2//HBLsEuwAVACsALwAbQAsvLxwRfi0tJwYLcgArMjJ8Lxg/MzN8LzAxQQcOAycuAzc3PgMXHgMHNzYuAicmDgIHBwYeAhcWPgIBASMBBEwGDl6Yz355rWspCwcOX5nOfnitair9BwYHK1lMUXlUMgkHBwcrWkxSelQwAWn7y6sENQJpOXfToFkDAl6eym46d9GgWAIDXZ/Ipjs9gG1FAwNAb4lGOz2BcUgDAkJxiwLR+wwE9AAEACIAAAT+BI0AAwAHAAsADwAbQAwCA4AODw8LB30KBgoAPzM/MzMvMxrMMjAxQQchNxMDIxMhAyMTBQchNwPAIv1+IprK7MsD1MvqygEoHvt9HgKdwMAB8PtzBI37cwSNlqenAAACAAn+RwSoBI0ACQAbAB9ADxcQD3IJAwZ9CAoKAgIFCgA/MxEzETM/MzMrMjAxQQMjAQMjEzMBEwMzBw4CJyYmJzcWFjMyNjY3BKjK5P6JjuzL4wF4jb3rEg5jpnYjQyIjGDAYNEMmCASN+3MDLfzTBI380wMt+7iBcKxhAQEKCcAGCTRTLgD//wBAAg4CZQLOBgYAEQAAAAMAIAAABPcFsAAaAB4AIgAjQBECAQEdIiEhHQ4PDx4Cch0IcgArKzIRMxE5LzMRMxEzMDFhITcFMjY2Nzc2LgInJTcFHgMHBw4CBAMDIxMBByE3Ae7+wyUBH5PPexUKCws+fGf+tSMBL5LVhjMQChV8xP7/UP32/QGKHv1zHccChuCHUFWpjVcDAcgBA3G/9odOk/26ZwWw+lAFsP2EpqYAAAMAIAAABPcFsAAaAB4AIgAjQBECAQEdIiEhHQ4PDx4Cch0IcgArKzIRMxE5LzMRMxEzMDFhITcFMjY2Nzc2LgInJTcFHgMHBw4CBAMDIxMBByE3Ae7+wyUBH5PPexUKCws+fGf+tSMBL5LVhjMQChV8xP7/UP32/QGKHv1zHccChuCHUFWpjVcDAcgBA3G/9odOk/26ZwWw+lAFsP2EpqYAAAMAKwAABBAGAAADABoAHgAZQA0eHRYKB3IDAHIRAgpyACsyKysyxDIwMUEBIwETIz4DFx4DBwMjEzYmJicmDgIBByE3AiH+9esBCx9KDUV2pm1Zd0QWCXTtdgYUREFGa0suAa0d/XMdBgD6AAYA/EVeu5laAwJCcZFR/UkCujteOQECOGB2Au6mpgAAAwCdAAAFJQWwAAMABwALABVACgMKCwYHAnIBCHIAKysyLzMyMDFBAyMTIQchNwEHITcDavz0/QKuI/ubIwMbHv1zHgWw+lAFsMjI/gimpgAD/+X/7QKuBUMAAwAVABkAHUAOChELchgZGQICBAQDBnIAKzIvMhEzLzMrMjAxQQchNxMzAwYWFhcWNjcHBgYnLgI3AQchNwKuH/2wHtnrswQJJScVKxYRJEsmWm4sCAINHv1zHgQ6sLABCfvmIzQdAQEGA7oLCgEBUYhUAcGmpgD///+jAAAEqwc3BiYAJQAAAQcARAFUATcAC7YDEAcBAWFWACs0AP///6MAAATDBzcGJgAlAAABBwB1AfYBNwALtgMOAwEBYVYAKzQA////owAABKsHNwYmACUAAAEHAJ4A8gE3AAu2AxEHAQFsVgArNAD///+jAAAExQcqBiYAJQAAAQcApQEBATcAC7YDHAMBAWtWACs0AP///6MAAASrBwYGJgAlAAABBwBqAR4BNwANtwQDIwcBAXhWACs0NAD///+jAAAEqweSBiYAJQAAAQcAowGNAWwADbcEAxkHAQFHVgArNDQA////owAABNgHsQYmACUAAAEHAkEBfgEXABK2BQQDGwcBALj/srBWACs0NDT//wBf/jcFCgXHBiYAJwAAAQcAeQG8//oAC7YBKAUAAApWACs0AP//ACYAAAS8Bz4GJgApAAABBwBEASEBPgALtgQSBwEBbFYAKzQA//8AJgAABLwHPgYmACkAAAEHAHUBwwE+AAu2BBAHAQFsVgArNAD//wAmAAAEvAc+BiYAKQAAAQcAngC/AT4AC7YEEwcBAXdWACs0AP//ACYAAAS8Bw0GJgApAAABBwBqAOsBPgANtwUEJQcBAYNWACs0NAD//wA3AAACMgc+BiYALQAAAQcARP/ZAT4AC7YBBgMBAWxWACs0AP//ADcAAANIBz4GJgAtAAABBwB1AHsBPgALtgEEAwEBbFYAKzQA//8ANwAAAxcHPgYmAC0AAAEHAJ7/dwE+AAu2AQcDAQF3VgArNAD//wA3AAADMAcNBiYALQAAAQcAav+jAT4ADbcCARkDAQGDVgArNDQA//8AJgAABYYHKgYmADIAAAEHAKUBLAE3AAu2ARgGAQFrVgArNAD//wBi/+kFIgc4BiYAMwAAAQcARAFsATgAC7YCLhEBAU9WACs0AP//AGL/6QUiBzgGJgAzAAABBwB1Ag0BOAALtgIsEQEBT1YAKzQA//8AYv/pBSIHOAYmADMAAAEHAJ4BCgE4AAu2Ai8RAQFaVgArNAD//wBi/+kFIgcsBiYAMwAAAQcApQEYATkAC7YCOhEBAVlWACs0AP//AGL/6QUiBwcGJgAzAAABBwBqATUBOAANtwMCQREBAWZWACs0NAD//wBY/+gFMQc3BiYAOQAAAQcARAFJATcAC7YBGAABAWFWACs0AP//AFj/6AUxBzcGJgA5AAABBwB1AeoBNwALtgEWCwEBYVYAKzQA//8AWP/oBTEHNwYmADkAAAEHAJ4A5gE3AAu2ARkAAQFsVgArNAD//wBY/+gFMQcGBiYAOQAAAQcAagESATcADbcCASsAAQF4VgArNDQA//8AoQAABVAHNgYmAD0AAAEHAHUBwQE2AAu2AQkCAQFgVgArNAD//wAc/+kD0QYABiYARQAAAQcARACsAAAAC7YCPQ8BAYxWACs0AP//ABz/6QQbBgAGJgBFAAABBwB1AU4AAAALtgI7DwEBjFYAKzQA//8AHP/pA+sGAAYmAEUAAAEGAJ5LAAALtgI+DwEBl1YAKzQA//8AHP/pBB0F9AYmAEUAAAEGAKVZAQALtgJJDwEBllYAKzQA//8AHP/pBAQFzwYmAEUAAAEGAGp3AAANtwMCUA8BAaNWACs0NAD//wAc/+kD0QZbBiYARQAAAQcAowDmADUADbcDAkYPAQFyVgArNDQA//8AHP/pBDAGegYmAEUAAAEHAkEA1v/gABK2BAMCSA8AALj/3bBWACs0NDT//wA3/jcD5gRRBiYARwAAAQcAeQFB//oAC7YBKAkAAApWACs0AP//ADr/6wPwBgAGJgBJAAABBwBEAJYAAAALtgEuCwEBjFYAKzQA//8AOv/rBAUGAAYmAEkAAAEHAHUBOAAAAAu2ASwLAQGMVgArNAD//wA6/+sD8AYABiYASQAAAQYAnjQAAAu2AS8LAQGXVgArNAD//wA6/+sD8AXPBiYASQAAAQYAamAAAA23AgFBCwEBo1YAKzQ0AP//ACMAAAHkBfcGJgCNAAABBgBEi/cAC7YBBgMBAZ5WACs0AP//ACMAAAL6BfcGJgCNAAABBgB1LfcAC7YBBAMBAZ5WACs0AP//ACMAAALIBfcGJgCNAAABBwCe/yj/9wALtgEHAwEBqVYAKzQA//8AIwAAAuIFxgYmAI0AAAEHAGr/Vf/3AA23AgEZAwEBtVYAKzQ0AP//AA0AAAQnBfQGJgBSAAABBgClYwEAC7YCKgMBAapWACs0AP//ADj/6QQeBgAGJgBTAAABBwBEAKsAAAALtgIuBgEBjFYAKzQA//8AOP/pBB4GAAYmAFMAAAEHAHUBTQAAAAu2AiwGAQGMVgArNAD//wA4/+kEHgYABiYAUwAAAQYAnkkAAAu2Ai8GAQGXVgArNAD//wA4/+kEHgX0BiYAUwAAAQYApVgBAAu2AjoGAQGWVgArNAD//wA4/+kEHgXPBiYAUwAAAQYAanUAAA23AwJBBgEBo1YAKzQ0AP//AEr/6AQvBgAGJgBZAAABBwBEALIAAAALtgIeEQEBoFYAKzQA//8ASv/oBC8GAAYmAFkAAAEHAHUBVAAAAAu2AhwRAQGgVgArNAD//wBK/+gELwYABiYAWQAAAQYAnlAAAAu2Ah8RAQGrVgArNAD//wBK/+gELwXPBiYAWQAAAQYAanwAAA23AwIxEQEBt1YAKzQ0AP///7z+RwQZBgAGJgBdAAABBwB1AR4AAAALtgIZAQEBoFYAKzQA////vP5HBBkFzwYmAF0AAAEGAGpHAAANtwMCLgEBAbdWACs0NAD///+jAAAEqwbjBiYAJQAAAQcAcAD5ATkAC7YDEAMBAaZWACs0AP//ABz/6QQDBa0GJgBFAAABBgBwUgMAC7YCPQ8BAdFWACs0AP///6MAAASrBx8GJgAlAAABBwChASoBNwALtgMTBwEBU1YAKzQA//8AHP/pA/UF6AYmAEUAAAEHAKEAgwAAAAu2AkAPAQF+VgArNAAABP+j/lUEqwWwAAQACQANACMAK0AVDQwMAxYdBgACBwMCcg4PDwUFAghyACsyETMRMysyEjk5LzMSOS8zMDFBASEBMxMDNzMBAwchNwEXDgIHBhYXMjY3FwYGIyImNz4CAyj9hf72AxCrVM4PnwEZsiP8/iMDBXUjUj4GAxgeFy0VDCJOKFZpAgFOdgTh+x8FsPpQBPy0+lACHMfH/h89GTpKLx0gAQ4JjRUUaVdKcFAAAAMAHP5VA9EEUAAbADoAUAArQBceOjoPQ0oPcicxC3I7PDwZCnIJBQ8HcgArMjIrMhEzKzIrMhI5LzMwMWUTNiYmJyYGBgcHPgMXHgIHAwYGFwcHJjQTByciDgIHBhYWFxY2NjcXDgMnLgI3PgMzExcOAgcGFhcyNjcXBgYjIiY3PgICiFIGGkU4Mlg9CusGWYmfTG6qWQtPCQcTAukPdRicMGVYPAcFH0AsO3NVED8WT2h7QVqUVgUFYZm2Wad1I1I+BgMYHhctFA0iTilVaQECTnXZAgc0VDEBASNEMQFVf1MnAQJapHT+Hjl3NxIBNW8B75UBEixLOC1BJgEBMFk6bD1mSigBAk+OXWmNUyT9qD0ZOkovHSABDgmNFRRpV0pwUP//AF//6AUKB0sGJgAnAAABBwB1AfwBSwALtgEoEAEBbVYAKzQA//8AN//qA/IGAAYmAEcAAAEHAHUBJQAAAAu2ASgUAQGMVgArNAD//wBf/+gFCgdLBiYAJwAAAQcAngD4AUsAC7YBKxABAXhWACs0AP//ADf/6gPmBgAGJgBHAAABBgCeIgAAC7YBKxQBAZdWACs0AP//AF//6AUKByoGJgAnAAABBwCiAdcBUwALtgExEAEBglYAKzQA//8AN//qA+YF3wYmAEcAAAEHAKIBAAAIAAu2ATEUAQGhVgArNAD//wBf/+gFCgdOBiYAJwAAAQcAnwEOAUsAC7YBLhABAXZWACs0AP//ADf/6gP0BgMGJgBHAAABBgCfNwAAC7YBLhQBAZVWACs0AP//ACYAAATZB0EGJgAoAAABBwCfAJUBPgALtgIlHgEBdVYAKzQA//8AOP/oBc8GAgQmAEgAAAEHAdQEwwUCAAu2AzkBAQAAVgArNAD//wAmAAAEvAbqBiYAKQAAAQcAcADGAUAAC7YEEgcBAbFWACs0AP//ADr/6wPwBa0GJgBJAAABBgBwOwMAC7YBLgsBAdFWACs0AP//ACYAAAS8ByYGJgApAAABBwChAPgBPgALtgQVBwEBXlYAKzQA//8AOv/rA/AF6AYmAEkAAAEGAKFsAAALtgExCwEBflYAKzQA//8AJgAABLwHHQYmACkAAAEHAKIBngFGAAu2BBkHAQGBVgArNAD//wA6/+sD8AXgBiYASQAAAQcAogETAAkAC7YBNQsBAaFWACs0AAAFACb+VQS8BbAAAwAHAAsADwAlAClAFAoLCxgfDg8PBwJyEBERAwICBghyACsyETMyETMrMhEzLzM5LzMwMWUHITcBAyMTAQchNwEHITcBFw4CBwYWFzI2NxcGBiMiJjc+AgPoI/0RIgEh/fb9AtMi/XIjA1Mj/RYkAQt1JFE+BgMYHhctFAwiTShWaQIBTnXHx8cE6fpQBbD9oMTEAmDIyPqLPRk6Si8dIAEOCY0VFGlXSnBQAAIAOv5yA/AEUQArAEEAJUATEhMTCzQ7DnIZCwdyLC0kJAALcgArMhE5OSsyKzISOS8zMDFFLgM3Nz4DFx4DBwchNwU3NiYmJyYOAgcHBh4CFxY2NxcOAjcXDgIHBhYXMjY3FwYGIyYmNz4CAfZvq3AyCAQLVI3AdnGcXB8LDvzUHAI9BAkfUkVLa0YnCAQGEjRcRFWLOXQuh50YdCNSPgYDGB4XLRUMIk4oVmkCAU52FAJTj7tqKW3Ln1wDAlqVvGVnrQEVP3BIAgJCcIM+KDt0XzsCAks8e0VaK209GDpKMB0gAQ8IjBYUAWlWSnBQ//8AJgAABLwHQQYmACkAAAEHAJ8A1QE+AAu2BBYHAQF1VgArNAD//wA6/+sEBwYDBiYASQAAAQYAn0oAAAu2ATILAQGVVgArNAD//wBm/+sFFwdLBiYAKwAAAQcAngD6AUsAC7YBLxABAXhWACs0AP////n+UQRCBgAGJgBLAAABBgCeQQAAC7YDQhoBAZdWACs0AP//AGb/6wUXBzMGJgArAAABBwChATIBSwALtgExEAEBX1YAKzQA////+f5RBEIF6AYmAEsAAAEGAKF6AAALtgNEGgEBflYAKzQA//8AZv/rBRcHKgYmACsAAAEHAKIB2AFTAAu2ATUQAQGCVgArNAD////5/lEEQgXfBCYASwAAAQcAogEhAAgAC7YDSBoBAaFWACs0AP//AGb99gUXBccGJgArAAABBwHUAZj+kgAOtAE1BQEBuP+YsFYAKzT////5/lEEQgamBCYASwAAAQcCTgE8AHwAC7YDPxoBAZhWACs0AP//ACYAAAWFBz4GJgAsAAABBwCeARYBPgALtgMPCwEBd1YAKzQA//8ADQAAA/YHXwYmAEwAAAEHAJ4AVgFfAAu2Ah4DAQEmVgArNAD//wA3AAADSQcxBiYALQAAAQcApf+FAT4AC7YBEgMBAXZWACs0AP//ABMAAAL7BesGJgCNAAABBwCl/zf/+AALtgESAwEBqFYAKzQA//8ANwAAAy4G6gYmAC0AAAEHAHD/fQFAAAu2AQYDAQGxVgArNAD//wAjAAAC4AWkBiYAjQAAAQcAcP8v//oAC7YBBgMBAeNWACs0AP//ADcAAAMhByYGJgAtAAABBwCh/68BPgALtgEJAwEBXlYAKzQA//8AIwAAAtMF3wYmAI0AAAEHAKH/Yf/3AAu2AQkDAQGQVgArNAD///+O/lsCKQWwBiYALQAAAQYApOYGAAu2AQUCAAAAVgArNAD///91/lUCCgXYBiYATQAAAQYApM0AAAu2AhECAAAAVgArNAD//wA3AAACVgcdBiYALQAAAQcAogBWAUYAC7YBDQMBAYFWACs0AP//ADf/6AaPBbAEJgAtAAAABwAuAjIAAP//ACD+RgP7BdgEJgBNAAAABwBOAfoAAP//AAT/6AU6BzUGJgAuAAABBwCeAZoBNQALtgEXAQEBalYAKzQA////BP5HAscF3gYmAJwAAAEHAJ7/J//eAAu2ARUAAQGCVgArNAD//wAm/kkFcgWwBCYALwAAAQcB1AFe/uUADrQDFwIBALj/57BWACs0//8AEf40BE4GAAYmAE8AAAEHAdQA9P7QAA60AxcCAQG4/9SwVgArNP//ACYAAAPABzMGJgAwAAABBwB1AGwBMwALtgIIBwEBXFYAKzQA//8AIAAAAzkHkAYmAFAAAAEHAHUAbAGQAAu2AQQDAQFxVgArNAD//wAm/gYDwAWwBCYAMAAAAQcB1AEo/qIADrQCEQIBAbj/l7BWACs0////pv4GAhYGAAQmAFAAAAEHAdT/1f6iAA60AQ0CAQG4/5ewVgArNP//ACYAAAPXBbEGJgAwAAABBwHUAssEsQALtgIRBwAAAVYAKzQA//8AIAAAA2oGAgQmAFAAAAEHAdQCXgUCAAu2AQ0DAAACVgArNAD//wAmAAADwAWwBiYAMAAAAAcAogFe/dD//wAgAAAC9AYABCYAUAAAAAcAogD0/a3//wAmAAAFhgc3BiYAMgAAAQcAdQIgATcAC7YBCgYBAWFWACs0AP//AA0AAAQlBgAGJgBSAAABBwB1AVgAAAALtgIcAwEBoFYAKzQA//8AJv4CBYYFsAQmADIAAAEHAdQBlf6eAA60ARMFAQG4/5ewVgArNP//AA3+BgPyBFEEJgBSAAABBwHUAQD+ogAOtAIlAgEBuP+XsFYAKzT//wAmAAAFhgc6BiYAMgAAAQcAnwEyATcAC7YBEAkBAWpWACs0AP//AA0AAAQnBgMGJgBSAAABBgCfagAAC7YCIgMBAalWACs0AP//AA0AAAPyBgMGJgBSAAABBwHUAD8FAwALtgIgAwEBOlYAKzQA//8AYv/pBSIG5QYmADMAAAEHAHABEAE7AAu2Ai4RAQGUVgArNAD//wA4/+kEHgWtBiYAUwAAAQYAcFADAAu2Ai4GAQHRVgArNAD//wBi/+kFIgcgBiYAMwAAAQcAoQFBATgAC7YCMREBAUFWACs0AP//ADj/6QQeBegGJgBTAAABBwChAIIAAAALtgIxBgEBflYAKzQA//8AYv/pBXYHNwYmADMAAAEHAKYBiwE4AA23AwIsEQEBRVYAKzQ0AP//ADj/6QS1Bf8GJgBTAAABBwCmAMoAAAANtwMCLAYBAYJWACs0NAD//wAmAAAE1Qc3BiYANgAAAQcAdQGqATcAC7YCHgABAWFWACs0AP//ABEAAAOFBgAGJgBWAAABBwB1ALgAAAALtgIXAwEBoFYAKzQA//8AJv4GBNUFsAQmADYAAAEHAdQBKf6iAA60AicYAQG4/5ewVgArNP///5/+BwLyBFMEJgBWAAABBwHU/87+owAOtAIgAgEBuP+YsFYAKzT//wAmAAAE1Qc6BiYANgAAAQcAnwC8ATcAC7YCJAABAWpWACs0AP//ABEAAAOHBgMGJgBWAAABBgCfygAAC7YCHQMBAalWACs0AP//ACb/6gS9BzgGJgA3AAABBwB1AcsBOAALtgE6DwEBT1YAKzQA//8AG//rA/oGAAYmAFcAAAEHAHUBLQAAAAu2ATYOAQGMVgArNAD//wAm/+oEvQc4BiYANwAAAQcAngDHATgAC7YBPQ8BAVpWACs0AP//ABv/6wPKBgAGJgBXAAABBgCeKgAAC7YBOQ4BAZdWACs0AP//ACb+PAS9BcYGJgA3AAABBwB5AZP//wALtgE6KwAAE1YAKzQA//8AG/4zA8EETwYmAFcAAAEHAHkBPf/2AAu2ATYpAAAKVgArNAD//wAm/fsEvQXGBiYANwAAAQcB1AFE/pcADrQBQysBAbj/oLBWACs0//8AG/3yA8EETwYmAFcAAAEHAdQA7f6OAA60AT8pAQG4/5ewVgArNP//ACb/6gS9BzsGJgA3AAABBwCfANwBOAALtgFADwEBWFYAKzQA//8AG//rA/wGAwYmAFcAAAEGAJ8/AAALtgE8DgEBlVYAKzQA//8Anf4ABSUFsAYmADgAAAEHAdQBM/6cAA60AhECAQG4/42wVgArNP//AD/9/AKuBUMGJgBYAAABBwHUAIL+mAAOtAIfEQEBuP+hsFYAKzT//wCd/kEFJQWwBiYAOAAAAQcAeQGDAAQAC7YCCAIBAABWACs0AP//AD/+PQKuBUMGJgBYAAABBwB5ANMAAAALtgIWEQAAFFYAKzQA//8AnQAABSUHOQYmADgAAAEHAJ8AzQE2AAu2Ag4DAQFpVgArNAD//wA//+0DvwZ+BCYAWAAAAQcB1AKzBX4ADrQCGgQBALj/qLBWACs0//8AWP/oBTEHKgYmADkAAAEHAKUA9AE3AAu2ASQLAQFrVgArNAD//wBK/+gELwX0BiYAWQAAAQYApV8BAAu2AioRAQGqVgArNAD//wBY/+gFMQbjBiYAOQAAAQcAcADtATkAC7YBGAsBAaZWACs0AP//AEr/6AQvBa0GJgBZAAABBgBwVwMAC7YCHhEBAeVWACs0AP//AFj/6AUxBx8GJgA5AAABBwChAR4BNwALtgEbAAEBU1YAKzQA//8ASv/oBC8F6AYmAFkAAAEHAKEAiAAAAAu2AiERAQGSVgArNAD//wBY/+gFMQeSBiYAOQAAAQcAowGBAWwADbcCASEAAQFHVgArNDQA//8ASv/oBC8GWwYmAFkAAAEHAKMA6wA1AA23AwInEQEBhlYAKzQ0AP//AFj/6AVTBzYGJgA5AAABBwCmAWgBNwANtwIBFgABAVdWACs0NAD//wBK/+gEvAX/BiYAWQAAAQcApgDRAAAADbcDAhwRAQGWVgArNDQAAAIAWP6MBTEFsAAVACsAG0ANHiUBCwJyFxYREQYJcgArMhI5OSsyLzMwMUEzAw4CJy4CNxMzAwYWFhcWNjY3AxcOAgcGFhcyNjcXBgYjJiY3PgIEPPWmF6X/npXaaxKm9KUKJmpbYY9YDrF1I1M9BQQYHhcsFQ0jTShWaQIBTnUFsPw1neZ6AwN94ZcDzfwyVIdSAgNLjFz+kD0ZOkovHSABDgmNFRUBaVZLb1EAAAMASv5VBC8EOgAEABsAMQAhQBEkKw9yAREGchwdHQQEGAsLcgArMjIRMxEzKzIrMjAxQRMzAyMTNw4DJy4DNxMzAwYeAhcWNjYDFw4CBwYWFzI2NxcGBiMiJjc+AgK2jey83mNODEBupG9ZeUYXCHXrdgMGHDctYIFLAnUjUj8FBBkdFy0VDSNNKVZoAQFPdQELAy/7xgHgA2K3kFIDA0FwkFACu/1CJ0g6IwIDUY7+sT0ZOkovHSABDgmNFRRpV0pwUP//ALUAAAc6BzcGJgA7AAABBwCeAcEBNwALtgQZFQEBbFYAKzQA//8AeQAABfQGAAYmAFsAAAEHAJ4BBAAAAAu2BBkVAQGrVgArNAD//wChAAAFUAc2BiYAPQAAAQcAngC9ATYAC7YBDAIBAWtWACs0AP///7z+RwQZBgAGJgBdAAABBgCeGwAAC7YCHAEBAatWACs0AP//AKEAAAVQBwUGJgA9AAABBwBqAOkBNgANtwIBHgIBAXdWACs0NAD////lAAAE6wc3BiYAPgAAAQcAdQG9ATcAC7YDDg0BAWFWACs0AP///+YAAAPvBgAGJgBeAAABBwB1ASIAAAALtgMODQEBoFYAKzQA////5QAABOsHFgYmAD4AAAEHAKIBmAE/AAu2AxcIAQF2VgArNAD////mAAAD5AXfBiYAXgAAAQcAogD9AAgAC7YDFwgBAbVWACs0AP///+UAAATrBzoGJgA+AAABBwCfAM8BNwALtgMUCAEBalYAKzQA////5gAAA/EGAwYmAF4AAAEGAJ80AAALtgMUCAEBqVYAKzQA////jQAAB28HQgYmAIEAAAEHAHUC8AFCAAu2BhkDAQFsVgArNAD//wAO/+oGXwYBBiYAhgAAAQcAdQJuAAEAC7YDXw8BAY1WACs0AP//ABb/ogWQB4AGJgCDAAABBwB1AiMBgAALtgM0FgEBllYAKzQA//8AKv91BDAF/QYmAIkAAAEHAHUBNP/9AAu2AzAKAQGLVgArNAD///+W//8EFgSNBiYCSgAAAAcCQP8F/2v///+W//8EFgSNBiYCSgAAAAcCQP8F/2v//wBjAAAEXgSNBiYB8gAAAAYCQCW6////mgAABAEGHgYmAk0AAAEHAEQAywAeAAu2AxAHAQFrVgArNAD///+aAAAEOgYeBiYCTQAAAQcAdQFtAB4AC7YDDgMBAWtWACs0AP///5oAAAQJBh4GJgJNAAABBgCeaR4AC7YDEwMBAWtWACs0AP///5oAAAQ7BhIGJgJNAAABBgCldx8AC7YDGwMBAWtWACs0AP///5oAAAQiBe0GJgJNAAABBwBqAJUAHgANtwQDFwMBAWtWACs0NAD///+aAAAEAQZ5BiYCTQAAAQcAowEEAFMADbcEAxkDAQFRVgArNDQA////mgAABE4GmAYmAk0AAAAHAkEA9P/+//8AOf48BEQEoAYmAksAAAAHAHkBYv////8ACQAAA/sGHgYmAkIAAAEHAEQAoAAeAAu2BBIHAQFsVgArNAD//wAJAAAEDwYeBiYCQgAAAQcAdQFCAB4AC7YEEAcBAWxWACs0AP//AAkAAAP7Bh4GJgJCAAABBgCePh4AC7YEFgcBAWxWACs0AP//AAkAAAP7Be0GJgJCAAABBgBqah4ADbcFBBkHAQGEVgArNDQA//8AGgAAAd8GHgYmAf0AAAEGAESGHgALtgEGAwEBa1YAKzQA//8AGgAAAvQGHgYmAf0AAAEGAHUnHgALtgEEAwEBa1YAKzQA//8AGgAAAsMGHgYmAf0AAAEHAJ7/IwAeAAu2AQkDAQF2VgArNAD//wAaAAAC3QXtBiYB/QAAAQcAav9QAB4ADbcCAQ0DAQGEVgArNDQA//8ACQAABKgGEgYmAfgAAAEHAKUAmAAfAAu2ARgGAQF2VgArNAD//wA7/+0EWAYeBiYB9wAAAQcARADZAB4AC7YCLhEBAVtWACs0AP//ADv/7QRYBh4GJgH3AAABBwB1AXoAHgALtgIsEQEBW1YAKzQA//8AO//tBFgGHgYmAfcAAAEGAJ53HgALtgIxEQEBW1YAKzQA//8AO//tBFgGEgYmAfcAAAEHAKUAhgAfAAu2AjERAQFvVgArNAD//wA7/+0EWAXtBiYB9wAAAQcAagCjAB4ADbcDAjURAQF0VgArNDQA//8AOP/sBGQGHgYmAfEAAAEHAEQAvwAeAAu2ARgLAQFrVgArNAD//wA4/+wEZAYeBiYB8QAAAQcAdQFhAB4AC7YBFgsBAWtWACs0AP//ADj/7ARkBh4GJgHxAAABBgCeXR4AC7YBGwsBAWtWACs0AP//ADj/7ARkBe0GJgHxAAABBwBqAIkAHgANtwIBHwsBAYRWACs0NAD//wBsAAAEggYeBiYB7QAAAQcAdQE5AB4AC7YDDgkBAWtWACs0AP///5oAAAQhBcsGJgJNAAABBgBwcCEAC7YDEAMBAbBWACs0AP///5oAAAQTBgYGJgJNAAABBwChAKEAHgALtgMTAwEBXVYAKzQAAAT/mv5VBAEEjQAEAAkADQAjACFADw0MDAMWHQgDfQ8OBQUBEgA/MxEzMz8zLzMSOS8zMDFBASMBMxMDNzMTAwchNwEXDgIHBhYXMjY3FwYGIyImNz4CAoD+E/kCkqZMtwSb+6sg/XkgAo92JFI+BgMZHRctFA0iTihWaQECTnYDk/xtBI37cwOr4vtzAbC1tf6LPRk6Si8dIAEOCY0VFGlXSnBQAP//ADn/7QREBh4GJgJLAAABBwB1AW0AHgALtgEoEAEBW1YAKzQA//8AOf/tBEQGHgYmAksAAAEGAJ5qHgALtgEtEAEBW1YAKzQA//8AOf/tBEQF/QYmAksAAAEHAKIBSAAmAAu2ATEQAQFwVgArNAD//wA5/+0ERAYhBiYCSwAAAQYAn38eAAu2AS4QAQFkVgArNAD//wAJ//8EFgYhBiYCSgAAAQYAn/keAAu2AiQdAQF0VgArNAD//wAJAAAD+wXLBiYCQgAAAQYAcEUhAAu2BBIHAQGwVgArNAD//wAJAAAD+wYGBiYCQgAAAQYAoXYeAAu2BBUHAQFeVgArNAD//wAJAAAD+wX9BiYCQgAAAQcAogEdACYAC7YEGQcBAYBWACs0AAAFAAn+VQP7BI0AAwAHAAsADwAlACNAEBgfCwoKBg8OB30REBAFBhIAPzMzETM/MzMSOS8zLzMwMWUHITcTAyMTAQchNwEHITcTFw4CBwYWFzI2NxcGBiMiJjc+AgNUIv14IvPK7MsChCL9yyIC2CL9eSLpdSNSPwUDGB4XLBYMI00pVWkCAU52v7+/A877cwSN/i2/vwHTwMD7rj0ZOkovHSABDgmNFRRpV0pwUP//AAkAAAQRBiEGJgJCAAABBgCfVB4AC7YEFgcBAXRWACs0AP//AD//7wROBh4GJgH/AAABBgCecR4AC7YBMBABAWZWACs0AP//AD//7wROBgYGJgH/AAABBwChAKkAHgALtgEwEAEBTVYAKzQA//8AP//vBE4F/QYmAf8AAAEHAKIBUAAmAAu2ATQQAQFwVgArNAD//wA//fsETgSgBiYB/wAAAQcB1AEp/pcADrQBNAUBAbj/mbBWACs0//8ACQAABKkGHgYmAf4AAAEGAJ5/HgALtgMRBwEBdlYAKzQA//8ADgAAAvYGEgYmAf0AAAEHAKX/MgAfAAu2AQkDAQF/VgArNAD//wAaAAAC2wXLBiYB/QAAAQcAcP8qACEAC7YBBgMBAbBWACs0AP//ABoAAALOBgYGJgH9AAABBwCh/1wAHgALtgEJAwEBXVYAKzQA////lv5VAc8EjQYmAf0AAAAGAKTuAP//ABoAAAICBf0GJgH9AAABBgCiAiYAC7YBDQMBAYBWACs0AP////P/7QSYBh4GJgH8AAABBwCeAPgAHgALtgEZAQEBdlYAKzQA//8ACf4DBJ0EjQYmAfsAAAAHAdQAz/6f//8ACQAAAzEGHgYmAfoAAAEGAHUdHgALtgIIBwEBa1YAKzQA//8ACf4EAzEEjQYmAfoAAAEHAdQAzf6gAA60AhEGAQG4/5WwVgArNP//AAkAAAMxBJAGJgH6AAAABwHUAiQDkP//AAkAAAMxBI0GJgH6AAAABwCiAPD9Qf//AAkAAASoBh4GJgH4AAABBwB1AY0AHgALtgEKBgEBa1YAKzQA//8ACf39BKgEjQYmAfgAAAAHAdQBMv6Z//8ACQAABKgGIQYmAfgAAAEHAJ8AnwAeAAu2ARAGAQF0VgArNAD//wA7/+0EWAXLBiYB9wAAAQYAcH4hAAu2Ai4RAQGgVgArNAD//wA7/+0EWAYGBiYB9wAAAQcAoQCvAB4AC7YCMREBAU1WACs0AP//ADv/7QTjBh0GJgH3AAABBwCmAPgAHgANtwMCMBEBAVFWACs0NAD//wAJAAAEFgYeBiYB9AAAAQcAdQEiAB4AC7YCHwABAWtWACs0AP//AAn+BAQWBI0GJgH0AAAABwHUANX+oP//AAkAAAQWBiEGJgH0AAABBgCfNB4AC7YCJQABAXRWACs0AP//AA//7gQbBh4GJgHzAAABBwB1AU4AHgALtgE6DwEBW1YAKzQA//8AD//uA/4GHgYmAfMAAAEGAJ5KHgALtgE/DwEBZlYAKzQA//8AD/49A/4EngYmAfMAAAAHAHkBSAAA//8AD//uBBwGIQYmAfMAAAEGAJ9fHgALtgFADwEBZlYAKzQA//8AY/4DBF4EjQYmAfIAAAEHAdQA4/6fAA60AhECAQG4/5CwVgArNP//AGMAAAReBiEGJgHyAAABBgCfTR4AC7YCDgcBAXRWACs0AP//AGP+RAReBI0GJgHyAAAABwB5ATQAB///ADj/7ARkBhIGJgHxAAABBgClbB8AC7YBGwsBAX9WACs0AP//ADj/7ARkBcsGJgHxAAABBgBwZCEAC7YBGAsBAbBWACs0AP//ADj/7ARkBgYGJgHxAAABBwChAJUAHgALtgEbCwEBXVYAKzQA//8AOP/sBGQGeQYmAfEAAAEHAKMA+ABTAA23AgEhCwEBUVYAKzQ0AP//ADj/7ATJBh0GJgHxAAABBwCmAN4AHgANtwIBGgsBAWFWACs0NAAAAgA4/oUEZASNABUAKwAaQAweJRcWFhEGC3IMAH0APzIrMjIRMy8zMDFBMwMOAicuAjcTMwMGFhYXFjY2NwMXDgIHBhYXMjY3FwYGIyImNz4CA3ftghKS3oV7wmYOgeuCCCRYRUlwSAuVdSNSPgYDGB4XLRQNIk4oVmkCAU51BI39AIa8XwMCYriCAwD8/0NiNwICNGRI/t89GTpKLx0gAQ4JjRUUaVdKcFAA//8AiwAABh4GHgYmAe8AAAEHAJ4BFwAeAAu2BBsKAQF2VgArNAD//wBsAAAEggYeBiYB7QAAAQYAnjUeAAu2AxMJAQF2VgArNAD//wBsAAAEggXtBiYB7QAAAQYAamEeAA23BAMXCQEBhFYAKzQ0AP///9YAAAQqBh4GJgHsAAABBwB1ATwAHgALtgMODQEBa1YAKzQA////1gAABCoF/QYmAewAAAEHAKIBFwAmAAu2AxcNAQGAVgArNAD////WAAAEKgYhBiYB7AAAAQYAn04eAAu2AxQNAQF0VgArNAD///+jAAAEqwY/BiYAJQAAAQYArrD/AA60Aw4DAAC4/z6wVgArNP///7oAAAUgBkEEJgApZAABBwCu/oQAAQAOtAQQBwAAuP8/sFYAKzT////CAAAF6QZABCYALGQAAAcArv6MAAD////GAAACjQZCBCYALWQAAQcArv6QAAIADrQBBAMAALj/QbBWACs0//8AJ//pBTYGPwQmADMUAAEHAK7+8f//AA60AiwRAAC4/yqwVgArNP///7kAAAW0Bj8EJgA9ZAABBwCu/oP//wALtgEKCAAAjlYAKzQA//8AHgAABQMGPwQmALoUAAEHAK7+/v//AA60AzYdAAC4/yqwVgArNP//AAn/9QM6BpsGJgDDAAABBwCv/xr/6wAQQAkDAgErAAEBolYAKzQ0NP///6MAAASrBbAGBgAlAAD//wAm//8EtwWwBgYAJgAA//8AJgAABLwFsAYGACkAAP///+UAAATrBbAGBgA+AAD//wAmAAAFhQWwBgYALAAA//8ANwAAAikFsAYGAC0AAP//ACYAAAVyBbAGBgAvAAD//wAmAAAGzgWwBgYAMQAA//8AJgAABYYFsAYGADIAAP//AGL/6QUiBccGBgAzAAD//wAmAAAE+gWwBgYANAAA//8AnQAABSUFsAYGADgAAP//AKEAAAVQBbAGBgA9AAD////AAAAFRgWwBgYAPAAA//8ANwAAAzAHDQYmAC0AAAEHAGr/owE+AA23AgEZAwEBg1YAKzQ0AP//AKEAAAVQBwUGJgA9AAABBwBqAOkBNgANtwIBHgIBAXdWACs0NAD//wA7/+cEMgY8BiYAuwAAAQcArgE///wAC7YDQgYBAZpWACs0AP//ACj/6gQEBjsGJgC/AAABBwCuAQz/+wALtgJAKwEBmlYAKzQA//8AEf5hA/sGPAYmAMEAAAEHAK4BFP/8AAu2Ah0DAQGuVgArNAD//wBm//UCjgYmBiYAwwAAAQYArv3mAAu2ARIAAQGZVgArNAD//wBX/+cEOAajBiYAywAAAQYArxjzABBACQMCATgPAQGiVgArNDQ0//8AIQAABJAEOgYGAI4AAP//ADj/6QQeBFEGBgBTAAD////e/mAEWQQ6BgYAdgAA//8AZAAABBIEOgYGAFoAAP///5/+TwRnBEgGBgKKAAD//wBE//UC+gW6BiYAwwAAAQcAav9t/+sADbcCAScAAQGiVgArNDQA//8AV//nA/gFwgYmAMsAAAEGAGpr8wANtwIBNA8BAaJWACs0NAD//wA4/+kEHgY8BiYAUwAAAQcArgEF//wAC7YCLAYBAZpWACs0AP//AFf/5wPuBi4GJgDLAAABBwCuAPv/7gALtgEfDwEBmVYAKzQA//8AUv/nBgQGLAYmAM4AAAEHAK4CE//sAAu2AkAfAQGWVgArNAD//wAmAAAEvAcNBiYAKQAAAQcAagDrAT4ADbcFBCUHAQGDVgArNDQA//8AKwAABKwHPgYmALEAAAEHAHUBugE+AAu2AQYFAQFsVgArNAAAAQAm/+oEvQXGADkAG0ANCiYPNjErCXIYFA8DcgArzDMrzDMSOTkwMUE2LgInLgM3PgMXHgIHIzYmJicmBgYHBh4CFx4DBw4DJy4DNxcGHgIzFjY2A1AJKEteLkyUd0IGCGegvl6F0HYF9AYxaE1FgFkLCC1QXChRlXQ+Bwlmnr5hZ7eKSwT0BCFGZT9EgVsBfjtRNyYRG0pmi11pm2YxAgNsxohMbT0BAi1eSjRMNCQOHE1qkWFrm2IuAgE+d6ptAUBjQiICKlsA//8ANwAAAikFsAYGAC0AAP//ADcAAAMwBw0GJgAtAAABBwBq/6MBPgANtwIBGQMBAYNWACs0NAD//wAE/+gEXQWwBgYALgAA//8AKwAABXYFsAYGAkYAAP//ACYAAAVyBzMGJgAvAAABBwB1AaYBMwALtgMOAwEBW1YAKzQA//8Amf/oBVYHJgYmAN4AAAEHAKEBFQE+AAu2Ah4BAQFeVgArNAD///+jAAAEqwWwBgYAJQAA//8AJv//BLcFsAYGACYAAP//ACsAAASsBbAGBgCxAAD//wAmAAAEvAWwBgYAKQAA//8AJQAABXwHJgYmANwAAAEHAKEBUwE+AAu2AQ8BAQFeVgArNAD//wAmAAAGzgWwBgYAMQAA//8AJgAABYUFsAYGACwAAP//AGL/6QUiBccGBgAzAAD//wArAAAFgwWwBgYAtgAA//8AJgAABPoFsAYGADQAAP//AF//6AUKBccGBgAnAAD//wCdAAAFJQWwBgYAOAAA////wAAABUYFsAYGADwAAP//ABz/6QPRBFAGBgBFAAD//wA6/+sD8ARRBgYASQAA//8AFwAABEUF2wYmAPAAAAEHAKEAlv/zAAu2AQ8BAQF9VgArNAD//wA4/+kEHgRRBgYAUwAA////yP5gBBAEUQYGAFQAAAABADf/6gPmBFEAJwATQAkACR0UB3IJC3IAKysyETMwMWUWNjY3Nw4CJy4DNzc+AxceAgcnNCYmJyYOAgcHBh4CAeA7YkEN3w2Jy3Fzo2QnCgQMU4u+d3iuXAHdJU8/SmlFJwcEBQMiT6sBLlY4AXSsXQICWpjBaCRvxplWAwJqt3UBOGE9AgI+an8+IzV5akQA////vP5HBBkEOgYGAF0AAP///7oAAAQSBDoGBgBcAAD//wA6/+sD8AXPBiYASQAAAQYAamAAAA23AgFBCwEBo1YAKzQ0AP//ABYAAAOVBfMGJgDsAAABBwB1AMj/8wALtgEGBQEBi1YAKzQA//8AG//rA8EETwYGAFcAAP//ACAAAAIKBdgGBgBNAAD//wAjAAAC4gXGBiYAjQAAAQcAav9V//cADbcCARkDAQG1VgArNDQA////Av5GAgEF2AYGAE4AAP//ACIAAAR+BfIGJgDxAAABBwB1AUr/8gALtgMOAwEBilYAKzQA////vP5HBBkF6AYmAF0AAAEGAKFTAAALtgIeAQEBklYAKzQA//8AtQAABzoHNwYmADsAAAEHAEQCIwE3AAu2BBgVAQFhVgArNAD//wB5AAAF9AYABiYAWwAAAQcARAFmAAAAC7YEGBUBAaBWACs0AP//ALUAAAc6BzcGJgA7AAABBwB1AsQBNwALtgQWAQEBYVYAKzQA//8AeQAABfQGAAYmAFsAAAEHAHUCCAAAAAu2BBYBAQGgVgArNAD//wC1AAAHOgcGBiYAOwAAAQcAagHtATcADbcFBCsVAQF4VgArNDQA//8AeQAABfQFzwYmAFsAAAEHAGoBMQAAAA23BQQrFQEBt1YAKzQ0AP//AKEAAAVQBzYGJgA9AAABBwBEAR8BNgALtgELAgEBYFYAKzQA////vP5HBBkGAAYmAF0AAAEGAER9AAALtgIbAQEBoFYAKzQA//8AkQP+AZUGAAYGAAsAAP//AJ0D+AK8BgAGBgAGAAD//wAz//AEKgWwBCYABQAAAAcABQIOAAD///8E/kcC+QXhBiYAnAAAAQcAn/88/94AC7YBGAABAYBWACs0AP//AI0EBAH6BgAGBgGFAAD//wAmAAAGzgc3BiYAMQAAAQcAdQLBATcAC7YDEQABAWFWACs0AP//AA8AAAZhBgAGJgBRAAABBwB1ApsAAAALtgMzAwEBoFYAKzQA////o/5wBKsFsAYmACUAAAEHAKcBaQAEABC1BAMRBQEBuP+1sFYAKzQ0//8AHP51A9EEUAYmAEUAAAEHAKcApAAJABC1AwI+MQEBuP/JsFYAKzQ0//8AJgAABLwHPgYmACkAAAEHAEQBIQE+AAu2BBIHAQFsVgArNAD//wAlAAAFfAc+BiYA3AAAAQcARAF9AT4AC7YBDAEBAWxWACs0AP//ADr/6wPwBgAGJgBJAAABBwBEAJYAAAALtgEuCwEBjFYAKzQA//8AFwAABEUF8wYmAPAAAAEHAEQAwP/zAAu2AQwBAQGLVgArNAD//wB2AAAF0QWwBgYAuQAA//8AP/4lBV8EPAYGAM0AAP//AKgAAAVhBv0GJgEZAAABBwCsBFwBDwANtwMCFRMBAS1WACs0NAD//wB1AAAESgXQBiYBGgAAAQcArAPH/+IADbcDAhkXAQF7VgArNDQA//8AOP5HCIAEUQQmAFMAAAAHAF0EZwAA//8AYv5HCXIFxwQmADMAAAAHAF0FWQAA//8AH/43BKQFxgYmANsAAAEHAmsBc/+dAAu2AkIqAABkVgArNAD//wAX/jgDvQRQBiYA7wAAAQcCawEa/54AC7YCPykAAGVWACs0AP//AF/+OgUKBccGJgAnAAABBwJrAbP/oAALtgErBQAAZFYAKzQA//8AN/46A+YEUQYmAEcAAAEHAmsBN/+gAAu2ASsJAABkVgArNAD//wChAAAFUAWwBgYAPQAA//8Adf5fBDAEOgYGAL0AAP//ADcAAAIpBbAGBgAtAAD///+kAAAH6AcmBiYA2gAAAQcAoQJQAT4AC7YFHQ0BAV5WACs0AP///7AAAAaBBdsGJgDuAAABBwChAYv/8wALtgUdDQEBfVYAKzQA//8ANwAAAikFsAYGAC0AAP///6MAAASrBx8GJgAlAAABBwChASoBNwALtgMTBwEBU1YAKzQA//8AHP/pA/UF6AYmAEUAAAEHAKEAgwAAAAu2AkAPAQF+VgArNAD///+jAAAEqwcGBiYAJQAAAQcAagEeATcADbcEAyMHAQF4VgArNDQA//8AHP/pBAQFzwYmAEUAAAEGAGp3AAANtwMCUA8BAaNWACs0NAD///+NAAAHbwWwBgYAgQAA//8ADv/qBl8EUQYGAIYAAP//ACYAAAS8ByYGJgApAAABBwChAPgBPgALtgQVBwEBXlYAKzQA//8AOv/rA/AF6AYmAEkAAAEGAKFsAAALtgExCwEBflYAKzQA//8AS//pBS0G3gYmAVgAAAEHAGoA9wEPAA23AgFCAAEBQVYAKzQ0AP//ADT/6gPaBFEGBgCdAAD//wA0/+oD+AXQBiYAnQAAAQYAamsBAA23AgFAAAEBolYAKzQ0AP///6QAAAfoBw0GJgDaAAABBwBqAkQBPgANtwYFLQ0BAYNWACs0NAD///+wAAAGgQXCBiYA7gAAAQcAagF///MADbcGBS0NAQGiVgArNDQA//8AH//qBKQHGgYmANsAAAEHAGoA3wFLAA23AwJUFQEBhFYAKzQ0AP//ABf/6gPfBc4GJgDvAAABBgBqUv8ADbcDAlEUAQGjVgArNDQA//8AJQAABXwG6gYmANwAAAEHAHABIgFAAAu2AQwIAQGxVgArNAD//wAXAAAERQWgBiYA8AAAAQYAcGX2AAu2AQwIAQHQVgArNAD//wAlAAAFfAcNBiYA3AAAAQcAagFHAT4ADbcCAR8BAQGDVgArNDQA//8AFwAABEUFwgYmAPAAAAEHAGoAiv/zAA23AgEfAQEBolYAKzQ0AP//AGL/6QUiBwcGJgAzAAABBwBqATUBOAANtwMCQREBAWZWACs0NAD//wA4/+kEHgXPBiYAUwAAAQYAanUAAA23AwJBBgEBo1YAKzQ0AP//AGH/6QUbBccGBgEXAAD//wA0/+gEHQRSBgYBGAAA//8AYf/pBRsHCQYmARcAAAEHAGoBRgE6AA23BANPAAEBalYAKzQ0AP//ADT/6AQdBdAGJgEYAAABBgBqdgEADbcEA0EAAQGlVgArNDQA//8ASP/pBPIHGwYmAOcAAAEHAGoBFwFMAA23AwJCHgEBhVYAKzQ0AP//ACD/6APmBc8GJgD/AAABBgBqWQAADbcDAkEJAQGjVgArNDQA//8Amf/oBVYG6gYmAN4AAAEHAHAA5AFAAAu2AhsYAQGxVgArNAD///+8/kcEGQWtBiYAXQAAAQYAcCIDAAu2AhsYAQHlVgArNAD//wCZ/+gFVgcNBiYA3gAAAQcAagEJAT4ADbcDAi4BAQGDVgArNDQA////vP5HBBkFzwYmAF0AAAEGAGpHAAANtwMCLgEBAbdWACs0NAD//wCZ/+gFVgc9BiYA3gAAAQcApgFeAT4ADbcDAhkBAQFiVgArNDQA////vP5HBIcF/wYmAF0AAAEHAKYAnAAAAA23AwIZAQEBllYAKzQ0AP//AMQAAAVdBw0GJgDhAAABBwBqAUgBPgANtwMCLxYBAYNWACs0NAD//wBtAAAEGAXCBiYA+QAAAQYAamnzAA23AwItAwEBolYAKzQ0AP//ACz//wa5Bw0GJgDlAAABBwBqAe8BPgANtwMCMhwBAYNWACs0NAD//wAj//8F+AXCBiYA/QAAAQcAagFy//MADbcDAjIcAQGiVgArNDQA//8AOP/oBIcGAAYGAEgAAP///6P+mASrBbAGJgAlAAABBwCtBOQAAwAOtAMRBQEBuP91sFYAKzT//wAc/p0D0QRQBiYARQAAAQcArQQeAAgADrQCPjEBAbj/ibBWACs0////owAABKsHuQYmACUAAAEHAKsFEwE9AAu2Aw8HAQFxVgArNAD//wAc/+kD0QaDBiYARQAAAQcAqwRsAAcAC7YCPA8BAZxWACs0AP///6MAAAYLB6sGJgAlAAABBwJRAO4BIQANtwQDEgcBAWFWACs0NAD//wAc/+kFYwZ0BiYARQAAAQYCUUbqAA23AwJBDwEBjFYAKzQ0AP///6MAAASrB6kGJgAlAAABBwJSAPEBKgANtwQDEAcBAVxWACs0NAD//wAc/+kD6gZyBiYARQAAAQYCUknzAA23AwI9DwEBh1YAKzQ0AP///6MAAAV7B9wGJgAlAAABBwJTAOwBFQANtwQDEwMBAVBWACs0NAD//wAc/+kE1AalBiYARQAAAQYCU0XeAA23AwJADwEBe1YAKzQ0AP///6MAAASrB9MGJgAlAAABBwJUAOsBBwANtwQDEAcBATpWACs0NAD//wAc/+kD5wacBiYARQAAAQYCVETQAA23AwI9DwEBZVYAKzQ0AP///6P+mASrBzcGJgAlAAAAJwCeAPIBNwEHAK0E5AADABe0BBoFAQG4/3W3VgMRBwEBbFYAKzQrNAD//wAc/p0D6wYABiYARQAAACYAnksAAQcArQQeAAgAF7QDRzEBAbj/ibdWAj4PAQGXVgArNCs0AP///6MAAASrB64GJgAlAAABBwJWARgBMgANtwQDEwcBAVxWACs0NAD//wAc/+kD7QZ4BiYARQAAAQYCVnH8AA23AwJADwEBh1YAKzQ0AP///6MAAASrB64GJgAlAAABBwJPARgBMgANtwQDEwcBAVxWACs0NAD//wAc/+kD7gZ4BiYARQAAAQYCT3H8AA23AwJADwEBh1YAKzQ0AP///6MAAASrCD0GJgAlAAABBwJXARcBNgANtwQDEwcBAW5WACs0NAD//wAc/+kD5QcGBiYARQAAAQYCV3D/AA23AwJADwEBmVYAKzQ0AP///6MAAASrCBUGJgAlAAABBwJqARsBPAANtwQDEwcBAW9WACs0NAD//wAc/+kD9wbeBiYARQAAAQYCanQFAA23AwJADwEBmlYAKzQ0AP///6P+mASrBx8GJgAlAAAAJwChASoBNwEHAK0E5AADABe0BCAFAQG4/3W3VgMTBwEBU1YAKzQrNAD//wAc/p0D9QXoBiYARQAAACcAoQCDAAABBwCtBB4ACAAXtANNMQEBuP+Jt1YCQA8BAX5WACs0KzQA//8AJv6fBLwFsAYmACkAAAEHAK0EqAAKAA60BBMCAQG4/3+wVgArNP//ADr+lQPwBFEGJgBJAAABBwCtBHUAAAAOtAEvAAEBuP+JsFYAKzT//wAmAAAEvAfABiYAKQAAAQcAqwTgAUQAC7YEEQcBAXxWACs0AP//ADr/6wPwBoMGJgBJAAABBwCrBFUABwALtgEtCwEBnFYAKzQA//8AJgAABLwHMQYmACkAAAEHAKUAzgE+AAu2BB4HAQF2VgArNAD//wA6/+sEBwX0BiYASQAAAQYApUMBAAu2AToLAQGWVgArNAD//wAmAAAF2AeyBiYAKQAAAQcCUQC7ASgADbcFBBQHAQFsVgArNDQA//8AOv/rBU0GdQYmAEkAAAEGAlEw6wANtwIBMAsBAYxWACs0NAD//wAmAAAEvAewBiYAKQAAAQcCUgC+ATEADbcFBBIHAQFnVgArNDQA//8AOv/rA/AGcwYmAEkAAAEGAlIz9AANtwIBLgsBAYdWACs0NAD//wAmAAAFSQfjBiYAKQAAAQcCUwC6ARwADbcFBBUHAQFbVgArNDQA//8AOv/rBL4GpgYmAEkAAAEGAlMv3wANtwIBMQsBAXtWACs0NAD//wAmAAAEvAfaBiYAKQAAAQcCVAC5AQ4ADbcFBBIHAQFFVgArNDQA//8AOv/rA/AGnQYmAEkAAAEGAlQt0QANtwIBLgsBAWVWACs0NAD//wAm/p8EvAc+BiYAKQAAACcAngC/AT4BBwCtBKgACgAXtAUcAgEBuP9/t1YEEwcBAXdWACs0KzQA//8AOv6VA/AGAAYmAEkAAAAmAJ40AAEHAK0EdQAAABe0AjgAAQG4/4m3VgEvCwEBl1YAKzQrNAD//wA3AAAC0wfABiYALQAAAQcAqwOXAUQAC7YBBQMBAXxWACs0AP//ACMAAAKFBnoGJgCNAAABBwCrA0n//gALtgEFAwEBrlYAKzQA//////6bAikFsAYmAC0AAAEHAK0DXgAGAA60AQcCAQG4/36wVgArNP///+P+nwIKBdgGJgBNAAABBwCtA0IACgAOtAITAgEBuP9/sFYAKzT//wBi/pUFIgXHBiYAMwAAAQcArQT0AAAADrQCLwYBAbj/ibBWACs0//8AOP6RBB4EUQYmAFMAAAEHAK0Egf/8AA60Ai8RAQG4/4iwVgArNP//AGL/6QUiB7sGJgAzAAABBwCrBSoBPwALtgItEQEBX1YAKzQA//8AOP/pBB4GgwYmAFMAAAEHAKsEagAHAAu2Ai0GAQGcVgArNAD//wBi/+kGIwesBiYAMwAAAQcCUQEGASIADbcDAjARAQFPVgArNDQA//8AOP/pBWIGdAYmAFMAAAEGAlFF6gANtwMCMAYBAYxWACs0NAD//wBi/+kFIgeqBiYAMwAAAQcCUgEIASsADbcDAi4RAQFKVgArNDQA//8AOP/pBB4GcgYmAFMAAAEGAlJI8wANtwMCLgYBAYdWACs0NAD//wBi/+kFkgfdBiYAMwAAAQcCUwEDARYADbcDAjERAQE+VgArNDQA//8AOP/pBNMGpQYmAFMAAAEGAlNE3gANtwMCMQYBAXtWACs0NAD//wBi/+kFIgfUBiYAMwAAAQcCVAEDAQgADbcDAi4RAQEoVgArNDQA//8AOP/pBB4GnAYmAFMAAAEGAlRD0AANtwMCLgYBAWVWACs0NAD//wBi/pUFIgc4BiYAMwAAACcAngEKATgBBwCtBPQAAAAXtAM4BgEBuP+Jt1YCLxEBAVpWACs0KzQA//8AOP6RBB4GAAYmAFMAAAAmAJ5JAAEHAK0Egf/8ABe0AzgRAQG4/4i3VgIvBgEBl1YAKzQrNAD//wBc/+kGIQc1BiYAmAAAAQcAdQIMATUAC7YDOhwBAUdWACs0AP//ADT/6QTwBgAGJgCZAAABBwB1AV0AAAALtgM2EAEBjFYAKzQA//8AXP/pBiEHNQYmAJgAAAEHAEQBagE1AAu2AzwcAQFHVgArNAD//wA0/+kE8AYABiYAmQAAAQcARAC7AAAAC7YDOBABAYxWACs0AP//AFz/6QYhB7gGJgCYAAABBwCrBSkBPAALtgM7HAEBV1YAKzQA//8ANP/pBPAGgwYmAJkAAAEHAKsEegAHAAu2AzcQAQGcVgArNAD//wBc/+kGIQcpBiYAmAAAAQcApQEXATYAC7YDSBwBAVFWACs0AP//ADT/6QTwBfQGJgCZAAABBgClaAEAC7YDRBABAZZWACs0AP//AFz+lQYhBi0GJgCYAAABBwCtBN4AAAAOtAM9EAEBuP+JsFYAKzT//wA0/osE8ASqBiYAmQAAAQcArQR0//YADrQDORsBAbj/f7BWACs0//8AWP6VBTEFsAYmADkAAAEHAK0EzQAAAA60ARkGAQG4/4mwVgArNP//AEr+lQQvBDoGJgBZAAABBwCtBB4AAAAOtAIfCwEBuP+JsFYAKzT//wBY/+gFMQe5BiYAOQAAAQcAqwUHAT0AC7YBFwABAXFWACs0AP//AEr/6AQvBoMGJgBZAAABBwCrBHEABwALtgIdEQEBsFYAKzQA//8AWP/pBqQHQgYmAJoAAAEHAHUCDwFCAAu2AiAKAQFsVgArNAD//wBK/+gFWQXrBiYAmwAAAQcAdQFX/+sAC7YDJhsBAYtWACs0AP//AFj/6QakB0IGJgCaAAABBwBEAW0BQgALtgIiCgEBbFYAKzQA//8ASv/oBVkF6wYmAJsAAAEHAEQAtv/rAAu2AygbAQGLVgArNAD//wBY/+kGpAfFBiYAmgAAAQcAqwUsAUkAC7YCIQoBAXxWACs0AP//AEr/6AVZBm4GJgCbAAABBwCrBHX/8gALtgMnGwEBm1YAKzQA//8AWP/pBqQHNgYmAJoAAAEHAKUBGgFDAAu2Ai4VAQF2VgArNAD//wBK/+gFWQXfBiYAmwAAAQYApWPsAAu2AzQbAQGVVgArNAD//wBY/owGpAYDBiYAmgAAAQcArQTu//cADrQCIxABAbj/gLBWACs0//8ASv6VBVkElgYmAJsAAAEHAK0EawAAAA60AykVAQG4/4mwVgArNP//AKH+pwVQBbAGJgA9AAABBwCtBKUAEgAOtAEMBgEBuP92sFYAKzT///+8/g8EGQQ6BiYAXQAAAQcArQUN/3oADrQCIggAALj/ubBWACs0//8AoQAABVAHuQYmAD0AAAEHAKsE3gE9AAu2AQoCAQFwVgArNAD///+8/kcEGQaDBiYAXQAAAQcAqwQ8AAcAC7YCGgEBAbBWACs0AP//AKEAAAVQByoGJgA9AAABBwClAMwBNwALtgEXCAEBalYAKzQA////vP5HBBkF9AYmAF0AAAEGAKUpAQALtgInGAEBqlYAKzQA////9P6wBRQGAAQmAEgAAAAnAkAB2AI/AQcAQwB7/2wAF7QENxYBAbj/d7dWAzILAQGDVgArNCs0AP//AJ3+mgUlBbAGJgA4AAABBwJrAjQAAAALtgILAgAAmlYAKzQA//8AVP6aBAwEOgYmAPYAAAEHAmsB0QAAAAu2AgsCAACaVgArNAD//wDE/poFXQWwBiYA4QAAAQcCawK4AAAAC7YCHRkBAJpWACs0AP//AG3+mgQYBDsGJgD5AAABBwJrAbkAAAALtgIbAgEAmlYAKzQA//8AK/6aBKwFsAYmALEAAAEHAmsA9QAAAAu2AQkEAACaVgArNAD//wAW/poDiAQ6BiYA7AAAAQcCawDbAAAAC7YBCQQAAJpWACs0AP//AFX+PQW7BcYGJgFMAAABBwJrArn/owALtgI6CgAAa1YAKzQA////8v5EBHMEUQYmAU0AAAEHAmsB0f+qAAu2AjkJAABrVgArNAD//wANAAAD8gYABgYATAAAAAIAJP//BIgFsAAYABwAGkAMHBsYAAALDAJyDgsIAD8zKxI5LzPMMjAxQQUeAgcOAychEzMDBTI2Njc2JiYnJQEHITcBZwFVg9R1DAlkoMZr/eb89tsBClKLWwwJMGVH/o4BlB79cx4DgQEDZMCMc610OgEFsPsXAT52VUlnNwMBAjWnpwAAAgAk//8EiAWwABgAHAAZQAscGxgAAAsMAg4LCAA/Mz8SOS8zzDIwMUEFHgIHDgMnIRMzAwUyNjY3NiYmJyUBByE3AWcBVYPUdQwJZKDGa/3m/PbbAQpSi1sMCTBlR/6OAZQe/XMeA4EBA2TAjHOtdDoBBbD7FwE+dlVJZzcDAQI1p6cAAgAAAAAErAWwAAUACQAWQAoGBwcEAgUCcgQIAD8rMhI5LzMwMUEHIQMjEwEHITcErCP9cdr1/QGDHv1zHgWwyPsYBbD9l6amAAAC/8cAAAOIBDoABQAJABZACgkICAQCBQZyBAoAPysyEjkvMzAxQQchAyMTAQchNwOIIv42m+u8AaAd/XIeBDrA/IYEOv4/p6cAAAQAPwAABYoFsAADAAkADQARACtAFQwLCwcHBhARBhEGEQIJAwJyCgIIcgArMisyETk5Ly8RMxEzEjkRMzAxQQMjEyEBITczAQMBNwEBByE3AjH99f0ETv0y/qAF6QIGvP6ktgG9/kce/XMeBbD6UAWw/MLaAmT6UAKkt/ylBOenpwAEACgAAARaBgAAAwAJAA0AEQAtQBcEBnIMCwsHBwYQEQYRBhECAwByCgIKcgArMisROTkvLxEzETMSOREzKzAxQQEjCQIhJzMBAwM3AQMHITcCHv716wELAyf96f7gI98BWIH2rgFM2x79cx4GAPoABgD+Ov2hvwGg+8YCBaD9WwVjpqYAAAIAoQAABVAFsAAIAAwAHUAPDAEEBwMLCwYDCAJyBghyACsrMhE5Lxc5MzAxQRMBIQEDIxMBAQchNwGmzgHAARz9fFv3YP7HAxke/XQdBbD9SwK1/Fz99AIlA4v8/KenAAQAUv5fBDAEOgADAAgADQARABdACxEQEAIFDQZyAg5yACsrMhI5LzMwMWUDIxM3ATMBIxMTByMDAQchNwIbXOxchgF+/f3QpgduCZm4Aoge/XMdbf3yAg6hAyz7xgQ6/LfxBDr8bKamAAAC/8AAAAVGBbAACwAPAB9ADw8HBQEECgMODgkFAwACcgArMi8zOS8XORI5MzAxQRMBIQEBIQMBIQkCByE3AcnYAX4BJ/3bAT/+8N7+eP7WAjL+yQMpHv1zHgWw/e8CEf0j/S0CHP3kAuoCxv2Np6cAAv+6AAAEEgQ6AAsADwAfQA8PBwUBCgQDDg4JBQMABnIAKzIvMzkvFzkSOTMwMUETASEBEyMDASEBAwEHITcBcY4BBAEP/mfv9Zv+8f7xAajmAs0e/XMeBDr+mwFl/eH95QF1/osCMgII/kWmpv//ACj/6gQEBE8GBgC/AAD////CAAAEqQWwBiYAKgAAAQcCQP8x/mUADrQDDgICALgBCLBWACs0//8AfAJwBd4DMQYGAYIAAP//AA0AAAQ8BccGBgAWAAD//wAm/+oEOAXHBgYAFwAA//8ADQAABCsFsAYGABgAAP//AFj/6ARzBbAGBgAZAAD//wBx/+kEIgW6BAYAGhQA//8AS//pBFYFxwQGABwUAP//AIz/9gQsBccEBgAdAAD//wBz/+gETAXIBAYAFBQA//8AZv/rBRcHSwYmACsAAAEHAHUB/QFLAAu2ASwQAQFtVgArNAD////5/lEEQgYABiYASwAAAQcAdQFFAAAAC7YDPxoBAYxWACs0AP//ACYAAAWGBzcGJgAyAAABBwBEAX8BNwALtgEMCQEBYVYAKzQA//8ADQAAA/IGAAYmAFIAAAEHAEQAtwAAAAu2Ah4DAQGgVgArNAD///+jAAAEqwchBiYAJQAAAQcArASOATMADbcEAw4DAQFmVgArNDQA//8AHP/pA9EF6wYmAEUAAAEHAKwD5//9AA23AwI8DwEBkVYAKzQ0AP//ACYAAAS8BygGJgApAAABBwCsBFsBOgANtwUEEQcBAXFWACs0NAD//wA6/+sD8AXrBiYASQAAAQcArAPQ//0ADbcCAS0LAQGRVgArNDQA////zwAAAsMHKAYmAC0AAAEHAKwDEwE6AA23AgEFAwEBcVYAKzQ0AP///4AAAAJ0BeIGJgCNAAABBwCsAsT/9AANtwIBBQMBAaNWACs0NAD//wBi/+kFIgcjBiYAMwAAAQcArASlATUADbcDAi0RAQFUVgArNDQA//8AOP/pBB4F6wYmAFMAAAEHAKwD5f/9AA23AwItBgEBkVYAKzQ0AP//ACYAAATVByEGJgA2AAABBwCsBEIBMwANtwMCHwABAWZWACs0NAD//wAMAAADAAXrBiYAVgAAAQcArANQ//0ADbcDAhgDAQGlVgArNDQA//8AWP/oBTEHIQYmADkAAAEHAKwEggEzAA23AgEXCwEBZlYAKzQ0AP//AEr/6AQvBesGJgBZAAABBwCsA+z//QANtwMCHREBAaVWACs0NAD///+FAAAFewY/BCYA0GQAAAcArv5P/////wAm/p8EtwWwBiYAJgAAAQcArQSQAAoADrQCNBsBAbj/f7BWACs0//8AEP6LBBEGAAYmAEYAAAEHAK0Ep//2AA60AzMEAQG4/2uwVgArNP//ACb+nwTZBbAGJgAoAAABBwCtBGkACgAOtAIiHQEBuP9/sFYAKzT//wA4/pUEhwYABiYASAAAAQcArQSLAAAADrQDMxYBAbj/ibBWACs0//8AJv4GBNkFsAYmACgAAAEHAdQA/P6iAA60AigdAQG4/5ewVgArNP//ADj9/ASHBgAGJgBIAAABBwHUAR3+mAAOtAM5FgEBuP+hsFYAKzT//wAm/p8FhQWwBiYALAAAAQcArQUAAAoADrQDDwoBAbj/f7BWACs0//8ADf6fA/IGAAYmAEwAAAEHAK0EfQAKAA60Ah4CAQG4/3+wVgArNP//ACYAAAVyBzMGJgAvAAABBwB1AaYBMwALtgMOAwEBW1YAKzQA//8AEQAABHoHPQYmAE8AAAEHAHUBrQE9AAu2Aw4DAQAbVgArNAD//wAm/uEFcgWwBiYALwAAAQcArQTMAEwADrQDEQIBAbj/z7BWACs0//8AEf7NBE4GAAYmAE8AAAEHAK0EYQA4AA60AxECAQG4/7ywVgArNP//ACb+nwPABbAGJgAwAAABBwCtBJUACgAOtAILAgEBuP9/sFYAKzT////j/p8CFgYABiYAUAAAAQcArQNCAAoADrQBBwIBAbj/f7BWACs0//8AJv6fBs4FsAYmADEAAAEHAK0FqQAKAA60AxQGAQG4/3+wVgArNP//AA/+nwZhBFEGJgBRAAABBwCtBa8ACgAOtAM2AgEBuP9/sFYAKzT//wAm/psFhgWwBiYAMgAAAQcArQUCAAYADrQBDQIBAbj/f7BWACs0//8ADf6fA/IEUQYmAFIAAAEHAK0EbQAKAA60Ah8CAQG4/3+wVgArNP//AGL/6QUiB94GJgAzAAABBwJQBRQBVQANtwMCMREBAVpWACs0NAD//wAmAAAE+gdCBiYANAAAAQcAdQGqAUIAC7YBGA8BAWxWACs0AP///8j+YARqBfYGJgBUAAABBwB1AZ3/9gALtgMwAwEBllYAKzQA//8AJv6fBNUFsAYmADYAAAEHAK0ElgAKAA60AiEYAQG4/3+wVgArNP///93+oALyBFMGJgBWAAABBwCtAzwACwAOtAIaAgEBuP+AsFYAKzT//wAm/pQEvQXGBiYANwAAAQcArQSx//8ADrQBPSsBAbj/iLBWACs0//8AG/6LA8EETwYmAFcAAAEHAK0EWv/2AA60ATkpAQG4/3+wVgArNP//AJ3+mQUlBbAGJgA4AAABBwCtBKEABAAOtAILAgEBuP91sFYAKzT//wA//pUCrgVDBiYAWAAAAQcArQPwAAAADrQCGREBAbj/ibBWACs0//8AWP/oBTEH3AYmADkAAAEHAlAE8QFTAA23AgEbAAEBbFYAKzQ0AP//AJoAAAV/BzYGJgA6AAABBwClAN4BQwALtgIYCQEBdlYAKzQA//8AZAAABBIF6gYmAFoAAAEGAKUb9wALtgIYCQEBoFYAKzQA//8Amv6fBX8FsAYmADoAAAEHAK0E0gAKAA60Ag0EAQG4/3+wVgArNP//AGT+nwQSBDoGJgBaAAABBwCtBEEACgAOtAINBAEBuP9/sFYAKzT//wC1/p8HOgWwBiYAOwAAAQcArQXBAAoADrQEGRMBAbj/f7BWACs0//8Aef6fBfQEOgYmAFsAAAEHAK0FJQAKAA60BBkTAQG4/3+wVgArNP///+X+nwTrBbAGJgA+AAABBwCtBKEACgAOtAMRAgEBuP9/sFYAKzT////m/p8D5AQ6BiYAXgAAAQcArQREAAoADrQDEQIBAbj/f7BWACs0////Af/pBWgF1wQmADNGAAEHAXH+Gf//AA23AwIuEQAAElYAKzQ0AP///5oAAAQBBRwGJgJNAAAABwCu/zL+3P///6YAAAQ3BR8EJgJCPAAABwCu/nD+3////64AAATlBRoEJgH+PAAABwCu/nj+2v///7EAAAILBR8EJgH9PAAABwCu/nv+3////9j/7QRiBRwEJgH3CgAABwCu/qL+3P///2UAAAS+BRwEJgHtPAAABwCu/i/+3P///+oAAAR7BRwEJgINCgAABwCu/rT+3P///5oAAAQBBI0GBgJNAAD//wAJ//8EAASNBgYCTAAA//8ACQAAA/sEjQYGAkIAAP///9YAAAQqBI0GBgHsAAD//wAJAAAEqQSNBgYB/gAA//8AGgAAAc8EjQYGAf0AAP//AAkAAASdBI0GBgH7AAD//wAJAAAFyASNBgYB+QAA//8ACQAABKgEjQYGAfgAAP//ADv/7QRYBKAGBgH3AAD//wAJAAAEMASNBgYB9gAA//8AYwAABF4EjQYGAfIAAP//AGwAAASCBI4GBgHtAAD///+iAAAEfQSNBgYB7gAA//8AGgAAAt0F7QYmAf0AAAEHAGr/UAAeAA23AgENAwEBhFYAKzQ0AP//AGwAAASCBe0GJgHtAAABBgBqYR4ADbcEAxcJAQGDVgArNDQA//8ACQAAA/sF7QYmAkIAAAEGAGpqHgANtwUEGQcBAYNWACs0NAD//wAJAAAD+AYeBiYCBAAAAQcAdQErAB4AC7YCCAMBAYNWACs0AP//AA//7gP+BJ4GBgHzAAD//wAaAAABzwSNBgYB/QAA//8AGgAAAt0F7QYmAf0AAAEHAGr/UAAeAA23AgENAwEBhFYAKzQ0AP////P/7QOvBI0GBgH8AAD//wAJAAAEnQYeBiYB+wAAAQcAdQEiAB4AC7YDDgMBAYRWACs0AP//AHb/6ASJBgYGJgIbAAABBwChAIsAHgALtgIdFwEBhFYAKzQA////mgAABAEEjQYGAk0AAP//AAn//wQABI0GBgJMAAD//wAJAAAD4ASNBgYCBAAA//8ACQAAA/sEjQYGAkIAAP//AAsAAAStBgYGJgIYAAABBwChAMEAHgALtgMRCAEBhFYAKzQA//8ACQAABcgEjQYGAfkAAP//AAkAAASpBI0GBgH+AAD//wA7/+0EWASgBgYB9wAA//8ACQAABKQEjQYGAgkAAP//AAkAAAQwBI0GBgH2AAD//wA5/+0ERASgBgYCSwAA//8AYwAABF4EjQYGAfIAAP///6IAAAR9BI0GBgHuAAAAAwAO/jcD6wSfAB4APgBCAChAEx8BAgI+PhU/NDRAMCoLcg8LFX4APzPMK8zNMxI5EjkvMxI5OTAxQSc3Fz4CNzYmJiMmBgYHBz4DFx4DBw4DJxceAwcOAycuAzcXHgIXFjY2NzYuAicnEwMjEwIuwhaBN2pKCAg0WC4xV0EM7QdVhJ1QSZN6RgQDVIKX/qVEinFCBAVfk61VUJNxQALoATFSNDlyUgkGGjZJKJeyXexeAisBfQEBHUc/NkEbARs8MQFYfk8kAQEhRndXVHhMJUcBASBEb1JhhlIkAgEqVIFZATdDHQEBIEpALz8kEQEB/lL95wIZAAAEAAn+mgS5BI0AAwAHAAsADwAdQA0DAgIGCwd9Dw4KCgYSAD8zEM4zPzMSOS8zMDFBByE3EwMjEyEDIxMTAyMTA6ch/X4imcrsywPVy+rK+17sXgKdwMAB8PtzBI37cwSN/Cb95wIZAAIAOf5ABEQEoAAnACsAGEALGRB+KCQkKioFC3IAKzIvMhEzPzMwMUE3DgInLgM3Nz4DFx4CFyMuAicmDgIHBwYeAhcWNjYHAyMTAwzqFJjjgneqZiUMCg5clcl8gL1sCOoCLV1HUHZPMAkKBwMlVUxLckygXutdAYMBhbdbAwJcnMdtT3POnFYDAmO4f0ZhNAMCPWyFRVE7f21GAgMvYeL95wIZAP//AGwAAASCBI4GBgHtAAD//wA7/jcFlASnBiYCMQAAAAcCawK//53//wALAAAErQXLBiYCGAAAAQcAcACPACEAC7YDDggBAbBWACs0AP//AHb/6ASJBcsGJgIbAAABBgBwWSEAC7YCGhcBAbBWACs0AP//AEEAAAU0BI0GBgILAAD//wAa/+0FngSNBCYB/QAAAAcB/AHvAAD///9+AAAGDwYABiYCjgAAAQcAdQJ5AAAAC7YGGQ8BAU1WACs0AP///9v/xwS7Bh4GJgKQAAABBwB1AXoAHgALtgMwEQEBW1YAKzQA//8AD/38A/4EngYmAfMAAAAHAdQA9/6Y//8AiwAABh4GHgYmAe8AAAEHAEQBeAAeAAu2BBgKAQFrVgArNAD//wCLAAAGHgYeBiYB7wAAAQcAdQIaAB4AC7YEFgoBAWtWACs0AP//AIsAAAYeBe0GJgHvAAABBwBqAUMAHgANtwUEHwoBAYRWACs0NAD//wBsAAAEggYeBiYB7QAAAAcARACXAB7///+j/lgEqwWwBiYAJQAAAQcApAFrAAMAC7YDDgUBATlWACs0AP//ABz+XQPRBFAGJgBFAAABBwCkAKYACAALtgI7MQAATVYAKzQA//8AJv5fBLwFsAYmACkAAAEHAKQBMAAKAAu2BBACAABDVgArNAD//wA6/lUD8ARRBiYASQAAAQcApAD9AAAAC7YBLAAAAE1WACs0AP///5r+VQQBBI0GJgJNAAAABwCkAQ8AAP//AAn+XQP7BI0GJgJCAAAABwCkAOAACP///+P+nwHKBDoGJgCNAAABBwCtA0IACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAAwAeAADAAEECQADACgAhAADAAEECQAEACgAhAADAAEECQAFACYArAADAAEECQAGACYA0gADAAEECQAHAEAA+AADAAEECQAIAAwBOAADAAEECQAJACYBRAADAAEECQALABQBagADAAEECQAMABQBagADAAEECQANAFwBfgADAAEECQAOAFQB2gADAAEECQAQAAwCLgADAAEECQARABoCOgADAAEECQAZAAwCLgBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBJAHQAYQBsAGkAYwBSAG8AYgBvAHQAbwAgAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAVgBlAHIAcwBpAG8AbgAgADMALgAwADAAOAA7ACAAMgAwADIAMwBSAG8AYgBvAHQAbwAtAE0AZQBkAGkAdQBtAEkAdABhAGwAaQBjAFIAbwBiAG8AdABvACAAaQBzACAAYQAgAHQAcgBhAGQAZQBtAGEAcgBrACAAbwBmACAARwBvAG8AZwBsAGUALgBHAG8AbwBnAGwAZQBDAGgAcgBpAHMAdABpAGEAbgAgAFIAbwBiAGUAcgB0AHMAbwBuAEcAbwBvAGcAbABlAC4AYwBvAG0ATABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABBAHAAYQBjAGgAZQAg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//QA3v/tAOH/4QDm/9QA7P/iAO7/7wDw/+IA8f/iAPP/4gD0/+IA9f/iAPb/yQD4/+IA+v/iAPv/4gD+/9EBAP/iAQX/4gEJ/+UBGf/UARr/5gEg/+MBK//iATP/9AE0/+8BNv/iATn/0gE6/8QBPP/iAT7/4gFD//QBRP/vAUX/0gFH/+EBSf/hAVP/4gFV/+IBV//iAVz/4gFd//QBXv/vAWL/1AFj//UBZP/nAWz/qgFt/8kBhP/KAYX/ygGH/8oBiP/KAYn/ygPQ/+0D3P/SA93/9APg/+ID4v/iA+T/5gPl/+8D5//iA+z/4gPt/+YD9v/KA/f/ygP6/8oEAv/iBAX/1AQG/+YEDf/TBA7/5gQQ//QEEf/vBB7/9AQf/+8EI//iBCX/4gQu/+0EL//mBDD/7QQx/+YEMv/tBDP/5gQ0/+EEN//iBJL/0gSU/+EEl//iBKH/0wApAEf/7ABI/+wASf/sAEv/7ABV/+wAlP/sAJn/7AK8/+wCvf/sAr7/7AK//+wCwP/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sAur/7ALs/+wC7v/sAvD/7ALy/+wEUv/sBFT/7ARW/+wEWP/sBFr/7ARc/+wEXv/sBGD/7AR0/+wEdv/sBHj/7AR8/+wEt//sBMT/7ATG/+wANgAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AGEABABhQAQAYcAEAGIABABiQAQArz/6AK9/+gCvv/oAr//6ALA/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gC6v/oAuz/6ALu/+gC8P/oAvL/6AP2ABAD9wAQA/oAEARS/+gEVP/oBFb/6ARY/+gEWv/oBFz/6ARe/+gEYP/oBHT/6AR2/+gEeP/oBHz/6AS3/+gExP/oBMb/6ABKAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAHb/2QCvP+0Ar3/tAK+/7QCv/+0AsD/tALG/3oCx/96Asj/egLJ/3oCyv96Atj/tALa/7QC3P+0At7/tALg/7QC4v+0AuT/tALm/7QC6P+0Aur/tALs/7QC7v+0AvD/tALy/7QDFP96Axb/egMY/3oDIP9kAyL/ZAMk/2QDJv9kAyj/ZARS/7QEVP+0BFb/tARY/7QEWv+0BFz/tARe/7QEYP+0BGb/egRo/3oEav96BGz/egRu/3oEcP96BHL/egR0/7QEdv+0BHj/tAR6/3oEfP+0BLf/tAS7/3oExP+0BMb/tATIABQEygAUBMwAFATZ/2QAAQD0AAQABgALAAwAJQAnACgAKQAqAC8AMAAzADQANQA2ADgAOgA7ADwAPQA+AD8ASQBKAEwATwBRAFIAUwBWAFgAWgBbAF0AXwCWAJ0AsgGEAYUBhwGIAYkB8gH0AfUB9wH6AgUCSgJNAl8CYQJiApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqsCrAKtAq4CrwK0Ar0CvgK/AsACxQLGAscCyALJAsoCzwLQAtEC0wLVAtcC2QLbAt0C3wLhAuIC4wLkAuUC5gLnAugC6QLqAvQDAgMEAwYDCAMKAw0DDwMRAxIDEwMUAxUDFgMXAxgDGgMcAx4DKQMrAy0DOwM9Az4DPwNAA0IDRANKA0sDTANNA04DTwNQA1EDUgNTA14DXwNgA2EDYgNoA2kDagNvA4EDggODA4QDiAOJA4oDkwPuA/AD8gP0A/UD9gP3A/oD/AP9BDkEOwQ9BD8EQQRDBEUERwRJBEsETQRPBFEEUgRTBFQEVQRWBFcEWARZBFoEWwRcBF0EXgRfBGAEZQRmBGcEaARpBGoEawRsBG0EbgRvBHAEcQRyBHoEiwSMBI0EjgSPBJAEswS0BLYEugS7BL0EwwTFBMgEyQTLBM0E0ATSBNME1ATXBNoE3QTeBN8E4AThBOMAAQA1AAYACwCWALEAsgCzALQAvQDBAMcBhAGFAYcBiAGJAgUCBgIHA6EDogOjA6QDpQOmA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuwO/A8EDxQP2A/cD+gTlBOYE6gTtBPME+ACnABD/BwAS/wcAJf9OAC7/DQA4ABQARf/eAEf/6wBI/+sASf/rAEv/6wBT/+sAVf/rAFb/5gBZ/+oAWv/oAF3/6ACU/+sAmf/rAJv/6gCy/04Bhv8HAYr/BwGO/wcBj/8HAgX/wAJN/8ACmv9OApv/TgKc/04Cnf9OAp7/TgKf/04CoP9OArX/3gK2/94Ct//eArj/3gK5/94Cuv/eArv/3gK8/+sCvf/r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ARgBGAATARkBGQAXARoBGgAFARsBGwADAR0BHQADAR4BHgACAR8BHwADASEBIQADASIBIgACASsBKwABATMBMwAGATQBNAAHATYBNgABATkBOQAKATwBPAABAT4BPgABAUEBQQADAUIBQgACAUMBQwAGAUQBRAAHAUUBRQAKAUcBRwARAUgBSAAUAVABUAANAVEBUQASAVMBUwABAVUBVQABAVcBVwABAVwBXAABAV0BXQAGAV4BXgAHAWABYQACAWYBZgANAWoBagADAWsBawACAW8BbwANAXABcAASAYEBggALAYQBhQAEAYYBhgAIAYcBiQAEAYoBigAIAY4BjwAIAgUCBQAZAg4CDgAMAg8CDwAJAhICEgAMAhYCFgAPAicCJwAPAioCKgAMAisCKwAJAiwCLAAWAi0CLQAPAi4CLgAMAjQCNAAJApQClAALA80DzQAcA9AD0AAOA9ED0QAQA9gD2AADA9sD2wADA9wD3AAKA90D3QAGA94D3gAVA98D3wACA+AD4AABA+ED4QATA+ID4gABA+MD4wACA+QD5AAFA+UD5QAHA+YD5gACA+cD5wABA+gD6AAdA+wD7AABA+0D7QAFA/YD9wAEA/oD+gAEBAEEAQACBAIEAgABBAUEBQAXBAYEBgAFBAcEBwACBAgECAADBAsECwADBAwEDAACBA0EDQAYBA4EDgAFBBAEEAAGBBEEEQAHBBMEEwAQBBQEFAAVBBUEFQAQBBYEFgAVBBoEGgACBBwEHQACBB4EHgAGBB8EHwAHBCMEIwABBCUEJQABBCYEJgADBCcEJwATBCgEKAADBCkEKQACBCoEKgADBCsEKwATBC4ELgAOBC8ELwAFBDAEMAAOBDEEMQAFBDIEMgAOBDMEMwAFBDQENAARBDUENQAUBDcENwABBDgEOAACBJIEkgAKBJQElAARBJUElQAUBJcElwABBKEEoQAYBKcEpwALBQUFBQAaBQwFDAAJBQ8FDwAJBRAFEAAMBREFEQAPBRQFFAAJBRUFFQAWAAIA7AAGAAYADAALAAsADAAlACUAAgAmACYAGwAnACcADgApACkABAAsAC0AAQAuAC4ABwAvAC8AGAAwADAADwAxADIAAQA0ADQAHAA4ADgAEAA5ADkABwA6ADoAGQA7ADsAEQA8ADwAHgA9AD0ADQA+AD4AFABFAEUAAwBG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BiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCjAJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCfgKOA0sCkAKPA0oB/QKNApICbATtBO4CBAIFBO8E8ATxAgYE8gIHAggCCQT3AgoCCgT4BPkCCwIMAg0CFAUGBQcCFQIWAhcCGAIZAhoFCgULBQ0FEAUZAhwCHQIeAh8CIAIhAiICIwIkAiUCDgIPAhACEQISAhMCVQInAigCKQIqBRMCKwItAi4CLwIxAjMCkQNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA50DaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDngOfA6AFGwUcBOYE5wToBOkE8wT2BPQE9QT6BPsE/ATqBOsE7AUFBQgFCQUMBQ4FDwIbBREE/QT+BP8FAAUBBQIFAwUEBR4FHwUgBSEFEgUUBRUCMgUXAjQFGAUWAjACJgIsBSYFJwACBwAA+gIBAowB6wHqAekB6AHnAeYB5QHkAeMB4gJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCAgIDAo4CkAKPApECjQKSAmwCBAIFAgYCBwIIAgkCCgILAgwCDQIOAg8CEAIRAhICEwIUAhUCFgIXAhgCGgIbBRkCHAIdAh4CHwIgAiECIgIjAiQCJQJVAicCKAIpAioFEwIrAi0CLgIvAjACMQIyAjMCNQI2AjgCNwNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34FGgN/A4ADgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAUdA5EDkgOUA5MDlQOWA5cDmAOZA5oDmwOcA50DngOfA6AFGwUcBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgE+QT6BPsE/AT9BP4E/wUABQEFAgIZBQMFBAUFBQYFBwUIBQkFCgULBQwFDQUOBQ8FEAURBR4FHwUgBSEFEgUUBRUFFwI0BRgFFgImAiwFJgUnAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMjAyQAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwKEAAIAAAABBt4AAQAGAtUC1gLnAugDagNzAAEABgBNAE4C/APpA+sEZAACAAMBlAGUAAAB3wHhAAECOQI/AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACbwJ4AAoAAgAGAE0ATQAGAE4ATgAEAvwC/AAFA+kD6QADA+sD6wACBGQEZAABAAIABAAUAB0AAAKAAoAACgKLAosACwSoBK8ADAACAAYAGgAaAAAAHAAcAAECZAJpAAICbQJtAAgCbwJ4AAkCfwJ/ABMAAQAUABoAHAJkAmUCZgJnAmgCaQJtAn8CgAKLBKgEqQSqBKsErAStBK4ErwABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaApcCmQK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtIC1ALWAtgC2gLcAt4C4ALiAuQC5gLoAuoC7ALuAvAC8gL0AvYC+AL6AvwC/wMBAwMDBQMHAwkDCwMNAw8DEQMUAxYDGAMaAxwDHgMgAyIDJAMmAygDKgMsAy4DMAMyAzQDNgM4AzoDPAM+A0EDQwNFA0cDSQO5A7oDuwO8A74DvwPAA8EDwgPDA8QDxQPGA8cD3gPfA+AD4QPiA+MD5APlA+YD5wPoA+kD6gPrA+wD7QPvA/ED8wP1BAoEDAQOBBwEIwQpBC8EmQSaBJ4EogUjBSUAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQB1gACAE0B1wACAFAB2AADAEoATQHZAAMASgBQAAEAAQBKAdUAAgBKAdsAAgBYAdoAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBMEAAgCtAtcAAgCpBMcAAgCtBNQAAgCpBMIAAgCtAtgAAgCpBLEAAgCpBMgAAgCtBGQAAgCtBNUAAgCpA0YAAgCpA0gAAgCpA0cAAgCpA0kAAgCpBMAAAgCpBMUAAgHUBMMAAgCtBLAAAgCpAvEAAgHUA/sAAgCpBM8AAgCtAykAAgHUBNoAAgCtBN8AAgCtBN0AAgCqA0AAAgCpBOMAAgCtBMYAAgHUBMQAAgCtA/wAAgCpBNAAAgCtAyoAAgHUBNsAAgCtBOAAAgCtBN4AAgCqA0EAAgCpBOQAAgCtBMkAAgCpAwIAAgHUBMsAAgCtAwQAAgCpAwYAAgHUBM0AAgCtAx8AAgCpAyUAAgHUBNgAAgCtA/AAAgCpBOEAAgCtA+4AAgCoBMoAAgCpAwMAAgHUBMwAAgCtAwUAAgCpAwcAAgHUBM4AAgCtAyAAAgCpAyYAAgHUBNkAAgCtA/EAAgCpBOIAAgCtA+8AAgCoAxkAAgCpAxsAAgHUBNYAAgCtBLwAAgCsAxoAAgCpAxwAAgHUBNcAAgCtBL0AAgCsAwwAAgCpAw4AAgHUBNEAAgCtBLIAAgCoAqoAAgCqArQAAgCpBIsAAgCtA/QAAgCoBI0AAgCrBI8AAgCqAw0AAgCpAw8AAgHUBNIAAgCtBLMAAgCoAsUAAgCqAs8AAgCpBIwAAgCtA/UAAgCoBI4AAgCrBJAAAgCqAsIAAgCpAsEAAgCoBGIAAgCrAvYAAgCqBLkAAgCsBHMAAgCpBHsAAgCtBHUAAgCoBHcAAgCrBHkAAgCqBHQAAgCpBHwAAgCtBHYAAgCoBHgAAgCrBHoAAgCqBIEAAgCpBIkAAgCtBIMAAgCoBIUAAgCrBIcAAgCqBIIAAgCpBIoAAgCtBIQAAgCoBIYAAgCrBIgAAgCqApsAAgCpBDkAAgCtApoAAgCoBDsAAgCrAp0AAgCqBLQAAgCsAqMAAgCpBFEAAgCtAqIAAgCoBFMAAgCrBFUAAgCqBLYAAgCsAqcAAgCpBGMAAgCtAqYAAgCoBGEAAgCrAvUAAgCqBLgAAgCsArYAAgCpBDoAAgCtArUAAgCoBDwAAgCrArgAAgCqBLUAAgCsAr4AAgCpBFIAAgCtAr0AAgCoBFQAAgCrBFYAAgCqBLcAAgCsAscAAgCpBGYAAgCtAsYAAgCoBGgAAgCrAskAAgCqBLsAAgCsAswAAgCpBH4AAgCtAssAAgCoBIAAAgCrAzAAAgCqBL8AAgCsAqwAAgCpBGUAAgCtAqsAAgCoBGcAAgCrAq4AAgCqBLoAAgCsArEAAgCpBH0AAgCtArAAAgCoBH8AAgCrAy8AAgCqBL4AAgCsBNMAAwCqAKkE3AADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcFUAAACWEdQT1N/jKrdAAHDrAAAWMBHU1VCm18k/AACHGwAABX2T1MvMpeDsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBSAAAAAxnbHlm5vV0AgAAOswAAYOwaGVhZAhMpEUAAAEcAAAANmhoZWEKugrKAAABVAAAACRobXR4//meUgAAAfgAABSkbG9jYadOA+EAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOEJpwQABvnwAAAKqcG9zdP9tAGQAAcEoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDFXLfBlfDzz1ABsIAAAAAADE8BEuAAAAAODgRcX6Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/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/AFIHqgBEAmcAbAJnAFoDowA8Au8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgM4AFAC+ABQAvgAUAHxAFQB8QBQA2EAegLvAFEC7wB7Au8AQgLvAD8C7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDOABQAvgAUAL4AFAB8QBUAfEAUASnAFsGVgAfBpEApwh2AKkF6wAfBisAjAR/AF8F2gAfBCMAKwR0ACEFSABdBU8AHwXoAHsDzgBoCDoAogUBAGgFGACYBiYAVAbXAGUGzwBkBmoAWgSQAGoFjwCpBK8ARgSTAKgExQA/CDoAYwIN/68EggBlBGQAmAQRAD0ELwCEBAgALAJMALUCkABvAgQAXQTzAD0EbwAgBIsAPQbUAD0G1AA9BO4APQabAF8AAAAACDQAWwg1AFwC7wBCAu8AewLvAFEEEABWBBAAYQQQAEIEDwByBBAAgQQQADEEEABPBBAATwQQAJkEEABjBCMASAQrAA4EVAAnBhUAMQRoABQEfQB1BCcAKQQgAEQESgCKBLwAWgRdAIsEvABgBOMAiwYCAIsDtQCLBFUAiwPPACwB6QCYBOQAiwSsAGQDzACLBCAARAQ0ADEDoQAOA68AiwRoABQEvABgBGgAFAOJAD4EzwCLA/AAQAVnAGEFFwBhBPMAdgVzACcEfABhB0IAKAdQAIsFdAApBM4AiwRaAIsFJQAuBgsAHwRAAEgE7ACLBE4AjATBACgEIAAjBSkAiwRqAD0GUQCLBqwAiwUdAAkF8QCLBE8AiwR8AEsGdwCLBIcAUAQSAAsGSAAfBHkAjAUKAIwFNwAkBcMAYARfAA4EqAAnBmIAJwRqAD0EagCLBcQAAgTLAF4EQABIBLwAYAQ0ADED5ABDCCIAiwSrACgC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKA5cAjwK1AJ8D5gCLBDoAHwTEAGQFTACyBSQAsgQUAJMFPQCyBA8AkwSAAIsEfABhBFEAiwSGABQB/gCfA6UAggAA/KMD8ABvA/T/XQQPAGkD9QBpA68AiwOgAIIDnwCCAu8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgWCAH4FrwB+BZMAsgXgAH4F4wB+A9UAoASCAIMEWAAPBM8APgRrAGUELgBKA6UAhAGSAGgGpABgBLoAggH8/7YEfwA7BH8AcwR/ACIEfwB2BH8AdgR/ADYEfwB+BH8AXgR/AHEEfwD0Agb/tAIE/7QB+wCcAfv/+QH7AJwEUQCLBQAAeAQhADsEfgCMBDMAXQSTAFsEjABbBJ8AWgSOAIwEnABbBD4AXQR+AGEEcABaA3kAVwTWAGgDtQABBjoACQP5AIsEvABgBOMAMATjAIsB/AAAAjYAJgVeACUFXgAlBIYAAQTGADICnv/0BTgAHQU4AB0FOAAdBTgAHQU4AB0FOAAdBTgAHQU1AHgEjACpBIwAqQSMAKkEjACpAi3/3wItALECLf/qAi3/1QW1AKkFgQB3BYEAdwWBAHcFgQB3BYEAdwUwAIwFMACMBTAAjAUwAIwEzgAPBFoAbQRaAG0EWgBtBFoAbQRaAG0EWgBtBFoAbQQwAF0EPgBdBD4AXQQ+AF0EPgBdAfv/xAH7AJYB+//PAfv/ugRrAI0EkABcBJAAXASQAFwEkABcBJAAXARpAIkEaQCJBGkAiQRpAIkDyQAWA8kAFgU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU1AHgEMABdBTUAeAQwAF0FNQB4BDAAXQU1AHgEMABdBUAAqQUZAF8EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBXMAegR+AGEFcwB6BH4AYQVzAHoEfgBhBXMAegR+AGEFtQCpBGgAjQIt/7YB+/+bAi3/zQH7/7ICLf/sAfv/0QItABcB8v/6Ai0AqgaXALcD3ACOBGoANQIE/7QFBQCpBA4AjQRPAKIB8gCTBE8AqQHyAFYETwCpAogAnARPAKkCzgCcBbUAqQRrAI0FtQCpBGsAjQW1AKkEawCNBGv/uwWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXATuAKkCtgCNBO4AqQK2AFME7gCpArYAZATAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8ExgAyAp4ACQTGADICngAJBMYAMgLGAAkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkHGQA9BgMAKwTOAA8DyQAWBM4ADwTLAFcD+ABZBMsAVwP4AFkEywBXA/gAWQd6//EGwgBPBYEAdwSJAFwEgP+9BID/vQQnACkEhgAUBIYAFASGABQEhgAUBIYAFASGABQEhgAUBHwAYQPmAIsD5gCLA+YAiwPmAIsB6f+8AekAjgHp/8cB6f+yBOMAiwS8AGAEvABgBLwAYAS8AGAEvABgBH0AdQR9AHUEfQB1BH0AdQQrAA4EhgAUBIYAFASGABQEfABhBHwAYQR8AGEEfABhBIAAiwPmAIsD5gCLA+YAiwPmAIsD5gCLBKwAZASsAGQErABkBKwAZATkAIsB6f+TAen/qgHp/8kB6QAFAekAhwPPACwEVQCLA7UAgwO1AIsDtQCLA7UAiwTjAIsE4wCLBOMAiwS8AGAEvABgBLwAYARKAIoESgCKBEoAigQgAEQEIABEBCAARAQgAEQEJwApBCcAKQQnACkEfQB1BH0AdQR9AHUEfQB1BH0AdQR9AHUGFQAxBCsADgQrAA4EIwBIBCMASAQjAEgFOAAdBPD/jAYZ/5oCkf+gBZX/+gUy/3YFZv/8Apj/mwU4AB0E/ACpBIwAqQTLAFcFtQCpAi0AtwUFAKkG/ACpBbUAqQWBAHcFDACpBMYAMgTOAA8FBAA6Ai3/1QTOAA8EhgBkBFEAZASJAJICmADDBF4AkAR0AJsEkABcBIkAmwPgACEEcABaApj/5AReAJAEkABcBF4AkAaXAHoEjACpBHMAsgTAAFECLQC3Ai3/1QRqADUFJACyBQUAqQUIAE0FOAAdBPwAqQRzALIEjACpBbUAsgb8AKkFtQCpBYEAdwW1ALIFDACpBTUAeATGADIFBAA6BFoAbQQ+AF0EngCdBJAAXAR+AIwEMABdA8kAFgP4ACoEPgBdA1wAmwQhAF8B8gCOAfv/ugHq/74EUwCdA8kAFgcZAD0GAwArBxkAPQYDACsHGQA9BgMAKwTOAA8DyQAWAWYAaAKQAIkEIAChAgT/tAGaADAG/ACpBwQAiwU4AB0EWgBtBIwAqQW1ALIEPgBdBJ4AnQWJAFoFmgBgBQsAFgQE//sIWQBcCUoAdwTAAFAEEABYBTUAeAQwAF0EzgAPBAMALwItALcHQwAbBiEAFgItALcFOAAdBFoAbQU4AB0EWgBtB3r/8QbCAE8EjACpBD4AXQWHAF4EOABjBDgAYwdDABsGIQAWBMAAUAQQAFgFtQCyBJ4AnQW1ALIEngCdBYEAdwSQAFwFcgBnBIwAXAVyAGcEjABcBWUAlAROAGQFCABNA8kAFgUIAE0DyQAWBQgATQPJABYFegCXBFoAaAbrALIGNgCeBIMAXwU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWv/JBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIz/7gQ+/7gEjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0CLQC3AfsAnAItAKQB8gCGBYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBYEARgSQ/8IFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBTAAjARpAIkFMACMBGkAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkEzgAPA8kAFgTOAA8DyQAWBM4ADwPJABYEoQBfBMYAMgPZACgFegCXBFoAaARzALIDXACbBjAAPwS+/90EaACNBQX/1AUF/9QEcwADA1z//QU4AAsEKP/TBM4ADwQDAC8FBAA6A/gAKgRRAGQEbAASBj8AkAR/AF4EfwBfBH8ANQR/AJoEkwCZBKcAhQSTAGQEpwCHBXMAegR+AGEFtQCpBGsAjQU4AB0EWgA6BIwAXwQ+ACkCLf8LAfv+8AWBAHcEkAAzBO4AVgK2/4wFMACMBGkAKwSn/zgE/ACpBH4AjAVAAKkEgwBfBUAAqQSDAF8FtQCp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ABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAADAe//9QHw/+4Dm//1AAMADf/mAEH/9ABh/+8AAwBK/+4AW//qAfD/8AADAFv/wQH//+YCS//oAAMASgAPAFgAMgBbABEAAwBb/+UB///rAkv/7QA7ALIAEADS/+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//IBbwAQAXAAEAPRABAD2P/oA9v/6APc/+AEBf/gBAj/6AQL/+gEDf/fBBMAEAQVABAEJv/oBCj/6AQq/+gENP/hBDX/4ASS/+AElP/hBJX/4ASh/98ABABY/+8AW//fAJr/7gHw/80ABAANABQAQQARAFb/4gBhABMABQA4/9gDKf/YAyv/2AMt/9gE2v/YAAUAI//DAFj/7wBb/98Amv/uAfD/zQAF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Au7/7ALw/+wC8v/sBFL/7ARU/+wEVv/sBFj/7ARa/+wEXP/sBF7/7ARg/+wEdP/sBHb/7AR4/+wEfP/sBLf/7ATE/+wExv/sADYABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gBhAAQAYUAEAGHABABiAAQAYkAEAK8/+gCvf/oAr7/6AK//+gCwP/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAur/6ALs/+gC7v/oAvD/6ALy/+gD9gAQA/cAEAP6ABAEUv/oBFT/6ARW/+gEWP/oBFr/6ARc/+gEXv/oBGD/6AR0/+gEdv/oBHj/6AR8/+gEt//oBMT/6ATG/+gASgBH/8UASP/FAEn/xQBL/8UATAAgAE8AIABQACAAU/+AAFX/xQBX/5AAWwALAJT/xQCZ/8UB2/+QArz/xQK9/8UCvv/FAr//xQLA/8UCxv+AAsf/gALI/4ACyf+AAsr/gALY/8UC2v/FAtz/xQLe/8UC4P/FAuL/xQLk/8UC5v/FAuj/xQLq/8UC7P/FAu7/xQLw/8UC8v/FAxT/gAMW/4ADGP+AAyD/kAMi/5ADJP+QAyb/kAMo/5AEUv/FBFT/xQRW/8UEWP/FBFr/xQRc/8UEXv/FBGD/xQRm/4AEaP+ABGr/gARs/4AEbv+ABHD/gARy/4AEdP/FBHb/xQR4/8UEev+ABHz/xQS3/8UEu/+ABMT/xQTG/8UEyAAgBMoAIATMACAE2f+QAAEA9AAEAAYACwAMACUAJwAoACkAKgAvADAAMwA0ADUANgA4ADoAOwA8AD0APgA/AEkASgBMAE8AUQBSAFMAVgBYAFoAWwBdAF8AlgCdALIBhAGFAYcBiAGJAfIB9AH1AfcB+gIFAkoCTQJfAmECYgKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKrAqwCrQKuAq8CtAK9Ar4CvwLAAsUCxgLHAsgCyQLKAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLiAuMC5ALlAuYC5wLoAukC6gL0AwIDBAMGAwgDCgMNAw8DEQMSAxMDFAMVAxYDFwMYAxoDHAMeAykDKwMtAzsDPQM+Az8DQANCA0QDSgNLA0wDTQNOA08DUANRA1IDUwNeA18DYANhA2IDaANpA2oDbwOBA4IDgwOEA4gDiQOKA5MD7gPwA/ID9AP1A/YD9wP6A/wD/QQ5BDsEPQQ/BEEEQwRFBEcESQRLBE0ETwRRBFIEUwRUBFUEVgRXBFgEWQRaBFsEXARdBF4EXwRgBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgR6BIsEjASNBI4EjwSQBLMEtAS2BLoEuwS9BMMExQTIBMkEywTNBNAE0gTTBNQE1wTaBN0E3gTfBOAE4QTjAAEANQAGAAsAlgCxALIAswC0AL0AwQDHAYQBhQGHAYgBiQIFAgYCBwOhA6IDowOkA6UDpgOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7sDvwPBA8UD9gP3A/oE5QTmBOoE7QTzBPgApwAQ/xYAEv8WACX/VgAu/vgAOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/rAJn/6wCb/+oAsv9WAYb/FgGK/xYBjv8WAY//FgIF/8ACTf/AApr/VgKb/1YCnP9WAp3/VgKe/1YCn/9WAqD/VgK1/94Ctv/eArf/3gK4/94Cuf/eArr/3gK7/94CvP/rAr3/6wK+/+sCv//rAsD/6wLG/+sCx//rAsj/6wLJ/+sCyv/rAsv/6gLM/+oCzf/qAs7/6gLP/+gC0P/oAtH/VgLS/94C0/9WAtT/3gLV/1YC1v/eAtj/6wLa/+sC3P/rAt7/6wLg/+sC4v/rAuT/6wLm/+sC6P/rAur/6wLs/+sC7v/rAvD/6wLy/+sDAP74AxT/6wMW/+sDGP/rAykAFAMrABQDLQAUAzD/6gMy/+oDNP/qAzb/6gM4/+oDOv/qAz7/6ANN/8ADTv/AA0//wANQ/8ADUf/AA1L/wANT/8ADaP/AA2n/wANq/8AD9f/oA/3/VgP+/94EOf9WBDr/3gQ7/1YEPP/eBD3/VgQ+/94EP/9WBED/3gRB/1YEQv/eBEP/VgRE/94ERf9WBEb/3gRH/1YESP/eBEn/VgRK/94ES/9WBEz/3gRN/1YETv/eBE//VgRQ/94EUv/rBFT/6wRW/+sEWP/rBFr/6wRc/+sEXv/rBGD/6wRm/+sEaP/rBGr/6wRs/+sEbv/rBHD/6wRy/+sEdP/rBHb/6wR4/+sEev/rBHz/6wR+/+oEgP/qBIL/6gSE/+oEhv/q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"}}}]); \ No newline at end of file diff --git a/frontend/index.html b/frontend/index.html index 015ec887..9a27d52b 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -12,8 +12,8 @@ - + - - + + diff --git a/frontend/main.4d0b488c417a90c1.js b/frontend/main.4d0b488c417a90c1.js new file mode 100644 index 00000000..ab029a6d --- /dev/null +++ b/frontend/main.4d0b488c417a90c1.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{8430:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>ne,$J:()=>r,$Q:()=>D,Aw:()=>I,C2:()=>y,CK:()=>ie,Db:()=>Xt,Do:()=>N,Dq:()=>qe,ED:()=>ye,EM:()=>ce,Eb:()=>mt,Ew:()=>fe,Fd:()=>ae,GZ:()=>ke,Gy:()=>z,Gz:()=>_t,Hm:()=>de,Jx:()=>ze,Ml:()=>at,N4:()=>Me,NS:()=>x,NU:()=>ue,Qj:()=>W,Qv:()=>pt,Sn:()=>f,T4:()=>Te,Uj:()=>ge,VK:()=>Ee,We:()=>Q,XT:()=>F,Yi:()=>_,Zi:()=>ee,a5:()=>Ke,aB:()=>se,cR:()=>C,dv:()=>n,ed:()=>J,fy:()=>c,g6:()=>me,gf:()=>S,ij:()=>L,jQ:()=>Ze,kQ:()=>pe,kX:()=>T,kv:()=>V,lg:()=>l,no:()=>w,qw:()=>_e,sq:()=>$,uK:()=>v,vL:()=>m,w0:()=>h,x1:()=>d,y0:()=>be,zU:()=>k});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.TC.UPDATE_API_CALL_STATUS_CLN,(0,e.xk)()),S=(0,e.VP)(t.TC.RESET_CLN_STORE),l=(0,e.VP)(t.TC.FETCH_PAGE_SETTINGS_CLN),x=(0,e.VP)(t.TC.SET_PAGE_SETTINGS_CLN,(0,e.xk)()),f=(0,e.VP)(t.TC.SAVE_PAGE_SETTINGS_CLN,(0,e.xk)()),I=(0,e.VP)(t.TC.FETCH_INFO_CLN,(0,e.xk)()),d=(0,e.VP)(t.TC.SET_INFO_CLN,(0,e.xk)()),T=(0,e.VP)(t.TC.FETCH_FEE_RATES_CLN,(0,e.xk)()),y=(0,e.VP)(t.TC.SET_FEE_RATES_CLN,(0,e.xk)()),F=(0,e.VP)(t.TC.GET_NEW_ADDRESS_CLN,(0,e.xk)()),z=((0,e.VP)(t.TC.SET_NEW_ADDRESS_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_PEERS_CLN)),W=(0,e.VP)(t.TC.SET_PEERS_CLN,(0,e.xk)()),$=(0,e.VP)(t.TC.SAVE_NEW_PEER_CLN,(0,e.xk)()),Q=((0,e.VP)(t.TC.NEWLY_ADDED_PEER_CLN,(0,e.xk)()),(0,e.VP)(t.TC.ADD_PEER_CLN,(0,e.xk)())),J=(0,e.VP)(t.TC.DETACH_PEER_CLN,(0,e.xk)()),ee=(0,e.VP)(t.TC.REMOVE_PEER_CLN,(0,e.xk)()),ie=(0,e.VP)(t.TC.FETCH_PAYMENTS_CLN),ge=(0,e.VP)(t.TC.SET_PAYMENTS_CLN,(0,e.xk)()),ae=(0,e.VP)(t.TC.SEND_PAYMENT_CLN,(0,e.xk)()),Me=(0,e.VP)(t.TC.SEND_PAYMENT_STATUS_CLN,(0,e.xk)()),Te=(0,e.VP)(t.TC.GET_QUERY_ROUTES_CLN,(0,e.xk)()),de=(0,e.VP)(t.TC.SET_QUERY_ROUTES_CLN,(0,e.xk)()),D=(0,e.VP)(t.TC.FETCH_CHANNELS_CLN),n=(0,e.VP)(t.TC.SET_CHANNELS_CLN,(0,e.xk)()),c=(0,e.VP)(t.TC.UPDATE_CHANNEL_CLN,(0,e.xk)()),m=(0,e.VP)(t.TC.SAVE_NEW_CHANNEL_CLN,(0,e.xk)()),h=(0,e.VP)(t.TC.CLOSE_CHANNEL_CLN,(0,e.xk)()),C=(0,e.VP)(t.TC.REMOVE_CHANNEL_CLN,(0,e.xk)()),k=(0,e.VP)(t.TC.PEER_LOOKUP_CLN,(0,e.xk)()),L=(0,e.VP)(t.TC.CHANNEL_LOOKUP_CLN,(0,e.xk)()),_=(0,e.VP)(t.TC.INVOICE_LOOKUP_CLN,(0,e.xk)()),r=(0,e.VP)(t.TC.SET_LOOKUP_CLN,(0,e.xk)()),v=(0,e.VP)(t.TC.GET_FORWARDING_HISTORY_CLN,(0,e.xk)()),V=(0,e.VP)(t.TC.SET_FORWARDING_HISTORY_CLN,(0,e.xk)()),N=(0,e.VP)(t.TC.FETCH_INVOICES_CLN),ne=(0,e.VP)(t.TC.SET_INVOICES_CLN,(0,e.xk)()),Ee=(0,e.VP)(t.TC.SAVE_NEW_INVOICE_CLN,(0,e.xk)()),ze=(0,e.VP)(t.TC.ADD_INVOICE_CLN,(0,e.xk)()),qe=(0,e.VP)(t.TC.UPDATE_INVOICE_CLN,(0,e.xk)()),Ke=(0,e.VP)(t.TC.DELETE_EXPIRED_INVOICE_CLN,(0,e.xk)()),se=(0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_CLN,(0,e.xk)()),me=((0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_UTXO_BALANCES_CLN)),ce=(0,e.VP)(t.TC.SET_UTXO_BALANCES_CLN,(0,e.xk)()),fe=(0,e.VP)(t.TC.FETCH_OFFER_INVOICE_CLN,(0,e.xk)()),ke=(0,e.VP)(t.TC.SET_OFFER_INVOICE_CLN,(0,e.xk)()),mt=(0,e.VP)(t.TC.FETCH_OFFERS_CLN),_e=(0,e.VP)(t.TC.SET_OFFERS_CLN,(0,e.xk)()),be=(0,e.VP)(t.TC.SAVE_NEW_OFFER_CLN,(0,e.xk)()),pe=(0,e.VP)(t.TC.ADD_OFFER_CLN,(0,e.xk)()),Ze=(0,e.VP)(t.TC.DISABLE_OFFER_CLN,(0,e.xk)()),_t=(0,e.VP)(t.TC.UPDATE_OFFER_CLN,(0,e.xk)()),at=(0,e.VP)(t.TC.FETCH_OFFER_BOOKMARKS_CLN),pt=(0,e.VP)(t.TC.SET_OFFER_BOOKMARKS_CLN,(0,e.xk)()),Xt=(0,e.VP)(t.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ye=(0,e.VP)(t.TC.DELETE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ue=(0,e.VP)(t.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,e.xk)())},283:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>Me});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(2462),d=g(8321),T=g(4416),y=g(1771),F=g(8430),R=g(9584),z=g(2142),W=g(4438),$=g(1626),j=g(9640),Q=g(3202),J=g(2571),ee=g(8570),ie=g(1188),ge=g(7879),ae=g(177);let Me=(()=>{class Te{constructor(D,n,c,m,h,C,k,L,_){this.actions=D,this.httpClient=n,this.store=c,this.sessionService=m,this.commonService=h,this.logger=C,this.router=k,this.wsService=L,this.location=_,this.CHILD_API_URL=T.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_INFO_CLN),(0,S.Z)(r=>(this.flgInitialized=!1,this.store.dispatch((0,y.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.INITIATED}})),this.store.dispatch((0,y.mt)({payload:T.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+T.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(T.aU.SET_SELECTED_NODE))),(0,x.T)(v=>(this.logger.info(v),this.CLN_VERISON=v.version||"",v.chains&&v.chains.length&&v.chains[0]&&"object"==typeof v.chains[0]&&v.chains[0].hasOwnProperty("chain")&&v?.chains[0].chain&&v?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&v?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.GET_NODE_INFO})),this.store.dispatch((0,y.Jh)()),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:T.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:T.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(v,r.payload.loadPage),this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.GET_NODE_INFO})),{type:T.TC.SET_INFO_CLN,payload:v||{}}))),(0,f.W)(v=>{const V=this.commonService.extractErrorCode(v),N="ETIMEDOUT"===V?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(v);return this.router.navigate(["/login"],{state:{logoutReason:JSON.stringify(N)}}),this.handleErrorWithoutAlert("FetchInfo",T.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:V,error:N}),(0,w.of)({type:T.aU.VOID})})))))),this.fetchFeeRatesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_FEE_RATES_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchFeeRates"+r.payload,status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/feeRates",{style:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchFeeRates"+r.payload,status:T.wn.COMPLETED}})),{type:T.TC.SET_FEE_RATES_CLN,payload:v||{}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchFeeRates"+r.payload,T.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.getNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_NEW_ADDRESS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+T.rl.ON_CHAIN_API+"/newaddr",{addresstype:r.payload.addressCode}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.GENERATE_NEW_ADDRESS})),{type:T.TC.SET_NEW_ADDRESS_CLN,payload:v&&v[r.payload.addressCode]?v[r.payload.addressCode]:{}})),(0,f.W)(v=>(this.handleErrorWithAlert("GenerateNewAddress",T.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+T.rl.ON_CHAIN_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.setNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_NEW_ADDRESS_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.peersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PEERS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPeers",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.PEERS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPeers",status:T.wn.COMPLETED}})),{type:T.TC.SET_PEERS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPeers",T.MZ.NO_SPINNER,"Fetching Peers Failed.",r),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_PEER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.CONNECT_PEER})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewPeer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.PEERS_API,{id:r.payload.id}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewPeer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.CONNECT_PEER})),this.store.dispatch((0,F.Qj)({payload:v||[]})),{type:T.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:v.find(V=>0===r.payload.id.indexOf(V.id?V.id:""))}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewPeer",T.MZ.CONNECT_PEER,"Peer Connection Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.detachPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DETACH_PEER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+T.rl.PEERS_API+"/disconnect",{id:r.payload.id,force:r.payload.force}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.DISCONNECT_PEER})),this.store.dispatch((0,y.UI)({payload:"Peer Disconnected Successfully!"})),{type:T.TC.REMOVE_PEER_CLN,payload:{id:r.payload.id}})),(0,f.W)(v=>(this.handleErrorWithAlert("PeerDisconnect",T.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+T.rl.PEERS_API+"/"+r.payload.id,v),(0,w.of)({type:T.aU.VOID})))))))),this.channelsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_CHANNELS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchChannels",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.CHANNELS_API+"/listPeerChannels"))),(0,x.T)(r=>{this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchChannels",status:T.wn.COMPLETED}}));const v={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return r.forEach(V=>{"CHANNELD_NORMAL"===V.state?V.peer_connected?v.activeChannels.push(V):v.inactiveChannels.push(V):v.pendingChannels.push(V)}),{type:T.TC.SET_CHANNELS_CLN,payload:v}}),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchChannels",T.MZ.NO_SPINNER,"Fetching Channels Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.openNewChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_CHANNEL_CLN),(0,S.Z)(r=>{this.store.dispatch((0,y.mt)({payload:T.MZ.OPEN_CHANNEL})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewChannel",status:T.wn.INITIATED}}));const v={id:r.payload.peerId,amount:r.payload.amount,feerate:r.payload.feeRate,announce:r.payload.announce};return r.payload.minconf&&(v.minconf=r.payload.minconf),r.payload.utxos&&(v.utxos=r.payload.utxos),r.payload.requestAmount&&(v.request_amt=r.payload.requestAmount),r.payload.compactLease&&(v.compact_lease=r.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API,v).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,F.no)({payload:{action:"SaveNewChannel",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.OPEN_CHANNEL})),this.store.dispatch((0,y.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,F.g6)()),{type:T.TC.FETCH_CHANNELS_CLN})),(0,f.W)(V=>(this.handleErrorWithoutAlert("SaveNewChannel",T.MZ.OPEN_CHANNEL,"Opening Channel Failed.",V),(0,w.of)({type:T.aU.VOID}))))}))),this.updateChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.UPDATE_CHANNEL_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/setChannelFee",r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,y.UI)("all"===r.payload.id?{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:T.TC.FETCH_CHANNELS_CLN})),(0,f.W)(v=>(this.handleErrorWithAlert("UpdateChannel",T.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+T.rl.CHANNELS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.closeChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.CLOSE_CHANNEL_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/close",{id:r.payload.channelId,unilateraltimeout:r.payload.force?1:null}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,y.UI)({payload:"Channel Closed Successfully!"})),{type:T.TC.REMOVE_CHANNEL_CLN,payload:r.payload})),(0,f.W)(v=>(this.handleErrorWithAlert("CloseChannel",r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+T.rl.CHANNELS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.paymentsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PAYMENTS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPayments",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.PAYMENTS_API))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPayments",status:T.wn.COMPLETED}})),{type:T.TC.SET_PAYMENTS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPayments",T.MZ.NO_SPINNER,"Fetching Payments Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFER_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.FETCH_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"FetchOfferInvoice",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/fetchOfferInvoice",r.payload).pipe((0,x.T)(v=>{this.logger.info(v),setTimeout(()=>{this.store.dispatch((0,F.no)({payload:{action:"FetchOfferInvoice",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.FETCH_INVOICE})),this.store.dispatch((0,F.GZ)({payload:v||{}}))},500)}),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOfferInvoice",T.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",v),(0,w.of)({type:T.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_OFFER_INVOICE_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.sendPaymentCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SEND_PAYMENT_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.no)({payload:{action:"SendPayment",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.PAYMENTS_API,r.payload).pipe((0,x.T)(v=>{this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SendPayment",status:T.wn.COMPLETED}}));let V="Payment Sent Successfully!";v.saveToDBError&&(V="Payment Sent Successfully but Offer Saving to Database Failed."),v.saveToDBResponse&&"NA"!==v.saveToDBResponse&&(this.store.dispatch((0,F.Db)({payload:v.saveToDBResponse})),V="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,F.CK)()),this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),this.store.dispatch((0,y.UI)({payload:V})),this.store.dispatch((0,F.N4)({payload:v.paymentResponse}))},1e3)}),(0,f.W)(v=>(this.logger.error("Error: "+JSON.stringify(v)),r.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed.",v):this.handleErrorWithAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+T.rl.PAYMENTS_API,v),(0,w.of)({type:T.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_QUERY_ROUTES_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"GetQueryRoutes",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/getRoute",{id:r.payload.destPubkey,amount_msat:r.payload.amount,riskfactor:0}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"GetQueryRoutes",status:T.wn.COMPLETED}})),{type:T.TC.SET_QUERY_ROUTES_CLN,payload:v})),(0,f.W)(v=>(this.store.dispatch((0,F.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",T.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/getRoute",v),(0,w.of)({type:T.aU.VOID})))))))),this.setQueryRoutesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_QUERY_ROUTES_CLN),(0,x.T)(r=>r.payload)),{dispatch:!1}),this.peerLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.PEER_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEARCHING_NODE})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/listNodes",{id:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEARCHING_NODE})),{type:T.TC.SET_LOOKUP_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithAlert("Lookup",T.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/listNodes/"+r.payload,v),(0,w.of)({type:T.aU.VOID})))))))),this.channelLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.CHANNEL_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/listChannels",{short_channel_id:r.payload.shortChannelID}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),{type:T.TC.SET_LOOKUP_CLN,payload:v})),(0,f.W)(v=>(r.payload.showError?this.handleErrorWithAlert("Lookup",r.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/listChannels/"+r.payload.shortChannelID,v):this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.$J)({payload:[]})),(0,w.of)({type:T.aU.VOID})))))))),this.invoiceLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.INVOICE_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/lookup",{label:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEARCHING_INVOICE})),v.invoices&&v.invoices.length&&v.invoices.length>0&&this.store.dispatch((0,F.Dq)({payload:v.invoices[0]})),{type:T.TC.SET_LOOKUP_CLN,payload:v.invoices&&v.invoices.length&&v.invoices.length>0?v.invoices[0]:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("Lookup",T.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",v),this.store.dispatch((0,y.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:T.aU.VOID})))))))),this.setLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_LOOKUP_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_FORWARDING_HISTORY_CLN),(0,S.Z)(r=>{const v=r.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,F.no)({payload:{action:"FetchForwardingHistory"+v,status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/listForwards",r.payload).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,F.no)({payload:{action:"FetchForwardingHistory"+v,status:T.wn.COMPLETED}})),r.payload.status===T.xk.FAILED?this.store.dispatch((0,F.kv)({payload:{status:T.xk.FAILED,totalForwards:V.length,listForwards:V}})):r.payload.status===T.xk.LOCAL_FAILED?this.store.dispatch((0,F.kv)({payload:{status:T.xk.LOCAL_FAILED,totalForwards:V.length,listForwards:V}})):r.payload.status===T.xk.SETTLED&&this.store.dispatch((0,F.kv)({payload:{status:T.xk.SETTLED,totalForwards:V.length,listForwards:V}})),{type:T.aU.VOID})),(0,f.W)(V=>(this.handleErrorWithAlert("FetchForwardingHistory"+v,T.MZ.NO_SPINNER,"Get "+r.payload.status+" Forwarding History Failed",this.CHILD_API_URL+T.rl.CHANNELS_API+"/listForwards",V),(0,w.of)({type:T.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DELETE_EXPIRED_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/delete",{maxexpiry:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.DELETE_INVOICE})),this.store.dispatch((0,y.UI)({payload:"Invoices Deleted Successfully!"})),{type:T.TC.FETCH_INVOICES_CLN})),(0,f.W)(v=>(this.handleErrorWithAlert("DeleteInvoices",T.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+T.rl.INVOICES_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.ADD_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewInvoice",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewInvoice",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.ADD_INVOICE})),v.amount_msat=r.payload.amount_msat,v.label=r.payload.label,v.expires_at=Math.round((new Date).getTime()/1e3+r.payload.expiry),v.description=r.payload.description,v.status="unpaid",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{invoice:v,newlyAdded:!0,component:d.y}}}))},200),{type:T.TC.ADD_INVOICE_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewInvoice",T.MZ.ADD_INVOICE,"Add Invoice Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewOfferCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_OFFER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.CREATE_OFFER})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewOffer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewOffer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{offer:v,newlyAdded:!0,component:z.f}}}))},100),{type:T.TC.ADD_OFFER_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewOffer",T.MZ.CREATE_OFFER,"Create Offer Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.invoicesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_INVOICES_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchInvoices",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/lookup",null))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchInvoices",status:T.wn.COMPLETED}})),{type:T.TC.SET_INVOICES_CLN,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchInvoices",T.MZ.NO_SPINNER,"Fetching Invoices Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.offersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFERS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchOffers",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.OFFERS_API).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchOffers",status:T.wn.COMPLETED}})),{type:T.TC.SET_OFFERS_CLN,payload:v.offers?v.offers:[]})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOffers",T.MZ.NO_SPINNER,"Fetching Offers Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.offersDisableCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DISABLE_OFFER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DISABLE_OFFER})),this.store.dispatch((0,F.no)({payload:{action:"DisableOffer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/disableOffer",{offer_id:r.payload.offer_id}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"DisableOffer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.DISABLE_OFFER})),this.store.dispatch((0,y.UI)({payload:"Offer Disabled Successfully!"})),{type:T.TC.UPDATE_OFFER_CLN,payload:{offer:v}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("DisableOffer",T.MZ.DISABLE_OFFER,"Disabling Offer Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchOfferBookmarks",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmarks").pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchOfferBookmarks",status:T.wn.COMPLETED}})),{type:T.TC.SET_OFFER_BOOKMARKS_CLN,payload:v||[]})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",T.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.peidOffersDeleteCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DELETE_OFFER_BOOKMARK_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,F.no)({payload:{action:"DeleteOfferBookmark",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:r.payload.bolt12}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"DeleteOfferBookmark",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,y.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:T.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:r.payload.bolt12}})),(0,f.W)(v=>(this.handleErrorWithAlert("DeleteOfferBookmark",T.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmark/"+r.payload.bolt12,v),(0,w.of)({type:T.aU.VOID})))))))),this.SetChannelTransactionCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_CHANNEL_TRANSACTION_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEND_FUNDS})),this.store.dispatch((0,F.no)({payload:{action:"SetChannelTransaction",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.ON_CHAIN_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SetChannelTransaction",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEND_FUNDS})),this.store.dispatch((0,F.g6)()),{type:T.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SetChannelTransaction",T.MZ.SEND_FUNDS,"Sending Fund Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.utxoBalancesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_UTXO_BALANCES_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchUTXOBalances",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.ON_CHAIN_API+"/utxos"))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchUTXOBalances",status:T.wn.COMPLETED}})),{type:T.TC.SET_UTXO_BALANCES_CLN,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchUTXOBalances",T.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PAGE_SETTINGS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPageSettings",status:T.wn.INITIATED}})),this.httpClient.get(T.rl.PAGE_SETTINGS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPageSettings",status:T.wn.COMPLETED}})),{type:T.TC.SET_PAGE_SETTINGS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPageSettings",T.MZ.NO_SPINNER,"Fetching Page Settings Failed.",r),(0,w.of)({type:T.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_PAGE_SETTINGS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.no)({payload:{action:"SavePageSettings",status:T.wn.INITIATED}})),this.httpClient.post(T.rl.PAGE_SETTINGS_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SavePageSettings",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,y.UI)({payload:"Page Layout Updated Successfully!"})),{type:T.TC.SET_PAGE_SETTINGS_CLN,payload:v||[]})),(0,f.W)(v=>(this.handleErrorWithAlert("SavePageSettings",T.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",T.rl.PAGE_SETTINGS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.store.select(R.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(r=>{r.FetchInfo.status!==T.wn.COMPLETED&&r.FetchInfo.status!==T.wn.ERROR||r.FetchChannels.status!==T.wn.COMPLETED&&r.FetchChannels.status!==T.wn.ERROR||r.FetchUTXOBalances.status!==T.wn.COMPLETED&&r.FetchUTXOBalances.status!==T.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,y.y0)({payload:T.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(r=>{this.logger.info("Received new message from the service: "+JSON.stringify(r)),r&&r.data&&r.data[T.Jr.INVOICE_PAYMENT]&&r.data[T.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,F.Dq)({payload:r.data[T.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(D,n){this.sessionService.setItem("clnUnlocked","true");const c={identity_pubkey:D.id,alias:D.alias,testnet:"testnet"===D.network.toLowerCase(),chains:D.chains,uris:D.uris,version:D.version,api_version:D.api_version,numberOfPendingChannels:D.num_pending_channels};this.store.dispatch((0,y.mt)({payload:T.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,y.Fl)({payload:c}));let m=this.location.path();m.includes("/lnd/")?m=m?.replace("/lnd/","/cln/"):m.includes("/ecl/")&&(m=m?.replace("/ecl/","/cln/")),(m.includes("/login")||m.includes("/error")||""===m||"HOME"===n||m.includes("?access-key="))&&(m="/cln/home"),this.router.navigate([m]),this.store.dispatch((0,F.Do)()),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,F.kX)({payload:"perkw"})),this.store.dispatch((0,F.kX)({payload:"perkb"})),this.store.dispatch((0,F.Gy)()),this.store.dispatch((0,F.CK)())}handleErrorWithoutAlert(D,n,c,m){if(this.logger.error("ERROR IN: "+D+"\n"+JSON.stringify(m)),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,y.y0)({payload:n}));const h=this.commonService.extractErrorMessage(m,c);this.store.dispatch((0,F.no)({payload:{action:D,status:T.wn.ERROR,statusCode:m.status.toString(),message:h}}))}}handleErrorWithAlert(D,n,c,m,h){if(this.logger.error(h),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)})),this.store.dispatch((0,y.UI)({payload:"Authentication Failed: "+h.error}));else{this.store.dispatch((0,y.y0)({payload:n}));const C=this.commonService.extractErrorMessage(h);this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:c,message:{code:h.status,message:C,URL:m},component:I.f}}})),this.store.dispatch((0,F.no)({payload:{action:D,status:T.wn.ERROR,statusCode:h.status.toString(),message:C,URL:m}}))}}ngOnDestroy(){this.unSubs.forEach(D=>{D.next(null),D.complete()})}static#e=this.\u0275fac=function(n){return new(n||Te)(W.KVO(e.En),W.KVO($.Qq),W.KVO(j.il),W.KVO(Q.Q),W.KVO(J.h),W.KVO(ee.gP),W.KVO(ie.Ix),W.KVO(ge.I),W.KVO(ae.aZ))};static#t=this.\u0275prov=W.jDH({token:Te,factory:Te.\u0275fac})}return Te})()},9584:(Qe,te,g)=>{"use strict";g.d(te,{Al:()=>F,BM:()=>R,Dv:()=>W,GX:()=>j,Ie:()=>z,KT:()=>f,O5:()=>ee,Pj:()=>y,RB:()=>T,RQ:()=>J,aJ:()=>$,av:()=>w,ip:()=>ie,kQ:()=>Q,kr:()=>d,mH:()=>S,os:()=>I,ru:()=>x});var e=g(9640);const t=(0,e.UX)("cln"),w=(0,e.Mz)(t,ae=>({pageSettings:ae.pageSettings,apiCallStatus:ae.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,ae=>ae.information),x=((0,e.Mz)(t,ae=>ae.apisCallStatus.FetchInfo),(0,e.Mz)(t,ae=>ae.apisCallStatus)),f=(0,e.Mz)(t,ae=>({payments:ae.payments,apiCallStatus:ae.apisCallStatus.FetchPayments})),I=(0,e.Mz)(t,ae=>({peers:ae.peers,apiCallStatus:ae.apisCallStatus.FetchPeers})),d=(0,e.Mz)(t,ae=>({feeRatesPerKB:ae.feeRatesPerKB,apiCallStatus:ae.apisCallStatus.FetchFeeRatesperkb})),T=(0,e.Mz)(t,ae=>({feeRatesPerKW:ae.feeRatesPerKW,apiCallStatus:ae.apisCallStatus.FetchFeeRatesperkw})),y=(0,e.Mz)(t,ae=>({listInvoices:ae.invoices,apiCallStatus:ae.apisCallStatus.FetchInvoices})),F=(0,e.Mz)(t,ae=>({utxos:ae.utxos,balance:ae.balance,localRemoteBalance:ae.localRemoteBalance,apiCallStatus:ae.apisCallStatus.FetchUTXOBalances})),R=(0,e.Mz)(t,ae=>({activeChannels:ae.activeChannels,pendingChannels:ae.pendingChannels,inactiveChannels:ae.inactiveChannels,apiCallStatus:ae.apisCallStatus.FetchChannels})),z=(0,e.Mz)(t,ae=>({forwardingHistory:ae.forwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryS})),W=(0,e.Mz)(t,ae=>({failedForwardingHistory:ae.failedForwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryF})),$=(0,e.Mz)(t,ae=>({localFailedForwardingHistory:ae.localFailedForwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryL})),j=(0,e.Mz)(t,ae=>({information:ae.information,balance:ae.balance,numPeers:ae.peers.length})),Q=(0,e.Mz)(t,ae=>({information:ae.information,balance:ae.balance})),J=(0,e.Mz)(t,ae=>({information:ae.information,fees:ae.fees,apisCallStatus:[ae.apisCallStatus.FetchInfo,ae.apisCallStatus.FetchForwardingHistoryS]})),ee=(0,e.Mz)(t,ae=>({offers:ae.offers,apiCallStatus:ae.apisCallStatus.FetchOffers})),ie=(0,e.Mz)(t,ae=>({offersBookmarks:ae.offersBookmarks,apiCallStatus:ae.apisCallStatus.FetchOfferBookmarks}))},8321:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>mt});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(9584),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(1997),J=g(9183),ee=g(4823),ie=g(8288),ge=g(9157),ae=g(9587);const Me=_e=>({"display-none":_e}),Te=_e=>({"xs-scroll-y":_e}),de=(_e,be)=>({"mt-2":_e,"mt-1":be}),D=_e=>({"mr-0":_e}),n=()=>[];function c(_e,be){if(1&_e&&f.nrm(0,"qr-code",33),2&_e){const pe=f.XpG();f.Y8G("value",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))("size",pe.qrWidth)("errorCorrectionLevel","L")}}function m(_e,be){1&_e&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function h(_e,be){if(1&_e&&f.nrm(0,"span",35),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function C(_e,be){if(1&_e&&f.nrm(0,"span",36),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function k(_e,be){if(1&_e&&f.nrm(0,"span",37),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function L(_e,be){if(1&_e&&f.nrm(0,"qr-code",33),2&_e){const pe=f.XpG();f.Y8G("value",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))("size",pe.qrWidth)("errorCorrectionLevel","L")}}function _(_e,be){1&_e&&(f.j41(0,"span",38),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function r(_e,be){1&_e&&f.nrm(0,"mat-divider",39)}function v(_e,be){if(1&_e&&(f.j41(0,"div",20)(1,"div",40),f.nrm(2,"fa-icon",41),f.j41(3,"span"),f.EFF(4),f.k0s()()()),2&_e){const pe=f.XpG();f.R7$(2),f.Y8G("icon",pe.faExclamationTriangle),f.R7$(2),f.JRh(null==pe.invoice?null:pe.invoice.warning_capacity)}}function V(_e,be){1&_e&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function N(_e,be){1&_e&&f.nrm(0,"span",47)}function ne(_e,be){if(1&_e&&(f.j41(0,"div",43)(1,"div",44)(2,"span",45),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,N,1,0,"span",46),f.k0s()()),2&_e){const pe=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,(null==pe.invoice?null:pe.invoice.amount_received_msat)/1e3)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,n).constructor(35))}}function Ee(_e,be){if(1&_e&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&_e){const pe=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,(null==pe.invoice?null:pe.invoice.amount_received_msat)/1e3)," Sats")}}function ze(_e,be){if(1&_e&&(f.qex(0),f.DNE(1,ne,6,5,"div",42)(2,Ee,3,3,"div",24),f.bVm()),2&_e){const pe=f.XpG();f.R7$(),f.Y8G("ngIf",pe.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!pe.flgInvoicePaid)}}function qe(_e,be){1&_e&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Ke(_e,be){1&_e&&f.nrm(0,"mat-spinner",49),2&_e&&f.Y8G("diameter",20)}function se(_e,be){if(1&_e&&(f.qex(0),f.DNE(1,qe,2,0,"span",24)(2,Ke,1,1,"mat-spinner",48),f.bVm()),2&_e){const pe=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==pe.invoice?null:pe.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==pe.invoice?null:pe.invoice.status))}}function X(_e,be){if(1&_e&&(f.j41(0,"div"),f.nrm(1,"mat-divider",26),f.j41(2,"div",20)(3,"div",27)(4,"h4",22),f.EFF(5,"Payment Hash"),f.k0s(),f.j41(6,"span",25),f.EFF(7),f.k0s()()(),f.nrm(8,"mat-divider",26),f.j41(9,"div",20)(10,"div",27)(11,"h4",22),f.EFF(12,"Label"),f.k0s(),f.j41(13,"span",25),f.EFF(14),f.k0s()()(),f.nrm(15,"mat-divider",26),f.k0s()),2&_e){const pe=f.XpG();f.R7$(7),f.JRh(null==pe.invoice?null:pe.invoice.payment_hash),f.R7$(7),f.JRh(null==pe.invoice?null:pe.invoice.label)}}function me(_e,be){1&_e&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ce(_e,be){1&_e&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function fe(_e,be){if(1&_e){const pe=f.RV6();f.j41(0,"button",50),f.bIt("copied",function(_t){f.eBV(pe);const at=f.XpG();return f.Njj(at.onCopyPayment(_t))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&_e){const pe=f.XpG();f.Y8G("payload",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))}}function ke(_e,be){if(1&_e){const pe=f.RV6();f.j41(0,"button",51),f.bIt("click",function(){f.eBV(pe);const _t=f.XpG();return f.Njj(_t.onClose())}),f.EFF(1,"OK"),f.k0s()}}let mt=(()=>{class _e{constructor(pe,Ze,_t,at,pt,Xt){this.dialogRef=pe,this.data=Ze,this.logger=_t,this.commonService=at,this.snackBar=pt,this.store=Xt,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.Pj).pipe((0,S.Q)(this.unSubs[1])).subscribe(pe=>{const _t=(pe.listInvoices.invoices||[])?.find(at=>at.payment_hash===this.invoice.payment_hash)||null;_t&&(this.invoice=_t),this.invoiceStatus!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(this.invoice),this.logger.info(this.invoiceStatus),this.logger.info(_t),this.logger.info(pe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(pe){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+pe)}ngOnDestroy(){this.unSubs.forEach(pe=>{pe.next(null),pe.complete()})}static#e=this.\u0275fac=function(Ze){return new(Ze||_e)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:_e,selectors:[["rtl-cln-invoice-information"]],decls:72,vars:49,consts:[["hideAdvancedText",""],["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 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",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"],["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"],["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,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Ze,_t){if(1&Ze){const at=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,c,1,3,"qr-code",3)(3,m,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.DNE(10,h,1,3,"span",10)(11,C,1,3,"span",11)(12,k,1,3,"span",12),f.k0s()(),f.j41(13,"button",13),f.bIt("click",function(){return f.eBV(at),f.Njj(_t.onClose())}),f.EFF(14,"X"),f.k0s()(),f.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),f.DNE(18,L,1,3,"qr-code",3)(19,_,2,0,"span",17),f.k0s(),f.DNE(20,r,1,0,"mat-divider",18)(21,v,5,2,"div",19),f.j41(22,"div",20)(23,"div",21)(24,"h4",22),f.EFF(25),f.k0s(),f.j41(26,"span",23),f.EFF(27),f.nI1(28,"number"),f.DNE(29,V,2,0,"ng-container",24),f.k0s()(),f.j41(30,"div",21)(31,"h4",22),f.EFF(32,"Amount Received"),f.k0s(),f.j41(33,"span",25),f.DNE(34,ze,3,2,"ng-container",24)(35,se,3,2,"ng-container",24),f.k0s()()(),f.nrm(36,"mat-divider",26),f.j41(37,"div",20)(38,"div",21)(39,"h4",22),f.EFF(40,"Date Expiry"),f.k0s(),f.j41(41,"span",23),f.EFF(42),f.nI1(43,"date"),f.k0s()(),f.j41(44,"div",21)(45,"h4",22),f.EFF(46,"Date Settled"),f.k0s(),f.j41(47,"span",23),f.EFF(48),f.nI1(49,"date"),f.k0s()()(),f.nrm(50,"mat-divider",26),f.j41(51,"div",20)(52,"div",27)(53,"h4",22),f.EFF(54,"Description"),f.k0s(),f.j41(55,"span",23),f.EFF(56),f.k0s()()(),f.nrm(57,"mat-divider",26),f.j41(58,"div",20)(59,"div",27)(60,"h4",22),f.EFF(61),f.k0s(),f.j41(62,"span",25),f.EFF(63),f.k0s()()(),f.DNE(64,X,16,2,"div",24),f.j41(65,"div",28)(66,"button",29),f.bIt("click",function(){return f.eBV(at),f.Njj(_t.onShowAdvanced())}),f.DNE(67,me,2,0,"p",30)(68,ce,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(70,fe,2,1,"button",31)(71,ke,2,0,"button",32),f.k0s()()()()()}if(2&Ze){const at=f.sdS(69);f.R7$(),f.Y8G("fxLayoutAlign",null!=_t.invoice&&_t.invoice.bolt11&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||null!=_t.invoice&&_t.invoice.bolt12&&""!==(null==_t.invoice?null:_t.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(40,Me,_t.screenSize===_t.screenSizeEnum.XS||_t.screenSize===_t.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12)),f.R7$(4),f.Y8G("icon",_t.faReceipt),f.R7$(2),f.SpI(" ",_t.screenSize===_t.screenSizeEnum.XS?_t.newlyAdded?"Created":"Invoice":_t.newlyAdded?"Invoice Created":"Invoice Information"," "),f.R7$(),f.Y8G("ngIf","paid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","expired"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(3),f.Y8G("ngClass",f.eq3(42,Te,_t.screenSize===_t.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=_t.invoice&&_t.invoice.bolt11&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||null!=_t.invoice&&_t.invoice.bolt12&&""!==(null==_t.invoice?null:_t.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(44,Me,_t.screenSize!==_t.screenSizeEnum.XS&&_t.screenSize!==_t.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",_t.screenSize===_t.screenSizeEnum.XS||_t.screenSize===_t.screenSizeEnum.SM),f.R7$(),f.Y8G("ngIf",null==_t.invoice?null:_t.invoice.warning_capacity),f.R7$(4),f.JRh(_t.screenSize===_t.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI(" ",f.bMT(28,32,(null==_t.invoice?null:_t.invoice.amount_msat)/1e3||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.amount_msat)||"0"===(null==_t.invoice?null:_t.invoice.amount_msat)||"any"===(null==_t.invoice?null:_t.invoice.amount_msat)),f.R7$(5),f.Y8G("ngIf","paid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","paid"!==(null==_t.invoice?null:_t.invoice.status)),f.R7$(7),f.JRh(f.i5U(43,34,1e3*(null==_t.invoice?null:_t.invoice.expires_at),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(49,37,1e3*(null==_t.invoice?null:_t.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),f.R7$(8),f.JRh((null==_t.invoice?null:_t.invoice.description)||"-"),f.R7$(5),f.SpI("",null!=_t.invoice&&_t.invoice.bolt12?"Bolt12":null!=_t.invoice&&_t.invoice.bolt11&&!_t.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),f.R7$(2),f.JRh((null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",_t.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(46,de,!_t.showAdvanced,_t.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!_t.showAdvanced)("ngIfElse",at),f.R7$(3),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12))}},dependencies:[F.YU,F.Sq,F.bT,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,j.m2,j.MM,Q.q,J.LG,ee.oV,ie.Um,ge.U,ae.N,F.QX,F.vh]})}return _e})()},2142:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>ne});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(4438),f=g(8570),I=g(2571),d=g(5416),T=g(1534),y=g(177),F=g(60),R=g(2920),z=g(6038),W=g(8834),$=g(5596),j=g(1997),Q=g(8288),J=g(9157),ee=g(9587);const ie=Ee=>({"display-none":Ee}),ge=Ee=>({"xs-scroll-y":Ee}),ae=(Ee,ze)=>({"mt-2":Ee,"mt-1":ze});function Me(Ee,ze){if(1&Ee&&x.nrm(0,"qr-code",28),2&Ee){const qe=x.XpG();x.Y8G("value",null==qe.offer?null:qe.offer.bolt12)("size",qe.qrWidth)("errorCorrectionLevel","L")}}function Te(Ee,ze){1&Ee&&(x.j41(0,"span",29),x.EFF(1,"N/A"),x.k0s())}function de(Ee,ze){if(1&Ee&&x.nrm(0,"qr-code",28),2&Ee){const qe=x.XpG();x.Y8G("value",null==qe.offer?null:qe.offer.bolt12)("size",qe.qrWidth)("errorCorrectionLevel","L")}}function D(Ee,ze){1&Ee&&(x.j41(0,"span",30),x.EFF(1,"QR Code Not Applicable"),x.k0s())}function n(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",31),2&Ee&&x.Y8G("inset",!0)}function c(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function m(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",17)(2,"h4",18),x.EFF(3,"Used"),x.k0s(),x.j41(4,"span",19),x.EFF(5),x.k0s()(),x.j41(6,"div",17)(7,"h4",18),x.EFF(8,"Single Use"),x.k0s(),x.j41(9,"span",19),x.EFF(10),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.SpI(" ",null!=qe.offer&&qe.offer.used?null!=qe.offer&&qe.offer.used?"Yes":"No":"N/K"," "),x.R7$(5),x.SpI(" ",null!=qe.offer&&qe.offer.single_use?null!=qe.offer&&qe.offer.single_use?"Yes":"No":"N/K"," ")}}function h(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function C(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",21)(2,"h4",18),x.EFF(3,"Issuer"),x.k0s(),x.j41(4,"span",34),x.EFF(5),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.JRh(null==qe.offerDecoded?null:qe.offerDecoded.offer_issuer)}}function k(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function L(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",21)(2,"h4",18),x.EFF(3,"Label"),x.k0s(),x.j41(4,"span",19),x.EFF(5),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.JRh(qe.offer.label)}}function _(Ee,ze){if(1&Ee&&(x.j41(0,"div"),x.DNE(1,c,1,0,"mat-divider",32)(2,m,11,2,"div",33)(3,h,1,0,"mat-divider",32)(4,C,6,1,"div",33)(5,k,1,0,"mat-divider",32)(6,L,6,1,"div",33),x.nrm(7,"mat-divider",20),x.j41(8,"div",16)(9,"div",21)(10,"h4",18),x.EFF(11,"Offer ID"),x.k0s(),x.j41(12,"span",19),x.EFF(13),x.k0s()()(),x.nrm(14,"mat-divider",20),x.j41(15,"div",16)(16,"div",21)(17,"h4",18),x.EFF(18,"Offer Node ID"),x.k0s(),x.j41(19,"span",19),x.EFF(20),x.k0s()()(),x.nrm(21,"mat-divider",20),x.k0s()),2&Ee){const qe=x.XpG();x.R7$(),x.Y8G("ngIf",(null==qe.offer?null:qe.offer.used)||(null==qe.offer?null:qe.offer.single_use)),x.R7$(),x.Y8G("ngIf",(null==qe.offer?null:qe.offer.used)||(null==qe.offer?null:qe.offer.single_use)),x.R7$(),x.Y8G("ngIf",null==qe.offerDecoded?null:qe.offerDecoded.issuer),x.R7$(),x.Y8G("ngIf",null==qe.offerDecoded?null:qe.offerDecoded.issuer),x.R7$(),x.Y8G("ngIf",qe.offer.label),x.R7$(),x.Y8G("ngIf",qe.offer.label),x.R7$(7),x.JRh(qe.offerDecoded.offer_id),x.R7$(7),x.JRh(null==qe.offerDecoded?null:qe.offerDecoded.offer_node_id)}}function r(Ee,ze){1&Ee&&(x.j41(0,"p"),x.EFF(1,"Show Advanced"),x.k0s())}function v(Ee,ze){1&Ee&&(x.j41(0,"p"),x.EFF(1,"Hide Advanced"),x.k0s())}function V(Ee,ze){if(1&Ee){const qe=x.RV6();x.j41(0,"button",35),x.bIt("copied",function(se){x.eBV(qe);const X=x.XpG();return x.Njj(X.onCopyOffer(se))}),x.EFF(1,"Copy Offer"),x.k0s()}if(2&Ee){const qe=x.XpG();x.Y8G("payload",null==qe.offer?null:qe.offer.bolt12)}}function N(Ee,ze){if(1&Ee){const qe=x.RV6();x.j41(0,"button",36),x.bIt("click",function(){x.eBV(qe);const se=x.XpG();return x.Njj(se.onClose())}),x.EFF(1,"OK"),x.k0s()}}let ne=(()=>{class Ee{constructor(qe,Ke,se,X,me,ce){this.dialogRef=qe,this.data=Ke,this.logger=se,this.commonService=X,this.snackBar=me,this.dataService=ce,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOfferPaid=!1,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,S.Q)(this.unSubs[1])).subscribe(qe=>{this.offerDecoded=qe,this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat&&(this.offerDecoded.offer_amount_msat=0)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(qe){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+qe)}ngOnDestroy(){this.unSubs.forEach(qe=>{qe.next(null),qe.complete()})}static#e=this.\u0275fac=function(Ke){return new(Ke||Ee)(x.rXU(e.CP),x.rXU(e.Vh),x.rXU(f.gP),x.rXU(I.h),x.rXU(d.UG),x.rXU(T.u))};static#t=this.\u0275cmp=x.VBU({type:Ee,selectors:[["rtl-cln-offer-information"]],decls:52,vars:33,consts:[["hideAdvancedText",""],["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 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"],["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,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Ke,se){if(1&Ke){const X=x.RV6();x.j41(0,"div",1)(1,"div",2),x.DNE(2,Me,1,3,"qr-code",3)(3,Te,2,0,"span",4),x.k0s(),x.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),x.nrm(7,"fa-icon",8),x.j41(8,"span",9),x.EFF(9),x.k0s()(),x.j41(10,"button",10),x.bIt("click",function(){return x.eBV(X),x.Njj(se.onClose())}),x.EFF(11,"X"),x.k0s()(),x.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),x.DNE(15,de,1,3,"qr-code",3)(16,D,2,0,"span",14),x.k0s(),x.DNE(17,n,1,1,"mat-divider",15),x.j41(18,"div",16)(19,"div",17)(20,"h4",18),x.EFF(21,"Amount Requested (Sats)"),x.k0s(),x.j41(22,"span",19),x.EFF(23),x.nI1(24,"number"),x.k0s()(),x.j41(25,"div",17)(26,"h4",18),x.EFF(27,"Valid"),x.k0s(),x.j41(28,"span",19),x.EFF(29),x.k0s()()(),x.nrm(30,"mat-divider",20),x.j41(31,"div",16)(32,"div",21)(33,"h4",18),x.EFF(34,"Description"),x.k0s(),x.j41(35,"span",19),x.EFF(36),x.k0s()()(),x.nrm(37,"mat-divider",20),x.j41(38,"div",16)(39,"div",21)(40,"h4",18),x.EFF(41,"Offer"),x.k0s(),x.j41(42,"span",19),x.EFF(43),x.k0s()()(),x.DNE(44,_,22,8,"div",22),x.j41(45,"div",23)(46,"button",24),x.bIt("click",function(){return x.eBV(X),x.Njj(se.onShowAdvanced())}),x.DNE(47,r,2,0,"p",25)(48,v,2,0,"ng-template",null,0,x.C5r),x.k0s(),x.DNE(50,V,2,1,"button",26)(51,N,2,0,"button",27),x.k0s()()()()()}if(2&Ke){const X=x.sdS(49);x.R7$(),x.Y8G("fxLayoutAlign",null!=se.offer&&se.offer.bolt12&&""!==(null==se.offer?null:se.offer.bolt12)?"center start":"center center")("ngClass",x.eq3(24,ie,se.screenSize===se.screenSizeEnum.XS||se.screenSize===se.screenSizeEnum.SM)),x.R7$(),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12)),x.R7$(4),x.Y8G("icon",se.faReceipt),x.R7$(2),x.JRh(se.screenSize===se.screenSizeEnum.XS?se.newlyAdded?"Created":"Offer":se.newlyAdded?"Offer Created":"Offer Information"),x.R7$(3),x.Y8G("ngClass",x.eq3(26,ge,se.screenSize===se.screenSizeEnum.XS)),x.R7$(2),x.Y8G("fxLayoutAlign",null!=se.offer&&se.offer.bolt12&&""!==(null==se.offer?null:se.offer.bolt12)?"center start":"center center")("ngClass",x.eq3(28,ie,se.screenSize!==se.screenSizeEnum.XS&&se.screenSize!==se.screenSizeEnum.SM)),x.R7$(),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",se.screenSize===se.screenSizeEnum.XS||se.screenSize===se.screenSizeEnum.SM),x.R7$(6),x.SpI(" ",null!=se.offerDecoded&&se.offerDecoded.offer_amount_msat&&0!==(null==se.offerDecoded?null:se.offerDecoded.offer_amount_msat)?x.bMT(24,22,(null==se.offerDecoded?null:se.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),x.R7$(6),x.SpI(" ",null!=se.offerDecoded&&se.offerDecoded.valid?null!=se.offerDecoded&&se.offerDecoded.valid?"Yes":"No":"N/K"," "),x.R7$(7),x.SpI(" ",null==se.offerDecoded?null:se.offerDecoded.offer_description," "),x.R7$(7),x.JRh(null==se.offer?null:se.offer.bolt12),x.R7$(),x.Y8G("ngIf",se.showAdvanced),x.R7$(),x.Y8G("ngClass",x.l_i(30,ae,!se.showAdvanced,se.showAdvanced)),x.R7$(2),x.Y8G("ngIf",!se.showAdvanced)("ngIfElse",X),x.R7$(3),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12))}},dependencies:[y.YU,y.bT,F.aY,R.DJ,R.sA,R.UI,z.PW,W.$z,$.m2,$.MM,j.q,Q.Um,J.U,ee.N,y.QX]})}return Ee})()},5428:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>Ke,$Q:()=>F,As:()=>ne,CK:()=>k,Do:()=>qe,Dq:()=>me,Fd:()=>v,Gy:()=>ee,Hh:()=>S,Hm:()=>r,I6:()=>W,Jx:()=>X,Lc:()=>Te,Lz:()=>Ee,N4:()=>V,N8:()=>Q,NS:()=>x,Qj:()=>ie,Sn:()=>f,T4:()=>_,Tp:()=>R,Uj:()=>L,Uo:()=>y,XT:()=>D,Xx:()=>j,Yi:()=>fe,ZE:()=>J,Zi:()=>de,cR:()=>C,cU:()=>z,fy:()=>m,gZ:()=>mt,iO:()=>se,jJ:()=>$,lg:()=>l,mh:()=>N,sq:()=>ge,uL:()=>w,vL:()=>c,w0:()=>h,x1:()=>d,yn:()=>_e,yp:()=>T,zR:()=>I,zU:()=>ce});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.Uu.UPDATE_API_CALL_STATUS_ECL,(0,e.xk)()),S=(0,e.VP)(t.Uu.RESET_ECL_STORE),l=(0,e.VP)(t.Uu.FETCH_PAGE_SETTINGS_ECL),x=(0,e.VP)(t.Uu.SET_PAGE_SETTINGS_ECL,(0,e.xk)()),f=(0,e.VP)(t.Uu.SAVE_PAGE_SETTINGS_ECL,(0,e.xk)()),I=(0,e.VP)(t.Uu.FETCH_INFO_ECL,(0,e.xk)()),d=(0,e.VP)(t.Uu.SET_INFO_ECL,(0,e.xk)()),T=(0,e.VP)(t.Uu.FETCH_FEES_ECL),y=(0,e.VP)(t.Uu.SET_FEES_ECL,(0,e.xk)()),F=(0,e.VP)(t.Uu.FETCH_CHANNELS_ECL),R=(0,e.VP)(t.Uu.SET_ACTIVE_CHANNELS_ECL,(0,e.xk)()),z=(0,e.VP)(t.Uu.SET_PENDING_CHANNELS_ECL,(0,e.xk)()),W=(0,e.VP)(t.Uu.SET_INACTIVE_CHANNELS_ECL,(0,e.xk)()),$=(0,e.VP)(t.Uu.FETCH_ONCHAIN_BALANCE_ECL),j=(0,e.VP)(t.Uu.SET_ONCHAIN_BALANCE_ECL,(0,e.xk)()),Q=(0,e.VP)(t.Uu.SET_LIGHTNING_BALANCE_ECL,(0,e.xk)()),J=(0,e.VP)(t.Uu.SET_CHANNELS_STATUS_ECL,(0,e.xk)()),ee=(0,e.VP)(t.Uu.FETCH_PEERS_ECL),ie=(0,e.VP)(t.Uu.SET_PEERS_ECL,(0,e.xk)()),ge=(0,e.VP)(t.Uu.SAVE_NEW_PEER_ECL,(0,e.xk)()),Te=((0,e.VP)(t.Uu.NEWLY_ADDED_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.ADD_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.DETACH_PEER_ECL,(0,e.xk)())),de=(0,e.VP)(t.Uu.REMOVE_PEER_ECL,(0,e.xk)()),D=(0,e.VP)(t.Uu.GET_NEW_ADDRESS_ECL),c=((0,e.VP)(t.Uu.SET_NEW_ADDRESS_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.SAVE_NEW_CHANNEL_ECL,(0,e.xk)())),m=(0,e.VP)(t.Uu.UPDATE_CHANNEL_ECL,(0,e.xk)()),h=(0,e.VP)(t.Uu.CLOSE_CHANNEL_ECL,(0,e.xk)()),C=(0,e.VP)(t.Uu.REMOVE_CHANNEL_ECL,(0,e.xk)()),k=(0,e.VP)(t.Uu.FETCH_PAYMENTS_ECL,(0,e.xk)()),L=(0,e.VP)(t.Uu.SET_PAYMENTS_ECL,(0,e.xk)()),_=(0,e.VP)(t.Uu.GET_QUERY_ROUTES_ECL,(0,e.xk)()),r=(0,e.VP)(t.Uu.SET_QUERY_ROUTES_ECL,(0,e.xk)()),v=(0,e.VP)(t.Uu.SEND_PAYMENT_ECL,(0,e.xk)()),V=(0,e.VP)(t.Uu.SEND_PAYMENT_STATUS_ECL,(0,e.xk)()),N=(0,e.VP)(t.Uu.FETCH_TRANSACTIONS_ECL,(0,e.xk)()),ne=(0,e.VP)(t.Uu.SET_TRANSACTIONS_ECL,(0,e.xk)()),Ee=(0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,e.xk)()),qe=((0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.FETCH_INVOICES_ECL,(0,e.xk)())),Ke=(0,e.VP)(t.Uu.SET_INVOICES_ECL,(0,e.xk)()),se=(0,e.VP)(t.Uu.CREATE_INVOICE_ECL,(0,e.xk)()),X=(0,e.VP)(t.Uu.ADD_INVOICE_ECL,(0,e.xk)()),me=(0,e.VP)(t.Uu.UPDATE_INVOICE_ECL,(0,e.xk)()),ce=(0,e.VP)(t.Uu.PEER_LOOKUP_ECL,(0,e.xk)()),fe=(0,e.VP)(t.Uu.INVOICE_LOOKUP_ECL,(0,e.xk)()),mt=((0,e.VP)(t.Uu.SET_LOOKUP_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.UPDATE_CHANNEL_STATE_ECL,(0,e.xk)())),_e=(0,e.VP)(t.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,e.xk)())},3017:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>ae});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(2462),d=g(4416),T=g(1771),y=g(6439),F=g(5428),R=g(2730),z=g(4438),W=g(1626),$=g(9640),j=g(3202),Q=g(2571),J=g(8570),ee=g(1188),ie=g(7879),ge=g(177);let ae=(()=>{class Me{constructor(de,D,n,c,m,h,C,k,L){this.actions=de,this.httpClient=D,this.store=n,this.sessionService=c,this.commonService=m,this.logger=h,this.router=C,this.wsService=k,this.location=L,this.CHILD_API_URL=d.H$+"/ecl",this.invoicesPageSettings=d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"invoices"===_.tableId),this.paymentsPageSettings=d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"payments"===_.tableId),this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchECL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_INFO_ECL),(0,S.Z)(_=>(this.flgInitialized=!1,this.store.dispatch((0,T.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,T.mt)({payload:d.MZ.GET_NODE_INFO})),this.store.dispatch((0,F.uL)({payload:{action:"FetchInfo",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(d.aU.SET_SELECTED_NODE))),(0,x.T)(r=>(this.logger.info(r),this.initializeRemainingData(r,_.payload.loadPage),this.store.dispatch((0,F.uL)({payload:{action:"FetchInfo",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.GET_NODE_INFO})),{type:d.Uu.SET_INFO_ECL,payload:r||{}})),(0,f.W)(r=>{const v=this.commonService.extractErrorCode(r),V=503===v?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(r);return this.router.navigate(["/error"],{state:{errorCode:v,errorMessage:V}}),this.handleErrorWithoutAlert("FetchInfo",d.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:v,error:V}),(0,w.of)({type:d.aU.VOID})})))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_FEES_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchFees",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/fees").pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchFees",status:d.wn.COMPLETED}})),{type:d.Uu.SET_FEES_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchFees",d.MZ.NO_SPINNER,"Fetching Fees Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.fetchPayments=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PAYMENTS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPayments",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/payments?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"FetchPayments",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PAYMENTS_ECL,payload:r||{}})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPayments",d.MZ.NO_SPINNER,"Fetching Payments Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_CHANNELS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchChannels",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.CHANNELS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.rawChannelsList=r,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,F.uL)({payload:{action:"FetchChannels",status:d.wn.COMPLETED}})),{type:d.aU.VOID})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchChannels",d.MZ.NO_SPINNER,"Fetching Channels Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.fetchOnchainBalance=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/balance"))),(0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.COMPLETED}})),{type:d.Uu.SET_ONCHAIN_BALANCE_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchOnchainBalance",d.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",_),(0,w.of)({type:d.aU.VOID}))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PEERS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPeers",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.PEERS_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchPeers",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PEERS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPeers",d.MZ.NO_SPINNER,"Fetching Peers Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.GET_NEW_ADDRESS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,T.mt)({payload:d.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,T.y0)({payload:d.MZ.GENERATE_NEW_ADDRESS})),{type:d.Uu.SET_NEW_ADDRESS_ECL,payload:_})),(0,f.W)(_=>(this.handleErrorWithAlert("GetNewAddress",d.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+d.rl.ON_CHAIN_API,_),(0,w.of)({type:d.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_NEW_ADDRESS_ECL),(0,x.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_NEW_PEER_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewPeer",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PEERS_API+(_.payload.id.includes("@")?"?uri=":"?nodeId=")+_.payload.id,{}).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewPeer",status:d.wn.COMPLETED}})),r=r||[],this.store.dispatch((0,T.y0)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,F.Qj)({payload:r})),{type:d.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:r.find(v=>v.nodeId===(_.payload.id.includes("@")?_.payload.id.substring(0,_.payload.id.indexOf("@")):_.payload.id))}})),(0,f.W)(r=>(this.handleErrorWithoutAlert("SaveNewPeer",d.MZ.CONNECT_PEER,"Peer Connection Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.DETACH_PEER_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+d.rl.PEERS_API+"/"+_.payload.nodeId).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,T.y0)({payload:d.MZ.DISCONNECT_PEER})),this.store.dispatch((0,T.UI)({payload:"Disconnecting Peer!"})),{type:d.Uu.REMOVE_PEER_ECL,payload:{nodeId:_.payload.nodeId}})),(0,f.W)(r=>(this.handleErrorWithAlert("DisconnectPeer",d.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+d.rl.PEERS_API+"/"+_.payload.nodeId,r),(0,w.of)({type:d.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_NEW_CHANNEL_ECL),(0,S.Z)(_=>{this.store.dispatch((0,T.mt)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewChannel",status:d.wn.INITIATED}}));const r={nodeId:_.payload.nodeId,fundingSatoshis:_.payload.amount,announceChannel:!_.payload.private};return _.payload.feeRate&&_.payload.feeRate>0&&(r.fundingFeerateSatByte=_.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API,r).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewChannel",status:d.wn.COMPLETED}})),this.store.dispatch((0,F.Gy)()),this.store.dispatch((0,F.jJ)()),this.store.dispatch((0,T.y0)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,T.UI)({payload:"Channel Added Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewChannel",d.MZ.OPEN_CHANNEL,"Opening Channel Failed.",v),(0,w.of)({type:d.aU.VOID}))))}))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.UPDATE_CHANNEL_ECL),(0,S.Z)(_=>{this.store.dispatch((0,T.mt)({payload:d.MZ.UPDATE_CHAN_POLICY}));let r="?feeBaseMsat="+_.payload.baseFeeMsat+"&feeProportionalMillionths="+_.payload.feeRate;return r=_.payload.nodeIds?r+"&nodeIds="+_.payload.nodeIds:_.payload.nodeId?r+"&nodeId="+_.payload.nodeId:_.payload.channelIds?r+"&channelIds="+_.payload.channelIds:r+"&channelId="+_.payload.channelId,this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API+"/updateRelayFee"+r,{}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,T.y0)({payload:d.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,T.UI)(_.payload.nodeIds||_.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(v=>(this.handleErrorWithAlert("UpdateChannels",d.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+d.rl.CHANNELS_API,v),(0,w.of)({type:d.aU.VOID}))))}))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.CLOSE_CHANNEL_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+d.rl.CHANNELS_API+"?channelId="+_.payload.channelId+"&force="+_.payload.force).pipe((0,x.T)(r=>(this.logger.info(r),setTimeout(()=>{this.store.dispatch((0,T.y0)({payload:_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,T.UI)({payload:_.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:d.aU.VOID})),(0,f.W)(r=>(this.handleErrorWithAlert("CloseChannel",_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+d.rl.CHANNELS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.GET_QUERY_ROUTES_ECL),(0,S.Z)(_=>this.httpClient.get(this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount).pipe((0,x.T)(r=>(this.logger.info(r),{type:d.Uu.SET_QUERY_ROUTES_ECL,payload:r})),(0,f.W)(r=>(this.store.dispatch((0,F.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",d.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount,r),(0,w.of)({type:d.aU.VOID}))))))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_QUERY_ROUTES_ECL),(0,x.T)(_=>_.payload)),{dispatch:!1}),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SEND_PAYMENT_ECL),(0,S.Z)(_=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,T.mt)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,F.uL)({payload:{action:"SendPayment",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PAYMENTS_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.latestPaymentRes=r,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:d.aU.VOID})),(0,f.W)(r=>(this.logger.error("Error: "+JSON.stringify(r)),_.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed.",r):this.handleErrorWithAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_TRANSACTIONS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchTransactions",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/transactions?count="+_.payload.count+"&skip="+_.payload.skip))),(0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchTransactions",status:d.wn.COMPLETED}})),{type:d.Uu.SET_TRANSACTIONS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchTransactions",d.MZ.NO_SPINNER,"Fetching Transactions Failed.",_),(0,w.of)({type:d.aU.VOID}))))),this.SendOnchainFunds=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,F.uL)({payload:{action:"SendOnchainFunds",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.ON_CHAIN_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SendOnchainFunds",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,F.jJ)()),{type:d.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("SendOnchainFunds",d.MZ.SEND_FUNDS,"Sending Fund Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.createInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.CREATE_INVOICE_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.CREATE_INVOICE})),this.store.dispatch((0,F.uL)({payload:{action:"CreateInvoice",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.INVOICES_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"CreateInvoice",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.CREATE_INVOICE})),r.timestamp=Math.round((new Date).getTime()/1e3),r.expiresAt=Math.round(r.timestamp+_.payload.expireIn),r.description=_.payload.description,r.status="unpaid",setTimeout(()=>{this.store.dispatch((0,T.xO)({payload:{data:{invoice:r,newlyAdded:!0,component:y.Z}}}))},200),{type:d.Uu.ADD_INVOICE_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("CreateInvoice",d.MZ.CREATE_INVOICE,"Create Invoice Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_INVOICES_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchInvoices",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"FetchInvoices",status:d.wn.COMPLETED}})),{type:d.Uu.SET_INVOICES_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchInvoices",d.MZ.NO_SPINNER,"Fetching Invoices Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.PEER_LOOKUP_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEARCHING_NODE})),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEARCHING_NODE})),{type:d.Uu.SET_LOOKUP_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithAlert("Lookup",d.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+_.payload,r),(0,w.of)({type:d.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.INVOICE_LOOKUP_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"/"+_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.Dq)({payload:r})),{type:d.Uu.SET_LOOKUP_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("Lookup",d.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",r),this.store.dispatch((0,T.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:d.aU.VOID})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_LOOKUP_ECL),(0,x.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PAGE_SETTINGS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPageSettings",status:d.wn.INITIATED}})),this.httpClient.get(d.rl.PAGE_SETTINGS_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchPageSettings",status:d.wn.COMPLETED}})),this.invoicesPageSettings=_&&Object.keys(_).length>0?_.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId):d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId),this.paymentsPageSettings=_&&Object.keys(_).length>0?_.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId):d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPageSettings",d.MZ.NO_SPINNER,"Fetching Page Settings Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_PAGE_SETTINGS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.uL)({payload:{action:"SavePageSettings",status:d.wn.INITIATED}})),this.httpClient.post(d.rl.PAGE_SETTINGS_API,_.payload).pipe((0,x.T)(r=>{this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SavePageSettings",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,T.UI)({payload:"Page Layout Updated Successfully!"}));const v=(r.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId)||d.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId))?.recordsPerPage,V=(r.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId)||d.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId))?.recordsPerPage;return this.invoicesPageSettings&&v!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=v),this.paymentsPageSettings&&V!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=V),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:r||[]}}),(0,f.W)(r=>(this.handleErrorWithAlert("SavePageSettings",d.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",d.rl.PAGE_SETTINGS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.handleSendPaymentStatus=_=>{this.store.dispatch((0,F.uL)({payload:{action:"SendPayment",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,F.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,T.UI)({payload:_}))},this.store.select(R.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(_=>{_.FetchInfo.status!==d.wn.COMPLETED&&_.FetchInfo.status!==d.wn.ERROR||_.FetchFees.status!==d.wn.COMPLETED&&_.FetchFees.status!==d.wn.ERROR||_.FetchOnchainBalance.status!==d.wn.COMPLETED&&_.FetchOnchainBalance.status!==d.wn.ERROR||_.FetchChannels.status!==d.wn.COMPLETED&&_.FetchChannels.status!==d.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,T.y0)({payload:d.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(_=>{this.logger.info("Received new message from the service: "+JSON.stringify(_));let r="";if(_)switch(_.type){case d.ck.PAYMENT_SENT:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Sent: "+(_.paymentHash?"with payment hash "+_.paymentHash:JSON.stringify(_)),this.handleSendPaymentStatus(r));break;case d.ck.PAYMENT_FAILED:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Failed: "+(_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].t?_.failures[0].t:_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].e&&_.failures[0].e.failureMessage?_.failures[0].e.failureMessage:JSON.stringify(_)),this.handleSendPaymentStatus(r));break;case d.ck.PAYMENT_RECEIVED:this.store.dispatch((0,F.Dq)({payload:_}));break;case d.ck.PAYMENT_RELAYED:delete _.source,_.amountIn=Math.round((_.amountIn||0)/1e3),_.amountOut=Math.round((_.amountOut||0)/1e3),_.timestamp.unix&&(_.timestamp=1e3*_.timestamp.unix),this.store.dispatch((0,F.yn)({payload:_}));break;case d.ck.CHANNEL_STATE_CHANGED:"NORMAL"===_.currentState||"CLOSED"===_.currentState?(this.rawChannelsList=this.rawChannelsList?.map(v=>(v.channelId===_.channelId&&v.nodeId===_.remoteNodeId&&(v.state=_.currentState),v)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,F.gZ)({payload:_}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(_))}})}setChannelsAndStatusAndBalances(){let de=0,D=0,n=0,c={localBalance:0,remoteBalance:0},m=[];const h=[],C=[],k={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((L,_)=>{L&&("NORMAL"===L.state?(de=(L.toLocal||0)+(L.toRemote||0),D+=L.toLocal||0,n+=L.toRemote||0,L.balancedness=0===de?1:+(1-Math.abs(((L.toLocal||0)-(L.toRemote||0))/de)).toFixed(3),m.push(L),k.active.channels=k.active.channels+1,k.active.capacity=k.active.capacity+(L.toLocal||0)):L.state?.includes("WAIT")||L.state?.includes("CLOSING")||L.state?.includes("SYNCING")?(L.state=L.state?.replace(/_/g," "),h.push(L),k.pending.channels=k.pending.channels+1,k.pending.capacity=k.pending.capacity+(L.toLocal||0)):(L.state=L.state?.replace(/_/g," "),C.push(L),k.inactive.channels=k.inactive.channels+1,k.inactive.capacity=k.inactive.capacity+(L.toLocal||0)))}),c={localBalance:D,remoteBalance:n},m=this.commonService.sortDescByKey(m,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(m)),this.logger.info("Pending Channels: "+JSON.stringify(h)),this.logger.info("Inactive Channels: "+JSON.stringify(C)),this.logger.info("Lightning Balances: "+JSON.stringify(c)),this.logger.info("Channels Status: "+JSON.stringify(k)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:m,pending:h,inactive:C,balances:c,status:k})),this.store.dispatch((0,F.Tp)({payload:m})),this.store.dispatch((0,F.cU)({payload:h})),this.store.dispatch((0,F.I6)({payload:C})),this.store.dispatch((0,F.N8)({payload:c})),this.store.dispatch((0,F.ZE)({payload:k}))}initializeRemainingData(de,D){this.sessionService.setItem("eclUnlocked","true");const n={identity_pubkey:de.nodeId,alias:de.alias,testnet:"testnet"===de.network,chains:de.publicAddresses,uris:de.uris,version:de.version,numberOfPendingChannels:0};this.store.dispatch((0,T.mt)({payload:d.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,T.Fl)({payload:n}));let c=this.location.path();c.includes("/lnd/")?c=c?.replace("/lnd/","/ecl/"):c.includes("/cln/")&&(c=c?.replace("/cln/","/ecl/")),(c.includes("/login")||c.includes("/error")||""===c||"HOME"===D||c.includes("?access-key="))&&(c="/ecl/home"),this.router.navigate([c]),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.yp)()),this.store.dispatch((0,F.jJ)()),this.store.dispatch((0,F.Gy)())}handleErrorWithoutAlert(de,D,n,c){this.logger.error("ERROR IN: "+de+"\n"+JSON.stringify(c)),401===c.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,T.Jh)()),this.store.dispatch((0,T.ri)({payload:"Authentication Failed: "+JSON.stringify(c.error)}))):(this.store.dispatch((0,T.y0)({payload:D})),this.store.dispatch((0,F.uL)({payload:{action:de,status:d.wn.ERROR,statusCode:c.status.toString(),message:this.commonService.extractErrorMessage(c,n)}})))}handleErrorWithAlert(de,D,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,T.Jh)()),this.store.dispatch((0,T.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,T.y0)({payload:D}));const h=this.commonService.extractErrorMessage(m);this.store.dispatch((0,T.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status,message:h,URL:c},component:I.f}}})),this.store.dispatch((0,F.uL)({payload:{action:de,status:d.wn.ERROR,statusCode:m.status.toString(),message:h,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(de=>{de.next(null),de.complete()})}static#e=this.\u0275fac=function(D){return new(D||Me)(z.KVO(e.En),z.KVO(W.Qq),z.KVO($.il),z.KVO(j.Q),z.KVO(Q.h),z.KVO(J.gP),z.KVO(ee.Ix),z.KVO(ie.I),z.KVO(ge.aZ))};static#t=this.\u0275prov=z.jDH({token:Me,factory:Me.\u0275fac})}return Me})()},2730:(Qe,te,g)=>{"use strict";g.d(te,{DW:()=>j,KT:()=>I,Ou:()=>R,b_:()=>l,gN:()=>z,jZ:()=>w,oR:()=>d,os:()=>$,p3:()=>S,rN:()=>W,ru:()=>f});var e=g(9640);const t=(0,e.UX)("ecl"),w=(0,e.Mz)(t,Q=>({pageSettings:Q.pageSettings,apiCallStatus:Q.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,Q=>Q.information),l=(0,e.Mz)(t,Q=>({information:Q.information,apiCallStatus:Q.apisCallStatus.FetchInfo})),f=((0,e.Mz)(t,Q=>Q.apisCallStatus.FetchInfo),(0,e.Mz)(t,Q=>Q.apisCallStatus)),I=(0,e.Mz)(t,Q=>({payments:Q.payments,apiCallStatus:Q.apisCallStatus.FetchPayments})),d=(0,e.Mz)(t,Q=>({fees:Q.fees,apiCallStatus:Q.apisCallStatus.FetchFees})),R=((0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({pendingChannels:Q.pendingChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({inactiveChannels:Q.inactiveChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,pendingChannels:Q.pendingChannels,inactiveChannels:Q.inactiveChannels,lightningBalance:Q.lightningBalance,channelsStatus:Q.channelsStatus,apiCallStatus:Q.apisCallStatus.FetchChannels}))),z=(0,e.Mz)(t,Q=>({transactions:Q.transactions,apiCallStatus:Q.apisCallStatus.FetchTransactions})),W=(0,e.Mz)(t,Q=>({invoices:Q.invoices,apiCallStatus:Q.apisCallStatus.FetchInvoices})),$=(0,e.Mz)(t,Q=>({peers:Q.peers,apiCallStatus:Q.apisCallStatus.FetchPeers})),j=(0,e.Mz)(t,Q=>({onchainBalance:Q.onchainBalance,apiCallStatus:Q.apisCallStatus.FetchOnchainBalance}))},6439:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>se});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(2730),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(1997),J=g(9183),ee=g(8288),ie=g(9157),ge=g(9587);const ae=X=>({"display-none":X}),Me=X=>({"xs-scroll-y":X}),Te=(X,me)=>({"mt-2":X,"mt-1":me}),de=()=>[];function D(X,me){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ce=f.XpG();f.Y8G("value",null==ce.invoice?null:ce.invoice.serialized)("size",ce.qrWidth)("errorCorrectionLevel","L")}}function n(X,me){1&X&&(f.j41(0,"span",30),f.EFF(1,"N/A"),f.k0s())}function c(X,me){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ce=f.XpG();f.Y8G("value",null==ce.invoice?null:ce.invoice.serialized)("size",ce.qrWidth)("errorCorrectionLevel","L")}}function m(X,me){1&X&&(f.j41(0,"span",31),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function h(X,me){1&X&&f.nrm(0,"mat-divider",32),2&X&&f.Y8G("inset",!0)}function C(X,me){1&X&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function k(X,me){1&X&&f.nrm(0,"span",38)}function L(X,me){if(1&X&&(f.j41(0,"div",34)(1,"div",35)(2,"span",36),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,k,1,0,"span",37),f.k0s()()),2&X){const ce=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==ce.invoice?null:ce.invoice.amountSettled)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,de).constructor(35))}}function _(X,me){if(1&X&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&X){const ce=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==ce.invoice?null:ce.invoice.amountSettled)," Sats")}}function r(X,me){if(1&X&&(f.qex(0),f.DNE(1,L,6,5,"div",33)(2,_,3,3,"div",20),f.bVm()),2&X){const ce=f.XpG();f.R7$(),f.Y8G("ngIf",ce.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ce.flgInvoicePaid)}}function v(X,me){1&X&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function V(X,me){1&X&&f.nrm(0,"mat-spinner",40),2&X&&f.Y8G("diameter",20)}function N(X,me){if(1&X&&(f.qex(0),f.DNE(1,v,2,0,"span",20)(2,V,1,1,"mat-spinner",39),f.bVm()),2&X){const ce=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ce.invoice?null:ce.invoice.status)||!ce.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ce.invoice?null:ce.invoice.status)&&ce.flgVersionCompatible)}}function ne(X,me){if(1&X&&(f.j41(0,"div"),f.nrm(1,"mat-divider",21),f.j41(2,"div",16)(3,"div",41)(4,"h4",18),f.EFF(5,"Date Expiry"),f.k0s(),f.j41(6,"span",19),f.EFF(7),f.nI1(8,"date"),f.k0s()(),f.j41(9,"div",42)(10,"h4",18),f.EFF(11,"Date Settled"),f.k0s(),f.j41(12,"span",22),f.EFF(13),f.nI1(14,"date"),f.k0s()()(),f.nrm(15,"mat-divider",21),f.j41(16,"div",16)(17,"div",23)(18,"h4",18),f.EFF(19,"Payment Hash"),f.k0s(),f.j41(20,"span",22),f.EFF(21),f.k0s()()(),f.nrm(22,"mat-divider",21),f.j41(23,"div",16)(24,"div",23)(25,"h4",18),f.EFF(26,"Node ID"),f.k0s(),f.j41(27,"span",22),f.EFF(28),f.k0s()()(),f.nrm(29,"mat-divider",21),f.k0s()),2&X){const ce=f.XpG();f.R7$(7),f.JRh(f.i5U(8,4,1e3*(null==ce.invoice?null:ce.invoice.expiresAt),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(14,7,1e3*(null==ce.invoice?null:ce.invoice.receivedAt),"dd/MMM/y HH:mm")),f.R7$(8),f.JRh(null==ce.invoice?null:ce.invoice.paymentHash),f.R7$(7),f.JRh(null==ce.invoice?null:ce.invoice.nodeId)}}function Ee(X,me){1&X&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ze(X,me){1&X&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function qe(X,me){if(1&X){const ce=f.RV6();f.j41(0,"button",43),f.bIt("copied",function(ke){f.eBV(ce);const mt=f.XpG();return f.Njj(mt.onCopyPayment(ke))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&X){const ce=f.XpG();f.Y8G("payload",null==ce.invoice?null:ce.invoice.serialized)}}function Ke(X,me){if(1&X){const ce=f.RV6();f.j41(0,"button",44),f.bIt("click",function(){f.eBV(ce);const ke=f.XpG();return f.Njj(ke.onClose())}),f.EFF(1,"OK"),f.k0s()}}let se=(()=>{class X{constructor(ce,fe,ke,mt,_e,be){this.dialogRef=ce,this.data=fe,this.logger=ke,this.commonService=mt,this.snackBar=_e,this.store=be,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.p3).pipe((0,S.Q)(this.unSubs[0])).subscribe(ce=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ce.version,"0.5.0")}),this.store.select(x.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(ce=>{const fe=this.invoice.status,mt=(ce.invoices&&ce.invoices.length>0?ce.invoices:[])?.find(_e=>_e.paymentHash===this.invoice.paymentHash)||null;mt&&(this.invoice=mt),fe!==this.invoice.status&&"received"===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()})}static#e=this.\u0275fac=function(fe){return new(fe||X)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:X,selectors:[["rtl-ecl-invoice-information"]],decls:68,vars:42,consts:[["hideAdvancedText",""],["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 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"],["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,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(fe,ke){if(1&fe){const mt=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,D,1,3,"qr-code",3)(3,n,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.k0s()(),f.j41(10,"button",10),f.bIt("click",function(){return f.eBV(mt),f.Njj(ke.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),f.DNE(15,c,1,3,"qr-code",3)(16,m,2,0,"span",14),f.k0s(),f.DNE(17,h,1,1,"mat-divider",15),f.j41(18,"div",16)(19,"div",17)(20,"h4",18),f.EFF(21,"Amount Requested"),f.k0s(),f.j41(22,"span",19),f.EFF(23),f.nI1(24,"number"),f.DNE(25,C,2,0,"ng-container",20),f.k0s()(),f.j41(26,"div",17)(27,"h4",18),f.EFF(28,"Amount Settled"),f.k0s(),f.j41(29,"span",19),f.DNE(30,r,3,2,"ng-container",20)(31,N,3,2,"ng-container",20),f.k0s()()(),f.nrm(32,"mat-divider",21),f.j41(33,"div",16)(34,"div",17)(35,"h4",18),f.EFF(36,"Date Created"),f.k0s(),f.j41(37,"span",22),f.EFF(38),f.nI1(39,"date"),f.k0s()(),f.j41(40,"div",17)(41,"h4",18),f.EFF(42,"Status"),f.k0s(),f.j41(43,"span",22),f.EFF(44),f.nI1(45,"titlecase"),f.k0s()()(),f.nrm(46,"mat-divider",21),f.j41(47,"div",16)(48,"div",23)(49,"h4",18),f.EFF(50,"Description"),f.k0s(),f.j41(51,"span",19),f.EFF(52),f.k0s()()(),f.nrm(53,"mat-divider",21),f.j41(54,"div",16)(55,"div",23)(56,"h4",18),f.EFF(57,"Invoice"),f.k0s(),f.j41(58,"span",22),f.EFF(59),f.k0s()()(),f.DNE(60,ne,30,10,"div",20),f.j41(61,"div",24)(62,"button",25),f.bIt("click",function(){return f.eBV(mt),f.Njj(ke.onShowAdvanced())}),f.DNE(63,Ee,2,0,"p",26)(64,ze,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(66,qe,2,1,"button",27)(67,Ke,2,0,"button",28),f.k0s()()()()()}if(2&fe){const mt=f.sdS(65);f.R7$(),f.Y8G("fxLayoutAlign",null!=ke.invoice&&ke.invoice.serialized&&""!==(null==ke.invoice?null:ke.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(33,ae,ke.screenSize===ke.screenSizeEnum.XS||ke.screenSize===ke.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(4),f.Y8G("icon",ke.faReceipt),f.R7$(2),f.JRh(ke.screenSize===ke.screenSizeEnum.XS?ke.newlyAdded?"Created":"Invoice":ke.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(35,Me,ke.screenSize===ke.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=ke.invoice&&ke.invoice.serialized&&""!==(null==ke.invoice?null:ke.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(37,ae,ke.screenSize!==ke.screenSizeEnum.XS&&ke.screenSize!==ke.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",ke.screenSize===ke.screenSizeEnum.XS||ke.screenSize===ke.screenSizeEnum.SM),f.R7$(6),f.SpI("",f.bMT(24,26,(null==ke.invoice?null:ke.invoice.amount)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.amount)||"0"===(null==ke.invoice?null:ke.invoice.amount)),f.R7$(5),f.Y8G("ngIf",null==ke.invoice?null:ke.invoice.amountSettled),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.amountSettled)),f.R7$(7),f.JRh(f.i5U(39,28,1e3*(null==ke.invoice?null:ke.invoice.timestamp),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.bMT(45,31,null==ke.invoice?null:ke.invoice.status)),f.R7$(8),f.JRh((null==ke.invoice?null:ke.invoice.description)||"-"),f.R7$(7),f.JRh((null==ke.invoice?null:ke.invoice.serialized)||"N/A"),f.R7$(),f.Y8G("ngIf",ke.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(39,Te,!ke.showAdvanced,ke.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!ke.showAdvanced)("ngIfElse",mt),f.R7$(3),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized))}},dependencies:[F.YU,F.Sq,F.bT,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,j.m2,j.MM,Q.q,J.LG,ee.Um,ie.U,ge.N,F.QX,F.PV,F.vh]})}return X})()},190:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>se,$J:()=>ne,$Q:()=>de,As:()=>fe,Br:()=>d,CK:()=>_e,DI:()=>ae,DY:()=>ge,Do:()=>Ke,Dq:()=>X,Fd:()=>pe,GZ:()=>Xe,Gy:()=>y,H2:()=>r,Hm:()=>zt,J9:()=>Te,Jx:()=>J,L:()=>v,Lf:()=>ze,NS:()=>f,O8:()=>mt,Qj:()=>F,SM:()=>ke,Sn:()=>I,T4:()=>$t,Uj:()=>be,Uo:()=>ie,VK:()=>j,WE:()=>Ye,X9:()=>x,XT:()=>pt,Yi:()=>Nt,Zi:()=>$,_$:()=>me,aB:()=>ye,ar:()=>n,b1:()=>St,cR:()=>_,cU:()=>c,dv:()=>D,e8:()=>w,ed:()=>W,fy:()=>C,ij:()=>Yt,jk:()=>Et,kv:()=>tt,lg:()=>l,mh:()=>ce,oX:()=>Ie,p1:()=>S,pL:()=>m,sq:()=>R,t0:()=>_t,t5:()=>Ee,tG:()=>Jt,tf:()=>Me,uK:()=>oe,vL:()=>k,w0:()=>L,x1:()=>T,yp:()=>ee,z2:()=>h,zU:()=>rt});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.QP.UPDATE_API_CALL_STATUS_LND,(0,e.xk)()),S=(0,e.VP)(t.QP.RESET_LND_STORE),l=(0,e.VP)(t.QP.FETCH_PAGE_SETTINGS_LND),x=(0,e.VP)(t.QP.UPDATE_SELECTED_NODE_OPTIONS),f=(0,e.VP)(t.QP.SET_PAGE_SETTINGS_LND,(0,e.xk)()),I=(0,e.VP)(t.QP.SAVE_PAGE_SETTINGS_LND,(0,e.xk)()),d=(0,e.VP)(t.QP.FETCH_INFO_LND,(0,e.xk)()),T=(0,e.VP)(t.QP.SET_INFO_LND,(0,e.xk)()),y=(0,e.VP)(t.QP.FETCH_PEERS_LND),F=(0,e.VP)(t.QP.SET_PEERS_LND,(0,e.xk)()),R=(0,e.VP)(t.QP.SAVE_NEW_PEER_LND,(0,e.xk)()),W=((0,e.VP)(t.QP.NEWLY_ADDED_PEER_LND,(0,e.xk)()),(0,e.VP)(t.QP.DETACH_PEER_LND,(0,e.xk)())),$=(0,e.VP)(t.QP.REMOVE_PEER_LND,(0,e.xk)()),j=(0,e.VP)(t.QP.SAVE_NEW_INVOICE_LND,(0,e.xk)()),J=((0,e.VP)(t.QP.NEWLY_SAVED_INVOICE_LND,(0,e.xk)()),(0,e.VP)(t.QP.ADD_INVOICE_LND,(0,e.xk)())),ee=(0,e.VP)(t.QP.FETCH_FEES_LND),ie=(0,e.VP)(t.QP.SET_FEES_LND,(0,e.xk)()),ge=(0,e.VP)(t.QP.FETCH_BLOCKCHAIN_BALANCE_LND),ae=(0,e.VP)(t.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,e.xk)()),Me=(0,e.VP)(t.QP.FETCH_NETWORK_LND),Te=(0,e.VP)(t.QP.SET_NETWORK_LND,(0,e.xk)()),de=(0,e.VP)(t.QP.FETCH_CHANNELS_LND),D=(0,e.VP)(t.QP.SET_CHANNELS_LND,(0,e.xk)()),n=(0,e.VP)(t.QP.FETCH_PENDING_CHANNELS_LND),c=(0,e.VP)(t.QP.SET_PENDING_CHANNELS_LND,(0,e.xk)()),m=(0,e.VP)(t.QP.FETCH_CLOSED_CHANNELS_LND),h=(0,e.VP)(t.QP.SET_CLOSED_CHANNELS_LND,(0,e.xk)()),C=(0,e.VP)(t.QP.UPDATE_CHANNEL_LND,(0,e.xk)()),k=(0,e.VP)(t.QP.SAVE_NEW_CHANNEL_LND,(0,e.xk)()),L=(0,e.VP)(t.QP.CLOSE_CHANNEL_LND,(0,e.xk)()),_=(0,e.VP)(t.QP.REMOVE_CHANNEL_LND,(0,e.xk)()),r=(0,e.VP)(t.QP.BACKUP_CHANNELS_LND,(0,e.xk)()),v=(0,e.VP)(t.QP.VERIFY_CHANNEL_LND,(0,e.xk)()),ne=((0,e.VP)(t.QP.BACKUP_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.VERIFY_CHANNEL_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.RESTORE_CHANNELS_LIST_LND)),Ee=(0,e.VP)(t.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,e.xk)()),ze=(0,e.VP)(t.QP.RESTORE_CHANNELS_LND,(0,e.xk)()),Ke=((0,e.VP)(t.QP.RESTORE_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_INVOICES_LND,(0,e.xk)())),se=(0,e.VP)(t.QP.SET_INVOICES_LND,(0,e.xk)()),X=(0,e.VP)(t.QP.UPDATE_INVOICE_LND,(0,e.xk)()),me=(0,e.VP)(t.QP.UPDATE_PAYMENT_LND,(0,e.xk)()),ce=(0,e.VP)(t.QP.FETCH_TRANSACTIONS_LND),fe=(0,e.VP)(t.QP.SET_TRANSACTIONS_LND,(0,e.xk)()),ke=(0,e.VP)(t.QP.FETCH_UTXOS_LND),mt=(0,e.VP)(t.QP.SET_UTXOS_LND,(0,e.xk)()),_e=(0,e.VP)(t.QP.FETCH_PAYMENTS_LND,(0,e.xk)()),be=(0,e.VP)(t.QP.SET_PAYMENTS_LND,(0,e.xk)()),pe=(0,e.VP)(t.QP.SEND_PAYMENT_LND,(0,e.xk)()),_t=((0,e.VP)(t.QP.SEND_PAYMENT_STATUS_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_GRAPH_NODE_LND,(0,e.xk)())),pt=((0,e.VP)(t.QP.SET_GRAPH_NODE_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_NEW_ADDRESS_LND,(0,e.xk)())),ye=((0,e.VP)(t.QP.SET_NEW_ADDRESS_LND,(0,e.xk)()),(0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_LND,(0,e.xk)())),Ie=((0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.GEN_SEED_LND,(0,e.xk)())),Xe=((0,e.VP)(t.QP.GEN_SEED_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.INIT_WALLET_LND,(0,e.xk)())),Ye=((0,e.VP)(t.QP.INIT_WALLET_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.UNLOCK_WALLET_LND,(0,e.xk)())),rt=(0,e.VP)(t.QP.PEER_LOOKUP_LND,(0,e.xk)()),Yt=(0,e.VP)(t.QP.CHANNEL_LOOKUP_LND,(0,e.xk)()),Nt=(0,e.VP)(t.QP.INVOICE_LOOKUP_LND,(0,e.xk)()),Et=(0,e.VP)(t.QP.PAYMENT_LOOKUP_LND,(0,e.xk)()),oe=((0,e.VP)(t.QP.SET_LOOKUP_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_FORWARDING_HISTORY_LND,(0,e.xk)())),tt=(0,e.VP)(t.QP.SET_FORWARDING_HISTORY_LND,(0,e.xk)()),$t=(0,e.VP)(t.QP.GET_QUERY_ROUTES_LND,(0,e.xk)()),zt=(0,e.VP)(t.QP.SET_QUERY_ROUTES_LND,(0,e.xk)()),Jt=(0,e.VP)(t.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),St=(0,e.VP)(t.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,e.xk)())},9579:(Qe,te,g)=>{"use strict";g.d(te,{L:()=>Te});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(3993),d=g(6391),T=g(2462),y=g(4416),F=g(1771),R=g(190),z=g(3536),W=g(4438),$=g(1626),j=g(9640),Q=g(8570),J=g(2571),ee=g(3202),ie=g(5351),ge=g(1188),ae=g(7879),Me=g(177);let Te=(()=>{class de{constructor(n,c,m,h,C,k,L,_,r,v){this.actions=n,this.httpClient=c,this.store=m,this.logger=h,this.commonService=C,this.sessionService=k,this.dialog=L,this.router=_,this.wsService=r,this.location=v,this.CHILD_API_URL=y.H$+"/lnd",this.invoicesPageSettings=y.ZC.find(V=>"transactions"===V.pageId)?.tables.find(V=>"invoices"===V.tableId),this.paymentsPageSettings=y.ZC.find(V=>"transactions"===V.pageId)?.tables.find(V=>"payments"===V.tableId),this.flgInitialized=!1,this.unSubs=[new t.B,new t.B],this.infoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INFO_LND),(0,S.Z)(V=>(this.flgInitialized=!1,this.store.dispatch((0,F.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.mt)({payload:y.MZ.GET_NODE_INFO})),this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(y.aU.SET_SELECTED_NODE))),(0,x.T)(N=>(this.logger.info(N),N.chains&&N.chains.length&&N.chains[0]&&("string"==typeof N.chains[0]&&N.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof N.chains[0]&&N.chains[0].hasOwnProperty("chain")&&N.chains[0].chain&&N.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.xO)({payload:{data:{type:y.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:y.aU.LOGOUT}):N.identity_pubkey?(N.lnImplementation="LND",this.initializeRemainingData(N,V.payload.loadPage),this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),{type:y.QP.SET_INFO_LND,payload:N||{}}):(this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:y.QP.SET_INFO_LND,payload:{}}))),(0,f.W)(N=>{if("string"==typeof N.error.error&&N.error.error.includes("Not Found")||"string"==typeof N.error.error&&N.error.error.includes("wallet locked")||502===N.status&&!N.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",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",N);else if("string"==typeof N.error.error&&N.error.error.includes("starting up")&&500===N.status)setTimeout(()=>{this.store.dispatch((0,R.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const ne=this.commonService.extractErrorCode(N),Ee=503===ne?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(N);this.router.navigate(["/error"],{state:{errorCode:ne,errorMessage:Ee}}),this.handleErrorWithoutAlert("FetchInfo",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ne,error:Ee})}return(0,w.of)({type:y.aU.VOID})})))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PEERS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPeers",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PEERS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPeers",status:y.wn.COMPLETED}})),{type:y.QP.SET_PEERS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPeers",y.MZ.NO_SPINNER,"Fetching Peers Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_PEER_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewPeer",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.PEERS_API,{pubkey:V.payload.pubkey,host:V.payload.host,perm:V.payload.perm}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewPeer",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,R.Qj)({payload:N||[]})),{type:y.QP.NEWLY_ADDED_PEER_LND,payload:{peer:N[0]}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewPeer",y.MZ.CONNECT_PEER,"Peer Connection Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.DETACH_PEER_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+y.rl.PEERS_API+"/"+V.payload.pubkey).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.DISCONNECT_PEER})),this.store.dispatch((0,F.UI)({payload:"Peer Disconnected Successfully."})),{type:y.QP.REMOVE_PEER_LND,payload:{pubkey:V.payload.pubkey}})),(0,f.W)(N=>(this.handleErrorWithAlert("DetachPeer",y.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+y.rl.PEERS_API+"/"+V.payload.pubkey,N),(0,w.of)({type:y.aU.VOID})))))))),this.saveNewInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_INVOICE_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewInvoice",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.INVOICES_API,{memo:V.payload.memo,value:V.payload.value,private:V.payload.private,expiry:V.payload.expiry,is_amp:V.payload.is_amp}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewInvoice",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:V.payload.pageSize,reversed:!0}})),V.payload.openModal?(N.memo=V.payload.memo,N.value=V.payload.value,N.expiry=V.payload.expiry,N.private=V.payload.private,N.is_amp=V.payload.is_amp,N.cltv_expiry="144",N.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,F.xO)({payload:{data:{invoice:N,newlyAdded:!0,component:d.H}}}))},200),{type:y.aU.CLOSE_SPINNER,payload:V.payload.uiMessage}):{type:y.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:N.payment_request}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewInvoice",V.payload.uiMessage,"Add Invoice Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API,{node_pubkey:V.payload.selectedPeerPubkey,local_funding_amount:V.payload.fundingAmount,private:V.payload.private,trans_type:V.payload.transType,trans_type_value:V.payload.transTypeValue,spend_unconfirmed:V.payload.spendUnconfirmed,commitment_type:V.payload.commitmentType}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:y.QP.FETCH_PENDING_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewChannel",y.MZ.OPEN_CHANNEL,"Opening Channel Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:V.payload.baseFeeMsat,feeRate:V.payload.feeRate,timeLockDelta:V.payload.timeLockDelta,max_htlc_msat:V.payload.maxHtlcMsat,min_htlc_msat:V.payload.minHtlcMsat,chanPoint:V.payload.chanPoint}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,F.UI)("all"===V.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:y.QP.FETCH_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithAlert("UpdateChannels",y.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",N),(0,w.of)({type:y.aU.VOID})))))))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CLOSE_CHANNEL_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL}));let N=this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+V.payload.channelPoint+"?force="+V.payload.forcibly;return V.payload.targetConf&&(N=N+"&target_conf="+V.payload.targetConf),V.payload.satPerByte&&(N=N+"&sat_per_byte="+V.payload.satPerByte),this.httpClient.delete(N).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.ar)()),this.store.dispatch((0,R.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:ne.message}})),{type:y.aU.VOID})),(0,f.W)(ne=>(this.handleErrorWithAlert("CloseChannel",V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+V.payload.channelPoint+"?force="+V.payload.forcibly,ne),(0,w.of)({type:y.aU.VOID}))))}))),this.backupChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.BACKUP_CHANNELS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"BackupChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+V.payload.channelPoint).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"BackupChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,F.UI)({payload:V.payload.showMessage+" "+N.message})),{type:y.QP.BACKUP_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("BackupChannels",V.payload.uiMessage,V.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.verifyChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.VERIFY_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"VerifyChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+V.payload.channelPoint,{}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"VerifyChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,F.UI)({payload:N.message})),{type:y.QP.VERIFY_CHANNEL_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("VerifyChannel",y.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.restoreChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannels",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+V.payload.channelPoint,{}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,F.UI)({payload:N.message})),this.store.dispatch((0,R.t5)({payload:N.list})),{type:y.QP.RESTORE_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("RestoreChannels",y.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_FEES_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchFees",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.FEES_API))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchFees",status:y.wn.COMPLETED}})),V.forwarding_events_history&&(this.store.dispatch((0,R.kv)({payload:V.forwarding_events_history})),delete V.forwarding_events_history),{type:y.QP.SET_FEES_LND,payload:V||{}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchFees",y.MZ.NO_SPINNER,"Fetching Fees Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.balanceBlockchainFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchBalance",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.BALANCE_API))),(0,x.T)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchBalance",status:y.wn.COMPLETED}})),this.logger.info(V),{type:y.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:V||{total_balance:""}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchBalance",y.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.networkInfoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_NETWORK_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchNetwork",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/info"))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchNetwork",status:y.wn.COMPLETED}})),{type:y.QP.SET_NETWORK_LND,payload:V||{}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchNetwork",y.MZ.NO_SPINNER,"Fetching Network Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CHANNELS_LND,payload:V.channels||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchChannels",y.MZ.NO_SPINNER,"Fetching Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.channelsPendingFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PENDING_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPendingChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/pending").pipe((0,x.T)(V=>{this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPendingChannels",status:y.wn.COMPLETED}}));const N={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 V&&(N.total_limbo_balance=V.total_limbo_balance,V.pending_closing_channels&&(N.closing.num_channels=V.pending_closing_channels.length,N.total_channels=N.total_channels+V.pending_closing_channels.length,V.pending_closing_channels.forEach(ne=>{N.closing.limbo_balance=+N.closing.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.pending_force_closing_channels&&(N.force_closing.num_channels=V.pending_force_closing_channels.length,N.total_channels=N.total_channels+V.pending_force_closing_channels.length,V.pending_force_closing_channels.forEach(ne=>{N.force_closing.limbo_balance=+N.force_closing.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.pending_open_channels&&(N.open.num_channels=V.pending_open_channels.length,N.total_channels=N.total_channels+V.pending_open_channels.length,V.pending_open_channels.forEach(ne=>{N.open.limbo_balance=+N.open.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.waiting_close_channels&&(N.waiting_close.num_channels=V.waiting_close_channels.length,N.total_channels=N.total_channels+V.waiting_close_channels.length,V.waiting_close_channels.forEach(ne=>{N.waiting_close.limbo_balance=+N.waiting_close.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)}))),{type:y.QP.SET_PENDING_CHANNELS_LND,payload:V?{pendingChannels:V,pendingChannelsSummary:N}:{pendingChannels:{},pendingChannelsSummary:N}}}),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPendingChannels",y.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.channelsClosedFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CLOSED_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchClosedChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/closed").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchClosedChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CLOSED_CHANNELS_LND,payload:V.channels||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchClosedChannels",y.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INVOICES_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchInvoices",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.INVOICES_API+"?num_max_invoices="+(V.payload.num_max_invoices?V.payload.num_max_invoices:100)+"&index_offset="+(V.payload.index_offset?V.payload.index_offset:0)+"&reversed="+(!!V.payload.reversed&&V.payload.reversed)).pipe((0,x.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,R.e8)({payload:{action:"FetchInvoices",status:y.wn.COMPLETED}})),V.payload.reversed&&!V.payload.index_offset&&(ze.total_invoices=+(ze.last_index_offset||0)),{type:y.QP.SET_INVOICES_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchInvoices",y.MZ.NO_SPINNER,"Fetching Invoices Failed.",ze),(0,w.of)({type:y.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_TRANSACTIONS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.TRANSACTIONS_API))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_TRANSACTIONS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchTransactions",y.MZ.NO_SPINNER,"Fetching Transactions Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.utxosFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_UTXOS_LND),(0,I.E)(this.store.select(z.pI)),(0,S.Z)(([V,N])=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchUTXOs",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/getUTXOs?max_confs="+(N&&N.block_height?N.block_height:1e9)))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchUTXOs",status:y.wn.COMPLETED}})),{type:y.QP.SET_UTXOS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchUTXOs",y.MZ.NO_SPINNER,"Fetching UTXOs Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.paymentsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAYMENTS_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPayments",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"?max_payments="+(V.payload.max_payments?V.payload.max_payments:100)+"&index_offset="+(V.payload.index_offset?V.payload.index_offset:0)+"&reversed="+(!!V.payload.reversed&&V.payload.reversed)).pipe((0,x.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,R.e8)({payload:{action:"FetchPayments",status:y.wn.COMPLETED}})),this.commonService.sortByKey(ze.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:y.QP.SET_PAYMENTS_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchPayments",y.MZ.NO_SPINNER,"Fetching Payments Failed.",ze),(0,w.of)({type:y.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SEND_PAYMENT_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.INITIATED}}));const N={};return N.paymentReq=V.payload.paymentReq,V.payload.paymentAmount&&(N.paymentAmount=V.payload.paymentAmount),V.payload.outgoingChannel&&(N.outgoingChannel=V.payload.outgoingChannel.chan_id),V.payload.allowSelfPayment&&(N.allowSelfPayment=V.payload.allowSelfPayment),V.payload.lastHopPubkey&&(N.lastHopPubkey=V.payload.lastHopPubkey),V.payload.feeLimitType&&V.payload.feeLimitType!==y.nv[0].id&&(N.feeLimit={},N.feeLimit[V.payload.feeLimitType]=V.payload.feeLimit),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",N).pipe((0,x.T)(ne=>{if(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),ne.payment_error)return V.payload.allowSelfPayment?(this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:ne}):(V.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne.payment_error):this.handleErrorWithAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",ne.payment_error),{type:y.aU.VOID});if(this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),V.payload.allowSelfPayment)this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let Ee="Payment Sent Successfully.";ne.payment_route&&ne.payment_route.total_fees_msat&&(Ee="Payment sent successfully with the total fee "+ne.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,F.UI)({payload:Ee}))}return{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:ne}}),(0,f.W)(ne=>(this.logger.error("Error: "+JSON.stringify(ne)),V.payload.allowSelfPayment?(this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,w.of)({type:y.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(ne)}})):(V.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne):this.handleErrorWithAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",ne),(0,w.of)({type:y.aU.VOID})))))}))),this.graphNodeFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_GRAPH_NODE_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,R.e8)({payload:{action:"FetchGraphNode",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload.pubkey).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,R.e8)({payload:{action:"FetchGraphNode",status:y.wn.COMPLETED}})),{type:y.QP.SET_GRAPH_NODE_LND,payload:N&&N.node?{node:N.node}:{node:null}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("FetchGraphNode",y.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.setGraphNode=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_GRAPH_NODE_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_NEW_ADDRESS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+V.payload.addressId).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GENERATE_NEW_ADDRESS})),{type:y.QP.SET_NEW_ADDRESS_LND,payload:N&&N.address?N.address:{}})),(0,f.W)(N=>(this.handleErrorWithAlert("GetNewAddress",y.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+V.payload.addressId,N),(0,w.of)({type:y.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_NEW_ADDRESS_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_CHANNEL_TRANSACTION_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,R.e8)({payload:{action:"SetChannelTransaction",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.TRANSACTIONS_API,{amount:V.payload.amount,address:V.payload.address,sendAll:V.payload.sendAll,fees:V.payload.fees,blocks:V.payload.blocks}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SetChannelTransaction",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,R.mh)()),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),{type:y.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SetChannelTransaction",y.MZ.SEND_FUNDS,"Sending Fund Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.fetchForwardingHistory=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_FORWARDING_HISTORY_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.SWITCH_API,{num_max_events:V.payload.num_max_events,index_offset:V.payload.index_offset,end_time:V.payload.end_time,start_time:V.payload.start_time}).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,R.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.COMPLETED}})),{type:y.QP.SET_FORWARDING_HISTORY_LND,payload:ne})),(0,f.W)(ne=>(this.handleErrorWithAlert("FetchForwardingHistory",y.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+y.rl.SWITCH_API,ne),(0,w.of)({type:y.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_QUERY_ROUTES_LND),(0,S.Z)(V=>{let N=this.CHILD_API_URL+y.rl.NETWORK_API+"/routes/"+V.payload.destPubkey+"/"+V.payload.amount;return V.payload.outgoingChanId&&(N=N+"?outgoing_chan_id="+V.payload.outgoingChanId),this.httpClient.get(N).pipe((0,x.T)(ne=>(this.logger.info(ne),{type:y.QP.SET_QUERY_ROUTES_LND,payload:ne})),(0,f.W)(ne=>(this.store.dispatch((0,R.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",y.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+y.rl.NETWORK_API,ne),(0,w.of)({type:y.aU.VOID}))))}))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_QUERY_ROUTES_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.genSeed=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+V.payload).pipe((0,x.T)(N=>(this.logger.info("Generated GenSeed!"),this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GEN_SEED})),{type:y.QP.GEN_SEED_RESPONSE_LND,payload:N.cipher_seed_mnemonic})),(0,f.W)(N=>(this.handleErrorWithAlert("GenSeed",y.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+V.payload,N),(0,w.of)({type:y.aU.VOID})))))))),this.updateSelNodeOptions=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,S.Z)(()=>this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,x.T)(V=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(V),{type:y.aU.VOID})),(0,f.W)(V=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",y.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",V),(0,w.of)({type:y.aU.VOID}))))))),this.genSeedResponse=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_RESPONSE_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.initWalletRes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_RESPONSE_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.initWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/initwallet",{wallet_password:V.payload.pwd,cipher_seed_mnemonic:V.payload.cipher?V.payload.cipher:"",aezeed_passphrase:V.payload.passphrase?V.payload.passphrase:""}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.INITIALIZE_WALLET})),{type:y.QP.INIT_WALLET_RESPONSE_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("InitWallet",y.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/initwallet",N),(0,w.of)({type:y.aU.VOID})))))))),this.unlockWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UNLOCK_WALLET_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:V.payload.pwd}).pipe((0,x.T)(N=>(this.logger.info(N),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,F.y0)({payload:y.MZ.UNLOCK_WALLET})),this.store.dispatch((0,F.mt)({payload:y.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,F.y0)({payload:y.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,R.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:y.aU.VOID})),(0,f.W)(N=>(this.handleErrorWithAlert("UnlockWallet",y.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/unlockwallet",N),(0,w.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PEER_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",y.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload,N),(0,w.of)({type:y.aU.VOID})))))))),this.channelLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CHANNEL_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+V.payload.channelID).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",V.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+V.payload.channelID,N),(0,w.of)({type:y.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INVOICE_LOOKUP_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}}));let N=this.CHILD_API_URL+y.rl.INVOICES_API+"/lookup";return N=V.payload.paymentAddress&&""!==V.payload.paymentAddress?N+"?payment_addr="+V.payload.paymentAddress:N+"?payment_hash="+V.payload.paymentHash,this.httpClient.get(N).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.Dq)({payload:ne})),{type:y.QP.SET_LOOKUP_LND,payload:ne})),(0,f.W)(ne=>(this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ne),V.payload.openSnackBar&&this.store.dispatch((0,F.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:ne}}))))}))),this.paymentLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PAYMENT_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/lookup/"+V.payload).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,R._$)({payload:N})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",N),(0,w.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:N}})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_LOOKUP_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LIST_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannelsList",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannelsList",status:y.wn.COMPLETED}})),{type:y.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:V||{all_restore_exists:!1,files:[]}})),(0,f.W)(V=>(this.handleErrorWithAlert("RestoreChannelsList",y.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API,V),(0,w.of)({type:y.aU.VOID})))))))),this.setRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/alltransactions").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:V})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchLightningTransactions",y.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.pageSettingsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAGE_SETTINGS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPageSettings",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.PAGE_SETTINGS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPageSettings",status:y.wn.COMPLETED}})),this.invoicesPageSettings=V&&Object.keys(V).length>0?V.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId),this.paymentsPageSettings=V&&Object.keys(V).length>0?V.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPageSettings",y.MZ.NO_SPINNER,"Fetching Page Settings Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.savePageSettings=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_PAGE_SETTINGS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,R.e8)({payload:{action:"SavePageSettings",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.PAGE_SETTINGS_API,V.payload).pipe((0,x.T)(N=>{this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SavePageSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.UI)({payload:"Page Layout Updated Successfully!"}));const ne=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)).recordsPerPage,Ee=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)).recordsPerPage;return this.invoicesPageSettings&&ne!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ne,this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&Ee!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=Ee),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:N||[]}}),(0,f.W)(N=>(this.handleErrorWithAlert("SavePageSettings",y.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",y.rl.PAGE_SETTINGS_API,N),(0,w.of)({type:y.aU.VOID})))))))),this.store.select(z.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(V=>{V.FetchInfo.status!==y.wn.COMPLETED&&V.FetchInfo.status!==y.wn.ERROR||V.FetchFees.status!==y.wn.COMPLETED&&V.FetchFees.status!==y.wn.ERROR||V.FetchBalanceBlockchain.status!==y.wn.COMPLETED&&V.FetchBalanceBlockchain.status!==y.wn.ERROR||V.FetchAllChannels.status!==y.wn.COMPLETED&&V.FetchAllChannels.status!==y.wn.ERROR||V.FetchPendingChannels.status!==y.wn.COMPLETED&&V.FetchPendingChannels.status!==y.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,F.y0)({payload:y.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(V=>{this.logger.info("Received new message from the service: "+JSON.stringify(V)),V&&(V.type===y.o1.INVOICE?(this.logger.info(V),V&&V.result&&V.result.payment_request&&this.store.dispatch((0,R.Dq)({payload:V.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(V)))})}initializeRemainingData(n,c){this.sessionService.setItem("lndUnlocked","true");const m={identity_pubkey:n.identity_pubkey,alias:n.alias,testnet:n.testnet,chains:n.chains,uris:n.uris,version:n.version?n.version.split(" ")[0]:""};this.store.dispatch((0,F.mt)({payload:y.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,F.Fl)({payload:m}));let h=this.location.path();h.includes("/cln/")?h=h?.replace("/cln/","/lnd/"):h.includes("/ecl/")&&(h=h?.replace("/ecl/","/lnd/")),(h.includes("/unlock")||h.includes("/login")||h.includes("/error")||""===h||"HOME"===c||h.includes("?access-key="))&&(h="/lnd/home"),this.router.navigate([h]),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.ar)()),this.store.dispatch((0,R.pL)()),this.store.dispatch((0,R.Gy)()),this.store.dispatch((0,R.tf)()),this.store.dispatch((0,R.yp)()),this.store.dispatch((0,R.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(n,c,m,h){this.logger.error("ERROR IN: "+n+"\n"+JSON.stringify(h)),401===h.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)}))):(this.store.dispatch((0,F.y0)({payload:c})),this.store.dispatch((0,R.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:h.status.toString(),message:this.commonService.extractErrorMessage(h,m)}})))}handleErrorWithAlert(n,c,m,h,C){if(this.logger.error(C),401===C.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.ri)({payload:"Authentication Failed: "+JSON.stringify(C.error)}));else{this.store.dispatch((0,F.y0)({payload:c}));const k=this.commonService.extractErrorMessage(C);this.store.dispatch((0,F.xO)({payload:{data:{type:"ERROR",alertTitle:m,message:{code:C.status,message:k,URL:h},component:T.f}}})),this.store.dispatch((0,R.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:C.status.toString(),message:k,URL:h}}))}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#e=this.\u0275fac=function(c){return new(c||de)(W.KVO(e.En),W.KVO($.Qq),W.KVO(j.il),W.KVO(Q.gP),W.KVO(J.h),W.KVO(ee.Q),W.KVO(ie.bZ),W.KVO(ge.Ix),W.KVO(ae.I),W.KVO(Me.aZ))};static#t=this.\u0275prov=W.jDH({token:de,factory:de.\u0275fac})}return de})()},3536:(Qe,te,g)=>{"use strict";g.d(te,{$7:()=>j,$G:()=>w,BM:()=>R,Bw:()=>$,Ie:()=>f,KT:()=>I,Uv:()=>W,ah:()=>J,eO:()=>ge,gN:()=>y,gj:()=>ae,n_:()=>ie,oR:()=>d,os:()=>T,pI:()=>S,rN:()=>F,ru:()=>x,tA:()=>ee});var e=g(9640);const t=(0,e.UX)("lnd"),w=(0,e.Mz)(t,Me=>({pageSettings:Me.pageSettings,apiCallStatus:Me.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,Me=>Me.information),x=((0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo})),(0,e.Mz)(t,Me=>Me.apisCallStatus)),f=(0,e.Mz)(t,Me=>({forwardingHistory:Me.forwardingHistory,apiCallStatus:Me.apisCallStatus.FetchForwardingHistory})),I=(0,e.Mz)(t,Me=>({listPayments:Me.listPayments,apiCallStatus:Me.apisCallStatus.FetchPayments})),d=(0,e.Mz)(t,Me=>({fees:Me.fees,apiCallStatus:Me.apisCallStatus.FetchFees})),T=(0,e.Mz)(t,Me=>({peers:Me.peers,apiCallStatus:Me.apisCallStatus.FetchPeers})),y=(0,e.Mz)(t,Me=>({transactions:Me.transactions,apiCallStatus:Me.apisCallStatus.FetchTransactions})),F=(0,e.Mz)(t,Me=>({listInvoices:Me.listInvoices,apiCallStatus:Me.apisCallStatus.FetchInvoices})),R=(0,e.Mz)(t,Me=>({channels:Me.channels,channelsSummary:Me.channelsSummary,lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),W=((0,e.Mz)(t,Me=>({channelsSummary:Me.channelsSummary,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({pendingChannels:Me.pendingChannels,pendingChannelsSummary:Me.pendingChannelsSummary,apiCallStatus:Me.apisCallStatus.FetchPendingChannels}))),$=(0,e.Mz)(t,Me=>({closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchClosedChannels})),j=(0,e.Mz)(t,Me=>({blockchainBalance:Me.blockchainBalance,apiCallStatus:Me.apisCallStatus.FetchBalanceBlockchain})),J=((0,e.Mz)(t,Me=>({lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({utxos:Me.utxos,apiCallStatus:Me.apisCallStatus.FetchUTXOs}))),ee=(0,e.Mz)(t,Me=>({networkInfo:Me.networkInfo,apiCallStatus:Me.apisCallStatus.FetchNetwork})),ie=(0,e.Mz)(t,Me=>({allLightningTransactions:Me.allLightningTransactions,apiCallStatus:Me.apisCallStatus.FetchLightningTransactions})),ge=(0,e.Mz)(t,Me=>({channels:Me.channels,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels})),ae=(0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo}))},6391:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>Xt});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(3536),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(9454),J=g(9213),ee=g(1997),ie=g(9183),ge=g(4823),ae=g(8288),Me=g(9157),Te=g(9587);const de=["scrollContainer"],D=ye=>({"display-none":ye}),n=ye=>({"xs-scroll-y":ye}),c=ye=>({"h-50":ye}),m=()=>[],h=ye=>({"mr-0":ye});function C(ye,ue){if(1&ye&&f.nrm(0,"qr-code",33),2&ye){const Ie=f.XpG();f.Y8G("value",null==Ie.invoice?null:Ie.invoice.payment_request)("size",Ie.qrWidth)("errorCorrectionLevel","L")}}function k(ye,ue){1&ye&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function L(ye,ue){if(1&ye&&f.nrm(0,"qr-code",33),2&ye){const Ie=f.XpG();f.Y8G("value",null==Ie.invoice?null:Ie.invoice.payment_request)("size",Ie.qrWidth)("errorCorrectionLevel","L")}}function _(ye,ue){1&ye&&(f.j41(0,"span",35),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function r(ye,ue){1&ye&&f.nrm(0,"mat-divider",24),2&ye&&f.Y8G("inset",!0)}function v(ye,ue){1&ye&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function V(ye,ue){1&ye&&f.nrm(0,"span",41)}function N(ye,ue){if(1&ye&&(f.j41(0,"div",37)(1,"div",38)(2,"span",39),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,V,1,0,"span",40),f.k0s()()),2&ye){const Ie=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==Ie.invoice?null:Ie.invoice.amt_paid_sat)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,m).constructor(35))}}function ne(ye,ue){if(1&ye&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&ye){const Ie=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==Ie.invoice?null:Ie.invoice.amt_paid_sat)," Sats")}}function Ee(ye,ue){if(1&ye&&(f.qex(0),f.DNE(1,N,6,5,"div",36)(2,ne,3,3,"div",23),f.bVm()),2&ye){const Ie=f.XpG();f.R7$(),f.Y8G("ngIf",Ie.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Ie.flgInvoicePaid)}}function ze(ye,ue){1&ye&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function qe(ye,ue){1&ye&&f.nrm(0,"mat-spinner",43),2&ye&&f.Y8G("diameter",20)}function Ke(ye,ue){if(1&ye&&(f.qex(0),f.DNE(1,ze,2,0,"span",23)(2,qe,1,1,"mat-spinner",42),f.bVm()),2&ye){const Ie=f.XpG();f.R7$(),f.Y8G("ngIf","OPEN"!==(null==Ie.invoice?null:Ie.invoice.state)||!Ie.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","OPEN"===(null==Ie.invoice?null:Ie.invoice.state)&&Ie.flgVersionCompatible)}}function se(ye,ue){1&ye&&f.eu8(0)}function X(ye,ue){if(1&ye&&(f.j41(0,"div"),f.DNE(1,se,1,0,"ng-container",44),f.k0s()),2&ye){f.XpG();const Ie=f.sdS(79);f.R7$(),f.Y8G("ngTemplateOutlet",Ie)}}function me(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"div",45)(1,"button",46),f.bIt("click",function(){f.eBV(Ie);const Xe=f.XpG();return f.Njj(Xe.onScrollDown())}),f.j41(2,"mat-icon",47),f.EFF(3,"arrow_downward"),f.k0s()()()}}function ce(ye,ue){1&ye&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function fe(ye,ue){1&ye&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function ke(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"button",48),f.bIt("copied",function(Xe){f.eBV(Ie);const yt=f.XpG();return f.Njj(yt.onCopyPayment(Xe))}),f.EFF(1),f.k0s()}if(2&ye){const Ie=f.XpG();f.Y8G("payload",null==Ie.invoice?null:Ie.invoice.payment_request),f.R7$(),f.JRh(Ie.screenSize===Ie.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function mt(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"button",49),f.bIt("click",function(){f.eBV(Ie);const Xe=f.XpG();return f.Njj(Xe.onClose())}),f.EFF(1,"OK"),f.k0s()}}function _e(ye,ue){if(1&ye&&f.nrm(0,"span",64),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function be(ye,ue){if(1&ye&&f.nrm(0,"span",65),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function pe(ye,ue){if(1&ye&&f.nrm(0,"span",66),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function Ze(ye,ue){if(1&ye&&(f.j41(0,"div",53)(1,"div",58)(2,"span",59),f.DNE(3,_e,1,3,"span",60)(4,be,1,3,"span",61)(5,pe,1,3,"span",62),f.EFF(6),f.k0s(),f.j41(7,"span",63),f.EFF(8),f.nI1(9,"number"),f.k0s()(),f.nrm(10,"mat-divider",24),f.k0s()),2&ye){const Ie=ue.$implicit,He=f.XpG(3);f.R7$(3),f.Y8G("ngIf","SETTLED"===Ie.state),f.R7$(),f.Y8G("ngIf","ACCEPTED"===Ie.state),f.R7$(),f.Y8G("ngIf","CANCELED"===Ie.state),f.R7$(),f.SpI(" ",Ie.chan_id," "),f.R7$(2),f.JRh(f.i5U(9,6,+Ie.amt_msat/1e3||0,He.getDecimalFormat(Ie))),f.R7$(2),f.Y8G("inset",!0)}}function _t(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"div",19)(1,"mat-expansion-panel",51),f.bIt("opened",function(){f.eBV(Ie);const Xe=f.XpG(2);return f.Njj(Xe.flgOpened=!0)})("closed",function(){f.eBV(Ie);const Xe=f.XpG(2);return f.Njj(Xe.onExpansionClosed())}),f.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),f.EFF(5,"HTLCs"),f.k0s()()(),f.j41(6,"div",53)(7,"div",54)(8,"span",55),f.EFF(9,"Channel ID"),f.k0s(),f.j41(10,"span",56),f.EFF(11,"Amount (Sats)"),f.k0s()(),f.nrm(12,"mat-divider",24),f.DNE(13,Ze,11,9,"div",57),f.k0s()()()}if(2&ye){const Ie=f.XpG(2);f.R7$(12),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngForOf",null==Ie.invoice?null:Ie.invoice.htlcs)}}function at(ye,ue){1&ye&&f.nrm(0,"mat-divider",24),2&ye&&f.Y8G("inset",!0)}function pt(ye,ue){if(1&ye&&(f.nrm(0,"mat-divider",24),f.j41(1,"div",19)(2,"div",25)(3,"h4",21),f.EFF(4,"Preimage"),f.k0s(),f.j41(5,"span",26),f.EFF(6),f.k0s()()(),f.nrm(7,"mat-divider",24),f.j41(8,"div",19)(9,"div",20)(10,"h4",21),f.EFF(11,"State"),f.k0s(),f.j41(12,"span",26),f.EFF(13),f.k0s()(),f.j41(14,"div",20)(15,"h4",21),f.EFF(16,"Expiry"),f.k0s(),f.j41(17,"span",26),f.EFF(18),f.nI1(19,"date"),f.k0s()()(),f.nrm(20,"mat-divider",24),f.j41(21,"div",19)(22,"div",20)(23,"h4",21),f.EFF(24,"Private Routing Hints"),f.k0s(),f.j41(25,"span",26),f.EFF(26),f.k0s()(),f.j41(27,"div",20)(28,"h4",21),f.EFF(29,"AMP Invoice"),f.k0s(),f.j41(30,"span",26),f.EFF(31),f.k0s()()(),f.nrm(32,"mat-divider",24),f.DNE(33,_t,14,2,"div",50)(34,at,1,1,"mat-divider",17)),2&ye){const Ie=f.XpG();f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Ie.invoice?null:Ie.invoice.r_preimage)||"-"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Ie.invoice?null:Ie.invoice.state),f.R7$(5),f.JRh(f.i5U(19,11,1e3*(+(null==Ie.invoice?null:Ie.invoice.creation_date)+ +(null==Ie.invoice?null:Ie.invoice.expiry)),"dd/MMM/y HH:mm")),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null!=Ie.invoice&&Ie.invoice.private?"Yes":"No"),f.R7$(5),f.JRh(null!=Ie.invoice&&Ie.invoice.is_amp?"Yes":"No"),f.R7$(),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0)}}let Xt=(()=>{class ye{set container(Ie){Ie&&(this.scrollContainer=Ie)}constructor(Ie,He,Xe,yt,Ye,rt){this.dialogRef=Ie,this.data=He,this.logger=Xe,this.commonService=yt,this.snackBar=Ye,this.store=rt,this.faReceipt=t.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.pI).pipe((0,S.Q)(this.unSubs[0])).subscribe(He=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(He.version,"0.11.0")});const Ie=JSON.parse(JSON.stringify(this.invoice));this.store.select(x.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(He=>{const Xe=this.invoice?.state,Ye=(He.listInvoices.invoices||[]).find(rt=>rt.r_hash===Ie.r_hash)||null;Ye&&(this.invoice=Ye),Xe!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(He)})}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(Ie){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+Ie)}getDecimalFormat(Ie){return Ie.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(Ie=>{Ie.next(null),Ie.complete()})}static#e=this.\u0275fac=function(He){return new(He||ye)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:ye,selectors:[["rtl-invoice-information"]],viewQuery:function(He,Xe){if(1&He&&f.GBs(de,5),2&He){let yt;f.mGM(yt=f.lsd())&&(Xe.container=yt.first)}},decls:80,vars:49,consts:[["scrollContainer",""],["hideAdvancedText",""],["advancedBlock",""],["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 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"],["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"],["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"],[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,"copied","payload"],["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(He,Xe){if(1&He){const yt=f.RV6();f.j41(0,"div",3)(1,"div",4),f.DNE(2,C,1,3,"qr-code",5)(3,k,2,0,"span",6),f.k0s(),f.j41(4,"div",7)(5,"mat-card-header",8)(6,"div",9),f.nrm(7,"fa-icon",10),f.j41(8,"span",11),f.EFF(9),f.k0s()(),f.j41(10,"button",12),f.bIt("click",function(){return f.eBV(yt),f.Njj(Xe.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),f.DNE(15,L,1,3,"qr-code",5)(16,_,2,0,"span",16),f.k0s(),f.DNE(17,r,1,1,"mat-divider",17),f.j41(18,"div",18,0)(20,"div",19)(21,"div",20)(22,"h4",21),f.EFF(23),f.k0s(),f.j41(24,"span",22),f.EFF(25),f.nI1(26,"number"),f.DNE(27,v,2,0,"ng-container",23),f.k0s()(),f.j41(28,"div",20)(29,"h4",21),f.EFF(30,"Amount Settled"),f.k0s(),f.j41(31,"span",22),f.DNE(32,Ee,3,2,"ng-container",23)(33,Ke,3,2,"ng-container",23),f.k0s()()(),f.nrm(34,"mat-divider",24),f.j41(35,"div",19)(36,"div",20)(37,"h4",21),f.EFF(38,"Date Created"),f.k0s(),f.j41(39,"span",22),f.EFF(40),f.nI1(41,"date"),f.k0s()(),f.j41(42,"div",20)(43,"h4",21),f.EFF(44,"Date Settled"),f.k0s(),f.j41(45,"span",22),f.EFF(46),f.nI1(47,"date"),f.k0s()()(),f.nrm(48,"mat-divider",24),f.j41(49,"div",19)(50,"div",25)(51,"h4",21),f.EFF(52,"Memo"),f.k0s(),f.j41(53,"span",22),f.EFF(54),f.k0s()()(),f.nrm(55,"mat-divider",24),f.j41(56,"div",19)(57,"div",25)(58,"h4",21),f.EFF(59,"Payment Request"),f.k0s(),f.j41(60,"span",26),f.EFF(61),f.k0s()()(),f.nrm(62,"mat-divider",24),f.j41(63,"div",19)(64,"div",25)(65,"h4",21),f.EFF(66,"Payment Hash"),f.k0s(),f.j41(67,"span",26),f.EFF(68),f.k0s()()(),f.DNE(69,X,2,1,"div",23),f.k0s()()(),f.DNE(70,me,4,0,"div",27),f.j41(71,"div",28)(72,"button",29),f.bIt("click",function(){return f.eBV(yt),f.Njj(Xe.onShowAdvanced())}),f.DNE(73,ce,2,0,"p",30)(74,fe,2,0,"ng-template",null,1,f.C5r),f.k0s(),f.DNE(76,ke,2,2,"button",31)(77,mt,2,0,"button",32),f.k0s()()(),f.DNE(78,pt,35,14,"ng-template",null,2,f.C5r)}if(2&He){const yt=f.sdS(75);f.R7$(),f.Y8G("fxLayoutAlign",null!=Xe.invoice&&Xe.invoice.payment_request&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(41,D,Xe.screenSize===Xe.screenSizeEnum.XS||Xe.screenSize===Xe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(4),f.Y8G("icon",Xe.faReceipt),f.R7$(2),f.JRh(Xe.screenSize===Xe.screenSizeEnum.XS?Xe.newlyAdded?"Created":"Invoice":Xe.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(43,n,Xe.screenSize===Xe.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Xe.invoice&&Xe.invoice.payment_request&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(45,D,Xe.screenSize!==Xe.screenSizeEnum.XS&&Xe.screenSize!==Xe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",Xe.screenSize===Xe.screenSizeEnum.XS||Xe.screenSize===Xe.screenSizeEnum.SM),f.R7$(),f.Y8G("ngClass",f.eq3(47,c,(null==Xe.invoice?null:Xe.invoice.htlcs)&&(null==Xe.invoice?null:Xe.invoice.htlcs.length)>0&&Xe.showAdvanced)),f.R7$(5),f.JRh(Xe.screenSize===Xe.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI("",f.bMT(26,33,(null==Xe.invoice?null:Xe.invoice.value)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.value)||"0"===(null==Xe.invoice?null:Xe.invoice.value)),f.R7$(5),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.amt_paid_sat)&&"OPEN"!==(null==Xe.invoice?null:Xe.invoice.state)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.amt_paid_sat)||"0"===(null==Xe.invoice?null:Xe.invoice.amt_paid_sat)),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(f.i5U(41,35,1e3*(null==Xe.invoice?null:Xe.invoice.creation_date),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(0!=+(null==Xe.invoice?null:Xe.invoice.settle_date)?f.i5U(47,38,1e3*+(null==Xe.invoice?null:Xe.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Xe.invoice?null:Xe.invoice.memo),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Xe.invoice?null:Xe.invoice.payment_request)||"N/A"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Xe.invoice?null:Xe.invoice.r_hash)||""),f.R7$(),f.Y8G("ngIf",Xe.showAdvanced),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.htlcs)&&(null==Xe.invoice?null:Xe.invoice.htlcs.length)>0&&Xe.showAdvanced&&Xe.flgOpened),f.R7$(3),f.Y8G("ngIf",!Xe.showAdvanced)("ngIfElse",yt),f.R7$(3),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request))}},dependencies:[F.YU,F.Sq,F.bT,F.T3,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,$.$0,j.m2,j.MM,Q.GK,Q.Z2,Q.WN,J.An,ee.q,ie.LG,ge.oV,ae.Um,Me.U,Te.N,F.QX,F.vh]})}return ye})()},1001:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>t,q:()=>w});var e=g(9969);const t=[(0,e.hZ)("opacityAnimation",[(0,e.kY)(":enter",[(0,e.iF)({opacity:0}),(0,e.i0)("1000ms ease-in",(0,e.iF)({opacity:1}))]),(0,e.kY)(":leave",[(0,e.i0)("0ms",(0,e.iF)({opacity:0}))])])],w=[(0,e.hZ)("fadeIn",[(0,e.kY)("void => *",[]),(0,e.kY)("* => void",[]),(0,e.kY)("* => *",[(0,e.i0)(800,(0,e.i7)([(0,e.iF)({opacity:0,transform:"translateY(100%)"}),(0,e.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},9881:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>t});var e=g(9969);const t=(0,e.hZ)("routeAnimation",[(0,e.kY)("* => *",[(0,e.P)(":enter, :leave",(0,e.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,e.Os)([(0,e.P)(":enter",[(0,e.iF)({transform:"translateX(100%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,e.P)(":leave",[(0,e.iF)({transform:"translateX(0%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},6949:(Qe,te,g)=>{"use strict";g.d(te,{k:()=>t});var e=g(9969);const t=[(0,e.hZ)("sliderAnimation",[(0,e.wk)("*",(0,e.iF)({transform:"translateX(0)"})),(0,e.kY)("void => backward",[(0,e.iF)({transform:"translateX(-100%"}),(0,e.i0)("800ms")]),(0,e.kY)("backward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(100%)"}))]),(0,e.kY)("void => forward",[(0,e.iF)({transform:"translateX(100%"}),(0,e.i0)("800ms")]),(0,e.kY)("forward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(-100%)"}))])])]},2462:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>y});var e=g(5351),t=g(4438),w=g(8570),S=g(177),l=g(2920),x=g(8834),f=g(5596),I=g(1997),d=g(9587);function T(F,R){if(1&F&&(t.j41(0,"p",14),t.EFF(1),t.k0s()),2&F){const z=t.XpG();t.R7$(),t.JRh(z.data.titleMessage)}}let y=(()=>{class F{constructor(z,W,$){this.dialogRef=z,this.data=W,this.logger=$,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)}static#e=this.\u0275fac=function(W){return new(W||F)(t.rXU(e.CP),t.rXU(e.Vh),t.rXU(w.gP))};static#t=this.\u0275cmp=t.VBU({type:F,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 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(W,$){1&W&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return $.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"div",7),t.DNE(10,T,2,1,"p",8),t.j41(11,"h4",9),t.EFF(12,"Error Code"),t.k0s(),t.j41(13,"span"),t.EFF(14),t.k0s(),t.nrm(15,"mat-divider",10),t.j41(16,"h4",9),t.EFF(17,"Error Message"),t.k0s(),t.j41(18,"span",11),t.EFF(19),t.k0s(),t.nrm(20,"mat-divider",10),t.j41(21,"h4",9),t.EFF(22,"API URL"),t.k0s(),t.j41(23,"span",11),t.EFF(24),t.k0s(),t.nrm(25,"mat-divider",10),t.j41(26,"div",12)(27,"button",13),t.EFF(28,"OK"),t.k0s()()()()()()),2&W&&(t.R7$(5),t.JRh($.data.alertTitle||"ERROR"),t.R7$(5),t.Y8G("ngIf",$.data.titleMessage),t.R7$(4),t.JRh($.data.message.code),t.R7$(5),t.JRh($.errorMessage),t.R7$(5),t.JRh($.data.message.URL),t.R7$(3),t.Y8G("mat-dialog-close",!1))},dependencies:[S.bT,l.DJ,l.sA,l.UI,e.tx,x.$z,f.m2,f.MM,I.q,d.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return F})()},8711:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>Zi});var e=g(9417),t=g(1413),w=g(6977),S=g(5351),l=g(5383),x=g(1001),f=g(4416),I=g(3536),d=g(4438),T=g(9640),y=g(4104),F=g(177),R=g(8570),z=g(1188),W=g(2571),$=g(2920),j=g(6038),Q=g(8834),J=g(5596),ee=g(9454),ie=g(9213),ge=g(9631),ae=g(6467),Me=g(7575),Te=g(5951),de=g(450),D=g(4823),n=g(6013),c=g(9587),m=g(1997);const h=Qt=>({"h-5":Qt});function C(Qt,Mt){1&Qt&&d.eu8(0)}function k(Qt,Mt){1&Qt&&d.eu8(0)}function L(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),d.EFF(4),d.nI1(5,"number"),d.k0s()()(),d.DNE(6,k,1,0,"ng-container",2),d.k0s()),2&Qt){const it=d.XpG(),ct=d.sdS(4);d.Y8G("expanded",it.panelExpanded)("ngClass",d.eq3(7,h,!it.flgShowPanel)),d.R7$(4),d.Lme("Quote for ",it.termCaption," amount (",d.bMT(5,5,it.quote.amount)," Sats)"),d.R7$(2),d.Y8G("ngTemplateOutlet",ct)}}function _(Qt,Mt){if(1&Qt&&(d.j41(0,"div",19)(1,"h4",8),d.EFF(2," Prepay Amount (Sats) "),d.j41(3,"mat-icon",20),d.EFF(4,"info_outline"),d.k0s()(),d.j41(5,"span",10),d.EFF(6),d.nI1(7,"number"),d.k0s()()),2&Qt){const it=d.XpG(2);d.R7$(6),d.JRh(d.bMT(7,1,null==it.quote?null:it.quote.prepay_amt_sat))}}function r(Qt,Mt){1&Qt&&d.nrm(0,"mat-divider",13)}function v(Qt,Mt){if(1&Qt&&(d.j41(0,"div",6)(1,"div",21)(2,"h4",8),d.EFF(3," Swap Server Node Pubkey "),d.j41(4,"mat-icon",22),d.EFF(5,"info_outline"),d.k0s()(),d.j41(6,"span",10),d.EFF(7),d.k0s()()()),2&Qt){const it=d.XpG(2);d.R7$(7),d.JRh(null==it.quote?null:it.quote.swap_payment_dest)}}function V(Qt,Mt){if(1&Qt&&(d.j41(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),d.EFF(4," Swap Fee (Sats) "),d.j41(5,"mat-icon",9),d.EFF(6,"info_outline"),d.k0s()(),d.j41(7,"span",10),d.EFF(8),d.nI1(9,"number"),d.k0s()(),d.j41(10,"div",7)(11,"h4",8),d.EFF(12),d.j41(13,"mat-icon",11),d.EFF(14,"info_outline"),d.k0s()(),d.j41(15,"span",10),d.EFF(16),d.nI1(17,"number"),d.k0s()(),d.DNE(18,_,8,3,"div",12),d.k0s(),d.nrm(19,"mat-divider",13),d.j41(20,"div",6)(21,"div",14)(22,"h4",8),d.EFF(23," Max Off-chain Swap Routing Fee (Sats) "),d.j41(24,"mat-icon",15),d.EFF(25,"info_outline"),d.k0s()(),d.j41(26,"span",10),d.EFF(27),d.nI1(28,"number"),d.k0s()(),d.j41(29,"div",14)(30,"h4",8),d.EFF(31," Max Off-chain Prepay Routing Fee (Sats) "),d.j41(32,"mat-icon",16),d.EFF(33,"info_outline"),d.k0s()(),d.j41(34,"span",10),d.EFF(35,"36"),d.k0s()()(),d.DNE(36,r,1,0,"mat-divider",17)(37,v,8,1,"div",18),d.k0s()),2&Qt){const it=d.XpG();d.R7$(2),d.Y8G("fxFlex",null!=it.quote&&it.quote.prepay_amt_sat?"30":"50"),d.R7$(6),d.JRh(d.bMT(9,9,null==it.quote?null:it.quote.swap_fee_sat)),d.R7$(2),d.Y8G("fxFlex",null!=it.quote&&it.quote.prepay_amt_sat?"35":"50"),d.R7$(2),d.SpI(" ",null!=it.quote&&it.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=it.quote&&it.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),d.R7$(4),d.JRh(d.bMT(17,11,null!=it.quote&&it.quote.htlc_sweep_fee_sat?it.quote.htlc_sweep_fee_sat:null!=it.quote&&it.quote.htlc_publish_fee_sat?it.quote.htlc_publish_fee_sat:0)),d.R7$(2),d.Y8G("ngIf",null==it.quote?null:it.quote.prepay_amt_sat),d.R7$(9),d.JRh(d.bMT(28,13,(null==it.quote?null:it.quote.amount)*((null!=it.quote&&it.quote.off_chain_swap_routing_fee_percentage?null==it.quote?null:it.quote.off_chain_swap_routing_fee_percentage:2)/100))),d.R7$(9),d.Y8G("ngIf",""!==(null==it.quote?null:it.quote.swap_payment_dest)),d.R7$(),d.Y8G("ngIf",""!==(null==it.quote?null:it.quote.swap_payment_dest))}}let N=(()=>{class Qt{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=this.\u0275fac=function(ct){return new(ct||Qt)};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},decls:5,vars:1,consts:[["informationBlock",""],["quoteDetailsBlock",""],[4,"ngTemplateOutlet"],["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(ct,wt){if(1&ct&&d.DNE(0,C,1,0,"ng-container",2)(1,L,7,9,"ng-template",null,0,d.C5r)(3,V,38,15,"ng-template",null,1,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4);d.Y8G("ngTemplateOutlet",wt.showPanel?Ut:xi)}},dependencies:[F.YU,F.bT,F.T3,$.DJ,$.sA,$.UI,j.PW,ee.GK,ee.Z2,ee.WN,ie.An,m.q,D.oV,F.QX]})}return Qt})();function ne(Qt,Mt){1&Qt&&d.eu8(0)}function Ee(Qt,Mt){if(1&Qt&&(d.j41(0,"div",3)(1,"span",4),d.EFF(2),d.k0s()()),2&Qt){const it=d.XpG();d.R7$(2),d.JRh(null!=it.loopStatus&&it.loopStatus.error?null==it.loopStatus?null:it.loopStatus.error:"Unknown Error.")}}function ze(Qt,Mt){if(1&Qt&&(d.j41(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),d.EFF(4,"ID"),d.k0s(),d.j41(5,"span",4),d.EFF(6),d.k0s()()(),d.nrm(7,"mat-divider",8),d.j41(8,"div",5)(9,"div",6)(10,"h4",7),d.EFF(11,"HTLC Address"),d.k0s(),d.j41(12,"span",4),d.EFF(13),d.k0s()()()()),2&Qt){const it=d.XpG();d.R7$(6),d.JRh(null==it.loopStatus?null:it.loopStatus.id_bytes),d.R7$(7),d.JRh(null==it.loopStatus?null:it.loopStatus.htlc_address)}}let qe=(()=>{class Qt{constructor(){}static#e=this.\u0275fac=function(ct){return new(ct||Qt)};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},decls:5,vars:1,consts:[["loopFailedBlock",""],["loopSuccessfulBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(ct,wt){if(1&ct&&d.DNE(0,ne,1,0,"ng-container",2)(1,Ee,3,1,"ng-template",null,0,d.C5r)(3,ze,14,2,"ng-template",null,1,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4);d.Y8G("ngTemplateOutlet",null!=wt.loopStatus&&wt.loopStatus.error?Ut:xi)}},dependencies:[F.T3,$.DJ,$.sA,$.UI,m.q]})}return Qt})();var Ke=g(6949);const se=(Qt,Mt)=>({"small-svg":Qt,"large-svg":Mt});function X(Qt,Mt){1&Qt&&d.eu8(0)}function me(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",7)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d.nrm(8,"circle",12)(9,"path",13),d.k0s(),d.j41(10,"g",14),d.nrm(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),d.k0s()()()()(),d.joV(),d.j41(26,"div",30)(27,"mat-card-title"),d.EFF(28,"Loop In explained."),d.k0s()(),d.j41(29,"div",31)(30,"mat-card-subtitle",32),d.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function ce(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",33)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),d.nrm(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),d.k0s(),d.j41(28,"g",56)(29,"g",57)(30,"g",58),d.nrm(31,"path",59)(32,"rect",60)(33,"polygon",61),d.j41(34,"g",62),d.nrm(35,"path",63),d.k0s(),d.nrm(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),d.k0s(),d.j41(45,"g",73),d.nrm(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),d.k0s(),d.nrm(59,"path",87),d.k0s()()()()()(),d.joV(),d.j41(60,"div",30)(61,"mat-card-title"),d.EFF(62,"Step 1: Deciding to Loop In"),d.k0s()(),d.j41(63,"div",31)(64,"mat-card-subtitle",32),d.EFF(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function fe(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",88)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",89),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),d.nrm(14,"circle",95)(15,"path",96),d.j41(16,"g",97),d.nrm(17,"polygon",98)(18,"polygon",99)(19,"path",100),d.k0s(),d.j41(20,"g",101),d.nrm(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),d.j41(31,"g",112)(32,"g",113),d.nrm(33,"g",114),d.k0s(),d.nrm(34,"g",115),d.k0s()()(),d.j41(35,"g",116)(36,"g",40),d.nrm(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),d.k0s(),d.j41(53,"g",56)(54,"g",57)(55,"g",58),d.nrm(56,"path",59)(57,"rect",60)(58,"polygon",61),d.j41(59,"g",122),d.nrm(60,"path",63),d.k0s(),d.nrm(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),d.k0s(),d.j41(70,"g",73),d.nrm(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),d.k0s(),d.nrm(84,"path",139),d.k0s()()()(),d.nrm(85,"path",140)(86,"path",141),d.k0s()()()(),d.joV(),d.j41(87,"div",30)(88,"mat-card-title"),d.EFF(89,"Step 2: Send payment out"),d.k0s()(),d.j41(90,"div",31)(91,"mat-card-subtitle",32),d.EFF(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function ke(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",142)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),d.nrm(10,"circle",12)(11,"path",147),d.k0s(),d.j41(12,"g",14),d.nrm(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),d.k0s()(),d.j41(28,"g",149),d.nrm(29,"polygon",150)(30,"polygon",99)(31,"path",151),d.k0s(),d.j41(32,"g",152),d.nrm(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),d.j41(43,"g",112)(44,"g",113),d.nrm(45,"g",114),d.k0s(),d.nrm(46,"g",115),d.k0s()()(),d.nrm(47,"path",153),d.k0s()()()(),d.joV(),d.j41(48,"div",30)(49,"mat-card-title"),d.EFF(50,"Step 3: Recieve Funds Off-chain"),d.k0s()(),d.j41(51,"div",31)(52,"mat-card-subtitle",32),d.EFF(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function mt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",154)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),d.nrm(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),d.k0s(),d.j41(28,"g",172),d.nrm(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),d.k0s(),d.nrm(43,"path",187),d.k0s()(),d.nrm(44,"circle",188),d.k0s()()()(),d.joV(),d.j41(45,"div",30)(46,"mat-card-title"),d.EFF(47,"Done!"),d.k0s()(),d.j41(48,"div",31)(49,"mat-card-subtitle",32),d.EFF(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. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}let _e=(()=>{class Qt{constructor(it){this.commonService=it,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(it){2===it.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===it.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["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(ct,wt){if(1&ct&&d.DNE(0,X,1,0,"ng-container",5)(1,me,32,5,"ng-template",null,0,d.C5r)(3,ce,66,5,"ng-template",null,1,d.C5r)(5,fe,93,5,"ng-template",null,2,d.C5r)(7,ke,54,5,"ng-template",null,3,d.C5r)(9,mt,51,5,"ng-template",null,4,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4),Si=d.sdS(6),zi=d.sdS(8),en=d.sdS(10);d.Y8G("ngTemplateOutlet",1===wt.stepNumber?Ut:2===wt.stepNumber?xi:3===wt.stepNumber?Si:4===wt.stepNumber?zi:en)}},dependencies:[F.YU,F.T3,$.DJ,$.sA,$.UI,j.PW,J.Lc,J.dh],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:[Ke.k]}})}return Qt})();const be=(Qt,Mt)=>({"small-svg":Qt,"large-svg":Mt});function pe(Qt,Mt){1&Qt&&d.eu8(0)}function Ze(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",7)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d.nrm(8,"circle",12)(9,"path",13),d.k0s(),d.j41(10,"g",14),d.nrm(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),d.k0s()()()()(),d.joV(),d.j41(26,"div",30)(27,"mat-card-title"),d.EFF(28,"Loop Out explained."),d.k0s()(),d.j41(29,"div",31)(30,"mat-card-subtitle",32),d.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function _t(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",33)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),d.nrm(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),d.k0s(),d.j41(28,"g",56),d.nrm(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),d.k0s(),d.nrm(43,"path",71),d.k0s()(),d.nrm(44,"circle",72),d.k0s()()()(),d.joV(),d.j41(45,"div",30)(46,"mat-card-title"),d.EFF(47,"Step 1: Deciding to Loop Out"),d.k0s()(),d.j41(48,"div",31)(49,"mat-card-subtitle",32),d.EFF(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function at(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",73)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",74),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",75)(11,"g",76),d.nrm(12,"circle",77)(13,"path",78),d.j41(14,"g",79),d.nrm(15,"polygon",80)(16,"polygon",81)(17,"path",82),d.k0s(),d.j41(18,"g",83),d.nrm(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),d.j41(29,"g",94)(30,"g",95),d.nrm(31,"g",96),d.k0s(),d.nrm(32,"g",97),d.k0s(),d.nrm(33,"path",98),d.k0s(),d.j41(34,"g",99)(35,"g",41)(36,"g",42),d.nrm(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),d.k0s(),d.j41(52,"g",56),d.nrm(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),d.k0s(),d.nrm(67,"path",111),d.k0s()()()()()(),d.joV(),d.j41(68,"div",30)(69,"mat-card-title"),d.EFF(70,"Step 2: Send lightning payment"),d.k0s()(),d.j41(71,"div",31)(72,"mat-card-subtitle",32),d.EFF(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. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function pt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",112)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),d.nrm(9,"circle",12)(10,"path",117),d.k0s(),d.j41(11,"g",14),d.nrm(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),d.k0s()(),d.j41(27,"g",119),d.nrm(28,"polygon",80)(29,"polygon",120)(30,"path",82),d.k0s(),d.j41(31,"g",121),d.nrm(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),d.j41(42,"g",94)(43,"g",95),d.nrm(44,"g",96),d.k0s(),d.nrm(45,"g",97),d.k0s(),d.nrm(46,"path",123),d.k0s()()()()(),d.joV(),d.j41(47,"div",30)(48,"mat-card-title"),d.EFF(49,"Step 3: Receive funds back"),d.k0s()(),d.j41(50,"div",31)(51,"mat-card-subtitle",32),d.EFF(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function Xt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",124)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),d.nrm(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),d.k0s(),d.j41(28,"g",142)(29,"g",143)(30,"g",144),d.nrm(31,"path",145)(32,"rect",146)(33,"polygon",147),d.j41(34,"g",148),d.nrm(35,"path",149),d.k0s(),d.nrm(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),d.k0s(),d.j41(45,"g",159),d.nrm(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),d.k0s(),d.nrm(59,"path",173),d.k0s()()()()()(),d.joV(),d.j41(60,"div",30)(61,"mat-card-title"),d.EFF(62,"Done!"),d.k0s()(),d.j41(63,"div",31)(64,"mat-card-subtitle",32),d.EFF(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. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}let ye=(()=>{class Qt{constructor(it){this.commonService=it,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(it){2===it.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===it.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["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(ct,wt){if(1&ct&&d.DNE(0,pe,1,0,"ng-container",5)(1,Ze,32,5,"ng-template",null,0,d.C5r)(3,_t,51,5,"ng-template",null,1,d.C5r)(5,at,74,5,"ng-template",null,2,d.C5r)(7,pt,53,5,"ng-template",null,3,d.C5r)(9,Xt,66,5,"ng-template",null,4,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4),Si=d.sdS(6),zi=d.sdS(8),en=d.sdS(10);d.Y8G("ngTemplateOutlet",1===wt.stepNumber?Ut:2===wt.stepNumber?xi:3===wt.stepNumber?Si:4===wt.stepNumber?zi:en)}},dependencies:[F.YU,F.T3,$.DJ,$.sA,$.UI,j.PW,J.Lc,J.dh],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:[Ke.k]}})}return Qt})();const ue=["stepper"],Ie=()=>[1,2,3,4,5],He=(Qt,Mt)=>({"dot-primary":Qt,"dot-primary-lighter":Mt});function Xe(Qt,Mt){if(1&Qt&&(d.j41(0,"div",48)(1,"p",49)(2,"strong"),d.EFF(3,"Channel Peer:\xa0"),d.k0s(),d.EFF(4),d.nI1(5,"titlecase"),d.k0s(),d.j41(6,"p",50)(7,"strong"),d.EFF(8,"Channel ID:\xa0"),d.k0s(),d.EFF(9),d.k0s(),d.nrm(10,"p",50),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(4),d.JRh(d.bMT(5,2,it.channel.remote_alias)),d.R7$(5),d.JRh(it.channel.chan_id)}}function yt(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.JRh(it.inputFormLabel)}}function Ye(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Amount is required."),d.k0s())}function rt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Amount must be greater than or equal to ",d.bMT(2,1,it.minQuote.amount),".")}}function Yt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Amount must be less than or equal to ",d.bMT(2,1,it.maxQuote.amount),".")}}function Nt(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target is required."),d.k0s())}function Et(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target must be a positive number."),d.k0s())}function Vt(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage is required."),d.k0s())}function oe(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage must be a positive number."),d.k0s())}function tt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-form-field",50)(1,"mat-label"),d.EFF(2,"Max Off-chain Routing Fee (%)"),d.k0s(),d.nrm(3,"input",51),d.DNE(4,Vt,2,0,"mat-error",25)(5,oe,2,0,"mat-error",25),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.routingFeePercent.errors?null:it.inputFormGroup.controls.routingFeePercent.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.routingFeePercent.errors?null:it.inputFormGroup.controls.routingFeePercent.errors.min)}}function $t(Qt,Mt){1&Qt&&(d.j41(0,"div",52)(1,"mat-slide-toggle",53),d.EFF(2,"Fast"),d.k0s(),d.j41(3,"mat-icon",54),d.EFF(4,"info_outline"),d.k0s()())}function zt(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.JRh(it.quoteFormLabel)}}function Jt(Qt,Mt){1&Qt&&(d.j41(0,"p",55)(1,"mat-icon",56),d.EFF(2,"close"),d.k0s(),d.EFF(3,"Local balance amount is insufficient for swap."),d.k0s())}function St(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",57),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onValidateAmount())}),d.EFF(1,"Next"),d.k0s()}}function dt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",58),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onLoop())}),d.EFF(1),d.k0s()}if(2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Initiate ",it.loopDirectionCaption,"")}}function Ae(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(3);d.JRh(it.addressFormLabel)}}function we(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Address is required."),d.k0s())}function he(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"mat-step",16)(1,"form",17),d.DNE(2,Ae,1,1,"ng-template",18),d.j41(3,"div",59)(4,"mat-radio-group",60),d.bIt("change",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.Njj(Ut.onAddressTypeChange(wt))}),d.j41(5,"mat-radio-button",61),d.EFF(6,"Node Local Address"),d.k0s(),d.j41(7,"mat-radio-button",62),d.EFF(8,"External Address"),d.k0s()(),d.j41(9,"mat-form-field",63)(10,"mat-label"),d.EFF(11,"Address"),d.k0s(),d.nrm(12,"input",64),d.DNE(13,we,2,0,"mat-error",25),d.k0s()(),d.j41(14,"div",29)(15,"button",65),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onLoop())}),d.EFF(16),d.k0s()()()()}if(2&Qt){const it=d.XpG(2);d.Y8G("stepControl",it.addressFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.addressFormGroup),d.R7$(11),d.Y8G("required","external"===it.addressFormGroup.controls.addressType.value),d.R7$(),d.Y8G("ngIf",null==it.addressFormGroup.controls.address.errors?null:it.addressFormGroup.controls.address.errors.required),d.R7$(3),d.SpI("Initiate ",it.loopDirectionCaption,"")}}function q(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.SpI("",it.loopDirectionCaption," Status")}}function Re(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-icon",66),d.EFF(1),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.JRh(it.loopStatus&&null!=it.loopStatus&&it.loopStatus.id_bytes?"check":"close")}}function Ne(Qt,Mt){1&Qt&&d.nrm(0,"div")}function gt(Qt,Mt){1&Qt&&d.nrm(0,"mat-progress-bar",67)}function $e(Qt,Mt){if(1&Qt&&(d.j41(0,"h4",68),d.EFF(1),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.JRh(it.loopStatus&&it.loopStatus.error?it.loopDirectionCaption+" failed.":it.loopStatus&&it.loopStatus.id_bytes&&it.channel?it.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":it.loopDirectionCaption+" request placed successfully.")}}function Fe(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",69),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.goToLoop())}),d.EFF(1,"Check Status"),d.k0s()}}function Ge(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",70),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onRestart())}),d.EFF(1,"Start Again"),d.k0s()}}function et(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),d.EFF(5),d.k0s()(),d.j41(6,"div",9)(7,"button",10),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.showInfo())}),d.EFF(8,"?"),d.k0s(),d.j41(9,"button",11),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.onClose())}),d.EFF(10,"X"),d.k0s()()(),d.j41(11,"mat-card-content",12)(12,"div",13),d.DNE(13,Xe,11,4,"div",14),d.j41(14,"mat-vertical-stepper",15,1),d.bIt("selectionChange",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.stepSelectionChanged(wt))}),d.j41(16,"mat-step",16)(17,"form",17),d.DNE(18,yt,1,1,"ng-template",18),d.j41(19,"div",19),d.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),d.k0s(),d.j41(22,"div",21)(23,"mat-form-field",22)(24,"mat-label"),d.EFF(25,"Amount"),d.k0s(),d.nrm(26,"input",23),d.j41(27,"mat-hint"),d.EFF(28),d.nI1(29,"number"),d.nI1(30,"number"),d.k0s(),d.j41(31,"span",24),d.EFF(32,"Sats"),d.k0s(),d.DNE(33,Ye,2,0,"mat-error",25)(34,rt,3,3,"mat-error",25)(35,Yt,3,3,"mat-error",25),d.k0s(),d.j41(36,"mat-form-field",22)(37,"mat-label"),d.EFF(38,"Sweep Confirmation Target"),d.k0s(),d.nrm(39,"input",26),d.DNE(40,Nt,2,0,"mat-error",25)(41,Et,2,0,"mat-error",25),d.k0s(),d.DNE(42,tt,6,3,"mat-form-field",27),d.k0s(),d.DNE(43,$t,5,0,"div",28),d.j41(44,"div",29)(45,"button",30),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.onEstimateQuote())}),d.EFF(46,"Estimate Quote"),d.k0s()()()(),d.j41(47,"mat-step",16)(48,"form",17),d.DNE(49,zt,1,1,"ng-template",18),d.nrm(50,"rtl-loop-quote",31),d.DNE(51,Jt,4,0,"p",32),d.j41(52,"div",29),d.DNE(53,St,2,0,"button",33)(54,dt,2,1,"button",34),d.k0s()()(),d.DNE(55,he,17,6,"mat-step",35),d.j41(56,"mat-step",36)(57,"form",17),d.DNE(58,q,1,1,"ng-template",18),d.j41(59,"div",37)(60,"mat-expansion-panel",38)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",39),d.EFF(64),d.DNE(65,Re,2,1,"mat-icon",40),d.k0s()()(),d.DNE(66,Ne,1,0,"div",41),d.k0s(),d.DNE(67,gt,1,0,"mat-progress-bar",42),d.k0s(),d.DNE(68,$e,2,1,"h4",43),d.j41(69,"div",29),d.DNE(70,Fe,2,0,"button",44)(71,Ge,2,0,"button",45),d.k0s()()()(),d.j41(72,"div",46)(73,"button",47),d.EFF(74,"Close"),d.k0s()()()()()()}if(2&Qt){const it=d.XpG(),ct=d.sdS(2);d.Y8G("@opacityAnimation",void 0),d.R7$(3),d.Y8G("fxFlex",it.screenSize===it.screenSizeEnum.XS||it.screenSize===it.screenSizeEnum.SM?"83":"91"),d.R7$(2),d.JRh(it.channel?"Channel "+it.loopDirectionCaption:it.loopDirectionCaption),d.R7$(),d.Y8G("fxFlex",it.screenSize===it.screenSizeEnum.XS||it.screenSize===it.screenSizeEnum.SM?"17":"9"),d.R7$(7),d.Y8G("ngIf",it.channel),d.R7$(),d.Y8G("linear",!0),d.R7$(2),d.Y8G("stepControl",it.inputFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.inputFormGroup),d.R7$(3),d.Y8G("quote",it.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),d.R7$(),d.Y8G("quote",it.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),d.R7$(2),d.Y8G("fxFlex",it.direction===it.LoopTypeEnum.LOOP_OUT?"35":"48"),d.R7$(3),d.Y8G("step",1e3),d.R7$(2),d.Lme("Range: ",d.bMT(29,51,it.minQuote.amount),"-",d.bMT(30,53,it.maxQuote.amount),""),d.R7$(5),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.min),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.max),d.R7$(),d.Y8G("fxFlex",it.direction===it.LoopTypeEnum.LOOP_OUT?"30":"48"),d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.sweepConfTarget.errors?null:it.inputFormGroup.controls.sweepConfTarget.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.sweepConfTarget.errors?null:it.inputFormGroup.controls.sweepConfTarget.errors.min),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(4),d.Y8G("stepControl",it.quoteFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.quoteFormGroup),d.R7$(2),d.Y8G("quote",it.quote)("showPanel",!1),d.R7$(),d.Y8G("ngIf",it.inputFormGroup.controls.amount.value>it.localBalanceToCompare),d.R7$(2),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_IN),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("stepControl",it.statusFormGroup),d.R7$(),d.Y8G("formGroup",it.statusFormGroup),d.R7$(3),d.Y8G("expanded",!!it.loopStatus),d.R7$(4),d.JRh(it.loopStatus?it.loopStatus.id_bytes?it.loopDirectionCaption+" request details":it.loopDirectionCaption+" error details":"Waiting for "+it.loopDirectionCaption+" request..."),d.R7$(),d.Y8G("ngIf",it.loopStatus),d.R7$(),d.Y8G("ngIf",!it.loopStatus)("ngIfElse",ct),d.R7$(),d.Y8G("ngIf",!it.loopStatus),d.R7$(),d.Y8G("ngIf",it.loopStatus),d.R7$(2),d.Y8G("ngIf",it.loopStatus&&it.loopStatus.id_bytes&&it.channel),d.R7$(),d.Y8G("ngIf",it.loopStatus&&(it.loopStatus.error||!it.loopStatus.id_bytes)),d.R7$(2),d.Y8G("mat-dialog-close",!1)}}function st(Qt,Mt){if(1&Qt&&d.nrm(0,"rtl-loop-status",71),2&Qt){const it=d.XpG();d.Y8G("loopStatus",it.loopStatus)}}function Tt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"rtl-loop-out-info-graphics",87),d.mxI("stepNumberChange",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.DH7(Ut.stepNumber,wt)||(Ut.stepNumber=wt),d.Njj(wt)}),d.k0s()}if(2&Qt){const it=d.XpG(2);d.Y8G("animationDirection",it.animationDirection),d.R50("stepNumber",it.stepNumber)}}function mi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"rtl-loop-in-info-graphics",87),d.mxI("stepNumberChange",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.DH7(Ut.stepNumber,wt)||(Ut.stepNumber=wt),d.Njj(wt)}),d.k0s()}if(2&Qt){const it=d.XpG(2);d.Y8G("animationDirection",it.animationDirection),d.R50("stepNumber",it.stepNumber)}}function Kt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"span",88),d.bIt("click",function(){const wt=d.eBV(it).$implicit,Ut=d.XpG(2);return d.Njj(Ut.onStepChanged(wt))}),d.nrm(1,"p",89),d.k0s()}if(2&Qt){const it=Mt.$implicit,ct=d.XpG(2);d.R7$(),d.Y8G("ngClass",d.l_i(1,He,ct.stepNumber===it,ct.stepNumber!==it))}}function Pt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",90),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onReadMore())}),d.EFF(1,"Read More"),d.k0s()}}function Xi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",91),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(4))}),d.EFF(1,"Back"),d.k0s()}}function di(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",92),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function fi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",93),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function vn(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",94),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(wt.stepNumber-1))}),d.EFF(1,"Back"),d.k0s()}}function Qi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",95),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(wt.stepNumber+1))}),d.EFF(1,"Next"),d.k0s()}}function Li(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),d.nrm(4,"span",8),d.k0s(),d.j41(5,"div",75)(6,"button",11),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(7,"X"),d.k0s()()(),d.j41(8,"mat-card-content",76),d.DNE(9,Tt,1,2,"rtl-loop-out-info-graphics",77)(10,mi,1,2,"rtl-loop-in-info-graphics",77),d.k0s(),d.j41(11,"div",78),d.DNE(12,Kt,2,4,"span",79),d.k0s(),d.j41(13,"div",80),d.DNE(14,Pt,2,0,"button",81)(15,Xi,2,0,"button",82)(16,di,2,0,"button",83)(17,fi,2,0,"button",84)(18,vn,2,0,"button",85)(19,Qi,2,0,"button",86),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@opacityAnimation",void 0),d.R7$(9),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_IN),d.R7$(2),d.Y8G("ngForOf",d.lJ4(10,Ie)),d.R7$(2),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",it.stepNumber<5),d.R7$(),d.Y8G("ngIf",it.stepNumber>1&&it.stepNumber<5),d.R7$(),d.Y8G("ngIf",it.stepNumber<5)}}let Zi=(()=>{class Qt{constructor(it,ct,wt,Ut,xi,Si,zi,en,Ni){this.dialogRef=it,this.data=ct,this.store=wt,this.loopService=Ut,this.formBuilder=xi,this.decimalPipe=Si,this.logger=zi,this.router=en,this.commonService=Ni,this.faInfoCircle=l.iW_,this.LoopTypeEnum=f.C7,this.direction=f.C7.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=f.f7,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}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||f.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===f.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[e.k0.required,e.k0.min(this.minQuote.amount||0),e.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[e.k0.required,e.k0.min(1)]],routingFeePercent:[2,[e.k0.required,e.k0.min(0)]],fast:[!1,[e.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[e.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(I.BM).pipe((0,w.Q)(this.unSubs[6])).subscribe(it=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:it.lightningBalance&&it.lightningBalance.local?+it.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,w.Q)(this.unSubs[4])).subscribe(it=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,w.Q)(this.unSubs[5])).subscribe(it=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(it){"external"===it.value?(this.addressFormGroup.controls.address.setValidators([e.k0.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(){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===f.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===f.C7.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,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===f.C7.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,w.Q)(this.unSubs[0])).subscribe({next:it=>{this.loopStatus=it,this.loopService.listSwaps(),this.flgEditable=!0},error:it=>{this.loopStatus={error:it},this.flgEditable=!0,this.logger.error(it)}});else{const it=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),ct="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",wt=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,it,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),wt,ct).pipe((0,w.Q)(this.unSubs[1])).subscribe({next:Ut=>{this.loopStatus=Ut,this.loopService.listSwaps(),this.flgEditable=!0},error:Ut=>{this.loopStatus={error:Ut},this.flgEditable=!0,this.logger.error(Ut)}})}}onEstimateQuote(){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 it=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===f.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,it).pipe((0,w.Q)(this.unSubs[2])).subscribe(ct=>{this.quote=ct,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,it).pipe((0,w.Q)(this.unSubs[3])).subscribe(ct=>{this.quote=ct,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),this.stepper.selected?.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(it){switch(it.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===f.C7.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===f.C7.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===f.C7.LOOP_OUT&&1!==it.selectedIndex&&it.selectedIndex{it.next(null),it.complete()})}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(S.CP),d.rXU(S.Vh),d.rXU(T.il),d.rXU(y.Q),d.rXU(e.ze),d.rXU(F.QX),d.rXU(R.gP),d.rXU(z.Ix),d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-modal"]],viewQuery:function(ct,wt){if(1&ct&&d.GBs(ue,5),2&ct){let Ut;d.mGM(Ut=d.lsd())&&(wt.stepper=Ut.first)}},decls:4,vars:2,consts:[["loopStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["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,"selectionChange","linear"],[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","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","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","","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"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","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(ct,wt){1&ct&&d.DNE(0,et,75,55,"div",2)(1,st,1,1,"ng-template",null,0,d.C5r)(3,Li,20,11,"div",3),2&ct&&(d.Y8G("ngIf",!wt.flgShowInfo),d.R7$(3),d.Y8G("ngIf",wt.flgShowInfo))},dependencies:[F.YU,F.Sq,F.bT,e.qT,e.me,e.Q0,e.BC,e.cb,e.YS,e.j4,e.JD,$.DJ,$.sA,$.UI,j.PW,S.tx,Q.$z,J.m2,J.MM,ee.GK,ee.Z2,ee.WN,ie.An,ge.fg,ae.rl,ae.nJ,ae.MV,ae.TL,ae.yw,Me.HM,Te.VT,Te._g,de.sG,D.oV,n.V5,n.Ti,n.M6,c.N,N,qe,_e,ye,F.QX,F.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[x.C]}})}return Qt})()},13:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>I});var e=g(5383),t=g(4438),w=g(1188),S=g(60),l=g(2920),x=g(8834),f=g(5596);let I=(()=>{class d{constructor(y){this.router=y,this.faTimes=e.GRI}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(F){return new(F||d)(t.rXU(w.Ix))};static#t=this.\u0275cmp=t.VBU({type:d,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(F,R){1&F&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"Page Not Found"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),t.EFF(9,"This page does not exist!"),t.k0s(),t.j41(10,"span",7)(11,"button",8),t.bIt("click",function(){return R.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()()),2&F&&(t.R7$(),t.Y8G("icon",R.faTimes))},dependencies:[S.aY,l.DJ,l.sA,l.UI,x.$z,f.RN,f.m2],encapsulation:2})}return d})()},9587:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>t});var e=g(4438);let t=(()=>{class w{constructor(l){this.el=l}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=this.\u0275fac=function(x){return new(x||w)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:w,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}})}return w})()},9157:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>t});var e=g(4438);let t=(()=>{class w{constructor(){this.copied=new e.bkB}onClick(l){l.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const l=document.createElement("textarea");l.value=this.payload,document.body.appendChild(l),l.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(l)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(l=>{this.copied.emit("Error could not copy text: "+JSON.stringify(l))})}static#e=this.\u0275fac=function(x){return new(x||w)};static#t=this.\u0275dir=e.FsC({type:w,selectors:[["","rtlClipboard",""]],hostBindings:function(x,f){1&x&&e.bIt("click",function(d){return f.onClick(d)})},inputs:{payload:"payload"},outputs:{copied:"copied"}})}return w})()},92:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>w});var e=g(9417),t=g(4438);let w=(()=>{class S{validate(x){return this.max?e.k0.max(+this.max)(x):null}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275dir=t.FsC({type:S,selectors:[["input","max",""]],inputs:{max:"max"},features:[t.Jv_([{provide:e.cz,useExisting:S,multi:!0}])]})}return S})()},6114:(Qe,te,g)=>{"use strict";g.d(te,{V:()=>w});var e=g(9417),t=g(4438);let w=(()=>{class S{validate(x){return this.min?e.k0.min(+this.min)(x):null}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275dir=t.FsC({type:S,selectors:[["input","min",""]],inputs:{min:"min"},features:[t.Jv_([{provide:e.cz,useExisting:S,multi:!0}])]})}return S})()},2929:(Qe,te,g)=>{"use strict";g.d(te,{Qu:()=>S,VD:()=>l,ZE:()=>w,gZ:()=>t});var e=g(4438);let t=(()=>{class x{transform(I,d){return I?.replace(/^[0]+/g,"")}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"removeleadingzeros",type:x,pure:!0})}return x})(),w=(()=>{class x{transform(I,d){return I?.replace(/(?:^\w|[A-Z]|\b\w)/g,(T,y)=>T.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelcase",type:x,pure:!0})}return x})(),S=(()=>{class x{transform(I,d,T){return I.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,F)=>" "+y.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelCaseWithSpaces",type:x,pure:!0})}return x})(),l=(()=>{class x{transform(I,d,T){return I=I?I.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",d&&(I=I.replace(new RegExp(d,"g")," ")),T&&(I=I.replace(new RegExp(T,"g")," ")),I.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,F)=>y.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelcaseWithReplace",type:x,pure:!0})}return x})()},7186:(Qe,te,g)=>{"use strict";g.d(te,{Wz:()=>f,fe:()=>I,jn:()=>x,q_:()=>l});var e=g(4438),t=g(1188),w=g(3202),S=g(6354);function l(){return()=>{const d=(0,e.WQX)(t.Ix),T=(0,e.WQX)(t.nX),y=(0,e.WQX)(w.Q);return!(!y.getItem("token")||T.snapshot.url&&T.snapshot.url.length&&"settings"!==T.snapshot.url[0].path&&"auth"!==T.snapshot.url[0].path&&"true"===y.getItem("defaultPassword")&&(d.navigate(["/settings/auth"]),1))}}function x(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.lndUnlocked))}function f(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.clnUnlocked))}function I(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.eclUnlocked))}},2571:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>z});var e=g(4412),t=g(1413),w=g(7673),S=g(8810),l=g(6977),x=g(5558),f=g(9437),I=g(4416),d=g(4438),T=g(1534),y=g(8570),F=g(177),R=g(345);let z=(()=>{class W{constructor(j,Q,J,ee){this.dataService=j,this.logger=Q,this.datePipe=J,this.sanitizer=ee,this.currencyUnits=[],this.CurrencyUnitEnum=I.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=I.wn.UN_INITIATED,this.screenSize=I.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new e.t(this.containerSize),this.unSubs=[new t.B,new t.B,new t.B]}getScreenSize(){return this.screenSize}setScreenSize(j){this.screenSize=j}getContainerSize(){return this.containerSize}setContainerSize(j,Q){this.containerSize={width:j,height:Q},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(j,Q,J,ee="asc"){return j.sort("number"===J?"desc"===ee?(ie,ge)=>+ie[Q]>+ge[Q]?-1:1:(ie,ge)=>+ie[Q]>+ge[Q]?1:-1:"desc"===ee?(ie,ge)=>ie[Q]>ge[Q]?-1:1:(ie,ge)=>ie[Q]>ge[Q]?1:-1)}sortDescByKey(j,Q){return j.sort((J,ee)=>{const ie=+J[Q],ge=+ee[Q];return ie>ge?-1:ie{const ie=+J[Q],ge=+ee[Q];return iege?1:0})}camelCase(j){return j?.replace(/(?:^\w|[A-Z]|\b\w)/g,(Q,J)=>Q.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(j,Q,J){return Q&&J&&""!==Q&&""!==J&&(j=j?.replace(new RegExp(Q,"g"),J)),j.indexOf("!\n")>0||j.indexOf(".\n")>0?j.split("\n")?.reduce((ee,ie)=>ee+ie.charAt(0).toUpperCase()+ie.substring(1).toLowerCase()+"\n",""):j.indexOf(" ")>0?j.split(" ")?.reduce((ee,ie)=>ee+ie.charAt(0).toUpperCase()+ie.substring(1).toLowerCase()+" ",""):j.charAt(0).toUpperCase()+j.substring(1).toLowerCase()}convertCurrency(j,Q,J,ee,ie){const ge=(new Date).valueOf();try{return ie&&ee&&(Q===I.BQ.OTHER||J===I.BQ.OTHER)?this.ratesAPIStatus!==I.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&ge(this.ratesAPIStatus=I.wn.COMPLETED,this.conversionData.data=ae&&"object"==typeof ae?ae:ae&&"string"==typeof ae?JSON.parse(ae):{},this.conversionData.last_fetched=ge,(0,w.of)(this.convertWithFiat(j,Q,ee)))),(0,f.W)(ae=>(this.ratesAPIStatus=I.wn.ERROR,(0,S.$)(()=>"Currency Conversion Error."))))):(0,w.of)(this.conversionData.data&&this.conversionData.last_fetched&&ge"Currency Conversion Error.")}}convertWithoutFiat(j,Q){const J={};switch(J[I.BQ.SATS]=0,J[I.BQ.BTC]=0,Q){case I.BQ.SATS:J[I.BQ.SATS]=j,J[I.BQ.BTC]=1e-8*j;break;case I.BQ.BTC:J[I.BQ.SATS]=1e8*j,J[I.BQ.BTC]=j}return J}convertWithFiat(j,Q,J){const ee={unit:J,iconType:"FA",symbol:null};if(J){const ie=(0,I.Zo)(this.conversionData.data[J].symbol);ee.iconType=ie.iconType,ee.symbol=ie&&"SVG"===ie.iconType&&ie.symbol&&"string"==typeof ie.symbol?this.sanitizer.bypassSecurityTrustHtml(ie.symbol):ie.symbol}switch(ee[I.BQ.SATS]=0,ee[I.BQ.BTC]=0,ee[I.BQ.OTHER]=0,Q){case I.BQ.SATS:ee[I.BQ.SATS]=j,ee[I.BQ.BTC]=1e-8*j,ee[I.BQ.OTHER]=1e-8*j*this.conversionData.data[J].last;break;case I.BQ.BTC:ee[I.BQ.SATS]=1e8*j,ee[I.BQ.BTC]=j,ee[I.BQ.OTHER]=j*this.conversionData.data[J].last;break;case I.BQ.OTHER:ee[I.BQ.SATS]=j/this.conversionData.data[J].last*1e8,ee[I.BQ.BTC]=j/this.conversionData.data[J].last,ee[I.BQ.OTHER]=j}return ee}convertTime(j,Q,J){switch(Q){case I.F7.SECS:switch(J){case I.F7.MINS:j/=60;break;case I.F7.HOURS:j/=I.bz;break;case I.F7.DAYS:j/=24*I.bz}break;case I.F7.MINS:switch(J){case I.F7.SECS:j*=60;break;case I.F7.HOURS:j/=60;break;case I.F7.DAYS:j/=1440}break;case I.F7.HOURS:switch(J){case I.F7.SECS:j*=I.bz;break;case I.F7.MINS:j*=60;break;case I.F7.DAYS:j/=24}break;case I.F7.DAYS:switch(J){case I.F7.SECS:j=j*I.bz*24;break;case I.F7.MINS:j=60*j*24;break;case I.F7.HOURS:j*=24}}return j}downloadFile(j,Q,J=".json",ee=".csv"){let ie=new Blob;ie=".json"===J?new Blob(["\ufeff"+this.convertToCSV(j)],{type:"text/csv;charset=utf-8;"}):new Blob([j.toString()],{type:"text/plain;charset=utf-8"});const ge=document.createElement("a"),ae=URL.createObjectURL(ie);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&ge.setAttribute("target","_blank"),ge.setAttribute("href",ae),ge.setAttribute("download",Q+ee),ge.style.visibility="hidden",document.body.appendChild(ge),ge.click(),document.body.removeChild(ge)}convertToCSV(j){const Q=[];let J="",ee="",ie="";return"object"!=typeof j&&(j=JSON.parse(j)),j.forEach((ae,Me)=>{for(const Te in ae)Q.findIndex(de=>de===Te)<0&&Q.push(Te)}),ie=Q.join(",")+"\r\n",j.forEach(ae=>{J="",Q.forEach(Me=>{if(ae.hasOwnProperty(Me))if(Array.isArray(ae[Me]))ee="",ae[Me].forEach((Te,de)=>{ee+="object"==typeof Te?"("+JSON.stringify(Te)?.replace(/\,/g,";")+")":"("+Te+")"}),J+=ee+",";else if("object"==typeof ae[Me])J+=JSON.stringify(ae[Me])?.replace(/\,/g,";")+",";else if(Me.includes("timestamp")||Me.includes("date"))try{switch(ae[Me].toString().length){case 10:J+=this.datePipe.transform(new Date(1e3*ae[Me]),"dd/MMM/y HH:mm")+",";break;case 13:J+=this.datePipe.transform(new Date(ae[Me]),"dd/MMM/y HH:mm")+",";break;default:J+=ae[Me]+","}}catch{J+=ae[Me]+","}else J+=ae[Me]+",";else J+=","}),ie+=J.slice(0,-1)+"\r\n"}),ie}isVersionCompatible(j,Q){if(j){const J=j.match(/v?(?\d+(?:\.\d+)*)/);if(J&&J.groups&&J.groups.version){this.logger.info("Current Version: "+J.groups.version),this.logger.info("Checking Compatiblility with Version: "+Q);const ee=J.groups.version.split(".")||[],ie=Q.split(".");return+ee[0]>+ie[0]||+ee[0]==+ie[0]&&+ee[1]>+ie[1]||+ee[0]==+ie[0]&&+ee[1]==+ie[1]&&+ee[2]>=+ie[2]}return this.logger.error("Invalid Version String: "+j),!1}return!1}extractErrorMessage(j,Q="Unknown Error."){const J=this.titleCase(j.error&&j.error.text&&"string"==typeof j.error.text&&j.error.text.includes('')?"API Route Does Not Exist.":j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.error&&"string"==typeof j.error.error.error.error.error?j.error.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&"string"==typeof j.error.error.error.error?j.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&"string"==typeof j.error.error.error?j.error.error.error:j.error&&j.error.error&&"string"==typeof j.error.error?j.error.error:j.error&&"string"==typeof j.error?j.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.message&&"string"==typeof j.error.error.error.error.message?j.error.error.error.error.message:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.message&&"string"==typeof j.error.error.error.message?j.error.error.error.message:j.error&&j.error.error&&j.error.error.message&&"string"==typeof j.error.error.message?j.error.error.message:j.error&&j.error.message&&"string"==typeof j.error.message?j.error.message:j.message&&"string"==typeof j.message?j.message:Q);return this.logger.info("Error Message: "+J),J}extractErrorCode(j,Q=500){const J=j.error&&j.error.error&&j.error.error.message&&j.error.error.message.code?j.error.error.message.code:j.error&&j.error.error&&j.error.error.code?j.error.error.code:j.error&&j.error.code?j.error.code:j.code?j.code:j.status?j.status:Q;return this.logger.info("Error Code: "+J),J}extractErrorNumber(j,Q=500){const J=j.error&&j.error.error&&j.error.error.errno?j.error.error.errno:j.error&&j.error.errno?j.error.errno:j.errno?j.errno:j.status?j.status:Q;return this.logger.info("Error Number: "+J),J}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=this.\u0275fac=function(Q){return new(Q||W)(d.KVO(T.u),d.KVO(y.gP),d.KVO(F.vh),d.KVO(R.up))};static#t=this.\u0275prov=d.jDH({token:W,factory:W.\u0275fac})}return W})()},4416:(Qe,te,g)=>{"use strict";g.d(te,{A$:()=>Te,A0:()=>T,Ah:()=>qe,BQ:()=>c,Bd:()=>V,Bv:()=>ee,C7:()=>v,F7:()=>D,G:()=>J,H$:()=>I,HW:()=>Me,Hx:()=>r,It:()=>x,Jd:()=>Xe,Jr:()=>ge,KR:()=>ne,Ld:()=>$,MZ:()=>se,QP:()=>fe,SY:()=>F,TC:()=>ke,TH:()=>_e,U1:()=>de,UN:()=>m,Uq:()=>be,Uu:()=>mt,WW:()=>Yt,X8:()=>rt,XG:()=>j,Y0:()=>X,ZC:()=>yt,Zb:()=>_,Zi:()=>Et,Zo:()=>Vt,_1:()=>Ye,_U:()=>pe,aG:()=>k,aR:()=>me,aU:()=>ce,bz:()=>l,ck:()=>ie,f7:()=>h,iI:()=>L,jG:()=>Ie,k:()=>y,md:()=>z,mu:()=>He,nv:()=>Q,o1:()=>ae,oi:()=>ue,on:()=>S,q9:()=>N,rl:()=>d,rs:()=>Ee,tj:()=>C,ul:()=>Ze,wn:()=>Ke,xk:()=>_t,xp:()=>W,xv:()=>f});var e=g(4438),t=g(6695),w=g(5383);function S(oe){const tt=new t.xX;return tt.itemsPerPageLabel=oe+" per page:",tt}const l=3600,x=24*l*7,f="0.15.1-beta",I=(0,e.naY)()?"http://localhost:3000/rtl/api":"./api",d={AUTHENTICATE_API:I+"/authenticate",CONF_API:I+"/conf",PAGE_SETTINGS_API:I+"/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"},T=["Sats","BTC"],y={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},F=["SECS","MINS","HOURS","DAYS"],z=10,W=[5,10,25,100],$=[{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"}],j=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],Q=[{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"}],J=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],ee={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 ie=function(oe){return oe.PAYMENT_RECEIVED="payment-received",oe.PAYMENT_RELAYED="payment-relayed",oe.PAYMENT_SENT="payment-sent",oe.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",oe.PAYMENT_FAILED="payment-failed",oe.CHANNEL_OPENED="channel-opened",oe.CHANNEL_STATE_CHANGED="channel-state-changed",oe.CHANNEL_CLOSED="channel-closed",oe}(ie||{}),ge=function(oe){return oe.CONNECT="connect",oe.DISCONNECT="disconnect",oe.WARNING="warning",oe.INVOICE_PAYMENT="invoice_payment",oe.INVOICE_CREATION="invoice_creation",oe.CHANNEL_OPENED="channel_opened",oe.CHANNEL_STATE_CHANGED="channel_state_changed",oe.SENDPAY_SUCCESS="sendpay_success",oe.SENDPAY_FAILURE="sendpay_failure",oe.COIN_MOVEMENT="coin_movement",oe.BALANCE_SNAPSHOT="balance_snapshot",oe.BLOCK_ADDED="block_added",oe.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",oe.CHANNEL_OPEN_FAILED="channel_open_failed",oe}(ge||{}),ae=function(oe){return oe.INVOICE="invoice",oe}(ae||{}),Me=function(oe){return oe.OPERATOR="OPERATOR",oe.MERCHANT="MERCHANT",oe.ALL="ALL",oe}(Me||{}),Te=function(oe){return oe.INFORMATION="Information",oe.WARNING="Warning",oe.ERROR="Error",oe.SUCCESS="Success",oe.CONFIRM="Confirm",oe}(Te||{}),de=function(oe){return oe.JWT="JWT",oe.PASSWORD="PASSWORD",oe}(de||{}),D=function(oe){return oe.SECS="SECS",oe.MINS="MINS",oe.HOURS="HOURS",oe.DAYS="DAYS",oe}(D||{}),c=function(oe){return oe.SATS="Sats",oe.BTC="BTC",oe.OTHER="OTHER",oe}(c||{}),m=function(oe){return oe.ARRAY="ARRAY",oe.NUMBER="NUMBER",oe.STRING="STRING",oe.BOOLEAN="BOOLEAN",oe.PASSWORD="PASSWORD",oe.DATE="DATE",oe.DATE_TIME="DATE_TIME",oe}(m||{}),h=function(oe){return oe.XS="XS",oe.SM="SM",oe.MD="MD",oe.LG="LG",oe.XL="XL",oe}(h||{});const C={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"}},k={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 L=function(oe){return oe.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",oe.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",oe.WIRE_INVALID_ONION_KEY="Invalid Onion Key",oe.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",oe.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",oe.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",oe.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",oe.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",oe.WIRE_FEE_INSUFFICIENT="Insufficient Fee",oe.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",oe.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",oe.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",oe.WIRE_CHANNEL_DISABLED="Channel Disabled",oe.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",oe.WIRE_INVALID_REALM="Invalid Realm",oe.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",oe.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",oe.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",oe.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",oe.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",oe.WIRE_MPP_TIMEOUT="MPP Timeout",oe.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",oe.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",oe}(L||{}),_=function(oe){return oe.CHANNELD_NORMAL="Active",oe.OPENINGD="Opening",oe.CHANNELD_AWAITING_LOCKIN="Pending Open",oe.CHANNELD_SHUTTING_DOWN="Shutting Down",oe.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",oe.CLOSINGD_COMPLETE="Closed",oe.AWAITING_UNILATERAL="Awaiting Unilateral Close",oe.FUNDING_SPEND_SEEN="Funding Spend Seen",oe.ONCHAIN="Onchain",oe.DUALOPEND_OPEN_INIT="Dual Open Initialized",oe.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",oe}(_||{}),r=function(oe){return oe.INITIATED="Initiated",oe.PREIMAGE_REVEALED="Preimage Revealed",oe.HTLC_PUBLISHED="HTLC Published",oe.SUCCESS="Successful",oe.FAILED="Failed",oe.INVOICE_SETTLED="Invoice Settled",oe}(r||{}),v=function(oe){return oe.LOOP_OUT="LOOP_OUT",oe.LOOP_IN="LOOP_IN",oe}(v||{}),V=function(oe){return oe.SWAP_OUT="SWAP_OUT",oe.SWAP_IN="SWAP_IN",oe}(V||{}),N=function(oe){return oe["swap.created"]="Swap Created",oe["swap.expired"]="Swap Expired",oe["invoice.set"]="Invoice Set",oe["invoice.paid"]="Invoice Paid",oe["invoice.pending"]="Invoice Pending",oe["invoice.settled"]="Invoice Settled",oe["invoice.failedToPay"]="Invoice Failed To Pay",oe["channel.created"]="Channel Created",oe["transaction.failed"]="Transaction Failed",oe["transaction.mempool"]="Transaction Mempool",oe["transaction.claimed"]="Transaction Claimed",oe["transaction.refunded"]="Transaction Refunded",oe["transaction.confirmed"]="Transaction Confirmed",oe["transaction.lockupFailed"]="Lockup Transaction Failed",oe["swap.refunded"]="Swap Refunded",oe["swap.abandoned"]="Swap Abandoned",oe}(N||{});const ne=[{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}],Ee=["MONTHLY","YEARLY"],qe=["password","changeme","moneyprintergobrrr"];var Ke=function(oe){return oe.UN_INITIATED="UN_INITIATED",oe.INITIATED="INITIATED",oe.COMPLETED="COMPLETED",oe.ERROR="ERROR",oe}(Ke||{});const se={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_APPLICATION_SETTINGS:"Updating Application Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_BOLTZ_INFO:"Getting Boltz Info...",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_INFO:"Getting Loop Info...",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...",REBALANCE_CHANNEL:"Rebalancing Channel...",LOG_OUT:"Logging Out..."};var X=function(oe){return oe.INVOICE="INVOICE",oe.OFFER="OFFER",oe.KEYSEND="KEYSEND",oe}(X||{}),me=function(oe){return oe.FEES="FEES",oe.EVENTS="EVENTS",oe}(me||{}),ce=function(oe){return oe.VOID="VOID",oe.SET_API_URL_ECL="SET_API_URL_ECL",oe.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",oe.RESET_ROOT_STORE="RESET_ROOT_STORE",oe.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",oe.OPEN_SNACK_BAR="OPEN_SNACKBAR",oe.OPEN_SPINNER="OPEN_SPINNER",oe.CLOSE_SPINNER="CLOSE_SPINNER",oe.OPEN_ALERT="OPEN_ALERT",oe.CLOSE_ALERT="CLOSE_ALERT",oe.OPEN_CONFIRMATION="OPEN_CONFIRMATION",oe.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",oe.SHOW_PUBKEY="SHOW_PUBKEY",oe.FETCH_CONFIG="FETCH_CONFIG",oe.SHOW_CONFIG="SHOW_CONFIG",oe.FETCH_STORE="FETCH_STORE",oe.SET_STORE="SET_STORE",oe.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",oe.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",oe.SAVE_SETTINGS="SAVE_SETTINGS",oe.SET_SELECTED_NODE="SET_SELECTED_NODE",oe.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",oe.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",oe.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",oe.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",oe.SET_NODE_DATA="SET_NODE_DATA",oe.IS_AUTHORIZED="IS_AUTHORIZED",oe.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",oe.LOGIN="LOGIN",oe.VERIFY_TWO_FA="VERIFY_TWO_FA",oe.LOGOUT="LOGOUT",oe.RESET_PASSWORD="RESET_PASSWORD",oe.RESET_PASSWORD_RES="RESET_PASSWORD_RES",oe.FETCH_FILE="FETCH_FILE",oe.SHOW_FILE="SHOW_FILE",oe}(ce||{}),fe=function(oe){return oe.RESET_LND_STORE="RESET_LND_STORE",oe.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",oe.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",oe.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",oe.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",oe.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",oe.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",oe.FETCH_INFO_LND="FETCH_INFO_LND",oe.SET_INFO_LND="SET_INFO_LND",oe.FETCH_PEERS_LND="FETCH_PEERS_LND",oe.SET_PEERS_LND="SET_PEERS_LND",oe.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",oe.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",oe.DETACH_PEER_LND="DETACH_PEER_LND",oe.REMOVE_PEER_LND="REMOVE_PEER_LND",oe.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",oe.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",oe.ADD_INVOICE_LND="ADD_INVOICE_LND",oe.FETCH_FEES_LND="FETCH_FEES_LND",oe.SET_FEES_LND="SET_FEES_LND",oe.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",oe.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",oe.FETCH_NETWORK_LND="FETCH_NETWORK_LND",oe.SET_NETWORK_LND="SET_NETWORK_LND",oe.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",oe.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",oe.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",oe.SET_CHANNELS_LND="SET_CHANNELS_LND",oe.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",oe.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",oe.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",oe.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",oe.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",oe.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",oe.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",oe.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",oe.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",oe.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",oe.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",oe.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",oe.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",oe.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",oe.FETCH_INVOICES_LND="FETCH_INVOICES_LND",oe.SET_INVOICES_LND="SET_INVOICES_LND",oe.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",oe.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",oe.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",oe.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",oe.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",oe.FETCH_UTXOS_LND="FETCH_UTXOS_LND",oe.SET_UTXOS_LND="SET_UTXOS_LND",oe.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",oe.SET_PAYMENTS_LND="SET_PAYMENTS_LND",oe.SEND_PAYMENT_LND="SEND_PAYMENT_LND",oe.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",oe.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",oe.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",oe.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",oe.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",oe.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",oe.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",oe.GEN_SEED_LND="GEN_SEED_LND",oe.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",oe.INIT_WALLET_LND="INIT_WALLET_LND",oe.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",oe.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",oe.PEER_LOOKUP_LND="PEER_LOOKUP_LND",oe.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",oe.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",oe.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",oe.SET_LOOKUP_LND="SET_LOOKUP_LND",oe.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",oe.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",oe.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",oe.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",oe.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",oe.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",oe}(fe||{}),ke=function(oe){return oe.RESET_CLN_STORE="RESET_CLN_STORE",oe.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",oe.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",oe.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",oe.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",oe.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",oe.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",oe.SET_INFO_CLN="SET_INFO_CLN",oe.FETCH_FEES_CLN="FETCH_FEES_CLN",oe.SET_FEES_CLN="SET_FEES_CLN",oe.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",oe.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",oe.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",oe.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",oe.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",oe.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",oe.FETCH_PEERS_CLN="FETCH_PEERS_CLN",oe.SET_PEERS_CLN="SET_PEERS_CLN",oe.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",oe.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",oe.ADD_PEER_CLN="ADD_PEER_CLN",oe.DETACH_PEER_CLN="DETACH_PEER_CLN",oe.REMOVE_PEER_CLN="REMOVE_PEER_CLN",oe.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",oe.SET_CHANNELS_CLN="SET_CHANNELS_CLN",oe.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",oe.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",oe.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",oe.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",oe.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",oe.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",oe.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",oe.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",oe.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",oe.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",oe.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",oe.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",oe.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",oe.SET_LOOKUP_CLN="SET_LOOKUP_CLN",oe.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",oe.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",oe.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",oe.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",oe.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",oe.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",oe.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",oe.SET_INVOICES_CLN="SET_INVOICES_CLN",oe.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",oe.ADD_INVOICE_CLN="ADD_INVOICE_CLN",oe.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",oe.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",oe.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",oe.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",oe.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",oe.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",oe.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",oe.SET_OFFERS_CLN="SET_OFFERS_CLN",oe.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",oe.ADD_OFFER_CLN="ADD_OFFER_CLN",oe.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",oe.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",oe.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",oe.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",oe.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",oe.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",oe.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",oe}(ke||{}),mt=function(oe){return oe.RESET_ECL_STORE="RESET_ECL_STORE",oe.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",oe.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",oe.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",oe.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",oe.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",oe.FETCH_INFO_ECL="FETCH_INFO_ECL",oe.SET_INFO_ECL="SET_INFO_ECL",oe.FETCH_FEES_ECL="FETCH_FEES_ECL",oe.SET_FEES_ECL="SET_FEES_ECL",oe.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",oe.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",oe.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",oe.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",oe.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",oe.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",oe.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",oe.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",oe.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",oe.FETCH_PEERS_ECL="FETCH_PEERS_ECL",oe.SET_PEERS_ECL="SET_PEERS_ECL",oe.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",oe.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",oe.ADD_PEER_ECL="ADD_PEER_ECL",oe.DETACH_PEER_ECL="DETACH_PEER_ECL",oe.REMOVE_PEER_ECL="REMOVE_PEER_ECL",oe.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",oe.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",oe.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",oe.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",oe.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",oe.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",oe.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",oe.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",oe.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",oe.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",oe.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",oe.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",oe.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",oe.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",oe.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",oe.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",oe.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",oe.SET_INVOICES_ECL="SET_INVOICES_ECL",oe.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",oe.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",oe.ADD_INVOICE_ECL="ADD_INVOICE_ECL",oe.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",oe.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",oe.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",oe.SET_LOOKUP_ECL="SET_LOOKUP_ECL",oe.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",oe.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",oe}(mt||{});const _e=[{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"},{range:{min:30,max:31},description:"AMP support"},{range:{min:44,max:45},description:"Explicit commitment type"}];var be=function(oe){return oe.gossip_queries_ex="Gossip queries including additional information",oe.option_anchor_outputs="Anchor outputs",oe.option_data_loss_protect="Extra channel re-establish fields",oe.var_onion_optin="Variable-length routing onion payloads",oe.option_static_remotekey="Static key for remote output",oe.option_support_large_channel="Create large channels",oe.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",oe.payment_secret="Payment secret field",oe.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",oe.basic_mpp="Basic multi-part payments",oe.gossip_queries="More sophisticated gossip control",oe.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",oe.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",oe.amp="AMP",oe}(be||{}),pe=function(oe){return oe["data-loss-protect"]="Extra channel re-establish fields",oe["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",oe["gossip-queries"]="More sophisticated gossip control",oe["tlv-onion"]="Variable-length routing onion payloads",oe["ext-gossip-queries"]="Gossip queries can include additional information",oe["static-remote-key"]="Static key for remote output",oe["payment-addr"]="Payment secret field",oe["multi-path-payments"]="Basic multi-part payments",oe["wumbo-channels"]="Wumbo Channels",oe.anchors="Anchor outputs",oe["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",oe.amp="AMP",oe}(pe||{});const Ze=[{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 _t=function(oe){return oe.OFFERED="offered",oe.SETTLED="settled",oe.FAILED="failed",oe.LOCAL_FAILED="local_failed",oe}(_t||{}),ue=function(oe){return oe.ASCENDING="asc",oe.DESCENDING="desc",oe}(ue||{});const Ie=["asc","desc"],He=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:ue.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:ue.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"msatoshi_to_us",sortOrder:ue.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:z,sortBy:"state",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"expiry",sortOrder:ue.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:z,sortBy:"channel_opening_fee",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"created_at",sortOrder:ue.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:z,sortBy:"expires_at",sortOrder:ue.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:z,sortBy:"offer_id",sortOrder:ue.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:z,sortBy:"lastUpdatedAt",sortOrder:ue.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"total_fee",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"received_time",sortOrder:ue.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:z,sortBy:"date",sortOrder:ue.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:z,sortBy:"msatoshi",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],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"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount_msat",label:"Amount (Sats)"},{column:"direction"},{column:"id",label:"HTLC ID"},{column:"state"},{column:"expiry"},{column:"payment_hash"},{column:"local_trimmed"}]}},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:"issuer"},{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"}]}}},yt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:ue.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:z,sortBy:"time_stamp",sortOrder:ue.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:ue.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:z,sortBy:"balancedness",sortOrder:ue.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:ue.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:z,sortBy:"close_type",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"incoming",sortOrder:ue.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"creation_date",sortOrder:ue.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:z,sortBy:"creation_date",sortOrder:ue.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"total_amount",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:z,sortBy:"remote_alias",sortOrder:ue.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:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.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:z,sortBy:"hop_sequence",sortOrder:ue.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:z,sortBy:"initiation_time",sortOrder:ue.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:z,sortBy:"status",sortOrder:ue.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:z,sortBy:"status",sortOrder:ue.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],Ye={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"}]}}},rt=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"firstPartTimestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:z,sortBy:"receivedAt",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"totalFee",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],Yt={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:"isInitiator",label:"Initiator"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{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"}]}}},Nt_DKK="\n \n \n \n ",Et=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:w.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:w.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:w.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:w.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:w.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:w.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:w.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:w.zPk},{id:"CZK",name:"Czech Republic Koruna",iconType:"SVG",symbol:"\n \n \n \n \n \n \n \n ",class:"currency-icon-x-large"},{id:"DKK",name:"Denmark Krone",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:w.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:w.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:w.Vpi},{id:"HRK",name:"Croatia Kuna",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/15766/croatia-kuna-currency-symbol --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"HUF",name:"Hungary Forint",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/183602/forint-business-and-finance --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"},{id:"INR",name:"India Rupee",iconType:"FA",symbol:w.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:w.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:w.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:w.Vpi},{id:"PLN",name:"Poland Zloty",iconType:"SVG",symbol:"\n \n \n \n \n \n \n ",class:"currency-icon-large"},{id:"RON",name:"Romania Leu",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/64526/romania-lei-currency --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"RUB",name:"Russia Ruble",iconType:"FA",symbol:w.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:w.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:w.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:w.hb3},{id:"TWD",name:"Taiwan New Dollar",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/142061/new-taiwan-dollar --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"}];function Vt(oe){const tt=Et.find($t=>$t.id===oe);return"SVG"===tt.iconType&&"string"==typeof tt.symbol&&(tt.symbol=tt.symbol.replace('{"use strict";g.d(te,{u:()=>ae});var e=g(1626),t=g(4412),w=g(1413),S=g(8810),l=g(7673),x=g(1594),f=g(1397),I=g(6977),d=g(6354),T=g(9437),y=g(3993),F=g(4416),R=g(2462),z=g(1771),W=g(190),$=g(3536),j=g(9584),Q=g(4438),J=g(9640),ee=g(8570),ie=g(5416),ge=g(177);let ae=(()=>{class Me{constructor(de,D,n,c,m){this.httpClient=de,this.store=D,this.logger=n,this.snackBar=c,this.titleCasePipe=m,this.APIUrl=F.H$,this.lnImplementation="",this.lnImplementationUpdated=new t.t(null),this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B],this.mapAliases=(h,C)=>(h&&h.length>0?h.forEach((k,L)=>{if(C&&C.length>0)for(let _=0;_{let c=this.APIUrl+"/"+n+F.rl.PAYMENTS_API+"/decode/"+de,m="GET",h=null;return"cln"===n&&(c=this.APIUrl+"/"+n+F.rl.UTILITY_API+"/decode",h={string:de},m="POST"),this.store.dispatch((0,z.mt)({payload:F.MZ.DECODE_PAYMENT})),this.httpClient.request(m,c,{body:JSON.stringify(h),headers:{"Content-Type":"application/json"}}).pipe((0,I.Q)(this.unSubs[0]),(0,d.T)(C=>(this.store.dispatch((0,z.y0)({payload:F.MZ.DECODE_PAYMENT})),C)),(0,T.W)(C=>(D?this.handleErrorWithoutAlert("Decode Payment",F.MZ.DECODE_PAYMENT,C):this.handleErrorWithAlert("decodePaymentData",F.MZ.DECODE_PAYMENT,"Decode Payment Failed",c,C),(0,S.$)(()=>new Error(this.extractErrorMessage(C))))))}))}decodePayments(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>{let n="",c="",m=null;return"ecl"===D?(n=this.APIUrl+"/"+D+F.rl.PAYMENTS_API+"/getsentinfos",m={payments:de},c=F.MZ.GET_SENT_PAYMENTS):"cln"===D?(n=this.APIUrl+"/"+D+F.rl.UTILITY_API+"/decode",m={string:de},c=F.MZ.DECODE_PAYMENTS):(n=this.APIUrl+"/"+D+F.rl.PAYMENTS_API,m={payments:de},c=F.MZ.DECODE_PAYMENTS),this.store.dispatch((0,z.mt)({payload:c})),this.httpClient.post(n,m).pipe((0,I.Q)(this.unSubs[1]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:c})),h)),(0,T.W)(h=>(this.handleErrorWithAlert("decodePaymentsData",c,c+" Failed",n,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}getAliasesFromPubkeys(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{if(D){const c=(new e.Nl).set("pubkeys",de);return this.httpClient.get(this.APIUrl+"/"+n+F.rl.NETWORK_API+"/nodes",{params:c})}return this.httpClient.get(this.APIUrl+"/"+n+F.rl.NETWORK_API+"/node/"+de)}))}signMessage(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>{let n=this.APIUrl+"/"+D+F.rl.MESSAGE_API+"/sign";return"cln"===D&&(n=this.APIUrl+"/"+D+F.rl.UTILITY_API+"/sign"),this.store.dispatch((0,z.mt)({payload:F.MZ.SIGN_MESSAGE})),this.httpClient.post(n,{message:de}).pipe((0,I.Q)(this.unSubs[2]),(0,d.T)(c=>(this.store.dispatch((0,z.y0)({payload:F.MZ.SIGN_MESSAGE})),c)),(0,T.W)(c=>(this.handleErrorWithAlert("signMessageData",F.MZ.SIGN_MESSAGE,"Sign Message Failed",n,c),(0,S.$)(()=>new Error(this.extractErrorMessage(c))))))}))}verifyMessage(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{let c="",m=null;return"cln"===n?(c=this.APIUrl+"/"+n+F.rl.UTILITY_API+"/verify",m={message:de,zbase:D}):(c=this.APIUrl+"/"+n+F.rl.MESSAGE_API+"/verify",m={message:de,signature:D}),this.store.dispatch((0,z.mt)({payload:F.MZ.VERIFY_MESSAGE})),this.httpClient.post(c,m).pipe((0,I.Q)(this.unSubs[3]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:F.MZ.VERIFY_MESSAGE})),h)),(0,T.W)(h=>(this.handleErrorWithAlert("verifyMessageData",F.MZ.VERIFY_MESSAGE,"Verify Message Failed",c,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}bumpFee(de,D,n,c){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(m=>{const h={txid:de,outputIndex:D};return n&&(h.targetConf=n),c&&(h.satPerByte=c),this.store.dispatch((0,z.mt)({payload:F.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+m+F.rl.WALLET_API+"/bumpfee",h).pipe((0,I.Q)(this.unSubs[4]),(0,d.T)(C=>(this.store.dispatch((0,z.y0)({payload:F.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),C)),(0,T.W)(C=>(this.handleErrorWithoutAlert("Bump Fee",F.MZ.BUMP_FEE,C),(0,S.$)(()=>new Error(this.extractErrorMessage(C))))))}))}labelUTXO(de,D,n=!0){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(c=>{const m={txid:de,label:D,overwrite:n};return this.store.dispatch((0,z.mt)({payload:F.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+c+F.rl.WALLET_API+"/label",m).pipe((0,I.Q)(this.unSubs[5]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:F.MZ.LABEL_UTXO})),h)),(0,T.W)(h=>(this.handleErrorWithoutAlert("Label UTXO",F.MZ.LABEL_UTXO,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}leaseUTXO(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{const c={txid:de,outputIndex:D};return this.store.dispatch((0,z.mt)({payload:F.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+n+F.rl.WALLET_API+"/lease",c).pipe((0,I.Q)(this.unSubs[6]),(0,d.T)(m=>{this.store.dispatch((0,z.y0)({payload:F.MZ.LEASE_UTXO})),this.store.dispatch((0,W.mh)()),this.store.dispatch((0,W.SM)());const h=new Date(1e3*m.expiration);return Math.round(h.getTime())-60*h.getTimezoneOffset()}),(0,T.W)(m=>(this.handleErrorWithoutAlert("Lease UTXO",F.MZ.LEASE_UTXO,m),(0,S.$)(()=>new Error(this.extractErrorMessage(m))))))}))}getForwardingHistory(de,D,n,c){if("LND"===de){const m={end_time:n,start_time:D};return this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+F.rl.SWITCH_API,m).pipe((0,I.Q)(this.unSubs[7]),(0,y.E)(this.store.select($.eO)),(0,f.Z)(([h,C])=>{if(h.forwarding_events){const k=[...C.channels,...C.closedChannels];h.forwarding_events.forEach(L=>{if(k&&k.length>0)for(let _=0;_(this.handleErrorWithAlert("getForwardingHistoryData",F.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+F.rl.SWITCH_API,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}return"CLN"===de?(this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+F.rl.CHANNELS_API+"/listForwards",{status:c||"settled"}).pipe((0,I.Q)(this.unSubs[8]),(0,y.E)(this.store.select(j.BM)),(0,f.Z)(([m,h])=>{const C=this.mapAliases(m,[...h.activeChannels,...h.pendingChannels,...h.inactiveChannels]);return this.store.dispatch((0,z.y0)({payload:F.MZ.GET_FORWARDING_HISTORY})),(0,l.of)(C)}),(0,T.W)(m=>(this.handleErrorWithAlert("getForwardingHistoryData",F.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+F.rl.CHANNELS_API+"/listForwards",m),(0,S.$)(()=>new Error(this.extractErrorMessage(m))))))):(0,l.of)({})}listNetworkNodes(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>(this.store.dispatch((0,z.mt)({payload:F.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+D+F.rl.NETWORK_API+"/listNodes",de).pipe((0,I.Q)(this.unSubs[9]),(0,f.Z)(n=>(this.store.dispatch((0,z.y0)({payload:F.MZ.LIST_NETWORK_NODES})),(0,l.of)(n))),(0,T.W)(n=>(this.handleErrorWithoutAlert("List Network Nodes",F.MZ.LIST_NETWORK_NODES,n),(0,S.$)(()=>this.extractErrorMessage(n))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(de=>(this.store.dispatch((0,z.mt)({payload:F.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+de+F.rl.UTILITY_API+"/listConfigs").pipe((0,I.Q)(this.unSubs[10]),(0,f.Z)(D=>(this.store.dispatch((0,z.y0)({payload:F.MZ.GET_LIST_CONFIGS})),(0,l.of)(D))),(0,T.W)(D=>(this.handleErrorWithoutAlert("List Configurations",F.MZ.GET_LIST_CONFIGS,D),(0,S.$)(()=>this.extractErrorMessage(D))))))))}getOrUpdateFunderPolicy(de,D,n,c,m,h){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(C=>{const k=de?{policy:de,policy_mod:D,lease_fee_base_msat:n,lease_fee_basis:c,channel_fee_max_base_msat:m,channel_fee_max_proportional_thousandths:h}:null;return this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+C+F.rl.CHANNELS_API+"/funderUpdate",k).pipe((0,I.Q)(this.unSubs[11]),(0,d.T)(L=>(this.store.dispatch((0,z.y0)({payload:F.MZ.GET_FUNDER_POLICY})),k&&this.store.dispatch((0,z.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+L.compact_lease+"!"})),L)),(0,T.W)(L=>(this.handleErrorWithoutAlert("Funder Policy",F.MZ.GET_FUNDER_POLICY,L),(0,S.$)(()=>new Error(this.extractErrorMessage(L))))))}))}circularRebalance(de,D="",n="",c="",m="",h=[],C="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+F.rl.CHANNELS_API+"/circularRebalance",{amountMsat:de,sourceShortChannelId:D,sourceNodeId:n,targetShortChannelId:c,targetNodeId:m,ignoreNodeIds:h,format:C}).pipe((0,I.Q)(this.unSubs[12]),(0,d.T)(_=>_),(0,T.W)(_=>(this.handleErrorWithoutAlert("Rebalance Channel",F.MZ.REBALANCE_CHANNEL,_),(0,S.$)(()=>_.error))))}extractErrorMessage(de,D="Unknown Error."){return this.titleCasePipe.transform(de.error.text&&"string"==typeof de.error.text&&de.error.text.includes('')?"API Route Does Not Exist.":de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&de.error.error.error.error.error&&"string"==typeof de.error.error.error.error.error?de.error.error.error.error.error:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&"string"==typeof de.error.error.error.error?de.error.error.error.error:de.error&&de.error.error&&de.error.error.error&&"string"==typeof de.error.error.error?de.error.error.error:de.error&&de.error.error&&"string"==typeof de.error.error?de.error.error:de.error&&"string"==typeof de.error?de.error:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&de.error.error.error.error.message&&"string"==typeof de.error.error.error.error.message?de.error.error.error.error.message:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.message&&"string"==typeof de.error.error.error.message?de.error.error.error.message:de.error&&de.error.error&&de.error.error.message&&"string"==typeof de.error.error.message?de.error.error.message:de.error&&de.error.message&&"string"==typeof de.error.message?de.error.message:de.message&&"string"==typeof de.message?de.message:D)}handleErrorWithoutAlert(de,D,n){n.error.text&&"string"==typeof n.error.text&&n.error.text.includes('')&&(n={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+de+"\n"+JSON.stringify(n)),401===n.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.Jh)()),this.store.dispatch((0,z.ri)({payload:"Authentication Failed: "+JSON.stringify(n.error)}))):(this.store.dispatch((0,z.y0)({payload:D})),this.store.dispatch((0,z.Gd)({payload:{action:de,status:F.wn.ERROR,statusCode:n.status.toString(),message:this.extractErrorMessage(n)}})))}handleErrorWithAlert(de,D,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.Jh)()),this.store.dispatch((0,z.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,z.y0)({payload:D}));const h=this.extractErrorMessage(m);this.store.dispatch((0,z.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status?m.status:"Unknown Error",message:h,URL:c},component:R.f}}})),this.store.dispatch((0,z.Gd)({payload:{action:de,status:F.wn.ERROR,statusCode:m.status.toString(),message:h,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(de=>{de.next(null),de.complete()})}static#e=this.\u0275fac=function(D){return new(D||Me)(Q.KVO(e.Qq),Q.KVO(J.il),Q.KVO(ee.gP),Q.KVO(ie.UG),Q.KVO(ge.PV))};static#t=this.\u0275prov=Q.jDH({token:Me,factory:Me.\u0275fac})}return Me})()},8570:(Qe,te,g)=>{"use strict";g.d(te,{gP:()=>l,tU:()=>x});var e=g(4438);const t=(0,e.naY)(),w=()=>null;let l=(()=>{class f{invokeConsoleMethod(d,T){}static#e=this.\u0275fac=function(T){return new(T||f)};static#t=this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}return f})(),x=(()=>{class f{get info(){return t?console.log.bind(console):w}get warn(){return t?console.warn.bind(console):w}get error(){return t?console.error.bind(console):w}invokeConsoleMethod(d,T){(console[d]||console.log||w).apply(console,[T])}static#e=this.\u0275fac=function(T){return new(T||f)};static#t=this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}return f})()},4104:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>$});var e=g(1626),t=g(4412),w=g(1413),S=g(7673),l=g(8810),x=g(6977),f=g(9437),I=g(6354),d=g(4416),T=g(2462),y=g(1771),F=g(4438),R=g(8570),z=g(9640),W=g(2571);let $=(()=>{class j{constructor(J,ee,ie,ge){this.httpClient=J,this.logger=ee,this.store=ie,this.commonService=ge,this.loopUrl="",this.swaps=[],this.swapsChanged=new t.t([]),this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B]}getLoopInfo(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,y.mt)({payload:d.MZ.GET_LOOP_SWAPS})),this.loopUrl=d.H$+d.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:J=>{this.store.dispatch((0,y.y0)({payload:d.MZ.GET_LOOP_SWAPS})),this.swaps=J,this.swapsChanged.next(this.swaps)},error:J=>this.swapsChanged.error(this.handleErrorWithAlert(d.MZ.GET_LOOP_SWAPS,this.loopUrl,J))})}loopOut(J,ee,ie,ge,ae,Me,Te,de,D,n){const c={amount:J,targetConf:ie,swapRoutingFee:ge,minerFee:ae,prepayRoutingFee:Me,prepayAmt:Te,swapFee:de,swapPublicationDeadline:D,destAddress:n};return""!==ee&&(c.chanId=ee),this.loopUrl=d.H$+d.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,c).pipe((0,f.W)(m=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ee,d.MZ.NO_SPINNER,m)))}getLoopOutTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop Out Terms",d.MZ.NO_SPINNER,J)))}getLoopOutQuote(J,ee,ie){let ge=new e.Nl;return ge=ge.append("targetConf",ee.toString()),ge=ge.append("swapPublicationDeadline",ie.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/quote/"+J,this.store.dispatch((0,y.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ge}).pipe((0,x.Q)(this.unSubs[1]),(0,I.T)(ae=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_QUOTE})),ae)),(0,f.W)(ae=>this.handleErrorWithoutAlert("Loop Out Quote",d.MZ.GET_QUOTE,ae)))}getLoopOutTermsAndQuotes(J){let ee=new e.Nl;return ee=ee.append("targetConf",J.toString()),ee=ee.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ee}).pipe((0,x.Q)(this.unSubs[2]),(0,I.T)(ie=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ie)),(0,f.W)(ie=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ie))))}loopIn(J,ee,ie,ge,ae){const Me={amount:J,swapFee:ee,minerFee:ie,lastHop:ge,externalHtlc:ae};return this.loopUrl=d.H$+d.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,Me).pipe((0,f.W)(Te=>this.handleErrorWithoutAlert("Loop In",d.MZ.NO_SPINNER,Te)))}getLoopInTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop In Terms",d.MZ.NO_SPINNER,J)))}getLoopInQuote(J,ee,ie){let ge=new e.Nl;return ge=ge.append("targetConf",ee.toString()),ge=ge.append("swapPublicationDeadline",ie.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/quote/"+J,this.store.dispatch((0,y.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ge}).pipe((0,x.Q)(this.unSubs[3]),(0,I.T)(ae=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_QUOTE})),ae)),(0,f.W)(ae=>this.handleErrorWithoutAlert("Loop In Qoute",d.MZ.GET_QUOTE,ae)))}getLoopInTermsAndQuotes(J){let ee=new e.Nl;return ee=ee.append("targetConf",J.toString()),ee=ee.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ee}).pipe((0,x.Q)(this.unSubs[4]),(0,I.T)(ie=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ie)),(0,f.W)(ie=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ie))))}getSwap(J){return this.loopUrl=d.H$+d.rl.LOOP_API+"/swap/"+J,this.httpClient.get(this.loopUrl).pipe((0,f.W)(ee=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+J,d.MZ.NO_SPINNER,ee)))}handleErrorWithoutAlert(J,ee,ie){let ge="";return this.logger.error("ERROR IN: "+J+"\n"+JSON.stringify(ie)),this.store.dispatch((0,y.y0)({payload:ee})),401===ie.status?(ge="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:ge}))):503===ie.status?(ge="Unable to Connect to Loop Server.",this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:J},component:T.f}}}))):ge=this.commonService.extractErrorMessage(ie),(0,l.$)(()=>new Error(ge))}handleErrorWithAlert(J,ee,ie){let ge="";if(this.logger.error(ie),this.store.dispatch((0,y.y0)({payload:J})),401===ie.status)ge="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:ge}));else if(503===ie.status)ge="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:ee},component:T.f}}}))},100);else{ge=this.commonService.extractErrorMessage(ie);const ae=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,y.xO)({payload:{data:{type:d.A$.ERROR,alertTitle:"ERROR",message:{code:ae,message:ge,URL:ee},component:T.f}}}))},100)}return{message:ge}}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static#e=this.\u0275fac=function(ee){return new(ee||j)(F.KVO(e.Qq),F.KVO(R.gP),F.KVO(z.il),F.KVO(W.h))};static#t=this.\u0275prov=F.jDH({token:j,factory:j.\u0275fac})}return j})()},3202:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>w});var e=g(1413),t=g(4438);let w=(()=>{class S{constructor(){this.sessionSub=new e.B}watchSession(){return this.sessionSub.asObservable()}getItem(x){return sessionStorage.getItem(x)}getAllItems(){return sessionStorage}setItem(x,f){sessionStorage.setItem(x,f),this.sessionSub.next(sessionStorage)}removeItem(x){sessionStorage.removeItem(x),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275prov=t.jDH({token:S,factory:S.\u0275fac})}return S})()},7879:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>z});var e=g(4412),t=g(1413),w=g(6977),S=g(7707),l=g(1985),x=g(8359),f=g(2771);const I={url:"",deserializer:W=>JSON.parse(W.data),serializer:W=>JSON.stringify(W)};class T extends t.k{constructor($,j){if(super(),this._socket=null,$ instanceof l.c)this.destination=j,this.source=$;else{const Q=this._config=Object.assign({},I);if(this._output=new t.B,"string"==typeof $)Q.url=$;else for(const J in $)$.hasOwnProperty(J)&&(Q[J]=$[J]);if(!Q.WebSocketCtor&&WebSocket)Q.WebSocketCtor=WebSocket;else if(!Q.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new f.m}}lift($){const j=new T(this._config,this.destination);return j.operator=$,j.source=this,j}_resetState(){this._socket=null,this.source||(this.destination=new f.m),this._output=new t.B}multiplex($,j,Q){const J=this;return new l.c(ee=>{try{J.next($())}catch(ge){ee.error(ge)}const ie=J.subscribe({next:ge=>{try{Q(ge)&&ee.next(ge)}catch(ae){ee.error(ae)}},error:ge=>ee.error(ge),complete:()=>ee.complete()});return()=>{try{J.next(j())}catch(ge){ee.error(ge)}ie.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:$,protocol:j,url:Q,binaryType:J}=this._config,ee=this._output;let ie=null;try{ie=j?new $(Q,j):new $(Q),this._socket=ie,J&&(this._socket.binaryType=J)}catch(ae){return void ee.error(ae)}const ge=new x.yU(()=>{this._socket=null,ie&&1===ie.readyState&&ie.close()});ie.onopen=ae=>{const{_socket:Me}=this;if(!Me)return ie.close(),void this._resetState();const{openObserver:Te}=this._config;Te&&Te.next(ae);const de=this.destination;this.destination=S.vU.create(D=>{if(1===ie.readyState)try{const{serializer:n}=this._config;ie.send(n(D))}catch(n){this.destination.error(n)}},D=>{const{closingObserver:n}=this._config;n&&n.next(void 0),D&&D.code?ie.close(D.code,D.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:D}=this._config;D&&D.next(void 0),ie.close(),this._resetState()}),de&&de instanceof f.m&&ge.add(de.subscribe(this.destination))},ie.onerror=ae=>{this._resetState(),ee.error(ae)},ie.onclose=ae=>{ie===this._socket&&this._resetState();const{closeObserver:Me}=this._config;Me&&Me.next(ae),ae.wasClean?ee.complete():ee.error(ae)},ie.onmessage=ae=>{try{const{deserializer:Me}=this._config;ee.next(Me(ae))}catch(Me){ee.error(Me)}}}_subscribe($){const{source:j}=this;return j?j.subscribe($):(this._socket||this._connectSocket(),this._output.subscribe($),$.add(()=>{const{_socket:Q}=this;0===this._output.observers.length&&(Q&&(1===Q.readyState||0===Q.readyState)&&Q.close(),this._resetState())}),$)}unsubscribe(){const{_socket:$}=this;$&&(1===$.readyState||0===$.readyState)&&$.close(),this._resetState(),super.unsubscribe()}}var y=g(4438),F=g(8570),R=g(3202);let z=(()=>{class W{constructor(j,Q){this.logger=j,this.sessionService=Q,this.clWSMessages=new e.t(null),this.eclWSMessages=new e.t(null),this.lndWSMessages=new e.t(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}connectWebSocket(j,Q){(!this.socket||this.socket.closed)&&(this.wsUrl=j,this.nodeIndex=Q,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new T({url:j,protocol:[this.sessionService.getItem("token")||"",Q]}),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(){this.socket?.pipe((0,w.Q)(this.unSubs[1])).subscribe({next:j=>{if((j="string"==typeof j?JSON.parse(j):j).error)this.handleError(j.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(j)),j.source){case"LND":this.lndWSMessages.next(j);break;case"CLN":this.clWSMessages.next(j);break;case"ECL":this.eclWSMessages.next(j)}},error:j=>this.handleError(j),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(j){this.logger.error(j),this.clWSMessages.error(j),this.eclWSMessages.error(j),this.lndWSMessages.error(j),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()}static#e=this.\u0275fac=function(Q){return new(Q||W)(y.KVO(F.gP),y.KVO(R.Q))};static#t=this.\u0275prov=y.jDH({token:W,factory:W.\u0275fac})}return W})()},9029:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>as});var e=g(177),t=g(1188),w=g(9417),S=g(1626),l=g(60),x=g(4438),f=g(9340),I=g(6038),d=g(2920);g(4085);let ct=(()=>{class Ft{}return Ft.\u0275fac=function(xt){return new(xt||Ft)},Ft.\u0275mod=x.$C({type:Ft}),Ft.\u0275inj=x.G2t({imports:[f.Ui]}),Ft})(),Ut=(()=>{class Ft{constructor(xt,ai){(0,e.Vy)(ai)&&!xt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(xt,ai=[]){return{ngModule:Ft,providers:xt.serverLoaded?[{provide:f.EA,useValue:{...f.PV,...xt}},{provide:f.SL,useValue:ai,multi:!0},{provide:f.Ce,useValue:!0}]:[{provide:f.EA,useValue:{...f.PV,...xt}},{provide:f.SL,useValue:ai,multi:!0}]}}}return Ft.\u0275fac=function(xt){return new(xt||Ft)(x.KVO(f.Ce),x.KVO(x.Agw))},Ft.\u0275mod=x.$C({type:Ft}),Ft.\u0275inj=x.G2t({imports:[d.w2,I.Cc,ct,d.w2,I.Cc,ct]}),Ft})();var xi=g(9327),Si=g(6600),zi=g(5351),en=g(850),Ni=g(1975),fn=g(8834),Zt=g(8617);g(5024);const re=["button"],je=["*"];function Ce(Ft,ri){if(1&Ft&&x.nrm(0,"mat-pseudo-checkbox",3),2&Ft){const xt=x.XpG();x.Y8G("disabled",xt.disabled)}}function ot(Ft,ri){if(1&Ft&&x.nrm(0,"mat-pseudo-checkbox",3),2&Ft){const xt=x.XpG();x.Y8G("disabled",xt.disabled)}}const ut=new x.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function ii(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1}}}),si=new x.nKC("MatButtonToggleGroup");let mn=0;class Fn{constructor(ri,xt){this.source=ri,this.value=xt}}let Yn=(()=>{class Ft{get buttonId(){return`${this.id}-button`}get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance(xt){this._appearance=xt}get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked(xt){xt!==this._checked&&(this._checked=xt,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled(xt){this._disabled=xt}constructor(xt,ai,Ei,Ki,tr,Or){this._changeDetectorRef=ai,this._elementRef=Ei,this._focusMonitor=Ki,this._checked=!1,this.ariaLabelledby=null,this._disabled=!1,this.change=new x.bkB;const Fr=Number(tr);this.tabIndex=Fr||0===Fr?Fr:null,this.buttonToggleGroup=xt,this.appearance=Or&&Or.appearance?Or.appearance:"standard"}ngOnInit(){const xt=this.buttonToggleGroup;this.id=this.id||"mat-button-toggle-"+mn++,xt&&(xt._isPrechecked(this)?this.checked=!0:xt._isSelected(this)!==this._checked&&xt._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const xt=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),xt&&xt._isSelected(this)&&xt._syncButtonToggle(this,!1,!1,!0)}focus(xt){this._buttonElement.nativeElement.focus(xt)}_onButtonClick(){const xt=!!this._isSingleSelector()||!this._checked;xt!==this._checked&&(this._checked=xt,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.change.emit(new Fn(this,this.value))}_markForCheck(){this._changeDetectorRef.markForCheck()}_getButtonName(){return this._isSingleSelector()?this.buttonToggleGroup.name:this.name||null}_isSingleSelector(){return this.buttonToggleGroup&&!this.buttonToggleGroup.multiple}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.rXU(si,8),x.rXU(x.gRc),x.rXU(x.aKT),x.rXU(Zt.FN),x.kS0("tabindex"),x.rXU(ut,8))};static#t=this.\u0275cmp=x.VBU({type:Ft,selectors:[["mat-button-toggle"]],viewQuery:function(ai,Ei){if(1&ai&&x.GBs(re,5),2&ai){let Ki;x.mGM(Ki=x.lsd())&&(Ei._buttonElement=Ki.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:12,hostBindings:function(ai,Ei){1&ai&&x.bIt("focus",function(){return Ei.focus()}),2&ai&&(x.BMQ("aria-label",null)("aria-labelledby",null)("id",Ei.id)("name",null),x.AVh("mat-button-toggle-standalone",!Ei.buttonToggleGroup)("mat-button-toggle-checked",Ei.checked)("mat-button-toggle-disabled",Ei.disabled)("mat-button-toggle-appearance-standard","standard"===Ei.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",x.L39],appearance:"appearance",checked:[2,"checked","checked",x.L39],disabled:[2,"disabled","disabled",x.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],standalone:!0,features:[x.GFd,x.aNF],ngContentSelectors:je,decls:8,vars:11,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-label-content"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"]],template:function(ai,Ei){if(1&ai){const Ki=x.RV6();x.NAR(),x.j41(0,"button",1,0),x.bIt("click",function(){return x.eBV(Ki),x.Njj(Ei._onButtonClick())}),x.j41(2,"span",2),x.DNE(3,Ce,1,1,"mat-pseudo-checkbox",3)(4,ot,1,1,"mat-pseudo-checkbox",3),x.SdG(5),x.k0s()(),x.nrm(6,"span",4)(7,"span",5)}if(2&ai){const Ki=x.sdS(1);x.Y8G("id",Ei.buttonId)("disabled",Ei.disabled||null),x.BMQ("tabindex",Ei.disabled?-1:Ei.tabIndex)("aria-pressed",Ei.checked)("name",Ei._getButtonName())("aria-label",Ei.ariaLabel)("aria-labelledby",Ei.ariaLabelledby),x.R7$(3),x.vxM(Ei.buttonToggleGroup&&Ei.checked&&!Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideSingleSelectionIndicator?3:-1),x.R7$(),x.vxM(Ei.buttonToggleGroup&&Ei.checked&&Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideMultipleSelectionIndicator?4:-1),x.R7$(3),x.Y8G("matRippleTrigger",Ki)("matRippleDisabled",Ei.disableRipple||Ei.disabled)}},dependencies:[Si.r6,Si.wg],styles:[".mat-button-toggle-standalone,.mat-button-toggle-group{position:relative;display:inline-flex;flex-direction:row;white-space:nowrap;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);transform:translateZ(0);border-radius:var(--mat-legacy-button-toggle-shape)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.cdk-high-contrast-active .mat-button-toggle-standalone,.cdk-high-contrast-active .mat-button-toggle-group{outline:solid 1px}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border-radius:var(--mat-standard-button-toggle-shape);border:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-standard-button-toggle-selected-state-text-color )}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.cdk-high-contrast-active .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.cdk-high-contrast-active .mat-button-toggle-group-appearance-standard{outline:0}.mat-button-toggle-vertical{flex-direction:column}.mat-button-toggle-vertical .mat-button-toggle-label-content{display:block}.mat-button-toggle{white-space:nowrap;position:relative;color:var(--mat-legacy-button-toggle-text-color);font-family:var(--mat-legacy-button-toggle-label-text-font);font-size:var(--mat-legacy-button-toggle-label-text-size);line-height:var(--mat-legacy-button-toggle-label-text-line-height);font-weight:var(--mat-legacy-button-toggle-label-text-weight);letter-spacing:var(--mat-legacy-button-toggle-label-text-tracking);--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-legacy-button-toggle-selected-state-text-color )}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-legacy-button-toggle-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle .mat-pseudo-checkbox{margin-right:12px}[dir=rtl] .mat-button-toggle .mat-pseudo-checkbox{margin-right:0;margin-left:12px}.mat-button-toggle-checked{color:var(--mat-legacy-button-toggle-selected-state-text-color);background-color:var(--mat-legacy-button-toggle-selected-state-background-color)}.mat-button-toggle-disabled{color:var(--mat-legacy-button-toggle-disabled-state-text-color);background-color:var(--mat-legacy-button-toggle-disabled-state-background-color);--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-legacy-button-toggle-disabled-state-text-color )}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-legacy-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard{color:var(--mat-standard-button-toggle-text-color);background-color:var(--mat-standard-button-toggle-background-color);font-family:var(--mat-standard-button-toggle-label-text-font);font-size:var(--mat-standard-button-toggle-label-text-size);line-height:var(--mat-standard-button-toggle-label-text-line-height);font-weight:var(--mat-standard-button-toggle-label-text-weight);letter-spacing:var(--mat-standard-button-toggle-label-text-tracking)}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-standard-button-toggle-divider-color)}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:none;border-top:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-selected-state-text-color);background-color:var(--mat-standard-button-toggle-selected-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-standard-button-toggle-disabled-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-standard-button-toggle-disabled-selected-state-text-color )}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-disabled-selected-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-standard-button-toggle-state-layer-color)}.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):hover .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-hover-state-layer-opacity)}.mat-button-toggle-appearance-standard.cdk-keyboard-focused:not(.mat-button-toggle-disabled) .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-focus-state-layer-opacity)}@media(hover: none){.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):hover .mat-button-toggle-focus-overlay{display:none}}.mat-button-toggle-label-content{-webkit-user-select:none;user-select:none;display:inline-block;padding:0 16px;line-height:var(--mat-legacy-button-toggle-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-standard-button-toggle-height)}.mat-button-toggle-label-content>*{vertical-align:middle}.mat-button-toggle-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;pointer-events:none;opacity:0;background-color:var(--mat-legacy-button-toggle-state-layer-color)}.cdk-high-contrast-active .mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.cdk-high-contrast-active .mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.cdk-high-contrast-active .mat-button-toggle-checked.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{border-bottom:solid 500px}.mat-button-toggle .mat-button-toggle-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-toggle-button{border:0;background:none;color:inherit;padding:0;margin:0;font:inherit;outline:none;width:100%;cursor:pointer}.mat-button-toggle-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-standard-button-toggle-shape);border-bottom-right-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-standard-button-toggle-shape);border-bottom-left-radius:var(--mat-standard-button-toggle-shape)}"],encapsulation:2,changeDetection:0})}return Ft})(),Qn=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({imports:[Si.yE,Si.pZ,Yn,Si.yE]})}return Ft})();var rr=g(5596),Rn=g(2765),_i=g(5084),Oi=g(9454),jt=g(6195),Ci=g(9213),hi=g(9631),yi=g(3902),Vi=g(9115),ji=g(6695),rn=g(7575),ar=g(9183),sr=g(5951),nr=g(2798),or=g(882),Xr=g(450),Sr=g(6860);g(1413);let kr=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({imports:[Si.yE,Si.pZ]})}return Ft})();var ha=g(5416),Br=g(2042),Ua=g(6013),rs=g(9159),Ga=g(6850),Na=g(5911),ja=g(4823),Bo=g(7358),Uo=g(6471),uo=g(6064),ga=g(8288),Za=g(497),Lr=g(6969);let _a=(()=>{class Ft extends Lr.Sf{constructor(xt,ai){super(xt,ai)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.rXU(e.qQ),x.rXU(Sr.OD))};static#t=this.\u0275dir=x.FsC({type:Ft,features:[x.Vt3]})}return Ft})();var Oo=g(8570),qr=g(4416),Bn=g(2929);const Da={suppressScrollX:!1,suppressScrollY:!1};let Go=(()=>{class Ft extends Si.xW{constructor(xt){super(xt)}format(xt,ai){if("input"===ai){let Ei=xt.getDate().toString();return Ei=+Ei<10?"0"+Ei:Ei,Ei+"/"+qr.KR[xt.getMonth()].name.toUpperCase()+"/"+xt.getFullYear()}return qr.KR[xt.getMonth()].name.toUpperCase()+" "+xt.getFullYear()}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.KVO(Si.Ju,8))};static#t=this.\u0275prov=x.jDH({token:Ft,factory:Ft.\u0275fac})}return Ft})();const Wa={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 as=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({providers:[{provide:Oo.gP,useClass:Oo.tU},{provide:Za.kU,useValue:Da},{provide:ha.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:zi.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:Si.MJ,useClass:Go},{provide:Si.de,useValue:Wa},{provide:Lr.Sf,useClass:_a},e.QX,e.PV,e.vh,Bn.gZ,Bn.ZE,Bn.VD,Bn.Qu],imports:[e.MD,w.YN,w.X1,l.dX,Ut,xi.RH,zi.hM,fn.Hl,Qn,rr.Hu,Rn.g7,Oi.MY,jt.Fe,_i.X6,Si.WX,Ci.m_,hi.fS,yi.Fg,Vi.Cn,rn.PO,ar.D6,sr.Wk,Bo.jH,Uo.YN,nr.Ve,or.vg,Xr.mV,Br.NQ,rs.tP,Na.s5,ja.uc,Ni.Y,ji.Ou,Ua.aP,kr,Ga.RI,ha._T,en.jL,uo.dV,ga.XK,t.iI,S.q1,Za.U$,w.YN,w.X1,l.dX,Ut,xi.RH,zi.hM,fn.Hl,Qn,rr.Hu,Rn.g7,Oi.MY,jt.Fe,_i.X6,Si.WX,Ci.m_,hi.fS,yi.Fg,Vi.Cn,rn.PO,ar.D6,sr.Wk,Bo.jH,Uo.YN,nr.Ve,or.vg,Xr.mV,Br.NQ,rs.tP,Na.s5,ja.uc,Ni.Y,ji.Ou,Ua.aP,kr,Ga.RI,ha._T,en.jL,uo.dV,ga.XK,Za.U$]})}return Ft})()},1771:(Qe,te,g)=>{"use strict";g.d(te,{Dz:()=>W,Fl:()=>Me,Gd:()=>l,I1:()=>F,IK:()=>J,Jh:()=>x,My:()=>S,NU:()=>Q,Np:()=>ge,OP:()=>z,Qi:()=>ee,R$:()=>y,T$:()=>ie,Tn:()=>j,UI:()=>f,iD:()=>m,mt:()=>I,oz:()=>n,rc:()=>ae,ri:()=>Te,t2:()=>C,uP:()=>R,xO:()=>T,xw:()=>de,y0:()=>d});var e=g(9640),t=g(4416);(0,e.VP)(t.aU.VOID);const S=(0,e.VP)(t.aU.SET_API_URL_ECL,(0,e.xk)()),l=(0,e.VP)(t.aU.UPDATE_API_CALL_STATUS_ROOT,(0,e.xk)()),x=(0,e.VP)(t.aU.CLOSE_ALL_DIALOGS),f=(0,e.VP)(t.aU.OPEN_SNACK_BAR,(0,e.xk)()),I=(0,e.VP)(t.aU.OPEN_SPINNER,(0,e.xk)()),d=(0,e.VP)(t.aU.CLOSE_SPINNER,(0,e.xk)()),T=(0,e.VP)(t.aU.OPEN_ALERT,(0,e.xk)()),y=(0,e.VP)(t.aU.CLOSE_ALERT,(0,e.xk)()),F=(0,e.VP)(t.aU.OPEN_CONFIRMATION,(0,e.xk)()),R=(0,e.VP)(t.aU.CLOSE_CONFIRMATION,(0,e.xk)()),z=(0,e.VP)(t.aU.SHOW_PUBKEY),W=(0,e.VP)(t.aU.FETCH_CONFIG,(0,e.xk)()),j=((0,e.VP)(t.aU.SHOW_CONFIG,(0,e.xk)()),(0,e.VP)(t.aU.RESET_ROOT_STORE,(0,e.xk)())),Q=(0,e.VP)(t.aU.FETCH_APPLICATION_SETTINGS),J=(0,e.VP)(t.aU.SET_APPLICATION_SETTINGS,(0,e.xk)()),ee=(0,e.VP)(t.aU.SET_SELECTED_NODE,(0,e.xk)()),ie=(0,e.VP)(t.aU.UPDATE_NODE_SETTINGS,(0,e.xk)()),ge=(0,e.VP)(t.aU.SET_SELECTED_NODE_SETTINGS,(0,e.xk)()),ae=(0,e.VP)(t.aU.UPDATE_APPLICATION_SETTINGS,(0,e.xk)()),Me=(0,e.VP)(t.aU.SET_NODE_DATA,(0,e.xk)()),Te=(0,e.VP)(t.aU.LOGOUT,(0,e.xk)()),de=(0,e.VP)(t.aU.RESET_PASSWORD,(0,e.xk)()),n=((0,e.VP)(t.aU.RESET_PASSWORD_RES,(0,e.xk)()),(0,e.VP)(t.aU.IS_AUTHORIZED,(0,e.xk)())),m=((0,e.VP)(t.aU.IS_AUTHORIZED_RES,(0,e.xk)()),(0,e.VP)(t.aU.LOGIN,(0,e.xk)())),C=((0,e.VP)(t.aU.VERIFY_TWO_FA,(0,e.xk)()),(0,e.VP)(t.aU.FETCH_FILE,(0,e.xk)()));(0,e.VP)(t.aU.SHOW_FILE,(0,e.xk)())},7541:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>je});var e=g(4438),t=g(4054),w=g(1413),S=g(7673),l=g(6354),x=g(6697),f=g(3993),I=g(1397),d=g(9437),T=g(6977),y=g(4416),F=g(5351),R=g(2920),z=g(9183);let W=(()=>{class Ce{constructor(ut,ii){this.dialogRef=ut,this.data=ii}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-spinner-dialog"]],decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(ii,si){1&ii&&(e.j41(0,"div",0),e.nrm(1,"mat-progress-spinner",1),e.j41(2,"h2"),e.EFF(3),e.k0s()()),2&ii&&(e.R7$(3),e.JRh(si.data.titleMessage))},dependencies:[R.DJ,R.sA,z.LG],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]})}return Ce})();var $=g(5383),j=g(9647),Q=g(8570),J=g(5416),ee=g(2571),ie=g(1188),ge=g(9640),ae=g(177),Me=g(60),Te=g(6038),de=g(8834),D=g(5596),n=g(9213),c=g(1997),m=g(4823),h=g(8288),C=g(497),k=g(9157),L=g(9587);const _=["scrollContainer"],r=Ce=>({"display-none":Ce}),v=Ce=>({"h-40":Ce}),V=Ce=>({"failed-status":Ce});function N(Ce,ot){if(1&Ce&&e.nrm(0,"qr-code",19),2&Ce){const ut=e.XpG();e.Y8G("value",ut.showQRField)("size",200)("errorCorrectionLevel","L")}}function ne(Ce,ot){1&Ce&&e.eu8(0)}function Ee(Ce,ot){if(1&Ce&&(e.qex(0),e.j41(1,"mat-card-content",20,1),e.DNE(3,ne,1,0,"ng-container",21),e.k0s(),e.bVm()),2&Ce){const ut=e.XpG(),ii=e.sdS(20);e.R7$(),e.Y8G("ngClass",e.eq3(2,v,ut.data.scrollable)),e.R7$(2),e.Y8G("ngTemplateOutlet",ii)}}function ze(Ce,ot){1&Ce&&e.eu8(0)}function qe(Ce,ot){if(1&Ce&&(e.qex(0),e.j41(1,"mat-card-content",22),e.DNE(2,ze,1,0,"ng-container",21),e.k0s(),e.bVm()),2&Ce){e.XpG();const ut=e.sdS(20);e.R7$(2),e.Y8G("ngTemplateOutlet",ut)}}function Ke(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",26),e.EFF(1,"arrow_downward"),e.k0s())}function se(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",26),e.EFF(1,"arrow_upward"),e.k0s())}function X(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onScroll())}),e.DNE(2,Ke,2,0,"mat-icon",25)(3,se,2,0,"mat-icon",25),e.k0s()()}if(2&Ce){const ut=e.XpG();e.R7$(2),e.Y8G("ngIf","DOWN"===ut.scrollDirection),e.R7$(),e.Y8G("ngIf","UP"===ut.scrollDirection)}}function me(Ce,ot){1&Ce&&(e.j41(0,"button",27),e.EFF(1,"OK"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function ce(Ce,ot){1&Ce&&(e.j41(0,"button",28),e.EFF(1,"Close"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function fe(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",29),e.bIt("copied",function(si){e.eBV(ut);const Pi=e.XpG();return e.Njj(Pi.onCopyField(si))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.Y8G("payload",ut.showCopyField),e.R7$(),e.SpI("Copy ",ut.showCopyName,"")}}function ke(Ce,ot){1&Ce&&(e.j41(0,"button",28),e.EFF(1,"Close"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function mt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",29),e.bIt("copied",function(si){e.eBV(ut);const Pi=e.XpG();return e.Njj(Pi.onCopyField(si))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.Y8G("payload",ut.showQRField),e.R7$(),e.SpI("Copy ",ut.showQRName,"")}}function _e(Ce,ot){if(1&Ce&&e.nrm(0,"qr-code",19),2&Ce){const ut=e.XpG(2);e.Y8G("value",ut.showQRField)("size",200)("errorCorrectionLevel","L")}}function be(Ce,ot){if(1&Ce&&(e.j41(0,"p",35),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.JRh(ut.data.titleMessage)}}function pe(Ce,ot){1&Ce&&e.nrm(0,"span",49),2&Ce&&e.Y8G("innerHTML",ot.$implicit,e.npT)}function Ze(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,pe,1,1,"span",48),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ut.value)}}function _t(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ut.value,"dd/MMM/y HH:mm"))}}function at(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ut.value,ut.digitsInfo?ut.digitsInfo:"1.0-3"))}}function pt(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(ut.value?"True":"False")}}function Xt(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",53),e.EFF(1,"info"),e.k0s())}function ye(Ce,ot){if(1&Ce&&(e.j41(0,"p",51),e.EFF(1),e.DNE(2,Xt,2,0,"mat-icon",52),e.k0s()),2&Ce){const ut=e.XpG(3).$implicit,ii=e.XpG(4);e.Y8G("ngClass",e.eq3(3,V,ut.value===ii.LoopStateEnum.FAILED)),e.R7$(),e.SpI(" ",ut.value," "),e.R7$(),e.Y8G("ngIf",ut.value===ii.LoopStateEnum.FAILED)}}function ue(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"p",55),e.bIt("click",function(){e.eBV(ut);const si=e.XpG(8);return e.Njj(si.onGoToLink())}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG(4).$implicit,ii=e.XpG(4);e.FS9("matTooltip","Go To "+ii.goToName),e.R7$(),e.SpI(" ",ut.value," ")}}function Ie(Ce,ot){if(1&Ce&&e.EFF(0),2&Ce){const ut=e.XpG(4).$implicit;e.SpI(" ",ut.value," ")}}function He(Ce,ot){if(1&Ce&&e.DNE(0,ue,2,2,"p",54)(1,Ie,1,1,"ng-template",null,4,e.C5r),2&Ce){const ut=e.sdS(2),ii=e.XpG(3).$implicit,si=e.XpG(4);e.Y8G("ngIf",ii.value===si.goToFieldValue)("ngIfElse",ut)}}function Xe(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,ye,3,5,"p",50)(2,He,3,2,"ng-template",null,3,e.C5r),e.bVm()),2&Ce){const ut=e.sdS(3),ii=e.XpG(2).$implicit,si=e.XpG(4);e.R7$(),e.Y8G("ngIf","SWAP"===si.data.openedBy&&"state"===ii.key)("ngIfElse",ut)}}function yt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"fa-icon",56),e.bIt("click",function(){e.eBV(ut);const si=e.XpG(2).$implicit,Pi=e.XpG(4);return e.Njj(Pi.onExplorerClicked(si))}),e.k0s()}if(2&Ce){const ut=e.XpG(6);e.FS9("matTooltip","Link to "+ut.selNode.settings.blockExplorerUrl),e.Y8G("icon",ut.faUpRightFromSquare)}}function Ye(Ce,ot){if(1&Ce&&(e.j41(0,"span")(1,"span",44),e.DNE(2,Ze,2,1,"ng-container",45)(3,_t,3,4,"ng-container",45)(4,at,3,4,"ng-container",45)(5,pt,2,1,"ng-container",45)(6,Xe,4,2,"ng-container",46),e.j41(7,"span"),e.DNE(8,yt,1,2,"fa-icon",47),e.k0s()()()),2&Ce){const ut=e.XpG().$implicit,ii=e.XpG(4);e.R7$(),e.Y8G("ngSwitch",ut.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN),e.R7$(3),e.Y8G("ngIf",ut.explorerLink&&""!==ut.explorerLink)}}function rt(Ce,ot){1&Ce&&(e.j41(0,"span",57),e.EFF(1,"\xa0"),e.k0s())}function Yt(Ce,ot){if(1&Ce&&(e.j41(0,"div",40)(1,"h4",41),e.EFF(2),e.k0s(),e.DNE(3,Ye,9,6,"span",42)(4,rt,2,0,"ng-template",null,2,e.C5r),e.nrm(6,"mat-divider",43),e.k0s()),2&Ce){const ut=ot.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ut.width),e.R7$(2),e.JRh(ut.title),e.R7$(),e.Y8G("ngIf",ut&&(!!ut.value||0===ut.value))("ngIfElse",ii)}}function Nt(Ce,ot){if(1&Ce&&(e.j41(0,"div")(1,"div",38),e.DNE(2,Yt,7,4,"div",39),e.k0s()()),2&Ce){const ut=ot.$implicit;e.R7$(2),e.Y8G("ngForOf",ut)}}function Et(Ce,ot){if(1&Ce&&(e.j41(0,"div",36),e.DNE(1,Nt,3,1,"div",37),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.Y8G("ngForOf",ut.messageObjs)}}function Vt(Ce,ot){if(1&Ce&&(e.j41(0,"div",30)(1,"div",31),e.DNE(2,_e,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",32),e.DNE(4,be,2,1,"p",33)(5,Et,2,1,"div",34),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngClass",e.eq3(4,r,""===ut.showQRField||ut.screenSize!==ut.screenSizeEnum.XS&&ut.screenSize!==ut.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==ut.showQRField),e.R7$(2),e.Y8G("ngIf",ut.data.titleMessage),e.R7$(),e.Y8G("ngIf",(null==ut.messageObjs?null:ut.messageObjs.length)>0)}}let oe=(()=>{class Ce{set container(ut){ut&&(this.scrollContainer=ut,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",ii=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",ii=>{this.scrollDirection="DOWN"})))}constructor(ut,ii,si,Pi,mn,Fn,$n,Yn){this.dialogRef=ut,this.data=ii,this.logger=si,this.snackBar=Pi,this.commonService=mn,this.renderer=Fn,this.router=$n,this.store=Yn,this.faUpRightFromSquare=$.k02,this.LoopStateEnum=y.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.screenSize="",this.screenSizeEnum=y.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new w.B,new w.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.goToFieldValue=this.data.goToFieldValue?this.data.goToFieldValue:"",this.goToName=this.data.goToName?this.data.goToName:"",this.goToLink=this.data.goToLink?this.data.goToLink:"",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===y.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs),this.store.select(j._c).pipe((0,T.Q)(this.unSubs[0])).subscribe(ut=>{this.selNode=ut,this.logger.info(this.selNode)})}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(ut){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+ut)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(ut){window.open(this.selNode.settings.blockExplorerUrl+"/"+ut.explorerLink+"/"+ut.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(ut=>{ut.next(null),ut.complete()})}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ee.h),e.rXU(e.sFG),e.rXU(ie.Ix),e.rXU(ge.il))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-alert-message"]],viewQuery:function(ii,si){if(1&ii&&e.GBs(_,5),2&ii){let Pi;e.mGM(Pi=e.lsd())&&(si.container=Pi.first)}},decls:21,vars:14,consts:[["contentBlock",""],["scrollContainer",""],["emptyField",""],["noStyleBlock",""],["noStyleChild",""],["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 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"],[3,"value","size","errorCorrectionLevel"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],[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,"copied","payload"],["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"],[1,"w-100","my-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["tabindex","4","fxLayout","row","class","go-to-link",3,"matTooltip","click",4,"ngIf","ngIfElse"],["tabindex","4","fxLayout","row",1,"go-to-link",3,"click","matTooltip"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(ii,si){if(1&ii){const Pi=e.RV6();e.j41(0,"div",5)(1,"div",6),e.DNE(2,N,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),e.EFF(7),e.k0s()(),e.j41(8,"button",12),e.bIt("click",function(){return e.eBV(Pi),e.Njj(si.onClose())}),e.EFF(9,"X"),e.k0s()(),e.DNE(10,Ee,4,4,"ng-container",13)(11,qe,3,1,"ng-container",13)(12,X,4,2,"div",14),e.j41(13,"div",15),e.DNE(14,me,2,1,"button",16)(15,ce,2,1,"button",17)(16,fe,2,2,"button",18)(17,ke,2,1,"button",17)(18,mt,2,2,"button",18),e.k0s()()(),e.DNE(19,Vt,6,6,"ng-template",null,0,e.C5r)}2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(12,r,""===si.showQRField||si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==si.showQRField),e.R7$(),e.Y8G("fxFlex",""===si.showQRField||si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM?"100":"70"),e.R7$(4),e.JRh(si.data.alertTitle||si.alertTypeEnum[si.data.type]),e.R7$(3),e.Y8G("ngIf",si.data.scrollable),e.R7$(),e.Y8G("ngIf",!si.data.scrollable),e.R7$(),e.Y8G("ngIf",si.data.scrollable&&si.shouldScroll),e.R7$(2),e.Y8G("ngIf",(!si.showQRField||""===si.showQRField)&&""===si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showQRField),e.R7$(),e.Y8G("ngIf",""!==si.showQRField))},dependencies:[ae.YU,ae.Sq,ae.bT,ae.T3,ae.ux,ae.e1,ae.fG,Me.aY,R.DJ,R.sA,R.UI,Te.PW,F.tx,de.$z,de.$0,D.m2,D.MM,n.An,c.q,m.oV,h.Um,C.Ld,k.U,L.N,ae.QX,ae.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return Ce})();var tt=g(1771),$t=g(9417),zt=g(9631),Jt=g(6467),St=g(6114);function dt(Ce,ot){if(1&Ce&&(e.j41(0,"div",20),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("icon",ut.faExclamationTriangle),e.R7$(2),e.JRh(ut.warningMessage)}}function Ae(Ce,ot){if(1&Ce&&(e.j41(0,"div",22),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("icon",ut.faInfoCircle),e.R7$(2),e.JRh(ut.informationMessage)}}function we(Ce,ot){if(1&Ce&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.data.titleMessage)}}function he(Ce,ot){1&Ce&&e.nrm(0,"div",37),2&Ce&&e.Y8G("innerHTML",ot.$implicit,e.npT)}function q(Ce,ot){if(1&Ce&&(e.qex(0,35),e.DNE(1,he,1,1,"div",36),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ut.value)}}function Re(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ut.value,"dd/MMM/y HH:mm"))}}function Ne(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ut.value,"1.0-3"))}}function gt(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(!0===ut.value?"True":"False")}}function $e(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(ut.value)}}function Fe(Ce,ot){if(1&Ce&&(e.j41(0,"span")(1,"span",31),e.DNE(2,q,2,1,"ng-container",32)(3,Re,3,4,"ng-container",33)(4,Ne,3,4,"ng-container",33)(5,gt,2,1,"ng-container",33)(6,$e,2,1,"ng-container",34),e.k0s()()),2&Ce){const ut=e.XpG().$implicit,ii=e.XpG(3);e.R7$(),e.Y8G("ngSwitch",ut.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN)}}function Ge(Ce,ot){1&Ce&&(e.j41(0,"span",38),e.EFF(1,"\xa0"),e.k0s())}function et(Ce,ot){if(1&Ce&&(e.j41(0,"div",27)(1,"h4",28),e.EFF(2),e.k0s(),e.DNE(3,Fe,7,5,"span",29)(4,Ge,2,0,"ng-template",null,0,e.C5r),e.nrm(6,"mat-divider",30),e.k0s()),2&Ce){const ut=ot.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ut.width),e.R7$(2),e.JRh(ut.title),e.R7$(),e.Y8G("ngIf",ut&&(!!ut.value||0===ut.value))("ngIfElse",ii)}}function st(Ce,ot){if(1&Ce&&(e.j41(0,"div")(1,"div",25),e.DNE(2,et,7,4,"div",26),e.k0s()()),2&Ce){const ut=ot.$implicit;e.R7$(2),e.Y8G("ngForOf",ut)}}function Tt(Ce,ot){if(1&Ce&&(e.j41(0,"div"),e.DNE(1,st,3,1,"div",24),e.k0s()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngForOf",ut.messageObjs)}}function mi(Ce,ot){if(1&Ce&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.JRh(ut.data.titleMessage)}}function Kt(Ce,ot){if(1&Ce&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.SpI("",ut.placeholder," is required.")}}function Pt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"mat-form-field",42)(1,"mat-label"),e.EFF(2),e.k0s(),e.j41(3,"input",43),e.nI1(4,"lowercase"),e.mxI("ngModelChange",function(si){e.eBV(ut);const Pi=e.XpG().$implicit;return e.DH7(Pi.inputValue,si)||(Pi.inputValue=si),e.Njj(si)}),e.k0s(),e.DNE(5,Kt,2,1,"mat-error",13),e.j41(6,"mat-hint"),e.EFF(7),e.k0s()()}if(2&Ce){const ut=e.XpG(),ii=ut.$implicit,si=ut.index;e.Y8G("fxFlex",ii.width),e.R7$(2),e.JRh(ii.placeholder),e.R7$(),e.Mz_("name","input",si,""),e.Y8G("autoFocus",0===si)("min",ii.min)("step",ii.step)("type",e.bMT(4,12,ii.inputType))("tabindex",si+1),e.R50("ngModel",ii.inputValue),e.R7$(2),e.Y8G("ngIf",!ii.inputValue),e.R7$(2),e.JRh(ii.hintFunction?ii.hintFunction(ii.inputValue):ii.hintText)}}function Xi(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,Pt,8,14,"mat-form-field",41),e.bVm()),2&Ce){const ut=ot.$implicit,ii=e.XpG(2);e.R7$(),e.Y8G("ngIf",!ut.advancedField||ii.showAdvanced)}}function di(Ce,ot){if(1&Ce&&(e.j41(0,"div",39),e.DNE(1,mi,2,1,"p",12),e.j41(2,"div",40),e.DNE(3,Xi,2,1,"ng-container",24),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngIf",ut.data.titleMessage),e.R7$(2),e.Y8G("ngForOf",ut.getInputs)}}function fi(Ce,ot){1&Ce&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function vn(Ce,ot){1&Ce&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Qi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",44),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onShowAdvanced())}),e.DNE(1,fi,2,0,"p",29)(2,vn,2,0,"ng-template",null,1,e.C5r),e.k0s()}if(2&Ce){const ut=e.sdS(3),ii=e.XpG();e.R7$(),e.Y8G("ngIf",!ii.showAdvanced)("ngIfElse",ut)}}function Li(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",45),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onClose(si.getInputs))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.yesBtnText)}}function Zi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",46),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onClose(!0))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.yesBtnText)}}let Qt=(()=>{class Ce{constructor(ut,ii,si,Pi){this.dialogRef=ut,this.data=ii,this.logger=si,this.store=Pi,this.faInfoCircle=$.iW_,this.faExclamationTriangle=$.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.getInputs=[{placeholder:"",inputType:y.UN.STRING,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===y.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(ut){if(ut&&this.getInputs&&this.getInputs.some(ii=>typeof ii.inputValue>"u"))return!0;!this.showAdvanced&&ut.length&&(ut=ut?.reduce((ii,si)=>(si.advancedField||ii.push(si),ii),[])),this.store.dispatch((0,tt.uP)({payload:ut}))}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(ge.il))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-confirmation-message"]],decls:21,vars:10,consts:[["emptyField",""],["hideAdvancedText",""],["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 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"],[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,"ngModelChange","autoFocus","name","min","step","type","tabindex","ngModel"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["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(ii,si){1&ii&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return si.onClose(!1)}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9),e.DNE(10,dt,4,2,"div",10)(11,Ae,4,2,"div",11)(12,we,2,1,"p",12)(13,Tt,2,1,"div",13)(14,di,4,2,"div",14),e.j41(15,"div",15)(16,"button",16),e.bIt("click",function(){return si.onClose(!1)}),e.EFF(17),e.k0s(),e.DNE(18,Qi,4,2,"button",17)(19,Li,2,1,"button",18)(20,Zi,2,1,"button",19),e.k0s()()()()()),2&ii&&(e.R7$(5),e.JRh(si.data.alertTitle||si.alertTypeEnum[si.data.type]),e.R7$(5),e.Y8G("ngIf",si.warningMessage&&""!==si.warningMessage),e.R7$(),e.Y8G("ngIf",si.informationMessage&&""!==si.informationMessage),e.R7$(),e.Y8G("ngIf",si.data.titleMessage&&!si.flgShowInput),e.R7$(),e.Y8G("ngIf",(null==si.messageObjs?null:si.messageObjs.length)>0),e.R7$(),e.Y8G("ngIf",si.flgShowInput),e.R7$(3),e.JRh(si.noBtnText),e.R7$(),e.Y8G("ngIf",si.hasAdvanced),e.R7$(),e.Y8G("ngIf",si.flgShowInput),e.R7$(),e.Y8G("ngIf",!si.flgShowInput))},dependencies:[ae.Sq,ae.bT,ae.ux,ae.e1,ae.fG,$t.qT,$t.me,$t.BC,$t.cb,$t.YS,$t.vS,$t.cV,Me.aY,R.DJ,R.sA,R.UI,de.$z,D.m2,D.MM,zt.fg,Jt.rl,Jt.nJ,Jt.MV,Jt.TL,c.q,L.N,St.V,ae.GH,ae.QX,ae.vh]})}return Ce})();var Mt=g(2462),it=g(2798),ct=g(6600);const wt=Ce=>({"display-none":Ce});function Ut(Ce,ot){if(1&Ce&&(e.j41(0,"mat-option",23),e.EFF(1),e.k0s()),2&Ce){const ut=ot.$implicit;e.Y8G("value",ut),e.R7$(),e.SpI(" ",ut.infoName," ")}}function xi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),e.mxI("valueChange",function(si){e.eBV(ut);const Pi=e.XpG();return e.DH7(Pi.selInfoType,si)||(Pi.selInfoType=si),e.Njj(si)}),e.DNE(3,Ut,2,2,"mat-option",22),e.k0s()()()}if(2&Ce){const ut=e.XpG();e.R7$(2),e.R50("value",ut.selInfoType),e.R7$(),e.Y8G("ngForOf",ut.infoTypes)}}let Si=(()=>{class Ce{constructor(ut,ii,si,Pi,mn){this.dialogRef=ut,this.data=ii,this.logger=si,this.snackBar=Pi,this.commonService=mn,this.faReceipt=$.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=y.f7}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((ut,ii)=>{this.infoTypes.push({infoID:ii+1,infoKey:"node URI "+(ii+1),infoName:"Node URI "+(ii+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(ut){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+ut)}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ee.h))};static#t=this.\u0275cmp=e.VBU({type:Ce,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 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,"copied","payload"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],["tabindex","1",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(ii,si){1&ii&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"qr-code",2),e.k0s(),e.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),e.nrm(6,"fa-icon",6),e.j41(7,"span",7),e.EFF(8),e.k0s()(),e.j41(9,"button",8),e.bIt("click",function(){return si.onClose()}),e.EFF(10,"X"),e.k0s()(),e.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),e.nrm(14,"qr-code",2),e.k0s(),e.DNE(15,xi,4,2,"div",12),e.j41(16,"div",13)(17,"div",14)(18,"h4",15),e.EFF(19),e.k0s(),e.j41(20,"span",16),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",17),e.j41(23,"div",18)(24,"button",19),e.bIt("copied",function(mn){return si.onCopyPubkey(mn)}),e.EFF(25),e.k0s()()()()()()),2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(15,wt,si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.Y8G("size",si.qrWidth)("errorCorrectionLevel","L"),e.R7$(4),e.Y8G("icon",si.faReceipt),e.R7$(2),e.JRh(si.selInfoType.infoName),e.R7$(5),e.Y8G("ngClass",e.eq3(17,wt,si.screenSize!==si.screenSizeEnum.XS&&si.screenSize!==si.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.Y8G("size",si.qrWidth)("errorCorrectionLevel","L"),e.R7$(),e.Y8G("ngIf",si.information.uris&&si.information.uris.length>0),e.R7$(4),e.JRh(si.selInfoType.infoName),e.R7$(2),e.JRh(0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.R7$(3),e.FS9("payload",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.R7$(),e.SpI("Copy ",si.selInfoType.infoKey,""))},dependencies:[ae.YU,ae.Sq,ae.bT,Me.aY,R.DJ,R.sA,R.UI,Te.PW,de.$z,D.m2,D.MM,Jt.rl,c.q,it.VO,ct.wT,h.Um,k.U,L.N]})}return Ce})();var zi=g(190),en=g(8430),Ni=g(5428),fn=g(1626),Zt=g(7879),bt=g(3202),re=g(1534);let je=(()=>{class Ce{constructor(ut,ii,si,Pi,mn,Fn,$n,Yn,Qn,rr,Rn){this.actions=ut,this.httpClient=ii,this.store=si,this.logger=Pi,this.wsService=mn,this.sessionService=Fn,this.commonService=$n,this.dataService=Yn,this.dialog=Qn,this.snackBar=rr,this.router=Rn,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new w.B,new w.B],this.closeAllDialogs=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALL_DIALOGS),(0,l.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SNACK_BAR),(0,l.T)(_i=>{"string"==typeof _i.payload?this.snackBar.open(_i.payload):this.snackBar.open(_i.payload.message,"","ERROR"===_i.payload.type?{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===_i.payload.type?{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SPINNER),(0,l.T)(_i=>{_i.payload!==y.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(W,{panelClass:"spinner-dialog-panel",data:{titleMessage:_i.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_SPINNER),(0,l.T)(_i=>{if(_i.payload!==y.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===_i.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Oi=>{Oi.componentInstance&&Oi.componentInstance.data&&Oi.componentInstance.data.titleMessage&&Oi.componentInstance.data.titleMessage===_i.payload&&Oi.close()})}catch(Oi){this.logger.error(Oi)}})),{dispatch:!1}),this.openAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_ALERT),(0,l.T)(_i=>{const Oi=JSON.parse(JSON.stringify(_i.payload));Oi.width||(Oi.width=this.alertWidth),this.dialogRef=this.dialog.open(_i.payload.data.component?_i.payload.data.component:oe,Oi)})),{dispatch:!1}),this.closeAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALERT),(0,l.T)(_i=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(_i.payload),_i.payload))),{dispatch:!1}),this.openConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_CONFIRMATION),(0,l.T)(_i=>{const Oi=JSON.parse(JSON.stringify(_i.payload));Oi.width||(Oi.width=this.confirmWidth),this.dialogRef=this.dialog.open(Qt,Oi)})),{dispatch:!1}),this.closeConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_CONFIRMATION),(0,x.s)(1),(0,l.T)(_i=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(_i.payload),_i.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_PUBKEY),(0,f.E)(this.store.select(j.N)),(0,I.Z)(([_i,Oi])=>(this.sessionService.getItem("token")&&Oi.identity_pubkey?this.store.dispatch((0,tt.xO)({payload:{data:{information:Oi,component:Si}}})):this.snackBar.open("Node Pubkey does not exist."),(0,S.of)({type:y.aU.VOID}))))),this.appConfigFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_APPLICATION_SETTINGS),(0,I.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===y.f7.XS||this.screenSize===y.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===y.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,tt.mt)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API))),(0,l.T)(_i=>{this.logger.info(_i),this.store.dispatch((0,tt.y0)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.COMPLETED}}));let Oi=null;return _i.nodes.forEach(jt=>{jt.settings.currencyUnits=[...y.A0,jt.settings?.currencyUnit?jt.settings?.currencyUnit:""],+(jt.index||-1)===_i.selectedNodeIndex&&(Oi=jt)}),Oi?(this.store.dispatch((0,tt.Qi)({payload:{uiMessage:y.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Oi,isInitialSetup:!0}})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:_i}):{type:y.aU.VOID}}),(0,d.W)(_i=>(this.handleErrorWithAlert("FetchRTLConfig",y.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",y.rl.CONF_API,_i),(0,S.of)({type:y.aU.VOID}))))),this.updateNodeSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_NODE_SETTINGS),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,tt.Gd)({payload:{action:"updateNodeSettings",status:y.wn.INITIATED}})),_i.payload.settings.fiatConversion||delete _i.payload.settings.currencyUnit,delete _i.payload.settings.currencyUnits,this.httpClient.post(y.rl.CONF_API+"/node",_i.payload).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"updateNodeSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.UPDATE_NODE_SETTINGS})),Oi.settings.currencyUnits=[...y.A0,Oi.settings?.currencyUnit?Oi.settings?.currencyUnit:""],this.store.dispatch((0,tt.Np)({payload:Oi})),{type:y.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,d.W)(Oi=>(this.handleErrorWithAlert("updateNodeSettings",y.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",y.rl.CONF_API+"/node",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.updateApplicationSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_APPLICATION_SETTINGS),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,tt.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.INITIATED}})),_i.payload.config.nodes.forEach(Oi=>{delete Oi.settings.currencyUnits}),this.httpClient.post(y.rl.CONF_API+"/application",_i.payload.config).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),_i.payload.showSnackBar&&this.store.dispatch((0,tt.UI)({payload:_i.payload.message})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("updateApplicationSettings",y.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",y.rl.CONF_API+"/application",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.configFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_CONFIG),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,tt.Gd)({payload:{action:"fetchConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/config/"+_i.payload).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"fetchConfig",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.OPEN_CONFIG_FILE})),{type:y.aU.SHOW_CONFIG,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("fetchConfig",y.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",y.rl.CONF_API+"/config/"+_i.payload,Oi),(0,S.of)({type:y.aU.VOID})))))))),this.showLnConfig=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_CONFIG),(0,l.T)(_i=>_i.payload)),{dispatch:!1}),this.isAuthorized=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED),(0,I.Z)(_i=>(this.store.dispatch((0,tt.Gd)({payload:{action:"IsAuthorized",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:_i.payload&&""!==_i.payload.trim()?y.U1.PASSWORD:y.U1.JWT,authenticationValue:_i.payload&&""!==_i.payload.trim()?_i.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"IsAuthorized",status:y.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:y.aU.IS_AUTHORIZED_RES,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("IsAuthorized",y.MZ.NO_SPINNER,"Authorization Failed",y.rl.AUTHENTICATE_API,Oi),(0,S.of)({type:y.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED_RES),(0,l.T)(_i=>_i.payload)),{dispatch:!1}),this.authLogin=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGIN),(0,f.E)(this.store.select(j.qv)),(0,I.Z)(([_i,Oi])=>(this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,en.gf)()),this.store.dispatch((0,Ni.Hh)()),this.store.dispatch((0,tt.Gd)({payload:{action:"Login",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:_i.payload.password?y.U1.PASSWORD:y.U1.JWT,authenticationValue:_i.payload.password?_i.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:_i.payload.twoFAToken?_i.payload.twoFAToken:""}).pipe((0,l.T)(jt=>{this.logger.info(jt),this.store.dispatch((0,tt.Gd)({payload:{action:"Login",status:y.wn.COMPLETED}})),this.setLoggedInDetails(_i.payload.defaultPassword,jt)}),(0,d.W)(jt=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",y.MZ.NO_SPINNER,jt),+Oi.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:jt.error&&jt.error.error?jt.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:jt.error&&jt.error.error?jt.error.error:"Single Sign On Failed!"}}),(0,S.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.VERIFY_TWO_FA),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,tt.Gd)({payload:{action:"VerifyToken",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/token",{authentication2FA:_i.payload.token}).pipe((0,l.T)(Oi=>{this.logger.info(Oi),this.store.dispatch((0,tt.y0)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,tt.Gd)({payload:{action:"VerifyToken",status:y.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,_i.payload.authResponse)}),(0,d.W)(Oi=>(this.handleErrorWithAlert("VerifyToken",y.MZ.VERIFY_TOKEN,"Authorization Failed!",y.rl.AUTHENTICATE_API+"/token",Oi),(0,S.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGOUT),(0,f.E)(this.store.select(j.qv)),(0,I.Z)(([_i,Oi])=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.LOG_OUT})),Oi.SSO&&+Oi.SSO.rtlSSO?window.location.href=Oi.SSO.logoutRedirectLink:this.router.navigate(["./login"],{state:{logoutReason:_i.payload}}),this.sessionService.clearAll(),this.store.dispatch((0,tt.Fl)({payload:{}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(y.rl.AUTHENTICATE_API+"/logout").pipe((0,l.T)(jt=>{this.logger.info(jt),this.store.dispatch((0,tt.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.EH)(()=>this.actions.pipe((0,T.Q)(this.unSubs[1]),(0,t.gp)(y.aU.RESET_PASSWORD),(0,I.Z)(_i=>(this.store.dispatch((0,tt.Gd)({payload:{action:"ResetPassword",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/reset",{currPassword:_i.payload.currPassword,newPassword:_i.payload.newPassword}).pipe((0,T.Q)(this.unSubs[0]),(0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"ResetPassword",status:y.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,tt.UI)({payload:"Password Reset Successful!"})),this.SetToken(Oi.token),{type:y.aU.RESET_PASSWORD_RES,payload:Oi.token})),(0,d.W)(Oi=>(this.handleErrorWithAlert("ResetPassword",y.MZ.NO_SPINNER,"Password Reset Failed!",y.rl.AUTHENTICATE_API+"/reset",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.setSelectedNode=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SET_SELECTED_NODE),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:_i.payload.uiMessage})),this.store.dispatch((0,tt.Gd)({payload:{action:"UpdateSelNode",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/updateSelNode/"+_i.payload.currentLnNode?.index+"/"+_i.payload.prevLnNodeIndex).pipe((0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"UpdateSelNode",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:_i.payload.uiMessage})),this.initializeNode(Oi,_i.payload.isInitialSetup),{type:y.aU.VOID})),(0,d.W)(Oi=>(this.handleErrorWithAlert("UpdateSelNode",_i.payload.uiMessage,"Update Selected Node Failed!",y.rl.CONF_API+"/updateSelNode",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.fetchFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_FILE),(0,I.Z)(_i=>{this.store.dispatch((0,tt.mt)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchFile",status:y.wn.INITIATED}}));const Oi="?channel="+_i.payload.channelPoint+(_i.payload.path?"&path="+_i.payload.path:"");return this.httpClient.get(y.rl.CONF_API+"/file"+Oi).pipe((0,l.T)(jt=>(this.store.dispatch((0,tt.Gd)({payload:{action:"FetchFile",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),{type:y.aU.SHOW_FILE,payload:jt})),(0,d.W)(jt=>(this.handleErrorWithAlert("fetchFile",y.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",y.rl.CONF_API+"/file"+Oi,{status:this.commonService.extractErrorNumber(jt),error:{error:this.commonService.extractErrorCode(jt)}}),(0,S.of)({type:y.aU.VOID}))))}))),this.showFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_FILE),(0,l.T)(_i=>_i.payload)),{dispatch:!1})}initializeNode(ut,ii){this.logger.info("Initializing node from RTL Effects.");const si=ii?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),ut.settings.currencyUnits=[...y.A0,ut.settings?.currencyUnit?ut.settings?.currencyUnit:""],this.store.dispatch((0,tt.Tn)({payload:ut})),this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,en.gf)()),this.store.dispatch((0,Ni.Hh)()),this.sessionService.getItem("token")){const Pi=ut.lnImplementation?ut.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Pi);const mn=!(0,e.naY)()&&window.location.origin?window.location.origin+"/rtl/api":y.H$;switch(this.wsService.connectWebSocket(mn?.replace(/^http/,"ws")+y.rl.Web_SOCKET_API,ut.index?ut.index.toString():"-1"),Pi){case"CLN":this.store.dispatch((0,en.lg)()),this.store.dispatch((0,en.Aw)({payload:{loadPage:si}}));break;case"ECL":this.store.dispatch((0,Ni.lg)()),this.store.dispatch((0,Ni.zR)({payload:{loadPage:si}}));break;default:this.store.dispatch((0,zi.lg)()),this.store.dispatch((0,zi.Br)({payload:{loadPage:si}}))}}}SetToken(ut){ut?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",ut)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(ut,ii){this.logger.info("Successfully Authorized!"),this.SetToken(ii.token),this.sessionService.setItem("defaultPassword",ut),ut?(this.store.dispatch((0,tt.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,tt.NU)())}handleErrorWithoutAlert(ut,ii,si){this.logger.error("ERROR IN: "+ut+"\n"+JSON.stringify(si)),401===si.status&&"Login"!==ut?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,tt.Jh)()),this.store.dispatch((0,tt.ri)({payload:"Authentication Failed: "+JSON.stringify(si.error)}))):(this.store.dispatch((0,tt.y0)({payload:ii})),this.store.dispatch((0,tt.Gd)({payload:{action:ut,status:y.wn.ERROR,statusCode:si.status?si.status.toString():"",message:this.commonService.extractErrorMessage(si)}})))}handleErrorWithAlert(ut,ii,si,Pi,mn){if(this.logger.error(mn),0===mn.status&&mn.statusText&&"Unknown Error"===mn.statusText&&(mn={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===mn.status&&"Login"!==ut)this.logger.info("Redirecting to Login"),this.store.dispatch((0,tt.Jh)()),this.store.dispatch((0,tt.ri)({payload:"Authentication Failed: "+JSON.stringify(mn.error)}));else{this.store.dispatch((0,tt.y0)({payload:ii}));const Fn=this.commonService.extractErrorMessage(mn);this.store.dispatch((0,tt.xO)({payload:{data:{type:"ERROR",alertTitle:si,message:{code:mn.status?mn.status:"Unknown Error",message:Fn,URL:Pi},component:Mt.f}}})),this.store.dispatch((0,tt.Gd)({payload:{action:ut,status:y.wn.ERROR,statusCode:mn.status?mn.status.toString():"",message:Fn,URL:Pi}}))}}ngOnDestroy(){this.unSubs.forEach(ut=>{ut.next(null),ut.complete()})}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.KVO(t.En),e.KVO(fn.Qq),e.KVO(ge.il),e.KVO(Q.gP),e.KVO(Zt.I),e.KVO(bt.Q),e.KVO(ee.h),e.KVO(re.u),e.KVO(F.bZ),e.KVO(J.UG),e.KVO(ie.Ix))};static#t=this.\u0275prov=e.jDH({token:Ce,factory:Ce.\u0275fac})}return Ce})()},9647:(Qe,te,g)=>{"use strict";g.d(te,{Az:()=>d,E2:()=>I,Kq:()=>f,N:()=>x,_c:()=>S,qv:()=>l});var e=g(9640);const t=(0,e.UX)("root"),S=((0,e.Mz)(t,T=>T.apiURL),(0,e.Mz)(t,T=>T.selNode)),l=(0,e.Mz)(t,T=>T.appConfig),x=(0,e.Mz)(t,T=>T.nodeData),f=(0,e.Mz)(t,T=>T.apisCallStatus.Login),I=(0,e.Mz)(t,T=>T.apisCallStatus.IsAuthorized),d=(0,e.Mz)(t,T=>({nodeDate:T.nodeData,selNode:T.selNode}))},3471:(Qe,te,g)=>{"use strict";var e=g(345),t=g(4438),w=g(9969);function l(O){return new t.wOt(3e3,!1)}function ze(O){switch(O.length){case 0:return new w.sf;case 1:return O[0];default:return new w.ui(O)}}function qe(O,H,b=new Map,U=new Map){const G=[],Oe=[];let It=-1,Lt=null;if(H.forEach(oi=>{const ci=oi.get("offset"),Ui=ci==It,Ti=Ui&&Lt||new Map;oi.forEach((un,bn)=>{let Yi=bn,Ji=un;if("offset"!==bn)switch(Yi=O.normalizePropertyName(Yi,G),Ji){case w.FX:Ji=b.get(bn);break;case w.kp:Ji=U.get(bn);break;default:Ji=O.normalizeStyleValue(bn,Yi,Ji,G)}Ti.set(Yi,Ji)}),Ui||Oe.push(Ti),Lt=Ti,It=ci}),G.length)throw function c(O){return new t.wOt(3502,!1)}();return Oe}function Ke(O,H,b,U){switch(H){case"start":O.onStart(()=>U(b&&se(b,"start",O)));break;case"done":O.onDone(()=>U(b&&se(b,"done",O)));break;case"destroy":O.onDestroy(()=>U(b&&se(b,"destroy",O)))}}function se(O,H,b){const Oe=X(O.element,O.triggerName,O.fromState,O.toState,H||O.phaseName,b.totalTime??O.totalTime,!!b.disabled),It=O._data;return null!=It&&(Oe._data=It),Oe}function X(O,H,b,U,G="",Oe=0,It){return{element:O,triggerName:H,fromState:b,toState:U,phaseName:G,totalTime:Oe,disabled:!!It}}function me(O,H,b){let U=O.get(H);return U||O.set(H,U=b),U}function ce(O){const H=O.indexOf(":");return[O.substring(1,H),O.slice(H+1)]}const fe=typeof document>"u"?null:document.documentElement;function ke(O){const H=O.parentNode||O.host||null;return H===fe?null:H}let _e=null,be=!1;function at(O,H){for(;H;){if(H===O)return!0;H=ke(H)}return!1}function pt(O,H,b){if(b)return Array.from(O.querySelectorAll(H));const U=O.querySelector(H);return U?[U]:[]}let ye=(()=>{class O{validateStyleProperty(b){return function pe(O){_e||(_e=function _t(){return typeof document<"u"?document.body:null}()||{},be=!!_e.style&&"WebkitAppearance"in _e.style);let H=!0;return _e.style&&!function mt(O){return"ebkit"==O.substring(1,6)}(O)&&(H=O in _e.style,!H&&be&&(H="Webkit"+O.charAt(0).toUpperCase()+O.slice(1)in _e.style)),H}(b)}containsElement(b,U){return at(b,U)}getParentElement(b){return ke(b)}query(b,U,G){return pt(b,U,G)}computeStyle(b,U,G){return G||""}animate(b,U,G,Oe,It,Lt=[],oi){return new w.sf(G,Oe)}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();class ue{static#e=this.NOOP=new ye}class Ie{}const Xe=1e3,rt="ng-enter",Yt="ng-leave",Nt="ng-trigger",Et=".ng-trigger",Vt="ng-animating",oe=".ng-animating";function tt(O){if("number"==typeof O)return O;const H=O.match(/^(-?[\.\d]+)(m?s)/);return!H||H.length<2?0:$t(parseFloat(H[1]),H[2])}function $t(O,H){return"s"===H?O*Xe:O}function zt(O,H,b){return O.hasOwnProperty("duration")?O:function Jt(O,H,b){let G,Oe=0,It="";if("string"==typeof O){const Lt=O.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===Lt)return H.push(l()),{duration:0,delay:0,easing:""};G=$t(parseFloat(Lt[1]),Lt[2]);const oi=Lt[3];null!=oi&&(Oe=$t(parseFloat(oi),Lt[4]));const ci=Lt[5];ci&&(It=ci)}else G=O;if(!b){let Lt=!1,oi=H.length;G<0&&(H.push(function x(){return new t.wOt(3100,!1)}()),Lt=!0),Oe<0&&(H.push(function f(){return new t.wOt(3101,!1)}()),Lt=!0),Lt&&H.splice(oi,0,l())}return{duration:G,delay:Oe,easing:It}}(O,H,b)}function Ae(O,H,b){H.forEach((U,G)=>{const Oe=Fe(G);b&&!b.has(G)&&b.set(G,O.style[Oe]),O.style[Oe]=U})}function we(O,H){H.forEach((b,U)=>{const G=Fe(U);O.style[G]=""})}function he(O){return Array.isArray(O)?1==O.length?O[0]:(0,w.K2)(O):O}const Re=new RegExp("{{\\s*(.+?)\\s*}}","g");function Ne(O){let H=[];if("string"==typeof O){let b;for(;b=Re.exec(O);)H.push(b[1]);Re.lastIndex=0}return H}function gt(O,H,b){const U=`${O}`,G=U.replace(Re,(Oe,It)=>{let Lt=H[It];return null==Lt&&(b.push(function d(O){return new t.wOt(3003,!1)}()),Lt=""),Lt.toString()});return G==U?O:G}const $e=/-+([a-z0-9])/g;function Fe(O){return O.replace($e,(...H)=>H[1].toUpperCase())}function Tt(O,H,b){switch(H.type){case w.If.Trigger:return O.visitTrigger(H,b);case w.If.State:return O.visitState(H,b);case w.If.Transition:return O.visitTransition(H,b);case w.If.Sequence:return O.visitSequence(H,b);case w.If.Group:return O.visitGroup(H,b);case w.If.Animate:return O.visitAnimate(H,b);case w.If.Keyframes:return O.visitKeyframes(H,b);case w.If.Style:return O.visitStyle(H,b);case w.If.Reference:return O.visitReference(H,b);case w.If.AnimateChild:return O.visitAnimateChild(H,b);case w.If.AnimateRef:return O.visitAnimateRef(H,b);case w.If.Query:return O.visitQuery(H,b);case w.If.Stagger:return O.visitStagger(H,b);default:throw function T(O){return new t.wOt(3004,!1)}()}}function mi(O,H){return window.getComputedStyle(O)[H]}const Kt=new Set(["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"]);class Pt extends Ie{normalizePropertyName(H,b){return Fe(H)}normalizeStyleValue(H,b,U,G){let Oe="";const It=U.toString().trim();if(Kt.has(b)&&0!==U&&"0"!==U)if("number"==typeof U)Oe="px";else{const Lt=U.match(/^[+-]?[\d\.]+([a-z]*)$/);Lt&&0==Lt[1].length&&G.push(function y(O,H){return new t.wOt(3005,!1)}())}return It+Oe}}const Zi="*";const ct=new Set(["true","1"]),wt=new Set(["false","0"]);function Ut(O,H){const b=ct.has(O)||wt.has(O),U=ct.has(H)||wt.has(H);return(G,Oe)=>{let It=O==Zi||O==G,Lt=H==Zi||H==Oe;return!It&&b&&"boolean"==typeof G&&(It=G?ct.has(O):wt.has(O)),!Lt&&U&&"boolean"==typeof Oe&&(Lt=Oe?ct.has(H):wt.has(H)),It&&Lt}}const Si=new RegExp("s*:selfs*,?","g");function zi(O,H,b,U){return new Ni(O).build(H,b,U)}class Ni{constructor(H){this._driver=H}build(H,b,U){const G=new bt(b);return this._resetContextStyleTimingState(G),Tt(this,he(H),G)}_resetContextStyleTimingState(H){H.currentQuerySelector="",H.collectedStyles=new Map,H.collectedStyles.set("",new Map),H.currentTime=0}visitTrigger(H,b){let U=b.queryCount=0,G=b.depCount=0;const Oe=[],It=[];return"@"==H.name.charAt(0)&&b.errors.push(function F(){return new t.wOt(3006,!1)}()),H.definitions.forEach(Lt=>{if(this._resetContextStyleTimingState(b),Lt.type==w.If.State){const oi=Lt,ci=oi.name;ci.toString().split(/\s*,\s*/).forEach(Ui=>{oi.name=Ui,Oe.push(this.visitState(oi,b))}),oi.name=ci}else if(Lt.type==w.If.Transition){const oi=this.visitTransition(Lt,b);U+=oi.queryCount,G+=oi.depCount,It.push(oi)}else b.errors.push(function R(){return new t.wOt(3007,!1)}())}),{type:w.If.Trigger,name:H.name,states:Oe,transitions:It,queryCount:U,depCount:G,options:null}}visitState(H,b){const U=this.visitStyle(H.styles,b),G=H.options&&H.options.params||null;if(U.containsDynamicStyles){const Oe=new Set,It=G||{};U.styles.forEach(Lt=>{Lt instanceof Map&&Lt.forEach(oi=>{Ne(oi).forEach(ci=>{It.hasOwnProperty(ci)||Oe.add(ci)})})}),Oe.size&&b.errors.push(function z(O,H){return new t.wOt(3008,!1)}(0,Oe.values()))}return{type:w.If.State,name:H.name,style:U,options:G?{params:G}:null}}visitTransition(H,b){b.queryCount=0,b.depCount=0;const U=Tt(this,he(H.animation),b),G=function Qt(O,H){const b=[];return"string"==typeof O?O.split(/\s*,\s*/).forEach(U=>function Mt(O,H,b){if(":"==O[0]){const oi=function it(O,H){switch(O){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(b,U)=>parseFloat(U)>parseFloat(b);case":decrement":return(b,U)=>parseFloat(U) *"}}(O,b);if("function"==typeof oi)return void H.push(oi);O=oi}const U=O.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==U||U.length<4)return b.push(function Me(O){return new t.wOt(3015,!1)}()),H;const G=U[1],Oe=U[2],It=U[3];H.push(Ut(G,It)),"<"==Oe[0]&&(G!=Zi||It!=Zi)&&H.push(Ut(It,G))}(U,b,H)):b.push(O),b}(H.expr,b.errors);return{type:w.If.Transition,matchers:G,animation:U,queryCount:b.queryCount,depCount:b.depCount,options:Ce(H.options)}}visitSequence(H,b){return{type:w.If.Sequence,steps:H.steps.map(U=>Tt(this,U,b)),options:Ce(H.options)}}visitGroup(H,b){const U=b.currentTime;let G=0;const Oe=H.steps.map(It=>{b.currentTime=U;const Lt=Tt(this,It,b);return G=Math.max(G,b.currentTime),Lt});return b.currentTime=G,{type:w.If.Group,steps:Oe,options:Ce(H.options)}}visitAnimate(H,b){const U=function je(O,H){if(O.hasOwnProperty("duration"))return O;if("number"==typeof O)return ot(zt(O,H).duration,0,"");const b=O;if(b.split(/\s+/).some(Oe=>"{"==Oe.charAt(0)&&"{"==Oe.charAt(1))){const Oe=ot(0,0,"");return Oe.dynamic=!0,Oe.strValue=b,Oe}const G=zt(b,H);return ot(G.duration,G.delay,G.easing)}(H.timings,b.errors);b.currentAnimateTimings=U;let G,Oe=H.styles?H.styles:(0,w.iF)({});if(Oe.type==w.If.Keyframes)G=this.visitKeyframes(Oe,b);else{let It=H.styles,Lt=!1;if(!It){Lt=!0;const ci={};U.easing&&(ci.easing=U.easing),It=(0,w.iF)(ci)}b.currentTime+=U.duration+U.delay;const oi=this.visitStyle(It,b);oi.isEmptyStep=Lt,G=oi}return b.currentAnimateTimings=null,{type:w.If.Animate,timings:U,style:G,options:null}}visitStyle(H,b){const U=this._makeStyleAst(H,b);return this._validateStyleAst(U,b),U}_makeStyleAst(H,b){const U=[],G=Array.isArray(H.styles)?H.styles:[H.styles];for(let Lt of G)"string"==typeof Lt?Lt===w.kp?U.push(Lt):b.errors.push(new t.wOt(3002,!1)):U.push(new Map(Object.entries(Lt)));let Oe=!1,It=null;return U.forEach(Lt=>{if(Lt instanceof Map&&(Lt.has("easing")&&(It=Lt.get("easing"),Lt.delete("easing")),!Oe))for(let oi of Lt.values())if(oi.toString().indexOf("{{")>=0){Oe=!0;break}}),{type:w.If.Style,styles:U,easing:It,offset:H.offset,containsDynamicStyles:Oe,options:null}}_validateStyleAst(H,b){const U=b.currentAnimateTimings;let G=b.currentTime,Oe=b.currentTime;U&&Oe>0&&(Oe-=U.duration+U.delay),H.styles.forEach(It=>{"string"!=typeof It&&It.forEach((Lt,oi)=>{const ci=b.collectedStyles.get(b.currentQuerySelector),Ui=ci.get(oi);let Ti=!0;Ui&&(Oe!=G&&Oe>=Ui.startTime&&G<=Ui.endTime&&(b.errors.push(function j(O,H,b,U,G){return new t.wOt(3010,!1)}()),Ti=!1),Oe=Ui.startTime),Ti&&ci.set(oi,{startTime:Oe,endTime:G}),b.options&&function q(O,H,b){const U=H.params||{},G=Ne(O);G.length&&G.forEach(Oe=>{U.hasOwnProperty(Oe)||b.push(function I(O){return new t.wOt(3001,!1)}())})}(Lt,b.options,b.errors)})})}visitKeyframes(H,b){const U={type:w.If.Keyframes,styles:[],options:null};if(!b.currentAnimateTimings)return b.errors.push(function Q(){return new t.wOt(3011,!1)}()),U;let Oe=0;const It=[];let Lt=!1,oi=!1,ci=0;const Ui=H.steps.map(Un=>{const Vr=this._makeStyleAst(Un,b);let la=null!=Vr.offset?Vr.offset:function re(O){if("string"==typeof O)return null;let H=null;if(Array.isArray(O))O.forEach(b=>{if(b instanceof Map&&b.has("offset")){const U=b;H=parseFloat(U.get("offset")),U.delete("offset")}});else if(O instanceof Map&&O.has("offset")){const b=O;H=parseFloat(b.get("offset")),b.delete("offset")}return H}(Vr.styles),cr=0;return null!=la&&(Oe++,cr=Vr.offset=la),oi=oi||cr<0||cr>1,Lt=Lt||cr0&&Oe{const la=un>0?Vr==bn?1:un*Vr:It[Vr],cr=la*An;b.currentTime=Yi+Ji.delay+cr,Ji.duration=cr,this._validateStyleAst(Un,b),Un.offset=la,U.styles.push(Un)}),U}visitReference(H,b){return{type:w.If.Reference,animation:Tt(this,he(H.animation),b),options:Ce(H.options)}}visitAnimateChild(H,b){return b.depCount++,{type:w.If.AnimateChild,options:Ce(H.options)}}visitAnimateRef(H,b){return{type:w.If.AnimateRef,animation:this.visitReference(H.animation,b),options:Ce(H.options)}}visitQuery(H,b){const U=b.currentQuerySelector,G=H.options||{};b.queryCount++,b.currentQuery=H;const[Oe,It]=function fn(O){const H=!!O.split(/\s*,\s*/).find(b=>":self"==b);return H&&(O=O.replace(Si,"")),O=O.replace(/@\*/g,Et).replace(/@\w+/g,b=>Et+"-"+b.slice(1)).replace(/:animating/g,oe),[O,H]}(H.selector);b.currentQuerySelector=U.length?U+" "+Oe:Oe,me(b.collectedStyles,b.currentQuerySelector,new Map);const Lt=Tt(this,he(H.animation),b);return b.currentQuery=null,b.currentQuerySelector=U,{type:w.If.Query,selector:Oe,limit:G.limit||0,optional:!!G.optional,includeSelf:It,animation:Lt,originalSelector:H.selector,options:Ce(H.options)}}visitStagger(H,b){b.currentQuery||b.errors.push(function ge(){return new t.wOt(3013,!1)}());const U="full"===H.timings?{duration:0,delay:0,easing:"full"}:zt(H.timings,b.errors,!0);return{type:w.If.Stagger,animation:Tt(this,he(H.animation),b),timings:U,options:null}}}class bt{constructor(H){this.errors=H,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function Ce(O){return O?(O={...O}).params&&(O.params=function Zt(O){return O?{...O}:null}(O.params)):O={},O}function ot(O,H,b){return{duration:O,delay:H,easing:b}}function ut(O,H,b,U,G,Oe,It=null,Lt=!1){return{type:1,element:O,keyframes:H,preStyleProps:b,postStyleProps:U,duration:G,delay:Oe,totalTime:G+Oe,easing:It,subTimeline:Lt}}class ii{constructor(){this._map=new Map}get(H){return this._map.get(H)||[]}append(H,b){let U=this._map.get(H);U||this._map.set(H,U=[]),U.push(...b)}has(H){return this._map.has(H)}clear(){this._map.clear()}}const mn=new RegExp(":enter","g"),$n=new RegExp(":leave","g");function Yn(O,H,b,U,G,Oe=new Map,It=new Map,Lt,oi,ci=[]){return(new Qn).buildKeyframes(O,H,b,U,G,Oe,It,Lt,oi,ci)}class Qn{buildKeyframes(H,b,U,G,Oe,It,Lt,oi,ci,Ui=[]){ci=ci||new ii;const Ti=new Rn(H,b,ci,G,Oe,Ui,[]);Ti.options=oi;const un=oi.delay?tt(oi.delay):0;Ti.currentTimeline.delayNextStep(un),Ti.currentTimeline.setStyles([It],null,Ti.errors,oi),Tt(this,U,Ti);const bn=Ti.timelines.filter(Yi=>Yi.containsAnimation());if(bn.length&&Lt.size){let Yi;for(let Ji=bn.length-1;Ji>=0;Ji--){const An=bn[Ji];if(An.element===b){Yi=An;break}}Yi&&!Yi.allowOnlyTimelineStyles()&&Yi.setStyles([Lt],null,Ti.errors,oi)}return bn.length?bn.map(Yi=>Yi.buildKeyframes()):[ut(b,[],[],[],0,un,"",!1)]}visitTrigger(H,b){}visitState(H,b){}visitTransition(H,b){}visitAnimateChild(H,b){const U=b.subInstructions.get(b.element);if(U){const G=b.createSubContext(H.options),Oe=b.currentTimeline.currentTime,It=this._visitSubInstructions(U,G,G.options);Oe!=It&&b.transformIntoNewTimeline(It)}b.previousNode=H}visitAnimateRef(H,b){const U=b.createSubContext(H.options);U.transformIntoNewTimeline(),this._applyAnimationRefDelays([H.options,H.animation.options],b,U),this.visitReference(H.animation,U),b.transformIntoNewTimeline(U.currentTimeline.currentTime),b.previousNode=H}_applyAnimationRefDelays(H,b,U){for(const G of H){const Oe=G?.delay;if(Oe){const It="number"==typeof Oe?Oe:tt(gt(Oe,G?.params??{},b.errors));U.delayNextStep(It)}}}_visitSubInstructions(H,b,U){let Oe=b.currentTimeline.currentTime;const It=null!=U.duration?tt(U.duration):null,Lt=null!=U.delay?tt(U.delay):null;return 0!==It&&H.forEach(oi=>{const ci=b.appendInstructionToTimeline(oi,It,Lt);Oe=Math.max(Oe,ci.duration+ci.delay)}),Oe}visitReference(H,b){b.updateOptions(H.options,!0),Tt(this,H.animation,b),b.previousNode=H}visitSequence(H,b){const U=b.subContextCount;let G=b;const Oe=H.options;if(Oe&&(Oe.params||Oe.delay)&&(G=b.createSubContext(Oe),G.transformIntoNewTimeline(),null!=Oe.delay)){G.previousNode.type==w.If.Style&&(G.currentTimeline.snapshotCurrentStyles(),G.previousNode=rr);const It=tt(Oe.delay);G.delayNextStep(It)}H.steps.length&&(H.steps.forEach(It=>Tt(this,It,G)),G.currentTimeline.applyStylesToKeyframe(),G.subContextCount>U&&G.transformIntoNewTimeline()),b.previousNode=H}visitGroup(H,b){const U=[];let G=b.currentTimeline.currentTime;const Oe=H.options&&H.options.delay?tt(H.options.delay):0;H.steps.forEach(It=>{const Lt=b.createSubContext(H.options);Oe&&Lt.delayNextStep(Oe),Tt(this,It,Lt),G=Math.max(G,Lt.currentTimeline.currentTime),U.push(Lt.currentTimeline)}),U.forEach(It=>b.currentTimeline.mergeTimelineCollectedStyles(It)),b.transformIntoNewTimeline(G),b.previousNode=H}_visitTiming(H,b){if(H.dynamic){const U=H.strValue;return zt(b.params?gt(U,b.params,b.errors):U,b.errors)}return{duration:H.duration,delay:H.delay,easing:H.easing}}visitAnimate(H,b){const U=b.currentAnimateTimings=this._visitTiming(H.timings,b),G=b.currentTimeline;U.delay&&(b.incrementTime(U.delay),G.snapshotCurrentStyles());const Oe=H.style;Oe.type==w.If.Keyframes?this.visitKeyframes(Oe,b):(b.incrementTime(U.duration),this.visitStyle(Oe,b),G.applyStylesToKeyframe()),b.currentAnimateTimings=null,b.previousNode=H}visitStyle(H,b){const U=b.currentTimeline,G=b.currentAnimateTimings;!G&&U.hasCurrentStyleProperties()&&U.forwardFrame();const Oe=G&&G.easing||H.easing;H.isEmptyStep?U.applyEmptyStep(Oe):U.setStyles(H.styles,Oe,b.errors,b.options),b.previousNode=H}visitKeyframes(H,b){const U=b.currentAnimateTimings,G=b.currentTimeline.duration,Oe=U.duration,Lt=b.createSubContext().currentTimeline;Lt.easing=U.easing,H.styles.forEach(oi=>{Lt.forwardTime((oi.offset||0)*Oe),Lt.setStyles(oi.styles,oi.easing,b.errors,b.options),Lt.applyStylesToKeyframe()}),b.currentTimeline.mergeTimelineCollectedStyles(Lt),b.transformIntoNewTimeline(G+Oe),b.previousNode=H}visitQuery(H,b){const U=b.currentTimeline.currentTime,G=H.options||{},Oe=G.delay?tt(G.delay):0;Oe&&(b.previousNode.type===w.If.Style||0==U&&b.currentTimeline.hasCurrentStyleProperties())&&(b.currentTimeline.snapshotCurrentStyles(),b.previousNode=rr);let It=U;const Lt=b.invokeQuery(H.selector,H.originalSelector,H.limit,H.includeSelf,!!G.optional,b.errors);b.currentQueryTotal=Lt.length;let oi=null;Lt.forEach((ci,Ui)=>{b.currentQueryIndex=Ui;const Ti=b.createSubContext(H.options,ci);Oe&&Ti.delayNextStep(Oe),ci===b.element&&(oi=Ti.currentTimeline),Tt(this,H.animation,Ti),Ti.currentTimeline.applyStylesToKeyframe(),It=Math.max(It,Ti.currentTimeline.currentTime)}),b.currentQueryIndex=0,b.currentQueryTotal=0,b.transformIntoNewTimeline(It),oi&&(b.currentTimeline.mergeTimelineCollectedStyles(oi),b.currentTimeline.snapshotCurrentStyles()),b.previousNode=H}visitStagger(H,b){const U=b.parentContext,G=b.currentTimeline,Oe=H.timings,It=Math.abs(Oe.duration),Lt=It*(b.currentQueryTotal-1);let oi=It*b.currentQueryIndex;switch(Oe.duration<0?"reverse":Oe.easing){case"reverse":oi=Lt-oi;break;case"full":oi=U.currentStaggerTime}const Ui=b.currentTimeline;oi&&Ui.delayNextStep(oi);const Ti=Ui.currentTime;Tt(this,H.animation,b),b.previousNode=H,U.currentStaggerTime=G.currentTime-Ti+(G.startTime-U.currentTimeline.startTime)}}const rr={};class Rn{constructor(H,b,U,G,Oe,It,Lt,oi){this._driver=H,this.element=b,this.subInstructions=U,this._enterClassName=G,this._leaveClassName=Oe,this.errors=It,this.timelines=Lt,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=rr,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=oi||new _i(this._driver,b,0),Lt.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(H,b){if(!H)return;const U=H;let G=this.options;null!=U.duration&&(G.duration=tt(U.duration)),null!=U.delay&&(G.delay=tt(U.delay));const Oe=U.params;if(Oe){let It=G.params;It||(It=this.options.params={}),Object.keys(Oe).forEach(Lt=>{(!b||!It.hasOwnProperty(Lt))&&(It[Lt]=gt(Oe[Lt],It,this.errors))})}}_copyOptions(){const H={};if(this.options){const b=this.options.params;if(b){const U=H.params={};Object.keys(b).forEach(G=>{U[G]=b[G]})}}return H}createSubContext(H=null,b,U){const G=b||this.element,Oe=new Rn(this._driver,G,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(G,U||0));return Oe.previousNode=this.previousNode,Oe.currentAnimateTimings=this.currentAnimateTimings,Oe.options=this._copyOptions(),Oe.updateOptions(H),Oe.currentQueryIndex=this.currentQueryIndex,Oe.currentQueryTotal=this.currentQueryTotal,Oe.parentContext=this,this.subContextCount++,Oe}transformIntoNewTimeline(H){return this.previousNode=rr,this.currentTimeline=this.currentTimeline.fork(this.element,H),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(H,b,U){const G={duration:b??H.duration,delay:this.currentTimeline.currentTime+(U??0)+H.delay,easing:""},Oe=new Oi(this._driver,H.element,H.keyframes,H.preStyleProps,H.postStyleProps,G,H.stretchStartingKeyframe);return this.timelines.push(Oe),G}incrementTime(H){this.currentTimeline.forwardTime(this.currentTimeline.duration+H)}delayNextStep(H){H>0&&this.currentTimeline.delayNextStep(H)}invokeQuery(H,b,U,G,Oe,It){let Lt=[];if(G&&Lt.push(this.element),H.length>0){H=(H=H.replace(mn,"."+this._enterClassName)).replace($n,"."+this._leaveClassName);let ci=this._driver.query(this.element,H,1!=U);0!==U&&(ci=U<0?ci.slice(ci.length+U,ci.length):ci.slice(0,U)),Lt.push(...ci)}return!Oe&&0==Lt.length&&It.push(function ae(O){return new t.wOt(3014,!1)}()),Lt}}class _i{constructor(H,b,U,G){this._driver=H,this.element=b,this.startTime=U,this._elementTimelineStylesLookup=G,this.duration=0,this.easing=null,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(b),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(b,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(H){const b=1===this._keyframes.size&&this._pendingStyles.size;this.duration||b?(this.forwardTime(this.currentTime+H),b&&this.snapshotCurrentStyles()):this.startTime+=H}fork(H,b){return this.applyStylesToKeyframe(),new _i(this._driver,H,b||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(H){this.applyStylesToKeyframe(),this.duration=H,this._loadKeyframe()}_updateStyle(H,b){this._localTimelineStyles.set(H,b),this._globalTimelineStyles.set(H,b),this._styleSummary.set(H,{time:this.currentTime,value:b})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(H){H&&this._previousKeyframe.set("easing",H);for(let[b,U]of this._globalTimelineStyles)this._backFill.set(b,U||w.kp),this._currentKeyframe.set(b,w.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(H,b,U,G){b&&this._previousKeyframe.set("easing",b);const Oe=G&&G.params||{},It=function Ci(O,H){const b=new Map;let U;return O.forEach(G=>{if("*"===G){U??=H.keys();for(let Oe of U)b.set(Oe,w.kp)}else for(let[Oe,It]of G)b.set(Oe,It)}),b}(H,this._globalTimelineStyles);for(let[Lt,oi]of It){const ci=gt(oi,Oe,U);this._pendingStyles.set(Lt,ci),this._localTimelineStyles.has(Lt)||this._backFill.set(Lt,this._globalTimelineStyles.get(Lt)??w.kp),this._updateStyle(Lt,ci)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((H,b)=>{this._currentKeyframe.set(b,H)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((H,b)=>{this._currentKeyframe.has(b)||this._currentKeyframe.set(b,H)}))}snapshotCurrentStyles(){for(let[H,b]of this._localTimelineStyles)this._pendingStyles.set(H,b),this._updateStyle(H,b)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const H=[];for(let b in this._currentKeyframe)H.push(b);return H}mergeTimelineCollectedStyles(H){H._styleSummary.forEach((b,U)=>{const G=this._styleSummary.get(U);(!G||b.time>G.time)&&this._updateStyle(U,b.value)})}buildKeyframes(){this.applyStylesToKeyframe();const H=new Set,b=new Set,U=1===this._keyframes.size&&0===this.duration;let G=[];this._keyframes.forEach((Lt,oi)=>{const ci=new Map([...this._backFill,...Lt]);ci.forEach((Ui,Ti)=>{Ui===w.FX?H.add(Ti):Ui===w.kp&&b.add(Ti)}),U||ci.set("offset",oi/this.duration),G.push(ci)});const Oe=[...H.values()],It=[...b.values()];if(U){const Lt=G[0],oi=new Map(Lt);Lt.set("offset",0),oi.set("offset",1),G=[Lt,oi]}return ut(this.element,G,Oe,It,this.duration,this.startTime,this.easing,!1)}}class Oi extends _i{constructor(H,b,U,G,Oe,It,Lt=!1){super(H,b,It.delay),this.keyframes=U,this.preStyleProps=G,this.postStyleProps=Oe,this._stretchStartingKeyframe=Lt,this.timings={duration:It.duration,delay:It.delay,easing:It.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let H=this.keyframes,{delay:b,duration:U,easing:G}=this.timings;if(this._stretchStartingKeyframe&&b){const Oe=[],It=U+b,Lt=b/It,oi=new Map(H[0]);oi.set("offset",0),Oe.push(oi);const ci=new Map(H[0]);ci.set("offset",jt(Lt)),Oe.push(ci);const Ui=H.length-1;for(let Ti=1;Ti<=Ui;Ti++){let un=new Map(H[Ti]);const bn=un.get("offset");un.set("offset",jt((b+bn*U)/It)),Oe.push(un)}U=It,b=0,G="",H=Oe}return ut(this.element,H,this.preStyleProps,this.postStyleProps,U,b,G,!0)}}function jt(O,H=3){const b=Math.pow(10,H-1);return Math.round(O*b)/b}function hi(O,H,b,U,G,Oe,It,Lt,oi,ci,Ui,Ti,un){return{type:0,element:O,triggerName:H,isRemovalTransition:G,fromState:b,fromStyles:Oe,toState:U,toStyles:It,timelines:Lt,queriedElements:oi,preStyleProps:ci,postStyleProps:Ui,totalTime:Ti,errors:un}}const yi={};class Vi{constructor(H,b,U){this._triggerName=H,this.ast=b,this._stateStyles=U}match(H,b,U,G){return function rn(O,H,b,U,G){return O.some(Oe=>Oe(H,b,U,G))}(this.ast.matchers,H,b,U,G)}buildStyles(H,b,U){let G=this._stateStyles.get("*");return void 0!==H&&(G=this._stateStyles.get(H?.toString())||G),G?G.buildStyles(b,U):new Map}build(H,b,U,G,Oe,It,Lt,oi,ci,Ui){const Ti=[],un=this.ast.options&&this.ast.options.params||yi,Yi=this.buildStyles(U,Lt&&Lt.params||yi,Ti),Ji=oi&&oi.params||yi,An=this.buildStyles(G,Ji,Ti),Un=new Set,Vr=new Map,la=new Map,cr="void"===G,ta={params:ar(Ji,un),delay:this.ast.options?.delay},Ar=Ui?[]:Yn(H,b,this.ast.animation,Oe,It,Yi,An,ta,ci,Ti);let ma=0;return Ar.forEach(ia=>{ma=Math.max(ia.duration+ia.delay,ma)}),Ti.length?hi(b,this._triggerName,U,G,cr,Yi,An,[],[],Vr,la,ma,Ti):(Ar.forEach(ia=>{const rc=ia.element,Lc=me(Vr,rc,new Set);ia.preStyleProps.forEach($c=>Lc.add($c));const M1=me(la,rc,new Set);ia.postStyleProps.forEach($c=>M1.add($c)),rc!==b&&Un.add(rc)}),hi(b,this._triggerName,U,G,cr,Yi,An,Ar,[...Un.values()],Vr,la,ma))}}function ar(O,H){const b={...H};return Object.entries(O).forEach(([U,G])=>{null!=G&&(b[U]=G)}),b}class sr{constructor(H,b,U){this.styles=H,this.defaultParams=b,this.normalizer=U}buildStyles(H,b){const U=new Map,G=ar(H,this.defaultParams);return this.styles.styles.forEach(Oe=>{"string"!=typeof Oe&&Oe.forEach((It,Lt)=>{It&&(It=gt(It,G,b));const oi=this.normalizer.normalizePropertyName(Lt,b);It=this.normalizer.normalizeStyleValue(Lt,oi,It,b),U.set(Lt,It)})}),U}}class or{constructor(H,b,U){this.name=H,this.ast=b,this._normalizer=U,this.transitionFactories=[],this.states=new Map,b.states.forEach(G=>{this.states.set(G.name,new sr(G.style,G.options&&G.options.params||{},U))}),Sr(this.states,"true","1"),Sr(this.states,"false","0"),b.transitions.forEach(G=>{this.transitionFactories.push(new Vi(H,G,this.states))}),this.fallbackTransition=function Xr(O,H,b){return new Vi(O,{type:w.If.Transition,animation:{type:w.If.Sequence,steps:[],options:null},matchers:[(It,Lt)=>!0],options:null,queryCount:0,depCount:0},H)}(H,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(H,b,U,G){return this.transitionFactories.find(It=>It.match(H,b,U,G))||null}matchStyles(H,b,U){return this.fallbackTransition.buildStyles(H,b,U)}}function Sr(O,H,b){O.has(H)?O.has(b)||O.set(b,O.get(H)):O.has(b)&&O.set(H,O.get(b))}const zr=new ii;class Ho{constructor(H,b,U){this.bodyNode=H,this._driver=b,this._normalizer=U,this._animations=new Map,this._playersById=new Map,this.players=[]}register(H,b){const U=[],Oe=zi(this._driver,b,U,[]);if(U.length)throw function m(O){return new t.wOt(3503,!1)}();this._animations.set(H,Oe)}_buildPlayer(H,b,U){const G=H.element,Oe=qe(this._normalizer,H.keyframes,b,U);return this._driver.animate(G,Oe,H.duration,H.delay,H.easing,[],!0)}create(H,b,U={}){const G=[],Oe=this._animations.get(H);let It;const Lt=new Map;if(Oe?(It=Yn(this._driver,b,Oe,rt,Yt,new Map,new Map,U,zr,G),It.forEach(Ui=>{const Ti=me(Lt,Ui.element,new Map);Ui.postStyleProps.forEach(un=>Ti.set(un,null))})):(G.push(function h(){return new t.wOt(3300,!1)}()),It=[]),G.length)throw function C(O){return new t.wOt(3504,!1)}();Lt.forEach((Ui,Ti)=>{Ui.forEach((un,bn)=>{Ui.set(bn,this._driver.computeStyle(Ti,bn,w.kp))})});const ci=ze(It.map(Ui=>{const Ti=Lt.get(Ui.element);return this._buildPlayer(Ui,new Map,Ti)}));return this._playersById.set(H,ci),ci.onDestroy(()=>this.destroy(H)),this.players.push(ci),ci}destroy(H){const b=this._getPlayer(H);b.destroy(),this._playersById.delete(H);const U=this.players.indexOf(b);U>=0&&this.players.splice(U,1)}_getPlayer(H){const b=this._playersById.get(H);if(!b)throw function k(O){return new t.wOt(3301,!1)}();return b}listen(H,b,U,G){const Oe=X(b,"","","");return Ke(this._getPlayer(H),U,Oe,G),()=>{}}command(H,b,U,G){if("register"==U)return void this.register(H,G[0]);if("create"==U)return void this.create(H,b,G[0]||{});const Oe=this._getPlayer(H);switch(U){case"play":Oe.play();break;case"pause":Oe.pause();break;case"reset":Oe.reset();break;case"restart":Oe.restart();break;case"finish":Oe.finish();break;case"init":Oe.init();break;case"setPosition":Oe.setPosition(parseFloat(G[0]));break;case"destroy":this.destroy(H)}}}const xo="ng-animate-queued",Rr="ng-animate-disabled",ho=[],xr={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Sa={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},zn="__ng_removed";class ro{get params(){return this.options.params}constructor(H,b=""){this.namespaceId=b;const U=H&&H.hasOwnProperty("value");if(this.value=function da(O){return O??null}(U?H.value:H),U){const{value:Oe,...It}=H;this.options=It}else this.options={};this.options.params||(this.options.params={})}absorbOptions(H){const b=H.params;if(b){const U=this.options.params;Object.keys(b).forEach(G=>{null==U[G]&&(U[G]=b[G])})}}}const hn="void",Yr=new ro(hn);class Ta{constructor(H,b,U){this.id=H,this.hostElement=b,this._engine=U,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+H,kr(b,this._hostClassName)}listen(H,b,U,G){if(!this._triggers.has(b))throw function L(O,H){return new t.wOt(3302,!1)}();if(null==U||0==U.length)throw function _(O){return new t.wOt(3303,!1)}();if(!function Oa(O){return"start"==O||"done"==O}(U))throw function r(O,H){return new t.wOt(3400,!1)}();const Oe=me(this._elementListeners,H,[]),It={name:b,phase:U,callback:G};Oe.push(It);const Lt=me(this._engine.statesByElement,H,new Map);return Lt.has(b)||(kr(H,Nt),kr(H,Nt+"-"+b),Lt.set(b,Yr)),()=>{this._engine.afterFlush(()=>{const oi=Oe.indexOf(It);oi>=0&&Oe.splice(oi,1),this._triggers.has(b)||Lt.delete(b)})}}register(H,b){return!this._triggers.has(H)&&(this._triggers.set(H,b),!0)}_getTrigger(H){const b=this._triggers.get(H);if(!b)throw function v(O){return new t.wOt(3401,!1)}();return b}trigger(H,b,U,G=!0){const Oe=this._getTrigger(b),It=new wo(this.id,b,H);let Lt=this._engine.statesByElement.get(H);Lt||(kr(H,Nt),kr(H,Nt+"-"+b),this._engine.statesByElement.set(H,Lt=new Map));let oi=Lt.get(b);const ci=new ro(U,this.id);if(!(U&&U.hasOwnProperty("value"))&&oi&&ci.absorbOptions(oi.options),Lt.set(b,ci),oi||(oi=Yr),ci.value!==hn&&oi.value===ci.value){if(!function Ga(O,H){const b=Object.keys(O),U=Object.keys(H);if(b.length!=U.length)return!1;for(let G=0;G{we(H,An),Ae(H,Un)})}return}const un=me(this._engine.playersByElement,H,[]);un.forEach(Ji=>{Ji.namespaceId==this.id&&Ji.triggerName==b&&Ji.queued&&Ji.destroy()});let bn=Oe.matchTransition(oi.value,ci.value,H,ci.params),Yi=!1;if(!bn){if(!G)return;bn=Oe.fallbackTransition,Yi=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:H,triggerName:b,transition:bn,fromState:oi,toState:ci,player:It,isFallbackTransition:Yi}),Yi||(kr(H,xo),It.onStart(()=>{ha(H,xo)})),It.onDone(()=>{let Ji=this.players.indexOf(It);Ji>=0&&this.players.splice(Ji,1);const An=this._engine.playersByElement.get(H);if(An){let Un=An.indexOf(It);Un>=0&&An.splice(Un,1)}}),this.players.push(It),un.push(It),It}deregister(H){this._triggers.delete(H),this._engine.statesByElement.forEach(b=>b.delete(H)),this._elementListeners.forEach((b,U)=>{this._elementListeners.set(U,b.filter(G=>G.name!=H))})}clearElementCache(H){this._engine.statesByElement.delete(H),this._elementListeners.delete(H);const b=this._engine.playersByElement.get(H);b&&(b.forEach(U=>U.destroy()),this._engine.playersByElement.delete(H))}_signalRemovalForInnerTriggers(H,b){const U=this._engine.driver.query(H,Et,!0);U.forEach(G=>{if(G[zn])return;const Oe=this._engine.fetchNamespacesByElement(G);Oe.size?Oe.forEach(It=>It.triggerLeaveAnimation(G,b,!1,!0)):this.clearElementCache(G)}),this._engine.afterFlushAnimationsDone(()=>U.forEach(G=>this.clearElementCache(G)))}triggerLeaveAnimation(H,b,U,G){const Oe=this._engine.statesByElement.get(H),It=new Map;if(Oe){const Lt=[];if(Oe.forEach((oi,ci)=>{if(It.set(ci,oi.value),this._triggers.has(ci)){const Ui=this.trigger(H,ci,hn,G);Ui&&Lt.push(Ui)}}),Lt.length)return this._engine.markElementAsRemoved(this.id,H,!0,b,It),U&&ze(Lt).onDone(()=>this._engine.processLeaveNode(H)),!0}return!1}prepareLeaveAnimationListeners(H){const b=this._elementListeners.get(H),U=this._engine.statesByElement.get(H);if(b&&U){const G=new Set;b.forEach(Oe=>{const It=Oe.name;if(G.has(It))return;G.add(It);const oi=this._triggers.get(It).fallbackTransition,ci=U.get(It)||Yr,Ui=new ro(hn),Ti=new wo(this.id,It,H);this._engine.totalQueuedPlayers++,this._queue.push({element:H,triggerName:It,transition:oi,fromState:ci,toState:Ui,player:Ti,isFallbackTransition:!0})})}}removeNode(H,b){const U=this._engine;if(H.childElementCount&&this._signalRemovalForInnerTriggers(H,b),this.triggerLeaveAnimation(H,b,!0))return;let G=!1;if(U.totalAnimations){const Oe=U.players.length?U.playersByQueriedElement.get(H):[];if(Oe&&Oe.length)G=!0;else{let It=H;for(;It=It.parentNode;)if(U.statesByElement.get(It)){G=!0;break}}}if(this.prepareLeaveAnimationListeners(H),G)U.markElementAsRemoved(this.id,H,!1,b);else{const Oe=H[zn];(!Oe||Oe===xr)&&(U.afterFlush(()=>this.clearElementCache(H)),U.destroyInnerAnimations(H),U._onRemovalComplete(H,b))}}insertNode(H,b){kr(H,this._hostClassName)}drainQueuedTransitions(H){const b=[];return this._queue.forEach(U=>{const G=U.player;if(G.destroyed)return;const Oe=U.element,It=this._elementListeners.get(Oe);It&&It.forEach(Lt=>{if(Lt.name==U.triggerName){const oi=X(Oe,U.triggerName,U.fromState.value,U.toState.value);oi._data=H,Ke(U.player,Lt.phase,oi,Lt.callback)}}),G.markedForDestroy?this._engine.afterFlush(()=>{G.destroy()}):b.push(U)}),this._queue=[],b.sort((U,G)=>{const Oe=U.transition.ast.depCount,It=G.transition.ast.depCount;return 0==Oe||0==It?Oe-It:this._engine.driver.containsElement(U.element,G.element)?1:-1})}destroy(H){this.players.forEach(b=>b.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,H)}}class Co{_onRemovalComplete(H,b){this.onRemovalComplete(H,b)}constructor(H,b,U){this.bodyNode=H,this.driver=b,this._normalizer=U,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=(G,Oe)=>{}}get queuedPlayers(){const H=[];return this._namespaceList.forEach(b=>{b.players.forEach(U=>{U.queued&&H.push(U)})}),H}createNamespace(H,b){const U=new Ta(H,b,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,b)?this._balanceNamespaceList(U,b):(this.newHostElements.set(b,U),this.collectEnterElement(b)),this._namespaceLookup[H]=U}_balanceNamespaceList(H,b){const U=this._namespaceList,G=this.namespacesByHostElement;if(U.length-1>=0){let It=!1,Lt=this.driver.getParentElement(b);for(;Lt;){const oi=G.get(Lt);if(oi){const ci=U.indexOf(oi);U.splice(ci+1,0,H),It=!0;break}Lt=this.driver.getParentElement(Lt)}It||U.unshift(H)}else U.push(H);return G.set(b,H),H}register(H,b){let U=this._namespaceLookup[H];return U||(U=this.createNamespace(H,b)),U}registerTrigger(H,b,U){let G=this._namespaceLookup[H];G&&G.register(b,U)&&this.totalAnimations++}destroy(H,b){H&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const U=this._fetchNamespace(H);this.namespacesByHostElement.delete(U.hostElement);const G=this._namespaceList.indexOf(U);G>=0&&this._namespaceList.splice(G,1),U.destroy(b),delete this._namespaceLookup[H]}))}_fetchNamespace(H){return this._namespaceLookup[H]}fetchNamespacesByElement(H){const b=new Set,U=this.statesByElement.get(H);if(U)for(let G of U.values())if(G.namespaceId){const Oe=this._fetchNamespace(G.namespaceId);Oe&&b.add(Oe)}return b}trigger(H,b,U,G){if(ao(b)){const Oe=this._fetchNamespace(H);if(Oe)return Oe.trigger(b,U,G),!0}return!1}insertNode(H,b,U,G){if(!ao(b))return;const Oe=b[zn];if(Oe&&Oe.setForRemoval){Oe.setForRemoval=!1,Oe.setForMove=!0;const It=this.collectedLeaveElements.indexOf(b);It>=0&&this.collectedLeaveElements.splice(It,1)}if(H){const It=this._fetchNamespace(H);It&&It.insertNode(b,U)}G&&this.collectEnterElement(b)}collectEnterElement(H){this.collectedEnterElements.push(H)}markElementAsDisabled(H,b){b?this.disabledNodes.has(H)||(this.disabledNodes.add(H),kr(H,Rr)):this.disabledNodes.has(H)&&(this.disabledNodes.delete(H),ha(H,Rr))}removeNode(H,b,U){if(ao(b)){const G=H?this._fetchNamespace(H):null;G?G.removeNode(b,U):this.markElementAsRemoved(H,b,!1,U);const Oe=this.namespacesByHostElement.get(b);Oe&&Oe.id!==H&&Oe.removeNode(b,U)}else this._onRemovalComplete(b,U)}markElementAsRemoved(H,b,U,G,Oe){this.collectedLeaveElements.push(b),b[zn]={namespaceId:H,setForRemoval:G,hasAnimation:U,removedBeforeQueried:!1,previousTriggersValues:Oe}}listen(H,b,U,G,Oe){return ao(b)?this._fetchNamespace(H).listen(b,U,G,Oe):()=>{}}_buildInstruction(H,b,U,G,Oe){return H.transition.build(this.driver,H.element,H.fromState.value,H.toState.value,U,G,H.fromState.options,H.toState.options,b,Oe)}destroyInnerAnimations(H){let b=this.driver.query(H,Et,!0);b.forEach(U=>this.destroyActiveAnimationsForElement(U)),0!=this.playersByQueriedElement.size&&(b=this.driver.query(H,oe,!0),b.forEach(U=>this.finishActiveQueriedAnimationOnElement(U)))}destroyActiveAnimationsForElement(H){const b=this.playersByElement.get(H);b&&b.forEach(U=>{U.queued?U.markedForDestroy=!0:U.destroy()})}finishActiveQueriedAnimationOnElement(H){const b=this.playersByQueriedElement.get(H);b&&b.forEach(U=>U.finish())}whenRenderingDone(){return new Promise(H=>{if(this.players.length)return ze(this.players).onDone(()=>H());H()})}processLeaveNode(H){const b=H[zn];if(b&&b.setForRemoval){if(H[zn]=xr,b.namespaceId){this.destroyInnerAnimations(H);const U=this._fetchNamespace(b.namespaceId);U&&U.clearElementCache(H)}this._onRemovalComplete(H,b.setForRemoval)}H.classList?.contains(Rr)&&this.markElementAsDisabled(H,!1),this.driver.query(H,".ng-animate-disabled",!0).forEach(U=>{this.markElementAsDisabled(U,!1)})}flush(H=-1){let b=[];if(this.newHostElements.size&&(this.newHostElements.forEach((U,G)=>this._balanceNamespaceList(U,G)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let U=0;UU()),this._flushFns=[],this._whenQuietFns.length){const U=this._whenQuietFns;this._whenQuietFns=[],b.length?ze(b).onDone(()=>{U.forEach(G=>G())}):U.forEach(G=>G())}}reportError(H){throw function V(O){return new t.wOt(3402,!1)}()}_flushAnimations(H,b){const U=new ii,G=[],Oe=new Map,It=[],Lt=new Map,oi=new Map,ci=new Map,Ui=new Set;this.disabledNodes.forEach(wn=>{Ui.add(wn);const On=this.driver.query(wn,".ng-animate-queued",!0);for(let Gn=0;Gn{const Gn=rt+Ji++;Yi.set(On,Gn),wn.forEach(Mr=>kr(Mr,Gn))});const An=[],Un=new Set,Vr=new Set;for(let wn=0;wnUn.add(Mr)):Vr.add(On))}const la=new Map,cr=Ro(un,Array.from(Un));cr.forEach((wn,On)=>{const Gn=Yt+Ji++;la.set(On,Gn),wn.forEach(Mr=>kr(Mr,Gn))}),H.push(()=>{bn.forEach((wn,On)=>{const Gn=Yi.get(On);wn.forEach(Mr=>ha(Mr,Gn))}),cr.forEach((wn,On)=>{const Gn=la.get(On);wn.forEach(Mr=>ha(Mr,Gn))}),An.forEach(wn=>{this.processLeaveNode(wn)})});const ta=[],Ar=[];for(let wn=this._namespaceList.length-1;wn>=0;wn--)this._namespaceList[wn].drainQueuedTransitions(b).forEach(Gn=>{const Mr=Gn.player,_o=Gn.element;if(ta.push(Mr),this.collectedEnterElements.length){const vo=_o[zn];if(vo&&vo.setForMove){if(vo.previousTriggersValues&&vo.previousTriggersValues.has(Gn.triggerName)){const Qc=vo.previousTriggersValues.get(Gn.triggerName),Xs=this.statesByElement.get(Gn.element);if(Xs&&Xs.has(Gn.triggerName)){const Ld=Xs.get(Gn.triggerName);Ld.value=Qc,Xs.set(Gn.triggerName,Ld)}}return void Mr.destroy()}}const ac=!Ti||!this.driver.containsElement(Ti,_o),xs=la.get(_o),yl=Yi.get(_o),wa=this._buildInstruction(Gn,U,yl,xs,ac);if(wa.errors&&wa.errors.length)return void Ar.push(wa);if(ac)return Mr.onStart(()=>we(_o,wa.fromStyles)),Mr.onDestroy(()=>Ae(_o,wa.toStyles)),void G.push(Mr);if(Gn.isFallbackTransition)return Mr.onStart(()=>we(_o,wa.fromStyles)),Mr.onDestroy(()=>Ae(_o,wa.toStyles)),void G.push(Mr);const Y2=[];wa.timelines.forEach(vo=>{vo.stretchStartingKeyframe=!0,this.disabledNodes.has(vo.element)||Y2.push(vo)}),wa.timelines=Y2,U.append(_o,wa.timelines),It.push({instruction:wa,player:Mr,element:_o}),wa.queriedElements.forEach(vo=>me(Lt,vo,[]).push(Mr)),wa.preStyleProps.forEach((vo,Qc)=>{if(vo.size){let Xs=oi.get(Qc);Xs||oi.set(Qc,Xs=new Set),vo.forEach((Ld,Id)=>Xs.add(Id))}}),wa.postStyleProps.forEach((vo,Qc)=>{let Xs=ci.get(Qc);Xs||ci.set(Qc,Xs=new Set),vo.forEach((Ld,Id)=>Xs.add(Id))})});if(Ar.length){const wn=[];Ar.forEach(On=>{wn.push(function ne(O,H){return new t.wOt(3505,!1)}())}),ta.forEach(On=>On.destroy()),this.reportError(wn)}const ma=new Map,ia=new Map;It.forEach(wn=>{const On=wn.element;U.has(On)&&(ia.set(On,On),this._beforeAnimationBuild(wn.player.namespaceId,wn.instruction,ma))}),G.forEach(wn=>{const On=wn.element;this._getPreviousPlayers(On,!1,wn.namespaceId,wn.triggerName,null).forEach(Mr=>{me(ma,On,[]).push(Mr),Mr.destroy()})});const rc=An.filter(wn=>Na(wn,oi,ci)),Lc=new Map;Fa(Lc,this.driver,Vr,ci,w.kp).forEach(wn=>{Na(wn,oi,ci)&&rc.push(wn)});const $c=new Map;bn.forEach((wn,On)=>{Fa($c,this.driver,new Set(wn),oi,w.FX)}),rc.forEach(wn=>{const On=Lc.get(wn),Gn=$c.get(wn);Lc.set(wn,new Map([...On?.entries()??[],...Gn?.entries()??[]]))});const W2=[],bl=[],X2={};It.forEach(wn=>{const{element:On,player:Gn,instruction:Mr}=wn;if(U.has(On)){if(Ui.has(On))return Gn.onDestroy(()=>Ae(On,Mr.toStyles)),Gn.disabled=!0,Gn.overrideTotalTime(Mr.totalTime),void G.push(Gn);let _o=X2;if(ia.size>1){let xs=On;const yl=[];for(;xs=xs.parentNode;){const wa=ia.get(xs);if(wa){_o=wa;break}yl.push(xs)}yl.forEach(wa=>ia.set(wa,_o))}const ac=this._buildAnimation(Gn.namespaceId,Mr,ma,Oe,$c,Lc);if(Gn.setRealPlayer(ac),_o===X2)W2.push(Gn);else{const xs=this.playersByElement.get(_o);xs&&xs.length&&(Gn.parentPlayer=ze(xs)),G.push(Gn)}}else we(On,Mr.fromStyles),Gn.onDestroy(()=>Ae(On,Mr.toStyles)),bl.push(Gn),Ui.has(On)&&G.push(Gn)}),bl.forEach(wn=>{const On=Oe.get(wn.element);if(On&&On.length){const Gn=ze(On);wn.setRealPlayer(Gn)}}),G.forEach(wn=>{wn.parentPlayer?wn.syncPlayerEvents(wn.parentPlayer):wn.destroy()});for(let wn=0;wn!ac.destroyed);_o.length?Br(this,On,_o):this.processLeaveNode(On)}return An.length=0,W2.forEach(wn=>{this.players.push(wn),wn.onDone(()=>{wn.destroy();const On=this.players.indexOf(wn);this.players.splice(On,1)}),wn.play()}),W2}afterFlush(H){this._flushFns.push(H)}afterFlushAnimationsDone(H){this._whenQuietFns.push(H)}_getPreviousPlayers(H,b,U,G,Oe){let It=[];if(b){const Lt=this.playersByQueriedElement.get(H);Lt&&(It=Lt)}else{const Lt=this.playersByElement.get(H);if(Lt){const oi=!Oe||Oe==hn;Lt.forEach(ci=>{ci.queued||!oi&&ci.triggerName!=G||It.push(ci)})}}return(U||G)&&(It=It.filter(Lt=>!(U&&U!=Lt.namespaceId||G&&G!=Lt.triggerName))),It}_beforeAnimationBuild(H,b,U){const Oe=b.element,It=b.isRemovalTransition?void 0:H,Lt=b.isRemovalTransition?void 0:b.triggerName;for(const oi of b.timelines){const ci=oi.element,Ui=ci!==Oe,Ti=me(U,ci,[]);this._getPreviousPlayers(ci,Ui,It,Lt,b.toState).forEach(bn=>{const Yi=bn.getRealPlayer();Yi.beforeDestroy&&Yi.beforeDestroy(),bn.destroy(),Ti.push(bn)})}we(Oe,b.fromStyles)}_buildAnimation(H,b,U,G,Oe,It){const Lt=b.triggerName,oi=b.element,ci=[],Ui=new Set,Ti=new Set,un=b.timelines.map(Yi=>{const Ji=Yi.element;Ui.add(Ji);const An=Ji[zn];if(An&&An.removedBeforeQueried)return new w.sf(Yi.duration,Yi.delay);const Un=Ji!==oi,Vr=function Ua(O){const H=[];return rs(O,H),H}((U.get(Ji)||ho).map(ma=>ma.getRealPlayer())).filter(ma=>!!ma.element&&ma.element===Ji),la=Oe.get(Ji),cr=It.get(Ji),ta=qe(this._normalizer,Yi.keyframes,la,cr),Ar=this._buildPlayer(Yi,ta,Vr);if(Yi.subTimeline&&G&&Ti.add(Ji),Un){const ma=new wo(H,Lt,Ji);ma.setRealPlayer(Ar),ci.push(ma)}return Ar});ci.forEach(Yi=>{me(this.playersByQueriedElement,Yi.element,[]).push(Yi),Yi.onDone(()=>function zo(O,H,b){let U=O.get(H);if(U){if(U.length){const G=U.indexOf(b);U.splice(G,1)}0==U.length&&O.delete(H)}return U}(this.playersByQueriedElement,Yi.element,Yi))}),Ui.forEach(Yi=>kr(Yi,Vt));const bn=ze(un);return bn.onDestroy(()=>{Ui.forEach(Yi=>ha(Yi,Vt)),Ae(oi,b.toStyles)}),Ti.forEach(Yi=>{me(G,Yi,[]).push(bn)}),bn}_buildPlayer(H,b,U){return b.length>0?this.driver.animate(H.element,b,H.duration,H.delay,H.easing,U):new w.sf(H.duration,H.delay)}}class wo{constructor(H,b,U){this.namespaceId=H,this.triggerName=b,this.element=U,this._player=new w.sf,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.parentPlayer=null,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(H){this._containsRealPlayer||(this._player=H,this._queuedCallbacks.forEach((b,U)=>{b.forEach(G=>Ke(H,U,void 0,G))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(H.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(H){this.totalTime=H}syncPlayerEvents(H){const b=this._player;b.triggerCallback&&H.onStart(()=>b.triggerCallback("start")),H.onDone(()=>this.finish()),H.onDestroy(()=>this.destroy())}_queueEvent(H,b){me(this._queuedCallbacks,H,[]).push(b)}onDone(H){this.queued&&this._queueEvent("done",H),this._player.onDone(H)}onStart(H){this.queued&&this._queueEvent("start",H),this._player.onStart(H)}onDestroy(H){this.queued&&this._queueEvent("destroy",H),this._player.onDestroy(H)}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(H){this.queued||this._player.setPosition(H)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(H){const b=this._player;b.triggerCallback&&b.triggerCallback(H)}}function ao(O){return O&&1===O.nodeType}function ns(O,H){const b=O.style.display;return O.style.display=H??"none",b}function Fa(O,H,b,U,G){const Oe=[];b.forEach(oi=>Oe.push(ns(oi)));const It=[];U.forEach((oi,ci)=>{const Ui=new Map;oi.forEach(Ti=>{const un=H.computeStyle(ci,Ti,G);Ui.set(Ti,un),(!un||0==un.length)&&(ci[zn]=Sa,It.push(ci))}),O.set(ci,Ui)});let Lt=0;return b.forEach(oi=>ns(oi,Oe[Lt++])),It}function Ro(O,H){const b=new Map;if(O.forEach(Lt=>b.set(Lt,[])),0==H.length)return b;const G=new Set(H),Oe=new Map;function It(Lt){if(!Lt)return 1;let oi=Oe.get(Lt);if(oi)return oi;const ci=Lt.parentNode;return oi=b.has(ci)?ci:G.has(ci)?1:It(ci),Oe.set(Lt,oi),oi}return H.forEach(Lt=>{const oi=It(Lt);1!==oi&&b.get(oi).push(Lt)}),b}function kr(O,H){O.classList?.add(H)}function ha(O,H){O.classList?.remove(H)}function Br(O,H,b){ze(b).onDone(()=>O.processLeaveNode(H))}function rs(O,H){for(let b=0;bG.add(Oe)):H.set(O,U),b.delete(O),!0}class ja{constructor(H,b,U){this._driver=b,this._normalizer=U,this._triggerCache={},this.onRemovalComplete=(G,Oe)=>{},this._transitionEngine=new Co(H.body,b,U),this._timelineEngine=new Ho(H.body,b,U),this._transitionEngine.onRemovalComplete=(G,Oe)=>this.onRemovalComplete(G,Oe)}registerTrigger(H,b,U,G,Oe){const It=H+"-"+G;let Lt=this._triggerCache[It];if(!Lt){const oi=[],Ui=zi(this._driver,Oe,oi,[]);if(oi.length)throw function n(O,H){return new t.wOt(3404,!1)}();Lt=function nr(O,H,b){return new or(O,H,b)}(G,Ui,this._normalizer),this._triggerCache[It]=Lt}this._transitionEngine.registerTrigger(b,G,Lt)}register(H,b){this._transitionEngine.register(H,b)}destroy(H,b){this._transitionEngine.destroy(H,b)}onInsert(H,b,U,G){this._transitionEngine.insertNode(H,b,U,G)}onRemove(H,b,U){this._transitionEngine.removeNode(H,b,U)}disableAnimations(H,b){this._transitionEngine.markElementAsDisabled(H,b)}process(H,b,U,G){if("@"==U.charAt(0)){const[Oe,It]=ce(U);this._timelineEngine.command(Oe,b,It,G)}else this._transitionEngine.trigger(H,b,U,G)}listen(H,b,U,G,Oe){if("@"==U.charAt(0)){const[It,Lt]=ce(U);return this._timelineEngine.listen(It,b,Lt,Oe)}return this._transitionEngine.listen(H,b,U,G,Oe)}flush(H=-1){this._transitionEngine.flush(H)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(H){this._transitionEngine.afterFlushAnimationsDone(H)}}class Uo{static#e=this.initialStylesByElement=new WeakMap;constructor(H,b,U){this._element=H,this._startStyles=b,this._endStyles=U,this._state=0;let G=Uo.initialStylesByElement.get(H);G||Uo.initialStylesByElement.set(H,G=new Map),this._initialStyles=G}start(){this._state<1&&(this._startStyles&&Ae(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Ae(this._element,this._initialStyles),this._endStyles&&(Ae(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(Uo.initialStylesByElement.delete(this._element),this._startStyles&&(we(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(we(this._element,this._endStyles),this._endStyles=null),Ae(this._element,this._initialStyles),this._state=3)}}function uo(O){let H=null;return O.forEach((b,U)=>{(function ga(O){return"display"===O||"position"===O})(U)&&(H=H||new Map,H.set(U,b))}),H}class Za{constructor(H,b,U,G){this.element=H,this.keyframes=b,this.options=U,this._specialStyles=G,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=U.duration,this._delay=U.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(H=>H()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const H=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,H,this.options),this._finalKeyframe=H.length?H[H.length-1]:new Map;const b=()=>this._onFinish();this.domPlayer.addEventListener("finish",b),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",b)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(H){const b=[];return H.forEach(U=>{b.push(Object.fromEntries(U))}),b}_triggerWebAnimation(H,b,U){return H.animate(this._convertKeyframesToObject(b),U)}onStart(H){this._originalOnStartFns.push(H),this._onStartFns.push(H)}onDone(H){this._originalOnDoneFns.push(H),this._onDoneFns.push(H)}onDestroy(H){this._onDestroyFns.push(H)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(H=>H()),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,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_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(H=>H()),this._onDestroyFns=[])}setPosition(H){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=H*this.time}getPosition(){return+(this.domPlayer.currentTime??0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const H=new Map;this.hasStarted()&&this._finalKeyframe.forEach((U,G)=>{"offset"!==G&&H.set(G,this._finished?U:mi(this.element,G))}),this.currentSnapshot=H}triggerCallback(H){const b="start"===H?this._onStartFns:this._onDoneFns;b.forEach(U=>U()),b.length=0}}class Lr{validateStyleProperty(H){return!0}validateAnimatableStyleProperty(H){return!0}containsElement(H,b){return at(H,b)}getParentElement(H){return ke(H)}query(H,b,U){return pt(H,b,U)}computeStyle(H,b,U){return mi(H,b)}animate(H,b,U,G,Oe,It=[]){const oi={duration:U,delay:G,fill:0==G?"both":"forwards"};Oe&&(oi.easing=Oe);const ci=new Map,Ui=It.filter(bn=>bn instanceof Za);(function et(O,H){return 0===O||0===H})(U,G)&&Ui.forEach(bn=>{bn.currentSnapshot.forEach((Yi,Ji)=>ci.set(Ji,Yi))});let Ti=function St(O){return O.length?O[0]instanceof Map?O:O.map(H=>new Map(Object.entries(H))):[]}(b).map(bn=>new Map(bn));Ti=function st(O,H,b){if(b.size&&H.length){let U=H[0],G=[];if(b.forEach((Oe,It)=>{U.has(It)||G.push(It),U.set(It,Oe)}),G.length)for(let Oe=1;OeIt.set(Lt,mi(O,Lt)))}}return H}(H,Ti,ci);const un=function Bo(O,H){let b=null,U=null;return Array.isArray(H)&&H.length?(b=uo(H[0]),H.length>1&&(U=uo(H[H.length-1]))):H instanceof Map&&(b=uo(H)),b||U?new Uo(O,b,U):null}(H,Ti);return new Za(H,Ti,oi,un)}}const Bn="@.disabled";class Da{constructor(H,b,U,G){this.namespaceId=H,this.delegate=b,this.engine=U,this._onDestroy=G,this.\u0275type=0}get data(){return this.delegate.data}destroyNode(H){this.delegate.destroyNode?.(H)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(H,b){return this.delegate.createElement(H,b)}createComment(H){return this.delegate.createComment(H)}createText(H){return this.delegate.createText(H)}appendChild(H,b){this.delegate.appendChild(H,b),this.engine.onInsert(this.namespaceId,b,H,!1)}insertBefore(H,b,U,G=!0){this.delegate.insertBefore(H,b,U),this.engine.onInsert(this.namespaceId,b,H,G)}removeChild(H,b,U){this.engine.onRemove(this.namespaceId,b,this.delegate)}selectRootElement(H,b){return this.delegate.selectRootElement(H,b)}parentNode(H){return this.delegate.parentNode(H)}nextSibling(H){return this.delegate.nextSibling(H)}setAttribute(H,b,U,G){this.delegate.setAttribute(H,b,U,G)}removeAttribute(H,b,U){this.delegate.removeAttribute(H,b,U)}addClass(H,b){this.delegate.addClass(H,b)}removeClass(H,b){this.delegate.removeClass(H,b)}setStyle(H,b,U,G){this.delegate.setStyle(H,b,U,G)}removeStyle(H,b,U){this.delegate.removeStyle(H,b,U)}setProperty(H,b,U){"@"==b.charAt(0)&&b==Bn?this.disableAnimations(H,!!U):this.delegate.setProperty(H,b,U)}setValue(H,b){this.delegate.setValue(H,b)}listen(H,b,U){return this.delegate.listen(H,b,U)}disableAnimations(H,b){this.engine.disableAnimations(H,b)}}class Go extends Da{constructor(H,b,U,G,Oe){super(b,U,G,Oe),this.factory=H,this.namespaceId=b}setProperty(H,b,U){"@"==b.charAt(0)?"."==b.charAt(1)&&b==Bn?this.disableAnimations(H,U=void 0===U||!!U):this.engine.process(this.namespaceId,H,b.slice(1),U):this.delegate.setProperty(H,b,U)}listen(H,b,U){if("@"==b.charAt(0)){const G=function Wa(O){switch(O){case"body":return document.body;case"document":return document;case"window":return window;default:return O}}(H);let Oe=b.slice(1),It="";return"@"!=Oe.charAt(0)&&([Oe,It]=function as(O){const H=O.indexOf(".");return[O.substring(0,H),O.slice(H+1)]}(Oe)),this.engine.listen(this.namespaceId,G,Oe,It,Lt=>{this.factory.scheduleListenerCallback(Lt._data||-1,U,Lt)})}return this.delegate.listen(H,b,U)}}class Ft{constructor(H,b,U){this.delegate=H,this.engine=b,this._zone=U,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,b.onRemovalComplete=(G,Oe)=>{const It=Oe?.parentNode(G);It&&Oe.removeChild(It,G)}}createRenderer(H,b){const G=this.delegate.createRenderer(H,b);if(!H||!b?.data?.animation){const ci=this._rendererCache;let Ui=ci.get(G);return Ui||(Ui=new Da("",G,this.engine,()=>ci.delete(G)),ci.set(G,Ui)),Ui}const Oe=b.id,It=b.id+"-"+this._currentId;this._currentId++,this.engine.register(It,H);const Lt=ci=>{Array.isArray(ci)?ci.forEach(Lt):this.engine.registerTrigger(Oe,It,H,ci.name,ci)};return b.data.animation.forEach(Lt),new Go(this,It,G,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(H,b,U){if(H>=0&&Hb(U));const G=this._animationCallbacksBuffer;0==G.length&&queueMicrotask(()=>{this._zone.run(()=>{G.forEach(Oe=>{const[It,Lt]=Oe;It(Lt)}),this._animationCallbacksBuffer=[]})}),G.push([b,U])}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()}}var ri=g(177);const Ki=[{provide:Ie,useFactory:function ai(){return new Pt}},{provide:ja,useClass:(()=>{class O extends ja{constructor(b,U,G){super(b,U,G)}ngOnDestroy(){this.flush()}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(ri.qQ),t.KVO(ue),t.KVO(Ie))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})()},{provide:t._9s,useFactory:function Ei(O,H,b){return new Ft(O,H,b)},deps:[e.B7,ja,t.SKi]}],tr=[{provide:ue,useFactory:()=>new Lr},{provide:t.bc$,useValue:"BrowserAnimations"},...Ki],Or=[{provide:ue,useClass:ye},{provide:t.bc$,useValue:"NoopAnimations"},...Ki];let Fr=(()=>{class O{static withConfig(b){return{ngModule:O,providers:b.disableAnimations?Or:tr}}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O});static#i=this.\u0275inj=t.G2t({providers:tr,imports:[e.Bb]})}return O})();var Ms=g(1626),oa=g(9327),Ri=g(9640),lt=g(4054),ht=g(983),Ue=g(1985),At=g(7673),ni=g(7786),pn=g(7242),Zn=g(2771),Fo=g(7647),vr=g(5964),Xa=g(6354),lc=g(274),dc=g(3236),hc=g(8211),jo=g(9974),Wo=g(8750),fo=g(1853),Is=g(4360),Vn=g(5225);const Kr=(0,fo.L)(O=>function(b=null){O(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=b});function so(O){throw new Kr(O)}var Ir=g(152),Aa=g(9437),$s=g(6697),dn=g(6977),Es=g(5558),uc=g(5245),Ss=g(941),fc=g(3993),_s=g(2816),kl=g(9079);const vs="PERFORM_ACTION",el="ROLLBACK",Rs="TOGGLE_ACTION",pc="JUMP_TO_STATE",Js="JUMP_TO_ACTION",bs="IMPORT_STATE",gc="LOCK_CHANGES",_c="PAUSE_RECORDING";class os{constructor(H,b){if(this.action=H,this.timestamp=b,this.type=vs,typeof H.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class So{constructor(){this.type="REFRESH"}}class Os{constructor(H){this.timestamp=H,this.type="RESET"}}class tl{constructor(H){this.timestamp=H,this.type=el}}class Rc{constructor(H){this.timestamp=H,this.type="COMMIT"}}class Il{constructor(){this.type="SWEEP"}}class il{constructor(H){this.id=H,this.type=Rs}}class Fs{constructor(H){this.index=H,this.type=pc}}class nt{constructor(H){this.actionId=H,this.type=Js}}class Rt{constructor(H){this.nextLiftedState=H,this.type=bs}}class kt{constructor(H){this.status=H,this.type=gc}}class Z{constructor(H){this.status=H,this.type=_c}}const De=new t.nKC("@ngrx/store-devtools Options"),We=new t.nKC("@ngrx/store-devtools Initial Config");function Dt(){return null}const ei="NgRx Store DevTools";function pi(O){const H={maxAge:!1,monitor:Dt,actionSanitizer:void 0,stateSanitizer:void 0,name:ei,serialize:!1,logOnly:!1,autoPause:!1,trace:!1,traceLimit:75,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0},connectInZone:!1},b="function"==typeof O?O():O,G=b.features||!!b.logOnly&&{pause:!0,export:!0,test:!0}||H.features;!0===G.import&&(G.import="custom");const Oe=Object.assign({},H,{features:G},b);if(Oe.maxAge&&Oe.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${Oe.maxAge}`);return Oe}function Di(O,H){return O.filter(b=>H.indexOf(b)<0)}function an(O){const{computedStates:H,currentStateIndex:b}=O;if(b>=H.length){const{state:G}=H[H.length-1];return G}const{state:U}=H[b];return U}function yn(O){return new os(O,+Date.now())}function Dn(O,H){return Object.keys(H).reduce((b,U)=>{const G=Number(U);return b[G]=hr(O,H[G],G),b},{})}function hr(O,H,b){return{...H,action:O(H.action,b)}}function ir(O,H){return H.map((b,U)=>({state:br(O,b.state,U),error:b.error}))}function br(O,H,b){return O(H,b)}function gr(O){return O.predicate||O.actionsSafelist||O.actionsBlocklist}function sa(O,H,b,U,G){const Oe=b&&!b(O,H.action),It=U&&!H.action.type.match(U.map(oi=>Hn(oi)).join("|")),Lt=G&&H.action.type.match(G.map(oi=>Hn(oi)).join("|"));return Oe||It||Lt}function Hn(O){return O.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Bi(O){return{ngZone:O?(0,t.WQX)(t.SKi):null,connectInZone:O}}let sn=(()=>{class O extends Ri.SS{static#e=this.\u0275fac=(()=>{let b;return function(G){return(b||(b=t.xGo(O)))(G||O)}})();static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const $r=new t.nKC("@ngrx/store-devtools Redux Devtools Extension");let fa=(()=>{class O{constructor(b,U,G){this.config=U,this.dispatcher=G,this.zoneConfig=Bi(this.config.connectInZone),this.devtoolsExtension=b,this.createActionStreams()}notify(b,U){if(this.devtoolsExtension)if(b.type===vs){if(U.isLocked||U.isPaused)return;const G=an(U);if(gr(this.config)&&sa(G,b,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const Oe=this.config.stateSanitizer?br(this.config.stateSanitizer,G,U.currentStateIndex):G,It=this.config.actionSanitizer?hr(this.config.actionSanitizer,b,U.nextActionId):b;this.sendToReduxDevtools(()=>this.extensionConnection.send(It,Oe))}else{const G={...U,stagedActionIds:U.stagedActionIds,actionsById:this.config.actionSanitizer?Dn(this.config.actionSanitizer,U.actionsById):U.actionsById,computedStates:this.config.stateSanitizer?ir(this.config.stateSanitizer,U.computedStates):U.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,G,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new Ue.c(b=>{const U=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=U,U.init(),U.subscribe(G=>b.next(G)),U.unsubscribe}):ht.w}createActionStreams(){const b=this.createChangesObservable().pipe((0,Fo.u)()),U=b.pipe((0,vr.p)(ci=>"START"===ci.type)),G=b.pipe((0,vr.p)(ci=>"STOP"===ci.type)),Oe=b.pipe((0,vr.p)(ci=>"DISPATCH"===ci.type),(0,Xa.T)(ci=>this.unwrapAction(ci.payload)),(0,lc.H)(ci=>ci.type===bs?this.dispatcher.pipe((0,vr.p)(Ui=>Ui.type===Ri.q6),function ua(O,H){const{first:b,each:U,with:G=so,scheduler:Oe=H??dc.E,meta:It=null}=(0,hc.v)(O)?{first:O}:"number"==typeof O?{each:O}:O;if(null==b&&null==U)throw new TypeError("No timeout provided.");return(0,jo.N)((Lt,oi)=>{let ci,Ui,Ti=null,un=0;const bn=Yi=>{Ui=(0,Vn.N)(oi,Oe,()=>{try{ci.unsubscribe(),(0,Wo.Tg)(G({meta:It,lastValue:Ti,seen:un})).subscribe(oi)}catch(Ji){oi.error(Ji)}},Yi)};ci=Lt.subscribe((0,Is._)(oi,Yi=>{Ui?.unsubscribe(),un++,oi.next(Ti=Yi),U>0&&bn(U)},void 0,void 0,()=>{Ui?.closed||Ui?.unsubscribe(),Ti=null})),!un&&bn(null!=b?"number"==typeof b?b:+b-Oe.now():U)})}(1e3),(0,Ir.B)(1e3),(0,Xa.T)(()=>ci),(0,Aa.W)(()=>(0,At.of)(ci)),(0,$s.s)(1)):(0,At.of)(ci))),Lt=b.pipe((0,vr.p)(ci=>"ACTION"===ci.type),(0,Xa.T)(ci=>this.unwrapAction(ci.payload))).pipe((0,dn.Q)(G)),oi=Oe.pipe((0,dn.Q)(G));this.start$=U.pipe((0,dn.Q)(G)),this.actions$=this.start$.pipe((0,Es.n)(()=>Lt)),this.liftedActions$=this.start$.pipe((0,Es.n)(()=>oi))}unwrapAction(b){return"string"==typeof b?(0,eval)(`(${b})`):b}getExtensionConfig(b){const U={name:b.name,features:b.features,serialize:b.serialize,autoPause:b.autoPause??!1,trace:b.trace??!1,traceLimit:b.traceLimit??75};return!1!==b.maxAge&&(U.maxAge=b.maxAge),U}sendToReduxDevtools(b){try{b()}catch(U){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",U)}}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO($r),t.KVO(De),t.KVO(sn))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const Ya={type:Ri.Zz},Ur={type:"@ngrx/store-devtools/recompute"};function va(O,H,b,U,G){if(U)return{state:b,error:"Interrupted by an error up the chain"};let It,Oe=b;try{Oe=O(b,H)}catch(Lt){It=Lt.toString(),G.handleError(Lt)}return{state:Oe,error:It}}function cs(O,H,b,U,G,Oe,It,Lt,oi){if(H>=O.length&&O.length===Oe.length)return O;const ci=O.slice(0,H),Ui=Oe.length-(oi?1:0);for(let Ti=H;Ti-1?Yi:va(b,bn,Ji,An,Lt);ci.push(Vr)}return oi&&ci.push(O[O.length-1]),ci}let Rl=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi,ci){const Ui=function Wn(O,H){return{monitorState:H(void 0,{}),nextActionId:1,actionsById:{0:yn(Ya)},stagedActionIds:[0],skippedActionIds:[],committedState:O,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(oi,ci.monitor),Ti=function bc(O,H,b,U,G={}){return Oe=>(It,Lt)=>{let{monitorState:oi,actionsById:ci,nextActionId:Ui,stagedActionIds:Ti,skippedActionIds:un,committedState:bn,currentStateIndex:Yi,computedStates:Ji,isLocked:An,isPaused:Un}=It||H;function Vr(ta){let Ar=ta,ma=Ti.slice(1,Ar+1);for(let ia=0;ia-1===ma.indexOf(ia)),Ti=[0,...Ti.slice(Ar+1)],bn=Ji[Ar].state,Ji=Ji.slice(Ar),Yi=Yi>Ar?Yi-Ar:0}function la(){ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],bn=Ji[Yi].state,Yi=0,Ji=[]}It||(ci=Object.create(ci));let cr=0;switch(Lt.type){case gc:An=Lt.status,cr=1/0;break;case _c:Un=Lt.status,Un?(Ti=[...Ti,Ui],ci[Ui]=new os({type:"@ngrx/devtools/pause"},+Date.now()),Ui++,cr=Ti.length-1,Ji=Ji.concat(Ji[Ji.length-1]),Yi===Ti.length-2&&Yi++,cr=1/0):la();break;case"RESET":ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],bn=O,Yi=0,Ji=[];break;case"COMMIT":la();break;case el:ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],Yi=0,Ji=[];break;case Rs:{const{id:ta}=Lt;un=-1===un.indexOf(ta)?[ta,...un]:un.filter(ma=>ma!==ta),cr=Ti.indexOf(ta);break}case"SET_ACTIONS_ACTIVE":{const{start:ta,end:Ar,active:ma}=Lt,ia=[];for(let rc=ta;rcG.maxAge&&(Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),Vr(Ti.length-G.maxAge),cr=1/0);break;case Ri.q6:if(Ji.filter(Ar=>Ar.error).length>0)cr=0,G.maxAge&&Ti.length>G.maxAge&&(Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),Vr(Ti.length-G.maxAge),cr=1/0);else{if(!Un&&!An){Yi===Ti.length-1&&Yi++;const Ar=Ui++;ci[Ar]=new os(Lt,+Date.now()),Ti=[...Ti,Ar],cr=Ti.length-1,Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un)}Ji=Ji.map(Ar=>({...Ar,state:Oe(Ar.state,Ur)})),Yi=Ti.length-1,G.maxAge&&Ti.length>G.maxAge&&Vr(Ti.length-G.maxAge),cr=1/0}break;default:cr=1/0}return Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),oi=U(oi,Lt),{monitorState:oi,actionsById:ci,nextActionId:Ui,stagedActionIds:Ti,skippedActionIds:un,committedState:bn,currentStateIndex:Yi,computedStates:Ji,isLocked:An,isPaused:Un}}}(oi,Ui,Lt,ci.monitor,ci),un=(0,ni.h)((0,ni.h)(U.asObservable().pipe((0,uc.i)(1)),Oe.actions$).pipe((0,Xa.T)(yn)),b,Oe.liftedActions$).pipe((0,Ss.Q)(pn.T)),bn=G.pipe((0,Xa.T)(Ti)),Yi=Bi(ci.connectInZone),Ji=new Zn.m(1);this.liftedStateSubscription=un.pipe((0,fc.E)(bn),yc(Yi),(0,_s.S)(({state:Vr},[la,cr])=>{let ta=cr(Vr,la);return la.type!==vs&&gr(ci)&&(ta=function Cr(O,H,b,U){const G=[],Oe={},It=[];return O.stagedActionIds.forEach((Lt,oi)=>{const ci=O.actionsById[Lt];ci&&(oi&&sa(O.computedStates[oi],ci,H,b,U)||(Oe[Lt]=ci,G.push(Lt),It.push(O.computedStates[oi])))}),{...O,stagedActionIds:G,actionsById:Oe,computedStates:It}}(ta,ci.predicate,ci.actionsSafelist,ci.actionsBlocklist)),Oe.notify(la,ta),{state:ta,action:la}},{state:Ui,action:null})).subscribe(({state:Vr,action:la})=>{Ji.next(Vr),la.type===vs&&It.next(la.action)}),this.extensionStartSubscription=Oe.start$.pipe(yc(Yi)).subscribe(()=>{this.refresh()});const An=Ji.asObservable(),Un=An.pipe((0,Xa.T)(an));Object.defineProperty(Un,"state",{value:(0,kl.ot)(Un,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=b,this.liftedState=An,this.state=Un}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(b){this.dispatcher.next(b)}next(b){this.dispatcher.next(b)}error(b){}complete(){}performAction(b){this.dispatch(new os(b,+Date.now()))}refresh(){this.dispatch(new So)}reset(){this.dispatch(new Os(+Date.now()))}rollback(){this.dispatch(new tl(+Date.now()))}commit(){this.dispatch(new Rc(+Date.now()))}sweep(){this.dispatch(new Il)}toggleAction(b){this.dispatch(new il(b))}jumpToAction(b){this.dispatch(new nt(b))}jumpToState(b){this.dispatch(new Fs(b))}importState(b){this.dispatch(new Rt(b))}lockChanges(b){this.dispatch(new kt(b))}pauseRecording(b){this.dispatch(new Z(b))}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(sn),t.KVO(Ri.SS),t.KVO(Ri.QU),t.KVO(fa),t.KVO(Ri.sA),t.KVO(t.zcH),t.KVO(Ri.N_),t.KVO(De))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();function yc({ngZone:O,connectInZone:H}){return b=>H?new Ue.c(U=>b.subscribe({next:G=>O.run(()=>U.next(G)),error:G=>O.run(()=>U.error(G)),complete:()=>O.run(()=>U.complete())})):b}const Qr=new t.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function mo(O,H){return!!O||H.monitor!==Dt}function To(){const O="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[O]<"u"?window[O]:null}function qs(O={}){return(0,t.EmA)([fa,sn,Rl,{provide:We,useValue:O},{provide:Qr,deps:[$r,De],useFactory:mo},{provide:$r,useFactory:To},{provide:De,deps:[We],useFactory:pi},{provide:Ri.h1,deps:[Rl],useFactory:Oc},{provide:Ri.Bh,useExisting:sn}])}function Oc(O){return O.state}let Ns=(()=>{class O{static instrument(b={}){return{ngModule:O,providers:[qs(b)]}}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O});static#i=this.\u0275inj=t.G2t({})}return O})();var Gi=g(1413),Fc=g(3726),Ps=g(2806),kn=g(1807);function nl(O=0,H=dc.E){return O<0&&(O=0),(0,kn.O)(O,O,H)}var rl=g(8359),Xo=g(7908),Ol=g(9326),ea=g(8141),Fl=g(980),ka=g(3294);class ba{}function Ts(O){return(0,t.EmA)([{provide:ba,useValue:O}])}let Vs=(()=>{class O{constructor(b,U){this._ngZone=U,this.timerStart$=new Gi.B,this.idleDetected$=new Gi.B,this.timeout$=new Gi.B,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,b&&this.setConfig(b)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,ni.h)((0,Fc.R)(window,"mousemove"),(0,Fc.R)(window,"resize"),(0,Fc.R)(document,"keydown"))),this.idle$=(0,Ps.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function Nc(O,...H){var b,U;const G=null!==(b=(0,Ol.lI)(H))&&void 0!==b?b:dc.E,Oe=null!==(U=H[0])&&void 0!==U?U:null,It=H[1]||1/0;return(0,jo.N)((Lt,oi)=>{let ci=[],Ui=!1;const Ti=Yi=>{const{buffer:Ji,subs:An}=Yi;An.unsubscribe(),(0,Xo.o)(ci,Yi),oi.next(Ji),Ui&&un()},un=()=>{if(ci){const Yi=new rl.yU;oi.add(Yi);const An={buffer:[],subs:Yi};ci.push(An),(0,Vn.N)(Yi,G,()=>Ti(An),O)}};null!==Oe&&Oe>=0?(0,Vn.N)(oi,G,un,Oe,!0):Ui=!0,un();const bn=(0,Is._)(oi,Yi=>{const Ji=ci.slice();for(const An of Ji){const{buffer:Un}=An;Un.push(Yi),It<=Un.length&&Ti(An)}},()=>{for(;ci?.length;)oi.next(ci.shift().buffer);bn?.unsubscribe(),oi.complete(),oi.unsubscribe()},void 0,()=>ci=null);Lt.subscribe(bn)})}(this.idleSensitivityMillisec),(0,vr.p)(b=>!b.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,ea.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Es.n)(()=>this._ngZone.runOutsideAngular(()=>nl(1e3).pipe((0,dn.Q)((0,ni.h)(this.activityEvents$,(0,kn.O)(this.idleMillisec).pipe((0,ea.M)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,Fl.j)(()=>{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,ka.F)(),(0,Es.n)(b=>b?this.timer$:(0,At.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,vr.p)(b=>!!b),(0,ea.M)(()=>this.isTimeout=!0),(0,Xa.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(b){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(b):console.error("Call stopWatching() before set config values")}setConfig(b){b.idle&&(this.idleMillisec=1e3*b.idle),b.ping&&(this.pingMillisec=1e3*b.ping),b.idleSensitivity&&(this.idleSensitivityMillisec=1e3*b.idleSensitivity),b.timeout&&(this.timeout=b.timeout)}setCustomActivityEvents(b){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=b:console.error("Call stopWatching() before set custom activity events")}setupTimer(b){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,At.of)(()=>new Date).pipe((0,Xa.T)(U=>U()),(0,Es.n)(U=>nl(1e3).pipe((0,Xa.T)(()=>Math.round(((new Date).valueOf()-U.valueOf())/1e3)),(0,ea.M)(G=>{G>=b&&this.timeout$.next(!0)}))))})}setupPing(b){this.ping$=nl(b).pipe((0,vr.p)(()=>!this.isTimeout))}}return O.\u0275fac=function(b){return new(b||O)(t.KVO(ba,8),t.KVO(t.SKi))},O.\u0275prov=t.jDH({token:O,factory:O.\u0275fac,providedIn:"root"}),O})();var En=g(1188),nn=g(5383),Gr=g(9647),ya=g(60),$i=g(2920),mr=g(5596),ca=g(6850);const Nl=()=>({initial:!1});function v0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[1].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[1].link),t.Y8G("active",b.activeLink===b.links[1].link)("state",t.lJ4(4,Nl)),t.R7$(),t.JRh(b.links[1].name)}}function Hu(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link),t.R7$(),t.JRh(b.links[2].name)}}let b0=(()=>{class O{constructor(b,U){this.store=b,this.router=U,this.faUserCog=nn.McB,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){const b=this.links.find(U=>this.router.url.includes(U.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{this.showBitcoind=!1,this.selNode=U,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-settings"]],decls:16,vars:7,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","tabindex","3","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"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Settings"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.DNE(10,v0,2,5,"div",8)(11,Hu,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()}if(2&U){const Oe=t.sdS(13);t.R7$(),t.Y8G("icon",G.faUserCog),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.Y8G("ngIf",!+G.appConfig.SSO.rtlSSO),t.R7$(),t.Y8G("ngIf",G.showBitcoind)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();var Cn=g(1771),Yo=g(8570),Wi=g(9417),ve=g(8834),Pe=g(6467),xe=g(2798),Be=g(6600),ft=g(497),Ot=g(9587);function qt(O,H){if(1&O&&(t.j41(0,"mat-option",15),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.index),t.R7$(),t.Lme(" ",b.lnNode," (",b.lnImplementation,") ")}}function Mi(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",3,0)(2,"div",4),t.nrm(3,"fa-icon",5),t.j41(4,"span",6),t.EFF(5,"Default Node"),t.k0s()(),t.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-select",10),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.appConfig.defaultNodeIndex,G)||(Oe.appConfig.defaultNodeIndex=G),t.Njj(G)}),t.DNE(10,qt,2,3,"mat-option",11),t.k0s()()(),t.j41(11,"div",12)(12,"div",8)(13,"button",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onResetSettings())}),t.EFF(14,"Reset"),t.k0s(),t.j41(15,"button",14),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onUpdateApplicationSettings())}),t.EFF(16,"Update"),t.k0s()()()()()}if(2&O){const b=t.XpG();t.R7$(3),t.Y8G("icon",b.faWindowRestore),t.R7$(6),t.R50("ngModel",b.appConfig.defaultNodeIndex),t.R7$(),t.Y8G("ngForOf",b.appConfig.nodes)}}let vi=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faWindowRestore=nn.aFw,this.faPlus=nn.QLR,this.previousDefaultNode=0,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(b)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateApplicationSettings(){this.appConfig.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,this.store.dispatch((0,Cn.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-app-settings"]],decls:2,vars:1,consts:[["form","ngForm"],["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"],["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","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start start"],["autoFocus","","tabindex","1","name","defaultNode",3,"ngModelChange","ngModel"],[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(U,G){1&U&&(t.j41(0,"div",1),t.DNE(1,Mi,17,3,"form",2),t.k0s()),2&U&&(t.R7$(),t.Y8G("ngIf",G.appConfig.nodes&&G.appConfig.nodes.length&&G.appConfig.nodes.length>0))},dependencies:[ri.Sq,ri.bT,Wi.qT,Wi.BC,Wi.cb,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Pe.rl,xe.VO,Be.wT,ft.Ld,Ot.N]})}return O})();var on=g(2852),Sn=g(5351),Jn=g(1264),_r=g(7541),ys=g(5416),Nr=g(9631),Ka=g(6013),ls=g(8288),xc=g(9157);const Pl=["stepper"];function Ko(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG();t.JRh(b.passwordFormLabel)}}function Ds(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function Hs(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.secretFormLabel)}}function Cc(O,H){if(1&O&&t.nrm(0,"qr-code",33),2&O){const b=t.XpG(2);t.Y8G("value",b.otpauth)("size",180)("errorCorrectionLevel","L")}}function As(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Secret Code is required."),t.k0s())}function Vl(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-step",10)(1,"form",22),t.DNE(2,Hs,1,1,"ng-template",23),t.j41(3,"div",24),t.DNE(4,Cc,1,3,"qr-code",25),t.k0s(),t.j41(5,"div",26),t.nrm(6,"fa-icon",27),t.j41(7,"span"),t.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),t.k0s()(),t.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),t.EFF(12,"Secret Code"),t.k0s(),t.nrm(13,"input",29),t.j41(14,"fa-icon",30),t.bIt("copied",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onCopySecret(G))}),t.k0s(),t.DNE(15,As,2,0,"mat-error",15),t.k0s()(),t.j41(16,"div",31)(17,"button",32),t.EFF(18,"Next"),t.k0s()()()()}if(2&O){const b=t.XpG();t.Y8G("stepControl",b.secretFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.secretFormGroup),t.R7$(3),t.Y8G("ngIf",b.otpauth),t.R7$(2),t.Y8G("icon",b.faInfoCircle),t.R7$(8),t.Y8G("icon",b.faCopy)("payload",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret?null:b.secretFormGroup.controls.secret.value),t.R7$(),t.Y8G("ngIf",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret||null==b.secretFormGroup.controls.secret.errors?null:b.secretFormGroup.controls.secret.errors.required)}}function Hd(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.tokenFormLabel)}}function wr(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}function ld(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is invalid."),t.k0s())}function La(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),t.EFF(4,"Token"),t.k0s(),t.nrm(5,"input",37),t.DNE(6,wr,2,0,"mat-error",15)(7,ld,2,0,"mat-error",15),t.k0s()(),t.j41(8,"div",31)(9,"button",38),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(10),t.k0s()()()}if(2&O){const b=t.XpG(2);t.R7$(6),t.Y8G("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.required),t.R7$(),t.Y8G("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.notValid),t.R7$(3),t.JRh(null!=b.tokenFormGroup&&null!=b.tokenFormGroup.controls&&null!=b.tokenFormGroup.controls.token&&null!=b.tokenFormGroup.controls.token.errors&&b.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function po(O,H){1&O&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Success! You are all set."),t.k0s()())}function zu(O,H){if(1&O&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,Hd,1,1,"ng-template",12)(3,La,11,3,"div",36)(4,po,3,0,"div",15),t.k0s()()),2&O){const b=t.XpG();t.Y8G("stepControl",b.tokenFormGroup),t.R7$(),t.Y8G("formGroup",b.tokenFormGroup),t.R7$(2),t.Y8G("ngIf",!b.flgValidated||!b.isTokenValid),t.R7$(),t.Y8G("ngIf",b.flgValidated&&b.isTokenValid)}}function ec(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.disableFormLabel)}}function Hl(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",8)(1,"div",39),t.nrm(2,"fa-icon",27),t.j41(3,"span"),t.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),t.k0s()(),t.j41(5,"div",31)(6,"button",38),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(7,"Disable"),t.k0s()()()}if(2&O){const b=t.XpG(2);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle)}}function $o(O,H){1&O&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Two factor authentication removed from RTL."),t.k0s()())}function Y3(O,H){if(1&O&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,ec,1,1,"ng-template",12)(3,Hl,8,1,"div",36)(4,$o,3,0,"div",15),t.k0s()()),2&O){const b=t.XpG();t.Y8G("stepControl",b.disableFormGroup),t.R7$(),t.Y8G("formGroup",b.disableFormGroup),t.R7$(2),t.Y8G("ngIf",!b.flgValidated||!b.isTokenValid),t.R7$(),t.Y8G("ngIf",b.flgValidated&&b.isTokenValid)}}let zd=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.dialogRef=b,this.data=U,this.store=G,this.formBuilder=Oe,this.rtlEffects=It,this.snackBar=Lt,this.faExclamationTriangle=nn.zpE,this.faCopy=nn.jPR,this.faInfoCircle=nn.iW_,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:["",[Wi.k0.required]],password:["",[Wi.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},Wi.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",Wi.k0.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!this.appConfig?.enable2FA,this.secretFormGroup=this.formBuilder.group({secret:[{value:this.appConfig?.enable2FA?"":this.generateSecret(),disabled:!0},Wi.k0.required]})}generateSecret(){const b=Jn.authenticator.generateSecret();return this.otpauth=Jn.authenticator.keyuri("","Ride The Lightning (RTL)",b),b}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Cn.oz)({payload:on(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,$s.s)(1)).subscribe(b=>{"ERROR"!==b?(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(b){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){if(this.appConfig?.enable2FA)this.appConfig.enable2FA=!1,this.appConfig.secret2FA="",this.store.dispatch((0,Cn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication disabled successfully.",config:this.appConfig}})),this.generateSecret(),this.isTokenValid=!0;else{if(!this.tokenFormGroup.controls.token.value)return!0;if(this.isTokenValid=Jn.authenticator.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value),!this.isTokenValid)return this.tokenFormGroup.controls.token.setErrors({notValid:!0}),!0;this.appConfig.enable2FA=!0,this.appConfig.secret2FA=this.secretFormGroup.controls.secret.value,this.store.dispatch((0,Cn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0}stepSelectionChanged(b){switch(b.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}b.selectedIndex{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Sn.Vh),t.rXU(Ri.il),t.rXU(Wi.ze),t.rXU(_r.H),t.rXU(ys.UG))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-two-factor-auth"]],viewQuery:function(U,G){if(1&U&&t.GBs(Pl,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},decls:30,vars:11,consts:[["stepper",""],["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 center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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","","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"copied","icon","payload"],["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","","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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Setup Two Factor Authentication"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(Lt){return t.eBV(Oe),t.Njj(G.stepSelectionChanged(Lt))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Ko,1,1,"ng-template",12),t.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),t.EFF(18,"Password"),t.k0s(),t.nrm(19,"input",14),t.DNE(20,Ds,2,0,"mat-error",15),t.k0s()(),t.j41(21,"div",16)(22,"button",17),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onAuthenticate())}),t.EFF(23,"Confirm"),t.k0s()()()(),t.DNE(24,Vl,19,8,"mat-step",18)(25,zu,5,4,"mat-step",19)(26,Y3,5,4,"mat-step",19),t.k0s(),t.j41(27,"div",20)(28,"button",21),t.EFF(29),t.k0s()()()()()()}2&U&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(4),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",G.passwordFormGroup)("editable",G.flgEditable),t.R7$(),t.Y8G("formGroup",G.passwordFormGroup),t.R7$(7),t.Y8G("ngIf",null==G.passwordFormGroup||null==G.passwordFormGroup.controls||null==G.passwordFormGroup.controls.password||null==G.passwordFormGroup.controls.password.errors?null:G.passwordFormGroup.controls.password.errors.required),t.R7$(4),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",G.showDisableStepper),t.R7$(2),t.Y8G("mat-dialog-close",!1),t.R7$(),t.JRh(G.flgValidated&&G.isTokenValid?"Close":"Cancel"))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.j4,Wi.JD,ya.aY,$i.DJ,$i.sA,$i.UI,Sn.tx,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pe.yw,Ka.V5,Ka.Ti,Ka.M6,Ka.F7,ls.Um,xc.U,Ot.N]})}return O})();var Wt=g(4416),qa=g(3202),Pc=g(1997);const y0=["authForm"];function Bu(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Current password is required."),t.k0s())}function al(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.errorMsg)}}function x0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.errorConfirmMsg)}}function Z1(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",12,0)(2,"div",13),t.nrm(3,"fa-icon",6),t.j41(4,"span",7),t.EFF(5,"Password"),t.k0s()(),t.j41(6,"mat-form-field")(7,"mat-label"),t.EFF(8,"Current Password"),t.k0s(),t.j41(9,"input",14),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.currPassword,G)||(Oe.currPassword=G),t.Njj(G)}),t.k0s(),t.DNE(10,Bu,2,0,"mat-error",15),t.k0s(),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"New Password"),t.k0s(),t.j41(14,"input",16),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.newPassword,G)||(Oe.newPassword=G),t.Njj(G)}),t.k0s(),t.DNE(15,al,2,1,"mat-error",15),t.k0s(),t.j41(16,"mat-form-field")(17,"mat-label"),t.EFF(18,"Confirm New Password"),t.k0s(),t.j41(19,"input",17),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.confirmPassword,G)||(Oe.confirmPassword=G),t.Njj(G)}),t.k0s(),t.DNE(20,x0,2,1,"mat-error",15),t.k0s(),t.j41(21,"div",18)(22,"button",19),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onResetPassword())}),t.EFF(23,"Reset"),t.k0s(),t.j41(24,"button",20),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onChangePassword())}),t.EFF(25,"Change Password"),t.k0s()()()}if(2&O){const b=t.XpG();t.R7$(3),t.Y8G("icon",b.faLock),t.R7$(6),t.R50("ngModel",b.currPassword),t.R7$(),t.Y8G("ngIf",!b.currPassword),t.R7$(4),t.R50("ngModel",b.newPassword),t.R7$(),t.Y8G("ngIf",b.matchOldAndNewPasswords()),t.R7$(4),t.R50("ngModel",b.confirmPassword),t.R7$(),t.Y8G("ngIf",b.matchNewPasswords())}}let Bd=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.store=U,this.actions=G,this.router=Oe,this.sessionService=It,this.faInfoCircle=nn.iW_,this.faUserLock=nn.aAJ,this.faUserClock=nn.ld_,this.faLock=nn.DW4,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.logger.info(this.appConfig)}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(b=>b.type===Wt.aU.RESET_PASSWORD_RES)).subscribe(b=>{if(Wt.Ah.includes(this.currPassword.toLowerCase()))switch(this.selNode.lnImplementation?.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||Wt.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Cn.xw)({payload:{currPassword:on(this.currPassword).toString(),newPassword:on(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let b=!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.",b=!0):Wt.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=Wt.Ah?.reduce((U,G,Oe)=>Oe{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(En.Ix),t.rXU(qa.Q))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-auth-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(y0,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},decls:15,vars:4,consts:[["authForm","ngForm"],["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"],[1,"my-2"],["fxLayout","column","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"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["matInput","","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModelChange","ngModel"],["matInput","","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModelChange","ngModel"],["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"]],template:function(U,G){1&U&&(t.j41(0,"div",1),t.DNE(1,Z1,26,7,"form",2),t.nrm(2,"mat-divider",3),t.j41(3,"div",4)(4,"div",5),t.nrm(5,"fa-icon",6),t.j41(6,"span",7),t.EFF(7,"Two Factor Authentication"),t.k0s()(),t.j41(8,"div",8),t.nrm(9,"fa-icon",9),t.j41(10,"span"),t.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),t.k0s()(),t.j41(12,"div",10)(13,"button",11),t.bIt("click",function(){return G.on2FAuth()}),t.EFF(14),t.k0s()()()()),2&U&&(t.R7$(),t.Y8G("ngIf",null==G.appConfig?null:G.appConfig.allowPasswordUpdate),t.R7$(4),t.Y8G("icon",G.faUserClock),t.R7$(4),t.Y8G("icon",G.faInfoCircle),t.R7$(5),t.JRh(G.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pc.q,Ot.N]})}return O})();var wc=g(3902);function ol(O,H){1&O&&t.nrm(0,"mat-divider",7)}function Nn(O,H){if(1&O&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,ol,1,0,"mat-divider",6),t.k0s()),2&O){const b=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,b.configData)),t.R7$(2),t.Y8G("ngIf",""!==b.configData)}}function zl(O,H){if(1&O&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function J1(O,H){if(1&O&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function C0(O,H){1&O&&t.nrm(0,"mat-divider",15),2&O&&t.Y8G("inset",!0)}function K3(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,zl,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,J1,2,1,"h4",12),t.k0s(),t.DNE(5,C0,1,1,"mat-divider",13),t.k0s()),2&O){const b=H.$implicit;t.R7$(2),t.Y8G("ngIf",b.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",b.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",b.indexOf("[")<0)}}function Ud(O,H){if(1&O&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,K3,6,3,"mat-list-item",9),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.Y8G("ngForOf",b.configData)}}let Uu=(()=>{class O{constructor(b,U,G){this.store=b,this.rtlEffects=U,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=nn.dB,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{const U=b.data;this.fileFormat=b.format,this.configData=""===U||!U||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==U&&U&&"JSON"===this.fileFormat?U:"":U.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(_r.H),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Nn,5,4,"div",2)(3,Ud,3,1,"div",3),t.k0s()()),2&U&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[ri.Sq,ri.bT,$i.DJ,$i.sA,$i.UI,mr.Lc,wc.jt,wc.YE,Pc.q,ri.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();function Gu(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}let ju=(()=>{class O{constructor(b,U,G){this.dialogRef=b,this.store=U,this.rtlEffects=G,this.password="",this.isAuthenticated=!1,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,$s.s)(1)).subscribe(b=>{"ERROR"!==b?(this.isAuthenticated=!0,this.store.dispatch((0,Cn.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Cn.oz)({payload:on(this.password)}))}onClose(){this.store.dispatch((0,Cn.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Ri.il),t.rXU(_r.H))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-is-authorized"]],decls:18,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 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","","type","password","id","password","name","password","tabindex","1","required","",3,"ngModelChange","ngModel"],[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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5,"Authenticate with your RTL Password"),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return G.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),t.EFF(12,"Password"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(It){return t.DH7(G.password,It)||(G.password=It),It}),t.k0s(),t.DNE(14,Gu,2,0,"mat-error",9),t.k0s(),t.j41(15,"div",10)(16,"button",11),t.bIt("click",function(){return G.onAuthenticate()}),t.EFF(17,"Confirm"),t.k0s()()()()()()),2&U&&(t.R7$(13),t.R50("ngModel",G.password),t.R7$(),t.Y8G("ngIf",!G.password))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Ot.N]})}return O})();const sl=()=>({initial:!1});function $3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link)("state",t.lJ4(4,sl)),t.R7$(),t.JRh(b.links[2].name)}}function Q3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",14),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[3].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[3].link),t.Y8G("active",b.activeLink===b.links[3].link),t.R7$(),t.JRh(b.links[3].name)}}function Wu(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",15),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.showLnConfigClicked())}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.Y8G("active",b.activeLink===b.links[4].link),t.R7$(),t.JRh(b.links[4].name)}}let Z3=(()=>{class O{constructor(b,U,G,Oe){this.store=b,this.router=U,this.rtlEffects=G,this.activatedRoute=Oe,this.faTools=nn.nsx,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 Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){const b=this.links.find(U=>this.router.url.includes(U.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{switch(this.showLnConfig=!1,this.selNode=U,this.selNode.lnImplementation?.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.appConfig.SSO.rtlSSO?(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})):(this.store.dispatch((0,Cn.xO)({payload:{maxWidth:"50rem",data:{component:ju}}})),this.rtlEffects.closeAlert.pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{b&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix),t.rXU(_r.H),t.rXU(En.nX))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-node-config"]],decls:19,vars:11,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","5","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"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Node Config"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.j41(10,"div",8),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[1].link)}),t.EFF(11),t.k0s(),t.DNE(12,$3,2,5,"div",9)(13,Q3,2,3,"div",10)(14,Wu,2,2,"div",11),t.k0s(),t.nrm(15,"mat-tab-nav-panel",null,0),t.j41(17,"div",12),t.nrm(18,"router-outlet"),t.k0s()()()()}if(2&U){const Oe=t.sdS(16);t.R7$(),t.Y8G("icon",G.faTools),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.FS9("routerLink",G.links[1].link),t.Y8G("active",G.activeLink===G.links[1].link),t.R7$(),t.JRh(G.links[1].name),t.R7$(),t.Y8G("ngIf","ECL"!==(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf","CLN"===(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf",G.showLnConfig)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();function J3(O,H){1&O&&t.nrm(0,"mat-divider",7)}function Ii(O,H){if(1&O&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,J3,1,0,"mat-divider",6),t.k0s()),2&O){const b=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,b.configData)),t.R7$(2),t.Y8G("ngIf",""!==b.configData)}}function ur(O,H){if(1&O&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function w0(O,H){if(1&O&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function q1(O,H){1&O&&t.nrm(0,"mat-divider",15),2&O&&t.Y8G("inset",!0)}function jr(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,ur,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,w0,2,1,"h4",12),t.k0s(),t.DNE(5,q1,1,1,"mat-divider",13),t.k0s()),2&O){const b=H.$implicit;t.R7$(2),t.Y8G("ngIf",b.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",b.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",b.indexOf("[")<0)}}function M0(O,H){if(1&O&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,jr,6,3,"mat-list-item",9),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.Y8G("ngForOf",b.configData)}}let Bl=(()=>{class O{constructor(b,U,G){this.store=b,this.rtlEffects=U,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=nn.dB,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{const U=b.data;this.fileFormat=b.format,this.configData=""===U||!U||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==U&&U&&"JSON"===this.fileFormat?U:"":U.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(_r.H),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Ii,5,4,"div",2)(3,M0,3,1,"div",3),t.k0s()()),2&U&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[ri.Sq,ri.bT,$i.DJ,$i.sA,$i.UI,mr.Lc,wc.jt,wc.YE,Pc.q,ri.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();var Ia=g(2571),ds=g(6038),Ra=g(9454),Gd=g(5951),e2=g(450);const Sp=O=>({skin:!0,"selected-color":O});function Xu(O,H){if(1&O&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("icon",b.symbol)}}function Yu(O,H){if(1&O&&(t.j41(0,"span",41),t.nrm(1,"span",43),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("innerHTML",b.symbol,t.npT)}}function jd(O,H){if(1&O&&(t.j41(0,"mat-option",39),t.DNE(1,Xu,2,1,"span",40)(2,Yu,2,1,"span",40),t.EFF(3),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.id),t.R7$(),t.Y8G("ngIf",b&&"FA"===b.iconType),t.R7$(),t.Y8G("ngIf",b&&"SVG"===b.iconType),t.R7$(),t.Lme(" ",b.name," (",b.id,") ")}}function hs(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Currency unit is required."),t.k0s())}function tc(O,H){if(1&O&&(t.j41(0,"mat-radio-button",44),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b)("checked",U.selNode.settings.userPersona===b),t.R7$(),t.SpI(" ",t.bMT(2,3,b)," ")}}function Ku(O,H){if(1&O&&(t.j41(0,"mat-radio-button",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI("",b.name," ")}}function us(O,H){if(1&O){const b=t.RV6();t.j41(0,"span",46)(1,"div",47),t.nI1(2,"lowercase"),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.changeThemeColor(G.id))}),t.k0s(),t.EFF(3),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.HbH(t.bMT(2,4,b.id)),t.Y8G("ngClass",t.eq3(6,Sp,U.selectedThemeColor===b.id)),t.R7$(2),t.SpI(" ",b.name," ")}}let Mc=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.commonService=U,this.store=G,this.sanitizer=Oe,this.faBarsStaggered=nn.o97,this.faExclamationTriangle=nn.zpE,this.faMoneyBillAlt=nn.iy8,this.faPaintBrush=nn._eQ,this.faInfoCircle=nn.iW_,this.faEyeSlash=nn.k6j,this.userPersonas=[Wt.HW.OPERATOR,Wt.HW.MERCHANT],this.currencyUnits=Wt.Zi,this.themeModes=Wt.Bv.modes,this.themeColors=Wt.Bv.themes,this.selectedThemeMode=Wt.Bv.modes[0],this.selectedThemeColor=Wt.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(b=>("SVG"===b.iconType&&"string"==typeof b.symbol&&(b.symbol=b.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(b)),this.selectedThemeMode=this.themeModes.find(U=>this.selNode.settings.themeMode===U.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(b)})}toggleSettings(b,U){this.selNode.settings[b]=!this.selNode.settings[b]}changeThemeColor(b){this.selectedThemeColor=b,this.selNode.settings.themeColor=b}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(b){this.selNode.settings.fiatConversion||delete this.selNode.settings.currencyUnit}onUpdateNodeSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.selNode.settings.blockExplorerUrl=this.selNode.settings.blockExplorerUrl.replace(/\/$/,""),this.logger.info(this.selNode.settings),this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}onResetSettings(){const b=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(U=>U.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Cn.Qi)({payload:{uiMessage:Wt.MZ.NO_SPINNER,prevLnNodeIndex:+b,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(e.up))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-node-settings"]],decls:100,vars:21,consts:[["form","ngForm"],["currencyUnit","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container"],["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"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["href","https://mempool.space/","target","blank"],["fxLayout","row wrap","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["matInput","","name","blockExplorerUrl",3,"ngModelChange","ngModel"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-1"],["tabindex","1","color","primary","name","unannouncedChannels",3,"ngModelChange","change","ngModel"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["tabindex","2","color","primary","name","fiatConversion",1,"mr-2",3,"ngModelChange","change","ngModel"],["fxFlex","25"],["autoFocus","","tabindex","3","name","currencyUnit",3,"ngModelChange","disabled","required","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",1,"radio-group",3,"ngModelChange","ngModel"],["class","radio-text mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],["color","primary","name","themeMode",1,"radio-group",3,"ngModelChange","change","ngModel"],["tabindex","5","class","radio-text mr-4",3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["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","column","fxLayoutAlign","start start",1,"mt-1"],["fxLayout","row"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],["class","mr-1",4,"ngIf"],[1,"mr-1"],[3,"icon"],["fxLayoutAlign","center center",3,"innerHTML"],[1,"radio-text","mr-4",3,"value","checked"],["tabindex","5",1,"radio-text","mr-4",3,"value"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"click","ngClass"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"mat-accordion",4)(4,"mat-expansion-panel",5)(5,"mat-expansion-panel-header")(6,"mat-panel-title"),t.nrm(7,"fa-icon",6),t.j41(8,"span",7),t.EFF(9,"Block Explorer"),t.k0s()()(),t.j41(10,"div",8)(11,"div",9),t.nrm(12,"fa-icon",10),t.j41(13,"span"),t.EFF(14,"Configure your own blockchain explorer url or "),t.j41(15,"strong")(16,"a",11),t.EFF(17,"mempool.space"),t.k0s()(),t.EFF(18," will be used."),t.k0s()(),t.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),t.EFF(22,"Block Explorer URL"),t.k0s(),t.j41(23,"input",14),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.blockExplorerUrl,Lt)||(G.selNode.settings.blockExplorerUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(24,"mat-hint"),t.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),t.k0s()()()()(),t.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),t.nrm(29,"fa-icon",6),t.j41(30,"span",7),t.EFF(31,"Open Unannounced Channels"),t.k0s()()(),t.j41(32,"div",8)(33,"div",15),t.nrm(34,"fa-icon",10),t.j41(35,"span"),t.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),t.k0s()(),t.j41(37,"div",12)(38,"mat-slide-toggle",16),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.unannouncedChannels,Lt)||(G.selNode.settings.unannouncedChannels=Lt),t.Njj(Lt)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(!G.selNode.settings.unannouncedChannels)}),t.EFF(39,"Open Unannounced Channels"),t.k0s()()()(),t.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),t.nrm(43,"fa-icon",6),t.j41(44,"span",7),t.EFF(45,"Balance Display"),t.k0s()()(),t.j41(46,"div",8)(47,"div",9),t.nrm(48,"fa-icon",10),t.j41(49,"span"),t.EFF(50,"Fiat conversion calls "),t.j41(51,"strong")(52,"a",17),t.EFF(53,"Blockchain.com"),t.k0s()(),t.EFF(54," API to get conversion rates."),t.k0s()(),t.j41(55,"div",12)(56,"mat-slide-toggle",18),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.fiatConversion,Lt)||(G.selNode.settings.fiatConversion=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onFiatConversionChange(Lt))}),t.EFF(57,"Enable Fiat Conversion"),t.k0s(),t.j41(58,"mat-form-field",19)(59,"mat-label"),t.EFF(60,"Fiat Currency"),t.k0s(),t.j41(61,"mat-select",20,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.currencyUnit,Lt)||(G.selNode.settings.currencyUnit=Lt),t.Njj(Lt)}),t.DNE(63,jd,4,5,"mat-option",21),t.k0s(),t.DNE(64,hs,2,0,"mat-error",22),t.k0s()()()(),t.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),t.nrm(68,"fa-icon",6),t.j41(69,"span",7),t.EFF(70,"Customization"),t.k0s()()(),t.j41(71,"div",8)(72,"div",23),t.nrm(73,"fa-icon",10),t.j41(74,"span"),t.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),t.k0s()(),t.j41(76,"div",24)(77,"h4"),t.EFF(78,"Dashboard Layout"),t.k0s(),t.j41(79,"mat-radio-group",25),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.userPersona,Lt)||(G.selNode.settings.userPersona=Lt),t.Njj(Lt)}),t.DNE(80,tc,3,5,"mat-radio-button",26),t.k0s()(),t.nrm(81,"mat-divider",27),t.j41(82,"div",28)(83,"h4"),t.EFF(84,"Mode"),t.k0s(),t.j41(85,"mat-radio-group",29),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selectedThemeMode,Lt)||(G.selectedThemeMode=Lt),t.Njj(Lt)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(G.chooseThemeMode())}),t.DNE(86,Ku,2,2,"mat-radio-button",30),t.k0s()(),t.nrm(87,"mat-divider",27),t.j41(88,"div",31)(89,"div",32)(90,"h4"),t.EFF(91,"Themes"),t.k0s(),t.j41(92,"div",33),t.DNE(93,us,4,8,"span",34),t.k0s()()()()()()(),t.j41(94,"div",35)(95,"div",36)(96,"button",37),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetSettings())}),t.EFF(97,"Reset"),t.k0s(),t.j41(98,"button",38),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateNodeSettings())}),t.EFF(99,"Update"),t.k0s()()()()}2&U&&(t.R7$(7),t.Y8G("icon",G.faBarsStaggered),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(11),t.R50("ngModel",G.selNode.settings.blockExplorerUrl),t.R7$(6),t.Y8G("icon",G.faEyeSlash),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(4),t.R50("ngModel",G.selNode.settings.unannouncedChannels),t.R7$(5),t.Y8G("icon",G.faMoneyBillAlt),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(8),t.R50("ngModel",G.selNode.settings.fiatConversion),t.R7$(5),t.Y8G("disabled",!G.selNode.settings.fiatConversion)("required",G.selNode.settings.fiatConversion),t.R50("ngModel",G.selNode.settings.currencyUnit),t.R7$(2),t.Y8G("ngForOf",G.currencyUnits),t.R7$(),t.Y8G("ngIf",G.selNode.settings.fiatConversion&&!G.selNode.settings.currencyUnit),t.R7$(4),t.Y8G("icon",G.faPaintBrush),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.R50("ngModel",G.selNode.settings.userPersona),t.R7$(),t.Y8G("ngForOf",G.userPersonas),t.R7$(5),t.R50("ngModel",G.selectedThemeMode),t.R7$(),t.Y8G("ngForOf",G.themeModes),t.R7$(7),t.Y8G("ngForOf",G.themeColors))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pc.q,Gd.VT,Gd._g,xe.VO,Be.wT,e2.sG,ft.Ld,Ot.N,ri.GH,ri.PV],styles:["h4[_ngcontent-%COMP%]{margin:.75rem 0 .5rem}.theme-name[_ngcontent-%COMP%]{min-width:10rem}@media only screen and (max-width: 37.5em){.theme-name[_ngcontent-%COMP%]{min-width:unset}}.skin[_ngcontent-%COMP%]{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.skin.selected-color[_ngcontent-%COMP%]{width:1rem;height:1rem;border:2px solid}.skin.purple[_ngcontent-%COMP%]{background-color:#5e4ea5}.skin.indigo[_ngcontent-%COMP%]{background-color:#3f51b5}.skin.teal[_ngcontent-%COMP%]{background-color:#00695c}.skin.pink[_ngcontent-%COMP%]{background-color:#d81b60}.skin.yellow[_ngcontent-%COMP%]{background-color:#a1842c}"]})}return O})();var dd=g(9584),t2=g(3536),xa=g(8430),Pa=g(190),n2=g(2730),Ca=g(5428),Vc=g(9213),ic=g(4823),Ul=g(2929);const zs=O=>({error:O}),E0=O=>({"error-border":O}),Wd=O=>({"ml-minus-1":O}),$u=O=>({"error-border p-2":O});function Gl(O,H){if(1&O&&t.eu8(0,14),2&O){const b=t.XpG(),U=t.sdS(18);t.Y8G("ngTemplateOutlet",U)("ngTemplateOutletContext",t.eq3(2,zs,b.errorMessage))}}function Xd(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ",b," ")}}function S0(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG(3);t.Y8G("value",b),t.R7$(),t.SpI(" ","ECL"===U.selNode.lnImplementation?t.bMT(2,2,b):t.i5U(3,4,b,"_")," ")}}function Qu(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ","desc"===b?"Descending":"Ascending"," ")}}function Va(O,H){if(1&O&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG(2).$implicit,G=t.XpG(2);t.Y8G("value",b.column)("disabled",U.columnSelection.length<=2&&U.columnSelection.includes(b.column)),t.R7$(),t.SpI(" ",b.label?b.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,b.column):t.i5U(3,5,b.column,"_")," ")}}function Hc(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-form-field",32)(1,"mat-label"),t.EFF(2,"Column selection (Desktop Resolution)"),t.k0s(),t.j41(3,"mat-select",33),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG().$implicit;return t.DH7(Oe.columnSelection,G)||(Oe.columnSelection=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(b);const G=t.XpG().$implicit,Oe=t.XpG(2);return t.Njj(Oe.oncolumnSelectionChange(G))}),t.DNE(4,Va,4,8,"mat-option",28),t.k0s()()}if(2&O){const b=t.XpG().$implicit,U=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.FCK("name","",U.pageId,"",b.tableId,"-columns-selection"),t.R50("ngModel",b.columnSelection),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[U.pageId][b.tableId].allowedColumns)}}function Pr(O,H){if(1&O&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG().$implicit,G=t.XpG(2);t.Y8G("value",b.column)("disabled",U.columnSelectionSM.length<=1&&U.columnSelectionSM.includes(b.column)||U.columnSelectionSM.length>=3&&!U.columnSelectionSM.includes(b.column)),t.R7$(),t.SpI(" ",b.label?b.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,b.column):t.i5U(3,5,b.column,"_")," ")}}function T0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s(),t.j41(5,"mat-form-field",20)(6,"mat-label"),t.EFF(7,"Records/Page"),t.k0s(),t.j41(8,"mat-select",21),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.recordsPerPage,G)||(Oe.recordsPerPage=G),t.Njj(G)}),t.DNE(9,Xd,2,2,"mat-option",22),t.k0s()(),t.j41(10,"mat-form-field",20)(11,"mat-label"),t.EFF(12,"Sort By"),t.k0s(),t.j41(13,"mat-select",23),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.sortBy,G)||(Oe.sortBy=G),t.Njj(G)}),t.DNE(14,S0,4,7,"mat-option",22),t.k0s()(),t.j41(15,"mat-form-field",20)(16,"mat-label"),t.EFF(17,"Sort Order"),t.k0s(),t.j41(18,"mat-select",24),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.sortOrder,G)||(Oe.sortOrder=G),t.Njj(G)}),t.DNE(19,Qu,2,2,"mat-option",22),t.k0s()(),t.DNE(20,Hc,5,5,"mat-form-field",25),t.j41(21,"mat-form-field",26)(22,"mat-label"),t.EFF(23,"Column Selection (Mobile Resolution)"),t.k0s(),t.j41(24,"mat-select",27),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.columnSelectionSM,G)||(Oe.columnSelectionSM=G),t.Njj(G)}),t.DNE(25,Pr,4,8,"mat-option",28),t.k0s()(),t.j41(26,"button",29),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG().$implicit,It=t.XpG();return t.Njj(It.onTableReset(Oe.pageId,G))}),t.j41(27,"mat-icon",30),t.EFF(28,"restore"),t.k0s()()()()}if(2&O){const b=H.$implicit,U=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.SpI("",t.i5U(4,24,b.tableId,"_"),":"),t.R7$(5),t.FCK("name","",U.pageId,"",b.tableId,"-page-size-options"),t.Y8G("disabled",G.nodePageDefs[U.pageId][b.tableId].disablePageSize),t.R50("ngModel",b.recordsPerPage),t.R7$(),t.Y8G("ngForOf",G.pageSizeOptions),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-sort-by"),t.R50("ngModel",b.sortBy),t.R7$(),t.Y8G("ngForOf",b.columnSelection),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-sort-order"),t.R50("ngModel",b.sortOrder),t.R7$(),t.Y8G("ngForOf",G.sortOrders),t.R7$(),t.Y8G("ngIf",G.screenSize!==G.screenSizeEnum.XS),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-columns-selection-sm"),t.R50("ngModel",b.columnSelectionSM),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[U.pageId][b.tableId].allowedColumns),t.R7$(2),t.Y8G("ngClass",t.eq3(27,Wd,G.screenSize===G.screenSizeEnum.XS||G.screenSize===G.screenSizeEnum.SM))}}function D0(O,H){if(1&O&&t.eu8(0,14),2&O){const b=t.XpG(2),U=t.sdS(18);t.Y8G("ngTemplateOutlet",U)("ngTemplateOutletContext",t.eq3(2,zs,b.errorMessage))}}function cl(O,H){if(1&O&&(t.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s()(),t.DNE(5,T0,29,29,"div",16)(6,D0,1,4,"ng-container",7),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("ngClass",t.eq3(7,E0,(null==U.errorMessage?null:U.errorMessage.page)===b.pageId)),t.R7$(3),t.JRh(t.i5U(4,4,b.pageId,"_")),t.R7$(2),t.Y8G("ngForOf",b.tables),t.R7$(),t.Y8G("ngIf",U.errorMessage&&(null==U.errorMessage?null:U.errorMessage.page)===b.pageId)}}function A0(O,H){if(1&O&&(t.j41(0,"mat-panel-title"),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=t.XpG().error;t.R7$(),t.SpI("Page ",t.bMT(2,1,b.page),"")}}function k0(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.k0s()()),2&O){const b=t.XpG().error;t.R7$(4),t.JRh(b.message)}}function Zu(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(4),t.Lme("Table ",t.bMT(5,2,b.table)," ",b.message,"")}}function Yd(O,H){if(1&O&&(t.j41(0,"div",35),t.DNE(1,A0,3,3,"mat-panel-title",36),t.j41(2,"mat-list",37),t.DNE(3,k0,5,1,"mat-list-item",36)(4,Zu,6,4,"mat-list-item",38),t.k0s()()),2&O){const b=H.error,U=t.XpG();t.Y8G("ngClass",t.eq3(4,$u,"unknown"===U.errorMessage.page)),t.R7$(),t.Y8G("ngIf","unknown"===U.errorMessage.page),t.R7$(2),t.Y8G("ngIf",b.message),t.R7$(),t.Y8G("ngForOf",b.tables)}}let Ec=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.commonService=U,this.store=G,this.actions=Oe,this.faPenRuler=nn.$$g,this.faExclamationTriangle=nn.zpE,this.screenSize="",this.screenSizeEnum=Wt.f7,this.pageSizeOptions=Wt.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=Wt.jG,this.apiCallStatus=null,this.apiCallStatusEnum=Wt.wn,this.errorMessage=null,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{switch(this.selNode=b,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],Wt.mu),this.defaultSettings=Object.assign([],Wt.mu),this.nodePageDefs=Wt.Jd,this.store.select(dd.av).pipe((0,dn.Q)(this.unSubs[1]),(0,fc.E)(this.store.select(Gr._c))).subscribe(([U,G])=>{const Oe=JSON.parse(JSON.stringify(U.pageSettings));if(this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.enableOffers){const It=Oe.find(ci=>"transactions"===ci.pageId),Lt=It?.tables.findIndex(ci=>"offers"===ci.tableId),oi=It?.tables.findIndex(ci=>"offer_bookmarks"===ci.tableId);Lt>-1&&It?.tables.splice(Lt,1),oi>-1&&It?.tables.splice(oi,1)}if(!G?.settings.enablePeerswap){const It=Oe.findIndex(Lt=>"peerswap"===Lt.pageId);It>-1&&Oe.splice(It,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN||U.type===Wt.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(U=>{U.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],Wt.X8),this.defaultSettings=Object.assign([],Wt.X8),this.nodePageDefs=Wt.WW,this.store.select(n2.jZ).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{const G=JSON.parse(JSON.stringify(U.pageSettings));this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=G,this.initialPageSettings=G):(this.pageSettings=G,this.initialPageSettings=G),this.logger.info(G)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL||U.type===Wt.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(U=>{U.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))});break;default:this.initialPageSettings=Object.assign([],Wt.ZC),this.defaultSettings=Object.assign([],Wt.ZC),this.nodePageDefs=Wt._1,this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[1]),(0,fc.E)(this.store.select(Gr._c))).subscribe(([U,G])=>{const Oe=JSON.parse(JSON.stringify(U.pageSettings));if(this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.swapServerUrl||""===G.settings.swapServerUrl.trim()){const It=Oe.findIndex(Lt=>"loop"===Lt.pageId);It>-1&&Oe.splice(It,1)}if(!G?.settings.boltzServerUrl||""===G.settings.boltzServerUrl.trim()){const It=Oe.findIndex(Lt=>"boltz"===Lt.pageId);It>-1&&Oe.splice(It,1)}if(!G?.settings.enablePeerswap){const It=Oe.findIndex(Lt=>"peerswap"===Lt.pageId);It>-1&&Oe.splice(It,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.QP.UPDATE_API_CALL_STATUS_LND||U.type===Wt.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(U=>{U.type===Wt.QP.UPDATE_API_CALL_STATUS_LND&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))})}})}oncolumnSelectionChange(b){b.columnSelection&&(!b.sortBy||!b.columnSelection.includes(b.sortBy))&&(b.sortBy=b.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((b,U)=>b||U.tables.reduce((G,Oe)=>!(Oe.recordsPerPage&&Oe.sortBy&&Oe.sortOrder&&Oe.columnSelection&&Oe.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,xa.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Ca.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Pa.Sn)({payload:this.pageSettings}))}}onTableReset(b,U){const G=this.pageSettings.findIndex(Lt=>Lt.pageId===b),Oe=this.pageSettings[G].tables.findIndex(Lt=>Lt.tableId===U.tableId),It=this.defaultSettings.find(Lt=>Lt.pageId===b)?.tables.find(Lt=>Lt.tableId===U.tableId)||this.pageSettings.find(Lt=>Lt.pageId===b)?.tables.find(Lt=>Lt.tableId===U.tableId);this.pageSettings[G].tables.splice(Oe,1,It)}onResetPageSettings(b){"current"===b?(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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(lt.En))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-page-settings"]],decls:19,vars:3,consts:[["form","ngForm"],["errorObjectBlock",""],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["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"],[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",1,"mb-2"],["fxLayout","column","fxFlex","10"],["tabindex","2","required","",3,"ngModelChange","disabled","name","ngModel"],[3,"value",4,"ngFor","ngForOf"],["tabindex","3","required","",3,"ngModelChange","name","ngModel"],["tabindex","4","required","",3,"ngModelChange","name","ngModel"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxLayout","column","fxFlex","15","matTooltip","Select between 1 and 3 columns"],["tabindex","5","multiple","","required","",3,"ngModelChange","name","ngModel"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",1,"mb-2",3,"click"],["color","primary",3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["tabindex","6","multiple","","required","",3,"ngModelChange","selectionChange","name","ngModel"],[3,"value","disabled"],[3,"ngClass"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Grid Settings"),t.k0s()(),t.DNE(7,Gl,1,4,"ng-container",7),t.j41(8,"mat-accordion",8),t.DNE(9,cl,7,9,"mat-expansion-panel",9),t.k0s()(),t.j41(10,"div",10)(11,"button",11),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("current"))}),t.EFF(12,"Reset"),t.k0s(),t.j41(13,"button",12),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("default"))}),t.EFF(14,"Reset to Default"),t.k0s(),t.j41(15,"button",13),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdatePageSettings())}),t.EFF(16,"Save"),t.k0s()()(),t.DNE(17,Yd,5,6,"ng-template",null,1,t.C5r)}2&U&&(t.R7$(4),t.Y8G("icon",G.faPenRuler),t.R7$(3),t.Y8G("ngIf",G.errorMessage&&"unknown"===G.errorMessage.page),t.R7$(2),t.Y8G("ngForOf",G.pageSettings))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.T3,Wi.qT,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,ve.iY,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Vc.An,Pe.rl,Pe.nJ,wc.jt,wc.YE,xe.VO,Be.wT,ic.oV,ft.Ld,ri.PV,Ul.VD,Ul.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]})}return O})();function q3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[0].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[0].link),t.Y8G("active",b.activeLink===b.links[0].link),t.R7$(),t.JRh(b.links[0].name)}}function r2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[1].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[1].link),t.Y8G("active",b.activeLink===b.links[1].link),t.R7$(),t.JRh(b.links[1].name)}}function a2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[2].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link),t.R7$(),t.JRh(b.links[2].name)}}let o2=(()=>{class O{constructor(b,U,G){this.store=b,this.router=U,this.activatedRoute=G,this.faLayerGroup=nn.qIE,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"noservice",name:"No Service"}],this.activeLink="",this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.setActiveLink(),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(b){if(b&&""!==b)this.activeLink=b;else{const U=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=U?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:U.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix),t.rXU(En.nX))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-services-settings"]],decls:16,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","my-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","3","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"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Services"),t.k0s()()(),t.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),t.DNE(9,q3,2,3,"div",7)(10,r2,2,3,"div",8)(11,a2,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()),2&U){const Oe=t.sdS(13);t.R7$(2),t.Y8G("icon",G.faLayerGroup),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngIf","LND"===G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"!==G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"===G.selNode.lnImplementation)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();const Kd=["form"];function s2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Loop server URL is required."),t.k0s())}function L0(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the loop server url with 'https://'."),t.k0s())}function ll(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Loop macaroon path is required."),t.k0s())}let zc=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faInfoCircle=nn.iW_,this.enableLoop=!1,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableLoop=!(!b.settings.swapServerUrl||""===b.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(b)})}onEnableServiceChanged(b){this.enableLoop=b.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.enableLoop||(delete this.selNode.settings.swapServerUrl,delete this.selNode.authentication.swapMacaroonPath),this.logger.info(this.selNode),this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-loop-service-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(Kd,7),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[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"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"loopd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.enableLoop,Lt)||(G.enableLoop=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(Lt))}),t.EFF(16,"Enable Loop Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Loop Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.swapServerUrl,Lt)||(G.selNode.settings.swapServerUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),t.k0s(),t.DNE(24,s2,2,0,"mat-error",11)(25,L0,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Loop Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.authentication.swapMacaroonPath,Lt)||(G.selNode.authentication.swapMacaroonPath=Lt),t.Njj(Lt)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),t.k0s(),t.DNE(32,ll,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&U){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableLoop),t.R7$(5),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.settings.swapServerUrl),t.R7$(4),t.Y8G("ngIf",!G.selNode.settings.swapServerUrl&&G.enableLoop),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableLoop),t.R7$(4),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.authentication.swapMacaroonPath),t.R7$(3),t.Y8G("ngIf",!G.selNode.authentication.swapMacaroonPath&&G.enableLoop)}},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,e2.sG,ft.Ld,Ot.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();const Bc=["form"];function I0(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz server URL is required."),t.k0s())}function c2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the boltz server url with 'https://'."),t.k0s())}function dl(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz macaroon path is required."),t.k0s())}let Ju=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faInfoCircle=nn.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableBoltz=!(!b.settings.boltzServerUrl||""===b.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(b)})}onEnableServiceChanged(b){this.enableBoltz=b.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.enableBoltz?(this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath):(delete this.selNode.settings.boltzServerUrl,delete this.selNode.authentication.boltzMacaroonPath),this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(Bc,7),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://docs.boltz.exchange/v/boltz-client/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"boltzd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.enableBoltz,Lt)||(G.enableBoltz=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(Lt))}),t.EFF(16,"Enable Boltz Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Boltz Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.serverUrl,Lt)||(G.serverUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),t.k0s(),t.DNE(24,I0,2,0,"mat-error",11)(25,c2,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Boltz Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.macaroonPath,Lt)||(G.macaroonPath=Lt),t.Njj(Lt)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),t.k0s(),t.DNE(32,dl,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&U){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableBoltz),t.R7$(5),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.serverUrl),t.R7$(4),t.Y8G("ngIf",(!G.serverUrl||""===G.serverUrl.trim())&&G.enableBoltz),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableBoltz),t.R7$(4),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.macaroonPath),t.R7$(3),t.Y8G("ngIf",!G.macaroonPath&&G.enableBoltz)}},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,e2.sG,ft.Ld,Ot.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})(),qu=(()=>{class O{constructor(){}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(U,G){1&U&&t.nrm(0,"router-outlet")},dependencies:[En.n3]})}return O})();var ef=g(8711),tf=g(4104),hl=g(6695),Sc=g(2042),Tr=g(9159),ul=g(7575);const R0=()=>["all"],hd=O=>({"overflow-auto error-border":O,"overflow-auto":!0}),nf=()=>["no_swap"],$d=O=>({width:O}),Qd=O=>({"display-none":O});function jl(O,H){if(1&O&&(t.j41(0,"mat-option",37),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b),t.R7$(),t.JRh(U.getLabel(b))}}function Tc(O,H){1&O&&t.nrm(0,"mat-progress-bar",38)}function l2(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"State"),t.k0s())}function Uc(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.JRh(U.LoopStateEnum[null==b?null:b.state])}}function O0(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"Initiation Time"),t.k0s())}function Zd(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==b?null:b.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function Wl(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"Last Update Time"),t.k0s())}function fl(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==b?null:b.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function F0(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Amount (Sats)"),t.k0s())}function d2(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.amt))}}function eo(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Server (Sats)"),t.k0s())}function N0(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.cost_server))}}function h2(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Offchain (Sats)"),t.k0s())}function Dr(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.cost_offchain))}}function Jd(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Onchain (Sats)"),t.k0s())}function ks(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==b?null:b.cost_onchain)," ")}}function ud(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"HTLC Address"),t.k0s())}function P0(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.htlc_address)}}function u2(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"ID"),t.k0s())}function Xl(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.id)}}function Yl(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"ID (Bytes)"),t.k0s())}function to(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.id_bytes)}}function V0(O,H){if(1&O){const b=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function f2(O,H){if(1&O){const b=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(G){const Oe=t.eBV(b).$implicit,It=t.XpG();return t.Njj(It.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function m2(O,H){if(1&O&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.emptyTableMessage)}}function H0(O,H){if(1&O&&(t.j41(0,"td",51),t.DNE(1,m2,2,1,"p",52),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}function z0(O,H){if(1&O&&t.nrm(0,"tr",53),2&O){const b=t.XpG();t.Y8G("ngClass",t.eq3(1,Qd,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Kl(O,H){1&O&&t.nrm(0,"tr",54)}function rf(O,H){1&O&&t.nrm(0,"tr",55)}let qd=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.logger=b,this.commonService=U,this.store=G,this.loopService=Oe,this.datePipe=It,this.camelCaseWithReplace=Lt,this.selectedSwapType=Wt.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:Wt.md,sortBy:"initiation_time",sortOrder:Wt.oi.DESCENDING},this.LoopStateEnum=Wt.Hx,this.faHistory=nn.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Tr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){this.swapCaption=this.selectedSwapType===Wt.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.tableSetting=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSetting.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.f7.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:Wt.md,this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(b){const U=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(G=>G.column===b);return U?U.label?U.label:this.camelCaseWithReplace.transform(U.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,U)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(b).toLowerCase();break;case"state":G=b?.state?this.LoopStateEnum[b?.state]:"";break;case"initiation_time":case"last_update_time":G=this.datePipe.transform(new Date((b[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:G=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===G.indexOf(U):G.includes(U)}}onSwapClick(b,U){this.loopService.getSwap(b.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:Wt.Hx[G.state||""],title:"Status",width:50,type:Wt.UN.STRING},{key:"amt",value:G.amt,title:"Amount (Sats)",width:50,type:Wt.UN.NUMBER}],[{key:"initiation_time",value:(G.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:Wt.UN.DATE_TIME},{key:"last_update_time",value:(G.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:Wt.UN.DATE_TIME}],[{key:"cost_server",value:G.cost_server,title:"Server Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_offchain",value:G.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_onchain",value:G.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:Wt.UN.NUMBER}],[{key:"id_bytes",value:G.id_bytes,title:"ID",width:100,type:Wt.UN.STRING}],[{key:"htlc_address",value:G.htlc_address,title:"HTLC Address",width:100,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new Tr.I6([...b]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(U,G)=>U[G]&&isNaN(U[G])?U[G].toLocaleLowerCase():U[G]?+U[G]:null,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===Wt.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(tf.Q),t.rXU(ri.vh),t.rXU(Ul.VD))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-swaps"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Sc.B4,5),t.GBs(hl.iy,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:xe.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:hl.xX,useValue:(0,Wt.on)("Swaps")}]),t.OA$],decls:61,vars:20,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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.gt-xs","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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilterBy,Lt)||(G.selFilterBy=Lt),t.Njj(Lt)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,jl,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilter,Lt)||(G.selFilter=Lt),t.Njj(Lt)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Tc,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,l2,2,0,"th",16)(24,Uc,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,O0,2,0,"th",16)(27,Zd,3,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Wl,2,0,"th",16)(30,fl,3,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,F0,2,0,"th",21)(33,d2,4,3,"td",17),t.bVm(),t.qex(34,22),t.DNE(35,eo,2,0,"th",21)(36,N0,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,h2,2,0,"th",21)(39,Dr,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,Jd,2,0,"th",21)(42,ks,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,ud,2,0,"th",16)(45,P0,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,u2,2,0,"th",16)(48,Xl,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,Yl,2,0,"th",16)(51,to,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,V0,6,0,"th",29)(54,f2,3,0,"td",30),t.bVm(),t.qex(55,31),t.DNE(56,H0,2,1,"td",32),t.bVm(),t.DNE(57,z0,1,3,"tr",33)(58,Kl,1,0,"tr",34)(59,rf,1,0,"tr",35),t.k0s(),t.nrm(60,"mat-paginator",36),t.k0s()()()}2&U&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,R0).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.tableSetting.sortBy)("matSortDirection",G.tableSetting.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,hd,"error"===G.flgLoading[0])),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(19,nf)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.B3,Wi.me,Wi.BC,Wi.vS,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ds.eI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,ul.HM,xe.VO,xe.$2,Be.wT,Sc.B4,Sc.aE,Tr.Zl,Tr.tL,Tr.ji,Tr.cC,Tr.YV,Tr.iL,Tr.Zq,Tr.xW,Tr.KS,Tr.$R,Tr.Qo,Tr.YZ,Tr.NB,Tr.iF,hl.iy,ft.ZF,ft.Ld,ri.QX,ri.vh]})}return O})();const p2=O=>["../",O];function e1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.Y8G("active",U.activeTab.link===b.link)("routerLink",t.eq3(3,p2,b.link)),t.R7$(),t.JRh(b.name)}}let B0=(()=>{class O{constructor(b,U,G){this.router=b,this.loopService=U,this.store=G,this.faInfinity=nn.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=Wt.C7,this.selectedSwapType=Wt.C7.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 Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,dn.Q)(this.unSubs[4])).subscribe({next:U=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo=U,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:U=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const b=this.links.find(U=>this.router.url.includes(U.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"loopin"===b.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"loopin"===G.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:U=>{this.flgLoading[0]=!1,this.storedSwaps=U,this.filteredSwaps=this.storedSwaps?.filter(G=>G.type===this.selectedSwapType)},error:U=>{this.flgLoading[0]="error",this.emptyTableMessage=U.message?U.message:"No loop "+(this.selectedSwapType===Wt.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){this.selectedSwapType="loopin"===b.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(U=>U.type===this.selectedSwapType)}onLoop(b){b===Wt.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{minQuote:U[0],maxQuote:U[1],direction:b,component:ef.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[3])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{minQuote:U[0],maxQuote:U[1],direction:b,component:ef.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.Ix),t.rXU(tf.Q),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-loop"]],decls:15,vars:9,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,e1,2,5,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8)(12,"button",9),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLoop(G.selectedSwapType))}),t.EFF(13),t.k0s()(),t.nrm(14,"rtl-swaps",10),t.k0s()()()}if(2&U){const Oe=t.sdS(10);t.R7$(),t.Y8G("icon",G.faInfinity),t.R7$(2),t.SpI("Loop (v",(null==G.loopInfo?null:G.loopInfo.version)||" Unknown",")"),t.R7$(4),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.filteredSwaps)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[ri.Sq,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.Wk,qd]})}return O})();var af=g(1001),U0=g(4412),G0=g(8810),t1=g(2462);let fd=(()=>{class O{constructor(b,U,G,Oe){this.httpClient=b,this.logger=U,this.store=G,this.commonService=Oe,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new U0.t(null),this.swapsChanged=new U0.t({}),this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swaps=b,this.swapsChanged.next(this.swaps)},error:b=>this.swapsChanged.error(this.handleErrorWithAlert(Wt.MZ.GET_BOLTZ_SWAPS,this.swapUrl,b))})}swapInfo(b){return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/swapInfo/"+b,this.httpClient.get(this.swapUrl).pipe((0,Aa.W)(U=>(0,At.of)(this.handleErrorWithAlert(Wt.MZ.NO_SPINNER,this.swapUrl,U))))}getBoltzInfo(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:b=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.boltzInfo=b,this.boltzInfoChanged.next(this.boltzInfo)},error:b=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,At.of)(this.handleErrorWithoutAlert(Wt.MZ.GET_BOLTZ_INFO,this.swapUrl,b)))})}serviceInfo(){return this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_SERVICE_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[2]),(0,Xa.T)(b=>(this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_SERVICE_INFO})),b)),(0,Aa.W)(b=>(0,At.of)(this.handleErrorWithAlert(Wt.MZ.GET_SERVICE_INFO,this.swapUrl,b))))}swapOut(b,U,G){const Oe={amount:b,address:U,acceptZeroConf:G};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Aa.W)(It=>this.handleErrorWithoutAlert("Swap Out for Address: "+U,Wt.MZ.NO_SPINNER,It)))}swapIn(b,U){const G={amount:b,sendFromInternal:U};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,G).pipe((0,Aa.W)(Oe=>this.handleErrorWithoutAlert("Swap In for Amount: "+b,Wt.MZ.NO_SPINNER,Oe)))}handleErrorWithoutAlert(b,U,G){let Oe="";return this.logger.error("ERROR IN: "+b+"\n"+JSON.stringify(G)),this.store.dispatch((0,Cn.y0)({payload:U})),401===G.status?(Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:Oe}))):503===G.status?(Oe="Unable to Connect to Boltz Server.",this.store.dispatch((0,Cn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:b},component:t1.f}}}))):Oe=this.commonService.extractErrorMessage(G),(0,G0.$)(()=>new Error(Oe))}handleErrorWithAlert(b,U,G){let Oe="";if(401===G.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:"Authentication Failed: "+JSON.stringify(G.error)}))),this.logger.error(G),this.store.dispatch((0,Cn.y0)({payload:b})),401===G.status)Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:Oe}));else if(503===G.status)Oe="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:U},component:t1.f}}}))},100);else{Oe=this.commonService.extractErrorMessage(G);const It=G.error&&G.error.error&&G.error.error.code?G.error.error.code:G.error&&G.error.code?G.error.code:G.code?G.code:G.status;setTimeout(()=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.ERROR,alertTitle:"ERROR",message:{code:It,message:Oe,URL:U},component:t1.f}}}))},100)}return{message:Oe}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(Ms.Qq),t.KVO(Yo.gP),t.KVO(Ri.il),t.KVO(Ia.h))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const g2=O=>({"display-none":O});function sf(O,H){1&O&&t.eu8(0)}function cf(O,H){if(1&O&&(t.j41(0,"div",4)(1,"span",5),t.EFF(2),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.JRh(null!=b.swapStatus&&b.swapStatus.error?null==b.swapStatus?null:b.swapStatus.error:"Unknown Error.")}}function lf(O,H){if(1&O&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Routing Fee (mSats)"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.nI1(5,"number"),t.k0s()()),2&O){const b=t.XpG(2);t.R7$(4),t.JRh(t.bMT(5,1,null==b.swapStatus?null:b.swapStatus.routingFeeMilliSat))}}function j0(O,H){if(1&O&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Claim Transaction ID"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.k0s()()),2&O){const b=t.XpG(2);t.R7$(4),t.JRh(null==b.swapStatus?null:b.swapStatus.claimTransactionId)}}function W0(O,H){if(1&O&&(t.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),t.EFF(4,"ID"),t.k0s(),t.j41(5,"span",5),t.EFF(6),t.k0s()(),t.DNE(7,lf,6,3,"div",9)(8,j0,5,1,"div",9),t.k0s(),t.nrm(9,"mat-divider",10),t.j41(10,"div",6)(11,"div",11)(12,"h4",8),t.EFF(13,"Lockup Address"),t.k0s(),t.j41(14,"span",5),t.EFF(15),t.k0s()()()()),2&O){const b=t.XpG();t.R7$(6),t.JRh(null==b.swapStatus?null:b.swapStatus.id),t.R7$(),t.Y8G("ngIf",b.acceptZeroConf),t.R7$(),t.Y8G("ngIf",b.acceptZeroConf),t.R7$(7),t.JRh(null==b.swapStatus?null:b.swapStatus.lockupAddress)}}function go(O,H){1&O&&(t.j41(0,"span",22),t.EFF(1,"N/A"),t.k0s())}function e4(O,H){1&O&&(t.j41(0,"span",23),t.EFF(1,"QR Code Not Applicable"),t.k0s())}function X0(O,H){1&O&&t.nrm(0,"mat-divider",24),2&O&&t.Y8G("inset",!0)}function t4(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Transaction ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.txId)}}function _2(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",25)(2,"h4",8),t.EFF(3,"ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",25)(7,"h4",8),t.EFF(8,"Expected Amount (Sats)"),t.k0s(),t.j41(9,"span",5),t.EFF(10),t.nI1(11,"number"),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.id),t.R7$(5),t.JRh(t.bMT(11,2,null==b.swapStatus?null:b.swapStatus.expectedAmount))}}function i4(O,H){1&O&&t.nrm(0,"mat-divider",10)}function n1(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Address"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.address)}}function Bs(O,H){1&O&&t.nrm(0,"mat-divider",10)}function r1(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"BIP 21"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.bip21)}}function ml(O,H){if(1&O&&(t.j41(0,"div",12)(1,"div",13),t.nrm(2,"qr-code",14),t.DNE(3,go,2,0,"span",15),t.k0s(),t.j41(4,"div",16)(5,"div",4)(6,"div",17),t.nrm(7,"qr-code",14),t.DNE(8,e4,2,0,"span",18),t.k0s(),t.DNE(9,X0,1,1,"mat-divider",19)(10,t4,6,1,"div",20)(11,_2,12,4,"div",20)(12,i4,1,0,"mat-divider",21)(13,n1,6,1,"div",20)(14,Bs,1,0,"mat-divider",21)(15,r1,6,1,"div",20),t.k0s()()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("fxLayoutAlign",""!==((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(19,g2,b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))("size",b.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))),t.R7$(3),t.Y8G("fxLayoutAlign",""!==((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(21,g2,b.screenSize!==b.screenSizeEnum.XS&&b.screenSize!==b.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))("size",b.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))),t.R7$(),t.Y8G("ngIf",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM),t.R7$(),t.Y8G("ngIf",b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal)}}let df=(()=>{class O{constructor(b){this.commonService=b,this.swapStatus=null,this.direction=Wt.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=Wt.f7,this.swapTypeEnum=Wt.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===Wt.f7.XS&&(this.qrWidth=180)}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},decls:7,vars:1,consts:[["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","33"],["fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","33",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","100"],["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"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["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"],["class","w-100 my-1",4,"ngIf"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","50"]],template:function(U,G){if(1&U&&t.DNE(0,sf,1,0,"ng-container",3)(1,cf,3,1,"ng-template",null,0,t.C5r)(3,W0,16,4,"ng-template",null,1,t.C5r)(5,ml,16,23,"ng-template",null,2,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6);t.Y8G("ngTemplateOutlet",null!=G.swapStatus&&G.swapStatus.error?Oe:G.direction===G.swapTypeEnum.SWAP_OUT?It:Lt)}},dependencies:[ri.YU,ri.bT,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,Pc.q,ls.Um,ri.QX]})}return O})(),Y0=(()=>{class O{constructor(){this.serviceInfo={},this.direction=Wt.Bd.SWAP_OUT,this.swapTypeEnum=Wt.Bd}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,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(U,G){1&U&&(t.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),t.EFF(4,"Service Information"),t.k0s()()(),t.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),t.EFF(9,"Minimum Amount (Sats)"),t.k0s(),t.j41(10,"span",6),t.EFF(11),t.nI1(12,"number"),t.k0s()(),t.j41(13,"div",4)(14,"h4",5),t.EFF(15,"Maximum Amount (Sats)"),t.k0s(),t.j41(16,"span",6),t.EFF(17),t.nI1(18,"number"),t.k0s()()(),t.nrm(19,"mat-divider",7),t.j41(20,"div",3)(21,"div",4)(22,"h4",5),t.EFF(23,"Fee Percentage"),t.k0s(),t.j41(24,"span",6),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div",4)(28,"h4",5),t.EFF(29,"Miner Fee (Sats)"),t.k0s(),t.j41(30,"span",6),t.EFF(31),t.nI1(32,"number"),t.k0s()()()()()),2&U&&(t.Y8G("expanded",!0),t.R7$(11),t.JRh(t.bMT(12,5,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.minimal)),t.R7$(6),t.JRh(t.bMT(18,7,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.maximal)),t.R7$(8),t.JRh(t.bMT(26,9,null==G.serviceInfo||null==G.serviceInfo.fees?null:G.serviceInfo.fees.percentage)),t.R7$(6),t.JRh(t.bMT(32,11,G.direction===G.swapTypeEnum.SWAP_OUT?null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.reverse:null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.normal)))},dependencies:[$i.DJ,$i.sA,$i.UI,Ra.GK,Ra.Z2,Ra.WN,Pc.q,ri.QX]})}return O})();var v2=g(6949);const md=(O,H)=>({"small-svg":O,"large-svg":H});function hf(O,H){1&O&&t.eu8(0)}function n4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",7),t.nrm(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),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Submarine Swaps explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function r4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21),t.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.joV(),t.j41(9,"div",18)(10,"mat-card-title"),t.EFF(11,"Step 1: Deciding to Submarine Swap"),t.k0s()(),t.j41(12,"div",19)(13,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function uf(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",29),t.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),t.j41(9,"defs")(10,"pattern",37),t.nrm(11,"use",38),t.k0s(),t.nrm(12,"image",39),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Sending the on-chain funds"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function ff(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",40)(2,"g",41),t.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),t.k0s(),t.j41(8,"defs")(9,"clipPath",47),t.nrm(10,"rect",48),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on Lightning"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function $l(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",49),t.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let pd=(()=>{class O{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["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(U,G){if(1&U&&t.DNE(0,hf,1,0,"ng-container",5)(1,n4,18,5,"ng-template",null,0,t.C5r)(3,r4,15,5,"ng-template",null,1,t.C5r)(5,uf,19,5,"ng-template",null,2,t.C5r)(7,ff,17,5,"ng-template",null,3,t.C5r)(9,$l,13,5,"ng-template",null,4,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6),oi=t.sdS(8),ci=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?It:3===G.stepNumber?Lt:4===G.stepNumber?oi:ci)}},dependencies:[ri.YU,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,mr.Lc,mr.dh],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:[v2.k]}})}return O})();const Ql=(O,H)=>({"small-svg":O,"large-svg":H});function mf(O,H){1&O&&t.eu8(0)}function a1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",7),t.nrm(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),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Reverse Submarine Swap explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Us(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21)(2,"g",22),t.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.nrm(9,"path",29),t.j41(10,"defs")(11,"clipPath",30),t.nrm(12,"rect",31),t.k0s()()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function K0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",32),t.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),t.j41(9,"defs")(10,"pattern",40),t.nrm(11,"use",41),t.k0s(),t.nrm(12,"image",42),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Paying the Lightning Invoice"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function o1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",43)(2,"g",22),t.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),t.k0s(),t.j41(8,"defs")(9,"clipPath",30),t.nrm(10,"rect",49),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on-chain"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function gd(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",50),t.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.EFF(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. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let $0=(()=>{class O{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["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(U,G){if(1&U&&t.DNE(0,mf,1,0,"ng-container",5)(1,a1,18,5,"ng-template",null,0,t.C5r)(3,Us,19,5,"ng-template",null,1,t.C5r)(5,K0,19,5,"ng-template",null,2,t.C5r)(7,o1,17,5,"ng-template",null,3,t.C5r)(9,gd,13,5,"ng-template",null,4,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6),oi=t.sdS(8),ci=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?It:3===G.stepNumber?Lt:4===G.stepNumber?oi:ci)}},dependencies:[ri.YU,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,mr.Lc,mr.dh],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:[v2.k]}})}return O})();const Q0=["stepper"],Z0=()=>[1,2,3,4,5],_d=(O,H)=>({"dot-primary":O,"dot-primary-lighter":H});function s1(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.inputFormLabel)}}function c1(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function J0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.SpI("Amount must be greater than or equal to ",t.bMT(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),".")}}function q0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",t.bMT(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),".")}}function Zl(O,H){1&O&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",43),t.EFF(3,"Accept Zero Conf"),t.k0s(),t.j41(4,"mat-icon",44),t.EFF(5,"info_outline"),t.k0s()()())}function b2(O,H){1&O&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",45),t.EFF(3,"Send from Internal Wallet"),t.k0s(),t.j41(4,"mat-icon",46),t.EFF(5,"info_outline"),t.k0s()()())}function pf(O,H){1&O&&(t.j41(0,"button",47),t.EFF(1,"Next"),t.k0s())}function gf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",48),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG(2);t.R7$(),t.SpI("Initiate ",b.swapDirectionCaption,"")}}function Qo(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(3);t.JRh(b.addressFormLabel)}}function y2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function l1(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-step",15)(1,"form",16),t.DNE(2,Qo,1,1,"ng-template",17),t.j41(3,"div",49)(4,"mat-radio-group",50),t.bIt("change",function(G){t.eBV(b);const Oe=t.XpG(2);return t.Njj(Oe.onAddressTypeChange(G))}),t.j41(5,"mat-radio-button",51),t.EFF(6,"Node Local Address"),t.k0s(),t.j41(7,"mat-radio-button",52),t.EFF(8,"External Address"),t.k0s()(),t.j41(9,"mat-form-field",53)(10,"mat-label"),t.EFF(11,"Address"),t.k0s(),t.nrm(12,"input",54),t.DNE(13,y2,2,0,"mat-error",24),t.k0s()(),t.j41(14,"div",26)(15,"button",55),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(16),t.k0s()()()()}if(2&O){const b=t.XpG(2);t.Y8G("stepControl",b.addressFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.addressFormGroup),t.R7$(11),t.Y8G("required","external"===b.addressFormGroup.controls.addressType.value),t.R7$(),t.Y8G("ngIf",null==b.addressFormGroup.controls.address.errors?null:b.addressFormGroup.controls.address.errors.required),t.R7$(3),t.SpI("Initiate ",b.swapDirectionCaption,"")}}function x2(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.SpI("",b.swapDirectionCaption," Status")}}function eh(O,H){if(1&O&&(t.j41(0,"mat-icon",56),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.swapStatus&&null!=b.swapStatus&&b.swapStatus.id?"check":"close")}}function a4(O,H){1&O&&t.nrm(0,"div")}function Zo(O,H){1&O&&t.nrm(0,"mat-progress-bar",57)}function pl(O,H){if(1&O&&(t.j41(0,"h4",58),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.swapStatus&&b.swapStatus.error?b.swapDirectionCaption+" failed.":b.swapStatus&&b.swapStatus.id?b.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":b.swapDirectionCaption+" request placed successfully.")}}function C2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",59),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function w2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5),t.k0s()(),t.j41(6,"div",9)(7,"button",10),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onClose())}),t.EFF(10,"X"),t.k0s()()(),t.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),t.bIt("selectionChange",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.stepSelectionChanged(G))}),t.j41(15,"mat-step",15)(16,"form",16),t.DNE(17,s1,1,1,"ng-template",17),t.j41(18,"div",18),t.nrm(19,"rtl-boltz-service-info",19),t.k0s(),t.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),t.EFF(23,"Amount"),t.k0s(),t.nrm(24,"input",22),t.j41(25,"mat-hint"),t.EFF(26),t.nI1(27,"number"),t.nI1(28,"number"),t.k0s(),t.j41(29,"span",23),t.EFF(30,"Sats"),t.k0s(),t.DNE(31,c1,2,0,"mat-error",24)(32,J0,3,3,"mat-error",24)(33,q0,3,3,"mat-error",24),t.k0s(),t.DNE(34,Zl,6,0,"div",25)(35,b2,6,0,"div",25),t.k0s(),t.j41(36,"div",26),t.DNE(37,pf,2,0,"button",27)(38,gf,2,1,"button",28),t.k0s()()(),t.DNE(39,l1,17,6,"mat-step",29),t.j41(40,"mat-step",30)(41,"form",16),t.DNE(42,x2,1,1,"ng-template",17),t.j41(43,"div",31)(44,"mat-expansion-panel",32)(45,"mat-expansion-panel-header")(46,"mat-panel-title")(47,"span",33),t.EFF(48),t.DNE(49,eh,2,1,"mat-icon",34),t.k0s()()(),t.DNE(50,a4,1,0,"div",35),t.k0s(),t.DNE(51,Zo,1,0,"mat-progress-bar",36),t.k0s(),t.DNE(52,pl,2,1,"h4",37),t.j41(53,"div",26),t.DNE(54,C2,2,0,"button",38),t.k0s()()()(),t.j41(55,"div",39)(56,"button",40),t.EFF(57,"Close"),t.k0s()()()()()()}if(2&O){const b=t.XpG(),U=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(3),t.Y8G("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"83":"91"),t.R7$(2),t.JRh(b.swapDirectionCaption),t.R7$(),t.Y8G("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"17":"9"),t.R7$(7),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",b.inputFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.inputFormGroup),t.R7$(3),t.Y8G("serviceInfo",b.serviceInfo)("direction",b.direction),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.Lme("Range: ",t.bMT(27,32,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),"-",t.bMT(28,34,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),""),t.R7$(5),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.required),t.R7$(),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.min),t.R7$(),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.max),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN&&b.isSendFromInternalCompatible),t.R7$(2),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("stepControl",b.statusFormGroup),t.R7$(),t.Y8G("formGroup",b.statusFormGroup),t.R7$(3),t.Y8G("expanded",!!b.swapStatus),t.R7$(4),t.JRh(b.swapStatus?b.swapStatus.id?b.swapDirectionCaption+" request details":b.swapDirectionCaption+" error details":"Waiting for "+b.swapDirectionCaption+" request..."),t.R7$(),t.Y8G("ngIf",b.swapStatus),t.R7$(),t.Y8G("ngIf",!b.swapStatus)("ngIfElse",U),t.R7$(),t.Y8G("ngIf",!b.swapStatus),t.R7$(),t.Y8G("ngIf",b.swapStatus),t.R7$(2),t.Y8G("ngIf",b.swapStatus&&(b.swapStatus.error||!b.swapStatus.id)),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function _f(O,H){if(1&O&&t.nrm(0,"rtl-boltz-swap-status",60),2&O){const b=t.XpG();t.Y8G("swapStatus",b.swapStatus)("direction",b.direction)("acceptZeroConf",null==b.inputFormGroup||null==b.inputFormGroup.controls?null:b.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==b.inputFormGroup||null==b.inputFormGroup.controls?null:b.inputFormGroup.controls.sendFromInternal.value)}}function th(O,H){if(1&O){const b=t.RV6();t.j41(0,"rtl-boltz-swapout-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&O){const b=t.XpG(2);t.Y8G("animationDirection",b.animationDirection),t.R50("stepNumber",b.stepNumber)}}function ih(O,H){if(1&O){const b=t.RV6();t.j41(0,"rtl-boltz-swapin-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&O){const b=t.XpG(2);t.Y8G("animationDirection",b.animationDirection),t.R50("stepNumber",b.stepNumber)}}function Gc(O,H){if(1&O){const b=t.RV6();t.j41(0,"span",77),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onStepChanged(G))}),t.nrm(1,"p",78),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,_d,U.stepNumber===b,U.stepNumber!==b))}}function M2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onReadMore())}),t.EFF(1,"Read More"),t.k0s()}}function nh(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function vf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function rh(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function E2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",83),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function bf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",84),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function S2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",61)(1,"div",18)(2,"mat-card-header",62)(3,"div",63),t.nrm(4,"span",8),t.k0s(),t.j41(5,"div",64)(6,"button",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",65),t.DNE(9,th,1,2,"rtl-boltz-swapout-info-graphics",66)(10,ih,1,2,"rtl-boltz-swapin-info-graphics",66),t.k0s(),t.j41(11,"div",67),t.DNE(12,Gc,2,4,"span",68),t.k0s(),t.j41(13,"div",69),t.DNE(14,M2,2,0,"button",70)(15,nh,2,0,"button",71)(16,vf,2,0,"button",72)(17,rh,2,0,"button",73)(18,E2,2,0,"button",74)(19,bf,2,0,"button",75),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.R7$(2),t.Y8G("ngForOf",t.lJ4(10,Z0)),t.R7$(2),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",b.stepNumber<5),t.R7$(),t.Y8G("ngIf",b.stepNumber>1&&b.stepNumber<5),t.R7$(),t.Y8G("ngIf",b.stepNumber<5)}}let Jl=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi){this.dialogRef=b,this.data=U,this.boltzService=G,this.formBuilder=Oe,this.decimalPipe=It,this.logger=Lt,this.commonService=oi,this.faInfoCircle=nn.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=Wt.Bd,this.direction=Wt.Bd.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=Wt.f7,this.animationDirection="forward",this.flgEditable=!0,this.isSendFromInternalCompatible=!0,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||Wt.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===Wt.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[Wi.k0.required,Wi.k0.min(this.serviceInfo.limits?.minimal||0),Wi.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[Wi.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.boltzInfo=b,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:b=>{this.boltzInfo={version:"2.0.0"},this.logger.error(b)}})}ngAfterViewInit(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(b){"external"===b.value?(this.addressFormGroup.controls.address.setValidators([Wi.k0.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(){if(!this.inputFormGroup.controls.amount.value||this.serviceInfo.limits?.minimal&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||this.serviceInfo.limits?.maximal&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===Wt.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===Wt.Bd.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:b=>{this.swapStatus=b,this.boltzService.listSwaps(),this.flgEditable=!0},error:b=>{this.swapStatus={error:b},this.flgEditable=!0,this.logger.error(b)}}):this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",this.inputFormGroup.controls.acceptZeroConf.value).pipe((0,dn.Q)(this.unSubs[3])).subscribe({next:U=>{this.swapStatus=U,this.boltzService.listSwaps(),this.flgEditable=!0},error:U=>{this.swapStatus={error:U},this.flgEditable=!0,this.logger.error(U)}})}stepSelectionChanged(b){switch(b.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.direction===Wt.Bd.SWAP_IN?this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Send from Internal Wallet: "+(this.inputFormGroup.controls.sendFromInternal.value?"Yes":"No"):this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Zero Conf: "+(this.inputFormGroup.controls.acceptZeroConf.value?"Yes":"No"):"Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address"}b.selectedIndex{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Sn.Vh),t.rXU(fd),t.rXU(Wi.ze),t.rXU(ri.QX),t.rXU(Yo.gP),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(U,G){if(1&U&&t.GBs(Q0,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},decls:4,vars:2,consts:[["swapStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["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","end 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,"selectionChange","linear"],[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"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch",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"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","acceptZeroConf","name","acceptZeroConf"],["matTooltip","Only recommended for smaller payments, involves trust in Boltz","matTooltipPosition","above",1,"info-icon","mt-2"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","sendFromInternal","name","sendFromInternal"],["matTooltip","Pay from the node's onchain wallet","matTooltipPosition","above",1,"info-icon","mt-2"],["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"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","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","acceptZeroConf","sendFromInternal"],["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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","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(U,G){1&U&&t.DNE(0,w2,58,36,"div",2)(1,_f,1,4,"ng-template",null,0,t.C5r)(3,S2,20,11,"div",3),2&U&&(t.Y8G("ngIf",!G.flgShowInfo),t.R7$(3),t.Y8G("ngIf",G.flgShowInfo))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.Q0,Wi.BC,Wi.cb,Wi.YS,Wi.j4,Wi.JD,$i.DJ,$i.sA,$i.UI,ds.PW,Sn.tx,ve.$z,mr.m2,mr.MM,Ra.GK,Ra.Z2,Ra.WN,Vc.An,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pe.yw,ul.HM,Gd.VT,Gd._g,e2.sG,ic.oV,Ka.V5,Ka.Ti,Ka.M6,Ka.F7,Ot.N,df,Y0,pd,$0,ri.QX],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[af.C]}})}return O})();const yf=()=>["all"],d1=O=>({"overflow-auto error-border":O,"overflow-auto":!0}),ah=()=>["no_swap"],jc=O=>({width:O}),T2=O=>({"display-none":O});function oh(O,H){if(1&O&&(t.j41(0,"mat-option",42),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b),t.R7$(),t.JRh(U.getLabel(b))}}function xf(O,H){1&O&&t.nrm(0,"mat-progress-bar",43)}function h1(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Status"),t.k0s())}function D2(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.JRh(U.swapStateEnum[null==b?null:b.status])}}function Cf(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Swap ID"),t.k0s())}function ql(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.id)}}function vd(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Claim Address"),t.k0s())}function bd(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.claimAddress)}}function wf(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Lockup Address"),t.k0s())}function Mf(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.lockupAddress)}}function o4(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Onchain Amount (Sats)"),t.k0s())}function A2(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.onchainAmount))}}function sh(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Expected Amount (Sats)"),t.k0s())}function u1(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.expectedAmount))}}function ch(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Error"),t.k0s())}function Dc(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.error)}}function f1(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Private Key"),t.k0s())}function k2(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.privateKey)}}function lh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Preimage"),t.k0s())}function ed(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.preimage)}}function dh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Redeem Script"),t.k0s())}function hh(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.redeemScript)}}function Ef(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Invoice"),t.k0s())}function Sf(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.invoice)}}function uh(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Timeout Block Height"),t.k0s())}function s4(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.timeoutBlockHeight))}}function c4(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Lockup Tx ID"),t.k0s())}function Gs(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.lockupTransactionId)}}function fh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Claim Tx ID"),t.k0s())}function m1(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.claimTransactionId)}}function mh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Refund Tx ID"),t.k0s())}function js(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.refundTransactionId)}}function yd(O,H){if(1&O){const b=t.RV6();t.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",53),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function p1(O,H){if(1&O){const b=t.RV6();t.j41(0,"td",54)(1,"button",55),t.bIt("click",function(G){const Oe=t.eBV(b).$implicit,It=t.XpG();return t.Njj(It.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function td(O,H){if(1&O&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.emptyTableMessage)}}function id(O,H){if(1&O&&(t.j41(0,"td",56),t.DNE(1,td,2,1,"p",57),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}function Wc(O,H){if(1&O&&t.nrm(0,"tr",58),2&O){const b=t.XpG();t.Y8G("ngClass",t.eq3(1,T2,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Ac(O,H){1&O&&t.nrm(0,"tr",59)}function xd(O,H){1&O&&t.nrm(0,"tr",60)}let nd=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.commonService=U,this.store=G,this.boltzService=Oe,this.camelCaseWithReplace=It,this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.swapStateEnum=Wt.q9,this.swapTypeEnum=Wt.Bd,this.faHistory=nn.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Tr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){b.selectedSwapType&&!b.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===Wt.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.tableSettingSwapOut=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapOut.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapIn.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapIn.tableId),this.setTableColumns(),this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===Wt.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.f7.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:Wt.md):(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.f7.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:Wt.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(b){const G=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===Wt.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Oe=>Oe.column===b);return G?G.label?G.label:this.camelCaseWithReplace.transform(G.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,U)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(b).toLowerCase();break;case"status":G=b?.status?this.swapStateEnum[b?.status]:"";break;default:G=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===G.indexOf(U):G.includes(U)}}onSwapClick(b,U){this.boltzService.swapInfo(b.id||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:Wt.q9[(G=this.selectedSwapType===Wt.Bd.SWAP_IN?G.swap:G.reverseSwap).status],title:"Status",width:50,type:Wt.UN.STRING},{key:"id",value:G.id,title:"ID",width:50,type:Wt.UN.STRING}],[{key:"amount",value:G.onchainAmount?G.onchainAmount:G.expectedAmount?G.expectedAmount:0,title:G.onchainAmount?"Onchain Amount (Sats)":G.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:Wt.UN.NUMBER},{key:"timeoutBlockHeight",value:G.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:Wt.UN.NUMBER}],[{key:"address",value:G.claimAddress?G.claimAddress:G.lockupAddress?G.lockupAddress:"",title:G.claimAddress?"Claim Address":G.lockupAddress?"Lockup Address":"Address",width:100,type:Wt.UN.STRING}],[{key:"invoice",value:G.invoice,title:"Invoice",width:100,type:Wt.UN.STRING}],[{key:"privateKey",value:G.privateKey,title:"Private Key",width:100,type:Wt.UN.STRING}],[{key:"preimage",value:G.preimage,title:"Preimage",width:100,type:Wt.UN.STRING}],[{key:"redeemScript",value:G.redeemScript,title:"Redeem Script",width:100,type:Wt.UN.STRING}],[{key:"lockupTransactionId",value:G.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:Wt.UN.STRING},{key:"transactionId",value:G.claimTransactionId?G.claimTransactionId:G.refundTransactionId?G.refundTransactionId:"",title:G.claimTransactionId?"Claim Transaction ID":G.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new Tr.I6(b?[...b]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(U,G)=>U[G]&&isNaN(U[G])?U[G].toLocaleLowerCase():U[G]?+U[G]:null,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===Wt.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(fd),t.rXU(Ul.VD))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swaps"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Sc.B4,5),t.GBs(hl.iy,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:xe.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:hl.xX,useValue:(0,Wt.on)("Swaps")}]),t.OA$],decls:76,vars:20,consts:[["table",""],["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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["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.gt-xs","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(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilterBy,Lt)||(G.selFilterBy=Lt),t.Njj(Lt)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,oh,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilter,Lt)||(G.selFilter=Lt),t.Njj(Lt)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,xf,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,h1,2,0,"th",16)(24,D2,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Cf,2,0,"th",16)(27,ql,2,1,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,vd,2,0,"th",16)(30,bd,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,wf,2,0,"th",16)(33,Mf,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,o4,2,0,"th",22)(36,A2,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,sh,2,0,"th",22)(39,u1,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ch,2,0,"th",16)(42,Dc,4,4,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,f1,2,0,"th",16)(45,k2,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,lh,2,0,"th",16)(48,ed,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,dh,2,0,"th",16)(51,hh,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,Ef,2,0,"th",16)(54,Sf,4,4,"td",17),t.bVm(),t.qex(55,29),t.DNE(56,uh,2,0,"th",22)(57,s4,4,3,"td",17),t.bVm(),t.qex(58,30),t.DNE(59,c4,2,0,"th",16)(60,Gs,2,1,"td",17),t.bVm(),t.qex(61,31),t.DNE(62,fh,2,0,"th",16)(63,m1,2,1,"td",17),t.bVm(),t.qex(64,32),t.DNE(65,mh,2,0,"th",16)(66,js,2,1,"td",17),t.bVm(),t.qex(67,33),t.DNE(68,yd,6,0,"th",34)(69,p1,3,0,"td",35),t.bVm(),t.qex(70,36),t.DNE(71,id,2,1,"td",37),t.bVm(),t.DNE(72,Wc,1,3,"tr",38)(73,Ac,1,0,"tr",39)(74,xd,1,0,"tr",40),t.k0s(),t.nrm(75,"mat-paginator",41),t.k0s()()()}2&U&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,yf).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortBy:G.tableSettingSwapOut.sortBy)("matSortDirection",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortOrder:G.tableSettingSwapOut.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,d1,"error"===G.flgLoading[0])),t.R7$(52),t.Y8G("matFooterRowDef",t.lJ4(19,ah)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.B3,Wi.me,Wi.BC,Wi.vS,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ds.eI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,ul.HM,xe.VO,xe.$2,Be.wT,Sc.B4,Sc.aE,Tr.Zl,Tr.tL,Tr.ji,Tr.cC,Tr.YV,Tr.iL,Tr.Zq,Tr.xW,Tr.KS,Tr.$R,Tr.Qo,Tr.YZ,Tr.NB,Tr.iF,hl.iy,ft.ZF,ft.Ld,ri.QX]})}return O})();const ph=O=>["../",O];function l4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",16),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.Y8G("active",U.activeTab.link===b.link)("routerLink",t.eq3(3,ph,b.link)),t.R7$(),t.JRh(b.name)}}let gh=(()=>{class O{constructor(b,U,G){this.router=b,this.store=U,this.boltzService=G,this.swapTypeEnum=Wt.Bd,this.selectedSwapType=Wt.Bd.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 Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.boltzService.getBoltzInfo(),this.boltzService.listSwaps();const b=this.links.find(U=>this.router.url.includes(U.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"swapin"===b.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"swapin"===G.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:U=>{this.swaps=U,this.swapsData=this.selectedSwapType===Wt.Bd.SWAP_IN&&U.swaps?U.swaps:this.selectedSwapType===Wt.Bd.SWAP_OUT&&U.reverseSwaps?U.reverseSwaps:[],this.flgLoading[0]=!1},error:U=>{this.flgLoading[0]="error",this.emptyTableMessage=U.message?U.message:"No swap "+(this.selectedSwapType===Wt.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){"swapin"===b.link?(this.selectedSwapType=Wt.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(b){this.boltzService.serviceInfo().pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{serviceInfo:U,direction:b,component:Jl}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.Ix),t.rXU(Ri.il),t.rXU(fd))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-root"]],decls:20,vars:7,consts:[["tabPanel",""],["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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","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","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.qSk(),t.j41(1,"svg",2)(2,"g",3)(3,"g",4),t.nrm(4,"circle",5)(5,"path",6)(6,"path",7),t.k0s()()(),t.joV(),t.j41(7,"span",8),t.EFF(8,"Boltz"),t.k0s()(),t.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),t.DNE(13,l4,2,5,"div",12),t.k0s(),t.nrm(14,"mat-tab-nav-panel",null,0),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onSwap(G.selectedSwapType))}),t.EFF(18),t.k0s()(),t.nrm(19,"rtl-boltz-swaps",15),t.k0s()()()}if(2&U){const Oe=t.sdS(15);t.R7$(12),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.swapsData)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[ri.Sq,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.Wk,nd]})}return O})();class io{constructor(H){this.help=H}}function _h(O,H){if(1&O&&(t.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.k0s()(),t.j41(4,"mat-panel-description",9),t.nrm(5,"span",10),t.j41(6,"a",11),t.EFF(7),t.k0s()()()),2&O){const b=t.XpG().$implicit,U=t.XpG();t.R7$(3),t.JRh(b.help.question),t.R7$(2),t.Y8G("innerHTML",b.help.answer,t.npT),t.R7$(),t.Y8G("routerLink",U.flgLoggedIn?b.help.link:"/login"),t.R7$(),t.JRh(U.flgLoggedIn?b.help.linkCaption:"Login to go to the page")}}function Af(O,H){if(1&O&&(t.j41(0,"div",6),t.DNE(1,_h,8,4,"mat-expansion-panel",7),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngIf","ALL"===b.help.lnImplementation||b.help.lnImplementation===U.selNode.lnImplementation)}}let vh=(()=>{class O{constructor(b,U){this.store=b,this.sessionService=U,this.helpTopics=[],this.faQuestion=nn.EvL,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.flgLoggedIn=!!b.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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. issuer - issuer 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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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 io({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/nodesettings",linkCaption:"Node Settings",lnImplementation:"ALL"})),this.helpTopics.push(new io({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(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(qa.Q))};static#t=this.\u0275cmp=t.VBU({type:O,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(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.nrm(2,"fa-icon",2),t.j41(3,"span",3),t.EFF(4,"Help"),t.k0s()(),t.j41(5,"div",4)(6,"div",0),t.DNE(7,Af,2,1,"div",5),t.k0s()()()),2&U&&(t.R7$(2),t.Y8G("icon",G.faQuestion),t.R7$(5),t.Y8G("ngForOf",G.helpTopics))},dependencies:[ri.Sq,ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,Ra.GK,Ra.Z2,Ra.WN,Ra.Q6,En.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]})}return O})();var rd=g(4572);function bh(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}let L2=(()=>{class O{constructor(b,U){this.dialogRef=b,this.store=U,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Cn.R$)({payload:{twoFAToken:this.token}}))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-login-token"]],decls:19,vars:2,consts:[["tokenForm","ngForm"],["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 center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["autoFocus","","matInput","","type","text","id","token","name","token","tabindex","2","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Two Factor Token"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0),t.bIt("ngSubmit",function(){return t.eBV(Oe),t.Njj(G.onVerifyToken())}),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"Token"),t.k0s(),t.j41(14,"input",9),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.token,Lt)||(G.token=Lt),t.Njj(Lt)}),t.k0s(),t.DNE(15,bh,2,0,"mat-error",10),t.k0s(),t.j41(16,"div",11)(17,"button",12),t.EFF(18,"Verify Token"),t.k0s()()()()()()}2&U&&(t.R7$(14),t.R50("ngModel",G.token),t.R7$(),t.Y8G("ngIf",!G.token))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Ot.N]})}return O})();const kf=O=>({"padding-gap-large":O}),g1=(O,H)=>({"font-size-200":O,"font-size-300":H});function u4(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function wd(O,H){if(1&O&&(t.j41(0,"p",21)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&O){const b=t.XpG();t.R7$(3),t.SpI(" ",b.loginErrorMessage," ")}}function Lf(O,H){if(1&O&&(t.j41(0,"p",23)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&O){const b=t.XpG();t.R7$(3),t.SpI(" ",b.logoutReason," ")}}let _1=(()=>{class O{constructor(b,U,G,Oe,It){this.actions=b,this.logger=U,this.store=G,this.rtlEffects=Oe,this.commonService=It,this.faUnlockAlt=nn.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=Wt.f7,this.loginErrorMessage="",this.apiCallStatusEnum=Wt.wn,this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,rd.z)([this.store.select(Gr.Kq),this.store.select(Gr.E2)]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(([b,U])=>{this.loginErrorMessage="",b.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof b.message?JSON.stringify(b.message):b.message),this.logger.error(b.message)),U.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof U.message?JSON.stringify(U.message):U.message),this.logger.error(U.message))}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.appConfig=b,this.logger.info(b)}),this.actions.pipe((0,vr.p)(b=>b.type===Wt.aU.LOGOUT),(0,$s.s)(1)).subscribe(b=>{this.logoutReason=b.payload})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Cn.xO)({payload:{maxWidth:"35rem",data:{component:L2}}})),this.rtlEffects.closeAlert.pipe((0,$s.s)(1)).subscribe(b=>{b&&this.store.dispatch((0,Cn.iD)({payload:{password:on(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase()),twoFAToken:b.twoFAToken}}))})):this.store.dispatch((0,Cn.iD)({payload:{password:on(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(lt.En),t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(_r.H),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-login"]],decls:29,vars:14,consts:[["loginForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"login-container"],["fxLayout","row","fxFlex.gt-sm","35","fxLayoutAlign","center center"],["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"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","mt-2","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"pb-2"],["fxLayout","column","fxLayoutAlign","start space-between"],["autoFocus","","matInput","","id","password","name","password","tabindex","1","required","",3,"ngModelChange","type","ngModel"],["mat-icon-button","","matSuffix","","tabindex","2","type","button",3,"click"],[4,"ngIf"],["class","color-warn pre-wrap","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","color-warn pre-wrap","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1","mb-2",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"],["fxLayoutAlign","center center",1,"mr-3px","icon-small"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),t.nrm(5,"img",6),t.k0s(),t.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),t.EFF(10,"Welcome"),t.k0s()()(),t.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),t.EFF(16,"Password"),t.k0s(),t.j41(17,"input",13),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.password,Lt)||(G.password=Lt),t.Njj(Lt)}),t.k0s(),t.j41(18,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.flgShow=!G.flgShow)}),t.j41(19,"mat-icon"),t.EFF(20),t.k0s()(),t.DNE(21,u4,2,0,"mat-error",15),t.k0s(),t.DNE(22,wd,4,1,"p",16)(23,Lf,4,1,"p",17),t.j41(24,"div",18)(25,"button",19),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.resetData())}),t.EFF(26,"Clear"),t.k0s(),t.j41(27,"button",20),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLogin())}),t.EFF(28,"Login"),t.k0s()()()()()()()()()}2&U&&(t.R7$(6),t.Y8G("ngClass",t.eq3(9,kf,G.screenSize===G.screenSizeEnum.XS)),t.R7$(2),t.Y8G("ngClass",t.l_i(11,g1,G.screenSize===G.screenSizeEnum.XS,G.screenSize!==G.screenSizeEnum.XS)),t.R7$(9),t.Y8G("type",G.flgShow?"text":"password"),t.R50("ngModel",G.password),t.R7$(),t.BMQ("aria-label","Hide password"),t.R7$(2),t.JRh(G.flgShow?"visibility_off":"visibility"),t.R7$(),t.Y8G("ngIf",!G.password),t.R7$(),t.Y8G("ngIf",""!==G.loginErrorMessage),t.R7$(),t.Y8G("ngIf",""!==G.logoutReason))},dependencies:[ri.YU,ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,ve.iY,mr.RN,mr.m2,mr.MM,mr.dh,Vc.An,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pe.yw,Ot.N],styles:[".login-container[_ngcontent-%COMP%]{height:60vh;margin-top:15%}.login-container[_ngcontent-%COMP%] .mat-mdc-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:90%;cursor:pointer}"]})}return O})();var I2=g(13);let R2=(()=>{class O{constructor(b,U){this.activatedRoute=b,this.router=U,this.error={errorCode:"",errorMessage:""},this.faTimes=nn.GRI,this.unsubs=[new Gi.B,new Gi.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,dn.Q)(this.unsubs[0])).subscribe(b=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.nX),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,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(U,G){1&U&&(t.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),t.nrm(4,"fa-icon",4),t.j41(5,"span",5),t.EFF(6),t.k0s()()(),t.j41(7,"mat-card-content",6)(8,"div",7),t.EFF(9),t.k0s(),t.j41(10,"span",8)(11,"button",9),t.bIt("click",function(){return G.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()),2&U&&(t.R7$(4),t.Y8G("icon",G.faTimes),t.R7$(2),t.SpI("Error ",G.error.errorCode,""),t.R7$(3),t.JRh(G.error.errorMessage))},dependencies:[ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,mr.MM,mr.dh],encapsulation:2})}return O})();var No=g(7186),O2=g(1534),F2=g(92),N2=g(6114);const Md=(O,H)=>({"alert-danger":O,"alert-info":H});function yh(O,H){1&O&&t.nrm(0,"span",17)}function Ed(O,H){1&O&&t.nrm(0,"span",18)}function xh(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",19,0)(2,"div",20),t.nrm(3,"fa-icon",4),t.j41(4,"span"),t.EFF(5,"Please ensure that "),t.j41(6,"strong"),t.EFF(7,"experimental-offers"),t.k0s(),t.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(9,"strong")(10,"a",21),t.EFF(11,"here"),t.k0s()(),t.EFF(12," to learn more about Core Lightning offers."),t.k0s()(),t.j41(13,"h4",22),t.EFF(14,"Description"),t.k0s(),t.j41(15,"span"),t.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),t.k0s(),t.j41(17,"h4",22),t.EFF(18,"Links"),t.k0s(),t.j41(19,"span")(20,"a",23),t.EFF(21,"Core lightning Bolt12"),t.k0s()(),t.nrm(22,"mat-divider",24),t.j41(23,"div",25),t.nrm(24,"fa-icon",4),t.j41(25,"span"),t.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),t.k0s()(),t.j41(27,"mat-slide-toggle",26),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.enableOffers,G)||(Oe.enableOffers=G),t.Njj(G)}),t.bIt("change",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onUpdateFeature())}),t.EFF(28),t.k0s()()}if(2&O){const b=t.XpG(2);t.R7$(3),t.Y8G("icon",b.faInfoCircle),t.R7$(19),t.Y8G("inset",!0),t.R7$(2),t.Y8G("icon",b.faExclamationTriangle),t.R7$(3),t.R50("ngModel",b.enableOffers),t.R7$(),t.SpI("Enable Offers ",b.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function P2(O,H){if(1&O&&(t.j41(0,"div")(1,"div",29),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"experimental-dual-fund"),t.k0s(),t.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(8,"strong")(9,"a",30),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about Core Lightning Liquidity Ads."),t.k0s()()()),2&O){const b=t.XpG(3);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle)}}function Ch(O,H){if(1&O&&(t.j41(0,"mat-option",47),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ",t.bMT(2,2,b.id)," ")}}function wh(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.SpI("",b.selPolicyType.placeholder," is required.")}}function Sd(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.Lme("",b.selPolicyType.placeholder," must be greater than or equal to ",b.selPolicyType.min,".")}}function V2(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.Lme("",b.selPolicyType.placeholder," must be less than or equal to ",b.selPolicyType.max,".")}}function gl(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base fee is required."),t.k0s())}function If(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base basis is required."),t.k0s())}function Mh(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing base fee is required."),t.k0s())}function f4(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing fee rate is required."),t.k0s())}function v1(O,H){if(1&O&&(t.j41(0,"h4",48)(1,"span",49),t.EFF(2),t.k0s()()),2&O){const b=t.XpG(4);t.R7$(),t.Y8G("ngClass",t.l_i(2,Md,!!b.updateMsg.error,!!b.updateMsg.data)),t.R7$(),t.SpI(" ",b.updateMsg.error&&""!==b.updateMsg.error?"Error: "+b.updateMsg.error||0:b.updateMsg.data&&""!==b.updateMsg.data?b.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function H2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",31)(1,"div",32),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(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."),t.k0s()(),t.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),t.EFF(8,"Policy"),t.k0s(),t.j41(9,"mat-select",35),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.selPolicyType,G)||(Oe.selPolicyType=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.policyMod=null)}),t.DNE(10,Ch,3,4,"mat-option",36),t.k0s()(),t.j41(11,"mat-form-field",37)(12,"mat-label"),t.EFF(13),t.k0s(),t.j41(14,"input",38,1),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.policyMod,G)||(Oe.policyMod=G),t.Njj(G)}),t.k0s(),t.j41(16,"mat-hint"),t.EFF(17),t.k0s(),t.DNE(18,wh,2,1,"mat-error",27)(19,Sd,2,2,"mat-error",27)(20,V2,2,2,"mat-error",27),t.k0s()(),t.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),t.EFF(24,"Lease Base Fee (Sats)"),t.k0s(),t.j41(25,"input",39),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_base_sat,G)||(Oe.lease_fee_base_sat=G),t.Njj(G)}),t.k0s(),t.DNE(26,gl,2,0,"mat-error",27),t.k0s(),t.j41(27,"mat-form-field",37)(28,"mat-label"),t.EFF(29,"Lease Base Basis (bps)"),t.k0s(),t.j41(30,"input",40),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_basis,G)||(Oe.lease_fee_basis=G),t.Njj(G)}),t.k0s(),t.DNE(31,If,2,0,"mat-error",27),t.k0s()(),t.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),t.EFF(35,"Max Channel Routing Base Fee (Sats)"),t.k0s(),t.j41(36,"input",41),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxBaseSat,G)||(Oe.channelFeeMaxBaseSat=G),t.Njj(G)}),t.k0s(),t.DNE(37,Mh,2,0,"mat-error",27),t.k0s(),t.j41(38,"mat-form-field",37)(39,"mat-label"),t.EFF(40,"Max Channel Routing Fee Rate (ppm)"),t.k0s(),t.j41(41,"input",42),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxProportional,G)||(Oe.channelFeeMaxProportional=G),t.Njj(G)}),t.k0s(),t.DNE(42,f4,2,0,"mat-error",27),t.k0s()(),t.DNE(43,v1,3,5,"h4",43),t.j41(44,"div",44)(45,"button",45),t.bIt("click",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.onResetPolicy())}),t.EFF(46,"Reset"),t.k0s(),t.j41(47,"button",46),t.bIt("click",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.onUpdateFundingPolicy())}),t.EFF(48,"Update"),t.k0s()()()}if(2&O){const b=t.XpG(3);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle),t.R7$(7),t.R50("ngModel",b.selPolicyType),t.R7$(),t.Y8G("ngForOf",b.policyTypes),t.R7$(3),t.JRh(b.selPolicyType.placeholder),t.R7$(),t.Y8G("step","fixed"===b.selPolicyType.id?1e3:10)("min",b.selPolicyType.min)("max",b.selPolicyType.max),t.R50("ngModel",b.policyMod),t.R7$(3),t.E5c("",b.selPolicyType.placeholder," should be between ",b.selPolicyType.min," and ",b.selPolicyType.max,""),t.R7$(),t.Y8G("ngIf",!b.policyMod),t.R7$(),t.Y8G("ngIf",b.policyModb.selPolicyType.max),t.R7$(5),t.R50("ngModel",b.lease_fee_base_sat),t.R7$(),t.Y8G("ngIf",!b.lease_fee_base_sat),t.R7$(4),t.R50("ngModel",b.lease_fee_basis),t.R7$(),t.Y8G("ngIf",!b.lease_fee_basis),t.R7$(5),t.R50("ngModel",b.channelFeeMaxBaseSat),t.R7$(),t.Y8G("ngIf",!b.channelFeeMaxBaseSat),t.R7$(4),t.R50("ngModel",b.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",!b.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",b.flgUpdateCalled)}}function Eh(O,H){if(1&O&&(t.j41(0,"form",19,0),t.DNE(2,P2,12,1,"div",27)(3,H2,49,23,"div",28),t.k0s()),2&O){const b=t.XpG(2);t.R7$(2),t.Y8G("ngIf",!b.features[1].enabled),t.R7$(),t.Y8G("ngIf",b.features[1].enabled)}}function Sh(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-expansion-panel",10),t.bIt("opened",function(){const G=t.eBV(b).index,Oe=t.XpG();return t.Njj(Oe.onPanelExpanded(G))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),t.EFF(4),t.k0s(),t.j41(5,"h4",12),t.DNE(6,yh,1,0,"span",13)(7,Ed,1,0,"span",14),t.EFF(8),t.k0s()()(),t.j41(9,"div",15),t.DNE(10,xh,29,5,"form",16)(11,Eh,4,2,"form",16),t.k0s()()}if(2&O){const b=H.$implicit,U=H.index;t.Y8G("expanded",!1),t.R7$(4),t.JRh(b.name),t.R7$(2),t.Y8G("ngIf",b.enabled),t.R7$(),t.Y8G("ngIf",!b.enabled),t.R7$(),t.SpI(" ",b.enabled?"Enabled":"Disabled"," "),t.R7$(2),t.Y8G("ngIf",0===U),t.R7$(),t.Y8G("ngIf",1===U)}}let Th=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.store=U,this.dataService=G,this.commonService=Oe,this.faInfoCircle=nn.iW_,this.faExclamationTriangle=nn.zpE,this.faCode=nn.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=Wt.ul,this.selPolicyType=Wt.ul[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.dataService.listConfigs().pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.logger.info("Received List Configs: "+JSON.stringify(b)),this.features[1].enabled=!!b["experimental-dual-fund"]},error:b=>{this.logger.error("List Configs Error: "+JSON.stringify(b)),this.features[1].enabled=!1}}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(dd.Al).pipe((0,dn.Q)(this.unSubs[2])).subscribe(b=>{this.policyTypes[2].max=b.balance.totalBalance||1e3})}onPanelExpanded(b){1===b&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,dn.Q)(this.unSubs[3])).subscribe(U=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(U)),this.fundingPolicy=U,this.fundingPolicy.policy&&(this.selPolicyType=Wt.ul.find(G=>G.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,Cn.T$)({payload:this.selNode}))}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,dn.Q)(this.unSubs[4])).subscribe({next:b=>{this.logger.info(b),this.fundingPolicy=b,this.updateMsg={data:"Compact Lease: "+b.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:b=>{this.logger.error(b),this.updateMsg={error:this.commonService.extractErrorMessage(b,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?Wt.ul.find(b=>b.id===this.fundingPolicy.policy)||this.policyTypes[0]:Wt.ul[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(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(O2.u),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-experimental-settings"]],decls:13,vars:3,consts:[["form","ngForm"],["plcMod","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[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"],["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,"opened","expanded"],["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,"ngModelChange","change","ngModel"],[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"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","name","policy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModelChange","step","min","max","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModelChange","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModelChange","ngModel"],["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(U,G){1&U&&(t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(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."),t.k0s()(),t.j41(5,"form",5,0)(7,"div",6),t.nrm(8,"fa-icon",7),t.j41(9,"span",8),t.EFF(10,"Features"),t.k0s()(),t.j41(11,"mat-accordion"),t.DNE(12,Sh,12,7,"mat-expansion-panel",9),t.k0s()()()),2&U&&(t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.Y8G("icon",G.faCode),t.R7$(4),t.Y8G("ngForOf",G.features))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.Q0,Wi.BC,Wi.cb,Wi.YS,Wi.VZ,Wi.zX,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pc.q,xe.VO,Be.wT,e2.sG,ft.Ld,Ot.N,F2.z,N2.V,ri.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})(),_l=(()=>{class O{constructor(){}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-no-service-found"]],decls:6,vars:0,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),t.EFF(5,"No Service Found!"),t.k0s()()()()())},dependencies:[$i.DJ,$i.sA,mr.RN,mr.m2],encapsulation:2})}return O})();const b1=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([g.e(193),g.e(190)]).then(g.bind(g,9190)).then(O=>O.LNDModule),canActivate:[(0,No.q_)()]},{path:"cln",loadChildren:()=>Promise.all([g.e(193),g.e(853)]).then(g.bind(g,4853)).then(O=>O.CLNModule),canActivate:[(0,No.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([g.e(193),g.e(17)]).then(g.bind(g,9017)).then(O=>O.ECLModule),canActivate:[(0,No.q_)()]},{path:"settings",component:b0,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:vi,canActivate:[(0,No.q_)()]},{path:"auth",component:Bd,canActivate:[(0,No.q_)()]},{path:"bconfig",component:Uu,canActivate:[(0,No.q_)()]}]},{path:"config",component:Z3,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:Mc,canActivate:[(0,No.q_)()]},{path:"pglayout",component:Ec,canActivate:[(0,No.q_)()]},{path:"services",component:o2,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:zc,canActivate:[(0,No.q_)()]},{path:"boltz",component:Ju,canActivate:[(0,No.q_)()]},{path:"noservice",component:_l}]},{path:"experimental",component:Th,canActivate:[(0,No.q_)()]},{path:"lnconfig",component:Bl,canActivate:[(0,No.q_)()]}]},{path:"services",component:qu,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:B0},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:gh}]},{path:"help",component:vh},{path:"login",component:_1},{path:"error",component:R2},{path:"**",component:I2.X}],Rf=En.iI.forRoot(b1,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var Of=g(9029),Ff=g(9881),Nf=g(9183),Ws=g(882),Xc=g(5911),z2=g(4109),nc=g(7358);const Yc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/lnd/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/lnd/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/lnd/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/lnd/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/lnd/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/lnd/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/lnd/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/lnd/graph",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.pCJ,link:"/lnd/messages",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:nn.cbP,link:"/lnd/channelbackup",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:nn.qFF,link:"/lnd/network",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:nn.D6w,link:"/lnd/network",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:nn.C8j,link:"/services/loop",userPersona:Wt.HW.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/cln/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/cln/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/cln/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/cln/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:nn.e4L,link:"/cln/liquidityads",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/cln/transactions",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/cln/routing",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/cln/reports",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/cln/graph",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.pCJ,link:"/cln/messages",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:nn.WKo,link:"/cln/rates",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:nn.D6w,link:"/cln/rates",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/ecl/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/ecl/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/ecl/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/ecl/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/ecl/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/ecl/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/ecl/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/ecl/graph",userPersona:Wt.HW.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}]};function Dh(O,H){if(1&O&&(t.j41(0,"mat-option",12),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.index),t.R7$(),t.Lme(" ",b.lnNode," (",b.lnImplementation,") ")}}function Ah(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-select",10),t.bIt("selectionChange",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onNodeSelectionChange(G.value))}),t.j41(1,"perfect-scrollbar"),t.DNE(2,Dh,2,3,"mat-option",11),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("value",b.selConfigNodeIndex),t.R7$(2),t.Y8G("ngForOf",b.appConfig.nodes)}}function kh(O,H){if(1&O&&(t.j41(0,"span",21),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.XpG(2);const U=t.sdS(11);t.R7$(),t.Y8G("ngTemplateOutlet","boltzIconBlock"===b.icon?U:null)}}function Lh(O,H){if(1&O&&t.nrm(0,"fa-icon",23),2&O){const b=t.XpG().$implicit;t.Y8G("icon",b.icon)}}function Vf(O,H){if(1&O&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b.icon)}}function Ih(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",15)(1,"div",16),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onChildNavClicked(G))}),t.j41(2,"div",17),t.DNE(3,kh,2,1,"span",18)(4,Lh,1,1,"fa-icon",19)(5,Vf,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()()()()}if(2&O){const b=H.$implicit;t.FS9("routerLink",b.link),t.R7$(3),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name)}}function y1(O,H){if(1&O&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function kc(O,H){if(1&O&&t.nrm(0,"fa-icon",23),2&O){const b=t.XpG().$implicit;t.Y8G("icon",b.icon)}}function Td(O,H){if(1&O&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b.icon)}}function Rh(O,H){if(1&O&&(t.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),t.DNE(3,y1,2,1,"span",28)(4,kc,1,1,"fa-icon",19)(5,Td,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"button",29)(9,"mat-icon"),t.EFF(10),t.k0s()()(),t.j41(11,"div",30),t.eu8(12,31),t.k0s()()),2&O){const b=H.$implicit,U=t.XpG(2);t.R7$(3),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name),t.R7$(),t.BMQ("aria-label","toggle "+b.name),t.R7$(2),t.JRh(U.treeControlNested.isExpanded(b)?"arrow_drop_up":"arrow_drop_down"),t.R7$(),t.AVh("tree-children-invisible",!U.treeControlNested.isExpanded(b))}}function x1(O,H){if(1&O&&(t.j41(0,"mat-tree",7,1),t.DNE(2,Ih,8,5,"mat-tree-node",13)(3,Rh,13,8,"mat-nested-tree-node",14),t.k0s()),2&O){const b=t.XpG();t.Y8G("dataSource",b.navMenus)("treeControl",b.treeControlNested),t.R7$(3),t.Y8G("matTreeNodeDefWhen",b.hasChild)}}function Oh(O,H){if(1&O&&(t.j41(0,"span",37),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function p4(O,H){if(1&O&&t.nrm(0,"fa-icon",38),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.Y8G("icon",b.icon)}}function Fh(O,H){if(1&O&&(t.j41(0,"mat-icon",39),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.R7$(),t.JRh(b.icon)}}function g4(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onShowData(G))}),t.DNE(1,Oh,2,1,"span",34)(2,p4,1,2,"fa-icon",35)(3,Fh,2,2,"mat-icon",36),t.j41(4,"span"),t.EFF(5),t.k0s()()}if(2&O){const b=H.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name)}}function B2(O,H){if(1&O&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function U2(O,H){if(1&O&&t.nrm(0,"fa-icon",38),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.Y8G("icon",b.icon)}}function Hf(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onClick(G))}),t.DNE(1,B2,2,1,"span",28)(2,U2,1,2,"fa-icon",35),t.j41(3,"span"),t.EFF(4),t.k0s()()}if(2&O){const b=H.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(2),t.JRh(b.name)}}function _4(O,H){if(1&O&&(t.j41(0,"mat-tree",7),t.DNE(1,Hf,5,3,"mat-tree-node",8),t.k0s()),2&O){const b=t.XpG();t.Y8G("dataSource",b.navMenusLogout)("treeControl",b.treeControlLogout)}}function Nh(O,H){1&O&&(t.qSk(),t.j41(0,"svg",40)(1,"g",41)(2,"g",42),t.nrm(3,"circle",43)(4,"path",44)(5,"path",45),t.k0s()()())}let v4=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.logger=b,this.commonService=U,this.sessionService=G,this.store=Oe,this.actions=It,this.rtlEffects=Lt,this.ChildNavClicked=new t.bkB,this.faEject=nn.njF,this.faEye=nn.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:nn.njF}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:nn.pS3}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=Wt.HW,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.treeControlNested=new z2.XO(oi=>oi.children),this.treeControlLogout=new z2.XO(oi=>oi.children),this.treeControlShowData=new z2.XO(oi=>oi.children),this.navMenus=new nc.Zh,this.navMenusLogout=new nc.Zh,this.navMenusShowData=new nc.Zh,this.hasChild=(oi,ci)=>!!ci.children&&ci.children.length>0,this.version=Wt.xv,Yc.LNDChildren&&200===Yc.LNDChildren[Yc.LNDChildren.length-1].id&&Yc.LNDChildren.pop(),this.navMenus.data=Yc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const b=this.sessionService.getItem("token");this.showLogout=!!b,this.flgLoading=!!b,this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr.Az).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{if(this.information=U.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 G=this.information.chains[0];this.informationChain.chain=G.chain,this.informationChain.network=G.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=U.selNode,this.selConfigNodeIndex=+(U.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(U)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{this.showLogout=!!U.token,this.flgLoading=!!U.token}),this.actions.pipe((0,dn.Q)(this.unSubs[3]),(0,vr.p)(U=>U.type===Wt.aU.LOGOUT)).subscribe(U=>{this.showLogout=!1})}onClick(b){"Logout"===b.name&&(this.store.dispatch((0,Cn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[4])).subscribe(U=>{U&&(this.showLogout=!1,this.store.dispatch((0,Cn.ri)({payload:""})))})),this.ChildNavClicked.emit(b)}onChildNavClicked(b){this.ChildNavClicked.emit(b)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let b=[];b=JSON.parse(JSON.stringify(Yc.LNDChildren)),this.navMenus.data=b?.filter(U=>U.children&&U.children.length?(U.children=U.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==G.link&&"/services/boltz"!==G.link||"/services/loop"===G.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),U.children.length>0):U.userPersona===Wt.HW.ALL||U.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){let b=[];b=JSON.parse(JSON.stringify(Yc.CLNChildren)),this.navMenus.data=b?.filter(U=>U.children&&U.children.length?(U.children=U.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/peerswap"!==G.link||"/services/peerswap"===G.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),U.children.length>0):U.userPersona===Wt.HW.ALL||U.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Yc.ECLChildren))}onShowData(b){this.store.dispatch((0,Cn.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(b){const U=this.selConfigNodeIndex;this.selConfigNodeIndex=b;const G=this.appConfig.nodes.find(Oe=>+Oe.index===b);this.store.dispatch((0,Cn.Qi)({payload:{uiMessage:Wt.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+U,currentLnNode:G||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(qa.Q),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(_r.H))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-side-navigation"]],viewQuery:function(U,G){if(1&U&&t.GBs(nc.lQ,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.tree=Oe.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},decls:12,vars:5,consts:[["boltzIconBlock",""],["tree",""],["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"],[1,"m-2","multi-node-select",3,"selectionChange","value"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink"],["tabindex","2",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",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","80","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","20","mat-icon-button","","fxLayoutAlign","end center",1,"btn-icon-small"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],[3,"click"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"icon","matTooltip",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],[1,"fa-icon-small","mr-2"],["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(U,G){1&U&&(t.j41(0,"div",2)(1,"div",3),t.DNE(2,Ah,3,2,"mat-select",4),t.nrm(3,"mat-divider",5),t.DNE(4,x1,4,3,"mat-tree",6),t.nrm(5,"mat-divider",5),t.j41(6,"mat-tree",7),t.DNE(7,g4,6,4,"mat-tree-node",8),t.k0s()(),t.j41(8,"div",9),t.DNE(9,_4,2,2,"mat-tree",6),t.k0s()(),t.DNE(10,Nh,6,0,"ng-template",null,0,t.C5r)),2&U&&(t.R7$(2),t.Y8G("ngIf",G.appConfig.nodes.length>1),t.R7$(2),t.Y8G("ngIf",null==G.selNode.settings?null:G.selNode.settings.lnServerUrl),t.R7$(2),t.Y8G("dataSource",G.navMenusShowData)("treeControl",G.treeControlShowData),t.R7$(3),t.Y8G("ngIf",G.showLogout))},dependencies:[ri.Sq,ri.bT,ri.T3,ya.aY,$i.DJ,$i.sA,$i.UI,ve.iY,Vc.An,Pc.q,nc.q1,nc.yI,nc.pO,nc.lQ,nc.d6,nc.wx,xe.VO,Be.wT,ic.oV,En.Wk,En.wQ,ft.ZF,ft.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]})}return O})();var Dd=g(9115);function b4(O,H){if(1&O&&(t.j41(0,"p",14),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faCode),t.R7$(2),t.SpI("API Version: ",null==b.information?null:b.information.api_version,"")}}function vl(O,H){if(1&O&&(t.j41(0,"p",15),t.nrm(1,"fa-icon",3),t.j41(2,"span",16),t.EFF(3,"Settings"),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faUserCog)}}function y4(O,H){if(1&O&&(t.j41(0,"p",17),t.nrm(1,"fa-icon",3),t.j41(2,"span",18),t.EFF(3,"Help"),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faQuestion)}}function zf(O,H){if(1&O){const b=t.RV6();t.j41(0,"p",19),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onClick())}),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3,"Logout"),t.k0s()()}if(2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faEject)}}let Ph=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.sessionService=U,this.store=G,this.rtlEffects=Oe,this.actions=It,this.faUserCog=nn.McB,this.faCodeBranch=nn.Xbc,this.faCode=nn.jTw,this.faCog=nn.dB,this.faQuestion=nn.EvL,this.faEject=nn.njF,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.version=Wt.xv}ngOnInit(){this.store.select(Gr.N).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{if(this.information=b,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 U=this.information.chains[0];this.informationChain.chain=U.chain,this.informationChain.network=U.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(b)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.showLogout=!!b.token,this.flgLoading=!!b.token}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(b=>b.type===Wt.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Cn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{b&&(this.showLogout=!1,this.store.dispatch((0,Cn.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(qa.Q),t.rXU(Ri.il),t.rXU(_r.H),t.rXU(lt.En))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-top-menu"]],decls:20,vars:8,consts:[["topMenu","matMenu"],[1,"top-menu",3,"overlapTrigger"],["tabindex","1","mat-menu-item","",1,"cursor-default"],[1,"fa-icon-small","mr-1",3,"icon"],["tabindex","2","mat-menu-item","","class","cursor-default",4,"ngIf"],["tabindex","3","mat-menu-item","","routerLink","/settings",4,"ngIf"],["tabindex","4","mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","","tabindex","5","fxLayoutAlign","start center",3,"click"],["fill","currentColor","version","1.1","viewBox","0 0 64 64",0,"xml","space","preserve","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"svg-donation"],["d","M62.519,17.698l-12-14c-0.659-0.768-1.786-0.923-2.628-0.362l-8.712,5.808l-16.688,4.172 c-2.485,0.622-4.537,2.412-5.487,4.791L12.21,30.09C10.206,32.512,9,35.618,9,39c0,2.974,0.939,5.73,2.527,8H5 c-2.206,0-4,1.794-4,4v6c0,2.206,1.794,4,4,4h36c2.206,0,4-1.794,4-4v-6c0-2.206-1.794-4-4-4h-6.522 c0.375-0.535,0.713-1.1,1.013-1.691l4.291-2.452l3.378-0.965c2.619-0.749,4.903-2.269,6.604-4.395 c1.39-1.736,2.317-3.813,2.682-6.006l0.412-2.472l9.48-8.532C63.145,19.76,63.225,18.523,62.519,17.698z M34.428,30.929 c-1.487-2.094-3.517-3.732-5.842-4.75L29.207,25h7.058l0.588,4.11L34.428,30.929z M31.225,33.331l-0.373,0.28 c-1.772,1.329-2.889,3.273-3.146,5.473c-0.257,2.2,0.382,4.348,1.8,6.048l0.667,0.8C28.315,47.845,25.742,49,23,49 c-5.514,0-10-4.486-10-10s4.486-10,10-10C26.299,29,29.376,30.663,31.225,33.331z M41,57H5v-6h10.826c2.101,1.261,4.55,2,7.174,2 c2.571,0,5.041-0.723,7.176-2H41V57z M49.662,26.513c-0.336,0.303-0.561,0.711-0.635,1.158L48.5,30.833 c-0.253,1.521-0.896,2.96-1.86,4.165c-1.18,1.475-2.763,2.529-4.579,3.048l-3.61,1.031c-0.155,0.044-0.303,0.106-0.443,0.187 l-5.541,3.166c-0.63-0.826-0.909-1.843-0.788-2.882c0.128-1.1,0.687-2.072,1.573-2.737l6.001-4.5 c1.169-0.877,1.767-2.32,1.56-3.766l-0.587-4.11C39.946,22.477,38.244,21,36.266,21h-7.059c-1.489,0-2.845,0.818-3.539,2.136 l-1.037,1.969C24.093,25.041,23.549,25,23,25c-1.685,0-3.294,0.314-4.791,0.862l2.509-6.271c0.476-1.189,1.501-2.084,2.743-2.395 l17.024-4.256c0.223-0.056,0.434-0.149,0.625-0.276l7.525-5.017l9.576,11.172L49.662,26.513z"],["tabindex","6","mat-menu-item","",3,"click",4,"ngIf"],["tabindex","7","mat-icon-button","",3,"matMenuTriggerFor"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-log-top"],[1,"rtl-logo-dropdown","color-white"],["tabindex","2","mat-menu-item","",1,"cursor-default"],["tabindex","3","mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["tabindex","4","mat-menu-item","","routerLink","/help"],["routerLink","/help"],["tabindex","6","mat-menu-item","",3,"click"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"mat-menu",1,0)(2,"p",2),t.nrm(3,"fa-icon",3),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.DNE(6,b4,4,2,"p",4)(7,vl,4,1,"p",5)(8,y4,4,1,"p",6),t.j41(9,"p",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onDonate())}),t.qSk(),t.j41(10,"svg",8)(11,"g"),t.nrm(12,"path",9),t.k0s()(),t.joV(),t.j41(13,"span"),t.EFF(14,"Donate"),t.k0s()(),t.DNE(15,zf,4,1,"p",10),t.k0s(),t.j41(16,"button",11),t.nrm(17,"img",12),t.j41(18,"mat-icon",13),t.EFF(19,"arrow_drop_down"),t.k0s()()}if(2&U){const Oe=t.sdS(1);t.Y8G("overlapTrigger",!1),t.R7$(3),t.Y8G("icon",G.faCodeBranch),t.R7$(2),t.SpI("Version: ",G.version,""),t.R7$(),t.Y8G("ngIf",null==G.information?null:G.information.api_version),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(7),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("matMenuTriggerFor",Oe)}},dependencies:[ri.bT,ya.aY,$i.sA,ve.iY,Vc.An,Dd.kk,Dd.fb,Dd.Cp,En.Wk],styles:[".mat-mdc-icon-button img.rtl-log-top{width:2rem;height:2rem}.mat-icon.material-icons.mat-icon-no-color.rtl-logo-dropdown{height:2rem}\n"],encapsulation:2})}return O})();const Bf=["sideNavigation"],x4=["sideNavContent"],Vh=(O,H)=>[O,H];function G2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",15),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.sideNavToggle())}),t.j41(1,"mat-icon",16),t.EFF(2,"menu"),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("matTooltip",b.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",b.smallScreen)}}function j2(O,H){1&O&&(t.qSk(),t.nrm(0,"path",21))}function Hh(O,H){1&O&&(t.qSk(),t.nrm(0,"path",22))}function C4(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",17),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.flgSidenavPinned=!G.flgSidenavPinned)}),t.qSk(),t.j41(1,"svg",18),t.DNE(2,j2,1,0,"path",19)(3,Hh,1,0,"path",20),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("matTooltip",b.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),t.R7$(2),t.Y8G("ngIf",!b.flgSidenavPinned),t.R7$(),t.Y8G("ngIf",b.flgSidenavPinned)}}function Kc(O,H){if(1&O&&(t.j41(0,"span",23),t.EFF(1),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.JRh(b.information.alias?"RTL - "+b.information.alias:"RTL")}}function Uf(O,H){if(1&O&&(t.j41(0,"span",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.JRh(b.information.alias?"Ride The Lightning - "+b.information.alias:"Ride The Lightning")}}function zh(O,H){1&O&&(t.j41(0,"div",25),t.nrm(1,"mat-spinner",26),t.j41(2,"h4"),t.EFF(3,"Loading RTL..."),t.k0s()())}let Gf=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi,ci,Ui){this.logger=b,this.commonService=U,this.store=G,this.actions=Oe,this.userIdle=It,this.router=Lt,this.sessionService=oi,this.breakpointObserver=ci,this.renderer=Ui,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 Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.router.events.subscribe(b=>{b instanceof En.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([oa.Rp.XSmall,oa.Rp.TabletPortrait,oa.Rp.Small,oa.Rp.Medium,oa.Rp.Large,oa.Rp.XLarge]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{b.breakpoints[oa.Rp.XSmall]?(this.commonService.setScreenSize(Wt.f7.XS),this.smallScreen=!0):b.breakpoints[oa.Rp.TabletPortrait]?(this.commonService.setScreenSize(Wt.f7.SM),this.smallScreen=!0):b.breakpoints[oa.Rp.Small]||b.breakpoints[oa.Rp.Medium]?(this.commonService.setScreenSize(Wt.f7.MD),this.smallScreen=!1):b.breakpoints[oa.Rp.Large]?(this.commonService.setScreenSize(Wt.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(Wt.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Cn.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=b}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[2])).subscribe(b=>{this.appConfig=b}),this.store.select(Gr.N).pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{this.information=b,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,dn.Q)(this.unSubs[4]),(0,vr.p)(b=>b.type===Wt.aU.FETCH_APPLICATION_SETTINGS||b.type===Wt.aU.LOGIN||b.type===Wt.aU.LOGOUT)).subscribe(b=>{b.type===Wt.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(+b.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,Cn.iD)({payload:{password:on(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),b.type===Wt.aU.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)),b.type===Wt.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,dn.Q)(this.unSubs[5])).subscribe(b=>{this.logger.info("Counting Down: "+(11-b))}),this.userIdle.onTimeout().pipe((0,dn.Q)(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,Cn.Jh)()),this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Cn.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const b=window.location.href;return b.includes("access-key=")?b.substring(b.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(b){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(b){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+b)}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(Vs),t.rXU(En.Ix),t.rXU(qa.Q),t.rXU(oa.QP),t.rXU(t.sFG))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-app"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Bf,5),t.GBs(x4,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sideNavigation=Oe.first),t.mGM(Oe=t.lsd())&&(G.sideNavContent=Oe.first)}},decls:22,vars:15,consts:[["sideNavigation",""],["sideNavContent",""],["outlet","outlet"],["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"bg-primary","rtl-top-toolbar"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],["class","font-weight-500",4,"ngIf"],["class","font-size-120 font-weight-500",4,"ngIf"],[3,"backdropClick"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip","matTooltipDisabled"],[1,"color-white"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip"],["width","20","height","20","viewBox","0 0 24 24",1,"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,"font-weight-500"],[1,"font-size-120","font-weight-500"],[1,"rtl-spinner"],["color","accent"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",3),t.nI1(1,"lowercase"),t.nI1(2,"lowercase"),t.j41(3,"mat-toolbar",4)(4,"div"),t.DNE(5,G2,3,2,"button",5)(6,C4,4,3,"button",6),t.k0s(),t.j41(7,"div"),t.DNE(8,Kc,2,1,"span",7)(9,Uf,2,1,"span",8),t.k0s(),t.j41(10,"div"),t.nrm(11,"rtl-top-menu"),t.k0s()(),t.j41(12,"mat-sidenav-container",9),t.bIt("backdropClick",function(){return t.eBV(Oe),t.Njj(G.backdropClicked())}),t.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),t.bIt("ChildNavClicked",function(Lt){return t.eBV(Oe),t.Njj(G.onNavigationClicked(Lt))}),t.k0s()(),t.j41(16,"mat-sidenav-content",12,1)(18,"div",13),t.nrm(19,"router-outlet",null,2),t.k0s()()(),t.DNE(21,zh,4,0,"div",14),t.k0s()}2&U&&(t.Y8G("ngClass",t.l_i(12,Vh,t.bMT(1,8,G.selNode.settings.themeColor),t.bMT(2,10,G.selNode.settings.themeMode))),t.R7$(5),t.Y8G("ngIf",G.flgLoggedIn),t.R7$(),t.Y8G("ngIf",!G.smallScreen&&G.flgLoggedIn),t.R7$(2),t.Y8G("ngIf",G.smallScreen),t.R7$(),t.Y8G("ngIf",!G.smallScreen),t.R7$(4),t.Y8G("opened",G.flgSideNavOpened&&G.flgLoggedIn)("mode",G.flgSidenavPinned&&!G.smallScreen?"side":"over"),t.R7$(8),t.Y8G("ngIf",!G.selNode.settings.themeColor))},dependencies:[ri.YU,ri.bT,$i.DJ,$i.sA,$i.UI,ds.PW,ve.iY,Vc.An,Nf.LG,Ws.LG,Ws.US,Ws.El,Xc.KQ,ic.oV,ft.Ld,v4,Ph,En.n3,ri.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[Ff.E]}})}return O})(),C1=(()=>{class O{constructor(b){this.sessionService=b}intercept(b,U){if(this.sessionService.getItem("token")){const G=b.clone({headers:b.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return U.handle(G)}return U.handle(b)}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(qa.Q))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();var w4=g(7879),M4=g(9579),E4=g(283),Bh=g(3017);const Uh={userPersona:Wt.HW.OPERATOR,themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1,logLevel:"ERROR",lnServerUrl:"",swapServerUrl:"",boltzServerUrl:"",currencyUnit:"USD",blockExplorerUrl:"https://mempool.space"},jf={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},Gh={apiURL:"",apisCallStatus:{Login:{status:Wt.wn.UN_INITIATED},IsAuthorized:{status:Wt.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:Uh,authentication:jf,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",allowPasswordUpdate:!0,nodes:[{settings:Uh,authentication:jf}]},nodeData:{}},Ad=(0,Ri.vy)(Gh,(0,Ri.on)(Cn.Gd,(O,{payload:H})=>{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Cn.Tn,(O,{payload:H})=>({...Gh,apisCallStatus:O.apisCallStatus,appConfig:O.appConfig,selNode:H})),(0,Ri.on)(Cn.Np,(O,{payload:H})=>({...O,selNode:H})),(0,Ri.on)(Cn.Fl,(O,{payload:H})=>({...O,nodeData:H})),(0,Ri.on)(Cn.IK,(O,{payload:H})=>({...O,appConfig:H}))),jh={apisCallStatus:{FetchPageSettings:{status:Wt.wn.UN_INITIATED},FetchInfo:{status:Wt.wn.UN_INITIATED},FetchFees:{status:Wt.wn.UN_INITIATED},FetchPeers:{status:Wt.wn.UN_INITIATED},FetchClosedChannels:{status:Wt.wn.UN_INITIATED},FetchPendingChannels:{status:Wt.wn.UN_INITIATED},FetchAllChannels:{status:Wt.wn.UN_INITIATED},FetchBalanceBlockchain:{status:Wt.wn.UN_INITIATED},FetchInvoices:{status:Wt.wn.UN_INITIATED},FetchPayments:{status:Wt.wn.UN_INITIATED},FetchForwardingHistory:{status:Wt.wn.UN_INITIATED},FetchUTXOs:{status:Wt.wn.UN_INITIATED},FetchTransactions:{status:Wt.wn.UN_INITIATED},FetchLightningTransactions:{status:Wt.wn.UN_INITIATED},FetchNetwork:{status:Wt.wn.UN_INITIATED}},pageSettings:Wt.ZC,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 Wh=!1,Xh=!1;const Wf=(0,Ri.vy)(jh,(0,Ri.on)(Pa.e8,(O,{payload:H})=>{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Pa.p1,O=>({...jh})),(0,Ri.on)(Pa.x1,(O,{payload:H})=>({...O,information:H})),(0,Ri.on)(Pa.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(Pa.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.pub_key===H.pubkey);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(Pa.Jx,(O,{payload:H})=>{const b=O.listInvoices;return b.invoices?.unshift(H),{...O,listInvoices:b}}),(0,Ri.on)(Pa.Dq,(O,{payload:H})=>{const b=O.listInvoices;return b.invoices=b.invoices?.map(U=>U.payment_request===H.payment_request?H:U),{...O,listInvoices:b}}),(0,Ri.on)(Pa._$,(O,{payload:H})=>{const b=O.listPayments;return b.payments=b.payments?.map(U=>U.payment_hash===H.payment_hash?H:U),{...O,listPayments:b}}),(0,Ri.on)(Pa.Uo,(O,{payload:H})=>({...O,fees:H})),(0,Ri.on)(Pa.z2,(O,{payload:H})=>({...O,closedChannels:H})),(0,Ri.on)(Pa.cU,(O,{payload:H})=>({...O,pendingChannels:H.pendingChannels,pendingChannelsSummary:H.pendingChannelsSummary})),(0,Ri.on)(Pa.dv,(O,{payload:H})=>{let b=0,U=0,G=0,Oe=0,It=0,Lt=0;return H&&H.forEach(oi=>{oi.local_balance||(oi.local_balance=0),!0===oi.active?(It+=+oi.local_balance,G+=1,oi.local_balance?b=+b+ +oi.local_balance:oi.local_balance=0,oi.remote_balance?U=+U+ +oi.remote_balance:oi.remote_balance=0):(Lt+=+oi.local_balance,Oe+=1)}),{...O,channels:H,channelsSummary:{active:{num_channels:G,capacity:It},inactive:{num_channels:Oe,capacity:Lt}},lightningBalance:{local:b,remote:U}}}),(0,Ri.on)(Pa.cR,(O,{payload:H})=>{const b=[...O.channels],U=O.channels.findIndex(G=>G.channel_point===H.channelPoint);return U>-1&&b.splice(U,1),{...O,channels:b}}),(0,Ri.on)(Pa.DI,(O,{payload:H})=>({...O,blockchainBalance:H})),(0,Ri.on)(Pa.J9,(O,{payload:H})=>({...O,networkInfo:H})),(0,Ri.on)(Pa.$6,(O,{payload:H})=>(H.total_invoices||(H.total_invoices=O.listInvoices.total_invoices),{...O,listInvoices:H})),(0,Ri.on)(Pa.As,(O,{payload:H})=>{if(Wh=!0,H.length&&Xh){const b=[...O.utxos];return b.forEach(U=>{const G=H.find(Oe=>Oe.tx_hash===U.outpoint?.txid_str);U.label=G&&G.label?G.label:""}),{...O,utxos:b,transactions:H}}return{...O,transactions:H}}),(0,Ri.on)(Pa.O8,(O,{payload:H})=>{if(Xh=!0,H.length&&Wh){const b=[...O.transactions];H.forEach(U=>{const G=b.find(Oe=>Oe.tx_hash===U.outpoint?.txid_str);U.label=G&&G.label?G.label:""})}return{...O,utxos:H}}),(0,Ri.on)(Pa.Uj,(O,{payload:H})=>{const b={listInvoicesAll:O.allLightningTransactions.listInvoicesAll,listPaymentsAll:H};return{...O,listPayments:H,allLightningTransactions:b}}),(0,Ri.on)(Pa.b1,(O,{payload:H})=>{const b={listInvoicesAll:H.listInvoicesAll,listPaymentsAll:O.listPayments};return{...O,allLightningTransactions:b}}),(0,Ri.on)(Pa.kv,(O,{payload:H})=>{const b=[...O.channels,...O.closedChannels];let U=H.forwarding_events?JSON.parse(JSON.stringify(H)):{};return U.forwarding_events&&(U=Yh(U,b)),{...O,forwardingHistory:U}}),(0,Ri.on)(Pa.NS,(O,{payload:H})=>{const b=[];return Wt.ZC.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),Yh=(O,H)=>(O.forwarding_events.forEach(b=>{if(H&&H.length>0)for(let U=0;U{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(xa.gf,O=>({...Xf})),(0,Ri.on)(xa.x1,(O,{payload:H})=>({...O,information:H,fees:{feeCollected:H.fees_collected_msat}})),(0,Ri.on)(xa.C2,(O,{payload:H})=>H.perkb?{...O,feeRatesPerKB:H}:H.perkw?{...O,feeRatesPerKW:H}:{...O}),(0,Ri.on)(xa.EM,(O,{payload:H})=>({...O,utxos:H.utxos||[],balance:H.balance,localRemoteBalance:H.localRemoteBalance})),(0,Ri.on)(xa.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(xa.We,(O,{payload:H})=>({...O,peers:[...O.peers,H]})),(0,Ri.on)(xa.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.id===H.id);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(xa.dv,(O,{payload:H})=>({...O,activeChannels:H.activeChannels,pendingChannels:H.pendingChannels,inactiveChannels:H.inactiveChannels})),(0,Ri.on)(xa.cR,(O,{payload:H})=>{const b=[...O.peers];return b.forEach(U=>{U.id===H.id&&(U.connected=!1,delete U.netaddr)}),{...O,peers:b}}),(0,Ri.on)(xa.Uj,(O,{payload:H})=>({...O,payments:H})),(0,Ri.on)(xa.kv,(O,{payload:H})=>{const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels],U=Yf(H.listForwards,b);switch(H.listForwards=U,H.status){case Wt.xk.SETTLED:const G=O.fees;return G.totalTxCount=H.totalForwards||0,{...O,fees:G,forwardingHistory:H};case Wt.xk.FAILED:return{...O,failedForwardingHistory:H};case Wt.xk.LOCAL_FAILED:return{...O,localFailedForwardingHistory:H};default:return{...O}}}),(0,Ri.on)(xa.Jx,(O,{payload:H})=>{const b=O.invoices;return b.invoices?.unshift(H),{...O,invoices:b}}),(0,Ri.on)(xa.$6,(O,{payload:H})=>({...O,invoices:H})),(0,Ri.on)(xa.Dq,(O,{payload:H})=>{const b=O.invoices;return b.invoices=b.invoices?.map(U=>(U.label===H.label&&(U.amount_received_msat=H.msat,U.payment_preimage=H.preimage,U.status="paid"),U)),{...O,invoices:b}}),(0,Ri.on)(xa.qw,(O,{payload:H})=>({...O,offers:H})),(0,Ri.on)(xa.kQ,(O,{payload:H})=>{const b=O.offers;return b?.unshift(H),{...O,offers:b}}),(0,Ri.on)(xa.Gz,(O,{payload:H})=>{const b=[...O.offers],U=O.offers.findIndex(G=>G.offer_id===H.offer.offer_id);return U>-1&&b.splice(U,1,H.offer),{...O,offers:b}}),(0,Ri.on)(xa.Qv,(O,{payload:H})=>({...O,offersBookmarks:H})),(0,Ri.on)(xa.Db,(O,{payload:H})=>{const b=[...O.offersBookmarks],U=b.findIndex(G=>G.bolt12===H.bolt12);if(U<0)b?.unshift(H);else{const G={...b[U]};G.title=H.title,G.amountMSat=H.amountMSat,G.lastUpdatedAt=H.lastUpdatedAt,G.description=H.description,G.issuer=H.issuer,b.splice(U,1,G)}return{...O,offersBookmarks:b}}),(0,Ri.on)(xa.NU,(O,{payload:H})=>{const b=[...O.offersBookmarks],U=O.offersBookmarks.findIndex(G=>G.bolt12===H.bolt12);return U>-1&&b.splice(U,1),{...O,offersBookmarks:b}}),(0,Ri.on)(xa.NS,(O,{payload:H})=>{const b=[];return Wt.mu.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),Yf=(O,H)=>(O&&O.length>0?O.forEach((b,U)=>{if(H&&H.length>0)for(let G=0;G{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Ca.Hh,O=>({...Kf})),(0,Ri.on)(Ca.x1,(O,{payload:H})=>({...O,information:H})),(0,Ri.on)(Ca.Uo,(O,{payload:H})=>({...O,fees:H})),(0,Ri.on)(Ca.Tp,(O,{payload:H})=>({...O,activeChannels:H})),(0,Ri.on)(Ca.cU,(O,{payload:H})=>({...O,pendingChannels:H})),(0,Ri.on)(Ca.I6,(O,{payload:H})=>({...O,inactiveChannels:H})),(0,Ri.on)(Ca.ZE,(O,{payload:H})=>({...O,channelsStatus:H})),(0,Ri.on)(Ca.Xx,(O,{payload:H})=>({...O,onchainBalance:H})),(0,Ri.on)(Ca.N8,(O,{payload:H})=>({...O,lightningBalance:H})),(0,Ri.on)(Ca.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(Ca.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.nodeId===H.nodeId);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(Ca.cR,(O,{payload:H})=>{const b=[...O.activeChannels],U=O.activeChannels.findIndex(G=>G.channelId===H.channelId);return U>-1&&b.splice(U,1),{...O,activeChannels:b}}),(0,Ri.on)(Ca.Uj,(O,{payload:H})=>{if(H&&H.sent){const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels];H.sent?.map(U=>{const G=O.peers.find(Oe=>Oe.nodeId===U.recipientNodeId);return U.recipientNodeAlias=G?G.alias:U.recipientNodeId,U.parts&&U.parts?.map(Oe=>{const It=b.find(Lt=>Lt.channelId===Oe.toChannelId);return Oe.toChannelAlias=It?It.alias:Oe.toChannelId,U.parts}),H.sent})}if(H&&H.relayed){const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels];H.relayed.forEach(U=>{U=w1(U,b)})}return{...O,payments:H}}),(0,Ri.on)(Ca.As,(O,{payload:H})=>({...O,transactions:H})),(0,Ri.on)(Ca.Jx,(O,{payload:H})=>{const b=O.invoices;return b?.unshift(H),{...O,invoices:b}}),(0,Ri.on)(Ca.$6,(O,{payload:H})=>({...O,invoices:H})),(0,Ri.on)(Ca.Dq,(O,{payload:H})=>{let b=O.invoices;return b=b?.map(U=>{if(U.paymentHash===H.paymentHash){if(H.hasOwnProperty("type")){const G=JSON.parse(JSON.stringify(U));return G.amountSettled=H.parts&&H.parts.length&&H.parts.length>0&&H.parts[0].amount?(H.parts[0].amount||0)/1e3:0,G.receivedAt=H.parts&&H.parts.length&&H.parts.length>0&&H.parts[0].timestamp?Math.round((H.parts[0].timestamp||0)/1e3):0,G.status="received",G}return H}return U}),{...O,invoices:b}}),(0,Ri.on)(Ca.gZ,(O,{payload:H})=>{let b=O.pendingChannels;return b=b?.map(U=>(U.channelId===H.channelId&&U.nodeId===H.remoteNodeId&&(H.currentState=H.currentState?.replace(/_/g," "),U.state=H.currentState),U)),{...O,pendingChannels:b}}),(0,Ri.on)(Ca.yn,(O,{payload:H})=>{const b=O.payments,U=w1(H,[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels]);b.relayed?.unshift(U);const G=(H.amountIn||0)-(H.amountOut||0),Oe={localBalance:O.lightningBalance.localBalance+G,remoteBalance:O.lightningBalance.remoteBalance-G},It=O.channelsStatus;It.active&&(It.active.capacity=(O.channelsStatus?.active?.capacity||0)+G);const Lt={daily_fee:(O.fees.daily_fee||0)+G,daily_txs:(O.fees.daily_txs||0)+1,weekly_fee:(O.fees.weekly_fee||0)+G,weekly_txs:(O.fees.weekly_txs||0)+1,monthly_fee:(O.fees.monthly_fee||0)+G,monthly_txs:(O.fees.monthly_txs||0)+1},oi=O.activeChannels;let ci=!1,Ui=!1;for(const Ti of oi){if(Ti.channelId===H.fromChannelId){ci=!0;const un=(Ti.toLocal||0)+(Ti.toRemote||0);Ti.toLocal=(Ti.toLocal||0)+U.amountIn,Ti.toRemote=(Ti.toRemote||0)-U.amountIn,Ti.balancedness=0===un?1:+(1-Math.abs((Ti.toLocal-Ti.toRemote)/un)).toFixed(3)}if(Ti.channelId===H.toChannelId){Ui=!0;const un=(Ti.toLocal||0)+(Ti.toRemote||0);Ti.toLocal=(Ti.toLocal||0)-U.amountOut,Ti.toRemote=(Ti.toRemote||0)+U.amountOut,Ti.balancedness=0===un?1:+(1-Math.abs((Ti.toLocal-Ti.toRemote)/un)).toFixed(3)}if(Ui&&ci)break}return{...O,payments:b,lightningBalance:Oe,channelStatus:It,fees:Lt,activeChannels:oi}}),(0,Ri.on)(Ca.NS,(O,{payload:H})=>{const b=[];return Wt.X8.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),w1=(O,H)=>{if("payment-relayed"===O.type)if(H&&H.length>0)for(let b=0;b0)for(let G=0;G{H[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=H[G].alias?H[G].alias:Oe.channelId,Oe.shortChannelId=H[G].shortChannelId?H[G].shortChannelId:"")}),O.outgoing?.forEach(Oe=>{H[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=H[G].alias?H[G].alias:Oe.channelId,Oe.shortChannelId=H[G].shortChannelId?H[G].shortChannelId:"")}),G===H.length-1&&(O.incoming&&O.incoming.length&&O.incoming.length>0&&!O.incoming[0].channelAlias&&O.incoming?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}),O.outgoing&&O.outgoing.length&&O.outgoing.length>0&&!O.outgoing[0].channelAlias&&O.outgoing?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}));else O.incoming?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""}),O.outgoing?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""});const b=O.incoming?.reduce((G,Oe)=>G+Oe.amount,0)||0;O.amountIn=Math.round(b/1e3),O.fromChannelId=O.incoming&&O.incoming.length?O.incoming[0].channelId:"",O.fromChannelAlias=O.incoming&&O.incoming.length?O.incoming[0].channelAlias:"",O.fromShortChannelId=O.incoming&&O.incoming.length?O.incoming[0].shortChannelId:"";const U=O.outgoing?.reduce((G,Oe)=>G+Oe.amount,0)||0;O.amountOut=Math.round(U/1e3),O.toChannelId=O.outgoing&&O.outgoing.length?O.outgoing[0].channelId:"",O.toChannelAlias=O.outgoing&&O.outgoing.length?O.outgoing[0].channelAlias:"",O.toShortChannelId=O.outgoing&&O.outgoing.length?O.outgoing[0].shortChannelId:""}return O};let Kh=!1;(0,t.naY)()&&(Kh=!0);let D4=(()=>{class O{static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O,bootstrap:[Gf]});static#i=this.\u0275inj=t.G2t({providers:[Ts({idle:Wt.bz-10,timeout:10,ping:12e3}),{provide:Ms.a7,useClass:C1,multi:!0},qa.Q,O2.u,w4.I,tf.Q,Ia.h,fd],imports:[Fr,Of.G,Rf,oa.RH,e.fM,Ri.md.forRoot({root:Ad,lnd:Wf,cln:S4,ecl:T4},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),lt.Vm.forRoot([_r.H,M4.L,E4.i,Bh.B]),Kh?Ns.instrument({connectInZone:!0}):[]]})}return O})();e.sG().bootstrapModule(D4).catch(O=>console.error(O))},426:(Qe,te)=>{"use strict";function g(X){return Object.keys(X).map(me=>X[me])}var X;Object.defineProperty(te,"__esModule",{value:!0}),(X=te.HashAlgorithms||(te.HashAlgorithms={})).SHA1="sha1",X.SHA256="sha256",X.SHA512="sha512";const e=g(te.HashAlgorithms);!function(X){X.ASCII="ascii",X.BASE64="base64",X.HEX="hex",X.LATIN1="latin1",X.UTF8="utf8"}(te.KeyEncodings||(te.KeyEncodings={}));const t=g(te.KeyEncodings);!function(X){X.HOTP="hotp",X.TOTP="totp"}(te.Strategy||(te.Strategy={}));const w=g(te.Strategy),S=()=>{throw new Error("Please provide an options.createDigest implementation.")};function l(X){return/^(\d+)$/.test(X)}function x(X,me,ce){return X.length>=me?X:`${Array(me+1).join(ce)}${X}`.slice(-1*me)}function f(X){const me=`otpauth://${X.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,ce=[];if(w.indexOf(X.type)<0)throw new Error(`Expecting options.type to be one of ${w.join(", ")}. Received ${X.type}.`);if("hotp"===X.type){if(null==X.counter||"number"!=typeof X.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');ce.push(`&counter=${X.counter}`)}return"totp"===X.type&&X.step&&ce.push(`&period=${X.step}`),X.digits&&ce.push(`&digits=${X.digits}`),X.algorithm&&ce.push(`&algorithm=${X.algorithm.toUpperCase()}`),X.issuer&&ce.push(`&issuer=${encodeURIComponent(X.issuer)}`),me.replace("{labelPrefix}",encodeURIComponent(X.issuer||X.accountName)).replace("{accountName}",encodeURIComponent(X.accountName)).replace("{secret}",X.secret).replace("{query}",ce.join(""))}class I{constructor(me={}){this._defaultOptions=Object.freeze({...me}),this._options=Object.freeze({})}create(me={}){return new I(me)}clone(me={}){const ce=this.create({...this._defaultOptions,...me});return ce.options=this._options,ce}get options(){return Object.freeze({...this._defaultOptions,...this._options})}set options(me){this._options=Object.freeze({...this._options,...me})}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function d(X){if("function"!=typeof X.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof X.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof X.digits)throw new Error("Expecting options.digits to be a number.");if(!X.algorithm||e.indexOf(X.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${e.join(", ")}. Received ${X.algorithm}.`);if(!X.encoding||t.indexOf(X.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${t.join(", ")}. Received ${X.encoding}.`)}const T=(X,me,ce)=>Buffer.from(me,ce).toString("hex");function y(){return{algorithm:te.HashAlgorithms.SHA1,createHmacKey:T,createDigest:S,digits:6,encoding:te.KeyEncodings.ASCII}}function F(X){const me={...y(),...X};return d(me),Object.freeze(me)}function R(X){return x(X.toString(16),16,"0")}function z(X,me){const ce=Buffer.from(X,"hex"),fe=15&ce[ce.length-1],mt=((127&ce[fe])<<24|(255&ce[fe+1])<<16|(255&ce[fe+2])<<8|255&ce[fe+3])%Math.pow(10,me);return x(String(mt),me,"0")}function $(X,me,ce){const fe=ce.digest||function W(X,me,ce){const fe=R(me),ke=ce.createHmacKey(ce.algorithm,X,ce.encoding);return ce.createDigest(ce.algorithm,ke,fe)}(X,me,ce);return z(fe,ce.digits)}function j(X,me,ce,fe){return!!l(X)&&X===$(me,ce,fe)}function Q(X,me,ce,fe,ke){return f({algorithm:ke.algorithm,digits:ke.digits,type:te.Strategy.HOTP,accountName:X,counter:fe,issuer:me,secret:ce})}class J extends I{create(me={}){return new J(me)}allOptions(){return F(this.options)}generate(me,ce){return $(me,ce,this.allOptions())}check(me,ce,fe){return j(me,ce,fe,this.allOptions())}verify(me){if("object"!=typeof me)throw new Error("Expecting argument 0 of verify to be an object");return this.check(me.token,me.secret,me.counter)}keyuri(me,ce,fe,ke){return Q(me,ce,fe,ke,this.allOptions())}}function ee(X){if("number"==typeof X)return[Math.abs(X),Math.abs(X)];if(Array.isArray(X)){const[me,ce]=X;if("number"==typeof me&&"number"==typeof ce)return[Math.abs(me),Math.abs(ce)]}throw new Error("Expecting options.window to be an number or [number, number].")}function ie(X){if(d(X),ee(X.window),"number"!=typeof X.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof X.step)throw new Error("Expecting options.step to be a number.")}const ge=(X,me,ce)=>{const fe=X.length,ke=Buffer.from(X,me).toString("hex");if(fe{switch(X){case te.HashAlgorithms.SHA1:return ge(me,ce,20);case te.HashAlgorithms.SHA256:return ge(me,ce,32);case te.HashAlgorithms.SHA512:return ge(me,ce,64);default:throw new Error(`Expecting algorithm to be one of ${e.join(", ")}. Received ${X}.`)}};function Me(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:S,createHmacKey:ae,digits:6,encoding:te.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function Te(X){const me={...Me(),...X};return ie(me),Object.freeze(me)}function de(X,me){return Math.floor(X/me/1e3)}function D(X,me){return $(X,de(me.epoch,me.step),me)}function n(X,me,ce,fe){const ke=[];if(0===fe)return ke;for(let mt=1;mt<=fe;mt++)ke.push(X+me*mt*ce);return ke}function c(X,me,ce){const fe=ee(ce),ke=1e3*me;return{current:X,past:n(X,-1,ke,fe[0]),future:n(X,1,ke,fe[1])}}function m(X,me,ce){return!!l(X)&&X===D(me,ce)}function h(X,me,ce,fe){let ke=null;return X.some((mt,_e)=>!!m(me,ce,{...fe,epoch:mt})&&(ke=_e+1,!0)),ke}function C(X,me,ce){if(m(X,me,ce))return 0;const fe=c(ce.epoch,ce.step,ce.window),ke=h(fe.past,X,me,ce);return null!==ke?-1*ke:h(fe.future,X,me,ce)}function k(X,me){return Math.floor(X/1e3)%me}function L(X,me){return me-k(X,me)}function _(X,me,ce,fe){return f({algorithm:fe.algorithm,digits:fe.digits,step:fe.step,type:te.Strategy.TOTP,accountName:X,issuer:me,secret:ce})}class r extends J{create(me={}){return new r(me)}allOptions(){return Te(this.options)}generate(me){return D(me,this.allOptions())}checkDelta(me,ce){return C(me,ce,this.allOptions())}check(me,ce){return"number"==typeof this.checkDelta(me,ce)}verify(me){if("object"!=typeof me)throw new Error("Expecting argument 0 of verify to be an object");return this.check(me.token,me.secret)}timeRemaining(){const me=this.allOptions();return L(me.epoch,me.step)}timeUsed(){const me=this.allOptions();return k(me.epoch,me.step)}keyuri(me,ce,fe){return _(me,ce,fe,this.allOptions())}}function v(X){if(ie(X),"function"!=typeof X.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(X.keyEncoder&&"function"!=typeof X.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function V(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:S,createHmacKey:ae,digits:6,encoding:te.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function N(X){const me={...V(),...X};return v(me),Object.freeze(me)}function ne(X,me){return me.keyEncoder(X,me.encoding)}function Ee(X,me){return me.keyDecoder(X,me.encoding)}function ze(X,me){return ne(me.createRandomBytes(X,me.encoding),me)}function qe(X,me){return D(Ee(X,me),me)}function Ke(X,me,ce){return C(X,Ee(me,ce),ce)}class se extends r{create(me={}){return new se(me)}allOptions(){return N(this.options)}generate(me){return qe(me,this.allOptions())}checkDelta(me,ce){return Ke(me,ce,this.allOptions())}encode(me){return ne(me,this.allOptions())}decode(me){return Ee(me,this.allOptions())}generateSecret(me=10){return ze(me,this.allOptions())}}te.Authenticator=se,te.HASH_ALGORITHMS=e,te.HOTP=J,te.KEY_ENCODINGS=t,te.OTP=I,te.STRATEGY=w,te.TOTP=r,te.authenticatorCheckWithWindow=Ke,te.authenticatorDecoder=Ee,te.authenticatorDefaultOptions=V,te.authenticatorEncoder=ne,te.authenticatorGenerateSecret=ze,te.authenticatorOptionValidator=v,te.authenticatorOptions=N,te.authenticatorToken=qe,te.createDigestPlaceholder=S,te.hotpCheck=j,te.hotpCounter=R,te.hotpCreateHmacKey=T,te.hotpDefaultOptions=y,te.hotpDigestToToken=z,te.hotpKeyuri=Q,te.hotpOptions=F,te.hotpOptionsValidator=d,te.hotpToken=$,te.isTokenValid=l,te.keyuri=f,te.objectValues=g,te.padStart=x,te.totpCheck=m,te.totpCheckByEpoch=h,te.totpCheckWithWindow=C,te.totpCounter=de,te.totpCreateHmacKey=ae,te.totpDefaultOptions=Me,te.totpEpochAvailable=c,te.totpKeyuri=_,te.totpOptions=Te,te.totpOptionsValidator=ie,te.totpPadSecret=ge,te.totpTimeRemaining=L,te.totpTimeUsed=k,te.totpToken=D},7840:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(1426));te.createDigest=(l,x,f)=>t.createHmac(l,Buffer.from(x,"hex")).update(Buffer.from(f,"hex")).digest().toString("hex"),te.createRandomBytes=(l,x)=>t.randomBytes(l).toString(x)},5526:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(7851));te.keyDecoder=(l,x)=>t.decode(l).toString(x),te.keyEncoder=(l,x)=>t.encode(Buffer.from(l,x).toString("ascii")).toString().replace(/=/g,"")},4478:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(7840),t=g(5526),w=g(426);const S=new w.HOTP({createDigest:e.createDigest}),l=new w.TOTP({createDigest:e.createDigest}),x=new w.Authenticator({createDigest:e.createDigest,createRandomBytes:e.createRandomBytes,keyDecoder:t.keyDecoder,keyEncoder:t.keyEncoder});te.authenticator=x,te.hotp=S,te.totp=l},1990:(Qe,te,g)=>{var e=te;e.bignum=g(6867),e.define=g(6626).define,e.base=g(5066),e.constants=g(7740),e.decoders=g(1558),e.encoders=g(2714)},6626:(Qe,te,g)=>{var e=g(1990),t=g(1993);function S(l,x){this.name=l,this.body=x,this.decoders={},this.encoders={}}te.define=function(x,f){return new S(x,f)},S.prototype._createNamed=function(x){var f;try{f=g(8326).runInThisContext("(function "+this.name+"(entity) {\n this._initNamed(entity);\n})")}catch{f=function(d){this._initNamed(d)}}return t(f,x),f.prototype._initNamed=function(d){x.call(this,d)},new f(this)},S.prototype._getDecoder=function(x){return this.decoders.hasOwnProperty(x=x||"der")||(this.decoders[x]=this._createNamed(e.decoders[x])),this.decoders[x]},S.prototype.decode=function(x,f,I){return this._getDecoder(f).decode(x,I)},S.prototype._getEncoder=function(x){return this.encoders.hasOwnProperty(x=x||"der")||(this.encoders[x]=this._createNamed(e.encoders[x])),this.encoders[x]},S.prototype.encode=function(x,f,I){return this._getEncoder(f).encode(x,I)}},7290:(Qe,te,g)=>{var e=g(1993),t=g(5066).Reporter,w=g(3838).Buffer;function S(x,f){t.call(this,f),w.isBuffer(x)?(this.base=x,this.offset=0,this.length=x.length):this.error("Input not Buffer")}function l(x,f){if(Array.isArray(x))this.length=0,this.value=x.map(function(I){return I instanceof l||(I=new l(I,f)),this.length+=I.length,I},this);else if("number"==typeof x){if(!(0<=x&&x<=255))return f.error("non-byte EncoderBuffer value");this.value=x,this.length=1}else if("string"==typeof x)this.value=x,this.length=w.byteLength(x);else{if(!w.isBuffer(x))return f.error("Unsupported type: "+typeof x);this.value=x,this.length=x.length}}e(S,t),te.t=S,S.prototype.save=function(){return{offset:this.offset,reporter:t.prototype.save.call(this)}},S.prototype.restore=function(f){var I=new S(this.base);return I.offset=f.offset,I.length=this.offset,this.offset=f.offset,t.prototype.restore.call(this,f.reporter),I},S.prototype.isEmpty=function(){return this.offset===this.length},S.prototype.readUInt8=function(f){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(f||"DecoderBuffer overrun")},S.prototype.skip=function(f,I){if(!(this.offset+f<=this.length))return this.error(I||"DecoderBuffer overrun");var d=new S(this.base);return d._reporterState=this._reporterState,d.offset=this.offset,d.length=this.offset+f,this.offset+=f,d},S.prototype.raw=function(f){return this.base.slice(f?f.offset:this.offset,this.length)},te.d=l,l.prototype.join=function(f,I){return f||(f=new w(this.length)),I||(I=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(d){d.join(f,I),I+=d.length}):("number"==typeof this.value?f[I]=this.value:"string"==typeof this.value?f.write(this.value,I):w.isBuffer(this.value)&&this.value.copy(f,I),I+=this.length)),f}},5066:(Qe,te,g)=>{var e=te;e.Reporter=g(5697).a,e.DecoderBuffer=g(7290).t,e.EncoderBuffer=g(7290).d,e.Node=g(4320)},4320:(Qe,te,g)=>{var e=g(5066).Reporter,t=g(5066).EncoderBuffer,w=g(5066).DecoderBuffer,S=g(9210),l=["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"],x=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(l);function I(T,y){var F={};this._baseState=F,F.enc=T,F.parent=y||null,F.children=null,F.tag=null,F.args=null,F.reverseArgs=null,F.choice=null,F.optional=!1,F.any=!1,F.obj=!1,F.use=null,F.useDecoder=null,F.key=null,F.default=null,F.explicit=null,F.implicit=null,F.contains=null,F.parent||(F.children=[],this._wrap())}Qe.exports=I;var d=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];I.prototype.clone=function(){var y=this._baseState,F={};d.forEach(function(z){F[z]=y[z]});var R=new this.constructor(F.parent);return R._baseState=F,R},I.prototype._wrap=function(){var y=this._baseState;x.forEach(function(F){this[F]=function(){var z=new this.constructor(this);return y.children.push(z),z[F].apply(z,arguments)}},this)},I.prototype._init=function(y){var F=this._baseState;S(null===F.parent),y.call(this),F.children=F.children.filter(function(R){return R._baseState.parent===this},this),S.equal(F.children.length,1,"Root node can have only one child")},I.prototype._useArgs=function(y){var F=this._baseState,R=y.filter(function(z){return z instanceof this.constructor},this);y=y.filter(function(z){return!(z instanceof this.constructor)},this),0!==R.length&&(S(null===F.children),F.children=R,R.forEach(function(z){z._baseState.parent=this},this)),0!==y.length&&(S(null===F.args),F.args=y,F.reverseArgs=y.map(function(z){if("object"!=typeof z||z.constructor!==Object)return z;var W={};return Object.keys(z).forEach(function($){$==(0|$)&&($|=0),W[z[$]]=$}),W}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(T){I.prototype[T]=function(){throw new Error(T+" not implemented for encoding: "+this._baseState.enc)}}),l.forEach(function(T){I.prototype[T]=function(){var F=this._baseState,R=Array.prototype.slice.call(arguments);return S(null===F.tag),F.tag=T,this._useArgs(R),this}}),I.prototype.use=function(y){S(y);var F=this._baseState;return S(null===F.use),F.use=y,this},I.prototype.optional=function(){return this._baseState.optional=!0,this},I.prototype.def=function(y){var F=this._baseState;return S(null===F.default),F.default=y,F.optional=!0,this},I.prototype.explicit=function(y){var F=this._baseState;return S(null===F.explicit&&null===F.implicit),F.explicit=y,this},I.prototype.implicit=function(y){var F=this._baseState;return S(null===F.explicit&&null===F.implicit),F.implicit=y,this},I.prototype.obj=function(){var y=this._baseState,F=Array.prototype.slice.call(arguments);return y.obj=!0,0!==F.length&&this._useArgs(F),this},I.prototype.key=function(y){var F=this._baseState;return S(null===F.key),F.key=y,this},I.prototype.any=function(){return this._baseState.any=!0,this},I.prototype.choice=function(y){var F=this._baseState;return S(null===F.choice),F.choice=y,this._useArgs(Object.keys(y).map(function(R){return y[R]})),this},I.prototype.contains=function(y){var F=this._baseState;return S(null===F.use),F.contains=y,this},I.prototype._decode=function(y,F){var R=this._baseState;if(null===R.parent)return y.wrapResult(R.children[0]._decode(y,F));var J,z=R.default,W=!0,$=null;if(null!==R.key&&($=y.enterKey(R.key)),R.optional){var j=null;if(null!==R.explicit?j=R.explicit:null!==R.implicit?j=R.implicit:null!==R.tag&&(j=R.tag),null!==j||R.any){if(W=this._peekTag(y,j,R.any),y.isError(W))return W}else{var Q=y.save();try{null===R.choice?this._decodeGeneric(R.tag,y,F):this._decodeChoice(y,F),W=!0}catch{W=!1}y.restore(Q)}}if(R.obj&&W&&(J=y.enterObject()),W){if(null!==R.explicit){var ee=this._decodeTag(y,R.explicit);if(y.isError(ee))return ee;y=ee}var ie=y.offset;if(null===R.use&&null===R.choice){R.any&&(Q=y.save());var ge=this._decodeTag(y,null!==R.implicit?R.implicit:R.tag,R.any);if(y.isError(ge))return ge;R.any?z=y.raw(Q):y=ge}if(F&&F.track&&null!==R.tag&&F.track(y.path(),ie,y.length,"tagged"),F&&F.track&&null!==R.tag&&F.track(y.path(),y.offset,y.length,"content"),R.any||(z=null===R.choice?this._decodeGeneric(R.tag,y,F):this._decodeChoice(y,F)),y.isError(z))return z;if(!R.any&&null===R.choice&&null!==R.children&&R.children.forEach(function(Te){Te._decode(y,F)}),R.contains&&("octstr"===R.tag||"bitstr"===R.tag)){var ae=new w(z);z=this._getUse(R.contains,y._reporterState.obj)._decode(ae,F)}}return R.obj&&W&&(z=y.leaveObject(J)),null===R.key||null===z&&!0!==W?null!==$&&y.exitKey($):y.leaveKey($,R.key,z),z},I.prototype._decodeGeneric=function(y,F,R){var z=this._baseState;return"seq"===y||"set"===y?null:"seqof"===y||"setof"===y?this._decodeList(F,y,z.args[0],R):/str$/.test(y)?this._decodeStr(F,y,R):"objid"===y&&z.args?this._decodeObjid(F,z.args[0],z.args[1],R):"objid"===y?this._decodeObjid(F,null,null,R):"gentime"===y||"utctime"===y?this._decodeTime(F,y,R):"null_"===y?this._decodeNull(F,R):"bool"===y?this._decodeBool(F,R):"objDesc"===y?this._decodeStr(F,y,R):"int"===y||"enum"===y?this._decodeInt(F,z.args&&z.args[0],R):null!==z.use?this._getUse(z.use,F._reporterState.obj)._decode(F,R):F.error("unknown tag: "+y)},I.prototype._getUse=function(y,F){var R=this._baseState;return R.useDecoder=this._use(y,F),S(null===R.useDecoder._baseState.parent),R.useDecoder=R.useDecoder._baseState.children[0],R.implicit!==R.useDecoder._baseState.implicit&&(R.useDecoder=R.useDecoder.clone(),R.useDecoder._baseState.implicit=R.implicit),R.useDecoder},I.prototype._decodeChoice=function(y,F){var R=this._baseState,z=null,W=!1;return Object.keys(R.choice).some(function($){var j=y.save(),Q=R.choice[$];try{var J=Q._decode(y,F);if(y.isError(J))return!1;z={type:$,value:J},W=!0}catch{return y.restore(j),!1}return!0},this),W?z:y.error("Choice not matched")},I.prototype._createEncoderBuffer=function(y){return new t(y,this.reporter)},I.prototype._encode=function(y,F,R){var z=this._baseState;if(null===z.default||z.default!==y){var W=this._encodeValue(y,F,R);if(void 0!==W&&!this._skipDefault(W,F,R))return W}},I.prototype._encodeValue=function(y,F,R){var z=this._baseState;if(null===z.parent)return z.children[0]._encode(y,F||new e);var Q=null;if(this.reporter=F,z.optional&&void 0===y){if(null===z.default)return;y=z.default}var W=null,$=!1;if(z.any)Q=this._createEncoderBuffer(y);else if(z.choice)Q=this._encodeChoice(y,F);else if(z.contains)W=this._getUse(z.contains,R)._encode(y,F),$=!0;else if(z.children)W=z.children.map(function(ie){if("null_"===ie._baseState.tag)return ie._encode(null,F,y);if(null===ie._baseState.key)return F.error("Child should have a key");var ge=F.enterKey(ie._baseState.key);if("object"!=typeof y)return F.error("Child expected, but input is not object");var ae=ie._encode(y[ie._baseState.key],F,y);return F.leaveKey(ge),ae},this).filter(function(ie){return ie}),W=this._createEncoderBuffer(W);else if("seqof"===z.tag||"setof"===z.tag){if(!z.args||1!==z.args.length)return F.error("Too many args for : "+z.tag);if(!Array.isArray(y))return F.error("seqof/setof, but data is not Array");var j=this.clone();j._baseState.implicit=null,W=this._createEncoderBuffer(y.map(function(ie){return this._getUse(this._baseState.args[0],y)._encode(ie,F)},j))}else null!==z.use?Q=this._getUse(z.use,R)._encode(y,F):(W=this._encodePrimitive(z.tag,y),$=!0);if(!z.any&&null===z.choice){var J=null!==z.implicit?z.implicit:z.tag,ee=null===z.implicit?"universal":"context";null===J?null===z.use&&F.error("Tag could be omitted only for .use()"):null===z.use&&(Q=this._encodeComposite(J,$,ee,W))}return null!==z.explicit&&(Q=this._encodeComposite(z.explicit,!1,"context",Q)),Q},I.prototype._encodeChoice=function(y,F){var R=this._baseState,z=R.choice[y.type];return z||S(!1,y.type+" not found in "+JSON.stringify(Object.keys(R.choice))),z._encode(y.value,F)},I.prototype._encodePrimitive=function(y,F){var R=this._baseState;if(/str$/.test(y))return this._encodeStr(F,y);if("objid"===y&&R.args)return this._encodeObjid(F,R.reverseArgs[0],R.args[1]);if("objid"===y)return this._encodeObjid(F,null,null);if("gentime"===y||"utctime"===y)return this._encodeTime(F,y);if("null_"===y)return this._encodeNull();if("int"===y||"enum"===y)return this._encodeInt(F,R.args&&R.reverseArgs[0]);if("bool"===y)return this._encodeBool(F);if("objDesc"===y)return this._encodeStr(F,y);throw new Error("Unsupported tag: "+y)},I.prototype._isNumstr=function(y){return/^[0-9 ]*$/.test(y)},I.prototype._isPrintstr=function(y){return/^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(y)}},5697:(Qe,te,g)=>{var e=g(1993);function t(S){this._reporterState={obj:null,path:[],options:S||{},errors:[]}}function w(S,l){this.path=S,this.rethrow(l)}te.a=t,t.prototype.isError=function(l){return l instanceof w},t.prototype.save=function(){var l=this._reporterState;return{obj:l.obj,pathLen:l.path.length}},t.prototype.restore=function(l){var x=this._reporterState;x.obj=l.obj,x.path=x.path.slice(0,l.pathLen)},t.prototype.enterKey=function(l){return this._reporterState.path.push(l)},t.prototype.exitKey=function(l){var x=this._reporterState;x.path=x.path.slice(0,l-1)},t.prototype.leaveKey=function(l,x,f){var I=this._reporterState;this.exitKey(l),null!==I.obj&&(I.obj[x]=f)},t.prototype.path=function(){return this._reporterState.path.join("/")},t.prototype.enterObject=function(){var l=this._reporterState,x=l.obj;return l.obj={},x},t.prototype.leaveObject=function(l){var x=this._reporterState,f=x.obj;return x.obj=l,f},t.prototype.error=function(l){var x,f=this._reporterState,I=l instanceof w;if(x=I?l:new w(f.path.map(function(d){return"["+JSON.stringify(d)+"]"}).join(""),l.message||l,l.stack),!f.options.partial)throw x;return I||f.errors.push(x),x},t.prototype.wrapResult=function(l){var x=this._reporterState;return x.options.partial?{result:this.isError(l)?null:l,errors:x.errors}:l},e(w,Error),w.prototype.rethrow=function(l){if(this.message=l+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,w),!this.stack)try{throw new Error(this.message)}catch(x){this.stack=x.stack}return this}},6283:(Qe,te,g)=>{var e=g(7740);te.tagClass={0:"universal",1:"application",2:"context",3:"private"},te.tagClassByName=e._reverse(te.tagClass),te.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"},te.tagByName=e._reverse(te.tag)},7740:(Qe,te,g)=>{var e=te;e._reverse=function(w){var S={};return Object.keys(w).forEach(function(l){(0|l)==l&&(l|=0),S[w[l]]=l}),S},e.der=g(6283)},5941:(Qe,te,g)=>{var e=g(1993),t=g(1990),w=t.base,S=t.bignum,l=t.constants.der;function x(T){this.enc="der",this.name=T.name,this.entity=T,this.tree=new f,this.tree._init(T.body)}function f(T){w.Node.call(this,"der",T)}function I(T,y){var F=T.readUInt8(y);if(T.isError(F))return F;var R=l.tagClass[F>>6],z=!(32&F);if(31&~F)F&=31;else{var W=F;for(F=0;!(128&~W);){if(W=T.readUInt8(y),T.isError(W))return W;F<<=7,F|=127&W}}return{cls:R,primitive:z,tag:F,tagStr:l.tag[F]}}function d(T,y,F){var R=T.readUInt8(F);if(T.isError(R))return R;if(!y&&128===R)return null;if(!(128&R))return R;var z=127&R;if(z>4)return T.error("length octect is too long");R=0;for(var W=0;W{var e=te;e.der=g(5941),e.pem=g(9316)},9316:(Qe,te,g)=>{var e=g(1993),t=g(3838).Buffer,w=g(5941);function S(l){w.call(this,l),this.enc="pem"}e(S,w),Qe.exports=S,S.prototype.decode=function(x,f){for(var I=x.toString().split(/[\r\n]+/g),d=f.label.toUpperCase(),T=/^-----(BEGIN|END) ([^-]+)-----$/,y=-1,F=-1,R=0;R{var e=g(1993),t=g(3838).Buffer,w=g(1990),S=w.base,l=w.constants.der;function x(T){this.enc="der",this.name=T.name,this.entity=T,this.tree=new f,this.tree._init(T.body)}function f(T){S.Node.call(this,"der",T)}function I(T){return T<10?"0"+T:T}Qe.exports=x,x.prototype.encode=function(y,F){return this.tree._encode(y,F).join()},e(f,S.Node),f.prototype._encodeComposite=function(y,F,R,z){var Q,W=function d(T,y,F,R){var z;if("seqof"===T?T="seq":"setof"===T&&(T="set"),l.tagByName.hasOwnProperty(T))z=l.tagByName[T];else{if("number"!=typeof T||(0|T)!==T)return R.error("Unknown tag: "+T);z=T}return z>=31?R.error("Multi-octet tag encoding unsupported"):(y||(z|=32),z|=l.tagClassByName[F||"universal"]<<6)}(y,F,R,this.reporter);if(z.length<128)return(Q=new t(2))[0]=W,Q[1]=z.length,this._createEncoderBuffer([Q,z]);for(var $=1,j=z.length;j>=256;j>>=8)$++;(Q=new t(2+$))[0]=W,Q[1]=128|$,j=1+$;for(var J=z.length;J>0;j--,J>>=8)Q[j]=255&J;return this._createEncoderBuffer([Q,z])},f.prototype._encodeStr=function(y,F){if("bitstr"===F)return this._createEncoderBuffer([0|y.unused,y.data]);if("bmpstr"===F){for(var R=new t(2*y.length),z=0;z=40)return this.reporter.error("Second objid identifier OOB");y.splice(0,2,40*y[0]+y[1])}var W=0;for(z=0;z=128;$>>=7)W++}var j=new t(W),Q=j.length-1;for(z=y.length-1;z>=0;z--)for(j[Q--]=127&($=y[z]);($>>=7)>0;)j[Q--]=128|127&$;return this._createEncoderBuffer(j)},f.prototype._encodeTime=function(y,F){var R,z=new Date(y);return"gentime"===F?R=[I(z.getFullYear()),I(z.getUTCMonth()+1),I(z.getUTCDate()),I(z.getUTCHours()),I(z.getUTCMinutes()),I(z.getUTCSeconds()),"Z"].join(""):"utctime"===F?R=[I(z.getFullYear()%100),I(z.getUTCMonth()+1),I(z.getUTCDate()),I(z.getUTCHours()),I(z.getUTCMinutes()),I(z.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+F+" time is not supported yet"),this._encodeStr(R,"octstr")},f.prototype._encodeNull=function(){return this._createEncoderBuffer("")},f.prototype._encodeInt=function(y,F){if("string"==typeof y){if(!F)return this.reporter.error("String int or enum given, but no values map");if(!F.hasOwnProperty(y))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(y));y=F[y]}if("number"!=typeof y&&!t.isBuffer(y)){var R=y.toArray();!y.sign&&128&R[0]&&R.unshift(0),y=new t(R)}if(t.isBuffer(y)){var z=y.length;0===y.length&&z++;var $=new t(z);return y.copy($),0===y.length&&($[0]=0),this._createEncoderBuffer($)}if(y<128)return this._createEncoderBuffer(y);if(y<256)return this._createEncoderBuffer([0,y]);z=1;for(var W=y;W>=256;W>>=8)z++;for(W=($=new Array(z)).length-1;W>=0;W--)$[W]=255&y,y>>=8;return 128&$[0]&&$.unshift(0),this._createEncoderBuffer(new t($))},f.prototype._encodeBool=function(y){return this._createEncoderBuffer(y?255:0)},f.prototype._use=function(y,F){return"function"==typeof y&&(y=y(F)),y._getEncoder("der").tree},f.prototype._skipDefault=function(y,F,R){var W,z=this._baseState;if(null===z.default)return!1;var $=y.join();if(void 0===z.defaultBuffer&&(z.defaultBuffer=this._encodeValue(z.default,F,R).join()),$.length!==z.defaultBuffer.length)return!1;for(W=0;W<$.length;W++)if($[W]!==z.defaultBuffer[W])return!1;return!0}},2714:(Qe,te,g)=>{var e=te;e.der=g(2193),e.pem=g(4816)},4816:(Qe,te,g)=>{var e=g(1993),t=g(2193);function w(S){t.call(this,S),this.enc="pem"}e(w,t),Qe.exports=w,w.prototype.encode=function(l,x){for(var I=t.prototype.encode.call(this,l).toString("base64"),d=["-----BEGIN "+x.label+"-----"],T=0;T=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3981:(Qe,te)=>{"use strict";te.byteLength=function f(R){var z=x(R),$=z[1];return 3*(z[0]+$)/4-$},te.toByteArray=function d(R){var z,ie,W=x(R),$=W[0],j=W[1],Q=new t(function I(R,z,W){return 3*(z+W)/4-W}(0,$,j)),J=0,ee=j>0?$-4:$;for(ie=0;ie>16&255,Q[J++]=z>>8&255,Q[J++]=255&z;return 2===j&&(z=e[R.charCodeAt(ie)]<<2|e[R.charCodeAt(ie+1)]>>4,Q[J++]=255&z),1===j&&(z=e[R.charCodeAt(ie)]<<10|e[R.charCodeAt(ie+1)]<<4|e[R.charCodeAt(ie+2)]>>2,Q[J++]=z>>8&255,Q[J++]=255&z),Q},te.fromByteArray=function F(R){for(var z,W=R.length,$=W%3,j=[],Q=16383,J=0,ee=W-$;Jee?ee:J+Q));return 1===$?j.push(g[(z=R[W-1])>>2]+g[z<<4&63]+"=="):2===$&&j.push(g[(z=(R[W-2]<<8)+R[W-1])>>10]+g[z>>4&63]+g[z<<2&63]+"="),j.join("")};for(var g=[],e=[],t=typeof Uint8Array<"u"?Uint8Array:Array,w="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",S=0;S<64;++S)g[S]=w[S],e[w.charCodeAt(S)]=S;function x(R){var z=R.length;if(z%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var W=R.indexOf("=");return-1===W&&(W=z),[W,W===z?0:4-W%4]}function T(R){return g[R>>18&63]+g[R>>12&63]+g[R>>6&63]+g[63&R]}function y(R,z,W){for(var j=[],Q=z;Q=48&&C<=57?C-48:C>=65&&C<=70?C-55:C>=97&&C<=102?C-87:void w(!1,"Invalid character in "+m)}function I(m,h,C){var k=f(m,C);return C-1>=h&&(k|=f(m,C-1)<<4),k}function d(m,h,C,k){for(var L=0,_=0,r=Math.min(m.length,C),v=h;v=49?V-49+10:V>=17?V-17+10:V,w(V>=0&&_0?h:C},l.min=function(h,C){return h.cmp(C)<0?h:C},l.prototype._init=function(h,C,k){if("number"==typeof h)return this._initNumber(h,C,k);if("object"==typeof h)return this._initArray(h,C,k);"hex"===C&&(C=16),w(C===(0|C)&&C>=2&&C<=36);var L=0;"-"===(h=h.toString().replace(/\s+/g,""))[0]&&(L++,this.negative=1),L=0;L-=3)this.words[_]|=(r=h[L]|h[L-1]<<8|h[L-2]<<16)<>>26-v&67108863,(v+=24)>=26&&(v-=26,_++);else if("le"===k)for(L=0,_=0;L>>26-v&67108863,(v+=24)>=26&&(v-=26,_++);return this._strip()},l.prototype._parseHex=function(h,C,k){this.length=Math.ceil((h.length-C)/6),this.words=new Array(this.length);for(var L=0;L=C;L-=2)v=I(h,C,L)<<_,this.words[r]|=67108863&v,_>=18?(_-=18,this.words[r+=1]|=v>>>26):_+=8;else for(L=(h.length-C)%2==0?C+1:C;L=18?(_-=18,this.words[r+=1]|=v>>>26):_+=8;this._strip()},l.prototype._parseBase=function(h,C,k){this.words=[0],this.length=1;for(var L=0,_=1;_<=67108863;_*=C)L++;L--,_=_/C|0;for(var r=h.length-k,v=r%L,V=Math.min(r,r-v)+k,N=0,ne=k;ne1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},typeof Symbol<"u"&&"function"==typeof Symbol.for)try{l.prototype[Symbol.for("nodejs.util.inspect.custom")]=y}catch{l.prototype.inspect=y}else l.prototype.inspect=y;function y(){return(this.red?""}var F=["","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"],R=[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],z=[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 j(m,h,C){C.negative=h.negative^m.negative;var k=m.length+h.length|0;C.length=k,k=k-1|0;var L=0|m.words[0],_=0|h.words[0],r=L*_,V=r/67108864|0;C.words[0]=67108863&r;for(var N=1;N>>26,Ee=67108863&V,ze=Math.min(N,h.length-1),qe=Math.max(0,N-m.length+1);qe<=ze;qe++)ne+=(r=(L=0|m.words[N-qe|0])*(_=0|h.words[qe])+Ee)/67108864|0,Ee=67108863&r;C.words[N]=0|Ee,V=0|ne}return 0!==V?C.words[N]=0|V:C.length--,C._strip()}l.prototype.toString=function(h,C){var k;if(C=0|C||1,16===(h=h||10)||"hex"===h){k="";for(var L=0,_=0,r=0;r>>24-L&16777215,(L+=2)>=26&&(L-=26,r--),k=0!==_||r!==this.length-1?F[6-V.length]+V+k:V+k}for(0!==_&&(k=_.toString(16)+k);k.length%C!=0;)k="0"+k;return 0!==this.negative&&(k="-"+k),k}if(h===(0|h)&&h>=2&&h<=36){var N=R[h],ne=z[h];k="";var Ee=this.clone();for(Ee.negative=0;!Ee.isZero();){var ze=Ee.modrn(ne).toString(h);k=(Ee=Ee.idivn(ne)).isZero()?ze+k:F[N-ze.length]+ze+k}for(this.isZero()&&(k="0"+k);k.length%C!=0;)k="0"+k;return 0!==this.negative&&(k="-"+k),k}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var h=this.words[0];return 2===this.length?h+=67108864*this.words[1]:3===this.length&&1===this.words[2]?h+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-h:h},l.prototype.toJSON=function(){return this.toString(16,2)},x&&(l.prototype.toBuffer=function(h,C){return this.toArrayLike(x,h,C)}),l.prototype.toArray=function(h,C){return this.toArrayLike(Array,h,C)},l.prototype.toArrayLike=function(h,C,k){this._strip();var L=this.byteLength(),_=k||Math.max(1,L);w(L<=_,"byte array longer than desired length"),w(_>0,"Requested array length <= 0");var r=function(h,C){return h.allocUnsafe?h.allocUnsafe(C):new h(C)}(h,_);return this["_toArrayLike"+("le"===C?"LE":"BE")](r,L),r},l.prototype._toArrayLikeLE=function(h,C){for(var k=0,L=0,_=0,r=0;_>8&255),k>16&255),6===r?(k>24&255),L=0,r=0):(L=v>>>24,r+=2)}if(k=0&&(h[k--]=v>>8&255),k>=0&&(h[k--]=v>>16&255),6===r?(k>=0&&(h[k--]=v>>24&255),L=0,r=0):(L=v>>>24,r+=2)}if(k>=0)for(h[k--]=L;k>=0;)h[k--]=0},l.prototype._countBits=Math.clz32?function(h){return 32-Math.clz32(h)}:function(h){var C=h,k=0;return C>=4096&&(k+=13,C>>>=13),C>=64&&(k+=7,C>>>=7),C>=8&&(k+=4,C>>>=4),C>=2&&(k+=2,C>>>=2),k+C},l.prototype._zeroBits=function(h){if(0===h)return 26;var C=h,k=0;return 8191&C||(k+=13,C>>>=13),127&C||(k+=7,C>>>=7),15&C||(k+=4,C>>>=4),3&C||(k+=2,C>>>=2),1&C||k++,k},l.prototype.bitLength=function(){var C=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+C},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var h=0,C=0;Ch.length?this.clone().ior(h):h.clone().ior(this)},l.prototype.uor=function(h){return this.length>h.length?this.clone().iuor(h):h.clone().iuor(this)},l.prototype.iuand=function(h){var C;C=this.length>h.length?h:this;for(var k=0;kh.length?this.clone().iand(h):h.clone().iand(this)},l.prototype.uand=function(h){return this.length>h.length?this.clone().iuand(h):h.clone().iuand(this)},l.prototype.iuxor=function(h){var C,k;this.length>h.length?(C=this,k=h):(C=h,k=this);for(var L=0;Lh.length?this.clone().ixor(h):h.clone().ixor(this)},l.prototype.uxor=function(h){return this.length>h.length?this.clone().iuxor(h):h.clone().iuxor(this)},l.prototype.inotn=function(h){w("number"==typeof h&&h>=0);var C=0|Math.ceil(h/26),k=h%26;this._expand(C),k>0&&C--;for(var L=0;L0&&(this.words[L]=~this.words[L]&67108863>>26-k),this._strip()},l.prototype.notn=function(h){return this.clone().inotn(h)},l.prototype.setn=function(h,C){w("number"==typeof h&&h>=0);var k=h/26|0,L=h%26;return this._expand(k+1),this.words[k]=C?this.words[k]|1<h.length?(k=this,L=h):(k=h,L=this);for(var _=0,r=0;r>>26;for(;0!==_&&r>>26;if(this.length=k.length,0!==_)this.words[this.length]=_,this.length++;else if(k!==this)for(;rh.length?this.clone().iadd(h):h.clone().iadd(this)},l.prototype.isub=function(h){if(0!==h.negative){h.negative=0;var C=this.iadd(h);return h.negative=1,C._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(h),this.negative=1,this._normSign();var L,_,k=this.cmp(h);if(0===k)return this.negative=0,this.length=1,this.words[0]=0,this;k>0?(L=this,_=h):(L=h,_=this);for(var r=0,v=0;v<_.length;v++)r=(C=(0|L.words[v])-(0|_.words[v])+r)>>26,this.words[v]=67108863&C;for(;0!==r&&v>26,this.words[v]=67108863&C;if(0===r&&v>>13,Ke=0|L[1],se=8191&Ke,X=Ke>>>13,me=0|L[2],ce=8191&me,fe=me>>>13,ke=0|L[3],mt=8191&ke,_e=ke>>>13,be=0|L[4],pe=8191&be,Ze=be>>>13,_t=0|L[5],at=8191&_t,pt=_t>>>13,Xt=0|L[6],ye=8191&Xt,ue=Xt>>>13,Ie=0|L[7],He=8191&Ie,Xe=Ie>>>13,yt=0|L[8],Ye=8191&yt,rt=yt>>>13,Yt=0|L[9],Nt=8191&Yt,Et=Yt>>>13,Vt=0|_[0],oe=8191&Vt,tt=Vt>>>13,$t=0|_[1],zt=8191&$t,Jt=$t>>>13,St=0|_[2],dt=8191&St,Ae=St>>>13,we=0|_[3],he=8191&we,q=we>>>13,Re=0|_[4],Ne=8191&Re,gt=Re>>>13,$e=0|_[5],Fe=8191&$e,Ge=$e>>>13,et=0|_[6],st=8191&et,Tt=et>>>13,mi=0|_[7],Kt=8191&mi,Pt=mi>>>13,Xi=0|_[8],di=8191&Xi,fi=Xi>>>13,vn=0|_[9],Qi=8191&vn,Li=vn>>>13;k.negative=h.negative^C.negative,k.length=19;var Zi=(v+(V=Math.imul(ze,oe))|0)+((8191&(N=(N=Math.imul(ze,tt))+Math.imul(qe,oe)|0))<<13)|0;v=((ne=Math.imul(qe,tt))+(N>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,V=Math.imul(se,oe),N=(N=Math.imul(se,tt))+Math.imul(X,oe)|0,ne=Math.imul(X,tt);var Qt=(v+(V=V+Math.imul(ze,zt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Jt)|0)+(N>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,V=Math.imul(ce,oe),N=(N=Math.imul(ce,tt))+Math.imul(fe,oe)|0,ne=Math.imul(fe,tt),V=V+Math.imul(se,zt)|0,N=(N=N+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,ne=ne+Math.imul(X,Jt)|0;var Mt=(v+(V=V+Math.imul(ze,dt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Ae)|0)+(N>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,V=Math.imul(mt,oe),N=(N=Math.imul(mt,tt))+Math.imul(_e,oe)|0,ne=Math.imul(_e,tt),V=V+Math.imul(ce,zt)|0,N=(N=N+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,ne=ne+Math.imul(fe,Jt)|0,V=V+Math.imul(se,dt)|0,N=(N=N+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,ne=ne+Math.imul(X,Ae)|0;var it=(v+(V=V+Math.imul(ze,he)|0)|0)+((8191&(N=(N=N+Math.imul(ze,q)|0)+Math.imul(qe,he)|0))<<13)|0;v=((ne=ne+Math.imul(qe,q)|0)+(N>>>13)|0)+(it>>>26)|0,it&=67108863,V=Math.imul(pe,oe),N=(N=Math.imul(pe,tt))+Math.imul(Ze,oe)|0,ne=Math.imul(Ze,tt),V=V+Math.imul(mt,zt)|0,N=(N=N+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,ne=ne+Math.imul(_e,Jt)|0,V=V+Math.imul(ce,dt)|0,N=(N=N+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,ne=ne+Math.imul(fe,Ae)|0,V=V+Math.imul(se,he)|0,N=(N=N+Math.imul(se,q)|0)+Math.imul(X,he)|0,ne=ne+Math.imul(X,q)|0;var ct=(v+(V=V+Math.imul(ze,Ne)|0)|0)+((8191&(N=(N=N+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0))<<13)|0;v=((ne=ne+Math.imul(qe,gt)|0)+(N>>>13)|0)+(ct>>>26)|0,ct&=67108863,V=Math.imul(at,oe),N=(N=Math.imul(at,tt))+Math.imul(pt,oe)|0,ne=Math.imul(pt,tt),V=V+Math.imul(pe,zt)|0,N=(N=N+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,ne=ne+Math.imul(Ze,Jt)|0,V=V+Math.imul(mt,dt)|0,N=(N=N+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,ne=ne+Math.imul(_e,Ae)|0,V=V+Math.imul(ce,he)|0,N=(N=N+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,ne=ne+Math.imul(fe,q)|0,V=V+Math.imul(se,Ne)|0,N=(N=N+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,ne=ne+Math.imul(X,gt)|0;var wt=(v+(V=V+Math.imul(ze,Fe)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Ge)|0)+(N>>>13)|0)+(wt>>>26)|0,wt&=67108863,V=Math.imul(ye,oe),N=(N=Math.imul(ye,tt))+Math.imul(ue,oe)|0,ne=Math.imul(ue,tt),V=V+Math.imul(at,zt)|0,N=(N=N+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,ne=ne+Math.imul(pt,Jt)|0,V=V+Math.imul(pe,dt)|0,N=(N=N+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,ne=ne+Math.imul(Ze,Ae)|0,V=V+Math.imul(mt,he)|0,N=(N=N+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,ne=ne+Math.imul(_e,q)|0,V=V+Math.imul(ce,Ne)|0,N=(N=N+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,ne=ne+Math.imul(fe,gt)|0,V=V+Math.imul(se,Fe)|0,N=(N=N+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,ne=ne+Math.imul(X,Ge)|0;var Ut=(v+(V=V+Math.imul(ze,st)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Tt)|0)+(N>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,V=Math.imul(He,oe),N=(N=Math.imul(He,tt))+Math.imul(Xe,oe)|0,ne=Math.imul(Xe,tt),V=V+Math.imul(ye,zt)|0,N=(N=N+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,ne=ne+Math.imul(ue,Jt)|0,V=V+Math.imul(at,dt)|0,N=(N=N+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,ne=ne+Math.imul(pt,Ae)|0,V=V+Math.imul(pe,he)|0,N=(N=N+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,ne=ne+Math.imul(Ze,q)|0,V=V+Math.imul(mt,Ne)|0,N=(N=N+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,ne=ne+Math.imul(_e,gt)|0,V=V+Math.imul(ce,Fe)|0,N=(N=N+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,ne=ne+Math.imul(fe,Ge)|0,V=V+Math.imul(se,st)|0,N=(N=N+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,ne=ne+Math.imul(X,Tt)|0;var xi=(v+(V=V+Math.imul(ze,Kt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Pt)|0)+(N>>>13)|0)+(xi>>>26)|0,xi&=67108863,V=Math.imul(Ye,oe),N=(N=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,ne=Math.imul(rt,tt),V=V+Math.imul(He,zt)|0,N=(N=N+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,ne=ne+Math.imul(Xe,Jt)|0,V=V+Math.imul(ye,dt)|0,N=(N=N+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,ne=ne+Math.imul(ue,Ae)|0,V=V+Math.imul(at,he)|0,N=(N=N+Math.imul(at,q)|0)+Math.imul(pt,he)|0,ne=ne+Math.imul(pt,q)|0,V=V+Math.imul(pe,Ne)|0,N=(N=N+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,ne=ne+Math.imul(Ze,gt)|0,V=V+Math.imul(mt,Fe)|0,N=(N=N+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,ne=ne+Math.imul(_e,Ge)|0,V=V+Math.imul(ce,st)|0,N=(N=N+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,ne=ne+Math.imul(fe,Tt)|0,V=V+Math.imul(se,Kt)|0,N=(N=N+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,ne=ne+Math.imul(X,Pt)|0;var Si=(v+(V=V+Math.imul(ze,di)|0)|0)+((8191&(N=(N=N+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;v=((ne=ne+Math.imul(qe,fi)|0)+(N>>>13)|0)+(Si>>>26)|0,Si&=67108863,V=Math.imul(Nt,oe),N=(N=Math.imul(Nt,tt))+Math.imul(Et,oe)|0,ne=Math.imul(Et,tt),V=V+Math.imul(Ye,zt)|0,N=(N=N+Math.imul(Ye,Jt)|0)+Math.imul(rt,zt)|0,ne=ne+Math.imul(rt,Jt)|0,V=V+Math.imul(He,dt)|0,N=(N=N+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,ne=ne+Math.imul(Xe,Ae)|0,V=V+Math.imul(ye,he)|0,N=(N=N+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,ne=ne+Math.imul(ue,q)|0,V=V+Math.imul(at,Ne)|0,N=(N=N+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,ne=ne+Math.imul(pt,gt)|0,V=V+Math.imul(pe,Fe)|0,N=(N=N+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,ne=ne+Math.imul(Ze,Ge)|0,V=V+Math.imul(mt,st)|0,N=(N=N+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,ne=ne+Math.imul(_e,Tt)|0,V=V+Math.imul(ce,Kt)|0,N=(N=N+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,ne=ne+Math.imul(fe,Pt)|0,V=V+Math.imul(se,di)|0,N=(N=N+Math.imul(se,fi)|0)+Math.imul(X,di)|0,ne=ne+Math.imul(X,fi)|0;var zi=(v+(V=V+Math.imul(ze,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Li)|0)+Math.imul(qe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Li)|0)+(N>>>13)|0)+(zi>>>26)|0,zi&=67108863,V=Math.imul(Nt,zt),N=(N=Math.imul(Nt,Jt))+Math.imul(Et,zt)|0,ne=Math.imul(Et,Jt),V=V+Math.imul(Ye,dt)|0,N=(N=N+Math.imul(Ye,Ae)|0)+Math.imul(rt,dt)|0,ne=ne+Math.imul(rt,Ae)|0,V=V+Math.imul(He,he)|0,N=(N=N+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,ne=ne+Math.imul(Xe,q)|0,V=V+Math.imul(ye,Ne)|0,N=(N=N+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,ne=ne+Math.imul(ue,gt)|0,V=V+Math.imul(at,Fe)|0,N=(N=N+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,ne=ne+Math.imul(pt,Ge)|0,V=V+Math.imul(pe,st)|0,N=(N=N+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,ne=ne+Math.imul(Ze,Tt)|0,V=V+Math.imul(mt,Kt)|0,N=(N=N+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,ne=ne+Math.imul(_e,Pt)|0,V=V+Math.imul(ce,di)|0,N=(N=N+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0,ne=ne+Math.imul(fe,fi)|0;var en=(v+(V=V+Math.imul(se,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(se,Li)|0)+Math.imul(X,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(X,Li)|0)+(N>>>13)|0)+(en>>>26)|0,en&=67108863,V=Math.imul(Nt,dt),N=(N=Math.imul(Nt,Ae))+Math.imul(Et,dt)|0,ne=Math.imul(Et,Ae),V=V+Math.imul(Ye,he)|0,N=(N=N+Math.imul(Ye,q)|0)+Math.imul(rt,he)|0,ne=ne+Math.imul(rt,q)|0,V=V+Math.imul(He,Ne)|0,N=(N=N+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,ne=ne+Math.imul(Xe,gt)|0,V=V+Math.imul(ye,Fe)|0,N=(N=N+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,ne=ne+Math.imul(ue,Ge)|0,V=V+Math.imul(at,st)|0,N=(N=N+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,ne=ne+Math.imul(pt,Tt)|0,V=V+Math.imul(pe,Kt)|0,N=(N=N+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,ne=ne+Math.imul(Ze,Pt)|0,V=V+Math.imul(mt,di)|0,N=(N=N+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0,ne=ne+Math.imul(_e,fi)|0;var Ni=(v+(V=V+Math.imul(ce,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ce,Li)|0)+Math.imul(fe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(fe,Li)|0)+(N>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,V=Math.imul(Nt,he),N=(N=Math.imul(Nt,q))+Math.imul(Et,he)|0,ne=Math.imul(Et,q),V=V+Math.imul(Ye,Ne)|0,N=(N=N+Math.imul(Ye,gt)|0)+Math.imul(rt,Ne)|0,ne=ne+Math.imul(rt,gt)|0,V=V+Math.imul(He,Fe)|0,N=(N=N+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,ne=ne+Math.imul(Xe,Ge)|0,V=V+Math.imul(ye,st)|0,N=(N=N+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,ne=ne+Math.imul(ue,Tt)|0,V=V+Math.imul(at,Kt)|0,N=(N=N+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,ne=ne+Math.imul(pt,Pt)|0,V=V+Math.imul(pe,di)|0,N=(N=N+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0,ne=ne+Math.imul(Ze,fi)|0;var fn=(v+(V=V+Math.imul(mt,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(mt,Li)|0)+Math.imul(_e,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(_e,Li)|0)+(N>>>13)|0)+(fn>>>26)|0,fn&=67108863,V=Math.imul(Nt,Ne),N=(N=Math.imul(Nt,gt))+Math.imul(Et,Ne)|0,ne=Math.imul(Et,gt),V=V+Math.imul(Ye,Fe)|0,N=(N=N+Math.imul(Ye,Ge)|0)+Math.imul(rt,Fe)|0,ne=ne+Math.imul(rt,Ge)|0,V=V+Math.imul(He,st)|0,N=(N=N+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,ne=ne+Math.imul(Xe,Tt)|0,V=V+Math.imul(ye,Kt)|0,N=(N=N+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,ne=ne+Math.imul(ue,Pt)|0,V=V+Math.imul(at,di)|0,N=(N=N+Math.imul(at,fi)|0)+Math.imul(pt,di)|0,ne=ne+Math.imul(pt,fi)|0;var Zt=(v+(V=V+Math.imul(pe,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(pe,Li)|0)+Math.imul(Ze,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(Ze,Li)|0)+(N>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,V=Math.imul(Nt,Fe),N=(N=Math.imul(Nt,Ge))+Math.imul(Et,Fe)|0,ne=Math.imul(Et,Ge),V=V+Math.imul(Ye,st)|0,N=(N=N+Math.imul(Ye,Tt)|0)+Math.imul(rt,st)|0,ne=ne+Math.imul(rt,Tt)|0,V=V+Math.imul(He,Kt)|0,N=(N=N+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,ne=ne+Math.imul(Xe,Pt)|0,V=V+Math.imul(ye,di)|0,N=(N=N+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0,ne=ne+Math.imul(ue,fi)|0;var bt=(v+(V=V+Math.imul(at,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(at,Li)|0)+Math.imul(pt,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(pt,Li)|0)+(N>>>13)|0)+(bt>>>26)|0,bt&=67108863,V=Math.imul(Nt,st),N=(N=Math.imul(Nt,Tt))+Math.imul(Et,st)|0,ne=Math.imul(Et,Tt),V=V+Math.imul(Ye,Kt)|0,N=(N=N+Math.imul(Ye,Pt)|0)+Math.imul(rt,Kt)|0,ne=ne+Math.imul(rt,Pt)|0,V=V+Math.imul(He,di)|0,N=(N=N+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0,ne=ne+Math.imul(Xe,fi)|0;var re=(v+(V=V+Math.imul(ye,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ye,Li)|0)+Math.imul(ue,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(ue,Li)|0)+(N>>>13)|0)+(re>>>26)|0,re&=67108863,V=Math.imul(Nt,Kt),N=(N=Math.imul(Nt,Pt))+Math.imul(Et,Kt)|0,ne=Math.imul(Et,Pt),V=V+Math.imul(Ye,di)|0,N=(N=N+Math.imul(Ye,fi)|0)+Math.imul(rt,di)|0,ne=ne+Math.imul(rt,fi)|0;var je=(v+(V=V+Math.imul(He,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(He,Li)|0)+Math.imul(Xe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(Xe,Li)|0)+(N>>>13)|0)+(je>>>26)|0,je&=67108863,V=Math.imul(Nt,di),N=(N=Math.imul(Nt,fi))+Math.imul(Et,di)|0,ne=Math.imul(Et,fi);var Ce=(v+(V=V+Math.imul(Ye,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(Ye,Li)|0)+Math.imul(rt,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(rt,Li)|0)+(N>>>13)|0)+(Ce>>>26)|0,Ce&=67108863;var ot=(v+(V=Math.imul(Nt,Qi))|0)+((8191&(N=(N=Math.imul(Nt,Li))+Math.imul(Et,Qi)|0))<<13)|0;return v=((ne=Math.imul(Et,Li))+(N>>>13)|0)+(ot>>>26)|0,ot&=67108863,r[0]=Zi,r[1]=Qt,r[2]=Mt,r[3]=it,r[4]=ct,r[5]=wt,r[6]=Ut,r[7]=xi,r[8]=Si,r[9]=zi,r[10]=en,r[11]=Ni,r[12]=fn,r[13]=Zt,r[14]=bt,r[15]=re,r[16]=je,r[17]=Ce,r[18]=ot,0!==v&&(r[19]=v,k.length++),k};function J(m,h,C){C.negative=h.negative^m.negative,C.length=m.length+h.length;for(var k=0,L=0,_=0;_>>26)|0)>>>26,r&=67108863}C.words[_]=v,k=r,r=L}return 0!==k?C.words[_]=k:C.length--,C._strip()}function ee(m,h,C){return J(m,h,C)}function ie(m,h){this.x=m,this.y=h}Math.imul||(Q=j),l.prototype.mulTo=function(h,C){var L=this.length+h.length;return 10===this.length&&10===h.length?Q(this,h,C):L<63?j(this,h,C):L<1024?J(this,h,C):ee(this,h,C)},ie.prototype.makeRBT=function(h){for(var C=new Array(h),k=l.prototype._countBits(h)-1,L=0;L>=1;return L},ie.prototype.permute=function(h,C,k,L,_,r){for(var v=0;v>>=1)_++;return 1<<_+1+L},ie.prototype.conjugate=function(h,C,k){if(!(k<=1))for(var L=0;L>>=13),_>>>=13;for(r=2*C;r>=26,k+=_/67108864|0,k+=r>>>26,this.words[L]=67108863&r}return 0!==k&&(this.words[L]=k,this.length++),C?this.ineg():this},l.prototype.muln=function(h){return this.clone().imuln(h)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(h){var C=function $(m){for(var h=new Array(m.bitLength()),C=0;C>>C%26&1;return h}(h);if(0===C.length)return new l(1);for(var k=this,L=0;L=0);var _,C=h%26,k=(h-C)/26,L=67108863>>>26-C<<26-C;if(0!==C){var r=0;for(_=0;_>>26-C}r&&(this.words[_]=r,this.length++)}if(0!==k){for(_=this.length-1;_>=0;_--)this.words[_+k]=this.words[_];for(_=0;_=0),L=C?(C-C%26)/26:0;var _=h%26,r=Math.min((h-_)/26,this.length),v=67108863^67108863>>>_<<_,V=k;if(L-=r,L=Math.max(0,L),V){for(var N=0;Nr)for(this.length-=r,N=0;N=0&&(0!==ne||N>=L);N--){var Ee=0|this.words[N];this.words[N]=ne<<26-_|Ee>>>_,ne=Ee&v}return V&&0!==ne&&(V.words[V.length++]=ne),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},l.prototype.ishrn=function(h,C,k){return w(0===this.negative),this.iushrn(h,C,k)},l.prototype.shln=function(h){return this.clone().ishln(h)},l.prototype.ushln=function(h){return this.clone().iushln(h)},l.prototype.shrn=function(h){return this.clone().ishrn(h)},l.prototype.ushrn=function(h){return this.clone().iushrn(h)},l.prototype.testn=function(h){w("number"==typeof h&&h>=0);var C=h%26,k=(h-C)/26;return!(this.length<=k||!(this.words[k]&1<=0);var C=h%26,k=(h-C)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=k?this:(0!==C&&k++,this.length=Math.min(k,this.length),0!==C&&(this.words[this.length-1]&=67108863^67108863>>>C<=67108864;C++)this.words[C]-=67108864,C===this.length-1?this.words[C+1]=1:this.words[C+1]++;return this.length=Math.max(this.length,C+1),this},l.prototype.isubn=function(h){if(w("number"==typeof h),w(h<67108864),h<0)return this.iaddn(-h);if(0!==this.negative)return this.negative=0,this.iaddn(h),this.negative=1,this;if(this.words[0]-=h,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var C=0;C>26)-(V/67108864|0),this.words[_+k]=67108863&r}for(;_>26,this.words[_+k]=67108863&r;if(0===v)return this._strip();for(w(-1===v),v=0,_=0;_>26,this.words[_]=67108863&r;return this.negative=1,this._strip()},l.prototype._wordDiv=function(h,C){var k,L=this.clone(),_=h,r=0|_.words[_.length-1];0!=(k=26-this._countBits(r))&&(_=_.ushln(k),L.iushln(k),r=0|_.words[_.length-1]);var N,V=L.length-_.length;if("mod"!==C){(N=new l(null)).length=V+1,N.words=new Array(N.length);for(var ne=0;ne=0;ze--){var qe=67108864*(0|L.words[_.length+ze])+(0|L.words[_.length+ze-1]);for(qe=Math.min(qe/r|0,67108863),L._ishlnsubmul(_,qe,ze);0!==L.negative;)qe--,L.negative=0,L._ishlnsubmul(_,1,ze),L.isZero()||(L.negative^=1);N&&(N.words[ze]=qe)}return N&&N._strip(),L._strip(),"div"!==C&&0!==k&&L.iushrn(k),{div:N||null,mod:L}},l.prototype.divmod=function(h,C,k){return w(!h.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===h.negative?(r=this.neg().divmod(h,C),"mod"!==C&&(L=r.div.neg()),"div"!==C&&(_=r.mod.neg(),k&&0!==_.negative&&_.iadd(h)),{div:L,mod:_}):0===this.negative&&0!==h.negative?(r=this.divmod(h.neg(),C),"mod"!==C&&(L=r.div.neg()),{div:L,mod:r.mod}):this.negative&h.negative?(r=this.neg().divmod(h.neg(),C),"div"!==C&&(_=r.mod.neg(),k&&0!==_.negative&&_.isub(h)),{div:r.div,mod:_}):h.length>this.length||this.cmp(h)<0?{div:new l(0),mod:this}:1===h.length?"div"===C?{div:this.divn(h.words[0]),mod:null}:"mod"===C?{div:null,mod:new l(this.modrn(h.words[0]))}:{div:this.divn(h.words[0]),mod:new l(this.modrn(h.words[0]))}:this._wordDiv(h,C);var L,_,r},l.prototype.div=function(h){return this.divmod(h,"div",!1).div},l.prototype.mod=function(h){return this.divmod(h,"mod",!1).mod},l.prototype.umod=function(h){return this.divmod(h,"mod",!0).mod},l.prototype.divRound=function(h){var C=this.divmod(h);if(C.mod.isZero())return C.div;var k=0!==C.div.negative?C.mod.isub(h):C.mod,L=h.ushrn(1),_=h.andln(1),r=k.cmp(L);return r<0||1===_&&0===r?C.div:0!==C.div.negative?C.div.isubn(1):C.div.iaddn(1)},l.prototype.modrn=function(h){var C=h<0;C&&(h=-h),w(h<=67108863);for(var k=(1<<26)%h,L=0,_=this.length-1;_>=0;_--)L=(k*L+(0|this.words[_]))%h;return C?-L:L},l.prototype.modn=function(h){return this.modrn(h)},l.prototype.idivn=function(h){var C=h<0;C&&(h=-h),w(h<=67108863);for(var k=0,L=this.length-1;L>=0;L--){var _=(0|this.words[L])+67108864*k;this.words[L]=_/h|0,k=_%h}return this._strip(),C?this.ineg():this},l.prototype.divn=function(h){return this.clone().idivn(h)},l.prototype.egcd=function(h){w(0===h.negative),w(!h.isZero());var C=this,k=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var L=new l(1),_=new l(0),r=new l(0),v=new l(1),V=0;C.isEven()&&k.isEven();)C.iushrn(1),k.iushrn(1),++V;for(var N=k.clone(),ne=C.clone();!C.isZero();){for(var Ee=0,ze=1;!(C.words[0]&ze)&&Ee<26;++Ee,ze<<=1);if(Ee>0)for(C.iushrn(Ee);Ee-- >0;)(L.isOdd()||_.isOdd())&&(L.iadd(N),_.isub(ne)),L.iushrn(1),_.iushrn(1);for(var qe=0,Ke=1;!(k.words[0]&Ke)&&qe<26;++qe,Ke<<=1);if(qe>0)for(k.iushrn(qe);qe-- >0;)(r.isOdd()||v.isOdd())&&(r.iadd(N),v.isub(ne)),r.iushrn(1),v.iushrn(1);C.cmp(k)>=0?(C.isub(k),L.isub(r),_.isub(v)):(k.isub(C),r.isub(L),v.isub(_))}return{a:r,b:v,gcd:k.iushln(V)}},l.prototype._invmp=function(h){w(0===h.negative),w(!h.isZero());var Ee,C=this,k=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var L=new l(1),_=new l(0),r=k.clone();C.cmpn(1)>0&&k.cmpn(1)>0;){for(var v=0,V=1;!(C.words[0]&V)&&v<26;++v,V<<=1);if(v>0)for(C.iushrn(v);v-- >0;)L.isOdd()&&L.iadd(r),L.iushrn(1);for(var N=0,ne=1;!(k.words[0]&ne)&&N<26;++N,ne<<=1);if(N>0)for(k.iushrn(N);N-- >0;)_.isOdd()&&_.iadd(r),_.iushrn(1);C.cmp(k)>=0?(C.isub(k),L.isub(_)):(k.isub(C),_.isub(L))}return(Ee=0===C.cmpn(1)?L:_).cmpn(0)<0&&Ee.iadd(h),Ee},l.prototype.gcd=function(h){if(this.isZero())return h.abs();if(h.isZero())return this.abs();var C=this.clone(),k=h.clone();C.negative=0,k.negative=0;for(var L=0;C.isEven()&&k.isEven();L++)C.iushrn(1),k.iushrn(1);for(;;){for(;C.isEven();)C.iushrn(1);for(;k.isEven();)k.iushrn(1);var _=C.cmp(k);if(_<0){var r=C;C=k,k=r}else if(0===_||0===k.cmpn(1))break;C.isub(k)}return k.iushln(L)},l.prototype.invm=function(h){return this.egcd(h).a.umod(h)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(h){return this.words[0]&h},l.prototype.bincn=function(h){w("number"==typeof h);var C=h%26,k=(h-C)/26,L=1<>>26,this.words[r]=v&=67108863}return 0!==_&&(this.words[r]=_,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(h){var k,C=h<0;if(0!==this.negative&&!C)return-1;if(0===this.negative&&C)return 1;if(this._strip(),this.length>1)k=1;else{C&&(h=-h),w(h<=67108863,"Number is too big");var L=0|this.words[0];k=L===h?0:Lh.length)return 1;if(this.length=0;k--){var L=0|this.words[k],_=0|h.words[k];if(L!==_){L<_?C=-1:L>_&&(C=1);break}}return C},l.prototype.gtn=function(h){return 1===this.cmpn(h)},l.prototype.gt=function(h){return 1===this.cmp(h)},l.prototype.gten=function(h){return this.cmpn(h)>=0},l.prototype.gte=function(h){return this.cmp(h)>=0},l.prototype.ltn=function(h){return-1===this.cmpn(h)},l.prototype.lt=function(h){return-1===this.cmp(h)},l.prototype.lten=function(h){return this.cmpn(h)<=0},l.prototype.lte=function(h){return this.cmp(h)<=0},l.prototype.eqn=function(h){return 0===this.cmpn(h)},l.prototype.eq=function(h){return 0===this.cmp(h)},l.red=function(h){return new n(h)},l.prototype.toRed=function(h){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),h.convertTo(this)._forceRed(h)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(h){return this.red=h,this},l.prototype.forceRed=function(h){return w(!this.red,"Already a number in reduction context"),this._forceRed(h)},l.prototype.redAdd=function(h){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,h)},l.prototype.redIAdd=function(h){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,h)},l.prototype.redSub=function(h){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,h)},l.prototype.redISub=function(h){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,h)},l.prototype.redShl=function(h){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,h)},l.prototype.redMul=function(h){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.mul(this,h)},l.prototype.redIMul=function(h){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.imul(this,h)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(h){return w(this.red&&!h.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,h)};var ge={k256:null,p224:null,p192:null,p25519:null};function ae(m,h){this.name=m,this.p=new l(h,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function Me(){ae.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function Te(){ae.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function de(){ae.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function D(){ae.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function n(m){if("string"==typeof m){var h=l._prime(m);this.m=h.p,this.prime=h}else w(m.gtn(1),"modulus must be greater than 1"),this.m=m,this.prime=null}function c(m){n.call(this,m),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ae.prototype._tmp=function(){var h=new l(null);return h.words=new Array(Math.ceil(this.n/13)),h},ae.prototype.ireduce=function(h){var k,C=h;do{this.split(C,this.tmp),k=(C=(C=this.imulK(C)).iadd(this.tmp)).bitLength()}while(k>this.n);var L=k0?C.isub(this.p):void 0!==C.strip?C.strip():C._strip(),C},ae.prototype.split=function(h,C){h.iushrn(this.n,0,C)},ae.prototype.imulK=function(h){return h.imul(this.k)},S(Me,ae),Me.prototype.split=function(h,C){for(var k=4194303,L=Math.min(h.length,9),_=0;_>>22,r=v}h.words[_-10]=r>>>=22,h.length-=0===r&&h.length>10?10:9},Me.prototype.imulK=function(h){h.words[h.length]=0,h.words[h.length+1]=0,h.length+=2;for(var C=0,k=0;k>>=26,h.words[k]=_,C=L}return 0!==C&&(h.words[h.length++]=C),h},l._prime=function(h){if(ge[h])return ge[h];var C;if("k256"===h)C=new Me;else if("p224"===h)C=new Te;else if("p192"===h)C=new de;else{if("p25519"!==h)throw new Error("Unknown prime "+h);C=new D}return ge[h]=C,C},n.prototype._verify1=function(h){w(0===h.negative,"red works only with positives"),w(h.red,"red works only with red numbers")},n.prototype._verify2=function(h,C){w(!(h.negative|C.negative),"red works only with positives"),w(h.red&&h.red===C.red,"red works only with red numbers")},n.prototype.imod=function(h){return this.prime?this.prime.ireduce(h)._forceRed(this):(T(h,h.umod(this.m)._forceRed(this)),h)},n.prototype.neg=function(h){return h.isZero()?h.clone():this.m.sub(h)._forceRed(this)},n.prototype.add=function(h,C){this._verify2(h,C);var k=h.add(C);return k.cmp(this.m)>=0&&k.isub(this.m),k._forceRed(this)},n.prototype.iadd=function(h,C){this._verify2(h,C);var k=h.iadd(C);return k.cmp(this.m)>=0&&k.isub(this.m),k},n.prototype.sub=function(h,C){this._verify2(h,C);var k=h.sub(C);return k.cmpn(0)<0&&k.iadd(this.m),k._forceRed(this)},n.prototype.isub=function(h,C){this._verify2(h,C);var k=h.isub(C);return k.cmpn(0)<0&&k.iadd(this.m),k},n.prototype.shl=function(h,C){return this._verify1(h),this.imod(h.ushln(C))},n.prototype.imul=function(h,C){return this._verify2(h,C),this.imod(h.imul(C))},n.prototype.mul=function(h,C){return this._verify2(h,C),this.imod(h.mul(C))},n.prototype.isqr=function(h){return this.imul(h,h.clone())},n.prototype.sqr=function(h){return this.mul(h,h)},n.prototype.sqrt=function(h){if(h.isZero())return h.clone();var C=this.m.andln(3);if(w(C%2==1),3===C){var k=this.m.add(new l(1)).iushrn(2);return this.pow(h,k)}for(var L=this.m.subn(1),_=0;!L.isZero()&&0===L.andln(1);)_++,L.iushrn(1);w(!L.isZero());var r=new l(1).toRed(this),v=r.redNeg(),V=this.m.subn(1).iushrn(1),N=this.m.bitLength();for(N=new l(2*N*N).toRed(this);0!==this.pow(N,V).cmp(v);)N.redIAdd(v);for(var ne=this.pow(N,L),Ee=this.pow(h,L.addn(1).iushrn(1)),ze=this.pow(h,L),qe=_;0!==ze.cmp(r);){for(var Ke=ze,se=0;0!==Ke.cmp(r);se++)Ke=Ke.redSqr();w(se=0;_--){for(var ne=C.words[_],Ee=N-1;Ee>=0;Ee--){var ze=ne>>Ee&1;r!==L[0]&&(r=this.sqr(r)),0!==ze||0!==v?(v<<=1,v|=ze,(4==++V||0===_&&0===Ee)&&(r=this.mul(r,L[v]),V=0,v=0)):V=0}N=26}return r},n.prototype.convertTo=function(h){var C=h.umod(this.m);return C===h?C.clone():C},n.prototype.convertFrom=function(h){var C=h.clone();return C.red=null,C},l.mont=function(h){return new c(h)},S(c,n),c.prototype.convertTo=function(h){return this.imod(h.ushln(this.shift))},c.prototype.convertFrom=function(h){var C=this.imod(h.mul(this.rinv));return C.red=null,C},c.prototype.imul=function(h,C){if(h.isZero()||C.isZero())return h.words[0]=0,h.length=1,h;var k=h.imul(C),L=k.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=k.isub(L).iushrn(this.shift),r=_;return _.cmp(this.m)>=0?r=_.isub(this.m):_.cmpn(0)<0&&(r=_.iadd(this.m)),r._forceRed(this)},c.prototype.mul=function(h,C){if(h.isZero()||C.isZero())return new l(0)._forceRed(this);var k=h.mul(C),L=k.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=k.isub(L).iushrn(this.shift),r=_;return _.cmp(this.m)>=0?r=_.isub(this.m):_.cmpn(0)<0&&(r=_.iadd(this.m)),r._forceRed(this)},c.prototype.invm=function(h){return this.imod(h._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},5294:(Qe,te,g)=>{var e;function t(S){this.rand=S}if(Qe.exports=function(l){return e||(e=new t(null)),e.generate(l)},Qe.exports.Rand=t,t.prototype.generate=function(l){return this._rand(l)},t.prototype._rand=function(l){if(this.rand.getBytes)return this.rand.getBytes(l);for(var x=new Uint8Array(l),f=0;f{var e=g(7054).Buffer;function t(I){e.isBuffer(I)||(I=e.from(I));for(var d=I.length/4|0,T=new Array(d),y=0;y>>24]^z[Q>>>16&255]^W[J>>>8&255]^$[255&ee]^d[Te++],ge=R[Q>>>24]^z[J>>>16&255]^W[ee>>>8&255]^$[255&j]^d[Te++],ae=R[J>>>24]^z[ee>>>16&255]^W[j>>>8&255]^$[255&Q]^d[Te++],Me=R[ee>>>24]^z[j>>>16&255]^W[Q>>>8&255]^$[255&J]^d[Te++],j=ie,Q=ge,J=ae,ee=Me;return ie=(y[j>>>24]<<24|y[Q>>>16&255]<<16|y[J>>>8&255]<<8|y[255&ee])^d[Te++],ge=(y[Q>>>24]<<24|y[J>>>16&255]<<16|y[ee>>>8&255]<<8|y[255&j])^d[Te++],ae=(y[J>>>24]<<24|y[ee>>>16&255]<<16|y[j>>>8&255]<<8|y[255&Q])^d[Te++],Me=(y[ee>>>24]<<24|y[j>>>16&255]<<16|y[Q>>>8&255]<<8|y[255&J])^d[Te++],[ie>>>=0,ge>>>=0,ae>>>=0,Me>>>=0]}var l=[0,1,2,4,8,16,32,64,128,27,54],x=function(){for(var I=new Array(256),d=0;d<256;d++)I[d]=d<128?d<<1:d<<1^283;for(var T=[],y=[],F=[[],[],[],[]],R=[[],[],[],[]],z=0,W=0,$=0;$<256;++$){var j=W^W<<1^W<<2^W<<3^W<<4;T[z]=j=j>>>8^255&j^99,y[j]=z;var Q=I[z],J=I[Q],ee=I[J],ie=257*I[j]^16843008*j;F[0][z]=ie<<24|ie>>>8,F[1][z]=ie<<16|ie>>>16,F[2][z]=ie<<8|ie>>>24,F[3][z]=ie,R[0][j]=(ie=16843009*ee^65537*J^257*Q^16843008*z)<<24|ie>>>8,R[1][j]=ie<<16|ie>>>16,R[2][j]=ie<<8|ie>>>24,R[3][j]=ie,0===z?z=W=1:(z=Q^I[I[I[ee^Q]]],W^=I[I[W]])}return{SBOX:T,INV_SBOX:y,SUB_MIX:F,INV_SUB_MIX:R}}();function f(I){this._key=t(I),this._reset()}f.blockSize=16,f.keySize=32,f.prototype.blockSize=f.blockSize,f.prototype.keySize=f.keySize,f.prototype._reset=function(){for(var I=this._key,d=I.length,T=d+6,y=4*(T+1),F=[],R=0;R>>24)>>>24]<<24|x.SBOX[z>>>16&255]<<16|x.SBOX[z>>>8&255]<<8|x.SBOX[255&z],z^=l[R/d|0]<<24):d>6&&R%d==4&&(z=x.SBOX[z>>>24]<<24|x.SBOX[z>>>16&255]<<16|x.SBOX[z>>>8&255]<<8|x.SBOX[255&z]),F[R]=F[R-d]^z}for(var W=[],$=0;$>>24]]^x.INV_SUB_MIX[1][x.SBOX[Q>>>16&255]]^x.INV_SUB_MIX[2][x.SBOX[Q>>>8&255]]^x.INV_SUB_MIX[3][x.SBOX[255&Q]]}this._nRounds=T,this._keySchedule=F,this._invKeySchedule=W},f.prototype.encryptBlockRaw=function(I){return S(I=t(I),this._keySchedule,x.SUB_MIX,x.SBOX,this._nRounds)},f.prototype.encryptBlock=function(I){var d=this.encryptBlockRaw(I),T=e.allocUnsafe(16);return T.writeUInt32BE(d[0],0),T.writeUInt32BE(d[1],4),T.writeUInt32BE(d[2],8),T.writeUInt32BE(d[3],12),T},f.prototype.decryptBlock=function(I){var d=(I=t(I))[1];I[1]=I[3],I[3]=d;var T=S(I,this._invKeySchedule,x.INV_SUB_MIX,x.INV_SBOX,this._nRounds),y=e.allocUnsafe(16);return y.writeUInt32BE(T[0],0),y.writeUInt32BE(T[3],4),y.writeUInt32BE(T[2],8),y.writeUInt32BE(T[1],12),y},f.prototype.scrub=function(){w(this._keySchedule),w(this._invKeySchedule),w(this._key)},Qe.exports.AES=f},9307:(Qe,te,g)=>{var e=g(2375),t=g(7054).Buffer,w=g(3247),S=g(1993),l=g(5917),x=g(3546),f=g(5725);function T(y,F,R,z){w.call(this);var W=t.alloc(4,0);this._cipher=new e.AES(F);var $=this._cipher.encryptBlock(W);this._ghash=new l($),R=function d(y,F,R){if(12===F.length)return y._finID=t.concat([F,t.from([0,0,0,1])]),t.concat([F,t.from([0,0,0,2])]);var z=new l(R),W=F.length,$=W%16;z.update(F),$&&z.update(t.alloc($=16-$,0)),z.update(t.alloc(8,0));var j=8*W,Q=t.alloc(8);Q.writeUIntBE(j,0,8),z.update(Q),y._finID=z.state;var J=t.from(y._finID);return f(J),J}(this,R,$),this._prev=t.from(R),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=z,this._alen=0,this._len=0,this._mode=y,this._authTag=null,this._called=!1}S(T,w),T.prototype._update=function(y){if(!this._called&&this._alen){var F=16-this._alen%16;F<16&&(F=t.alloc(F,0),this._ghash.update(F))}this._called=!0;var R=this._mode.encrypt(this,y);return this._ghash.update(this._decrypt?y:R),this._len+=y.length,R},T.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var y=x(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function I(y,F){var R=0;y.length!==F.length&&R++;for(var z=Math.min(y.length,F.length),W=0;W{var e=g(350),t=g(102),w=g(3219);te.createCipher=te.Cipher=e.createCipher,te.createCipheriv=te.Cipheriv=e.createCipheriv,te.createDecipher=te.Decipher=t.createDecipher,te.createDecipheriv=te.Decipheriv=t.createDecipheriv,te.listCiphers=te.getCiphers=function S(){return Object.keys(w)}},102:(Qe,te,g)=>{var e=g(9307),t=g(7054).Buffer,w=g(503),S=g(1821),l=g(3247),x=g(2375),f=g(592);function d(z,W,$){l.call(this),this._cache=new T,this._last=void 0,this._cipher=new x.AES(W),this._prev=t.from($),this._mode=z,this._autopadding=!0}function T(){this.cache=t.allocUnsafe(0)}function F(z,W,$){var j=w[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof $&&($=t.from($)),"GCM"!==j.mode&&$.length!==j.iv)throw new TypeError("invalid iv length "+$.length);if("string"==typeof W&&(W=t.from(W)),W.length!==j.key/8)throw new TypeError("invalid key length "+W.length);return"stream"===j.type?new S(j.module,W,$,!0):"auth"===j.type?new e(j.module,W,$,!0):new d(j.module,W,$)}g(1993)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var W,$,j=[];W=this._cache.get(this._autopadding);)$=this._mode.decrypt(this,W),j.push($);return t.concat(j)},d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return function y(z){var W=z[15];if(W<1||W>16)throw new Error("unable to decrypt data");for(var $=-1;++$16)return W=this.cache.slice(0,16),this.cache=this.cache.slice(16),W}else if(this.cache.length>=16)return W=this.cache.slice(0,16),this.cache=this.cache.slice(16),W;return null},T.prototype.flush=function(){if(this.cache.length)return this.cache},te.createDecipher=function R(z,W){var $=w[z.toLowerCase()];if(!$)throw new TypeError("invalid suite type");var j=f(W,!1,$.key,$.iv);return F(z,j.key,j.iv)},te.createDecipheriv=F},350:(Qe,te,g)=>{var e=g(503),t=g(9307),w=g(7054).Buffer,S=g(1821),l=g(3247),x=g(2375),f=g(592);function d(z,W,$){l.call(this),this._cache=new y,this._cipher=new x.AES(W),this._prev=w.from($),this._mode=z,this._autopadding=!0}g(1993)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var W,$,j=[];W=this._cache.get();)$=this._mode.encrypt(this,W),j.push($);return w.concat(j)};var T=w.alloc(16,16);function y(){this.cache=w.allocUnsafe(0)}function F(z,W,$){var j=e[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof W&&(W=w.from(W)),W.length!==j.key/8)throw new TypeError("invalid key length "+W.length);if("string"==typeof $&&($=w.from($)),"GCM"!==j.mode&&$.length!==j.iv)throw new TypeError("invalid iv length "+$.length);return"stream"===j.type?new S(j.module,W,$):"auth"===j.type?new t(j.module,W,$):new d(j.module,W,$)}d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return z=this._mode.encrypt(this,z),this._cipher.scrub(),z;if(!z.equals(T))throw this._cipher.scrub(),new Error("data not multiple of block length")},d.prototype.setAutoPadding=function(z){return this._autopadding=!!z,this},y.prototype.add=function(z){this.cache=w.concat([this.cache,z])},y.prototype.get=function(){if(this.cache.length>15){var z=this.cache.slice(0,16);return this.cache=this.cache.slice(16),z}return null},y.prototype.flush=function(){for(var z=16-this.cache.length,W=w.allocUnsafe(z),$=-1;++${var e=g(7054).Buffer,t=e.alloc(16,0);function S(x){var f=e.allocUnsafe(16);return f.writeUInt32BE(x[0]>>>0,0),f.writeUInt32BE(x[1]>>>0,4),f.writeUInt32BE(x[2]>>>0,8),f.writeUInt32BE(x[3]>>>0,12),f}function l(x){this.h=x,this.state=e.alloc(16,0),this.cache=e.allocUnsafe(0)}l.prototype.ghash=function(x){for(var f=-1;++f0;I--)x[I]=x[I]>>>1|(1&x[I-1])<<31;x[0]=x[0]>>>1,T&&(x[0]=x[0]^225<<24)}this.state=S(f)},l.prototype.update=function(x){this.cache=e.concat([this.cache,x]);for(var f;this.cache.length>=16;)f=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(f)},l.prototype.final=function(x,f){return this.cache.length&&this.ghash(e.concat([this.cache,t],16)),this.ghash(S([0,x,0,f])),this.state},Qe.exports=l},5725:Qe=>{Qe.exports=function te(g){for(var t,e=g.length;e--;){if(255!==(t=g.readUInt8(e))){t++,g.writeUInt8(t,e);break}g.writeUInt8(0,e)}}},4133:(Qe,te,g)=>{var e=g(3546);te.encrypt=function(t,w){var S=e(w,t._prev);return t._prev=t._cipher.encryptBlock(S),t._prev},te.decrypt=function(t,w){var S=t._prev;t._prev=w;var l=t._cipher.decryptBlock(w);return e(l,S)}},7090:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(3546);function w(S,l,x){var f=l.length,I=t(l,S._cache);return S._cache=S._cache.slice(f),S._prev=e.concat([S._prev,x?l:I]),I}te.encrypt=function(S,l,x){for(var I,f=e.allocUnsafe(0);l.length;){if(0===S._cache.length&&(S._cache=S._cipher.encryptBlock(S._prev),S._prev=e.allocUnsafe(0)),!(S._cache.length<=l.length)){f=e.concat([f,w(S,l,x)]);break}f=e.concat([f,w(S,l.slice(0,I=S._cache.length),x)]),l=l.slice(I)}return f}},1039:(Qe,te,g)=>{var e=g(7054).Buffer;function t(S,l,x){for(var y,F,I=-1,T=0;++I<8;)T+=(128&(F=S._cipher.encryptBlock(S._prev)[0]^(y=l&1<<7-I?128:0)))>>I%8,S._prev=w(S._prev,x?y:F);return T}function w(S,l){var x=S.length,f=-1,I=e.allocUnsafe(S.length);for(S=e.concat([S,e.from([l])]);++f>7;return I}te.encrypt=function(S,l,x){for(var f=l.length,I=e.allocUnsafe(f),d=-1;++d{var e=g(7054).Buffer;function t(w,S,l){var f=w._cipher.encryptBlock(w._prev)[0]^S;return w._prev=e.concat([w._prev.slice(1),e.from([l?S:f])]),f}te.encrypt=function(w,S,l){for(var x=S.length,f=e.allocUnsafe(x),I=-1;++I{var e=g(3546),t=g(7054).Buffer,w=g(5725);function S(x){var f=x._cipher.encryptBlockRaw(x._prev);return w(x._prev),f}te.encrypt=function(x,f){var I=Math.ceil(f.length/16),d=x._cache.length;x._cache=t.concat([x._cache,t.allocUnsafe(16*I)]);for(var T=0;T{te.encrypt=function(g,e){return g._cipher.encryptBlock(e)},te.decrypt=function(g,e){return g._cipher.decryptBlock(e)}},503:(Qe,te,g)=>{var e={ECB:g(7513),CBC:g(4133),CFB:g(7090),CFB8:g(2576),CFB1:g(1039),OFB:g(6854),CTR:g(336),GCM:g(336)},t=g(3219);for(var w in t)t[w].module=e[t[w].mode];Qe.exports=t},6854:(Qe,te,g)=>{var e=g(3546);function t(w){return w._prev=w._cipher.encryptBlock(w._prev),w._prev}te.encrypt=function(w,S){for(;w._cache.length{var e=g(2375),t=g(7054).Buffer,w=g(3247);function l(x,f,I,d){w.call(this),this._cipher=new e.AES(f),this._prev=t.from(I),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=d,this._mode=x}g(1993)(l,w),l.prototype._update=function(x){return this._mode.encrypt(this,x,this._decrypt)},l.prototype._final=function(){this._cipher.scrub()},Qe.exports=l},8862:(Qe,te,g)=>{var e=g(9799),t=g(3388),w=g(503),S=g(9571),l=g(592);function I(y,F,R){if(y=y.toLowerCase(),w[y])return t.createCipheriv(y,F,R);if(S[y])return new e({key:F,iv:R,mode:y});throw new TypeError("invalid suite type")}function d(y,F,R){if(y=y.toLowerCase(),w[y])return t.createDecipheriv(y,F,R);if(S[y])return new e({key:F,iv:R,mode:y,decrypt:!0});throw new TypeError("invalid suite type")}te.createCipher=te.Cipher=function x(y,F){var R,z;if(y=y.toLowerCase(),w[y])R=w[y].key,z=w[y].iv;else{if(!S[y])throw new TypeError("invalid suite type");R=8*S[y].key,z=S[y].iv}var W=l(F,!1,R,z);return I(y,W.key,W.iv)},te.createCipheriv=te.Cipheriv=I,te.createDecipher=te.Decipher=function f(y,F){var R,z;if(y=y.toLowerCase(),w[y])R=w[y].key,z=w[y].iv;else{if(!S[y])throw new TypeError("invalid suite type");R=8*S[y].key,z=S[y].iv}var W=l(F,!1,R,z);return d(y,W.key,W.iv)},te.createDecipheriv=te.Decipheriv=d,te.listCiphers=te.getCiphers=function T(){return Object.keys(S).concat(t.getCiphers())}},9799:(Qe,te,g)=>{var e=g(3247),t=g(1549),w=g(1993),S=g(7054).Buffer,l={"des-ede3-cbc":t.CBC.instantiate(t.EDE),"des-ede3":t.EDE,"des-ede-cbc":t.CBC.instantiate(t.EDE),"des-ede":t.EDE,"des-cbc":t.CBC.instantiate(t.DES),"des-ecb":t.DES};function x(f){e.call(this);var T,I=f.mode.toLowerCase(),d=l[I];T=f.decrypt?"decrypt":"encrypt";var y=f.key;S.isBuffer(y)||(y=S.from(y)),("des-ede"===I||"des-ede-cbc"===I)&&(y=S.concat([y,y.slice(0,8)]));var F=f.iv;S.isBuffer(F)||(F=S.from(F)),this._des=d.create({key:y,iv:F,type:T})}l.des=l["des-cbc"],l.des3=l["des-ede3-cbc"],Qe.exports=x,w(x,e),x.prototype._update=function(f){return S.from(this._des.update(f))},x.prototype._final=function(){return S.from(this._des.final())}},9571:(Qe,te)=>{te["des-ecb"]={key:8,iv:0},te["des-cbc"]=te.des={key:8,iv:8},te["des-ede3-cbc"]=te.des3={key:24,iv:8},te["des-ede3"]={key:24,iv:0},te["des-ede-cbc"]={key:16,iv:8},te["des-ede"]={key:16,iv:0}},4105:(Qe,te,g)=>{var e=g(917),t=g(3342);function S(x){var I,f=x.modulus.byteLength();do{I=new e(t(f))}while(I.cmp(x.modulus)>=0||!I.umod(x.prime1)||!I.umod(x.prime2));return I}function l(x,f){var I=function w(x){var f=S(x);return{blinder:f.toRed(e.mont(x.modulus)).redPow(new e(x.publicExponent)).fromRed(),unblinder:f.invm(x.modulus)}}(f),d=f.modulus.byteLength(),T=new e(x).mul(I.blinder).umod(f.modulus),y=T.toRed(e.mont(f.prime1)),F=T.toRed(e.mont(f.prime2)),R=f.coefficient,z=f.prime1,W=f.prime2,$=y.redPow(f.exponent1).fromRed(),j=F.redPow(f.exponent2).fromRed(),Q=$.isub(j).imul(R).umod(z).imul(W);return j.iadd(Q).imul(I.unblinder).umod(f.modulus).toArrayLike(Buffer,"be",d)}l.getr=S,Qe.exports=l},9560:(Qe,te,g)=>{"use strict";Qe.exports=g(2951)},9143:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7211),w=g(5942),S=g(1993),l=g(3150),x=g(4754),f=g(2951);function I(F){w.Writable.call(this);var R=f[F];if(!R)throw new Error("Unknown message digest");this._hashType=R.hash,this._hash=t(R.hash),this._tag=R.id,this._signType=R.sign}function d(F){w.Writable.call(this);var R=f[F];if(!R)throw new Error("Unknown message digest");this._hash=t(R.hash),this._tag=R.id,this._signType=R.sign}function T(F){return new I(F)}function y(F){return new d(F)}Object.keys(f).forEach(function(F){f[F].id=e.from(f[F].id,"hex"),f[F.toLowerCase()]=f[F]}),S(I,w.Writable),I.prototype._write=function(R,z,W){this._hash.update(R),W()},I.prototype.update=function(R,z){return this._hash.update("string"==typeof R?e.from(R,z):R),this},I.prototype.sign=function(R,z){this.end();var W=this._hash.digest(),$=l(W,R,this._hashType,this._signType,this._tag);return z?$.toString(z):$},S(d,w.Writable),d.prototype._write=function(R,z,W){this._hash.update(R),W()},d.prototype.update=function(R,z){return this._hash.update("string"==typeof R?e.from(R,z):R),this},d.prototype.verify=function(R,z,W){var $="string"==typeof z?e.from(z,W):z;this.end();var j=this._hash.digest();return x($,j,R,this._signType,this._tag)},Qe.exports={Sign:T,Verify:y,createSign:T,createVerify:y}},3150:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(6432),w=g(4105),S=g(518).ec,l=g(917),x=g(5667),f=g(4589);function R(Q,J,ee,ie){if((Q=e.from(Q.toArray())).length0&&ee.ishrn(ie),ee}function $(Q,J,ee){var ie,ge;do{for(ie=e.alloc(0);8*ie.length{"use strict";var e=g(7054).Buffer,t=g(917),w=g(518).ec,S=g(5667),l=g(4589);function d(T,y){if(T.cmpn(0)<=0)throw new Error("invalid sig");if(T.cmp(y)>=0)throw new Error("invalid sig")}Qe.exports=function x(T,y,F,R,z){var W=S(F);if("ec"===W.type){if("ecdsa"!==R&&"ecdsa/rsa"!==R)throw new Error("wrong public key type");return function f(T,y,F){var R=l[F.data.algorithm.curve.join(".")];if(!R)throw new Error("unknown curve "+F.data.algorithm.curve.join("."));return new w(R).verify(y,T,F.data.subjectPrivateKey.data)}(T,y,W)}if("dsa"===W.type){if("dsa"!==R)throw new Error("wrong public key type");return function I(T,y,F){var R=F.data.p,z=F.data.q,W=F.data.g,$=F.data.pub_key,j=S.signature.decode(T,"der"),Q=j.s,J=j.r;d(Q,z),d(J,z);var ee=t.mont(R),ie=Q.invm(z);return 0===W.toRed(ee).redPow(new t(y).mul(ie).mod(z)).fromRed().mul($.toRed(ee).redPow(J.mul(ie).mod(z)).fromRed()).mod(R).mod(z).cmp(J)}(T,y,W)}if("rsa"!==R&&"ecdsa/rsa"!==R)throw new Error("wrong public key type");y=e.concat([z,y]);for(var $=W.modulus.byteLength(),j=[1],Q=0;y.length+j.length+2<$;)j.push(255),Q+=1;j.push(0);for(var J=-1;++J{Qe.exports=function(g,e){for(var t=Math.min(g.length,e.length),w=new Buffer(t),S=0;S{"use strict";var e=g(3981),t=g(2020),w="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;te.Buffer=f,te.SlowBuffer=function Q(_e){return+_e!=_e&&(_e=0),f.alloc(+_e)},te.INSPECT_MAX_BYTES=50;var S=2147483647;function x(_e){if(_e>S)throw new RangeError('The value "'+_e+'" is invalid for option "size"');var be=new Uint8Array(_e);return Object.setPrototypeOf(be,f.prototype),be}function f(_e,be,pe){if("number"==typeof _e){if("string"==typeof be)throw new TypeError('The "string" argument must be of type string. Received type number');return y(_e)}return I(_e,be,pe)}function I(_e,be,pe){if("string"==typeof _e)return function F(_e,be){if(("string"!=typeof be||""===be)&&(be="utf8"),!f.isEncoding(be))throw new TypeError("Unknown encoding: "+be);var pe=0|J(_e,be),Ze=x(pe),_t=Ze.write(_e,be);return _t!==pe&&(Ze=Ze.slice(0,_t)),Ze}(_e,be);if(ArrayBuffer.isView(_e))return function z(_e){if(fe(_e,Uint8Array)){var be=new Uint8Array(_e);return W(be.buffer,be.byteOffset,be.byteLength)}return R(_e)}(_e);if(null==_e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof _e);if(fe(_e,ArrayBuffer)||_e&&fe(_e.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(fe(_e,SharedArrayBuffer)||_e&&fe(_e.buffer,SharedArrayBuffer)))return W(_e,be,pe);if("number"==typeof _e)throw new TypeError('The "value" argument must not be of type number. Received type number');var Ze=_e.valueOf&&_e.valueOf();if(null!=Ze&&Ze!==_e)return f.from(Ze,be,pe);var _t=function $(_e){if(f.isBuffer(_e)){var be=0|j(_e.length),pe=x(be);return 0===pe.length||_e.copy(pe,0,0,be),pe}return void 0!==_e.length?"number"!=typeof _e.length||ke(_e.length)?x(0):R(_e):"Buffer"===_e.type&&Array.isArray(_e.data)?R(_e.data):void 0}(_e);if(_t)return _t;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof _e[Symbol.toPrimitive])return f.from(_e[Symbol.toPrimitive]("string"),be,pe);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof _e)}function d(_e){if("number"!=typeof _e)throw new TypeError('"size" argument must be of type number');if(_e<0)throw new RangeError('The value "'+_e+'" is invalid for option "size"')}function y(_e){return d(_e),x(_e<0?0:0|j(_e))}function R(_e){for(var be=_e.length<0?0:0|j(_e.length),pe=x(be),Ze=0;Ze=S)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+S.toString(16)+" bytes");return 0|_e}function J(_e,be){if(f.isBuffer(_e))return _e.length;if(ArrayBuffer.isView(_e)||fe(_e,ArrayBuffer))return _e.byteLength;if("string"!=typeof _e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof _e);var pe=_e.length,Ze=arguments.length>2&&!0===arguments[2];if(!Ze&&0===pe)return 0;for(var _t=!1;;)switch(be){case"ascii":case"latin1":case"binary":return pe;case"utf8":case"utf-8":return Ke(_e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*pe;case"hex":return pe>>>1;case"base64":return me(_e).length;default:if(_t)return Ze?-1:Ke(_e).length;be=(""+be).toLowerCase(),_t=!0}}function ee(_e,be,pe){var Ze=!1;if((void 0===be||be<0)&&(be=0),be>this.length||((void 0===pe||pe>this.length)&&(pe=this.length),pe<=0)||(pe>>>=0)<=(be>>>=0))return"";for(_e||(_e="utf8");;)switch(_e){case"hex":return _(this,be,pe);case"utf8":case"utf-8":return m(this,be,pe);case"ascii":return k(this,be,pe);case"latin1":case"binary":return L(this,be,pe);case"base64":return c(this,be,pe);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r(this,be,pe);default:if(Ze)throw new TypeError("Unknown encoding: "+_e);_e=(_e+"").toLowerCase(),Ze=!0}}function ie(_e,be,pe){var Ze=_e[be];_e[be]=_e[pe],_e[pe]=Ze}function ge(_e,be,pe,Ze,_t){if(0===_e.length)return-1;if("string"==typeof pe?(Ze=pe,pe=0):pe>2147483647?pe=2147483647:pe<-2147483648&&(pe=-2147483648),ke(pe=+pe)&&(pe=_t?0:_e.length-1),pe<0&&(pe=_e.length+pe),pe>=_e.length){if(_t)return-1;pe=_e.length-1}else if(pe<0){if(!_t)return-1;pe=0}if("string"==typeof be&&(be=f.from(be,Ze)),f.isBuffer(be))return 0===be.length?-1:ae(_e,be,pe,Ze,_t);if("number"==typeof be)return be&=255,"function"==typeof Uint8Array.prototype.indexOf?_t?Uint8Array.prototype.indexOf.call(_e,be,pe):Uint8Array.prototype.lastIndexOf.call(_e,be,pe):ae(_e,[be],pe,Ze,_t);throw new TypeError("val must be string, number or Buffer")}function ae(_e,be,pe,Ze,_t){var ue,at=1,pt=_e.length,Xt=be.length;if(void 0!==Ze&&("ucs2"===(Ze=String(Ze).toLowerCase())||"ucs-2"===Ze||"utf16le"===Ze||"utf-16le"===Ze)){if(_e.length<2||be.length<2)return-1;at=2,pt/=2,Xt/=2,pe/=2}function ye(yt,Ye){return 1===at?yt[Ye]:yt.readUInt16BE(Ye*at)}if(_t){var Ie=-1;for(ue=pe;uept&&(pe=pt-Xt),ue=pe;ue>=0;ue--){for(var He=!0,Xe=0;Xe_t&&(Ze=_t):Ze=_t;var at=be.length;Ze>at/2&&(Ze=at/2);for(var pt=0;pt>8,at.push(pe%256),at.push(Ze);return at}(be,_e.length-pe),_e,pe,Ze)}function c(_e,be,pe){return e.fromByteArray(0===be&&pe===_e.length?_e:_e.slice(be,pe))}function m(_e,be,pe){pe=Math.min(_e.length,pe);for(var Ze=[],_t=be;_t239?4:at>223?3:at>191?2:1;if(_t+Xt<=pe)switch(Xt){case 1:at<128&&(pt=at);break;case 2:128==(192&(ye=_e[_t+1]))&&(He=(31&at)<<6|63&ye)>127&&(pt=He);break;case 3:ue=_e[_t+2],128==(192&(ye=_e[_t+1]))&&128==(192&ue)&&(He=(15&at)<<12|(63&ye)<<6|63&ue)>2047&&(He<55296||He>57343)&&(pt=He);break;case 4:ue=_e[_t+2],Ie=_e[_t+3],128==(192&(ye=_e[_t+1]))&&128==(192&ue)&&128==(192&Ie)&&(He=(15&at)<<18|(63&ye)<<12|(63&ue)<<6|63&Ie)>65535&&He<1114112&&(pt=He)}null===pt?(pt=65533,Xt=1):pt>65535&&(Ze.push((pt-=65536)>>>10&1023|55296),pt=56320|1023&pt),Ze.push(pt),_t+=Xt}return function C(_e){var be=_e.length;if(be<=h)return String.fromCharCode.apply(String,_e);for(var pe="",Ze=0;Ze_t.length?f.from(pt).copy(_t,at):Uint8Array.prototype.set.call(_t,pt,at);else{if(!f.isBuffer(pt))throw new TypeError('"list" argument must be an Array of Buffers');pt.copy(_t,at)}at+=pt.length}return _t},f.byteLength=J,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var be=this.length;if(be%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var pe=0;pepe&&(be+=" ... "),""},w&&(f.prototype[w]=f.prototype.inspect),f.prototype.compare=function(be,pe,Ze,_t,at){if(fe(be,Uint8Array)&&(be=f.from(be,be.offset,be.byteLength)),!f.isBuffer(be))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof be);if(void 0===pe&&(pe=0),void 0===Ze&&(Ze=be?be.length:0),void 0===_t&&(_t=0),void 0===at&&(at=this.length),pe<0||Ze>be.length||_t<0||at>this.length)throw new RangeError("out of range index");if(_t>=at&&pe>=Ze)return 0;if(_t>=at)return-1;if(pe>=Ze)return 1;if(this===be)return 0;for(var pt=(at>>>=0)-(_t>>>=0),Xt=(Ze>>>=0)-(pe>>>=0),ye=Math.min(pt,Xt),ue=this.slice(_t,at),Ie=be.slice(pe,Ze),He=0;He>>=0,isFinite(Ze)?(Ze>>>=0,void 0===_t&&(_t="utf8")):(_t=Ze,Ze=void 0)}var at=this.length-pe;if((void 0===Ze||Ze>at)&&(Ze=at),be.length>0&&(Ze<0||pe<0)||pe>this.length)throw new RangeError("Attempt to write outside buffer bounds");_t||(_t="utf8");for(var pt=!1;;)switch(_t){case"hex":return Me(this,be,pe,Ze);case"utf8":case"utf-8":return Te(this,be,pe,Ze);case"ascii":case"latin1":case"binary":return de(this,be,pe,Ze);case"base64":return D(this,be,pe,Ze);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,be,pe,Ze);default:if(pt)throw new TypeError("Unknown encoding: "+_t);_t=(""+_t).toLowerCase(),pt=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var h=4096;function k(_e,be,pe){var Ze="";pe=Math.min(_e.length,pe);for(var _t=be;_tZe)&&(pe=Ze);for(var _t="",at=be;atpe)throw new RangeError("Trying to access beyond buffer length")}function V(_e,be,pe,Ze,_t,at){if(!f.isBuffer(_e))throw new TypeError('"buffer" argument must be a Buffer instance');if(be>_t||be_e.length)throw new RangeError("Index out of range")}function N(_e,be,pe,Ze,_t,at){if(pe+Ze>_e.length)throw new RangeError("Index out of range");if(pe<0)throw new RangeError("Index out of range")}function ne(_e,be,pe,Ze,_t){return be=+be,pe>>>=0,_t||N(_e,0,pe,4),t.write(_e,be,pe,Ze,23,4),pe+4}function Ee(_e,be,pe,Ze,_t){return be=+be,pe>>>=0,_t||N(_e,0,pe,8),t.write(_e,be,pe,Ze,52,8),pe+8}f.prototype.slice=function(be,pe){var Ze=this.length;(be=~~be)<0?(be+=Ze)<0&&(be=0):be>Ze&&(be=Ze),(pe=void 0===pe?Ze:~~pe)<0?(pe+=Ze)<0&&(pe=0):pe>Ze&&(pe=Ze),pe>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be],at=1,pt=0;++pt>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be+--pe],at=1;pe>0&&(at*=256);)_t+=this[be+--pe]*at;return _t},f.prototype.readUint8=f.prototype.readUInt8=function(be,pe){return be>>>=0,pe||v(be,1,this.length),this[be]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(be,pe){return be>>>=0,pe||v(be,2,this.length),this[be]|this[be+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(be,pe){return be>>>=0,pe||v(be,2,this.length),this[be]<<8|this[be+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),(this[be]|this[be+1]<<8|this[be+2]<<16)+16777216*this[be+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),16777216*this[be]+(this[be+1]<<16|this[be+2]<<8|this[be+3])},f.prototype.readIntLE=function(be,pe,Ze){be>>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be],at=1,pt=0;++pt=(at*=128)&&(_t-=Math.pow(2,8*pe)),_t},f.prototype.readIntBE=function(be,pe,Ze){be>>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=pe,at=1,pt=this[be+--_t];_t>0&&(at*=256);)pt+=this[be+--_t]*at;return pt>=(at*=128)&&(pt-=Math.pow(2,8*pe)),pt},f.prototype.readInt8=function(be,pe){return be>>>=0,pe||v(be,1,this.length),128&this[be]?-1*(255-this[be]+1):this[be]},f.prototype.readInt16LE=function(be,pe){be>>>=0,pe||v(be,2,this.length);var Ze=this[be]|this[be+1]<<8;return 32768&Ze?4294901760|Ze:Ze},f.prototype.readInt16BE=function(be,pe){be>>>=0,pe||v(be,2,this.length);var Ze=this[be+1]|this[be]<<8;return 32768&Ze?4294901760|Ze:Ze},f.prototype.readInt32LE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),this[be]|this[be+1]<<8|this[be+2]<<16|this[be+3]<<24},f.prototype.readInt32BE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),this[be]<<24|this[be+1]<<16|this[be+2]<<8|this[be+3]},f.prototype.readFloatLE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),t.read(this,be,!0,23,4)},f.prototype.readFloatBE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),t.read(this,be,!1,23,4)},f.prototype.readDoubleLE=function(be,pe){return be>>>=0,pe||v(be,8,this.length),t.read(this,be,!0,52,8)},f.prototype.readDoubleBE=function(be,pe){return be>>>=0,pe||v(be,8,this.length),t.read(this,be,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(be,pe,Ze,_t){be=+be,pe>>>=0,Ze>>>=0,_t||V(this,be,pe,Ze,Math.pow(2,8*Ze)-1,0);var pt=1,Xt=0;for(this[pe]=255&be;++Xt>>=0,Ze>>>=0,_t||V(this,be,pe,Ze,Math.pow(2,8*Ze)-1,0);var pt=Ze-1,Xt=1;for(this[pe+pt]=255&be;--pt>=0&&(Xt*=256);)this[pe+pt]=be/Xt&255;return pe+Ze},f.prototype.writeUint8=f.prototype.writeUInt8=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,1,255,0),this[pe]=255&be,pe+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,65535,0),this[pe]=255&be,this[pe+1]=be>>>8,pe+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,65535,0),this[pe]=be>>>8,this[pe+1]=255&be,pe+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,4294967295,0),this[pe+3]=be>>>24,this[pe+2]=be>>>16,this[pe+1]=be>>>8,this[pe]=255&be,pe+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,4294967295,0),this[pe]=be>>>24,this[pe+1]=be>>>16,this[pe+2]=be>>>8,this[pe+3]=255&be,pe+4},f.prototype.writeIntLE=function(be,pe,Ze,_t){if(be=+be,pe>>>=0,!_t){var at=Math.pow(2,8*Ze-1);V(this,be,pe,Ze,at-1,-at)}var pt=0,Xt=1,ye=0;for(this[pe]=255&be;++pt>>=0,!_t){var at=Math.pow(2,8*Ze-1);V(this,be,pe,Ze,at-1,-at)}var pt=Ze-1,Xt=1,ye=0;for(this[pe+pt]=255&be;--pt>=0&&(Xt*=256);)be<0&&0===ye&&0!==this[pe+pt+1]&&(ye=1),this[pe+pt]=(be/Xt|0)-ye&255;return pe+Ze},f.prototype.writeInt8=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,1,127,-128),be<0&&(be=255+be+1),this[pe]=255&be,pe+1},f.prototype.writeInt16LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,32767,-32768),this[pe]=255&be,this[pe+1]=be>>>8,pe+2},f.prototype.writeInt16BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,32767,-32768),this[pe]=be>>>8,this[pe+1]=255&be,pe+2},f.prototype.writeInt32LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,2147483647,-2147483648),this[pe]=255&be,this[pe+1]=be>>>8,this[pe+2]=be>>>16,this[pe+3]=be>>>24,pe+4},f.prototype.writeInt32BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,2147483647,-2147483648),be<0&&(be=4294967295+be+1),this[pe]=be>>>24,this[pe+1]=be>>>16,this[pe+2]=be>>>8,this[pe+3]=255&be,pe+4},f.prototype.writeFloatLE=function(be,pe,Ze){return ne(this,be,pe,!0,Ze)},f.prototype.writeFloatBE=function(be,pe,Ze){return ne(this,be,pe,!1,Ze)},f.prototype.writeDoubleLE=function(be,pe,Ze){return Ee(this,be,pe,!0,Ze)},f.prototype.writeDoubleBE=function(be,pe,Ze){return Ee(this,be,pe,!1,Ze)},f.prototype.copy=function(be,pe,Ze,_t){if(!f.isBuffer(be))throw new TypeError("argument should be a Buffer");if(Ze||(Ze=0),!_t&&0!==_t&&(_t=this.length),pe>=be.length&&(pe=be.length),pe||(pe=0),_t>0&&_t=this.length)throw new RangeError("Index out of range");if(_t<0)throw new RangeError("sourceEnd out of bounds");_t>this.length&&(_t=this.length),be.length-pe<_t-Ze&&(_t=be.length-pe+Ze);var at=_t-Ze;return this===be&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(pe,Ze,_t):Uint8Array.prototype.set.call(be,this.subarray(Ze,_t),pe),at},f.prototype.fill=function(be,pe,Ze,_t){if("string"==typeof be){if("string"==typeof pe?(_t=pe,pe=0,Ze=this.length):"string"==typeof Ze&&(_t=Ze,Ze=this.length),void 0!==_t&&"string"!=typeof _t)throw new TypeError("encoding must be a string");if("string"==typeof _t&&!f.isEncoding(_t))throw new TypeError("Unknown encoding: "+_t);if(1===be.length){var at=be.charCodeAt(0);("utf8"===_t&&at<128||"latin1"===_t)&&(be=at)}}else"number"==typeof be?be&=255:"boolean"==typeof be&&(be=Number(be));if(pe<0||this.length>>=0,Ze=void 0===Ze?this.length:Ze>>>0,be||(be=0),"number"==typeof be)for(pt=pe;pt55295&&pe<57344){if(!_t){if(pe>56319){(be-=3)>-1&&at.push(239,191,189);continue}if(pt+1===Ze){(be-=3)>-1&&at.push(239,191,189);continue}_t=pe;continue}if(pe<56320){(be-=3)>-1&&at.push(239,191,189),_t=pe;continue}pe=65536+(_t-55296<<10|pe-56320)}else _t&&(be-=3)>-1&&at.push(239,191,189);if(_t=null,pe<128){if((be-=1)<0)break;at.push(pe)}else if(pe<2048){if((be-=2)<0)break;at.push(pe>>6|192,63&pe|128)}else if(pe<65536){if((be-=3)<0)break;at.push(pe>>12|224,pe>>6&63|128,63&pe|128)}else{if(!(pe<1114112))throw new Error("Invalid code point");if((be-=4)<0)break;at.push(pe>>18|240,pe>>12&63|128,pe>>6&63|128,63&pe|128)}}return at}function me(_e){return e.toByteArray(function qe(_e){if((_e=(_e=_e.split("=")[0]).trim().replace(ze,"")).length<2)return"";for(;_e.length%4!=0;)_e+="=";return _e}(_e))}function ce(_e,be,pe,Ze){for(var _t=0;_t=be.length||_t>=_e.length);++_t)be[_t+pe]=_e[_t];return _t}function fe(_e,be){return _e instanceof be||null!=_e&&null!=_e.constructor&&null!=_e.constructor.name&&_e.constructor.name===be.name}function ke(_e){return _e!=_e}var mt=function(){for(var _e="0123456789abcdef",be=new Array(256),pe=0;pe<16;++pe)for(var Ze=16*pe,_t=0;_t<16;++_t)be[Ze+_t]=_e[pe]+_e[_t];return be}()},3247:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(7045).Transform,w=g(8454).I;function l(x){t.call(this),this.hashMode="string"==typeof x,this.hashMode?this[x]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}g(1993)(l,t),l.prototype.update=function(x,f,I){"string"==typeof x&&(x=e.from(x,f));var d=this._update(x);return this.hashMode?this:(I&&(d=this._toString(d,I)),d)},l.prototype.setAutoPadding=function(){},l.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},l.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},l.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},l.prototype._transform=function(x,f,I){var d;try{this.hashMode?this._update(x):this.push(this._update(x))}catch(T){d=T}finally{I(d)}},l.prototype._flush=function(x){var f;try{this.push(this.__final())}catch(I){f=I}x(f)},l.prototype._finalOrDigest=function(x){var f=this.__final()||e.alloc(0);return x&&(f=this._toString(f,x,!0)),f},l.prototype._toString=function(x,f,I){if(this._decoder||(this._decoder=new w(f),this._encoding=f),this._encoding!==f)throw new Error("can't switch encodings");var d=this._decoder.write(x);return I&&(d+=this._decoder.end()),d},Qe.exports=l},4740:function(Qe){!function(te){"use strict";var g={bytesToHex:function(w){return function e(w){return w.map(function(S){return function t(w,S){return w.length>S?w:Array(S-w.length+1).join("0")+w}(S.toString(16),2)}).join("")}(w)},hexToBytes:function(w){if(w.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===w.indexOf("0x")&&(w=w.slice(2)),w.match(/../g).map(function(S){return parseInt(S,16)})}};Qe.exports?Qe.exports=g:te.convertHex=g}(this)},820:function(Qe){!function(te){"use strict";var g={bytesToString:function(e){return e.map(function(t){return String.fromCharCode(t)}).join("")},stringToBytes:function(e){return e.split("").map(function(t){return t.charCodeAt(0)})}};g.UTF8={bytesToString:function(e){return decodeURIComponent(escape(g.bytesToString(e)))},stringToBytes:function(e){return g.stringToBytes(unescape(encodeURIComponent(e)))}},Qe.exports?Qe.exports=g:te.convertString=g}(this)},7637:(Qe,te,g)=>{function W($){return Object.prototype.toString.call($)}te.isArray=function e($){return Array.isArray?Array.isArray($):"[object Array]"===W($)},te.isBoolean=function t($){return"boolean"==typeof $},te.isNull=function w($){return null===$},te.isNullOrUndefined=function S($){return null==$},te.isNumber=function l($){return"number"==typeof $},te.isString=function x($){return"string"==typeof $},te.isSymbol=function f($){return"symbol"==typeof $},te.isUndefined=function I($){return void 0===$},te.isRegExp=function d($){return"[object RegExp]"===W($)},te.isObject=function T($){return"object"==typeof $&&null!==$},te.isDate=function y($){return"[object Date]"===W($)},te.isError=function F($){return"[object Error]"===W($)||$ instanceof Error},te.isFunction=function R($){return"function"==typeof $},te.isPrimitive=function z($){return null===$||"boolean"==typeof $||"number"==typeof $||"string"==typeof $||"symbol"==typeof $||typeof $>"u"},te.isBuffer=g(3838).Buffer.isBuffer},7303:(Qe,te,g)=>{var e=g(518),t=g(9606);Qe.exports=function(f){return new S(f)};var w={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 S(x){this.curveType=w[x],this.curveType||(this.curveType={name:x}),this.curve=new e.ec(this.curveType.name),this.keys=void 0}function l(x,f,I){Array.isArray(x)||(x=x.toArray());var d=new Buffer(x);if(I&&d.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},7211:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(4725),w=g(6636),S=g(5443),l=g(3247);function x(f){l.call(this,"digest"),this._hash=f}e(x,l),x.prototype._update=function(f){this._hash.update(f)},x.prototype._final=function(){return this._hash.digest()},Qe.exports=function(I){return"md5"===(I=I.toLowerCase())?new t:"rmd160"===I||"ripemd160"===I?new w:new x(S(I))}},3407:(Qe,te,g)=>{var e=g(4725);Qe.exports=function(t){return(new e).update(t).digest()}},6432:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(509),w=g(3247),S=g(7054).Buffer,l=g(3407),x=g(6636),f=g(5443),I=S.alloc(128);function d(T,y){w.call(this,"digest"),"string"==typeof y&&(y=S.from(y));var F="sha512"===T||"sha384"===T?128:64;this._alg=T,this._key=y,y.length>F?y=("rmd160"===T?new x:f(T)).update(y).digest():y.length{"use strict";var e=g(1993),t=g(7054).Buffer,w=g(3247),S=t.alloc(128),l=64;function x(f,I){w.call(this,"digest"),"string"==typeof I&&(I=t.from(I)),this._alg=f,this._key=I,I.length>l?I=f(I):I.length{"use strict";te.randomBytes=te.rng=te.pseudoRandomBytes=te.prng=g(3342),te.createHash=te.Hash=g(7211),te.createHmac=te.Hmac=g(6432);var e=g(9560),t=Object.keys(e),w=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(t);te.getHashes=function(){return w};var S=g(3397);te.pbkdf2=S.pbkdf2,te.pbkdf2Sync=S.pbkdf2Sync;var l=g(8862);te.Cipher=l.Cipher,te.createCipher=l.createCipher,te.Cipheriv=l.Cipheriv,te.createCipheriv=l.createCipheriv,te.Decipher=l.Decipher,te.createDecipher=l.createDecipher,te.Decipheriv=l.Decipheriv,te.createDecipheriv=l.createDecipheriv,te.getCiphers=l.getCiphers,te.listCiphers=l.listCiphers;var x=g(4377);te.DiffieHellmanGroup=x.DiffieHellmanGroup,te.createDiffieHellmanGroup=x.createDiffieHellmanGroup,te.getDiffieHellman=x.getDiffieHellman,te.createDiffieHellman=x.createDiffieHellman,te.DiffieHellman=x.DiffieHellman;var f=g(9143);te.createSign=f.createSign,te.Sign=f.Sign,te.createVerify=f.createVerify,te.Verify=f.Verify,te.createECDH=g(7303);var I=g(2965);te.publicEncrypt=I.publicEncrypt,te.privateEncrypt=I.privateEncrypt,te.publicDecrypt=I.publicDecrypt,te.privateDecrypt=I.privateDecrypt;var d=g(9682);te.randomFill=d.randomFill,te.randomFillSync=d.randomFillSync,te.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},te.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}},1549:(Qe,te,g)=>{"use strict";te.utils=g(5671),te.Cipher=g(219),te.DES=g(4166),te.CBC=g(8800),te.EDE=g(2122)},8800:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),w={};function S(x){e.equal(x.length,8,"Invalid IV length"),this.iv=new Array(8);for(var f=0;f{"use strict";var e=g(9210);function t(w){this.options=w,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0,this.padding=!1!==w.padding}Qe.exports=t,t.prototype._init=function(){},t.prototype.update=function(S){return 0===S.length?[]:"decrypt"===this.type?this._updateDecrypt(S):this._updateEncrypt(S)},t.prototype._buffer=function(S,l){for(var x=Math.min(this.buffer.length-this.bufferOff,S.length-l),f=0;f0;f--)l+=this._buffer(S,l),x+=this._flushBuffer(I,x);return l+=this._buffer(S,l),I},t.prototype.final=function(S){var l,x;return S&&(l=this.update(S)),x="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),l?l.concat(x):x},t.prototype._pad=function(S,l){if(0===l)return!1;for(;l{"use strict";var e=g(9210),t=g(1993),w=g(5671),S=g(219);function l(){this.tmp=new Array(2),this.keys=null}function x(I){S.call(this,I);var d=new l;this._desState=d,this.deriveKeys(d,I.key)}t(x,S),Qe.exports=x,x.create=function(d){return new x(d)};var f=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];x.prototype.deriveKeys=function(d,T){d.keys=new Array(32),e.equal(T.length,this.blockSize,"Invalid key length");var y=w.readUInt32BE(T,0),F=w.readUInt32BE(T,4);w.pc1(y,F,d.tmp,0),y=d.tmp[0],F=d.tmp[1];for(var R=0;R>>1];y=w.r28shl(y,z),F=w.r28shl(F,z),w.pc2(y,F,d.keys,R)}},x.prototype._update=function(d,T,y,F){var R=this._desState,z=w.readUInt32BE(d,T),W=w.readUInt32BE(d,T+4);w.ip(z,W,R.tmp,0),z=R.tmp[0],W=R.tmp[1],"encrypt"===this.type?this._encrypt(R,z,W,R.tmp,0):this._decrypt(R,z,W,R.tmp,0),W=R.tmp[1],w.writeUInt32BE(y,z=R.tmp[0],F),w.writeUInt32BE(y,W,F+4)},x.prototype._pad=function(d,T){if(!1===this.padding)return!1;for(var y=d.length-T,F=T;F>>0,z=ie}w.rip(W,z,F,R)},x.prototype._decrypt=function(d,T,y,F,R){for(var z=y,W=T,$=d.keys.length-2;$>=0;$-=2){var j=d.keys[$],Q=d.keys[$+1];w.expand(z,d.tmp,0);var J=w.substitute(j^=d.tmp[0],Q^=d.tmp[1]),ie=z;z=(W^w.permute(J))>>>0,W=ie}w.rip(z,W,F,R)}},2122:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),w=g(219),S=g(4166);function l(f,I){e.equal(I.length,24,"Invalid key length");var d=I.slice(0,8),T=I.slice(8,16),y=I.slice(16,24);this.ciphers="encrypt"===f?[S.create({type:"encrypt",key:d}),S.create({type:"decrypt",key:T}),S.create({type:"encrypt",key:y})]:[S.create({type:"decrypt",key:y}),S.create({type:"encrypt",key:T}),S.create({type:"decrypt",key:d})]}function x(f){w.call(this,f);var I=new l(this.type,this.options.key);this._edeState=I}t(x,w),Qe.exports=x,x.create=function(I){return new x(I)},x.prototype._update=function(I,d,T,y){var F=this._edeState;F.ciphers[0]._update(I,d,T,y),F.ciphers[1]._update(T,y,T,y),F.ciphers[2]._update(T,y,T,y)},x.prototype._pad=S.prototype._pad,x.prototype._unpad=S.prototype._unpad},5671:(Qe,te)=>{"use strict";te.readUInt32BE=function(S,l){return(S[0+l]<<24|S[1+l]<<16|S[2+l]<<8|S[3+l])>>>0},te.writeUInt32BE=function(S,l,x){S[0+x]=l>>>24,S[1+x]=l>>>16&255,S[2+x]=l>>>8&255,S[3+x]=255&l},te.ip=function(S,l,x,f){for(var I=0,d=0,T=6;T>=0;T-=2){for(var y=0;y<=24;y+=8)I<<=1,I|=l>>>y+T&1;for(y=0;y<=24;y+=8)I<<=1,I|=S>>>y+T&1}for(T=6;T>=0;T-=2){for(y=1;y<=25;y+=8)d<<=1,d|=l>>>y+T&1;for(y=1;y<=25;y+=8)d<<=1,d|=S>>>y+T&1}x[f+0]=I>>>0,x[f+1]=d>>>0},te.rip=function(S,l,x,f){for(var I=0,d=0,T=0;T<4;T++)for(var y=24;y>=0;y-=8)I<<=1,I|=l>>>y+T&1,I<<=1,I|=S>>>y+T&1;for(T=4;T<8;T++)for(y=24;y>=0;y-=8)d<<=1,d|=l>>>y+T&1,d<<=1,d|=S>>>y+T&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.pc1=function(S,l,x,f){for(var I=0,d=0,T=7;T>=5;T--){for(var y=0;y<=24;y+=8)I<<=1,I|=l>>y+T&1;for(y=0;y<=24;y+=8)I<<=1,I|=S>>y+T&1}for(y=0;y<=24;y+=8)I<<=1,I|=l>>y+T&1;for(T=1;T<=3;T++){for(y=0;y<=24;y+=8)d<<=1,d|=l>>y+T&1;for(y=0;y<=24;y+=8)d<<=1,d|=S>>y+T&1}for(y=0;y<=24;y+=8)d<<=1,d|=S>>y+T&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.r28shl=function(S,l){return S<>>28-l};var g=[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];te.pc2=function(S,l,x,f){for(var I=0,d=0,T=g.length>>>1,y=0;y>>g[y]&1;for(y=T;y>>g[y]&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.expand=function(S,l,x){var f=0,I=0;f=(1&S)<<5|S>>>27;for(var d=23;d>=15;d-=4)f<<=6,f|=S>>>d&63;for(d=11;d>=3;d-=4)I|=S>>>d&63,I<<=6;I|=(31&S)<<1|S>>>31,l[x+0]=f>>>0,l[x+1]=I>>>0};var e=[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];te.substitute=function(S,l){for(var x=0,f=0;f<4;f++)x<<=4,x|=e[64*f+(S>>>18-6*f&63)];for(f=0;f<4;f++)x<<=4,x|=e[256+64*f+(l>>>18-6*f&63)];return x>>>0};var t=[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];te.permute=function(S){for(var l=0,x=0;x>>t[x]&1;return l>>>0},te.padSplit=function(S,l,x){for(var f=S.toString(2);f.length{var e=g(2727),t=g(3241),w=g(4593),l={binary:!0,hex:!0,base64:!0};te.DiffieHellmanGroup=te.createDiffieHellmanGroup=te.getDiffieHellman=function S(f){var I=new Buffer(t[f].prime,"hex"),d=new Buffer(t[f].gen,"hex");return new w(I,d)},te.createDiffieHellman=te.DiffieHellman=function x(f,I,d,T){return Buffer.isBuffer(I)||void 0===l[I]?x(f,"binary",I,d):(I=I||"binary",T=T||"binary",d=d||new Buffer([2]),Buffer.isBuffer(d)||(d=new Buffer(d,T)),"number"==typeof f?new w(e(f,d),d,!0):(Buffer.isBuffer(f)||(f=new Buffer(f,I)),new w(f,d,!0)))}},4593:(Qe,te,g)=>{var e=g(8280),w=new(g(3459)),S=new e(24),l=new e(11),x=new e(10),f=new e(3),I=new e(7),d=g(2727),T=g(3342);function y(j,Q){return Q=Q||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,Q)),this._pub=new e(j),this}function F(j,Q){return Q=Q||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,Q)),this._priv=new e(j),this}Qe.exports=W;var R={};function W(j,Q,J){this.setGenerator(Q),this.__prime=new e(j),this._prime=e.mont(this.__prime),this._primeLen=j.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,J?(this.setPublicKey=y,this.setPrivateKey=F):this._primeCode=8}function $(j,Q){var J=new Buffer(j.toArray());return Q?J.toString(Q):J}Object.defineProperty(W.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function z(j,Q){var J=Q.toString("hex"),ee=[J,j.toString(16)].join("_");if(ee in R)return R[ee];var ge,ie=0;if(j.isEven()||!d.simpleSieve||!d.fermatTest(j)||!w.test(j))return ie+=1,R[ee]=ie+="02"===J||"05"===J?8:4,ie;switch(w.test(j.shrn(1))||(ie+=2),J){case"02":j.mod(S).cmp(l)&&(ie+=8);break;case"05":(ge=j.mod(x)).cmp(f)&&ge.cmp(I)&&(ie+=8);break;default:ie+=4}return R[ee]=ie,ie}(this.__prime,this.__gen)),this._primeCode}}),W.prototype.generateKeys=function(){return this._priv||(this._priv=new e(T(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},W.prototype.computeSecret=function(j){var Q=(j=(j=new e(j)).toRed(this._prime)).redPow(this._priv).fromRed(),J=new Buffer(Q.toArray()),ee=this.getPrime();if(J.length{var e=g(3342);Qe.exports=ie,ie.simpleSieve=J,ie.fermatTest=ee;var t=g(8280),w=new t(24),l=new(g(3459)),x=new t(1),f=new t(2),I=new t(5),y=(new t(16),new t(8),new t(10)),F=new t(3),z=(new t(7),new t(11)),W=new t(4),j=(new t(12),null);function J(ge){for(var ae=function Q(){if(null!==j)return j;var ae=[];ae[0]=2;for(var Me=1,Te=3;Te<1048576;Te+=2){for(var de=Math.ceil(Math.sqrt(Te)),D=0;Dge;)Me.ishrn(1);if(Me.isEven()&&Me.iadd(x),Me.testn(1)||Me.iadd(f),ae.cmp(f)){if(!ae.cmp(I))for(;Me.mod(y).cmp(F);)Me.iadd(W)}else for(;Me.mod(w).cmp(z);)Me.iadd(W);if(J(Te=Me.shrn(1))&&J(Me)&&ee(Te)&&ee(Me)&&l.test(Te)&&l.test(Me))return Me}}},8280:function(Qe,te,g){!function(e,t){"use strict";function w(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var c=function(){};c.prototype=n.prototype,D.prototype=new c,D.prototype.constructor=D}function l(D,n,c){if(l.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(D||0,n||10,c||"be"))}var x;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{x=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(6089).Buffer}catch{}function f(D,n){var c=D.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},243:Qe=>{"use strict";var te={single_source_shortest_paths:function(g,e,t){var w={},S={};S[e]=0;var x,f,I,d,T,F,l=te.PriorityQueue.make();for(l.push(e,0);!l.empty();)for(I in d=(x=l.pop()).cost,T=g[f=x.value]||{})T.hasOwnProperty(I)&&(F=d+T[I],(typeof S[I]>"u"||S[I]>F)&&(S[I]=F,l.push(I,F),w[I]=f));if(typeof t<"u"&&typeof S[t]>"u"){var W=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(W)}return w},extract_shortest_path_from_predecessor_list:function(g,e){for(var t=[],w=e;w;)t.push(w),w=g[w];return t.reverse(),t},find_path:function(g,e,t){var w=te.single_source_shortest_paths(g,e,t);return te.extract_shortest_path_from_predecessor_list(w,t)},PriorityQueue:{make:function(g){var w,e=te.PriorityQueue,t={};for(w in g=g||{},e)e.hasOwnProperty(w)&&(t[w]=e[w]);return t.queue=[],t.sorter=g.sorter||e.default_sorter,t},default_sorter:function(g,e){return g.cost-e.cost},push:function(g,e){this.queue.push({value:g,cost:e}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Qe.exports=te},518:(Qe,te,g)=>{"use strict";var e=te;e.version=g(1636).rE,e.utils=g(3136),e.rand=g(5294),e.curve=g(8729),e.curves=g(3401),e.ec=g(9042),e.eddsa=g(3045)},8828:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.getNAF,S=t.getJSF,l=t.assert;function x(I,d){this.type=I,this.p=new e(d.p,16),this.red=d.prime?e.red(d.prime):e.mont(this.p),this.zero=new e(0).toRed(this.red),this.one=new e(1).toRed(this.red),this.two=new e(2).toRed(this.red),this.n=d.n&&new e(d.n,16),this.g=d.g&&this.pointFromJSON(d.g,d.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 T=this.n&&this.p.div(this.n);!T||T.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function f(I,d){this.curve=I,this.type=d,this.precomputed=null}Qe.exports=x,x.prototype.point=function(){throw new Error("Not implemented")},x.prototype.validate=function(){throw new Error("Not implemented")},x.prototype._fixedNafMul=function(d,T){l(d.precomputed);var y=d._getDoubles(),F=w(T,1,this._bitLength),R=(1<=W;j--)$=($<<1)+F[j];z.push($)}for(var Q=this.jpoint(null,null,null),J=this.jpoint(null,null,null),ee=R;ee>0;ee--){for(W=0;W=0;$--){for(var j=0;$>=0&&0===z[$];$--)j++;if($>=0&&j++,W=W.dblp(j),$<0)break;var Q=z[$];l(0!==Q),W="affine"===d.type?W.mixedAdd(Q>0?R[Q-1>>1]:R[-Q-1>>1].neg()):W.add(Q>0?R[Q-1>>1]:R[-Q-1>>1].neg())}return"affine"===d.type?W.toP():W},x.prototype._wnafMulAdd=function(d,T,y,F,R){var Q,J,ee,z=this._wnafT1,W=this._wnafT2,$=this._wnafT3,j=0;for(Q=0;Q=1;Q-=2){var ge=Q-1,ae=Q;if(1===z[ge]&&1===z[ae]){var Me=[T[ge],null,null,T[ae]];0===T[ge].y.cmp(T[ae].y)?(Me[1]=T[ge].add(T[ae]),Me[2]=T[ge].toJ().mixedAdd(T[ae].neg())):0===T[ge].y.cmp(T[ae].y.redNeg())?(Me[1]=T[ge].toJ().mixedAdd(T[ae]),Me[2]=T[ge].add(T[ae].neg())):(Me[1]=T[ge].toJ().mixedAdd(T[ae]),Me[2]=T[ge].toJ().mixedAdd(T[ae].neg()));var Te=[-3,-1,-5,-7,0,7,5,1,3],de=S(y[ge],y[ae]);for(j=Math.max(de[0].length,j),$[ge]=new Array(j),$[ae]=new Array(j),J=0;J=0;Q--){for(var h=0;Q>=0;){var C=!0;for(J=0;J=0&&h++,c=c.dblp(h),Q<0)break;for(J=0;J0?ee=W[J][k-1>>1]:k<0&&(ee=W[J][-k-1>>1].neg()),c="affine"===ee.type?c.mixedAdd(ee):c.add(ee))}}for(Q=0;Q=Math.ceil((d.bitLength()+1)/T.step)},f.prototype._getDoubles=function(d,T){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var y=[this],F=this,R=0;R{"use strict";var e=g(3136),t=g(8723),w=g(1993),S=g(8828),l=e.assert;function x(I){this.twisted=1!=(0|I.a),this.mOneA=this.twisted&&-1==(0|I.a),this.extended=this.mOneA,S.call(this,"edwards",I),this.a=new t(I.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new t(I.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new t(I.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),l(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|I.c)}function f(I,d,T,y,F){S.BasePoint.call(this,I,"projective"),null===d&&null===T&&null===y?(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 t(d,16),this.y=new t(T,16),this.z=y?new t(y,16):this.curve.one,this.t=F&&new t(F,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()))))}w(x,S),Qe.exports=x,x.prototype._mulA=function(d){return this.mOneA?d.redNeg():this.a.redMul(d)},x.prototype._mulC=function(d){return this.oneC?d:this.c.redMul(d)},x.prototype.jpoint=function(d,T,y,F){return this.point(d,T,y,F)},x.prototype.pointFromX=function(d,T){(d=new t(d,16)).red||(d=d.toRed(this.red));var y=d.redSqr(),F=this.c2.redSub(this.a.redMul(y)),R=this.one.redSub(this.c2.redMul(this.d).redMul(y)),z=F.redMul(R.redInvm()),W=z.redSqrt();if(0!==W.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");var $=W.fromRed().isOdd();return(T&&!$||!T&&$)&&(W=W.redNeg()),this.point(d,W)},x.prototype.pointFromY=function(d,T){(d=new t(d,16)).red||(d=d.toRed(this.red));var y=d.redSqr(),F=y.redSub(this.c2),R=y.redMul(this.d).redMul(this.c2).redSub(this.a),z=F.redMul(R.redInvm());if(0===z.cmp(this.zero)){if(T)throw new Error("invalid point");return this.point(this.zero,d)}var W=z.redSqrt();if(0!==W.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");return W.fromRed().isOdd()!==T&&(W=W.redNeg()),this.point(W,d)},x.prototype.validate=function(d){if(d.isInfinity())return!0;d.normalize();var T=d.x.redSqr(),y=d.y.redSqr(),F=T.redMul(this.a).redAdd(y),R=this.c2.redMul(this.one.redAdd(this.d.redMul(T).redMul(y)));return 0===F.cmp(R)},w(f,S.BasePoint),x.prototype.pointFromJSON=function(d){return f.fromJSON(this,d)},x.prototype.point=function(d,T,y,F){return new f(this,d,T,y,F)},f.fromJSON=function(d,T){return new f(d,T[0],T[1],T[2])},f.prototype.inspect=function(){return this.isInfinity()?"":""},f.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},f.prototype._extDbl=function(){var d=this.x.redSqr(),T=this.y.redSqr(),y=this.z.redSqr();y=y.redIAdd(y);var F=this.curve._mulA(d),R=this.x.redAdd(this.y).redSqr().redISub(d).redISub(T),z=F.redAdd(T),W=z.redSub(y),$=F.redSub(T),j=R.redMul(W),Q=z.redMul($),J=R.redMul($),ee=W.redMul(z);return this.curve.point(j,Q,ee,J)},f.prototype._projDbl=function(){var F,R,z,W,$,j,d=this.x.redAdd(this.y).redSqr(),T=this.x.redSqr(),y=this.y.redSqr();if(this.curve.twisted){var Q=(W=this.curve._mulA(T)).redAdd(y);this.zOne?(F=d.redSub(T).redSub(y).redMul(Q.redSub(this.curve.two)),R=Q.redMul(W.redSub(y)),z=Q.redSqr().redSub(Q).redSub(Q)):($=this.z.redSqr(),j=Q.redSub($).redISub($),F=d.redSub(T).redISub(y).redMul(j),R=Q.redMul(W.redSub(y)),z=Q.redMul(j))}else W=T.redAdd(y),$=this.curve._mulC(this.z).redSqr(),j=W.redSub($).redSub($),F=this.curve._mulC(d.redISub(W)).redMul(j),R=this.curve._mulC(W).redMul(T.redISub(y)),z=W.redMul(j);return this.curve.point(F,R,z)},f.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},f.prototype._extAdd=function(d){var T=this.y.redSub(this.x).redMul(d.y.redSub(d.x)),y=this.y.redAdd(this.x).redMul(d.y.redAdd(d.x)),F=this.t.redMul(this.curve.dd).redMul(d.t),R=this.z.redMul(d.z.redAdd(d.z)),z=y.redSub(T),W=R.redSub(F),$=R.redAdd(F),j=y.redAdd(T),Q=z.redMul(W),J=$.redMul(j),ee=z.redMul(j),ie=W.redMul($);return this.curve.point(Q,J,ie,ee)},f.prototype._projAdd=function(d){var J,ee,T=this.z.redMul(d.z),y=T.redSqr(),F=this.x.redMul(d.x),R=this.y.redMul(d.y),z=this.curve.d.redMul(F).redMul(R),W=y.redSub(z),$=y.redAdd(z),j=this.x.redAdd(this.y).redMul(d.x.redAdd(d.y)).redISub(F).redISub(R),Q=T.redMul(W).redMul(j);return this.curve.twisted?(J=T.redMul($).redMul(R.redSub(this.curve._mulA(F))),ee=W.redMul($)):(J=T.redMul($).redMul(R.redSub(F)),ee=this.curve._mulC(W).redMul($)),this.curve.point(Q,J,ee)},f.prototype.add=function(d){return this.isInfinity()?d:d.isInfinity()?this:this.curve.extended?this._extAdd(d):this._projAdd(d)},f.prototype.mul=function(d){return this._hasDoubles(d)?this.curve._fixedNafMul(this,d):this.curve._wnafMul(this,d)},f.prototype.mulAdd=function(d,T,y){return this.curve._wnafMulAdd(1,[this,T],[d,y],2,!1)},f.prototype.jmulAdd=function(d,T,y){return this.curve._wnafMulAdd(1,[this,T],[d,y],2,!0)},f.prototype.normalize=function(){if(this.zOne)return this;var d=this.z.redInvm();return this.x=this.x.redMul(d),this.y=this.y.redMul(d),this.t&&(this.t=this.t.redMul(d)),this.z=this.curve.one,this.zOne=!0,this},f.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},f.prototype.getX=function(){return this.normalize(),this.x.fromRed()},f.prototype.getY=function(){return this.normalize(),this.y.fromRed()},f.prototype.eq=function(d){return this===d||0===this.getX().cmp(d.getX())&&0===this.getY().cmp(d.getY())},f.prototype.eqXToP=function(d){var T=d.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(T))return!0;for(var y=d.clone(),F=this.curve.redN.redMul(this.z);;){if(y.iadd(this.curve.n),y.cmp(this.curve.p)>=0)return!1;if(T.redIAdd(F),0===this.x.cmp(T))return!0}},f.prototype.toP=f.prototype.normalize,f.prototype.mixedAdd=f.prototype.add},8729:(Qe,te,g)=>{"use strict";var e=te;e.base=g(8828),e.short=g(8075),e.mont=g(4947),e.edwards=g(5537)},4947:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(1993),w=g(8828),S=g(3136);function l(f){w.call(this,"mont",f),this.a=new e(f.a,16).toRed(this.red),this.b=new e(f.b,16).toRed(this.red),this.i4=new e(4).toRed(this.red).redInvm(),this.two=new e(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function x(f,I,d){w.BasePoint.call(this,f,"projective"),null===I&&null===d?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new e(I,16),this.z=new e(d,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}t(l,w),Qe.exports=l,l.prototype.validate=function(I){var d=I.normalize().x,T=d.redSqr(),y=T.redMul(d).redAdd(T.redMul(this.a)).redAdd(d);return 0===y.redSqrt().redSqr().cmp(y)},t(x,w.BasePoint),l.prototype.decodePoint=function(I,d){return this.point(S.toArray(I,d),1)},l.prototype.point=function(I,d){return new x(this,I,d)},l.prototype.pointFromJSON=function(I){return x.fromJSON(this,I)},x.prototype.precompute=function(){},x.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},x.fromJSON=function(I,d){return new x(I,d[0],d[1]||I.one)},x.prototype.inspect=function(){return this.isInfinity()?"":""},x.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},x.prototype.dbl=function(){var d=this.x.redAdd(this.z).redSqr(),y=this.x.redSub(this.z).redSqr(),F=d.redSub(y),R=d.redMul(y),z=F.redMul(y.redAdd(this.curve.a24.redMul(F)));return this.curve.point(R,z)},x.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.diffAdd=function(I,d){var T=this.x.redAdd(this.z),y=this.x.redSub(this.z),F=I.x.redAdd(I.z),z=I.x.redSub(I.z).redMul(T),W=F.redMul(y),$=d.z.redMul(z.redAdd(W).redSqr()),j=d.x.redMul(z.redISub(W).redSqr());return this.curve.point($,j)},x.prototype.mul=function(I){for(var d=I.clone(),T=this,y=this.curve.point(null,null),R=[];0!==d.cmpn(0);d.iushrn(1))R.push(d.andln(1));for(var z=R.length-1;z>=0;z--)0===R[z]?(T=T.diffAdd(y,this),y=y.dbl()):(y=T.diffAdd(y,this),T=T.dbl());return y},x.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.eq=function(I){return 0===this.getX().cmp(I.getX())},x.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},x.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},8075:(Qe,te,g)=>{"use strict";var e=g(3136),t=g(8723),w=g(1993),S=g(8828),l=e.assert;function x(d){S.call(this,"short",d),this.a=new t(d.a,16).toRed(this.red),this.b=new t(d.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(d),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function f(d,T,y,F){S.BasePoint.call(this,d,"affine"),null===T&&null===y?(this.x=null,this.y=null,this.inf=!0):(this.x=new t(T,16),this.y=new t(y,16),F&&(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 I(d,T,y,F){S.BasePoint.call(this,d,"jacobian"),null===T&&null===y&&null===F?(this.x=this.curve.one,this.y=this.curve.one,this.z=new t(0)):(this.x=new t(T,16),this.y=new t(y,16),this.z=new t(F,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}w(x,S),Qe.exports=x,x.prototype._getEndomorphism=function(T){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var y,F;if(T.beta)y=new t(T.beta,16).toRed(this.red);else{var R=this._getEndoRoots(this.p);y=(y=R[0].cmp(R[1])<0?R[0]:R[1]).toRed(this.red)}if(T.lambda)F=new t(T.lambda,16);else{var z=this._getEndoRoots(this.n);0===this.g.mul(z[0]).x.cmp(this.g.x.redMul(y))?F=z[0]:l(0===this.g.mul(F=z[1]).x.cmp(this.g.x.redMul(y)))}return{beta:y,lambda:F,basis:T.basis?T.basis.map(function($){return{a:new t($.a,16),b:new t($.b,16)}}):this._getEndoBasis(F)}}},x.prototype._getEndoRoots=function(T){var y=T===this.p?this.red:t.mont(T),F=new t(2).toRed(y).redInvm(),R=F.redNeg(),z=new t(3).toRed(y).redNeg().redSqrt().redMul(F);return[R.redAdd(z).fromRed(),R.redSub(z).fromRed()]},x.prototype._getEndoBasis=function(T){for(var Q,J,ee,ie,ge,ae,Me,de,D,y=this.n.ushrn(Math.floor(this.n.bitLength()/2)),F=T,R=this.n.clone(),z=new t(1),W=new t(0),$=new t(0),j=new t(1),Te=0;0!==F.cmpn(0);){var n=R.div(F);de=R.sub(n.mul(F)),D=$.sub(n.mul(z));var c=j.sub(n.mul(W));if(!ee&&de.cmp(y)<0)Q=Me.neg(),J=z,ee=de.neg(),ie=D;else if(ee&&2==++Te)break;Me=de,R=F,F=de,$=z,z=D,j=W,W=c}ge=de.neg(),ae=D;var m=ee.sqr().add(ie.sqr());return ge.sqr().add(ae.sqr()).cmp(m)>=0&&(ge=Q,ae=J),ee.negative&&(ee=ee.neg(),ie=ie.neg()),ge.negative&&(ge=ge.neg(),ae=ae.neg()),[{a:ee,b:ie},{a:ge,b:ae}]},x.prototype._endoSplit=function(T){var y=this.endo.basis,F=y[0],R=y[1],z=R.b.mul(T).divRound(this.n),W=F.b.neg().mul(T).divRound(this.n),$=z.mul(F.a),j=W.mul(R.a),Q=z.mul(F.b),J=W.mul(R.b);return{k1:T.sub($).sub(j),k2:Q.add(J).neg()}},x.prototype.pointFromX=function(T,y){(T=new t(T,16)).red||(T=T.toRed(this.red));var F=T.redSqr().redMul(T).redIAdd(T.redMul(this.a)).redIAdd(this.b),R=F.redSqrt();if(0!==R.redSqr().redSub(F).cmp(this.zero))throw new Error("invalid point");var z=R.fromRed().isOdd();return(y&&!z||!y&&z)&&(R=R.redNeg()),this.point(T,R)},x.prototype.validate=function(T){if(T.inf)return!0;var y=T.x,F=T.y,R=this.a.redMul(y),z=y.redSqr().redMul(y).redIAdd(R).redIAdd(this.b);return 0===F.redSqr().redISub(z).cmpn(0)},x.prototype._endoWnafMulAdd=function(T,y,F){for(var R=this._endoWnafT1,z=this._endoWnafT2,W=0;W":""},f.prototype.isInfinity=function(){return this.inf},f.prototype.add=function(T){if(this.inf)return T;if(T.inf)return this;if(this.eq(T))return this.dbl();if(this.neg().eq(T))return this.curve.point(null,null);if(0===this.x.cmp(T.x))return this.curve.point(null,null);var y=this.y.redSub(T.y);0!==y.cmpn(0)&&(y=y.redMul(this.x.redSub(T.x).redInvm()));var F=y.redSqr().redISub(this.x).redISub(T.x),R=y.redMul(this.x.redSub(F)).redISub(this.y);return this.curve.point(F,R)},f.prototype.dbl=function(){if(this.inf)return this;var T=this.y.redAdd(this.y);if(0===T.cmpn(0))return this.curve.point(null,null);var y=this.curve.a,F=this.x.redSqr(),R=T.redInvm(),z=F.redAdd(F).redIAdd(F).redIAdd(y).redMul(R),W=z.redSqr().redISub(this.x.redAdd(this.x)),$=z.redMul(this.x.redSub(W)).redISub(this.y);return this.curve.point(W,$)},f.prototype.getX=function(){return this.x.fromRed()},f.prototype.getY=function(){return this.y.fromRed()},f.prototype.mul=function(T){return T=new t(T,16),this.isInfinity()?this:this._hasDoubles(T)?this.curve._fixedNafMul(this,T):this.curve.endo?this.curve._endoWnafMulAdd([this],[T]):this.curve._wnafMul(this,T)},f.prototype.mulAdd=function(T,y,F){var R=[this,y],z=[T,F];return this.curve.endo?this.curve._endoWnafMulAdd(R,z):this.curve._wnafMulAdd(1,R,z,2)},f.prototype.jmulAdd=function(T,y,F){var R=[this,y],z=[T,F];return this.curve.endo?this.curve._endoWnafMulAdd(R,z,!0):this.curve._wnafMulAdd(1,R,z,2,!0)},f.prototype.eq=function(T){return this===T||this.inf===T.inf&&(this.inf||0===this.x.cmp(T.x)&&0===this.y.cmp(T.y))},f.prototype.neg=function(T){if(this.inf)return this;var y=this.curve.point(this.x,this.y.redNeg());if(T&&this.precomputed){var F=this.precomputed,R=function(z){return z.neg()};y.precomputed={naf:F.naf&&{wnd:F.naf.wnd,points:F.naf.points.map(R)},doubles:F.doubles&&{step:F.doubles.step,points:F.doubles.points.map(R)}}}return y},f.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},w(I,S.BasePoint),x.prototype.jpoint=function(T,y,F){return new I(this,T,y,F)},I.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var T=this.z.redInvm(),y=T.redSqr(),F=this.x.redMul(y),R=this.y.redMul(y).redMul(T);return this.curve.point(F,R)},I.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},I.prototype.add=function(T){if(this.isInfinity())return T;if(T.isInfinity())return this;var y=T.z.redSqr(),F=this.z.redSqr(),R=this.x.redMul(y),z=T.x.redMul(F),W=this.y.redMul(y.redMul(T.z)),$=T.y.redMul(F.redMul(this.z)),j=R.redSub(z),Q=W.redSub($);if(0===j.cmpn(0))return 0!==Q.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var J=j.redSqr(),ee=J.redMul(j),ie=R.redMul(J),ge=Q.redSqr().redIAdd(ee).redISub(ie).redISub(ie),ae=Q.redMul(ie.redISub(ge)).redISub(W.redMul(ee)),Me=this.z.redMul(T.z).redMul(j);return this.curve.jpoint(ge,ae,Me)},I.prototype.mixedAdd=function(T){if(this.isInfinity())return T.toJ();if(T.isInfinity())return this;var y=this.z.redSqr(),F=this.x,R=T.x.redMul(y),z=this.y,W=T.y.redMul(y).redMul(this.z),$=F.redSub(R),j=z.redSub(W);if(0===$.cmpn(0))return 0!==j.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Q=$.redSqr(),J=Q.redMul($),ee=F.redMul(Q),ie=j.redSqr().redIAdd(J).redISub(ee).redISub(ee),ge=j.redMul(ee.redISub(ie)).redISub(z.redMul(J)),ae=this.z.redMul($);return this.curve.jpoint(ie,ge,ae)},I.prototype.dblp=function(T){if(0===T)return this;if(this.isInfinity())return this;if(!T)return this.dbl();var y;if(this.curve.zeroA||this.curve.threeA){var F=this;for(y=0;y=0)return!1;if(F.redIAdd(z),0===this.x.cmp(F))return!0}},I.prototype.inspect=function(){return this.isInfinity()?"":""},I.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},3401:(Qe,te,g)=>{"use strict";var I,e=te,t=g(2529),w=g(8729),l=g(3136).assert;function x(d){this.curve="short"===d.type?new w.short(d):"edwards"===d.type?new w.edwards(d):new w.mont(d),this.g=this.curve.g,this.n=this.curve.n,this.hash=d.hash,l(this.g.validate(),"Invalid curve"),l(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function f(d,T){Object.defineProperty(e,d,{configurable:!0,enumerable:!0,get:function(){var y=new x(T);return Object.defineProperty(e,d,{configurable:!0,enumerable:!0,value:y}),y}})}e.PresetCurve=x,f("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:t.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),f("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:t.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),f("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:t.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),f("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:t.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"]}),f("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:t.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"]}),f("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:t.sha256,gRed:!1,g:["9"]}),f("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:t.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{I=g(1416)}catch{I=void 0}f("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:t.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",I]})},9042:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3556),w=g(3136),S=g(3401),l=g(5294),x=w.assert,f=g(541),I=g(484);function d(T){if(!(this instanceof d))return new d(T);"string"==typeof T&&(x(Object.prototype.hasOwnProperty.call(S,T),"Unknown curve "+T),T=S[T]),T instanceof S.PresetCurve&&(T={curve:T}),this.curve=T.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=T.curve.g,this.g.precompute(T.curve.n.bitLength()+1),this.hash=T.hash||T.curve.hash}Qe.exports=d,d.prototype.keyPair=function(y){return new f(this,y)},d.prototype.keyFromPrivate=function(y,F){return f.fromPrivate(this,y,F)},d.prototype.keyFromPublic=function(y,F){return f.fromPublic(this,y,F)},d.prototype.genKeyPair=function(y){y||(y={});for(var F=new t({hash:this.hash,pers:y.pers,persEnc:y.persEnc||"utf8",entropy:y.entropy||l(this.hash.hmacStrength),entropyEnc:y.entropy&&y.entropyEnc||"utf8",nonce:this.n.toArray()}),R=this.n.byteLength(),z=this.n.sub(new e(2));;){var W=new e(F.generate(R));if(!(W.cmp(z)>0))return W.iaddn(1),this.keyFromPrivate(W)}},d.prototype._truncateToN=function(y,F){var R=8*y.byteLength()-this.n.bitLength();return R>0&&(y=y.ushrn(R)),!F&&y.cmp(this.n)>=0?y.sub(this.n):y},d.prototype.sign=function(y,F,R,z){"object"==typeof R&&(z=R,R=null),z||(z={}),F=this.keyFromPrivate(F,R),y=this._truncateToN(new e(y,16));for(var W=this.n.byteLength(),$=F.getPrivate().toArray("be",W),j=y.toArray("be",W),Q=new t({hash:this.hash,entropy:$,nonce:j,pers:z.pers,persEnc:z.persEnc||"utf8"}),J=this.n.sub(new e(1)),ee=0;;ee++){var ie=z.k?z.k(ee):new e(Q.generate(this.n.byteLength()));if(!((ie=this._truncateToN(ie,!0)).cmpn(1)<=0||ie.cmp(J)>=0)){var ge=this.g.mul(ie);if(!ge.isInfinity()){var ae=ge.getX(),Me=ae.umod(this.n);if(0!==Me.cmpn(0)){var Te=ie.invm(this.n).mul(Me.mul(F.getPrivate()).iadd(y));if(0!==(Te=Te.umod(this.n)).cmpn(0)){var de=(ge.getY().isOdd()?1:0)|(0!==ae.cmp(Me)?2:0);return z.canonical&&Te.cmp(this.nh)>0&&(Te=this.n.sub(Te),de^=1),new I({r:Me,s:Te,recoveryParam:de})}}}}}},d.prototype.verify=function(y,F,R,z){y=this._truncateToN(new e(y,16)),R=this.keyFromPublic(R,z);var W=(F=new I(F,"hex")).r,$=F.s;if(W.cmpn(1)<0||W.cmp(this.n)>=0||$.cmpn(1)<0||$.cmp(this.n)>=0)return!1;var ee,j=$.invm(this.n),Q=j.mul(y).umod(this.n),J=j.mul(W).umod(this.n);return this.curve._maxwellTrick?!(ee=this.g.jmulAdd(Q,R.getPublic(),J)).isInfinity()&&ee.eqXToP(W):!(ee=this.g.mulAdd(Q,R.getPublic(),J)).isInfinity()&&0===ee.getX().umod(this.n).cmp(W)},d.prototype.recoverPubKey=function(T,y,F,R){x((3&F)===F,"The recovery param is more than two bits"),y=new I(y,R);var z=this.n,W=new e(T),$=y.r,j=y.s,Q=1&F,J=F>>1;if($.cmp(this.curve.p.umod(this.curve.n))>=0&&J)throw new Error("Unable to find sencond key candinate");$=this.curve.pointFromX(J?$.add(this.curve.n):$,Q);var ee=y.r.invm(z),ie=z.sub(W).mul(ee).umod(z),ge=j.mul(ee).umod(z);return this.g.mulAdd(ie,$,ge)},d.prototype.getKeyRecoveryParam=function(T,y,F,R){if(null!==(y=new I(y,R)).recoveryParam)return y.recoveryParam;for(var z=0;z<4;z++){var W;try{W=this.recoverPubKey(T,y,z)}catch{continue}if(W.eq(F))return z}throw new Error("Unable to find valid recovery factor")}},541:(Qe,te,g)=>{"use strict";var e=g(8723),w=g(3136).assert;function S(l,x){this.ec=l,this.priv=null,this.pub=null,x.priv&&this._importPrivate(x.priv,x.privEnc),x.pub&&this._importPublic(x.pub,x.pubEnc)}Qe.exports=S,S.fromPublic=function(x,f,I){return f instanceof S?f:new S(x,{pub:f,pubEnc:I})},S.fromPrivate=function(x,f,I){return f instanceof S?f:new S(x,{priv:f,privEnc:I})},S.prototype.validate=function(){var x=this.getPublic();return x.isInfinity()?{result:!1,reason:"Invalid public key"}:x.validate()?x.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"}},S.prototype.getPublic=function(x,f){return"string"==typeof x&&(f=x,x=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),f?this.pub.encode(f,x):this.pub},S.prototype.getPrivate=function(x){return"hex"===x?this.priv.toString(16,2):this.priv},S.prototype._importPrivate=function(x,f){this.priv=new e(x,f||16),this.priv=this.priv.umod(this.ec.curve.n)},S.prototype._importPublic=function(x,f){if(x.x||x.y)return"mont"===this.ec.curve.type?w(x.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&w(x.x&&x.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(x.x,x.y));this.pub=this.ec.curve.decodePoint(x,f)},S.prototype.derive=function(x){return x.validate()||w(x.validate(),"public point not validated"),x.mul(this.priv).getX()},S.prototype.sign=function(x,f,I){return this.ec.sign(x,this,f,I)},S.prototype.verify=function(x,f){return this.ec.verify(x,f,this)},S.prototype.inspect=function(){return""}},484:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.assert;function S(d,T){if(d instanceof S)return d;this._importDER(d,T)||(w(d.r&&d.s,"Signature without r or s"),this.r=new e(d.r,16),this.s=new e(d.s,16),this.recoveryParam=void 0===d.recoveryParam?null:d.recoveryParam)}function l(){this.place=0}function x(d,T){var y=d[T.place++];if(!(128&y))return y;var F=15&y;if(0===F||F>4)return!1;for(var R=0,z=0,W=T.place;z>>=0;return!(R<=127)&&(T.place=W,R)}function f(d){for(var T=0,y=d.length-1;!d[T]&&!(128&d[T+1])&&T>>3);for(d.push(128|y);--y;)d.push(T>>>(y<<3)&255);d.push(T)}}Qe.exports=S,S.prototype._importDER=function(T,y){T=t.toArray(T,y);var F=new l;if(48!==T[F.place++])return!1;var R=x(T,F);if(!1===R||R+F.place!==T.length||2!==T[F.place++])return!1;var z=x(T,F);if(!1===z)return!1;var W=T.slice(F.place,z+F.place);if(F.place+=z,2!==T[F.place++])return!1;var $=x(T,F);if(!1===$||T.length!==$+F.place)return!1;var j=T.slice(F.place,$+F.place);if(0===W[0]){if(!(128&W[1]))return!1;W=W.slice(1)}if(0===j[0]){if(!(128&j[1]))return!1;j=j.slice(1)}return this.r=new e(W),this.s=new e(j),this.recoveryParam=null,!0},S.prototype.toDER=function(T){var y=this.r.toArray(),F=this.s.toArray();for(128&y[0]&&(y=[0].concat(y)),128&F[0]&&(F=[0].concat(F)),y=f(y),F=f(F);!(F[0]||128&F[1]);)F=F.slice(1);var R=[2];I(R,y.length),(R=R.concat(y)).push(2),I(R,F.length);var z=R.concat(F),W=[48];return I(W,z.length),W=W.concat(z),t.encode(W,T)}},3045:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(3401),w=g(3136),S=w.assert,l=w.parseBytes,x=g(7222),f=g(5451);function I(d){if(S("ed25519"===d,"only tested with ed25519 so far"),!(this instanceof I))return new I(d);this.curve=d=t[d].curve,this.g=d.g,this.g.precompute(d.n.bitLength()+1),this.pointClass=d.point().constructor,this.encodingLength=Math.ceil(d.n.bitLength()/8),this.hash=e.sha512}Qe.exports=I,I.prototype.sign=function(T,y){T=l(T);var F=this.keyFromSecret(y),R=this.hashInt(F.messagePrefix(),T),z=this.g.mul(R),W=this.encodePoint(z),$=this.hashInt(W,F.pubBytes(),T).mul(F.priv()),j=R.add($).umod(this.curve.n);return this.makeSignature({R:z,S:j,Rencoded:W})},I.prototype.verify=function(T,y,F){T=l(T),y=this.makeSignature(y);var R=this.keyFromPublic(F),z=this.hashInt(y.Rencoded(),R.pubBytes(),T),W=this.g.mul(y.S());return y.R().add(R.pub().mul(z)).eq(W)},I.prototype.hashInt=function(){for(var T=this.hash(),y=0;y{"use strict";var e=g(3136),t=e.assert,w=e.parseBytes,S=e.cachedProperty;function l(x,f){this.eddsa=x,this._secret=w(f.secret),x.isPoint(f.pub)?this._pub=f.pub:this._pubBytes=w(f.pub)}l.fromPublic=function(f,I){return I instanceof l?I:new l(f,{pub:I})},l.fromSecret=function(f,I){return I instanceof l?I:new l(f,{secret:I})},l.prototype.secret=function(){return this._secret},S(l,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),S(l,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),S(l,"privBytes",function(){var f=this.eddsa,I=this.hash(),d=f.encodingLength-1,T=I.slice(0,f.encodingLength);return T[0]&=248,T[d]&=127,T[d]|=64,T}),S(l,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),S(l,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),S(l,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),l.prototype.sign=function(f){return t(this._secret,"KeyPair can only verify"),this.eddsa.sign(f,this)},l.prototype.verify=function(f,I){return this.eddsa.verify(f,I,this)},l.prototype.getSecret=function(f){return t(this._secret,"KeyPair is public only"),e.encode(this.secret(),f)},l.prototype.getPublic=function(f){return e.encode(this.pubBytes(),f)},Qe.exports=l},5451:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.assert,S=t.cachedProperty,l=t.parseBytes;function x(f,I){this.eddsa=f,"object"!=typeof I&&(I=l(I)),Array.isArray(I)&&(I={R:I.slice(0,f.encodingLength),S:I.slice(f.encodingLength)}),w(I.R&&I.S,"Signature without R or S"),f.isPoint(I.R)&&(this._R=I.R),I.S instanceof e&&(this._S=I.S),this._Rencoded=Array.isArray(I.R)?I.R:I.Rencoded,this._Sencoded=Array.isArray(I.S)?I.S:I.Sencoded}S(x,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),S(x,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),S(x,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),S(x,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),x.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},x.prototype.toHex=function(){return t.encode(this.toBytes(),"hex").toUpperCase()},Qe.exports=x},1416:Qe=>{Qe.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"]]}}},3136:(Qe,te,g)=>{"use strict";var e=te,t=g(8723),w=g(9210),S=g(1832);e.assert=w,e.toArray=S.toArray,e.zero2=S.zero2,e.toHex=S.toHex,e.encode=S.encode,e.getNAF=function l(T,y,F){var z,R=new Array(Math.max(T.bitLength(),F)+1);for(z=0;z(W>>1)-1?(W>>1)-Q:Q):j=0,R[z]=j,$.iushrn(1)}return R},e.getJSF=function x(T,y){var F=[[],[]];T=T.clone(),y=y.clone();for(var W,R=0,z=0;T.cmpn(-R)>0||y.cmpn(-z)>0;){var Q,J,$=T.andln(3)+R&3,j=y.andln(3)+z&3;3===$&&($=-1),3===j&&(j=-1),Q=1&$?3!=(W=T.andln(7)+R&7)&&5!==W||2!==j?$:-$:0,F[0].push(Q),J=1&j?3!=(W=y.andln(7)+z&7)&&5!==W||2!==$?j:-j:0,F[1].push(J),2*R===Q+1&&(R=1-R),2*z===J+1&&(z=1-z),T.iushrn(1),y.iushrn(1)}return F},e.cachedProperty=function f(T,y,F){var R="_"+y;T.prototype[y]=function(){return void 0!==this[R]?this[R]:this[R]=F.call(this)}},e.parseBytes=function I(T){return"string"==typeof T?e.toArray(T,"hex"):T},e.intFromLE=function d(T){return new t(T,"hex","le")}},8723:function(Qe,te,g){!function(e,t){"use strict";function w(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var c=function(){};c.prototype=n.prototype,D.prototype=new c,D.prototype.constructor=D}function l(D,n,c){if(l.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(D||0,n||10,c||"be"))}var x;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{x=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(9368).Buffer}catch{}function f(D,n){var c=D.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3174:Qe=>{"use strict";Qe.exports=function(g){for(var e=[],t=g.length,w=0;w=55296&&S<=56319&&t>w+1){var l=g.charCodeAt(w+1);l>=56320&&l<=57343&&(S=1024*(S-55296)+l-56320+65536,w+=1)}S<128?e.push(S):S<2048?(e.push(S>>6|192),e.push(63&S|128)):S<55296||S>=57344&&S<65536?(e.push(S>>12|224),e.push(S>>6&63|128),e.push(63&S|128)):S>=65536&&S<=1114111?(e.push(S>>18|240),e.push(S>>12&63|128),e.push(S>>6&63|128),e.push(63&S|128)):e.push(239,191,189)}return new Uint8Array(e).buffer}},4356:Qe=>{"use strict";var e,te="object"==typeof Reflect?Reflect:null,g=te&&"function"==typeof te.apply?te.apply:function(ee,ie,ge){return Function.prototype.apply.call(ee,ie,ge)};e=te&&"function"==typeof te.ownKeys?te.ownKeys:Object.getOwnPropertySymbols?function(ee){return Object.getOwnPropertyNames(ee).concat(Object.getOwnPropertySymbols(ee))}:function(ee){return Object.getOwnPropertyNames(ee)};var w=Number.isNaN||function(ee){return ee!=ee};function S(){S.init.call(this)}Qe.exports=S,Qe.exports.once=function $(J,ee){return new Promise(function(ie,ge){function ae(Te){J.removeListener(ee,Me),ge(Te)}function Me(){"function"==typeof J.removeListener&&J.removeListener("error",ae),ie([].slice.call(arguments))}Q(J,ee,Me,{once:!0}),"error"!==ee&&function j(J,ee,ie){"function"==typeof J.on&&Q(J,"error",ee,ie)}(J,ae,{once:!0})})},S.EventEmitter=S,S.prototype._events=void 0,S.prototype._eventsCount=0,S.prototype._maxListeners=void 0;var l=10;function x(J){if("function"!=typeof J)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof J)}function f(J){return void 0===J._maxListeners?S.defaultMaxListeners:J._maxListeners}function I(J,ee,ie,ge){var ae,Me,Te;if(x(ie),void 0===(Me=J._events)?(Me=J._events=Object.create(null),J._eventsCount=0):(void 0!==Me.newListener&&(J.emit("newListener",ee,ie.listener?ie.listener:ie),Me=J._events),Te=Me[ee]),void 0===Te)Te=Me[ee]=ie,++J._eventsCount;else if("function"==typeof Te?Te=Me[ee]=ge?[ie,Te]:[Te,ie]:ge?Te.unshift(ie):Te.push(ie),(ae=f(J))>0&&Te.length>ae&&!Te.warned){Te.warned=!0;var de=new Error("Possible EventEmitter memory leak detected. "+Te.length+" "+String(ee)+" listeners added. Use emitter.setMaxListeners() to increase limit");de.name="MaxListenersExceededWarning",de.emitter=J,de.type=ee,de.count=Te.length,function t(J){console&&console.warn&&console.warn(J)}(de)}return J}function d(){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 T(J,ee,ie){var ge={fired:!1,wrapFn:void 0,target:J,type:ee,listener:ie},ae=d.bind(ge);return ae.listener=ie,ge.wrapFn=ae,ae}function y(J,ee,ie){var ge=J._events;if(void 0===ge)return[];var ae=ge[ee];return void 0===ae?[]:"function"==typeof ae?ie?[ae.listener||ae]:[ae]:ie?function W(J){for(var ee=new Array(J.length),ie=0;ie0&&(Te=ie[0]),Te instanceof Error)throw Te;var de=new Error("Unhandled error."+(Te?" ("+Te.message+")":""));throw de.context=Te,de}var D=Me[ee];if(void 0===D)return!1;if("function"==typeof D)g(D,this,ie);else{var n=D.length,c=R(D,n);for(ge=0;ge=0;Te--)if(ge[Te]===ie||ge[Te].listener===ie){de=ge[Te].listener,Me=Te;break}if(Me<0)return this;0===Me?ge.shift():function z(J,ee){for(;ee+1=0;ae--)this.removeListener(ee,ie[ae]);return this},S.prototype.listeners=function(ee){return y(this,ee,!0)},S.prototype.rawListeners=function(ee){return y(this,ee,!1)},S.listenerCount=function(J,ee){return"function"==typeof J.listenerCount?J.listenerCount(ee):F.call(J,ee)},S.prototype.listenerCount=F,S.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},592:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(4725);Qe.exports=function w(S,l,x,f){if(e.isBuffer(S)||(S=e.from(S,"binary")),l&&(e.isBuffer(l)||(l=e.from(l,"binary")),8!==l.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var I=x/8,d=e.alloc(I),T=e.alloc(f||0),y=e.alloc(0);I>0||f>0;){var F=new t;F.update(y),F.update(S),l&&F.update(l),y=F.digest();var R=0;if(I>0){var z=d.length-I;R=Math.min(I,y.length),y.copy(d,z,0,R),I-=R}if(R0){var W=T.length-f,$=Math.min(f,y.length-R);y.copy(T,W,R,R+$),f-=$}}return y.fill(0),{key:d,iv:T}}},3686:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7045).Transform;function l(x){t.call(this),this._block=e.allocUnsafe(x),this._blockSize=x,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}g(1993)(l,t),l.prototype._transform=function(x,f,I){var d=null;try{this.update(x,f)}catch(T){d=T}I(d)},l.prototype._flush=function(x){var f=null;try{this.push(this.digest())}catch(I){f=I}x(f)},l.prototype.update=function(x,f){if(function S(x,f){if(!e.isBuffer(x)&&"string"!=typeof x)throw new TypeError(f+" must be a string or a buffer")}(x,"Data"),this._finalized)throw new Error("Digest already called");e.isBuffer(x)||(x=e.from(x,f));for(var I=this._block,d=0;this._blockOffset+x.length-d>=this._blockSize;){for(var T=this._blockOffset;T0;++y)this._length[y]+=F,(F=this._length[y]/4294967296|0)>0&&(this._length[y]-=4294967296*F);return this},l.prototype._update=function(){throw new Error("_update is not implemented")},l.prototype.digest=function(x){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var f=this._digest();void 0!==x&&(f=f.toString(x)),this._block.fill(0),this._blockOffset=0;for(var I=0;I<4;++I)this._length[I]=0;return f},l.prototype._digest=function(){throw new Error("_digest is not implemented")},Qe.exports=l},2529:(Qe,te,g)=>{var e=te;e.utils=g(8283),e.common=g(2901),e.sha=g(8528),e.ripemd=g(5283),e.hmac=g(7163),e.sha1=e.sha.sha1,e.sha256=e.sha.sha256,e.sha224=e.sha.sha224,e.sha384=e.sha.sha384,e.sha512=e.sha.sha512,e.ripemd160=e.ripemd.ripemd160},2901:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(9210);function w(){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}te.BlockHash=w,w.prototype.update=function(l,x){if(l=e.toArray(l,x),this.pending=this.pending?this.pending.concat(l):l,this.pendingTotal+=l.length,this.pending.length>=this._delta8){var f=(l=this.pending).length%this._delta8;this.pending=l.slice(l.length-f,l.length),0===this.pending.length&&(this.pending=null),l=e.join32(l,0,l.length-f,this.endian);for(var I=0;I>>24&255,I[d++]=l>>>16&255,I[d++]=l>>>8&255,I[d++]=255&l}else for(I[d++]=255&l,I[d++]=l>>>8&255,I[d++]=l>>>16&255,I[d++]=l>>>24&255,I[d++]=0,I[d++]=0,I[d++]=0,I[d++]=0,T=8;T{"use strict";var e=g(8283),t=g(9210);function w(S,l,x){if(!(this instanceof w))return new w(S,l,x);this.Hash=S,this.blockSize=S.blockSize/8,this.outSize=S.outSize/8,this.inner=null,this.outer=null,this._init(e.toArray(l,x))}Qe.exports=w,w.prototype._init=function(l){l.length>this.blockSize&&(l=(new this.Hash).update(l).digest()),t(l.length<=this.blockSize);for(var x=l.length;x{"use strict";var e=g(8283),t=g(2901),w=e.rotl32,S=e.sum32,l=e.sum32_3,x=e.sum32_4,f=t.BlockHash;function I(){if(!(this instanceof I))return new I;f.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function d($,j,Q,J){return $<=15?j^Q^J:$<=31?j&Q|~j&J:$<=47?(j|~Q)^J:$<=63?j&J|Q&~J:j^(Q|~J)}function y($){return $<=15?1352829926:$<=31?1548603684:$<=47?1836072691:$<=63?2053994217:0}e.inherits(I,f),te.ripemd160=I,I.blockSize=512,I.outSize=160,I.hmacStrength=192,I.padLength=64,I.prototype._update=function(j,Q){for(var J=this.h[0],ee=this.h[1],ie=this.h[2],ge=this.h[3],ae=this.h[4],Me=J,Te=ee,de=ie,D=ge,n=ae,c=0;c<80;c++){var m=S(w(x(J,d(c,ee,ie,ge),j[F[c]+Q],($=c)<=15?0:$<=31?1518500249:$<=47?1859775393:$<=63?2400959708:2840853838),z[c]),ae);J=ae,ae=ge,ge=w(ie,10),ie=ee,ee=m,m=S(w(x(Me,d(79-c,Te,de,D),j[R[c]+Q],y(c)),W[c]),n),Me=n,n=D,D=w(de,10),de=Te,Te=m}var $;m=l(this.h[1],ie,D),this.h[1]=l(this.h[2],ge,n),this.h[2]=l(this.h[3],ae,Me),this.h[3]=l(this.h[4],J,Te),this.h[4]=l(this.h[0],ee,de),this.h[0]=m},I.prototype._digest=function(j){return"hex"===j?e.toHex32(this.h,"little"):e.split32(this.h,"little")};var F=[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=[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],z=[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],W=[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]},8528:(Qe,te,g)=>{"use strict";te.sha1=g(3468),te.sha224=g(5563),te.sha256=g(7138),te.sha384=g(3898),te.sha512=g(827)},3468:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(3161),S=e.rotl32,l=e.sum32,x=e.sum32_5,f=w.ft_1,I=t.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function T(){if(!(this instanceof T))return new T;I.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}e.inherits(T,I),Qe.exports=T,T.blockSize=512,T.outSize=160,T.hmacStrength=80,T.padLength=64,T.prototype._update=function(F,R){for(var z=this.W,W=0;W<16;W++)z[W]=F[R+W];for(;W{"use strict";var e=g(8283),t=g(7138);function w(){if(!(this instanceof w))return new w;t.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}e.inherits(w,t),Qe.exports=w,w.blockSize=512,w.outSize=224,w.hmacStrength=192,w.padLength=64,w.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,7),"big"):e.split32(this.h.slice(0,7),"big")}},7138:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(3161),S=g(9210),l=e.sum32,x=e.sum32_4,f=e.sum32_5,I=w.ch32,d=w.maj32,T=w.s0_256,y=w.s1_256,F=w.g0_256,R=w.g1_256,z=t.BlockHash,W=[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 $(){if(!(this instanceof $))return new $;z.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=W,this.W=new Array(64)}e.inherits($,z),Qe.exports=$,$.blockSize=512,$.outSize=256,$.hmacStrength=192,$.padLength=64,$.prototype._update=function(Q,J){for(var ee=this.W,ie=0;ie<16;ie++)ee[ie]=Q[J+ie];for(;ie{"use strict";var e=g(8283),t=g(827);function w(){if(!(this instanceof w))return new w;t.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}e.inherits(w,t),Qe.exports=w,w.blockSize=1024,w.outSize=384,w.hmacStrength=192,w.padLength=128,w.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,12),"big"):e.split32(this.h.slice(0,12),"big")}},827:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(9210),S=e.rotr64_hi,l=e.rotr64_lo,x=e.shr64_hi,f=e.shr64_lo,I=e.sum64,d=e.sum64_hi,T=e.sum64_lo,y=e.sum64_4_hi,F=e.sum64_4_lo,R=e.sum64_5_hi,z=e.sum64_5_lo,W=t.BlockHash,$=[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 j(){if(!(this instanceof j))return new j;W.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=$,this.W=new Array(160)}function Q(m,h,C,k,L){var _=m&C^~m&L;return _<0&&(_+=4294967296),_}function J(m,h,C,k,L,_){var r=h&k^~h&_;return r<0&&(r+=4294967296),r}function ee(m,h,C,k,L){var _=m&C^m&L^C&L;return _<0&&(_+=4294967296),_}function ie(m,h,C,k,L,_){var r=h&k^h&_^k&_;return r<0&&(r+=4294967296),r}function ge(m,h){var _=S(m,h,28)^S(h,m,2)^S(h,m,7);return _<0&&(_+=4294967296),_}function ae(m,h){var _=l(m,h,28)^l(h,m,2)^l(h,m,7);return _<0&&(_+=4294967296),_}function Me(m,h){var _=S(m,h,14)^S(m,h,18)^S(h,m,9);return _<0&&(_+=4294967296),_}function Te(m,h){var _=l(m,h,14)^l(m,h,18)^l(h,m,9);return _<0&&(_+=4294967296),_}function de(m,h){var _=S(m,h,1)^S(m,h,8)^x(m,h,7);return _<0&&(_+=4294967296),_}function D(m,h){var _=l(m,h,1)^l(m,h,8)^f(m,h,7);return _<0&&(_+=4294967296),_}function n(m,h){var _=S(m,h,19)^S(h,m,29)^x(m,h,6);return _<0&&(_+=4294967296),_}function c(m,h){var _=l(m,h,19)^l(h,m,29)^f(m,h,6);return _<0&&(_+=4294967296),_}e.inherits(j,W),Qe.exports=j,j.blockSize=1024,j.outSize=512,j.hmacStrength=192,j.padLength=128,j.prototype._prepareBlock=function(h,C){for(var k=this.W,L=0;L<32;L++)k[L]=h[C+L];for(;L{"use strict";var t=g(8283).rotr32;function S(y,F,R){return y&F^~y&R}function l(y,F,R){return y&F^y&R^F&R}function x(y,F,R){return y^F^R}te.ft_1=function w(y,F,R,z){return 0===y?S(F,R,z):1===y||3===y?x(F,R,z):2===y?l(F,R,z):void 0},te.ch32=S,te.maj32=l,te.p32=x,te.s0_256=function f(y){return t(y,2)^t(y,13)^t(y,22)},te.s1_256=function I(y){return t(y,6)^t(y,11)^t(y,25)},te.g0_256=function d(y){return t(y,7)^t(y,18)^y>>>3},te.g1_256=function T(y){return t(y,17)^t(y,19)^y>>>10}},8283:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993);function w(c,m){return!(55296!=(64512&c.charCodeAt(m))||m<0||m+1>=c.length)&&56320==(64512&c.charCodeAt(m+1))}function x(c){return(c>>>24|c>>>8&65280|c<<8&16711680|(255&c)<<24)>>>0}function I(c){return 1===c.length?"0"+c:c}function d(c){return 7===c.length?"0"+c:6===c.length?"00"+c:5===c.length?"000"+c:4===c.length?"0000"+c:3===c.length?"00000"+c:2===c.length?"000000"+c:1===c.length?"0000000"+c:c}te.inherits=t,te.toArray=function S(c,m){if(Array.isArray(c))return c.slice();if(!c)return[];var h=[];if("string"==typeof c)if(m){if("hex"===m)for((c=c.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(c="0"+c),k=0;k>6|192,h[C++]=63&L|128):w(c,k)?(L=65536+((1023&L)<<10)+(1023&c.charCodeAt(++k)),h[C++]=L>>18|240,h[C++]=L>>12&63|128,h[C++]=L>>6&63|128,h[C++]=63&L|128):(h[C++]=L>>12|224,h[C++]=L>>6&63|128,h[C++]=63&L|128)}else for(k=0;k>>0;return L},te.split32=function y(c,m){for(var h=new Array(4*c.length),C=0,k=0;C>>24,h[k+1]=L>>>16&255,h[k+2]=L>>>8&255,h[k+3]=255&L):(h[k+3]=L>>>24,h[k+2]=L>>>16&255,h[k+1]=L>>>8&255,h[k]=255&L)}return h},te.rotr32=function F(c,m){return c>>>m|c<<32-m},te.rotl32=function R(c,m){return c<>>32-m},te.sum32=function z(c,m){return c+m>>>0},te.sum32_3=function W(c,m,h){return c+m+h>>>0},te.sum32_4=function $(c,m,h,C){return c+m+h+C>>>0},te.sum32_5=function j(c,m,h,C,k){return c+m+h+C+k>>>0},te.sum64=function Q(c,m,h,C){var _=C+c[m+1]>>>0;c[m]=(_>>0,c[m+1]=_},te.sum64_hi=function J(c,m,h,C){return(m+C>>>0>>0},te.sum64_lo=function ee(c,m,h,C){return m+C>>>0},te.sum64_4_hi=function ie(c,m,h,C,k,L,_,r){var v=0,V=m;return v+=(V=V+C>>>0)>>0)>>0)>>0},te.sum64_4_lo=function ge(c,m,h,C,k,L,_,r){return m+C+L+r>>>0},te.sum64_5_hi=function ae(c,m,h,C,k,L,_,r,v,V){var N=0,ne=m;return N+=(ne=ne+C>>>0)>>0)>>0)>>0)>>0},te.sum64_5_lo=function Me(c,m,h,C,k,L,_,r,v,V){return m+C+L+r+V>>>0},te.rotr64_hi=function Te(c,m,h){return(m<<32-h|c>>>h)>>>0},te.rotr64_lo=function de(c,m,h){return(c<<32-h|m>>>h)>>>0},te.shr64_hi=function D(c,m,h){return c>>>h},te.shr64_lo=function n(c,m,h){return(c<<32-h|m>>>h)>>>0}},3556:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(1832),w=g(9210);function S(l){if(!(this instanceof S))return new S(l);this.hash=l.hash,this.predResist=!!l.predResist,this.outLen=this.hash.outSize,this.minEntropy=l.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var x=t.toArray(l.entropy,l.entropyEnc||"hex"),f=t.toArray(l.nonce,l.nonceEnc||"hex"),I=t.toArray(l.pers,l.persEnc||"hex");w(x.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(x,f,I)}Qe.exports=S,S.prototype._init=function(x,f,I){var d=x.concat(f).concat(I);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var T=0;T=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(x.concat(I||[])),this._reseed=1},S.prototype.generate=function(x,f,I,d){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof f&&(d=I,I=f,f=null),I&&(I=t.toArray(I,d||"hex"),this._update(I));for(var T=[];T.length{te.read=function(g,e,t,w,S){var l,x,f=8*S-w-1,I=(1<>1,T=-7,y=t?S-1:0,F=t?-1:1,R=g[e+y];for(y+=F,l=R&(1<<-T)-1,R>>=-T,T+=f;T>0;l=256*l+g[e+y],y+=F,T-=8);for(x=l&(1<<-T)-1,l>>=-T,T+=w;T>0;x=256*x+g[e+y],y+=F,T-=8);if(0===l)l=1-d;else{if(l===I)return x?NaN:1/0*(R?-1:1);x+=Math.pow(2,w),l-=d}return(R?-1:1)*x*Math.pow(2,l-w)},te.write=function(g,e,t,w,S,l){var x,f,I,d=8*l-S-1,T=(1<>1,F=23===S?Math.pow(2,-24)-Math.pow(2,-77):0,R=w?0:l-1,z=w?1:-1,W=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(f=isNaN(e)?1:0,x=T):(x=Math.floor(Math.log(e)/Math.LN2),e*(I=Math.pow(2,-x))<1&&(x--,I*=2),(e+=x+y>=1?F/I:F*Math.pow(2,1-y))*I>=2&&(x++,I/=2),x+y>=T?(f=0,x=T):x+y>=1?(f=(e*I-1)*Math.pow(2,S),x+=y):(f=e*Math.pow(2,y-1)*Math.pow(2,S),x=0));S>=8;g[t+R]=255&f,R+=z,f/=256,S-=8);for(x=x<0;g[t+R]=255&x,R+=z,x/=256,d-=8);g[t+R-z]|=128*W}},1993:Qe=>{Qe.exports="function"==typeof Object.create?function(g,e){e&&(g.super_=e,g.prototype=Object.create(e.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}))}:function(g,e){if(e){g.super_=e;var t=function(){};t.prototype=e.prototype,g.prototype=new t,g.prototype.constructor=g}}},53:Qe=>{var te={}.toString;Qe.exports=Array.isArray||function(g){return"[object Array]"==te.call(g)}},4725:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(3686),w=g(7054).Buffer,S=new Array(16);function l(){t.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function x(y,F){return y<>>32-F}function f(y,F,R,z,W,$,j){return x(y+(F&R|~F&z)+W+$|0,j)+F|0}function I(y,F,R,z,W,$,j){return x(y+(F&z|R&~z)+W+$|0,j)+F|0}function d(y,F,R,z,W,$,j){return x(y+(F^R^z)+W+$|0,j)+F|0}function T(y,F,R,z,W,$,j){return x(y+(R^(F|~z))+W+$|0,j)+F|0}e(l,t),l.prototype._update=function(){for(var y=S,F=0;F<16;++F)y[F]=this._block.readInt32LE(4*F);var R=this._a,z=this._b,W=this._c,$=this._d;R=f(R,z,W,$,y[0],3614090360,7),$=f($,R,z,W,y[1],3905402710,12),W=f(W,$,R,z,y[2],606105819,17),z=f(z,W,$,R,y[3],3250441966,22),R=f(R,z,W,$,y[4],4118548399,7),$=f($,R,z,W,y[5],1200080426,12),W=f(W,$,R,z,y[6],2821735955,17),z=f(z,W,$,R,y[7],4249261313,22),R=f(R,z,W,$,y[8],1770035416,7),$=f($,R,z,W,y[9],2336552879,12),W=f(W,$,R,z,y[10],4294925233,17),z=f(z,W,$,R,y[11],2304563134,22),R=f(R,z,W,$,y[12],1804603682,7),$=f($,R,z,W,y[13],4254626195,12),W=f(W,$,R,z,y[14],2792965006,17),R=I(R,z=f(z,W,$,R,y[15],1236535329,22),W,$,y[1],4129170786,5),$=I($,R,z,W,y[6],3225465664,9),W=I(W,$,R,z,y[11],643717713,14),z=I(z,W,$,R,y[0],3921069994,20),R=I(R,z,W,$,y[5],3593408605,5),$=I($,R,z,W,y[10],38016083,9),W=I(W,$,R,z,y[15],3634488961,14),z=I(z,W,$,R,y[4],3889429448,20),R=I(R,z,W,$,y[9],568446438,5),$=I($,R,z,W,y[14],3275163606,9),W=I(W,$,R,z,y[3],4107603335,14),z=I(z,W,$,R,y[8],1163531501,20),R=I(R,z,W,$,y[13],2850285829,5),$=I($,R,z,W,y[2],4243563512,9),W=I(W,$,R,z,y[7],1735328473,14),R=d(R,z=I(z,W,$,R,y[12],2368359562,20),W,$,y[5],4294588738,4),$=d($,R,z,W,y[8],2272392833,11),W=d(W,$,R,z,y[11],1839030562,16),z=d(z,W,$,R,y[14],4259657740,23),R=d(R,z,W,$,y[1],2763975236,4),$=d($,R,z,W,y[4],1272893353,11),W=d(W,$,R,z,y[7],4139469664,16),z=d(z,W,$,R,y[10],3200236656,23),R=d(R,z,W,$,y[13],681279174,4),$=d($,R,z,W,y[0],3936430074,11),W=d(W,$,R,z,y[3],3572445317,16),z=d(z,W,$,R,y[6],76029189,23),R=d(R,z,W,$,y[9],3654602809,4),$=d($,R,z,W,y[12],3873151461,11),W=d(W,$,R,z,y[15],530742520,16),R=T(R,z=d(z,W,$,R,y[2],3299628645,23),W,$,y[0],4096336452,6),$=T($,R,z,W,y[7],1126891415,10),W=T(W,$,R,z,y[14],2878612391,15),z=T(z,W,$,R,y[5],4237533241,21),R=T(R,z,W,$,y[12],1700485571,6),$=T($,R,z,W,y[3],2399980690,10),W=T(W,$,R,z,y[10],4293915773,15),z=T(z,W,$,R,y[1],2240044497,21),R=T(R,z,W,$,y[8],1873313359,6),$=T($,R,z,W,y[15],4264355552,10),W=T(W,$,R,z,y[6],2734768916,15),z=T(z,W,$,R,y[13],1309151649,21),R=T(R,z,W,$,y[4],4149444226,6),$=T($,R,z,W,y[11],3174756917,10),W=T(W,$,R,z,y[2],718787259,15),z=T(z,W,$,R,y[9],3951481745,21),this._a=this._a+R|0,this._b=this._b+z|0,this._c=this._c+W|0,this._d=this._d+$|0},l.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=w.allocUnsafe(16);return y.writeInt32LE(this._a,0),y.writeInt32LE(this._b,4),y.writeInt32LE(this._c,8),y.writeInt32LE(this._d,12),y},Qe.exports=l},3459:(Qe,te,g)=>{var e=g(7223),t=g(5294);function w(S){this.rand=S||new t.Rand}Qe.exports=w,w.create=function(l){return new w(l)},w.prototype._randbelow=function(l){var x=l.bitLength(),f=Math.ceil(x/8);do{var I=new e(this.rand.generate(f))}while(I.cmp(l)>=0);return I},w.prototype._randrange=function(l,x){var f=x.sub(l);return l.add(this._randbelow(f))},w.prototype.test=function(l,x,f){var I=l.bitLength(),d=e.mont(l),T=new e(1).toRed(d);x||(x=Math.max(1,I/48|0));for(var y=l.subn(1),F=0;!y.testn(F);F++);for(var R=l.shrn(F),z=y.toRed(d);x>0;x--){var $=this._randrange(new e(2),y);f&&f($);var j=$.toRed(d).redPow(R);if(0!==j.cmp(T)&&0!==j.cmp(z)){for(var Q=1;Q0;x--){var z=this._randrange(new e(2),T),W=l.gcd(z);if(0!==W.cmpn(1))return W;var $=z.toRed(I).redPow(F);if(0!==$.cmp(d)&&0!==$.cmp(R)){for(var j=1;j=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},9210:Qe=>{function te(g,e){if(!g)throw new Error(e||"Assertion failed")}Qe.exports=te,te.equal=function(e,t,w){if(e!=t)throw new Error(w||"Assertion failed: "+e+" != "+t)}},1832:(Qe,te)=>{"use strict";var g=te;function t(S){return 1===S.length?"0"+S:S}function w(S){for(var l="",x=0;x>8,T=255&I;d?x.push(d,T):x.push(T)}return x},g.zero2=t,g.toHex=w,g.encode=function(l,x){return"hex"===x?w(l):l}},1264:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(4478);Object.keys(e).forEach(function(t){"default"!==t&&Object.defineProperty(te,t,{enumerable:!0,get:function(){return e[t]}})})},3138:(Qe,te,g)=>{"use strict";var e=g(1990);te.certificate=g(4772);var t=e.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())});te.RSAPrivateKey=t;var w=e.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});te.RSAPublicKey=w;var S=e.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())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())});te.PublicKey=l;var x=e.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(S),this.key("subjectPrivateKey").octstr())});te.PrivateKey=x;var f=e.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())});te.EncryptedPrivateKey=f;var I=e.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())});te.DSAPrivateKey=I,te.DSAparam=e.define("DSAparam",function(){this.int()});var d=e.define("ECParameters",function(){this.choice({namedCurve:this.objid()})}),T=e.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(d),this.key("publicKey").optional().explicit(1).bitstr())});te.ECPrivateKey=T,te.signature=e.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},4772:(Qe,te,g)=>{"use strict";var e=g(1990),t=e.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),w=e.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),S=e.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())}),x=e.define("RelativeDistinguishedName",function(){this.setof(w)}),f=e.define("RDNSequence",function(){this.seqof(x)}),I=e.define("Name",function(){this.choice({rdnSequence:this.use(f)})}),d=e.define("Validity",function(){this.seq().obj(this.key("notBefore").use(t),this.key("notAfter").use(t))}),T=e.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),y=e.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(S),this.key("issuer").use(I),this.key("validity").use(d),this.key("subject").use(I),this.key("subjectPublicKeyInfo").use(l),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(T).optional())}),F=e.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(y),this.key("signatureAlgorithm").use(S),this.key("signatureValue").bitstr())});Qe.exports=F},9472:(Qe,te,g)=>{"use strict";var e=/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,t=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,w=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,S=g(592),l=g(3388),x=g(7054).Buffer;Qe.exports=function(f,I){var y,d=f.toString(),T=d.match(e);if(T){var R="aes"+T[1],z=x.from(T[2],"hex"),W=x.from(T[3].replace(/[\r\n]/g,""),"base64"),$=S(I,z.slice(0,8),parseInt(T[1],10)).key,j=[],Q=l.createDecipheriv(R,$,z);j.push(Q.update(W)),j.push(Q.final()),y=x.concat(j)}else{var F=d.match(w);y=x.from(F[2].replace(/[\r\n]/g,""),"base64")}return{tag:d.match(t)[1],data:y}}},5667:(Qe,te,g)=>{"use strict";var e=g(3138),t=g(5579),w=g(9472),S=g(3388),l=g(3397),x=g(7054).Buffer;function I(d){var T;"object"==typeof d&&!x.isBuffer(d)&&(T=d.passphrase,d=d.key),"string"==typeof d&&(d=x.from(d));var z,W,y=w(d,T),F=y.tag,R=y.data;switch(F){case"CERTIFICATE":W=e.certificate.decode(R,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(W||(W=e.PublicKey.decode(R,"der")),z=W.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPublicKey.decode(W.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return W.subjectPrivateKey=W.subjectPublicKey,{type:"ec",data:W};case"1.2.840.10040.4.1":return W.algorithm.params.pub_key=e.DSAparam.decode(W.subjectPublicKey.data,"der"),{type:"dsa",data:W.algorithm.params};default:throw new Error("unknown key id "+z)}case"ENCRYPTED PRIVATE KEY":R=function f(d,T){var y=d.algorithm.decrypt.kde.kdeparams.salt,F=parseInt(d.algorithm.decrypt.kde.kdeparams.iters.toString(),10),R=t[d.algorithm.decrypt.cipher.algo.join(".")],z=d.algorithm.decrypt.cipher.iv,W=d.subjectPrivateKey,$=parseInt(R.split("-")[1],10)/8,j=l.pbkdf2Sync(T,y,F,$,"sha1"),Q=S.createDecipheriv(R,j,z),J=[];return J.push(Q.update(W)),J.push(Q.final()),x.concat(J)}(R=e.EncryptedPrivateKey.decode(R,"der"),T);case"PRIVATE KEY":switch(z=(W=e.PrivateKey.decode(R,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPrivateKey.decode(W.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:W.algorithm.curve,privateKey:e.ECPrivateKey.decode(W.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return W.algorithm.params.priv_key=e.DSAparam.decode(W.subjectPrivateKey,"der"),{type:"dsa",params:W.algorithm.params};default:throw new Error("unknown key id "+z)}case"RSA PUBLIC KEY":return e.RSAPublicKey.decode(R,"der");case"RSA PRIVATE KEY":return e.RSAPrivateKey.decode(R,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:e.DSAPrivateKey.decode(R,"der")};case"EC PRIVATE KEY":return{curve:(R=e.ECPrivateKey.decode(R,"der")).parameters.value,privateKey:R.privateKey};default:throw new Error("unknown key type "+F)}}I.signature=e.signature,Qe.exports=I},3397:(Qe,te,g)=>{te.pbkdf2=g(2685),te.pbkdf2Sync=g(9111)},2685:(Qe,te,g)=>{var x,y,e=g(7054).Buffer,t=g(6111),w=g(5392),S=g(9111),l=g(6643),f=global.crypto&&global.crypto.subtle,I={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"},d=[];function F(){return y||(y=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function R(W,$,j,Q,J){return f.importKey("raw",W,{name:"PBKDF2"},!1,["deriveBits"]).then(function(ee){return f.deriveBits({name:"PBKDF2",salt:$,iterations:j,hash:{name:J}},ee,Q<<3)}).then(function(ee){return e.from(ee)})}Qe.exports=function(W,$,j,Q,J,ee){"function"==typeof J&&(ee=J,J=void 0);var ie=I[(J=J||"sha1").toLowerCase()];if(ie&&"function"==typeof global.Promise){if(t(j,Q),W=l(W,w,"Password"),$=l($,w,"Salt"),"function"!=typeof ee)throw new Error("No callback provided to pbkdf2");!function z(W,$){W.then(function(j){F()(function(){$(null,j)})},function(j){F()(function(){$(j)})})}(function T(W){if(global.process&&!global.process.browser||!f||!f.importKey||!f.deriveBits)return Promise.resolve(!1);if(void 0!==d[W])return d[W];var $=R(x=x||e.alloc(8),x,10,128,W).then(function(){return!0}).catch(function(){return!1});return d[W]=$,$}(ie).then(function(ge){return ge?R(W,$,j,Q,ie):S(W,$,j,Q,J)}),ee)}else F()(function(){var ge;try{ge=S(W,$,j,Q,J)}catch(ae){return ee(ae)}ee(null,ge)})}},5392:Qe=>{var te;te=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",Qe.exports=te},6111:Qe=>{var te=Math.pow(2,30)-1;Qe.exports=function(g,e){if("number"!=typeof g)throw new TypeError("Iterations not a number");if(g<0)throw new TypeError("Bad iterations");if("number"!=typeof e)throw new TypeError("Key length not a number");if(e<0||e>te||e!=e)throw new TypeError("Bad key length")}},9111:(Qe,te,g)=>{var e=g(3407),t=g(6636),w=g(5443),S=g(7054).Buffer,l=g(6111),x=g(5392),f=g(6643),I=S.alloc(128),d={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function T(R,z,W){var $=function y(R){return"rmd160"===R||"ripemd160"===R?function W($){return(new t).update($).digest()}:"md5"===R?e:function z($){return w(R).update($).digest()}}(R),j="sha512"===R||"sha384"===R?128:64;z.length>j?z=$(z):z.length{var e=g(7054).Buffer;Qe.exports=function(t,w,S){if(e.isBuffer(t))return t;if("string"==typeof t)return e.from(t,w);if(ArrayBuffer.isView(t))return e.from(t.buffer);throw new TypeError(S+" must be a string, a Buffer, a typed array or a DataView")}},9656:Qe=>{"use strict";Qe.exports=typeof process>"u"||!process.version||0===process.version.indexOf("v0.")||0===process.version.indexOf("v1.")&&0!==process.version.indexOf("v1.8.")?{nextTick:function te(g,e,t,w){if("function"!=typeof g)throw new TypeError('"callback" argument must be a function');var l,x,S=arguments.length;switch(S){case 0:case 1:return process.nextTick(g);case 2:return process.nextTick(function(){g.call(null,e)});case 3:return process.nextTick(function(){g.call(null,e,t)});case 4:return process.nextTick(function(){g.call(null,e,t,w)});default:for(l=new Array(S-1),x=0;x{te.publicEncrypt=g(7267),te.privateDecrypt=g(8613),te.privateEncrypt=function(t,w){return te.publicEncrypt(t,w,!0)},te.publicDecrypt=function(t,w){return te.privateDecrypt(t,w,!0)}},715:(Qe,te,g)=>{var e=g(7211),t=g(7054).Buffer;function w(S){var l=t.allocUnsafe(4);return l.writeUInt32BE(S,0),l}Qe.exports=function(S,l){for(var I,x=t.alloc(0),f=0;x.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","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"],y=[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],F=[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(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},8613:(Qe,te,g)=>{var e=g(5667),t=g(715),w=g(7196),S=g(6508),l=g(4105),x=g(7211),f=g(568),I=g(7054).Buffer;Qe.exports=function(R,z,W){var $;$=R.padding?R.padding:W?1:4;var J,j=e(R),Q=j.modulus.byteLength();if(z.length>Q||new S(z).cmp(j.modulus)>=0)throw new Error("decryption error");J=W?f(new S(z),j):l(z,j);var ee=I.alloc(Q-J.length);if(J=I.concat([ee,J],Q),4===$)return function d(F,R){var z=F.modulus.byteLength(),W=x("sha1").update(I.alloc(0)).digest(),$=W.length;if(0!==R[0])throw new Error("decryption error");var j=R.slice(1,$+1),Q=R.slice($+1),J=w(j,t(Q,$)),ee=w(Q,t(J,z-$-1));if(function y(F,R){F=I.from(F),R=I.from(R);var z=0,W=F.length;F.length!==R.length&&(z++,W=Math.min(F.length,R.length));for(var $=-1;++$=R.length){j++;break}var Q=R.slice(2,$-1);if(("0002"!==W.toString("hex")&&!z||"0001"!==W.toString("hex")&&z)&&j++,Q.length<8&&j++,j)throw new Error("decryption error");return R.slice($)}(0,J,W);if(3===$)return J;throw new Error("unknown padding")}},7267:(Qe,te,g)=>{var e=g(5667),t=g(3342),w=g(7211),S=g(715),l=g(7196),x=g(6508),f=g(568),I=g(4105),d=g(7054).Buffer;Qe.exports=function(z,W,$){var j;j=z.padding?z.padding:$?1:4;var J,Q=e(z);if(4===j)J=function T(R,z){var W=R.modulus.byteLength(),$=z.length,j=w("sha1").update(d.alloc(0)).digest(),Q=j.length,J=2*Q;if($>W-J-2)throw new Error("message too long");var ee=d.alloc(W-$-J-2),ie=W-Q-1,ge=t(Q),ae=l(d.concat([j,ee,d.alloc(1,1),z],ie),S(ge,ie)),Me=l(ge,S(ae,Q));return new x(d.concat([d.alloc(1),Me,ae],W))}(Q,W);else if(1===j)J=function y(R,z,W){var Q,$=z.length,j=R.modulus.byteLength();if($>j-11)throw new Error("message too long");return Q=W?d.alloc(j-$-3,255):function F(R){for(var Q,z=d.allocUnsafe(R),W=0,$=t(2*R),j=0;W=0)throw new Error("data too long for modulus")}return $?I(J,Q):f(J,Q)}},568:(Qe,te,g)=>{var e=g(6508),t=g(7054).Buffer;Qe.exports=function w(S,l){return t.from(S.toRed(e.mont(l.modulus)).redPow(new e(l.publicExponent)).fromRed().toArray())}},7196:Qe=>{Qe.exports=function(g,e){for(var t=g.length,w=-1;++w{const e=g(2836),t=g(9460),w=g(7030),S=g(6511);function l(x,f,I,d,T){const y=[].slice.call(arguments,1),F=y.length,R="function"==typeof y[F-1];if(!R&&!e())throw new Error("Callback required as last argument");if(!R){if(F<1)throw new Error("Too few arguments provided");return 1===F?(I=f,f=d=void 0):2===F&&!f.getContext&&(d=I,I=f,f=void 0),new Promise(function(z,W){try{const $=t.create(I,d);z(x($,f,d))}catch($){W($)}})}if(F<2)throw new Error("Too few arguments provided");2===F?(T=I,I=f,f=d=void 0):3===F&&(f.getContext&&typeof T>"u"?(T=d,d=void 0):(T=d,d=I,I=f,f=void 0));try{const z=t.create(I,d);T(null,x(z,f,d))}catch(z){T(z)}}te.create=t.create,te.toCanvas=l.bind(null,w.render),te.toDataURL=l.bind(null,w.renderToDataURL),te.toString=l.bind(null,function(x,f,I){return S.render(x,I)})},2836:Qe=>{Qe.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6214:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getRowColCoords=function(w){if(1===w)return[];const S=Math.floor(w/7)+2,l=e(w),x=145===l?26:2*Math.ceil((l-13)/(2*S-2)),f=[l-7];for(let I=1;I{const e=g(1677),t=["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 w(S){this.mode=e.ALPHANUMERIC,this.data=S}w.getBitsLength=function(l){return 11*Math.floor(l/2)+l%2*6},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(l){let x;for(x=0;x+2<=this.data.length;x+=2){let f=45*t.indexOf(this.data[x]);f+=t.indexOf(this.data[x+1]),l.put(f,11)}this.data.length%2&&l.put(t.indexOf(this.data[x]),6)},Qe.exports=w},4662:Qe=>{function te(){this.buffer=[],this.length=0}te.prototype={get:function(g){const e=Math.floor(g/8);return 1==(this.buffer[e]>>>7-g%8&1)},put:function(g,e){for(let t=0;t>>e-t-1&1))},getLengthInBits:function(){return this.length},putBit:function(g){const e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),g&&(this.buffer[e]|=128>>>this.length%8),this.length++}},Qe.exports=te},8322:Qe=>{function te(g){if(!g||g<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=g,this.data=new Uint8Array(g*g),this.reservedBit=new Uint8Array(g*g)}te.prototype.set=function(g,e,t,w){const S=g*this.size+e;this.data[S]=t,w&&(this.reservedBit[S]=!0)},te.prototype.get=function(g,e){return this.data[g*this.size+e]},te.prototype.xor=function(g,e,t){this.data[g*this.size+e]^=t},te.prototype.isReserved=function(g,e){return this.reservedBit[g*this.size+e]},Qe.exports=te},4969:(Qe,te,g)=>{const e=g(3174),t=g(1677);function w(S){this.mode=t.BYTE,"string"==typeof S&&(S=e(S)),this.data=new Uint8Array(S)}w.getBitsLength=function(l){return 8*l},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(S){for(let l=0,x=this.data.length;l{const e=g(7424),t=[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],w=[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];te.getBlocksCount=function(l,x){switch(x){case e.L:return t[4*(l-1)+0];case e.M:return t[4*(l-1)+1];case e.Q:return t[4*(l-1)+2];case e.H:return t[4*(l-1)+3];default:return}},te.getTotalCodewordsCount=function(l,x){switch(x){case e.L:return w[4*(l-1)+0];case e.M:return w[4*(l-1)+1];case e.Q:return w[4*(l-1)+2];case e.H:return w[4*(l-1)+3];default:return}}},7424:(Qe,te)=>{te.L={bit:1},te.M={bit:0},te.Q={bit:3},te.H={bit:2},te.isValid=function(t){return t&&typeof t.bit<"u"&&t.bit>=0&&t.bit<4},te.from=function(t,w){if(te.isValid(t))return t;try{return function g(e){if("string"!=typeof e)throw new Error("Param is not a string");switch(e.toLowerCase()){case"l":case"low":return te.L;case"m":case"medium":return te.M;case"q":case"quartile":return te.Q;case"h":case"high":return te.H;default:throw new Error("Unknown EC Level: "+e)}}(t)}catch{return w}}},6269:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getPositions=function(S){const l=e(S);return[[0,0],[l-7,0],[0,l-7]]}},6254:(Qe,te,g)=>{const e=g(9089),S=e.getBCHDigit(1335);te.getEncodedBits=function(x,f){const I=x.bit<<3|f;let d=I<<10;for(;e.getBCHDigit(d)-S>=0;)d^=1335<{const g=new Uint8Array(512),e=new Uint8Array(256);(function(){let w=1;for(let S=0;S<255;S++)g[S]=w,e[w]=S,w<<=1,256&w&&(w^=285);for(let S=255;S<512;S++)g[S]=g[S-255]})(),te.log=function(w){if(w<1)throw new Error("log("+w+")");return e[w]},te.exp=function(w){return g[w]},te.mul=function(w,S){return 0===w||0===S?0:g[e[w]+e[S]]}},3264:(Qe,te,g)=>{const e=g(1677),t=g(9089);function w(S){this.mode=e.KANJI,this.data=S}w.getBitsLength=function(l){return 13*l},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(S){let l;for(l=0;l=33088&&x<=40956)x-=33088;else{if(!(x>=57408&&x<=60351))throw new Error("Invalid SJIS character: "+this.data[l]+"\nMake sure your charset is UTF-8");x-=49472}x=192*(x>>>8&255)+(255&x),S.put(x,13)}},Qe.exports=w},3361:(Qe,te)=>{te.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function e(t,w,S){switch(t){case te.Patterns.PATTERN000:return(w+S)%2==0;case te.Patterns.PATTERN001:return w%2==0;case te.Patterns.PATTERN010:return S%3==0;case te.Patterns.PATTERN011:return(w+S)%3==0;case te.Patterns.PATTERN100:return(Math.floor(w/2)+Math.floor(S/3))%2==0;case te.Patterns.PATTERN101:return w*S%2+w*S%3==0;case te.Patterns.PATTERN110:return(w*S%2+w*S%3)%2==0;case te.Patterns.PATTERN111:return(w*S%3+(w+S)%2)%2==0;default:throw new Error("bad maskPattern:"+t)}}te.isValid=function(w){return null!=w&&""!==w&&!isNaN(w)&&w>=0&&w<=7},te.from=function(w){return te.isValid(w)?parseInt(w,10):void 0},te.getPenaltyN1=function(w){const S=w.size;let l=0,x=0,f=0,I=null,d=null;for(let T=0;T=5&&(l+=x-5+3),I=F,x=1),F=w.get(y,T),F===d?f++:(f>=5&&(l+=f-5+3),d=F,f=1)}x>=5&&(l+=x-5+3),f>=5&&(l+=f-5+3)}return l},te.getPenaltyN2=function(w){const S=w.size;let l=0;for(let x=0;x=10&&(1488===x||93===x)&&l++,f=f<<1&2047|w.get(d,I),d>=10&&(1488===f||93===f)&&l++}return 40*l},te.getPenaltyN4=function(w){let S=0;const l=w.data.length;for(let f=0;f{const e=g(377),t=g(9359);te.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},te.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},te.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},te.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},te.MIXED={bit:-1},te.getCharCountIndicator=function(l,x){if(!l.ccBits)throw new Error("Invalid mode: "+l);if(!e.isValid(x))throw new Error("Invalid version: "+x);return x>=1&&x<10?l.ccBits[0]:x<27?l.ccBits[1]:l.ccBits[2]},te.getBestModeForData=function(l){return t.testNumeric(l)?te.NUMERIC:t.testAlphanumeric(l)?te.ALPHANUMERIC:t.testKanji(l)?te.KANJI:te.BYTE},te.toString=function(l){if(l&&l.id)return l.id;throw new Error("Invalid mode")},te.isValid=function(l){return l&&l.bit&&l.ccBits},te.from=function(l,x){if(te.isValid(l))return l;try{return function w(S){if("string"!=typeof S)throw new Error("Param is not a string");switch(S.toLowerCase()){case"numeric":return te.NUMERIC;case"alphanumeric":return te.ALPHANUMERIC;case"kanji":return te.KANJI;case"byte":return te.BYTE;default:throw new Error("Unknown mode: "+S)}}(l)}catch{return x}}},6628:(Qe,te,g)=>{const e=g(1677);function t(w){this.mode=e.NUMERIC,this.data=w.toString()}t.getBitsLength=function(S){return 10*Math.floor(S/3)+(S%3?S%3*3+1:0)},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(S){let l,x,f;for(l=0;l+3<=this.data.length;l+=3)x=this.data.substr(l,3),f=parseInt(x,10),S.put(f,10);const I=this.data.length-l;I>0&&(x=this.data.substr(l),f=parseInt(x,10),S.put(f,3*I+1))},Qe.exports=t},1744:(Qe,te,g)=>{const e=g(6686);te.mul=function(w,S){const l=new Uint8Array(w.length+S.length-1);for(let x=0;x=0;){const x=l[0];for(let I=0;I{const e=g(9089),t=g(7424),w=g(4662),S=g(8322),l=g(6214),x=g(6269),f=g(3361),I=g(3677),d=g(6289),T=g(1252),y=g(6254),F=g(1677),R=g(2868);function Q(ae,Me,Te){const de=ae.size,D=y.getEncodedBits(Me,Te);let n,c;for(n=0;n<15;n++)c=1==(D>>n&1),ae.set(n<6?n:n<8?n+1:de-15+n,8,c,!0),ae.set(8,n<8?de-n-1:n<9?15-n-1+1:15-n-1,c,!0);ae.set(de-8,8,1,!0)}function ge(ae,Me,Te,de){let D;if(Array.isArray(ae))D=R.fromArray(ae);else{if("string"!=typeof ae)throw new Error("Invalid data");{let C=Me;if(!C){const k=R.rawSplit(ae);C=T.getBestVersionForData(k,Te)}D=R.fromString(ae,C||40)}}const n=T.getBestVersionForData(D,Te);if(!n)throw new Error("The amount of data is too big to be stored in a QR Code");if(Me){if(Me=0&&m<=6&&(0===h||6===h)||h>=0&&h<=6&&(0===m||6===m)||m>=2&&m<=4&&h>=2&&h<=4,!0)}}(h,Me),function W(ae){const Me=ae.size;for(let Te=8;Te=7&&function j(ae,Me){const Te=ae.size,de=T.getEncodedBits(Me);let D,n,c;for(let m=0;m<18;m++)D=Math.floor(m/3),n=m%3+Te-8-3,c=1==(de>>m&1),ae.set(D,n,c,!0),ae.set(n,D,c,!0)}(h,Me),function J(ae,Me){const Te=ae.size;let de=-1,D=Te-1,n=7,c=0;for(let m=Te-1;m>0;m-=2)for(6===m&&m--;;){for(let h=0;h<2;h++)if(!ae.isReserved(D,m-h)){let C=!1;c>>n&1)),ae.set(D,m-h,C),n--,-1===n&&(c++,n=7)}if(D+=de,D<0||Te<=D){D-=de,de=-de;break}}}(h,c),isNaN(de)&&(de=f.getBestMask(h,Q.bind(null,h,Te))),f.applyMask(de,h),Q(h,Te,de),{modules:h,version:Me,errorCorrectionLevel:Te,maskPattern:de,segments:D}}te.create=function(Me,Te){if(typeof Me>"u"||""===Me)throw new Error("No input text");let D,n,de=t.M;return typeof Te<"u"&&(de=t.from(Te.errorCorrectionLevel,t.M),D=T.from(Te.version),n=f.from(Te.maskPattern),Te.toSJISFunc&&e.setToSJISFunction(Te.toSJISFunc)),ge(Me,D,de,n)}},6289:(Qe,te,g)=>{const e=g(1744);function t(w){this.genPoly=void 0,this.degree=w,this.degree&&this.initialize(this.degree)}t.prototype.initialize=function(S){this.degree=S,this.genPoly=e.generateECPolynomial(this.degree)},t.prototype.encode=function(S){if(!this.genPoly)throw new Error("Encoder not initialized");const l=new Uint8Array(S.length+this.degree);l.set(S);const x=e.mod(l,this.genPoly),f=this.degree-x.length;if(f>0){const I=new Uint8Array(this.degree);return I.set(x,f),I}return x},Qe.exports=t},9359:(Qe,te)=>{const g="[0-9]+";let t="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";t=t.replace(/u/g,"\\u");const w="(?:(?![A-Z0-9 $%*+\\-./:]|"+t+")(?:.|[\r\n]))+";te.KANJI=new RegExp(t,"g"),te.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),te.BYTE=new RegExp(w,"g"),te.NUMERIC=new RegExp(g,"g"),te.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const S=new RegExp("^"+t+"$"),l=new RegExp("^"+g+"$"),x=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");te.testKanji=function(I){return S.test(I)},te.testNumeric=function(I){return l.test(I)},te.testAlphanumeric=function(I){return x.test(I)}},2868:(Qe,te,g)=>{const e=g(1677),t=g(6628),w=g(1018),S=g(4969),l=g(3264),x=g(9359),f=g(9089),I=g(243);function d(j){return unescape(encodeURIComponent(j)).length}function T(j,Q,J){const ee=[];let ie;for(;null!==(ie=j.exec(J));)ee.push({data:ie[0],index:ie.index,mode:Q,length:ie[0].length});return ee}function y(j){const Q=T(x.NUMERIC,e.NUMERIC,j),J=T(x.ALPHANUMERIC,e.ALPHANUMERIC,j);let ee,ie;return f.isKanjiModeEnabled()?(ee=T(x.BYTE,e.BYTE,j),ie=T(x.KANJI,e.KANJI,j)):(ee=T(x.BYTE_KANJI,e.BYTE,j),ie=[]),Q.concat(J,ee,ie).sort(function(ae,Me){return ae.index-Me.index}).map(function(ae){return{data:ae.data,mode:ae.mode,length:ae.length}})}function F(j,Q){switch(Q){case e.NUMERIC:return t.getBitsLength(j);case e.ALPHANUMERIC:return w.getBitsLength(j);case e.KANJI:return l.getBitsLength(j);case e.BYTE:return S.getBitsLength(j)}}function $(j,Q){let J;const ee=e.getBestModeForData(j);if(J=e.from(Q,ee),J!==e.BYTE&&J.bit=0?Q[Q.length-1]:null;return ee&&ee.mode===J.mode?(Q[Q.length-1].data+=J.data,Q):(Q.push(J),Q)},[])}(Me))},te.rawSplit=function(Q){return te.fromArray(y(Q,f.isKanjiModeEnabled()))}},9089:(Qe,te)=>{let g;const e=[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];te.getSymbolSize=function(w){if(!w)throw new Error('"version" cannot be null or undefined');if(w<1||w>40)throw new Error('"version" should be in range from 1 to 40');return 4*w+17},te.getSymbolTotalCodewords=function(w){return e[w]},te.getBCHDigit=function(t){let w=0;for(;0!==t;)w++,t>>>=1;return w},te.setToSJISFunction=function(w){if("function"!=typeof w)throw new Error('"toSJISFunc" is not a valid function.');g=w},te.isKanjiModeEnabled=function(){return typeof g<"u"},te.toSJIS=function(w){return g(w)}},377:(Qe,te)=>{te.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}},1252:(Qe,te,g)=>{const e=g(9089),t=g(3677),w=g(7424),S=g(1677),l=g(377),f=e.getBCHDigit(7973);function d(F,R){return S.getCharCountIndicator(F,R)+4}function T(F,R){let z=0;return F.forEach(function(W){const $=d(W.mode,R);z+=$+W.getBitsLength()}),z}te.from=function(R,z){return l.isValid(R)?parseInt(R,10):z},te.getCapacity=function(R,z,W){if(!l.isValid(R))throw new Error("Invalid QR Code version");typeof W>"u"&&(W=S.BYTE);const Q=8*(e.getSymbolTotalCodewords(R)-t.getTotalCodewordsCount(R,z));if(W===S.MIXED)return Q;const J=Q-d(W,R);switch(W){case S.NUMERIC:return Math.floor(J/10*3);case S.ALPHANUMERIC:return Math.floor(J/11*2);case S.KANJI:return Math.floor(J/13);default:return Math.floor(J/8)}},te.getBestVersionForData=function(R,z){let W;const $=w.from(z,w.M);if(Array.isArray(R)){if(R.length>1)return function y(F,R){for(let z=1;z<=40;z++)if(T(F,z)<=te.getCapacity(z,R,S.MIXED))return z}(R,$);if(0===R.length)return 1;W=R[0]}else W=R;return function I(F,R,z){for(let W=1;W<=40;W++)if(R<=te.getCapacity(W,z,F))return W}(W.mode,W.getLength(),$)},te.getEncodedBits=function(R){if(!l.isValid(R)||R<7)throw new Error("Invalid QR Code version");let z=R<<12;for(;e.getBCHDigit(z)-f>=0;)z^=7973<{const e=g(7077);te.render=function(l,x,f){let I=f,d=x;typeof I>"u"&&(!x||!x.getContext)&&(I=x,x=void 0),x||(d=function w(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),I=e.getOptions(I);const T=e.getImageWidth(l.modules.size,I),y=d.getContext("2d"),F=y.createImageData(T,T);return e.qrToImageData(F.data,l,I),function t(S,l,x){S.clearRect(0,0,l.width,l.height),l.style||(l.style={}),l.height=x,l.width=x,l.style.height=x+"px",l.style.width=x+"px"}(y,d,T),y.putImageData(F,0,0),d},te.renderToDataURL=function(l,x,f){let I=f;return typeof I>"u"&&(!x||!x.getContext)&&(I=x,x=void 0),I||(I={}),te.render(l,x,I).toDataURL(I.type||"image/png",(I.rendererOpts||{}).quality)}},6511:(Qe,te,g)=>{const e=g(7077);function t(l,x){const f=l.a/255,I=x+'="'+l.hex+'"';return f<1?I+" "+x+'-opacity="'+f.toFixed(2).slice(1)+'"':I}function w(l,x,f){let I=l+x;return typeof f<"u"&&(I+=" "+f),I}te.render=function(x,f,I){const d=e.getOptions(f),T=x.modules.size,y=x.modules.data,F=T+2*d.margin,R=d.color.light.a?"':"",z="0&&R>0&&l[F-1]||(I+=T?w("M",R+f,.5+z+f):w("m",d,0),d=0,T=!1),R+1',j=''+R+z+"\n";return"function"==typeof I&&I(null,j),j}},7077:(Qe,te)=>{function g(e){if("number"==typeof e&&(e=e.toString()),"string"!=typeof e)throw new Error("Color should be defined as hex string");let t=e.slice().replace("#","").split("");if(t.length<3||5===t.length||t.length>8)throw new Error("Invalid hex color: "+e);(3===t.length||4===t.length)&&(t=Array.prototype.concat.apply([],t.map(function(S){return[S,S]}))),6===t.length&&t.push("F","F");const w=parseInt(t.join(""),16);return{r:w>>24&255,g:w>>16&255,b:w>>8&255,a:255&w,hex:"#"+t.slice(0,6).join("")}}te.getOptions=function(t){t||(t={}),t.color||(t.color={});const S=t.width&&t.width>=21?t.width:void 0;return{width:S,scale:S?4:t.scale||4,margin:typeof t.margin>"u"||null===t.margin||t.margin<0?4:t.margin,color:{dark:g(t.color.dark||"#000000ff"),light:g(t.color.light||"#ffffffff")},type:t.type,rendererOpts:t.rendererOpts||{}}},te.getScale=function(t,w){return w.width&&w.width>=t+2*w.margin?w.width/(t+2*w.margin):w.scale},te.getImageWidth=function(t,w){const S=te.getScale(t,w);return Math.floor((t+2*w.margin)*S)},te.qrToImageData=function(t,w,S){const l=w.modules.size,x=w.modules.data,f=te.getScale(l,S),I=Math.floor((l+2*S.margin)*f),d=S.margin*f,T=[S.color.light,S.color.dark];for(let y=0;y=d&&F>=d&&y{"use strict";var e=65536,S=g(7054).Buffer,l=global.crypto||global.msCrypto;Qe.exports=l&&l.getRandomValues?function x(f,I){if(f>4294967295)throw new RangeError("requested too many random bytes");var d=S.allocUnsafe(f);if(f>0)if(f>e)for(var T=0;T{"use strict";function e(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var t=g(7054),w=g(3342),S=t.Buffer,l=t.kMaxLength,x=global.crypto||global.msCrypto,f=Math.pow(2,32)-1;function I(R,z){if("number"!=typeof R||R!=R)throw new TypeError("offset must be a number");if(R>f||R<0)throw new TypeError("offset must be a uint32");if(R>l||R>z)throw new RangeError("offset out of range")}function d(R,z,W){if("number"!=typeof R||R!=R)throw new TypeError("size must be a number");if(R>f||R<0)throw new TypeError("size must be a uint32");if(R+z>W||R>l)throw new RangeError("buffer too small")}function y(R,z,W,$){if(process.browser){var Q=new Uint8Array(R.buffer,z,W);return x.getRandomValues(Q),$?void process.nextTick(function(){$(null,R)}):R}if(!$)return w(W).copy(R,z),R;w(W,function(ee,ie){if(ee)return $(ee);ie.copy(R,z),$(null,R)})}x&&x.getRandomValues||!process.browser?(te.randomFill=function T(R,z,W,$){if(!(S.isBuffer(R)||R instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof z)$=z,z=0,W=R.length;else if("function"==typeof W)$=W,W=R.length-z;else if("function"!=typeof $)throw new TypeError('"cb" argument must be a function');return I(z,R.length),d(W,z,R.length),y(R,z,W,$)},te.randomFillSync=function F(R,z,W){if(typeof z>"u"&&(z=0),!(S.isBuffer(R)||R instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return I(z,R.length),void 0===W&&(W=R.length-z),d(W,z,R.length),y(R,z,W)}):(te.randomFill=e,te.randomFillSync=e)},4075:(Qe,te,g)=>{"use strict";var e=g(9656),t=Object.keys||function(F){var R=[];for(var z in F)R.push(z);return R};Qe.exports=d;var w=Object.create(g(7637));w.inherits=g(1993);var S=g(9609),l=g(7849);w.inherits(d,S);for(var x=t(l.prototype),f=0;f{"use strict";Qe.exports=w;var e=g(2909),t=Object.create(g(7637));function w(S){if(!(this instanceof w))return new w(S);e.call(this,S)}t.inherits=g(1993),t.inherits(w,e),w.prototype._transform=function(S,l,x){x(null,S)}},9609:(Qe,te,g)=>{"use strict";var e=g(9656);Qe.exports=ee;var w,t=g(53);ee.ReadableState=J,g(4356);var l=function(se,X){return se.listeners(X).length},x=g(8342),f=g(2655).Buffer,I=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},y=Object.create(g(7637));y.inherits=g(1993);var F=g(9838),R=void 0;R=F&&F.debuglog?F.debuglog("stream"):function(){};var $,z=g(7809),W=g(1509);y.inherits(ee,x);var j=["error","close","destroy","pause","resume"];function J(se,X){var me=X instanceof(w=w||g(4075));this.objectMode=!!(se=se||{}).objectMode,me&&(this.objectMode=this.objectMode||!!se.readableObjectMode);var ce=se.highWaterMark,fe=se.readableHighWaterMark;this.highWaterMark=ce||0===ce?ce:me&&(fe||0===fe)?fe:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new z,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.destroyed=!1,this.defaultEncoding=se.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,se.encoding&&($||($=g(8454).I),this.decoder=new $(se.encoding),this.encoding=se.encoding)}function ee(se){if(w=w||g(4075),!(this instanceof ee))return new ee(se);this._readableState=new J(se,this),this.readable=!0,se&&("function"==typeof se.read&&(this._read=se.read),"function"==typeof se.destroy&&(this._destroy=se.destroy)),x.call(this)}function ie(se,X,me,ce,fe){var mt,ke=se._readableState;return null===X?(ke.reading=!1,function n(se,X){if(!X.ended){if(X.decoder){var me=X.decoder.end();me&&me.length&&(X.buffer.push(me),X.length+=X.objectMode?1:me.length)}X.ended=!0,c(se)}}(se,ke)):(fe||(mt=function ae(se,X){var me;return!function T(se){return f.isBuffer(se)||se instanceof I}(X)&&"string"!=typeof X&&void 0!==X&&!se.objectMode&&(me=new TypeError("Invalid non-string/buffer chunk")),me}(ke,X)),mt?se.emit("error",mt):ke.objectMode||X&&X.length>0?("string"!=typeof X&&!ke.objectMode&&Object.getPrototypeOf(X)!==f.prototype&&(X=function d(se){return f.from(se)}(X)),ce?ke.endEmitted?se.emit("error",new Error("stream.unshift() after end event")):ge(se,ke,X,!0):ke.ended?se.emit("error",new Error("stream.push() after EOF")):(ke.reading=!1,ke.decoder&&!me?(X=ke.decoder.write(X),ke.objectMode||0!==X.length?ge(se,ke,X,!1):h(se,ke)):ge(se,ke,X,!1))):ce||(ke.reading=!1)),function Me(se){return!se.ended&&(se.needReadable||se.lengthX.highWaterMark&&(X.highWaterMark=function de(se){return se>=8388608?se=8388608:(se--,se|=se>>>1,se|=se>>>2,se|=se>>>4,se|=se>>>8,se|=se>>>16,se++),se}(se)),se<=X.length?se:X.ended?X.length:(X.needReadable=!0,0))}function c(se){var X=se._readableState;X.needReadable=!1,X.emittedReadable||(R("emitReadable",X.flowing),X.emittedReadable=!0,X.sync?e.nextTick(m,se):m(se))}function m(se){R("emit readable"),se.emit("readable"),v(se)}function h(se,X){X.readingMore||(X.readingMore=!0,e.nextTick(C,se,X))}function C(se,X){for(var me=X.length;!X.reading&&!X.flowing&&!X.ended&&X.length=X.length?(me=X.decoder?X.buffer.join(""):1===X.buffer.length?X.buffer.head.data:X.buffer.concat(X.length),X.buffer.clear()):me=function N(se,X,me){var ce;return seke.length?ke.length:se;if(fe+=mt===ke.length?ke:ke.slice(0,se),0==(se-=mt)){mt===ke.length?(++ce,X.head=me.next?me.next:X.tail=null):(X.head=me,me.data=ke.slice(mt));break}++ce}return X.length-=ce,fe}(se,X):function Ee(se,X){var me=f.allocUnsafe(se),ce=X.head,fe=1;for(ce.data.copy(me),se-=ce.data.length;ce=ce.next;){var ke=ce.data,mt=se>ke.length?ke.length:se;if(ke.copy(me,me.length-se,0,mt),0==(se-=mt)){mt===ke.length?(++fe,X.head=ce.next?ce.next:X.tail=null):(X.head=ce,ce.data=ke.slice(mt));break}++fe}return X.length-=fe,me}(se,X),ce}(se,X.buffer,X.decoder),me);var me}function ze(se){var X=se._readableState;if(X.length>0)throw new Error('"endReadable()" called on non-empty stream');X.endEmitted||(X.ended=!0,e.nextTick(qe,X,se))}function qe(se,X){!se.endEmitted&&0===se.length&&(se.endEmitted=!0,X.readable=!1,X.emit("end"))}function Ke(se,X){for(var me=0,ce=se.length;me=X.highWaterMark||X.ended))return R("read: emitReadable",X.length,X.ended),0===X.length&&X.ended?ze(this):c(this),null;if(0===(se=D(se,X))&&X.ended)return 0===X.length&&ze(this),null;var fe,ce=X.needReadable;return R("need readable",ce),(0===X.length||X.length-se0?V(se,X):null)?(X.needReadable=!0,se=0):X.length-=se,0===X.length&&(X.ended||(X.needReadable=!0),me!==se&&X.ended&&ze(this)),null!==fe&&this.emit("data",fe),fe},ee.prototype._read=function(se){this.emit("error",new Error("_read() is not implemented"))},ee.prototype.pipe=function(se,X){var me=this,ce=this._readableState;switch(ce.pipesCount){case 0:ce.pipes=se;break;case 1:ce.pipes=[ce.pipes,se];break;default:ce.pipes.push(se)}ce.pipesCount+=1,R("pipe count=%d opts=%j",ce.pipesCount,X);var ke=X&&!1===X.end||se===process.stdout||se===process.stderr?ue:_e;function _e(){R("onend"),se.end()}ce.endEmitted?e.nextTick(ke):me.once("end",ke),se.on("unpipe",function mt(Ie,He){R("onunpipe"),Ie===me&&He&&!1===He.hasUnpiped&&(He.hasUnpiped=!0,function Ze(){R("cleanup"),se.removeListener("close",Xt),se.removeListener("finish",ye),se.removeListener("drain",be),se.removeListener("error",pt),se.removeListener("unpipe",mt),me.removeListener("end",_e),me.removeListener("end",ue),me.removeListener("data",at),pe=!0,ce.awaitDrain&&(!se._writableState||se._writableState.needDrain)&&be()}())});var be=function k(se){return function(){var X=se._readableState;R("pipeOnDrain",X.awaitDrain),X.awaitDrain&&X.awaitDrain--,0===X.awaitDrain&&l(se,"data")&&(X.flowing=!0,v(se))}}(me);se.on("drain",be);var pe=!1,_t=!1;function at(Ie){R("ondata"),_t=!1,!1===se.write(Ie)&&!_t&&((1===ce.pipesCount&&ce.pipes===se||ce.pipesCount>1&&-1!==Ke(ce.pipes,se))&&!pe&&(R("false write response, pause",ce.awaitDrain),ce.awaitDrain++,_t=!0),me.pause())}function pt(Ie){R("onerror",Ie),ue(),se.removeListener("error",pt),0===l(se,"error")&&se.emit("error",Ie)}function Xt(){se.removeListener("finish",ye),ue()}function ye(){R("onfinish"),se.removeListener("close",Xt),ue()}function ue(){R("unpipe"),me.unpipe(se)}return me.on("data",at),function Q(se,X,me){if("function"==typeof se.prependListener)return se.prependListener(X,me);se._events&&se._events[X]?t(se._events[X])?se._events[X].unshift(me):se._events[X]=[me,se._events[X]]:se.on(X,me)}(se,"error",pt),se.once("close",Xt),se.once("finish",ye),se.emit("pipe",me),ce.flowing||(R("pipe resume"),me.resume()),se},ee.prototype.unpipe=function(se){var X=this._readableState,me={hasUnpiped:!1};if(0===X.pipesCount)return this;if(1===X.pipesCount)return se&&se!==X.pipes||(se||(se=X.pipes),X.pipes=null,X.pipesCount=0,X.flowing=!1,se&&se.emit("unpipe",this,me)),this;if(!se){var ce=X.pipes,fe=X.pipesCount;X.pipes=null,X.pipesCount=0,X.flowing=!1;for(var ke=0;ke{"use strict";Qe.exports=S;var e=g(4075),t=Object.create(g(7637));function w(f,I){var d=this._transformState;d.transforming=!1;var T=d.writecb;if(!T)return this.emit("error",new Error("write callback called multiple times"));d.writechunk=null,d.writecb=null,null!=I&&this.push(I),T(f);var y=this._readableState;y.reading=!1,(y.needReadable||y.length{"use strict";var e=g(9656);function w(_){var r=this;this.next=null,this.entry=null,this.finish=function(){!function L(_,r,v){var V=_.entry;for(_.entry=null;V;){var N=V.callback;r.pendingcb--,N(v),V=V.next}r.corkedRequestsFree.next=_}(r,_)}}Qe.exports=j;var l,S=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:e.nextTick;j.WritableState=W;var x=Object.create(g(7637));x.inherits=g(1993);var $,f={deprecate:g(3398)},I=g(8342),d=g(2655).Buffer,T=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},R=g(1509);function z(){}function W(_,r){l=l||g(4075);var v=r instanceof l;this.objectMode=!!(_=_||{}).objectMode,v&&(this.objectMode=this.objectMode||!!_.writableObjectMode);var V=_.highWaterMark,N=_.writableHighWaterMark;this.highWaterMark=V||0===V?V:v&&(N||0===N)?N:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===_.decodeStrings),this.defaultEncoding=_.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ze){!function Te(_,r){var v=_._writableState,V=v.sync,N=v.writecb;if(function Me(_){_.writing=!1,_.writecb=null,_.length-=_.writelen,_.writelen=0}(v),r)!function ae(_,r,v,V,N){--r.pendingcb,v?(e.nextTick(N,V),e.nextTick(C,_,r),_._writableState.errorEmitted=!0,_.emit("error",V)):(N(V),_._writableState.errorEmitted=!0,_.emit("error",V),C(_,r))}(_,v,V,r,N);else{var ne=c(v);!ne&&!v.corked&&!v.bufferProcessing&&v.bufferedRequest&&n(_,v),V?S(de,_,v,ne,N):de(_,v,ne,N)}}(r,ze)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new w(this)}function j(_){if(l=l||g(4075),!($.call(j,this)||this instanceof l))return new j(_);this._writableState=new W(_,this),this.writable=!0,_&&("function"==typeof _.write&&(this._write=_.write),"function"==typeof _.writev&&(this._writev=_.writev),"function"==typeof _.destroy&&(this._destroy=_.destroy),"function"==typeof _.final&&(this._final=_.final)),I.call(this)}function ge(_,r,v,V,N,ne,Ee){r.writelen=V,r.writecb=Ee,r.writing=!0,r.sync=!0,v?_._writev(N,r.onwrite):_._write(N,ne,r.onwrite),r.sync=!1}function de(_,r,v,V){v||function D(_,r){0===r.length&&r.needDrain&&(r.needDrain=!1,_.emit("drain"))}(_,r),r.pendingcb--,V(),C(_,r)}function n(_,r){r.bufferProcessing=!0;var v=r.bufferedRequest;if(_._writev&&v&&v.next){var N=new Array(r.bufferedRequestCount),ne=r.corkedRequestsFree;ne.entry=v;for(var Ee=0,ze=!0;v;)N[Ee]=v,v.isBuf||(ze=!1),v=v.next,Ee+=1;N.allBuffers=ze,ge(_,r,!0,r.length,N,"",ne.finish),r.pendingcb++,r.lastBufferedRequest=null,ne.next?(r.corkedRequestsFree=ne.next,ne.next=null):r.corkedRequestsFree=new w(r),r.bufferedRequestCount=0}else{for(;v;){var qe=v.chunk;if(ge(_,r,!1,r.objectMode?1:qe.length,qe,v.encoding,v.callback),v=v.next,r.bufferedRequestCount--,r.writing)break}null===v&&(r.lastBufferedRequest=null)}r.bufferedRequest=v,r.bufferProcessing=!1}function c(_){return _.ending&&0===_.length&&null===_.bufferedRequest&&!_.finished&&!_.writing}function m(_,r){_._final(function(v){r.pendingcb--,v&&_.emit("error",v),r.prefinished=!0,_.emit("prefinish"),C(_,r)})}function C(_,r){var v=c(r);return v&&(function h(_,r){!r.prefinished&&!r.finalCalled&&("function"==typeof _._final?(r.pendingcb++,r.finalCalled=!0,e.nextTick(m,_,r)):(r.prefinished=!0,_.emit("prefinish")))}(_,r),0===r.pendingcb&&(r.finished=!0,_.emit("finish"))),v}x.inherits(j,I),W.prototype.getBuffer=function(){for(var r=this.bufferedRequest,v=[];r;)v.push(r),r=r.next;return v},function(){try{Object.defineProperty(W.prototype,"buffer",{get:f.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?($=Function.prototype[Symbol.hasInstance],Object.defineProperty(j,Symbol.hasInstance,{value:function(_){return!!$.call(this,_)||this===j&&_&&_._writableState instanceof W}})):$=function(_){return _ instanceof this},j.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},j.prototype.write=function(_,r,v){var V=this._writableState,N=!1,ne=!V.objectMode&&function F(_){return d.isBuffer(_)||_ instanceof T}(_);return ne&&!d.isBuffer(_)&&(_=function y(_){return d.from(_)}(_)),"function"==typeof r&&(v=r,r=null),ne?r="buffer":r||(r=V.defaultEncoding),"function"!=typeof v&&(v=z),V.ended?function Q(_,r){var v=new Error("write after end");_.emit("error",v),e.nextTick(r,v)}(this,v):(ne||function J(_,r,v,V){var N=!0,ne=!1;return null===v?ne=new TypeError("May not write null values to stream"):"string"!=typeof v&&void 0!==v&&!r.objectMode&&(ne=new TypeError("Invalid non-string/buffer chunk")),ne&&(_.emit("error",ne),e.nextTick(V,ne),N=!1),N}(this,V,_,v))&&(V.pendingcb++,N=function ie(_,r,v,V,N,ne){if(!v){var Ee=function ee(_,r,v){return!_.objectMode&&!1!==_.decodeStrings&&"string"==typeof r&&(r=d.from(r,v)),r}(r,V,N);V!==Ee&&(v=!0,N="buffer",V=Ee)}var ze=r.objectMode?1:V.length;r.length+=ze;var qe=r.length-1))throw new TypeError("Unknown encoding: "+r);return this._writableState.defaultEncoding=r,this},Object.defineProperty(j.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),j.prototype._write=function(_,r,v){v(new Error("_write() is not implemented"))},j.prototype._writev=null,j.prototype.end=function(_,r,v){var V=this._writableState;"function"==typeof _?(v=_,_=null,r=null):"function"==typeof r&&(v=r,r=null),null!=_&&this.write(_,r),V.corked&&(V.corked=1,this.uncork()),V.ending||function k(_,r,v){r.ending=!0,C(_,r),v&&(r.finished?e.nextTick(v):_.once("finish",v)),r.ended=!0,_.writable=!1}(this,V,v)},Object.defineProperty(j.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(_){this._writableState&&(this._writableState.destroyed=_)}}),j.prototype.destroy=R.destroy,j.prototype._undestroy=R.undestroy,j.prototype._destroy=function(_,r){this.end(),r(_)}},7809:(Qe,te,g)=>{"use strict";var t=g(2655).Buffer,w=g(5340);function S(l,x,f){l.copy(x,f)}Qe.exports=function(){function l(){(function e(l,x){if(!(l instanceof x))throw new TypeError("Cannot call a class as a function")})(this,l),this.head=null,this.tail=null,this.length=0}return l.prototype.push=function(f){var I={data:f,next:null};this.length>0?this.tail.next=I:this.head=I,this.tail=I,++this.length},l.prototype.unshift=function(f){var I={data:f,next:this.head};0===this.length&&(this.tail=I),this.head=I,++this.length},l.prototype.shift=function(){if(0!==this.length){var f=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,f}},l.prototype.clear=function(){this.head=this.tail=null,this.length=0},l.prototype.join=function(f){if(0===this.length)return"";for(var I=this.head,d=""+I.data;I=I.next;)d+=f+I.data;return d},l.prototype.concat=function(f){if(0===this.length)return t.alloc(0);for(var I=t.allocUnsafe(f>>>0),d=this.head,T=0;d;)S(d.data,I,T),T+=d.data.length,d=d.next;return I},l}(),w&&w.inspect&&w.inspect.custom&&(Qe.exports.prototype[w.inspect.custom]=function(){var l=w.inspect({length:this.length});return this.constructor.name+" "+l})},1509:(Qe,te,g)=>{"use strict";var e=g(9656);function S(l,x){l.emit("error",x)}Qe.exports={destroy:function t(l,x){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(x?x(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,e.nextTick(S,this,l)):e.nextTick(S,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(T){!x&&T?f._writableState?f._writableState.errorEmitted||(f._writableState.errorEmitted=!0,e.nextTick(S,f,T)):e.nextTick(S,f,T):x&&x(T)}),this)},undestroy:function w(){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)}}},8342:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},2655:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},5942:(Qe,te,g)=>{(te=Qe.exports=g(9609)).Stream=te,te.Readable=te,te.Writable=g(7849),te.Duplex=g(4075),te.Transform=g(2909),te.PassThrough=g(8823)},6021:Qe=>{"use strict";function te(t){return t instanceof Buffer?Buffer.from(t):new t.constructor(t.buffer.slice(),t.byteOffset,t.length)}Qe.exports=function g(t){return(t=t||{}).circles?function e(t){var w=[],S=[];return t.proto?function f(I){if("object"!=typeof I||null===I)return I;if(I instanceof Date)return new Date(I);if(Array.isArray(I))return l(I,f);if(I instanceof Map)return new Map(l(Array.from(I),f));if(I instanceof Set)return new Set(l(Array.from(I),f));var d={};for(var T in w.push(I),S.push(d),I){var y=I[T];if("object"!=typeof y||null===y)d[T]=y;else if(y instanceof Date)d[T]=new Date(y);else if(y instanceof Map)d[T]=new Map(l(Array.from(y),f));else if(y instanceof Set)d[T]=new Set(l(Array.from(y),f));else if(ArrayBuffer.isView(y))d[T]=te(y);else{var F=w.indexOf(y);d[T]=-1!==F?S[F]:f(y)}}return w.pop(),S.pop(),d}:function x(I){if("object"!=typeof I||null===I)return I;if(I instanceof Date)return new Date(I);if(Array.isArray(I))return l(I,x);if(I instanceof Map)return new Map(l(Array.from(I),x));if(I instanceof Set)return new Set(l(Array.from(I),x));var d={};for(var T in w.push(I),S.push(d),I)if(!1!==Object.hasOwnProperty.call(I,T)){var y=I[T];if("object"!=typeof y||null===y)d[T]=y;else if(y instanceof Date)d[T]=new Date(y);else if(y instanceof Map)d[T]=new Map(l(Array.from(y),x));else if(y instanceof Set)d[T]=new Set(l(Array.from(y),x));else if(ArrayBuffer.isView(y))d[T]=te(y);else{var F=w.indexOf(y);d[T]=-1!==F?S[F]:x(y)}}return w.pop(),S.pop(),d};function l(I,d){for(var T=Object.keys(I),y=new Array(T.length),F=0;F{"use strict";var e=g(3838).Buffer,t=g(1993),w=g(3686),S=new Array(16),l=[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],x=[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],f=[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],I=[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],d=[0,1518500249,1859775393,2400959708,2840853838],T=[1352829926,1548603684,1836072691,2053994217,0];function y(){w.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function F(Q,J){return Q<>>32-J}function R(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J^ee^ie)+ae+Me|0,Te)+ge|0}function z(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J&ee|~J&ie)+ae+Me|0,Te)+ge|0}function W(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+((J|~ee)^ie)+ae+Me|0,Te)+ge|0}function $(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J&ie|ee&~ie)+ae+Me|0,Te)+ge|0}function j(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J^(ee|~ie))+ae+Me|0,Te)+ge|0}t(y,w),y.prototype._update=function(){for(var Q=S,J=0;J<16;++J)Q[J]=this._block.readInt32LE(4*J);for(var ee=0|this._a,ie=0|this._b,ge=0|this._c,ae=0|this._d,Me=0|this._e,Te=0|this._a,de=0|this._b,D=0|this._c,n=0|this._d,c=0|this._e,m=0;m<80;m+=1){var h,C;m<16?(h=R(ee,ie,ge,ae,Me,Q[l[m]],d[0],f[m]),C=j(Te,de,D,n,c,Q[x[m]],T[0],I[m])):m<32?(h=z(ee,ie,ge,ae,Me,Q[l[m]],d[1],f[m]),C=$(Te,de,D,n,c,Q[x[m]],T[1],I[m])):m<48?(h=W(ee,ie,ge,ae,Me,Q[l[m]],d[2],f[m]),C=W(Te,de,D,n,c,Q[x[m]],T[2],I[m])):m<64?(h=$(ee,ie,ge,ae,Me,Q[l[m]],d[3],f[m]),C=z(Te,de,D,n,c,Q[x[m]],T[3],I[m])):(h=j(ee,ie,ge,ae,Me,Q[l[m]],d[4],f[m]),C=R(Te,de,D,n,c,Q[x[m]],T[4],I[m])),ee=Me,Me=ae,ae=F(ge,10),ge=ie,ie=h,Te=c,c=n,n=F(D,10),D=de,de=C}var k=this._b+ge+n|0;this._b=this._c+ae+c|0,this._c=this._d+Me+Te|0,this._d=this._e+ee+de|0,this._e=this._a+ie+D|0,this._a=k},y.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 Q=e.alloc?e.alloc(20):new e(20);return Q.writeInt32LE(this._a,0),Q.writeInt32LE(this._b,4),Q.writeInt32LE(this._c,8),Q.writeInt32LE(this._d,12),Q.writeInt32LE(this._e,16),Q},Qe.exports=y},4412:(Qe,te,g)=>{"use strict";g.d(te,{t:()=>t});var e=g(1413);class t extends e.B{constructor(S){super(),this._value=S}get value(){return this.getValue()}_subscribe(S){const l=super._subscribe(S);return!l.closed&&S.next(this._value),l}getValue(){const{hasError:S,thrownError:l,_value:x}=this;if(S)throw l;return this._throwIfClosed(),x}next(S){super.next(this._value=S)}}},1985:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>I});var e=g(7707),t=g(8359),w=g(3494),S=g(1203),l=g(1026),x=g(8071),f=g(9786);let I=(()=>{class F{constructor(z){z&&(this._subscribe=z)}lift(z){const W=new F;return W.source=this,W.operator=z,W}subscribe(z,W,$){const j=function y(F){return F&&F instanceof e.vU||function T(F){return F&&(0,x.T)(F.next)&&(0,x.T)(F.error)&&(0,x.T)(F.complete)}(F)&&(0,t.Uv)(F)}(z)?z:new e.Ms(z,W,$);return(0,f.Y)(()=>{const{operator:Q,source:J}=this;j.add(Q?Q.call(j,J):J?this._subscribe(j):this._trySubscribe(j))}),j}_trySubscribe(z){try{return this._subscribe(z)}catch(W){z.error(W)}}forEach(z,W){return new(W=d(W))(($,j)=>{const Q=new e.Ms({next:J=>{try{z(J)}catch(ee){j(ee),Q.unsubscribe()}},error:j,complete:$});this.subscribe(Q)})}_subscribe(z){var W;return null===(W=this.source)||void 0===W?void 0:W.subscribe(z)}[w.s](){return this}pipe(...z){return(0,S.m)(z)(this)}toPromise(z){return new(z=d(z))((W,$)=>{let j;this.subscribe(Q=>j=Q,Q=>$(Q),()=>W(j))})}}return F.create=R=>new F(R),F})();function d(F){var R;return null!==(R=F??l.$.Promise)&&void 0!==R?R:Promise}},2771:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>w});var e=g(1413),t=g(6129);class w extends e.B{constructor(l=1/0,x=1/0,f=t.U){super(),this._bufferSize=l,this._windowTime=x,this._timestampProvider=f,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=x===1/0,this._bufferSize=Math.max(1,l),this._windowTime=Math.max(1,x)}next(l){const{isStopped:x,_buffer:f,_infiniteTimeWindow:I,_timestampProvider:d,_windowTime:T}=this;x||(f.push(l),!I&&f.push(d.now()+T)),this._trimBuffer(),super.next(l)}_subscribe(l){this._throwIfClosed(),this._trimBuffer();const x=this._innerSubscribe(l),{_infiniteTimeWindow:f,_buffer:I}=this,d=I.slice();for(let T=0;T{"use strict";g.d(te,{k:()=>I,B:()=>f});var e=g(1985),t=g(8359);const S=(0,g(1853).L)(d=>function(){d(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var l=g(7908),x=g(9786);let f=(()=>{class d extends e.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(y){const F=new I(this,this);return F.operator=y,F}_throwIfClosed(){if(this.closed)throw new S}next(y){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const F of this.currentObservers)F.next(y)}})}error(y){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=y;const{observers:F}=this;for(;F.length;)F.shift().error(y)}})}complete(){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:y}=this;for(;y.length;)y.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var y;return(null===(y=this.observers)||void 0===y?void 0:y.length)>0}_trySubscribe(y){return this._throwIfClosed(),super._trySubscribe(y)}_subscribe(y){return this._throwIfClosed(),this._checkFinalizedStatuses(y),this._innerSubscribe(y)}_innerSubscribe(y){const{hasError:F,isStopped:R,observers:z}=this;return F||R?t.Kn:(this.currentObservers=null,z.push(y),new t.yU(()=>{this.currentObservers=null,(0,l.o)(z,y)}))}_checkFinalizedStatuses(y){const{hasError:F,thrownError:R,isStopped:z}=this;F?y.error(R):z&&y.complete()}asObservable(){const y=new e.c;return y.source=this,y}}return d.create=(T,y)=>new I(T,y),d})();class I extends f{constructor(T,y){super(),this.destination=T,this.source=y}next(T){var y,F;null===(F=null===(y=this.destination)||void 0===y?void 0:y.next)||void 0===F||F.call(y,T)}error(T){var y,F;null===(F=null===(y=this.destination)||void 0===y?void 0:y.error)||void 0===F||F.call(y,T)}complete(){var T,y;null===(y=null===(T=this.destination)||void 0===T?void 0:T.complete)||void 0===y||y.call(T)}_subscribe(T){var y,F;return null!==(F=null===(y=this.source)||void 0===y?void 0:y.subscribe(T))&&void 0!==F?F:t.Kn}}},7707:(Qe,te,g)=>{"use strict";g.d(te,{Ms:()=>$,vU:()=>F});var e=g(8071),t=g(8359),w=g(1026),S=g(5334),l=g(5343);const x=d("C",void 0,void 0);function d(ie,ge,ae){return{kind:ie,value:ge,error:ae}}var T=g(9270),y=g(9786);class F extends t.yU{constructor(ge){super(),this.isStopped=!1,ge?(this.destination=ge,(0,t.Uv)(ge)&&ge.add(this)):this.destination=ee}static create(ge,ae,Me){return new $(ge,ae,Me)}next(ge){this.isStopped?J(function I(ie){return d("N",ie,void 0)}(ge),this):this._next(ge)}error(ge){this.isStopped?J(function f(ie){return d("E",void 0,ie)}(ge),this):(this.isStopped=!0,this._error(ge))}complete(){this.isStopped?J(x,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(ge){this.destination.next(ge)}_error(ge){try{this.destination.error(ge)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const R=Function.prototype.bind;function z(ie,ge){return R.call(ie,ge)}class W{constructor(ge){this.partialObserver=ge}next(ge){const{partialObserver:ae}=this;if(ae.next)try{ae.next(ge)}catch(Me){j(Me)}}error(ge){const{partialObserver:ae}=this;if(ae.error)try{ae.error(ge)}catch(Me){j(Me)}else j(ge)}complete(){const{partialObserver:ge}=this;if(ge.complete)try{ge.complete()}catch(ae){j(ae)}}}class $ extends F{constructor(ge,ae,Me){let Te;if(super(),(0,e.T)(ge)||!ge)Te={next:ge??void 0,error:ae??void 0,complete:Me??void 0};else{let de;this&&w.$.useDeprecatedNextContext?(de=Object.create(ge),de.unsubscribe=()=>this.unsubscribe(),Te={next:ge.next&&z(ge.next,de),error:ge.error&&z(ge.error,de),complete:ge.complete&&z(ge.complete,de)}):Te=ge}this.destination=new W(Te)}}function j(ie){w.$.useDeprecatedSynchronousErrorHandling?(0,y.l)(ie):(0,S.m)(ie)}function J(ie,ge){const{onStoppedNotification:ae}=w.$;ae&&T.f.setTimeout(()=>ae(ie,ge))}const ee={closed:!0,next:l.l,error:function Q(ie){throw ie},complete:l.l}},8359:(Qe,te,g)=>{"use strict";g.d(te,{Kn:()=>x,yU:()=>l,Uv:()=>f});var e=g(8071);const w=(0,g(1853).L)(d=>function(y){d(this),this.message=y?`${y.length} errors occurred during unsubscription:\n${y.map((F,R)=>`${R+1}) ${F.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=y});var S=g(7908);class l{constructor(T){this.initialTeardown=T,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let T;if(!this.closed){this.closed=!0;const{_parentage:y}=this;if(y)if(this._parentage=null,Array.isArray(y))for(const z of y)z.remove(this);else y.remove(this);const{initialTeardown:F}=this;if((0,e.T)(F))try{F()}catch(z){T=z instanceof w?z.errors:[z]}const{_finalizers:R}=this;if(R){this._finalizers=null;for(const z of R)try{I(z)}catch(W){T=T??[],W instanceof w?T=[...T,...W.errors]:T.push(W)}}if(T)throw new w(T)}}add(T){var y;if(T&&T!==this)if(this.closed)I(T);else{if(T instanceof l){if(T.closed||T._hasParent(this))return;T._addParent(this)}(this._finalizers=null!==(y=this._finalizers)&&void 0!==y?y:[]).push(T)}}_hasParent(T){const{_parentage:y}=this;return y===T||Array.isArray(y)&&y.includes(T)}_addParent(T){const{_parentage:y}=this;this._parentage=Array.isArray(y)?(y.push(T),y):y?[y,T]:T}_removeParent(T){const{_parentage:y}=this;y===T?this._parentage=null:Array.isArray(y)&&(0,S.o)(y,T)}remove(T){const{_finalizers:y}=this;y&&(0,S.o)(y,T),T instanceof l&&T._removeParent(this)}}l.EMPTY=(()=>{const d=new l;return d.closed=!0,d})();const x=l.EMPTY;function f(d){return d instanceof l||d&&"closed"in d&&(0,e.T)(d.remove)&&(0,e.T)(d.add)&&(0,e.T)(d.unsubscribe)}function I(d){(0,e.T)(d)?d():d.unsubscribe()}},1026:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>e});const e={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},17:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>x});var e=g(1985),t=g(8359),w=g(9898),S=g(4360),l=g(9974);class x extends e.c{constructor(I,d){super(),this.source=I,this.subjectFactory=d,this._subject=null,this._refCount=0,this._connection=null,(0,l.S)(I)&&(this.lift=I.lift)}_subscribe(I){return this.getSubject().subscribe(I)}getSubject(){const I=this._subject;return(!I||I.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:I}=this;this._subject=this._connection=null,I?.unsubscribe()}connect(){let I=this._connection;if(!I){I=this._connection=new t.yU;const d=this.getSubject();I.add(this.source.subscribe((0,S._)(d,void 0,()=>{this._teardown(),d.complete()},T=>{this._teardown(),d.error(T)},()=>this._teardown()))),I.closed&&(this._connection=null,I=t.yU.EMPTY)}return I}refCount(){return(0,w.B)()(this)}}},4572:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>T});var e=g(1985),t=g(3073),w=g(2806),S=g(3669),l=g(6450),x=g(9326),f=g(8496),I=g(4360),d=g(5225);function T(...R){const z=(0,x.lI)(R),W=(0,x.ms)(R),{args:$,keys:j}=(0,t.D)(R);if(0===$.length)return(0,w.H)([],z);const Q=new e.c(function y(R,z,W=S.D){return $=>{F(z,()=>{const{length:j}=R,Q=new Array(j);let J=j,ee=j;for(let ie=0;ie{const ge=(0,w.H)(R[ie],z);let ae=!1;ge.subscribe((0,I._)($,Me=>{Q[ie]=Me,ae||(ae=!0,ee--),ee||$.next(W(Q.slice()))},()=>{--J||$.complete()}))},$)},$)}}($,z,j?J=>(0,f.e)(j,J):S.D));return W?Q.pipe((0,l.I)(W)):Q}function F(R,z,W){R?(0,d.N)(W,R,z):z()}},8793:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>l});var e=g(6365),w=g(9326),S=g(2806);function l(...x){return function t(){return(0,e.U)(1)}()((0,S.H)(x,(0,w.lI)(x)))}},9030:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>w});var e=g(1985),t=g(8750);function w(S){return new e.c(l=>{(0,t.Tg)(S()).subscribe(l)})}},983:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>t});const t=new(g(1985).c)(l=>l.complete())},7468:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>I});var e=g(1985),t=g(3073),w=g(8750),S=g(9326),l=g(4360),x=g(6450),f=g(8496);function I(...d){const T=(0,S.ms)(d),{args:y,keys:F}=(0,t.D)(d),R=new e.c(z=>{const{length:W}=y;if(!W)return void z.complete();const $=new Array(W);let j=W,Q=W;for(let J=0;J{ee||(ee=!0,Q--),$[J]=ie},()=>j--,void 0,()=>{(!j||!ee)&&(Q||z.next(F?(0,f.e)(F,$):$),z.complete())}))}});return T?R.pipe((0,x.I)(T)):R}},2806:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>ae});var e=g(8750),t=g(941),w=g(9974);function S(Me,Te=0){return(0,w.N)((de,D)=>{D.add(Me.schedule(()=>de.subscribe(D),Te))})}var f=g(1985),d=g(4761),T=g(8071),y=g(5225);function R(Me,Te){if(!Me)throw new Error("Iterable cannot be null");return new f.c(de=>{(0,y.N)(de,Te,()=>{const D=Me[Symbol.asyncIterator]();(0,y.N)(de,Te,()=>{D.next().then(n=>{n.done?de.complete():de.next(n.value)})},0,!0)})})}var z=g(5055),W=g(9858),$=g(7441),j=g(5397),Q=g(7953),J=g(591),ee=g(5196);function ae(Me,Te){return Te?function ge(Me,Te){if(null!=Me){if((0,z.l)(Me))return function l(Me,Te){return(0,e.Tg)(Me).pipe(S(Te),(0,t.Q)(Te))}(Me,Te);if((0,$.X)(Me))return function I(Me,Te){return new f.c(de=>{let D=0;return Te.schedule(function(){D===Me.length?de.complete():(de.next(Me[D++]),de.closed||this.schedule())})})}(Me,Te);if((0,W.y)(Me))return function x(Me,Te){return(0,e.Tg)(Me).pipe(S(Te),(0,t.Q)(Te))}(Me,Te);if((0,Q.T)(Me))return R(Me,Te);if((0,j.x)(Me))return function F(Me,Te){return new f.c(de=>{let D;return(0,y.N)(de,Te,()=>{D=Me[d.l](),(0,y.N)(de,Te,()=>{let n,c;try{({value:n,done:c}=D.next())}catch(m){return void de.error(m)}c?de.complete():de.next(n)},0,!0)}),()=>(0,T.T)(D?.return)&&D.return()})}(Me,Te);if((0,ee.U)(Me))return function ie(Me,Te){return R((0,ee.C)(Me),Te)}(Me,Te)}throw(0,J.L)(Me)}(Me,Te):(0,e.Tg)(Me)}},3726:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>T});var e=g(8750),t=g(1985),w=g(1397),S=g(7441),l=g(8071),x=g(6450);const f=["addListener","removeListener"],I=["addEventListener","removeEventListener"],d=["on","off"];function T(W,$,j,Q){if((0,l.T)(j)&&(Q=j,j=void 0),Q)return T(W,$,j).pipe((0,x.I)(Q));const[J,ee]=function z(W){return(0,l.T)(W.addEventListener)&&(0,l.T)(W.removeEventListener)}(W)?I.map(ie=>ge=>W[ie]($,ge,j)):function F(W){return(0,l.T)(W.addListener)&&(0,l.T)(W.removeListener)}(W)?f.map(y(W,$)):function R(W){return(0,l.T)(W.on)&&(0,l.T)(W.off)}(W)?d.map(y(W,$)):[];if(!J&&(0,S.X)(W))return(0,w.Z)(ie=>T(ie,$,j))((0,e.Tg)(W));if(!J)throw new TypeError("Invalid event target");return new t.c(ie=>{const ge=(...ae)=>ie.next(1ee(ge)})}function y(W,$){return j=>Q=>W[j]($,Q)}},8750:(Qe,te,g)=>{"use strict";g.d(te,{Tg:()=>R});var e=g(1635),t=g(7441),w=g(9858),S=g(1985),l=g(5055),x=g(7953),f=g(591),I=g(5397),d=g(5196),T=g(8071),y=g(5334),F=g(3494);function R(ie){if(ie instanceof S.c)return ie;if(null!=ie){if((0,l.l)(ie))return function z(ie){return new S.c(ge=>{const ae=ie[F.s]();if((0,T.T)(ae.subscribe))return ae.subscribe(ge);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(ie);if((0,t.X)(ie))return function W(ie){return new S.c(ge=>{for(let ae=0;ae{ie.then(ae=>{ge.closed||(ge.next(ae),ge.complete())},ae=>ge.error(ae)).then(null,y.m)})}(ie);if((0,x.T)(ie))return Q(ie);if((0,I.x)(ie))return function j(ie){return new S.c(ge=>{for(const ae of ie)if(ge.next(ae),ge.closed)return;ge.complete()})}(ie);if((0,d.U)(ie))return function J(ie){return Q((0,d.C)(ie))}(ie)}throw(0,f.L)(ie)}function Q(ie){return new S.c(ge=>{(function ee(ie,ge){var ae,Me,Te,de;return(0,e.sH)(this,void 0,void 0,function*(){try{for(ae=(0,e.xN)(ie);!(Me=yield ae.next()).done;)if(ge.next(Me.value),ge.closed)return}catch(D){Te={error:D}}finally{try{Me&&!Me.done&&(de=ae.return)&&(yield de.call(ae))}finally{if(Te)throw Te.error}}ge.complete()})})(ie,ge).catch(ae=>ge.error(ae))})}},7786:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>x});var e=g(6365),t=g(8750),w=g(983),S=g(9326),l=g(2806);function x(...f){const I=(0,S.lI)(f),d=(0,S.R0)(f,1/0),T=f;return T.length?1===T.length?(0,t.Tg)(T[0]):(0,e.U)(d)((0,l.H)(T,I)):w.w}},7673:(Qe,te,g)=>{"use strict";g.d(te,{of:()=>w});var e=g(9326),t=g(2806);function w(...S){const l=(0,e.lI)(S);return(0,t.H)(S,l)}},8810:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>w});var e=g(1985),t=g(8071);function w(S,l){const x=(0,t.T)(S)?S:()=>S,f=I=>I.error(x());return new e.c(l?I=>l.schedule(f,0,I):f)}},1807:(Qe,te,g)=>{"use strict";g.d(te,{O:()=>l});var e=g(1985),t=g(3236),w=g(9470),S=g(8211);function l(x=0,f,I=t.b){let d=-1;return null!=f&&((0,w.m)(f)?I=f:d=f),new e.c(T=>{let y=(0,S.v)(x)?+x-I.now():x;y<0&&(y=0);let F=0;return I.schedule(function(){T.closed||(T.next(F++),0<=d?this.schedule(void 0,d):T.complete())},y)})}},4360:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>w,_:()=>t});var e=g(7707);function t(S,l,x,f,I){return new w(S,l,x,f,I)}class w extends e.vU{constructor(l,x,f,I,d,T){super(l),this.onFinalize=d,this.shouldUnsubscribe=T,this._next=x?function(y){try{x(y)}catch(F){l.error(F)}}:super._next,this._error=I?function(y){try{I(y)}catch(F){l.error(F)}finally{this.unsubscribe()}}:super._error,this._complete=f?function(){try{f()}catch(y){l.error(y)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var l;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:x}=this;super.unsubscribe(),!x&&(null===(l=this.onFinalize)||void 0===l||l.call(this))}}}},3798:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>f});var e=g(3236),t=g(9974),w=g(8750),S=g(4360),x=g(1807);function f(I,d=e.E){return function l(I){return(0,t.N)((d,T)=>{let y=!1,F=null,R=null,z=!1;const W=()=>{if(R?.unsubscribe(),R=null,y){y=!1;const j=F;F=null,T.next(j)}z&&T.complete()},$=()=>{R=null,z&&T.complete()};d.subscribe((0,S._)(T,j=>{y=!0,F=j,R||(0,w.Tg)(I(j)).subscribe(R=(0,S._)(T,W,$))},()=>{z=!0,(!y||!R||R.closed)&&T.complete()}))})}(()=>(0,x.O)(I,d))}},9437:(Qe,te,g)=>{"use strict";g.d(te,{W:()=>S});var e=g(8750),t=g(4360),w=g(9974);function S(l){return(0,w.N)((x,f)=>{let T,I=null,d=!1;I=x.subscribe((0,t._)(f,void 0,void 0,y=>{T=(0,e.Tg)(l(y,S(l)(x))),I?(I.unsubscribe(),I=null,T.subscribe(f)):d=!0})),d&&(I.unsubscribe(),I=null,T.subscribe(f))})}},274:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>w});var e=g(1397),t=g(8071);function w(S,l){return(0,t.T)(l)?(0,e.Z)(S,l,1):(0,e.Z)(S,1)}},152:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>S});var e=g(3236),t=g(9974),w=g(4360);function S(l,x=e.E){return(0,t.N)((f,I)=>{let d=null,T=null,y=null;const F=()=>{if(d){d.unsubscribe(),d=null;const z=T;T=null,I.next(z)}};function R(){const z=y+l,W=x.now();if(W{T=z,y=x.now(),d||(d=x.schedule(R,l),I.add(d))},()=>{F(),I.complete()},void 0,()=>{T=d=null}))})}},9901:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>w});var e=g(9974),t=g(4360);function w(S){return(0,e.N)((l,x)=>{let f=!1;l.subscribe((0,t._)(x,I=>{f=!0,x.next(I)},()=>{f||x.next(S),x.complete()}))})}},5335:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>T});var e=g(3236),t=g(8793),w=g(6697),S=g(3557),l=g(3703),x=g(1397),f=g(8750);function I(y,F){return F?R=>(0,t.x)(F.pipe((0,w.s)(1),(0,S.w)()),R.pipe(I(y))):(0,x.Z)((R,z)=>(0,f.Tg)(y(R,z)).pipe((0,w.s)(1),(0,l.u)(R)))}var d=g(1807);function T(y,F=e.E){const R=(0,d.O)(y,F);return I(()=>R)}},3294:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>S});var e=g(3669),t=g(9974),w=g(4360);function S(x,f=e.D){return x=x??l,(0,t.N)((I,d)=>{let T,y=!0;I.subscribe((0,w._)(d,F=>{const R=f(F);(y||!x(T,R))&&(y=!1,T=R,d.next(F))}))})}function l(x,f){return x===f}},5964:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>w});var e=g(9974),t=g(4360);function w(S,l){return(0,e.N)((x,f)=>{let I=0;x.subscribe((0,t._)(f,d=>S.call(l,d,I++)&&f.next(d)))})}},980:(Qe,te,g)=>{"use strict";g.d(te,{j:()=>t});var e=g(9974);function t(w){return(0,e.N)((S,l)=>{try{S.subscribe(l)}finally{l.add(w)}})}},1594:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>f});var e=g(9350),t=g(5964),w=g(6697),S=g(9901),l=g(3774),x=g(3669);function f(I,d){const T=arguments.length>=2;return y=>y.pipe(I?(0,t.p)((F,R)=>I(F,R,y)):x.D,(0,w.s)(1),T?(0,S.U)(d):(0,l.v)(()=>new e.G))}},3557:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>S});var e=g(9974),t=g(4360),w=g(5343);function S(){return(0,e.N)((l,x)=>{l.subscribe((0,t._)(x,w.l))})}},6354:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>w});var e=g(9974),t=g(4360);function w(S,l){return(0,e.N)((x,f)=>{let I=0;x.subscribe((0,t._)(f,d=>{f.next(S.call(l,d,I++))}))})}},3703:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>t});var e=g(6354);function t(w){return(0,e.T)(()=>w)}},6365:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>w});var e=g(1397),t=g(3669);function w(S=1/0){return(0,e.Z)(t.D,S)}},1397:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>I});var e=g(6354),t=g(8750),w=g(9974),S=g(5225),l=g(4360),f=g(8071);function I(d,T,y=1/0){return(0,f.T)(T)?I((F,R)=>(0,e.T)((z,W)=>T(F,z,R,W))((0,t.Tg)(d(F,R))),y):("number"==typeof T&&(y=T),(0,w.N)((F,R)=>function x(d,T,y,F,R,z,W,$){const j=[];let Q=0,J=0,ee=!1;const ie=()=>{ee&&!j.length&&!Q&&T.complete()},ge=Me=>Q{z&&T.next(Me),Q++;let Te=!1;(0,t.Tg)(y(Me,J++)).subscribe((0,l._)(T,de=>{R?.(de),z?ge(de):T.next(de)},()=>{Te=!0},void 0,()=>{if(Te)try{for(Q--;j.length&&Qae(de)):ae(de)}ie()}catch(de){T.error(de)}}))};return d.subscribe((0,l._)(T,ge,()=>{ee=!0,ie()})),()=>{$?.()}}(F,R,d,y)))}},941:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>S});var e=g(5225),t=g(9974),w=g(4360);function S(l,x=0){return(0,t.N)((f,I)=>{f.subscribe((0,w._)(I,d=>(0,e.N)(I,l,()=>I.next(d),x),()=>(0,e.N)(I,l,()=>I.complete(),x),d=>(0,e.N)(I,l,()=>I.error(d),x)))})}},9898:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>w});var e=g(9974),t=g(4360);function w(){return(0,e.N)((S,l)=>{let x=null;S._refCount++;const f=(0,t._)(l,void 0,void 0,void 0,()=>{if(!S||S._refCount<=0||0<--S._refCount)return void(x=null);const I=S._connection,d=x;x=null,I&&(!d||I===d)&&I.unsubscribe(),l.unsubscribe()});S.subscribe(f),f.closed||(x=S.connect())})}},2816:(Qe,te,g)=>{"use strict";g.d(te,{S:()=>S});var e=g(9974),t=g(4360);function S(l,x){return(0,e.N)(function w(l,x,f,I,d){return(T,y)=>{let F=f,R=x,z=0;T.subscribe((0,t._)(y,W=>{const $=z++;R=F?l(R,W,$):(F=!0,W),I&&y.next(R)},d&&(()=>{F&&y.next(R),y.complete()})))}}(l,x,arguments.length>=2,!0))}},7647:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>l});var e=g(8750),t=g(1413),w=g(7707),S=g(9974);function l(f={}){const{connector:I=(()=>new t.B),resetOnError:d=!0,resetOnComplete:T=!0,resetOnRefCountZero:y=!0}=f;return F=>{let R,z,W,$=0,j=!1,Q=!1;const J=()=>{z?.unsubscribe(),z=void 0},ee=()=>{J(),R=W=void 0,j=Q=!1},ie=()=>{const ge=R;ee(),ge?.unsubscribe()};return(0,S.N)((ge,ae)=>{$++,!Q&&!j&&J();const Me=W=W??I();ae.add(()=>{$--,0===$&&!Q&&!j&&(z=x(ie,y))}),Me.subscribe(ae),!R&&$>0&&(R=new w.Ms({next:Te=>Me.next(Te),error:Te=>{Q=!0,J(),z=x(ee,d,Te),Me.error(Te)},complete:()=>{j=!0,J(),z=x(ee,T),Me.complete()}}),(0,e.Tg)(ge).subscribe(R))})(F)}}function x(f,I,...d){if(!0===I)return void f();if(!1===I)return;const T=new w.Ms({next:()=>{T.unsubscribe(),f()}});return(0,e.Tg)(I(...d)).subscribe(T)}},5245:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>t});var e=g(5964);function t(w){return(0,e.p)((S,l)=>w<=l)}},9172:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>S});var e=g(8793),t=g(9326),w=g(9974);function S(...l){const x=(0,t.lI)(l);return(0,w.N)((f,I)=>{(x?(0,e.x)(l,f,x):(0,e.x)(l,f)).subscribe(I)})}},5558:(Qe,te,g)=>{"use strict";g.d(te,{n:()=>S});var e=g(8750),t=g(9974),w=g(4360);function S(l,x){return(0,t.N)((f,I)=>{let d=null,T=0,y=!1;const F=()=>y&&!d&&I.complete();f.subscribe((0,w._)(I,R=>{d?.unsubscribe();let z=0;const W=T++;(0,e.Tg)(l(R,W)).subscribe(d=(0,w._)(I,$=>I.next(x?x(R,$,W,z++):$),()=>{d=null,F()}))},()=>{y=!0,F()}))})}},6697:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>S});var e=g(983),t=g(9974),w=g(4360);function S(l){return l<=0?()=>e.w:(0,t.N)((x,f)=>{let I=0;x.subscribe((0,w._)(f,d=>{++I<=l&&(f.next(d),l<=I&&f.complete())}))})}},6977:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>l});var e=g(9974),t=g(4360),w=g(8750),S=g(5343);function l(x){return(0,e.N)((f,I)=>{(0,w.Tg)(x).subscribe((0,t._)(I,()=>I.complete(),S.l)),!I.closed&&f.subscribe(I)})}},8141:(Qe,te,g)=>{"use strict";g.d(te,{M:()=>l});var e=g(8071),t=g(9974),w=g(4360),S=g(3669);function l(x,f,I){const d=(0,e.T)(x)||f||I?{next:x,error:f,complete:I}:x;return d?(0,t.N)((T,y)=>{var F;null===(F=d.subscribe)||void 0===F||F.call(d);let R=!0;T.subscribe((0,w._)(y,z=>{var W;null===(W=d.next)||void 0===W||W.call(d,z),y.next(z)},()=>{var z;R=!1,null===(z=d.complete)||void 0===z||z.call(d),y.complete()},z=>{var W;R=!1,null===(W=d.error)||void 0===W||W.call(d,z),y.error(z)},()=>{var z,W;R&&(null===(z=d.unsubscribe)||void 0===z||z.call(d)),null===(W=d.finalize)||void 0===W||W.call(d)}))}):S.D}},3774:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>S});var e=g(9350),t=g(9974),w=g(4360);function S(x=l){return(0,t.N)((f,I)=>{let d=!1;f.subscribe((0,w._)(I,T=>{d=!0,I.next(T)},()=>d?I.complete():I.error(x())))})}function l(){return new e.G}},3993:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>f});var e=g(9974),t=g(4360),w=g(8750),S=g(3669),l=g(5343),x=g(9326);function f(...I){const d=(0,x.ms)(I);return(0,e.N)((T,y)=>{const F=I.length,R=new Array(F);let z=I.map(()=>!1),W=!1;for(let $=0;${R[$]=j,!W&&!z[$]&&(z[$]=!0,(W=z.every(S.D))&&(z=null))},l.l));T.subscribe((0,t._)(y,$=>{if(W){const j=[$,...R];y.next(d?d(...j):j)}}))})}},6780:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>l});var e=g(8359);class t extends e.yU{constructor(f,I){super()}schedule(f,I=0){return this}}const w={setInterval(x,f,...I){const{delegate:d}=w;return d?.setInterval?d.setInterval(x,f,...I):setInterval(x,f,...I)},clearInterval(x){const{delegate:f}=w;return(f?.clearInterval||clearInterval)(x)},delegate:void 0};var S=g(7908);class l extends t{constructor(f,I){super(f,I),this.scheduler=f,this.work=I,this.pending=!1}schedule(f,I=0){var d;if(this.closed)return this;this.state=f;const T=this.id,y=this.scheduler;return null!=T&&(this.id=this.recycleAsyncId(y,T,I)),this.pending=!0,this.delay=I,this.id=null!==(d=this.id)&&void 0!==d?d:this.requestAsyncId(y,this.id,I),this}requestAsyncId(f,I,d=0){return w.setInterval(f.flush.bind(f,this),d)}recycleAsyncId(f,I,d=0){if(null!=d&&this.delay===d&&!1===this.pending)return I;null!=I&&w.clearInterval(I)}execute(f,I){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const d=this._execute(f,I);if(d)return d;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(f,I){let T,d=!1;try{this.work(f)}catch(y){d=!0,T=y||new Error("Scheduled action threw falsy error")}if(d)return this.unsubscribe(),T}unsubscribe(){if(!this.closed){const{id:f,scheduler:I}=this,{actions:d}=I;this.work=this.state=this.scheduler=null,this.pending=!1,(0,S.o)(d,this),null!=f&&(this.id=this.recycleAsyncId(I,f,null)),this.delay=null,super.unsubscribe()}}}},9687:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>w});var e=g(6129);class t{constructor(l,x=t.now){this.schedulerActionCtor=l,this.now=x}schedule(l,x=0,f){return new this.schedulerActionCtor(this,l).schedule(f,x)}}t.now=e.U.now;class w extends t{constructor(l,x=t.now){super(l,x),this.actions=[],this._active=!1}flush(l){const{actions:x}=this;if(this._active)return void x.push(l);let f;this._active=!0;do{if(f=l.execute(l.state,l.delay))break}while(l=x.shift());if(this._active=!1,f){for(;l=x.shift();)l.unsubscribe();throw f}}}},5007:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>z});var e=g(6780);let w,t=1;const S={};function l($){return $ in S&&(delete S[$],!0)}const x={setImmediate($){const j=t++;return S[j]=!0,w||(w=Promise.resolve()),w.then(()=>l(j)&&$()),j},clearImmediate($){l($)}},{setImmediate:I,clearImmediate:d}=x,T={setImmediate(...$){const{delegate:j}=T;return(j?.setImmediate||I)(...$)},clearImmediate($){const{delegate:j}=T;return(j?.clearImmediate||d)($)},delegate:void 0};var F=g(9687);const z=new class R extends F.q{flush(j){this._active=!0;const Q=this._scheduled;this._scheduled=void 0;const{actions:J}=this;let ee;j=j||J.shift();do{if(ee=j.execute(j.state,j.delay))break}while((j=J[0])&&j.id===Q&&J.shift());if(this._active=!1,ee){for(;(j=J[0])&&j.id===Q&&J.shift();)j.unsubscribe();throw ee}}}(class y extends e.R{constructor(j,Q){super(j,Q),this.scheduler=j,this.work=Q}requestAsyncId(j,Q,J=0){return null!==J&&J>0?super.requestAsyncId(j,Q,J):(j.actions.push(this),j._scheduled||(j._scheduled=T.setImmediate(j.flush.bind(j,void 0))))}recycleAsyncId(j,Q,J=0){var ee;if(null!=J?J>0:this.delay>0)return super.recycleAsyncId(j,Q,J);const{actions:ie}=j;null!=Q&&(null===(ee=ie[ie.length-1])||void 0===ee?void 0:ee.id)!==Q&&(T.clearImmediate(Q),j._scheduled===Q&&(j._scheduled=void 0))}})},3236:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>w,b:()=>S});var e=g(6780);const w=new(g(9687).q)(e.R),S=w},6129:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>e});const e={now:()=>(e.delegate||Date).now(),delegate:void 0}},7242:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>l});var e=g(6780),w=g(9687);const l=new class S extends w.q{}(class t extends e.R{constructor(I,d){super(I,d),this.scheduler=I,this.work=d}schedule(I,d=0){return d>0?super.schedule(I,d):(this.delay=d,this.state=I,this.scheduler.flush(this),this)}execute(I,d){return d>0||this.closed?super.execute(I,d):this._execute(I,d)}requestAsyncId(I,d,T=0){return null!=T&&T>0||null==T&&this.delay>0?super.requestAsyncId(I,d,T):(I.flush(this),0)}})},9270:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>e});const e={setTimeout(t,w,...S){const{delegate:l}=e;return l?.setTimeout?l.setTimeout(t,w,...S):setTimeout(t,w,...S)},clearTimeout(t){const{delegate:w}=e;return(w?.clearTimeout||clearTimeout)(t)},delegate:void 0}},4761:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>t});const t=function e(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},3494:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>e});const e="function"==typeof Symbol&&Symbol.observable||"@@observable"},9350:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>t});const t=(0,g(1853).L)(w=>function(){w(this),this.name="EmptyError",this.message="no elements in sequence"})},9326:(Qe,te,g)=>{"use strict";g.d(te,{R0:()=>x,lI:()=>l,ms:()=>S});var e=g(8071),t=g(9470);function w(f){return f[f.length-1]}function S(f){return(0,e.T)(w(f))?f.pop():void 0}function l(f){return(0,t.m)(w(f))?f.pop():void 0}function x(f,I){return"number"==typeof w(f)?f.pop():I}},3073:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>l});const{isArray:e}=Array,{getPrototypeOf:t,prototype:w,keys:S}=Object;function l(f){if(1===f.length){const I=f[0];if(e(I))return{args:I,keys:null};if(function x(f){return f&&"object"==typeof f&&t(f)===w}(I)){const d=S(I);return{args:d.map(T=>I[T]),keys:d}}}return{args:f,keys:null}}},7908:(Qe,te,g)=>{"use strict";function e(t,w){if(t){const S=t.indexOf(w);0<=S&&t.splice(S,1)}}g.d(te,{o:()=>e})},1853:(Qe,te,g)=>{"use strict";function e(t){const S=t(l=>{Error.call(l),l.stack=(new Error).stack});return S.prototype=Object.create(Error.prototype),S.prototype.constructor=S,S}g.d(te,{L:()=>e})},8496:(Qe,te,g)=>{"use strict";function e(t,w){return t.reduce((S,l,x)=>(S[l]=w[x],S),{})}g.d(te,{e:()=>e})},9786:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>w,l:()=>S});var e=g(1026);let t=null;function w(l){if(e.$.useDeprecatedSynchronousErrorHandling){const x=!t;if(x&&(t={errorThrown:!1,error:null}),l(),x){const{errorThrown:f,error:I}=t;if(t=null,f)throw I}}else l()}function S(l){e.$.useDeprecatedSynchronousErrorHandling&&t&&(t.errorThrown=!0,t.error=l)}},5225:(Qe,te,g)=>{"use strict";function e(t,w,S,l=0,x=!1){const f=w.schedule(function(){S(),x?t.add(this.schedule(null,l)):this.unsubscribe()},l);if(t.add(f),!x)return f}g.d(te,{N:()=>e})},3669:(Qe,te,g)=>{"use strict";function e(t){return t}g.d(te,{D:()=>e})},7441:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>e});const e=t=>t&&"number"==typeof t.length&&"function"!=typeof t},7953:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>t});var e=g(8071);function t(w){return Symbol.asyncIterator&&(0,e.T)(w?.[Symbol.asyncIterator])}},8211:(Qe,te,g)=>{"use strict";function e(t){return t instanceof Date&&!isNaN(t)}g.d(te,{v:()=>e})},8071:(Qe,te,g)=>{"use strict";function e(t){return"function"==typeof t}g.d(te,{T:()=>e})},5055:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>w});var e=g(3494),t=g(8071);function w(S){return(0,t.T)(S[e.s])}},5397:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>w});var e=g(4761),t=g(8071);function w(S){return(0,t.T)(S?.[e.l])}},4402:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>w});var e=g(1985),t=g(8071);function w(S){return!!S&&(S instanceof e.c||(0,t.T)(S.lift)&&(0,t.T)(S.subscribe))}},9858:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>t});var e=g(8071);function t(w){return(0,e.T)(w?.then)}},5196:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>w,U:()=>S});var e=g(1635),t=g(8071);function w(l){return(0,e.AQ)(this,arguments,function*(){const f=l.getReader();try{for(;;){const{value:I,done:d}=yield(0,e.N3)(f.read());if(d)return yield(0,e.N3)(void 0);yield yield(0,e.N3)(I)}}finally{f.releaseLock()}})}function S(l){return(0,t.T)(l?.getReader)}},9470:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>t});var e=g(8071);function t(w){return w&&(0,e.T)(w.schedule)}},9974:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>w,S:()=>t});var e=g(8071);function t(S){return(0,e.T)(S?.lift)}function w(S){return l=>{if(t(l))return l.lift(function(x){try{return S(x,this)}catch(f){this.error(f)}});throw new TypeError("Unable to lift unknown Observable type")}}},6450:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>S});var e=g(6354);const{isArray:t}=Array;function S(l){return(0,e.T)(x=>function w(l,x){return t(x)?l(...x):l(x)}(l,x))}},5343:(Qe,te,g)=>{"use strict";function e(){}g.d(te,{l:()=>e})},1203:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>t,m:()=>w});var e=g(3669);function t(...S){return w(S)}function w(S){return 0===S.length?e.D:1===S.length?S[0]:function(x){return S.reduce((f,I)=>I(f),x)}}},5334:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>w});var e=g(1026),t=g(9270);function w(S){t.f.setTimeout(()=>{const{onUnhandledError:l}=e.$;if(!l)throw S;l(S)})}},591:(Qe,te,g)=>{"use strict";function e(t){return new TypeError(`You provided ${null!==t&&"object"==typeof t?"an invalid object":`'${t}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}g.d(te,{L:()=>e})},7054:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),S.prototype=Object.create(t.prototype),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},463:(Qe,te,g)=>{var e=g(7054).Buffer;function t(w,S){this._block=e.alloc(w),this._finalSize=S,this._blockSize=w,this._len=0}t.prototype.update=function(w,S){"string"==typeof w&&(w=e.from(w,S=S||"utf8"));for(var l=this._block,x=this._blockSize,f=w.length,I=this._len,d=0;d=this._finalSize&&(this._update(this._block),this._block.fill(0));var l=8*this._len;if(l<=4294967295)this._block.writeUInt32BE(l,this._blockSize-4);else{var x=(4294967295&l)>>>0;this._block.writeUInt32BE((l-x)/4294967296,this._blockSize-8),this._block.writeUInt32BE(x,this._blockSize-4)}this._update(this._block);var I=this._hash();return w?I.toString(w):I},t.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Qe.exports=t},5443:(Qe,te,g)=>{var e=Qe.exports=function(w){w=w.toLowerCase();var S=e[w];if(!S)throw new Error(w+" is not supported (we accept pull requests)");return new S};e.sha=g(8585),e.sha1=g(1270),e.sha224=g(2709),e.sha256=g(2148),e.sha384=g(1856),e.sha512=g(3121)},8585:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(T){return T<<5|T>>>27}function I(T){return T<<30|T>>>2}function d(T,y,F,R){return 0===T?y&F|~y&R:2===T?y&F|y&R|F&R:y^F^R}e(x,t),x.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},x.prototype._update=function(T){for(var y=this._w,F=0|this._a,R=0|this._b,z=0|this._c,W=0|this._d,$=0|this._e,j=0;j<16;++j)y[j]=T.readInt32BE(4*j);for(;j<80;++j)y[j]=y[j-3]^y[j-8]^y[j-14]^y[j-16];for(var Q=0;Q<80;++Q){var J=~~(Q/20),ee=f(F)+d(J,R,z,W)+$+y[Q]+S[J]|0;$=W,W=z,z=I(R),R=F,F=ee}this._a=F+this._a|0,this._b=R+this._b|0,this._c=z+this._c|0,this._d=W+this._d|0,this._e=$+this._e|0},x.prototype._hash=function(){var T=w.allocUnsafe(20);return T.writeInt32BE(0|this._a,0),T.writeInt32BE(0|this._b,4),T.writeInt32BE(0|this._c,8),T.writeInt32BE(0|this._d,12),T.writeInt32BE(0|this._e,16),T},Qe.exports=x},1270:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(y){return y<<1|y>>>31}function I(y){return y<<5|y>>>27}function d(y){return y<<30|y>>>2}function T(y,F,R,z){return 0===y?F&R|~F&z:2===y?F&R|F&z|R&z:F^R^z}e(x,t),x.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},x.prototype._update=function(y){for(var F=this._w,R=0|this._a,z=0|this._b,W=0|this._c,$=0|this._d,j=0|this._e,Q=0;Q<16;++Q)F[Q]=y.readInt32BE(4*Q);for(;Q<80;++Q)F[Q]=f(F[Q-3]^F[Q-8]^F[Q-14]^F[Q-16]);for(var J=0;J<80;++J){var ee=~~(J/20),ie=I(R)+T(ee,z,W,$)+j+F[J]+S[ee]|0;j=$,$=W,W=d(z),z=R,R=ie}this._a=R+this._a|0,this._b=z+this._b|0,this._c=W+this._c|0,this._d=$+this._d|0,this._e=j+this._e|0},x.prototype._hash=function(){var y=w.allocUnsafe(20);return y.writeInt32BE(0|this._a,0),y.writeInt32BE(0|this._b,4),y.writeInt32BE(0|this._c,8),y.writeInt32BE(0|this._d,12),y.writeInt32BE(0|this._e,16),y},Qe.exports=x},2709:(Qe,te,g)=>{var e=g(1993),t=g(2148),w=g(463),S=g(7054).Buffer,l=new Array(64);function x(){this.init(),this._w=l,w.call(this,64,56)}e(x,t),x.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},x.prototype._hash=function(){var f=S.allocUnsafe(28);return f.writeInt32BE(this._a,0),f.writeInt32BE(this._b,4),f.writeInt32BE(this._c,8),f.writeInt32BE(this._d,12),f.writeInt32BE(this._e,16),f.writeInt32BE(this._f,20),f.writeInt32BE(this._g,24),f},Qe.exports=x},2148:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,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],l=new Array(64);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(R,z,W){return W^R&(z^W)}function I(R,z,W){return R&z|W&(R|z)}function d(R){return(R>>>2|R<<30)^(R>>>13|R<<19)^(R>>>22|R<<10)}function T(R){return(R>>>6|R<<26)^(R>>>11|R<<21)^(R>>>25|R<<7)}function y(R){return(R>>>7|R<<25)^(R>>>18|R<<14)^R>>>3}function F(R){return(R>>>17|R<<15)^(R>>>19|R<<13)^R>>>10}e(x,t),x.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},x.prototype._update=function(R){for(var z=this._w,W=0|this._a,$=0|this._b,j=0|this._c,Q=0|this._d,J=0|this._e,ee=0|this._f,ie=0|this._g,ge=0|this._h,ae=0;ae<16;++ae)z[ae]=R.readInt32BE(4*ae);for(;ae<64;++ae)z[ae]=F(z[ae-2])+z[ae-7]+y(z[ae-15])+z[ae-16]|0;for(var Me=0;Me<64;++Me){var Te=ge+T(J)+f(J,ee,ie)+S[Me]+z[Me]|0,de=d(W)+I(W,$,j)|0;ge=ie,ie=ee,ee=J,J=Q+Te|0,Q=j,j=$,$=W,W=Te+de|0}this._a=W+this._a|0,this._b=$+this._b|0,this._c=j+this._c|0,this._d=Q+this._d|0,this._e=J+this._e|0,this._f=ee+this._f|0,this._g=ie+this._g|0,this._h=ge+this._h|0},x.prototype._hash=function(){var R=w.allocUnsafe(32);return R.writeInt32BE(this._a,0),R.writeInt32BE(this._b,4),R.writeInt32BE(this._c,8),R.writeInt32BE(this._d,12),R.writeInt32BE(this._e,16),R.writeInt32BE(this._f,20),R.writeInt32BE(this._g,24),R.writeInt32BE(this._h,28),R},Qe.exports=x},1856:(Qe,te,g)=>{var e=g(1993),t=g(3121),w=g(463),S=g(7054).Buffer,l=new Array(160);function x(){this.init(),this._w=l,w.call(this,128,112)}e(x,t),x.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},x.prototype._hash=function(){var f=S.allocUnsafe(48);function I(d,T,y){f.writeInt32BE(d,y),f.writeInt32BE(T,y+4)}return I(this._ah,this._al,0),I(this._bh,this._bl,8),I(this._ch,this._cl,16),I(this._dh,this._dl,24),I(this._eh,this._el,32),I(this._fh,this._fl,40),f},Qe.exports=x},3121:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[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],l=new Array(160);function x(){this.init(),this._w=l,t.call(this,128,112)}function f($,j,Q){return Q^$&(j^Q)}function I($,j,Q){return $&j|Q&($|j)}function d($,j){return($>>>28|j<<4)^(j>>>2|$<<30)^(j>>>7|$<<25)}function T($,j){return($>>>14|j<<18)^($>>>18|j<<14)^(j>>>9|$<<23)}function y($,j){return($>>>1|j<<31)^($>>>8|j<<24)^$>>>7}function F($,j){return($>>>1|j<<31)^($>>>8|j<<24)^($>>>7|j<<25)}function R($,j){return($>>>19|j<<13)^(j>>>29|$<<3)^$>>>6}function z($,j){return($>>>19|j<<13)^(j>>>29|$<<3)^($>>>6|j<<26)}function W($,j){return $>>>0>>0?1:0}e(x,t),x.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},x.prototype._update=function($){for(var j=this._w,Q=0|this._ah,J=0|this._bh,ee=0|this._ch,ie=0|this._dh,ge=0|this._eh,ae=0|this._fh,Me=0|this._gh,Te=0|this._hh,de=0|this._al,D=0|this._bl,n=0|this._cl,c=0|this._dl,m=0|this._el,h=0|this._fl,C=0|this._gl,k=0|this._hl,L=0;L<32;L+=2)j[L]=$.readInt32BE(4*L),j[L+1]=$.readInt32BE(4*L+4);for(;L<160;L+=2){var _=j[L-30],r=j[L-30+1],v=y(_,r),V=F(r,_),N=R(_=j[L-4],r=j[L-4+1]),ne=z(r,_),qe=j[L-32],Ke=j[L-32+1],se=V+j[L-14+1]|0,X=v+j[L-14]+W(se,V)|0;X=(X=X+N+W(se=se+ne|0,ne)|0)+qe+W(se=se+Ke|0,Ke)|0,j[L]=X,j[L+1]=se}for(var me=0;me<160;me+=2){X=j[me],se=j[me+1];var ce=I(Q,J,ee),fe=I(de,D,n),ke=d(Q,de),mt=d(de,Q),_e=T(ge,m),be=T(m,ge),pe=S[me],Ze=S[me+1],_t=f(ge,ae,Me),at=f(m,h,C),pt=k+be|0,Xt=Te+_e+W(pt,k)|0;Xt=(Xt=(Xt=Xt+_t+W(pt=pt+at|0,at)|0)+pe+W(pt=pt+Ze|0,Ze)|0)+X+W(pt=pt+se|0,se)|0;var ye=mt+fe|0,ue=ke+ce+W(ye,mt)|0;Te=Me,k=C,Me=ae,C=h,ae=ge,h=m,ge=ie+Xt+W(m=c+pt|0,c)|0,ie=ee,c=n,ee=J,n=D,J=Q,D=de,Q=Xt+ue+W(de=pt+ye|0,pt)|0}this._al=this._al+de|0,this._bl=this._bl+D|0,this._cl=this._cl+n|0,this._dl=this._dl+c|0,this._el=this._el+m|0,this._fl=this._fl+h|0,this._gl=this._gl+C|0,this._hl=this._hl+k|0,this._ah=this._ah+Q+W(this._al,de)|0,this._bh=this._bh+J+W(this._bl,D)|0,this._ch=this._ch+ee+W(this._cl,n)|0,this._dh=this._dh+ie+W(this._dl,c)|0,this._eh=this._eh+ge+W(this._el,m)|0,this._fh=this._fh+ae+W(this._fl,h)|0,this._gh=this._gh+Me+W(this._gl,C)|0,this._hh=this._hh+Te+W(this._hl,k)|0},x.prototype._hash=function(){var $=w.allocUnsafe(64);function j(Q,J,ee){$.writeInt32BE(Q,ee),$.writeInt32BE(J,ee+4)}return j(this._ah,this._al,0),j(this._bh,this._bl,8),j(this._ch,this._cl,16),j(this._dh,this._dl,24),j(this._eh,this._el,32),j(this._fh,this._fl,40),j(this._gh,this._gl,48),j(this._hh,this._hl,56),$},Qe.exports=x},2852:function(Qe,te,g){!function(e){"use strict";var t={};Qe.exports?(t.bytesToHex=g(4740).bytesToHex,t.convertString=g(820),Qe.exports=I):(t.bytesToHex=e.convertHex.bytesToHex,t.convertString=e.convertString,e.sha256=I);var w=[];!function(){function d(R){for(var z=Math.sqrt(R),W=2;W<=z;W++)if(!(R%W))return!1;return!0}for(var y=2,F=0;F<64;)d(y)&&(w[F]=4294967296*((R=Math.pow(y,1/3))-(0|R))|0,F++),y++;var R}();var S=function(d){for(var T=[],y=0,F=0;y>>5]|=d[y]<<24-F%32;return T},l=function(d){for(var T=[],y=0;y<32*d.length;y+=8)T.push(d[y>>>5]>>>24-y%32&255);return T},x=[],f=function(d,T,y){for(var F=d[0],R=d[1],z=d[2],W=d[3],$=d[4],j=d[5],Q=d[6],J=d[7],ee=0;ee<64;ee++){if(ee<16)x[ee]=0|T[y+ee];else{var ie=x[ee-15],ae=x[ee-2];x[ee]=((ie<<25|ie>>>7)^(ie<<14|ie>>>18)^ie>>>3)+x[ee-7]+((ae<<15|ae>>>17)^(ae<<13|ae>>>19)^ae>>>10)+x[ee-16]}var de=F&R^F&z^R&z,c=J+(($<<26|$>>>6)^($<<21|$>>>11)^($<<7|$>>>25))+($&j^~$&Q)+w[ee]+x[ee];J=Q,Q=j,j=$,$=W+c|0,W=z,z=R,R=F,F=c+(((F<<30|F>>>2)^(F<<19|F>>>13)^(F<<10|F>>>22))+de)|0}d[0]=d[0]+F|0,d[1]=d[1]+R|0,d[2]=d[2]+z|0,d[3]=d[3]+W|0,d[4]=d[4]+$|0,d[5]=d[5]+j|0,d[6]=d[6]+Q|0,d[7]=d[7]+J|0};function I(d,T){d.constructor===String&&(d=t.convertString.UTF8.stringToBytes(d));var y=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],F=S(d),R=8*d.length;F[R>>5]|=128<<24-R%32,F[15+(R+64>>9<<4)]=R;for(var z=0;z{Qe.exports=w;var e=g(4356).EventEmitter;function w(){e.call(this)}g(1993)(w,e),w.Readable=g(1092),w.Writable=g(5492),w.Duplex=g(1030),w.Transform=g(3410),w.PassThrough=g(3824),w.finished=g(7854),w.pipeline=g(6846),w.Stream=w,w.prototype.pipe=function(S,l){var x=this;function f(z){S.writable&&!1===S.write(z)&&x.pause&&x.pause()}function I(){x.readable&&x.resume&&x.resume()}x.on("data",f),S.on("drain",I),!S._isStdio&&(!l||!1!==l.end)&&(x.on("end",T),x.on("close",y));var d=!1;function T(){d||(d=!0,S.end())}function y(){d||(d=!0,"function"==typeof S.destroy&&S.destroy())}function F(z){if(R(),0===e.listenerCount(this,"error"))throw z}function R(){x.removeListener("data",f),S.removeListener("drain",I),x.removeListener("end",T),x.removeListener("close",y),x.removeListener("error",F),S.removeListener("error",F),x.removeListener("end",R),x.removeListener("close",R),S.removeListener("close",R)}return x.on("error",F),S.on("error",F),x.on("end",R),x.on("close",R),S.on("close",R),S.emit("pipe",x),S}},464:Qe=>{"use strict";var g={};function e(x,f,I){I||(I=Error);var T=function(y){function F(R,z,W){return y.call(this,function d(y,F,R){return"string"==typeof f?f:f(y,F,R)}(R,z,W))||this}return function te(x,f){x.prototype=Object.create(f.prototype),x.prototype.constructor=x,x.__proto__=f}(F,y),F}(I);T.prototype.name=I.name,T.prototype.code=x,g[x]=T}function t(x,f){if(Array.isArray(x)){var I=x.length;return x=x.map(function(d){return String(d)}),I>2?"one of ".concat(f," ").concat(x.slice(0,I-1).join(", "),", or ")+x[I-1]:2===I?"one of ".concat(f," ").concat(x[0]," or ").concat(x[1]):"of ".concat(f," ").concat(x[0])}return"of ".concat(f," ").concat(String(x))}e("ERR_INVALID_OPT_VALUE",function(x,f){return'The value "'+f+'" is invalid for option "'+x+'"'},TypeError),e("ERR_INVALID_ARG_TYPE",function(x,f,I){var d,T;if("string"==typeof f&&function w(x,f,I){return x.substr(!I||I<0?0:+I,f.length)===f}(f,"not ")?(d="must not be",f=f.replace(/^not /,"")):d="must be",function S(x,f,I){return(void 0===I||I>x.length)&&(I=x.length),x.substring(I-f.length,I)===f}(x," argument"))T="The ".concat(x," ").concat(d," ").concat(t(f,"type"));else{var y=function l(x,f,I){return"number"!=typeof I&&(I=0),!(I+f.length>x.length)&&-1!==x.indexOf(f,I)}(x,".")?"property":"argument";T='The "'.concat(x,'" ').concat(y," ").concat(d," ").concat(t(f,"type"))}return T+". Received type ".concat(typeof I)},TypeError),e("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),e("ERR_METHOD_NOT_IMPLEMENTED",function(x){return"The "+x+" method is not implemented"}),e("ERR_STREAM_PREMATURE_CLOSE","Premature close"),e("ERR_STREAM_DESTROYED",function(x){return"Cannot call "+x+" after a stream was destroyed"}),e("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),e("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),e("ERR_STREAM_WRITE_AFTER_END","write after end"),e("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),e("ERR_UNKNOWN_ENCODING",function(x){return"Unknown encoding: "+x},TypeError),e("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Qe.exports.F=g},1030:(Qe,te,g)=>{"use strict";var e=Object.keys||function(T){var y=[];for(var F in T)y.push(F);return y};Qe.exports=f;var t=g(1092),w=g(5492);g(1993)(f,t);for(var S=e(w.prototype),l=0;l{"use strict";Qe.exports=t;var e=g(3410);function t(w){if(!(this instanceof t))return new t(w);e.call(this,w)}g(1993)(t,e),t.prototype._transform=function(w,S,l){l(null,w)}},1092:(Qe,te,g)=>{"use strict";var e;Qe.exports=D,D.ReadableState=de,g(4356);var T,w=function(ke,mt){return ke.listeners(mt).length},S=g(2601),l=g(3838).Buffer,x=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},d=g(7199);T=d&&d.debuglog?d.debuglog("stream"):function(){};var ee,ie,ge,y=g(7606),F=g(8152),z=g(2827).getHighWaterMark,W=g(464).F,$=W.ERR_INVALID_ARG_TYPE,j=W.ERR_STREAM_PUSH_AFTER_EOF,Q=W.ERR_METHOD_NOT_IMPLEMENTED,J=W.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;g(1993)(D,S);var ae=F.errorOrDestroy,Me=["error","close","destroy","pause","resume"];function de(fe,ke,mt){e=e||g(1030),"boolean"!=typeof mt&&(mt=ke instanceof e),this.objectMode=!!(fe=fe||{}).objectMode,mt&&(this.objectMode=this.objectMode||!!fe.readableObjectMode),this.highWaterMark=z(this,fe,"readableHighWaterMark",mt),this.buffer=new y,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!==fe.emitClose,this.autoDestroy=!!fe.autoDestroy,this.destroyed=!1,this.defaultEncoding=fe.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,fe.encoding&&(ee||(ee=g(8454).I),this.decoder=new ee(fe.encoding),this.encoding=fe.encoding)}function D(fe){if(e=e||g(1030),!(this instanceof D))return new D(fe);this._readableState=new de(fe,this,this instanceof e),this.readable=!0,fe&&("function"==typeof fe.read&&(this._read=fe.read),"function"==typeof fe.destroy&&(this._destroy=fe.destroy)),S.call(this)}function n(fe,ke,mt,_e,be){T("readableAddChunk",ke);var Ze,pe=fe._readableState;if(null===ke)pe.reading=!1,function L(fe,ke){if(T("onEofChunk"),!ke.ended){if(ke.decoder){var mt=ke.decoder.end();mt&&mt.length&&(ke.buffer.push(mt),ke.length+=ke.objectMode?1:mt.length)}ke.ended=!0,ke.sync?_(fe):(ke.needReadable=!1,ke.emittedReadable||(ke.emittedReadable=!0,r(fe)))}}(fe,pe);else if(be||(Ze=function m(fe,ke){var mt;return!function I(fe){return l.isBuffer(fe)||fe instanceof x}(ke)&&"string"!=typeof ke&&void 0!==ke&&!fe.objectMode&&(mt=new $("chunk",["string","Buffer","Uint8Array"],ke)),mt}(pe,ke)),Ze)ae(fe,Ze);else if(pe.objectMode||ke&&ke.length>0)if("string"!=typeof ke&&!pe.objectMode&&Object.getPrototypeOf(ke)!==l.prototype&&(ke=function f(fe){return l.from(fe)}(ke)),_e)pe.endEmitted?ae(fe,new J):c(fe,pe,ke,!0);else if(pe.ended)ae(fe,new j);else{if(pe.destroyed)return!1;pe.reading=!1,pe.decoder&&!mt?(ke=pe.decoder.write(ke),pe.objectMode||0!==ke.length?c(fe,pe,ke,!1):v(fe,pe)):c(fe,pe,ke,!1)}else _e||(pe.reading=!1,v(fe,pe));return!pe.ended&&(pe.lengthke.highWaterMark&&(ke.highWaterMark=function C(fe){return fe>=h?fe=h:(fe--,fe|=fe>>>1,fe|=fe>>>2,fe|=fe>>>4,fe|=fe>>>8,fe|=fe>>>16,fe++),fe}(fe)),fe<=ke.length?fe:ke.ended?ke.length:(ke.needReadable=!0,0))}function _(fe){var ke=fe._readableState;T("emitReadable",ke.needReadable,ke.emittedReadable),ke.needReadable=!1,ke.emittedReadable||(T("emitReadable",ke.flowing),ke.emittedReadable=!0,process.nextTick(r,fe))}function r(fe){var ke=fe._readableState;T("emitReadable_",ke.destroyed,ke.length,ke.ended),!ke.destroyed&&(ke.length||ke.ended)&&(fe.emit("readable"),ke.emittedReadable=!1),ke.needReadable=!ke.flowing&&!ke.ended&&ke.length<=ke.highWaterMark,Ke(fe)}function v(fe,ke){ke.readingMore||(ke.readingMore=!0,process.nextTick(V,fe,ke))}function V(fe,ke){for(;!ke.reading&&!ke.ended&&(ke.length0,ke.resumeScheduled&&!ke.paused?ke.flowing=!0:fe.listenerCount("data")>0&&fe.resume()}function Ee(fe){T("readable nexttick read 0"),fe.read(0)}function qe(fe,ke){T("resume",ke.reading),ke.reading||fe.read(0),ke.resumeScheduled=!1,fe.emit("resume"),Ke(fe),ke.flowing&&!ke.reading&&fe.read(0)}function Ke(fe){var ke=fe._readableState;for(T("flow",ke.flowing);ke.flowing&&null!==fe.read(););}function se(fe,ke){return 0===ke.length?null:(ke.objectMode?mt=ke.buffer.shift():!fe||fe>=ke.length?(mt=ke.decoder?ke.buffer.join(""):1===ke.buffer.length?ke.buffer.first():ke.buffer.concat(ke.length),ke.buffer.clear()):mt=ke.buffer.consume(fe,ke.decoder),mt);var mt}function X(fe){var ke=fe._readableState;T("endReadable",ke.endEmitted),ke.endEmitted||(ke.ended=!0,process.nextTick(me,ke,fe))}function me(fe,ke){if(T("endReadableNT",fe.endEmitted,fe.length),!fe.endEmitted&&0===fe.length&&(fe.endEmitted=!0,ke.readable=!1,ke.emit("end"),fe.autoDestroy)){var mt=ke._writableState;(!mt||mt.autoDestroy&&mt.finished)&&ke.destroy()}}function ce(fe,ke){for(var mt=0,_e=fe.length;mt<_e;mt++)if(fe[mt]===ke)return mt;return-1}D.prototype.read=function(fe){T("read",fe),fe=parseInt(fe,10);var ke=this._readableState,mt=fe;if(0!==fe&&(ke.emittedReadable=!1),0===fe&&ke.needReadable&&((0!==ke.highWaterMark?ke.length>=ke.highWaterMark:ke.length>0)||ke.ended))return T("read: emitReadable",ke.length,ke.ended),0===ke.length&&ke.ended?X(this):_(this),null;if(0===(fe=k(fe,ke))&&ke.ended)return 0===ke.length&&X(this),null;var be,_e=ke.needReadable;return T("need readable",_e),(0===ke.length||ke.length-fe0?se(fe,ke):null)?(ke.needReadable=ke.length<=ke.highWaterMark,fe=0):(ke.length-=fe,ke.awaitDrain=0),0===ke.length&&(ke.ended||(ke.needReadable=!0),mt!==fe&&ke.ended&&X(this)),null!==be&&this.emit("data",be),be},D.prototype._read=function(fe){ae(this,new Q("_read()"))},D.prototype.pipe=function(fe,ke){var mt=this,_e=this._readableState;switch(_e.pipesCount){case 0:_e.pipes=fe;break;case 1:_e.pipes=[_e.pipes,fe];break;default:_e.pipes.push(fe)}_e.pipesCount+=1,T("pipe count=%d opts=%j",_e.pipesCount,ke);var pe=ke&&!1===ke.end||fe===process.stdout||fe===process.stderr?Xe:_t;function _t(){T("onend"),fe.end()}_e.endEmitted?process.nextTick(pe):mt.once("end",pe),fe.on("unpipe",function Ze(yt,Ye){T("onunpipe"),yt===mt&&Ye&&!1===Ye.hasUnpiped&&(Ye.hasUnpiped=!0,function Xt(){T("cleanup"),fe.removeListener("close",Ie),fe.removeListener("finish",He),fe.removeListener("drain",at),fe.removeListener("error",ue),fe.removeListener("unpipe",Ze),mt.removeListener("end",_t),mt.removeListener("end",Xe),mt.removeListener("data",ye),pt=!0,_e.awaitDrain&&(!fe._writableState||fe._writableState.needDrain)&&at()}())});var at=function N(fe){return function(){var mt=fe._readableState;T("pipeOnDrain",mt.awaitDrain),mt.awaitDrain&&mt.awaitDrain--,0===mt.awaitDrain&&w(fe,"data")&&(mt.flowing=!0,Ke(fe))}}(mt);fe.on("drain",at);var pt=!1;function ye(yt){T("ondata");var Ye=fe.write(yt);T("dest.write",Ye),!1===Ye&&((1===_e.pipesCount&&_e.pipes===fe||_e.pipesCount>1&&-1!==ce(_e.pipes,fe))&&!pt&&(T("false write response, pause",_e.awaitDrain),_e.awaitDrain++),mt.pause())}function ue(yt){T("onerror",yt),Xe(),fe.removeListener("error",ue),0===w(fe,"error")&&ae(fe,yt)}function Ie(){fe.removeListener("finish",He),Xe()}function He(){T("onfinish"),fe.removeListener("close",Ie),Xe()}function Xe(){T("unpipe"),mt.unpipe(fe)}return mt.on("data",ye),function Te(fe,ke,mt){if("function"==typeof fe.prependListener)return fe.prependListener(ke,mt);fe._events&&fe._events[ke]?Array.isArray(fe._events[ke])?fe._events[ke].unshift(mt):fe._events[ke]=[mt,fe._events[ke]]:fe.on(ke,mt)}(fe,"error",ue),fe.once("close",Ie),fe.once("finish",He),fe.emit("pipe",mt),_e.flowing||(T("pipe resume"),mt.resume()),fe},D.prototype.unpipe=function(fe){var ke=this._readableState,mt={hasUnpiped:!1};if(0===ke.pipesCount)return this;if(1===ke.pipesCount)return fe&&fe!==ke.pipes||(fe||(fe=ke.pipes),ke.pipes=null,ke.pipesCount=0,ke.flowing=!1,fe&&fe.emit("unpipe",this,mt)),this;if(!fe){var _e=ke.pipes,be=ke.pipesCount;ke.pipes=null,ke.pipesCount=0,ke.flowing=!1;for(var pe=0;pe0,!1!==_e.flowing&&this.resume()):"readable"===fe&&!_e.endEmitted&&!_e.readableListening&&(_e.readableListening=_e.needReadable=!0,_e.flowing=!1,_e.emittedReadable=!1,T("on readable",_e.length,_e.reading),_e.length?_(this):_e.reading||process.nextTick(Ee,this)),mt},D.prototype.removeListener=function(fe,ke){var mt=S.prototype.removeListener.call(this,fe,ke);return"readable"===fe&&process.nextTick(ne,this),mt},D.prototype.removeAllListeners=function(fe){var ke=S.prototype.removeAllListeners.apply(this,arguments);return("readable"===fe||void 0===fe)&&process.nextTick(ne,this),ke},D.prototype.resume=function(){var fe=this._readableState;return fe.flowing||(T("resume"),fe.flowing=!fe.readableListening,function ze(fe,ke){ke.resumeScheduled||(ke.resumeScheduled=!0,process.nextTick(qe,fe,ke))}(this,fe)),fe.paused=!1,this},D.prototype.pause=function(){return T("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(T("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},D.prototype.wrap=function(fe){var ke=this,mt=this._readableState,_e=!1;for(var be in fe.on("end",function(){if(T("wrapped end"),mt.decoder&&!mt.ended){var Ze=mt.decoder.end();Ze&&Ze.length&&ke.push(Ze)}ke.push(null)}),fe.on("data",function(Ze){T("wrapped data"),mt.decoder&&(Ze=mt.decoder.write(Ze)),mt.objectMode&&null==Ze||!(mt.objectMode||Ze&&Ze.length)||ke.push(Ze)||(_e=!0,fe.pause())}),fe)void 0===this[be]&&"function"==typeof fe[be]&&(this[be]=function(_t){return function(){return fe[_t].apply(fe,arguments)}}(be));for(var pe=0;pe{"use strict";Qe.exports=I;var e=g(464).F,t=e.ERR_METHOD_NOT_IMPLEMENTED,w=e.ERR_MULTIPLE_CALLBACK,S=e.ERR_TRANSFORM_ALREADY_TRANSFORMING,l=e.ERR_TRANSFORM_WITH_LENGTH_0,x=g(1030);function f(y,F){var R=this._transformState;R.transforming=!1;var z=R.writecb;if(null===z)return this.emit("error",new w);R.writechunk=null,R.writecb=null,null!=F&&this.push(F),z(y);var W=this._readableState;W.reading=!1,(W.needReadable||W.length{"use strict";function t(Ke){var se=this;this.next=null,this.entry=null,this.finish=function(){!function qe(Ke,se,X){var me=Ke.entry;for(Ke.entry=null;me;){var ce=me.callback;se.pendingcb--,ce(X),me=me.next}se.corkedRequestsFree.next=Ke}(se,Ke)}}var w;Qe.exports=de,de.WritableState=Me;var Te,S={deprecate:g(3398)},l=g(2601),x=g(3838).Buffer,f=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},T=g(8152),F=g(2827).getHighWaterMark,R=g(464).F,z=R.ERR_INVALID_ARG_TYPE,W=R.ERR_METHOD_NOT_IMPLEMENTED,$=R.ERR_MULTIPLE_CALLBACK,j=R.ERR_STREAM_CANNOT_PIPE,Q=R.ERR_STREAM_DESTROYED,J=R.ERR_STREAM_NULL_VALUES,ee=R.ERR_STREAM_WRITE_AFTER_END,ie=R.ERR_UNKNOWN_ENCODING,ge=T.errorOrDestroy;function ae(){}function Me(Ke,se,X){w=w||g(1030),"boolean"!=typeof X&&(X=se instanceof w),this.objectMode=!!(Ke=Ke||{}).objectMode,X&&(this.objectMode=this.objectMode||!!Ke.writableObjectMode),this.highWaterMark=F(this,Ke,"writableHighWaterMark",X),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Ke.decodeStrings),this.defaultEncoding=Ke.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ce){!function L(Ke,se){var X=Ke._writableState,me=X.sync,ce=X.writecb;if("function"!=typeof ce)throw new $;if(function k(Ke){Ke.writing=!1,Ke.writecb=null,Ke.length-=Ke.writelen,Ke.writelen=0}(X),se)!function C(Ke,se,X,me,ce){--se.pendingcb,X?(process.nextTick(ce,me),process.nextTick(Ee,Ke,se),Ke._writableState.errorEmitted=!0,ge(Ke,me)):(ce(me),Ke._writableState.errorEmitted=!0,ge(Ke,me),Ee(Ke,se))}(Ke,X,me,se,ce);else{var fe=V(X)||Ke.destroyed;!fe&&!X.corked&&!X.bufferProcessing&&X.bufferedRequest&&v(Ke,X),me?process.nextTick(_,Ke,X,fe,ce):_(Ke,X,fe,ce)}}(se,ce)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Ke.emitClose,this.autoDestroy=!!Ke.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new t(this)}function de(Ke){var se=this instanceof(w=w||g(1030));if(!se&&!Te.call(de,this))return new de(Ke);this._writableState=new Me(Ke,this,se),this.writable=!0,Ke&&("function"==typeof Ke.write&&(this._write=Ke.write),"function"==typeof Ke.writev&&(this._writev=Ke.writev),"function"==typeof Ke.destroy&&(this._destroy=Ke.destroy),"function"==typeof Ke.final&&(this._final=Ke.final)),l.call(this)}function h(Ke,se,X,me,ce,fe,ke){se.writelen=me,se.writecb=ke,se.writing=!0,se.sync=!0,se.destroyed?se.onwrite(new Q("write")):X?Ke._writev(ce,se.onwrite):Ke._write(ce,fe,se.onwrite),se.sync=!1}function _(Ke,se,X,me){X||function r(Ke,se){0===se.length&&se.needDrain&&(se.needDrain=!1,Ke.emit("drain"))}(Ke,se),se.pendingcb--,me(),Ee(Ke,se)}function v(Ke,se){se.bufferProcessing=!0;var X=se.bufferedRequest;if(Ke._writev&&X&&X.next){var ce=new Array(se.bufferedRequestCount),fe=se.corkedRequestsFree;fe.entry=X;for(var ke=0,mt=!0;X;)ce[ke]=X,X.isBuf||(mt=!1),X=X.next,ke+=1;ce.allBuffers=mt,h(Ke,se,!0,se.length,ce,"",fe.finish),se.pendingcb++,se.lastBufferedRequest=null,fe.next?(se.corkedRequestsFree=fe.next,fe.next=null):se.corkedRequestsFree=new t(se),se.bufferedRequestCount=0}else{for(;X;){var _e=X.chunk;if(h(Ke,se,!1,se.objectMode?1:_e.length,_e,X.encoding,X.callback),X=X.next,se.bufferedRequestCount--,se.writing)break}null===X&&(se.lastBufferedRequest=null)}se.bufferedRequest=X,se.bufferProcessing=!1}function V(Ke){return Ke.ending&&0===Ke.length&&null===Ke.bufferedRequest&&!Ke.finished&&!Ke.writing}function N(Ke,se){Ke._final(function(X){se.pendingcb--,X&&ge(Ke,X),se.prefinished=!0,Ke.emit("prefinish"),Ee(Ke,se)})}function Ee(Ke,se){var X=V(se);if(X&&(function ne(Ke,se){!se.prefinished&&!se.finalCalled&&("function"!=typeof Ke._final||se.destroyed?(se.prefinished=!0,Ke.emit("prefinish")):(se.pendingcb++,se.finalCalled=!0,process.nextTick(N,Ke,se)))}(Ke,se),0===se.pendingcb&&(se.finished=!0,Ke.emit("finish"),se.autoDestroy))){var me=Ke._readableState;(!me||me.autoDestroy&&me.endEmitted)&&Ke.destroy()}return X}g(1993)(de,l),Me.prototype.getBuffer=function(){for(var se=this.bufferedRequest,X=[];se;)X.push(se),se=se.next;return X},function(){try{Object.defineProperty(Me.prototype,"buffer",{get:S.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(Te=Function.prototype[Symbol.hasInstance],Object.defineProperty(de,Symbol.hasInstance,{value:function(se){return!!Te.call(this,se)||this===de&&se&&se._writableState instanceof Me}})):Te=function(se){return se instanceof this},de.prototype.pipe=function(){ge(this,new j)},de.prototype.write=function(Ke,se,X){var me=this._writableState,ce=!1,fe=!me.objectMode&&function d(Ke){return x.isBuffer(Ke)||Ke instanceof f}(Ke);return fe&&!x.isBuffer(Ke)&&(Ke=function I(Ke){return x.from(Ke)}(Ke)),"function"==typeof se&&(X=se,se=null),fe?se="buffer":se||(se=me.defaultEncoding),"function"!=typeof X&&(X=ae),me.ending?function D(Ke,se){var X=new ee;ge(Ke,X),process.nextTick(se,X)}(this,X):(fe||function n(Ke,se,X,me){var ce;return null===X?ce=new J:"string"!=typeof X&&!se.objectMode&&(ce=new z("chunk",["string","Buffer"],X)),!ce||(ge(Ke,ce),process.nextTick(me,ce),!1)}(this,me,Ke,X))&&(me.pendingcb++,ce=function m(Ke,se,X,me,ce,fe){if(!X){var ke=function c(Ke,se,X){return!Ke.objectMode&&!1!==Ke.decodeStrings&&"string"==typeof se&&(se=x.from(se,X)),se}(se,me,ce);me!==ke&&(X=!0,ce="buffer",me=ke)}var mt=se.objectMode?1:me.length;se.length+=mt;var _e=se.length-1))throw new ie(se);return this._writableState.defaultEncoding=se,this},Object.defineProperty(de.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(de.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),de.prototype._write=function(Ke,se,X){X(new W("_write()"))},de.prototype._writev=null,de.prototype.end=function(Ke,se,X){var me=this._writableState;return"function"==typeof Ke?(X=Ke,Ke=null,se=null):"function"==typeof se&&(X=se,se=null),null!=Ke&&this.write(Ke,se),me.corked&&(me.corked=1,this.uncork()),me.ending||function ze(Ke,se,X){se.ending=!0,Ee(Ke,se),X&&(se.finished?process.nextTick(X):Ke.once("finish",X)),se.ended=!0,Ke.writable=!1}(this,me,X),this},Object.defineProperty(de.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(de.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(se){this._writableState&&(this._writableState.destroyed=se)}}),de.prototype.destroy=T.destroy,de.prototype._undestroy=T.undestroy,de.prototype._destroy=function(Ke,se){se(Ke)}},2683:(Qe,te,g)=>{"use strict";var e;function t(ee,ie,ge){return ie=function w(ee){var ie=function S(ee,ie){if("object"!=typeof ee||null===ee)return ee;var ge=ee[Symbol.toPrimitive];if(void 0!==ge){var ae=ge.call(ee,ie||"default");if("object"!=typeof ae)return ae;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===ie?String:Number)(ee)}(ee,"string");return"symbol"==typeof ie?ie:String(ie)}(ie),ie in ee?Object.defineProperty(ee,ie,{value:ge,enumerable:!0,configurable:!0,writable:!0}):ee[ie]=ge,ee}var l=g(7854),x=Symbol("lastResolve"),f=Symbol("lastReject"),I=Symbol("error"),d=Symbol("ended"),T=Symbol("lastPromise"),y=Symbol("handlePromise"),F=Symbol("stream");function R(ee,ie){return{value:ee,done:ie}}function z(ee){var ie=ee[x];if(null!==ie){var ge=ee[F].read();null!==ge&&(ee[T]=null,ee[x]=null,ee[f]=null,ie(R(ge,!1)))}}function W(ee){process.nextTick(z,ee)}var j=Object.getPrototypeOf(function(){}),Q=Object.setPrototypeOf((t(e={get stream(){return this[F]},next:function(){var ie=this,ge=this[I];if(null!==ge)return Promise.reject(ge);if(this[d])return Promise.resolve(R(void 0,!0));if(this[F].destroyed)return new Promise(function(de,D){process.nextTick(function(){ie[I]?D(ie[I]):de(R(void 0,!0))})});var Me,ae=this[T];if(ae)Me=new Promise(function $(ee,ie){return function(ge,ae){ee.then(function(){ie[d]?ge(R(void 0,!0)):ie[y](ge,ae)},ae)}}(ae,this));else{var Te=this[F].read();if(null!==Te)return Promise.resolve(R(Te,!1));Me=new Promise(this[y])}return this[T]=Me,Me}},Symbol.asyncIterator,function(){return this}),t(e,"return",function(){var ie=this;return new Promise(function(ge,ae){ie[F].destroy(null,function(Me){Me?ae(Me):ge(R(void 0,!0))})})}),e),j);Qe.exports=function(ie){var ge,ae=Object.create(Q,(t(ge={},F,{value:ie,writable:!0}),t(ge,x,{value:null,writable:!0}),t(ge,f,{value:null,writable:!0}),t(ge,I,{value:null,writable:!0}),t(ge,d,{value:ie._readableState.endEmitted,writable:!0}),t(ge,y,{value:function(Te,de){var D=ae[F].read();D?(ae[T]=null,ae[x]=null,ae[f]=null,Te(R(D,!1))):(ae[x]=Te,ae[f]=de)},writable:!0}),ge));return ae[T]=null,l(ie,function(Me){if(Me&&"ERR_STREAM_PREMATURE_CLOSE"!==Me.code){var Te=ae[f];return null!==Te&&(ae[T]=null,ae[x]=null,ae[f]=null,Te(Me)),void(ae[I]=Me)}var de=ae[x];null!==de&&(ae[T]=null,ae[x]=null,ae[f]=null,de(R(void 0,!0))),ae[d]=!0}),ie.on("readable",W.bind(null,ae)),ae}},7606:(Qe,te,g)=>{"use strict";function e(W,$){var j=Object.keys(W);if(Object.getOwnPropertySymbols){var Q=Object.getOwnPropertySymbols(W);$&&(Q=Q.filter(function(J){return Object.getOwnPropertyDescriptor(W,J).enumerable})),j.push.apply(j,Q)}return j}function t(W){for(var $=1;$0?this.tail.next=Q:this.head=Q,this.tail=Q,++this.length}},{key:"unshift",value:function(j){var Q={data:j,next:this.head};0===this.length&&(this.tail=Q),this.head=Q,++this.length}},{key:"shift",value:function(){if(0!==this.length){var j=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,j}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(j){if(0===this.length)return"";for(var Q=this.head,J=""+Q.data;Q=Q.next;)J+=j+Q.data;return J}},{key:"concat",value:function(j){if(0===this.length)return T.alloc(0);for(var Q=T.allocUnsafe(j>>>0),J=this.head,ee=0;J;)z(J.data,Q,ee),ee+=J.data.length,J=J.next;return Q}},{key:"consume",value:function(j,Q){var J;return jie.length?ie.length:j;if(ee+=ge===ie.length?ie:ie.slice(0,j),0==(j-=ge)){ge===ie.length?(++J,this.head=Q.next?Q.next:this.tail=null):(this.head=Q,Q.data=ie.slice(ge));break}++J}return this.length-=J,ee}},{key:"_getBuffer",value:function(j){var Q=T.allocUnsafe(j),J=this.head,ee=1;for(J.data.copy(Q),j-=J.data.length;J=J.next;){var ie=J.data,ge=j>ie.length?ie.length:j;if(ie.copy(Q,Q.length-j,0,ge),0==(j-=ge)){ge===ie.length?(++ee,this.head=J.next?J.next:this.tail=null):(this.head=J,J.data=ie.slice(ge));break}++ee}return this.length-=ee,Q}},{key:R,value:function(j,Q){return F(this,t(t({},Q),{},{depth:0,customInspect:!1}))}}]),W}()},8152:Qe=>{"use strict";function g(l,x){w(l,x),e(l)}function e(l){l._writableState&&!l._writableState.emitClose||l._readableState&&!l._readableState.emitClose||l.emit("close")}function w(l,x){l.emit("error",x)}Qe.exports={destroy:function te(l,x){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(x?x(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(w,this,l)):process.nextTick(w,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(T){!x&&T?f._writableState?f._writableState.errorEmitted?process.nextTick(e,f):(f._writableState.errorEmitted=!0,process.nextTick(g,f,T)):process.nextTick(g,f,T):x?(process.nextTick(e,f),x(T)):process.nextTick(e,f)}),this)},undestroy:function t(){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 S(l,x){var f=l._readableState,I=l._writableState;f&&f.autoDestroy||I&&I.autoDestroy?l.destroy(x):l.emit("error",x)}}},7854:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_STREAM_PREMATURE_CLOSE;function w(){}Qe.exports=function l(x,f,I){if("function"==typeof f)return l(x,null,f);f||(f={}),I=function t(x){var f=!1;return function(){if(!f){f=!0;for(var I=arguments.length,d=new Array(I),T=0;T{Qe.exports=function(){throw new Error("Readable.from is not available in the browser")}},6846:(Qe,te,g)=>{"use strict";var e,w=g(464).F,S=w.ERR_MISSING_ARGS,l=w.ERR_STREAM_DESTROYED;function x(R){if(R)throw R}function d(R){R()}function T(R,z){return R.pipe(z)}Qe.exports=function F(){for(var R=arguments.length,z=new Array(R),W=0;W0,function(ae){j||(j=ae),ae&&Q.forEach(d),!ie&&(Q.forEach(d),$(j))})});return z.reduce(T)}},2827:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_INVALID_OPT_VALUE;Qe.exports={getHighWaterMark:function w(S,l,x,f){var I=function t(S,l,x){return null!=S.highWaterMark?S.highWaterMark:l?S[x]:null}(l,f,x);if(null!=I){if(!isFinite(I)||Math.floor(I)!==I||I<0)throw new e(f?x:"highWaterMark",I);return Math.floor(I)}return S.objectMode?16:16384}}},2601:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},8454:(Qe,te,g)=>{"use strict";var e=g(4272).Buffer,t=e.isEncoding||function(Q){switch((Q=""+Q)&&Q.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 l(Q){var J;switch(this.encoding=function S(Q){var J=function w(Q){if(!Q)return"utf8";for(var J;;)switch(Q){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 Q;default:if(J)return;Q=(""+Q).toLowerCase(),J=!0}}(Q);if("string"!=typeof J&&(e.isEncoding===t||!t(Q)))throw new Error("Unknown encoding: "+Q);return J||Q}(Q),this.encoding){case"utf16le":this.text=F,this.end=R,J=4;break;case"utf8":this.fillLast=d,J=4;break;case"base64":this.text=z,this.end=W,J=3;break;default:return this.write=$,void(this.end=j)}this.lastNeed=0,this.lastTotal=0,this.lastChar=e.allocUnsafe(J)}function x(Q){return Q<=127?0:Q>>5==6?2:Q>>4==14?3:Q>>3==30?4:Q>>6==2?-1:-2}function d(Q){var J=this.lastTotal-this.lastNeed,ee=function I(Q,J,ee){if(128!=(192&J[0]))return Q.lastNeed=0,"\ufffd";if(Q.lastNeed>1&&J.length>1){if(128!=(192&J[1]))return Q.lastNeed=1,"\ufffd";if(Q.lastNeed>2&&J.length>2&&128!=(192&J[2]))return Q.lastNeed=2,"\ufffd"}}(this,Q);return void 0!==ee?ee:this.lastNeed<=Q.length?(Q.copy(this.lastChar,J,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Q.copy(this.lastChar,J,0,Q.length),void(this.lastNeed-=Q.length))}function F(Q,J){if((Q.length-J)%2==0){var ee=Q.toString("utf16le",J);if(ee){var ie=ee.charCodeAt(ee.length-1);if(ie>=55296&&ie<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1],ee.slice(0,-1)}return ee}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Q[Q.length-1],Q.toString("utf16le",J,Q.length-1)}function R(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):J}function z(Q,J){var ee=(Q.length-J)%3;return 0===ee?Q.toString("base64",J):(this.lastNeed=3-ee,this.lastTotal=3,1===ee?this.lastChar[0]=Q[Q.length-1]:(this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1]),Q.toString("base64",J,Q.length-ee))}function W(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("base64",0,3-this.lastNeed):J}function $(Q){return Q.toString(this.encoding)}function j(Q){return Q&&Q.length?this.write(Q):""}te.I=l,l.prototype.write=function(Q){if(0===Q.length)return"";var J,ee;if(this.lastNeed){if(void 0===(J=this.fillLast(Q)))return"";ee=this.lastNeed,this.lastNeed=0}else ee=0;return ee=0?(ge>0&&(Q.lastNeed=ge-1),ge):--ie=0?(ge>0&&(Q.lastNeed=ge-2),ge):--ie=0?(ge>0&&(2===ge?ge=0:Q.lastNeed=ge-3),ge):0}(this,Q,J);if(!this.lastNeed)return Q.toString("utf8",J);this.lastTotal=ee;var ie=Q.length-(ee-this.lastNeed);return Q.copy(this.lastChar,0,ie),Q.toString("utf8",J,ie)},l.prototype.fillLast=function(Q){if(this.lastNeed<=Q.length)return Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Q.length),this.lastNeed-=Q.length}},4272:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},7851:(Qe,te,g)=>{var e=g(1876);te.encode=e.encode,te.decode=e.decode},1876:(Qe,te)=>{"use strict";var e=[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];te.encode=function(w){Buffer.isBuffer(w)||(w=new Buffer(w));for(var S=0,l=0,x=0,f=0,I=new Buffer(8*function t(w){var S=Math.floor(w.length/5);return w.length%5==0?S:S+1}(w));S3?(f=(f=d&255>>x)<<(x=(x+5)%8)|(S+1>8-x,S++):(f=d>>8-(x+5)&31,0==(x=(x+5)%8)&&S++),I[l]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(f),l++}for(S=l;S>>(S=(S+5)%8),f++,x=255&l<<8-S)}return I.slice(0,f)}},3398:Qe=>{function g(e){try{if(!global.localStorage)return!1}catch{return!1}var t=global.localStorage[e];return null!=t&&"true"===String(t).toLowerCase()}Qe.exports=function te(e,t){if(g("noDeprecation"))return e;var w=!1;return function S(){if(!w){if(g("throwDeprecation"))throw new Error(t);g("traceDeprecation")?console.trace(t):console.warn(t),w=!0}return e.apply(this,arguments)}}},8326:(__unused_webpack_module,exports)=>{var indexOf=function(Qe,te){if(Qe.indexOf)return Qe.indexOf(te);for(var g=0;g{},7790:()=>{},7965:()=>{},6089:()=>{},9368:()=>{},4688:()=>{},1069:()=>{},5340:()=>{},9838:()=>{},3779:()=>{},7199:()=>{},9969:(Qe,te,g)=>{"use strict";g.d(te,{FX:()=>de,If:()=>e,K2:()=>x,MA:()=>F,Os:()=>l,P:()=>z,hZ:()=>w,i0:()=>S,i7:()=>d,iF:()=>f,kY:()=>T,kp:()=>t,sf:()=>Me,ui:()=>Te,wk:()=>I});var e=function(D){return D[D.State=0]="State",D[D.Transition=1]="Transition",D[D.Sequence=2]="Sequence",D[D.Group=3]="Group",D[D.Animate=4]="Animate",D[D.Keyframes=5]="Keyframes",D[D.Style=6]="Style",D[D.Trigger=7]="Trigger",D[D.Reference=8]="Reference",D[D.AnimateChild=9]="AnimateChild",D[D.AnimateRef=10]="AnimateRef",D[D.Query=11]="Query",D[D.Stagger=12]="Stagger",D}(e||{});const t="*";function w(D,n){return{type:e.Trigger,name:D,definitions:n,options:{}}}function S(D,n=null){return{type:e.Animate,styles:n,timings:D}}function l(D,n=null){return{type:e.Group,steps:D,options:n}}function x(D,n=null){return{type:e.Sequence,steps:D,options:n}}function f(D){return{type:e.Style,styles:D,offset:null}}function I(D,n,c){return{type:e.State,name:D,styles:n,options:c}}function d(D){return{type:e.Keyframes,steps:D}}function T(D,n,c=null){return{type:e.Transition,expr:D,animation:n,options:c}}function F(D=null){return{type:e.AnimateChild,options:D}}function z(D,n,c=null){return{type:e.Query,selector:D,animation:n,options:c}}class Me{constructor(n=0,c=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=n+c}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}onStart(n){this._originalOnStartFns.push(n),this._onStartFns.push(n)}onDone(n){this._originalOnDoneFns.push(n),this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(n=>n()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(n){this._position=this.totalTime?n*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}class Te{constructor(n){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=n;let c=0,m=0,h=0;const C=this.players.length;0==C?queueMicrotask(()=>this._onFinish()):this.players.forEach(k=>{k.onDone(()=>{++c==C&&this._onFinish()}),k.onDestroy(()=>{++m==C&&this._onDestroy()}),k.onStart(()=>{++h==C&&this._onStart()})}),this.totalTime=this.players.reduce((k,L)=>Math.max(k,L.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}init(){this.players.forEach(n=>n.init())}onStart(n){this._onStartFns.push(n)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(n=>n()),this._onStartFns=[])}onDone(n){this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(n=>n.play())}pause(){this.players.forEach(n=>n.pause())}restart(){this.players.forEach(n=>n.restart())}finish(){this._onFinish(),this.players.forEach(n=>n.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(n=>n.destroy()),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this.players.forEach(n=>n.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(n){const c=n*this.totalTime;this.players.forEach(m=>{const h=m.totalTime?Math.min(1,c/m.totalTime):1;m.setPosition(h)})}getPosition(){const n=this.players.reduce((c,m)=>null===c||m.totalTime>c.totalTime?m:c,null);return null!=n?n.getPosition():0}beforeDestroy(){this.players.forEach(n=>{n.beforeDestroy&&n.beforeDestroy()})}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}const de="!"},8617:(Qe,te,g)=>{"use strict";g.d(te,{Ae:()=>ge,Ai:()=>rt,Au:()=>C,Bu:()=>k,FN:()=>oe,GX:()=>fe,Pd:()=>Ae,Q_:()=>dt,Z7:()=>_,_G:()=>_t,kB:()=>ke,px:()=>ie,vR:()=>tt,vr:()=>n,w6:()=>at});var e=g(177),t=g(4438),w=g(6860),S=g(1413),l=g(8359),x=g(4412),f=g(7673),I=g(7336),d=g(8141),T=g(152),y=g(5964),F=g(6354),R=g(6697),z=g(5245),W=g(3294),$=g(6977),j=g(2318),Q=g(4085),J=g(9327);const ee=" ";function ie(we,he,q){const Re=ae(we,he);q=q.trim(),!Re.some(Ne=>Ne.trim()===q)&&(Re.push(q),we.setAttribute(he,Re.join(ee)))}function ge(we,he,q){const Re=ae(we,he);q=q.trim();const Ne=Re.filter(gt=>gt!==q);Ne.length?we.setAttribute(he,Ne.join(ee)):we.removeAttribute(he)}function ae(we,he){return we.getAttribute(he)?.match(/\S+/g)??[]}const Te="cdk-describedby-message",de="cdk-describedby-host";let D=0,n=(()=>{class we{constructor(q,Re){this._platform=Re,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+D++,this._document=q,this._id=(0,t.WQX)(t.sZ2)+"-"+D++}describe(q,Re,Ne){if(!this._canBeDescribed(q,Re))return;const gt=c(Re,Ne);"string"!=typeof Re?(m(Re,this._id),this._messageRegistry.set(gt,{messageElement:Re,referenceCount:0})):this._messageRegistry.has(gt)||this._createMessageElement(Re,Ne),this._isElementDescribedByMessage(q,gt)||this._addMessageReference(q,gt)}removeDescription(q,Re,Ne){if(!Re||!this._isElementNode(q))return;const gt=c(Re,Ne);if(this._isElementDescribedByMessage(q,gt)&&this._removeMessageReference(q,gt),"string"==typeof Re){const $e=this._messageRegistry.get(gt);$e&&0===$e.referenceCount&&this._deleteMessageElement(gt)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const q=this._document.querySelectorAll(`[${de}="${this._id}"]`);for(let Re=0;Re0!=Ne.indexOf(Te));q.setAttribute("aria-describedby",Re.join(" "))}_addMessageReference(q,Re){const Ne=this._messageRegistry.get(Re);ie(q,"aria-describedby",Ne.messageElement.id),q.setAttribute(de,this._id),Ne.referenceCount++}_removeMessageReference(q,Re){const Ne=this._messageRegistry.get(Re);Ne.referenceCount--,ge(q,"aria-describedby",Ne.messageElement.id),q.removeAttribute(de)}_isElementDescribedByMessage(q,Re){const Ne=ae(q,"aria-describedby"),gt=this._messageRegistry.get(Re),$e=gt&>.messageElement.id;return!!$e&&-1!=Ne.indexOf($e)}_canBeDescribed(q,Re){if(!this._isElementNode(q))return!1;if(Re&&"object"==typeof Re)return!0;const Ne=null==Re?"":`${Re}`.trim(),gt=q.getAttribute("aria-label");return!(!Ne||gt&>.trim()===Ne)}_isElementNode(q){return q.nodeType===this._document.ELEMENT_NODE}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(e.qQ),t.KVO(w.OD))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function c(we,he){return"string"==typeof we?`${he||""}/${we}`:we}function m(we,he){we.id||(we.id=`${Te}-${he}-${D++}`)}class h{constructor(he,q){this._items=he,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new S.B,this._typeaheadSubscription=l.yU.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._pageUpAndDown={enabled:!1,delta:10},this._skipPredicateFn=Re=>Re.disabled,this._pressedLetters=[],this.tabOut=new S.B,this.change=new S.B,he instanceof t.rOR?this._itemChangesSubscription=he.changes.subscribe(Re=>this._itemsChanged(Re.toArray())):(0,t.Hps)(he)&&(this._effectRef=(0,t.QZP)(()=>this._itemsChanged(he()),{injector:q}))}skipPredicate(he){return this._skipPredicateFn=he,this}withWrap(he=!0){return this._wrap=he,this}withVerticalOrientation(he=!0){return this._vertical=he,this}withHorizontalOrientation(he){return this._horizontal=he,this}withAllowedModifierKeys(he){return this._allowedModifierKeys=he,this}withTypeAhead(he=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,d.M)(q=>this._pressedLetters.push(q)),(0,T.B)(he),(0,y.p)(()=>this._pressedLetters.length>0),(0,F.T)(()=>this._pressedLetters.join(""))).subscribe(q=>{const Re=this._getItemsArray();for(let Ne=1;Ne!he[gt]||this._allowedModifierKeys.indexOf(gt)>-1);switch(q){case I.wn:return void this.tabOut.next();case I.n6:if(this._vertical&&Ne){this.setNextItemActive();break}return;case I.i7:if(this._vertical&&Ne){this.setPreviousItemActive();break}return;case I.LE:if(this._horizontal&&Ne){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case I.UQ:if(this._horizontal&&Ne){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case I.yZ:if(this._homeAndEnd&&Ne){this.setFirstItemActive();break}return;case I.Kp:if(this._homeAndEnd&&Ne){this.setLastItemActive();break}return;case I.w_:if(this._pageUpAndDown.enabled&&Ne){const gt=this._activeItemIndex-this._pageUpAndDown.delta;this._setActiveItemByIndex(gt>0?gt:0,1);break}return;case I.dB:if(this._pageUpAndDown.enabled&&Ne){const gt=this._activeItemIndex+this._pageUpAndDown.delta,$e=this._getItemsArray().length;this._setActiveItemByIndex(gt<$e?gt:$e-1,-1);break}return;default:return void((Ne||(0,I.rp)(he,"shiftKey"))&&(he.key&&1===he.key.length?this._letterKeyStream.next(he.key.toLocaleUpperCase()):(q>=I.A&&q<=I.Z||q>=I.f2&&q<=I.bn)&&this._letterKeyStream.next(String.fromCharCode(q))))}this._pressedLetters=[],he.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._getItemsArray().length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(he){const q=this._getItemsArray(),Re="number"==typeof he?he:q.indexOf(he);this._activeItem=q[Re]??null,this._activeItemIndex=Re}destroy(){this._typeaheadSubscription.unsubscribe(),this._itemChangesSubscription?.unsubscribe(),this._effectRef?.destroy(),this._letterKeyStream.complete(),this.tabOut.complete(),this.change.complete(),this._pressedLetters=[]}_setActiveItemByDelta(he){this._wrap?this._setActiveInWrapMode(he):this._setActiveInDefaultMode(he)}_setActiveInWrapMode(he){const q=this._getItemsArray();for(let Re=1;Re<=q.length;Re++){const Ne=(this._activeItemIndex+he*Re+q.length)%q.length;if(!this._skipPredicateFn(q[Ne]))return void this.setActiveItem(Ne)}}_setActiveInDefaultMode(he){this._setActiveItemByIndex(this._activeItemIndex+he,he)}_setActiveItemByIndex(he,q){const Re=this._getItemsArray();if(Re[he]){for(;this._skipPredicateFn(Re[he]);)if(!Re[he+=q])return;this.setActiveItem(he)}}_getItemsArray(){return(0,t.Hps)(this._items)?this._items():this._items instanceof t.rOR?this._items.toArray():this._items}_itemsChanged(he){if(this._activeItem){const q=he.indexOf(this._activeItem);q>-1&&q!==this._activeItemIndex&&(this._activeItemIndex=q)}}}class C extends h{setActiveItem(he){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(he),this.activeItem&&this.activeItem.setActiveStyles()}}class k extends h{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(he){return this._origin=he,this}setActiveItem(he){super.setActiveItem(he),this.activeItem&&this.activeItem.focus(this._origin)}}let _=(()=>{class we{constructor(q){this._platform=q}isDisabled(q){return q.hasAttribute("disabled")}isVisible(q){return function v(we){return!!(we.offsetWidth||we.offsetHeight||"function"==typeof we.getClientRects&&we.getClientRects().length)}(q)&&"visible"===getComputedStyle(q).visibility}isTabbable(q){if(!this._platform.isBrowser)return!1;const Re=function r(we){try{return we.frameElement}catch{return null}}(function me(we){return we.ownerDocument&&we.ownerDocument.defaultView||window}(q));if(Re&&(-1===Ke(Re)||!this.isVisible(Re)))return!1;let Ne=q.nodeName.toLowerCase(),gt=Ke(q);return q.hasAttribute("contenteditable")?-1!==gt:!("iframe"===Ne||"object"===Ne||this._platform.WEBKIT&&this._platform.IOS&&!function se(we){let he=we.nodeName.toLowerCase(),q="input"===he&&we.type;return"text"===q||"password"===q||"select"===he||"textarea"===he}(q))&&("audio"===Ne?!!q.hasAttribute("controls")&&-1!==gt:"video"===Ne?-1!==gt&&(null!==gt||this._platform.FIREFOX||q.hasAttribute("controls")):q.tabIndex>=0)}isFocusable(q,Re){return function X(we){return!function N(we){return function Ee(we){return"input"==we.nodeName.toLowerCase()}(we)&&"hidden"==we.type}(we)&&(function V(we){let he=we.nodeName.toLowerCase();return"input"===he||"select"===he||"button"===he||"textarea"===he}(we)||function ne(we){return function ze(we){return"a"==we.nodeName.toLowerCase()}(we)&&we.hasAttribute("href")}(we)||we.hasAttribute("contenteditable")||qe(we))}(q)&&!this.isDisabled(q)&&(Re?.ignoreVisibility||this.isVisible(q))}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function qe(we){if(!we.hasAttribute("tabindex")||void 0===we.tabIndex)return!1;let he=we.getAttribute("tabindex");return!(!he||isNaN(parseInt(he,10)))}function Ke(we){if(!qe(we))return null;const he=parseInt(we.getAttribute("tabindex")||"",10);return isNaN(he)?-1:he}class ce{get enabled(){return this._enabled}set enabled(he){this._enabled=he,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(he,this._startAnchor),this._toggleAnchorTabIndex(he,this._endAnchor))}constructor(he,q,Re,Ne,gt=!1){this._element=he,this._checker=q,this._ngZone=Re,this._document=Ne,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,gt||this.attachAnchors()}destroy(){const he=this._startAnchor,q=this._endAnchor;he&&(he.removeEventListener("focus",this.startAnchorListener),he.remove()),q&&(q.removeEventListener("focus",this.endAnchorListener),q.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(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusInitialElement(he)))})}focusFirstTabbableElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusFirstTabbableElement(he)))})}focusLastTabbableElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusLastTabbableElement(he)))})}_getRegionBoundary(he){const q=this._element.querySelectorAll(`[cdk-focus-region-${he}], [cdkFocusRegion${he}], [cdk-focus-${he}]`);return"start"==he?q.length?q[0]:this._getFirstTabbableElement(this._element):q.length?q[q.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(he){const q=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(q){if(!this._checker.isFocusable(q)){const Re=this._getFirstTabbableElement(q);return Re?.focus(he),!!Re}return q.focus(he),!0}return this.focusFirstTabbableElement(he)}focusFirstTabbableElement(he){const q=this._getRegionBoundary("start");return q&&q.focus(he),!!q}focusLastTabbableElement(he){const q=this._getRegionBoundary("end");return q&&q.focus(he),!!q}hasAttached(){return this._hasAttached}_getFirstTabbableElement(he){if(this._checker.isFocusable(he)&&this._checker.isTabbable(he))return he;const q=he.children;for(let Re=0;Re=0;Re--){const Ne=q[Re].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(q[Re]):null;if(Ne)return Ne}return null}_createAnchor(){const he=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,he),he.classList.add("cdk-visually-hidden"),he.classList.add("cdk-focus-trap-anchor"),he.setAttribute("aria-hidden","true"),he}_toggleAnchorTabIndex(he,q){he?q.setAttribute("tabindex","0"):q.removeAttribute("tabindex")}toggleAnchors(he){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(he,this._startAnchor),this._toggleAnchorTabIndex(he,this._endAnchor))}_executeOnStable(he){this._ngZone.isStable?he():this._ngZone.onStable.pipe((0,R.s)(1)).subscribe(he)}}let fe=(()=>{class we{constructor(q,Re,Ne){this._checker=q,this._ngZone=Re,this._document=Ne}create(q,Re=!1){return new ce(q,this._checker,this._ngZone,this._document,Re)}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(_),t.KVO(t.SKi),t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),ke=(()=>{class we{get enabled(){return this.focusTrap?.enabled||!1}set enabled(q){this.focusTrap&&(this.focusTrap.enabled=q)}constructor(q,Re,Ne){this._elementRef=q,this._focusTrapFactory=Re,this._previouslyFocusedElement=null,(0,t.WQX)(w.OD).isBrowser&&(this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0))}ngOnDestroy(){this.focusTrap?.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap?.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap&&!this.focusTrap.hasAttached()&&this.focusTrap.attachAnchors()}ngOnChanges(q){const Re=q.autoCapture;Re&&!Re.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,w.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.rXU(t.aKT),t.rXU(fe),t.rXU(e.qQ))};static#t=this.\u0275dir=t.FsC({type:we,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",t.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",t.L39]},exportAs:["cdkTrapFocus"],standalone:!0,features:[t.GFd,t.OA$]})}return we})();function _t(we){return 0===we.buttons||0===we.detail}function at(we){const he=we.touches&&we.touches[0]||we.changedTouches&&we.changedTouches[0];return!(!he||-1!==he.identifier||null!=he.radiusX&&1!==he.radiusX||null!=he.radiusY&&1!==he.radiusY)}const pt=new t.nKC("cdk-input-modality-detector-options"),Xt={ignoreKeys:[I.A$,I.W3,I.eg,I.Ge,I.FX]},ue=(0,w.BQ)({passive:!0,capture:!0});let Ie=(()=>{class we{get mostRecentModality(){return this._modality.value}constructor(q,Re,Ne,gt){this._platform=q,this._mostRecentTarget=null,this._modality=new x.t(null),this._lastTouchMs=0,this._onKeydown=$e=>{this._options?.ignoreKeys?.some(Fe=>Fe===$e.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,w.Fb)($e))},this._onMousedown=$e=>{Date.now()-this._lastTouchMs<650||(this._modality.next(_t($e)?"keyboard":"mouse"),this._mostRecentTarget=(0,w.Fb)($e))},this._onTouchstart=$e=>{at($e)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,w.Fb)($e))},this._options={...Xt,...gt},this.modalityDetected=this._modality.pipe((0,z.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,W.F)()),q.isBrowser&&Re.runOutsideAngular(()=>{Ne.addEventListener("keydown",this._onKeydown,ue),Ne.addEventListener("mousedown",this._onMousedown,ue),Ne.addEventListener("touchstart",this._onTouchstart,ue)})}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,ue),document.removeEventListener("mousedown",this._onMousedown,ue),document.removeEventListener("touchstart",this._onTouchstart,ue))}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD),t.KVO(t.SKi),t.KVO(e.qQ),t.KVO(pt,8))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();const He=new t.nKC("liveAnnouncerElement",{providedIn:"root",factory:function Xe(){return null}}),yt=new t.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let Ye=0,rt=(()=>{class we{constructor(q,Re,Ne,gt){this._ngZone=Re,this._defaultOptions=gt,this._document=Ne,this._liveElement=q||this._createLiveElement()}announce(q,...Re){const Ne=this._defaultOptions;let gt,$e;return 1===Re.length&&"number"==typeof Re[0]?$e=Re[0]:[gt,$e]=Re,this.clear(),clearTimeout(this._previousTimeout),gt||(gt=Ne&&Ne.politeness?Ne.politeness:"polite"),null==$e&&Ne&&($e=Ne.duration),this._liveElement.setAttribute("aria-live",gt),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(Fe=>this._currentResolve=Fe)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=q,"number"==typeof $e&&(this._previousTimeout=setTimeout(()=>this.clear(),$e)),this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const q="cdk-live-announcer-element",Re=this._document.getElementsByClassName(q),Ne=this._document.createElement("div");for(let gt=0;gt .cdk-overlay-container [aria-modal="true"]');for(let Ne=0;Ne{class we{constructor(q,Re,Ne,gt,$e){this._ngZone=q,this._platform=Re,this._inputModalityDetector=Ne,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 S.B,this._rootNodeFocusAndBlurListener=Fe=>{for(let et=(0,w.Fb)(Fe);et;et=et.parentElement)"focus"===Fe.type?this._onFocus(Fe,et):this._onBlur(Fe,et)},this._document=gt,this._detectionMode=$e?.detectionMode||Nt.IMMEDIATE}monitor(q,Re=!1){const Ne=(0,Q.i8)(q);if(!this._platform.isBrowser||1!==Ne.nodeType)return(0,f.of)();const gt=(0,w.KT)(Ne)||this._getDocument(),$e=this._elementInfo.get(Ne);if($e)return Re&&($e.checkChildren=!0),$e.subject;const Fe={checkChildren:Re,subject:new S.B,rootNode:gt};return this._elementInfo.set(Ne,Fe),this._registerGlobalListeners(Fe),Fe.subject}stopMonitoring(q){const Re=(0,Q.i8)(q),Ne=this._elementInfo.get(Re);Ne&&(Ne.subject.complete(),this._setClasses(Re),this._elementInfo.delete(Re),this._removeGlobalListeners(Ne))}focusVia(q,Re,Ne){const gt=(0,Q.i8)(q);gt===this._getDocument().activeElement?this._getClosestElementsInfo(gt).forEach(([Fe,Ge])=>this._originChanged(Fe,Re,Ge)):(this._setOrigin(Re),"function"==typeof gt.focus&>.focus(Ne))}ngOnDestroy(){this._elementInfo.forEach((q,Re)=>this.stopMonitoring(Re))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(q){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(q)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:q&&this._isLastInteractionFromInputLabel(q)?"mouse":"program"}_shouldBeAttributedToTouch(q){return this._detectionMode===Nt.EVENTUAL||!!q?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(q,Re){q.classList.toggle("cdk-focused",!!Re),q.classList.toggle("cdk-touch-focused","touch"===Re),q.classList.toggle("cdk-keyboard-focused","keyboard"===Re),q.classList.toggle("cdk-mouse-focused","mouse"===Re),q.classList.toggle("cdk-program-focused","program"===Re)}_setOrigin(q,Re=!1){this._ngZone.runOutsideAngular(()=>{this._origin=q,this._originFromTouchInteraction="touch"===q&&Re,this._detectionMode===Nt.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(q,Re){const Ne=this._elementInfo.get(Re),gt=(0,w.Fb)(q);!Ne||!Ne.checkChildren&&Re!==gt||this._originChanged(Re,this._getFocusOrigin(gt),Ne)}_onBlur(q,Re){const Ne=this._elementInfo.get(Re);!Ne||Ne.checkChildren&&q.relatedTarget instanceof Node&&Re.contains(q.relatedTarget)||(this._setClasses(Re),this._emitOrigin(Ne,null))}_emitOrigin(q,Re){q.subject.observers.length&&this._ngZone.run(()=>q.subject.next(Re))}_registerGlobalListeners(q){if(!this._platform.isBrowser)return;const Re=q.rootNode,Ne=this._rootNodeFocusListenerCount.get(Re)||0;Ne||this._ngZone.runOutsideAngular(()=>{Re.addEventListener("focus",this._rootNodeFocusAndBlurListener,Vt),Re.addEventListener("blur",this._rootNodeFocusAndBlurListener,Vt)}),this._rootNodeFocusListenerCount.set(Re,Ne+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,$.Q)(this._stopInputModalityDetector)).subscribe(gt=>{this._setOrigin(gt,!0)}))}_removeGlobalListeners(q){const Re=q.rootNode;if(this._rootNodeFocusListenerCount.has(Re)){const Ne=this._rootNodeFocusListenerCount.get(Re);Ne>1?this._rootNodeFocusListenerCount.set(Re,Ne-1):(Re.removeEventListener("focus",this._rootNodeFocusAndBlurListener,Vt),Re.removeEventListener("blur",this._rootNodeFocusAndBlurListener,Vt),this._rootNodeFocusListenerCount.delete(Re))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(q,Re,Ne){this._setClasses(q,Re),this._emitOrigin(Ne,Re),this._lastFocusOrigin=Re}_getClosestElementsInfo(q){const Re=[];return this._elementInfo.forEach((Ne,gt)=>{(gt===q||Ne.checkChildren&>.contains(q))&&Re.push([gt,Ne])}),Re}_isLastInteractionFromInputLabel(q){const{_mostRecentTarget:Re,mostRecentModality:Ne}=this._inputModalityDetector;if("mouse"!==Ne||!Re||Re===q||"INPUT"!==q.nodeName&&"TEXTAREA"!==q.nodeName||q.disabled)return!1;const gt=q.labels;if(gt)for(let $e=0;$e{class we{constructor(q,Re){this._elementRef=q,this._focusMonitor=Re,this._focusOrigin=null,this.cdkFocusChange=new t.bkB}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const q=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(q,1===q.nodeType&&q.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(Re=>{this._focusOrigin=Re,this.cdkFocusChange.emit(Re)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.rXU(t.aKT),t.rXU(oe))};static#t=this.\u0275dir=t.FsC({type:we,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"],standalone:!0})}return we})();var $t=function(we){return we[we.NONE=0]="NONE",we[we.BLACK_ON_WHITE=1]="BLACK_ON_WHITE",we[we.WHITE_ON_BLACK=2]="WHITE_ON_BLACK",we}($t||{});const zt="cdk-high-contrast-black-on-white",Jt="cdk-high-contrast-white-on-black",St="cdk-high-contrast-active";let dt=(()=>{class we{constructor(q,Re){this._platform=q,this._document=Re,this._breakpointSubscription=(0,t.WQX)(J.QP).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return $t.NONE;const q=this._document.createElement("div");q.style.backgroundColor="rgb(1,2,3)",q.style.position="absolute",this._document.body.appendChild(q);const Re=this._document.defaultView||window,Ne=Re&&Re.getComputedStyle?Re.getComputedStyle(q):null,gt=(Ne&&Ne.backgroundColor||"").replace(/ /g,"");switch(q.remove(),gt){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return $t.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return $t.BLACK_ON_WHITE}return $t.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const q=this._document.body.classList;q.remove(St,zt,Jt),this._hasCheckedHighContrastMode=!0;const Re=this.getHighContrastMode();Re===$t.BLACK_ON_WHITE?q.add(St,zt):Re===$t.WHITE_ON_BLACK&&q.add(St,Jt)}}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD),t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),Ae=(()=>{class we{constructor(q){q._applyBodyHighContrastModeCssClasses()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(dt))};static#t=this.\u0275mod=t.$C({type:we});static#i=this.\u0275inj=t.G2t({imports:[j.w5]})}return we})()},8203:(Qe,te,g)=>{"use strict";g.d(te,{dS:()=>f,jI:()=>d});var e=g(4438),t=g(177);const w=new e.nKC("cdk-dir-doc",{providedIn:"root",factory:function S(){return(0,e.WQX)(t.qQ)}}),l=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let f=(()=>{class T{constructor(F){this.value="ltr",this.change=new e.bkB,F&&(this.value=function x(T){const y=T?.toLowerCase()||"";return"auto"===y&&typeof navigator<"u"&&navigator?.language?l.test(navigator.language)?"rtl":"ltr":"rtl"===y?"rtl":"ltr"}((F.body?F.body.dir:null)||(F.documentElement?F.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static#e=this.\u0275fac=function(R){return new(R||T)(e.KVO(w,8))};static#t=this.\u0275prov=e.jDH({token:T,factory:T.\u0275fac,providedIn:"root"})}return T})(),d=(()=>{class T{static#e=this.\u0275fac=function(R){return new(R||T)};static#t=this.\u0275mod=e.$C({type:T});static#i=this.\u0275inj=e.G2t({})}return T})()},4085:(Qe,te,g)=>{"use strict";g.d(te,{FG:()=>l,OE:()=>w,a1:()=>x,cc:()=>I,he:()=>t,i8:()=>f,o1:()=>S});var e=g(4438);function t(d){return null!=d&&"false"!=`${d}`}function w(d,T=0){return S(d)?Number(d):T}function S(d){return!isNaN(parseFloat(d))&&!isNaN(Number(d))}function l(d){return Array.isArray(d)?d:[d]}function x(d){return null==d?"":"string"==typeof d?d:`${d}px`}function f(d){return d instanceof e.aKT?d.nativeElement:d}function I(d,T=/\s+/){const y=[];if(null!=d){const F=Array.isArray(d)?d:`${d}`.split(T);for(const R of F){const z=`${R}`.trim();z&&y.push(z)}}return y}},5024:(Qe,te,g)=>{"use strict";g.d(te,{CB:()=>R,DQ:()=>F,Q3:()=>d,qS:()=>x,sL:()=>T,xn:()=>y,y4:()=>f,zP:()=>W});var e=g(17),S=(g(4402),g(7673),g(1413)),l=g(4438);class x{}function f($){return $&&"function"==typeof $.connect&&!($ instanceof e.G)}var d=function($){return $[$.REPLACED=0]="REPLACED",$[$.INSERTED=1]="INSERTED",$[$.MOVED=2]="MOVED",$[$.REMOVED=3]="REMOVED",$}(d||{});const T=new l.nKC("_ViewRepeater");class y{applyChanges(j,Q,J,ee,ie){j.forEachOperation((ge,ae,Me)=>{let Te,de;if(null==ge.previousIndex){const D=J(ge,ae,Me);Te=Q.createEmbeddedView(D.templateRef,D.context,D.index),de=d.INSERTED}else null==Me?(Q.remove(ae),de=d.REMOVED):(Te=Q.get(ae),Q.move(Te,Me),de=d.MOVED);ie&&ie({context:Te?.context,operation:de,record:ge})})}detach(){}}class F{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(j,Q,J,ee,ie){j.forEachOperation((ge,ae,Me)=>{let Te,de;null==ge.previousIndex?(Te=this._insertView(()=>J(ge,ae,Me),Me,Q,ee(ge)),de=Te?d.INSERTED:d.REPLACED):null==Me?(this._detachAndCacheView(ae,Q),de=d.REMOVED):(Te=this._moveView(ae,Me,Q,ee(ge)),de=d.MOVED),ie&&ie({context:Te?.context,operation:de,record:ge})})}detach(){for(const j of this._viewCache)j.destroy();this._viewCache=[]}_insertView(j,Q,J,ee){const ie=this._insertViewFromCache(Q,J);if(ie)return void(ie.context.$implicit=ee);const ge=j();return J.createEmbeddedView(ge.templateRef,ge.context,ge.index)}_detachAndCacheView(j,Q){const J=Q.detach(j);this._maybeCacheView(J,Q)}_moveView(j,Q,J,ee){const ie=J.get(j);return J.move(ie,Q),ie.context.$implicit=ee,ie}_maybeCacheView(j,Q){if(this._viewCache.lengththis._markSelected(ie)):this._markSelected(Q[0]),this._selectedToEmit.length=0)}select(...j){this._verifyValueAssignment(j),j.forEach(J=>this._markSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}deselect(...j){this._verifyValueAssignment(j),j.forEach(J=>this._unmarkSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}setSelection(...j){this._verifyValueAssignment(j);const Q=this.selected,J=new Set(j);j.forEach(ie=>this._markSelected(ie)),Q.filter(ie=>!J.has(this._getConcreteValue(ie,J))).forEach(ie=>this._unmarkSelected(ie));const ee=this._hasQueuedChanges();return this._emitChangeEvent(),ee}toggle(j){return this.isSelected(j)?this.deselect(j):this.select(j)}clear(j=!0){this._unmarkAll();const Q=this._hasQueuedChanges();return j&&this._emitChangeEvent(),Q}isSelected(j){return this._selection.has(this._getConcreteValue(j))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(j){this._multiple&&this.selected&&this._selected.sort(j)}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(j){j=this._getConcreteValue(j),this.isSelected(j)||(this._multiple||this._unmarkAll(),this.isSelected(j)||this._selection.add(j),this._emitChanges&&this._selectedToEmit.push(j))}_unmarkSelected(j){j=this._getConcreteValue(j),this.isSelected(j)&&(this._selection.delete(j),this._emitChanges&&this._deselectedToEmit.push(j))}_unmarkAll(){this.isEmpty()||this._selection.forEach(j=>this._unmarkSelected(j))}_verifyValueAssignment(j){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(j,Q){if(this.compareWith){Q=Q??this._selection;for(let J of Q)if(this.compareWith(j,J))return J;return j}return j}}let W=(()=>{class ${constructor(){this._listeners=[]}notify(Q,J){for(let ee of this._listeners)ee(Q,J)}listen(Q){return this._listeners.push(Q),()=>{this._listeners=this._listeners.filter(J=>Q!==J)}}ngOnDestroy(){this._listeners=[]}static#e=this.\u0275fac=function(J){return new(J||$)};static#t=this.\u0275prov=l.jDH({token:$,factory:$.\u0275fac,providedIn:"root"})}return $})()},7336:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>N,A$:()=>I,FX:()=>x,Fm:()=>l,G_:()=>t,Ge:()=>yt,Kp:()=>W,LE:()=>J,SJ:()=>Me,UQ:()=>j,W3:()=>f,Z:()=>Xe,_f:()=>y,bn:()=>L,dB:()=>z,eg:()=>ot,f2:()=>Te,i7:()=>Q,n6:()=>ee,rp:()=>ut,t6:()=>F,w_:()=>R,wn:()=>w,yZ:()=>$});const t=8,w=9,l=13,x=16,f=17,I=18,y=27,F=32,R=33,z=34,W=35,$=36,j=37,Q=38,J=39,ee=40,Me=46,Te=48,L=57,N=65,Xe=90,yt=91,ot=224;function ut(ii,...si){return si.length?si.some(Pi=>ii[Pi]):ii.altKey||ii.shiftKey||ii.ctrlKey||ii.metaKey}},9327:(Qe,te,g)=>{"use strict";g.d(te,{QP:()=>ee,RH:()=>z,Rp:()=>ge});var e=g(4438),t=g(4085),w=g(1413),S=g(4572),l=g(8793),x=g(1985),f=g(6697),I=g(5245),d=g(152),T=g(6354),y=g(9172),F=g(6977),R=g(6860);let z=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=e.$C({type:ae});static#i=this.\u0275inj=e.G2t({})}return ae})();const W=new Set;let $,j=(()=>{class ae{constructor(Te,de){this._platform=Te,this._nonce=de,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):J}matchMedia(Te){return(this._platform.WEBKIT||this._platform.BLINK)&&function Q(ae,Me){if(!W.has(ae))try{$||($=document.createElement("style"),Me&&$.setAttribute("nonce",Me),$.setAttribute("type","text/css"),document.head.appendChild($)),$.sheet&&($.sheet.insertRule(`@media ${ae} {body{ }}`,0),W.add(ae))}catch(Te){console.error(Te)}}(Te,this._nonce),this._matchMedia(Te)}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(R.OD),e.KVO(e.BIS,8))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function J(ae){return{matches:"all"===ae||""===ae,media:ae,addListener:()=>{},removeListener:()=>{}}}let ee=(()=>{class ae{constructor(Te,de){this._mediaMatcher=Te,this._zone=de,this._queries=new Map,this._destroySubject=new w.B}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(Te){return ie((0,t.FG)(Te)).some(D=>this._registerQuery(D).mql.matches)}observe(Te){const D=ie((0,t.FG)(Te)).map(c=>this._registerQuery(c).observable);let n=(0,S.z)(D);return n=(0,l.x)(n.pipe((0,f.s)(1)),n.pipe((0,I.i)(1),(0,d.B)(0))),n.pipe((0,T.T)(c=>{const m={matches:!1,breakpoints:{}};return c.forEach(({matches:h,query:C})=>{m.matches=m.matches||h,m.breakpoints[C]=h}),m}))}_registerQuery(Te){if(this._queries.has(Te))return this._queries.get(Te);const de=this._mediaMatcher.matchMedia(Te),n={observable:new x.c(c=>{const m=h=>this._zone.run(()=>c.next(h));return de.addListener(m),()=>{de.removeListener(m)}}).pipe((0,y.Z)(de),(0,T.T)(({matches:c})=>({query:Te,matches:c})),(0,F.Q)(this._destroySubject)),mql:de};return this._queries.set(Te,n),n}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(j),e.KVO(e.SKi))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function ie(ae){return ae.map(Me=>Me.split(",")).reduce((Me,Te)=>Me.concat(Te)).map(Me=>Me.trim())}const ge={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)"}},2318:(Qe,te,g)=>{"use strict";g.d(te,{Wv:()=>y,w5:()=>F});var e=g(4085),t=g(4438),w=g(1985),S=g(1413),l=g(6354),x=g(5964),f=g(152);let d=(()=>{class R{create(W){return typeof MutationObserver>"u"?null:new MutationObserver(W)}static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275prov=t.jDH({token:R,factory:R.\u0275fac,providedIn:"root"})}return R})(),T=(()=>{class R{constructor(W){this._mutationObserverFactory=W,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((W,$)=>this._cleanupObserver($))}observe(W){const $=(0,e.i8)(W);return new w.c(j=>{const J=this._observeElement($).pipe((0,l.T)(ee=>ee.filter(ie=>!function I(R){if("characterData"===R.type&&R.target instanceof Comment)return!0;if("childList"===R.type){for(let z=0;z!!ee.length)).subscribe(j);return()=>{J.unsubscribe(),this._unobserveElement($)}})}_observeElement(W){if(this._observedElements.has(W))this._observedElements.get(W).count++;else{const $=new S.B,j=this._mutationObserverFactory.create(Q=>$.next(Q));j&&j.observe(W,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(W,{observer:j,stream:$,count:1})}return this._observedElements.get(W).stream}_unobserveElement(W){this._observedElements.has(W)&&(this._observedElements.get(W).count--,this._observedElements.get(W).count||this._cleanupObserver(W))}_cleanupObserver(W){if(this._observedElements.has(W)){const{observer:$,stream:j}=this._observedElements.get(W);$&&$.disconnect(),j.complete(),this._observedElements.delete(W)}}static#e=this.\u0275fac=function($){return new($||R)(t.KVO(d))};static#t=this.\u0275prov=t.jDH({token:R,factory:R.\u0275fac,providedIn:"root"})}return R})(),y=(()=>{class R{get disabled(){return this._disabled}set disabled(W){this._disabled=W,this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(W){this._debounce=(0,e.OE)(W),this._subscribe()}constructor(W,$,j){this._contentObserver=W,this._elementRef=$,this._ngZone=j,this.event=new t.bkB,this._disabled=!1,this._currentSubscription=null}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const W=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?W.pipe((0,f.B)(this.debounce)):W).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}static#e=this.\u0275fac=function($){return new($||R)(t.rXU(T),t.rXU(t.aKT),t.rXU(t.SKi))};static#t=this.\u0275dir=t.FsC({type:R,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",t.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"],standalone:!0,features:[t.GFd]})}return R})(),F=(()=>{class R{static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275mod=t.$C({type:R});static#i=this.\u0275inj=t.G2t({providers:[d]})}return R})()},6969:(Qe,te,g)=>{"use strict";g.d(te,{WB:()=>Ze,$Q:()=>pe,rW:()=>ne,hJ:()=>mt,rR:()=>D,Sf:()=>r,z_:()=>pt,yY:()=>v});var e=g(5542),t=g(177),w=g(4438),S=g(4085),l=g(6860),x=g(5964),f=g(6697),I=g(6977),d=g(9974),T=g(4360),F=g(8203),R=g(6939),z=g(1413),W=g(8359),$=g(7786),j=g(7336);const Q=(0,l.CZ)();class J{constructor(ue,Ie){this._viewportRuler=ue,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=Ie}attach(){}enable(){if(this._canBeEnabled()){const ue=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=ue.style.left||"",this._previousHTMLStyles.top=ue.style.top||"",ue.style.left=(0,S.a1)(-this._previousScrollPosition.left),ue.style.top=(0,S.a1)(-this._previousScrollPosition.top),ue.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const ue=this._document.documentElement,He=ue.style,Xe=this._document.body.style,yt=He.scrollBehavior||"",Ye=Xe.scrollBehavior||"";this._isEnabled=!1,He.left=this._previousHTMLStyles.left,He.top=this._previousHTMLStyles.top,ue.classList.remove("cdk-global-scrollblock"),Q&&(He.scrollBehavior=Xe.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),Q&&(He.scrollBehavior=yt,Xe.scrollBehavior=Ye)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Ie=this._document.body,He=this._viewportRuler.getViewportSize();return Ie.scrollHeight>He.height||Ie.scrollWidth>He.width}}class ie{constructor(ue,Ie,He,Xe){this._scrollDispatcher=ue,this._ngZone=Ie,this._viewportRuler=He,this._config=Xe,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(ue){this._overlayRef=ue}enable(){if(this._scrollSubscription)return;const ue=this._scrollDispatcher.scrolled(0).pipe((0,x.p)(Ie=>!Ie||!this._overlayRef.overlayElement.contains(Ie.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=ue.subscribe(()=>{const Ie=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Ie-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=ue.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class ge{enable(){}disable(){}attach(){}}function ae(ye,ue){return ue.some(Ie=>ye.bottomIe.bottom||ye.rightIe.right)}function Me(ye,ue){return ue.some(Ie=>ye.topIe.bottom||ye.leftIe.right)}class Te{constructor(ue,Ie,He,Xe){this._scrollDispatcher=ue,this._viewportRuler=Ie,this._ngZone=He,this._config=Xe,this._scrollSubscription=null}attach(ue){this._overlayRef=ue}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 Ie=this._overlayRef.overlayElement.getBoundingClientRect(),{width:He,height:Xe}=this._viewportRuler.getViewportSize();ae(Ie,[{width:He,height:Xe,bottom:Xe,right:He,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 de=(()=>{class ye{constructor(Ie,He,Xe,yt){this._scrollDispatcher=Ie,this._viewportRuler=He,this._ngZone=Xe,this.noop=()=>new ge,this.close=Ye=>new ie(this._scrollDispatcher,this._ngZone,this._viewportRuler,Ye),this.block=()=>new J(this._viewportRuler,this._document),this.reposition=Ye=>new Te(this._scrollDispatcher,this._viewportRuler,this._ngZone,Ye),this._document=yt}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(e.R),w.KVO(e.Xj),w.KVO(w.SKi),w.KVO(t.qQ))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();class D{constructor(ue){if(this.scrollStrategy=new ge,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,ue){const Ie=Object.keys(ue);for(const He of Ie)void 0!==ue[He]&&(this[He]=ue[He])}}}class m{constructor(ue,Ie){this.connectionPair=ue,this.scrollableViewProperties=Ie}}let k=(()=>{class ye{constructor(Ie){this._attachedOverlays=[],this._document=Ie}ngOnDestroy(){this.detach()}add(Ie){this.remove(Ie),this._attachedOverlays.push(Ie)}remove(Ie){const He=this._attachedOverlays.indexOf(Ie);He>-1&&this._attachedOverlays.splice(He,1),0===this._attachedOverlays.length&&this.detach()}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),L=(()=>{class ye extends k{constructor(Ie,He){super(Ie),this._ngZone=He,this._keydownListener=Xe=>{const yt=this._attachedOverlays;for(let Ye=yt.length-1;Ye>-1;Ye--)if(yt[Ye]._keydownEvents.observers.length>0){const rt=yt[Ye]._keydownEvents;this._ngZone?this._ngZone.run(()=>rt.next(Xe)):rt.next(Xe);break}}}add(Ie){super.add(Ie),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)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ),w.KVO(w.SKi,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),_=(()=>{class ye extends k{constructor(Ie,He,Xe){super(Ie),this._platform=He,this._ngZone=Xe,this._cursorStyleIsSet=!1,this._pointerDownListener=yt=>{this._pointerDownEventTarget=(0,l.Fb)(yt)},this._clickListener=yt=>{const Ye=(0,l.Fb)(yt),rt="click"===yt.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:Ye;this._pointerDownEventTarget=null;const Yt=this._attachedOverlays.slice();for(let Nt=Yt.length-1;Nt>-1;Nt--){const Et=Yt[Nt];if(Et._outsidePointerEvents.observers.length<1||!Et.hasAttached())continue;if(Et.overlayElement.contains(Ye)||Et.overlayElement.contains(rt))break;const Vt=Et._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Vt.next(yt)):Vt.next(yt)}}}add(Ie){if(super.add(Ie),!this._isAttached){const He=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(He)):this._addEventListeners(He),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=He.style.cursor,He.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const Ie=this._document.body;Ie.removeEventListener("pointerdown",this._pointerDownListener,!0),Ie.removeEventListener("click",this._clickListener,!0),Ie.removeEventListener("auxclick",this._clickListener,!0),Ie.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(Ie.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(Ie){Ie.addEventListener("pointerdown",this._pointerDownListener,!0),Ie.addEventListener("click",this._clickListener,!0),Ie.addEventListener("auxclick",this._clickListener,!0),Ie.addEventListener("contextmenu",this._clickListener,!0)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ),w.KVO(l.OD),w.KVO(w.SKi,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),r=(()=>{class ye{constructor(Ie,He){this._platform=He,this._document=Ie}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Ie="cdk-overlay-container";if(this._platform.isBrowser||(0,l.v8)()){const Xe=this._document.querySelectorAll(`.${Ie}[platform="server"], .${Ie}[platform="test"]`);for(let yt=0;ytthis._backdropClick.next(Vt),this._backdropTransitionendHandler=Vt=>{this._disposeBackdrop(Vt.target)},this._keydownEvents=new z.B,this._outsidePointerEvents=new z.B,Xe.scrollStrategy&&(this._scrollStrategy=Xe.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=Xe.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(ue){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Ie=this._portalOutlet.attach(ue);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,f.s)(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),"function"==typeof Ie?.onDestroy&&Ie.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Ie}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const ue=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),ue}dispose(){const ue=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),this._host?.remove(),this._previousHostParent=this._pane=this._host=null,ue&&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(ue){ue!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=ue,this.hasAttached()&&(ue.attach(this),this.updatePosition()))}updateSize(ue){this._config={...this._config,...ue},this._updateElementSize()}setDirection(ue){this._config={...this._config,direction:ue},this._updateElementDirection()}addPanelClass(ue){this._pane&&this._toggleClasses(this._pane,ue,!0)}removePanelClass(ue){this._pane&&this._toggleClasses(this._pane,ue,!1)}getDirection(){const ue=this._config.direction;return ue?"string"==typeof ue?ue:ue.value:"ltr"}updateScrollStrategy(ue){ue!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=ue,this.hasAttached()&&(ue.attach(this),ue.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const ue=this._pane.style;ue.width=(0,S.a1)(this._config.width),ue.height=(0,S.a1)(this._config.height),ue.minWidth=(0,S.a1)(this._config.minWidth),ue.minHeight=(0,S.a1)(this._config.minHeight),ue.maxWidth=(0,S.a1)(this._config.maxWidth),ue.maxHeight=(0,S.a1)(this._config.maxHeight)}_togglePointerEvents(ue){this._pane.style.pointerEvents=ue?"":"none"}_attachBackdrop(){const ue="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),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),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(ue)})}):this._backdropElement.classList.add(ue)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const ue=this._backdropElement;if(ue){if(this._animationsDisabled)return void this._disposeBackdrop(ue);ue.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{ue.addEventListener("transitionend",this._backdropTransitionendHandler)}),ue.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(ue)},500))}}_toggleClasses(ue,Ie,He){const Xe=(0,S.FG)(Ie||[]).filter(yt=>!!yt);Xe.length&&(He?ue.classList.add(...Xe):ue.classList.remove(...Xe))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const ue=this._ngZone.onStable.pipe((0,I.Q)((0,$.h)(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()),ue.unsubscribe())})})}_disposeScrollStrategy(){const ue=this._scrollStrategy;ue&&(ue.disable(),ue.detach&&ue.detach())}_disposeBackdrop(ue){ue&&(ue.removeEventListener("click",this._backdropClickHandler),ue.removeEventListener("transitionend",this._backdropTransitionendHandler),ue.remove(),this._backdropElement===ue&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const V="cdk-overlay-connected-position-bounding-box",N=/([A-Za-z%]+)$/;class ne{get positions(){return this._preferredPositions}constructor(ue,Ie,He,Xe,yt){this._viewportRuler=Ie,this._document=He,this._platform=Xe,this._overlayContainer=yt,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new z.B,this._resizeSubscription=W.yU.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(ue)}attach(ue){this._validatePositions(),ue.hostElement.classList.add(V),this._overlayRef=ue,this._boundingBox=ue.hostElement,this._pane=ue.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{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 ue=this._originRect,Ie=this._overlayRect,He=this._viewportRect,Xe=this._containerRect,yt=[];let Ye;for(let rt of this._preferredPositions){let Yt=this._getOriginPoint(ue,Xe,rt),Nt=this._getOverlayPoint(Yt,Ie,rt),Et=this._getOverlayFit(Nt,Ie,He,rt);if(Et.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(rt,Yt);this._canFitWithFlexibleDimensions(Et,Nt,He)?yt.push({position:rt,origin:Yt,overlayRect:Ie,boundingBoxRect:this._calculateBoundingBoxRect(Yt,rt)}):(!Ye||Ye.overlayFit.visibleAreaYt&&(Yt=Et,rt=Nt)}return this._isPushed=!1,void this._applyPosition(rt.position,rt.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(Ye.position,Ye.originPoint);this._applyPosition(Ye.position,Ye.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Ee(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(V),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const ue=this._lastPosition;if(ue){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Ie=this._getOriginPoint(this._originRect,this._containerRect,ue);this._applyPosition(ue,Ie)}else this.apply()}withScrollableContainers(ue){return this._scrollables=ue,this}withPositions(ue){return this._preferredPositions=ue,-1===ue.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(ue){return this._viewportMargin=ue,this}withFlexibleDimensions(ue=!0){return this._hasFlexibleDimensions=ue,this}withGrowAfterOpen(ue=!0){return this._growAfterOpen=ue,this}withPush(ue=!0){return this._canPush=ue,this}withLockedPosition(ue=!0){return this._positionLocked=ue,this}setOrigin(ue){return this._origin=ue,this}withDefaultOffsetX(ue){return this._offsetX=ue,this}withDefaultOffsetY(ue){return this._offsetY=ue,this}withTransformOriginOn(ue){return this._transformOriginSelector=ue,this}_getOriginPoint(ue,Ie,He){let Xe,yt;if("center"==He.originX)Xe=ue.left+ue.width/2;else{const Ye=this._isRtl()?ue.right:ue.left,rt=this._isRtl()?ue.left:ue.right;Xe="start"==He.originX?Ye:rt}return Ie.left<0&&(Xe-=Ie.left),yt="center"==He.originY?ue.top+ue.height/2:"top"==He.originY?ue.top:ue.bottom,Ie.top<0&&(yt-=Ie.top),{x:Xe,y:yt}}_getOverlayPoint(ue,Ie,He){let Xe,yt;return Xe="center"==He.overlayX?-Ie.width/2:"start"===He.overlayX?this._isRtl()?-Ie.width:0:this._isRtl()?0:-Ie.width,yt="center"==He.overlayY?-Ie.height/2:"top"==He.overlayY?0:-Ie.height,{x:ue.x+Xe,y:ue.y+yt}}_getOverlayFit(ue,Ie,He,Xe){const yt=qe(Ie);let{x:Ye,y:rt}=ue,Yt=this._getOffset(Xe,"x"),Nt=this._getOffset(Xe,"y");Yt&&(Ye+=Yt),Nt&&(rt+=Nt);let oe=0-rt,tt=rt+yt.height-He.height,$t=this._subtractOverflows(yt.width,0-Ye,Ye+yt.width-He.width),zt=this._subtractOverflows(yt.height,oe,tt),Jt=$t*zt;return{visibleArea:Jt,isCompletelyWithinViewport:yt.width*yt.height===Jt,fitsInViewportVertically:zt===yt.height,fitsInViewportHorizontally:$t==yt.width}}_canFitWithFlexibleDimensions(ue,Ie,He){if(this._hasFlexibleDimensions){const Xe=He.bottom-Ie.y,yt=He.right-Ie.x,Ye=ze(this._overlayRef.getConfig().minHeight),rt=ze(this._overlayRef.getConfig().minWidth);return(ue.fitsInViewportVertically||null!=Ye&&Ye<=Xe)&&(ue.fitsInViewportHorizontally||null!=rt&&rt<=yt)}return!1}_pushOverlayOnScreen(ue,Ie,He){if(this._previousPushAmount&&this._positionLocked)return{x:ue.x+this._previousPushAmount.x,y:ue.y+this._previousPushAmount.y};const Xe=qe(Ie),yt=this._viewportRect,Ye=Math.max(ue.x+Xe.width-yt.width,0),rt=Math.max(ue.y+Xe.height-yt.height,0),Yt=Math.max(yt.top-He.top-ue.y,0),Nt=Math.max(yt.left-He.left-ue.x,0);let Et=0,Vt=0;return Et=Xe.width<=yt.width?Nt||-Ye:ue.x$t&&!this._isInitialRender&&!this._growAfterOpen&&(Ye=ue.y-$t/2)}if("end"===Ie.overlayX&&!Xe||"start"===Ie.overlayX&&Xe)oe=He.width-ue.x+2*this._viewportMargin,Et=ue.x-this._viewportMargin;else if("start"===Ie.overlayX&&!Xe||"end"===Ie.overlayX&&Xe)Vt=ue.x,Et=He.right-ue.x;else{const tt=Math.min(He.right-ue.x+He.left,ue.x),$t=this._lastBoundingBoxSize.width;Et=2*tt,Vt=ue.x-tt,Et>$t&&!this._isInitialRender&&!this._growAfterOpen&&(Vt=ue.x-$t/2)}return{top:Ye,left:Vt,bottom:rt,right:oe,width:Et,height:yt}}_setBoundingBoxStyles(ue,Ie){const He=this._calculateBoundingBoxRect(ue,Ie);!this._isInitialRender&&!this._growAfterOpen&&(He.height=Math.min(He.height,this._lastBoundingBoxSize.height),He.width=Math.min(He.width,this._lastBoundingBoxSize.width));const Xe={};if(this._hasExactPosition())Xe.top=Xe.left="0",Xe.bottom=Xe.right=Xe.maxHeight=Xe.maxWidth="",Xe.width=Xe.height="100%";else{const yt=this._overlayRef.getConfig().maxHeight,Ye=this._overlayRef.getConfig().maxWidth;Xe.height=(0,S.a1)(He.height),Xe.top=(0,S.a1)(He.top),Xe.bottom=(0,S.a1)(He.bottom),Xe.width=(0,S.a1)(He.width),Xe.left=(0,S.a1)(He.left),Xe.right=(0,S.a1)(He.right),Xe.alignItems="center"===Ie.overlayX?"center":"end"===Ie.overlayX?"flex-end":"flex-start",Xe.justifyContent="center"===Ie.overlayY?"center":"bottom"===Ie.overlayY?"flex-end":"flex-start",yt&&(Xe.maxHeight=(0,S.a1)(yt)),Ye&&(Xe.maxWidth=(0,S.a1)(Ye))}this._lastBoundingBoxSize=He,Ee(this._boundingBox.style,Xe)}_resetBoundingBoxStyles(){Ee(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){Ee(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(ue,Ie){const He={},Xe=this._hasExactPosition(),yt=this._hasFlexibleDimensions,Ye=this._overlayRef.getConfig();if(Xe){const Et=this._viewportRuler.getViewportScrollPosition();Ee(He,this._getExactOverlayY(Ie,ue,Et)),Ee(He,this._getExactOverlayX(Ie,ue,Et))}else He.position="static";let rt="",Yt=this._getOffset(Ie,"x"),Nt=this._getOffset(Ie,"y");Yt&&(rt+=`translateX(${Yt}px) `),Nt&&(rt+=`translateY(${Nt}px)`),He.transform=rt.trim(),Ye.maxHeight&&(Xe?He.maxHeight=(0,S.a1)(Ye.maxHeight):yt&&(He.maxHeight="")),Ye.maxWidth&&(Xe?He.maxWidth=(0,S.a1)(Ye.maxWidth):yt&&(He.maxWidth="")),Ee(this._pane.style,He)}_getExactOverlayY(ue,Ie,He){let Xe={top:"",bottom:""},yt=this._getOverlayPoint(Ie,this._overlayRect,ue);return this._isPushed&&(yt=this._pushOverlayOnScreen(yt,this._overlayRect,He)),"bottom"===ue.overlayY?Xe.bottom=this._document.documentElement.clientHeight-(yt.y+this._overlayRect.height)+"px":Xe.top=(0,S.a1)(yt.y),Xe}_getExactOverlayX(ue,Ie,He){let Ye,Xe={left:"",right:""},yt=this._getOverlayPoint(Ie,this._overlayRect,ue);return this._isPushed&&(yt=this._pushOverlayOnScreen(yt,this._overlayRect,He)),Ye=this._isRtl()?"end"===ue.overlayX?"left":"right":"end"===ue.overlayX?"right":"left","right"===Ye?Xe.right=this._document.documentElement.clientWidth-(yt.x+this._overlayRect.width)+"px":Xe.left=(0,S.a1)(yt.x),Xe}_getScrollVisibility(){const ue=this._getOriginRect(),Ie=this._pane.getBoundingClientRect(),He=this._scrollables.map(Xe=>Xe.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Me(ue,He),isOriginOutsideView:ae(ue,He),isOverlayClipped:Me(Ie,He),isOverlayOutsideView:ae(Ie,He)}}_subtractOverflows(ue,...Ie){return Ie.reduce((He,Xe)=>He-Math.max(Xe,0),ue)}_getNarrowedViewportRect(){const ue=this._document.documentElement.clientWidth,Ie=this._document.documentElement.clientHeight,He=this._viewportRuler.getViewportScrollPosition();return{top:He.top+this._viewportMargin,left:He.left+this._viewportMargin,right:He.left+ue-this._viewportMargin,bottom:He.top+Ie-this._viewportMargin,width:ue-2*this._viewportMargin,height:Ie-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(ue,Ie){return"x"===Ie?null==ue.offsetX?this._offsetX:ue.offsetX:null==ue.offsetY?this._offsetY:ue.offsetY}_validatePositions(){}_addPanelClasses(ue){this._pane&&(0,S.FG)(ue).forEach(Ie=>{""!==Ie&&-1===this._appliedPanelClasses.indexOf(Ie)&&(this._appliedPanelClasses.push(Ie),this._pane.classList.add(Ie))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(ue=>{this._pane.classList.remove(ue)}),this._appliedPanelClasses=[])}_getOriginRect(){const ue=this._origin;if(ue instanceof w.aKT)return ue.nativeElement.getBoundingClientRect();if(ue instanceof Element)return ue.getBoundingClientRect();const Ie=ue.width||0,He=ue.height||0;return{top:ue.y,bottom:ue.y+He,left:ue.x,right:ue.x+Ie,height:He,width:Ie}}}function Ee(ye,ue){for(let Ie in ue)ue.hasOwnProperty(Ie)&&(ye[Ie]=ue[Ie]);return ye}function ze(ye){if("number"!=typeof ye&&null!=ye){const[ue,Ie]=ye.split(N);return Ie&&"px"!==Ie?null:parseFloat(ue)}return ye||null}function qe(ye){return{top:Math.floor(ye.top),right:Math.floor(ye.right),bottom:Math.floor(ye.bottom),left:Math.floor(ye.left),width:Math.floor(ye.width),height:Math.floor(ye.height)}}const me="cdk-global-overlay-wrapper";class ce{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(ue){const Ie=ue.getConfig();this._overlayRef=ue,this._width&&!Ie.width&&ue.updateSize({width:this._width}),this._height&&!Ie.height&&ue.updateSize({height:this._height}),ue.hostElement.classList.add(me),this._isDisposed=!1}top(ue=""){return this._bottomOffset="",this._topOffset=ue,this._alignItems="flex-start",this}left(ue=""){return this._xOffset=ue,this._xPosition="left",this}bottom(ue=""){return this._topOffset="",this._bottomOffset=ue,this._alignItems="flex-end",this}right(ue=""){return this._xOffset=ue,this._xPosition="right",this}start(ue=""){return this._xOffset=ue,this._xPosition="start",this}end(ue=""){return this._xOffset=ue,this._xPosition="end",this}width(ue=""){return this._overlayRef?this._overlayRef.updateSize({width:ue}):this._width=ue,this}height(ue=""){return this._overlayRef?this._overlayRef.updateSize({height:ue}):this._height=ue,this}centerHorizontally(ue=""){return this.left(ue),this._xPosition="center",this}centerVertically(ue=""){return this.top(ue),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const ue=this._overlayRef.overlayElement.style,Ie=this._overlayRef.hostElement.style,He=this._overlayRef.getConfig(),{width:Xe,height:yt,maxWidth:Ye,maxHeight:rt}=He,Yt=!("100%"!==Xe&&"100vw"!==Xe||Ye&&"100%"!==Ye&&"100vw"!==Ye),Nt=!("100%"!==yt&&"100vh"!==yt||rt&&"100%"!==rt&&"100vh"!==rt),Et=this._xPosition,Vt=this._xOffset,oe="rtl"===this._overlayRef.getConfig().direction;let tt="",$t="",zt="";Yt?zt="flex-start":"center"===Et?(zt="center",oe?$t=Vt:tt=Vt):oe?"left"===Et||"end"===Et?(zt="flex-end",tt=Vt):("right"===Et||"start"===Et)&&(zt="flex-start",$t=Vt):"left"===Et||"start"===Et?(zt="flex-start",tt=Vt):("right"===Et||"end"===Et)&&(zt="flex-end",$t=Vt),ue.position=this._cssPosition,ue.marginLeft=Yt?"0":tt,ue.marginTop=Nt?"0":this._topOffset,ue.marginBottom=this._bottomOffset,ue.marginRight=Yt?"0":$t,Ie.justifyContent=zt,Ie.alignItems=Nt?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const ue=this._overlayRef.overlayElement.style,Ie=this._overlayRef.hostElement,He=Ie.style;Ie.classList.remove(me),He.justifyContent=He.alignItems=ue.marginTop=ue.marginBottom=ue.marginLeft=ue.marginRight=ue.position="",this._overlayRef=null,this._isDisposed=!0}}let fe=(()=>{class ye{constructor(Ie,He,Xe,yt){this._viewportRuler=Ie,this._document=He,this._platform=Xe,this._overlayContainer=yt}global(){return new ce}flexibleConnectedTo(Ie){return new ne(Ie,this._viewportRuler,this._document,this._platform,this._overlayContainer)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(e.Xj),w.KVO(t.qQ),w.KVO(l.OD),w.KVO(r))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),ke=0,mt=(()=>{class ye{constructor(Ie,He,Xe,yt,Ye,rt,Yt,Nt,Et,Vt,oe,tt){this.scrollStrategies=Ie,this._overlayContainer=He,this._componentFactoryResolver=Xe,this._positionBuilder=yt,this._keyboardDispatcher=Ye,this._injector=rt,this._ngZone=Yt,this._document=Nt,this._directionality=Et,this._location=Vt,this._outsideClickDispatcher=oe,this._animationsModuleType=tt}create(Ie){const He=this._createHostElement(),Xe=this._createPaneElement(He),yt=this._createPortalOutlet(Xe),Ye=new D(Ie);return Ye.direction=Ye.direction||this._directionality.value,new v(yt,He,Xe,Ye,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(Ie){const He=this._document.createElement("div");return He.id="cdk-overlay-"+ke++,He.classList.add("cdk-overlay-pane"),Ie.appendChild(He),He}_createHostElement(){const Ie=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(Ie),Ie}_createPortalOutlet(Ie){return this._appRef||(this._appRef=this._injector.get(w.o8S)),new R.aI(Ie,this._componentFactoryResolver,this._appRef,this._injector,this._document)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(de),w.KVO(r),w.KVO(w.OM3),w.KVO(fe),w.KVO(L),w.KVO(w.zZn),w.KVO(w.SKi),w.KVO(t.qQ),w.KVO(F.dS),w.KVO(t.aZ),w.KVO(_),w.KVO(w.bc$,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();const _e=[{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"}],be=new w.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ye=(0,w.WQX)(mt);return()=>ye.scrollStrategies.reposition()}});let pe=(()=>{class ye{constructor(Ie){this.elementRef=Ie}static#e=this.\u0275fac=function(He){return new(He||ye)(w.rXU(w.aKT))};static#t=this.\u0275dir=w.FsC({type:ye,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"],standalone:!0})}return ye})(),Ze=(()=>{class ye{get offsetX(){return this._offsetX}set offsetX(Ie){this._offsetX=Ie,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Ie){this._offsetY=Ie,this._position&&this._updatePositionStrategy(this._position)}get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(Ie){this._disposeOnNavigation=Ie}constructor(Ie,He,Xe,yt,Ye){this._overlay=Ie,this._dir=Ye,this._backdropSubscription=W.yU.EMPTY,this._attachSubscription=W.yU.EMPTY,this._detachSubscription=W.yU.EMPTY,this._positionSubscription=W.yU.EMPTY,this._disposeOnNavigation=!1,this._ngZone=(0,w.WQX)(w.SKi),this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.hasBackdrop=!1,this.lockPosition=!1,this.flexibleDimensions=!1,this.growAfterOpen=!1,this.push=!1,this.backdropClick=new w.bkB,this.positionChange=new w.bkB,this.attach=new w.bkB,this.detach=new w.bkB,this.overlayKeydown=new w.bkB,this.overlayOutsideClick=new w.bkB,this._templatePortal=new R.VA(He,Xe),this._scrollStrategyFactory=yt,this.scrollStrategy=this._scrollStrategyFactory()}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(Ie){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Ie.origin&&this.open&&this._position.apply()),Ie.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=_e);const Ie=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=Ie.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Ie.detachments().subscribe(()=>this.detach.emit()),Ie.keydownEvents().subscribe(He=>{this.overlayKeydown.next(He),He.keyCode===j._f&&!this.disableClose&&!(0,j.rp)(He)&&(He.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(He=>{const Xe=this._getOriginElement(),yt=(0,l.Fb)(He);(!Xe||Xe!==yt&&!Xe.contains(yt))&&this.overlayOutsideClick.next(He)})}_buildConfig(){const Ie=this._position=this.positionStrategy||this._createPositionStrategy(),He=new D({direction:this._dir,positionStrategy:Ie,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(He.width=this.width),(this.height||0===this.height)&&(He.height=this.height),(this.minWidth||0===this.minWidth)&&(He.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(He.minHeight=this.minHeight),this.backdropClass&&(He.backdropClass=this.backdropClass),this.panelClass&&(He.panelClass=this.panelClass),He}_updatePositionStrategy(Ie){const He=this.positions.map(Xe=>({originX:Xe.originX,originY:Xe.originY,overlayX:Xe.overlayX,overlayY:Xe.overlayY,offsetX:Xe.offsetX||this.offsetX,offsetY:Xe.offsetY||this.offsetY,panelClass:Xe.panelClass||void 0}));return Ie.setOrigin(this._getOrigin()).withPositions(He).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Ie=this._overlay.position().flexibleConnectedTo(this._getOrigin());return this._updatePositionStrategy(Ie),Ie}_getOrigin(){return this.origin instanceof pe?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof pe?this.origin.elementRef.nativeElement:this.origin instanceof w.aKT?this.origin.nativeElement:typeof Element<"u"&&this.origin instanceof Element?this.origin:null}_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(Ie=>{this.backdropClick.emit(Ie)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function y(ye,ue=!1){return(0,d.N)((Ie,He)=>{let Xe=0;Ie.subscribe((0,T._)(He,yt=>{const Ye=ye(yt,Xe++);(Ye||ue)&&He.next(yt),!Ye&&He.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Ie=>{this._ngZone.run(()=>this.positionChange.emit(Ie)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}static#e=this.\u0275fac=function(He){return new(He||ye)(w.rXU(mt),w.rXU(w.C4Q),w.rXU(w.c1b),w.rXU(be),w.rXU(F.dS,8))};static#t=this.\u0275dir=w.FsC({type:ye,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:[0,"cdkConnectedOverlayOrigin","origin"],positions:[0,"cdkConnectedOverlayPositions","positions"],positionStrategy:[0,"cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:[0,"cdkConnectedOverlayOffsetX","offsetX"],offsetY:[0,"cdkConnectedOverlayOffsetY","offsetY"],width:[0,"cdkConnectedOverlayWidth","width"],height:[0,"cdkConnectedOverlayHeight","height"],minWidth:[0,"cdkConnectedOverlayMinWidth","minWidth"],minHeight:[0,"cdkConnectedOverlayMinHeight","minHeight"],backdropClass:[0,"cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:[0,"cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:[0,"cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:[0,"cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:[0,"cdkConnectedOverlayOpen","open"],disableClose:[0,"cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:[0,"cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:[2,"cdkConnectedOverlayHasBackdrop","hasBackdrop",w.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",w.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",w.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",w.L39],push:[2,"cdkConnectedOverlayPush","push",w.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",w.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],standalone:!0,features:[w.GFd,w.OA$]})}return ye})();const at={provide:be,deps:[mt],useFactory:function _t(ye){return()=>ye.scrollStrategies.reposition()}};let pt=(()=>{class ye{static#e=this.\u0275fac=function(He){return new(He||ye)};static#t=this.\u0275mod=w.$C({type:ye});static#i=this.\u0275inj=w.G2t({providers:[mt,at],imports:[F.jI,R.jc,e.E9,e.E9]})}return ye})()},6860:(Qe,te,g)=>{"use strict";g.d(te,{BD:()=>$,BQ:()=>y,CZ:()=>W,Fb:()=>ie,KT:()=>J,MU:()=>I,OD:()=>S,r5:()=>F,v8:()=>ge,vc:()=>ee});var e=g(4438),t=g(177);let w;try{w=typeof Intl<"u"&&Intl.v8BreakIterator}catch{w=!1}let x,S=(()=>{class ae{constructor(Te){this._platformId=Te,this.isBrowser=this._platformId?(0,t.UE)(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&&!w)&&typeof CSS<"u"&&!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}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(e.Agw))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();const f=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function I(){if(x)return x;if("object"!=typeof document||!document)return x=new Set(f),x;let ae=document.createElement("input");return x=new Set(f.filter(Me=>(ae.setAttribute("type",Me),ae.type===Me))),x}let d;function y(ae){return function T(){if(null==d&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>d=!0}))}finally{d=d||!1}return d}()?ae:!!ae.capture}var F=function(ae){return ae[ae.NORMAL=0]="NORMAL",ae[ae.NEGATED=1]="NEGATED",ae[ae.INVERTED=2]="INVERTED",ae}(F||{});let R,z,j;function W(){if(null==z){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return z=!1,z;if("scrollBehavior"in document.documentElement.style)z=!0;else{const ae=Element.prototype.scrollTo;z=!!ae&&!/\{\s*\[native code\]\s*\}/.test(ae.toString())}}return z}function $(){if("object"!=typeof document||!document)return F.NORMAL;if(null==R){const ae=document.createElement("div"),Me=ae.style;ae.dir="rtl",Me.width="1px",Me.overflow="auto",Me.visibility="hidden",Me.pointerEvents="none",Me.position="absolute";const Te=document.createElement("div"),de=Te.style;de.width="2px",de.height="1px",ae.appendChild(Te),document.body.appendChild(ae),R=F.NORMAL,0===ae.scrollLeft&&(ae.scrollLeft=1,R=0===ae.scrollLeft?F.NEGATED:F.INVERTED),ae.remove()}return R}function J(ae){if(function Q(){if(null==j){const ae=typeof document<"u"?document.head:null;j=!(!ae||!ae.createShadowRoot&&!ae.attachShadow)}return j}()){const Me=ae.getRootNode?ae.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&Me instanceof ShadowRoot)return Me}return null}function ee(){let ae=typeof document<"u"&&document?document.activeElement:null;for(;ae&&ae.shadowRoot;){const Me=ae.shadowRoot.activeElement;if(Me===ae)break;ae=Me}return ae}function ie(ae){return ae.composedPath?ae.composedPath()[0]:ae.target}function ge(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}},6939:(Qe,te,g)=>{"use strict";g.d(te,{A8:()=>T,I3:()=>J,VA:()=>y,aI:()=>W,bV:()=>j,jc:()=>ie,lb:()=>R});var e=g(4438),t=g(177);class d{attach(Me){return this._attachedHost=Me,Me.attach(this)}detach(){let Me=this._attachedHost;null!=Me&&(this._attachedHost=null,Me.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Me){this._attachedHost=Me}}class T extends d{constructor(Me,Te,de,D,n){super(),this.component=Me,this.viewContainerRef=Te,this.injector=de,this.componentFactoryResolver=D,this.projectableNodes=n}}class y extends d{constructor(Me,Te,de,D){super(),this.templateRef=Me,this.viewContainerRef=Te,this.context=de,this.injector=D}get origin(){return this.templateRef.elementRef}attach(Me,Te=this.context){return this.context=Te,super.attach(Me)}detach(){return this.context=void 0,super.detach()}}class F extends d{constructor(Me){super(),this.element=Me instanceof e.aKT?Me.nativeElement:Me}}class R{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(Me){return Me instanceof T?(this._attachedPortal=Me,this.attachComponentPortal(Me)):Me instanceof y?(this._attachedPortal=Me,this.attachTemplatePortal(Me)):this.attachDomPortal&&Me instanceof F?(this._attachedPortal=Me,this.attachDomPortal(Me)):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(Me){this._disposeFn=Me}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class W extends R{constructor(Me,Te,de,D,n){super(),this.outletElement=Me,this._componentFactoryResolver=Te,this._appRef=de,this._defaultInjector=D,this.attachDomPortal=c=>{const m=c.element,h=this._document.createComment("dom-portal");m.parentNode.insertBefore(h,m),this.outletElement.appendChild(m),this._attachedPortal=c,super.setDisposeFn(()=>{h.parentNode&&h.parentNode.replaceChild(m,h)})},this._document=n}attachComponentPortal(Me){const de=(Me.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Me.component);let D;return Me.viewContainerRef?(D=Me.viewContainerRef.createComponent(de,Me.viewContainerRef.length,Me.injector||Me.viewContainerRef.injector,Me.projectableNodes||void 0),this.setDisposeFn(()=>D.destroy())):(D=de.create(Me.injector||this._defaultInjector||e.zZn.NULL),this._appRef.attachView(D.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(D.hostView),D.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(D)),this._attachedPortal=Me,D}attachTemplatePortal(Me){let Te=Me.viewContainerRef,de=Te.createEmbeddedView(Me.templateRef,Me.context,{injector:Me.injector});return de.rootNodes.forEach(D=>this.outletElement.appendChild(D)),de.detectChanges(),this.setDisposeFn(()=>{let D=Te.indexOf(de);-1!==D&&Te.remove(D)}),this._attachedPortal=Me,de}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Me){return Me.hostView.rootNodes[0]}}let j=(()=>{class ae extends y{constructor(Te,de){super(Te,de)}static#e=this.\u0275fac=function(de){return new(de||ae)(e.rXU(e.C4Q),e.rXU(e.c1b))};static#t=this.\u0275dir=e.FsC({type:ae,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],standalone:!0,features:[e.Vt3]})}return ae})(),J=(()=>{class ae extends R{constructor(Te,de,D){super(),this._componentFactoryResolver=Te,this._viewContainerRef=de,this._isInitialized=!1,this.attached=new e.bkB,this.attachDomPortal=n=>{const c=n.element,m=this._document.createComment("dom-portal");n.setAttachedHost(this),c.parentNode.insertBefore(m,c),this._getRootNode().appendChild(c),this._attachedPortal=n,super.setDisposeFn(()=>{m.parentNode&&m.parentNode.replaceChild(c,m)})},this._document=D}get portal(){return this._attachedPortal}set portal(Te){this.hasAttached()&&!Te&&!this._isInitialized||(this.hasAttached()&&super.detach(),Te&&super.attach(Te),this._attachedPortal=Te||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(Te){Te.setAttachedHost(this);const de=null!=Te.viewContainerRef?Te.viewContainerRef:this._viewContainerRef,n=(Te.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Te.component),c=de.createComponent(n,de.length,Te.injector||de.injector,Te.projectableNodes||void 0);return de!==this._viewContainerRef&&this._getRootNode().appendChild(c.hostView.rootNodes[0]),super.setDisposeFn(()=>c.destroy()),this._attachedPortal=Te,this._attachedRef=c,this.attached.emit(c),c}attachTemplatePortal(Te){Te.setAttachedHost(this);const de=this._viewContainerRef.createEmbeddedView(Te.templateRef,Te.context,{injector:Te.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=Te,this._attachedRef=de,this.attached.emit(de),de}_getRootNode(){const Te=this._viewContainerRef.element.nativeElement;return Te.nodeType===Te.ELEMENT_NODE?Te:Te.parentNode}static#e=this.\u0275fac=function(de){return new(de||ae)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU(t.qQ))};static#t=this.\u0275dir=e.FsC({type:ae,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],standalone:!0,features:[e.Vt3]})}return ae})(),ie=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=e.$C({type:ae});static#i=this.\u0275inj=e.G2t({})}return ae})()},5542:(Qe,te,g)=>{"use strict";g.d(te,{uv:()=>m,Gj:()=>ze,R:()=>c,E9:()=>qe,Xj:()=>C});var e=g(4085),t=g(4438),w=g(1413),S=g(7673),l=g(1985),x=g(3726),f=g(6780),I=g(8359);const d={schedule(Ke){let se=requestAnimationFrame,X=cancelAnimationFrame;const{delegate:me}=d;me&&(se=me.requestAnimationFrame,X=me.cancelAnimationFrame);const ce=se(fe=>{X=void 0,Ke(fe)});return new I.yU(()=>X?.(ce))},requestAnimationFrame(...Ke){const{delegate:se}=d;return(se?.requestAnimationFrame||requestAnimationFrame)(...Ke)},cancelAnimationFrame(...Ke){const{delegate:se}=d;return(se?.cancelAnimationFrame||cancelAnimationFrame)(...Ke)},delegate:void 0};var y=g(9687);new class F extends y.q{flush(se){this._active=!0;const X=this._scheduled;this._scheduled=void 0;const{actions:me}=this;let ce;se=se||me.shift();do{if(ce=se.execute(se.state,se.delay))break}while((se=me[0])&&se.id===X&&me.shift());if(this._active=!1,ce){for(;(se=me[0])&&se.id===X&&me.shift();)se.unsubscribe();throw ce}}}(class T extends f.R{constructor(se,X){super(se,X),this.scheduler=se,this.work=X}requestAsyncId(se,X,me=0){return null!==me&&me>0?super.requestAsyncId(se,X,me):(se.actions.push(this),se._scheduled||(se._scheduled=d.requestAnimationFrame(()=>se.flush(void 0))))}recycleAsyncId(se,X,me=0){var ce;if(null!=me?me>0:this.delay>0)return super.recycleAsyncId(se,X,me);const{actions:fe}=se;null!=X&&(null===(ce=fe[fe.length-1])||void 0===ce?void 0:ce.id)!==X&&(d.cancelAnimationFrame(X),se._scheduled=void 0)}});g(5007);var $=g(3798),j=g(5964),Q=g(6977),J=g(6860),ee=g(177),ie=g(8203);let c=(()=>{class Ke{constructor(X,me,ce){this._ngZone=X,this._platform=me,this._scrolled=new w.B,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=ce}register(X){this.scrollContainers.has(X)||this.scrollContainers.set(X,X.elementScrolled().subscribe(()=>this._scrolled.next(X)))}deregister(X){const me=this.scrollContainers.get(X);me&&(me.unsubscribe(),this.scrollContainers.delete(X))}scrolled(X=20){return this._platform.isBrowser?new l.c(me=>{this._globalSubscription||this._addGlobalListener();const ce=X>0?this._scrolled.pipe((0,$.Z)(X)).subscribe(me):this._scrolled.subscribe(me);return this._scrolledCount++,()=>{ce.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,S.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((X,me)=>this.deregister(me)),this._scrolled.complete()}ancestorScrolled(X,me){const ce=this.getAncestorScrollContainers(X);return this.scrolled(me).pipe((0,j.p)(fe=>!fe||ce.indexOf(fe)>-1))}getAncestorScrollContainers(X){const me=[];return this.scrollContainers.forEach((ce,fe)=>{this._scrollableContainsElement(fe,X)&&me.push(fe)}),me}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(X,me){let ce=(0,e.i8)(me),fe=X.getElementRef().nativeElement;do{if(ce==fe)return!0}while(ce=ce.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const X=this._getWindow();return(0,x.R)(X.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.KVO(t.SKi),t.KVO(J.OD),t.KVO(ee.qQ,8))};static#t=this.\u0275prov=t.jDH({token:Ke,factory:Ke.\u0275fac,providedIn:"root"})}return Ke})(),m=(()=>{class Ke{constructor(X,me,ce,fe){this.elementRef=X,this.scrollDispatcher=me,this.ngZone=ce,this.dir=fe,this._destroyed=new w.B,this._elementScrolled=new l.c(ke=>this.ngZone.runOutsideAngular(()=>(0,x.R)(this.elementRef.nativeElement,"scroll").pipe((0,Q.Q)(this._destroyed)).subscribe(ke)))}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(X){const me=this.elementRef.nativeElement,ce=this.dir&&"rtl"==this.dir.value;null==X.left&&(X.left=ce?X.end:X.start),null==X.right&&(X.right=ce?X.start:X.end),null!=X.bottom&&(X.top=me.scrollHeight-me.clientHeight-X.bottom),ce&&(0,J.BD)()!=J.r5.NORMAL?(null!=X.left&&(X.right=me.scrollWidth-me.clientWidth-X.left),(0,J.BD)()==J.r5.INVERTED?X.left=X.right:(0,J.BD)()==J.r5.NEGATED&&(X.left=X.right?-X.right:X.right)):null!=X.right&&(X.left=me.scrollWidth-me.clientWidth-X.right),this._applyScrollToOptions(X)}_applyScrollToOptions(X){const me=this.elementRef.nativeElement;(0,J.CZ)()?me.scrollTo(X):(null!=X.top&&(me.scrollTop=X.top),null!=X.left&&(me.scrollLeft=X.left))}measureScrollOffset(X){const me="left",fe=this.elementRef.nativeElement;if("top"==X)return fe.scrollTop;if("bottom"==X)return fe.scrollHeight-fe.clientHeight-fe.scrollTop;const ke=this.dir&&"rtl"==this.dir.value;return"start"==X?X=ke?"right":me:"end"==X&&(X=ke?me:"right"),ke&&(0,J.BD)()==J.r5.INVERTED?X==me?fe.scrollWidth-fe.clientWidth-fe.scrollLeft:fe.scrollLeft:ke&&(0,J.BD)()==J.r5.NEGATED?X==me?fe.scrollLeft+fe.scrollWidth-fe.clientWidth:-fe.scrollLeft:X==me?fe.scrollLeft:fe.scrollWidth-fe.clientWidth-fe.scrollLeft}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.rXU(t.aKT),t.rXU(c),t.rXU(t.SKi),t.rXU(ie.dS,8))};static#t=this.\u0275dir=t.FsC({type:Ke,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]],standalone:!0})}return Ke})(),C=(()=>{class Ke{constructor(X,me,ce){this._platform=X,this._change=new w.B,this._changeListener=fe=>{this._change.next(fe)},this._document=ce,me.runOutsideAngular(()=>{if(X.isBrowser){const fe=this._getWindow();fe.addEventListener("resize",this._changeListener),fe.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const X=this._getWindow();X.removeEventListener("resize",this._changeListener),X.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const X={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),X}getViewportRect(){const X=this.getViewportScrollPosition(),{width:me,height:ce}=this.getViewportSize();return{top:X.top,left:X.left,bottom:X.top+ce,right:X.left+me,height:ce,width:me}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const X=this._document,me=this._getWindow(),ce=X.documentElement,fe=ce.getBoundingClientRect();return{top:-fe.top||X.body.scrollTop||me.scrollY||ce.scrollTop||0,left:-fe.left||X.body.scrollLeft||me.scrollX||ce.scrollLeft||0}}change(X=20){return X>0?this._change.pipe((0,$.Z)(X)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const X=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:X.innerWidth,height:X.innerHeight}:{width:0,height:0}}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.KVO(J.OD),t.KVO(t.SKi),t.KVO(ee.qQ,8))};static#t=this.\u0275prov=t.jDH({token:Ke,factory:Ke.\u0275fac,providedIn:"root"})}return Ke})(),ze=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=t.$C({type:Ke});static#i=this.\u0275inj=t.G2t({})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=t.$C({type:Ke});static#i=this.\u0275inj=t.G2t({imports:[ie.jI,ze,ie.jI,ze]})}return Ke})()},7768:(Qe,te,g)=>{"use strict";g.d(te,{FK:()=>ie,Up:()=>J,VI:()=>Q,nb:()=>R,oX:()=>F,uY:()=>ge,v5:()=>ee,x8:()=>j});var e=g(8617),t=g(8203),w=g(7336),S=g(4438),l=g(6860),x=g(1413),f=g(7673),I=g(9172),d=g(6977);const T=["*"];function y(ae,Me){1&ae&&S.SdG(0)}let F=(()=>{class ae{constructor(Te){this._elementRef=Te}focus(){this._elementRef.nativeElement.focus()}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(S.aKT))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"],standalone:!0})}return ae})(),R=(()=>{class ae{constructor(Te){this.template=Te}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["","cdkStepLabel",""]],standalone:!0})}return ae})(),z=0;const j=new S.nKC("STEPPER_GLOBAL_OPTIONS");let Q=(()=>{class ae{get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(Te){this._completedOverride=Te}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(Te){this._customError=Te}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}constructor(Te,de){this._stepper=Te,this.interacted=!1,this.interactedStream=new S.bkB,this.editable=!0,this.optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=de||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}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(){return this._stepperOptions.showError??null!=this._customError}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU((0,S.Rfq)(()=>J)),S.rXU(j,8))};static#t=this.\u0275cmp=S.VBU({type:ae,selectors:[["cdk-step"]],contentQueries:function(de,D,n){if(1&de&&S.wni(n,R,5),2&de){let c;S.mGM(c=S.lsd())&&(D.stepLabel=c.first)}},viewQuery:function(de,D){if(1&de&&S.GBs(S.C4Q,7),2&de){let n;S.mGM(n=S.lsd())&&(D.content=n.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],state:"state",editable:[2,"editable","editable",S.L39],optional:[2,"optional","optional",S.L39],completed:[2,"completed","completed",S.L39],hasError:[2,"hasError","hasError",S.L39]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],standalone:!0,features:[S.GFd,S.OA$,S.aNF],ngContentSelectors:T,decls:1,vars:0,template:function(de,D){1&de&&(S.NAR(),S.DNE(0,y,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return ae})(),J=(()=>{class ae{get selectedIndex(){return this._selectedIndex}set selectedIndex(Te){this.steps&&this._steps?(this._isValidIndex(Te),this.selected?._markAsInteracted(),this._selectedIndex!==Te&&!this._anyControlsInvalidOrPending(Te)&&(Te>=this._selectedIndex||this.steps.toArray()[Te].editable)&&this._updateSelectedItemIndex(Te)):this._selectedIndex=Te}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(Te){this.selectedIndex=Te&&this.steps?this.steps.toArray().indexOf(Te):-1}get orientation(){return this._orientation}set orientation(Te){this._orientation=Te,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===Te)}constructor(Te,de,D){this._dir=Te,this._changeDetectorRef=de,this._elementRef=D,this._destroyed=new x.B,this.steps=new S.rOR,this._sortedHeaders=new S.rOR,this.linear=!1,this._selectedIndex=0,this.selectionChange=new S.bkB,this.selectedIndexChange=new S.bkB,this._orientation="horizontal",this._groupId=z++}ngAfterContentInit(){this._steps.changes.pipe((0,I.Z)(this._steps),(0,d.Q)(this._destroyed)).subscribe(Te=>{this.steps.reset(Te.filter(de=>de._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,I.Z)(this._stepHeader),(0,d.Q)(this._destroyed)).subscribe(Te=>{this._sortedHeaders.reset(Te.toArray().sort((de,D)=>de._elementRef.nativeElement.compareDocumentPosition(D._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new e.Bu(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,f.of)()).pipe((0,I.Z)(this._layoutDirection()),(0,d.Q)(this._destroyed)).subscribe(Te=>this._keyManager.withHorizontalOrientation(Te)),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._keyManager?.destroy(),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(Te=>Te.reset()),this._stateChanged()}_getStepLabelId(Te){return`cdk-step-label-${this._groupId}-${Te}`}_getStepContentId(Te){return`cdk-step-content-${this._groupId}-${Te}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(Te){const de=Te-this._selectedIndex;return de<0?"rtl"===this._layoutDirection()?"next":"previous":de>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(Te,de="number"){const D=this.steps.toArray()[Te],n=this._isCurrentStep(Te);return D._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(D,n):this._getGuidelineLogic(D,n,de)}_getDefaultIndicatorLogic(Te,de){return Te._showError()&&Te.hasError&&!de?"error":!Te.completed||de?"number":Te.editable?"edit":"done"}_getGuidelineLogic(Te,de,D="number"){return Te._showError()&&Te.hasError&&!de?"error":Te.completed&&!de?"done":Te.completed&&de?D:Te.editable&&de?"edit":D}_isCurrentStep(Te){return this._selectedIndex===Te}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(Te){const de=this.steps.toArray();this.selectionChange.emit({selectedIndex:Te,previouslySelectedIndex:this._selectedIndex,selectedStep:de[Te],previouslySelectedStep:de[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(Te):this._keyManager.updateActiveItem(Te),this._selectedIndex=Te,this.selectedIndexChange.emit(this._selectedIndex),this._stateChanged()}_onKeydown(Te){const de=(0,w.rp)(Te),D=Te.keyCode,n=this._keyManager;null==n.activeItemIndex||de||D!==w.t6&&D!==w.Fm?n.setFocusOrigin("keyboard").onKeydown(Te):(this.selectedIndex=n.activeItemIndex,Te.preventDefault())}_anyControlsInvalidOrPending(Te){return!!(this.linear&&Te>=0)&&this.steps.toArray().slice(0,Te).some(de=>{const D=de.stepControl;return(D?D.invalid||D.pending||!de.interacted:!de.completed)&&!de.optional&&!de._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const Te=this._elementRef.nativeElement,de=(0,l.vc)();return Te===de||Te.contains(de)}_isValidIndex(Te){return Te>-1&&(!this.steps||Te{class ae{constructor(Te){this._stepper=Te,this.type="submit"}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(J))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(de,D){1&de&&S.bIt("click",function(){return D._stepper.next()}),2&de&&S.Mr5("type",D.type)},inputs:{type:"type"},standalone:!0})}return ae})(),ie=(()=>{class ae{constructor(Te){this._stepper=Te,this.type="button"}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(J))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(de,D){1&de&&S.bIt("click",function(){return D._stepper.previous()}),2&de&&S.Mr5("type",D.type)},inputs:{type:"type"},standalone:!0})}return ae})(),ge=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=S.$C({type:ae});static#i=this.\u0275inj=S.G2t({imports:[t.jI]})}return ae})()},4109:(Qe,te,g)=>{"use strict";g.d(te,{Dc:()=>C,Hy:()=>m,NL:()=>ae,Sz:()=>j,XO:()=>R,a$:()=>W,aI:()=>c,kZ:()=>z,s3:()=>D,xn:()=>Me});var e=g(5024),t=g(4402),w=g(1413),S=g(4412),l=g(7673),x=g(6697),f=g(5964),I=g(6977),d=g(4438),T=g(8203);class y{constructor(){this.expansionModel=new e.CB(!0)}toggle(L){this.expansionModel.toggle(this._trackByValue(L))}expand(L){this.expansionModel.select(this._trackByValue(L))}collapse(L){this.expansionModel.deselect(this._trackByValue(L))}isExpanded(L){return this.expansionModel.isSelected(this._trackByValue(L))}toggleDescendants(L){this.expansionModel.isSelected(this._trackByValue(L))?this.collapseDescendants(L):this.expandDescendants(L)}collapseAll(){this.expansionModel.clear()}expandDescendants(L){let _=[L];_.push(...this.getDescendants(L)),this.expansionModel.select(..._.map(r=>this._trackByValue(r)))}collapseDescendants(L){let _=[L];_.push(...this.getDescendants(L)),this.expansionModel.deselect(..._.map(r=>this._trackByValue(r)))}_trackByValue(L){return this.trackBy?this.trackBy(L):L}}class R extends y{constructor(L,_){super(),this.getChildren=L,this.options=_,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const L=this.dataNodes.reduce((_,r)=>[..._,...this.getDescendants(r),r],[]);this.expansionModel.select(...L.map(_=>this._trackByValue(_)))}getDescendants(L){const _=[];return this._getDescendants(_,L),_.splice(1)}_getDescendants(L,_){L.push(_);const r=this.getChildren(_);Array.isArray(r)?r.forEach(v=>this._getDescendants(L,v)):(0,t.A)(r)&&r.pipe((0,x.s)(1),(0,f.p)(Boolean)).subscribe(v=>{for(const V of v)this._getDescendants(L,V)})}}const z=new d.nKC("CDK_TREE_NODE_OUTLET_NODE");let W=(()=>{class k{constructor(_,r){this.viewContainer=_,this._node=r}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.c1b),d.rXU(z,8))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeOutlet",""]],standalone:!0})}return k})();class ${constructor(L){this.$implicit=L}}let j=(()=>{class k{constructor(_){this.template=_}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.C4Q))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]},standalone:!0})}return k})(),ae=(()=>{class k{get dataSource(){return this._dataSource}set dataSource(_){this._dataSource!==_&&this._switchDataSource(_)}constructor(_,r){this._differs=_,this._changeDetectorRef=r,this._onDestroy=new w.B,this._levels=new Map,this.viewChange=new S.t({start:0,end:Number.MAX_VALUE})}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 _=this._nodeDefs.filter(r=>!r.when);this._defaultNodeDef=_[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(_){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),_||this._nodeOutlet.viewContainer.clear(),this._dataSource=_,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let _;(0,e.y4)(this._dataSource)?_=this._dataSource.connect(this):(0,t.A)(this._dataSource)?_=this._dataSource:Array.isArray(this._dataSource)&&(_=(0,l.of)(this._dataSource)),_&&(this._dataSubscription=_.pipe((0,I.Q)(this._onDestroy)).subscribe(r=>this.renderNodeChanges(r)))}renderNodeChanges(_,r=this._dataDiffer,v=this._nodeOutlet.viewContainer,V){const N=r.diff(_);N&&(N.forEachOperation((ne,Ee,ze)=>{if(null==ne.previousIndex)this.insertNode(_[ze],ze,v,V);else if(null==ze)v.remove(Ee),this._levels.delete(ne.item);else{const qe=v.get(Ee);v.move(qe,ze)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(_,r){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(V=>V.when&&V.when(r,_))||this._defaultNodeDef}insertNode(_,r,v,V){const N=this._getNodeDef(_,r),ne=new $(_);ne.level=this.treeControl.getLevel?this.treeControl.getLevel(_):typeof V<"u"&&this._levels.has(V)?this._levels.get(V)+1:0,this._levels.set(_,ne.level),(v||this._nodeOutlet.viewContainer).createEmbeddedView(N.template,ne,r),Me.mostRecentTreeNode&&(Me.mostRecentTreeNode.data=_)}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d._q3),d.rXU(d.gRc))};static#t=this.\u0275cmp=d.VBU({type:k,selectors:[["cdk-tree"]],contentQueries:function(r,v,V){if(1&r&&d.wni(V,j,5),2&r){let N;d.mGM(N=d.lsd())&&(v._nodeDefs=N)}},viewQuery:function(r,v){if(1&r&&d.GBs(W,7),2&r){let V;d.mGM(V=d.lsd())&&(v._nodeOutlet=V.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],standalone:!0,features:[d.aNF],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(r,v){1&r&&d.eu8(0,0)},dependencies:[W],encapsulation:2})}return k})(),Me=(()=>{class k{get role(){return"treeitem"}set role(_){this._elementRef.nativeElement.setAttribute("role",_)}static#e=this.mostRecentTreeNode=null;get data(){return this._data}set data(_){_!==this._data&&(this._data=_,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}constructor(_,r){this._elementRef=_,this._tree=r,this._destroyed=new w.B,this._dataChanges=new w.B,k.mostRecentTreeNode=this,this.role="treeitem"}ngOnInit(){this._parentNodeAriaLevel=function Te(k){let L=k.parentElement;for(;L&&!de(L);)L=L.parentElement;return L?L.classList.contains("cdk-nested-tree-node")?(0,d.Udg)(L.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){k.mostRecentTreeNode===this&&(k.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}static#t=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.aKT),d.rXU(ae))};static#i=this.\u0275dir=d.FsC({type:k,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(r,v){2&r&&d.BMQ("aria-expanded",v.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"],standalone:!0})}return k})();function de(k){const L=k.classList;return!(!L?.contains("cdk-nested-tree-node")&&!L?.contains("cdk-tree"))}let D=(()=>{class k extends Me{constructor(_,r,v){super(_,r),this._differs=v}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const _=this._tree.treeControl.getChildren(this.data);Array.isArray(_)?this.updateChildrenNodes(_):(0,t.A)(_)&&_.pipe((0,I.Q)(this._destroyed)).subscribe(r=>this.updateChildrenNodes(r)),this.nodeOutlet.changes.pipe((0,I.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(_){const r=this._getNodeOutlet();_&&(this._children=_),r&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,r.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const _=this._getNodeOutlet();_&&(_.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const _=this.nodeOutlet;return _&&_.find(r=>!r._node||r._node===this)}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.aKT),d.rXU(ae),d.rXU(d._q3))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["cdk-nested-tree-node"]],contentQueries:function(r,v,V){if(1&r&&d.wni(V,W,5),2&r){let N;d.mGM(N=d.lsd())&&(v.nodeOutlet=N)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],standalone:!0,features:[d.Jv_([{provide:Me,useExisting:k},{provide:z,useExisting:k}]),d.Vt3]})}return k})();const n=/([A-Za-z%]+)$/;let c=(()=>{class k{get level(){return this._level}set level(_){this._setLevelInput(_)}get indent(){return this._indent}set indent(_){this._setIndentInput(_)}constructor(_,r,v,V){this._treeNode=_,this._tree=r,this._element=v,this._dir=V,this._destroyed=new w.B,this.indentUnits="px",this._indent=40,this._setPadding(),V&&V.change.pipe((0,I.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),_._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const _=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,r=null==this._level?_:this._level;return"number"==typeof r?`${r*this._indent}${this.indentUnits}`:null}_setPadding(_=!1){const r=this._paddingIndent();if(r!==this._currentPadding||_){const v=this._element.nativeElement,V=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",N="paddingLeft"===V?"paddingRight":"paddingLeft";v.style[V]=r||"",v.style[N]="",this._currentPadding=r}}_setLevelInput(_){this._level=isNaN(_)?null:_,this._setPadding()}_setIndentInput(_){let r=_,v="px";if("string"==typeof _){const V=_.split(n);r=V[0],v=V[1]||v}this.indentUnits=v,this._indent=(0,d.Udg)(r),this._setPadding()}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(Me),d.rXU(ae),d.rXU(d.aKT),d.rXU(T.dS,8))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",d.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]},standalone:!0,features:[d.GFd]})}return k})(),m=(()=>{class k{constructor(_,r){this._tree=_,this._treeNode=r,this.recursive=!1}_toggle(_){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),_.stopPropagation()}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(ae),d.rXU(Me))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(r,v){1&r&&d.bIt("click",function(N){return v._toggle(N)})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",d.L39]},standalone:!0,features:[d.GFd]})}return k})(),C=(()=>{class k{static#e=this.\u0275fac=function(r){return new(r||k)};static#t=this.\u0275mod=d.$C({type:k});static#i=this.\u0275inj=d.G2t({})}return k})()},177:(Qe,te,g)=>{"use strict";g.d(te,{AJ:()=>zo,B3:()=>Oi,GH:()=>sr,Jj:()=>ar,MD:()=>wo,N0:()=>Br,P9:()=>Ta,PV:()=>or,Pc:()=>Xr,QT:()=>w,QX:()=>Sa,Sm:()=>$,Sq:()=>je,T3:()=>jt,TG:()=>Ea,UE:()=>ao,VF:()=>l,Vy:()=>Oa,Xr:()=>Fa,YU:()=>fn,ZD:()=>S,_b:()=>zi,aZ:()=>Q,bT:()=>ut,e1:()=>$n,fG:()=>Yn,fw:()=>j,hb:()=>z,hj:()=>d,lG:()=>ho,qQ:()=>f,ux:()=>Fn,vh:()=>xo});var e=g(4438);let t=null;function w(){return t}function S(Z){t??=Z}class l{}const f=new e.nKC("");let I=(()=>{class Z{historyGo(De){throw new Error("")}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>(0,e.WQX)(T),providedIn:"platform"})}return Z})();const d=new e.nKC("");let T=(()=>{class Z extends I{constructor(){super(),this._doc=(0,e.WQX)(f),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return w().getBaseHref(this._doc)}onPopState(De){const We=w().getGlobalEventTarget(this._doc,"window");return We.addEventListener("popstate",De,!1),()=>We.removeEventListener("popstate",De)}onHashChange(De){const We=w().getGlobalEventTarget(this._doc,"window");return We.addEventListener("hashchange",De,!1),()=>We.removeEventListener("hashchange",De)}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(De){this._location.pathname=De}pushState(De,We,Dt){this._history.pushState(De,We,Dt)}replaceState(De,We,Dt){this._history.replaceState(De,We,Dt)}forward(){this._history.forward()}back(){this._history.back()}historyGo(De=0){this._history.go(De)}getState(){return this._history.state}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>new Z,providedIn:"platform"})}return Z})();function y(Z,Ve){if(0==Z.length)return Ve;if(0==Ve.length)return Z;let De=0;return Z.endsWith("/")&&De++,Ve.startsWith("/")&&De++,2==De?Z+Ve.substring(1):1==De?Z+Ve:Z+"/"+Ve}function F(Z){const Ve=Z.match(/#|\?|$/),De=Ve&&Ve.index||Z.length;return Z.slice(0,De-("/"===Z[De-1]?1:0))+Z.slice(De)}function R(Z){return Z&&"?"!==Z[0]?"?"+Z:Z}let z=(()=>{class Z{historyGo(De){throw new Error("")}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>(0,e.WQX)($),providedIn:"root"})}return Z})();const W=new e.nKC("");let $=(()=>{class Z extends z{constructor(De,We){super(),this._platformLocation=De,this._removeListenerFns=[],this._baseHref=We??this._platformLocation.getBaseHrefFromDOM()??(0,e.WQX)(f).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(De){this._removeListenerFns.push(this._platformLocation.onPopState(De),this._platformLocation.onHashChange(De))}getBaseHref(){return this._baseHref}prepareExternalUrl(De){return y(this._baseHref,De)}path(De=!1){const We=this._platformLocation.pathname+R(this._platformLocation.search),Dt=this._platformLocation.hash;return Dt&&De?`${We}${Dt}`:We}pushState(De,We,Dt,ei){const pi=this.prepareExternalUrl(Dt+R(ei));this._platformLocation.pushState(De,We,pi)}replaceState(De,We,Dt,ei){const pi=this.prepareExternalUrl(Dt+R(ei));this._platformLocation.replaceState(De,We,pi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(De=0){this._platformLocation.historyGo?.(De)}static#e=this.\u0275fac=function(We){return new(We||Z)(e.KVO(I),e.KVO(W,8))};static#t=this.\u0275prov=e.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"})}return Z})(),j=(()=>{class Z extends z{constructor(De,We){super(),this._platformLocation=De,this._baseHref="",this._removeListenerFns=[],null!=We&&(this._baseHref=We)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(De){this._removeListenerFns.push(this._platformLocation.onPopState(De),this._platformLocation.onHashChange(De))}getBaseHref(){return this._baseHref}path(De=!1){const We=this._platformLocation.hash??"#";return We.length>0?We.substring(1):We}prepareExternalUrl(De){const We=y(this._baseHref,De);return We.length>0?"#"+We:We}pushState(De,We,Dt,ei){let pi=this.prepareExternalUrl(Dt+R(ei));0==pi.length&&(pi=this._platformLocation.pathname),this._platformLocation.pushState(De,We,pi)}replaceState(De,We,Dt,ei){let pi=this.prepareExternalUrl(Dt+R(ei));0==pi.length&&(pi=this._platformLocation.pathname),this._platformLocation.replaceState(De,We,pi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(De=0){this._platformLocation.historyGo?.(De)}static#e=this.\u0275fac=function(We){return new(We||Z)(e.KVO(I),e.KVO(W,8))};static#t=this.\u0275prov=e.jDH({token:Z,factory:Z.\u0275fac})}return Z})(),Q=(()=>{class Z{constructor(De){this._subject=new e.bkB,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=De;const We=this._locationStrategy.getBaseHref();this._basePath=function ge(Z){if(new RegExp("^(https?:)?//").test(Z)){const[,De]=Z.split(/\/\/[^\/]+/);return De}return Z}(F(ie(We))),this._locationStrategy.onPopState(Dt=>{this._subject.emit({url:this.path(!0),pop:!0,state:Dt.state,type:Dt.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(De=!1){return this.normalize(this._locationStrategy.path(De))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(De,We=""){return this.path()==this.normalize(De+R(We))}normalize(De){return Z.stripTrailingSlash(function ee(Z,Ve){if(!Z||!Ve.startsWith(Z))return Ve;const De=Ve.substring(Z.length);return""===De||["/",";","?","#"].includes(De[0])?De:Ve}(this._basePath,ie(De)))}prepareExternalUrl(De){return De&&"/"!==De[0]&&(De="/"+De),this._locationStrategy.prepareExternalUrl(De)}go(De,We="",Dt=null){this._locationStrategy.pushState(Dt,"",De,We),this._notifyUrlChangeListeners(this.prepareExternalUrl(De+R(We)),Dt)}replaceState(De,We="",Dt=null){this._locationStrategy.replaceState(Dt,"",De,We),this._notifyUrlChangeListeners(this.prepareExternalUrl(De+R(We)),Dt)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(De=0){this._locationStrategy.historyGo?.(De)}onUrlChange(De){return this._urlChangeListeners.push(De),this._urlChangeSubscription??=this.subscribe(We=>{this._notifyUrlChangeListeners(We.url,We.state)}),()=>{const We=this._urlChangeListeners.indexOf(De);this._urlChangeListeners.splice(We,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(De="",We){this._urlChangeListeners.forEach(Dt=>Dt(De,We))}subscribe(De,We,Dt){return this._subject.subscribe({next:De,error:We,complete:Dt})}static#e=this.normalizeQueryParams=R;static#t=this.joinWithSlash=y;static#i=this.stripTrailingSlash=F;static#n=this.\u0275fac=function(We){return new(We||Z)(e.KVO(z))};static#r=this.\u0275prov=e.jDH({token:Z,factory:()=>function J(){return new Q((0,e.KVO)(z))}(),providedIn:"root"})}return Z})();function ie(Z){return Z.replace(/\/index.html$/,"")}var Me=function(Z){return Z[Z.Decimal=0]="Decimal",Z[Z.Percent=1]="Percent",Z[Z.Currency=2]="Currency",Z[Z.Scientific=3]="Scientific",Z}(Me||{}),de=function(Z){return Z[Z.Format=0]="Format",Z[Z.Standalone=1]="Standalone",Z}(de||{}),D=function(Z){return Z[Z.Narrow=0]="Narrow",Z[Z.Abbreviated=1]="Abbreviated",Z[Z.Wide=2]="Wide",Z[Z.Short=3]="Short",Z}(D||{}),n=function(Z){return Z[Z.Short=0]="Short",Z[Z.Medium=1]="Medium",Z[Z.Long=2]="Long",Z[Z.Full=3]="Full",Z}(n||{});const c={Decimal:0,Group:1,List:2,PercentSign:3,PlusSign:4,MinusSign:5,Exponential:6,SuperscriptingExponent:7,PerMille:8,Infinity:9,NaN:10,TimeSeparator:11,CurrencyDecimal:12,CurrencyGroup:13};function V(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.DateFormat],Ve)}function N(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.TimeFormat],Ve)}function ne(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.DateTimeFormat],Ve)}function Ee(Z,Ve){const De=(0,e.H5H)(Z),We=De[e.KH2.NumberSymbols][Ve];if(typeof We>"u"){if(Ve===c.CurrencyDecimal)return De[e.KH2.NumberSymbols][c.Decimal];if(Ve===c.CurrencyGroup)return De[e.KH2.NumberSymbols][c.Group]}return We}function ce(Z){if(!Z[e.KH2.ExtraData])throw new Error(`Missing extra locale data for the locale "${Z[e.KH2.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function _e(Z,Ve){for(let De=Ve;De>-1;De--)if(typeof Z[De]<"u")return Z[De];throw new Error("Locale data API: locale data undefined")}function be(Z){const[Ve,De]=Z.split(":");return{hours:+Ve,minutes:+De}}const at=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,pt={},Xt=/((?:[^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 ye=function(Z){return Z[Z.Short=0]="Short",Z[Z.ShortGMT=1]="ShortGMT",Z[Z.Long=2]="Long",Z[Z.Extended=3]="Extended",Z}(ye||{}),ue=function(Z){return Z[Z.FullYear=0]="FullYear",Z[Z.Month=1]="Month",Z[Z.Date=2]="Date",Z[Z.Hours=3]="Hours",Z[Z.Minutes=4]="Minutes",Z[Z.Seconds=5]="Seconds",Z[Z.FractionalSeconds=6]="FractionalSeconds",Z[Z.Day=7]="Day",Z}(ue||{}),Ie=function(Z){return Z[Z.DayPeriods=0]="DayPeriods",Z[Z.Days=1]="Days",Z[Z.Months=2]="Months",Z[Z.Eras=3]="Eras",Z}(Ie||{});function He(Z,Ve,De,We){let Dt=function gt(Z){if(Fe(Z))return Z;if("number"==typeof Z&&!isNaN(Z))return new Date(Z);if("string"==typeof Z){if(Z=Z.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Z)){const[Dt,ei=1,pi=1]=Z.split("-").map(Di=>+Di);return Xe(Dt,ei-1,pi)}const De=parseFloat(Z);if(!isNaN(Z-De))return new Date(De);let We;if(We=Z.match(at))return function $e(Z){const Ve=new Date(0);let De=0,We=0;const Dt=Z[8]?Ve.setUTCFullYear:Ve.setFullYear,ei=Z[8]?Ve.setUTCHours:Ve.setHours;Z[9]&&(De=Number(Z[9]+Z[10]),We=Number(Z[9]+Z[11])),Dt.call(Ve,Number(Z[1]),Number(Z[2])-1,Number(Z[3]));const pi=Number(Z[4]||0)-De,Di=Number(Z[5]||0)-We,an=Number(Z[6]||0),gn=Math.floor(1e3*parseFloat("0."+(Z[7]||0)));return ei.call(Ve,pi,Di,an,gn),Ve}(We)}const Ve=new Date(Z);if(!Fe(Ve))throw new Error(`Unable to convert "${Z}" into a date`);return Ve}(Z);Ve=yt(De,Ve)||Ve;let Di,pi=[];for(;Ve;){if(Di=Xt.exec(Ve),!Di){pi.push(Ve);break}{pi=pi.concat(Di.slice(1));const yn=pi.pop();if(!yn)break;Ve=yn}}let an=Dt.getTimezoneOffset();We&&(an=q(We,an),Dt=function Ne(Z,Ve,De){const We=De?-1:1,Dt=Z.getTimezoneOffset();return function Re(Z,Ve){return(Z=new Date(Z.getTime())).setMinutes(Z.getMinutes()+Ve),Z}(Z,We*(q(Ve,Dt)-Dt))}(Dt,We,!0));let gn="";return pi.forEach(yn=>{const Dn=function he(Z){if(we[Z])return we[Z];let Ve;switch(Z){case"G":case"GG":case"GGG":Ve=Vt(Ie.Eras,D.Abbreviated);break;case"GGGG":Ve=Vt(Ie.Eras,D.Wide);break;case"GGGGG":Ve=Vt(Ie.Eras,D.Narrow);break;case"y":Ve=Nt(ue.FullYear,1,0,!1,!0);break;case"yy":Ve=Nt(ue.FullYear,2,0,!0,!0);break;case"yyy":Ve=Nt(ue.FullYear,3,0,!1,!0);break;case"yyyy":Ve=Nt(ue.FullYear,4,0,!1,!0);break;case"Y":Ve=Ae(1);break;case"YY":Ve=Ae(2,!0);break;case"YYY":Ve=Ae(3);break;case"YYYY":Ve=Ae(4);break;case"M":case"L":Ve=Nt(ue.Month,1,1);break;case"MM":case"LL":Ve=Nt(ue.Month,2,1);break;case"MMM":Ve=Vt(Ie.Months,D.Abbreviated);break;case"MMMM":Ve=Vt(Ie.Months,D.Wide);break;case"MMMMM":Ve=Vt(Ie.Months,D.Narrow);break;case"LLL":Ve=Vt(Ie.Months,D.Abbreviated,de.Standalone);break;case"LLLL":Ve=Vt(Ie.Months,D.Wide,de.Standalone);break;case"LLLLL":Ve=Vt(Ie.Months,D.Narrow,de.Standalone);break;case"w":Ve=dt(1);break;case"ww":Ve=dt(2);break;case"W":Ve=dt(1,!0);break;case"d":Ve=Nt(ue.Date,1);break;case"dd":Ve=Nt(ue.Date,2);break;case"c":case"cc":Ve=Nt(ue.Day,1);break;case"ccc":Ve=Vt(Ie.Days,D.Abbreviated,de.Standalone);break;case"cccc":Ve=Vt(Ie.Days,D.Wide,de.Standalone);break;case"ccccc":Ve=Vt(Ie.Days,D.Narrow,de.Standalone);break;case"cccccc":Ve=Vt(Ie.Days,D.Short,de.Standalone);break;case"E":case"EE":case"EEE":Ve=Vt(Ie.Days,D.Abbreviated);break;case"EEEE":Ve=Vt(Ie.Days,D.Wide);break;case"EEEEE":Ve=Vt(Ie.Days,D.Narrow);break;case"EEEEEE":Ve=Vt(Ie.Days,D.Short);break;case"a":case"aa":case"aaa":Ve=Vt(Ie.DayPeriods,D.Abbreviated);break;case"aaaa":Ve=Vt(Ie.DayPeriods,D.Wide);break;case"aaaaa":Ve=Vt(Ie.DayPeriods,D.Narrow);break;case"b":case"bb":case"bbb":Ve=Vt(Ie.DayPeriods,D.Abbreviated,de.Standalone,!0);break;case"bbbb":Ve=Vt(Ie.DayPeriods,D.Wide,de.Standalone,!0);break;case"bbbbb":Ve=Vt(Ie.DayPeriods,D.Narrow,de.Standalone,!0);break;case"B":case"BB":case"BBB":Ve=Vt(Ie.DayPeriods,D.Abbreviated,de.Format,!0);break;case"BBBB":Ve=Vt(Ie.DayPeriods,D.Wide,de.Format,!0);break;case"BBBBB":Ve=Vt(Ie.DayPeriods,D.Narrow,de.Format,!0);break;case"h":Ve=Nt(ue.Hours,1,-12);break;case"hh":Ve=Nt(ue.Hours,2,-12);break;case"H":Ve=Nt(ue.Hours,1);break;case"HH":Ve=Nt(ue.Hours,2);break;case"m":Ve=Nt(ue.Minutes,1);break;case"mm":Ve=Nt(ue.Minutes,2);break;case"s":Ve=Nt(ue.Seconds,1);break;case"ss":Ve=Nt(ue.Seconds,2);break;case"S":Ve=Nt(ue.FractionalSeconds,1);break;case"SS":Ve=Nt(ue.FractionalSeconds,2);break;case"SSS":Ve=Nt(ue.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":Ve=tt(ye.Short);break;case"ZZZZZ":Ve=tt(ye.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Ve=tt(ye.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":Ve=tt(ye.Long);break;default:return null}return we[Z]=Ve,Ve}(yn);gn+=Dn?Dn(Dt,De,an):"''"===yn?"'":yn.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),gn}function Xe(Z,Ve,De){const We=new Date(0);return We.setFullYear(Z,Ve,De),We.setHours(0,0,0),We}function yt(Z,Ve){const De=function h(Z){return(0,e.H5H)(Z)[e.KH2.LocaleId]}(Z);if(pt[De]??={},pt[De][Ve])return pt[De][Ve];let We="";switch(Ve){case"shortDate":We=V(Z,n.Short);break;case"mediumDate":We=V(Z,n.Medium);break;case"longDate":We=V(Z,n.Long);break;case"fullDate":We=V(Z,n.Full);break;case"shortTime":We=N(Z,n.Short);break;case"mediumTime":We=N(Z,n.Medium);break;case"longTime":We=N(Z,n.Long);break;case"fullTime":We=N(Z,n.Full);break;case"short":const Dt=yt(Z,"shortTime"),ei=yt(Z,"shortDate");We=Ye(ne(Z,n.Short),[Dt,ei]);break;case"medium":const pi=yt(Z,"mediumTime"),Di=yt(Z,"mediumDate");We=Ye(ne(Z,n.Medium),[pi,Di]);break;case"long":const an=yt(Z,"longTime"),gn=yt(Z,"longDate");We=Ye(ne(Z,n.Long),[an,gn]);break;case"full":const yn=yt(Z,"fullTime"),Dn=yt(Z,"fullDate");We=Ye(ne(Z,n.Full),[yn,Dn])}return We&&(pt[De][Ve]=We),We}function Ye(Z,Ve){return Ve&&(Z=Z.replace(/\{([^}]+)}/g,function(De,We){return null!=Ve&&We in Ve?Ve[We]:De})),Z}function rt(Z,Ve,De="-",We,Dt){let ei="";(Z<0||Dt&&Z<=0)&&(Dt?Z=1-Z:(Z=-Z,ei=De));let pi=String(Z);for(;pi.length0||Di>-De)&&(Di+=De),Z===ue.Hours)0===Di&&-12===De&&(Di=12);else if(Z===ue.FractionalSeconds)return function Yt(Z,Ve){return rt(Z,3).substring(0,Ve)}(Di,Ve);const an=Ee(pi,c.MinusSign);return rt(Di,Ve,an,We,Dt)}}function Vt(Z,Ve,De=de.Format,We=!1){return function(Dt,ei){return function oe(Z,Ve,De,We,Dt,ei){switch(De){case Ie.Months:return function L(Z,Ve,De){const We=(0,e.H5H)(Z),ei=_e([We[e.KH2.MonthsFormat],We[e.KH2.MonthsStandalone]],Ve);return _e(ei,De)}(Ve,Dt,We)[Z.getMonth()];case Ie.Days:return function k(Z,Ve,De){const We=(0,e.H5H)(Z),ei=_e([We[e.KH2.DaysFormat],We[e.KH2.DaysStandalone]],Ve);return _e(ei,De)}(Ve,Dt,We)[Z.getDay()];case Ie.DayPeriods:const pi=Z.getHours(),Di=Z.getMinutes();if(ei){const gn=function fe(Z){const Ve=(0,e.H5H)(Z);return ce(Ve),(Ve[e.KH2.ExtraData][2]||[]).map(We=>"string"==typeof We?be(We):[be(We[0]),be(We[1])])}(Ve),yn=function ke(Z,Ve,De){const We=(0,e.H5H)(Z);ce(We);const ei=_e([We[e.KH2.ExtraData][0],We[e.KH2.ExtraData][1]],Ve)||[];return _e(ei,De)||[]}(Ve,Dt,We),Dn=gn.findIndex(hr=>{if(Array.isArray(hr)){const[ir,br]=hr,gr=pi>=ir.hours&&Di>=ir.minutes,Cr=pi0?Math.floor(Dt/60):Math.ceil(Dt/60);switch(Z){case ye.Short:return(Dt>=0?"+":"")+rt(pi,2,ei)+rt(Math.abs(Dt%60),2,ei);case ye.ShortGMT:return"GMT"+(Dt>=0?"+":"")+rt(pi,1,ei);case ye.Long:return"GMT"+(Dt>=0?"+":"")+rt(pi,2,ei)+":"+rt(Math.abs(Dt%60),2,ei);case ye.Extended:return 0===We?"Z":(Dt>=0?"+":"")+rt(pi,2,ei)+":"+rt(Math.abs(Dt%60),2,ei);default:throw new Error(`Unknown zone width "${Z}"`)}}}const $t=0,zt=4;function St(Z){const Ve=Z.getDay(),De=0===Ve?-3:zt-Ve;return Xe(Z.getFullYear(),Z.getMonth(),Z.getDate()+De)}function dt(Z,Ve=!1){return function(De,We){let Dt;if(Ve){const ei=new Date(De.getFullYear(),De.getMonth(),1).getDay()-1,pi=De.getDate();Dt=1+Math.floor((pi+ei)/7)}else{const ei=St(De),pi=function Jt(Z){const Ve=Xe(Z,$t,1).getDay();return Xe(Z,0,1+(Ve<=zt?zt:zt+7)-Ve)}(ei.getFullYear()),Di=ei.getTime()-pi.getTime();Dt=1+Math.round(Di/6048e5)}return rt(Dt,Z,Ee(We,c.MinusSign))}}function Ae(Z,Ve=!1){return function(De,We){return rt(St(De).getFullYear(),Z,Ee(We,c.MinusSign),Ve)}}const we={};function q(Z,Ve){Z=Z.replace(/:/g,"");const De=Date.parse("Jan 01, 1970 00:00:00 "+Z)/6e4;return isNaN(De)?Ve:De}function Fe(Z){return Z instanceof Date&&!isNaN(Z.valueOf())}const Ge=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function ct(Z){const Ve=parseInt(Z);if(isNaN(Ve))throw new Error("Invalid integer literal when parsing "+Z);return Ve}function zi(Z,Ve){Ve=encodeURIComponent(Ve);for(const De of Z.split(";")){const We=De.indexOf("="),[Dt,ei]=-1==We?[De,""]:[De.slice(0,We),De.slice(We+1)];if(Dt.trim()===Ve)return decodeURIComponent(ei)}return null}const en=/\s+/,Ni=[];let fn=(()=>{class Z{constructor(De,We){this._ngEl=De,this._renderer=We,this.initialClasses=Ni,this.stateMap=new Map}set klass(De){this.initialClasses=null!=De?De.trim().split(en):Ni}set ngClass(De){this.rawClass="string"==typeof De?De.trim().split(en):De}ngDoCheck(){for(const We of this.initialClasses)this._updateState(We,!0);const De=this.rawClass;if(Array.isArray(De)||De instanceof Set)for(const We of De)this._updateState(We,!0);else if(null!=De)for(const We of Object.keys(De))this._updateState(We,!!De[We]);this._applyStateDiff()}_updateState(De,We){const Dt=this.stateMap.get(De);void 0!==Dt?(Dt.enabled!==We&&(Dt.changed=!0,Dt.enabled=We),Dt.touched=!0):this.stateMap.set(De,{enabled:We,changed:!0,touched:!0})}_applyStateDiff(){for(const De of this.stateMap){const We=De[0],Dt=De[1];Dt.changed?(this._toggleClass(We,Dt.enabled),Dt.changed=!1):Dt.touched||(Dt.enabled&&this._toggleClass(We,!1),this.stateMap.delete(We)),Dt.touched=!1}}_toggleClass(De,We){(De=De.trim()).length>0&&De.split(en).forEach(Dt=>{We?this._renderer.addClass(this._ngEl.nativeElement,Dt):this._renderer.removeClass(this._ngEl.nativeElement,Dt)})}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.aKT),e.rXU(e.sFG))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"},standalone:!0})}return Z})();class re{constructor(Ve,De,We,Dt){this.$implicit=Ve,this.ngForOf=De,this.index=We,this.count=Dt}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 je=(()=>{class Z{set ngForOf(De){this._ngForOf=De,this._ngForOfDirty=!0}set ngForTrackBy(De){this._trackByFn=De}get ngForTrackBy(){return this._trackByFn}constructor(De,We,Dt){this._viewContainer=De,this._template=We,this._differs=Dt,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForTemplate(De){De&&(this._template=De)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const De=this._ngForOf;!this._differ&&De&&(this._differ=this._differs.find(De).create(this.ngForTrackBy))}if(this._differ){const De=this._differ.diff(this._ngForOf);De&&this._applyChanges(De)}}_applyChanges(De){const We=this._viewContainer;De.forEachOperation((Dt,ei,pi)=>{if(null==Dt.previousIndex)We.createEmbeddedView(this._template,new re(Dt.item,this._ngForOf,-1,-1),null===pi?void 0:pi);else if(null==pi)We.remove(null===ei?void 0:ei);else if(null!==ei){const Di=We.get(ei);We.move(Di,pi),Ce(Di,Dt)}});for(let Dt=0,ei=We.length;Dt{Ce(We.get(Dt.currentIndex),Dt)})}static ngTemplateContextGuard(De,We){return!0}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(e._q3))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0})}return Z})();function Ce(Z,Ve){Z.context.$implicit=Ve.item}let ut=(()=>{class Z{constructor(De,We){this._viewContainer=De,this._context=new ii,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=We}set ngIf(De){this._context.$implicit=this._context.ngIf=De,this._updateView()}set ngIfThen(De){si("ngIfThen",De),this._thenTemplateRef=De,this._thenViewRef=null,this._updateView()}set ngIfElse(De){si("ngIfElse",De),this._elseTemplateRef=De,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(De,We){return!0}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0})}return Z})();class ii{constructor(){this.$implicit=null,this.ngIf=null}}function si(Z,Ve){if(Ve&&!Ve.createEmbeddedView)throw new Error(`${Z} must be a TemplateRef, but received '${(0,e.Tbb)(Ve)}'.`)}class mn{constructor(Ve,De){this._viewContainerRef=Ve,this._templateRef=De,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Ve){Ve&&!this._created?this.create():!Ve&&this._created&&this.destroy()}}let Fn=(()=>{class Z{constructor(){this._defaultViews=[],this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(De){this._ngSwitch=De,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(De){this._defaultViews.push(De)}_matchCase(De){const We=De===this._ngSwitch;return this._lastCasesMatched||=We,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),We}_updateDefaultCases(De){if(this._defaultViews.length>0&&De!==this._defaultUsed){this._defaultUsed=De;for(const We of this._defaultViews)We.enforceState(De)}}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0})}return Z})(),$n=(()=>{class Z{constructor(De,We,Dt){this.ngSwitch=Dt,Dt._addCase(),this._view=new mn(De,We)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Fn,9))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0})}return Z})(),Yn=(()=>{class Z{constructor(De,We,Dt){Dt._addDefault(new mn(De,We))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Fn,9))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitchDefault",""]],standalone:!0})}return Z})(),Oi=(()=>{class Z{constructor(De,We,Dt){this._ngEl=De,this._differs=We,this._renderer=Dt,this._ngStyle=null,this._differ=null}set ngStyle(De){this._ngStyle=De,!this._differ&&De&&(this._differ=this._differs.find(De).create())}ngDoCheck(){if(this._differ){const De=this._differ.diff(this._ngStyle);De&&this._applyChanges(De)}}_setStyle(De,We){const[Dt,ei]=De.split("."),pi=-1===Dt.indexOf("-")?void 0:e.czy.DashCase;null!=We?this._renderer.setStyle(this._ngEl.nativeElement,Dt,ei?`${We}${ei}`:We,pi):this._renderer.removeStyle(this._ngEl.nativeElement,Dt,pi)}_applyChanges(De){De.forEachRemovedItem(We=>this._setStyle(We.key,null)),De.forEachAddedItem(We=>this._setStyle(We.key,We.currentValue)),De.forEachChangedItem(We=>this._setStyle(We.key,We.currentValue))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.aKT),e.rXU(e.MKu),e.rXU(e.sFG))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0})}return Z})(),jt=(()=>{class Z{constructor(De){this._viewContainerRef=De,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(De){if(this._shouldRecreateView(De)){const We=this._viewContainerRef;if(this._viewRef&&We.remove(We.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Dt=this._createContextForwardProxy();this._viewRef=We.createEmbeddedView(this.ngTemplateOutlet,Dt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(De){return!!De.ngTemplateOutlet||!!De.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(De,We,Dt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,We,Dt),get:(De,We,Dt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,We,Dt)}})}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[e.OA$]})}return Z})();function hi(Z,Ve){return new e.wOt(2100,!1)}class yi{createSubscription(Ve,De){return(0,e.O8t)(()=>Ve.subscribe({next:De,error:We=>{throw We}}))}dispose(Ve){(0,e.O8t)(()=>Ve.unsubscribe())}}class Vi{createSubscription(Ve,De){return Ve.then(De,We=>{throw We})}dispose(Ve){}}const ji=new Vi,rn=new yi;let ar=(()=>{class Z{constructor(De){this._latestValue=null,this.markForCheckOnValueUpdate=!0,this._subscription=null,this._obj=null,this._strategy=null,this._ref=De}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(De){if(!this._obj){if(De)try{this.markForCheckOnValueUpdate=!1,this._subscribe(De)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return De!==this._obj?(this._dispose(),this.transform(De)):this._latestValue}_subscribe(De){this._obj=De,this._strategy=this._selectStrategy(De),this._subscription=this._strategy.createSubscription(De,We=>this._updateLatestValue(De,We))}_selectStrategy(De){if((0,e.jNT)(De))return ji;if((0,e.zjR)(De))return rn;throw hi()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(De,We){De===this._obj&&(this._latestValue=We,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.gRc,16))};static#t=this.\u0275pipe=e.EJ8({name:"async",type:Z,pure:!1,standalone:!0})}return Z})(),sr=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.toLowerCase()}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"lowercase",type:Z,pure:!0,standalone:!0})}return Z})();const nr=/(?:[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 or=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.replace(nr,We=>We[0].toUpperCase()+We.slice(1).toLowerCase())}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"titlecase",type:Z,pure:!0,standalone:!0})}return Z})(),Xr=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.toUpperCase()}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"uppercase",type:Z,pure:!0,standalone:!0})}return Z})();const zr=new e.nKC(""),Ho=new e.nKC("");let xo=(()=>{class Z{constructor(De,We,Dt){this.locale=De,this.defaultTimezone=We,this.defaultOptions=Dt}transform(De,We,Dt,ei){if(null==De||""===De||De!=De)return null;try{return He(De,We??this.defaultOptions?.dateFormat??"mediumDate",ei||this.locale,Dt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(pi){throw hi()}}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.xe9,16),e.rXU(zr,24),e.rXU(Ho,24))};static#t=this.\u0275pipe=e.EJ8({name:"date",type:Z,pure:!0,standalone:!0})}return Z})(),Ea=(()=>{class Z{transform(De){return JSON.stringify(De,null,2)}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"json",type:Z,pure:!1,standalone:!0})}return Z})(),ho=(()=>{class Z{constructor(De){this.differs=De,this.keyValues=[],this.compareFn=xr}transform(De,We=xr){if(!De||!(De instanceof Map)&&"object"!=typeof De)return null;this.differ??=this.differs.find(De).create();const Dt=this.differ.diff(De),ei=We!==this.compareFn;return Dt&&(this.keyValues=[],Dt.forEachItem(pi=>{this.keyValues.push(function no(Z,Ve){return{key:Z,value:Ve}}(pi.key,pi.currentValue))})),(Dt||ei)&&(this.keyValues.sort(We),this.compareFn=We),this.keyValues}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.MKu,16))};static#t=this.\u0275pipe=e.EJ8({name:"keyvalue",type:Z,pure:!1,standalone:!0})}return Z})();function xr(Z,Ve){const De=Z.key,We=Ve.key;if(De===We)return 0;if(void 0===De)return 1;if(void 0===We)return-1;if(null===De)return 1;if(null===We)return-1;if("string"==typeof De&&"string"==typeof We)return De{class Z{constructor(De){this._locale=De}transform(De,We,Dt){if(!function hn(Z){return!(null==Z||""===Z||Z!=Z)}(De))return null;Dt||=this._locale;try{return function Li(Z,Ve,De){return function fi(Z,Ve,De,We,Dt,ei,pi=!1){let Di="",an=!1;if(isFinite(Z)){let gn=function Mt(Z){let We,Dt,ei,pi,Di,Ve=Math.abs(Z)+"",De=0;for((Dt=Ve.indexOf("."))>-1&&(Ve=Ve.replace(".","")),(ei=Ve.search(/e/i))>0?(Dt<0&&(Dt=ei),Dt+=+Ve.slice(ei+1),Ve=Ve.substring(0,ei)):Dt<0&&(Dt=Ve.length),ei=0;"0"===Ve.charAt(ei);ei++);if(ei===(Di=Ve.length))We=[0],Dt=1;else{for(Di--;"0"===Ve.charAt(Di);)Di--;for(Dt-=ei,We=[],pi=0;ei<=Di;ei++,pi++)We[pi]=Number(Ve.charAt(ei))}return Dt>22&&(We=We.splice(0,21),De=Dt-1,Dt=1),{digits:We,exponent:De,integerLen:Dt}}(Z);pi&&(gn=function Qt(Z){if(0===Z.digits[0])return Z;const Ve=Z.digits.length-Z.integerLen;return Z.exponent?Z.exponent+=2:(0===Ve?Z.digits.push(0,0):1===Ve&&Z.digits.push(0),Z.integerLen+=2),Z}(gn));let yn=Ve.minInt,Dn=Ve.minFrac,hr=Ve.maxFrac;if(ei){const Hn=ei.match(Ge);if(null===Hn)throw new Error(`${ei} is not a valid digit info`);const Bi=Hn[1],sn=Hn[3],fr=Hn[5];null!=Bi&&(yn=ct(Bi)),null!=sn&&(Dn=ct(sn)),null!=fr?hr=ct(fr):null!=sn&&Dn>hr&&(hr=Dn)}!function it(Z,Ve,De){if(Ve>De)throw new Error(`The minimum number of digits after fraction (${Ve}) is higher than the maximum (${De}).`);let We=Z.digits,Dt=We.length-Z.integerLen;const ei=Math.min(Math.max(Ve,Dt),De);let pi=ei+Z.integerLen,Di=We[pi];if(pi>0){We.splice(Math.max(Z.integerLen,pi));for(let Dn=pi;Dn=5)if(pi-1<0){for(let Dn=0;Dn>pi;Dn--)We.unshift(0),Z.integerLen++;We.unshift(1),Z.integerLen++}else We[pi-1]++;for(;Dt=gn?br.pop():an=!1),hr>=10?1:0},0);yn&&(We.unshift(yn),Z.integerLen++)}(gn,Dn,hr);let ir=gn.digits,br=gn.integerLen;const gr=gn.exponent;let Cr=[];for(an=ir.every(Hn=>!Hn);br0?Cr=ir.splice(br,ir.length):(Cr=ir,ir=[0]);const sa=[];for(ir.length>=Ve.lgSize&&sa.unshift(ir.splice(-Ve.lgSize,ir.length).join(""));ir.length>Ve.gSize;)sa.unshift(ir.splice(-Ve.gSize,ir.length).join(""));ir.length&&sa.unshift(ir.join("")),Di=sa.join(Ee(De,We)),Cr.length&&(Di+=Ee(De,Dt)+Cr.join("")),gr&&(Di+=Ee(De,c.Exponential)+"+"+gr)}else Di=Ee(De,c.Infinity);return Di=Z<0&&!an?Ve.negPre+Di+Ve.negSuf:Ve.posPre+Di+Ve.posSuf,Di}(Z,function Zi(Z,Ve="-"){const De={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},We=Z.split(";"),Dt=We[0],ei=We[1],pi=-1!==Dt.indexOf(".")?Dt.split("."):[Dt.substring(0,Dt.lastIndexOf("0")+1),Dt.substring(Dt.lastIndexOf("0")+1)],Di=pi[0],an=pi[1]||"";De.posPre=Di.substring(0,Di.indexOf("#"));for(let yn=0;yn{class Z{transform(De,We,Dt){if(null==De)return null;if(!this.supports(De))throw hi();return De.slice(We,Dt)}supports(De){return"string"==typeof De||Array.isArray(De)}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"slice",type:Z,pure:!1,standalone:!0})}return Z})(),wo=(()=>{class Z{static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275mod=e.$C({type:Z});static#i=this.\u0275inj=e.G2t({})}return Z})();const zo="browser",da="server";function ao(Z){return Z===zo}function Oa(Z){return Z===da}let Fa=(()=>{class Z{static#e=this.\u0275prov=(0,e.jDH)({token:Z,providedIn:"root",factory:()=>ao((0,e.WQX)(e.Agw))?new Ro((0,e.WQX)(f),window):new ha})}return Z})();class Ro{constructor(Ve,De){this.document=Ve,this.window=De,this.offset=()=>[0,0]}setOffset(Ve){this.offset=Array.isArray(Ve)?()=>Ve:Ve}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(Ve){this.window.scrollTo(Ve[0],Ve[1])}scrollToAnchor(Ve){const De=function kr(Z,Ve){const De=Z.getElementById(Ve)||Z.getElementsByName(Ve)[0];if(De)return De;if("function"==typeof Z.createTreeWalker&&Z.body&&"function"==typeof Z.body.attachShadow){const We=Z.createTreeWalker(Z.body,NodeFilter.SHOW_ELEMENT);let Dt=We.currentNode;for(;Dt;){const ei=Dt.shadowRoot;if(ei){const pi=ei.getElementById(Ve)||ei.querySelector(`[name="${Ve}"]`);if(pi)return pi}Dt=We.nextNode()}}return null}(this.document,Ve);De&&(this.scrollToElement(De),De.focus())}setHistoryScrollRestoration(Ve){this.window.history.scrollRestoration=Ve}scrollToElement(Ve){const De=Ve.getBoundingClientRect(),We=De.left+this.window.pageXOffset,Dt=De.top+this.window.pageYOffset,ei=this.offset();this.window.scrollTo(We-ei[0],Dt-ei[1])}}class ha{setOffset(Ve){}getScrollPosition(){return[0,0]}scrollToPosition(Ve){}scrollToAnchor(Ve){}setHistoryScrollRestoration(Ve){}}class Br{}},1626:(Qe,te,g)=>{"use strict";g.d(te,{Nl:()=>ge,Qq:()=>ne,a7:()=>mt,q1:()=>Pt});var e=g(467),t=g(4438),w=g(7673),S=g(1985),l=g(2806),x=g(274),f=g(5964),I=g(6354),d=g(980),T=g(5558),y=g(177);class F{}class R{}class z{constructor(re){this.normalizedNames=new Map,this.lazyUpdate=null,re?"string"==typeof re?this.lazyInit=()=>{this.headers=new Map,re.split("\n").forEach(je=>{const Ce=je.indexOf(":");if(Ce>0){const ot=je.slice(0,Ce),ut=ot.toLowerCase(),ii=je.slice(Ce+1).trim();this.maybeSetNormalizedName(ot,ut),this.headers.has(ut)?this.headers.get(ut).push(ii):this.headers.set(ut,[ii])}})}:typeof Headers<"u"&&re instanceof Headers?(this.headers=new Map,re.forEach((je,Ce)=>{this.setHeaderEntries(Ce,je)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(re).forEach(([je,Ce])=>{this.setHeaderEntries(je,Ce)})}:this.headers=new Map}has(re){return this.init(),this.headers.has(re.toLowerCase())}get(re){this.init();const je=this.headers.get(re.toLowerCase());return je&&je.length>0?je[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(re){return this.init(),this.headers.get(re.toLowerCase())||null}append(re,je){return this.clone({name:re,value:je,op:"a"})}set(re,je){return this.clone({name:re,value:je,op:"s"})}delete(re,je){return this.clone({name:re,value:je,op:"d"})}maybeSetNormalizedName(re,je){this.normalizedNames.has(je)||this.normalizedNames.set(je,re)}init(){this.lazyInit&&(this.lazyInit instanceof z?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(re=>this.applyUpdate(re)),this.lazyUpdate=null))}copyFrom(re){re.init(),Array.from(re.headers.keys()).forEach(je=>{this.headers.set(je,re.headers.get(je)),this.normalizedNames.set(je,re.normalizedNames.get(je))})}clone(re){const je=new z;return je.lazyInit=this.lazyInit&&this.lazyInit instanceof z?this.lazyInit:this,je.lazyUpdate=(this.lazyUpdate||[]).concat([re]),je}applyUpdate(re){const je=re.name.toLowerCase();switch(re.op){case"a":case"s":let Ce=re.value;if("string"==typeof Ce&&(Ce=[Ce]),0===Ce.length)return;this.maybeSetNormalizedName(re.name,je);const ot=("a"===re.op?this.headers.get(je):void 0)||[];ot.push(...Ce),this.headers.set(je,ot);break;case"d":const ut=re.value;if(ut){let ii=this.headers.get(je);if(!ii)return;ii=ii.filter(si=>-1===ut.indexOf(si)),0===ii.length?(this.headers.delete(je),this.normalizedNames.delete(je)):this.headers.set(je,ii)}else this.headers.delete(je),this.normalizedNames.delete(je)}}setHeaderEntries(re,je){const Ce=(Array.isArray(je)?je:[je]).map(ut=>ut.toString()),ot=re.toLowerCase();this.headers.set(ot,Ce),this.maybeSetNormalizedName(re,ot)}forEach(re){this.init(),Array.from(this.normalizedNames.keys()).forEach(je=>re(this.normalizedNames.get(je),this.headers.get(je)))}}class ${encodeKey(re){return ee(re)}encodeValue(re){return ee(re)}decodeKey(re){return decodeURIComponent(re)}decodeValue(re){return decodeURIComponent(re)}}const Q=/%(\d[a-f0-9])/gi,J={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ee(bt){return encodeURIComponent(bt).replace(Q,(re,je)=>J[je]??re)}function ie(bt){return`${bt}`}class ge{constructor(re={}){if(this.updates=null,this.cloneFrom=null,this.encoder=re.encoder||new $,re.fromString){if(re.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function j(bt,re){const je=new Map;return bt.length>0&&bt.replace(/^\?/,"").split("&").forEach(ot=>{const ut=ot.indexOf("="),[ii,si]=-1==ut?[re.decodeKey(ot),""]:[re.decodeKey(ot.slice(0,ut)),re.decodeValue(ot.slice(ut+1))],Pi=je.get(ii)||[];Pi.push(si),je.set(ii,Pi)}),je}(re.fromString,this.encoder)}else re.fromObject?(this.map=new Map,Object.keys(re.fromObject).forEach(je=>{const Ce=re.fromObject[je],ot=Array.isArray(Ce)?Ce.map(ie):[ie(Ce)];this.map.set(je,ot)})):this.map=null}has(re){return this.init(),this.map.has(re)}get(re){this.init();const je=this.map.get(re);return je?je[0]:null}getAll(re){return this.init(),this.map.get(re)||null}keys(){return this.init(),Array.from(this.map.keys())}append(re,je){return this.clone({param:re,value:je,op:"a"})}appendAll(re){const je=[];return Object.keys(re).forEach(Ce=>{const ot=re[Ce];Array.isArray(ot)?ot.forEach(ut=>{je.push({param:Ce,value:ut,op:"a"})}):je.push({param:Ce,value:ot,op:"a"})}),this.clone(je)}set(re,je){return this.clone({param:re,value:je,op:"s"})}delete(re,je){return this.clone({param:re,value:je,op:"d"})}toString(){return this.init(),this.keys().map(re=>{const je=this.encoder.encodeKey(re);return this.map.get(re).map(Ce=>je+"="+this.encoder.encodeValue(Ce)).join("&")}).filter(re=>""!==re).join("&")}clone(re){const je=new ge({encoder:this.encoder});return je.cloneFrom=this.cloneFrom||this,je.updates=(this.updates||[]).concat(re),je}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(re=>this.map.set(re,this.cloneFrom.map.get(re))),this.updates.forEach(re=>{switch(re.op){case"a":case"s":const je=("a"===re.op?this.map.get(re.param):void 0)||[];je.push(ie(re.value)),this.map.set(re.param,je);break;case"d":if(void 0===re.value){this.map.delete(re.param);break}{let Ce=this.map.get(re.param)||[];const ot=Ce.indexOf(ie(re.value));-1!==ot&&Ce.splice(ot,1),Ce.length>0?this.map.set(re.param,Ce):this.map.delete(re.param)}}}),this.cloneFrom=this.updates=null)}}class Me{constructor(){this.map=new Map}set(re,je){return this.map.set(re,je),this}get(re){return this.map.has(re)||this.map.set(re,re.defaultValue()),this.map.get(re)}delete(re){return this.map.delete(re),this}has(re){return this.map.has(re)}keys(){return this.map.keys()}}function de(bt){return typeof ArrayBuffer<"u"&&bt instanceof ArrayBuffer}function D(bt){return typeof Blob<"u"&&bt instanceof Blob}function n(bt){return typeof FormData<"u"&&bt instanceof FormData}class m{constructor(re,je,Ce,ot){let ut;if(this.url=je,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=re.toUpperCase(),function Te(bt){switch(bt){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||ot?(this.body=void 0!==Ce?Ce:null,ut=ot):ut=Ce,ut&&(this.reportProgress=!!ut.reportProgress,this.withCredentials=!!ut.withCredentials,ut.responseType&&(this.responseType=ut.responseType),ut.headers&&(this.headers=ut.headers),ut.context&&(this.context=ut.context),ut.params&&(this.params=ut.params),this.transferCache=ut.transferCache),this.headers??=new z,this.context??=new Me,this.params){const ii=this.params.toString();if(0===ii.length)this.urlWithParams=je;else{const si=je.indexOf("?");this.urlWithParams=je+(-1===si?"?":siYn.set(Qn,re.setHeaders[Qn]),mn)),re.setParams&&(Fn=Object.keys(re.setParams).reduce((Yn,Qn)=>Yn.set(Qn,re.setParams[Qn]),Fn)),new m(je,Ce,ii,{params:Fn,headers:mn,context:$n,reportProgress:Pi,responseType:ot,withCredentials:si,transferCache:ut})}}var h=function(bt){return bt[bt.Sent=0]="Sent",bt[bt.UploadProgress=1]="UploadProgress",bt[bt.ResponseHeader=2]="ResponseHeader",bt[bt.DownloadProgress=3]="DownloadProgress",bt[bt.Response=4]="Response",bt[bt.User=5]="User",bt}(h||{});class C{constructor(re,je=200,Ce="OK"){this.headers=re.headers||new z,this.status=void 0!==re.status?re.status:je,this.statusText=re.statusText||Ce,this.url=re.url||null,this.ok=this.status>=200&&this.status<300}}class k extends C{constructor(re={}){super(re),this.type=h.ResponseHeader}clone(re={}){return new k({headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class L extends C{constructor(re={}){super(re),this.type=h.Response,this.body=void 0!==re.body?re.body:null}clone(re={}){return new L({body:void 0!==re.body?re.body:this.body,headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class _ extends C{constructor(re){super(re,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${re.url||"(unknown url)"}`:`Http failure response for ${re.url||"(unknown url)"}: ${re.status} ${re.statusText}`,this.error=re.error||null}}function N(bt,re){return{body:re,headers:bt.headers,context:bt.context,observe:bt.observe,params:bt.params,reportProgress:bt.reportProgress,responseType:bt.responseType,withCredentials:bt.withCredentials,transferCache:bt.transferCache}}let ne=(()=>{class bt{constructor(je){this.handler=je}request(je,Ce,ot={}){let ut;if(je instanceof m)ut=je;else{let Pi,mn;Pi=ot.headers instanceof z?ot.headers:new z(ot.headers),ot.params&&(mn=ot.params instanceof ge?ot.params:new ge({fromObject:ot.params})),ut=new m(je,Ce,void 0!==ot.body?ot.body:null,{headers:Pi,context:ot.context,params:mn,reportProgress:ot.reportProgress,responseType:ot.responseType||"json",withCredentials:ot.withCredentials,transferCache:ot.transferCache})}const ii=(0,w.of)(ut).pipe((0,x.H)(Pi=>this.handler.handle(Pi)));if(je instanceof m||"events"===ot.observe)return ii;const si=ii.pipe((0,f.p)(Pi=>Pi instanceof L));switch(ot.observe||"body"){case"body":switch(ut.responseType){case"arraybuffer":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&!(Pi.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Pi.body}));case"blob":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&!(Pi.body instanceof Blob))throw new Error("Response is not a Blob.");return Pi.body}));case"text":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&"string"!=typeof Pi.body)throw new Error("Response is not a string.");return Pi.body}));default:return si.pipe((0,I.T)(Pi=>Pi.body))}case"response":return si;default:throw new Error(`Unreachable: unhandled observe type ${ot.observe}}`)}}delete(je,Ce={}){return this.request("DELETE",je,Ce)}get(je,Ce={}){return this.request("GET",je,Ce)}head(je,Ce={}){return this.request("HEAD",je,Ce)}jsonp(je,Ce){return this.request("JSONP",je,{params:(new ge).append(Ce,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(je,Ce={}){return this.request("OPTIONS",je,Ce)}patch(je,Ce,ot={}){return this.request("PATCH",je,N(ot,Ce))}post(je,Ce,ot={}){return this.request("POST",je,N(ot,Ce))}put(je,Ce,ot={}){return this.request("PUT",je,N(ot,Ce))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(F))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const Ee=/^\)\]\}',?\n/;function qe(bt){if(bt.url)return bt.url;const re="X-Request-URL".toLocaleLowerCase();return bt.headers.get(re)}let Ke=(()=>{class bt{constructor(){this.fetchImpl=(0,t.WQX)(se,{optional:!0})?.fetch??fetch.bind(globalThis),this.ngZone=(0,t.WQX)(t.SKi)}handle(je){return new S.c(Ce=>{const ot=new AbortController;return this.doRequest(je,ot.signal,Ce).then(X,ut=>Ce.error(new _({error:ut}))),()=>ot.abort()})}doRequest(je,Ce,ot){var ut=this;return(0,e.A)(function*(){const ii=ut.createRequestInit(je);let si;try{const rr=ut.fetchImpl(je.urlWithParams,{signal:Ce,...ii});(function me(bt){bt.then(X,X)})(rr),ot.next({type:h.Sent}),si=yield rr}catch(rr){return void ot.error(new _({error:rr,status:rr.status??0,statusText:rr.statusText,url:je.urlWithParams,headers:rr.headers}))}const Pi=new z(si.headers),mn=si.statusText,Fn=qe(si)??je.urlWithParams;let $n=si.status,Yn=null;if(je.reportProgress&&ot.next(new k({headers:Pi,status:$n,statusText:mn,url:Fn})),si.body){const rr=si.headers.get("content-length"),Rn=[],_i=si.body.getReader();let jt,Ci,Oi=0;const hi=typeof Zone<"u"&&Zone.current;yield ut.ngZone.runOutsideAngular((0,e.A)(function*(){for(;;){const{done:Vi,value:ji}=yield _i.read();if(Vi)break;if(Rn.push(ji),Oi+=ji.length,je.reportProgress){Ci="text"===je.responseType?(Ci??"")+(jt??=new TextDecoder).decode(ji,{stream:!0}):void 0;const rn=()=>ot.next({type:h.DownloadProgress,total:rr?+rr:void 0,loaded:Oi,partialText:Ci});hi?hi.run(rn):rn()}}}));const yi=ut.concatChunks(Rn,Oi);try{const Vi=si.headers.get("Content-Type")??"";Yn=ut.parseBody(je,yi,Vi)}catch(Vi){return void ot.error(new _({error:Vi,headers:new z(si.headers),status:si.status,statusText:si.statusText,url:qe(si)??je.urlWithParams}))}}0===$n&&($n=Yn?200:0),$n>=200&&$n<300?(ot.next(new L({body:Yn,headers:Pi,status:$n,statusText:mn,url:Fn})),ot.complete()):ot.error(new _({error:Yn,headers:Pi,status:$n,statusText:mn,url:Fn}))})()}parseBody(je,Ce,ot){switch(je.responseType){case"json":const ut=(new TextDecoder).decode(Ce).replace(Ee,"");return""===ut?null:JSON.parse(ut);case"text":return(new TextDecoder).decode(Ce);case"blob":return new Blob([Ce],{type:ot});case"arraybuffer":return Ce.buffer}}createRequestInit(je){const Ce={},ot=je.withCredentials?"include":void 0;if(je.headers.forEach((ut,ii)=>Ce[ut]=ii.join(",")),Ce.Accept??="application/json, text/plain, */*",!Ce["Content-Type"]){const ut=je.detectContentTypeHeader();null!==ut&&(Ce["Content-Type"]=ut)}return{body:je.serializeBody(),method:je.method,headers:Ce,credentials:ot}}concatChunks(je,Ce){const ot=new Uint8Array(Ce);let ut=0;for(const ii of je)ot.set(ii,ut),ut+=ii.length;return ot}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();class se{}function X(){}function ce(bt,re){return re(bt)}function fe(bt,re){return(je,Ce)=>re.intercept(je,{handle:ot=>bt(ot,Ce)})}const mt=new t.nKC(""),_e=new t.nKC(""),be=new t.nKC(""),pe=new t.nKC("",{providedIn:"root",factory:()=>!0});function Ze(){let bt=null;return(re,je)=>{null===bt&&(bt=((0,t.WQX)(mt,{optional:!0})??[]).reduceRight(fe,ce));const Ce=(0,t.WQX)(t.TgB);if((0,t.WQX)(pe)){const ut=Ce.add();return bt(re,je).pipe((0,d.j)(()=>Ce.remove(ut)))}return bt(re,je)}}let pt=(()=>{class bt extends F{constructor(je,Ce){super(),this.backend=je,this.injector=Ce,this.chain=null,this.pendingTasks=(0,t.WQX)(t.TgB),this.contributeToStability=(0,t.WQX)(pe)}handle(je){if(null===this.chain){const Ce=Array.from(new Set([...this.injector.get(_e),...this.injector.get(be,[])]));this.chain=Ce.reduceRight((ot,ut)=>function ke(bt,re,je){return(Ce,ot)=>(0,t.N4e)(je,()=>re(Ce,ut=>bt(ut,ot)))}(ot,ut,this.injector),ce)}if(this.contributeToStability){const Ce=this.pendingTasks.add();return this.chain(je,ot=>this.backend.handle(ot)).pipe((0,d.j)(()=>this.pendingTasks.remove(Ce)))}return this.chain(je,Ce=>this.backend.handle(Ce))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(R),t.KVO(t.uvJ))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const Et=/^\)\]\}',?\n/;let oe=(()=>{class bt{constructor(je){this.xhrFactory=je}handle(je){if("JSONP"===je.method)throw new t.wOt(-2800,!1);const Ce=this.xhrFactory;return(Ce.\u0275loadImpl?(0,l.H)(Ce.\u0275loadImpl()):(0,w.of)(null)).pipe((0,T.n)(()=>new S.c(ut=>{const ii=Ce.build();if(ii.open(je.method,je.urlWithParams),je.withCredentials&&(ii.withCredentials=!0),je.headers.forEach((Rn,_i)=>ii.setRequestHeader(Rn,_i.join(","))),je.headers.has("Accept")||ii.setRequestHeader("Accept","application/json, text/plain, */*"),!je.headers.has("Content-Type")){const Rn=je.detectContentTypeHeader();null!==Rn&&ii.setRequestHeader("Content-Type",Rn)}if(je.responseType){const Rn=je.responseType.toLowerCase();ii.responseType="json"!==Rn?Rn:"text"}const si=je.serializeBody();let Pi=null;const mn=()=>{if(null!==Pi)return Pi;const Rn=ii.statusText||"OK",_i=new z(ii.getAllResponseHeaders()),Oi=function Vt(bt){return"responseURL"in bt&&bt.responseURL?bt.responseURL:/^X-Request-URL:/m.test(bt.getAllResponseHeaders())?bt.getResponseHeader("X-Request-URL"):null}(ii)||je.url;return Pi=new k({headers:_i,status:ii.status,statusText:Rn,url:Oi}),Pi},Fn=()=>{let{headers:Rn,status:_i,statusText:Oi,url:jt}=mn(),Ci=null;204!==_i&&(Ci=typeof ii.response>"u"?ii.responseText:ii.response),0===_i&&(_i=Ci?200:0);let hi=_i>=200&&_i<300;if("json"===je.responseType&&"string"==typeof Ci){const yi=Ci;Ci=Ci.replace(Et,"");try{Ci=""!==Ci?JSON.parse(Ci):null}catch(Vi){Ci=yi,hi&&(hi=!1,Ci={error:Vi,text:Ci})}}hi?(ut.next(new L({body:Ci,headers:Rn,status:_i,statusText:Oi,url:jt||void 0})),ut.complete()):ut.error(new _({error:Ci,headers:Rn,status:_i,statusText:Oi,url:jt||void 0}))},$n=Rn=>{const{url:_i}=mn(),Oi=new _({error:Rn,status:ii.status||0,statusText:ii.statusText||"Unknown Error",url:_i||void 0});ut.error(Oi)};let Yn=!1;const Qn=Rn=>{Yn||(ut.next(mn()),Yn=!0);let _i={type:h.DownloadProgress,loaded:Rn.loaded};Rn.lengthComputable&&(_i.total=Rn.total),"text"===je.responseType&&ii.responseText&&(_i.partialText=ii.responseText),ut.next(_i)},rr=Rn=>{let _i={type:h.UploadProgress,loaded:Rn.loaded};Rn.lengthComputable&&(_i.total=Rn.total),ut.next(_i)};return ii.addEventListener("load",Fn),ii.addEventListener("error",$n),ii.addEventListener("timeout",$n),ii.addEventListener("abort",$n),je.reportProgress&&(ii.addEventListener("progress",Qn),null!==si&&ii.upload&&ii.upload.addEventListener("progress",rr)),ii.send(si),ut.next({type:h.Sent}),()=>{ii.removeEventListener("error",$n),ii.removeEventListener("abort",$n),ii.removeEventListener("load",Fn),ii.removeEventListener("timeout",$n),je.reportProgress&&(ii.removeEventListener("progress",Qn),null!==si&&ii.upload&&ii.upload.removeEventListener("progress",rr)),ii.readyState!==ii.DONE&&ii.abort()}})))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(y.N0))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const tt=new t.nKC(""),zt=new t.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),St=new t.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class dt{}let Ae=(()=>{class bt{constructor(je,Ce,ot){this.doc=je,this.platform=Ce,this.cookieName=ot,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const je=this.doc.cookie||"";return je!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,y._b)(je,this.cookieName),this.lastCookieString=je),this.lastToken}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(y.qQ),t.KVO(t.Agw),t.KVO(zt))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();function we(bt,re){const je=bt.url.toLowerCase();if(!(0,t.WQX)(tt)||"GET"===bt.method||"HEAD"===bt.method||je.startsWith("http://")||je.startsWith("https://"))return re(bt);const Ce=(0,t.WQX)(dt).getToken(),ot=(0,t.WQX)(St);return null!=Ce&&!bt.headers.has(ot)&&(bt=bt.clone({headers:bt.headers.set(ot,Ce)})),re(bt)}var q=function(bt){return bt[bt.Interceptors=0]="Interceptors",bt[bt.LegacyInterceptors=1]="LegacyInterceptors",bt[bt.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",bt[bt.NoXsrfProtection=3]="NoXsrfProtection",bt[bt.JsonpSupport=4]="JsonpSupport",bt[bt.RequestsMadeViaParent=5]="RequestsMadeViaParent",bt[bt.Fetch=6]="Fetch",bt}(q||{});function Ne(...bt){const re=[ne,oe,pt,{provide:F,useExisting:pt},{provide:R,useFactory:()=>(0,t.WQX)(Ke,{optional:!0})??(0,t.WQX)(oe)},{provide:_e,useValue:we,multi:!0},{provide:tt,useValue:!0},{provide:dt,useClass:Ae}];for(const je of bt)re.push(...je.\u0275providers);return(0,t.EmA)(re)}const $e=new t.nKC("");function Fe(){return function Re(bt,re){return{\u0275kind:bt,\u0275providers:re}}(q.LegacyInterceptors,[{provide:$e,useFactory:Ze},{provide:_e,useExisting:$e,multi:!0}])}let Pt=(()=>{class bt{static#e=this.\u0275fac=function(Ce){return new(Ce||bt)};static#t=this.\u0275mod=t.$C({type:bt});static#i=this.\u0275inj=t.G2t({providers:[Ne(Fe())]})}return bt})()},4438:(Qe,te,g)=>{"use strict";function e(i,a){return Object.is(i,a)}g.d(te,{bc$:()=>hh,iLQ:()=>lp,sZ2:()=>f1,hnV:()=>D8,Hbi:()=>V9,o8S:()=>Al,BIS:()=>Ef,gRc:()=>T9,Ql9:()=>kC,OM3:()=>du,Ocv:()=>PC,abz:()=>ml,Z63:()=>Da,aKT:()=>pd,uvJ:()=>So,zcH:()=>Bs,bkB:()=>Us,y_5:()=>ao,$GK:()=>rn,nKC:()=>Ni,zZn:()=>go,_q3:()=>W8,MKu:()=>Pu,xe9:()=>G3,Co$:()=>c7,Vns:()=>u0,SKi:()=>Ha,Xx1:()=>Oa,Agw:()=>ed,PLl:()=>lh,rOR:()=>o1,sFG:()=>z5,_9s:()=>b3,czy:()=>Lc,WPN:()=>Kc,kdw:()=>Fa,C4Q:()=>D1,NYb:()=>SC,giA:()=>u9,RxE:()=>C8,c1b:()=>ko,gXe:()=>ri,mal:()=>Ai,Af3:()=>De,tdH:()=>hu,L39:()=>Mp,EWP:()=>X3,a0P:()=>Pw,Ol2:()=>Y6,w6W:()=>Vb,oH4:()=>F8,QZP:()=>lb,Rfq:()=>St,WQX:()=>hn,naY:()=>S9,Hps:()=>R6,QuC:()=>so,EmA:()=>Ss,Udg:()=>kw,fpN:()=>qC,HJs:()=>Vw,N4e:()=>Z,vPA:()=>Mm,O8t:()=>Iw,H3F:()=>Qv,H8p:()=>Js,KH2:()=>ku,TgB:()=>B1,wOt:()=>be,WHO:()=>h9,e01:()=>E8,lNU:()=>_e,h9k:()=>j2,$MX:()=>y1,ZF7:()=>Xc,Kcf:()=>nc,e5t:()=>Dh,UyX:()=>m4,cWb:()=>Pf,osQ:()=>Yc,H5H:()=>Tg,Zy3:()=>pe,mq5:()=>C_,JZv:()=>Yt,LfX:()=>it,plB:()=>Ln,jNT:()=>T8,zjR:()=>f9,TL$:()=>ch,Tbb:()=>tt,rcV:()=>Ws,Vt3:()=>H6,GFd:()=>G6,OA$:()=>Nr,Jv_:()=>l8,aNF:()=>wv,R7$:()=>V4,BMQ:()=>rg,HbH:()=>vg,ZvI:()=>s_,AVh:()=>_g,vxM:()=>m_,wni:()=>av,VBU:()=>lc,FsC:()=>fo,jDH:()=>Li,G2t:()=>Qt,$C:()=>jo,EJ8:()=>Is,rXU:()=>$2,nrm:()=>jm,eu8:()=>Mg,bVm:()=>Xm,qex:()=>Wm,k0s:()=>Gm,j41:()=>R3,RV6:()=>x_,xGo:()=>f2,Mr5:()=>Eg,KVO:()=>zn,kS0:()=>Kl,QTQ:()=>Op,bIt:()=>Vg,lsd:()=>sv,joV:()=>cl,qSk:()=>T0,XpG:()=>Ug,nI1:()=>Lv,bMT:()=>Iv,i5U:()=>Rv,brH:()=>Ov,SdG:()=>q_,NAR:()=>J_,Y8G:()=>mg,FS9:()=>Gg,Mz_:()=>qm,FCK:()=>jg,lJ4:()=>Mv,eq3:()=>Ev,l_i:()=>h8,sMw:()=>Sv,mGM:()=>Yg,sdS:()=>lv,Dyx:()=>Cg,Z7z:()=>g_,fX1:()=>xg,Njj:()=>q1,tSv:()=>un,eBV:()=>w0,npT:()=>Uf,n$t:()=>Uh,xc7:()=>gg,Kam:()=>Hg,zvX:()=>Sg,DNE:()=>mu,C5r:()=>Nv,EFF:()=>Jg,JRh:()=>t8,SpI:()=>tp,Lme:()=>ip,E5c:()=>i8,LHq:()=>np,DH7:()=>rp,mxI:()=>o8,R50:()=>a8,GBs:()=>ov});let t=null,w=!1,S=1;const l=Symbol("SIGNAL");function x(i){const a=t;return t=i,a}const T={version:0,lastCleanEpoch:0,dirty:!1,producerNode:void 0,producerLastReadVersion:void 0,producerIndexOfThis:void 0,nextProducerIndex:0,liveConsumerNode:void 0,liveConsumerIndexOfThis:void 0,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function y(i){if(w)throw new Error("");if(null===t)return;t.consumerOnSignalRead(i);const a=t.nextProducerIndex++;Me(t),ai.nextProducerIndex;)i.producerNode.pop(),i.producerLastReadVersion.pop(),i.producerIndexOfThis.pop()}}function J(i){Me(i);for(let a=0;a0}function Me(i){i.producerNode??=[],i.producerIndexOfThis??=[],i.producerLastReadVersion??=[]}function Te(i){i.liveConsumerNode??=[],i.liveConsumerIndexOfThis??=[]}const D=Symbol("UNSET"),n=Symbol("COMPUTING"),c=Symbol("ERRORED"),m={...T,value:D,dirty:!0,error:null,equal:e,producerMustRecompute:i=>i.value===D||i.value===n,producerRecomputeValue(i){if(i.value===n)throw new Error("Detected cycle in computations.");const a=i.value;i.value=n;const s=j(i);let p;try{p=i.computation()}catch(E){p=c,i.error=E}finally{Q(i,s)}a!==D&&a!==c&&p!==c&&i.equal(a,p)?i.value=a:(i.value=p,i.version++)}};let C=function h(){throw new Error};function k(){C()}let _=null;function N(i,a){W()||k(),i.equal(i.value,a)||(i.value=a,function ze(i){i.version++,function F(){S++}(),z(i),_?.()}(i))}const Ee={...T,equal:e,value:void 0};const Ke=()=>{},se={...T,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!1,consumerMarkedDirty:i=>{null!==i.schedule&&i.schedule(i.ref)},hasRun:!1,cleanupFn:Ke};var me=g(1413),ce=g(8359),fe=g(4412),ke=g(6354);const _e="https://g.co/ng/security#xss";class be extends Error{constructor(a,s){super(pe(a,s)),this.code=a}}function pe(i,a){return`NG0${Math.abs(i)}${a?": "+a:""}`}function ye(i){return{toString:i}.toString()}const Ie="__parameters__";function Ye(i,a,s){return ye(()=>{const p=function yt(i){return function(...s){if(i){const p=i(...s);for(const E in p)this[E]=p[E]}}}(a);function E(...P){if(this instanceof E)return p.apply(this,P),this;const K=new E(...P);return le.annotation=K,le;function le(Se,Je,vt){const Bt=Se.hasOwnProperty(Ie)?Se[Ie]:Object.defineProperty(Se,Ie,{value:[]})[Ie];for(;Bt.length<=vt;)Bt.push(null);return(Bt[vt]=Bt[vt]||[]).push(K),Se}}return s&&(E.prototype=Object.create(s.prototype)),E.prototype.ngMetadataName=i,E.annotationCls=E,E})}const Yt=globalThis;function Vt(i){for(let a in i)if(i[a]===Vt)return a;throw Error("Could not find renamed property on target object.")}function oe(i,a){for(const s in a)a.hasOwnProperty(s)&&!i.hasOwnProperty(s)&&(i[s]=a[s])}function tt(i){if("string"==typeof i)return i;if(Array.isArray(i))return"["+i.map(tt).join(", ")+"]";if(null==i)return""+i;if(i.overriddenName)return`${i.overriddenName}`;if(i.name)return`${i.name}`;const a=i.toString();if(null==a)return""+a;const s=a.indexOf("\n");return-1===s?a:a.substring(0,s)}function $t(i,a){return null==i||""===i?null===a?"":a:null==a||""===a?i:i+" "+a}const Jt=Vt({__forward_ref__:Vt});function St(i){return i.__forward_ref__=St,i.toString=function(){return tt(this())},i}function dt(i){return Ae(i)?i():i}function Ae(i){return"function"==typeof i&&i.hasOwnProperty(Jt)&&i.__forward_ref__===St}function Li(i){return{token:i.token,providedIn:i.providedIn||null,factory:i.factory,value:void 0}}function Qt(i){return{providers:i.providers||[],imports:i.imports||[]}}function Mt(i){return ct(i,xi)||ct(i,zi)}function it(i){return null!==Mt(i)}function ct(i,a){return i.hasOwnProperty(a)?i[a]:null}function Ut(i){return i&&(i.hasOwnProperty(Si)||i.hasOwnProperty(en))?i[Si]:null}const xi=Vt({\u0275prov:Vt}),Si=Vt({\u0275inj:Vt}),zi=Vt({ngInjectableDef:Vt}),en=Vt({ngInjectorDef:Vt});class Ni{constructor(a,s){this._desc=a,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof s?this.__NG_ELEMENT_ID__=s:void 0!==s&&(this.\u0275prov=Li({token:this,providedIn:s.providedIn||"root",factory:s.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}function Pi(i){return i&&!!i.\u0275providers}const mn=Vt({\u0275cmp:Vt}),Fn=Vt({\u0275dir:Vt}),$n=Vt({\u0275pipe:Vt}),Yn=Vt({\u0275mod:Vt}),Qn=Vt({\u0275fac:Vt}),rr=Vt({__NG_ELEMENT_ID__:Vt}),Rn=Vt({__NG_ENV_ID__:Vt});function _i(i){return"string"==typeof i?i:null==i?"":String(i)}function ji(i,a){throw new be(-201,!1)}var rn=function(i){return i[i.Default=0]="Default",i[i.Host=1]="Host",i[i.Self=2]="Self",i[i.SkipSelf=4]="SkipSelf",i[i.Optional=8]="Optional",i}(rn||{});let ar;function sr(){return ar}function nr(i){const a=ar;return ar=i,a}function or(i,a,s){const p=Mt(i);return p&&"root"==p.providedIn?void 0===p.value?p.value=p.factory():p.value:s&rn.Optional?null:void 0!==a?a:void ji()}const zr={},Ho="__NG_DI_FLAG__",xo="ngTempTokenPath",Rr=/\n/gm,Ea="__source";let no;function xr(i){const a=no;return no=i,a}function Sa(i,a=rn.Default){if(void 0===no)throw new be(-203,!1);return null===no?or(i,void 0,a):no.get(i,a&rn.Optional?null:void 0,a)}function zn(i,a=rn.Default){return(sr()||Sa)(dt(i),a)}function hn(i,a=rn.Default){return zn(i,Yr(a))}function Yr(i){return typeof i>"u"||"number"==typeof i?i:(i.optional&&8)|(i.host&&1)|(i.self&&2)|(i.skipSelf&&4)}function Ta(i){const a=[];for(let s=0;s({token:i})),-1),Oa=Co(Ye("Optional"),8),Fa=Co(Ye("SkipSelf"),4);function kr(i,a){return i.hasOwnProperty(Qn)?i[Qn]:null}function Ua(i,a){i.forEach(s=>Array.isArray(s)?Ua(s,a):a(s))}function rs(i,a,s){a>=i.length?i.push(s):i.splice(a,0,s)}function Ga(i,a){return a>=i.length-1?i.pop():i.splice(a,1)[0]}function ga(i,a,s){let p=Lr(i,a);return p>=0?i[1|p]=s:(p=~p,function Uo(i,a,s,p){let E=i.length;if(E==a)i.push(s,p);else if(1===E)i.push(p,i[0]),i[0]=s;else{for(E--,i.push(i[E-1],i[E]);E>a;)i[E]=i[E-2],E--;i[a]=s,i[a+1]=p}}(i,p,a,s)),p}function Za(i,a){const s=Lr(i,a);if(s>=0)return i[1|s]}function Lr(i,a){return function Oo(i,a,s){let p=0,E=i.length>>s;for(;E!==p;){const P=p+(E-p>>1),K=i[P<a?E=P:p=P+1}return~(E<a){K=P-1;break}}}for(;P-1){let P;for(;++EP?"":E[vt+1].toLowerCase(),2&p&&Je!==Bt){if(Ri(p))return!1;K=!0}}}}else{if(!K&&!Ri(p)&&!Ri(Se))return!1;if(K&&Ri(Se))continue;K=!1,p=Se|1&p}}return Ri(p)||K}function Ri(i){return!(1&i)}function lt(i,a,s,p){if(null===a)return-1;let E=0;if(p||!s){let P=!1;for(;E-1)for(s++;s0?'="'+le+'"':"")+"]"}else 8&p?E+="."+K:4&p&&(E+=" "+K);else""!==E&&!Ri(K)&&(a+=Zn(P,E),E=""),p=K,P=P||!Ri(p);s++}return""!==E&&(a+=Zn(P,E)),a}function lc(i){return ye(()=>{const a=Aa(i),s={...a,decls:i.decls,vars:i.vars,template:i.template,consts:i.consts||null,ngContentSelectors:i.ngContentSelectors,onPush:i.changeDetection===Ft.OnPush,directiveDefs:null,pipeDefs:null,dependencies:a.standalone&&i.dependencies||null,getStandaloneInjector:null,signals:i.signals??!1,data:i.data||{},encapsulation:i.encapsulation||ri.Emulated,styles:i.styles||Bn,_:null,schemas:i.schemas||null,tView:null,id:""};$s(s);const p=i.dependencies;return s.directiveDefs=dn(p,!1),s.pipeDefs=dn(p,!0),s.id=function uc(i){let a=0;const s=[i.selectors,i.ngContentSelectors,i.hostVars,i.hostAttrs,i.consts,i.vars,i.decls,i.encapsulation,i.standalone,i.signals,i.exportAs,JSON.stringify(i.inputs),JSON.stringify(i.outputs),Object.getOwnPropertyNames(i.type.prototype),!!i.contentQueries,!!i.viewQuery].join("|");for(const E of s)a=Math.imul(31,a)+E.charCodeAt(0)|0;return a+=2147483648,"c"+a}(s),s})}function dc(i){return Vn(i)||Kr(i)}function hc(i){return null!==i}function jo(i){return ye(()=>({type:i.type,bootstrap:i.bootstrap||Bn,declarations:i.declarations||Bn,imports:i.imports||Bn,exports:i.exports||Bn,transitiveCompileScopes:null,schemas:i.schemas||null,id:i.id||null}))}function Wo(i,a){if(null==i)return qr;const s={};for(const p in i)if(i.hasOwnProperty(p)){const E=i[p];let P,K,le=xt.None;Array.isArray(E)?(le=E[0],P=E[1],K=E[2]??P):(P=E,K=E),a?(s[P]=le!==xt.None?[p,le]:p,a[P]=K):s[P]=p}return s}function fo(i){return ye(()=>{const a=Aa(i);return $s(a),a})}function Is(i){return{type:i.type,name:i.name,factory:null,pure:!1!==i.pure,standalone:!0===i.standalone,onDestroy:i.type.prototype.ngOnDestroy||null}}function Vn(i){return i[mn]||null}function Kr(i){return i[Fn]||null}function ua(i){return i[$n]||null}function so(i){const a=Vn(i)||Kr(i)||ua(i);return null!==a&&a.standalone}function Ir(i,a){const s=i[Yn]||null;if(!s&&!0===a)throw new Error(`Type ${tt(i)} does not have '\u0275mod' property.`);return s}function Aa(i){const a={};return{type:i.type,providersResolver:null,factory:null,hostBindings:i.hostBindings||null,hostVars:i.hostVars||0,hostAttrs:i.hostAttrs||null,contentQueries:i.contentQueries||null,declaredInputs:a,inputTransforms:null,inputConfig:i.inputs||qr,exportAs:i.exportAs||null,standalone:!0===i.standalone,signals:!0===i.signals,selectors:i.selectors||Bn,viewQuery:i.viewQuery||null,features:i.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:Wo(i.inputs,a),outputs:Wo(i.outputs),debugInfo:null}}function $s(i){i.features?.forEach(a=>a(i))}function dn(i,a){if(!i)return null;const s=a?ua:dc;return()=>("function"==typeof i?i():i).map(p=>s(p)).filter(hc)}function Ss(i){return{\u0275providers:i}}function fc(...i){return{\u0275providers:_s(0,i),\u0275fromNgModule:!0}}function _s(i,...a){const s=[],p=new Set;let E;const P=K=>{s.push(K)};return Ua(a,K=>{const le=K;vs(le,P,[],p)&&(E||=[],E.push(le))}),void 0!==E&&kl(E,P),s}function kl(i,a){for(let s=0;s{a(P,p)})}}function vs(i,a,s,p){if(!(i=dt(i)))return!1;let E=null,P=Ut(i);const K=!P&&Vn(i);if(P||K){if(K&&!K.standalone)return!1;E=i}else{const Se=i.ngModule;if(P=Ut(Se),!P)return!1;E=Se}const le=p.has(E);if(K){if(le)return!1;if(p.add(E),K.dependencies){const Se="function"==typeof K.dependencies?K.dependencies():K.dependencies;for(const Je of Se)vs(Je,a,s,p)}}else{if(!P)return!1;{if(null!=P.imports&&!le){let Je;p.add(E);try{Ua(P.imports,vt=>{vs(vt,a,s,p)&&(Je||=[],Je.push(vt))})}finally{}void 0!==Je&&kl(Je,a)}if(!le){const Je=kr(E)||(()=>new E);a({provide:E,useFactory:Je,deps:Bn},E),a({provide:Wa,useValue:E,multi:!0},E),a({provide:Da,useValue:()=>zn(E),multi:!0},E)}const Se=P.providers;if(null!=Se&&!le){const Je=i;mc(Se,vt=>{a(vt,Je)})}}}return E!==i&&void 0!==i.providers}function mc(i,a){for(let s of i)Pi(s)&&(s=s.\u0275providers),Array.isArray(s)?mc(s,a):a(s)}const el=Vt({provide:String,useValue:Vt});function Qs(i){return null!==i&&"object"==typeof i&&el in i}function Eo(i){return"function"==typeof i}const Js=new Ni(""),bs={},gc={};let _c;function os(){return void 0===_c&&(_c=new as),_c}class So{}class Os extends So{get destroyed(){return this._destroyed}constructor(a,s,p,E){super(),this.parent=s,this.source=p,this.scopes=E,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,kt(a,K=>this.processProvider(K)),this.records.set(Go,ss(void 0,this)),E.has("environment")&&this.records.set(So,ss(void 0,this));const P=this.records.get(Js);null!=P&&"string"==typeof P.value&&this.scopes.add(P.value),this.injectorDefTypes=new Set(this.get(Wa,Bn,rn.Self))}destroy(){this.assertNotDestroyed(),this._destroyed=!0;const a=x(null);try{for(const p of this._ngOnDestroyHooks)p.ngOnDestroy();const s=this._onDestroyHooks;this._onDestroyHooks=[];for(const p of s)p()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),x(a)}}onDestroy(a){return this.assertNotDestroyed(),this._onDestroyHooks.push(a),()=>this.removeOnDestroy(a)}runInContext(a){this.assertNotDestroyed();const s=xr(this),p=nr(void 0);try{return a()}finally{xr(s),nr(p)}}get(a,s=zr,p=rn.Default){if(this.assertNotDestroyed(),a.hasOwnProperty(Rn))return a[Rn](this);p=Yr(p);const P=xr(this),K=nr(void 0);try{if(!(p&rn.SkipSelf)){let Se=this.records.get(a);if(void 0===Se){const Je=function Rt(i){return"function"==typeof i||"object"==typeof i&&i instanceof Ni}(a)&&Mt(a);Se=Je&&this.injectableDefInScope(Je)?ss(tl(a),bs):null,this.records.set(a,Se)}if(null!=Se)return this.hydrate(a,Se)}return(p&rn.Self?os():this.parent).get(a,s=p&rn.Optional&&s===zr?null:s)}catch(le){if("NullInjectorError"===le.name){if((le[xo]=le[xo]||[]).unshift(tt(a)),P)throw le;return function zo(i,a,s,p){const E=i[xo];throw a[Ea]&&E.unshift(a[Ea]),i.message=function da(i,a,s,p=null){i=i&&"\n"===i.charAt(0)&&"\u0275"==i.charAt(1)?i.slice(2):i;let E=tt(a);if(Array.isArray(a))E=a.map(tt).join(" -> ");else if("object"==typeof a){let P=[];for(let K in a)if(a.hasOwnProperty(K)){let le=a[K];P.push(K+":"+("string"==typeof le?JSON.stringify(le):tt(le)))}E=`{${P.join(", ")}}`}return`${s}${p?"("+p+")":""}[${E}]: ${i.replace(Rr,"\n ")}`}("\n"+i.message,E,s,p),i.ngTokenPath=E,i[xo]=null,i}(le,a,"R3InjectorError",this.source)}throw le}finally{nr(K),xr(P)}}resolveInjectorInitializers(){const a=x(null),s=xr(this),p=nr(void 0);try{const P=this.get(Da,Bn,rn.Self);for(const K of P)K()}finally{xr(s),nr(p),x(a)}}toString(){const a=[],s=this.records;for(const p of s.keys())a.push(tt(p));return`R3Injector[${a.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new be(205,!1)}processProvider(a){let s=Eo(a=dt(a))?a:dt(a&&a.provide);const p=function Il(i){return Qs(i)?ss(void 0,i.useValue):ss(il(i),bs)}(a);if(!Eo(a)&&!0===a.multi){let E=this.records.get(s);E||(E=ss(void 0,bs,!0),E.factory=()=>Ta(E.multi),this.records.set(s,E)),s=a,E.multi.push(a)}this.records.set(s,p)}hydrate(a,s){const p=x(null);try{return s.value===bs&&(s.value=gc,s.value=s.factory()),"object"==typeof s.value&&s.value&&function nt(i){return null!==i&&"object"==typeof i&&"function"==typeof i.ngOnDestroy}(s.value)&&this._ngOnDestroyHooks.add(s.value),s.value}finally{x(p)}}injectableDefInScope(a){if(!a.providedIn)return!1;const s=dt(a.providedIn);return"string"==typeof s?"any"===s||this.scopes.has(s):this.injectorDefTypes.has(s)}removeOnDestroy(a){const s=this._onDestroyHooks.indexOf(a);-1!==s&&this._onDestroyHooks.splice(s,1)}}function tl(i){const a=Mt(i),s=null!==a?a.factory:kr(i);if(null!==s)return s;if(i instanceof Ni)throw new be(204,!1);if(i instanceof Function)return function Rc(i){if(i.length>0)throw new be(204,!1);const s=function wt(i){return i&&(i[xi]||i[zi])||null}(i);return null!==s?()=>s.factory(i):()=>new i}(i);throw new be(204,!1)}function il(i,a,s){let p;if(Eo(i)){const E=dt(i);return kr(E)||tl(E)}if(Qs(i))p=()=>dt(i.useValue);else if(function Rs(i){return!(!i||!i.useFactory)}(i))p=()=>i.useFactory(...Ta(i.deps||[]));else if(function Zs(i){return!(!i||!i.useExisting)}(i))p=()=>zn(dt(i.useExisting));else{const E=dt(i&&(i.useClass||i.provide));if(!function Fs(i){return!!i.deps}(i))return kr(E)||tl(E);p=()=>new E(...Ta(i.deps))}return p}function ss(i,a,s=!1){return{factory:i,value:a,multi:s?[]:void 0}}function kt(i,a){for(const s of i)Array.isArray(s)?kt(s,a):s&&Pi(s)?kt(s.\u0275providers,a):a(s)}function Z(i,a){i instanceof Os&&i.assertNotDestroyed();const p=xr(i),E=nr(void 0);try{return a()}finally{xr(p),nr(E)}}function Ve(){return void 0!==sr()||null!=function ho(){return no}()}function De(i){if(!Ve())throw new be(-203,!1)}const Hn=0,Bi=1,sn=2,fr=3,$r=4,fa=5,Ya=6,vc=7,Ur=8,va=9,cs=10,Wn=11,bc=12,Rl=13,yc=14,Qr=15,mo=16,To=17,qs=18,Oc=19,Ns=20,Gi=21,Fc=22,Ps=23,kn=25,nl=1,Xo=7,Nc=9,ea=10;var Fl=function(i){return i[i.None=0]="None",i[i.HasTransplantedViews=2]="HasTransplantedViews",i}(Fl||{});function ka(i){return Array.isArray(i)&&"object"==typeof i[nl]}function ba(i){return Array.isArray(i)&&!0===i[nl]}function Ts(i){return!!(4&i.flags)}function Vs(i){return i.componentOffset>-1}function Ja(i){return!(1&~i.flags)}function En(i){return!!i.template}function nn(i){return!!(512&i[sn])}class _r{constructor(a,s,p){this.previousValue=a,this.currentValue=s,this.firstChange=p}isFirstChange(){return this.firstChange}}function ys(i,a,s,p){null!==a?a.applyValueToInputSignal(a,p):i[s]=p}function Nr(){return Ka}function Ka(i){return i.type.prototype.ngOnChanges&&(i.setInput=xc),ls}function ls(){const i=Ko(this),a=i?.current;if(a){const s=i.previous;if(s===qr)i.previous=a;else for(let p in a)s[p]=a[p];i.current=null,this.ngOnChanges(a)}}function xc(i,a,s,p,E){const P=this.declaredInputs[p],K=Ko(i)||function Ds(i,a){return i[Pl]=a}(i,{previous:qr,current:null}),le=K.current||(K.current={}),Se=K.previous,Je=Se[P];le[P]=new _r(Je&&Je.currentValue,s,Se===qr),ys(i,a,E,s)}Nr.ngInherit=!0;const Pl="__ngSimpleChanges__";function Ko(i){return i[Pl]||null}const As=function(i,a,s){},Vl="svg";function wr(i){for(;Array.isArray(i);)i=i[Hn];return i}function La(i,a){return wr(a[i])}function po(i,a){return wr(a[i.index])}function ec(i,a){return i.data[a]}function Hl(i,a){return i[a]}function $o(i,a){const s=a[i];return ka(s)?s:s[Hn]}function zd(i){return!(128&~i[sn])}function qa(i,a){return null==a?null:i[a]}function Pc(i){i[To]=0}function y0(i){1024&i[sn]||(i[sn]|=1024,zd(i)&&Z1(i))}function al(i){return!!(9216&i[sn]||i[Ps]?.dirty)}function x0(i){i[cs].changeDetectionScheduler?.notify(7),64&i[sn]&&(i[sn]|=1024),al(i)&&Z1(i)}function Z1(i){i[cs].changeDetectionScheduler?.notify(0);let a=ol(i);for(;null!==a&&!(8192&a[sn])&&(a[sn]|=8192,zd(a));)a=ol(a)}function Bd(i,a){if(!(256&~i[sn]))throw new be(911,!1);null===i[Gi]&&(i[Gi]=[]),i[Gi].push(a)}function ol(i){const a=i[fr];return ba(a)?a[fr]:a}const Nn={lFrame:$u(null),bindingsEnabled:!0,skipHydrationRootTNode:null};let C0=!1;function ju(){return Nn.bindingsEnabled}function sl(){return null!==Nn.skipHydrationRootTNode}function Ii(){return Nn.lFrame.lView}function ur(){return Nn.lFrame.tView}function w0(i){return Nn.lFrame.contextLView=i,i[Ur]}function q1(i){return Nn.lFrame.contextLView=null,i}function jr(){let i=M0();for(;null!==i&&64===i.type;)i=i.parent;return i}function M0(){return Nn.lFrame.currentTNode}function Ia(i,a){const s=Nn.lFrame;s.currentTNode=i,s.isParent=a}function ds(){return Nn.lFrame.isParent}function Ra(){Nn.lFrame.isParent=!1}function Yu(){return C0}function jd(i){C0=i}function hs(){const i=Nn.lFrame;let a=i.bindingRootIndex;return-1===a&&(a=i.bindingRootIndex=i.tView.bindingStartIndex),a}function tc(){return Nn.lFrame.bindingIndex}function us(){return Nn.lFrame.bindingIndex++}function Mc(i){const a=Nn.lFrame,s=a.bindingIndex;return a.bindingIndex=a.bindingIndex+i,s}function xa(i,a){const s=Nn.lFrame;s.bindingIndex=s.bindingRootIndex=i,n2(a)}function n2(i){Nn.lFrame.currentDirectiveIndex=i}function Ca(i){const a=Nn.lFrame.currentDirectiveIndex;return-1===a?null:i[a]}function Vc(){return Nn.lFrame.currentQueryIndex}function ic(i){Nn.lFrame.currentQueryIndex=i}function Ul(i){const a=i[Bi];return 2===a.type?a.declTNode:1===a.type?i[fa]:null}function zs(i,a,s){if(s&rn.SkipSelf){let E=a,P=i;for(;!(E=E.parent,null!==E||s&rn.Host||(E=Ul(P),null===E||(P=P[yc],10&E.type))););if(null===E)return!1;a=E,i=P}const p=Nn.lFrame=Wd();return p.currentTNode=a,p.lView=i,!0}function E0(i){const a=Wd(),s=i[Bi];Nn.lFrame=a,a.currentTNode=s.firstChild,a.lView=i,a.tView=s,a.contextLView=i,a.bindingIndex=s.bindingStartIndex,a.inI18n=!1}function Wd(){const i=Nn.lFrame,a=null===i?null:i.child;return null===a?$u(i):a}function $u(i){const a={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:i,child:null,inI18n:!1};return null!==i&&(i.child=a),a}function Gl(){const i=Nn.lFrame;return Nn.lFrame=i.parent,i.currentTNode=null,i.lView=null,i}const Xd=Gl;function S0(){const i=Gl();i.isParent=!0,i.tView=null,i.selectedIndex=-1,i.contextLView=null,i.elementDepthCount=0,i.currentDirectiveIndex=-1,i.currentNamespace=null,i.bindingRootIndex=-1,i.bindingIndex=-1,i.currentQueryIndex=0}function Va(){return Nn.lFrame.selectedIndex}function Hc(i){Nn.lFrame.selectedIndex=i}function Pr(){const i=Nn.lFrame;return ec(i.tView,i.selectedIndex)}function T0(){Nn.lFrame.currentNamespace=Vl}function cl(){!function A0(){Nn.lFrame.currentNamespace=null}()}let Zu=!0;function Yd(){return Zu}function Ec(i){Zu=i}function r2(i,a){for(let s=a.directiveStart,p=a.directiveEnd;s=p)break}else a[Se]<0&&(i[To]+=65536),(le>14>16&&(3&i[sn])===a&&(i[sn]+=16384,L0(le,P)):L0(le,P)}const zc=-1;class Bc{constructor(a,s,p){this.factory=a,this.resolving=!1,this.canSeeViewProviders=s,this.injectImpl=p}}function hl(i){return i!==zc}function Sc(i){return 32767&i}function ul(i,a){let s=function Tr(i){return i>>16}(i),p=a;for(;s>0;)p=p[yc],s--;return p}let R0=!0;function hd(i){const a=R0;return R0=i,a}const $d=255,Qd=5;let jl=0;const Tc={};function Uc(i,a){const s=Zd(i,a);if(-1!==s)return s;const p=a[Bi];p.firstCreatePass&&(i.injectorIndex=a.length,O0(p.data,i),O0(a,null),O0(p.blueprint,null));const E=Wl(i,a),P=i.injectorIndex;if(hl(E)){const K=Sc(E),le=ul(E,a),Se=le[Bi].data;for(let Je=0;Je<8;Je++)a[P+Je]=le[K+Je]|Se[K+Je]}return a[P+8]=E,P}function O0(i,a){i.push(0,0,0,0,0,0,0,0,a)}function Zd(i,a){return-1===i.injectorIndex||i.parent&&i.parent.injectorIndex===i.injectorIndex||null===a[i.injectorIndex+8]?-1:i.injectorIndex}function Wl(i,a){if(i.parent&&-1!==i.parent.injectorIndex)return i.parent.injectorIndex;let s=0,p=null,E=a;for(;null!==E;){if(p=z0(E),null===p)return zc;if(s++,E=E[yc],-1!==p.injectorIndex)return p.injectorIndex|s<<16}return zc}function fl(i,a,s){!function l2(i,a,s){let p;"string"==typeof s?p=s.charCodeAt(0)||0:s.hasOwnProperty(rr)&&(p=s[rr]),null==p&&(p=s[rr]=jl++);const E=p&$d;a.data[i+(E>>Qd)]|=1<=0?a&$d:V0:a}(s);if("function"==typeof P){if(!zs(a,i,p))return p&rn.Host?d2(E,0,p):eo(a,s,p,E);try{let K;if(K=P(p),null!=K||p&rn.Optional)return K;ji()}finally{Xd()}}else if("number"==typeof P){let K=null,le=Zd(i,a),Se=zc,Je=p&rn.Host?a[Qr][fa]:null;for((-1===le||p&rn.SkipSelf)&&(Se=-1===le?Wl(i,a):a[le+8],Se!==zc&&u2(p,!1)?(K=a[Bi],le=Sc(Se),a=ul(Se,a)):le=-1);-1!==le;){const vt=a[Bi];if(P0(P,le,vt.data)){const Bt=Dr(le,a,s,K,p,Je);if(Bt!==Tc)return Bt}Se=a[le+8],Se!==zc&&u2(p,a[Bi].data[le+8]===Je)&&P0(P,le,a)?(K=vt,le=Sc(Se),a=ul(Se,a)):le=-1}}return E}function Dr(i,a,s,p,E,P){const K=a[Bi],le=K.data[i+8],vt=Jd(le,K,s,null==p?Vs(le)&&R0:p!=K&&!!(3&le.type),E&rn.Host&&P===le);return null!==vt?ks(a,K,vt,le):Tc}function Jd(i,a,s,p,E){const P=i.providerIndexes,K=a.data,le=1048575&P,Se=i.directiveStart,vt=P>>20,ti=E?le+vt:i.directiveEnd;for(let ui=p?le:le+vt;ui=Se&&bi.type===s)return ui}if(E){const ui=K[Se];if(ui&&En(ui)&&ui.type===s)return Se}return null}function ks(i,a,s,p){let E=i[s];const P=a.data;if(function I0(i){return i instanceof Bc}(E)){const K=E;K.resolving&&function hi(i,a){throw a&&a.join(" > "),new be(-200,i)}(function Oi(i){return"function"==typeof i?i.name||i.toString():"object"==typeof i&&null!=i&&"function"==typeof i.type?i.type.name||i.type.toString():_i(i)}(P[s]));const le=hd(K.canSeeViewProviders);K.resolving=!0;const Je=K.injectImpl?nr(K.injectImpl):null;zs(i,p,rn.Default);try{E=i[s]=K.factory(void 0,P,i,p),a.firstCreatePass&&s>=p.directiveStart&&function q3(i,a,s){const{ngOnChanges:p,ngOnInit:E,ngDoCheck:P}=a.type.prototype;if(p){const K=Ka(a);(s.preOrderHooks??=[]).push(i,K),(s.preOrderCheckHooks??=[]).push(i,K)}E&&(s.preOrderHooks??=[]).push(0-i,E),P&&((s.preOrderHooks??=[]).push(i,P),(s.preOrderCheckHooks??=[]).push(i,P))}(s,P[s],a)}finally{null!==Je&&nr(Je),hd(le),K.resolving=!1,Xd()}}return E}function P0(i,a,s){return!!(s[a+(i>>Qd)]&1<{const a=i.prototype.constructor,s=a[Qn]||m2(a),p=Object.prototype;let E=Object.getPrototypeOf(i.prototype).constructor;for(;E&&E!==p;){const P=E[Qn]||m2(E);if(P&&P!==s)return P;E=Object.getPrototypeOf(E)}return P=>new P})}function m2(i){return Ae(i)?()=>{const a=m2(dt(i));return a&&a()}:kr(i)}function z0(i){const a=i[Bi],s=a.type;return 2===s?a.declTNode:1===s?i[fa]:null}function Kl(i){return function F0(i,a){if("class"===a)return i.classes;if("style"===a)return i.styles;const s=i.attrs;if(s){const p=s.length;let E=0;for(;Ezn(Go)});static#n=this.__NG_ELEMENT_ID__=-1}new Ni("").__NG_ELEMENT_ID__=i=>{const a=jr();if(null===a)throw new be(204,!1);if(2&a.type)return a.value;if(i&rn.Optional)return null;throw new be(204,!1)};function n1(i){return i.ngOriginalError}class Bs{constructor(){this._console=console}handleError(a){const s=this._findOriginalError(a);this._console.error("ERROR",a),s&&this._console.error("ORIGINAL ERROR",s)}_findOriginalError(a){let s=a&&n1(a);for(;s&&n1(s);)s=n1(s);return s||null}}const r1=new Ni("",{providedIn:"root",factory:()=>hn(Bs).handleError.bind(void 0)});let ml=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=Y0;static#t=this.__NG_ENV_ID__=s=>s}return i})();class df extends ml{constructor(a){super(),this._lView=a}onDestroy(a){return Bd(this._lView,a),()=>function wc(i,a){if(null===i[Gi])return;const s=i[Gi].indexOf(a);-1!==s&&i[Gi].splice(s,1)}(this._lView,a)}}function Y0(){return new df(Ii())}function ff(){return $l(jr(),Ii())}function $l(i,a){return new pd(po(i,a))}let pd=(()=>{class i{constructor(s){this.nativeElement=s}static#e=this.__NG_ELEMENT_ID__=ff}return i})();function Ql(i){return i instanceof pd?i.nativeElement:i}function a1(i){return a=>{setTimeout(i,void 0,a)}}const Us=class mf extends me.B{constructor(a=!1){super(),this.destroyRef=void 0,this.__isAsync=a,Ve()&&(this.destroyRef=hn(ml,{optional:!0})??void 0)}emit(a){const s=x(null);try{super.next(a)}finally{x(s)}}subscribe(a,s,p){let E=a,P=s||(()=>null),K=p;if(a&&"object"==typeof a){const Se=a;E=Se.next?.bind(Se),P=Se.error?.bind(Se),K=Se.complete?.bind(Se)}this.__isAsync&&(P=a1(P),E&&(E=a1(E)),K&&(K=a1(K)));const le=super.subscribe({next:E,error:P,complete:K});return a instanceof ce.yU&&a.add(le),le}};function K0(){return this._results[Symbol.iterator]()}class o1{static#e=Symbol.iterator;get changes(){return this._changes??=new Us}constructor(a=!1){this._emitDistinctChangesOnly=a,this.dirty=!0,this._onDirty=void 0,this._results=[],this._changesDetected=!1,this._changes=void 0,this.length=0,this.first=void 0,this.last=void 0;const s=o1.prototype;s[Symbol.iterator]||(s[Symbol.iterator]=K0)}get(a){return this._results[a]}map(a){return this._results.map(a)}filter(a){return this._results.filter(a)}find(a){return this._results.find(a)}reduce(a,s){return this._results.reduce(a,s)}forEach(a){this._results.forEach(a)}some(a){return this._results.some(a)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(a,s){this.dirty=!1;const p=function Br(i){return i.flat(Number.POSITIVE_INFINITY)}(a);(this._changesDetected=!function ha(i,a,s){if(i.length!==a.length)return!1;for(let p=0;pk2}),k2="ng",lh=new Ni(""),ed=new Ni("",{providedIn:"platform",factory:()=>"unknown"}),hh=new Ni(""),Ef=new Ni("",{providedIn:"root",factory:()=>Dc().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null});let Tf=()=>null;function io(i,a,s=!1){return Tf(i,a,s)}const P2=new Ni("",{providedIn:"root",factory:()=>!1});let Sd,v1;function gl(i){return function V2(){if(void 0===Sd&&(Sd=null,Yt.trustedTypes))try{Sd=Yt.trustedTypes.createPolicy("angular",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return Sd}()?.createHTML(i)||i}function H2(){if(void 0===v1&&(v1=null,Yt.trustedTypes))try{v1=Yt.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return v1}function Eh(i){return H2()?.createHTML(i)||i}function Th(i){return H2()?.createScriptURL(i)||i}class _l{constructor(a){this.changingThisBreaksApplicationSecurity=a}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${_e})`}}class b1 extends _l{getTypeName(){return"HTML"}}class Rf extends _l{getTypeName(){return"Style"}}class Of extends _l{getTypeName(){return"Script"}}class Ff extends _l{getTypeName(){return"URL"}}class Nf extends _l{getTypeName(){return"ResourceURL"}}function Ws(i){return i instanceof _l?i.changingThisBreaksApplicationSecurity:i}function Xc(i,a){const s=function z2(i){return i instanceof _l&&i.getTypeName()||null}(i);if(null!=s&&s!==a){if("ResourceURL"===s&&"URL"===a)return!0;throw new Error(`Required a safe ${a}, got a ${s} (see ${_e})`)}return s===a}function nc(i){return new b1(i)}function Pf(i){return new Rf(i)}function m4(i){return new Of(i)}function Yc(i){return new Ff(i)}function Dh(i){return new Nf(i)}class kh{constructor(a){this.inertDocumentHelper=a}getInertBodyElement(a){a=""+a;try{const s=(new window.DOMParser).parseFromString(gl(a),"text/html").body;return null===s?this.inertDocumentHelper.getInertBodyElement(a):(s.removeChild(s.firstChild),s)}catch{return null}}}class Lh{constructor(a){this.defaultDoc=a,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(a){const s=this.inertDocument.createElement("template");return s.innerHTML=gl(a),s}}const Ih=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function y1(i){return(i=String(i)).match(Ih)?i:"unsafe:"+i}function kc(i){const a={};for(const s of i.split(","))a[s]=!0;return a}function Td(...i){const a={};for(const s of i)for(const p in s)s.hasOwnProperty(p)&&(a[p]=!0);return a}const Rh=kc("area,br,col,hr,img,wbr"),x1=kc("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Oh=kc("rp,rt"),B2=Td(Rh,Td(x1,kc("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),Td(Oh,kc("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),Td(Oh,x1)),U2=kc("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Nh=Td(U2,kc("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),kc("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),v4=kc("script,style,template");class Dd{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(a){let s=a.firstChild,p=!0,E=[];for(;s;)if(s.nodeType===Node.ELEMENT_NODE?p=this.startElement(s):s.nodeType===Node.TEXT_NODE?this.chars(s.nodeValue):this.sanitizedSomething=!0,p&&s.firstChild)E.push(s),s=y4(s);else for(;s;){s.nodeType===Node.ELEMENT_NODE&&this.endElement(s);let P=vl(s);if(P){s=P;break}s=E.pop()}return this.buf.join("")}startElement(a){const s=zf(a).toLowerCase();if(!B2.hasOwnProperty(s))return this.sanitizedSomething=!0,!v4.hasOwnProperty(s);this.buf.push("<"),this.buf.push(s);const p=a.attributes;for(let E=0;E"),!0}endElement(a){const s=zf(a).toLowerCase();B2.hasOwnProperty(s)&&!Rh.hasOwnProperty(s)&&(this.buf.push(""))}chars(a){this.buf.push(Vh(a))}}function vl(i){const a=i.nextSibling;if(a&&i!==a.previousSibling)throw Ph(a);return a}function y4(i){const a=i.firstChild;if(a&&function b4(i,a){return(i.compareDocumentPosition(a)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(i,a))throw Ph(a);return a}function zf(i){const a=i.nodeName;return"string"==typeof a?a:"FORM"}function Ph(i){return new Error(`Failed to sanitize html because the element is clobbered: ${i.outerHTML}`)}const Bf=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,x4=/([^\#-~ |!])/g;function Vh(i){return i.replace(/&/g,"&").replace(Bf,function(a){return"&#"+(1024*(a.charCodeAt(0)-55296)+(a.charCodeAt(1)-56320)+65536)+";"}).replace(x4,function(a){return"&#"+a.charCodeAt(0)+";"}).replace(//g,">")}let G2;function j2(i,a){let s=null;try{G2=G2||function Ah(i){const a=new Lh(i);return function Vf(){try{return!!(new window.DOMParser).parseFromString(gl(""),"text/html")}catch{return!1}}()?new kh(a):a}(i);let p=a?String(a):"";s=G2.getInertBodyElement(p);let E=5,P=p;do{if(0===E)throw new Error("Failed to sanitize html because the input is unstable");E--,p=P,P=s.innerHTML,s=G2.getInertBodyElement(p)}while(p!==P);return gl((new Dd).sanitizeChildren(Hh(s)||s))}finally{if(s){const p=Hh(s)||s;for(;p.firstChild;)p.removeChild(p.firstChild)}}}function Hh(i){return"content"in i&&function C4(i){return i.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===i.nodeName}(i)?i.content:null}var Kc=function(i){return i[i.NONE=0]="NONE",i[i.HTML=1]="HTML",i[i.STYLE=2]="STYLE",i[i.SCRIPT=3]="SCRIPT",i[i.URL=4]="URL",i[i.RESOURCE_URL=5]="RESOURCE_URL",i}(Kc||{});function Uf(i){const a=Ad();return a?Eh(a.sanitize(Kc.HTML,i)||""):Xc(i,"HTML")?Eh(Ws(i)):j2(Dc(),_i(i))}function Gf(i){const a=Ad();return a?a.sanitize(Kc.URL,i)||"":Xc(i,"URL")?Ws(i):y1(_i(i))}function C1(i){const a=Ad();if(a)return Th(a.sanitize(Kc.RESOURCE_URL,i)||"");if(Xc(i,"ResourceURL"))return Th(Ws(i));throw new be(904,!1)}function Uh(i,a,s){return function Bh(i,a){return"src"===a&&("embed"===i||"frame"===i||"iframe"===i||"media"===i||"script"===i)||"href"===a&&("base"===i||"link"===i)?C1:Gf}(a,s)(i)}function Ad(){const i=Ii();return i&&i[cs].sanitizer}const jh=/^>|^->||--!>|)/g,Xh="\u200b$1\u200b";function un(i){return i.ownerDocument.defaultView}function An(i){return i instanceof Function?i():i}var Lc=function(i){return i[i.Important=1]="Important",i[i.DashCase=2]="DashCase",i}(Lc||{});let M1;function $c(i,a){return M1(i,a)}function bl(i,a,s,p,E){if(null!=p){let P,K=!1;ba(p)?P=p:ka(p)&&(K=!0,p=p[Hn]);const le=wr(p);0===i&&null!==s?null==E?Tp(a,s,le):E1(a,s,le,E||null,!0):1===i&&null!==s?E1(a,s,le,E||null,!0):2===i?function $h(i,a,s){const p=Qf(i,a);p&&function Dp(i,a,s,p){i.removeChild(a,s,p)}(i,p,a,s)}(a,le,K):3===i&&a.destroyNode(le),null!=P&&function P4(i,a,s,p,E){const P=s[Xo];P!==wr(s)&&bl(a,i,p,P,E);for(let le=ea;lea.replace(Wh,Xh))}(a))}function Gn(i,a,s){return i.createElement(a,s)}function ac(i,a){a[cs].changeDetectionScheduler?.notify(8),Qh(i,a,a[Wn],2,null,null)}function wa(i,a){const s=i[Nc],p=a[fr];(ka(p)||a[Qr]!==p[fr][Qr])&&(i[sn]|=Fl.HasTransplantedViews),null===s?i[Nc]=[a]:s.push(a)}function Y2(i,a){const s=i[Nc],p=s.indexOf(a);s.splice(p,1)}function kd(i,a){if(i.length<=ea)return;const s=ea+a,p=i[s];if(p){const E=p[mo];null!==E&&E!==i&&Y2(E,p),a>0&&(i[s-1][$r]=p[$r]);const P=Ga(i,ea+a);!function Mr(i,a){ac(i,a),a[Hn]=null,a[fa]=null}(p[Bi],p);const K=P[qs];null!==K&&K.detachView(P[Bi]),p[fr]=null,p[$r]=null,p[sn]&=-129}return p}function vo(i,a){if(!(256&a[sn])){const s=a[Wn];s.destroyNode&&Qh(i,a,s,3,null,null),function xs(i){let a=i[bc];if(!a)return Qc(i[Bi],i);for(;a;){let s=null;if(ka(a))s=a[bc];else{const p=a[ea];p&&(s=p)}if(!s){for(;a&&!a[$r]&&a!==i;)ka(a)&&Qc(a[Bi],a),a=a[fr];null===a&&(a=i),ka(a)&&Qc(a[Bi],a),s=a&&a[$r]}a=s}}(a)}}function Qc(i,a){if(256&a[sn])return;const s=x(null);try{a[sn]&=-129,a[sn]|=256,a[Ps]&&ee(a[Ps]),function Ld(i,a){let s;if(null!=i&&null!=(s=i.destroyHooks))for(let p=0;p=0?p[K]():p[-K].unsubscribe(),P+=2}else s[P].call(p[s[P+1]]);null!==p&&(a[vc]=null);const E=a[Gi];if(null!==E){a[Gi]=null;for(let P=0;P-1){const{encapsulation:P}=i.data[p.directiveStart+E];if(P===ri.None||P===ri.Emulated)return null}return po(p,s)}}(i,a.parent,s)}function E1(i,a,s,p,E){i.insertBefore(a,s,p,E)}function Tp(i,a,s){i.appendChild(a,s)}function A4(i,a,s,p,E){null!==p?E1(i,a,s,p,E):Tp(i,a,s)}function Qf(i,a){return i.parentNode(a)}function Ap(i,a,s){return L4(i,a,s)}let I4,L4=function k4(i,a,s){return 40&i.type?po(i,s):null};function Zf(i,a,s,p){const E=Id(i,p,a),P=a[Wn],le=Ap(p.parent||a[fa],p,a);if(null!=E)if(Array.isArray(s))for(let Se=0;Sekn&&Zh(i,a,kn,!1),As(K?2:0,E),s(p,E)}finally{Hc(P),As(K?3:1,E)}}function H4(i,a,s){if(Ts(a)){const p=x(null);try{const P=a.directiveEnd;for(let K=a.directiveStart;Knull;function e3(i,a,s,p,E){for(let P in a){if(!a.hasOwnProperty(P))continue;const K=a[P];if(void 0===K)continue;p??={};let le,Se=xt.None;Array.isArray(K)?(le=K[0],Se=K[1]):le=K;let Je=P;if(null!==E){if(!E.hasOwnProperty(P))continue;Je=E[P]}0===i?j4(p,s,Je,le,Se):j4(p,s,Je,le)}return p}function j4(i,a,s,p,E){let P;i.hasOwnProperty(s)?(P=i[s]).push(a,p):P=i[s]=[a,p],void 0!==E&&P.push(E)}function fs(i,a,s,p,E,P,K,le){const Se=po(a,s);let vt,Je=a.inputs;!le&&null!=Je&&(vt=Je[p])?($4(i,s,vt,p,E),Vs(a)&&function h5(i,a){const s=$o(a,i);16&s[sn]||(s[sn]|=64)}(s,a.index)):3&a.type&&(p=function Hp(i){return"class"===i?"className":"for"===i?"htmlFor":"formaction"===i?"formAction":"innerHtml"===i?"innerHTML":"readonly"===i?"readOnly":"tabindex"===i?"tabIndex":i}(p),E=null!=K?K(E,a.value||"",p):E,P.setProperty(Se,p,E))}function t3(i,a,s,p){if(ju()){const E=null===p?null:{"":-1},P=function Gp(i,a){const s=i.directiveRegistry;let p=null,E=null;if(s)for(let P=0;P0;){const s=i[--a];if("number"==typeof s&&s<0)return s}return 0})(K)!=le&&K.push(le),K.push(s,p,P)}}(i,a,p,Z2(i,s,E.hostVars,lr),E)}function xl(i,a,s,p,E,P){const K=po(i,a);!function Y4(i,a,s,p,E,P,K){if(null==P)i.removeAttribute(a,E,s);else{const le=null==K?_i(P):K(P,p||"",E);i.setAttribute(a,E,le,s)}}(a[Wn],K,P,i.value,s,p,E)}function Xp(i,a,s,p,E,P){const K=P[a];if(null!==K)for(let le=0;le0&&(s[E-1][$r]=a),p{Z1(i.lView)},consumerOnSignalRead(){this.lView[Ps]=this}},r3=100;function n0(i,a=!0,s=0){const p=i[cs],E=p.rendererFactory;E.begin?.();try{!function J4(i,a){const s=Yu();try{jd(!0),r0(i,a);let p=0;for(;al(i);){if(p===r3)throw new be(103,!1);p++,r0(i,1)}}finally{jd(s)}}(i,s)}catch(K){throw a&&q2(i,K),K}finally{E.end?.(),p.inlineEffectRunner?.flush()}}function e6(i,a,s,p){const E=a[sn];if(!(256&~E))return;a[cs].inlineEffectRunner?.flush(),E0(a);let le=null,Se=null;(function q4(i){return 2!==i.type})(i)&&(Se=function e0(i){return i[Ps]??function jn(i){const a=wl.pop()??Object.create(t0);return a.lView=i,a}(i)}(a),le=j(Se));try{Pc(a),function Ku(i){return Nn.lFrame.bindingIndex=i}(i.bindingStartIndex),null!==s&&Np(i,a,s,2,p);const Je=!(3&~E);if(Je){const ti=i.preOrderCheckHooks;null!==ti&&a2(a,ti,null)}else{const ti=i.preOrderHooks;null!==ti&&o2(a,ti,0,null),Kd(a,0)}if(function a3(i){for(let a=S2(i);null!==a;a=Jl(a)){if(!(a[sn]&Fl.HasTransplantedViews))continue;const s=a[Nc];for(let p=0;p-1&&(kd(a,p),Ga(s,p))}this._attachedToViewContainer=!1}vo(this._lView[Bi],this._lView)}onDestroy(a){Bd(this._lView,a)}markForCheck(){T1(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[sn]&=-129}reattach(){x0(this._lView),this._lView[sn]|=128}detectChanges(){this._lView[sn]|=1024,n0(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new be(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const a=nn(this._lView),s=this._lView[mo];null!==s&&!a&&Y2(s,this._lView),ac(this._lView[Bi],this._lView)}attachToAppRef(a){if(this._attachedToViewContainer)throw new be(902,!1);this._appRef=a;const s=nn(this._lView),p=this._lView[mo];null!==p&&!s&&wa(p,this._lView),x0(this._lView)}}let D1=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=tm}return i})();const s3=D1,ad=class extends s3{constructor(a,s,p){super(),this._declarationLView=a,this._declarationTContainer=s,this.elementRef=p}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(a,s){return this.createEmbeddedViewImpl(a,s)}createEmbeddedViewImpl(a,s,p){const E=Rd(this._declarationLView,this._declarationTContainer,a,{embeddedViewInjector:s,dehydratedView:p});return new Ys(E)}};function tm(){return A1(jr(),Ii())}function A1(i,a){return 4&i.type?new ad(a,i,$l(i,a)):null}let bm=()=>null;function F1(i,a){return bm(i,a)}class N1{}const Nd=new Ni("",{providedIn:"root",factory:()=>!1}),_6=new Ni("");class V5{}class v6{}class H5{resolveComponentFactory(a){throw function b6(i){const a=Error(`No component factory found for ${tt(i)}.`);return a.ngComponent=i,a}(a)}}class du{static#e=this.NULL=new H5}class b3{}let z5=(()=>{class i{constructor(){this.destroyNode=null}static#e=this.__NG_ELEMENT_ID__=()=>function B5(){const i=Ii(),s=$o(jr().index,i);return(ka(s)?s:i)[Wn]}()}return i})(),C6=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>null})}return i})();const y3={};function hu(i,a){if(null!==function f(){return t}())throw new be(-602,!1)}const w6=new Set;function oc(i){w6.has(i)||(w6.add(i),performance?.mark?.("mark_feature_usage",{detail:{feature:i}}))}function M6(i){let a=!0;return setTimeout(()=>{a&&(a=!1,i())}),"function"==typeof Yt.requestAnimationFrame&&Yt.requestAnimationFrame(()=>{a&&(a=!1,i())}),()=>{a=!1}}function E6(i){let a=!0;return queueMicrotask(()=>{a&&i()}),()=>{a=!1}}function x3(...i){}class Ha{constructor({enableLongStackTrace:a=!1,shouldCoalesceEventChangeDetection:s=!1,shouldCoalesceRunChangeDetection:p=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Us(!1),this.onMicrotaskEmpty=new Us(!1),this.onStable=new Us(!1),this.onError=new Us(!1),typeof Zone>"u")throw new be(908,!1);Zone.assertZonePatched();const E=this;E._nesting=0,E._outer=E._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(E._inner=E._inner.fork(new Zone.TaskTrackingZoneSpec)),a&&Zone.longStackTraceZoneSpec&&(E._inner=E._inner.fork(Zone.longStackTraceZoneSpec)),E.shouldCoalesceEventChangeDetection=!p&&s,E.shouldCoalesceRunChangeDetection=p,E.callbackScheduled=!1,function u(i){const a=()=>{!function G5(i){i.isCheckStableRunning||i.callbackScheduled||(i.callbackScheduled=!0,Zone.root.run(()=>{M6(()=>{i.callbackScheduled=!1,A(i),i.isCheckStableRunning=!0,C3(i),i.isCheckStableRunning=!1})}),A(i))}(i)};i._inner=i._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(s,p,E,P,K,le)=>{if(function Y(i){return Ct(i,"__ignore_ng_zone__")}(le))return s.invokeTask(E,P,K,le);try{return o(i),s.invokeTask(E,P,K,le)}finally{(i.shouldCoalesceEventChangeDetection&&"eventTask"===P.type||i.shouldCoalesceRunChangeDetection)&&a(),M(i)}},onInvoke:(s,p,E,P,K,le,Se)=>{try{return o(i),s.invoke(E,P,K,le,Se)}finally{i.shouldCoalesceRunChangeDetection&&!i.callbackScheduled&&!function Le(i){return Ct(i,"__scheduler_tick__")}(le)&&a(),M(i)}},onHasTask:(s,p,E,P)=>{s.hasTask(E,P),p===E&&("microTask"==P.change?(i._hasPendingMicrotasks=P.microTask,A(i),C3(i)):"macroTask"==P.change&&(i.hasPendingMacrotasks=P.macroTask))},onHandleError:(s,p,E,P)=>(s.handleError(E,P),i.runOutsideAngular(()=>i.onError.emit(P)),!1)})}(E)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!Ha.isInAngularZone())throw new be(909,!1)}static assertNotInAngularZone(){if(Ha.isInAngularZone())throw new be(909,!1)}run(a,s,p){return this._inner.run(a,s,p)}runTask(a,s,p,E){const P=this._inner,K=P.scheduleEventTask("NgZoneEvent: "+E,a,S6,x3,x3);try{return P.runTask(K,s,p)}finally{P.cancelTask(K)}}runGuarded(a,s,p){return this._inner.runGuarded(a,s,p)}runOutsideAngular(a){return this._outer.run(a)}}const S6={};function C3(i){if(0==i._nesting&&!i.hasPendingMicrotasks&&!i.isStable)try{i._nesting++,i.onMicrotaskEmpty.emit(null)}finally{if(i._nesting--,!i.hasPendingMicrotasks)try{i.runOutsideAngular(()=>i.onStable.emit(null))}finally{i.isStable=!0}}}function A(i){i.hasPendingMicrotasks=!!(i._hasPendingMicrotasks||(i.shouldCoalesceEventChangeDetection||i.shouldCoalesceRunChangeDetection)&&!0===i.callbackScheduled)}function o(i){i._nesting++,i.isStable&&(i.isStable=!1,i.onUnstable.emit(null))}function M(i){i._nesting--,C3(i)}class B{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Us,this.onMicrotaskEmpty=new Us,this.onStable=new Us,this.onError=new Us}run(a,s,p){return a.apply(s,p)}runGuarded(a,s,p){return a.apply(s,p)}runOutsideAngular(a){return a()}runTask(a,s,p,E){return a.apply(s,p)}}function Ct(i,a){return!(!Array.isArray(i)||1!==i.length)&&!0===i[0]?.data?.[a]}var Ht=function(i){return i[i.EarlyRead=0]="EarlyRead",i[i.Write=1]="Write",i[i.MixedReadWrite=2]="MixedReadWrite",i[i.Read=3]="Read",i}(Ht||{});const li={destroy(){}};function Ai(i,a){!a&&De();const s=a?.injector??hn(go);if(!function Un(i){return"browser"===(i??hn(go)).get(ed)}(s))return li;oc("NgAfterNextRender");const p=s.get(ki),E=p.handler??=new Tn,P=a?.phase??Ht.MixedReadWrite,K=()=>{E.unregister(Se),le()},le=s.get(ml).onDestroy(K),Se=Z(s,()=>new cn(P,()=>{K(),i()}));return E.register(Se),{destroy:K}}class cn{constructor(a,s){this.phase=a,this.callbackFn=s,this.zone=hn(Ha),this.errorHandler=hn(Bs,{optional:!0}),hn(N1,{optional:!0})?.notify(6)}invoke(){try{this.zone.runOutsideAngular(this.callbackFn)}catch(a){this.errorHandler?.handleError(a)}}}class Tn{constructor(){this.executingCallbacks=!1,this.buckets={[Ht.EarlyRead]:new Set,[Ht.Write]:new Set,[Ht.MixedReadWrite]:new Set,[Ht.Read]:new Set},this.deferredCallbacks=new Set}register(a){(this.executingCallbacks?this.deferredCallbacks:this.buckets[a.phase]).add(a)}unregister(a){this.buckets[a.phase].delete(a),this.deferredCallbacks.delete(a)}execute(){this.executingCallbacks=!0;for(const a of Object.values(this.buckets))for(const s of a)s.invoke();this.executingCallbacks=!1;for(const a of this.deferredCallbacks)this.buckets[a.phase].add(a);this.deferredCallbacks.clear()}destroy(){for(const a of Object.values(this.buckets))a.clear();this.deferredCallbacks.clear()}}let ki=(()=>{class i{constructor(){this.handler=null,this.internalCallbacks=[]}execute(){this.executeInternalCallbacks(),this.handler?.execute()}executeInternalCallbacks(){const s=[...this.internalCallbacks];this.internalCallbacks.length=0;for(const p of s)p()}ngOnDestroy(){this.handler?.destroy(),this.handler=null,this.internalCallbacks.length=0}static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>new i})}return i})();function Ln(i){return!!Ir(i)}function Er(i,a,s){let p=s?i.styles:null,E=s?i.classes:null,P=0;if(null!==a)for(let K=0;K0&&Rp(i,s,P.join(" "))}}(ui,ws,Fi,p),void 0!==s&&function V1(i,a,s){const p=i.projection=[];for(let E=0;E{class i{static#e=this.__NG_ELEMENT_ID__=Pd}return i})();function Pd(){return $a(jr(),Ii())}const Mn=ko,dr=class extends Mn{constructor(a,s,p){super(),this._lContainer=a,this._hostTNode=s,this._hostLView=p}get element(){return $l(this._hostTNode,this._hostLView)}get injector(){return new to(this._hostTNode,this._hostLView)}get parentInjector(){const a=Wl(this._hostTNode,this._hostLView);if(hl(a)){const s=ul(a,this._hostLView),p=Sc(a);return new to(s[Bi].data[p+8],s)}return new to(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(a){const s=yr(this._lContainer);return null!==s&&s[a]||null}get length(){return this._lContainer.length-ea}createEmbeddedView(a,s,p){let E,P;"number"==typeof p?E=p:null!=p&&(E=p.index,P=p.injector);const K=F1(this._lContainer,a.ssrId),le=a.createEmbeddedViewImpl(s||{},P,K);return this.insertImpl(le,E,Od(this._hostTNode,K)),le}createComponent(a,s,p,E,P){const K=a&&!function gn(i){return"function"==typeof i}(a);let le;if(K)le=s;else{const bi=s||{};le=bi.index,p=bi.injector,E=bi.projectableNodes,P=bi.environmentInjector||bi.ngModuleRef}const Se=K?a:new Do(Vn(a)),Je=p||this.parentInjector;if(!P&&null==Se.ngModule){const Fi=(K?Je:this.parentInjector).get(So,null);Fi&&(P=Fi)}const vt=Vn(Se.componentType??{}),Bt=F1(this._lContainer,vt?.id??null),ui=Se.create(Je,E,Bt?.firstChild??null,P);return this.insertImpl(ui.hostView,le,Od(this._hostTNode,Bt)),ui}insert(a,s){return this.insertImpl(a,s,!0)}insertImpl(a,s,p){const E=a._lView;if(function Wt(i){return ba(i[fr])}(E)){const le=this.indexOf(a);if(-1!==le)this.detach(le);else{const Se=E[fr],Je=new dr(Se,Se[fa],Se[fr]);Je.detach(Je.indexOf(a))}}const P=this._adjustIndex(s),K=this._lContainer;return S1(K,E,P,p),a.attachToViewContainerRef(),rs(tn(K),P,a),a}move(a,s){return this.insert(a,s)}indexOf(a){const s=yr(this._lContainer);return null!==s?s.indexOf(a):-1}remove(a){const s=this._adjustIndex(a,-1),p=kd(this._lContainer,s);p&&(Ga(tn(this._lContainer),s),vo(p[Bi],p))}detach(a){const s=this._adjustIndex(a,-1),p=kd(this._lContainer,s);return p&&null!=Ga(tn(this._lContainer),s)?new Ys(p):null}_adjustIndex(a,s=0){return a??this.length+s}};function yr(i){return i[8]}function tn(i){return i[8]||(i[8]=[])}function $a(i,a){let s;const p=a[i.index];return ba(p)?s=p:(s=Kp(p,a,null,i),a[i.index]=s,i3(a,s)),ps(s,a,i,p),new dr(s,i,a)}let ps=function Qa(i,a,s,p){if(i[Xo])return;let E;E=8&s.type?wr(p):function Wr(i,a){const s=i[Wn],p=s.createComment(""),E=po(a,i);return E1(s,Qf(s,E),p,function t5(i,a){return i.nextSibling(a)}(s,E),!1),p}(a,s),i[Xo]=E},Vo=()=>!1;class xm{constructor(a){this.queryList=a,this.matches=null}clone(){return new xm(this.queryList)}setDirty(){this.queryList.setDirty()}}class T6{constructor(a=[]){this.queries=a}createEmbeddedView(a){const s=a.queries;if(null!==s){const p=null!==a.contentQueries?a.contentQueries[0]:s.length,E=[];for(let P=0;Pa.trim())}(a):a}}class D6{constructor(a=[]){this.queries=a}elementStart(a,s){for(let p=0;p0)p.push(K[le/2]);else{const Je=P[le+1],vt=a[-Se];for(let Bt=ea;Bt(y(a),a.value);return s[l]=a,s}(i),p=s[l];return a?.equal&&(p.equal=a.equal),s.set=E=>N(p,E),s.update=E=>function ne(i,a){W()||k(),N(i,a(i.value))}(p,E),s.asReadonly=Q5.bind(s),s}function Q5(){const i=this[l];if(void 0===i.readonlyFn){const a=()=>this();a[l]=i,i.readonlyFn=a}return i.readonlyFn}function Z5(i){return R6(i)&&"function"==typeof i.set}function H6(i){let a=function a7(i){return Object.getPrototypeOf(i.prototype).constructor}(i.type),s=!0;const p=[i];for(;a;){let E;if(En(i))E=a.\u0275cmp||a.\u0275dir;else{if(a.\u0275cmp)throw new be(903,!1);E=a.\u0275dir}if(E){if(s){p.push(E);const K=i;K.inputs=Sm(i.inputs),K.inputTransforms=Sm(i.inputTransforms),K.declaredInputs=Sm(i.declaredInputs),K.outputs=Sm(i.outputs);const le=E.hostBindings;le&&M3(i,le);const Se=E.viewQuery,Je=E.contentQueries;if(Se&&Ib(i,Se),Je&&Rb(i,Je),z6(i,E),oe(i.outputs,E.outputs),En(E)&&E.data.animation){const vt=i.data;vt.animation=(vt.animation||[]).concat(E.data.animation)}}const P=E.features;if(P)for(let K=0;K=0;p--){const E=i[p];E.hostVars=a+=E.hostVars,E.hostAttrs=Or(E.hostAttrs,s=Or(s,E.hostAttrs))}}(p)}function z6(i,a){for(const s in a.inputs){if(!a.inputs.hasOwnProperty(s)||i.inputs.hasOwnProperty(s))continue;const p=a.inputs[s];if(void 0!==p&&(i.inputs[s]=p,i.declaredInputs[s]=a.declaredInputs[s],null!==a.inputTransforms)){const E=Array.isArray(p)?p[0]:p;if(!a.inputTransforms.hasOwnProperty(E))continue;i.inputTransforms??={},i.inputTransforms[E]=a.inputTransforms[E]}}}function Sm(i){return i===qr?{}:i===Bn?[]:i}function Ib(i,a){const s=i.viewQuery;i.viewQuery=s?(p,E)=>{a(p,E),s(p,E)}:a}function Rb(i,a){const s=i.contentQueries;i.contentQueries=s?(p,E,P)=>{a(p,E,P),s(p,E,P)}:a}function M3(i,a){const s=i.hostBindings;i.hostBindings=s?(p,E)=>{a(p,E),s(p,E)}:a}function G6(i){const a=i.inputConfig,s={};for(const p in a)if(a.hasOwnProperty(p)){const E=a[p];Array.isArray(E)&&E[3]&&(s[p]=E[3])}i.inputTransforms=s}class u0{}class c7{}function Vb(i,a){return new j6(i,a??null,[])}class j6 extends u0{constructor(a,s,p){super(),this._parent=s,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new aa(this);const E=Ir(a);this._bootstrapComponents=An(E.bootstrap),this._r3Injector=W0(a,s,[{provide:u0,useValue:this},{provide:du,useValue:this.componentFactoryResolver},...p],tt(a),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(a)}get injector(){return this._r3Injector}destroy(){const a=this._r3Injector;!a.destroyed&&a.destroy(),this.destroyCbs.forEach(s=>s()),this.destroyCbs=null}onDestroy(a){this.destroyCbs.push(a)}}class W6 extends c7{constructor(a){super(),this.moduleType=a}create(a){return new j6(this.moduleType,a,[])}}class X6 extends u0{constructor(a){super(),this.componentFactoryResolver=new aa(this),this.instance=null;const s=new Os([...a.providers,{provide:u0,useValue:this},{provide:du,useValue:this.componentFactoryResolver}],a.parent||os(),a.debugName,new Set(["environment"]));this.injector=s,a.runEnvironmentInitializers&&s.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(a){this.injector.onDestroy(a)}}function Y6(i,a,s=null){return new X6({providers:i,parent:a,debugName:s,runEnvironmentInitializers:!0}).injector}let B1=(()=>{class i{constructor(){this.taskId=0,this.pendingTasks=new Set,this.hasPendingTasks=new fe.t(!1)}get _hasPendingTasks(){return this.hasPendingTasks.value}add(){this._hasPendingTasks||this.hasPendingTasks.next(!0);const s=this.taskId++;return this.pendingTasks.add(s),s}remove(s){this.pendingTasks.delete(s),0===this.pendingTasks.size&&this._hasPendingTasks&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this._hasPendingTasks&&this.hasPendingTasks.next(!1)}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function E3(i){return!!K6(i)&&(Array.isArray(i)||!(i instanceof Map)&&Symbol.iterator in i)}function K6(i){return null!==i&&("function"==typeof i||"object"==typeof i)}function Sl(i,a,s){return i[a]=s}function Lo(i,a,s){return!Object.is(i[a],s)&&(i[a]=s,!0)}function U1(i,a,s,p){const E=Lo(i,a,s);return Lo(i,a+1,p)||E}function Am(i,a,s,p,E){const P=U1(i,a,s,p);return Lo(i,a+2,E)||P}function T3(i,a,s,p,E,P,K,le,Se,Je){const vt=s+kn,Bt=a.firstCreatePass?function f7(i,a,s,p,E,P,K,le,Se){const Je=a.consts,vt=Q2(a,i,4,K||null,le||null);t3(a,s,vt,qa(Je,Se)),r2(a,vt);const Bt=vt.tView=U4(2,vt,p,E,P,a.directiveRegistry,a.pipeRegistry,null,a.schemas,Je,null);return null!==a.queries&&(a.queries.template(a,vt),Bt.queries=a.queries.embeddedTView(vt)),vt}(vt,a,i,p,E,P,K,le,Se):a.data[vt];Ia(Bt,!1);const ti=m7(a,i,Bt,s);Yd()&&Zf(a,i,ti,Bt),Zo(ti,i);const ui=Kp(ti,i,ti,Bt);return i[vt]=ui,i3(i,ui),function Kn(i,a,s){return Vo(i,a,s)}(ui,Bt,i),Ja(Bt)&&J2(a,i,Bt),null!=Se&&z4(i,Bt,Je),Bt}function mu(i,a,s,p,E,P,K,le){const Se=Ii(),Je=ur();return T3(Se,Je,i,a,s,p,E,qa(Je.consts,P),K,le),mu}let m7=function p7(i,a,s,p){return Ec(!0),a[Wn].createComment("")};function rg(i,a,s,p){const E=Ii();return Lo(E,us(),a)&&(ur(),xl(Pr(),E,i,a,s,p)),rg}function xu(i,a,s,p){return Lo(i,us(),s)?a+_i(s)+p:lr}function W1(i,a,s,p,E,P){const le=U1(i,tc(),s,E);return Mc(2),le?a+_i(s)+p+_i(E)+P:lr}function wu(i,a,s,p,E,P,K,le,Se,Je){const Bt=function Jc(i,a,s,p,E,P){const K=U1(i,a,s,p);return U1(i,a+2,E,P)||K}(i,tc(),s,E,K,Se);return Mc(4),Bt?a+_i(s)+p+_i(E)+P+_i(K)+le+_i(Se)+Je:lr}function Vm(i,a){return i<<17|a<<2}function Y1(i){return i>>17&32767}function lg(i){return 2|i}function p0(i){return(131068&i)>>2}function dg(i,a){return-131069&i|a<<2}function hg(i){return 1|i}function K7(i,a,s,p){const E=i[s+1],P=null===a;let K=p?Y1(E):p0(E),le=!1;for(;0!==K&&(!1===le||P);){const Je=i[K+1];ug(i[K],a)&&(le=!0,i[K+1]=p?hg(Je):lg(Je)),K=p?Y1(Je):p0(Je)}le&&(i[s+1]=p?lg(E):hg(E))}function ug(i,a){return null===i||null==a||(Array.isArray(i)?i[1]:i)===a||!(!Array.isArray(i)||"string"!=typeof a)&&Lr(i,a)>=0}const es={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function $7(i){return i.substring(es.key,es.keyEnd)}function fg(i,a){const s=es.textEnd;return s===a?-1:(a=es.keyEnd=function q7(i,a,s){for(;a32;)a++;return a}(i,es.key=a,s),Tu(i,a,s))}function Tu(i,a,s){for(;a=0;s=fg(a,s))ga(i,$7(a),!0)}function Tl(i,a,s,p){const E=Ii(),P=ur(),K=Mc(2);P.firstUpdatePass&&n_(P,i,K,p),a!==lr&&Lo(E,K,a)&&a_(P,P.data[Va()],E,E[Wn],i,E[K+1]=function Ty(i,a){return null==i||""===i||("string"==typeof a?i+=a:"object"==typeof i&&(i=tt(Ws(i)))),i}(a,s),p,K)}function Dl(i,a,s,p){const E=ur(),P=Mc(2);E.firstUpdatePass&&n_(E,null,P,p);const K=Ii();if(s!==lr&&Lo(K,P,s)){const le=E.data[Va()];if(o_(le,p)&&!zm(E,P)){let Se=p?le.classesWithoutHost:le.stylesWithoutHost;null!==Se&&(s=$t(Se,s||"")),pg(E,le,K,s,p)}else!function Sy(i,a,s,p,E,P,K,le){E===lr&&(E=Bn);let Se=0,Je=0,vt=0=i.expandoStartIndex}function n_(i,a,s,p){const E=i.data;if(null===E[s+1]){const P=E[Va()],K=zm(i,s);o_(P,p)&&null===a&&!K&&(a=!1),a=function xy(i,a,s,p){const E=Ca(i);let P=p?a.residualClasses:a.residualStyles;if(null===E)0===(p?a.classBindings:a.styleBindings)&&(s=L3(s=bg(null,i,a,s,p),a.attrs,p),P=null);else{const K=a.directiveStylingLast;if(-1===K||i[K]!==E)if(s=bg(E,i,a,s,p),null===P){let Se=function Cy(i,a,s){const p=s?a.classBindings:a.styleBindings;if(0!==p0(p))return i[Y1(p)]}(i,a,p);void 0!==Se&&Array.isArray(Se)&&(Se=bg(null,i,a,Se[1],p),Se=L3(Se,a.attrs,p),function wy(i,a,s,p){i[Y1(s?a.classBindings:a.styleBindings)]=p}(i,a,p,Se))}else P=function My(i,a,s){let p;const E=a.directiveEnd;for(let P=1+a.directiveStylingLast;P0)&&(Je=!0)):vt=s,E)if(0!==Se){const ti=Y1(i[le+1]);i[p+1]=Vm(ti,le),0!==ti&&(i[ti+1]=dg(i[ti+1],p)),i[le+1]=function my(i,a){return 131071&i|a<<17}(i[le+1],p)}else i[p+1]=Vm(le,0),0!==le&&(i[le+1]=dg(i[le+1],p)),le=p;else i[p+1]=Vm(Se,0),0===le?le=p:i[Se+1]=dg(i[Se+1],p),Se=p;Je&&(i[p+1]=lg(i[p+1])),K7(i,vt,p,!0),K7(i,vt,p,!1),function Y7(i,a,s,p,E){const P=E?i.residualClasses:i.residualStyles;null!=P&&"string"==typeof a&&Lr(P,a)>=0&&(s[p+1]=hg(s[p+1]))}(a,vt,i,p,P),K=Vm(le,Se),P?a.classBindings=K:a.styleBindings=K}(E,P,a,s,K,p)}}function bg(i,a,s,p,E){let P=null;const K=s.directiveEnd;let le=s.directiveStylingLast;for(-1===le?le=s.directiveStart:le++;le0;){const Se=i[E],Je=Array.isArray(Se),vt=Je?Se[1]:Se,Bt=null===vt;let ti=s[E+1];ti===lr&&(ti=Bt?Bn:void 0);let ui=Bt?Za(ti,p):vt===p?ti:void 0;if(Je&&!Bm(ui)&&(ui=Za(Se,p)),Bm(ui)&&(le=ui,K))return le;const bi=i[E+1];E=K?Y1(bi):p0(bi)}if(null!==a){let Se=P?a.residualClasses:a.residualStyles;null!=Se&&(le=Za(Se,p))}return le}function Bm(i){return void 0!==i}function o_(i,a){return!!(i.flags&(a?8:16))}function s_(i,a,s){Dl(ga,cd,xu(Ii(),i,a,s),!0)}class Oy{destroy(a){}updateValue(a,s){}swap(a,s){const p=Math.min(a,s),E=Math.max(a,s),P=this.detach(E);if(E-p>1){const K=this.detach(p);this.attach(p,P),this.attach(E,K)}else this.attach(p,P)}move(a,s){this.attach(s,this.detach(a))}}function I3(i,a,s,p,E){return i===s&&Object.is(a,p)?1:Object.is(E(i,a),E(s,p))?-1:0}function yg(i,a,s,p){return!(void 0===a||!a.has(p)||(i.attach(s,a.get(p)),a.delete(p),0))}function h_(i,a,s,p,E){if(yg(i,a,p,s(p,E)))i.updateValue(p,E);else{const P=i.create(p,E);i.attach(p,P)}}function u_(i,a,s,p){const E=new Set;for(let P=a;P<=s;P++)E.add(p(P,i.at(P)));return E}class f_{constructor(){this.kvMap=new Map,this._vMap=void 0}has(a){return this.kvMap.has(a)}delete(a){if(!this.has(a))return!1;const s=this.kvMap.get(a);return void 0!==this._vMap&&this._vMap.has(s)?(this.kvMap.set(a,this._vMap.get(s)),this._vMap.delete(s)):this.kvMap.delete(a),!0}get(a){return this.kvMap.get(a)}set(a,s){if(this.kvMap.has(a)){let p=this.kvMap.get(a);void 0===this._vMap&&(this._vMap=new Map);const E=this._vMap;for(;E.has(p);)p=E.get(p);E.set(p,s)}else this.kvMap.set(a,s)}forEach(a){for(let[s,p]of this.kvMap)if(a(p,s),void 0!==this._vMap){const E=this._vMap;for(;E.has(p);)p=E.get(p),a(p,s)}}}function m_(i,a){oc("NgControlFlow");const s=Ii(),p=us(),E=s[p]!==lr?s[p]:-1,P=-1!==E?Um(s,kn+E):void 0;if(Lo(s,p,i)){const le=x(null);try{if(void 0!==P&&n3(P,0),-1!==i){const Se=kn+i,Je=Um(s,Se),vt=wg(s[Bi],Se),Bt=F1(Je,vt.tView.ssrId);S1(Je,Rd(s,vt,a,{dehydratedView:Bt}),0,Od(vt,Bt))}}finally{x(le)}}else if(void 0!==P){const le=Cs(P,0);void 0!==le&&(le[Ur]=a)}}class Ny{constructor(a,s,p){this.lContainer=a,this.$implicit=s,this.$index=p}get $count(){return this.lContainer.length-ea}}function xg(i,a){return a}class Py{constructor(a,s,p){this.hasEmptyBlock=a,this.trackByFn=s,this.liveCollection=p}}function g_(i,a,s,p,E,P,K,le,Se,Je,vt,Bt,ti){oc("NgControlFlow");const ui=Ii(),bi=ur(),Fi=void 0!==Se,qi=Ii(),ln=le?K.bind(qi[Qr][Ur]):K,Hi=new Py(Fi,ln);qi[kn+i]=Hi,T3(ui,bi,i+1,a,s,p,E,qa(bi.consts,P)),Fi&&T3(ui,bi,i+2,Se,Je,vt,Bt,qa(bi.consts,ti))}class Hy extends Oy{constructor(a,s,p){super(),this.lContainer=a,this.hostLView=s,this.templateTNode=p,this.operationsCounter=void 0,this.needsIndexUpdate=!1}get length(){return this.lContainer.length-ea}at(a){return this.getLView(a)[Ur].$implicit}attach(a,s){const p=s[Ya];this.needsIndexUpdate||=a!==this.length,S1(this.lContainer,s,a,Od(this.templateTNode,p))}detach(a){return this.needsIndexUpdate||=a!==this.length-1,function zy(i,a){return kd(i,a)}(this.lContainer,a)}create(a,s){const p=F1(this.lContainer,this.templateTNode.tView.ssrId),E=Rd(this.hostLView,this.templateTNode,new Ny(this.lContainer,s,a),{dehydratedView:p});return this.operationsCounter?.recordCreate(),E}destroy(a){vo(a[Bi],a),this.operationsCounter?.recordDestroy()}updateValue(a,s){this.getLView(a)[Ur].$implicit=s}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let a=0;a{i.destroy(Se)})}(Se,i,P.trackByFn),Se.updateIndexes(),P.hasEmptyBlock){const Je=us(),vt=0===Se.length;if(Lo(p,Je,vt)){const Bt=s+2,ti=Um(p,Bt);if(vt){const ui=wg(E,Bt),bi=F1(ti,ui.tView.ssrId);S1(ti,Rd(p,ui,void 0,{dehydratedView:bi}),0,Od(ui,bi))}else n3(ti,0)}}}finally{x(a)}}function Um(i,a){return i[a]}function wg(i,a){return ec(i,a)}function R3(i,a,s,p){const E=Ii(),P=ur(),K=kn+i,le=E[Wn],Se=P.firstCreatePass?function Uy(i,a,s,p,E,P){const K=a.consts,Se=Q2(a,i,2,p,qa(K,E));return t3(a,s,Se,qa(K,P)),null!==Se.attrs&&Er(Se,Se.attrs,!1),null!==Se.mergedAttrs&&Er(Se,Se.mergedAttrs,!0),null!==a.queries&&a.queries.elementStart(a,Se),Se}(K,P,E,a,s,p):P.data[K],Je=__(P,E,Se,le,a,i);E[K]=Je;const vt=Ja(Se);return Ia(Se,!0),Jf(le,Je,Se),!function fu(i){return!(32&~i.flags)}(Se)&&Yd()&&Zf(P,E,Je,Se),0===function Ud(){return Nn.lFrame.elementDepthCount}()&&Zo(Je,E),function Uu(){Nn.lFrame.elementDepthCount++}(),vt&&(J2(P,E,Se),H4(P,Se,E)),null!==p&&z4(E,Se),R3}function Gm(){let i=jr();ds()?Ra():(i=i.parent,Ia(i,!1));const a=i;(function $3(i){return Nn.skipHydrationRootTNode===i})(a)&&function J3(){Nn.skipHydrationRootTNode=null}(),function Gu(){Nn.lFrame.elementDepthCount--}();const s=ur();return s.firstCreatePass&&(r2(s,i),Ts(i)&&s.queries.elementEnd(i)),null!=a.classesWithoutHost&&function Ju(i){return!!(8&i.flags)}(a)&&pg(s,a,Ii(),a.classesWithoutHost,!0),null!=a.stylesWithoutHost&&function qu(i){return!!(16&i.flags)}(a)&&pg(s,a,Ii(),a.stylesWithoutHost,!1),Gm}function jm(i,a,s,p){return R3(i,a,s,p),Gm(),jm}let __=(i,a,s,p,E,P)=>(Ec(!0),Gn(p,E,function k0(){return Nn.lFrame.currentNamespace}()));function Wm(i,a,s){const p=Ii(),E=ur(),P=i+kn,K=E.firstCreatePass?function jy(i,a,s,p,E){const P=a.consts,K=qa(P,p),le=Q2(a,i,8,"ng-container",K);return null!==K&&Er(le,K,!0),t3(a,s,le,qa(P,E)),null!==a.queries&&a.queries.elementStart(a,le),le}(P,E,p,a,s):E.data[P];Ia(K,!0);const le=b_(E,p,K,i);return p[P]=le,Yd()&&Zf(E,p,le,K),Zo(le,p),Ja(K)&&(J2(E,p,K),H4(E,K,p)),null!=s&&z4(p,K),Wm}function Xm(){let i=jr();const a=ur();return ds()?Ra():(i=i.parent,Ia(i,!1)),a.firstCreatePass&&(r2(a,i),Ts(i)&&a.queries.elementEnd(i)),Xm}function Mg(i,a,s){return Wm(i,a,s),Xm(),Mg}let b_=(i,a,s,p)=>(Ec(!0),On(a[Wn],""));function x_(){return Ii()}function Eg(i,a,s){const p=Ii();return Lo(p,us(),a)&&fs(ur(),Pr(),p,i,a,p[Wn],s,!0),Eg}function Sg(i,a,s){const p=Ii();if(Lo(p,us(),a)){const P=ur(),K=Pr();fs(P,K,p,i,a,Jp(Ca(P.data),K,p),s,!0)}return Sg}const K1=void 0;var Yy=["en",[["a","p"],["AM","PM"],K1],[["AM","PM"],K1,K1],[["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"]],K1,[["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"]],K1,[["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}",K1,"{1} 'at' {0}",K1],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function Xy(i){const s=Math.floor(Math.abs(i)),p=i.toString().replace(/^[^.]*\.?/,"").length;return 1===s&&0===p?1:5}];let Vd={};function Tg(i){const a=function Ky(i){return i.toLowerCase().replace(/_/g,"-")}(i);let s=w_(a);if(s)return s;const p=a.split("-")[0];if(s=w_(p),s)return s;if("en"===p)return Yy;throw new be(701,!1)}function C_(i){return Tg(i)[ku.PluralCase]}function w_(i){return i in Vd||(Vd[i]=Yt.ng&&Yt.ng.common&&Yt.ng.common.locales&&Yt.ng.common.locales[i]),Vd[i]}var ku=function(i){return i[i.LocaleId=0]="LocaleId",i[i.DayPeriodsFormat=1]="DayPeriodsFormat",i[i.DayPeriodsStandalone=2]="DayPeriodsStandalone",i[i.DaysFormat=3]="DaysFormat",i[i.DaysStandalone=4]="DaysStandalone",i[i.MonthsFormat=5]="MonthsFormat",i[i.MonthsStandalone=6]="MonthsStandalone",i[i.Eras=7]="Eras",i[i.FirstDayOfWeek=8]="FirstDayOfWeek",i[i.WeekendRange=9]="WeekendRange",i[i.DateFormat=10]="DateFormat",i[i.TimeFormat=11]="TimeFormat",i[i.DateTimeFormat=12]="DateTimeFormat",i[i.NumberSymbols=13]="NumberSymbols",i[i.NumberFormats=14]="NumberFormats",i[i.CurrencyCode=15]="CurrencyCode",i[i.CurrencySymbol=16]="CurrencySymbol",i[i.CurrencyName=17]="CurrencyName",i[i.Currencies=18]="Currencies",i[i.Directionality=19]="Directionality",i[i.PluralCase=20]="PluralCase",i[i.ExtraData=21]="ExtraData",i}(ku||{});const Lu="en-US";let Dg=Lu;let K_=(i,a,s)=>{};function Vg(i,a,s,p){const E=Ii(),P=ur(),K=jr();return Bg(P,E,E[Wn],K,i,a,p),Vg}function Hg(i,a){const s=jr(),p=Ii(),E=ur();return Bg(E,p,Jp(Ca(E.data),s,p),s,i,a),Hg}function Bg(i,a,s,p,E,P,K){const le=Ja(p),Je=i.firstCreatePass&&Zp(i),vt=a[Ur],Bt=Qp(a);let ti=!0;if(3&p.type||K){const Fi=po(p,a),qi=K?K(Fi):Fi,ln=Bt.length,Hi=K?Jr=>K(wr(Jr[p.index])):p.index;K_(Fi,E,P);let er=null;if(!K&&le&&(er=function zg(i,a,s,p){const E=i.cleanup;if(null!=E)for(let P=0;PSe?le[Se]:null}"string"==typeof K&&(P+=2)}return null}(i,a,E,p.index)),null!==er)(er.__ngLastListenerFn__||er).__ngNextListenerFn__=P,er.__ngLastListenerFn__=P,ti=!1;else{P=Z_(p,a,vt,P);const Jr=s.listen(qi,E,P);Bt.push(P,Jr),Je&&Je.push(E,Hi,ln,ln+1)}}else P=Z_(p,a,vt,P);const ui=p.outputs;let bi;if(ti&&null!==ui&&(bi=ui[E])){const Fi=bi.length;if(Fi)for(let qi=0;qi-1?$o(i.index,a):a,5);let le=Q_(a,s,p,P),Se=E.__ngNextListenerFn__;for(;Se;)le=Q_(a,s,Se,P)&&le,Se=Se.__ngNextListenerFn__;return le}}function Ug(i=1){return function Qu(i){return(Nn.lFrame.contextLView=function Bu(i,a){for(;i>0;)a=a[yc],i--;return a}(i,Nn.lFrame.contextLView))[Ur]}(i)}function xx(i,a){let s=null;const p=function Ue(i){const a=i.attrs;if(null!=a){const s=a.indexOf(5);if(!(1&s))return a[s+1]}return null}(i);for(let E=0;E(Ec(!0),function X2(i,a){return i.createText(a)}(a[Wn],p));function t8(i){return tp("",i,""),t8}function tp(i,a,s){const p=Ii(),E=xu(p,i,a,s);return E!==lr&&Zc(p,Va(),E),tp}function ip(i,a,s,p,E){const P=Ii(),K=W1(P,i,a,s,p,E);return K!==lr&&Zc(P,Va(),K),ip}function i8(i,a,s,p,E,P,K){const le=Ii(),Se=function Cu(i,a,s,p,E,P,K,le){const Je=Am(i,tc(),s,E,K);return Mc(3),Je?a+_i(s)+p+_i(E)+P+_i(K)+le:lr}(le,i,a,s,p,E,P,K);return Se!==lr&&Zc(le,Va(),Se),i8}function np(i,a,s,p,E,P,K,le,Se){const Je=Ii(),vt=wu(Je,i,a,s,p,E,P,K,le,Se);return vt!==lr&&Zc(Je,Va(),vt),np}function a8(i,a,s){Z5(a)&&(a=a());const p=Ii();return Lo(p,us(),a)&&fs(ur(),Pr(),p,i,a,p[Wn],s,!1),a8}function rp(i,a){const s=Z5(i);return s&&i.set(a),s}function o8(i,a){const s=Ii(),p=ur(),E=jr();return Bg(p,s,s[Wn],E,i,a),o8}function s8(i,a,s,p,E){if(i=dt(i),Array.isArray(i))for(let P=0;P>20;if(Eo(i)||!i.multi){const ui=new Bc(Je,E,$2),bi=c8(Se,a,E?vt:vt+ti,Bt);-1===bi?(fl(Uc(le,K),P,Se),g0(P,i,a.length),a.push(Se),le.directiveStart++,le.directiveEnd++,E&&(le.providerIndexes+=1048576),s.push(ui),K.push(ui)):(s[bi]=ui,K[bi]=ui)}else{const ui=c8(Se,a,vt+ti,Bt),bi=c8(Se,a,vt,vt+ti),qi=bi>=0&&s[bi];if(E&&!qi||!E&&!(ui>=0&&s[ui])){fl(Uc(le,K),P,Se);const ln=function Ox(i,a,s,p,E){const P=new Bc(i,s,$2);return P.multi=[],P.index=a,P.componentProviders=0,xv(P,E,p&&!s),P}(E?Cv:Rx,s.length,E,p,Je);!E&&qi&&(s[bi].providerFactory=ln),g0(P,i,a.length,0),a.push(Se),le.directiveStart++,le.directiveEnd++,E&&(le.providerIndexes+=1048576),s.push(ln),K.push(ln)}else g0(P,i,ui>-1?ui:bi,xv(s[E?bi:ui],Je,!E&&p));!E&&p&&qi&&s[bi].componentProviders++}}}function g0(i,a,s,p){const E=Eo(a),P=function pc(i){return!!i.useClass}(a);if(E||P){const Se=(P?dt(a.useClass):a).prototype.ngOnDestroy;if(Se){const Je=i.destroyHooks||(i.destroyHooks=[]);if(!E&&a.multi){const vt=Je.indexOf(s);-1===vt?Je.push(s,[p,Se]):Je[vt+1].push(p,Se)}else Je.push(s,Se)}}}function xv(i,a,s){return s&&i.componentProviders++,i.multi.push(a)-1}function c8(i,a,s,p){for(let E=s;E{s.providersResolver=(p,E)=>function Ix(i,a,s){const p=ur();if(p.firstCreatePass){const E=En(i);s8(s,p.data,p.blueprint,E,!0),s8(a,p.data,p.blueprint,E,!1)}}(p,E?E(i):i,a)}}let Fx=(()=>{class i{constructor(s){this._injector=s,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(s){if(!s.standalone)return null;if(!this.cachedInjectors.has(s)){const p=_s(0,s.type),E=p.length>0?Y6([p],this._injector,`Standalone[${s.type.name}]`):null;this.cachedInjectors.set(s,E)}return this.cachedInjectors.get(s)}ngOnDestroy(){try{for(const s of this.cachedInjectors.values())null!==s&&s.destroy()}finally{this.cachedInjectors.clear()}}static#e=this.\u0275prov=Li({token:i,providedIn:"environment",factory:()=>new i(zn(So))})}return i})();function wv(i){oc("NgStandalone"),i.getStandaloneInjector=a=>a.get(Fx).getOrCreateStandaloneInjector(i)}function Mv(i,a,s){const p=hs()+i,E=Ii();return E[p]===lr?Sl(E,p,s?a.call(s):a()):function S3(i,a){return i[a]}(E,p)}function Ev(i,a,s,p){return Ou(Ii(),hs(),i,a,s,p)}function h8(i,a,s,p,E){return Tv(Ii(),hs(),i,a,s,p,E)}function Sv(i,a,s,p,E,P){return Dv(Ii(),hs(),i,a,s,p,E,P)}function P3(i,a){const s=i[a];return s===lr?void 0:s}function Ou(i,a,s,p,E,P){const K=a+s;return Lo(i,K,E)?Sl(i,K+1,P?p.call(P,E):p(E)):P3(i,K+1)}function Tv(i,a,s,p,E,P,K){const le=a+s;return U1(i,le,E,P)?Sl(i,le+2,K?p.call(K,E,P):p(E,P)):P3(i,le+2)}function Dv(i,a,s,p,E,P,K,le){const Se=a+s;return Am(i,Se,E,P,K)?Sl(i,Se+3,le?p.call(le,E,P,K):p(E,P,K)):P3(i,Se+3)}function Lv(i,a){const s=ur();let p;const E=i+kn;s.firstCreatePass?(p=function jx(i,a){if(a)for(let s=a.length-1;s>=0;s--){const p=a[s];if(i===p.name)return p}}(a,s.pipeRegistry),s.data[E]=p,p.onDestroy&&(s.destroyHooks??=[]).push(E,p.onDestroy)):p=s.data[E];const P=p.factory||(p.factory=kr(p.type)),le=nr($2);try{const Se=hd(!1),Je=P();return hd(Se),function Mx(i,a,s,p){s>=i.data.length&&(i.data[s]=null,i.blueprint[s]=null),a[s]=p}(s,Ii(),E,Je),Je}finally{nr(le)}}function Iv(i,a,s){const p=i+kn,E=Ii(),P=Hl(E,p);return V3(E,p)?Ou(E,hs(),a,P.transform,s,P):P.transform(s)}function Rv(i,a,s,p){const E=i+kn,P=Ii(),K=Hl(P,E);return V3(P,E)?Tv(P,hs(),a,K.transform,s,p,K):K.transform(s,p)}function Ov(i,a,s,p,E){const P=i+kn,K=Ii(),le=Hl(K,P);return V3(K,P)?Dv(K,hs(),a,le.transform,s,p,E,le):le.transform(s,p,E)}function V3(i,a){return i[Bi].data[a].pure}function Nv(i,a){return A1(i,a)}class C8{constructor(a){this.full=a;const s=a.split(".");this.major=s[0],this.minor=s[1],this.patch=s.slice(2).join(".")}}let Qv=(()=>{class i{log(s){console.log(s)}warn(s){console.warn(s)}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();const h9=new Ni(""),E8=new Ni("");let S8,SC=(()=>{class i{constructor(s,p,E){this._ngZone=s,this.registry=p,this._isZoneStable=!0,this._callbacks=[],this.taskTrackingZone=null,S8||(function TC(i){S8=i}(E),E.addToWindow(p)),this._watchAngularEvents(),s.run(()=>{this.taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let s=this._callbacks.pop();clearTimeout(s.timeoutId),s.doneCb()}});else{let s=this.getPendingTasks();this._callbacks=this._callbacks.filter(p=>!p.updateCb||!p.updateCb(s)||(clearTimeout(p.timeoutId),!1))}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(s=>({source:s.source,creationLocation:s.creationLocation,data:s.data})):[]}addCallback(s,p,E){let P=-1;p&&p>0&&(P=setTimeout(()=>{this._callbacks=this._callbacks.filter(K=>K.timeoutId!==P),s()},p)),this._callbacks.push({doneCb:s,timeoutId:P,updateCb:E})}whenStable(s,p,E){if(E&&!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(s,p,E),this._runCallbacksIfReady()}registerApplication(s){this.registry.registerApplication(s,this)}unregisterApplication(s){this.registry.unregisterApplication(s)}findProviders(s,p,E){return[]}static#e=this.\u0275fac=function(p){return new(p||i)(zn(Ha),zn(u9),zn(E8))};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac})}return i})(),u9=(()=>{class i{constructor(){this._applications=new Map}registerApplication(s,p){this._applications.set(s,p)}unregisterApplication(s){this._applications.delete(s)}unregisterAllApplications(){this._applications.clear()}getTestability(s){return this._applications.get(s)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(s,p=!0){return S8?.findTestabilityInTree(this,s,p)??null}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();function T8(i){return!!i&&"function"==typeof i.then}function f9(i){return!!i&&"function"==typeof i.subscribe}const D8=new Ni("");let A8=(()=>{class i{constructor(){this.initialized=!1,this.done=!1,this.donePromise=new Promise((s,p)=>{this.resolve=s,this.reject=p}),this.appInits=hn(D8,{optional:!0})??[]}runInitializers(){if(this.initialized)return;const s=[];for(const E of this.appInits){const P=E();if(T8(P))s.push(P);else if(f9(P)){const K=new Promise((le,Se)=>{P.subscribe({complete:le,error:Se})});s.push(K)}}const p=()=>{this.done=!0,this.resolve()};Promise.all(s).then(()=>{p()}).catch(E=>{this.reject(E)}),0===s.length&&p(),this.initialized=!0}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const lp=new Ni("");function _9(i,a){return Array.isArray(a)?a.reduce(_9,i):{...i,...a}}let Al=(()=>{class i{constructor(){this._bootstrapListeners=[],this._runningTick=!1,this._destroyed=!1,this._destroyListeners=[],this._views=[],this.internalErrorHandler=hn(r1),this.afterRenderEffectManager=hn(ki),this.zonelessEnabled=hn(Nd),this.externalTestViews=new Set,this.beforeRender=new me.B,this.afterTick=new me.B,this.componentTypes=[],this.components=[],this.isStable=hn(B1).hasPendingTasks.pipe((0,ke.T)(s=>!s)),this._injector=hn(So)}get allViews(){return[...this.externalTestViews.keys(),...this._views]}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(s,p){const E=s instanceof v6;if(!this._injector.get(A8).done)throw!E&&so(s),new be(405,!1);let K;K=E?s:this._injector.get(du).resolveComponentFactory(s),this.componentTypes.push(K.componentType);const le=function p9(i){return i.isBoundToModule}(K)?void 0:this._injector.get(u0),Je=K.create(go.NULL,[],p||K.selector,le),vt=Je.location.nativeElement,Bt=Je.injector.get(h9,null);return Bt?.registerApplication(vt),Je.onDestroy(()=>{this.detachView(Je.hostView),B3(this.components,Je),Bt?.unregisterApplication(vt)}),this._loadComponent(Je),Je}tick(){this._tick(!0)}_tick(s){if(this._runningTick)throw new be(101,!1);const p=x(null);try{this._runningTick=!0,this.detectChangesInAttachedViews(s)}catch(E){this.internalErrorHandler(E)}finally{this._runningTick=!1,x(p),this.afterTick.next()}}detectChangesInAttachedViews(s){let p=null;this._injector.destroyed||(p=this._injector.get(b3,null,{optional:!0}));let E=0;const P=this.afterRenderEffectManager;for(;E<10;){const K=0===E;if(s||!K){this.beforeRender.next(K);for(let{_lView:le,notifyErrorHandler:Se}of this._views)DC(le,Se,K,this.zonelessEnabled)}else p?.begin?.(),p?.end?.();if(E++,P.executeInternalCallbacks(),!this.allViews.some(({_lView:le})=>al(le))&&(P.execute(),!this.allViews.some(({_lView:le})=>al(le))))break}}attachView(s){const p=s;this._views.push(p),p.attachToAppRef(this)}detachView(s){const p=s;B3(this._views,p),p.detachFromAppRef()}_loadComponent(s){this.attachView(s.hostView),this.tick(),this.components.push(s);const p=this._injector.get(lp,[]);[...this._bootstrapListeners,...p].forEach(E=>E(s))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(s=>s()),this._views.slice().forEach(s=>s.destroy())}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(s){return this._destroyListeners.push(s),()=>B3(this._destroyListeners,s)}destroy(){if(this._destroyed)throw new be(406,!1);const s=this._injector;s.destroy&&!s.destroyed&&s.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function B3(i,a){const s=i.indexOf(a);s>-1&&i.splice(s,1)}function DC(i,a,s,p){(s||al(i))&&n0(i,a,s&&!p?0:1)}class AC{constructor(a,s){this.ngModuleFactory=a,this.componentFactories=s}}let kC=(()=>{class i{compileModuleSync(s){return new W6(s)}compileModuleAsync(s){return Promise.resolve(this.compileModuleSync(s))}compileModuleAndAllComponentsSync(s){const p=this.compileModuleSync(s),P=An(Ir(s).declarations).reduce((K,le)=>{const Se=Vn(le);return Se&&K.push(new Do(Se)),K},[]);return new AC(p,P)}compileModuleAndAllComponentsAsync(s){return Promise.resolve(this.compileModuleAndAllComponentsSync(s))}clearCache(){}clearCacheFor(s){}getModuleId(s){}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),IC=(()=>{class i{constructor(){this.zone=hn(Ha),this.changeDetectionScheduler=hn(N1),this.applicationRef=hn(Al)}initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function hp({ngZoneFactory:i,ignoreChangesOutsideZone:a}){return i??=()=>new Ha(L8()),[{provide:Ha,useFactory:i},{provide:Da,multi:!0,useFactory:()=>{const s=hn(IC,{optional:!0});return()=>s.initialize()}},{provide:Da,multi:!0,useFactory:()=>{const s=hn(OC);return()=>{s.initialize()}}},{provide:r1,useFactory:RC},!0===a?{provide:_6,useValue:!0}:[]]}function RC(){const i=hn(Ha),a=hn(Bs);return s=>i.runOutsideAngular(()=>a.handleError(s))}function L8(i){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:i?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:i?.runCoalescing??!1}}let OC=(()=>{class i{constructor(){this.subscription=new ce.yU,this.initialized=!1,this.zone=hn(Ha),this.pendingTasks=hn(B1)}initialize(){if(this.initialized)return;this.initialized=!0;let s=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(s=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{null!==s&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(s),s=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{Ha.assertInAngularZone(),s??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),U3=(()=>{class i{constructor(){this.appRef=hn(Al),this.taskService=hn(B1),this.ngZone=hn(Ha),this.zonelessEnabled=hn(Nd),this.disableScheduling=hn(_6,{optional:!0})??!1,this.zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run,this.schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}],this.subscriptions=new ce.yU,this.cancelScheduledCallback=null,this.shouldRefreshViews=!1,this.useMicrotaskScheduler=!1,this.runningTick=!1,this.pendingRenderTaskId=null,this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()})),this.disableScheduling||=!this.zonelessEnabled&&(this.ngZone instanceof B||!this.zoneIsDefined)}notify(s){if(!this.zonelessEnabled&&5===s)return;switch(s){case 3:case 2:case 0:case 4:case 5:case 1:this.shouldRefreshViews=!0}if(!this.shouldScheduleTick())return;const p=this.useMicrotaskScheduler?E6:M6;this.pendingRenderTaskId=this.taskService.add(),this.zoneIsDefined?Zone.root.run(()=>{this.cancelScheduledCallback=p(()=>{this.tick(this.shouldRefreshViews)})}):this.cancelScheduledCallback=p(()=>{this.tick(this.shouldRefreshViews)})}shouldScheduleTick(){return!(this.disableScheduling||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Ha.isInAngularZone())}tick(s){if(this.runningTick||this.appRef.destroyed)return;const p=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick(s)},void 0,this.schedulerTickApplyArgs)}catch(E){throw this.taskService.remove(p),E}finally{this.cleanup()}this.useMicrotaskScheduler=!0,E6(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(p)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.shouldRefreshViews=!1,this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const s=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(s)}}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const G3=new Ni("",{providedIn:"root",factory:()=>hn(G3,rn.Optional|rn.SkipSelf)||function NC(){return typeof $localize<"u"&&$localize.locale||Lu}()}),PC=new Ni("",{providedIn:"root",factory:()=>"USD"}),O8=new Ni("");let C9=(()=>{class i{constructor(s){this._injector=s,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(s,p){const E=function Gt(i="zone.js",a){return"noop"===i?new B:"zone.js"===i?new Ha(a):i}(p?.ngZone,L8({eventCoalescing:p?.ngZoneEventCoalescing,runCoalescing:p?.ngZoneRunCoalescing}));return E.run(()=>{const P=p?.ignoreChangesOutsideZone,K=function zb(i,a,s){return new j6(i,a,s)}(s.moduleType,this.injector,[...hp({ngZoneFactory:()=>E,ignoreChangesOutsideZone:P}),{provide:N1,useExisting:U3}]),le=K.injector.get(Bs,null);return E.runOutsideAngular(()=>{const Se=E.onError.subscribe({next:Je=>{le.handleError(Je)}});K.onDestroy(()=>{B3(this._modules,K),Se.unsubscribe()})}),function g9(i,a,s){try{const p=s();return T8(p)?p.catch(E=>{throw a.runOutsideAngular(()=>i.handleError(E)),E}):p}catch(p){throw a.runOutsideAngular(()=>i.handleError(p)),p}}(le,E,()=>{const Se=K.injector.get(A8);return Se.runInitializers(),Se.donePromise.then(()=>(function S_(i){"string"==typeof i&&(Dg=i.toLowerCase().replace(/_/g,"-"))}(K.injector.get(G3,Lu)||Lu),this._moduleDoBootstrap(K),K))})})}bootstrapModule(s,p=[]){const E=_9({},p);return function LC(i,a,s){const p=new W6(s);return Promise.resolve(p)}(0,0,s).then(P=>this.bootstrapModuleFactory(P,E))}_moduleDoBootstrap(s){const p=s.injector.get(Al);if(s._bootstrapComponents.length>0)s._bootstrapComponents.forEach(E=>p.bootstrap(E));else{if(!s.instance.ngDoBootstrap)throw new be(-403,!1);s.instance.ngDoBootstrap(p)}this._modules.push(s)}onDestroy(s){this._destroyListeners.push(s)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new be(404,!1);this._modules.slice().forEach(p=>p.destroy()),this._destroyListeners.forEach(p=>p());const s=this._injector.get(O8,null);s&&(s.forEach(p=>p()),s.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static#e=this.\u0275fac=function(p){return new(p||i)(zn(go))};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})(),$1=null;const w9=new Ni("");function F8(i,a,s=[]){const p=`Platform: ${a}`,E=new Ni(p);return(P=[])=>{let K=N8();if(!K||K.injector.get(w9,!1)){const le=[...s,...P,{provide:E,useValue:!0}];i?i(le):function VC(i){if($1&&!$1.get(w9,!1))throw new be(400,!1);(function m9(){!function L(i){C=i}(()=>{throw new be(600,!1)})})(),$1=i;const a=i.get(C9);(function P8(i){i.get(lh,null)?.forEach(s=>s())})(i)}(function M9(i=[],a){return go.create({name:a,providers:[{provide:Js,useValue:"platform"},{provide:O8,useValue:new Set([()=>$1=null])},...i]})}(le,p))}return function E9(i){const a=N8();if(!a)throw new be(401,!1);return a}()}}function N8(){return $1?.get(C9)??null}function S9(){return!1}let T9=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=zC}return i})();function zC(i){return function D9(i,a,s){if(Vs(i)&&!s){const p=$o(i.index,a);return new Ys(p,p)}return 47&i.type?new Ys(a[Qr],a):null}(jr(),Ii(),!(16&~i))}class R9{constructor(){}supports(a){return E3(a)}create(a){return new jC(a)}}const O9=(i,a)=>a;class jC{constructor(a){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=a||O9}forEachItem(a){let s;for(s=this._itHead;null!==s;s=s._next)a(s)}forEachOperation(a){let s=this._itHead,p=this._removalsHead,E=0,P=null;for(;s||p;){const K=!p||s&&s.currentIndex{K=this._trackByFn(E,le),null!==s&&Object.is(s.trackById,K)?(p&&(s=this._verifyReinsertion(s,le,K,E)),Object.is(s.item,le)||this._addIdentityChange(s,le)):(s=this._mismatch(s,le,K,E),p=!0),s=s._next,E++}),this.length=E;return this._truncate(s),this.collection=a,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let a;for(a=this._previousItHead=this._itHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._additionsHead;null!==a;a=a._nextAdded)a.previousIndex=a.currentIndex;for(this._additionsHead=this._additionsTail=null,a=this._movesHead;null!==a;a=a._nextMoved)a.previousIndex=a.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(a,s,p,E){let P;return null===a?P=this._itTail:(P=a._prev,this._remove(a)),null!==(a=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null))?(Object.is(a.item,s)||this._addIdentityChange(a,s),this._reinsertAfter(a,P,E)):null!==(a=null===this._linkedRecords?null:this._linkedRecords.get(p,E))?(Object.is(a.item,s)||this._addIdentityChange(a,s),this._moveAfter(a,P,E)):a=this._addAfter(new WC(s,p),P,E),a}_verifyReinsertion(a,s,p,E){let P=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null);return null!==P?a=this._reinsertAfter(P,a._prev,E):a.currentIndex!=E&&(a.currentIndex=E,this._addToMoves(a,E)),a}_truncate(a){for(;null!==a;){const s=a._next;this._addToRemovals(this._unlink(a)),a=s}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(a,s,p){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(a);const E=a._prevRemoved,P=a._nextRemoved;return null===E?this._removalsHead=P:E._nextRemoved=P,null===P?this._removalsTail=E:P._prevRemoved=E,this._insertAfter(a,s,p),this._addToMoves(a,p),a}_moveAfter(a,s,p){return this._unlink(a),this._insertAfter(a,s,p),this._addToMoves(a,p),a}_addAfter(a,s,p){return this._insertAfter(a,s,p),this._additionsTail=null===this._additionsTail?this._additionsHead=a:this._additionsTail._nextAdded=a,a}_insertAfter(a,s,p){const E=null===s?this._itHead:s._next;return a._next=E,a._prev=s,null===E?this._itTail=a:E._prev=a,null===s?this._itHead=a:s._next=a,null===this._linkedRecords&&(this._linkedRecords=new F9),this._linkedRecords.put(a),a.currentIndex=p,a}_remove(a){return this._addToRemovals(this._unlink(a))}_unlink(a){null!==this._linkedRecords&&this._linkedRecords.remove(a);const s=a._prev,p=a._next;return null===s?this._itHead=p:s._next=p,null===p?this._itTail=s:p._prev=s,a}_addToMoves(a,s){return a.previousIndex===s||(this._movesTail=null===this._movesTail?this._movesHead=a:this._movesTail._nextMoved=a),a}_addToRemovals(a){return null===this._unlinkedRecords&&(this._unlinkedRecords=new F9),this._unlinkedRecords.put(a),a.currentIndex=null,a._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=a,a._prevRemoved=null):(a._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=a),a}_addIdentityChange(a,s){return a.item=s,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=a:this._identityChangesTail._nextIdentityChange=a,a}}class WC{constructor(a,s){this.item=a,this.trackById=s,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 XC{constructor(){this._head=null,this._tail=null}add(a){null===this._head?(this._head=this._tail=a,a._nextDup=null,a._prevDup=null):(this._tail._nextDup=a,a._prevDup=this._tail,a._nextDup=null,this._tail=a)}get(a,s){let p;for(p=this._head;null!==p;p=p._nextDup)if((null===s||s<=p.currentIndex)&&Object.is(p.trackById,a))return p;return null}remove(a){const s=a._prevDup,p=a._nextDup;return null===s?this._head=p:s._nextDup=p,null===p?this._tail=s:p._prevDup=s,null===this._head}}class F9{constructor(){this.map=new Map}put(a){const s=a.trackById;let p=this.map.get(s);p||(p=new XC,this.map.set(s,p)),p.add(a)}get(a,s){const E=this.map.get(a);return E?E.get(a,s):null}remove(a){const s=a.trackById;return this.map.get(s).remove(a)&&this.map.delete(s),a}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function G8(i,a,s){const p=i.previousIndex;if(null===p)return p;let E=0;return s&&p{if(s&&s.key===E)this._maybeAddToChanges(s,p),this._appendAfter=s,s=s._next;else{const P=this._getOrCreateRecordForKey(E,p);s=this._insertBeforeOrAppend(s,P)}}),s){s._prev&&(s._prev._next=null),this._removalsHead=s;for(let p=s;null!==p;p=p._nextRemoved)p===this._mapHead&&(this._mapHead=null),this._records.delete(p.key),p._nextRemoved=p._next,p.previousValue=p.currentValue,p.currentValue=null,p._prev=null,p._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(a,s){if(a){const p=a._prev;return s._next=a,s._prev=p,a._prev=s,p&&(p._next=s),a===this._mapHead&&(this._mapHead=s),this._appendAfter=a,a}return this._appendAfter?(this._appendAfter._next=s,s._prev=this._appendAfter):this._mapHead=s,this._appendAfter=s,null}_getOrCreateRecordForKey(a,s){if(this._records.has(a)){const E=this._records.get(a);this._maybeAddToChanges(E,s);const P=E._prev,K=E._next;return P&&(P._next=K),K&&(K._prev=P),E._next=null,E._prev=null,E}const p=new KC(a);return this._records.set(a,p),p.currentValue=s,this._addToAdditions(p),p}_reset(){if(this.isDirty){let a;for(this._previousMapHead=this._mapHead,a=this._previousMapHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._changesHead;null!==a;a=a._nextChanged)a.previousValue=a.currentValue;for(a=this._additionsHead;null!=a;a=a._nextAdded)a.previousValue=a.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(a,s){Object.is(s,a.currentValue)||(a.previousValue=a.currentValue,a.currentValue=s,this._addToChanges(a))}_addToAdditions(a){null===this._additionsHead?this._additionsHead=this._additionsTail=a:(this._additionsTail._nextAdded=a,this._additionsTail=a)}_addToChanges(a){null===this._changesHead?this._changesHead=this._changesTail=a:(this._changesTail._nextChanged=a,this._changesTail=a)}_forEach(a,s){a instanceof Map?a.forEach(s):Object.keys(a).forEach(p=>s(a[p],p))}}class KC{constructor(a){this.key=a,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 j8(){return new W8([new R9])}let W8=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:j8});constructor(s){this.factories=s}static create(s,p){if(null!=p){const E=p.factories.slice();s=s.concat(E)}return new i(s)}static extend(s){return{provide:i,useFactory:p=>i.create(s,p||j8()),deps:[[i,new Fa,new Oa]]}}find(s){const p=this.factories.find(E=>E.supports(s));if(null!=p)return p;throw new be(901,!1)}}return i})();function P9(){return new Pu([new N9])}let Pu=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:P9});constructor(s){this.factories=s}static create(s,p){if(p){const E=p.factories.slice();s=s.concat(E)}return new i(s)}static extend(s){return{provide:i,useFactory:p=>i.create(s,p||P9()),deps:[[i,new Fa,new Oa]]}}find(s){const p=this.factories.find(E=>E.supports(s));if(p)return p;throw new be(901,!1)}}return i})();const qC=F8(null,"core",[]);let V9=(()=>{class i{constructor(s){}static#e=this.\u0275fac=function(p){return new(p||i)(zn(Al))};static#t=this.\u0275mod=jo({type:i});static#i=this.\u0275inj=Qt({})}return i})();function Mp(i){return"boolean"==typeof i?i:null!=i&&"false"!==i}function kw(i,a=NaN){return isNaN(parseFloat(i))||isNaN(Number(i))?a:Number(i)}function X3(i,a){oc("NgSignals");const s=function de(i){const a=Object.create(m);a.computation=i;const s=()=>{if(R(a),y(a),a.value===c)throw a.error;return a.value};return s[l]=a,s}(i);return a?.equal&&(s[l].equal=a.equal),s}function Iw(i){const a=x(null);try{return i()}finally{x(a)}}const Rw=new Ni("",{providedIn:"root",factory:()=>hn(Ow)});let Ow=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>new Fw})}return i})();class Fw{constructor(){this.queuedEffectCount=0,this.queues=new Map,this.pendingTasks=hn(B1),this.taskId=null}scheduleEffect(a){if(this.enqueue(a),null===this.taskId){const s=this.taskId=this.pendingTasks.add();queueMicrotask(()=>{this.flush(),this.pendingTasks.remove(s),this.taskId=null})}}enqueue(a){const s=a.creationZone;this.queues.has(s)||this.queues.set(s,new Set);const p=this.queues.get(s);p.has(a)||(this.queuedEffectCount++,p.add(a))}flush(){for(;this.queuedEffectCount>0;)for(const[a,s]of this.queues)null===a?this.flushQueue(s):a.run(()=>this.flushQueue(s))}flushQueue(a){for(const s of a)a.delete(s),this.queuedEffectCount--,s.run()}}class Nw{constructor(a,s,p,E,P,K){this.scheduler=a,this.effectFn=s,this.creationZone=p,this.injector=P,this.watcher=function qe(i,a,s){const p=Object.create(se);s&&(p.consumerAllowSignalWrites=!0),p.fn=i,p.schedule=a;const E=Se=>{p.cleanupFn=Se};return p.ref={notify:()=>$(p),run:()=>{if(null===p.fn)return;if(function I(){return w}())throw new Error("Schedulers cannot synchronously execute watches while scheduling.");if(p.dirty=!1,p.hasRun&&!J(p))return;p.hasRun=!0;const Se=j(p);try{p.cleanupFn(),p.cleanupFn=Ke,p.fn(E)}finally{Q(p,Se)}},cleanup:()=>p.cleanupFn(),destroy:()=>function K(Se){(function P(Se){return null===Se.fn&&null===Se.schedule})(Se)||(ee(Se),Se.cleanupFn(),Se.fn=null,Se.schedule=null,Se.cleanupFn=Ke)}(p),[l]:p},p.ref}(le=>this.runEffect(le),()=>this.schedule(),K),this.unregisterOnDestroy=E?.onDestroy(()=>this.destroy())}runEffect(a){try{this.effectFn(a)}catch(s){this.injector.get(Bs,null,{optional:!0})?.handleError(s)}}run(){this.watcher.run()}schedule(){this.scheduler.scheduleEffect(this)}destroy(){this.watcher.destroy(),this.unregisterOnDestroy?.()}}function lb(i,a){oc("NgSignals"),!a?.injector&&De();const s=a?.injector??hn(go),p=!0!==a?.manualCleanup?s.get(ml):null,E=new Nw(s.get(Rw),i,typeof Zone>"u"?null:Zone.current,p,s,a?.allowSignalWrites??!1),P=s.get(T9,null,{optional:!0});return P&&8&P._lView[sn]?(P._lView[Fc]??=[]).push(E.watcher.notify):E.watcher.notify(),E}function Pw(i,a){const s=Vn(i),p=a.elementInjector||os();return new Do(s).create(p,a.projectableNodes,a.hostElement,a.environmentInjector)}function Vw(i){const a=Vn(i);if(!a)return null;const s=new Do(a);return{get selector(){return s.selector},get type(){return s.componentType},get inputs(){return s.inputs},get outputs(){return s.outputs},get ngContentSelectors(){return s.ngContentSelectors},get isStandalone(){return a.standalone},get isSignal(){return a.signals}}}},9079:(Qe,te,g)=>{"use strict";g.d(te,{ot:()=>f});var e=g(4438);function f(I,d){const T=!d?.manualCleanup;T&&!d?.injector&&(0,e.Af3)(f);const y=T?d?.injector?.get(e.abz)??(0,e.WQX)(e.abz):null;let F;F=(0,e.vPA)(d?.requireSync?{kind:0}:{kind:1,value:d?.initialValue});const R=I.subscribe({next:z=>F.set({kind:1,value:z}),error:z=>{if(d?.rejectErrors)throw z;F.set({kind:2,error:z})}});return y?.onDestroy(R.unsubscribe.bind(R)),(0,e.EWP)(()=>{const z=F();switch(z.kind){case 1:return z.value;case 2:throw z.error;case 0:throw new e.wOt(601,"`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.")}})}},4545:(Qe,te,g)=>{"use strict";function e(T){for(let y in T){let F=T[y]??"";switch(y){case"display":T.display="flex"===F?["-webkit-flex","flex"]:"inline-flex"===F?["-webkit-inline-flex","inline-flex"]:F;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":T["-webkit-"+y]=F;break;case"flex-direction":T["-webkit-flex-direction"]=F,T["flex-direction"]=F;break;case"order":T.order=T["-webkit-"+y]=isNaN(+F)?"0":F}}return T}g.d(te,{C5:()=>d,O5:()=>e,Uo:()=>w,Vc:()=>x,uG:()=>S});const t="inline",w=["row","column","row-reverse","column-reverse"];function S(T){let[y,F,R]=l(T);return function I(T,y=null,F=!1){return{display:F?"inline-flex":"flex","box-sizing":"border-box","flex-direction":T,"flex-wrap":y||null}}(y,F,R)}function l(T){T=T?.toLowerCase()??"";let[y,F,R]=T.split(" ");return w.find(z=>z===y)||(y=w[0]),F===t&&(F=R!==t?R:"",R=t),[y,f(F),!!R]}function x(T){let[y]=l(T);return y.indexOf("row")>-1}function f(T){if(T)switch(T.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":T="wrap-reverse";break;case"no":case"none":case"nowrap":T="nowrap";break;default:T="wrap"}return T}function d(T,...y){if(null==T)throw TypeError("Cannot convert undefined or null to object");for(let F of y)if(null!=F)for(let R in F)F.hasOwnProperty(R)&&(T[R]=F[R]);return T}},9340:(Qe,te,g)=>{"use strict";g.d(te,{Ce:()=>Q,DJ:()=>at,EA:()=>j,PV:()=>$,SL:()=>J,Ui:()=>R,ZH:()=>ge,cL:()=>Nt,hN:()=>Ye,qH:()=>Ze,r3:()=>ie});var e=g(4438),t=g(177),w=g(4412),S=g(1985),l=g(7786),x=g(1413),f=g(4545),I=g(5964),d=g(8141);const y={provide:e.iLQ,useFactory:function T(Et,Vt){return()=>{if((0,t.UE)(Vt)){const oe=Array.from(Et.querySelectorAll(`[class*=${F}]`)),tt=/\bflex-layout-.+?\b/g;oe.forEach($t=>{$t.classList.contains(`${F}ssr`)&&$t.parentNode?$t.parentNode.removeChild($t):$t.className.replace(tt,"")})}}},deps:[t.qQ,e.Agw],multi:!0},F="flex-layout-";let R=(()=>{class Et{}return Et.\u0275fac=function(oe){return new(oe||Et)},Et.\u0275mod=e.$C({type:Et}),Et.\u0275inj=e.G2t({providers:[y]}),Et})();class z{constructor(Vt=!1,oe="all",tt="",$t="",zt=0){this.matches=Vt,this.mediaQuery=oe,this.mqAlias=tt,this.suffix=$t,this.priority=zt,this.property=""}clone(){return new z(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let W=(()=>{class Et{constructor(){this.stylesheet=new Map}addStyleToElement(oe,tt,$t){const zt=this.stylesheet.get(oe);zt?zt.set(tt,$t):this.stylesheet.set(oe,new Map([[tt,$t]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(oe,tt){const $t=this.stylesheet.get(oe);let zt="";if($t){const Jt=$t.get(tt);("number"==typeof Jt||"string"==typeof Jt)&&(zt=Jt+"")}return zt}}return Et.\u0275fac=function(oe){return new(oe||Et)},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const $={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},j=new e.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>$}),Q=new e.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),J=new e.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ee(Et,Vt){return Et=Et?.clone()??new z,Vt&&(Et.mqAlias=Vt.alias,Et.mediaQuery=Vt.mediaQuery,Et.suffix=Vt.suffix,Et.priority=Vt.priority),Et}class ie{constructor(){this.shouldCache=!0}sideEffect(Vt,oe,tt){}}let ge=(()=>{class Et{constructor(oe,tt,$t,zt){this._serverStylesheet=oe,this._serverModuleLoaded=tt,this._platformId=$t,this.layoutConfig=zt}applyStyleToElement(oe,tt,$t=null){let zt={};"string"==typeof tt&&(zt[tt]=$t,tt=zt),zt=this.layoutConfig.disableVendorPrefixes?tt:(0,f.O5)(tt),this._applyMultiValueStyleToElement(zt,oe)}applyStyleToElements(oe,tt=[]){const $t=this.layoutConfig.disableVendorPrefixes?oe:(0,f.O5)(oe);tt.forEach(zt=>{this._applyMultiValueStyleToElement($t,zt)})}getFlowDirection(oe){const tt="flex-direction";let $t=this.lookupStyle(oe,tt);return[$t||"row",this.lookupInlineStyle(oe,tt)||(0,t.Vy)(this._platformId)&&this._serverModuleLoaded?$t:""]}hasWrap(oe){return"wrap"===this.lookupStyle(oe,"flex-wrap")}lookupAttributeValue(oe,tt){return oe.getAttribute(tt)??""}lookupInlineStyle(oe,tt){return(0,t.UE)(this._platformId)?oe.style.getPropertyValue(tt):function ae(Et,Vt){return de(Et)[Vt]??""}(oe,tt)}lookupStyle(oe,tt,$t=!1){let zt="";return oe&&((zt=this.lookupInlineStyle(oe,tt))||((0,t.UE)(this._platformId)?$t||(zt=getComputedStyle(oe).getPropertyValue(tt)):this._serverModuleLoaded&&(zt=this._serverStylesheet.getStyleForElement(oe,tt)))),zt?zt.trim():""}_applyMultiValueStyleToElement(oe,tt){Object.keys(oe).sort().forEach($t=>{const zt=oe[$t],Jt=Array.isArray(zt)?zt:[zt];Jt.sort();for(let St of Jt)St=St?St+"":"",(0,t.UE)(this._platformId)||!this._serverModuleLoaded?(0,t.UE)(this._platformId)?tt.style.setProperty($t,St):Me(tt,$t,St):this._serverStylesheet.addStyleToElement(tt,$t,St)})}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(W),e.KVO(Q),e.KVO(e.Agw),e.KVO(j))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();function Me(Et,Vt,oe){Vt=Vt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const tt=de(Et);tt[Vt]=oe??"",function Te(Et,Vt){let oe="";for(const tt in Vt)Vt[tt]&&(oe+=`${tt}:${Vt[tt]};`);Et.setAttribute("style",oe)}(Et,tt)}function de(Et){const Vt={},oe=Et.getAttribute("style");if(oe){const tt=oe.split(/;+/g);for(let $t=0;$t0){const Jt=zt.indexOf(":");if(-1===Jt)throw new Error(`Invalid CSS style: ${zt}`);Vt[zt.substr(0,Jt).trim()]=zt.substr(Jt+1).trim()}}}return Vt}function D(Et,Vt){return(Vt&&Vt.priority||0)-(Et&&Et.priority||0)}function n(Et,Vt){return(Et.priority||0)-(Vt.priority||0)}let c=(()=>{class Et{constructor(oe,tt,$t){this._zone=oe,this._platformId=tt,this._document=$t,this.source=new w.t(new z(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const oe=[];return this.registry.forEach((tt,$t)=>{tt.matches&&oe.push($t)}),oe}isActive(oe){return this.registry.get(oe)?.matches??this.registerQuery(oe).some($t=>$t.matches)}observe(oe,tt=!1){if(oe&&oe.length){const $t=this._observable$.pipe((0,I.p)(Jt=>!tt||oe.indexOf(Jt.mediaQuery)>-1)),zt=new S.c(Jt=>{const St=this.registerQuery(oe);if(St.length){const dt=St.pop();St.forEach(Ae=>{Jt.next(Ae)}),this.source.next(dt)}Jt.complete()});return(0,l.h)(zt,$t)}return this._observable$}registerQuery(oe){const tt=Array.isArray(oe)?oe:[oe],$t=[];return function h(Et,Vt){const oe=Et.filter(tt=>!m[tt]);if(oe.length>0){const tt=oe.join(", ");try{const $t=Vt.createElement("style");$t.setAttribute("type","text/css"),$t.styleSheet||$t.appendChild(Vt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${tt} {.fx-query-test{ }}\n`)),Vt.head.appendChild($t),oe.forEach(zt=>m[zt]=$t)}catch($t){console.error($t)}}}(tt,this._document),tt.forEach(zt=>{const Jt=dt=>{this._zone.run(()=>this.source.next(new z(dt.matches,zt)))};let St=this.registry.get(zt);St||(St=this.buildMQL(zt),St.addListener(Jt),this.pendingRemoveListenerFns.push(()=>St.removeListener(Jt)),this.registry.set(zt,St)),St.matches&&$t.push(new z(!0,zt))}),$t}ngOnDestroy(){let oe;for(;oe=this.pendingRemoveListenerFns.pop();)oe()}buildMQL(oe){return function k(Et,Vt){return Vt&&window.matchMedia("all").addListener?window.matchMedia(Et):function C(Et){const Vt=new EventTarget;return Vt.matches="all"===Et||""===Et,Vt.media=Et,Vt.addListener=()=>{},Vt.removeListener=()=>{},Vt.addEventListener=()=>{},Vt.dispatchEvent=()=>!1,Vt.onchange=null,Vt}(Et)}(oe,(0,t.UE)(this._platformId))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(e.SKi),e.KVO(e.Agw),e.KVO(t.qQ))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const m={},L=[{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}],_="(orientation: portrait) and (max-width: 599.98px)",r="(orientation: landscape) and (max-width: 959.98px)",v="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",V="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",N="(orientation: portrait) and (min-width: 840px)",ne="(orientation: landscape) and (min-width: 1280px)",Ee={HANDSET:`${_}, ${r}`,TABLET:`${v} , ${V}`,WEB:`${N}, ${ne} `,HANDSET_PORTRAIT:`${_}`,TABLET_PORTRAIT:`${v} `,WEB_PORTRAIT:`${N}`,HANDSET_LANDSCAPE:`${r}`,TABLET_LANDSCAPE:`${V}`,WEB_LANDSCAPE:`${ne}`},ze=[{alias:"handset",priority:2e3,mediaQuery:Ee.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:Ee.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:Ee.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:Ee.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:Ee.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:Ee.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:Ee.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:Ee.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:Ee.WEB_PORTRAIT,overlapping:!0}],qe=/(\.|-|_)/g;function Ke(Et){let Vt=Et.length>0?Et.charAt(0):"",oe=Et.length>1?Et.slice(1):"";return Vt.toUpperCase()+oe}const ce=new e.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Et=(0,e.WQX)(J),Vt=(0,e.WQX)(j),oe=[].concat.apply([],(Et||[]).map($t=>Array.isArray($t)?$t:[$t]));return function me(Et,Vt=[]){const oe={};return Et.forEach(tt=>{oe[tt.alias]=tt}),Vt.forEach(tt=>{oe[tt.alias]?(0,f.C5)(oe[tt.alias],tt):oe[tt.alias]=tt}),function X(Et){return Et.forEach(Vt=>{Vt.suffix||(Vt.suffix=function se(Et){return Et.replace(qe,"|").split("|").map(Ke).join("")}(Vt.alias),Vt.overlapping=!!Vt.overlapping)}),Et}(Object.keys(oe).map(tt=>oe[tt]))}((Vt.disableDefaultBps?[]:L).concat(Vt.addOrientationBps?ze:[]),oe)}});let fe=(()=>{class Et{constructor(oe){this.findByMap=new Map,this.items=[...oe].sort(n)}findByAlias(oe){return oe?this.findWithPredicate(oe,tt=>tt.alias===oe):null}findByQuery(oe){return this.findWithPredicate(oe,tt=>tt.mediaQuery===oe)}get overlappings(){return this.items.filter(oe=>oe.overlapping)}get aliases(){return this.items.map(oe=>oe.alias)}get suffixes(){return this.items.map(oe=>oe?.suffix??"")}findWithPredicate(oe,tt){let $t=this.findByMap.get(oe);return $t||($t=this.items.find(tt)??null,this.findByMap.set(oe,$t)),$t??null}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(ce))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const ke="print",mt={alias:ke,mediaQuery:ke,priority:1e3};let _e=(()=>{class Et{constructor(oe,tt,$t){this.breakpoints=oe,this.layoutConfig=tt,this._document=$t,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new be,this.deactivations=[]}withPrintQuery(oe){return[...oe,ke]}isPrintEvent(oe){return oe.mediaQuery.startsWith(ke)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(oe=>this.breakpoints.findByAlias(oe)).filter(oe=>null!==oe)}getEventBreakpoints({mediaQuery:oe}){const tt=this.breakpoints.findByQuery(oe);return(tt?[...this.printBreakPoints,tt]:this.printBreakPoints).sort(D)}updateEvent(oe){let tt=this.breakpoints.findByQuery(oe.mediaQuery);return this.isPrintEvent(oe)&&(tt=this.getEventBreakpoints(oe)[0],oe.mediaQuery=tt?.mediaQuery??""),ee(oe,tt)}registerBeforeAfterPrintHooks(oe){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const tt=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(oe,this.getEventBreakpoints(new z(!0,ke))),oe.updateStyles())},$t=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(oe),oe.updateStyles())};this._document.defaultView.addEventListener("beforeprint",tt),this._document.defaultView.addEventListener("afterprint",$t),this.beforePrintEventListeners.push(tt),this.afterPrintEventListeners.push($t)}interceptEvents(oe){return tt=>{this.isPrintEvent(tt)?tt.matches&&!this.isPrinting?(this.startPrinting(oe,this.getEventBreakpoints(tt)),oe.updateStyles()):!tt.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(oe),oe.updateStyles()):this.collectActivations(oe,tt)}}blockPropagation(){return oe=>!(this.isPrinting||this.isPrintEvent(oe))}startPrinting(oe,tt){this.isPrinting=!0,this.formerActivations=oe.activatedBreakpoints,oe.activatedBreakpoints=this.queue.addPrintBreakpoints(tt)}stopPrinting(oe){oe.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(oe,tt){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!tt.matches){const $t=this.breakpoints.findByQuery(tt.mediaQuery);if($t){const zt=this.formerActivations&&this.formerActivations.includes($t),Jt=!this.formerActivations&&oe.activatedBreakpoints.includes($t);(zt||Jt)&&(this.deactivations.push($t),this.deactivations.sort(D))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(oe=>this._document.defaultView.removeEventListener("beforeprint",oe)),this.afterPrintEventListeners.forEach(oe=>this._document.defaultView.removeEventListener("afterprint",oe)))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(fe),e.KVO(j),e.KVO(t.qQ))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();class be{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Vt){return Vt.push(mt),Vt.sort(D),Vt.forEach(oe=>this.addBreakpoint(oe)),this.printBreakpoints}addBreakpoint(Vt){Vt&&void 0===this.printBreakpoints.find(tt=>tt.mediaQuery===Vt.mediaQuery)&&(this.printBreakpoints=function pe(Et){return Et?.mediaQuery.startsWith(ke)??!1}(Vt)?[Vt,...this.printBreakpoints]:[...this.printBreakpoints,Vt])}clear(){this.printBreakpoints=[]}}let Ze=(()=>{class Et{constructor(oe,tt,$t){this.matchMedia=oe,this.breakpoints=tt,this.hook=$t,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 x.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(oe){this._activatedBreakpoints=[...oe]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(oe){this._useFallbacks=oe}onMediaChange(oe){const tt=this.findByQuery(oe.mediaQuery);if(tt){oe=ee(oe,tt);const $t=this.activatedBreakpoints.indexOf(tt);oe.matches&&-1===$t?(this._activatedBreakpoints.push(tt),this._activatedBreakpoints.sort(D),this.updateStyles()):!oe.matches&&-1!==$t&&(this._activatedBreakpoints.splice($t,1),this._activatedBreakpoints.sort(D),this.updateStyles())}}init(oe,tt,$t,zt,Jt=[]){_t(this.updateMap,oe,tt,$t),_t(this.clearMap,oe,tt,zt),this.buildElementKeyMap(oe,tt),this.watchExtraTriggers(oe,tt,Jt)}getValue(oe,tt,$t){const zt=this.elementMap.get(oe);if(zt){const Jt=void 0!==$t?zt.get($t):this.getActivatedValues(zt,tt);if(Jt)return Jt.get(tt)}}hasValue(oe,tt){const $t=this.elementMap.get(oe);if($t){const zt=this.getActivatedValues($t,tt);if(zt)return void 0!==zt.get(tt)||!1}return!1}setValue(oe,tt,$t,zt){let Jt=this.elementMap.get(oe);if(Jt){const dt=(Jt.get(zt)??new Map).set(tt,$t);Jt.set(zt,dt),this.elementMap.set(oe,Jt)}else Jt=(new Map).set(zt,(new Map).set(tt,$t)),this.elementMap.set(oe,Jt);const St=this.getValue(oe,tt);void 0!==St&&this.updateElement(oe,tt,St)}trackValue(oe,tt){return this.subject.asObservable().pipe((0,I.p)($t=>$t.element===oe&&$t.key===tt))}updateStyles(){this.elementMap.forEach((oe,tt)=>{const $t=new Set(this.elementKeyMap.get(tt));let zt=this.getActivatedValues(oe);zt&&zt.forEach((Jt,St)=>{this.updateElement(tt,St,Jt),$t.delete(St)}),$t.forEach(Jt=>{if(zt=this.getActivatedValues(oe,Jt),zt){const St=zt.get(Jt);this.updateElement(tt,Jt,St)}else this.clearElement(tt,Jt)})})}clearElement(oe,tt){const $t=this.clearMap.get(oe);if($t){const zt=$t.get(tt);zt&&(zt(),this.subject.next({element:oe,key:tt,value:""}))}}updateElement(oe,tt,$t){const zt=this.updateMap.get(oe);if(zt){const Jt=zt.get(tt);Jt&&(Jt($t),this.subject.next({element:oe,key:tt,value:$t}))}}releaseElement(oe){const tt=this.watcherMap.get(oe);tt&&(tt.forEach(zt=>zt.unsubscribe()),this.watcherMap.delete(oe));const $t=this.elementMap.get(oe);$t&&($t.forEach((zt,Jt)=>$t.delete(Jt)),this.elementMap.delete(oe))}triggerUpdate(oe,tt){const $t=this.elementMap.get(oe);if($t){const zt=this.getActivatedValues($t,tt);zt&&(tt?this.updateElement(oe,tt,zt.get(tt)):zt.forEach((Jt,St)=>this.updateElement(oe,St,Jt)))}}buildElementKeyMap(oe,tt){let $t=this.elementKeyMap.get(oe);$t||($t=new Set,this.elementKeyMap.set(oe,$t)),$t.add(tt)}watchExtraTriggers(oe,tt,$t){if($t&&$t.length){let zt=this.watcherMap.get(oe);if(zt||(zt=new Map,this.watcherMap.set(oe,zt)),!zt.get(tt)){const St=(0,l.h)(...$t).subscribe(()=>{const dt=this.getValue(oe,tt);this.updateElement(oe,tt,dt)});zt.set(tt,St)}}}findByQuery(oe){return this.breakpoints.findByQuery(oe)}getActivatedValues(oe,tt){for(let zt=0;zttt.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(oe)).pipe((0,d.M)(this.hook.interceptEvents(this)),(0,I.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(c),e.KVO(fe),e.KVO(_e))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();function _t(Et,Vt,oe,tt){if(void 0!==tt){const $t=Et.get(Vt)??new Map;$t.set(oe,tt),Et.set(Vt,$t)}}let at=(()=>{class Et{constructor(oe,tt,$t,zt){this.elementRef=oe,this.styleBuilder=tt,this.styler=$t,this.marshal=zt,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new x.B,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(oe){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,oe,this.marshal.activatedAlias)}ngOnChanges(oe){Object.keys(oe).forEach(tt=>{if(-1!==this.inputs.indexOf(tt)){const $t=tt.split(".").slice(1).join(".");this.setValue(oe[tt].currentValue,$t)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(oe=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),oe)}addStyles(oe,tt){const $t=this.styleBuilder,zt=$t.shouldCache;let Jt=this.styleCache.get(oe);(!Jt||!zt)&&(Jt=$t.buildStyles(oe,tt),zt&&this.styleCache.set(oe,Jt)),this.mru={...Jt},this.applyStyleToElement(Jt),$t.sideEffect(oe,Jt,tt)}clearStyles(){Object.keys(this.mru).forEach(oe=>{this.mru[oe]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(oe,tt=!1){if(oe){const[$t,zt]=this.styler.getFlowDirection(oe);if(!zt&&tt){const Jt=(0,f.uG)($t);this.styler.applyStyleToElements(Jt,[oe])}return $t.trim()}return"row"}hasWrap(oe){return this.styler.hasWrap(oe)}applyStyleToElement(oe,tt,$t=this.nativeElement){this.styler.applyStyleToElement($t,oe,tt)}setValue(oe,tt){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,oe,tt)}updateWithValue(oe){this.currentValue!==oe&&(this.addStyles(oe),this.currentValue=oe)}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.rXU(e.aKT),e.rXU(ie),e.rXU(ge),e.rXU(Ze))},Et.\u0275dir=e.FsC({type:Et,features:[e.OA$]}),Et})();function Ye(Et,Vt="1",oe="1"){let tt=[Vt,oe,Et],$t=Et.indexOf("calc");if($t>0){tt[2]=rt(Et.substring($t).trim());let zt=Et.substr(0,$t).trim().split(" ");2==zt.length&&(tt[0]=zt[0],tt[1]=zt[1])}else if(0==$t)tt[2]=rt(Et.trim());else{let zt=Et.split(" ");tt=3===zt.length?zt:[Vt,oe,Et]}return tt}function rt(Et){return Et.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const Yt="x";function Nt(Et,Vt){if(void 0===Vt)return Et;const oe=tt=>{const $t=+tt.slice(0,-Yt.length);return Et.endsWith(Yt)&&!isNaN($t)?`${$t*Vt.value}${Vt.unit}`:Et};return Et.includes(" ")?Et.split(" ").map(oe).join(" "):oe(Et)}},6038:(Qe,te,g)=>{"use strict";g.d(te,{Cc:()=>r,PW:()=>$,eI:()=>k});var e=g(4438),t=g(9340),w=g(177),x=(g(4085),g(6977),g(345));let R=(()=>{class v extends t.DJ{constructor(N,ne,Ee,ze,qe,Ke,se){super(N,null,ne,Ee),this.ngClassInstance=se,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new w.YU(ze,qe,N,Ke)),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 v.\u0275fac=function(N){return new(N||v)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(e._q3),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(w.YU,10))},v.\u0275dir=e.FsC({type:v,inputs:{klass:[0,"class","klass"]},features:[e.Vt3]}),v})();const z=["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 $=(()=>{class v extends R{constructor(){super(...arguments),this.inputs=z}}return v.\u0275fac=(()=>{let V;return function(ne){return(V||(V=e.xGo(v)))(ne||v)}})(),v.\u0275dir=e.FsC({type:v,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:[e.Vt3]}),v})();class ae{constructor(V,N,ne=!0){this.key=V,this.value=N,this.key=ne?V.replace(/['"]/g,"").trim():V.trim(),this.value=ne?N.replace(/['"]/g,"").trim():N.trim(),this.value=this.value.replace(/;/,"")}}function Me(v){let V=typeof v;return"object"===V?v.constructor===Array?"array":v.constructor===Set?"set":"object":V}function n(v){const[V,...N]=v.split(":");return new ae(V,N.join(":"))}function c(v,V){return V.key&&(v[V.key]=V.value),v}let m=(()=>{class v extends t.DJ{constructor(N,ne,Ee,ze,qe,Ke,se,X,me){super(N,null,ne,Ee),this.sanitizer=ze,this.ngStyleInstance=se,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new w.B3(N,qe,Ke)),this.init();const ce=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(ce),this.isServer=X&&(0,w.Vy)(me)}updateWithValue(N){const ne=this.buildStyleMap(N);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...ne},this.isServer&&this.applyStyleToElement(ne),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(N){const ne=Ee=>this.sanitizer.sanitize(e.WPN.STYLE,Ee)??"";if(N)switch(Me(N)){case"string":return L(function Te(v,V=";"){return String(v).trim().split(V).map(N=>N.trim()).filter(N=>""!==N)}(N),ne);case"array":return L(N,ne);default:return function D(v,V){let N=[];return"set"===Me(v)?v.forEach(ne=>N.push(ne)):Object.keys(v).forEach(ne=>{N.push(`${ne}:${v[ne]}`)}),function de(v,V){return v.map(n).filter(ne=>!!ne).map(ne=>(V&&(ne.value=V(ne.value)),ne)).reduce(c,{})}(N,V)}(N,ne)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return v.\u0275fac=function(N){return new(N||v)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(x.up),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(w.B3,10),e.rXU(t.Ce),e.rXU(e.Agw))},v.\u0275dir=e.FsC({type:v,features:[e.Vt3]}),v})();const h=["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 k=(()=>{class v extends m{constructor(){super(...arguments),this.inputs=h}}return v.\u0275fac=(()=>{let V;return function(ne){return(V||(V=e.xGo(v)))(ne||v)}})(),v.\u0275dir=e.FsC({type:v,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:[e.Vt3]}),v})();function L(v,V){return v.map(n).filter(ne=>!!ne).map(ne=>(V&&(ne.value=V(ne.value)),ne)).reduce(c,{})}let r=(()=>{class v{}return v.\u0275fac=function(N){return new(N||v)},v.\u0275mod=e.$C({type:v}),v.\u0275inj=e.G2t({imports:[t.Ui]}),v})()},2920:(Qe,te,g)=>{"use strict";g.d(te,{DJ:()=>y,UI:()=>C,sA:()=>Ye,w2:()=>Jt});var e=g(4438),t=g(8203),w=g(9340),S=g(4545),x=(g(1413),g(6977));let f=(()=>{class St extends w.r3{buildStyles(Ae,{display:we}){const he=(0,S.uG)(Ae);return{...he,display:"none"===we?we:he.display}}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const I=["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 T=(()=>{class St extends w.DJ{constructor(Ae,we,he,q,Re){super(Ae,he,we,q),this._config=Re,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Ae){const he=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=F.get(he)??new Map,F.set(he,this.styleCache),this.currentValue!==Ae&&(this.addStyles(Ae,{display:he}),this.currentValue=Ae)}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(f),e.rXU(w.qH),e.rXU(w.EA))},St.\u0275dir=e.FsC({type:St,features:[e.Vt3]}),St})(),y=(()=>{class St extends T{constructor(){super(...arguments),this.inputs=I}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,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:[e.Vt3]}),St})();const F=new Map;let n=(()=>{class St extends w.r3{constructor(Ae){super(),this.layoutConfig=Ae}buildStyles(Ae,we){let[he,q,...Re]=Ae.split(" "),Ne=Re.join(" ");const gt=we.direction.indexOf("column")>-1?"column":"row",$e=(0,S.Vc)(gt)?"max-width":"max-height",Fe=(0,S.Vc)(gt)?"min-width":"min-height",Ge=String(Ne).indexOf("calc")>-1,et=Ge||"auto"===Ne,st=String(Ne).indexOf("%")>-1&&!Ge,Tt=String(Ne).indexOf("px")>-1||String(Ne).indexOf("rem")>-1||String(Ne).indexOf("em")>-1||String(Ne).indexOf("vw")>-1||String(Ne).indexOf("vh")>-1;let mi=Ge||Tt;he="0"==he?0:he,q="0"==q?0:q;const Kt=!he&&!q;let Pt={};const Xi={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Ne||""){case"":Ne="row"===gt?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":he=0,Ne="auto";break;case"grow":Ne="100%";break;case"noshrink":q=0,Ne="auto";break;case"auto":break;case"none":he=0,q=0,Ne="auto";break;default:!mi&&!st&&!isNaN(Ne)&&(Ne+="%"),"0%"===Ne&&(mi=!0),"0px"===Ne&&(Ne="0%"),Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":mi?Ne:"100%"}:{flex:`${he} ${q} ${mi?Ne:"100%"}`})}return Pt.flex||Pt["flex-grow"]||(Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":Ne}:{flex:`${he} ${q} ${Ne}`})),"0%"!==Ne&&"0px"!==Ne&&"0.000000001px"!==Ne&&"auto"!==Ne&&(Pt[Fe]=Kt||mi&&he?Ne:null,Pt[$e]=Kt||!et&&q?Ne:null),Pt[Fe]||Pt[$e]?we.hasWrap&&(Pt[Ge?"flex-basis":"flex"]=Pt[$e]?Ge?Pt[$e]:`${he} ${q} ${Pt[$e]}`:Ge?Pt[Fe]:`${he} ${q} ${Pt[Fe]}`):Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":Ne}:{flex:`${he} ${q} ${Ne}`}),(0,S.C5)(Pt,{"box-sizing":"border-box"})}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.KVO(w.EA))},St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const c=["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 h=(()=>{class St extends w.DJ{constructor(Ae,we,he,q,Re){super(Ae,q,we,Re),this.layoutConfig=he,this.marshal=Re,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(Ae){this.flexShrink=Ae||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Ae){this.flexGrow=Ae||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,x.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,x.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Ae){const he=Ae.value.split(" ");this.direction=he[0],this.wrap=void 0!==he[1]&&"wrap"===he[1],this.triggerUpdate()}updateWithValue(Ae){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 he=this.direction,q=he.startsWith("row"),Re=this.wrap;q&&Re?this.styleCache=_:q&&!Re?this.styleCache=k:!q&&Re?this.styleCache=r:!q&&!Re&&(this.styleCache=L);const Ne=String(Ae).replace(";",""),gt=(0,w.hN)(Ne,this.flexGrow,this.flexShrink);this.addStyles(gt.join(" "),{direction:he,hasWrap:Re})}triggerReflow(){const Ae=this.activatedValue;if(void 0!==Ae){const we=(0,w.hN)(Ae+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,we.join(" "))}}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(w.EA),e.rXU(n),e.rXU(w.qH))},St.\u0275dir=e.FsC({type:St,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},features:[e.Vt3]}),St})(),C=(()=>{class St extends h{constructor(){super(...arguments),this.inputs=c}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,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:[e.Vt3]}),St})();const k=new Map,L=new Map,_=new Map,r=new Map;let Ie=(()=>{class St extends w.r3{buildStyles(Ae,we){const he={},[q,Re]=Ae.split(" ");switch(q){case"center":he["justify-content"]="center";break;case"space-around":he["justify-content"]="space-around";break;case"space-between":he["justify-content"]="space-between";break;case"space-evenly":he["justify-content"]="space-evenly";break;case"end":case"flex-end":he["justify-content"]="flex-end";break;default:he["justify-content"]="flex-start"}switch(Re){case"start":case"flex-start":he["align-items"]=he["align-content"]="flex-start";break;case"center":he["align-items"]=he["align-content"]="center";break;case"end":case"flex-end":he["align-items"]=he["align-content"]="flex-end";break;case"space-between":he["align-content"]="space-between",he["align-items"]="stretch";break;case"space-around":he["align-content"]="space-around",he["align-items"]="stretch";break;case"baseline":he["align-content"]="stretch",he["align-items"]="baseline";break;default:he["align-items"]=he["align-content"]="stretch"}return(0,S.C5)(he,{display:we.inline?"inline-flex":"flex","flex-direction":we.layout,"box-sizing":"border-box","max-width":"stretch"===Re?(0,S.Vc)(we.layout)?null:"100%":null,"max-height":"stretch"===Re&&(0,S.Vc)(we.layout)?"100%":null})}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const He=["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 yt=(()=>{class St extends w.DJ{constructor(Ae,we,he,q){super(Ae,he,we,q),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,x.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Ae){const we=this.layout||"row",he=this.inline;"row"===we&&he?this.styleCache=Vt:"row"!==we||he?"row-reverse"===we&&he?this.styleCache=tt:"row-reverse"!==we||he?"column"===we&&he?this.styleCache=oe:"column"!==we||he?"column-reverse"===we&&he?this.styleCache=$t:"column-reverse"===we&&!he&&(this.styleCache=Et):this.styleCache=Yt:this.styleCache=Nt:this.styleCache=rt,this.addStyles(Ae,{layout:we,inline:he})}onLayoutChange(Ae){const we=Ae.value.split(" ");this.layout=we[0],this.inline=Ae.value.includes("inline"),S.Uo.find(he=>he===this.layout)||(this.layout="row"),this.triggerUpdate()}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(Ie),e.rXU(w.qH))},St.\u0275dir=e.FsC({type:St,features:[e.Vt3]}),St})(),Ye=(()=>{class St extends yt{constructor(){super(...arguments),this.inputs=He}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,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:[e.Vt3]}),St})();const rt=new Map,Yt=new Map,Nt=new Map,Et=new Map,Vt=new Map,oe=new Map,tt=new Map,$t=new Map;let Jt=(()=>{class St{}return St.\u0275fac=function(Ae){return new(Ae||St)},St.\u0275mod=e.$C({type:St}),St.\u0275inj=e.G2t({imports:[w.Ui,t.jI]}),St})()},9417:(Qe,te,g)=>{"use strict";g.d(te,{BC:()=>pe,JD:()=>wo,Q0:()=>Sr,VZ:()=>uo,X1:()=>Ri,YN:()=>oa,YS:()=>Lr,cV:()=>Yn,cb:()=>Ze,cz:()=>Q,hs:()=>_i,j4:()=>Sa,k0:()=>ie,kq:()=>d,l_:()=>ho,me:()=>W,ok:()=>Mo,qT:()=>or,vO:()=>ke,vS:()=>nr,xq:()=>_a,zX:()=>Bo,ze:()=>oo});var e=g(4438),t=g(177),w=g(2806),S=g(7468),l=g(1413),x=g(6354);let f=(()=>{class lt{constructor(Ue,At){this._renderer=Ue,this._elementRef=At,this.onChange=ni=>{},this.onTouched=()=>{}}setProperty(Ue,At){this._renderer.setProperty(this._elementRef.nativeElement,Ue,At)}registerOnTouched(Ue){this.onTouched=Ue}registerOnChange(Ue){this.onChange=Ue}setDisabledState(Ue){this.setProperty("disabled",Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(e.sFG),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:lt})}return lt})(),I=(()=>{class lt extends f{static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,features:[e.Vt3]})}return lt})();const d=new e.nKC(""),F={provide:d,useExisting:(0,e.Rfq)(()=>W),multi:!0},z=new e.nKC("");let W=(()=>{class lt extends f{constructor(Ue,At,ni){super(Ue,At),this._compositionMode=ni,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function R(){const lt=(0,t.QT)()?(0,t.QT)().getUserAgent():"";return/android (\d+)/.test(lt.toLowerCase())}())}writeValue(Ue){this.setProperty("value",Ue??"")}_handleInput(Ue){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(Ue)}_compositionStart(){this._composing=!0}_compositionEnd(Ue){this._composing=!1,this._compositionMode&&this.onChange(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(e.sFG),e.rXU(e.aKT),e.rXU(z,8))};static#t=this.\u0275dir=e.FsC({type:lt,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(At,ni){1&At&&e.bIt("input",function(Zn){return ni._handleInput(Zn.target.value)})("blur",function(){return ni.onTouched()})("compositionstart",function(){return ni._compositionStart()})("compositionend",function(Zn){return ni._compositionEnd(Zn.target.value)})},features:[e.Jv_([F]),e.Vt3]})}return lt})();function $(lt){return null==lt||("string"==typeof lt||Array.isArray(lt))&&0===lt.length}function j(lt){return null!=lt&&"number"==typeof lt.length}const Q=new e.nKC(""),J=new e.nKC(""),ee=/^(?=.{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 ie{static min(ht){return ge(ht)}static max(ht){return ae(ht)}static required(ht){return Me(ht)}static requiredTrue(ht){return Te(ht)}static email(ht){return function de(lt){return $(lt.value)||ee.test(lt.value)?null:{email:!0}}(ht)}static minLength(ht){return function D(lt){return ht=>$(ht.value)||!j(ht.value)?null:ht.value.lengthj(ht.value)&&ht.value.length>lt?{maxlength:{requiredLength:lt,actualLength:ht.value.length}}:null}(ht)}static pattern(ht){return function c(lt){if(!lt)return m;let ht,Ue;return"string"==typeof lt?(Ue="","^"!==lt.charAt(0)&&(Ue+="^"),Ue+=lt,"$"!==lt.charAt(lt.length-1)&&(Ue+="$"),ht=new RegExp(Ue)):(Ue=lt.toString(),ht=lt),At=>{if($(At.value))return null;const ni=At.value;return ht.test(ni)?null:{pattern:{requiredPattern:Ue,actualValue:ni}}}}(ht)}static nullValidator(ht){return null}static compose(ht){return v(ht)}static composeAsync(ht){return N(ht)}}function ge(lt){return ht=>{if($(ht.value)||$(lt))return null;const Ue=parseFloat(ht.value);return!isNaN(Ue)&&Ue{if($(ht.value)||$(lt))return null;const Ue=parseFloat(ht.value);return!isNaN(Ue)&&Ue>lt?{max:{max:lt,actual:ht.value}}:null}}function Me(lt){return $(lt.value)?{required:!0}:null}function Te(lt){return!0===lt.value?null:{required:!0}}function m(lt){return null}function h(lt){return null!=lt}function C(lt){return(0,e.jNT)(lt)?(0,w.H)(lt):lt}function k(lt){let ht={};return lt.forEach(Ue=>{ht=null!=Ue?{...ht,...Ue}:ht}),0===Object.keys(ht).length?null:ht}function L(lt,ht){return ht.map(Ue=>Ue(lt))}function r(lt){return lt.map(ht=>function _(lt){return!lt.validate}(ht)?ht:Ue=>ht.validate(Ue))}function v(lt){if(!lt)return null;const ht=lt.filter(h);return 0==ht.length?null:function(Ue){return k(L(Ue,ht))}}function V(lt){return null!=lt?v(r(lt)):null}function N(lt){if(!lt)return null;const ht=lt.filter(h);return 0==ht.length?null:function(Ue){const At=L(Ue,ht).map(C);return(0,S.p)(At).pipe((0,x.T)(k))}}function ne(lt){return null!=lt?N(r(lt)):null}function Ee(lt,ht){return null===lt?[ht]:Array.isArray(lt)?[...lt,ht]:[lt,ht]}function ze(lt){return lt._rawValidators}function qe(lt){return lt._rawAsyncValidators}function Ke(lt){return lt?Array.isArray(lt)?lt:[lt]:[]}function se(lt,ht){return Array.isArray(lt)?lt.includes(ht):lt===ht}function X(lt,ht){const Ue=Ke(ht);return Ke(lt).forEach(ni=>{se(Ue,ni)||Ue.push(ni)}),Ue}function me(lt,ht){return Ke(ht).filter(Ue=>!se(lt,Ue))}class ce{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(ht){this._rawValidators=ht||[],this._composedValidatorFn=V(this._rawValidators)}_setAsyncValidators(ht){this._rawAsyncValidators=ht||[],this._composedAsyncValidatorFn=ne(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(ht){this._onDestroyCallbacks.push(ht)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(ht=>ht()),this._onDestroyCallbacks=[]}reset(ht=void 0){this.control&&this.control.reset(ht)}hasError(ht,Ue){return!!this.control&&this.control.hasError(ht,Ue)}getError(ht,Ue){return this.control?this.control.getError(ht,Ue):null}}class fe extends ce{get formDirective(){return null}get path(){return null}}class ke extends ce{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class mt{constructor(ht){this._cd=ht}get isTouched(){return!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return!!this._cd?.submitted}}let pe=(()=>{class lt extends mt{constructor(Ue){super(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(ke,2))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(At,ni){2&At&&e.AVh("ng-untouched",ni.isUntouched)("ng-touched",ni.isTouched)("ng-pristine",ni.isPristine)("ng-dirty",ni.isDirty)("ng-valid",ni.isValid)("ng-invalid",ni.isInvalid)("ng-pending",ni.isPending)},features:[e.Vt3]})}return lt})(),Ze=(()=>{class lt extends mt{constructor(Ue){super(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,10))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(At,ni){2&At&&e.AVh("ng-untouched",ni.isUntouched)("ng-touched",ni.isTouched)("ng-pristine",ni.isPristine)("ng-dirty",ni.isDirty)("ng-valid",ni.isValid)("ng-invalid",ni.isInvalid)("ng-pending",ni.isPending)("ng-submitted",ni.isSubmitted)},features:[e.Vt3]})}return lt})();const $t="VALID",zt="INVALID",Jt="PENDING",St="DISABLED";class dt{}class Ae extends dt{constructor(ht,Ue){super(),this.value=ht,this.source=Ue}}class we extends dt{constructor(ht,Ue){super(),this.pristine=ht,this.source=Ue}}class he extends dt{constructor(ht,Ue){super(),this.touched=ht,this.source=Ue}}class q extends dt{constructor(ht,Ue){super(),this.status=ht,this.source=Ue}}class Re extends dt{constructor(ht){super(),this.source=ht}}class Ne extends dt{constructor(ht){super(),this.source=ht}}function gt(lt){return(et(lt)?lt.validators:lt)||null}function Fe(lt,ht){return(et(ht)?ht.asyncValidators:lt)||null}function et(lt){return null!=lt&&!Array.isArray(lt)&&"object"==typeof lt}function st(lt,ht,Ue){const At=lt.controls;if(!(ht?Object.keys(At):At).length)throw new e.wOt(1e3,"");if(!At[Ue])throw new e.wOt(1001,"")}function Tt(lt,ht,Ue){lt._forEachChild((At,ni)=>{if(void 0===Ue[ni])throw new e.wOt(1002,"")})}class mi{constructor(ht,Ue){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=null,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._events=new l.B,this.events=this._events.asObservable(),this._onDisabledChange=[],this._assignValidators(ht),this._assignAsyncValidators(Ue)}get validator(){return this._composedValidatorFn}set validator(ht){this._rawValidators=this._composedValidatorFn=ht}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(ht){this._rawAsyncValidators=this._composedAsyncValidatorFn=ht}get parent(){return this._parent}get valid(){return this.status===$t}get invalid(){return this.status===zt}get pending(){return this.status==Jt}get disabled(){return this.status===St}get enabled(){return this.status!==St}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(ht){this._assignValidators(ht)}setAsyncValidators(ht){this._assignAsyncValidators(ht)}addValidators(ht){this.setValidators(X(ht,this._rawValidators))}addAsyncValidators(ht){this.setAsyncValidators(X(ht,this._rawAsyncValidators))}removeValidators(ht){this.setValidators(me(ht,this._rawValidators))}removeAsyncValidators(ht){this.setAsyncValidators(me(ht,this._rawAsyncValidators))}hasValidator(ht){return se(this._rawValidators,ht)}hasAsyncValidator(ht){return se(this._rawAsyncValidators,ht)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(ht={}){const Ue=!1===this.touched;this.touched=!0;const At=ht.sourceControl??this;this._parent&&!ht.onlySelf&&this._parent.markAsTouched({...ht,sourceControl:At}),Ue&&!1!==ht.emitEvent&&this._events.next(new he(!0,At))}markAllAsTouched(ht={}){this.markAsTouched({onlySelf:!0,emitEvent:ht.emitEvent,sourceControl:this}),this._forEachChild(Ue=>Ue.markAllAsTouched(ht))}markAsUntouched(ht={}){const Ue=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const At=ht.sourceControl??this;this._forEachChild(ni=>{ni.markAsUntouched({onlySelf:!0,emitEvent:ht.emitEvent,sourceControl:At})}),this._parent&&!ht.onlySelf&&this._parent._updateTouched(ht,At),Ue&&!1!==ht.emitEvent&&this._events.next(new he(!1,At))}markAsDirty(ht={}){const Ue=!0===this.pristine;this.pristine=!1;const At=ht.sourceControl??this;this._parent&&!ht.onlySelf&&this._parent.markAsDirty({...ht,sourceControl:At}),Ue&&!1!==ht.emitEvent&&this._events.next(new we(!1,At))}markAsPristine(ht={}){const Ue=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const At=ht.sourceControl??this;this._forEachChild(ni=>{ni.markAsPristine({onlySelf:!0,emitEvent:ht.emitEvent})}),this._parent&&!ht.onlySelf&&this._parent._updatePristine(ht,At),Ue&&!1!==ht.emitEvent&&this._events.next(new we(!0,At))}markAsPending(ht={}){this.status=Jt;const Ue=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new q(this.status,Ue)),this.statusChanges.emit(this.status)),this._parent&&!ht.onlySelf&&this._parent.markAsPending({...ht,sourceControl:Ue})}disable(ht={}){const Ue=this._parentMarkedDirty(ht.onlySelf);this.status=St,this.errors=null,this._forEachChild(ni=>{ni.disable({...ht,onlySelf:!0})}),this._updateValue();const At=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new Ae(this.value,At)),this._events.next(new q(this.status,At)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...ht,skipPristineCheck:Ue},this),this._onDisabledChange.forEach(ni=>ni(!0))}enable(ht={}){const Ue=this._parentMarkedDirty(ht.onlySelf);this.status=$t,this._forEachChild(At=>{At.enable({...ht,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:ht.emitEvent}),this._updateAncestors({...ht,skipPristineCheck:Ue},this),this._onDisabledChange.forEach(At=>At(!1))}_updateAncestors(ht,Ue){this._parent&&!ht.onlySelf&&(this._parent.updateValueAndValidity(ht),ht.skipPristineCheck||this._parent._updatePristine({},Ue),this._parent._updateTouched({},Ue))}setParent(ht){this._parent=ht}getRawValue(){return this.value}updateValueAndValidity(ht={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const At=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===$t||this.status===Jt)&&this._runAsyncValidator(At,ht.emitEvent)}const Ue=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new Ae(this.value,Ue)),this._events.next(new q(this.status,Ue)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!ht.onlySelf&&this._parent.updateValueAndValidity({...ht,sourceControl:Ue})}_updateTreeValidity(ht={emitEvent:!0}){this._forEachChild(Ue=>Ue._updateTreeValidity(ht)),this.updateValueAndValidity({onlySelf:!0,emitEvent:ht.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?St:$t}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(ht,Ue){if(this.asyncValidator){this.status=Jt,this._hasOwnPendingAsyncValidator={emitEvent:!1!==Ue};const At=C(this.asyncValidator(this));this._asyncValidationSubscription=At.subscribe(ni=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(ni,{emitEvent:Ue,shouldHaveEmitted:ht})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const ht=this._hasOwnPendingAsyncValidator?.emitEvent??!1;return this._hasOwnPendingAsyncValidator=null,ht}return!1}setErrors(ht,Ue={}){this.errors=ht,this._updateControlsErrors(!1!==Ue.emitEvent,this,Ue.shouldHaveEmitted)}get(ht){let Ue=ht;return null==Ue||(Array.isArray(Ue)||(Ue=Ue.split(".")),0===Ue.length)?null:Ue.reduce((At,ni)=>At&&At._find(ni),this)}getError(ht,Ue){const At=Ue?this.get(Ue):this;return At&&At.errors?At.errors[ht]:null}hasError(ht,Ue){return!!this.getError(ht,Ue)}get root(){let ht=this;for(;ht._parent;)ht=ht._parent;return ht}_updateControlsErrors(ht,Ue,At){this.status=this._calculateStatus(),ht&&this.statusChanges.emit(this.status),(ht||At)&&this._events.next(new q(this.status,Ue)),this._parent&&this._parent._updateControlsErrors(ht,Ue,At)}_initObservables(){this.valueChanges=new e.bkB,this.statusChanges=new e.bkB}_calculateStatus(){return this._allControlsDisabled()?St:this.errors?zt:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Jt)?Jt:this._anyControlsHaveStatus(zt)?zt:$t}_anyControlsHaveStatus(ht){return this._anyControls(Ue=>Ue.status===ht)}_anyControlsDirty(){return this._anyControls(ht=>ht.dirty)}_anyControlsTouched(){return this._anyControls(ht=>ht.touched)}_updatePristine(ht,Ue){const At=!this._anyControlsDirty(),ni=this.pristine!==At;this.pristine=At,this._parent&&!ht.onlySelf&&this._parent._updatePristine(ht,Ue),ni&&this._events.next(new we(this.pristine,Ue))}_updateTouched(ht={},Ue){this.touched=this._anyControlsTouched(),this._events.next(new he(this.touched,Ue)),this._parent&&!ht.onlySelf&&this._parent._updateTouched(ht,Ue)}_registerOnCollectionChange(ht){this._onCollectionChange=ht}_setUpdateStrategy(ht){et(ht)&&null!=ht.updateOn&&(this._updateOn=ht.updateOn)}_parentMarkedDirty(ht){return!ht&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(ht){return null}_assignValidators(ht){this._rawValidators=Array.isArray(ht)?ht.slice():ht,this._composedValidatorFn=function $e(lt){return Array.isArray(lt)?V(lt):lt||null}(this._rawValidators)}_assignAsyncValidators(ht){this._rawAsyncValidators=Array.isArray(ht)?ht.slice():ht,this._composedAsyncValidatorFn=function Ge(lt){return Array.isArray(lt)?ne(lt):lt||null}(this._rawAsyncValidators)}}class Kt extends mi{constructor(ht,Ue,At){super(gt(Ue),Fe(At,Ue)),this.controls=ht,this._initObservables(),this._setUpdateStrategy(Ue),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(ht,Ue){return this.controls[ht]?this.controls[ht]:(this.controls[ht]=Ue,Ue.setParent(this),Ue._registerOnCollectionChange(this._onCollectionChange),Ue)}addControl(ht,Ue,At={}){this.registerControl(ht,Ue),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}removeControl(ht,Ue={}){this.controls[ht]&&this.controls[ht]._registerOnCollectionChange(()=>{}),delete this.controls[ht],this.updateValueAndValidity({emitEvent:Ue.emitEvent}),this._onCollectionChange()}setControl(ht,Ue,At={}){this.controls[ht]&&this.controls[ht]._registerOnCollectionChange(()=>{}),delete this.controls[ht],Ue&&this.registerControl(ht,Ue),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}contains(ht){return this.controls.hasOwnProperty(ht)&&this.controls[ht].enabled}setValue(ht,Ue={}){Tt(this,0,ht),Object.keys(ht).forEach(At=>{st(this,!0,At),this.controls[At].setValue(ht[At],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){null!=ht&&(Object.keys(ht).forEach(At=>{const ni=this.controls[At];ni&&ni.patchValue(ht[At],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue))}reset(ht={},Ue={}){this._forEachChild((At,ni)=>{At.reset(ht?ht[ni]:null,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this._updatePristine(Ue,this),this._updateTouched(Ue,this),this.updateValueAndValidity(Ue)}getRawValue(){return this._reduceChildren({},(ht,Ue,At)=>(ht[At]=Ue.getRawValue(),ht))}_syncPendingControls(){let ht=this._reduceChildren(!1,(Ue,At)=>!!At._syncPendingControls()||Ue);return ht&&this.updateValueAndValidity({onlySelf:!0}),ht}_forEachChild(ht){Object.keys(this.controls).forEach(Ue=>{const At=this.controls[Ue];At&&ht(At,Ue)})}_setUpControls(){this._forEachChild(ht=>{ht.setParent(this),ht._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(ht){for(const[Ue,At]of Object.entries(this.controls))if(this.contains(Ue)&&ht(At))return!0;return!1}_reduceValue(){return this._reduceChildren({},(Ue,At,ni)=>((At.enabled||this.disabled)&&(Ue[ni]=At.value),Ue))}_reduceChildren(ht,Ue){let At=ht;return this._forEachChild((ni,pn)=>{At=Ue(At,ni,pn)}),At}_allControlsDisabled(){for(const ht of Object.keys(this.controls))if(this.controls[ht].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(ht){return this.controls.hasOwnProperty(ht)?this.controls[ht]:null}}class fi extends Kt{}const Qi=new e.nKC("CallSetDisabledState",{providedIn:"root",factory:()=>Li}),Li="always";function Zi(lt,ht){return[...ht.path,lt]}function Qt(lt,ht,Ue=Li){wt(lt,ht),ht.valueAccessor.writeValue(lt.value),(lt.disabled||"always"===Ue)&&ht.valueAccessor.setDisabledState?.(lt.disabled),function xi(lt,ht){ht.valueAccessor.registerOnChange(Ue=>{lt._pendingValue=Ue,lt._pendingChange=!0,lt._pendingDirty=!0,"change"===lt.updateOn&&zi(lt,ht)})}(lt,ht),function en(lt,ht){const Ue=(At,ni)=>{ht.valueAccessor.writeValue(At),ni&&ht.viewToModelUpdate(At)};lt.registerOnChange(Ue),ht._registerOnDestroy(()=>{lt._unregisterOnChange(Ue)})}(lt,ht),function Si(lt,ht){ht.valueAccessor.registerOnTouched(()=>{lt._pendingTouched=!0,"blur"===lt.updateOn&<._pendingChange&&zi(lt,ht),"submit"!==lt.updateOn&<.markAsTouched()})}(lt,ht),function ct(lt,ht){if(ht.valueAccessor.setDisabledState){const Ue=At=>{ht.valueAccessor.setDisabledState(At)};lt.registerOnDisabledChange(Ue),ht._registerOnDestroy(()=>{lt._unregisterOnDisabledChange(Ue)})}}(lt,ht)}function Mt(lt,ht,Ue=!0){const At=()=>{};ht.valueAccessor&&(ht.valueAccessor.registerOnChange(At),ht.valueAccessor.registerOnTouched(At)),Ut(lt,ht),lt&&(ht._invokeOnDestroyCallbacks(),lt._registerOnCollectionChange(()=>{}))}function it(lt,ht){lt.forEach(Ue=>{Ue.registerOnValidatorChange&&Ue.registerOnValidatorChange(ht)})}function wt(lt,ht){const Ue=ze(lt);null!==ht.validator?lt.setValidators(Ee(Ue,ht.validator)):"function"==typeof Ue&<.setValidators([Ue]);const At=qe(lt);null!==ht.asyncValidator?lt.setAsyncValidators(Ee(At,ht.asyncValidator)):"function"==typeof At&<.setAsyncValidators([At]);const ni=()=>lt.updateValueAndValidity();it(ht._rawValidators,ni),it(ht._rawAsyncValidators,ni)}function Ut(lt,ht){let Ue=!1;if(null!==lt){if(null!==ht.validator){const ni=ze(lt);if(Array.isArray(ni)&&ni.length>0){const pn=ni.filter(Zn=>Zn!==ht.validator);pn.length!==ni.length&&(Ue=!0,lt.setValidators(pn))}}if(null!==ht.asyncValidator){const ni=qe(lt);if(Array.isArray(ni)&&ni.length>0){const pn=ni.filter(Zn=>Zn!==ht.asyncValidator);pn.length!==ni.length&&(Ue=!0,lt.setAsyncValidators(pn))}}}const At=()=>{};return it(ht._rawValidators,At),it(ht._rawAsyncValidators,At),Ue}function zi(lt,ht){lt._pendingDirty&<.markAsDirty(),lt.setValue(lt._pendingValue,{emitModelToViewChange:!1}),ht.viewToModelUpdate(lt._pendingValue),lt._pendingChange=!1}function Ni(lt,ht){wt(lt,ht)}function ot(lt,ht){if(!lt.hasOwnProperty("model"))return!1;const Ue=lt.model;return!!Ue.isFirstChange()||!Object.is(ht,Ue.currentValue)}function ii(lt,ht){lt._syncPendingControls(),ht.forEach(Ue=>{const At=Ue.control;"submit"===At.updateOn&&At._pendingChange&&(Ue.viewToModelUpdate(At._pendingValue),At._pendingChange=!1)})}function si(lt,ht){if(!ht)return null;let Ue,At,ni;return Array.isArray(ht),ht.forEach(pn=>{pn.constructor===W?Ue=pn:function ut(lt){return Object.getPrototypeOf(lt.constructor)===I}(pn)?At=pn:ni=pn}),ni||At||Ue||null}const Fn={provide:fe,useExisting:(0,e.Rfq)(()=>Yn)},$n=Promise.resolve();let Yn=(()=>{class lt extends fe{constructor(Ue,At,ni){super(),this.callSetDisabledState=ni,this.submitted=!1,this._directives=new Set,this.ngSubmit=new e.bkB,this.form=new Kt({},V(Ue),ne(At))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);Ue.control=At.registerControl(Ue.name,Ue.control),Qt(Ue.control,Ue,this.callSetDisabledState),Ue.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(Ue)})}getControl(Ue){return this.form.get(Ue.path)}removeControl(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);At&&At.removeControl(Ue.name),this._directives.delete(Ue)})}addFormGroup(Ue){$n.then(()=>{const At=this._findContainer(Ue.path),ni=new Kt({});Ni(ni,Ue),At.registerControl(Ue.name,ni),ni.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);At&&At.removeControl(Ue.name)})}getFormGroup(Ue){return this.form.get(Ue.path)}updateModel(Ue,At){$n.then(()=>{this.form.get(Ue.path).setValue(At)})}setValue(Ue){this.control.setValue(Ue)}onSubmit(Ue){return this.submitted=!0,ii(this.form,this._directives),this.ngSubmit.emit(Ue),"dialog"===Ue?.target?.method}onReset(){this.resetForm()}resetForm(Ue=void 0){this.form.reset(Ue),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(Ue){return Ue.pop(),Ue.length?this.form.get(Ue):this.form}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(At,ni){1&At&&e.bIt("submit",function(Zn){return ni.onSubmit(Zn)})("reset",function(){return ni.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([Fn]),e.Vt3]})}return lt})();function Qn(lt,ht){const Ue=lt.indexOf(ht);Ue>-1&<.splice(Ue,1)}function rr(lt){return"object"==typeof lt&&null!==lt&&2===Object.keys(lt).length&&"value"in lt&&"disabled"in lt}const Rn=class extends mi{constructor(ht=null,Ue,At){super(gt(Ue),Fe(At,Ue)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(ht),this._setUpdateStrategy(Ue),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),et(Ue)&&(Ue.nonNullable||Ue.initialValueIsDefault)&&(this.defaultValue=rr(ht)?ht.value:ht)}setValue(ht,Ue={}){this.value=this._pendingValue=ht,this._onChange.length&&!1!==Ue.emitModelToViewChange&&this._onChange.forEach(At=>At(this.value,!1!==Ue.emitViewToModelChange)),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){this.setValue(ht,Ue)}reset(ht=this.defaultValue,Ue={}){this._applyFormState(ht),this.markAsPristine(Ue),this.markAsUntouched(Ue),this.setValue(this.value,Ue),this._pendingChange=!1}_updateValue(){}_anyControls(ht){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(ht){this._onChange.push(ht)}_unregisterOnChange(ht){Qn(this._onChange,ht)}registerOnDisabledChange(ht){this._onDisabledChange.push(ht)}_unregisterOnDisabledChange(ht){Qn(this._onDisabledChange,ht)}_forEachChild(ht){}_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(ht){rr(ht)?(this.value=this._pendingValue=ht.value,ht.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=ht}},_i=Rn,ar={provide:ke,useExisting:(0,e.Rfq)(()=>nr)},sr=Promise.resolve();let nr=(()=>{class lt extends ke{constructor(Ue,At,ni,pn,Zn,Fo){super(),this._changeDetectorRef=Zn,this.callSetDisabledState=Fo,this.control=new Rn,this._registered=!1,this.name="",this.update=new e.bkB,this._parent=Ue,this._setValidators(At),this._setAsyncValidators(ni),this.valueAccessor=si(0,pn)}ngOnChanges(Ue){if(this._checkForErrors(),!this._registered||"name"in Ue){if(this._registered&&(this._checkName(),this.formDirective)){const At=Ue.name.previousValue;this.formDirective.removeControl({name:At,path:this._getPath(At)})}this._setUpControl()}"isDisabled"in Ue&&this._updateDisabled(Ue),ot(Ue,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(Ue){this.viewModel=Ue,this.update.emit(Ue)}_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(){Qt(this.control,this,this.callSetDisabledState),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(Ue){sr.then(()=>{this.control.setValue(Ue,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(Ue){const At=Ue.isDisabled.currentValue,ni=0!==At&&(0,e.L39)(At);sr.then(()=>{ni&&!this.control.disabled?this.control.disable():!ni&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(Ue){return this._parent?Zi(Ue,this._parent):[Ue]}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,9),e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(e.gRc,8),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[e.Jv_([ar]),e.Vt3,e.OA$]})}return lt})(),or=(()=>{class lt{static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]})}return lt})();const Xr={provide:d,useExisting:(0,e.Rfq)(()=>Sr),multi:!0};let Sr=(()=>{class lt extends I{writeValue(Ue){this.setProperty("value",Ue??"")}registerOnChange(Ue){this.onChange=At=>{Ue(""==At?null:parseFloat(At))}}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(At,ni){1&At&&e.bIt("input",function(Zn){return ni.onChange(Zn.target.value)})("blur",function(){return ni.onTouched()})},features:[e.Jv_([Xr]),e.Vt3]})}return lt})();const Ea=new e.nKC(""),no={provide:ke,useExisting:(0,e.Rfq)(()=>ho)};let ho=(()=>{class lt extends ke{set isDisabled(Ue){}static#e=this._ngModelWarningSentOnce=!1;constructor(Ue,At,ni,pn,Zn){super(),this._ngModelWarningConfig=pn,this.callSetDisabledState=Zn,this.update=new e.bkB,this._ngModelWarningSent=!1,this._setValidators(Ue),this._setAsyncValidators(At),this.valueAccessor=si(0,ni)}ngOnChanges(Ue){if(this._isControlChanged(Ue)){const At=Ue.form.previousValue;At&&Mt(At,this,!1),Qt(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}ot(Ue,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&Mt(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}_isControlChanged(Ue){return Ue.hasOwnProperty("form")}static#t=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(Ea,8),e.rXU(Qi,8))};static#i=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[e.Jv_([no]),e.Vt3,e.OA$]})}return lt})();const xr={provide:fe,useExisting:(0,e.Rfq)(()=>Sa)};let Sa=(()=>{class lt extends fe{constructor(Ue,At,ni){super(),this.callSetDisabledState=ni,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new e.bkB,this._setValidators(Ue),this._setAsyncValidators(At)}ngOnChanges(Ue){this._checkFormPresent(),Ue.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(Ut(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(Ue){const At=this.form.get(Ue.path);return Qt(At,Ue,this.callSetDisabledState),At.updateValueAndValidity({emitEvent:!1}),this.directives.push(Ue),At}getControl(Ue){return this.form.get(Ue.path)}removeControl(Ue){Mt(Ue.control||null,Ue,!1),function Pi(lt,ht){const Ue=lt.indexOf(ht);Ue>-1&<.splice(Ue,1)}(this.directives,Ue)}addFormGroup(Ue){this._setUpFormContainer(Ue)}removeFormGroup(Ue){this._cleanUpFormContainer(Ue)}getFormGroup(Ue){return this.form.get(Ue.path)}addFormArray(Ue){this._setUpFormContainer(Ue)}removeFormArray(Ue){this._cleanUpFormContainer(Ue)}getFormArray(Ue){return this.form.get(Ue.path)}updateModel(Ue,At){this.form.get(Ue.path).setValue(At)}onSubmit(Ue){return this.submitted=!0,ii(this.form,this.directives),this.ngSubmit.emit(Ue),this.form._events.next(new Re(this.control)),"dialog"===Ue?.target?.method}onReset(){this.resetForm()}resetForm(Ue=void 0){this.form.reset(Ue),this.submitted=!1,this.form._events.next(new Ne(this.form))}_updateDomValue(){this.directives.forEach(Ue=>{const At=Ue.control,ni=this.form.get(Ue.path);At!==ni&&(Mt(At||null,Ue),(lt=>lt instanceof Rn)(ni)&&(Qt(ni,Ue,this.callSetDisabledState),Ue.control=ni))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(Ue){const At=this.form.get(Ue.path);Ni(At,Ue),At.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(Ue){if(this.form){const At=this.form.get(Ue.path);At&&function fn(lt,ht){return Ut(lt,ht)}(At,Ue)&&At.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){wt(this.form,this),this._oldForm&&Ut(this._oldForm,this)}_checkFormPresent(){}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formGroup",""]],hostBindings:function(At,ni){1&At&&e.bIt("submit",function(Zn){return ni.onSubmit(Zn)})("reset",function(){return ni.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([xr]),e.Vt3,e.OA$]})}return lt})();const Co={provide:ke,useExisting:(0,e.Rfq)(()=>wo)};let wo=(()=>{class lt extends ke{set isDisabled(Ue){}static#e=this._ngModelWarningSentOnce=!1;constructor(Ue,At,ni,pn,Zn){super(),this._ngModelWarningConfig=Zn,this._added=!1,this.name=null,this.update=new e.bkB,this._ngModelWarningSent=!1,this._parent=Ue,this._setValidators(At),this._setAsyncValidators(ni),this.valueAccessor=si(0,pn)}ngOnChanges(Ue){this._added||this._setUpControl(),ot(Ue,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}get path(){return Zi(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._added=!0}static#t=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,13),e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(Ea,8))};static#i=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},features:[e.Jv_([Co]),e.Vt3,e.OA$]})}return lt})();function Ga(lt){return"number"==typeof lt?lt:parseFloat(lt)}let Na=(()=>{class lt{constructor(){this._validator=m}ngOnChanges(Ue){if(this.inputName in Ue){const At=this.normalizeInput(Ue[this.inputName].currentValue);this._enabled=this.enabled(At),this._validator=this._enabled?this.createValidator(At):m,this._onChange&&this._onChange()}}validate(Ue){return this._validator(Ue)}registerOnValidatorChange(Ue){this._onChange=Ue}enabled(Ue){return null!=Ue}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275dir=e.FsC({type:lt,features:[e.OA$]})}return lt})();const ja={provide:Q,useExisting:(0,e.Rfq)(()=>Bo),multi:!0};let Bo=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=Ue=>Ga(Ue),this.createValidator=Ue=>ae(Ue)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("max",ni._enabled?ni.max:null)},inputs:{max:"max"},features:[e.Jv_([ja]),e.Vt3]})}return lt})();const Uo={provide:Q,useExisting:(0,e.Rfq)(()=>uo),multi:!0};let uo=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=Ue=>Ga(Ue),this.createValidator=Ue=>ge(Ue)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("min",ni._enabled?ni.min:null)},inputs:{min:"min"},features:[e.Jv_([Uo]),e.Vt3]})}return lt})();const ga={provide:Q,useExisting:(0,e.Rfq)(()=>Lr),multi:!0},Za={provide:Q,useExisting:(0,e.Rfq)(()=>_a),multi:!0};let Lr=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=e.L39,this.createValidator=Ue=>Me}enabled(Ue){return Ue}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("required",ni._enabled?"":null)},inputs:{required:"required"},features:[e.Jv_([ga]),e.Vt3]})}return lt})(),_a=(()=>{class lt extends Lr{constructor(){super(...arguments),this.createValidator=Ue=>Te}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("required",ni._enabled?"":null)},features:[e.Jv_([Za]),e.Vt3]})}return lt})(),Ei=(()=>{class lt{static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({})}return lt})();class Ki extends mi{constructor(ht,Ue,At){super(gt(Ue),Fe(At,Ue)),this.controls=ht,this._initObservables(),this._setUpdateStrategy(Ue),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(ht){return this.controls[this._adjustIndex(ht)]}push(ht,Ue={}){this.controls.push(ht),this._registerControl(ht),this.updateValueAndValidity({emitEvent:Ue.emitEvent}),this._onCollectionChange()}insert(ht,Ue,At={}){this.controls.splice(ht,0,Ue),this._registerControl(Ue),this.updateValueAndValidity({emitEvent:At.emitEvent})}removeAt(ht,Ue={}){let At=this._adjustIndex(ht);At<0&&(At=0),this.controls[At]&&this.controls[At]._registerOnCollectionChange(()=>{}),this.controls.splice(At,1),this.updateValueAndValidity({emitEvent:Ue.emitEvent})}setControl(ht,Ue,At={}){let ni=this._adjustIndex(ht);ni<0&&(ni=0),this.controls[ni]&&this.controls[ni]._registerOnCollectionChange(()=>{}),this.controls.splice(ni,1),Ue&&(this.controls.splice(ni,0,Ue),this._registerControl(Ue)),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(ht,Ue={}){Tt(this,0,ht),ht.forEach((At,ni)=>{st(this,!1,ni),this.at(ni).setValue(At,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){null!=ht&&(ht.forEach((At,ni)=>{this.at(ni)&&this.at(ni).patchValue(At,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue))}reset(ht=[],Ue={}){this._forEachChild((At,ni)=>{At.reset(ht[ni],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this._updatePristine(Ue,this),this._updateTouched(Ue,this),this.updateValueAndValidity(Ue)}getRawValue(){return this.controls.map(ht=>ht.getRawValue())}clear(ht={}){this.controls.length<1||(this._forEachChild(Ue=>Ue._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:ht.emitEvent}))}_adjustIndex(ht){return ht<0?ht+this.length:ht}_syncPendingControls(){let ht=this.controls.reduce((Ue,At)=>!!At._syncPendingControls()||Ue,!1);return ht&&this.updateValueAndValidity({onlySelf:!0}),ht}_forEachChild(ht){this.controls.forEach((Ue,At)=>{ht(Ue,At)})}_updateValue(){this.value=this.controls.filter(ht=>ht.enabled||this.disabled).map(ht=>ht.value)}_anyControls(ht){return this.controls.some(Ue=>Ue.enabled&&ht(Ue))}_setUpControls(){this._forEachChild(ht=>this._registerControl(ht))}_allControlsDisabled(){for(const ht of this.controls)if(ht.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(ht){ht.setParent(this),ht._registerOnCollectionChange(this._onCollectionChange)}_find(ht){return this.at(ht)??null}}function Fr(lt){return!!lt&&(void 0!==lt.asyncValidators||void 0!==lt.validators||void 0!==lt.updateOn)}let Mo=(()=>{class lt{constructor(){this.useNonNullable=!1}get nonNullable(){const Ue=new lt;return Ue.useNonNullable=!0,Ue}group(Ue,At=null){const ni=this._reduceControls(Ue);let pn={};return Fr(At)?pn=At:null!==At&&(pn.validators=At.validator,pn.asyncValidators=At.asyncValidator),new Kt(ni,pn)}record(Ue,At=null){const ni=this._reduceControls(Ue);return new fi(ni,At)}control(Ue,At,ni){let pn={};return this.useNonNullable?(Fr(At)?pn=At:(pn.validators=At,pn.asyncValidators=ni),new Rn(Ue,{...pn,nonNullable:!0})):new Rn(Ue,At,ni)}array(Ue,At,ni){const pn=Ue.map(Zn=>this._createControl(Zn));return new Ki(pn,At,ni)}_reduceControls(Ue){const At={};return Object.keys(Ue).forEach(ni=>{At[ni]=this._createControl(Ue[ni])}),At}_createControl(Ue){return Ue instanceof Rn||Ue instanceof mi?Ue:Array.isArray(Ue)?this.control(Ue[0],Ue.length>1?Ue[1]:null,Ue.length>2?Ue[2]:null):this.control(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275prov=e.jDH({token:lt,factory:lt.\u0275fac,providedIn:"root"})}return lt})(),oo=(()=>{class lt extends Mo{group(Ue,At=null){return super.group(Ue,At)}control(Ue,At,ni){return super.control(Ue,At,ni)}array(Ue,At,ni){return super.array(Ue,At,ni)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275prov=e.jDH({token:lt,factory:lt.\u0275fac,providedIn:"root"})}return lt})(),oa=(()=>{class lt{static withConfig(Ue){return{ngModule:lt,providers:[{provide:Qi,useValue:Ue.callSetDisabledState??Li}]}}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({imports:[Ei]})}return lt})(),Ri=(()=>{class lt{static withConfig(Ue){return{ngModule:lt,providers:[{provide:Ea,useValue:Ue.warnOnNgModelWithFormControl??"always"},{provide:Qi,useValue:Ue.callSetDisabledState??Li}]}}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({imports:[Ei]})}return lt})()},850:(Qe,te,g)=>{"use strict";g.d(te,{$3:()=>_,jL:()=>qe,pN:()=>ze});var e=g(4438),t=g(6600),w=g(177),S=g(5542),l=g(6969),x=g(8617),f=g(6860),I=g(9969),d=g(8359),T=g(1413),y=g(9030),F=g(7786),R=g(7673),z=g(3726),W=g(7336),$=g(6939),j=g(9417),Q=g(6467),J=g(9172),ee=g(5558),ie=g(6697),ge=g(5964),ae=g(6354),Me=g(8141),Te=g(5335),de=g(8203);const D=["panel"],n=["*"];function c(Ke,se){if(1&Ke){const X=e.RV6();e.j41(0,"div",1,0),e.bIt("@panelAnimation.done",function(ce){e.eBV(X);const fe=e.XpG();return e.Njj(fe._animationDone.next(ce))}),e.SdG(2),e.k0s()}if(2&Ke){const X=se.id,me=e.XpG();e.HbH(me._classList),e.AVh("mat-mdc-autocomplete-visible",me.showPanel)("mat-mdc-autocomplete-hidden",!me.showPanel)("mat-primary","primary"===me._color)("mat-accent","accent"===me._color)("mat-warn","warn"===me._color),e.Y8G("id",me.id)("@panelAnimation",me.isOpen?"visible":"hidden"),e.BMQ("aria-label",me.ariaLabel||null)("aria-labelledby",me._getPanelAriaLabelledby(X))}}const m=(0,I.hZ)("panelAnimation",[(0,I.wk)("void, hidden",(0,I.iF)({opacity:0,transform:"scaleY(0.8)"})),(0,I.kY)(":enter, hidden => visible",[(0,I.Os)([(0,I.i0)("0.03s linear",(0,I.iF)({opacity:1})),(0,I.i0)("0.12s cubic-bezier(0, 0, 0.2, 1)",(0,I.iF)({transform:"scaleY(1)"}))])]),(0,I.kY)(":leave, visible => hidden",[(0,I.i0)("0.075s linear",(0,I.iF)({opacity:0}))])]);let h=0;class C{constructor(se,X){this.source=se,this.option=X}}const k=new e.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function L(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1}}});let _=(()=>{class Ke{get isOpen(){return this._isOpen&&this.showPanel}_setColor(X){this._color=X,this._changeDetectorRef.markForCheck()}set classList(X){this._classList=X,this._elementRef.nativeElement.className=""}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(X){this._hideSingleSelectionIndicator=X,this._syncParentProperties()}_syncParentProperties(){if(this.options)for(const X of this.options)X._changeDetectorRef.markForCheck()}constructor(X,me,ce,fe){this._changeDetectorRef=X,this._elementRef=me,this._defaults=ce,this._activeOptionChanges=d.yU.EMPTY,this._animationDone=new e.bkB,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new e.bkB,this.opened=new e.bkB,this.closed=new e.bkB,this.optionActivated=new e.bkB,this.id="mat-autocomplete-"+h++,this.inertGroups=fe?.SAFARI||!1,this.autoActiveFirstOption=!!ce.autoActiveFirstOption,this.autoSelectActiveOption=!!ce.autoSelectActiveOption,this.requireSelection=!!ce.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new x.Au(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(X=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[X]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe(),this._animationDone.complete()}_setScrollTop(X){this.panel&&(this.panel.nativeElement.scrollTop=X)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(X){const me=new C(this,X);this.optionSelected.emit(me)}_getPanelAriaLabelledby(X){return this.ariaLabel?null:this.ariaLabelledby?(X?X+" ":"")+this.ariaLabelledby:X}_skipPredicate(){return!1}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(k),e.rXU(f.OD))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-autocomplete"]],contentQueries:function(me,ce,fe){if(1&me&&(e.wni(fe,t.wT,5),e.wni(fe,t.QC,5)),2&me){let ke;e.mGM(ke=e.lsd())&&(ce.options=ke),e.mGM(ke=e.lsd())&&(ce.optionGroups=ke)}},viewQuery:function(me,ce){if(1&me&&(e.GBs(e.C4Q,7),e.GBs(D,5)),2&me){let fe;e.mGM(fe=e.lsd())&&(ce.template=fe.first),e.mGM(fe=e.lsd())&&(ce.panel=fe.first)}},hostAttrs:[1,"mat-mdc-autocomplete"],inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:[2,"autoActiveFirstOption","autoActiveFirstOption",e.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",e.L39],requireSelection:[2,"requireSelection","requireSelection",e.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",e.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",e.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],standalone:!0,features:[e.Jv_([{provide:t.is,useExisting:Ke}]),e.GFd,e.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(me,ce){1&me&&(e.NAR(),e.DNE(0,c,3,16,"ng-template"))},styles:["div.mat-mdc-autocomplete-panel{width:100%;max-height:256px;visibility:hidden;transform-origin:center top;overflow:auto;padding:8px 0;box-sizing:border-box;position:static;border-radius:var(--mat-autocomplete-container-shape);box-shadow:var(--mat-autocomplete-container-elevation-shadow);background-color:var(--mat-autocomplete-background-color)}.cdk-high-contrast-active div.mat-mdc-autocomplete-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel{border-top-left-radius:0;border-top-right-radius:0}.mat-mdc-autocomplete-panel-above div.mat-mdc-autocomplete-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:center bottom}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-visible{visibility:visible}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-hidden{visibility:hidden;pointer-events:none}mat-autocomplete{display:none}"],encapsulation:2,data:{animation:[m]},changeDetection:0})}return Ke})();const v={provide:j.kq,useExisting:(0,e.Rfq)(()=>ze),multi:!0},N=new e.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const Ke=(0,e.WQX)(l.hJ);return()=>Ke.scrollStrategies.reposition()}}),Ee={provide:N,deps:[l.hJ],useFactory:function ne(Ke){return()=>Ke.scrollStrategies.reposition()}};let ze=(()=>{class Ke{constructor(X,me,ce,fe,ke,mt,_e,be,pe,Ze,_t){this._element=X,this._overlay=me,this._viewContainerRef=ce,this._zone=fe,this._changeDetectorRef=ke,this._dir=_e,this._formField=be,this._document=pe,this._viewportRuler=Ze,this._defaults=_t,this._componentDestroyed=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=d.yU.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new T.B,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._aboveClass="mat-mdc-autocomplete-panel-above",this._overlayAttached=!1,this.optionSelections=(0,y.v)(()=>{const at=this.autocomplete?this.autocomplete.options:null;return at?at.changes.pipe((0,J.Z)(at),(0,ee.n)(()=>(0,F.h)(...at.map(pt=>pt.onSelectionChange)))):this._zone.onStable.pipe((0,ie.s)(1),(0,ee.n)(()=>this.optionSelections))}),this._handlePanelKeydown=at=>{(at.keyCode===W._f&&!(0,W.rp)(at)||at.keyCode===W.i7&&(0,W.rp)(at,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),at.stopPropagation(),at.preventDefault())},this._trackedModal=null,this._scrollStrategy=mt}ngAfterViewInit(){const X=this._getWindow();typeof X<"u"&&this._zone.runOutsideAngular(()=>X.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(X){X.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const X=this._getWindow();typeof X<"u"&&X.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}openPanel(){this._openPanelInternal()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._latestOpeningTrigger===this&&(this.autocomplete._isOpen=!1,this.autocomplete._latestOpeningTrigger=null),this._overlayAttached=!1,this._pendingAutoselectedOption=null,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._updatePanelState(),this._componentDestroyed||this._changeDetectorRef.detectChanges(),this._trackedModal&&(0,x.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,F.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ge.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ge.p)(()=>this._overlayAttached)):(0,R.of)()).pipe((0,ae.T)(X=>X instanceof t.MI?X:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,F.h)((0,z.R)(this._document,"click"),(0,z.R)(this._document,"auxclick"),(0,z.R)(this._document,"touchend")).pipe((0,ge.p)(X=>{const me=(0,f.Fb)(X),ce=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,fe=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&me!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!ce||!ce.contains(me))&&(!fe||!fe.contains(me))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(me)}))}writeValue(X){Promise.resolve(null).then(()=>this._assignOptionValue(X))}registerOnChange(X){this._onChange=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this._element.nativeElement.disabled=X}_handleKeydown(X){const me=X.keyCode,ce=(0,W.rp)(X);if(me===W._f&&!ce&&X.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&me===W.Fm&&this.panelOpen&&!ce)this.activeOption._selectViaInteraction(),this._resetActiveItem(),X.preventDefault();else if(this.autocomplete){const fe=this.autocomplete._keyManager.activeItem,ke=me===W.i7||me===W.n6;me===W.wn||ke&&!ce&&this.panelOpen?this.autocomplete._keyManager.onKeydown(X):ke&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(ke||this.autocomplete._keyManager.activeItem!==fe)&&(this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0),this.autocomplete.autoSelectActiveOption&&this.activeOption&&(this._pendingAutoselectedOption||(this._valueBeforeAutoSelection=this._valueOnLastKeydown),this._pendingAutoselectedOption=this.activeOption,this._assignOptionValue(this.activeOption.value)))}}_handleInput(X){let me=X.target,ce=me.value;if("number"===me.type&&(ce=""==ce?null:parseFloat(ce)),this._previousValue!==ce){if(this._previousValue=ce,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(ce),ce){if(this.panelOpen&&!this.autocomplete.requireSelection){const fe=this.autocomplete.options?.find(ke=>ke.selected);fe&&ce!==this._getDisplayValue(fe.value)&&fe.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._document.activeElement===X.target){const fe=this._valueOnLastKeydown??this._element.nativeElement.value;this._valueOnLastKeydown=null,this._openPanelInternal(fe)}}}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(this._previousValue),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this._openPanelInternal()}_floatLabel(X=!1){this._formField&&"auto"===this._formField.floatLabel&&(X?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const X=this._zone.onStable.pipe((0,ie.s)(1)),me=this.autocomplete.options.changes.pipe((0,Me.M)(()=>this._positionStrategy.reapplyLastPosition()),(0,Te.c)(0));return(0,F.h)(X,me).pipe((0,ee.n)(()=>(this._zone.run(()=>{const ce=this.panelOpen;this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),ce!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit())}),this.panelClosingActions)),(0,ie.s)(1)).subscribe(ce=>this._setValueAndClose(ce))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(X){const me=this.autocomplete;return me&&me.displayWith?me.displayWith(X):X}_assignOptionValue(X){const me=this._getDisplayValue(X);null==X&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(me??"")}_updateNativeInputValue(X){this._formField?this._formField._control.value=X:this._element.nativeElement.value=X,this._previousValue=X}_setValueAndClose(X){const me=this.autocomplete,ce=X?X.source:this._pendingAutoselectedOption;ce?(this._clearPreviousSelectedOption(ce),this._assignOptionValue(ce.value),this._onChange(ce.value),me._emitSelectEvent(ce),this._element.nativeElement.focus()):me.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),me._animationDone?me._animationDone.pipe((0,ie.s)(1)).subscribe(()=>this._onChange(null)):this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(X,me){this.autocomplete?.options?.forEach(ce=>{ce!==X&&ce.selected&&ce.deselect(me)})}_openPanelInternal(X=this._element.nativeElement.value){this._attachOverlay(X),this._floatLabel(),this._trackedModal&&(0,x.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(X){let me=this._overlayRef;me?(this._positionStrategy.setOrigin(this._getConnectedElement()),me.updateSize({width:this._getPanelWidth()})):(this._portal=new $.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),me=this._overlay.create(this._getOverlayConfig()),this._overlayRef=me,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&me&&me.updateSize({width:this._getPanelWidth()})})),me&&!me.hasAttached()&&(me.attach(this._portal),this._valueOnAttach=X,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const ce=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&ce!==this.panelOpen&&this._emitOpened()}_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const X=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=X.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=X.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new l.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,panelClass:this._defaults?.overlayPanelClass})}_getOverlayPosition(){const X=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(X),this._positionStrategy=X,X}_setStrategyPositions(X){const me=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],ce=this._aboveClass,fe=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:ce},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:ce}];let ke;ke="above"===this.position?fe:"below"===this.position?me:[...me,...fe],X.withPositions(ke)}_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 X=this.autocomplete;if(X.autoActiveFirstOption){let me=-1;for(let ce=0;ce .cdk-overlay-container [aria-modal="true"]');if(!X)return;const me=this.autocomplete.id;this._trackedModal&&(0,x.Ae)(this._trackedModal,"aria-owns",me),(0,x.px)(X,"aria-owns",me),this._trackedModal=X}_clearFromModal(){this._trackedModal&&((0,x.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.aKT),e.rXU(l.hJ),e.rXU(e.c1b),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(N),e.rXU(de.dS,8),e.rXU(Q.xb,9),e.rXU(w.qQ,8),e.rXU(S.Xj),e.rXU(k,8))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(me,ce){1&me&&e.bIt("focusin",function(){return ce._handleFocus()})("blur",function(){return ce._onTouched()})("input",function(ke){return ce._handleInput(ke)})("keydown",function(ke){return ce._handleKeydown(ke)})("click",function(){return ce._handleClick()}),2&me&&e.BMQ("autocomplete",ce.autocompleteAttribute)("role",ce.autocompleteDisabled?null:"combobox")("aria-autocomplete",ce.autocompleteDisabled?null:"list")("aria-activedescendant",ce.panelOpen&&ce.activeOption?ce.activeOption.id:null)("aria-expanded",ce.autocompleteDisabled?null:ce.panelOpen.toString())("aria-controls",ce.autocompleteDisabled||!ce.panelOpen||null==ce.autocomplete?null:ce.autocomplete.id)("aria-haspopup",ce.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",e.L39]},exportAs:["matAutocompleteTrigger"],standalone:!0,features:[e.Jv_([v]),e.GFd,e.OA$]})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({providers:[Ee],imports:[l.z_,t.Sy,t.yE,w.MD,S.Gj,t.Sy,t.yE]})}return Ke})()},1975:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>T,k:()=>d});var e=g(4438),t=g(6600),w=g(8617),S=g(177);let l=0;const x="mat-badge-content",f=new Set;let I=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["ng-component"]],standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(z,W){},styles:[".mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-content{position:absolute;text-align:center;display:inline-block;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;pointer-events:none;background-color:var(--mat-badge-background-color);color:var(--mat-badge-text-color);font-family:var(--mat-badge-text-font);font-weight:var(--mat-badge-text-weight);border-radius:var(--mat-badge-container-shape)}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-above .mat-badge-content{bottom:100%}.mat-badge-below .mat-badge-content{top:100%}.mat-badge-before .mat-badge-content{right:100%}[dir=rtl] .mat-badge-before .mat-badge-content{right:auto;left:100%}.mat-badge-after .mat-badge-content{left:100%}[dir=rtl] .mat-badge-after .mat-badge-content{left:auto;right:100%}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color);color:var(--mat-badge-disabled-state-text-color)}.mat-badge-hidden .mat-badge-content{display:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:var(--mat-badge-legacy-small-size-container-size, unset);height:var(--mat-badge-legacy-small-size-container-size, unset);min-width:var(--mat-badge-small-size-container-size, unset);min-height:var(--mat-badge-small-size-container-size, unset);line-height:var(--mat-badge-legacy-small-size-container-size, var(--mat-badge-small-size-container-size));padding:var(--mat-badge-small-size-container-padding);font-size:var(--mat-badge-small-size-text-size);margin:var(--mat-badge-small-size-container-offset)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset)}.mat-badge-medium .mat-badge-content{width:var(--mat-badge-legacy-container-size, unset);height:var(--mat-badge-legacy-container-size, unset);min-width:var(--mat-badge-container-size, unset);min-height:var(--mat-badge-container-size, unset);line-height:var(--mat-badge-legacy-container-size, var(--mat-badge-container-size));padding:var(--mat-badge-container-padding);font-size:var(--mat-badge-text-size);margin:var(--mat-badge-container-offset)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset)}.mat-badge-large .mat-badge-content{width:var(--mat-badge-legacy-large-size-container-size, unset);height:var(--mat-badge-legacy-large-size-container-size, unset);min-width:var(--mat-badge-large-size-container-size, unset);min-height:var(--mat-badge-large-size-container-size, unset);line-height:var(--mat-badge-legacy-large-size-container-size, var(--mat-badge-large-size-container-size));padding:var(--mat-badge-large-size-container-padding);font-size:var(--mat-badge-large-size-text-size);margin:var(--mat-badge-large-size-container-offset)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset)}"],encapsulation:2,changeDetection:0})}return y})(),d=(()=>{class y{get color(){return this._color}set color(R){this._setColor(R),this._color=R}get content(){return this._content}set content(R){this._updateRenderedContent(R)}get description(){return this._description}set description(R){this._updateDescription(R)}constructor(R,z,W,$,j){this._ngZone=R,this._elementRef=z,this._ariaDescriber=W,this._renderer=$,this._animationMode=j,this._color="primary",this.overlap=!0,this.position="above after",this.size="medium",this._id=l++,this._isInitialized=!1,this._interactivityChecker=(0,e.WQX)(w.Z7),this._document=(0,e.WQX)(S.qQ);const Q=(0,e.WQX)(e.o8S);if(!f.has(Q)){f.add(Q);const J=(0,e.a0P)(I,{environmentInjector:(0,e.WQX)(e.uvJ)});Q.onDestroy(()=>{f.delete(Q),0===f.size&&J.destroy()})}}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._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const R=this._renderer.createElement("span"),z="mat-badge-active";return R.setAttribute("id",`mat-badge-content-${this._id}`),R.setAttribute("aria-hidden","true"),R.classList.add(x),"NoopAnimations"===this._animationMode&&R.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(R),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{R.classList.add(z)})}):R.classList.add(z),R}_updateRenderedContent(R){const z=`${R??""}`.trim();this._isInitialized&&z&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=z),this._content=z}_updateDescription(R){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!R||this._isHostInteractive())&&this._removeInlineDescription(),this._description=R,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,R):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(R){const z=this._elementRef.nativeElement.classList;z.remove(`mat-badge-${this._color}`),R&&z.add(`mat-badge-${R}`)}_clearExistingBadges(){const R=this._elementRef.nativeElement.querySelectorAll(`:scope > .${x}`);for(const z of Array.from(R))z!==this._badgeElement&&z.remove()}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(w.vr),e.rXU(e.sFG),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:y,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(z,W){2&z&&e.AVh("mat-badge-overlap",W.overlap)("mat-badge-above",W.isAbove())("mat-badge-below",!W.isAbove())("mat-badge-before",!W.isAfter())("mat-badge-after",W.isAfter())("mat-badge-small","small"===W.size)("mat-badge-medium","medium"===W.size)("mat-badge-large","large"===W.size)("mat-badge-hidden",W.hidden||!W.content)("mat-badge-disabled",W.disabled)},inputs:{color:[0,"matBadgeColor","color"],overlap:[2,"matBadgeOverlap","overlap",e.L39],disabled:[2,"matBadgeDisabled","disabled",e.L39],position:[0,"matBadgePosition","position"],content:[0,"matBadge","content"],description:[0,"matBadgeDescription","description"],size:[0,"matBadgeSize","size"],hidden:[2,"matBadgeHidden","hidden",e.L39]},standalone:!0,features:[e.GFd]})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[w.Pd,t.yE,t.yE]})}return y})()},8834:(Qe,te,g)=>{"use strict";g.d(te,{$0:()=>n,$z:()=>ge,Hl:()=>k,iY:()=>h});var e=g(6860),t=g(4438),w=g(8617),S=g(6600);const l=["mat-button",""],x=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],f=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],y=["mat-mini-fab",""],R=["mat-icon-button",""],z=["*"],$=new t.nKC("MAT_BUTTON_CONFIG"),Q=[{attribute:"mat-button",mdcClasses:["mdc-button","mat-mdc-button"]},{attribute:"mat-flat-button",mdcClasses:["mdc-button","mdc-button--unelevated","mat-mdc-unelevated-button"]},{attribute:"mat-raised-button",mdcClasses:["mdc-button","mdc-button--raised","mat-mdc-raised-button"]},{attribute:"mat-stroked-button",mdcClasses:["mdc-button","mdc-button--outlined","mat-mdc-outlined-button"]},{attribute:"mat-fab",mdcClasses:["mdc-fab","mat-mdc-fab"]},{attribute:"mat-mini-fab",mdcClasses:["mdc-fab","mdc-fab--mini","mat-mdc-mini-fab"]},{attribute:"mat-icon-button",mdcClasses:["mdc-icon-button","mat-mdc-icon-button"]}];let J=(()=>{class L{get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(r){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,r)}get disableRipple(){return this._disableRipple}set disableRipple(r){this._disableRipple=r,this._updateRippleDisabled()}get disabled(){return this._disabled}set disabled(r){this._disabled=r,this._updateRippleDisabled()}constructor(r,v,V,N){this._elementRef=r,this._platform=v,this._ngZone=V,this._animationMode=N,this._focusMonitor=(0,t.WQX)(w.FN),this._rippleLoader=(0,t.WQX)(S.Ej),this._isFab=!1,this._disableRipple=!1,this._disabled=!1;const ne=(0,t.WQX)($,{optional:!0}),Ee=r.nativeElement,ze=Ee.classList;this.disabledInteractive=ne?.disabledInteractive??!1,this._rippleLoader?.configureRipple(Ee,{className:"mat-mdc-button-ripple"});for(const{attribute:qe,mdcClasses:Ke}of Q)Ee.hasAttribute(qe)&&ze.add(...Ke)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(r="program",v){r?this._focusMonitor.focusVia(this._elementRef.nativeElement,r,v):this._elementRef.nativeElement.focus(v)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}static#e=this.\u0275fac=function(v){t.QTQ()};static#t=this.\u0275dir=t.FsC({type:L,inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",t.L39],disabled:[2,"disabled","disabled",t.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",t.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",t.L39]},features:[t.GFd]})}return L})(),ge=(()=>{class L extends J{constructor(r,v,V,N){super(r,v,V,N)}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:l,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(x),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&v&&t.AVh("mdc-button__ripple",!V._isFab)("mdc-fab__ripple",V._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button{position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;user-select:none;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0)}.mdc-button .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top}[dir=rtl] .mdc-button .mdc-button__icon,.mdc-button .mdc-button__icon[dir=rtl]{margin-left:8px;margin-right:0}.mdc-button .mdc-button__progress-indicator{font-size:0;position:absolute;transform:translate(-50%, -50%);top:50%;left:50%;line-height:initial}.mdc-button .mdc-button__label{position:relative}.mdc-button .mdc-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px);display:none}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring{border-color:CanvasText}}.mdc-button .mdc-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring::after{border-color:CanvasText}}@media screen and (forced-colors: active){.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__focus-ring,.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__focus-ring{display:block}}.mdc-button .mdc-button__touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-button__label+.mdc-button__icon{margin-left:8px;margin-right:0}[dir=rtl] .mdc-button__label+.mdc-button__icon,.mdc-button__label+.mdc-button__icon[dir=rtl]{margin-left:0;margin-right:8px}svg.mdc-button__icon{fill:currentColor}.mdc-button--touch{margin-top:6px;margin-bottom:6px}.mdc-button{padding:0 8px 0 8px}.mdc-button--unelevated{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--unelevated.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--unelevated.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--raised{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--raised.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--raised.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--outlined{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button--outlined .mdc-button__ripple{border-style:solid;border-color:rgba(0,0,0,0)}.mat-mdc-button{font-family:var(--mdc-text-button-label-text-font);font-size:var(--mdc-text-button-label-text-size);letter-spacing:var(--mdc-text-button-label-text-tracking);font-weight:var(--mdc-text-button-label-text-weight);text-transform:var(--mdc-text-button-label-text-transform);height:var(--mdc-text-button-container-height);border-radius:var(--mdc-text-button-container-shape);padding:0 var(--mat-text-button-horizontal-padding, 8px)}.mat-mdc-button:not(:disabled){color:var(--mdc-text-button-label-text-color)}.mat-mdc-button:disabled{color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button .mdc-button__ripple{border-radius:var(--mdc-text-button-container-shape)}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-text-button-with-icon-horizontal-padding, 8px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-text-button-ripple-color)}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-state-layer-color)}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-disabled-state-layer-color)}.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-hover-state-layer-opacity)}.mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-focus-state-layer-opacity)}.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-pressed-state-layer-opacity)}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-text-button-touch-target-display)}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-unelevated-button{font-family:var(--mdc-filled-button-label-text-font);font-size:var(--mdc-filled-button-label-text-size);letter-spacing:var(--mdc-filled-button-label-text-tracking);font-weight:var(--mdc-filled-button-label-text-weight);text-transform:var(--mdc-filled-button-label-text-transform);height:var(--mdc-filled-button-container-height);border-radius:var(--mdc-filled-button-container-shape);padding:0 var(--mat-filled-button-horizontal-padding, 16px)}.mat-mdc-unelevated-button:not(:disabled){background-color:var(--mdc-filled-button-container-color)}.mat-mdc-unelevated-button:disabled{background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mdc-filled-button-label-text-color)}.mat-mdc-unelevated-button:disabled{color:var(--mdc-filled-button-disabled-label-text-color)}.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mdc-filled-button-container-shape)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-filled-button-ripple-color)}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-state-layer-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-disabled-state-layer-color)}.mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-hover-state-layer-opacity)}.mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-focus-state-layer-opacity)}.mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-pressed-state-layer-opacity)}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-filled-button-touch-target-display)}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-filled-button-disabled-label-text-color);background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{font-family:var(--mdc-protected-button-label-text-font);font-size:var(--mdc-protected-button-label-text-size);letter-spacing:var(--mdc-protected-button-label-text-tracking);font-weight:var(--mdc-protected-button-label-text-weight);text-transform:var(--mdc-protected-button-label-text-transform);height:var(--mdc-protected-button-container-height);border-radius:var(--mdc-protected-button-container-shape);padding:0 var(--mat-protected-button-horizontal-padding, 16px);box-shadow:var(--mdc-protected-button-container-elevation-shadow)}.mat-mdc-raised-button:not(:disabled){background-color:var(--mdc-protected-button-container-color)}.mat-mdc-raised-button:disabled{background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button:not(:disabled){color:var(--mdc-protected-button-label-text-color)}.mat-mdc-raised-button:disabled{color:var(--mdc-protected-button-disabled-label-text-color)}.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mdc-protected-button-container-shape)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-protected-button-ripple-color)}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-state-layer-color)}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-disabled-state-layer-color)}.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-hover-state-layer-opacity)}.mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-focus-state-layer-opacity)}.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-pressed-state-layer-opacity)}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-protected-button-touch-target-display)}.mat-mdc-raised-button:hover{box-shadow:var(--mdc-protected-button-hover-container-elevation-shadow)}.mat-mdc-raised-button:focus{box-shadow:var(--mdc-protected-button-focus-container-elevation-shadow)}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mdc-protected-button-pressed-container-elevation-shadow)}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-protected-button-disabled-label-text-color);background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mdc-protected-button-disabled-container-elevation-shadow)}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{font-family:var(--mdc-outlined-button-label-text-font);font-size:var(--mdc-outlined-button-label-text-size);letter-spacing:var(--mdc-outlined-button-label-text-tracking);font-weight:var(--mdc-outlined-button-label-text-weight);text-transform:var(--mdc-outlined-button-label-text-transform);height:var(--mdc-outlined-button-container-height);border-radius:var(--mdc-outlined-button-container-shape);padding:0 15px 0 15px;border-width:var(--mdc-outlined-button-outline-width);padding:0 var(--mat-outlined-button-horizontal-padding, 15px)}.mat-mdc-outlined-button:not(:disabled){color:var(--mdc-outlined-button-label-text-color)}.mat-mdc-outlined-button:disabled{color:var(--mdc-outlined-button-disabled-label-text-color)}.mat-mdc-outlined-button .mdc-button__ripple{border-radius:var(--mdc-outlined-button-container-shape)}.mat-mdc-outlined-button:not(:disabled){border-color:var(--mdc-outlined-button-outline-color)}.mat-mdc-outlined-button:disabled{border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mdc-button--icon-trailing{padding:0 11px 0 15px}.mat-mdc-outlined-button.mdc-button--icon-leading{padding:0 15px 0 11px}.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:var(--mdc-outlined-button-outline-width)}.mat-mdc-outlined-button .mdc-button__touch{left:calc(-1 * var(--mdc-outlined-button-outline-width));width:calc(100% + 2 * var(--mdc-outlined-button-outline-width))}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-outlined-button-ripple-color)}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-state-layer-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-disabled-state-layer-color)}.mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-hover-state-layer-opacity)}.mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-focus-state-layer-opacity)}.mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-pressed-state-layer-opacity)}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-outlined-button-touch-target-display)}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-outlined-button-disabled-label-text-color);border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button-base{text-decoration:none}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-outlined-button .mdc-button__label{z-index:1}.mat-mdc-button .mat-mdc-focus-indicator,.mat-mdc-unelevated-button .mat-mdc-focus-indicator,.mat-mdc-raised-button .mat-mdc-focus-indicator,.mat-mdc-outlined-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-unelevated-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-raised-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-outlined-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon{display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:-1px}.mat-mdc-unelevated-button .mat-mdc-focus-indicator::before,.mat-mdc-raised-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 3px)*-1)}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return L})();const Me=new t.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:Te});function Te(){return{color:"accent"}}const de=Te();let n=(()=>{class L extends J{constructor(r,v,V,N,ne){super(r,v,V,N),this._options=ne,this._isFab=!0,this._options=this._options||de,this.color=this._options.color||de.color}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8),t.rXU(Me,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-mini-fab",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:y,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(x),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&v&&t.AVh("mdc-button__ripple",!V._isFab)("mdc-fab__ripple",V._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-fab{position:relative;display:inline-flex;position:relative;align-items:center;justify-content:center;box-sizing:border-box;width:56px;height:56px;padding:0;border:none;fill:currentColor;text-decoration:none;cursor:pointer;user-select:none;-moz-appearance:none;-webkit-appearance:none;overflow:visible;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-fab .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-fab[hidden]{display:none}.mdc-fab::-moz-focus-inner{padding:0;border:0}.mdc-fab .mdc-fab__focus-ring{position:absolute}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{border-color:CanvasText}}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{border-color:CanvasText}}.mdc-fab:active,.mdc-fab:focus{outline:none}.mdc-fab:hover{cursor:pointer}.mdc-fab>svg{width:100%}.mdc-fab--mini{width:40px;height:40px}.mdc-fab--extended{border-radius:24px;padding-left:20px;padding-right:20px;width:auto;max-width:100%;height:48px;line-height:normal}.mdc-fab--extended .mdc-fab__ripple{border-radius:24px}.mdc-fab--extended .mdc-fab__icon{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mdc-fab--extended .mdc-fab__icon,.mdc-fab--extended .mdc-fab__icon[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mdc-fab--extended .mdc-fab__label+.mdc-fab__icon,.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}.mdc-fab--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-fab--touch .mdc-fab__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-fab::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-fab::before{border-color:CanvasText}}.mdc-fab__label{justify-content:flex-start;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden;overflow-y:visible}.mdc-fab__icon{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mdc-fab .mdc-fab__icon{display:inline-flex;align-items:center;justify-content:center}.mdc-fab--exited{transform:scale(0);opacity:0;transition:opacity 15ms linear 150ms,transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-fab--exited .mdc-fab__icon{transform:scale(0);transition:transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-fab{background-color:var(--mdc-fab-container-color)}.mat-mdc-fab .mdc-fab__icon{width:var(--mdc-fab-icon-size);height:var(--mdc-fab-icon-size);font-size:var(--mdc-fab-icon-size)}.mat-mdc-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-container-shape)}.mat-mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-container-shape)}.mat-mdc-mini-fab{background-color:var(--mdc-fab-small-container-color)}.mat-mdc-mini-fab .mdc-fab__icon{width:var(--mdc-fab-small-icon-size);height:var(--mdc-fab-small-icon-size);font-size:var(--mdc-fab-small-icon-size)}.mat-mdc-mini-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-mini-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mdc-extended-fab-container-height);border-radius:var(--mdc-extended-fab-container-shape);font-family:var(--mdc-extended-fab-label-text-font);font-size:var(--mdc-extended-fab-label-text-size);font-weight:var(--mdc-extended-fab-label-text-weight);letter-spacing:var(--mdc-extended-fab-label-text-tracking)}.mat-mdc-extended-fab .mdc-fab__ripple{border-radius:var(--mdc-extended-fab-container-shape)}.mat-mdc-fab,.mat-mdc-mini-fab{-webkit-tap-highlight-color:rgba(0,0,0,0);flex-shrink:0}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab .mdc-button__label,.mat-mdc-mini-fab .mdc-button__label{z-index:1}.mat-mdc-fab .mat-mdc-focus-indicator,.mat-mdc-mini-fab .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab:focus .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-fab._mat-animation-noopable,.mat-mdc-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-mini-fab:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}.mat-mdc-fab .mat-icon,.mat-mdc-fab .material-icons,.mat-mdc-mini-fab .mat-icon,.mat-mdc-mini-fab .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab[disabled],.mat-mdc-fab[disabled]:focus,.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-fab.mat-mdc-button-disabled:focus,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab[disabled]:focus,.mat-mdc-mini-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab.mat-mdc-button-disabled-interactive,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{color:var(--mat-fab-foreground-color, inherit);box-shadow:var(--mdc-fab-container-elevation-shadow)}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-touch-target-display)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color)}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color)}.mat-mdc-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-disabled-state-layer-color)}.mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-hover-state-layer-opacity)}.mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-focus-state-layer-opacity)}.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity)}.mat-mdc-fab:hover{box-shadow:var(--mdc-fab-hover-container-elevation-shadow)}.mat-mdc-fab:focus{box-shadow:var(--mdc-fab-focus-container-elevation-shadow)}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mdc-fab-pressed-container-elevation-shadow)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color);background-color:var(--mat-fab-disabled-state-container-color)}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab{color:var(--mat-fab-small-foreground-color, inherit);box-shadow:var(--mdc-fab-small-container-elevation-shadow)}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-small-touch-target-display)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color)}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color)}.mat-mdc-mini-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-disabled-state-layer-color)}.mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-hover-state-layer-opacity)}.mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-focus-state-layer-opacity)}.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity)}.mat-mdc-mini-fab:hover{box-shadow:var(--mdc-fab-small-hover-container-elevation-shadow)}.mat-mdc-mini-fab:focus{box-shadow:var(--mdc-fab-small-focus-container-elevation-shadow)}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mdc-fab-small-pressed-container-elevation-shadow)}.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-small-disabled-state-foreground-color);background-color:var(--mat-fab-small-disabled-state-container-color)}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-extended-fab{box-shadow:var(--mdc-extended-fab-container-elevation-shadow)}.mat-mdc-extended-fab:hover{box-shadow:var(--mdc-extended-fab-hover-container-elevation-shadow)}.mat-mdc-extended-fab:focus{box-shadow:var(--mdc-extended-fab-focus-container-elevation-shadow)}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mdc-extended-fab-pressed-container-elevation-shadow)}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab[disabled]:focus,.mat-mdc-extended-fab.mat-mdc-button-disabled,.mat-mdc-extended-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-extended-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons,.mat-mdc-extended-fab>.mat-icon[dir=rtl],.mat-mdc-extended-fab>.material-icons[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.material-icons,.mat-mdc-extended-fab .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-extended-fab .mdc-button__label+.material-icons[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}'],encapsulation:2,changeDetection:0})}return L})(),h=(()=>{class L extends J{constructor(r,v,V,N){super(r,v,V,N),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-icon-button",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:R,ngContentSelectors:z,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(),t.nrm(0,"span",0),t.SdG(1),t.nrm(2,"span",1)(3,"span",2))},styles:['.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}@media screen and (forced-colors: active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block}}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button[hidden]{display:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;display:none}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring{border-color:CanvasText}}.mdc-icon-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.mat-mdc-icon-button{color:var(--mdc-icon-button-icon-color)}.mat-mdc-icon-button .mdc-button__icon{font-size:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button svg,.mat-mdc-icon-button img{width:var(--mdc-icon-button-icon-size);height:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button:disabled{color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button{border-radius:50%;flex-shrink:0;text-align:center;width:var(--mdc-icon-button-state-layer-size, 48px);height:var(--mdc-icon-button-state-layer-size, 48px);padding:calc(calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-icon-size, 24px)) / 2);font-size:var(--mdc-icon-button-icon-size);-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button svg{vertical-align:baseline}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-icon-button .mdc-button__label{z-index:1}.mat-mdc-icon-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-icon-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color)}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color)}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color)}.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-hover-state-layer-opacity)}.mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-focus-state-layer-opacity)}.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity)}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-icon-button-touch-target-display)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:50%}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return L})(),k=(()=>{class L{static#e=this.\u0275fac=function(v){return new(v||L)};static#t=this.\u0275mod=t.$C({type:L});static#i=this.\u0275inj=t.G2t({imports:[S.yE,S.pZ,S.yE]})}return L})()},5596:(Qe,te,g)=>{"use strict";g.d(te,{Hu:()=>Te,Lc:()=>z,MM:()=>$,RN:()=>T,dh:()=>y,m2:()=>R});var e=g(4438),t=g(177),w=g(6600);const S=["*"],f=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],I=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],d=new e.nKC("MAT_CARD_CONFIG");let T=(()=>{class de{constructor(n){this.appearance=n?.appearance||"raised"}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU(d,8))};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:4,hostBindings:function(c,m){2&c&&e.AVh("mat-mdc-card-outlined","outlined"===m.appearance)("mdc-card--outlined","outlined"===m.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],standalone:!0,features:[e.aNF],ngContentSelectors:S,decls:1,vars:0,template:function(c,m){1&c&&(e.NAR(),e.SdG(0))},styles:['.mdc-card{display:flex;flex-direction:column;box-sizing:border-box}.mdc-card::after{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none;pointer-events:none}@media screen and (forced-colors: active){.mdc-card::after{border-color:CanvasText}}.mdc-card--outlined::after{border:none}.mdc-card__content{border-radius:inherit;height:100%}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__media--square::before{margin-top:100%}.mdc-card__media--16-9::before{margin-top:56.25%}.mdc-card__media-content{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box}.mdc-card__primary-action{display:flex;flex-direction:column;box-sizing:border-box;position:relative;outline:none;color:inherit;text-decoration:none;cursor:pointer;overflow:hidden}.mdc-card__primary-action:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__primary-action:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mdc-card__actions--full-bleed{padding:0}.mdc-card__action-buttons,.mdc-card__action-icons{display:flex;flex-direction:row;align-items:center;box-sizing:border-box}.mdc-card__action-icons{color:rgba(0, 0, 0, 0.6);flex-grow:1;justify-content:flex-end}.mdc-card__action-buttons+.mdc-card__action-icons{margin-left:16px;margin-right:0}[dir=rtl] .mdc-card__action-buttons+.mdc-card__action-icons,.mdc-card__action-buttons+.mdc-card__action-icons[dir=rtl]{margin-left:0;margin-right:16px}.mdc-card__action{display:inline-flex;flex-direction:row;align-items:center;box-sizing:border-box;justify-content:center;cursor:pointer;user-select:none}.mdc-card__action:focus{outline:none}.mdc-card__action--button{margin-left:0;margin-right:8px;padding:0 8px}[dir=rtl] .mdc-card__action--button,.mdc-card__action--button[dir=rtl]{margin-left:8px;margin-right:0}.mdc-card__action--button:last-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-card__action--button:last-child,.mdc-card__action--button:last-child[dir=rtl]{margin-left:0;margin-right:0}.mdc-card__actions--full-bleed .mdc-card__action--button{justify-content:space-between;width:100%;height:auto;max-height:none;margin:0;padding:8px 16px;text-align:left}[dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button,.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl]{text-align:right}.mdc-card__action--icon{margin:-6px 0;padding:12px}.mdc-card__action--icon:not(:disabled){color:rgba(0, 0, 0, 0.6)}.mat-mdc-card{border-radius:var(--mdc-elevated-card-container-shape);background-color:var(--mdc-elevated-card-container-color);border-width:0;border-style:solid;border-color:var(--mdc-elevated-card-container-color);box-shadow:var(--mdc-elevated-card-container-elevation)}.mat-mdc-card .mdc-card::after{border-radius:var(--mdc-elevated-card-container-shape)}.mat-mdc-card-outlined{border-width:var(--mdc-outlined-card-outline-width);border-style:solid;border-color:var(--mdc-outlined-card-outline-color);border-radius:var(--mdc-outlined-card-container-shape);background-color:var(--mdc-outlined-card-container-color);box-shadow:var(--mdc-outlined-card-container-elevation)}.mat-mdc-card-outlined .mdc-card::after{border-radius:var(--mdc-outlined-card-container-shape)}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font);line-height:var(--mat-card-title-text-line-height);font-size:var(--mat-card-title-text-size);letter-spacing:var(--mat-card-title-text-tracking);font-weight:var(--mat-card-title-text-weight)}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color);font-family:var(--mat-card-subtitle-text-font);line-height:var(--mat-card-subtitle-text-line-height);font-size:var(--mat-card-subtitle-text-size);letter-spacing:var(--mat-card-subtitle-text-tracking);font-weight:var(--mat-card-subtitle-text-weight)}.mat-mdc-card{position:relative}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}'],encapsulation:2,changeDetection:0})}return de})(),y=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"],standalone:!0})}return de})(),R=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"],standalone:!0})}return de})(),z=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"],standalone:!0})}return de})(),$=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],standalone:!0,features:[e.aNF],ngContentSelectors:I,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(c,m){1&c&&(e.NAR(f),e.SdG(0),e.j41(1,"div",0),e.SdG(2,1),e.k0s(),e.SdG(3,2))},encapsulation:2,changeDetection:0})}return de})(),Te=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275mod=e.$C({type:de});static#i=this.\u0275inj=e.G2t({imports:[w.yE,t.MD,w.yE]})}return de})()},2765:(Qe,te,g)=>{"use strict";g.d(te,{So:()=>z,g7:()=>Q});var e=g(4438),t=g(9417),w=g(6600);const S=["input"],l=["label"],x=["*"],f=new e.nKC("mat-checkbox-default-options",{providedIn:"root",factory:I});function I(){return{color:"accent",clickAction:"check-indeterminate"}}var d=function(J){return J[J.Init=0]="Init",J[J.Checked=1]="Checked",J[J.Unchecked=2]="Unchecked",J[J.Indeterminate=3]="Indeterminate",J}(d||{});const T={provide:t.kq,useExisting:(0,e.Rfq)(()=>z),multi:!0};class y{}let F=0;const R=I();let z=(()=>{class J{focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(ie){const ge=new y;return ge.source=this,ge.checked=ie,ge}_getAnimationTargetElement(){return this._inputElement?.nativeElement}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,ge,ae,Me,Te,de){this._elementRef=ie,this._changeDetectorRef=ge,this._ngZone=ae,this._animationMode=Te,this._options=de,this._animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"},this.ariaLabel="",this.ariaLabelledby=null,this.labelPosition="after",this.name=null,this.change=new e.bkB,this.indeterminateChange=new e.bkB,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=d.Init,this._controlValueAccessorChangeFn=()=>{},this._validatorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||R,this.color=this._options.color||R.color,this.tabIndex=parseInt(Me)||0,this.id=this._uniqueId="mat-mdc-checkbox-"+ ++F}ngOnChanges(ie){ie.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(ie){ie!=this.checked&&(this._checked=ie,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(ie){ie!==this.disabled&&(this._disabled=ie,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(ie){const ge=ie!=this._indeterminate;this._indeterminate=ie,ge&&(this._transitionCheckState(this._indeterminate?d.Indeterminate:this.checked?d.Checked:d.Unchecked),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(ie){this.checked=!!ie}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this._onTouched=ie}setDisabledState(ie){this.disabled=ie}validate(ie){return this.required&&!0!==ie.value?{required:!0}:null}registerOnValidatorChange(ie){this._validatorChangeFn=ie}_transitionCheckState(ie){let ge=this._currentCheckState,ae=this._getAnimationTargetElement();if(ge!==ie&&ae&&(this._currentAnimationClass&&ae.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(ge,ie),this._currentCheckState=ie,this._currentAnimationClass.length>0)){ae.classList.add(this._currentAnimationClass);const Me=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{ae.classList.remove(Me)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const ie=this._options?.clickAction;this.disabled||"noop"===ie?!this.disabled&&"noop"===ie&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==ie&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?d.Checked:d.Unchecked),this._emitChangeEvent())}_onInteractionEvent(ie){ie.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(ie,ge){if("NoopAnimations"===this._animationMode)return"";switch(ie){case d.Init:if(ge===d.Checked)return this._animationClasses.uncheckedToChecked;if(ge==d.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case d.Unchecked:return ge===d.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case d.Checked:return ge===d.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case d.Indeterminate:return ge===d.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(ie){const ge=this._inputElement;ge&&(ge.nativeElement.indeterminate=ie)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(ie){ie.target&&this._labelElement.nativeElement.contains(ie.target)&&ie.stopPropagation()}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.kS0("tabindex"),e.rXU(e.bc$,8),e.rXU(f,8))};static#t=this.\u0275cmp=e.VBU({type:J,selectors:[["mat-checkbox"]],viewQuery:function(ge,ae){if(1&ge&&(e.GBs(S,5),e.GBs(l,5),e.GBs(w.r6,5)),2&ge){let Me;e.mGM(Me=e.lsd())&&(ae._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ae._labelElement=Me.first),e.mGM(Me=e.lsd())&&(ae.ripple=Me.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:14,hostBindings:function(ge,ae){2&ge&&(e.Mr5("id",ae.id),e.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),e.HbH(ae.color?"mat-"+ae.color:"mat-accent"),e.AVh("_mat-animation-noopable","NoopAnimations"===ae._animationMode)("mdc-checkbox--disabled",ae.disabled)("mat-mdc-checkbox-disabled",ae.disabled)("mat-mdc-checkbox-checked",ae.checked))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],id:"id",required:[2,"required","required",e.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",ie=>null==ie?void 0:(0,e.Udg)(ie)],color:"color",checked:[2,"checked","checked",e.L39],disabled:[2,"disabled","disabled",e.L39],indeterminate:[2,"indeterminate","indeterminate",e.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],standalone:!0,features:[e.Jv_([T,{provide:t.cz,useExisting:J,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:x,decls:15,vars:19,consts:[["checkbox",""],["input",""],["label",""],["mat-internal-form-field","",3,"click","labelPosition"],[1,"mdc-checkbox"],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"blur","click","change","checked","indeterminate","disabled","id","required","tabIndex"],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(ge,ae){if(1&ge){const Me=e.RV6();e.NAR(),e.j41(0,"div",3),e.bIt("click",function(de){return e.eBV(Me),e.Njj(ae._preventBubblingFromLabel(de))}),e.j41(1,"div",4,0)(3,"div",5),e.bIt("click",function(){return e.eBV(Me),e.Njj(ae._onTouchTargetClick())}),e.k0s(),e.j41(4,"input",6,1),e.bIt("blur",function(){return e.eBV(Me),e.Njj(ae._onBlur())})("click",function(){return e.eBV(Me),e.Njj(ae._onInputClick())})("change",function(de){return e.eBV(Me),e.Njj(ae._onInteractionEvent(de))}),e.k0s(),e.nrm(6,"div",7),e.j41(7,"div",8),e.qSk(),e.j41(8,"svg",9),e.nrm(9,"path",10),e.k0s(),e.joV(),e.nrm(10,"div",11),e.k0s(),e.nrm(11,"div",12),e.k0s(),e.j41(12,"label",13,2),e.SdG(14),e.k0s()()}if(2&ge){const Me=e.sdS(2);e.Y8G("labelPosition",ae.labelPosition),e.R7$(4),e.AVh("mdc-checkbox--selected",ae.checked),e.Y8G("checked",ae.checked)("indeterminate",ae.indeterminate)("disabled",ae.disabled)("id",ae.inputId)("required",ae.required)("tabIndex",ae.disabled?-1:ae.tabIndex),e.BMQ("aria-label",ae.ariaLabel||null)("aria-labelledby",ae.ariaLabelledby)("aria-describedby",ae.ariaDescribedby)("aria-checked",ae.indeterminate?"mixed":null)("name",ae.name)("value",ae.value),e.R7$(7),e.Y8G("matRippleTrigger",Me)("matRippleDisabled",ae.disableRipple||ae.disabled)("matRippleCentered",!0),e.R7$(),e.Y8G("for",ae.inputId)}},dependencies:[w.r6,w.tO],styles:['.mdc-touch-target-wrapper{display:inline}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-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 mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:mdc-animation-deceleration-curve-timing-function;transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}}.mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}@keyframes mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}}@keyframes mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}}.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2)}.mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:focus:not(:checked):not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color);background-color:var(--mdc-checkbox-selected-focus-icon-color)}.mdc-checkbox:hover .mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox:hover .mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color)}.mat-mdc-checkbox label:empty{display:none}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return J})(),Q=(()=>{class J{static#e=this.\u0275fac=function(ge){return new(ge||J)};static#t=this.\u0275mod=e.$C({type:J});static#i=this.\u0275inj=e.G2t({imports:[z,w.yE,w.yE]})}return J})()},6471:(Qe,te,g)=>{"use strict";g.d(te,{Jl:()=>qe,YN:()=>at});var e=g(4438),t=g(177),w=g(6600),S=g(8617),l=g(1413),x=g(7786),f=g(6697),y=(g(6977),g(9172),g(5558),g(7336));g(8203),g(9417),g(6467);const W=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],$=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function j(pt,Xt){1&pt&&(e.j41(0,"span",3),e.SdG(1,1),e.k0s())}function Q(pt,Xt){1&pt&&(e.j41(0,"span",6),e.SdG(1,2),e.k0s())}const k=new e.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[y.Fm]})}),L=new e.nKC("MatChipAvatar"),_=new e.nKC("MatChipTrailingIcon"),r=new e.nKC("MatChipRemove"),v=new e.nKC("MatChip");let V=(()=>{class pt{get disabled(){return this._disabled||this._parentChip.disabled}set disabled(ye){this._disabled=ye}_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(ye,ue){this._elementRef=ye,this._parentChip=ue,this.isInteractive=!0,this._isPrimary=!0,this._disabled=!1,this.tabIndex=-1,this._allowFocusWhenDisabled=!1,"BUTTON"===ye.nativeElement.nodeName&&ye.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(ye){!this.disabled&&this.isInteractive&&this._isPrimary&&(ye.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(ye){(ye.keyCode===y.Fm||ye.keyCode===y.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(ye.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static#e=this.\u0275fac=function(ue){return new(ue||pt)(e.rXU(e.aKT),e.rXU(v))};static#t=this.\u0275dir=e.FsC({type:pt,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:9,hostBindings:function(ue,Ie){1&ue&&e.bIt("click",function(Xe){return Ie._handleClick(Xe)})("keydown",function(Xe){return Ie._handleKeydown(Xe)}),2&ue&&(e.BMQ("tabindex",Ie._getTabindex())("disabled",Ie._getDisabledAttribute())("aria-disabled",Ie.disabled),e.AVh("mdc-evolution-chip__action--primary",Ie._isPrimary)("mdc-evolution-chip__action--presentational",!Ie.isInteractive)("mdc-evolution-chip__action--trailing",!Ie._isPrimary))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ye=>null==ye?-1:(0,e.Udg)(ye)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"},standalone:!0,features:[e.GFd]})}return pt})(),ze=0,qe=(()=>{class pt{_hasFocus(){return this._hasFocusInternal}get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(ye){this._value=ye}get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(ye){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,ye)}constructor(ye,ue,Ie,He,Xe,yt,Ye,rt){this._changeDetectorRef=ye,this._elementRef=ue,this._ngZone=Ie,this._focusMonitor=He,this._globalRippleOptions=Ye,this._onFocus=new l.B,this._onBlur=new l.B,this.role=null,this._hasFocusInternal=!1,this.id="mat-mdc-chip-"+ze++,this.ariaLabel=null,this.ariaDescription=null,this._ariaDescriptionId=`${this.id}-aria-description`,this.removable=!0,this.highlighted=!1,this.disableRipple=!1,this.disabled=!1,this.tabIndex=-1,this.removed=new e.bkB,this.destroyed=new e.bkB,this.basicChipAttrName="mat-basic-chip",this._rippleLoader=(0,e.WQX)(w.Ej),this._document=Xe,this._animationsDisabled="NoopAnimations"===yt,null!=rt&&(this.tabIndex=parseInt(rt)??-1),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){const ye=this._elementRef.nativeElement;this._isBasicChip=ye.hasAttribute(this.basicChipAttrName)||ye.tagName.toLowerCase()===this.basicChipAttrName}ngAfterViewInit(){this._textElement=this._elementRef.nativeElement.querySelector(".mat-mdc-chip-action-label"),this._pendingFocus&&(this._pendingFocus=!1,this.focus())}ngAfterContentInit(){this._actionChanges=(0,x.h)(this._allLeadingIcons.changes,this._allTrailingIcons.changes,this._allRemoveIcons.changes).subscribe(()=>this._changeDetectorRef.markForCheck())}ngDoCheck(){this._rippleLoader.setDisabled(this._elementRef.nativeElement,this._isRippleDisabled())}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement),this._actionChanges?.unsubscribe(),this.destroyed.emit({chip:this}),this.destroyed.complete()}remove(){this.removable&&this.removed.emit({chip:this})}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(ye){(ye.keyCode===y.G_&&!ye.repeat||ye.keyCode===y.SJ)&&(ye.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(ye){return this._getActions().find(ue=>{const Ie=ue._elementRef.nativeElement;return Ie===ye||Ie.contains(ye)})}_getActions(){const ye=[];return this.primaryAction&&ye.push(this.primaryAction),this.removeIcon&&ye.push(this.removeIcon),this.trailingIcon&&ye.push(this.trailingIcon),ye}_handlePrimaryActionInteraction(){}_getTabIndex(){return this.role?this.disabled?-1:this.tabIndex:null}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(ye=>{const ue=null!==ye;ue!==this._hasFocusInternal&&(this._hasFocusInternal=ue,ue?this._onFocus.next({chip:this}):this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>this._ngZone.run(()=>this._onBlur.next({chip:this}))))})}static#e=this.\u0275fac=function(ue){return new(ue||pt)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(S.FN),e.rXU(t.qQ),e.rXU(e.bc$,8),e.rXU(w.$E,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:pt,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(ue,Ie,He){if(1&ue&&(e.wni(He,L,5),e.wni(He,_,5),e.wni(He,r,5),e.wni(He,L,5),e.wni(He,_,5),e.wni(He,r,5)),2&ue){let Xe;e.mGM(Xe=e.lsd())&&(Ie.leadingIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie.trailingIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie.removeIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie._allLeadingIcons=Xe),e.mGM(Xe=e.lsd())&&(Ie._allTrailingIcons=Xe),e.mGM(Xe=e.lsd())&&(Ie._allRemoveIcons=Xe)}},viewQuery:function(ue,Ie){if(1&ue&&e.GBs(V,5),2&ue){let He;e.mGM(He=e.lsd())&&(Ie.primaryAction=He.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:32,hostBindings:function(ue,Ie){1&ue&&e.bIt("keydown",function(Xe){return Ie._handleKeydown(Xe)}),2&ue&&(e.Mr5("id",Ie.id),e.BMQ("role",Ie.role)("tabindex",Ie._getTabIndex())("aria-label",Ie.ariaLabel),e.HbH("mat-"+(Ie.color||"primary")),e.AVh("mdc-evolution-chip",!Ie._isBasicChip)("mdc-evolution-chip--disabled",Ie.disabled)("mdc-evolution-chip--with-trailing-action",Ie._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",Ie.leadingIcon)("mdc-evolution-chip--with-primary-icon",Ie.leadingIcon)("mdc-evolution-chip--with-avatar",Ie.leadingIcon)("mat-mdc-chip-with-avatar",Ie.leadingIcon)("mat-mdc-chip-highlighted",Ie.highlighted)("mat-mdc-chip-disabled",Ie.disabled)("mat-mdc-basic-chip",Ie._isBasicChip)("mat-mdc-standard-chip",!Ie._isBasicChip)("mat-mdc-chip-with-trailing-icon",Ie._hasTrailingIcon())("_mat-animation-noopable",Ie._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",e.L39],highlighted:[2,"highlighted","highlighted",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ye=>null==ye?void 0:(0,e.Udg)(ye)]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],standalone:!0,features:[e.Jv_([{provide:v,useExisting:pt}]),e.GFd,e.aNF],ngContentSelectors:$,decls:8,vars:3,consts:[[1,"mat-mdc-chip-focus-overlay"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--primary"],["matChipAction","",3,"isInteractive"],[1,"mdc-evolution-chip__graphic","mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__text-label","mat-mdc-chip-action-label"],[1,"mat-mdc-chip-primary-focus-indicator","mat-mdc-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(ue,Ie){1&ue&&(e.NAR(W),e.nrm(0,"span",0),e.j41(1,"span",1)(2,"span",2),e.DNE(3,j,2,0,"span",3),e.j41(4,"span",4),e.SdG(5),e.nrm(6,"span",5),e.k0s()()(),e.DNE(7,Q,2,0,"span",6)),2&ue&&(e.R7$(2),e.Y8G("isInteractive",!1),e.R7$(),e.vxM(Ie.leadingIcon?3:-1),e.R7$(4),e.vxM(Ie._hasTrailingIcon()?7:-1))},dependencies:[V],styles:['.mdc-evolution-chip,.mdc-evolution-chip__cell,.mdc-evolution-chip__action{display:inline-flex;align-items:center}.mdc-evolution-chip{position:relative;max-width:100%}.mdc-evolution-chip .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{overflow-x:hidden}.mdc-evolution-chip__cell--trailing{flex:1 0 auto}.mdc-evolution-chip__action{align-items:center;background:none;border:none;box-sizing:content-box;cursor:pointer;display:inline-flex;justify-content:center;outline:none;padding:0;text-decoration:none;color:inherit}.mdc-evolution-chip__action--presentational{cursor:auto}.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{pointer-events:none}.mdc-evolution-chip__action--primary{overflow-x:hidden}.mdc-evolution-chip__action--trailing{position:relative;overflow:visible}.mdc-evolution-chip__action--primary:before{box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1}.mdc-evolution-chip--touch{margin-top:8px;margin-bottom:8px}.mdc-evolution-chip__action-touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-evolution-chip__text-label{white-space:nowrap;user-select:none;text-overflow:ellipsis;overflow:hidden}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mdc-evolution-chip__checkmark-background{opacity:0}.mdc-evolution-chip__checkmark-svg{display:block}.mdc-evolution-chip__checkmark-path{stroke-width:2px;stroke-dasharray:29.7833385;stroke-dashoffset:29.7833385;stroke:currentColor}.mdc-evolution-chip--selecting .mdc-evolution-chip__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark{transition:transform 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__graphic{transition:width 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark{transition:opacity 50ms 0ms linear,transform 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-50%, -50%)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@keyframes mdc-evolution-chip-enter{from{transform:scale(0.8);opacity:.4}to{transform:scale(1);opacity:1}}.mdc-evolution-chip--enter{animation:mdc-evolution-chip-enter 100ms 0ms cubic-bezier(0, 0, 0.2, 1)}@keyframes mdc-evolution-chip-exit{from{opacity:1}to{opacity:0}}.mdc-evolution-chip--exit{animation:mdc-evolution-chip-exit 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-evolution-chip--hidden{opacity:0;pointer-events:none;transition:width 150ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-standard-chip{border-radius:var(--mdc-chip-container-shape-radius);height:var(--mdc-chip-container-height)}.mat-mdc-standard-chip .mdc-evolution-chip__ripple{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mdc-chip-with-avatar-avatar-shape-radius)}.mat-mdc-standard-chip.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--with-primary-icon){--mdc-chip-graphic-selected-width:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{height:var(--mdc-chip-with-avatar-avatar-size);width:var(--mdc-chip-with-avatar-avatar-size);font-size:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational).mdc-ripple-upgraded--background-focused:before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus:before{border-color:var(--mdc-chip-focus-outline-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-disabled-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-outline-width)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-selected-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-flat-disabled-selected-container-color)}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mdc-chip-label-text-font);line-height:var(--mdc-chip-label-text-line-height);font-size:var(--mdc-chip-label-text-size);font-weight:var(--mdc-chip-label-text-weight);letter-spacing:var(--mdc-chip-label-text-tracking)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-selected-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{height:var(--mdc-chip-with-icon-icon-size);width:var(--mdc-chip-with-icon-icon-size);font-size:var(--mdc-chip-with-icon-icon-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-selected-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-hover-state-layer-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-hover-state-layer-opacity)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-selected-hover-state-layer-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mat-mdc-chip-highlighted{--mdc-chip-with-icon-icon-color:var(--mdc-chip-with-icon-selected-icon-color);--mdc-chip-elevated-container-color:var(--mdc-chip-elevated-selected-container-color);--mdc-chip-label-text-color:var(--mdc-chip-selected-label-text-color);--mdc-chip-outline-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color)}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-focus-state-layer-color)}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-hover-state-layer-color);opacity:var(--mdc-chip-hover-state-layer-opacity)}.mat-mdc-chip-focus-overlay .mat-mdc-chip-selected:hover,.mat-mdc-chip-highlighted:hover .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-hover-state-layer-color);opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color);opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-chip-selected.cdk-focused .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-focus-state-layer-color);opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mdc-chip-with-avatar-disabled-avatar-opacity)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mdc-chip-with-icon-disabled-icon-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-disabled-trailing-icon-color)}.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity)}.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity)}.mat-mdc-chip-remove::after{background:var(--mat-chip-trailing-action-state-layer-color)}.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity)}.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity)}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background:var(--mat-chip-selected-trailing-action-state-layer-color)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__checkmark{height:20px;width:20px}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-mdc-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-mdc-standard-chip .mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mat-mdc-chip-action-label{overflow:visible}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary{flex-basis:100%}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit}.mat-mdc-standard-chip .mat-mdc-chip-graphic,.mat-mdc-standard-chip .mat-mdc-chip-trailing-icon{box-sizing:content-box}.mat-mdc-standard-chip._mat-animation-noopable,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__graphic,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark-path{transition-duration:1ms;animation-duration:1ms}.mat-mdc-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.mat-mdc-chip-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;opacity:0;border-radius:inherit;transition:opacity 150ms linear}._mat-animation-noopable .mat-mdc-chip-focus-overlay{transition:none}.mat-mdc-basic-chip .mat-mdc-chip-focus-overlay{display:none}.mat-mdc-chip .mat-ripple.mat-mdc-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-chip-avatar{text-align:center;line-height:1;color:var(--mdc-chip-with-icon-icon-color, currentColor)}.mat-mdc-chip{position:relative;z-index:0}.mat-mdc-chip-action-label{text-align:left;z-index:1}[dir=rtl] .mat-mdc-chip-action-label{text-align:right}.mat-mdc-chip.mdc-evolution-chip--with-trailing-action .mat-mdc-chip-action-label{position:relative}.mat-mdc-chip-action-label .mat-mdc-chip-primary-focus-indicator{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.mat-mdc-chip-action-label .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-remove::before{margin:calc(var(--mat-mdc-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-2px;bottom:-2px;left:6px;right:6px;border-radius:50%}.mat-mdc-chip-remove .mat-icon{width:18px;height:18px;font-size:18px;box-sizing:content-box}.mat-chip-edit-input{cursor:text;display:inline-block;color:inherit;outline:0}.cdk-high-contrast-active .mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}.mat-mdc-chip-action:focus .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return pt})(),at=(()=>{class pt{static#e=this.\u0275fac=function(ue){return new(ue||pt)};static#t=this.\u0275mod=e.$C({type:pt});static#i=this.\u0275inj=e.G2t({providers:[w.es,{provide:k,useValue:{separatorKeyCodes:[y.Fm]}}],imports:[w.yE,w.pZ,w.yE]})}return pt})()},6600:(Qe,te,g)=>{"use strict";g.d(te,{r5:()=>ie,ed:()=>ge,MJ:()=>V,es:()=>ce,de:()=>N,Ju:()=>r,QC:()=>Vt,is:()=>Nt,$E:()=>Xe,yE:()=>Te,Np:()=>_e,WX:()=>se,wT:()=>zt,Sy:()=>dt,MI:()=>$t,wg:()=>rt,O5:()=>Yt,r6:()=>yt,Ej:()=>gt,pZ:()=>Ye,xW:()=>ze,ug:()=>Ie,X0:()=>k,tO:()=>$e,jb:()=>Jt,TL:()=>St});var e=g(4438),t=g(8617),w=g(8203),l=g(177),x=g(6860),f=g(4085),I=g(1413),d=g(7336);const F=["text"],R=[[["mat-icon"]],"*"],z=["mat-icon","*"];function W(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",1),2&Fe){const et=e.XpG();e.Y8G("disabled",et.disabled)("state",et.selected?"checked":"unchecked")}}function $(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",3),2&Fe){const et=e.XpG();e.Y8G("disabled",et.disabled)}}function j(Fe,Ge){if(1&Fe&&(e.j41(0,"span",4),e.EFF(1),e.k0s()),2&Fe){const et=e.XpG();e.R7$(),e.SpI("(",et.group.label,")")}}const Q=["mat-internal-form-field",""],J=["*"];let ie=(()=>{class Fe{static#e=this.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)";static#t=this.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)";static#i=this.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)";static#n=this.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)"}return Fe})(),ge=(()=>{class Fe{static#e=this.COMPLEX="375ms";static#t=this.ENTERING="225ms";static#i=this.EXITING="195ms"}return Fe})();const Me=new e.nKC("mat-sanity-checks",{providedIn:"root",factory:function ae(){return!0}});let Te=(()=>{class Fe{constructor(et,st,Tt){this._sanityChecks=st,this._document=Tt,this._hasDoneGlobalChecks=!1,et._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(et){return!(0,x.v8)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[et])}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.KVO(t.Q_),e.KVO(Me,8),e.KVO(l.qQ))};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[w.jI,w.jI]})}return Fe})();class k{constructor(Ge,et,st,Tt,mi){this._defaultMatcher=Ge,this.ngControl=et,this._parentFormGroup=st,this._parentForm=Tt,this._stateChanges=mi,this.errorState=!1}updateErrorState(){const Ge=this.errorState,et=this._parentFormGroup||this._parentForm,st=this.matcher||this._defaultMatcher,Tt=this.ngControl?this.ngControl.control:null,mi=st?.isErrorState(Tt,et)??!1;mi!==Ge&&(this.errorState=mi,this._stateChanges.next())}}const r=new e.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function v(){return(0,e.WQX)(e.xe9)}});class V{constructor(){this._localeChanges=new I.B,this.localeChanges=this._localeChanges}getValidDateOrNull(Ge){return this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:null}deserialize(Ge){return null==Ge||this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:this.invalid()}setLocale(Ge){this.locale=Ge,this._localeChanges.next()}compareDate(Ge,et){return this.getYear(Ge)-this.getYear(et)||this.getMonth(Ge)-this.getMonth(et)||this.getDate(Ge)-this.getDate(et)}sameDate(Ge,et){if(Ge&&et){let st=this.isValid(Ge),Tt=this.isValid(et);return st&&Tt?!this.compareDate(Ge,et):st==Tt}return Ge==et}clampDate(Ge,et,st){return et&&this.compareDate(Ge,et)<0?et:st&&this.compareDate(Ge,st)>0?st:Ge}}const N=new e.nKC("mat-date-formats"),ne=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function Ee(Fe,Ge){const et=Array(Fe);for(let st=0;st{class Fe extends V{constructor(et){super(),this.useUtcForDisplay=!1,this._matDateLocale=(0,e.WQX)(r,{optional:!0}),void 0!==et&&(this._matDateLocale=et),super.setLocale(this._matDateLocale)}getYear(et){return et.getFullYear()}getMonth(et){return et.getMonth()}getDate(et){return et.getDate()}getDayOfWeek(et){return et.getDay()}getMonthNames(et){const st=new Intl.DateTimeFormat(this.locale,{month:et,timeZone:"utc"});return Ee(12,Tt=>this._format(st,new Date(2017,Tt,1)))}getDateNames(){const et=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return Ee(31,st=>this._format(et,new Date(2017,0,st+1)))}getDayOfWeekNames(et){const st=new Intl.DateTimeFormat(this.locale,{weekday:et,timeZone:"utc"});return Ee(7,Tt=>this._format(st,new Date(2017,0,Tt+1)))}getYearName(et){const st=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(st,et)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(et){return this.getDate(this._createDateWithOverflow(this.getYear(et),this.getMonth(et)+1,0))}clone(et){return new Date(et.getTime())}createDate(et,st,Tt){let mi=this._createDateWithOverflow(et,st,Tt);return mi.getMonth(),mi}today(){return new Date}parse(et,st){return"number"==typeof et?new Date(et):et?new Date(Date.parse(et)):null}format(et,st){if(!this.isValid(et))throw Error("NativeDateAdapter: Cannot format invalid date.");const Tt=new Intl.DateTimeFormat(this.locale,{...st,timeZone:"utc"});return this._format(Tt,et)}addCalendarYears(et,st){return this.addCalendarMonths(et,12*st)}addCalendarMonths(et,st){let Tt=this._createDateWithOverflow(this.getYear(et),this.getMonth(et)+st,this.getDate(et));return this.getMonth(Tt)!=((this.getMonth(et)+st)%12+12)%12&&(Tt=this._createDateWithOverflow(this.getYear(Tt),this.getMonth(Tt),0)),Tt}addCalendarDays(et,st){return this._createDateWithOverflow(this.getYear(et),this.getMonth(et),this.getDate(et)+st)}toIso8601(et){return[et.getUTCFullYear(),this._2digit(et.getUTCMonth()+1),this._2digit(et.getUTCDate())].join("-")}deserialize(et){if("string"==typeof et){if(!et)return null;if(ne.test(et)){let st=new Date(et);if(this.isValid(st))return st}}return super.deserialize(et)}isDateInstance(et){return et instanceof Date}isValid(et){return!isNaN(et.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(et,st,Tt){const mi=new Date;return mi.setFullYear(et,st,Tt),mi.setHours(0,0,0,0),mi}_2digit(et){return("00"+et).slice(-2)}_format(et,st){const Tt=new Date;return Tt.setUTCFullYear(st.getFullYear(),st.getMonth(),st.getDate()),Tt.setUTCHours(st.getHours(),st.getMinutes(),st.getSeconds(),st.getMilliseconds()),et.format(Tt)}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.KVO(r,8))};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const qe={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 se=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({providers:[X()]})}return Fe})();function X(Fe=qe){return[{provide:V,useClass:ze},{provide:N,useValue:Fe}]}let ce=(()=>{class Fe{isErrorState(et,st){return!!(et&&et.invalid&&(et.touched||st&&st.submitted))}static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}return Fe})(),_e=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te,Te]})}return Fe})();var be=function(Fe){return Fe[Fe.FADING_IN=0]="FADING_IN",Fe[Fe.VISIBLE=1]="VISIBLE",Fe[Fe.FADING_OUT=2]="FADING_OUT",Fe[Fe.HIDDEN=3]="HIDDEN",Fe}(be||{});class pe{constructor(Ge,et,st,Tt=!1){this._renderer=Ge,this.element=et,this.config=st,this._animationForciblyDisabledThroughCss=Tt,this.state=be.HIDDEN}fadeOut(){this._renderer.fadeOutRipple(this)}}const Ze=(0,x.BQ)({passive:!0,capture:!0});class _t{constructor(){this._events=new Map,this._delegateEventHandler=Ge=>{const et=(0,x.Fb)(Ge);et&&this._events.get(Ge.type)?.forEach((st,Tt)=>{(Tt===et||Tt.contains(et))&&st.forEach(mi=>mi.handleEvent(Ge))})}}addHandler(Ge,et,st,Tt){const mi=this._events.get(et);if(mi){const Kt=mi.get(st);Kt?Kt.add(Tt):mi.set(st,new Set([Tt]))}else this._events.set(et,new Map([[st,new Set([Tt])]])),Ge.runOutsideAngular(()=>{document.addEventListener(et,this._delegateEventHandler,Ze)})}removeHandler(Ge,et,st){const Tt=this._events.get(Ge);if(!Tt)return;const mi=Tt.get(et);mi&&(mi.delete(st),0===mi.size&&Tt.delete(et),0===Tt.size&&(this._events.delete(Ge),document.removeEventListener(Ge,this._delegateEventHandler,Ze)))}}const at={enterDuration:225,exitDuration:150},Xt=(0,x.BQ)({passive:!0,capture:!0}),ye=["mousedown","touchstart"],ue=["mouseup","mouseleave","touchend","touchcancel"];class Ie{static#e=this._eventManager=new _t;constructor(Ge,et,st,Tt){this._target=Ge,this._ngZone=et,this._platform=Tt,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,Tt.isBrowser&&(this._containerElement=(0,f.i8)(st))}fadeInRipple(Ge,et,st={}){const Tt=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),mi={...at,...st.animation};st.centered&&(Ge=Tt.left+Tt.width/2,et=Tt.top+Tt.height/2);const Kt=st.radius||function He(Fe,Ge,et){const st=Math.max(Math.abs(Fe-et.left),Math.abs(Fe-et.right)),Tt=Math.max(Math.abs(Ge-et.top),Math.abs(Ge-et.bottom));return Math.sqrt(st*st+Tt*Tt)}(Ge,et,Tt),Pt=Ge-Tt.left,Xi=et-Tt.top,di=mi.enterDuration,fi=document.createElement("div");fi.classList.add("mat-ripple-element"),fi.style.left=Pt-Kt+"px",fi.style.top=Xi-Kt+"px",fi.style.height=2*Kt+"px",fi.style.width=2*Kt+"px",null!=st.color&&(fi.style.backgroundColor=st.color),fi.style.transitionDuration=`${di}ms`,this._containerElement.appendChild(fi);const vn=window.getComputedStyle(fi),Li=vn.transitionDuration,Zi="none"===vn.transitionProperty||"0s"===Li||"0s, 0s"===Li||0===Tt.width&&0===Tt.height,Qt=new pe(this,fi,st,Zi);fi.style.transform="scale3d(1, 1, 1)",Qt.state=be.FADING_IN,st.persistent||(this._mostRecentTransientRipple=Qt);let Mt=null;return!Zi&&(di||mi.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const it=()=>this._finishRippleTransition(Qt),ct=()=>this._destroyRipple(Qt);fi.addEventListener("transitionend",it),fi.addEventListener("transitioncancel",ct),Mt={onTransitionEnd:it,onTransitionCancel:ct}}),this._activeRipples.set(Qt,Mt),(Zi||!di)&&this._finishRippleTransition(Qt),Qt}fadeOutRipple(Ge){if(Ge.state===be.FADING_OUT||Ge.state===be.HIDDEN)return;const et=Ge.element,st={...at,...Ge.config.animation};et.style.transitionDuration=`${st.exitDuration}ms`,et.style.opacity="0",Ge.state=be.FADING_OUT,(Ge._animationForciblyDisabledThroughCss||!st.exitDuration)&&this._finishRippleTransition(Ge)}fadeOutAll(){this._getActiveRipples().forEach(Ge=>Ge.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(Ge=>{Ge.config.persistent||Ge.fadeOut()})}setupTriggerEvents(Ge){const et=(0,f.i8)(Ge);!this._platform.isBrowser||!et||et===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=et,ye.forEach(st=>{Ie._eventManager.addHandler(this._ngZone,st,et,this)}))}handleEvent(Ge){"mousedown"===Ge.type?this._onMousedown(Ge):"touchstart"===Ge.type?this._onTouchStart(Ge):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{ue.forEach(et=>{this._triggerElement.addEventListener(et,this,Xt)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(Ge){Ge.state===be.FADING_IN?this._startFadeOutTransition(Ge):Ge.state===be.FADING_OUT&&this._destroyRipple(Ge)}_startFadeOutTransition(Ge){const et=Ge===this._mostRecentTransientRipple,{persistent:st}=Ge.config;Ge.state=be.VISIBLE,!st&&(!et||!this._isPointerDown)&&Ge.fadeOut()}_destroyRipple(Ge){const et=this._activeRipples.get(Ge)??null;this._activeRipples.delete(Ge),this._activeRipples.size||(this._containerRect=null),Ge===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),Ge.state=be.HIDDEN,null!==et&&(Ge.element.removeEventListener("transitionend",et.onTransitionEnd),Ge.element.removeEventListener("transitioncancel",et.onTransitionCancel)),Ge.element.remove()}_onMousedown(Ge){const et=(0,t._G)(Ge),st=this._lastTouchStartEvent&&Date.now(){!Ge.config.persistent&&(Ge.state===be.VISIBLE||Ge.config.terminateOnPointerUp&&Ge.state===be.FADING_IN)&&Ge.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const Ge=this._triggerElement;Ge&&(ye.forEach(et=>Ie._eventManager.removeHandler(et,Ge,this)),this._pointerUpEventsRegistered&&(ue.forEach(et=>Ge.removeEventListener(et,this,Xt)),this._pointerUpEventsRegistered=!1))}}const Xe=new e.nKC("mat-ripple-global-options");let yt=(()=>{class Fe{get disabled(){return this._disabled}set disabled(et){et&&this.fadeOutAllNonPersistent(),this._disabled=et,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(et){this._trigger=et,this._setupTriggerEventsIfEnabled()}constructor(et,st,Tt,mi,Kt){this._elementRef=et,this._animationMode=Kt,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=mi||{},this._rippleRenderer=new Ie(this,st,et,Tt)}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:{...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(et,st=0,Tt){return"number"==typeof et?this._rippleRenderer.fadeInRipple(et,st,{...this.rippleConfig,...Tt}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...et})}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(x.OD),e.rXU(Xe,8),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:Fe,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(st,Tt){2&st&&e.AVh("mat-ripple-unbounded",Tt.unbounded)},inputs:{color:[0,"matRippleColor","color"],unbounded:[0,"matRippleUnbounded","unbounded"],centered:[0,"matRippleCentered","centered"],radius:[0,"matRippleRadius","radius"],animation:[0,"matRippleAnimation","animation"],disabled:[0,"matRippleDisabled","disabled"],trigger:[0,"matRippleTrigger","trigger"]},exportAs:["matRipple"],standalone:!0})}return Fe})(),Ye=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te,Te]})}return Fe})(),rt=(()=>{class Fe{constructor(et){this._animationMode=et,this.state="unchecked",this.disabled=!1,this.appearance="full"}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(st,Tt){2&st&&e.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===Tt.state)("mat-pseudo-checkbox-checked","checked"===Tt.state)("mat-pseudo-checkbox-disabled",Tt.disabled)("mat-pseudo-checkbox-minimal","minimal"===Tt.appearance)("mat-pseudo-checkbox-full","full"===Tt.appearance)("_mat-animation-noopable","NoopAnimations"===Tt._animationMode)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(st,Tt){},styles:['.mat-pseudo-checkbox{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-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-minimal-pseudo-checkbox-selected-checkmark-color)}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color)}.mat-pseudo-checkbox-full{border-color:var(--mat-full-pseudo-checkbox-unselected-icon-color);border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-full-pseudo-checkbox-disabled-unselected-icon-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-full-pseudo-checkbox-selected-icon-color);border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-full-pseudo-checkbox-selected-checkmark-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background-color:var(--mat-full-pseudo-checkbox-disabled-selected-icon-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-full-pseudo-checkbox-disabled-selected-checkmark-color)}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}'],encapsulation:2,changeDetection:0})}return Fe})(),Yt=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te]})}return Fe})();const Nt=new e.nKC("MAT_OPTION_PARENT_COMPONENT"),Vt=new e.nKC("MatOptgroup");let tt=0;class $t{constructor(Ge,et=!1){this.source=Ge,this.isUserInput=et}}let zt=(()=>{class Fe{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(et){this._disabled=et}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}constructor(et,st,Tt,mi){this._element=et,this._changeDetectorRef=st,this._parent=Tt,this.group=mi,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+tt++,this.onSelectionChange=new e.bkB,this._stateChanges=new I.B}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(et=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),et&&this._emitSelectionChangeEvent())}deselect(et=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),et&&this._emitSelectionChangeEvent())}focus(et,st){const Tt=this._getHostElement();"function"==typeof Tt.focus&&Tt.focus(st)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(et){(et.keyCode===d.Fm||et.keyCode===d.t6)&&!(0,d.rp)(et)&&(this._selectViaInteraction(),et.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const et=this.viewValue;et!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=et)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(et=!1){this.onSelectionChange.emit(new $t(this,et))}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(Nt,8),e.rXU(Vt,8))};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-option"]],viewQuery:function(st,Tt){if(1&st&&e.GBs(F,7),2&st){let mi;e.mGM(mi=e.lsd())&&(Tt._text=mi.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(st,Tt){1&st&&e.bIt("click",function(){return Tt._selectViaInteraction()})("keydown",function(Kt){return Tt._handleKeydown(Kt)}),2&st&&(e.Mr5("id",Tt.id),e.BMQ("aria-selected",Tt.selected)("aria-disabled",Tt.disabled.toString()),e.AVh("mdc-list-item--selected",Tt.selected)("mat-mdc-option-multiple",Tt.multiple)("mat-mdc-option-active",Tt.active)("mdc-list-item--disabled",Tt.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",e.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:z,decls:8,vars:5,consts:[["text",""],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],[1,"mdc-list-item__primary-text"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(st,Tt){1&st&&(e.NAR(R),e.DNE(0,W,1,2,"mat-pseudo-checkbox",1),e.SdG(1),e.j41(2,"span",2,0),e.SdG(4,1),e.k0s(),e.DNE(5,$,1,1,"mat-pseudo-checkbox",3)(6,j,2,1,"span",4),e.nrm(7,"div",5)),2&st&&(e.vxM(Tt.multiple?0:-1),e.R7$(5),e.vxM(Tt.multiple||!Tt.selected||Tt.hideSingleSelectionIndicator?-1:5),e.R7$(),e.vxM(Tt.group&&Tt.group._inert?6:-1),e.R7$(),e.Y8G("matRippleTrigger",Tt._getHostElement())("matRippleDisabled",Tt.disabled||Tt.disableRipple))},dependencies:[rt,yt],styles:['.mat-mdc-option{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color);font-family:var(--mat-option-label-text-font);line-height:var(--mat-option-label-text-line-height);font-size:var(--mat-option-label-text-size);letter-spacing:var(--mat-option-label-text-tracking);font-weight:var(--mat-option-label-text-weight);min-height:48px}.mat-mdc-option:focus{outline:none}[dir=rtl] .mat-mdc-option,.mat-mdc-option[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color)}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color)}.mat-mdc-option.mdc-list-item{align-items:center;background:rgba(0,0,0,0)}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}.cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{right:auto;left:16px}.mat-mdc-option-multiple{--mdc-list-list-item-selected-container-color:var(--mdc-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Fe})();function Jt(Fe,Ge,et){if(et.length){let st=Ge.toArray(),Tt=et.toArray(),mi=0;for(let Kt=0;Ktet+st?Math.max(0,Fe-st+Ge):et}let dt=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Ye,Te,Yt]})}return Fe})();const Ae={capture:!0},we=["focus","click","mouseenter","touchstart"],he="mat-ripple-loader-uninitialized",q="mat-ripple-loader-class-name",Re="mat-ripple-loader-centered",Ne="mat-ripple-loader-disabled";let gt=(()=>{class Fe{constructor(){this._document=(0,e.WQX)(l.qQ,{optional:!0}),this._animationMode=(0,e.WQX)(e.bc$,{optional:!0}),this._globalRippleOptions=(0,e.WQX)(Xe,{optional:!0}),this._platform=(0,e.WQX)(x.OD),this._ngZone=(0,e.WQX)(e.SKi),this._hosts=new Map,this._onInteraction=et=>{if(!(et.target instanceof HTMLElement))return;const Tt=et.target.closest(`[${he}]`);Tt&&this._createRipple(Tt)},this._ngZone.runOutsideAngular(()=>{for(const et of we)this._document?.addEventListener(et,this._onInteraction,Ae)})}ngOnDestroy(){const et=this._hosts.keys();for(const st of et)this.destroyRipple(st);for(const st of we)this._document?.removeEventListener(st,this._onInteraction,Ae)}configureRipple(et,st){et.setAttribute(he,""),(st.className||!et.hasAttribute(q))&&et.setAttribute(q,st.className||""),st.centered&&et.setAttribute(Re,""),st.disabled&&et.setAttribute(Ne,"")}getRipple(et){return this._hosts.get(et)||this._createRipple(et)}setDisabled(et,st){const Tt=this._hosts.get(et);Tt?Tt.disabled=st:st?et.setAttribute(Ne,""):et.removeAttribute(Ne)}_createRipple(et){if(!this._document)return;const st=this._hosts.get(et);if(st)return st;et.querySelector(".mat-ripple")?.remove();const Tt=this._document.createElement("span");Tt.classList.add("mat-ripple",et.getAttribute(q)),et.append(Tt);const mi=new yt(new e.aKT(Tt),this._ngZone,this._platform,this._globalRippleOptions?this._globalRippleOptions:void 0,this._animationMode?this._animationMode:void 0);return mi._isInitialized=!0,mi.trigger=et,mi.centered=et.hasAttribute(Re),mi.disabled=et.hasAttribute(Ne),this.attachRipple(et,mi),mi}attachRipple(et,st){et.removeAttribute(he),this._hosts.set(et,st)}destroyRipple(et){const st=this._hosts.get(et);st&&(st.ngOnDestroy(),this._hosts.delete(et))}static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}return Fe})(),$e=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(st,Tt){2&st&&e.AVh("mdc-form-field--align-end","before"===Tt.labelPosition)},inputs:{labelPosition:"labelPosition"},standalone:!0,features:[e.aNF],attrs:Q,ngContentSelectors:J,decls:1,vars:0,template:function(st,Tt){1&st&&(e.NAR(),e.SdG(0))},styles:[".mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-form-field{font-family:var(--mdc-form-field-label-text-font);line-height:var(--mdc-form-field-label-text-line-height);font-size:var(--mdc-form-field-label-text-size);font-weight:var(--mdc-form-field-label-text-weight);letter-spacing:var(--mdc-form-field-label-text-tracking);color:var(--mdc-form-field-label-text-color)}.mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}"],encapsulation:2,changeDetection:0})}return Fe})()},5084:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>et,X6:()=>fn,bU:()=>fi,bZ:()=>Xi});var e=g(8617),t=g(6969),w=g(6939),S=g(177),l=g(4438),x=g(8834),f=g(5542),I=g(6600),d=g(1413),T=g(8359),y=g(7786),F=g(7673),R=g(7336),z=g(8203),W=g(6860),$=g(6697),j=g(9172),Q=g(5964),J=g(4085),ee=g(9969),ie=g(9417),ge=g(6467),ae=g(9631);const Me=["mat-calendar-body",""];function Te(Zt,bt){if(1&Zt&&(l.j41(0,"tr",0)(1,"td",3),l.EFF(2),l.k0s()()),2&Zt){const re=l.XpG();l.R7$(),l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re.numCols),l.R7$(),l.SpI(" ",re.label," ")}}function de(Zt,bt){if(1&Zt&&(l.j41(0,"td",3),l.EFF(1),l.k0s()),2&Zt){const re=l.XpG(2);l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re._firstRowOffset),l.R7$(),l.SpI(" ",re._firstRowOffset>=re.labelMinRequiredCells?re.label:""," ")}}function D(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"td",6)(1,"button",7),l.bIt("click",function(Ce){const ot=l.eBV(re).$implicit,ut=l.XpG(2);return l.Njj(ut._cellClicked(ot,Ce))})("focus",function(Ce){const ot=l.eBV(re).$implicit,ut=l.XpG(2);return l.Njj(ut._emitActiveDateChange(ot,Ce))}),l.j41(2,"span",8),l.EFF(3),l.k0s(),l.nrm(4,"span",9),l.k0s()()}if(2&Zt){const re=bt.$implicit,je=bt.$index,Ce=l.XpG().$index,ot=l.XpG();l.xc7("width",ot._cellWidth)("padding-top",ot._cellPadding)("padding-bottom",ot._cellPadding),l.BMQ("data-mat-row",Ce)("data-mat-col",je),l.R7$(),l.AVh("mat-calendar-body-disabled",!re.enabled)("mat-calendar-body-active",ot._isActiveCell(Ce,je))("mat-calendar-body-range-start",ot._isRangeStart(re.compareValue))("mat-calendar-body-range-end",ot._isRangeEnd(re.compareValue))("mat-calendar-body-in-range",ot._isInRange(re.compareValue))("mat-calendar-body-comparison-bridge-start",ot._isComparisonBridgeStart(re.compareValue,Ce,je))("mat-calendar-body-comparison-bridge-end",ot._isComparisonBridgeEnd(re.compareValue,Ce,je))("mat-calendar-body-comparison-start",ot._isComparisonStart(re.compareValue))("mat-calendar-body-comparison-end",ot._isComparisonEnd(re.compareValue))("mat-calendar-body-in-comparison-range",ot._isInComparisonRange(re.compareValue))("mat-calendar-body-preview-start",ot._isPreviewStart(re.compareValue))("mat-calendar-body-preview-end",ot._isPreviewEnd(re.compareValue))("mat-calendar-body-in-preview",ot._isInPreview(re.compareValue)),l.Y8G("ngClass",re.cssClasses)("tabindex",ot._isActiveCell(Ce,je)?0:-1),l.BMQ("aria-label",re.ariaLabel)("aria-disabled",!re.enabled||null)("aria-pressed",ot._isSelected(re.compareValue))("aria-current",ot.todayValue===re.compareValue?"date":null)("aria-describedby",ot._getDescribedby(re.compareValue)),l.R7$(),l.AVh("mat-calendar-body-selected",ot._isSelected(re.compareValue))("mat-calendar-body-comparison-identical",ot._isComparisonIdentical(re.compareValue))("mat-calendar-body-today",ot.todayValue===re.compareValue),l.R7$(),l.SpI(" ",re.displayValue," ")}}function n(Zt,bt){if(1&Zt&&(l.j41(0,"tr",1),l.DNE(1,de,2,6,"td",4),l.Z7z(2,D,5,48,"td",5,l.fX1),l.k0s()),2&Zt){const re=bt.$implicit,je=bt.$index,Ce=l.XpG();l.R7$(),l.vxM(0===je&&Ce._firstRowOffset?1:-1),l.R7$(),l.Dyx(re)}}function c(Zt,bt){if(1&Zt&&(l.j41(0,"th",2)(1,"span",6),l.EFF(2),l.k0s(),l.j41(3,"span",3),l.EFF(4),l.k0s()()),2&Zt){const re=bt.$implicit;l.R7$(2),l.JRh(re.long),l.R7$(2),l.JRh(re.narrow)}}const m=["*"];function h(Zt,bt){}function C(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-month-view",4),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("_userSelection",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dateSelected(Ce))})("dragStarted",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dragStarted(Ce))})("dragEnded",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dragEnded(Ce))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)("comparisonStart",re.comparisonStart)("comparisonEnd",re.comparisonEnd)("startDateAccessibleName",re.startDateAccessibleName)("endDateAccessibleName",re.endDateAccessibleName)("activeDrag",re._activeDrag)}}function k(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-year-view",5),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("monthSelected",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._monthSelectedInYearView(Ce))})("selectedChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._goToDateInView(Ce,"month"))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function L(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-multi-year-view",6),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("yearSelected",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._yearSelectedInMultiYearView(Ce))})("selectedChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._goToDateInView(Ce,"year"))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function _(Zt,bt){}const r=["button"],v=[[["","matDatepickerToggleIcon",""]]],V=["[matDatepickerToggleIcon]"];function N(Zt,bt){1&Zt&&(l.qSk(),l.j41(0,"svg",2),l.nrm(1,"path",3),l.k0s())}let Ke=(()=>{class Zt{constructor(){this.changes=new d.B,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",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(re,je){return`${re} \u2013 ${je}`}formatYearRangeLabel(re,je){return`${re} to ${je}`}static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac,providedIn:"root"})}return Zt})();class se{constructor(bt,re,je,Ce,ot={},ut=bt,ii){this.value=bt,this.displayValue=re,this.ariaLabel=je,this.enabled=Ce,this.cssClasses=ot,this.compareValue=ut,this.rawValue=ii}}let X=1;const me=(0,W.BQ)({passive:!1,capture:!0}),ce=(0,W.BQ)({passive:!0,capture:!0}),fe=(0,W.BQ)({passive:!0});let ke=(()=>{class Zt{ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}constructor(re,je){this._elementRef=re,this._ngZone=je,this._platform=(0,l.WQX)(W.OD),this._focusActiveCellAfterViewChecked=!1,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new l.bkB,this.previewChange=new l.bkB,this.activeDateChange=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this._didDragSinceMouseDown=!1,this._enterHandler=Ce=>{if(this._skipNextFocus&&"focus"===Ce.type)this._skipNextFocus=!1;else if(Ce.target&&this.isRange){const ot=this._getCellFromElement(Ce.target);ot&&this._ngZone.run(()=>this.previewChange.emit({value:ot.enabled?ot:null,event:Ce}))}},this._touchmoveHandler=Ce=>{if(!this.isRange)return;const ot=_t(Ce),ut=ot?this._getCellFromElement(ot):null;ot!==Ce.target&&(this._didDragSinceMouseDown=!0),_e(Ce.target)&&Ce.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:ut?.enabled?ut:null,event:Ce}))},this._leaveHandler=Ce=>{null!==this.previewEnd&&this.isRange&&("blur"!==Ce.type&&(this._didDragSinceMouseDown=!0),Ce.target&&this._getCellFromElement(Ce.target)&&(!Ce.relatedTarget||!this._getCellFromElement(Ce.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:Ce})))},this._mousedownHandler=Ce=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const ot=Ce.target&&this._getCellFromElement(Ce.target);!ot||!this._isInRange(ot.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:ot.rawValue,event:Ce})})},this._mouseupHandler=Ce=>{if(!this.isRange)return;const ot=_e(Ce.target);ot?ot.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const ut=this._getCellFromElement(ot);this.dragEnded.emit({value:ut?.rawValue??null,event:Ce})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:Ce})})},this._touchendHandler=Ce=>{const ot=_t(Ce);ot&&this._mouseupHandler({target:ot})},this._id="mat-calendar-body-"+X++,this._startDateLabelId=`${this._id}-start-date`,this._endDateLabelId=`${this._id}-end-date`,je.runOutsideAngular(()=>{const Ce=re.nativeElement;Ce.addEventListener("touchmove",this._touchmoveHandler,me),Ce.addEventListener("mouseenter",this._enterHandler,ce),Ce.addEventListener("focus",this._enterHandler,ce),Ce.addEventListener("mouseleave",this._leaveHandler,ce),Ce.addEventListener("blur",this._leaveHandler,ce),Ce.addEventListener("mousedown",this._mousedownHandler,fe),Ce.addEventListener("touchstart",this._mousedownHandler,fe),this._platform.isBrowser&&(window.addEventListener("mouseup",this._mouseupHandler),window.addEventListener("touchend",this._touchendHandler))})}_cellClicked(re,je){this._didDragSinceMouseDown||re.enabled&&this.selectedValueChange.emit({value:re.value,event:je})}_emitActiveDateChange(re,je){re.enabled&&this.activeDateChange.emit({value:re.value,event:je})}_isSelected(re){return this.startValue===re||this.endValue===re}ngOnChanges(re){const je=re.numCols,{rows:Ce,numCols:ot}=this;(re.rows||je)&&(this._firstRowOffset=Ce&&Ce.length&&Ce[0].length?ot-Ce[0].length:0),(re.cellAspectRatio||je||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/ot+"%"),(je||!this._cellWidth)&&(this._cellWidth=100/ot+"%")}ngOnDestroy(){const re=this._elementRef.nativeElement;re.removeEventListener("touchmove",this._touchmoveHandler,me),re.removeEventListener("mouseenter",this._enterHandler,ce),re.removeEventListener("focus",this._enterHandler,ce),re.removeEventListener("mouseleave",this._leaveHandler,ce),re.removeEventListener("blur",this._leaveHandler,ce),re.removeEventListener("mousedown",this._mousedownHandler,fe),re.removeEventListener("touchstart",this._mousedownHandler,fe),this._platform.isBrowser&&(window.removeEventListener("mouseup",this._mouseupHandler),window.removeEventListener("touchend",this._touchendHandler))}_isActiveCell(re,je){let Ce=re*this.numCols+je;return re&&(Ce-=this._firstRowOffset),Ce==this.activeCell}_focusActiveCell(re=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,$.s)(1)).subscribe(()=>{setTimeout(()=>{const je=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");je&&(re||(this._skipNextFocus=!0),je.focus())})})})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(re){return be(re,this.startValue,this.endValue)}_isRangeEnd(re){return pe(re,this.startValue,this.endValue)}_isInRange(re){return Ze(re,this.startValue,this.endValue,this.isRange)}_isComparisonStart(re){return be(re,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(re,je,Ce){if(!this._isComparisonStart(re)||this._isRangeStart(re)||!this._isInRange(re))return!1;let ot=this.rows[je][Ce-1];if(!ot){const ut=this.rows[je-1];ot=ut&&ut[ut.length-1]}return ot&&!this._isRangeEnd(ot.compareValue)}_isComparisonBridgeEnd(re,je,Ce){if(!this._isComparisonEnd(re)||this._isRangeEnd(re)||!this._isInRange(re))return!1;let ot=this.rows[je][Ce+1];if(!ot){const ut=this.rows[je+1];ot=ut&&ut[0]}return ot&&!this._isRangeStart(ot.compareValue)}_isComparisonEnd(re){return pe(re,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(re){return Ze(re,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(re){return this.comparisonStart===this.comparisonEnd&&re===this.comparisonStart}_isPreviewStart(re){return be(re,this.previewStart,this.previewEnd)}_isPreviewEnd(re){return pe(re,this.previewStart,this.previewEnd)}_isInPreview(re){return Ze(re,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(re){return this.isRange?this.startValue===re&&this.endValue===re?`${this._startDateLabelId} ${this._endDateLabelId}`:this.startValue===re?this._startDateLabelId:this.endValue===re?this._endDateLabelId:null:null}_getCellFromElement(re){const je=_e(re);if(je){const Ce=je.getAttribute("data-mat-row"),ot=je.getAttribute("data-mat-col");if(Ce&&ot)return this.rows[parseInt(Ce)][parseInt(ot)]}return null}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(l.SKi))};static#t=this.\u0275cmp=l.VBU({type:Zt,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",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],standalone:!0,features:[l.OA$,l.aNF],attrs:Me,decls:7,vars:5,consts:[["aria-hidden","true"],["role","row"],[1,"mat-calendar-body-hidden-label",3,"id"],[1,"mat-calendar-body-label"],[1,"mat-calendar-body-label",3,"paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"click","focus","ngClass","tabindex"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(je,Ce){1&je&&(l.DNE(0,Te,3,6,"tr",0),l.Z7z(1,n,4,1,"tr",1,l.fX1),l.j41(3,"label",2),l.EFF(4),l.k0s(),l.j41(5,"label",2),l.EFF(6),l.k0s()),2&je&&(l.vxM(Ce._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color)}.cdk-high-contrast-active .mat-calendar-body-disabled{opacity:.5}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color);border-color:var(--mat-datepicker-calendar-date-outline-color)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}.cdk-high-contrast-active .mat-calendar-body-cell-content{border:none}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.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:var(--mat-datepicker-calendar-date-focus-state-background-color)}@media(hover: hover){.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:var(--mat-datepicker-calendar-date-hover-state-background-color)}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color);color:var(--mat-datepicker-calendar-date-selected-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color)}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color)}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color)}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color)}.cdk-high-contrast-active .mat-datepicker-popup:not(:empty),.cdk-high-contrast-active .mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.cdk-high-contrast-active .mat-calendar-body-today{outline:dotted 1px}.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}'],encapsulation:2,changeDetection:0})}return Zt})();function mt(Zt){return"TD"===Zt?.nodeName}function _e(Zt){let bt;return mt(Zt)?bt=Zt:mt(Zt.parentNode)?bt=Zt.parentNode:mt(Zt.parentNode?.parentNode)&&(bt=Zt.parentNode.parentNode),null!=bt?.getAttribute("data-mat-row")?bt:null}function be(Zt,bt,re){return null!==re&&bt!==re&&Zt=bt&&Zt===re}function Ze(Zt,bt,re,je){return je&&null!==bt&&null!==re&&bt!==re&&Zt>=bt&&Zt<=re}function _t(Zt){const bt=Zt.changedTouches[0];return document.elementFromPoint(bt.clientX,bt.clientY)}class at{constructor(bt,re){this.start=bt,this.end=re}}let pt=(()=>{class Zt{constructor(re,je){this.selection=re,this._adapter=je,this._selectionChanged=new d.B,this.selectionChanged=this._selectionChanged,this.selection=re}updateSelection(re,je){const Ce=this.selection;this.selection=re,this._selectionChanged.next({selection:re,source:je,oldValue:Ce})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(re){return this._adapter.isDateInstance(re)&&this._adapter.isValid(re)}static#e=this.\u0275fac=function(je){l.QTQ()};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac})}return Zt})(),Xt=(()=>{class Zt extends pt{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 Zt(this._adapter);return re.updateSelection(this.selection,this),re}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.KVO(I.MJ))};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac})}return Zt})();const Ie={provide:pt,deps:[[new l.Xx1,new l.kdw,pt],I.MJ],useFactory:function ue(Zt,bt){return Zt||new Xt(bt)}},yt=new l.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let Et=(()=>{class Zt{get activeDate(){return this._activeDate}set activeDate(re){const je=this._activeDate,Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),this._hasSameMonthAndYear(je,this._activeDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?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))}constructor(re,je,Ce,ot,ut){this._changeDetectorRef=re,this._dateFormats=je,this._dateAdapter=Ce,this._dir=ot,this._rangeStrategy=ut,this._rerenderSubscription=T.yU.EMPTY,this.activeDrag=null,this.selectedChange=new l.bkB,this._userSelection=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnChanges(re){const je=re.comparisonStart||re.comparisonEnd;je&&!je.firstChange&&this._setRanges(this.selected),re.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(re){const je=re.value,Ce=this._getDateFromDayOfMonth(je);let ot,ut;this._selected instanceof at?(ot=this._getDateInCurrentMonth(this._selected.start),ut=this._getDateInCurrentMonth(this._selected.end)):ot=ut=this._getDateInCurrentMonth(this._selected),(ot!==je||ut!==je)&&this.selectedChange.emit(Ce),this._userSelection.emit({value:Ce,event:re.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case R.w_:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case R.dB:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case R.Fm:case R.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&re.preventDefault());case R._f:return void(null!=this._previewEnd&&!(0,R.rp)(re)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:re}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:re})),re.preventDefault(),re.stopPropagation()));default:return}this._dateAdapter.compareDate(je,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(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)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:re,value:je}){if(this._rangeStrategy){const Ce=je?je.rawValue:null,ot=this._rangeStrategy.createPreview(Ce,this.selected,re);if(this._previewStart=this._getCellCompareValue(ot.start),this._previewEnd=this._getCellCompareValue(ot.end),this.activeDrag&&Ce){const ut=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,Ce,re);ut&&(this._previewStart=this._getCellCompareValue(ut.start),this._previewEnd=this._getCellCompareValue(ut.end))}this._changeDetectorRef.detectChanges()}}_dragEnded(re){if(this.activeDrag)if(re.value){const je=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,re.value,re.event);this.dragEnded.emit({value:je??null,event:re.event})}else this.dragEnded.emit({value:null,event:re.event})}_getDateFromDayOfMonth(re){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),re)}_initWeekdays(){const re=this._dateAdapter.getFirstDayOfWeek(),je=this._dateAdapter.getDayOfWeekNames("narrow");let ot=this._dateAdapter.getDayOfWeekNames("long").map((ut,ii)=>({long:ut,narrow:je[ii]}));this._weekdays=ot.slice(re).concat(ot.slice(0,re))}_createWeekCells(){const re=this._dateAdapter.getNumDaysInMonth(this.activeDate),je=this._dateAdapter.getDateNames();this._weeks=[[]];for(let Ce=0,ot=this._firstWeekOffset;Ce=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,je){return!(!re||!je||this._dateAdapter.getMonth(re)!=this._dateAdapter.getMonth(je)||this._dateAdapter.getYear(re)!=this._dateAdapter.getYear(je))}_getCellCompareValue(re){if(re){const je=this._dateAdapter.getYear(re),Ce=this._dateAdapter.getMonth(re),ot=this._dateAdapter.getDate(re);return new Date(je,Ce,ot).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(re){re instanceof at?(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)}_clearPreview(){this._previewStart=this._previewEnd=null}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.gRc),l.rXU(I.de,8),l.rXU(I.MJ,8),l.rXU(z.dS,8),l.rXU(yt,8))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-month-view"]],viewQuery:function(je,Ce){if(1&je&&l.GBs(ke,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._matCalendarBody=ot.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],standalone:!0,features:[l.OA$,l.aNF],decls:8,vars:14,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col"],["aria-hidden","true"],["colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown","label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","startDateAccessibleName","endDateAccessibleName"],[1,"cdk-visually-hidden"]],template:function(je,Ce){1&je&&(l.j41(0,"table",0)(1,"thead",1)(2,"tr"),l.Z7z(3,c,5,2,"th",2,l.fX1),l.k0s(),l.j41(5,"tr",3),l.nrm(6,"th",4),l.k0s()(),l.j41(7,"tbody",5),l.bIt("selectedValueChange",function(ut){return Ce._dateSelected(ut)})("activeDateChange",function(ut){return Ce._updateActiveDate(ut)})("previewChange",function(ut){return Ce._previewChanged(ut)})("dragStarted",function(ut){return Ce.dragStarted.emit(ut)})("dragEnded",function(ut){return Ce._dragEnded(ut)})("keyup",function(ut){return Ce._handleCalendarBodyKeyup(ut)})("keydown",function(ut){return Ce._handleCalendarBodyKeydown(ut)}),l.k0s()()),2&je&&(l.R7$(3),l.Dyx(Ce._weekdays),l.R7$(4),l.Y8G("label",Ce._monthLabel)("rows",Ce._weeks)("todayValue",Ce._todayDate)("startValue",Ce._rangeStart)("endValue",Ce._rangeEnd)("comparisonStart",Ce._comparisonRangeStart)("comparisonEnd",Ce._comparisonRangeEnd)("previewStart",Ce._previewStart)("previewEnd",Ce._previewEnd)("isRange",Ce._isRange)("labelMinRequiredCells",3)("activeCell",Ce._dateAdapter.getDate(Ce.activeDate)-1)("startDateAccessibleName",Ce.startDateAccessibleName)("endDateAccessibleName",Ce.endDateAccessibleName))},dependencies:[ke],encapsulation:2,changeDetection:0})}return Zt})();const Vt=24;let tt=(()=>{class Zt{get activeDate(){return this._activeDate}set activeDate(re){let je=this._activeDate;const Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),$t(this._dateAdapter,je,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?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))}constructor(re,je,Ce){this._changeDetectorRef=re,this._dateAdapter=je,this._dir=Ce,this._rerenderSubscription=T.yU.EMPTY,this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const je=this._dateAdapter.getYear(this._activeDate)-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let Ce=0,ot=[];Cethis._createCellForYear(ut))),ot=[]);this._changeDetectorRef.markForCheck()}_yearSelected(re){const je=re.value,Ce=this._dateAdapter.createDate(je,0,1),ot=this._getDateFromYear(je);this.yearSelected.emit(Ce),this.selectedChange.emit(ot)}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromYear(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Vt-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case R.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*-Vt:-Vt);break;case R.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*Vt:Vt);break;case R.Fm:case R.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(je,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_getActiveCell(){return zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(re){const je=this._dateAdapter.getMonth(this.activeDate),Ce=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(re,je,1));return this._dateAdapter.createDate(re,je,Math.min(this._dateAdapter.getDate(this.activeDate),Ce))}_createCellForYear(re){const je=this._dateAdapter.createDate(re,0,1),Ce=this._dateAdapter.getYearName(je),ot=this.dateClass?this.dateClass(je,"multi-year"):void 0;return new se(re,Ce,Ce,this._shouldEnableYear(re),ot)}_shouldEnableYear(re){if(null==re||this.maxDate&&re>this._dateAdapter.getYear(this.maxDate)||this.minDate&&re{class Zt{get activeDate(){return this._activeDate}set activeDate(re){let je=this._activeDate;const Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),this._dateAdapter.getYear(je)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?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))}constructor(re,je,Ce,ot){this._changeDetectorRef=re,this._dateFormats=je,this._dateAdapter=Ce,this._dir=ot,this._rerenderSubscription=T.yU.EMPTY,this.selectedChange=new l.bkB,this.monthSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(re){const je=re.value,Ce=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),je,1);this.monthSelected.emit(Ce);const ot=this._getDateFromMonth(je);this.selectedChange.emit(ot)}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromMonth(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case R.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?-10:-1);break;case R.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10:1);break;case R.Fm:case R.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(je,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(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(je=>je.map(Ce=>this._createCellForMonth(Ce,re[Ce]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(re){return re&&this._dateAdapter.getYear(re)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(re):null}_getDateFromMonth(re){const je=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),Ce=this._dateAdapter.getNumDaysInMonth(je);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,Math.min(this._dateAdapter.getDate(this.activeDate),Ce))}_createCellForMonth(re,je){const Ce=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),ot=this._dateAdapter.format(Ce,this._dateFormats.display.monthYearA11yLabel),ut=this.dateClass?this.dateClass(Ce,"year"):void 0;return new se(re,je.toLocaleUpperCase(),ot,this._shouldEnableMonth(re),ut)}_shouldEnableMonth(re){const je=this._dateAdapter.getYear(this.activeDate);if(null==re||this._isYearAndMonthAfterMaxDate(je,re)||this._isYearAndMonthBeforeMinDate(je,re))return!1;if(!this.dateFilter)return!0;for(let ot=this._dateAdapter.createDate(je,re,1);this._dateAdapter.getMonth(ot)==re;ot=this._dateAdapter.addCalendarDays(ot,1))if(this.dateFilter(ot))return!0;return!1}_isYearAndMonthAfterMaxDate(re,je){if(this.maxDate){const Ce=this._dateAdapter.getYear(this.maxDate),ot=this._dateAdapter.getMonth(this.maxDate);return re>Ce||re===Ce&&je>ot}return!1}_isYearAndMonthBeforeMinDate(re,je){if(this.minDate){const Ce=this._dateAdapter.getYear(this.minDate),ot=this._dateAdapter.getMonth(this.minDate);return re{class Zt{constructor(re,je,Ce,ot,ut){this._intl=re,this.calendar=je,this._dateAdapter=Ce,this._dateFormats=ot,this._id="mat-calendar-header-"+Ae++,this._periodButtonLabelId=`${this._id}-period-label`,this.calendar.stateChanges.subscribe(()=>ut.markForCheck())}get periodButtonText(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRange(...this._formatMinAndMaxYearLabels())}get periodButtonDescription(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRangeLabel(...this._formatMinAndMaxYearLabels())}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:-Vt)}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:Vt)}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,je){return"month"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(je)&&this._dateAdapter.getMonth(re)==this._dateAdapter.getMonth(je):"year"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(je):$t(this._dateAdapter,re,je,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const je=this._dateAdapter.getYear(this.calendar.activeDate)-zt(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),Ce=je+Vt-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(je,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(Ce,0,1))]}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU((0,l.Rfq)(()=>he)),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(l.gRc))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],standalone:!0,features:[l.aNF],ngContentSelectors:m,decls:13,vars:11,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],[1,"cdk-visually-hidden",3,"id"],["mat-button","","type","button","aria-live","polite",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",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,"click","disabled"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"click","disabled"]],template:function(je,Ce){1&je&&(l.NAR(),l.j41(0,"div",0)(1,"div",1)(2,"label",2),l.EFF(3),l.k0s(),l.j41(4,"button",3),l.bIt("click",function(){return Ce.currentPeriodClicked()}),l.j41(5,"span",4),l.EFF(6),l.k0s(),l.qSk(),l.j41(7,"svg",5),l.nrm(8,"polygon",6),l.k0s()(),l.joV(),l.nrm(9,"div",7),l.SdG(10),l.j41(11,"button",8),l.bIt("click",function(){return Ce.previousClicked()}),l.k0s(),l.j41(12,"button",9),l.bIt("click",function(){return Ce.nextClicked()}),l.k0s()()()),2&je&&(l.R7$(2),l.Y8G("id",Ce._periodButtonLabelId),l.R7$(),l.JRh(Ce.periodButtonDescription),l.R7$(),l.BMQ("aria-label",Ce.periodButtonLabel)("aria-describedby",Ce._periodButtonLabelId),l.R7$(2),l.JRh(Ce.periodButtonText),l.R7$(),l.AVh("mat-calendar-invert","month"!==Ce.calendar.currentView),l.R7$(4),l.Y8G("disabled",!Ce.previousEnabled()),l.BMQ("aria-label",Ce.prevButtonLabel),l.R7$(),l.Y8G("disabled",!Ce.nextEnabled()),l.BMQ("aria-label",Ce.nextButtonLabel))},dependencies:[x.$z,x.iY],encapsulation:2,changeDetection:0})}return Zt})(),he=(()=>{class Zt{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 at?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 je=this._currentView!==re?re:null;this._currentView=re,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),je&&this.viewChanged.emit(je)}constructor(re,je,Ce,ot){this._dateAdapter=je,this._dateFormats=Ce,this._changeDetectorRef=ot,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this._userSelection=new l.bkB,this._userDragDrop=new l.bkB,this._activeDrag=null,this.stateChanges=new d.B,this._intlChanges=re.changes.subscribe(()=>{ot.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new w.A8(this.headerComponent||we),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 je=re.minDate&&!this._dateAdapter.sameDate(re.minDate.previousValue,re.minDate.currentValue)?re.minDate:void 0,Ce=re.maxDate&&!this._dateAdapter.sameDate(re.maxDate.previousValue,re.maxDate.currentValue)?re.maxDate:void 0,ot=je||Ce||re.dateFilter;if(ot&&!ot.firstChange){const ut=this._getCurrentViewComponent();ut&&(this._changeDetectorRef.detectChanges(),ut._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(re){const je=re.value;(this.selected instanceof at||je&&!this._dateAdapter.sameDate(je,this.selected))&&this.selectedChange.emit(je),this._userSelection.emit(re)}_yearSelectedInMultiYearView(re){this.yearSelected.emit(re)}_monthSelectedInYearView(re){this.monthSelected.emit(re)}_goToDateInView(re,je){this.activeDate=re,this.currentView=je}_dragStarted(re){this._activeDrag=re}_dragEnded(re){this._activeDrag&&(re.value&&this._userDragDrop.emit(re),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(l.gRc))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-calendar"]],viewQuery:function(je,Ce){if(1&je&&(l.GBs(Et,5),l.GBs(dt,5),l.GBs(tt,5)),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce.monthView=ot.first),l.mGM(ot=l.lsd())&&(Ce.yearView=ot.first),l.mGM(ot=l.lsd())&&(Ce.multiYearView=ot.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",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],standalone:!0,features:[l.Jv_([Ie]),l.OA$,l.aNF],decls:5,vars:2,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","_userSelection","dragStarted","dragEnded","activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDateChange","monthSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","yearSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"]],template:function(je,Ce){if(1&je&&(l.DNE(0,h,0,0,"ng-template",0),l.j41(1,"div",1),l.DNE(2,C,1,11,"mat-month-view",2)(3,k,1,6,"mat-year-view",3)(4,L,1,6,"mat-multi-year-view",3),l.k0s()),2&je){let ot;l.Y8G("cdkPortalOutlet",Ce._calendarHeaderPortal),l.R7$(2),l.vxM("month"===(ot=Ce.currentView)?2:"year"===ot?3:"multi-year"===ot?4:-1)}},dependencies:[w.I3,e.vR,Et,dt,tt],styles:['.mat-calendar{display:block;font-family:var(--mat-datepicker-calendar-text-font);font-size:var(--mat-datepicker-calendar-text-size)}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size);font-weight:var(--mat-datepicker-calendar-period-button-text-weight);--mdc-text-button-label-text-color:var(--mat-datepicker-calendar-period-button-text-color)}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color)}.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-datepicker-content .mat-calendar-previous-button:not(.mat-mdc-button-disabled),.mat-datepicker-content .mat-calendar-next-button:not(.mat-mdc-button-disabled){color:var(--mat-datepicker-calendar-navigation-button-icon-color)}.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;color:var(--mat-datepicker-calendar-header-text-color);font-size:var(--mat-datepicker-calendar-header-text-size);font-weight:var(--mat-datepicker-calendar-header-text-weight)}.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;background:var(--mat-datepicker-calendar-header-divider-color)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Zt})();const q={transformPanel:(0,ee.hZ)("transformPanel",[(0,ee.kY)("void => enter-dropdown",(0,ee.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.i7)([(0,ee.iF)({opacity:0,transform:"scale(1, 0.8)"}),(0,ee.iF)({opacity:1,transform:"scale(1, 1)"})]))),(0,ee.kY)("void => enter-dialog",(0,ee.i0)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.i7)([(0,ee.iF)({opacity:0,transform:"scale(0.7)"}),(0,ee.iF)({transform:"none",opacity:1})]))),(0,ee.kY)("* => void",(0,ee.i0)("100ms linear",(0,ee.iF)({opacity:0})))]),fadeInCalendar:(0,ee.hZ)("fadeInCalendar",[(0,ee.wk)("void",(0,ee.iF)({opacity:0})),(0,ee.wk)("enter",(0,ee.iF)({opacity:1})),(0,ee.kY)("void => *",(0,ee.i0)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let Re=0;const Ne=new l.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const Zt=(0,l.WQX)(t.hJ);return()=>Zt.scrollStrategies.reposition()}}),$e={provide:Ne,deps:[t.hJ],useFactory:function gt(Zt){return()=>Zt.scrollStrategies.reposition()}};let Fe=(()=>{class Zt{constructor(re,je,Ce,ot,ut,ii){this._elementRef=re,this._changeDetectorRef=je,this._globalModel=Ce,this._dateAdapter=ot,this._rangeSelectionStrategy=ut,this._subscriptions=new T.yU,this._animationDone=new d.B,this._isAnimating=!1,this._actionsPortal=null,this._closeButtonText=ii.closeCalendarLabel}ngOnInit(){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 je=this._model.selection,Ce=re.value,ot=je instanceof at;if(ot&&this._rangeSelectionStrategy){const ut=this._rangeSelectionStrategy.selectionFinished(Ce,je,re.event);this._model.updateSelection(ut,this)}else Ce&&(ot||!this._dateAdapter.sameDate(Ce,je))&&this._model.add(Ce);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(re){this._model.updateSelection(re.value,this)}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_handleAnimationEvent(re){this._isAnimating="start"===re.phaseName,this._isAnimating||this._animationDone.next()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(re,je){this._model=re?this._globalModel.clone():this._globalModel,this._actionsPortal=re,je&&this._changeDetectorRef.detectChanges()}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(l.gRc),l.rXU(pt),l.rXU(I.MJ),l.rXU(yt,8),l.rXU(Ke))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker-content"]],viewQuery:function(je,Ce){if(1&je&&l.GBs(he,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._calendar=ot.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:5,hostBindings:function(je,Ce){1&je&&l.Kam("@transformPanel.start",function(ut){return Ce._handleAnimationEvent(ut)})("@transformPanel.done",function(ut){return Ce._handleAnimationEvent(ut)}),2&je&&(l.zvX("@transformPanel",Ce._animationState),l.HbH(Ce.color?"mat-"+Ce.color:""),l.AVh("mat-datepicker-content-touch",Ce.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],standalone:!0,features:[l.aNF],decls:5,vars:27,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop","id","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName"],[3,"cdkPortalOutlet"],["type","button","mat-raised-button","",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(je,Ce){if(1&je&&(l.j41(0,"div",0)(1,"mat-calendar",1),l.bIt("yearSelected",function(ut){return Ce.datepicker._selectYear(ut)})("monthSelected",function(ut){return Ce.datepicker._selectMonth(ut)})("viewChanged",function(ut){return Ce.datepicker._viewChanged(ut)})("_userSelection",function(ut){return Ce._handleUserSelection(ut)})("_userDragDrop",function(ut){return Ce._handleUserDragDrop(ut)}),l.k0s(),l.DNE(2,_,0,0,"ng-template",2),l.j41(3,"button",3),l.bIt("focus",function(){return Ce._closeButtonFocused=!0})("blur",function(){return Ce._closeButtonFocused=!1})("click",function(){return Ce.datepicker.close()}),l.EFF(4),l.k0s()()),2&je){let ot;l.AVh("mat-datepicker-content-container-with-custom-header",Ce.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",Ce._actionsPortal),l.BMQ("aria-modal",!0)("aria-labelledby",null!==(ot=Ce._dialogLabelId)&&void 0!==ot?ot:void 0),l.R7$(),l.HbH(Ce.datepicker.panelClass),l.Y8G("id",Ce.datepicker.id)("startAt",Ce.datepicker.startAt)("startView",Ce.datepicker.startView)("minDate",Ce.datepicker._getMinDate())("maxDate",Ce.datepicker._getMaxDate())("dateFilter",Ce.datepicker._getDateFilter())("headerComponent",Ce.datepicker.calendarHeaderComponent)("selected",Ce._getSelected())("dateClass",Ce.datepicker.dateClass)("comparisonStart",Ce.comparisonStart)("comparisonEnd",Ce.comparisonEnd)("@fadeInCalendar","enter")("startDateAccessibleName",Ce.startDateAccessibleName)("endDateAccessibleName",Ce.endDateAccessibleName),l.R7$(),l.Y8G("cdkPortalOutlet",Ce._actionsPortal),l.R7$(),l.AVh("cdk-visually-hidden",!Ce._closeButtonFocused),l.Y8G("color",Ce.color||"primary"),l.R7$(),l.JRh(Ce._closeButtonText)}},dependencies:[e.kB,he,w.I3,x.$z],styles:[".mat-datepicker-content{display:block;border-radius:4px;background-color:var(--mat-datepicker-calendar-container-background-color);color:var(--mat-datepicker-calendar-container-text-color);box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow);border-radius:var(--mat-datepicker-calendar-container-shape)}.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;box-shadow:var(--mat-datepicker-calendar-container-touch-elevation-shadow);border-radius:var(--mat-datepicker-calendar-container-touch-shape);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}}"],encapsulation:2,data:{animation:[q.transformPanel,q.fadeInCalendar]},changeDetection:0})}return Zt})(),Ge=(()=>{class 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 disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(re){re!==this._disabled&&(this._disabled=re,this.stateChanges.next(void 0))}get panelClass(){return this._panelClass}set panelClass(re){this._panelClass=(0,J.cc)(re)}get opened(){return this._opened}set opened(re){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}constructor(re,je,Ce,ot,ut,ii,si){this._overlay=re,this._ngZone=je,this._viewContainerRef=Ce,this._dateAdapter=ut,this._dir=ii,this._model=si,this._inputStateChanges=T.yU.EMPTY,this._document=(0,l.WQX)(S.qQ),this.startView="month",this.touchUi=!1,this.xPosition="start",this.yPosition="below",this.restoreFocus=!0,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this.openedStream=new l.bkB,this.closedStream=new l.bkB,this._opened=!1,this.id="mat-datepicker-"+Re++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new d.B,this._scrollStrategy=ot}ngOnChanges(re){const je=re.xPosition||re.yPosition;if(je&&!je.firstChange&&this._overlayRef){const Ce=this._overlayRef.getConfig().positionStrategy;Ce instanceof t.rW&&(this._setConnectedPositions(Ce),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,this._componentRef?.instance._assignActions(re,!0)}removeActions(re){re===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,W.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const re=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,je=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:Ce,location:ot}=this._componentRef;Ce._startExitAnimation(),Ce._animationDone.pipe((0,$.s)(1)).subscribe(()=>{const ut=this._document.activeElement;re&&(!ut||ut===this._document.activeElement||ot.nativeElement.contains(ut))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()})}re?setTimeout(je):je()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(re){re.datepicker=this,re.color=this.color,re._dialogLabelId=this.datepickerInput.getOverlayLabelId(),re._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const re=this.touchUi,je=new w.A8(Fe,this._viewContainerRef),Ce=this._overlayRef=this._overlay.create(new t.rR({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(Ce).subscribe(ot=>{ot&&ot.preventDefault(),this.close()}),Ce.keydownEvents().subscribe(ot=>{const ut=ot.keyCode;(ut===R.i7||ut===R.n6||ut===R.UQ||ut===R.LE||ut===R.w_||ut===R.dB)&&ot.preventDefault()}),this._componentRef=Ce.attach(je),this._forwardContentValues(this._componentRef.instance),re||this._ngZone.onStable.pipe((0,$.s)(1)).subscribe(()=>Ce.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 je="end"===this.xPosition?"end":"start",Ce="start"===je?"end":"start",ot="above"===this.yPosition?"bottom":"top",ut="top"===ot?"bottom":"top";return re.withPositions([{originX:je,originY:ut,overlayX:je,overlayY:ot},{originX:je,originY:ot,overlayX:je,overlayY:ut},{originX:Ce,originY:ut,overlayX:Ce,overlayY:ot},{originX:Ce,originY:ot,overlayX:Ce,overlayY:ut}])}_getCloseStream(re){const je=["ctrlKey","shiftKey","metaKey"];return(0,y.h)(re.backdropClick(),re.detachments(),re.keydownEvents().pipe((0,Q.p)(Ce=>Ce.keyCode===R._f&&!(0,R.rp)(Ce)||this.datepickerInput&&(0,R.rp)(Ce,"altKey")&&Ce.keyCode===R.i7&&je.every(ot=>!(0,R.rp)(Ce,ot)))))}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(t.hJ),l.rXU(l.SKi),l.rXU(l.c1b),l.rXU(Ne),l.rXU(I.MJ,8),l.rXU(z.dS,8),l.rXU(pt))};static#t=this.\u0275dir=l.FsC({type:Zt,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",l.L39],disabled:[2,"disabled","disabled",l.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",l.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",l.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[l.GFd,l.OA$]})}return Zt})(),et=(()=>{class Zt extends Ge{static#e=this.\u0275fac=(()=>{let re;return function(Ce){return(re||(re=l.xGo(Zt)))(Ce||Zt)}})();static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],standalone:!0,features:[l.Jv_([Ie,{provide:Ge,useExisting:Zt}]),l.Vt3,l.aNF],decls:0,vars:0,template:function(je,Ce){},encapsulation:2,changeDetection:0})}return Zt})();class st{constructor(bt,re){this.target=bt,this.targetElement=re,this.value=this.target.value}}let Tt=(()=>{class Zt{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 je=re,Ce=this._elementRef.nativeElement;this._disabled!==je&&(this._disabled=je,this.stateChanges.next(void 0)),je&&this._isInitialized&&Ce.blur&&Ce.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(je=>{if(this._shouldHandleChangeEvent(je)){const Ce=this._getValueFromModel(je.selection);this._lastValueValid=this._isValidValue(Ce),this._cvaOnChange(Ce),this._onTouched(),this._formatValue(Ce),this.dateInput.emit(new st(this,this._elementRef.nativeElement)),this.dateChange.emit(new st(this,this._elementRef.nativeElement))}})}constructor(re,je,Ce){this._elementRef=re,this._dateAdapter=je,this._dateFormats=Ce,this.dateChange=new l.bkB,this.dateInput=new l.bkB,this.stateChanges=new d.B,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=T.yU.EMPTY,this._localeSubscription=T.yU.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value));return!ut||this._matchesFilter(ut)?null:{matDatepickerFilter:!0}},this._minValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value)),ii=this._getMinDate();return!ii||!ut||this._dateAdapter.compareDate(ii,ut)<=0?null:{matDatepickerMin:{min:ii,actual:ut}}},this._maxValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value)),ii=this._getMaxDate();return!ii||!ut||this._dateAdapter.compareDate(ii,ut)>=0?null:{matDatepickerMax:{max:ii,actual:ut}}},this._lastValueValid=!1,this._localeSubscription=je.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(re){(function mi(Zt,bt){const re=Object.keys(Zt);for(let je of re){const{previousValue:Ce,currentValue:ot}=Zt[je];if(!bt.isDateInstance(Ce)||!bt.isDateInstance(ot))return!0;if(!bt.sameDate(Ce,ot))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){(0,R.rp)(re,"altKey")&&re.keyCode===R.n6&&["ctrlKey","shiftKey","metaKey"].every(ot=>!(0,R.rp)(re,ot))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),re.preventDefault())}_onInput(re){const je=this._lastValueValid;let Ce=this._dateAdapter.parse(re,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(Ce),Ce=this._dateAdapter.getValidDateOrNull(Ce);const ot=!this._dateAdapter.sameDate(Ce,this.value);!Ce||ot?this._cvaOnChange(Ce):(re&&!this.value&&this._cvaOnChange(Ce),je!==this._lastValueValid&&this._validatorOnChange()),ot&&(this._assignValue(Ce),this.dateInput.emit(new st(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new st(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 je=this._getDateFilter();return!je||je(re)}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(I.MJ,8),l.rXU(I.de,8))};static#t=this.\u0275dir=l.FsC({type:Zt,inputs:{value:"value",disabled:[2,"disabled","disabled",l.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},standalone:!0,features:[l.GFd,l.OA$]})}return Zt})();const Kt={provide:ie.kq,useExisting:(0,l.Rfq)(()=>Xi),multi:!0},Pt={provide:ie.cz,useExisting:(0,l.Rfq)(()=>Xi),multi:!0};let Xi=(()=>{class Zt extends Tt{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 je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(je,this._min)||(this._min=je,this._validatorOnChange())}get max(){return this._max}set max(re){const je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(je,this._max)||(this._max=je,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(re){const je=this._matchesFilter(this.value);this._dateFilter=re,this._matchesFilter(this.value)!==je&&this._validatorOnChange()}constructor(re,je,Ce,ot){super(re,je,Ce),this._formField=ot,this._closedSubscription=T.yU.EMPTY,this._validator=ie.k0.compose(super._getValidators())}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}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(ge.xb,8))};static#t=this.\u0275dir=l.FsC({type:Zt,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(je,Ce){1&je&&l.bIt("input",function(ut){return Ce._onInput(ut.target.value)})("change",function(){return Ce._onChange()})("blur",function(){return Ce._onBlur()})("keydown",function(ut){return Ce._onKeydown(ut)}),2&je&&(l.Mr5("disabled",Ce.disabled),l.BMQ("aria-haspopup",Ce._datepicker?"dialog":null)("aria-owns",(null==Ce._datepicker?null:Ce._datepicker.opened)&&Ce._datepicker.id||null)("min",Ce.min?Ce._dateAdapter.toIso8601(Ce.min):null)("max",Ce.max?Ce._dateAdapter.toIso8601(Ce.max):null)("data-mat-calendar",Ce._datepicker?Ce._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],standalone:!0,features:[l.Jv_([Kt,Pt,{provide:ae.Oh,useExisting:Zt}]),l.Vt3]})}return Zt})(),di=(()=>{class Zt{static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275dir=l.FsC({type:Zt,selectors:[["","matDatepickerToggleIcon",""]],standalone:!0})}return Zt})(),fi=(()=>{class Zt{get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(re){this._disabled=re}constructor(re,je,Ce){this._intl=re,this._changeDetectorRef=je,this._stateChanges=T.yU.EMPTY;const ot=Number(Ce);this.tabIndex=ot||0===ot?ot:null}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,F.of)(),je=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,F.of)(),Ce=this.datepicker?(0,y.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,F.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,y.h)(this._intl.changes,re,je,Ce).subscribe(()=>this._changeDetectorRef.markForCheck())}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU(l.gRc),l.kS0("tabindex"))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker-toggle"]],contentQueries:function(je,Ce,ot){if(1&je&&l.wni(ot,di,5),2&je){let ut;l.mGM(ut=l.lsd())&&(Ce._customIcon=ut.first)}},viewQuery:function(je,Ce){if(1&je&&l.GBs(r,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._button=ot.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(je,Ce){1&je&&l.bIt("click",function(ut){return Ce._open(ut)}),2&je&&(l.BMQ("tabindex",null)("data-mat-calendar",Ce.datepicker?Ce.datepicker.id:null),l.AVh("mat-datepicker-toggle-active",Ce.datepicker&&Ce.datepicker.opened)("mat-accent",Ce.datepicker&&"accent"===Ce.datepicker.color)("mat-warn",Ce.datepicker&&"warn"===Ce.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",l.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],standalone:!0,features:[l.GFd,l.OA$,l.aNF],ngContentSelectors:V,decls:4,vars:6,consts:[["button",""],["mat-icon-button","","type","button",3,"disabled","disableRipple"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",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(je,Ce){1&je&&(l.NAR(v),l.j41(0,"button",1,0),l.DNE(2,N,2,0,":svg:svg",2),l.SdG(3),l.k0s()),2&je&&(l.Y8G("disabled",Ce.disabled)("disableRipple",Ce.disableRipple),l.BMQ("aria-haspopup",Ce.datepicker?"dialog":null)("aria-label",Ce.ariaLabel||Ce._intl.openCalendarLabel)("tabindex",Ce.disabled?-1:Ce.tabIndex),l.R7$(2),l.vxM(Ce._customIcon?-1:2))},dependencies:[x.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color)}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color)}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}"],encapsulation:2,changeDetection:0})}return Zt})(),fn=(()=>{class Zt{static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275mod=l.$C({type:Zt});static#i=this.\u0275inj=l.G2t({providers:[Ke,$e],imports:[S.MD,x.Hl,t.z_,e.Pd,w.jc,I.yE,Fe,fi,we,f.Gj]})}return Zt})()},5351:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>X,di:()=>me,bZ:()=>_e,tx:()=>pe,hM:()=>ue,CP:()=>Ke});var e=g(6969),t=g(177),w=g(4438),S=g(8617),l=g(6860),x=g(6939),f=g(7336),I=g(1413),d=g(9030),T=g(7673),y=g(8203),F=g(9172);function R(Xe,yt){}class z{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0,this.closeOnOverlayDetachments=!0}}let $=(()=>{class Xe extends x.lb{constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt){super(),this._elementRef=Ye,this._focusTrapFactory=rt,this._config=Nt,this._interactivityChecker=Et,this._ngZone=Vt,this._overlayRef=oe,this._focusMonitor=tt,this._platform=(0,w.WQX)(l.OD),this._focusTrap=null,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this._ariaLabelledByQueue=[],this._changeDetectorRef=(0,w.WQX)(w.gRc),this.attachDomPortal=$t=>{this._portalOutlet.hasAttached();const zt=this._portalOutlet.attachDomPortal($t);return this._contentAttached(),zt},this._document=Yt,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy(Ye){this._ariaLabelledByQueue.push(Ye),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy(Ye){const rt=this._ariaLabelledByQueue.indexOf(Ye);rt>-1&&(this._ariaLabelledByQueue.splice(rt,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal(Ye){this._portalOutlet.hasAttached();const rt=this._portalOutlet.attachComponentPortal(Ye);return this._contentAttached(),rt}attachTemplatePortal(Ye){this._portalOutlet.hasAttached();const rt=this._portalOutlet.attachTemplatePortal(Ye);return this._contentAttached(),rt}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ye,rt){this._interactivityChecker.isFocusable(Ye)||(Ye.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Yt=()=>{Ye.removeEventListener("blur",Yt),Ye.removeEventListener("mousedown",Yt),Ye.removeAttribute("tabindex")};Ye.addEventListener("blur",Yt),Ye.addEventListener("mousedown",Yt)})),Ye.focus(rt)}_focusByCssSelector(Ye,rt){let Yt=this._elementRef.nativeElement.querySelector(Ye);Yt&&this._forceFocus(Yt,rt)}_trapFocus(){const Ye=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||Ye.focus();break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElementWhenReady().then(rt=>{rt||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 Ye=this._config.restoreFocus;let rt=null;if("string"==typeof Ye?rt=this._document.querySelector(Ye):"boolean"==typeof Ye?rt=Ye?this._elementFocusedBeforeDialogWasOpened:null:Ye&&(rt=Ye),this._config.restoreFocus&&rt&&"function"==typeof rt.focus){const Yt=(0,l.vc)(),Nt=this._elementRef.nativeElement;(!Yt||Yt===this._document.body||Yt===Nt||Nt.contains(Yt))&&(this._focusMonitor?(this._focusMonitor.focusVia(rt,this._closeInteractionType),this._closeInteractionType=null):rt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const Ye=this._elementRef.nativeElement,rt=(0,l.vc)();return Ye===rt||Ye.contains(rt)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,l.vc)()))}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(w.aKT),w.rXU(S.GX),w.rXU(t.qQ,8),w.rXU(z),w.rXU(S.Z7),w.rXU(w.SKi),w.rXU(e.yY),w.rXU(S.FN))};static#t=this.\u0275cmp=w.VBU({type:Xe,selectors:[["cdk-dialog-container"]],viewQuery:function(rt,Yt){if(1&rt&&w.GBs(x.I3,7),2&rt){let Nt;w.mGM(Nt=w.lsd())&&(Yt._portalOutlet=Nt.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(rt,Yt){2&rt&&w.BMQ("id",Yt._config.id||null)("role",Yt._config.role)("aria-modal",Yt._config.ariaModal)("aria-labelledby",Yt._config.ariaLabel?null:Yt._ariaLabelledByQueue[0])("aria-label",Yt._config.ariaLabel)("aria-describedby",Yt._config.ariaDescribedBy||null)},standalone:!0,features:[w.Vt3,w.aNF],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(rt,Yt){1&rt&&w.DNE(0,R,0,0,"ng-template",0)},dependencies:[x.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2})}return Xe})();class j{constructor(yt,Ye){this.overlayRef=yt,this.config=Ye,this.closed=new I.B,this.disableClose=Ye.disableClose,this.backdropClick=yt.backdropClick(),this.keydownEvents=yt.keydownEvents(),this.outsidePointerEvents=yt.outsidePointerEvents(),this.id=Ye.id,this.keydownEvents.subscribe(rt=>{rt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(rt)&&(rt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})}),this._detachSubscription=yt.detachments().subscribe(()=>{!1!==Ye.closeOnOverlayDetachments&&this.close()})}close(yt,Ye){if(this.containerInstance){const rt=this.closed;this.containerInstance._closeInteractionType=Ye?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),rt.next(yt),rt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(yt="",Ye=""){return this.overlayRef.updateSize({width:yt,height:Ye}),this}addPanelClass(yt){return this.overlayRef.addPanelClass(yt),this}removePanelClass(yt){return this.overlayRef.removePanelClass(yt),this}}const Q=new w.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const Xe=(0,w.WQX)(e.hJ);return()=>Xe.scrollStrategies.block()}}),J=new w.nKC("DialogData"),ee=new w.nKC("DefaultDialogConfig");let ae=0,Me=(()=>{class Xe{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}constructor(Ye,rt,Yt,Nt,Et,Vt){this._overlay=Ye,this._injector=rt,this._defaultOptions=Yt,this._parentDialog=Nt,this._overlayContainer=Et,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new I.B,this._afterOpenedAtThisLevel=new I.B,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,d.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,F.Z)(void 0))),this._scrollStrategy=Vt}open(Ye,rt){(rt={...this._defaultOptions||new z,...rt}).id=rt.id||"cdk-dialog-"+ae++,rt.id&&this.getDialogById(rt.id);const Nt=this._getOverlayConfig(rt),Et=this._overlay.create(Nt),Vt=new j(Et,rt),oe=this._attachContainer(Et,Vt,rt);return Vt.containerInstance=oe,this._attachDialogContent(Ye,Vt,oe,rt),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(Vt),Vt.closed.subscribe(()=>this._removeOpenDialog(Vt,!0)),this.afterOpened.next(Vt),Vt}closeAll(){Te(this.openDialogs,Ye=>Ye.close())}getDialogById(Ye){return this.openDialogs.find(rt=>rt.id===Ye)}ngOnDestroy(){Te(this._openDialogsAtThisLevel,Ye=>{!1===Ye.config.closeOnDestroy&&this._removeOpenDialog(Ye,!1)}),Te(this._openDialogsAtThisLevel,Ye=>Ye.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Ye){const rt=new e.rR({positionStrategy:Ye.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:Ye.scrollStrategy||this._scrollStrategy(),panelClass:Ye.panelClass,hasBackdrop:Ye.hasBackdrop,direction:Ye.direction,minWidth:Ye.minWidth,minHeight:Ye.minHeight,maxWidth:Ye.maxWidth,maxHeight:Ye.maxHeight,width:Ye.width,height:Ye.height,disposeOnNavigation:Ye.closeOnNavigation});return Ye.backdropClass&&(rt.backdropClass=Ye.backdropClass),rt}_attachContainer(Ye,rt,Yt){const Nt=Yt.injector||Yt.viewContainerRef?.injector,Et=[{provide:z,useValue:Yt},{provide:j,useValue:rt},{provide:e.yY,useValue:Ye}];let Vt;Yt.container?"function"==typeof Yt.container?Vt=Yt.container:(Vt=Yt.container.type,Et.push(...Yt.container.providers(Yt))):Vt=$;const oe=new x.A8(Vt,Yt.viewContainerRef,w.zZn.create({parent:Nt||this._injector,providers:Et}),Yt.componentFactoryResolver);return Ye.attach(oe).instance}_attachDialogContent(Ye,rt,Yt,Nt){if(Ye instanceof w.C4Q){const Et=this._createInjector(Nt,rt,Yt,void 0);let Vt={$implicit:Nt.data,dialogRef:rt};Nt.templateContext&&(Vt={...Vt,..."function"==typeof Nt.templateContext?Nt.templateContext():Nt.templateContext}),Yt.attachTemplatePortal(new x.VA(Ye,null,Vt,Et))}else{const Et=this._createInjector(Nt,rt,Yt,this._injector),Vt=Yt.attachComponentPortal(new x.A8(Ye,Nt.viewContainerRef,Et,Nt.componentFactoryResolver));rt.componentRef=Vt,rt.componentInstance=Vt.instance}}_createInjector(Ye,rt,Yt,Nt){const Et=Ye.injector||Ye.viewContainerRef?.injector,Vt=[{provide:J,useValue:Ye.data},{provide:j,useValue:rt}];return Ye.providers&&("function"==typeof Ye.providers?Vt.push(...Ye.providers(rt,Ye,Yt)):Vt.push(...Ye.providers)),Ye.direction&&(!Et||!Et.get(y.dS,null,{optional:!0}))&&Vt.push({provide:y.dS,useValue:{value:Ye.direction,change:(0,T.of)()}}),w.zZn.create({parent:Et||Nt,providers:Vt})}_removeOpenDialog(Ye,rt){const Yt=this.openDialogs.indexOf(Ye);Yt>-1&&(this.openDialogs.splice(Yt,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Nt,Et)=>{Nt?Et.setAttribute("aria-hidden",Nt):Et.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),rt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const Ye=this._overlayContainer.getContainerElement();if(Ye.parentElement){const rt=Ye.parentElement.children;for(let Yt=rt.length-1;Yt>-1;Yt--){const Nt=rt[Yt];Nt!==Ye&&"SCRIPT"!==Nt.nodeName&&"STYLE"!==Nt.nodeName&&!Nt.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Nt,Nt.getAttribute("aria-hidden")),Nt.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Ye=this._parentDialog;return Ye?Ye._getAfterAllClosed():this._afterAllClosedAtThisLevel}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.KVO(e.hJ),w.KVO(w.zZn),w.KVO(ee,8),w.KVO(Xe,12),w.KVO(e.Sf),w.KVO(Q))};static#t=this.\u0275prov=w.jDH({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})();function Te(Xe,yt){let Ye=Xe.length;for(;Ye--;)yt(Xe[Ye])}let de=(()=>{class Xe{static#e=this.\u0275fac=function(rt){return new(rt||Xe)};static#t=this.\u0275mod=w.$C({type:Xe});static#i=this.\u0275inj=w.G2t({providers:[Me],imports:[e.z_,x.jc,S.Pd,x.jc]})}return Xe})();var D=g(4085),n=g(7786),c=g(5964),m=g(6697),h=g(6600);function k(Xe,yt){}g(9969);class L{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const _="mdc-dialog--open",r="mdc-dialog--opening",v="mdc-dialog--closing";let ne=(()=>{class Xe extends ${constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt,$t){super(Ye,rt,Yt,Nt,Et,Vt,oe,$t),this._animationMode=tt,this._animationStateChanged=new w.bkB,this._animationsEnabled="NoopAnimations"!==this._animationMode,this._actionSectionCount=0,this._hostElement=this._elementRef.nativeElement,this._enterAnimationDuration=this._animationsEnabled?ze(this._config.enterAnimationDuration)??150:0,this._exitAnimationDuration=this._animationsEnabled?ze(this._config.exitAnimationDuration)??75:0,this._animationTimer=null,this._finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)},this._finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})}}_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(Ee,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(r,_)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(_),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(_),this._animationsEnabled?(this._hostElement.style.setProperty(Ee,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(v)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount(Ye){this._actionSectionCount+=Ye,this._changeDetectorRef.markForCheck()}_clearAnimationClasses(){this._hostElement.classList.remove(r,v)}_waitForAnimationToComplete(Ye,rt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(rt,Ye)}_requestAnimationFrame(Ye){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Ye):Ye()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Ye){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Ye})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Ye){const rt=super.attachComponentPortal(Ye);return rt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),rt}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(w.aKT),w.rXU(S.GX),w.rXU(t.qQ,8),w.rXU(L),w.rXU(S.Z7),w.rXU(w.SKi),w.rXU(e.yY),w.rXU(w.bc$,8),w.rXU(S.FN))};static#t=this.\u0275cmp=w.VBU({type:Xe,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(rt,Yt){2&rt&&(w.Mr5("id",Yt._config.id),w.BMQ("aria-modal",Yt._config.ariaModal)("role",Yt._config.role)("aria-labelledby",Yt._config.ariaLabel?null:Yt._ariaLabelledByQueue[0])("aria-label",Yt._config.ariaLabel)("aria-describedby",Yt._config.ariaDescribedBy||null),w.AVh("_mat-animation-noopable",!Yt._animationsEnabled)("mat-mdc-dialog-container-with-actions",Yt._actionSectionCount>0))},standalone:!0,features:[w.Vt3,w.aNF],decls:3,vars:0,consts:[[1,"mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(rt,Yt){1&rt&&(w.j41(0,"div",0)(1,"div",1),w.DNE(2,k,0,0,"ng-template",2),w.k0s()())},dependencies:[x.I3],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-dialog,.mdc-dialog__scrim{position:fixed;top:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.mdc-dialog{display:none;z-index:var(--mdc-dialog-z-index, 7)}.mdc-dialog .mdc-dialog__content{padding:20px 24px 20px 24px}.mdc-dialog .mdc-dialog__surface{min-width:280px}@media(max-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:calc(100vw - 32px)}}@media(min-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:560px}}.mdc-dialog .mdc-dialog__surface{max-height:calc(100% - 32px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-width:none}@media(max-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px;width:560px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 112px)}}@media(max-width: 720px)and (min-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:560px}}@media(max-width: 720px)and (max-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:calc(100vh - 160px)}}@media(max-width: 720px)and (min-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px}}@media(max-width: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-height: 400px),(max-width: 600px),(min-width: 720px)and (max-height: 400px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{height:100%;max-height:100vh;max-width:100vw;width:100vw;border-radius:0}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{order:-1;left:-12px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__header{padding:0 16px 9px;justify-content:flex-start}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__title{margin-left:calc(16px - 2 * 12px)}}@media(min-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 400px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}.mdc-dialog.mdc-dialog__scrim--hidden .mdc-dialog__scrim{opacity:0}.mdc-dialog__scrim{opacity:0;z-index:-1}.mdc-dialog__container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;pointer-events:none}.mdc-dialog__surface{position:relative;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;max-width:100%;max-height:100%;pointer-events:auto;overflow-y:auto;outline:0;transform:scale(0.8)}.mdc-dialog__surface .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}[dir=rtl] .mdc-dialog__surface,.mdc-dialog__surface[dir=rtl]{text-align:right}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-dialog__surface{outline:2px solid windowText}}.mdc-dialog__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-dialog__surface::before{border-color:CanvasText}}@media screen and (-ms-high-contrast: active),screen and (-ms-high-contrast: none){.mdc-dialog__surface::before{content:none}}.mdc-dialog__title{display:block;margin-top:0;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:0 24px 9px}.mdc-dialog__title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mdc-dialog__title,.mdc-dialog__title[dir=rtl]{text-align:right}.mdc-dialog--scrollable .mdc-dialog__title{margin-bottom:1px;padding-bottom:15px}.mdc-dialog--fullscreen .mdc-dialog__header{align-items:baseline;border-bottom:1px solid rgba(0,0,0,0);display:inline-flex;justify-content:space-between;padding:0 24px 9px;z-index:1}@media screen and (forced-colors: active){.mdc-dialog--fullscreen .mdc-dialog__header{border-bottom-color:CanvasText}}.mdc-dialog--fullscreen .mdc-dialog__header .mdc-dialog__close{right:-12px}.mdc-dialog--fullscreen .mdc-dialog__title{margin-bottom:0;padding:0;border-bottom:0}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__title{border-bottom:0;margin-bottom:0}.mdc-dialog--fullscreen .mdc-dialog__close{top:5px}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--fullscreen--titleless .mdc-dialog__close{margin-top:4px}.mdc-dialog--fullscreen--titleless.mdc-dialog--scrollable .mdc-dialog__close{margin-top:0}.mdc-dialog__content{flex-grow:1;box-sizing:border-box;margin:0;overflow:auto}.mdc-dialog__content>:first-child{margin-top:0}.mdc-dialog__content>:last-child{margin-bottom:0}.mdc-dialog__title+.mdc-dialog__content,.mdc-dialog__header+.mdc-dialog__content{padding-top:0}.mdc-dialog--scrollable .mdc-dialog__title+.mdc-dialog__content{padding-top:8px;padding-bottom:8px}.mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:6px 0 0}.mdc-dialog--scrollable .mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:0}.mdc-dialog__actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--stacked .mdc-dialog__actions{flex-direction:column;align-items:flex-end}.mdc-dialog__button{margin-left:8px;margin-right:0;max-width:100%;text-align:right}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{margin-left:0;margin-right:8px}.mdc-dialog__button:first-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button:first-child,.mdc-dialog__button:first-child[dir=rtl]{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{text-align:left}.mdc-dialog--stacked .mdc-dialog__button:not(:first-child){margin-top:12px}.mdc-dialog--open,.mdc-dialog--opening,.mdc-dialog--closing{display:flex}.mdc-dialog--opening .mdc-dialog__scrim{transition:opacity 150ms linear}.mdc-dialog--opening .mdc-dialog__container{transition:opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-dialog--closing .mdc-dialog__scrim,.mdc-dialog--closing .mdc-dialog__container{transition:opacity 75ms linear}.mdc-dialog--closing .mdc-dialog__container{transform:none}.mdc-dialog--closing .mdc-dialog__surface{transform:none}.mdc-dialog--open .mdc-dialog__scrim{opacity:1}.mdc-dialog--open .mdc-dialog__container{opacity:1}.mdc-dialog--open .mdc-dialog__surface{transform:none}.mdc-dialog--open.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim{opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{transition:opacity 75ms linear}.mdc-dialog--open.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim{transition:opacity 150ms linear}.mdc-dialog__surface-scrim{display:none;opacity:0;position:absolute;width:100%;height:100%;z-index:1}.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{display:block}.mdc-dialog-scroll-lock{overflow:hidden}.mdc-dialog--no-content-padding .mdc-dialog__content{padding:0}.mdc-dialog--sheet .mdc-dialog__container .mdc-dialog__close{right:12px;top:9px;position:absolute;z-index:1}.mdc-dialog__scrim--removed{pointer-events:none}.mdc-dialog__scrim--removed .mdc-dialog__scrim,.mdc-dialog__scrim--removed .mdc-dialog__surface-scrim{display:none}.mat-mdc-dialog-content{max-height:65vh}.mat-mdc-dialog-container{position:static;display:block}.mat-mdc-dialog-container,.mat-mdc-dialog-container .mdc-dialog__container,.mat-mdc-dialog-container .mdc-dialog__surface{max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mat-mdc-dialog-container .mdc-dialog__surface{width:100%;height:100%}.mat-mdc-dialog-component-host{display:contents}.mat-mdc-dialog-container{--mdc-dialog-container-elevation: var(--mdc-dialog-container-elevation-shadow);outline:0}.mat-mdc-dialog-container .mdc-dialog__surface{background-color:var(--mdc-dialog-container-color, white)}.mat-mdc-dialog-container .mdc-dialog__surface{box-shadow:var(--mdc-dialog-container-elevation, 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12))}.mat-mdc-dialog-container .mdc-dialog__surface{border-radius:var(--mdc-dialog-container-shape, 4px)}.mat-mdc-dialog-container .mdc-dialog__title{font-family:var(--mdc-dialog-subhead-font, Roboto, sans-serif);line-height:var(--mdc-dialog-subhead-line-height, 1.5rem);font-size:var(--mdc-dialog-subhead-size, 1rem);font-weight:var(--mdc-dialog-subhead-weight, 400);letter-spacing:var(--mdc-dialog-subhead-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__title{color:var(--mdc-dialog-subhead-color, rgba(0, 0, 0, 0.87))}.mat-mdc-dialog-container .mdc-dialog__content{font-family:var(--mdc-dialog-supporting-text-font, Roboto, sans-serif);line-height:var(--mdc-dialog-supporting-text-line-height, 1.5rem);font-size:var(--mdc-dialog-supporting-text-size, 1rem);font-weight:var(--mdc-dialog-supporting-text-weight, 400);letter-spacing:var(--mdc-dialog-supporting-text-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__content{color:var(--mdc-dialog-supporting-text-color, rgba(0, 0, 0, 0.6))}.mat-mdc-dialog-container .mdc-dialog__container{transition:opacity linear var(--mat-dialog-transition-duration, 0ms)}.mat-mdc-dialog-container .mdc-dialog__surface{transition:transform var(--mat-dialog-transition-duration, 0ms) 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__container,.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__surface{transition:none}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 80vw);min-width:var(--mat-dialog-container-min-width, 0)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, 80vw)}}.mat-mdc-dialog-title{padding:var(--mat-dialog-headline-padding, 0 24px 9px)}.mat-mdc-dialog-content{display:block}.mat-mdc-dialog-container .mat-mdc-dialog-content{padding:var(--mat-dialog-content-padding, 20px 24px)}.mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content{padding:var(--mat-dialog-with-actions-content-padding, 20px 24px)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{padding:var(--mat-dialog-actions-padding, 8px);justify-content:var(--mat-dialog-actions-alignment, start)}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-start,.mat-mdc-dialog-actions[align=start]{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}'],encapsulation:2})}return Xe})();const Ee="--mat-dialog-transition-duration";function ze(Xe){return null==Xe?null:"number"==typeof Xe?Xe:Xe.endsWith("ms")?(0,D.OE)(Xe.substring(0,Xe.length-2)):Xe.endsWith("s")?1e3*(0,D.OE)(Xe.substring(0,Xe.length-1)):"0"===Xe?0:null}var qe=function(Xe){return Xe[Xe.OPEN=0]="OPEN",Xe[Xe.CLOSING=1]="CLOSING",Xe[Xe.CLOSED=2]="CLOSED",Xe}(qe||{});class Ke{constructor(yt,Ye,rt){this._ref=yt,this._containerInstance=rt,this._afterOpened=new I.B,this._beforeClosed=new I.B,this._state=qe.OPEN,this.disableClose=Ye.disableClose,this.id=yt.id,yt.addPanelClass("mat-mdc-dialog-panel"),rt._animationStateChanged.pipe((0,c.p)(Yt=>"opened"===Yt.state),(0,m.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),rt._animationStateChanged.pipe((0,c.p)(Yt=>"closed"===Yt.state),(0,m.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),yt.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,n.h)(this.backdropClick(),this.keydownEvents().pipe((0,c.p)(Yt=>Yt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Yt)))).subscribe(Yt=>{this.disableClose||(Yt.preventDefault(),se(this,"keydown"===Yt.type?"keyboard":"mouse"))})}close(yt){this._result=yt,this._containerInstance._animationStateChanged.pipe((0,c.p)(Ye=>"closing"===Ye.state),(0,m.s)(1)).subscribe(Ye=>{this._beforeClosed.next(yt),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),Ye.totalTime+100)}),this._state=qe.CLOSING,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(yt){let Ye=this._ref.config.positionStrategy;return yt&&(yt.left||yt.right)?yt.left?Ye.left(yt.left):Ye.right(yt.right):Ye.centerHorizontally(),yt&&(yt.top||yt.bottom)?yt.top?Ye.top(yt.top):Ye.bottom(yt.bottom):Ye.centerVertically(),this._ref.updatePosition(),this}updateSize(yt="",Ye=""){return this._ref.updateSize(yt,Ye),this}addPanelClass(yt){return this._ref.addPanelClass(yt),this}removePanelClass(yt){return this._ref.removePanelClass(yt),this}getState(){return this._state}_finishDialogClose(){this._state=qe.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function se(Xe,yt,Ye){return Xe._closeInteractionType=yt,Xe.close(Ye)}const X=new w.nKC("MatMdcDialogData"),me=new w.nKC("mat-mdc-dialog-default-options"),ce=new w.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const Xe=(0,w.WQX)(e.hJ);return()=>Xe.scrollStrategies.block()}});let mt=0,_e=(()=>{class Xe{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ye=this._parentDialog;return Ye?Ye._getAfterAllClosed():this._afterAllClosedAtThisLevel}constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt){this._overlay=Ye,this._defaultOptions=Nt,this._scrollStrategy=Et,this._parentDialog=Vt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new I.B,this._afterOpenedAtThisLevel=new I.B,this.dialogConfigClass=L,this.afterAllClosed=(0,d.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,F.Z)(void 0))),this._dialog=rt.get(Me),this._dialogRefConstructor=Ke,this._dialogContainerType=ne,this._dialogDataToken=X}open(Ye,rt){let Yt;(rt={...this._defaultOptions||new L,...rt}).id=rt.id||"mat-mdc-dialog-"+mt++,rt.scrollStrategy=rt.scrollStrategy||this._scrollStrategy();const Nt=this._dialog.open(Ye,{...rt,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:rt},{provide:z,useValue:rt}]},templateContext:()=>({dialogRef:Yt}),providers:(Et,Vt,oe)=>(Yt=new this._dialogRefConstructor(Et,rt,oe),Yt.updatePosition(rt?.position),[{provide:this._dialogContainerType,useValue:oe},{provide:this._dialogDataToken,useValue:Vt.data},{provide:this._dialogRefConstructor,useValue:Yt}])});return Yt.componentRef=Nt.componentRef,Yt.componentInstance=Nt.componentInstance,this.openDialogs.push(Yt),this.afterOpened.next(Yt),Yt.afterClosed().subscribe(()=>{const Et=this.openDialogs.indexOf(Yt);Et>-1&&(this.openDialogs.splice(Et,1),this.openDialogs.length||this._getAfterAllClosed().next())}),Yt}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ye){return this.openDialogs.find(rt=>rt.id===Ye)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Ye){let rt=Ye.length;for(;rt--;)Ye[rt].close()}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.KVO(e.hJ),w.KVO(w.zZn),w.KVO(t.aZ,8),w.KVO(me,8),w.KVO(ce),w.KVO(Xe,12),w.KVO(e.Sf),w.KVO(w.bc$,8))};static#t=this.\u0275prov=w.jDH({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})(),pe=(()=>{class Xe{constructor(Ye,rt,Yt){this.dialogRef=Ye,this._elementRef=rt,this._dialog=Yt,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function Xt(Xe,yt){let Ye=Xe.nativeElement.parentElement;for(;Ye&&!Ye.classList.contains("mat-mdc-dialog-container");)Ye=Ye.parentElement;return Ye?yt.find(rt=>rt.id===Ye.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ye){const rt=Ye._matDialogClose||Ye._matDialogCloseResult;rt&&(this.dialogResult=rt.currentValue)}_onButtonClick(Ye){se(this.dialogRef,0===Ye.screenX&&0===Ye.screenY?"keyboard":"mouse",this.dialogResult)}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(Ke,8),w.rXU(w.aKT),w.rXU(_e))};static#t=this.\u0275dir=w.FsC({type:Xe,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(rt,Yt){1&rt&&w.bIt("click",function(Et){return Yt._onButtonClick(Et)}),2&rt&&w.BMQ("aria-label",Yt.ariaLabel||null)("type",Yt.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],standalone:!0,features:[w.OA$]})}return Xe})();let ue=(()=>{class Xe{static#e=this.\u0275fac=function(rt){return new(rt||Xe)};static#t=this.\u0275mod=w.$C({type:Xe});static#i=this.\u0275inj=w.G2t({providers:[_e],imports:[de,e.z_,x.jc,h.yE,h.yE]})}return Xe})()},1997:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>S,w:()=>l});var e=g(4438),t=g(4085),w=g(6600);let S=(()=>{class x{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(I){this._vertical=(0,t.he)(I)}get inset(){return this._inset}set inset(I){this._inset=(0,t.he)(I)}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275cmp=e.VBU({type:x,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(d,T){2&d&&(e.BMQ("aria-orientation",T.vertical?"vertical":"horizontal"),e.AVh("mat-divider-vertical",T.vertical)("mat-divider-horizontal",!T.vertical)("mat-divider-inset",T.inset))},inputs:{vertical:"vertical",inset:"inset"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(d,T){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color);border-top-width:var(--mat-divider-width)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color);border-right-width:var(--mat-divider-width)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],encapsulation:2,changeDetection:0})}return x})(),l=(()=>{class x{static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275mod=e.$C({type:x});static#i=this.\u0275inj=e.G2t({imports:[w.yE,w.yE]})}return x})()},9454:(Qe,te,g)=>{"use strict";g.d(te,{BS:()=>ze,MY:()=>qe,GK:()=>r,Q6:()=>ne,Z2:()=>N,WN:()=>Ee});var e=g(4438),t=g(5024),w=g(1413),S=g(8359);let l=0;const x=new e.nKC("CdkAccordion");let f=(()=>{class Ke{constructor(){this._stateChanges=new w.B,this._openCloseAllActions=new w.B,this.id="cdk-accordion-"+l++,this.multi=!1}openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(X){this._stateChanges.next(X)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",e.L39]},exportAs:["cdkAccordion"],standalone:!0,features:[e.Jv_([{provide:x,useExisting:Ke}]),e.GFd,e.OA$]})}return Ke})(),I=0,d=(()=>{class Ke{get expanded(){return this._expanded}set expanded(X){this._expanded!==X&&(this._expanded=X,this.expandedChange.emit(X),X?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}constructor(X,me,ce){this.accordion=X,this._changeDetectorRef=me,this._expansionDispatcher=ce,this._openCloseAllSubscription=S.yU.EMPTY,this.closed=new e.bkB,this.opened=new e.bkB,this.destroyed=new e.bkB,this.expandedChange=new e.bkB,this.id="cdk-accordion-child-"+I++,this._expanded=!1,this.disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=ce.listen((fe,ke)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===ke&&this.id!==fe&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}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(X=>{this.disabled||(this.expanded=X)})}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(x,12),e.rXU(e.gRc),e.rXU(t.zP))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",e.L39],disabled:[2,"disabled","disabled",e.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],standalone:!0,features:[e.Jv_([{provide:x,useValue:void 0}]),e.GFd]})}return Ke})(),T=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({})}return Ke})();var y=g(6939),F=g(6600),R=g(8617),z=g(9172),W=g(5964),$=g(6697),j=g(7336),Q=g(983),J=g(7786),ee=g(9969),ie=g(177);const ge=["body"],ae=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],Me=["mat-expansion-panel-header","*","mat-action-row"];function Te(Ke,se){}const de=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],D=["mat-panel-title","mat-panel-description","*"];function n(Ke,se){if(1&Ke&&(e.j41(0,"span",1),e.qSk(),e.j41(1,"svg",2),e.nrm(2,"path",3),e.k0s()()),2&Ke){const X=e.XpG();e.Y8G("@indicatorRotate",X._getExpandedState())}}const c=new e.nKC("MAT_ACCORDION"),m="225ms cubic-bezier(0.4,0.0,0.2,1)",h={indicatorRotate:(0,ee.hZ)("indicatorRotate",[(0,ee.wk)("collapsed, void",(0,ee.iF)({transform:"rotate(0deg)"})),(0,ee.wk)("expanded",(0,ee.iF)({transform:"rotate(180deg)"})),(0,ee.kY)("expanded <=> collapsed, void => collapsed",(0,ee.i0)(m))]),bodyExpansion:(0,ee.hZ)("bodyExpansion",[(0,ee.wk)("collapsed, void",(0,ee.iF)({height:"0px",visibility:"hidden"})),(0,ee.wk)("expanded",(0,ee.iF)({height:"*",visibility:""})),(0,ee.kY)("expanded <=> collapsed, void => collapsed",(0,ee.i0)(m))])},C=new e.nKC("MAT_EXPANSION_PANEL");let k=(()=>{class Ke{constructor(X,me){this._template=X,this._expansionPanel=me}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.C4Q),e.rXU(C,8))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["ng-template","matExpansionPanelContent",""]],standalone:!0})}return Ke})(),L=0;const _=new e.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let r=(()=>{class Ke extends d{get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(X){this._hideToggle=X}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(X){this._togglePosition=X}constructor(X,me,ce,fe,ke,mt,_e){super(X,me,ce),this._viewContainerRef=fe,this._animationMode=mt,this._hideToggle=!1,this.afterExpand=new e.bkB,this.afterCollapse=new e.bkB,this._inputChanges=new w.B,this._headerId="mat-expansion-panel-header-"+L++,this.accordion=X,this._document=ke,this._animationsDisabled="NoopAnimations"===mt,_e&&(this.hideToggle=_e.hideToggle)}_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._lazyContent._expansionPanel===this&&this.opened.pipe((0,z.Z)(null),(0,W.p)(()=>this.expanded&&!this._portal),(0,$.s)(1)).subscribe(()=>{this._portal=new y.VA(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(X){this._inputChanges.next(X)}ngOnDestroy(){super.ngOnDestroy(),this._inputChanges.complete()}_containsFocus(){if(this._body){const X=this._document.activeElement,me=this._body.nativeElement;return X===me||me.contains(X)}return!1}_animationStarted(X){!v(X)&&!this._animationsDisabled&&this._body&&this._body?.nativeElement.setAttribute("inert","")}_animationDone(X){v(X)||("expanded"===X.toState?this.afterExpand.emit():"collapsed"===X.toState&&this.afterCollapse.emit(),!this._animationsDisabled&&this._body&&this._body.nativeElement.removeAttribute("inert"))}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(c,12),e.rXU(e.gRc),e.rXU(t.zP),e.rXU(e.c1b),e.rXU(ie.qQ),e.rXU(e.bc$,8),e.rXU(_,8))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-expansion-panel"]],contentQueries:function(me,ce,fe){if(1&me&&e.wni(fe,k,5),2&me){let ke;e.mGM(ke=e.lsd())&&(ce._lazyContent=ke.first)}},viewQuery:function(me,ce){if(1&me&&e.GBs(ge,5),2&me){let fe;e.mGM(fe=e.lsd())&&(ce._body=fe.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(me,ce){2&me&&e.AVh("mat-expanded",ce.expanded)("_mat-animation-noopable",ce._animationsDisabled)("mat-expansion-panel-spacing",ce._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],standalone:!0,features:[e.Jv_([{provide:c,useValue:void 0},{provide:C,useExisting:Ke}]),e.GFd,e.Vt3,e.OA$,e.aNF],ngContentSelectors:Me,decls:7,vars:4,consts:[["body",""],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(me,ce){if(1&me){const fe=e.RV6();e.NAR(ae),e.SdG(0),e.j41(1,"div",1,0),e.bIt("@bodyExpansion.start",function(mt){return e.eBV(fe),e.Njj(ce._animationStarted(mt))})("@bodyExpansion.done",function(mt){return e.eBV(fe),e.Njj(ce._animationDone(mt))}),e.j41(3,"div",2),e.SdG(4,1),e.DNE(5,Te,0,0,"ng-template",3),e.k0s(),e.SdG(6,2),e.k0s()}2&me&&(e.R7$(),e.Y8G("@bodyExpansion",ce._getExpandedState())("id",ce.id),e.BMQ("aria-labelledby",ce._headerId),e.R7$(4),e.Y8G("cdkPortalOutlet",ce._portal))},dependencies:[y.I3],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;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;background:var(--mat-expansion-container-background-color);color:var(--mat-expansion-container-text-color);border-radius:var(--mat-expansion-container-shape)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.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:var(--mat-expansion-container-shape);border-top-left-radius:var(--mat-expansion-container-shape)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape);border-bottom-left-radius:var(--mat-expansion-container-shape)}.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;font-family:var(--mat-expansion-container-text-font);font-size:var(--mat-expansion-container-text-size);font-weight:var(--mat-expansion-container-text-weight);line-height:var(--mat-expansion-container-text-line-height);letter-spacing:var(--mat-expansion-container-text-tracking)}.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;border-top-color:var(--mat-expansion-actions-divider-color)}.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}'],encapsulation:2,data:{animation:[h.bodyExpansion]},changeDetection:0})}return Ke})();function v(Ke){return"void"===Ke.fromState}let N=(()=>{class Ke{constructor(X,me,ce,fe,ke,mt,_e){this.panel=X,this._element=me,this._focusMonitor=ce,this._changeDetectorRef=fe,this._animationMode=mt,this._parentChangeSubscription=S.yU.EMPTY,this.tabIndex=0;const be=X.accordion?X.accordion._stateChanges.pipe((0,W.p)(pe=>!(!pe.hideToggle&&!pe.togglePosition))):Q.w;this.tabIndex=parseInt(_e||"")||0,this._parentChangeSubscription=(0,J.h)(X.opened,X.closed,be,X._inputChanges.pipe((0,W.p)(pe=>!!(pe.hideToggle||pe.disabled||pe.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),X.closed.pipe((0,W.p)(()=>X._containsFocus())).subscribe(()=>ce.focusVia(me,"program")),ke&&(this.expandedHeight=ke.expandedHeight,this.collapsedHeight=ke.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 X=this._isExpanded();return X&&this.expandedHeight?this.expandedHeight:!X&&this.collapsedHeight?this.collapsedHeight:null}_keydown(X){switch(X.keyCode){case j.t6:case j.Fm:(0,j.rp)(X)||(X.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(X))}}focus(X,me){X?this._focusMonitor.focusVia(this._element,X,me):this._element.nativeElement.focus(me)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(X=>{X&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(r,1),e.rXU(e.aKT),e.rXU(R.FN),e.rXU(e.gRc),e.rXU(_,8),e.rXU(e.bc$,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(me,ce){1&me&&e.bIt("click",function(){return ce._toggle()})("keydown",function(ke){return ce._keydown(ke)}),2&me&&(e.BMQ("id",ce.panel._headerId)("tabindex",ce.disabled?-1:ce.tabIndex)("aria-controls",ce._getPanelId())("aria-expanded",ce._isExpanded())("aria-disabled",ce.panel.disabled),e.xc7("height",ce._getHeaderHeight()),e.AVh("mat-expanded",ce._isExpanded())("mat-expansion-toggle-indicator-after","after"===ce._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===ce._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===ce._animationMode))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",X=>null==X?0:(0,e.Udg)(X)]},standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:D,decls:5,vars:3,consts:[[1,"mat-content"],[1,"mat-expansion-indicator"],["xmlns","http://www.w3.org/2000/svg","viewBox","0 -960 960 960","aria-hidden","true","focusable","false"],["d","M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z"]],template:function(me,ce){1&me&&(e.NAR(de),e.j41(0,"span",0),e.SdG(1),e.SdG(2,1),e.SdG(3,2),e.k0s(),e.DNE(4,n,3,1,"span",1)),2&me&&(e.AVh("mat-content-hide-toggle",!ce._showToggle()),e.R7$(4),e.vxM(ce._showToggle()?4:-1))},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);height:var(--mat-expansion-header-collapsed-state-height);font-family:var(--mat-expansion-header-text-font);font-size:var(--mat-expansion-header-text-size);font-weight:var(--mat-expansion-header-text-weight);line-height:var(--mat-expansion-header-text-line-height);letter-spacing:var(--mat-expansion-header-text-tracking)}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color)}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-header-hover-state-layer-color)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-container-background-color)}}.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused{background:var(--mat-expansion-header-focus-state-layer-color)}.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.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-content.mat-content-hide-toggle{margin-right:8px}[dir=rtl] .mat-content.mat-content-hide-toggle{margin-right:0;margin-left:8px}.mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-left:24px;margin-right:0}[dir=rtl] .mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-right:24px;margin-left:0}.mat-expansion-panel-header-title{color:var(--mat-expansion-header-text-color)}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;flex-basis:0;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[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header-description{flex-grow:2;color:var(--mat-expansion-header-description-color)}.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;color:var(--mat-expansion-header-indicator-color);display:inline-block;display:var(--mat-expansion-legacy-header-indicator-display, inline-block)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color);display:none;display:var(--mat-expansion-header-indicator-display, none)}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}'],encapsulation:2,data:{animation:[h.indicatorRotate]},changeDetection:0})}return Ke})(),ne=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"],standalone:!0})}return Ke})(),Ee=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"],standalone:!0})}return Ke})(),ze=(()=>{class Ke extends f{constructor(){super(...arguments),this._ownHeaders=new e.rOR,this.hideToggle=!1,this.displayMode="default",this.togglePosition="after"}ngAfterContentInit(){this._headers.changes.pipe((0,z.Z)(this._headers)).subscribe(X=>{this._ownHeaders.reset(X.filter(me=>me.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new R.Bu(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(X){this._keyManager.onKeydown(X)}_handleHeaderFocus(X){this._keyManager.updateActiveItem(X)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static#e=this.\u0275fac=(()=>{let X;return function(ce){return(X||(X=e.xGo(Ke)))(ce||Ke)}})();static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-accordion"]],contentQueries:function(me,ce,fe){if(1&me&&e.wni(fe,N,5),2&me){let ke;e.mGM(ke=e.lsd())&&(ce._headers=ke)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(me,ce){2&me&&e.AVh("mat-accordion-multi",ce.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:Ke}]),e.GFd,e.Vt3]})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({imports:[F.yE,T,y.jc]})}return Ke})()},6467:(Qe,te,g)=>{"use strict";g.d(te,{xb:()=>Yt,TL:()=>fe,rl:()=>zt,qT:()=>Xe,RG:()=>Jt,MV:()=>mt,nJ:()=>X,yw:()=>Ze});var e=g(4438),t=g(8203),w=g(6860),S=g(8359),l=g(1413),x=g(7786),f=g(6977),I=g(1985),d=g(5964),T=g(2771),y=g(7647);class z{constructor(dt){this._box=dt,this._destroyed=new l.B,this._resizeSubject=new l.B,this._elementObservables=new Map,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(Ae=>this._resizeSubject.next(Ae)))}observe(dt){return this._elementObservables.has(dt)||this._elementObservables.set(dt,new I.c(Ae=>{const we=this._resizeSubject.subscribe(Ae);return this._resizeObserver?.observe(dt,{box:this._box}),()=>{this._resizeObserver?.unobserve(dt),we.unsubscribe(),this._elementObservables.delete(dt)}}).pipe((0,d.p)(Ae=>Ae.some(we=>we.target===dt)),function F(St,dt,Ae){let we,he=!1;return St&&"object"==typeof St?({bufferSize:we=1/0,windowTime:dt=1/0,refCount:he=!1,scheduler:Ae}=St):we=St??1/0,(0,y.u)({connector:()=>new T.m(we,dt,Ae),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:he})}({bufferSize:1,refCount:!0}),(0,f.Q)(this._destroyed))),this._elementObservables.get(dt)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let W=(()=>{class St{constructor(){this._observers=new Map,this._ngZone=(0,e.WQX)(e.SKi)}ngOnDestroy(){for(const[,Ae]of this._observers)Ae.destroy();this._observers.clear()}observe(Ae,we){const he=we?.box||"content-box";return this._observers.has(he)||this._observers.set(he,new z(he)),this._observers.get(he).observe(Ae)}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})();var $=g(4085),j=g(9969),Q=g(177),J=g(2318),ee=g(6600);const ie=["notch"],ge=["matFormFieldNotchedOutline",""],ae=["*"],Me=["textField"],Te=["iconPrefixContainer"],de=["textPrefixContainer"],D=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],n=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function c(St,dt){1&St&&e.nrm(0,"span",19)}function m(St,dt){if(1&St&&(e.j41(0,"label",18),e.SdG(1,1),e.DNE(2,c,1,0,"span",19),e.k0s()),2&St){const Ae=e.XpG(2);e.Y8G("floating",Ae._shouldLabelFloat())("monitorResize",Ae._hasOutline())("id",Ae._labelId),e.BMQ("for",Ae._control.disableAutomaticLabeling?null:Ae._control.id),e.R7$(2),e.vxM(!Ae.hideRequiredMarker&&Ae._control.required?2:-1)}}function h(St,dt){if(1&St&&e.DNE(0,m,3,5,"label",18),2&St){const Ae=e.XpG();e.vxM(Ae._hasFloatingLabel()?0:-1)}}function C(St,dt){1&St&&e.nrm(0,"div",5)}function k(St,dt){}function L(St,dt){if(1&St&&e.DNE(0,k,0,0,"ng-template",11),2&St){e.XpG(2);const Ae=e.sdS(1);e.Y8G("ngTemplateOutlet",Ae)}}function _(St,dt){if(1&St&&(e.j41(0,"div",7),e.DNE(1,L,1,1,null,11),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",Ae._shouldLabelFloat()),e.R7$(),e.vxM(Ae._forceDisplayInfixLabel()?-1:1)}}function r(St,dt){1&St&&(e.j41(0,"div",8,2),e.SdG(2,2),e.k0s())}function v(St,dt){1&St&&(e.j41(0,"div",9,3),e.SdG(2,3),e.k0s())}function V(St,dt){}function N(St,dt){if(1&St&&e.DNE(0,V,0,0,"ng-template",11),2&St){e.XpG();const Ae=e.sdS(1);e.Y8G("ngTemplateOutlet",Ae)}}function ne(St,dt){1&St&&(e.j41(0,"div",12),e.SdG(1,4),e.k0s())}function Ee(St,dt){1&St&&(e.j41(0,"div",13),e.SdG(1,5),e.k0s())}function ze(St,dt){1&St&&e.nrm(0,"div",14)}function qe(St,dt){if(1&St&&(e.j41(0,"div",16),e.SdG(1,6),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("@transitionMessages",Ae._subscriptAnimationState)}}function Ke(St,dt){if(1&St&&(e.j41(0,"mat-hint",20),e.EFF(1),e.k0s()),2&St){const Ae=e.XpG(2);e.Y8G("id",Ae._hintLabelId),e.R7$(),e.JRh(Ae.hintLabel)}}function se(St,dt){if(1&St&&(e.j41(0,"div",17),e.DNE(1,Ke,2,2,"mat-hint",20),e.SdG(2,7),e.nrm(3,"div",21),e.SdG(4,8),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("@transitionMessages",Ae._subscriptAnimationState),e.R7$(),e.vxM(Ae.hintLabel?1:-1)}}let X=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-label"]],standalone:!0})}return St})(),me=0;const ce=new e.nKC("MatError");let fe=(()=>{class St{constructor(Ae,we){this.id="mat-mdc-error-"+me++,Ae||we.nativeElement.setAttribute("aria-live","polite")}static#e=this.\u0275fac=function(we){return new(we||St)(e.kS0("aria-live"),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(we,he){2&we&&e.Mr5("id",he.id)},inputs:{id:"id"},standalone:!0,features:[e.Jv_([{provide:ce,useExisting:St}])]})}return St})(),ke=0,mt=(()=>{class St{constructor(){this.align="start",this.id="mat-mdc-hint-"+ke++}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(we,he){2&we&&(e.Mr5("id",he.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===he.align))},inputs:{align:"align",id:"id"},standalone:!0})}return St})();const _e=new e.nKC("MatPrefix"),pe=new e.nKC("MatSuffix");let Ze=(()=>{class St{constructor(){this._isText=!1}set _isTextSelector(Ae){this._isText=!0}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},standalone:!0,features:[e.Jv_([{provide:pe,useExisting:St}])]})}return St})();const _t=new e.nKC("FloatingLabelParent");let at=(()=>{class St{get floating(){return this._floating}set floating(Ae){this._floating=Ae,this.monitorResize&&this._handleResize()}get monitorResize(){return this._monitorResize}set monitorResize(Ae){this._monitorResize=Ae,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}constructor(Ae){this._elementRef=Ae,this._floating=!1,this._monitorResize=!1,this._resizeObserver=(0,e.WQX)(W),this._ngZone=(0,e.WQX)(e.SKi),this._parent=(0,e.WQX)(_t),this._resizeSubscription=new S.yU}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function pt(St){if(null!==St.offsetParent)return St.scrollWidth;const Ae=St.cloneNode(!0);Ae.style.setProperty("position","absolute"),Ae.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(Ae);const we=Ae.scrollWidth;return Ae.remove(),we}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(we,he){2&we&&e.AVh("mdc-floating-label--float-above",he.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"},standalone:!0})}return St})();const Xt="mdc-line-ripple--active",ye="mdc-line-ripple--deactivating";let ue=(()=>{class St{constructor(Ae,we){this._elementRef=Ae,this._handleTransitionEnd=he=>{const q=this._elementRef.nativeElement.classList,Re=q.contains(ye);"opacity"===he.propertyName&&Re&&q.remove(Xt,ye)},we.runOutsideAngular(()=>{Ae.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const Ae=this._elementRef.nativeElement.classList;Ae.remove(ye),Ae.add(Xt)}deactivate(){this._elementRef.nativeElement.classList.add(ye)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.SKi))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"],standalone:!0})}return St})(),Ie=(()=>{class St{constructor(Ae,we){this._elementRef=Ae,this._ngZone=we,this.open=!1}ngAfterViewInit(){const Ae=this._elementRef.nativeElement.querySelector(".mdc-floating-label");Ae?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(Ae.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>Ae.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(Ae){this._notch.nativeElement.style.width=this.open&&Ae?`calc(${Ae}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.SKi))};static#t=this.\u0275cmp=e.VBU({type:St,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(we,he){if(1&we&&e.GBs(ie,5),2&we){let q;e.mGM(q=e.lsd())&&(he._notch=q.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(we,he){2&we&&e.AVh("mdc-notched-outline--notched",he.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},standalone:!0,features:[e.aNF],attrs:ge,ngContentSelectors:ae,decls:5,vars:0,consts:[["notch",""],[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(we,he){1&we&&(e.NAR(),e.nrm(0,"div",1),e.j41(1,"div",2,0),e.SdG(3),e.k0s(),e.nrm(4,"div",3))},encapsulation:2,changeDetection:0})}return St})();const He={transitionMessages:(0,j.hZ)("transitionMessages",[(0,j.wk)("enter",(0,j.iF)({opacity:1,transform:"translateY(0%)"})),(0,j.kY)("void => enter",[(0,j.iF)({opacity:0,transform:"translateY(-5px)"}),(0,j.i0)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let Xe=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St})}return St})();const Yt=new e.nKC("MatFormField"),Nt=new e.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let Et=0,zt=(()=>{class St{get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(Ae){this._hideRequiredMarker=(0,$.he)(Ae)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(Ae){Ae!==this._floatLabel&&(this._floatLabel=Ae,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(Ae){const we=this._appearance;this._appearance=Ae||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==we&&(this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(Ae){this._subscriptSizing=Ae||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(Ae){this._hintLabel=Ae,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(Ae){this._explicitFormFieldControl=Ae}constructor(Ae,we,he,q,Re,Ne,gt,$e){this._elementRef=Ae,this._changeDetectorRef=we,this._ngZone=he,this._dir=q,this._platform=Re,this._defaults=Ne,this._animationMode=gt,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+Et++,this._hintLabelId="mat-mdc-hint-"+Et++,this._subscriptAnimationState="",this._destroyed=new l.B,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,Ne&&(Ne.appearance&&(this.appearance=Ne.appearance),this._hideRequiredMarker=!!Ne?.hideRequiredMarker,Ne.color&&(this.color=Ne.color))}ngAfterViewInit(){this._updateFocusState(),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const Ae=this._control;Ae.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${Ae.controlType}`),Ae.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),Ae.ngControl&&Ae.ngControl.valueChanges&&Ae.ngControl.valueChanges.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(Ae=>!Ae._isText),this._hasTextPrefix=!!this._prefixChildren.find(Ae=>Ae._isText),this._hasIconSuffix=!!this._suffixChildren.find(Ae=>!Ae._isText),this._hasTextSuffix=!!this._suffixChildren.find(Ae=>Ae._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,x.h)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,f.Q)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(Ae){const we=this._control?this._control.ngControl:null;return we&&we[Ae]}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let Ae=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&Ae.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const we=this._hintChildren?this._hintChildren.find(q=>"start"===q.align):null,he=this._hintChildren?this._hintChildren.find(q=>"end"===q.align):null;we?Ae.push(we.id):this._hintLabel&&Ae.push(this._hintLabelId),he&&Ae.push(he.id)}else this._errorChildren&&Ae.push(...this._errorChildren.map(we=>we.id));this._control.setDescribedByIds(Ae)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const Ae=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(Ae.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const we=this._iconPrefixContainer?.nativeElement,he=this._textPrefixContainer?.nativeElement,q=we?.getBoundingClientRect().width??0,Re=he?.getBoundingClientRect().width??0;Ae.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${q+Re}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const Ae=this._elementRef.nativeElement;if(Ae.getRootNode){const we=Ae.getRootNode();return we&&we!==Ae}return document.documentElement.contains(Ae)}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.rXU(t.dS),e.rXU(w.OD),e.rXU(Nt,8),e.rXU(e.bc$,8),e.rXU(Q.qQ))};static#t=this.\u0275cmp=e.VBU({type:St,selectors:[["mat-form-field"]],contentQueries:function(we,he,q){if(1&we&&(e.wni(q,X,5),e.wni(q,X,7),e.wni(q,Xe,5),e.wni(q,_e,5),e.wni(q,pe,5),e.wni(q,ce,5),e.wni(q,mt,5)),2&we){let Re;e.mGM(Re=e.lsd())&&(he._labelChildNonStatic=Re.first),e.mGM(Re=e.lsd())&&(he._labelChildStatic=Re.first),e.mGM(Re=e.lsd())&&(he._formFieldControl=Re.first),e.mGM(Re=e.lsd())&&(he._prefixChildren=Re),e.mGM(Re=e.lsd())&&(he._suffixChildren=Re),e.mGM(Re=e.lsd())&&(he._errorChildren=Re),e.mGM(Re=e.lsd())&&(he._hintChildren=Re)}},viewQuery:function(we,he){if(1&we&&(e.GBs(Me,5),e.GBs(Te,5),e.GBs(de,5),e.GBs(at,5),e.GBs(Ie,5),e.GBs(ue,5)),2&we){let q;e.mGM(q=e.lsd())&&(he._textField=q.first),e.mGM(q=e.lsd())&&(he._iconPrefixContainer=q.first),e.mGM(q=e.lsd())&&(he._textPrefixContainer=q.first),e.mGM(q=e.lsd())&&(he._floatingLabel=q.first),e.mGM(q=e.lsd())&&(he._notchedOutline=q.first),e.mGM(q=e.lsd())&&(he._lineRipple=q.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(we,he){2&we&&e.AVh("mat-mdc-form-field-label-always-float",he._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",he._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",he._hasIconSuffix)("mat-form-field-invalid",he._control.errorState)("mat-form-field-disabled",he._control.disabled)("mat-form-field-autofilled",he._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===he._animationMode)("mat-form-field-appearance-fill","fill"==he.appearance)("mat-form-field-appearance-outline","outline"==he.appearance)("mat-form-field-hide-placeholder",he._hasFloatingLabel()&&!he._shouldLabelFloat())("mat-focused",he._control.focused)("mat-primary","accent"!==he.color&&"warn"!==he.color)("mat-accent","accent"===he.color)("mat-warn","warn"===he.color)("ng-untouched",he._shouldForward("untouched"))("ng-touched",he._shouldForward("touched"))("ng-pristine",he._shouldForward("pristine"))("ng-dirty",he._shouldForward("dirty"))("ng-valid",he._shouldForward("valid"))("ng-invalid",he._shouldForward("invalid"))("ng-pending",he._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],standalone:!0,features:[e.Jv_([{provide:Yt,useExisting:St},{provide:_t,useExisting:St}]),e.aNF],ngContentSelectors:n,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],[1,"mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],[1,"mat-mdc-form-field-icon-prefix"],[1,"mat-mdc-form-field-text-prefix"],[1,"mat-mdc-form-field-infix"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],[1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align"],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[3,"id"],[1,"mat-mdc-form-field-hint-spacer"]],template:function(we,he){if(1&we){const q=e.RV6();e.NAR(D),e.DNE(0,h,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",4,1),e.bIt("click",function(Ne){return e.eBV(q),e.Njj(he._control.onContainerClick(Ne))}),e.DNE(4,C,1,0,"div",5),e.j41(5,"div",6),e.DNE(6,_,2,2,"div",7)(7,r,3,0,"div",8)(8,v,3,0,"div",9),e.j41(9,"div",10),e.DNE(10,N,1,1,null,11),e.SdG(11),e.k0s(),e.DNE(12,ne,2,0,"div",12)(13,Ee,2,0,"div",13),e.k0s(),e.DNE(14,ze,1,0,"div",14),e.k0s(),e.j41(15,"div",15),e.DNE(16,qe,2,1,"div",16)(17,se,5,2,"div",17),e.k0s()}if(2&we){let q;e.R7$(2),e.AVh("mdc-text-field--filled",!he._hasOutline())("mdc-text-field--outlined",he._hasOutline())("mdc-text-field--no-label",!he._hasFloatingLabel())("mdc-text-field--disabled",he._control.disabled)("mdc-text-field--invalid",he._control.errorState),e.R7$(2),e.vxM(he._hasOutline()||he._control.disabled?-1:4),e.R7$(2),e.vxM(he._hasOutline()?6:-1),e.R7$(),e.vxM(he._hasIconPrefix?7:-1),e.R7$(),e.vxM(he._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!he._hasOutline()||he._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(he._hasTextSuffix?12:-1),e.R7$(),e.vxM(he._hasIconSuffix?13:-1),e.R7$(),e.vxM(he._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===he.subscriptSizing),e.R7$(),e.vxM("error"===(q=he._getDisplayedMessages())?16:"hint"===q?17:-1)}},dependencies:[at,Ie,Q.T3,ue,mt],styles:['.mdc-text-field{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}}.mdc-text-field__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 96px/0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after,.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)[dir=rtl]::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;pointer-events:none}.mdc-notched-outline__trailing{flex-grow:1}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{border-top:1px solid;border-bottom:1px solid}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{max-width:calc(100% - 12px*2)}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::after{border-bottom-width:2px}.mdc-text-field--filled{border-top-left-radius:var(--mdc-filled-text-field-container-shape);border-top-right-radius:var(--mdc-filled-text-field-container-shape);border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-caret-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-error-caret-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-filled-text-field-input-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-filled-text-field-disabled-input-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-focus-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-hover-label-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-disabled-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-focus-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-hover-label-text-color)}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mdc-filled-text-field-label-text-font);font-size:var(--mdc-filled-text-field-label-text-size);font-weight:var(--mdc-filled-text-field-label-text-weight);letter-spacing:var(--mdc-filled-text-field-label-text-tracking)}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mdc-filled-text-field-container-color)}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mdc-filled-text-field-disabled-container-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-hover-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-focus-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-disabled-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-hover-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-error-focus-active-indicator-color)}.mdc-text-field--filled .mdc-line-ripple::before{border-bottom-width:var(--mdc-filled-text-field-active-indicator-height)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mdc-filled-text-field-focus-active-indicator-height)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-caret-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-error-caret-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-outlined-text-field-input-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-outlined-text-field-disabled-input-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-focus-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-hover-label-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-disabled-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-focus-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-hover-label-text-color)}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mdc-outlined-text-field-label-text-font);font-size:var(--mdc-outlined-text-field-label-text-size);font-weight:var(--mdc-outlined-text-field-label-text-weight);letter-spacing:var(--mdc-outlined-text-field-label-text-tracking)}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(.75*var(--mdc-outlined-text-field-label-text-size))}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mdc-outlined-text-field-label-text-size)}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-outlined-text-field-container-shape))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-hover-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-focus-outline-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-disabled-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-hover-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-focus-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-outline-width)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-focus-outline-width)}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all;will-change:auto}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto;will-change:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-text-field-wrapper::before{content:none}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-infix{min-height:var(--mat-form-field-container-height);padding-top:var(--mat-form-field-filled-with-label-container-padding-top);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom)}.mdc-text-field--outlined .mat-mdc-form-field-infix,.mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:var(--mat-form-field-container-vertical-padding);padding-bottom:var(--mat-form-field-container-vertical-padding)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height)/2)}.mdc-text-field--filled .mat-mdc-floating-label{display:var(--mat-form-field-filled-label-display, block)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY(calc(calc(6.75px + var(--mat-form-field-container-height) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block;color:var(--mat-form-field-error-text-color)}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-subscript-text-font);line-height:var(--mat-form-field-subscript-text-line-height);font-size:var(--mat-form-field-subscript-text-size);letter-spacing:var(--mat-form-field-subscript-text-tracking);font-weight:var(--mat-form-field-subscript-text-weight)}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none;background-color:var(--mat-form-field-state-layer-color)}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-hover-state-layer-opacity)}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-focus-state-layer-opacity)}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option{color:var(--mat-form-field-select-option-text-color)}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled{color:var(--mat-form-field-select-disabled-option-text-color)}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none;color:var(--mat-form-field-enabled-select-arrow-color)}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select.mat-focused .mat-mdc-form-field-infix::after{color:var(--mat-form-field-focus-select-arrow-color)}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:var(--mat-form-field-disabled-select-arrow-color)}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-active .mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font);line-height:var(--mat-form-field-container-text-line-height);font-size:var(--mat-form-field-container-text-size);letter-spacing:var(--mat-form-field-container-text-tracking);font-weight:var(--mat-form-field-container-text-weight)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size)*var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%;z-index:0}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:0 12px;box-sizing:content-box}.mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-leading-icon-color)}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color)}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color)}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color)}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color)}.mat-form-field-invalid:not(.mat-focused):not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-hover-trailing-icon-color)}.mat-form-field-invalid.mat-focused .mat-mdc-text-field-wrapper .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-focus-trailing-icon-color)}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}'],encapsulation:2,data:{animation:[He.transitionMessages]},changeDetection:0})}return St})(),Jt=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275mod=e.$C({type:St});static#i=this.\u0275inj=e.G2t({imports:[ee.yE,Q.MD,J.w5,ee.yE]})}return St})()},6195:(Qe,te,g)=>{"use strict";g.d(te,{B_:()=>Te,Fe:()=>de,NS:()=>F});var e=g(4438),t=g(6600),w=g(4085),S=g(8203);const l=["*"];class d{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const c=Math.max(...this.tracker);return c>1?this.rowCount+c-1:this.rowCount}update(c,m){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(c),this.tracker.fill(0,0,this.tracker.length),this.positions=m.map(h=>this._trackTile(h))}_trackTile(c){const m=this._findMatchingGap(c.colspan);return this._markTilePosition(m,c),this.columnIndex=m+c.colspan,new T(this.rowIndex,m)}_findMatchingGap(c){let m=-1,h=-1;do{this.columnIndex+c>this.tracker.length?(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(m)):(m=this.tracker.indexOf(0,this.columnIndex),-1!=m?(h=this._findGapEndIndex(m),this.columnIndex=m+1):(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(m)))}while(h-m{class n{constructor(m,h){this._element=m,this._gridList=h,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(m){this._rowspan=Math.round((0,w.OE)(m))}get colspan(){return this._colspan}set colspan(m){this._colspan=Math.round((0,w.OE)(m))}_setStyle(m,h){this._element.nativeElement.style[m]=h}static#e=this.\u0275fac=function(h){return new(h||n)(e.rXU(e.aKT),e.rXU(y,8))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(h,C){2&h&&e.BMQ("rowspan",C.rowspan)("colspan",C.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],standalone:!0,features:[e.aNF],ngContentSelectors:l,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(h,C){1&h&&(e.NAR(),e.j41(0,"div",0),e.SdG(1),e.k0s())},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-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.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}"],encapsulation:2,changeDetection:0})}return n})();const j=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Q{constructor(){this._rows=0,this._rowspan=0}init(c,m,h,C){this._gutterSize=ae(c),this._rows=m.rowCount,this._rowspan=m.rowspan,this._cols=h,this._direction=C}getBaseTileSize(c,m){return`(${c}% - (${this._gutterSize} * ${m}))`}getTilePosition(c,m){return 0===m?"0":ge(`(${c} + ${this._gutterSize}) * ${m}`)}getTileSize(c,m){return`(${c} * ${m}) + (${m-1} * ${this._gutterSize})`}setStyle(c,m,h){let C=100/this._cols,k=(this._cols-1)/this._cols;this.setColStyles(c,h,C,k),this.setRowStyles(c,m,C,k)}setColStyles(c,m,h,C){let k=this.getBaseTileSize(h,C);c._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(k,m)),c._setStyle("width",ge(this.getTileSize(k,c.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(c){return`${this._rowspan} * ${this.getTileSize(c,1)}`}getComputedHeight(){return null}}class J extends Q{constructor(c){super(),this.fixedRowHeight=c}init(c,m,h,C){super.init(c,m,h,C),this.fixedRowHeight=ae(this.fixedRowHeight),j.test(this.fixedRowHeight)}setRowStyles(c,m){c._setStyle("top",this.getTilePosition(this.fixedRowHeight,m)),c._setStyle("height",ge(this.getTileSize(this.fixedRowHeight,c.rowspan)))}getComputedHeight(){return["height",ge(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["height",null]),c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}class ee extends Q{constructor(c){super(),this._parseRatio(c)}setRowStyles(c,m,h,C){this.baseTileHeight=this.getBaseTileSize(h/this.rowHeightRatio,C),c._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,m)),c._setStyle("paddingTop",ge(this.getTileSize(this.baseTileHeight,c.rowspan)))}getComputedHeight(){return["paddingBottom",ge(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["paddingBottom",null]),c._tiles.forEach(m=>{m._setStyle("marginTop",null),m._setStyle("paddingTop",null)})}_parseRatio(c){const m=c.split(":");this.rowHeightRatio=parseFloat(m[0])/parseFloat(m[1])}}class ie extends Q{setRowStyles(c,m){let k=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);c._setStyle("top",this.getTilePosition(k,m)),c._setStyle("height",ge(this.getTileSize(k,c.rowspan)))}reset(c){c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}function ge(n){return`calc(${n})`}function ae(n){return n.match(/([A-Za-z%]+)$/)?n:`${n}px`}let Te=(()=>{class n{constructor(m,h){this._element=m,this._dir=h,this._gutter="1px"}get cols(){return this._cols}set cols(m){this._cols=Math.max(1,Math.round((0,w.OE)(m)))}get gutterSize(){return this._gutter}set gutterSize(m){this._gutter=`${m??""}`}get rowHeight(){return this._rowHeight}set rowHeight(m){const h=`${m??""}`;h!==this._rowHeight&&(this._rowHeight=h,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(m){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===m?new ie:m&&m.indexOf(":")>-1?new ee(m):new J(m)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new d);const m=this._tileCoordinator,h=this._tiles.filter(k=>!k._gridList||k._gridList===this),C=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,h),this._tileStyler.init(this.gutterSize,m,this.cols,C),h.forEach((k,L)=>{const _=m.positions[L];this._tileStyler.setStyle(k,_.row,_.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(m){m&&(this._element.nativeElement.style[m[0]]=m[1])}static#e=this.\u0275fac=function(h){return new(h||n)(e.rXU(e.aKT),e.rXU(S.dS,8))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-list"]],contentQueries:function(h,C,k){if(1&h&&e.wni(k,F,5),2&h){let L;e.mGM(L=e.lsd())&&(C._tiles=L)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(h,C){2&h&&e.BMQ("cols",C.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],standalone:!0,features:[e.Jv_([{provide:y,useExisting:n}]),e.aNF],ngContentSelectors:l,decls:2,vars:0,template:function(h,C){1&h&&(e.NAR(),e.j41(0,"div"),e.SdG(1),e.k0s())},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-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.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}"],encapsulation:2,changeDetection:0})}return n})(),de=(()=>{class n{static#e=this.\u0275fac=function(h){return new(h||n)};static#t=this.\u0275mod=e.$C({type:n});static#i=this.\u0275inj=e.G2t({imports:[t.Np,t.yE,t.Np,t.yE]})}return n})()},9213:(Qe,te,g)=>{"use strict";g.d(te,{An:()=>v,m_:()=>V});var e=g(4438),t=g(6600),w=g(177),S=g(7673),l=g(8810),x=g(7468),f=g(8359),I=g(8141),d=g(6354),T=g(9437),y=g(980),F=g(7647),R=g(6697),z=g(1626),W=g(345);const $=["*"];let j;function J(N){return function Q(){if(void 0===j&&(j=null,typeof window<"u")){const N=window;void 0!==N.trustedTypes&&(j=N.trustedTypes.createPolicy("angular#components",{createHTML:ne=>ne}))}return j}()?.createHTML(N)||N}function ee(N){return Error(`Unable to find icon with the name "${N}"`)}function ge(N){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${N}".`)}function ae(N){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${N}".`)}class Me{constructor(ne,Ee,ze){this.url=ne,this.svgText=Ee,this.options=ze}}let Te=(()=>{class N{constructor(Ee,ze,qe,Ke){this._httpClient=Ee,this._sanitizer=ze,this._errorHandler=Ke,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","mat-ligature-font"],this._document=qe}addSvgIcon(Ee,ze,qe){return this.addSvgIconInNamespace("",Ee,ze,qe)}addSvgIconLiteral(Ee,ze,qe){return this.addSvgIconLiteralInNamespace("",Ee,ze,qe)}addSvgIconInNamespace(Ee,ze,qe,Ke){return this._addSvgIconConfig(Ee,ze,new Me(qe,null,Ke))}addSvgIconResolver(Ee){return this._resolvers.push(Ee),this}addSvgIconLiteralInNamespace(Ee,ze,qe,Ke){const se=this._sanitizer.sanitize(e.WPN.HTML,qe);if(!se)throw ae(qe);const X=J(se);return this._addSvgIconConfig(Ee,ze,new Me("",X,Ke))}addSvgIconSet(Ee,ze){return this.addSvgIconSetInNamespace("",Ee,ze)}addSvgIconSetLiteral(Ee,ze){return this.addSvgIconSetLiteralInNamespace("",Ee,ze)}addSvgIconSetInNamespace(Ee,ze,qe){return this._addSvgIconSetConfig(Ee,new Me(ze,null,qe))}addSvgIconSetLiteralInNamespace(Ee,ze,qe){const Ke=this._sanitizer.sanitize(e.WPN.HTML,ze);if(!Ke)throw ae(ze);const se=J(Ke);return this._addSvgIconSetConfig(Ee,new Me("",se,qe))}registerFontClassAlias(Ee,ze=Ee){return this._fontCssClassesByAlias.set(Ee,ze),this}classNameForFontAlias(Ee){return this._fontCssClassesByAlias.get(Ee)||Ee}setDefaultFontSetClass(...Ee){return this._defaultFontSetClass=Ee,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(Ee){const ze=this._sanitizer.sanitize(e.WPN.RESOURCE_URL,Ee);if(!ze)throw ge(Ee);const qe=this._cachedIconsByUrl.get(ze);return qe?(0,S.of)(n(qe)):this._loadSvgIconFromConfig(new Me(Ee,null)).pipe((0,I.M)(Ke=>this._cachedIconsByUrl.set(ze,Ke)),(0,d.T)(Ke=>n(Ke)))}getNamedSvgIcon(Ee,ze=""){const qe=c(ze,Ee);let Ke=this._svgIconConfigs.get(qe);if(Ke)return this._getSvgFromConfig(Ke);if(Ke=this._getIconConfigFromResolvers(ze,Ee),Ke)return this._svgIconConfigs.set(qe,Ke),this._getSvgFromConfig(Ke);const se=this._iconSetConfigs.get(ze);return se?this._getSvgFromIconSetConfigs(Ee,se):(0,l.$)(ee(qe))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(Ee){return Ee.svgText?(0,S.of)(n(this._svgElementFromConfig(Ee))):this._loadSvgIconFromConfig(Ee).pipe((0,d.T)(ze=>n(ze)))}_getSvgFromIconSetConfigs(Ee,ze){const qe=this._extractIconWithNameFromAnySet(Ee,ze);if(qe)return(0,S.of)(qe);const Ke=ze.filter(se=>!se.svgText).map(se=>this._loadSvgIconSetFromConfig(se).pipe((0,T.W)(X=>{const ce=`Loading icon set URL: ${this._sanitizer.sanitize(e.WPN.RESOURCE_URL,se.url)} failed: ${X.message}`;return this._errorHandler.handleError(new Error(ce)),(0,S.of)(null)})));return(0,x.p)(Ke).pipe((0,d.T)(()=>{const se=this._extractIconWithNameFromAnySet(Ee,ze);if(!se)throw ee(Ee);return se}))}_extractIconWithNameFromAnySet(Ee,ze){for(let qe=ze.length-1;qe>=0;qe--){const Ke=ze[qe];if(Ke.svgText&&Ke.svgText.toString().indexOf(Ee)>-1){const se=this._svgElementFromConfig(Ke),X=this._extractSvgIconFromSet(se,Ee,Ke.options);if(X)return X}}return null}_loadSvgIconFromConfig(Ee){return this._fetchIcon(Ee).pipe((0,I.M)(ze=>Ee.svgText=ze),(0,d.T)(()=>this._svgElementFromConfig(Ee)))}_loadSvgIconSetFromConfig(Ee){return Ee.svgText?(0,S.of)(null):this._fetchIcon(Ee).pipe((0,I.M)(ze=>Ee.svgText=ze))}_extractSvgIconFromSet(Ee,ze,qe){const Ke=Ee.querySelector(`[id="${ze}"]`);if(!Ke)return null;const se=Ke.cloneNode(!0);if(se.removeAttribute("id"),"svg"===se.nodeName.toLowerCase())return this._setSvgAttributes(se,qe);if("symbol"===se.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(se),qe);const X=this._svgElementFromString(J(""));return X.appendChild(se),this._setSvgAttributes(X,qe)}_svgElementFromString(Ee){const ze=this._document.createElement("DIV");ze.innerHTML=Ee;const qe=ze.querySelector("svg");if(!qe)throw Error(" tag not found");return qe}_toSvgElement(Ee){const ze=this._svgElementFromString(J("")),qe=Ee.attributes;for(let Ke=0;KeJ(ce)),(0,y.j)(()=>this._inProgressUrlFetches.delete(se)),(0,F.u)());return this._inProgressUrlFetches.set(se,me),me}_addSvgIconConfig(Ee,ze,qe){return this._svgIconConfigs.set(c(Ee,ze),qe),this}_addSvgIconSetConfig(Ee,ze){const qe=this._iconSetConfigs.get(Ee);return qe?qe.push(ze):this._iconSetConfigs.set(Ee,[ze]),this}_svgElementFromConfig(Ee){if(!Ee.svgElement){const ze=this._svgElementFromString(Ee.svgText);this._setSvgAttributes(ze,Ee.options),Ee.svgElement=ze}return Ee.svgElement}_getIconConfigFromResolvers(Ee,ze){for(let qe=0;qene?ne.pathname+ne.search:""}}}),L=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],_=L.map(N=>`[${N}]`).join(", "),r=/^url\(['"]?#(.*?)['"]?\)$/;let v=(()=>{class N{get color(){return this._color||this._defaultColor}set color(Ee){this._color=Ee}get svgIcon(){return this._svgIcon}set svgIcon(Ee){Ee!==this._svgIcon&&(Ee?this._updateSvgIcon(Ee):this._svgIcon&&this._clearSvgElement(),this._svgIcon=Ee)}get fontSet(){return this._fontSet}set fontSet(Ee){const ze=this._cleanupFontValue(Ee);ze!==this._fontSet&&(this._fontSet=ze,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(Ee){const ze=this._cleanupFontValue(Ee);ze!==this._fontIcon&&(this._fontIcon=ze,this._updateFontIconClasses())}constructor(Ee,ze,qe,Ke,se,X){this._elementRef=Ee,this._iconRegistry=ze,this._location=Ke,this._errorHandler=se,this.inline=!1,this._previousFontSetClass=[],this._currentIconFetch=f.yU.EMPTY,X&&(X.color&&(this.color=this._defaultColor=X.color),X.fontSet&&(this.fontSet=X.fontSet)),qe||Ee.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(Ee){if(!Ee)return["",""];const ze=Ee.split(":");switch(ze.length){case 1:return["",ze[0]];case 2:return ze;default:throw Error(`Invalid icon name: "${Ee}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const Ee=this._elementsWithExternalReferences;if(Ee&&Ee.size){const ze=this._location.getPathname();ze!==this._previousPath&&(this._previousPath=ze,this._prependPathToReferences(ze))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(Ee){this._clearSvgElement();const ze=this._location.getPathname();this._previousPath=ze,this._cacheChildrenWithExternalReferences(Ee),this._prependPathToReferences(ze),this._elementRef.nativeElement.appendChild(Ee)}_clearSvgElement(){const Ee=this._elementRef.nativeElement;let ze=Ee.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();ze--;){const qe=Ee.childNodes[ze];(1!==qe.nodeType||"svg"===qe.nodeName.toLowerCase())&&qe.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const Ee=this._elementRef.nativeElement,ze=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(qe=>qe.length>0);this._previousFontSetClass.forEach(qe=>Ee.classList.remove(qe)),ze.forEach(qe=>Ee.classList.add(qe)),this._previousFontSetClass=ze,this.fontIcon!==this._previousFontIconClass&&!ze.includes("mat-ligature-font")&&(this._previousFontIconClass&&Ee.classList.remove(this._previousFontIconClass),this.fontIcon&&Ee.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(Ee){return"string"==typeof Ee?Ee.trim().split(" ")[0]:Ee}_prependPathToReferences(Ee){const ze=this._elementsWithExternalReferences;ze&&ze.forEach((qe,Ke)=>{qe.forEach(se=>{Ke.setAttribute(se.name,`url('${Ee}#${se.value}')`)})})}_cacheChildrenWithExternalReferences(Ee){const ze=Ee.querySelectorAll(_),qe=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let Ke=0;Ke{const X=ze[Ke],me=X.getAttribute(se),ce=me?me.match(r):null;if(ce){let fe=qe.get(X);fe||(fe=[],qe.set(X,fe)),fe.push({name:se,value:ce[1]})}})}_updateSvgIcon(Ee){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),Ee){const[ze,qe]=this._splitIconName(Ee);ze&&(this._svgNamespace=ze),qe&&(this._svgName=qe),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(qe,ze).pipe((0,R.s)(1)).subscribe(Ke=>this._setSvgElement(Ke),Ke=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${ze}:${qe}! ${Ke.message}`))})}}static#e=this.\u0275fac=function(ze){return new(ze||N)(e.rXU(e.aKT),e.rXU(Te),e.kS0("aria-hidden"),e.rXU(C),e.rXU(e.zcH),e.rXU(h,8))};static#t=this.\u0275cmp=e.VBU({type:N,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function(ze,qe){2&ze&&(e.BMQ("data-mat-icon-type",qe._usingFontIcon()?"font":"svg")("data-mat-icon-name",qe._svgName||qe.fontIcon)("data-mat-icon-namespace",qe._svgNamespace||qe.fontSet)("fontIcon",qe._usingFontIcon()?qe.fontIcon:null),e.HbH(qe.color?"mat-"+qe.color:""),e.AVh("mat-icon-inline",qe.inline)("mat-icon-no-color","primary"!==qe.color&&"accent"!==qe.color&&"warn"!==qe.color))},inputs:{color:"color",inline:[2,"inline","inline",e.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:$,decls:1,vars:0,template:function(ze,qe){1&ze&&(e.NAR(),e.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[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}"],encapsulation:2,changeDetection:0})}return N})(),V=(()=>{class N{static#e=this.\u0275fac=function(ze){return new(ze||N)};static#t=this.\u0275mod=e.$C({type:N});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return N})()},9631:(Qe,te,g)=>{"use strict";g.d(te,{Oh:()=>W,fg:()=>Q,fS:()=>J});var e=g(4085),t=g(6860),w=g(4438),S=g(983),l=g(1413);const x=(0,t.BQ)({passive:!0});let f=(()=>{class ee{constructor(ge,ae){this._platform=ge,this._ngZone=ae,this._monitoredElements=new Map}monitor(ge){if(!this._platform.isBrowser)return S.w;const ae=(0,e.i8)(ge),Me=this._monitoredElements.get(ae);if(Me)return Me.subject;const Te=new l.B,de="cdk-text-field-autofilled",D=n=>{"cdk-text-field-autofill-start"!==n.animationName||ae.classList.contains(de)?"cdk-text-field-autofill-end"===n.animationName&&ae.classList.contains(de)&&(ae.classList.remove(de),this._ngZone.run(()=>Te.next({target:n.target,isAutofilled:!1}))):(ae.classList.add(de),this._ngZone.run(()=>Te.next({target:n.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{ae.addEventListener("animationstart",D,x),ae.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(ae,{subject:Te,unlisten:()=>{ae.removeEventListener("animationstart",D,x)}}),Te}stopMonitoring(ge){const ae=(0,e.i8)(ge),Me=this._monitoredElements.get(ae);Me&&(Me.unlisten(),Me.subject.complete(),ae.classList.remove("cdk-text-field-autofill-monitored"),ae.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(ae))}ngOnDestroy(){this._monitoredElements.forEach((ge,ae)=>this.stopMonitoring(ae))}static#e=this.\u0275fac=function(ae){return new(ae||ee)(w.KVO(t.OD),w.KVO(w.SKi))};static#t=this.\u0275prov=w.jDH({token:ee,factory:ee.\u0275fac,providedIn:"root"})}return ee})(),T=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=w.$C({type:ee});static#i=this.\u0275inj=w.G2t({})}return ee})();var y=g(9417),F=g(6600),R=g(6467);const W=new w.nKC("MAT_INPUT_VALUE_ACCESSOR"),$=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let j=0,Q=(()=>{class ee{get disabled(){return this._disabled}set disabled(ge){this._disabled=(0,e.he)(ge),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(ge){this._id=ge||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ge){this._required=(0,e.he)(ge)}get type(){return this._type}set type(ge){this._type=ge||"text",this._validateType(),!this._isTextarea&&(0,t.MU)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ge){this._errorStateTracker.matcher=ge}get value(){return this._inputValueAccessor.value}set value(ge){ge!==this.value&&(this._inputValueAccessor.value=ge,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(ge){this._readonly=(0,e.he)(ge)}get errorState(){return this._errorStateTracker.errorState}set errorState(ge){this._errorStateTracker.errorState=ge}constructor(ge,ae,Me,Te,de,D,n,c,m,h){this._elementRef=ge,this._platform=ae,this.ngControl=Me,this._autofillMonitor=c,this._formField=h,this._uid="mat-input-"+j++,this.focused=!1,this.stateChanges=new l.B,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(L=>(0,t.MU)().has(L)),this._iOSKeyupListener=L=>{const _=L.target;!_.value&&0===_.selectionStart&&0===_.selectionEnd&&(_.setSelectionRange(1,1),_.setSelectionRange(0,0))};const C=this._elementRef.nativeElement,k=C.nodeName.toLowerCase();this._inputValueAccessor=n||C,this._previousNativeValue=this.value,this.id=this.id,ae.IOS&&m.runOutsideAngular(()=>{ge.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._errorStateTracker=new F.X0(D,Me,de,Te,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===k,this._isTextarea="textarea"===k,this._isInFormField=!!h,this._isNativeSelect&&(this.controlType=C.multiple?"mat-native-select-multiple":"mat-native-select")}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(ge=>{this.autofilled=ge.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(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(ge){this._elementRef.nativeElement.focus(ge)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(ge){ge!==this.focused&&(this.focused=ge,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const ge=this._elementRef.nativeElement.value;this._previousNativeValue!==ge&&(this._previousNativeValue=ge,this.stateChanges.next())}_dirtyCheckPlaceholder(){const ge=this._getPlaceholder();if(ge!==this._previousPlaceholder){const ae=this._elementRef.nativeElement;this._previousPlaceholder=ge,ge?ae.setAttribute("placeholder",ge):ae.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){$.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let ge=this._elementRef.nativeElement.validity;return ge&&ge.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const ge=this._elementRef.nativeElement,ae=ge.options[0];return this.focused||ge.multiple||!this.empty||!!(ge.selectedIndex>-1&&ae&&ae.label)}return this.focused||!this.empty}setDescribedByIds(ge){ge.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ge.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const ge=this._elementRef.nativeElement;return this._isNativeSelect&&(ge.multiple||ge.size>1)}static#e=this.\u0275fac=function(ae){return new(ae||ee)(w.rXU(w.aKT),w.rXU(t.OD),w.rXU(y.vO,10),w.rXU(y.cV,8),w.rXU(y.j4,8),w.rXU(F.es),w.rXU(W,10),w.rXU(f),w.rXU(w.SKi),w.rXU(R.xb,8))};static#t=this.\u0275dir=w.FsC({type:ee,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(ae,Me){1&ae&&w.bIt("focus",function(){return Me._focusChanged(!0)})("blur",function(){return Me._focusChanged(!1)})("input",function(){return Me._onInput()}),2&ae&&(w.Mr5("id",Me.id)("disabled",Me.disabled)("required",Me.required),w.BMQ("name",Me.name||null)("readonly",Me.readonly&&!Me._isNativeSelect||null)("aria-invalid",Me.empty&&Me.required?null:Me.errorState)("aria-required",Me.required)("id",Me.id),w.AVh("mat-input-server",Me._isServer)("mat-mdc-form-field-textarea-control",Me._isInFormField&&Me._isTextarea)("mat-mdc-form-field-input-control",Me._isInFormField)("mdc-text-field__input",Me._isInFormField)("mat-mdc-native-select-inline",Me._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],standalone:!0,features:[w.Jv_([{provide:R.qT,useExisting:ee}]),w.OA$]})}return ee})(),J=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=w.$C({type:ee});static#i=this.\u0275inj=w.G2t({imports:[F.yE,R.RG,R.RG,T,F.yE]})}return ee})()},3902:(Qe,te,g)=>{"use strict";g.d(te,{Fg:()=>Ie,YE:()=>be,jt:()=>_e});var e=g(4438),t=g(4085),w=g(6860),S=g(6600),l=g(8359),x=g(7786),I=(g(1413),g(2318)),d=g(177),T=g(1997);g(8617),g(5024),g(7336),g(9417),g(6977);const $=["*"],Q=["unscopedContent"],J=["text"],ee=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],ie=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],N=new e.nKC("ListOption");let ne=(()=>{class He{constructor(yt){this._elementRef=yt}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"],standalone:!0})}return He})(),Ee=(()=>{class He{constructor(yt){this._elementRef=yt}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"],standalone:!0})}return He})(),ze=(()=>{class He{static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"],standalone:!0})}return He})(),qe=(()=>{class He{constructor(yt){this._listOption=yt}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(N,8))};static#t=this.\u0275dir=e.FsC({type:He,hostVars:4,hostBindings:function(Ye,rt){2&Ye&&e.AVh("mdc-list-item__start",rt._isAlignedAtStart())("mdc-list-item__end",!rt._isAlignedAtStart())},standalone:!0})}return He})(),Ke=(()=>{class He extends qe{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],standalone:!0,features:[e.Vt3]})}return He})(),se=(()=>{class He extends qe{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],standalone:!0,features:[e.Vt3]})}return He})();const X=new e.nKC("MAT_LIST_CONFIG");let me=(()=>{class He{constructor(){this._isNonInteractive=!0,this._disableRipple=!1,this._disabled=!1,this._defaultOptions=(0,e.WQX)(X,{optional:!0})}get disableRipple(){return this._disableRipple}set disableRipple(yt){this._disableRipple=(0,t.he)(yt)}get disabled(){return this._disabled}set disabled(yt){this._disabled=(0,t.he)(yt)}static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275dir=e.FsC({type:He,hostVars:1,hostBindings:function(Ye,rt){2&Ye&&e.BMQ("aria-disabled",rt.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}return He})(),ce=(()=>{class He{set lines(yt){this._explicitLines=(0,t.OE)(yt,null),this._updateItemLines(!1)}get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(yt){this._disableRipple=(0,t.he)(yt)}get disabled(){return this._disabled||!!this._listBase?.disabled}set disabled(yt){this._disabled=(0,t.he)(yt)}get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(yt,Ye,rt,Yt,Nt,Et){this._elementRef=yt,this._ngZone=Ye,this._listBase=rt,this._platform=Yt,this._explicitLines=null,this._disableRipple=!1,this._disabled=!1,this._subscriptions=new l.yU,this._rippleRenderer=null,this._hasUnscopedTextContent=!1,this.rippleConfig=Nt||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._noopAnimations="NoopAnimations"===Et,rt&&!rt._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new S.ug(this,this._ngZone,this._hostElement,this._platform),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,x.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(yt){if(!this._lines||!this._titles||!this._unscopedContent)return;yt&&this._checkDomForUnscopedTextContent();const Ye=this._explicitLines??this._inferLinesFromContent(),rt=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",Ye<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",Ye<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===Ye),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===Ye),this._hasUnscopedTextContent){const Yt=0===this._titles.length&&1===Ye;rt.classList.toggle("mdc-list-item__primary-text",Yt),rt.classList.toggle("mdc-list-item__secondary-text",!Yt)}else rt.classList.remove("mdc-list-item__primary-text"),rt.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let yt=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(yt+=1),yt}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(yt=>yt.nodeType!==yt.COMMENT_NODE).some(yt=>!(!yt.textContent||!yt.textContent.trim()))}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(me,8),e.rXU(w.OD),e.rXU(S.$E,8),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:He,contentQueries:function(Ye,rt,Yt){if(1&Ye&&(e.wni(Yt,Ke,4),e.wni(Yt,se,4)),2&Ye){let Nt;e.mGM(Nt=e.lsd())&&(rt._avatars=Nt),e.mGM(Nt=e.lsd())&&(rt._icons=Nt)}},hostVars:4,hostBindings:function(Ye,rt){2&Ye&&(e.BMQ("aria-disabled",rt.disabled)("disabled",rt._isButtonElement&&rt.disabled||null),e.AVh("mdc-list-item--disabled",rt.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}return He})(),_e=(()=>{class He extends me{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275cmp=e.VBU({type:He,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],standalone:!0,features:[e.Jv_([{provide:me,useExisting:He}]),e.Vt3,e.aNF],ngContentSelectors:$,decls:1,vars:0,template:function(Ye,rt){1&Ye&&(e.NAR(),e.SdG(0))},styles:['@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-list-divider::after{content:"";display:block;border-bottom-width:1px;border-bottom-style:solid}}.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item__wrapper{display:block}.mdc-list-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer}.mdc-list-item:focus{outline:none}.mdc-list-item.mdc-list-item--with-one-line{height:48px}.mdc-list-item.mdc-list-item--with-two-lines{height:64px}.mdc-list-item.mdc-list-item--with-three-lines{height:88px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--disabled,.mdc-list-item.mdc-list-item--non-interactive{cursor:auto}.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px double rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected:focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected:focus::before{border-color:CanvasText}}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__content[for]{pointer-events:none}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;line-height:normal}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item__overline-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:24px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start,.mdc-list-item--with-leading-avatar .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-avatar .mdc-list-item__start{border-radius:50%}.mdc-list-item--with-leading-icon.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-leading-icon .mdc-list-item__start[dir=rtl]{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-thumbnail.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-thumbnail.mdc-list-item,.mdc-list-item--with-leading-thumbnail.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-thumbnail .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-thumbnail .mdc-list-item__start,.mdc-list-item--with-leading-thumbnail .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-image.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-image.mdc-list-item,.mdc-list-item--with-leading-image.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-image .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-image .mdc-list-item__start,.mdc-list-item--with-leading-image .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-video.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-video.mdc-list-item,.mdc-list-item--with-leading-video.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-video .mdc-list-item__start{margin-left:0;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-video .mdc-list-item__start,.mdc-list-item--with-leading-video .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-checkbox.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-radio.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-radio.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-radio .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-radio .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-switch.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-switch.mdc-list-item,.mdc-list-item--with-leading-switch.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-switch .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-switch .mdc-list-item__start,.mdc-list-item--with-leading-switch .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item,.mdc-list-item--with-trailing-icon.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-icon .mdc-list-item__end,.mdc-list-item--with-trailing-icon .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item,.mdc-list-item--with-trailing-meta.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-trailing-meta .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);line-height:var(--mdc-typography-caption-line-height);font-weight:var(--mdc-typography-caption-font-weight);letter-spacing:var(--mdc-typography-caption-letter-spacing);text-decoration:var(--mdc-typography-caption-text-decoration);text-transform:var(--mdc-typography-caption-text-transform)}.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-radio.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-radio .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-radio .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-switch.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-switch.mdc-list-item,.mdc-list-item--with-trailing-switch.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-switch .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-switch .mdc-list-item__end,.mdc-list-item--with-trailing-switch .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-switch.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item{padding-left:16px;padding-right:16px}[dir=rtl] .mdc-list-item,.mdc-list-item[dir=rtl]{padding-left:16px;padding-right:16px}.mdc-list-group .mdc-deprecated-list{padding:0}.mdc-list-group__subheader{margin:calc((3rem - 1.5rem)/2) 16px}.mdc-list-divider{padding:0;background-clip:content-box}.mdc-list-divider.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset{padding-left:16px;padding-right:auto}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset,.mdc-list-divider.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:16px}.mdc-list-divider.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset{padding-left:auto;padding-right:16px}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset,.mdc-list-divider.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset[dir=rtl]{padding-left:16px;padding-right:auto}.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset{padding-left:0px;padding-right:auto}[dir=rtl] .mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:0px}[dir=rtl] .mdc-list-divider,.mdc-list-divider[dir=rtl]{padding:0}.mdc-list-item{background-color:var(--mdc-list-list-item-container-color)}.mdc-list-item.mdc-list-item--selected{background-color:var(--mdc-list-list-item-selected-container-color)}.mdc-list-item--with-one-line{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-avatar,.mdc-list-item--with-one-line.mdc-list-item--with-leading-icon,.mdc-list-item--with-one-line.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-one-line.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-one-line.mdc-list-item--with-leading-radio,.mdc-list-item--with-one-line.mdc-list-item--with-leading-switch{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-image,.mdc-list-item--with-one-line.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines.mdc-list-item--with-leading-avatar,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-icon,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-radio,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-switch,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-image,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-three-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mdc-list-list-item-one-line-container-height)}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mdc-list-list-item-two-line-container-height)}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mdc-list-list-item-three-line-container-height)}.mdc-list-item__primary-text{color:var(--mdc-list-list-item-label-text-color)}.mdc-list-item__primary-text{font-family:var(--mdc-list-list-item-label-text-font);line-height:var(--mdc-list-list-item-label-text-line-height);font-size:var(--mdc-list-list-item-label-text-size);font-weight:var(--mdc-list-list-item-label-text-weight);letter-spacing:var(--mdc-list-list-item-label-text-tracking)}.mdc-list-item__secondary-text{color:var(--mdc-list-list-item-supporting-text-color)}.mdc-list-item__secondary-text{font-family:var(--mdc-list-list-item-supporting-text-font);line-height:var(--mdc-list-list-item-supporting-text-line-height);font-size:var(--mdc-list-list-item-supporting-text-size);font-weight:var(--mdc-list-list-item-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-supporting-text-tracking)}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-leading-icon-color)}.mdc-list-item--with-leading-icon .mdc-list-item__start{width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start>i{font-size:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon{font-size:var(--mdc-list-list-item-leading-icon-size);width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon,.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mdc-list-list-item-leading-avatar-size);height:var(--mdc-list-list-item-leading-avatar-size)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-supporting-text-color)}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mdc-list-list-item-trailing-supporting-text-font);line-height:var(--mdc-list-list-item-trailing-supporting-text-line-height);font-size:var(--mdc-list-list-item-trailing-supporting-text-size);font-weight:var(--mdc-list-list-item-trailing-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-trailing-supporting-text-tracking)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-icon-color)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end>i{font-size:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon{font-size:var(--mdc-list-list-item-trailing-icon-size);width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon,.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-selected-trailing-icon-color)}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text,.mdc-list-item--disabled .mdc-list-item__overline-text{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-disabled-leading-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{opacity:var(--mdc-list-list-item-disabled-leading-icon-opacity)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-disabled-trailing-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{opacity:var(--mdc-list-list-item-disabled-trailing-icon-opacity)}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mdc-list-list-item-hover-label-text-color)}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mdc-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mdc-list-list-item-hover-trailing-icon-color)}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mdc-list-list-item-focus-label-text-color)}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-list-list-item-disabled-label-text-color)}.mdc-list-item:hover::before{background-color:var(--mdc-list-list-item-hover-state-layer-color);opacity:var(--mdc-list-list-item-hover-state-layer-opacity)}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mdc-list-list-item-disabled-state-layer-color);opacity:var(--mdc-list-list-item-disabled-state-layer-opacity)}.mdc-list-item:focus::before{background-color:var(--mdc-list-list-item-focus-state-layer-color);opacity:var(--mdc-list-list-item-focus-state-layer-opacity)}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mdc-list-list-item-leading-avatar-shape);background-color:var(--mdc-list-list-item-leading-avatar-color)}.mat-mdc-list-item-icon{font-size:var(--mdc-list-list-item-leading-icon-size)}.cdk-high-contrast-active a.mdc-list-item--activated::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 a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none}.mat-mdc-list-item>.mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-mdc-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:start}mat-action-list button::-moz-focus-inner{border:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-inline-start:var(--mat-list-list-item-leading-icon-start-space);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape);--mat-mdc-focus-indicator-border-radius:var(--mat-list-active-indicator-shape)}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color)}'],encapsulation:2,changeDetection:0})}return He})(),be=(()=>{class He extends ce{get activated(){return this._activated}set activated(yt){this._activated=(0,t.he)(yt)}constructor(yt,Ye,rt,Yt,Nt,Et){super(yt,Ye,rt,Yt,Nt,Et),this._activated=!1}_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(me,8),e.rXU(w.OD),e.rXU(S.$E,8),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:He,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(Ye,rt,Yt){if(1&Ye&&(e.wni(Yt,Ee,5),e.wni(Yt,ne,5),e.wni(Yt,ze,5)),2&Ye){let Nt;e.mGM(Nt=e.lsd())&&(rt._lines=Nt),e.mGM(Nt=e.lsd())&&(rt._titles=Nt),e.mGM(Nt=e.lsd())&&(rt._meta=Nt)}},viewQuery:function(Ye,rt){if(1&Ye&&(e.GBs(Q,5),e.GBs(J,5)),2&Ye){let Yt;e.mGM(Yt=e.lsd())&&(rt._unscopedContent=Yt.first),e.mGM(Yt=e.lsd())&&(rt._itemText=Yt.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:11,hostBindings:function(Ye,rt){2&Ye&&(e.BMQ("aria-current",rt._getAriaCurrent()),e.AVh("mdc-list-item--activated",rt.activated)("mdc-list-item--with-leading-avatar",0!==rt._avatars.length)("mdc-list-item--with-leading-icon",0!==rt._icons.length)("mdc-list-item--with-trailing-meta",0!==rt._meta.length)("_mat-animation-noopable",rt._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],standalone:!0,features:[e.Vt3,e.aNF],ngContentSelectors:ie,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-mdc-focus-indicator"]],template:function(Ye,rt){if(1&Ye){const Yt=e.RV6();e.NAR(ee),e.SdG(0),e.j41(1,"span",1),e.SdG(2,1),e.SdG(3,2),e.j41(4,"span",2,0),e.bIt("cdkObserveContent",function(){return e.eBV(Yt),e.Njj(rt._updateItemLines(!0))}),e.SdG(6,3),e.k0s()(),e.SdG(7,4),e.SdG(8,5),e.nrm(9,"div",3)}},dependencies:[I.Wv],encapsulation:2,changeDetection:0})}return He})(),Ie=(()=>{class He{static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275mod=e.$C({type:He});static#i=this.\u0275inj=e.G2t({imports:[I.w5,d.MD,S.yE,S.pZ,S.O5,T.w]})}return He})()},9115:(Qe,te,g)=>{"use strict";g.d(te,{Cn:()=>fe,Cp:()=>ce,fb:()=>m,kk:()=>ze});var e=g(4438),t=g(8617),w=g(7336),S=g(1413),l=g(7786),x=g(8359),f=g(7673),I=g(5007),d=g(9172),T=g(5558),y=g(6697),F=g(6977),R=g(5964),z=g(5335),W=g(177),$=g(6600),j=g(6939),Q=g(9969),J=g(8203),ee=g(6969),ie=g(6860),ge=g(5542);const ae=["mat-menu-item",""],Me=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],Te=["mat-icon, [matMenuItemIcon]","*"];function de(ke,mt){1&ke&&(e.qSk(),e.j41(0,"svg",2),e.nrm(1,"polygon",3),e.k0s())}const D=["*"];function n(ke,mt){if(1&ke){const _e=e.RV6();e.j41(0,"div",0),e.bIt("keydown",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._handleKeydown(pe))})("click",function(){e.eBV(_e);const pe=e.XpG();return e.Njj(pe.closed.emit("click"))})("@transformMenu.start",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._onAnimationStart(pe))})("@transformMenu.done",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._onAnimationDone(pe))}),e.j41(1,"div",1),e.SdG(2),e.k0s()()}if(2&ke){const _e=e.XpG();e.HbH(_e._classList),e.Y8G("id",_e.panelId)("@transformMenu",_e._panelAnimationState),e.BMQ("aria-label",_e.ariaLabel||null)("aria-labelledby",_e.ariaLabelledby||null)("aria-describedby",_e.ariaDescribedby||null)}}const c=new e.nKC("MAT_MENU_PANEL");let m=(()=>{class ke{constructor(_e,be,pe,Ze,_t){this._elementRef=_e,this._document=be,this._focusMonitor=pe,this._parentMenu=Ze,this._changeDetectorRef=_t,this.role="menuitem",this.disabled=!1,this.disableRipple=!1,this._hovered=new S.B,this._focused=new S.B,this._highlighted=!1,this._triggersSubmenu=!1,Ze?.addItem?.(this)}focus(_e,be){this._focusMonitor&&_e?this._focusMonitor.focusVia(this._getHostElement(),_e,be):this._getHostElement().focus(be),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(_e){this.disabled&&(_e.preventDefault(),_e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const _e=this._elementRef.nativeElement.cloneNode(!0),be=_e.querySelectorAll("mat-icon, .material-icons");for(let pe=0;pe enter",(0,Q.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,Q.iF)({opacity:1,transform:"scale(1)"}))),(0,Q.kY)("* => void",(0,Q.i0)("100ms 25ms linear",(0,Q.iF)({opacity:0})))]),fadeInItems:(0,Q.hZ)("fadeInItems",[(0,Q.wk)("showing",(0,Q.iF)({opacity:1})),(0,Q.kY)("void => *",[(0,Q.iF)({opacity:0}),(0,Q.i0)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let N=0;const ne=new e.nKC("mat-menu-default-options",{providedIn:"root",factory:function Ee(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let ze=(()=>{class ke{get xPosition(){return this._xPosition}set xPosition(_e){this._xPosition=_e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(_e){this._yPosition=_e,this.setPositionClasses()}set panelClass(_e){const be=this._previousPanelClass,pe={...this._classList};be&&be.length&&be.split(" ").forEach(Ze=>{pe[Ze]=!1}),this._previousPanelClass=_e,_e&&_e.length&&(_e.split(" ").forEach(Ze=>{pe[Ze]=!0}),this._elementRef.nativeElement.className=""),this._classList=pe}get classList(){return this.panelClass}set classList(_e){this.panelClass=_e}constructor(_e,be,pe,Ze){this._elementRef=_e,this._ngZone=be,this._changeDetectorRef=Ze,this._elevationPrefix="mat-elevation-z",this._baseElevation=8,this._directDescendantItems=new e.rOR,this._classList={},this._panelAnimationState="void",this._animationDone=new S.B,this.closed=new e.bkB,this.close=this.closed,this.panelId="mat-menu-panel-"+N++,this.overlayPanelClass=pe.overlayPanelClass||"",this._xPosition=pe.xPosition,this._yPosition=pe.yPosition,this.backdropClass=pe.backdropClass,this.overlapTrigger=pe.overlapTrigger,this.hasBackdrop=pe.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Bu(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,d.Z)(this._directDescendantItems),(0,T.n)(_e=>(0,l.h)(..._e.map(be=>be._focused)))).subscribe(_e=>this._keyManager.updateActiveItem(_e)),this._directDescendantItems.changes.subscribe(_e=>{const be=this._keyManager;if("enter"===this._panelAnimationState&&be.activeItem?._hasFocus()){const pe=_e.toArray(),Ze=Math.max(0,Math.min(pe.length-1,be.activeItemIndex||0));pe[Ze]&&!pe[Ze].disabled?be.setActiveItem(Ze):be.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusSubscription?.unsubscribe()}_hovered(){return this._directDescendantItems.changes.pipe((0,d.Z)(this._directDescendantItems),(0,T.n)(be=>(0,l.h)(...be.map(pe=>pe._hovered))))}addItem(_e){}removeItem(_e){}_handleKeydown(_e){const be=_e.keyCode,pe=this._keyManager;switch(be){case w._f:(0,w.rp)(_e)||(_e.preventDefault(),this.closed.emit("keydown"));break;case w.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case w.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(be===w.i7||be===w.n6)&&pe.setFocusOrigin("keyboard"),void pe.onKeydown(_e)}_e.stopPropagation()}focusFirstItem(_e="program"){this._firstItemFocusSubscription?.unsubscribe(),this._firstItemFocusSubscription=this._ngZone.onStable.pipe((0,y.s)(1)).subscribe(()=>{let be=null;if(this._directDescendantItems.length&&(be=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!be||!be.contains(document.activeElement)){const pe=this._keyManager;pe.setFocusOrigin(_e).setFirstItemActive(),!pe.activeItem&&be&&be.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(_e){const be=Math.min(this._baseElevation+_e,24),pe=`${this._elevationPrefix}${be}`,Ze=Object.keys(this._classList).find(_t=>_t.startsWith(this._elevationPrefix));if(!Ze||Ze===this._previousElevation){const _t={...this._classList};this._previousElevation&&(_t[this._previousElevation]=!1),_t[pe]=!0,this._previousElevation=pe,this._classList=_t}}setPositionClasses(_e=this.xPosition,be=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===_e,"mat-menu-after":"after"===_e,"mat-menu-above":"above"===be,"mat-menu-below":"below"===be},this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(_e){this._animationDone.next(_e),this._isAnimating=!1}_onAnimationStart(_e){this._isAnimating=!0,"enter"===_e.toState&&0===this._keyManager.activeItemIndex&&(_e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,d.Z)(this._allItems)).subscribe(_e=>{this._directDescendantItems.reset(_e.filter(be=>be._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}static#e=this.\u0275fac=function(be){return new(be||ke)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(ne),e.rXU(e.gRc))};static#t=this.\u0275cmp=e.VBU({type:ke,selectors:[["mat-menu"]],contentQueries:function(be,pe,Ze){if(1&be&&(e.wni(Ze,L,5),e.wni(Ze,m,5),e.wni(Ze,m,4)),2&be){let _t;e.mGM(_t=e.lsd())&&(pe.lazyContent=_t.first),e.mGM(_t=e.lsd())&&(pe._allItems=_t),e.mGM(_t=e.lsd())&&(pe.items=_t)}},viewQuery:function(be,pe){if(1&be&&e.GBs(e.C4Q,5),2&be){let Ze;e.mGM(Ze=e.lsd())&&(pe.templateRef=Ze.first)}},hostVars:3,hostBindings:function(be,pe){2&be&&e.BMQ("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},inputs:{backdropClass:"backdropClass",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:[2,"overlapTrigger","overlapTrigger",e.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",_e=>null==_e?null:(0,e.L39)(_e)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:ke}]),e.GFd,e.aNF],ngContentSelectors:D,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel","mat-mdc-elevation-specific",3,"keydown","click","id"],[1,"mat-mdc-menu-content"]],template:function(be,pe){1&be&&(e.NAR(),e.DNE(0,n,3,7,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;list-style-type:none}.mat-mdc-menu-content:focus{outline:none}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;flex:1;white-space:normal;font-family:var(--mat-menu-item-label-text-font);line-height:var(--mat-menu-item-label-text-line-height);font-size:var(--mat-menu-item-label-text-size);letter-spacing:var(--mat-menu-item-label-text-tracking);font-weight:var(--mat-menu-item-label-text-weight)}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;outline:0;border-radius:var(--mat-menu-container-shape);background-color:var(--mat-menu-container-color);will-change:transform,opacity}.mat-mdc-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-mdc-menu-panel{outline:solid 1px}.mat-divider{color:var(--mat-menu-divider-color);margin-bottom:var(--mat-menu-divider-bottom-spacing);margin-top:var(--mat-menu-divider-top-spacing)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:var(--mat-menu-item-leading-spacing);padding-right:var(--mat-menu-item-trailing-spacing);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;align-items:center;min-height:48px}.mat-mdc-menu-item:focus{outline:none}[dir=rtl] .mat-mdc-menu-item,.mat-mdc-menu-item[dir=rtl]{padding-left:var(--mat-menu-item-trailing-spacing);padding-right:var(--mat-menu-item-leading-spacing)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing);padding-right:var(--mat-menu-item-with-icon-trailing-spacing)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]),.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon])[dir=rtl]{padding-left:var(--mat-menu-item-with-icon-trailing-spacing);padding-right:var(--mat-menu-item-with-icon-leading-spacing)}.mat-mdc-menu-item::-moz-focus-inner{border:0}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color)}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color)}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing);height:var(--mat-menu-item-icon-size);width:var(--mat-menu-item-icon-size)}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:var(--mat-menu-item-spacing)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color)}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color)}.cdk-high-contrast-active .mat-mdc-menu-item{margin-top:1px}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1)}.cdk-high-contrast-active .mat-mdc-menu-submenu-icon{fill:CanvasText}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}'],encapsulation:2,data:{animation:[r.transformMenu,r.fadeInItems]},changeDetection:0})}return ke})();const qe=new e.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const ke=(0,e.WQX)(ee.hJ);return()=>ke.scrollStrategies.reposition()}}),se={provide:qe,deps:[ee.hJ],useFactory:function Ke(ke){return()=>ke.scrollStrategies.reposition()}},X=(0,ie.BQ)({passive:!0});let ce=(()=>{class ke{get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(_e){this.menu=_e}get menu(){return this._menu}set menu(_e){_e!==this._menu&&(this._menu=_e,this._menuCloseSubscription.unsubscribe(),_e&&(this._menuCloseSubscription=_e.close.subscribe(be=>{this._destroyMenu(be),("click"===be||"tab"===be)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(be)})),this._menuItemInstance?._setTriggersSubmenu(this.triggersSubmenu()))}constructor(_e,be,pe,Ze,_t,at,pt,Xt,ye){this._overlay=_e,this._element=be,this._viewContainerRef=pe,this._menuItemInstance=at,this._dir=pt,this._focusMonitor=Xt,this._ngZone=ye,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=x.yU.EMPTY,this._hoverSubscription=x.yU.EMPTY,this._menuCloseSubscription=x.yU.EMPTY,this._changeDetectorRef=(0,e.WQX)(e.gRc),this._handleTouchStart=ue=>{(0,t.w6)(ue)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new e.bkB,this.onMenuOpen=this.menuOpened,this.menuClosed=new e.bkB,this.onMenuClose=this.menuClosed,this._scrollStrategy=Ze,this._parentMaterialMenu=_t instanceof ze?_t:void 0,be.nativeElement.addEventListener("touchstart",this._handleTouchStart,X)}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,X),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&&this.menu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const _e=this.menu;if(this._menuOpen||!_e)return;const be=this._createOverlay(_e),pe=be.getConfig(),Ze=pe.positionStrategy;this._setPosition(_e,Ze),pe.hasBackdrop=null==_e.hasBackdrop?!this.triggersSubmenu():_e.hasBackdrop,be.attach(this._getPortal(_e)),_e.lazyContent&&_e.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(_e),_e instanceof ze&&(_e._startAnimation(),_e._directDescendantItems.changes.pipe((0,F.Q)(_e.close)).subscribe(()=>{Ze.withLockedPosition(!1).reapplyLastPosition(),Ze.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(_e,be){this._focusMonitor&&_e?this._focusMonitor.focusVia(this._element,_e,be):this._element.nativeElement.focus(be)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(_e){if(!this._overlayRef||!this.menuOpen)return;const be=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===_e||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,be instanceof ze?(be._resetAnimation(),be.lazyContent?be._animationDone.pipe((0,R.p)(pe=>"void"===pe.toState),(0,y.s)(1),(0,F.Q)(be.lazyContent._attached)).subscribe({next:()=>be.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),be?.lazyContent?.detach())}_initMenu(_e){_e.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,_e.direction=this.dir,this._setMenuElevation(_e),_e.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(_e){if(_e.setElevation){let be=0,pe=_e.parentMenu;for(;pe;)be++,pe=pe.parentMenu;_e.setElevation(be)}}_setIsMenuOpen(_e){_e!==this._menuOpen&&(this._menuOpen=_e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(_e),this._changeDetectorRef.markForCheck())}_createOverlay(_e){if(!this._overlayRef){const be=this._getOverlayConfig(_e);this._subscribeToPositions(_e,be.positionStrategy),this._overlayRef=this._overlay.create(be),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(_e){return new ee.rR({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:_e.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:_e.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(_e,be){_e.setPositionClasses&&be.positionChanges.subscribe(pe=>{const Ze="start"===pe.connectionPair.overlayX?"after":"before",_t="top"===pe.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>_e.setPositionClasses(Ze,_t)):_e.setPositionClasses(Ze,_t)})}_setPosition(_e,be){let[pe,Ze]="before"===_e.xPosition?["end","start"]:["start","end"],[_t,at]="above"===_e.yPosition?["bottom","top"]:["top","bottom"],[pt,Xt]=[_t,at],[ye,ue]=[pe,Ze],Ie=0;if(this.triggersSubmenu()){if(ue=pe="before"===_e.xPosition?"start":"end",Ze=ye="end"===pe?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const He=this._parentMaterialMenu.items.first;this._parentInnerPadding=He?He._getHostElement().offsetTop:0}Ie="bottom"===_t?this._parentInnerPadding:-this._parentInnerPadding}}else _e.overlapTrigger||(pt="top"===_t?"bottom":"top",Xt="top"===at?"bottom":"top");be.withPositions([{originX:pe,originY:pt,overlayX:ye,overlayY:_t,offsetY:Ie},{originX:Ze,originY:pt,overlayX:ue,overlayY:_t,offsetY:Ie},{originX:pe,originY:Xt,overlayX:ye,overlayY:at,offsetY:-Ie},{originX:Ze,originY:Xt,overlayX:ue,overlayY:at,offsetY:-Ie}])}_menuClosingActions(){const _e=this._overlayRef.backdropClick(),be=this._overlayRef.detachments(),pe=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,f.of)(),Ze=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,R.p)(_t=>_t!==this._menuItemInstance),(0,R.p)(()=>this._menuOpen)):(0,f.of)();return(0,l.h)(_e,pe,Ze,be)}_handleMousedown(_e){(0,t._G)(_e)||(this._openedBy=0===_e.button?"mouse":void 0,this.triggersSubmenu()&&_e.preventDefault())}_handleKeydown(_e){const be=_e.keyCode;(be===w.Fm||be===w.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(be===w.LE&&"ltr"===this.dir||be===w.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(_e){this.triggersSubmenu()?(_e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,R.p)(_e=>_e===this._menuItemInstance&&!_e.disabled),(0,z.c)(0,I.$)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof ze&&this.menu._isAnimating?this.menu._animationDone.pipe((0,y.s)(1),(0,z.c)(0,I.$),(0,F.Q)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(_e){return(!this._portal||this._portal.templateRef!==_e.templateRef)&&(this._portal=new j.VA(_e.templateRef,this._viewContainerRef)),this._portal}static#e=this.\u0275fac=function(be){return new(be||ke)(e.rXU(ee.hJ),e.rXU(e.aKT),e.rXU(e.c1b),e.rXU(qe),e.rXU(c,8),e.rXU(m,10),e.rXU(J.dS,8),e.rXU(t.FN),e.rXU(e.SKi))};static#t=this.\u0275dir=e.FsC({type:ke,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(be,pe){1&be&&e.bIt("click",function(_t){return pe._handleClick(_t)})("mousedown",function(_t){return pe._handleMousedown(_t)})("keydown",function(_t){return pe._handleKeydown(_t)}),2&be&&e.BMQ("aria-haspopup",pe.menu?"menu":null)("aria-expanded",pe.menuOpen)("aria-controls",pe.menuOpen?pe.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:[0,"mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:[0,"matMenuTriggerFor","menu"],menuData:[0,"matMenuTriggerData","menuData"],restoreFocus:[0,"matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"},exportAs:["matMenuTrigger"],standalone:!0})}return ke})(),fe=(()=>{class ke{static#e=this.\u0275fac=function(be){return new(be||ke)};static#t=this.\u0275mod=e.$C({type:ke});static#i=this.\u0275inj=e.G2t({providers:[se],imports:[W.MD,$.pZ,$.yE,ee.z_,ge.Gj,$.yE]})}return ke})()},6695:(Qe,te,g)=>{"use strict";g.d(te,{Ou:()=>ae,iy:()=>ge,xX:()=>W});var e=g(4438),t=g(1413),w=g(2771),S=g(8834),l=g(2798),x=g(4823),f=g(6600),I=g(6467);function d(Me,Te){if(1&Me&&(e.j41(0,"mat-option",16),e.EFF(1),e.k0s()),2&Me){const de=Te.$implicit;e.Y8G("value",de),e.R7$(),e.SpI(" ",de," ")}}function T(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"mat-form-field",13)(1,"mat-select",15),e.bIt("selectionChange",function(n){e.eBV(de);const c=e.XpG(2);return e.Njj(c._changePageSize(n.value))}),e.Z7z(2,d,2,2,"mat-option",16,e.fX1),e.k0s()()}if(2&Me){const de=e.XpG(2);e.Y8G("appearance",de._formFieldAppearance)("color",de.color),e.R7$(),e.Y8G("value",de.pageSize)("disabled",de.disabled)("aria-labelledby",de._pageSizeLabelId)("panelClass",de.selectConfig.panelClass||"")("disableOptionCentering",de.selectConfig.disableOptionCentering),e.R7$(),e.Dyx(de._displayedPageSizeOptions)}}function y(Me,Te){if(1&Me&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&Me){const de=e.XpG(2);e.R7$(),e.JRh(de.pageSize)}}function F(Me,Te){if(1&Me&&(e.j41(0,"div",2)(1,"div",12),e.EFF(2),e.k0s(),e.DNE(3,T,4,7,"mat-form-field",13)(4,y,2,1,"div",14),e.k0s()),2&Me){const de=e.XpG();e.R7$(),e.BMQ("id",de._pageSizeLabelId),e.R7$(),e.SpI(" ",de._intl.itemsPerPageLabel," "),e.R7$(),e.vxM(de._displayedPageSizeOptions.length>1?3:-1),e.R7$(),e.vxM(de._displayedPageSizeOptions.length<=1?4:-1)}}function R(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){e.eBV(de);const n=e.XpG();return e.Njj(n.firstPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",18),e.k0s()()}if(2&Me){const de=e.XpG();e.Y8G("matTooltip",de._intl.firstPageLabel)("matTooltipDisabled",de._previousButtonsDisabled())("matTooltipPosition","above")("disabled",de._previousButtonsDisabled()),e.BMQ("aria-label",de._intl.firstPageLabel)}}function z(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"button",19),e.bIt("click",function(){e.eBV(de);const n=e.XpG();return e.Njj(n.lastPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",20),e.k0s()()}if(2&Me){const de=e.XpG();e.Y8G("matTooltip",de._intl.lastPageLabel)("matTooltipDisabled",de._nextButtonsDisabled())("matTooltipPosition","above")("disabled",de._nextButtonsDisabled()),e.BMQ("aria-label",de._intl.lastPageLabel)}}let W=(()=>{class Me{constructor(){this.changes=new t.B,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(de,D,n)=>{if(0==n||0==D)return`0 of ${n}`;const c=de*D;return`${c+1} \u2013 ${c<(n=Math.max(n,0))?Math.min(c+D,n):c+D} of ${n}`}}static#e=this.\u0275fac=function(D){return new(D||Me)};static#t=this.\u0275prov=e.jDH({token:Me,factory:Me.\u0275fac,providedIn:"root"})}return Me})();const j={provide:W,deps:[[new e.Xx1,new e.kdw,W]],useFactory:function $(Me){return Me||new W}},ee=new e.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let ie=0,ge=(()=>{class Me{get pageIndex(){return this._pageIndex}set pageIndex(de){this._pageIndex=Math.max(de||0,0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(de){this._length=de||0,this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(de){this._pageSize=Math.max(de||0,0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(de){this._pageSizeOptions=(de||[]).map(D=>(0,e.Udg)(D,0)),this._updateDisplayedPageSizeOptions()}constructor(de,D,n){if(this._intl=de,this._changeDetectorRef=D,this._pageSizeLabelId="mat-paginator-page-size-label-"+ie++,this._isInitialized=!1,this._initializedStream=new w.m(1),this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this.hidePageSize=!1,this.showFirstLastButtons=!1,this.selectConfig={},this.disabled=!1,this.page=new e.bkB,this.initialized=this._initializedStream,this._intlChanges=de.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),n){const{pageSize:c,pageSizeOptions:m,hidePageSize:h,showFirstLastButtons:C}=n;null!=c&&(this._pageSize=c),null!=m&&(this._pageSizeOptions=m),null!=h&&(this.hidePageSize=h),null!=C&&(this.showFirstLastButtons=C)}this._formFieldAppearance=n?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const de=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(de)}previousPage(){if(!this.hasPreviousPage())return;const de=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(de)}firstPage(){if(!this.hasPreviousPage())return;const de=this.pageIndex;this.pageIndex=0,this._emitPageEvent(de)}lastPage(){if(!this.hasNextPage())return;const de=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(de)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const de=this.getNumberOfPages()-1;return this.pageIndexde-D),this._changeDetectorRef.markForCheck())}_emitPageEvent(de){this.page.emit({previousPageIndex:de,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}static#e=this.\u0275fac=function(D){return new(D||Me)(e.rXU(W),e.rXU(e.gRc),e.rXU(ee,8))};static#t=this.\u0275cmp=e.VBU({type:Me,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",e.Udg],length:[2,"length","length",e.Udg],pageSize:[2,"pageSize","pageSize",e.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",e.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",e.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",e.L39]},outputs:{page:"page"},exportAs:["matPaginator"],standalone:!0,features:[e.GFd,e.aNF],decls:14,vars:14,consts:[[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-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-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],[1,"mat-mdc-paginator-page-size-label"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],[1,"mat-mdc-paginator-page-size-value"],["hideSingleSelectionIndicator","",3,"selectionChange","value","disabled","aria-labelledby","panelClass","disableOptionCentering"],[3,"value"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(D,n){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,F,5,4,"div",2),e.j41(3,"div",3)(4,"div",4),e.EFF(5),e.k0s(),e.DNE(6,R,3,5,"button",5),e.j41(7,"button",6),e.bIt("click",function(){return n.previousPage()}),e.qSk(),e.j41(8,"svg",7),e.nrm(9,"path",8),e.k0s()(),e.joV(),e.j41(10,"button",9),e.bIt("click",function(){return n.nextPage()}),e.qSk(),e.j41(11,"svg",7),e.nrm(12,"path",10),e.k0s()(),e.DNE(13,z,3,5,"button",11),e.k0s()()()),2&D&&(e.R7$(2),e.vxM(n.hidePageSize?-1:2),e.R7$(3),e.SpI(" ",n._intl.getRangeLabel(n.pageIndex,n.pageSize,n.length)," "),e.R7$(),e.vxM(n.showFirstLastButtons?6:-1),e.R7$(),e.Y8G("matTooltip",n._intl.previousPageLabel)("matTooltipDisabled",n._previousButtonsDisabled())("matTooltipPosition","above")("disabled",n._previousButtonsDisabled()),e.BMQ("aria-label",n._intl.previousPageLabel),e.R7$(3),e.Y8G("matTooltip",n._intl.nextPageLabel)("matTooltipDisabled",n._nextButtonsDisabled())("matTooltipPosition","above")("disabled",n._nextButtonsDisabled()),e.BMQ("aria-label",n._intl.nextPageLabel),e.R7$(3),e.vxM(n.showFirstLastButtons?13:-1))},dependencies:[I.rl,l.VO,f.wT,S.iY,x.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color);background-color:var(--mat-paginator-container-background-color);font-family:var(--mat-paginator-container-text-font);line-height:var(--mat-paginator-container-text-line-height);font-size:var(--mat-paginator-container-text-size);font-weight:var(--mat-paginator-container-text-weight);letter-spacing:var(--mat-paginator-container-text-tracking);--mat-form-field-container-height:var(--mat-paginator-form-field-container-height);--mat-form-field-container-vertical-padding:var(--mat-paginator-form-field-container-vertical-padding)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size)}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap;width:100%;min-height:var(--mat-paginator-container-size)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:84px}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color)}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,.cdk-high-contrast-active .mat-mdc-paginator-icon{fill:currentColor;fill:CanvasText}.cdk-high-contrast-active .mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return Me})(),ae=(()=>{class Me{static#e=this.\u0275fac=function(D){return new(D||Me)};static#t=this.\u0275mod=e.$C({type:Me});static#i=this.\u0275inj=e.G2t({providers:[j],imports:[S.Hl,l.Ve,x.uc,ge]})}return Me})()},7575:(Qe,te,g)=>{"use strict";g.d(te,{HM:()=>I,PO:()=>T});var e=g(4438),w=(g(177),g(6600));function S(y,F){1&y&&e.nrm(0,"div",2)}const l=new e.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let I=(()=>{class y{constructor(R,z,W,$,j){this._elementRef=R,this._ngZone=z,this._changeDetectorRef=W,this._animationMode=$,this._isNoopAnimation=!1,this._defaultColor="primary",this._value=0,this._bufferValue=0,this.animationEnd=new e.bkB,this._mode="determinate",this._transitionendHandler=Q=>{0===this.animationEnd.observers.length||!Q.target||!Q.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))},this._isNoopAnimation="NoopAnimations"===$,j&&(j.color&&(this.color=this._defaultColor=j.color),this.mode=j.mode||this.mode)}get color(){return this._color||this._defaultColor}set color(R){this._color=R}get value(){return this._value}set value(R){this._value=d(R||0),this._changeDetectorRef.markForCheck()}get bufferValue(){return this._bufferValue||0}set bufferValue(R){this._bufferValue=d(R||0),this._changeDetectorRef.markForCheck()}get mode(){return this._mode}set mode(R){this._mode=R,this._changeDetectorRef.markForCheck()}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("transitionend",this._transitionendHandler)})}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._transitionendHandler)}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.bc$,8),e.rXU(l,8))};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:10,hostBindings:function(z,W){2&z&&(e.BMQ("aria-valuenow",W._isIndeterminate()?null:W.value)("mode",W.mode),e.HbH("mat-"+W.color),e.AVh("_mat-animation-noopable",W._isNoopAnimation)("mdc-linear-progress--animation-ready",!W._isNoopAnimation)("mdc-linear-progress--indeterminate",W._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",e.Udg],bufferValue:[2,"bufferValue","bufferValue",e.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],standalone:!0,features:[e.GFd,e.aNF],decls:7,vars:5,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(z,W){1&z&&(e.j41(0,"div",0),e.nrm(1,"div",1),e.DNE(2,S,1,0,"div",2),e.k0s(),e.j41(3,"div",3),e.nrm(4,"span",4),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",4),e.k0s()),2&z&&(e.R7$(),e.xc7("flex-basis",W._getBufferBarFlexBasis()),e.R7$(),e.vxM("buffer"===W.mode?2:-1),e.R7$(),e.xc7("transform",W._getPrimaryBarTransform()))},styles:["@keyframes mdc-linear-progress-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(var(--mdc-linear-progress-primary-half))}100%{transform:translateX(var(--mdc-linear-progress-primary-full))}}@keyframes mdc-linear-progress-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 mdc-linear-progress-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(var(--mdc-linear-progress-secondary-quarter))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full))}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{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(var(--mdc-linear-progress-primary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-primary-full-neg))}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{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(var(--mdc-linear-progress-secondary-quarter-neg))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full-neg))}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}@media screen and (forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden}.mdc-linear-progress__buffer-dots{background-repeat:repeat-x;flex:auto;transform:rotate(180deg);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");animation:mdc-linear-progress-buffering 250ms infinite linear}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale 2s infinite linear}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar{right:0;-webkit-transform-origin:center right;transform-origin:center right}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse 250ms infinite linear;transform:rotate(0)}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}.mdc-linear-progress--closed{opacity:0}.mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots{animation:none}.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner{animation:none}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height) * -2.5))}}.mdc-linear-progress__bar-inner{border-color:var(--mdc-linear-progress-active-indicator-color)}.mdc-linear-progress__buffer-dots{background-color:var(--mdc-linear-progress-track-color)}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244, 67, 54, 0.25)'/%3E%3C/svg%3E\")}}.mdc-linear-progress__buffer-bar{background-color:var(--mdc-linear-progress-track-color)}.mdc-linear-progress{height:max(var(--mdc-linear-progress-track-height), var(--mdc-linear-progress-active-indicator-height))}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress{height:4px}}.mdc-linear-progress__bar{height:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__bar-inner{border-top-width:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__buffer{height:var(--mdc-linear-progress-track-height)}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-size:10px var(--mdc-linear-progress-track-height)}}.mdc-linear-progress__buffer{border-radius:var(--mdc-linear-progress-track-shape)}.mat-mdc-progress-bar{display:block;text-align:start;--mdc-linear-progress-primary-half: 83.67142%;--mdc-linear-progress-primary-full: 200.611057%;--mdc-linear-progress-secondary-quarter: 37.651913%;--mdc-linear-progress-secondary-half: 84.386165%;--mdc-linear-progress-secondary-full: 160.277782%;--mdc-linear-progress-primary-half-neg: -83.67142%;--mdc-linear-progress-primary-full-neg: -200.611057%;--mdc-linear-progress-secondary-quarter-neg: -37.651913%;--mdc-linear-progress-secondary-half-neg: -84.386165%;--mdc-linear-progress-secondary-full-neg: -160.277782%}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}"],encapsulation:2,changeDetection:0})}return y})();function d(y,F=0,R=100){return Math.max(F,Math.min(R,y))}let T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[w.yE]})}return y})()},9183:(Qe,te,g)=>{"use strict";g.d(te,{D6:()=>F,LG:()=>T});var e=g(4438),t=g(177),w=g(6600);const S=["determinateSpinner"];function l(R,z){if(1&R&&(e.qSk(),e.j41(0,"svg",11),e.nrm(1,"circle",12),e.k0s()),2&R){const W=e.XpG();e.BMQ("viewBox",W._viewBox()),e.R7$(),e.xc7("stroke-dasharray",W._strokeCircumference(),"px")("stroke-dashoffset",W._strokeCircumference()/2,"px")("stroke-width",W._circleStrokeWidth(),"%"),e.BMQ("r",W._circleRadius())}}const x=new e.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function f(){return{diameter:I}}}),I=100;let T=(()=>{class R{get color(){return this._color||this._defaultColor}set color(W){this._color=W}constructor(W,$,j){this._elementRef=W,this._defaultColor="primary",this._value=0,this._diameter=I,this._noopAnimations="NoopAnimations"===$&&!!j&&!j._forceAnimations,this.mode="mat-spinner"===W.nativeElement.nodeName.toLowerCase()?"indeterminate":"determinate",j&&(j.color&&(this.color=this._defaultColor=j.color),j.diameter&&(this.diameter=j.diameter),j.strokeWidth&&(this.strokeWidth=j.strokeWidth))}get value(){return"determinate"===this.mode?this._value:0}set value(W){this._value=Math.max(0,Math.min(100,W||0))}get diameter(){return this._diameter}set diameter(W){this._diameter=W||0}get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(W){this._strokeWidth=W||0}_circleRadius(){return(this.diameter-10)/2}_viewBox(){const W=2*this._circleRadius()+this.strokeWidth;return`0 0 ${W} ${W}`}_strokeCircumference(){return 2*Math.PI*this._circleRadius()}_strokeDashOffset(){return"determinate"===this.mode?this._strokeCircumference()*(100-this._value)/100:null}_circleStrokeWidth(){return this.strokeWidth/this.diameter*100}static#e=this.\u0275fac=function($){return new($||R)(e.rXU(e.aKT),e.rXU(e.bc$,8),e.rXU(x))};static#t=this.\u0275cmp=e.VBU({type:R,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function($,j){if(1&$&&e.GBs(S,5),2&$){let Q;e.mGM(Q=e.lsd())&&(j._determinateCircle=Q.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function($,j){2&$&&(e.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===j.mode?j.value:null)("mode",j.mode),e.HbH("mat-"+j.color),e.xc7("width",j.diameter,"px")("height",j.diameter,"px")("--mdc-circular-progress-size",j.diameter+"px")("--mdc-circular-progress-active-indicator-width",j.diameter+"px"),e.AVh("_mat-animation-noopable",j._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===j.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",e.Udg],diameter:[2,"diameter","diameter",e.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",e.Udg]},exportAs:["matProgressSpinner"],standalone:!0,features:[e.GFd,e.aNF],decls:14,vars:11,consts:[["circle",""],["determinateSpinner",""],["aria-hidden","true",1,"mdc-circular-progress__determinate-container"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__determinate-circle-graphic"],["cx","50%","cy","50%",1,"mdc-circular-progress__determinate-circle"],["aria-hidden","true",1,"mdc-circular-progress__indeterminate-container"],[1,"mdc-circular-progress__spinner-layer"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-left"],[3,"ngTemplateOutlet"],[1,"mdc-circular-progress__gap-patch"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-right"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__indeterminate-circle-graphic"],["cx","50%","cy","50%"]],template:function($,j){if(1&$&&(e.DNE(0,l,2,8,"ng-template",null,0,e.C5r),e.j41(2,"div",2,1),e.qSk(),e.j41(4,"svg",3),e.nrm(5,"circle",4),e.k0s()(),e.joV(),e.j41(6,"div",5)(7,"div",6)(8,"div",7),e.eu8(9,8),e.k0s(),e.j41(10,"div",9),e.eu8(11,8),e.k0s(),e.j41(12,"div",10),e.eu8(13,8),e.k0s()()()),2&$){const Q=e.sdS(1);e.R7$(4),e.BMQ("viewBox",j._viewBox()),e.R7$(),e.xc7("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeDashOffset(),"px")("stroke-width",j._circleStrokeWidth(),"%"),e.BMQ("r",j._circleRadius()),e.R7$(4),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q)}},dependencies:[t.T3],styles:["@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-color-1-fade-in-out{from{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes mdc-circular-progress-color-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}.mdc-circular-progress{display:inline-flex;position:relative;direction:ltr;line-height:0;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{animation:mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-1{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-2{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-3{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-4{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--closed{opacity:0}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mdc-circular-progress-active-indicator-color)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner circle{stroke-width:var(--mdc-circular-progress-active-indicator-width)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-1 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-2 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-3 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-4 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner .mdc-circular-progress{width:var(--mdc-circular-progress-size) !important;height:var(--mdc-circular-progress-size) !important}.mat-mdc-progress-spinner{display:block;overflow:hidden;line-height:0}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}"],encapsulation:2,changeDetection:0})}return R})(),F=(()=>{class R{static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275mod=e.$C({type:R});static#i=this.\u0275inj=e.G2t({imports:[t.MD,w.yE]})}return R})()},5951:(Qe,te,g)=>{"use strict";g.d(te,{VT:()=>$,Wk:()=>Q,_g:()=>j});var e=g(4438),t=g(6600),w=g(8617),S=g(5024),l=g(9417),x=g(177);const f=["input"],I=["formField"],d=["*"];let T=0;class y{constructor(ee,ie){this.source=ee,this.value=ie}}const F={provide:l.kq,useExisting:(0,e.Rfq)(()=>$),multi:!0},R=new e.nKC("MatRadioGroup"),z=new e.nKC("mat-radio-default-options",{providedIn:"root",factory:function W(){return{color:"accent"}}});let $=(()=>{class J{get name(){return this._name}set name(ie){this._name=ie,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(ie){this._labelPosition="before"===ie?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(ie){this._value!==ie&&(this._value=ie,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(ie){this._selected=ie,this.value=ie?ie.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(ie){this._disabled=ie,this._markRadiosForCheck()}get required(){return this._required}set required(ie){this._required=ie,this._markRadiosForCheck()}constructor(ie){this._changeDetector=ie,this._value=null,this._name="mat-radio-group-"+T++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new e.bkB}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(ie=>ie===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(ie=>{ie.name=this.name,ie._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(ge=>{ge.checked=this.value===ge.value,ge.checked&&(this._selected=ge)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new y(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(ie=>ie._markForCheck())}writeValue(ie){this.value=ie,this._changeDetector.markForCheck()}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this.onTouched=ie}setDisabledState(ie){this.disabled=ie,this._changeDetector.markForCheck()}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(e.gRc))};static#t=this.\u0275dir=e.FsC({type:J,selectors:[["mat-radio-group"]],contentQueries:function(ge,ae,Me){if(1&ge&&e.wni(Me,j,5),2&ge){let Te;e.mGM(Te=e.lsd())&&(ae._radios=Te)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39]},outputs:{change:"change"},exportAs:["matRadioGroup"],standalone:!0,features:[e.Jv_([F,{provide:R,useExisting:J}]),e.GFd]})}return J})(),j=(()=>{class J{get checked(){return this._checked}set checked(ie){this._checked!==ie&&(this._checked=ie,ie&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!ie&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),ie&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(ie){this._value!==ie&&(this._value=ie,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===ie),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(ie){this._labelPosition=ie}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(ie){this._setDisabled(ie)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(ie){this._required=ie}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(ie){this._color=ie}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,ge,ae,Me,Te,de,D,n){this._elementRef=ge,this._changeDetector=ae,this._focusMonitor=Me,this._radioDispatcher=Te,this._providerOverride=D,this._uniqueId="mat-radio-"+ ++T,this.id=this._uniqueId,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=ie,this._noopAnimations="NoopAnimations"===de,n&&(this.tabIndex=(0,e.Udg)(n,0))}focus(ie,ge){ge?this._focusMonitor.focusVia(this._inputElement,ge,ie):this._inputElement.nativeElement.focus(ie)}_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),this._removeUniqueSelectionListener=this._radioDispatcher.listen((ie,ge)=>{ie!==this.id&&ge===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(ie=>{!ie&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new y(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(ie){ie.stopPropagation()}_onInputInteraction(ie){if(ie.stopPropagation(),!this.checked&&!this.disabled){const ge=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),ge&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(ie){this._onInputInteraction(ie),this.disabled||this._inputElement.nativeElement.focus()}_setDisabled(ie){this._disabled!==ie&&(this._disabled=ie,this._changeDetector.markForCheck())}_updateTabIndex(){const ie=this.radioGroup;let ge;if(ge=ie&&ie.selected&&!this.disabled?ie.selected===this?this.tabIndex:-1:this.tabIndex,ge!==this._previousTabIndex){const ae=this._inputElement?.nativeElement;ae&&(ae.setAttribute("tabindex",ge+""),this._previousTabIndex=ge)}}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(R,8),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(w.FN),e.rXU(S.zP),e.rXU(e.bc$,8),e.rXU(z,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:J,selectors:[["mat-radio-button"]],viewQuery:function(ge,ae){if(1&ge&&(e.GBs(f,5),e.GBs(I,7,e.aKT)),2&ge){let Me;e.mGM(Me=e.lsd())&&(ae._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ae._rippleTrigger=Me.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:15,hostBindings:function(ge,ae){1&ge&&e.bIt("focus",function(){return ae._inputElement.nativeElement.focus()}),2&ge&&(e.BMQ("id",ae.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),e.AVh("mat-primary","primary"===ae.color)("mat-accent","accent"===ae.color)("mat-warn","warn"===ae.color)("mat-mdc-radio-checked",ae.checked)("_mat-animation-noopable",ae._noopAnimations))},inputs:{id:"id",name:"name",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",ie=>null==ie?0:(0,e.Udg)(ie)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color"},outputs:{change:"change"},exportAs:["matRadioButton"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:d,decls:13,vars:16,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio",1,"mdc-radio__native-control",3,"change","id","checked","disabled","required"],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(ge,ae){if(1&ge){const Me=e.RV6();e.NAR(),e.j41(0,"div",2,0)(2,"div",3)(3,"div",4),e.bIt("click",function(de){return e.eBV(Me),e.Njj(ae._onTouchTargetClick(de))}),e.k0s(),e.j41(4,"input",5,1),e.bIt("change",function(de){return e.eBV(Me),e.Njj(ae._onInputInteraction(de))}),e.k0s(),e.j41(6,"div",6),e.nrm(7,"div",7)(8,"div",8),e.k0s(),e.j41(9,"div",9),e.nrm(10,"div",10),e.k0s()(),e.j41(11,"label",11),e.SdG(12),e.k0s()()}2&ge&&(e.Y8G("labelPosition",ae.labelPosition),e.R7$(2),e.AVh("mdc-radio--disabled",ae.disabled),e.R7$(2),e.Y8G("id",ae.inputId)("checked",ae.checked)("disabled",ae.disabled)("required",ae.required),e.BMQ("name",ae.name)("value",ae.value)("aria-label",ae.ariaLabel)("aria-labelledby",ae.ariaLabelledby)("aria-describedby",ae.ariaDescribedby),e.R7$(5),e.Y8G("matRippleTrigger",ae._rippleTrigger.nativeElement)("matRippleDisabled",ae._isRippleDisabled())("matRippleCentered",!0),e.R7$(2),e.Y8G("for",ae.inputId))},dependencies:[t.r6,t.tO],styles:['.mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color}.mdc-radio[hidden]{display:none}.mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1}.mdc-radio--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-radio--touch .mdc-radio__native-control{top:calc((40px - 48px) / 2);right:calc((40px - 48px) / 2);left:calc((40px - 48px) / 2);width:48px;height:48px}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{border-color:CanvasText}}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{border-color:CanvasText}}.mdc-radio__native-control:checked+.mdc-radio__background,.mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__outer-circle{transition:border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio--disabled{cursor:default;pointer-events:none}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle{transform:scale(0.5);transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:disabled+.mdc-radio__background,[aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background{cursor:default}.mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{padding:calc((var(--mdc-radio-state-layer-size) - 20px) / 2)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-unselected-icon-opacity)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);left:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);right:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);left:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color)}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple .mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, black)}.mat-mdc-radio-button.cdk-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-radio-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display)}[dir=rtl] .mat-mdc-radio-touch-target{left:0;right:50%;transform:translate(50%, -50%)}'],encapsulation:2,changeDetection:0})}return J})(),Q=(()=>{class J{static#e=this.\u0275fac=function(ge){return new(ge||J)};static#t=this.\u0275mod=e.$C({type:J});static#i=this.\u0275inj=e.G2t({imports:[t.yE,x.MD,t.pZ,j,t.yE]})}return J})()},2798:(Qe,te,g)=>{"use strict";g.d(te,{$2:()=>Ke,JO:()=>N,VO:()=>qe,Ve:()=>se});var e=g(6969),t=g(177),w=g(4438),S=g(6600),l=g(6467),x=g(5542),f=g(8617),I=g(8203),d=g(5024),T=g(7336),y=g(9417),F=g(1413),R=g(9030),z=g(7786),W=g(9172),$=g(5558),j=g(5964),Q=g(6354),J=g(3294),ee=g(6977),ie=g(6697),ge=g(9969);const ae=["trigger"],Me=["panel"],Te=[[["mat-select-trigger"]],"*"],de=["mat-select-trigger","*"];function D(X,me){if(1&X&&(w.j41(0,"span",4),w.EFF(1),w.k0s()),2&X){const ce=w.XpG();w.R7$(),w.JRh(ce.placeholder)}}function n(X,me){1&X&&w.SdG(0)}function c(X,me){if(1&X&&(w.j41(0,"span",11),w.EFF(1),w.k0s()),2&X){const ce=w.XpG(2);w.R7$(),w.JRh(ce.triggerValue)}}function m(X,me){if(1&X&&(w.j41(0,"span",5),w.DNE(1,n,1,0)(2,c,2,1,"span",11),w.k0s()),2&X){const ce=w.XpG();w.R7$(),w.vxM(ce.customTrigger?1:2)}}function h(X,me){if(1&X){const ce=w.RV6();w.j41(0,"div",12,1),w.bIt("@transformPanel.done",function(ke){w.eBV(ce);const mt=w.XpG();return w.Njj(mt._panelDoneAnimatingStream.next(ke.toState))})("keydown",function(ke){w.eBV(ce);const mt=w.XpG();return w.Njj(mt._handleKeydown(ke))}),w.SdG(2,1),w.k0s()}if(2&X){const ce=w.XpG();w.ZvI("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",ce._getPanelTheme(),""),w.Y8G("ngClass",ce.panelClass)("@transformPanel","showing"),w.BMQ("id",ce.id+"-panel")("aria-multiselectable",ce.multiple)("aria-label",ce.ariaLabel||null)("aria-labelledby",ce._getPanelAriaLabelledby())}}const C={transformPanelWrap:(0,ge.hZ)("transformPanelWrap",[(0,ge.kY)("* => void",(0,ge.P)("@transformPanel",[(0,ge.MA)()],{optional:!0}))]),transformPanel:(0,ge.hZ)("transformPanel",[(0,ge.wk)("void",(0,ge.iF)({opacity:0,transform:"scale(1, 0.8)"})),(0,ge.kY)("void => showing",(0,ge.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ge.iF)({opacity:1,transform:"scale(1, 1)"}))),(0,ge.kY)("* => void",(0,ge.i0)("100ms linear",(0,ge.iF)({opacity:0})))])};let r=0;const v=new w.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const X=(0,w.WQX)(e.hJ);return()=>X.scrollStrategies.reposition()}}),N=new w.nKC("MAT_SELECT_CONFIG"),ne={provide:v,deps:[e.hJ],useFactory:function V(X){return()=>X.scrollStrategies.reposition()}},Ee=new w.nKC("MatSelectTrigger");class ze{constructor(me,ce){this.source=me,this.value=ce}}let qe=(()=>{class X{_scrollOptionIntoView(ce){const fe=this.options.toArray()[ce];if(fe){const ke=this.panel.nativeElement,mt=(0,S.jb)(ce,this.options,this.optionGroups),_e=fe._getHostElement();ke.scrollTop=0===ce&&1===mt?0:(0,S.TL)(_e.offsetTop,_e.offsetHeight,ke.scrollTop,ke.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(ce){return new ze(this,ce)}get focused(){return this._focused||this._panelOpen}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(ce){this._hideSingleSelectionIndicator=ce,this._syncParentProperties()}get placeholder(){return this._placeholder}set placeholder(ce){this._placeholder=ce,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ce){this._required=ce,this.stateChanges.next()}get multiple(){return this._multiple}set multiple(ce){this._multiple=ce}get compareWith(){return this._compareWith}set compareWith(ce){this._compareWith=ce,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(ce){this._assignValue(ce)&&this._onChange(ce)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ce){this._errorStateTracker.matcher=ce}get id(){return this._id}set id(ce){this._id=ce||this._uid,this.stateChanges.next()}get errorState(){return this._errorStateTracker.errorState}set errorState(ce){this._errorStateTracker.errorState=ce}constructor(ce,fe,ke,mt,_e,be,pe,Ze,_t,at,pt,Xt,ye,ue){this._viewportRuler=ce,this._changeDetectorRef=fe,this._elementRef=_e,this._dir=be,this._parentFormField=_t,this.ngControl=at,this._liveAnnouncer=ye,this._defaultOptions=ue,this._positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}],this._panelOpen=!1,this._compareWith=(Ie,He)=>Ie===He,this._uid="mat-select-"+r++,this._triggerAriaLabelledBy=null,this._destroy=new F.B,this.stateChanges=new F.B,this.disableAutomaticLabeling=!0,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+r++,this._panelDoneAnimatingStream=new F.B,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this._hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1,this._multiple=!1,this.disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto",this._initialized=new F.B,this.optionSelectionChanges=(0,R.v)(()=>{const Ie=this.options;return Ie?Ie.changes.pipe((0,W.Z)(Ie),(0,$.n)(()=>(0,z.h)(...Ie.map(He=>He.onSelectionChange)))):this._initialized.pipe((0,$.n)(()=>this.optionSelectionChanges))}),this.openedChange=new w.bkB,this._openedStream=this.openedChange.pipe((0,j.p)(Ie=>Ie),(0,Q.T)(()=>{})),this._closedStream=this.openedChange.pipe((0,j.p)(Ie=>!Ie),(0,Q.T)(()=>{})),this.selectionChange=new w.bkB,this.valueChange=new w.bkB,this._trackedModal=null,this._skipPredicate=Ie=>!this.panelOpen&&Ie.disabled,this.ngControl&&(this.ngControl.valueAccessor=this),null!=ue?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=ue.typeaheadDebounceInterval),this._errorStateTracker=new S.X0(mt,at,Ze,pe,this.stateChanges),this._scrollStrategyFactory=Xt,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(pt)||0,this.id=this.id}ngOnInit(){this._selectionModel=new d.CB(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,J.F)(),(0,ee.Q)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen)),this._viewportRuler.change().pipe((0,ee.Q)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}ngAfterContentInit(){this._initialized.next(),this._initialized.complete(),this._initKeyManager(),this._selectionModel.changed.pipe((0,ee.Q)(this._destroy)).subscribe(ce=>{ce.added.forEach(fe=>fe.select()),ce.removed.forEach(fe=>fe.deselect())}),this.options.changes.pipe((0,W.Z)(null),(0,ee.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const ce=this._getTriggerAriaLabelledby(),fe=this.ngControl;if(ce!==this._triggerAriaLabelledBy){const ke=this._elementRef.nativeElement;this._triggerAriaLabelledBy=ce,ce?ke.setAttribute("aria-labelledby",ce):ke.removeAttribute("aria-labelledby")}fe&&(this._previousControl!==fe.control&&(void 0!==this._previousControl&&null!==fe.disabled&&fe.disabled!==this.disabled&&(this.disabled=fe.disabled),this._previousControl=fe.control),this.updateErrorState())}ngOnChanges(ce){(ce.disabled||ce.userAriaDescribedBy)&&this.stateChanges.next(),ce.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_applyModalPanelOwnership(){const ce=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!ce)return;const fe=`${this.id}-panel`;this._trackedModal&&(0,f.Ae)(this._trackedModal,"aria-owns",fe),(0,f.px)(ce,"aria-owns",fe),this._trackedModal=ce}_clearFromModal(){this._trackedModal&&((0,f.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next())}writeValue(ce){this._assignValue(ce)}registerOnChange(ce){this._onChange=ce}registerOnTouched(ce){this._onTouched=ce}setDisabledState(ce){this.disabled=ce,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const ce=this._selectionModel.selected.map(fe=>fe.viewValue);return this._isRtl()&&ce.reverse(),ce.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(ce){this.disabled||(this.panelOpen?this._handleOpenKeydown(ce):this._handleClosedKeydown(ce))}_handleClosedKeydown(ce){const fe=ce.keyCode,ke=fe===T.n6||fe===T.i7||fe===T.UQ||fe===T.LE,mt=fe===T.Fm||fe===T.t6,_e=this._keyManager;if(!_e.isTyping()&&mt&&!(0,T.rp)(ce)||(this.multiple||ce.altKey)&&ke)ce.preventDefault(),this.open();else if(!this.multiple){const be=this.selected;_e.onKeydown(ce);const pe=this.selected;pe&&be!==pe&&this._liveAnnouncer.announce(pe.viewValue,1e4)}}_handleOpenKeydown(ce){const fe=this._keyManager,ke=ce.keyCode,mt=ke===T.n6||ke===T.i7,_e=fe.isTyping();if(mt&&ce.altKey)ce.preventDefault(),this.close();else if(_e||ke!==T.Fm&&ke!==T.t6||!fe.activeItem||(0,T.rp)(ce))if(!_e&&this._multiple&&ke===T.A&&ce.ctrlKey){ce.preventDefault();const be=this.options.some(pe=>!pe.disabled&&!pe.selected);this.options.forEach(pe=>{pe.disabled||(be?pe.select():pe.deselect())})}else{const be=fe.activeItemIndex;fe.onKeydown(ce),this._multiple&&mt&&ce.shiftKey&&fe.activeItem&&fe.activeItemIndex!==be&&fe.activeItem._selectViaInteraction()}else ce.preventDefault(),fe.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,ie.s)(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(ce){if(this.options.forEach(fe=>fe.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&ce)Array.isArray(ce),ce.forEach(fe=>this._selectOptionByValue(fe)),this._sortValues();else{const fe=this._selectOptionByValue(ce);fe?this._keyManager.updateActiveItem(fe):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(ce){const fe=this.options.find(ke=>{if(this._selectionModel.isSelected(ke))return!1;try{return null!=ke.value&&this._compareWith(ke.value,ce)}catch{return!1}});return fe&&this._selectionModel.select(fe),fe}_assignValue(ce){return!!(ce!==this._value||this._multiple&&Array.isArray(ce))&&(this.options&&this._setSelectionByValue(ce),this._value=ce,!0)}_getOverlayWidth(ce){return"auto"===this.panelWidth?(ce instanceof e.$Q?ce.elementRef:ce||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const ce of this.options)ce._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new f.Au(this.options).withTypeAhead(this.typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const ce=(0,z.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,ee.Q)(ce)).subscribe(fe=>{this._onSelect(fe.source,fe.isUserInput),fe.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,z.h)(...this.options.map(fe=>fe._stateChanges)).pipe((0,ee.Q)(ce)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(ce,fe){const ke=this._selectionModel.isSelected(ce);null!=ce.value||this._multiple?(ke!==ce.selected&&(ce.selected?this._selectionModel.select(ce):this._selectionModel.deselect(ce)),fe&&this._keyManager.setActiveItem(ce),this.multiple&&(this._sortValues(),fe&&this.focus())):(ce.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(ce.value)),ke!==this._selectionModel.isSelected(ce)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const ce=this.options.toArray();this._selectionModel.sort((fe,ke)=>this.sortComparator?this.sortComparator(fe,ke,ce):ce.indexOf(fe)-ce.indexOf(ke)),this.stateChanges.next()}}_propagateChanges(ce){let fe;fe=this.multiple?this.selected.map(ke=>ke.value):this.selected?this.selected.value:ce,this._value=fe,this.valueChange.emit(fe),this._onChange(fe),this.selectionChange.emit(this._getChangeEvent(fe)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let ce=-1;for(let fe=0;fe0}focus(ce){this._elementRef.nativeElement.focus(ce)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const ce=this._parentFormField?.getLabelId();return this.ariaLabelledby?(ce?ce+" ":"")+this.ariaLabelledby:ce}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const ce=this._parentFormField?.getLabelId();let fe=(ce?ce+" ":"")+this._valueId;return this.ariaLabelledby&&(fe+=" "+this.ariaLabelledby),fe}_panelDoneAnimating(ce){this.openedChange.emit(ce)}setDescribedByIds(ce){ce.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ce.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static#e=this.\u0275fac=function(fe){return new(fe||X)(w.rXU(x.Xj),w.rXU(w.gRc),w.rXU(w.SKi),w.rXU(S.es),w.rXU(w.aKT),w.rXU(I.dS,8),w.rXU(y.cV,8),w.rXU(y.j4,8),w.rXU(l.xb,8),w.rXU(y.vO,10),w.kS0("tabindex"),w.rXU(v),w.rXU(f.Ai),w.rXU(N,8))};static#t=this.\u0275cmp=w.VBU({type:X,selectors:[["mat-select"]],contentQueries:function(fe,ke,mt){if(1&fe&&(w.wni(mt,Ee,5),w.wni(mt,S.wT,5),w.wni(mt,S.QC,5)),2&fe){let _e;w.mGM(_e=w.lsd())&&(ke.customTrigger=_e.first),w.mGM(_e=w.lsd())&&(ke.options=_e),w.mGM(_e=w.lsd())&&(ke.optionGroups=_e)}},viewQuery:function(fe,ke){if(1&fe&&(w.GBs(ae,5),w.GBs(Me,5),w.GBs(e.WB,5)),2&fe){let mt;w.mGM(mt=w.lsd())&&(ke.trigger=mt.first),w.mGM(mt=w.lsd())&&(ke.panel=mt.first),w.mGM(mt=w.lsd())&&(ke._overlayDir=mt.first)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:19,hostBindings:function(fe,ke){1&fe&&w.bIt("keydown",function(_e){return ke._handleKeydown(_e)})("focus",function(){return ke._onFocus()})("blur",function(){return ke._onBlur()}),2&fe&&(w.BMQ("id",ke.id)("tabindex",ke.disabled?-1:ke.tabIndex)("aria-controls",ke.panelOpen?ke.id+"-panel":null)("aria-expanded",ke.panelOpen)("aria-label",ke.ariaLabel||null)("aria-required",ke.required.toString())("aria-disabled",ke.disabled.toString())("aria-invalid",ke.errorState)("aria-activedescendant",ke._getAriaActiveDescendant()),w.AVh("mat-mdc-select-disabled",ke.disabled)("mat-mdc-select-invalid",ke.errorState)("mat-mdc-select-required",ke.required)("mat-mdc-select-empty",ke.empty)("mat-mdc-select-multiple",ke.multiple))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",w.L39],disableRipple:[2,"disableRipple","disableRipple",w.L39],tabIndex:[2,"tabIndex","tabIndex",ce=>null==ce?0:(0,w.Udg)(ce)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",w.L39],placeholder:"placeholder",required:[2,"required","required",w.L39],multiple:[2,"multiple","multiple",w.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",w.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",w.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],standalone:!0,features:[w.Jv_([{provide:l.qT,useExisting:X},{provide:S.is,useExisting:X}]),w.GFd,w.OA$,w.aNF],ngContentSelectors:de,decls:11,vars:8,consts:[["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],["panel",""],["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],[1,"mat-mdc-select-value"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"backdropClick","attach","detach","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(fe,ke){if(1&fe){const mt=w.RV6();w.NAR(Te),w.j41(0,"div",2,0),w.bIt("click",function(){return w.eBV(mt),w.Njj(ke.open())}),w.j41(3,"div",3),w.DNE(4,D,2,1,"span",4)(5,m,3,1,"span",5),w.k0s(),w.j41(6,"div",6)(7,"div",7),w.qSk(),w.j41(8,"svg",8),w.nrm(9,"path",9),w.k0s()()()(),w.DNE(10,h,3,9,"ng-template",10),w.bIt("backdropClick",function(){return w.eBV(mt),w.Njj(ke.close())})("attach",function(){return w.eBV(mt),w.Njj(ke._onAttached())})("detach",function(){return w.eBV(mt),w.Njj(ke.close())})}if(2&fe){const mt=w.sdS(1);w.R7$(3),w.BMQ("id",ke._valueId),w.R7$(),w.vxM(ke.empty?4:5),w.R7$(6),w.Y8G("cdkConnectedOverlayPanelClass",ke._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",ke._scrollStrategy)("cdkConnectedOverlayOrigin",ke._preferredOverlayOrigin||mt)("cdkConnectedOverlayOpen",ke.panelOpen)("cdkConnectedOverlayPositions",ke._positions)("cdkConnectedOverlayWidth",ke._overlayWidth)}},dependencies:[e.$Q,e.WB,t.YU],styles:['.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color);font-family:var(--mat-select-trigger-text-font);line-height:var(--mat-select-trigger-text-line-height);font-size:var(--mat-select-trigger-text-size);font-weight:var(--mat-select-trigger-text-weight);letter-spacing:var(--mat-select-trigger-text-tracking)}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow)}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color)}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow,.mat-form-field-invalid:not(.mat-form-field-disabled) .mat-mdc-form-field-infix::after{color:var(--mat-select-invalid-arrow-color)}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color)}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color)}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:GrayText}div.mat-mdc-select-panel{width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:static;background-color:var(--mat-select-panel-background-color)}.cdk-high-contrast-active div.mat-mdc-select-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}div.mat-mdc-select-panel .mat-mdc-option{--mdc-list-list-item-container-color: var(--mat-select-panel-background-color)}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color)}._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:var(--mat-select-arrow-transform)}'],encapsulation:2,data:{animation:[C.transformPanel]},changeDetection:0})}return X})(),Ke=(()=>{class X{static#e=this.\u0275fac=function(fe){return new(fe||X)};static#t=this.\u0275dir=w.FsC({type:X,selectors:[["mat-select-trigger"]],standalone:!0,features:[w.Jv_([{provide:Ee,useExisting:X}])]})}return X})(),se=(()=>{class X{static#e=this.\u0275fac=function(fe){return new(fe||X)};static#t=this.\u0275mod=w.$C({type:X});static#i=this.\u0275inj=w.G2t({providers:[ne],imports:[t.MD,e.z_,S.Sy,S.yE,x.Gj,l.RG,S.Sy,S.yE]})}return X})()},882:(Qe,te,g)=>{"use strict";g.d(te,{El:()=>Ee,LG:()=>ze,US:()=>qe,vg:()=>Ke});var e=g(5542),t=g(4438),w=g(6600),S=g(8617),l=g(8203),x=g(4085),f=g(7336),I=g(6860),d=g(177),T=g(1413),y=g(3726),F=g(7786),R=g(5964),z=g(6354),W=g(3703),$=g(6977),j=g(3294),Q=g(6697),J=g(9172),ee=g(152),ie=g(9969);const ge=["*"],ae=["content"],Me=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],Te=["mat-drawer","mat-drawer-content","*"];function de(se,X){if(1&se){const me=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(me);const fe=t.XpG();return t.Njj(fe._onBackdropClicked())}),t.k0s()}if(2&se){const me=t.XpG();t.AVh("mat-drawer-shown",me._isShowingBackdrop())}}function D(se,X){1&se&&(t.j41(0,"mat-drawer-content"),t.SdG(1,2),t.k0s())}const n=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],c=["mat-sidenav","mat-sidenav-content","*"];function m(se,X){if(1&se){const me=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(me);const fe=t.XpG();return t.Njj(fe._onBackdropClicked())}),t.k0s()}if(2&se){const me=t.XpG();t.AVh("mat-drawer-shown",me._isShowingBackdrop())}}function h(se,X){1&se&&(t.j41(0,"mat-sidenav-content"),t.SdG(1,2),t.k0s())}const k={transformDrawer:(0,ie.hZ)("transform",[(0,ie.wk)("open, open-instant",(0,ie.iF)({transform:"none",visibility:"visible"})),(0,ie.wk)("void",(0,ie.iF)({"box-shadow":"none",visibility:"hidden"})),(0,ie.kY)("void => open-instant",(0,ie.i0)("0ms")),(0,ie.kY)("void <=> open, open-instant => void",(0,ie.i0)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},_=new t.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function v(){return!1}}),r=new t.nKC("MAT_DRAWER_CONTAINER");let V=(()=>{class se extends e.uv{constructor(me,ce,fe,ke,mt){super(fe,ke,mt),this._changeDetectorRef=me,this._container=ce}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>ne)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:4,hostBindings:function(ce,fe){2&ce&&t.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:ge,decls:1,vars:0,template:function(ce,fe){1&ce&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return se})(),N=(()=>{class se{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,x.he)(me)}get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(me){("true"===me||"false"===me||null==me)&&(me=(0,x.he)(me)),this._autoFocus=me}get opened(){return this._opened}set opened(me){this.toggle((0,x.he)(me))}constructor(me,ce,fe,ke,mt,_e,be,pe){this._elementRef=me,this._focusTrapFactory=ce,this._focusMonitor=fe,this._platform=ke,this._ngZone=mt,this._interactivityChecker=_e,this._doc=be,this._container=pe,this._focusTrap=null,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new T.B,this._animationEnd=new T.B,this._animationState="void",this.openedChange=new t.bkB(!0),this._openedStream=this.openedChange.pipe((0,R.p)(Ze=>Ze),(0,z.T)(()=>{})),this.openedStart=this._animationStarted.pipe((0,R.p)(Ze=>Ze.fromState!==Ze.toState&&0===Ze.toState.indexOf("open")),(0,W.u)(void 0)),this._closedStream=this.openedChange.pipe((0,R.p)(Ze=>!Ze),(0,z.T)(()=>{})),this.closedStart=this._animationStarted.pipe((0,R.p)(Ze=>Ze.fromState!==Ze.toState&&"void"===Ze.toState),(0,W.u)(void 0)),this._destroyed=new T.B,this.onPositionChanged=new t.bkB,this._modeChanged=new T.B,this.openedChange.subscribe(Ze=>{Ze?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,y.R)(this._elementRef.nativeElement,"keydown").pipe((0,R.p)(Ze=>Ze.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Ze)),(0,$.Q)(this._destroyed)).subscribe(Ze=>this._ngZone.run(()=>{this.close(),Ze.stopPropagation(),Ze.preventDefault()}))}),this._animationEnd.pipe((0,j.F)((Ze,_t)=>Ze.fromState===_t.fromState&&Ze.toState===_t.toState)).subscribe(Ze=>{const{fromState:_t,toState:at}=Ze;(0===at.indexOf("open")&&"void"===_t||"void"===at&&0===_t.indexOf("open"))&&this.openedChange.emit(this._opened)})}_forceFocus(me,ce){this._interactivityChecker.isFocusable(me)||(me.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const fe=()=>{me.removeEventListener("blur",fe),me.removeEventListener("mousedown",fe),me.removeAttribute("tabindex")};me.addEventListener("blur",fe),me.addEventListener("mousedown",fe)})),me.focus(ce)}_focusByCssSelector(me,ce){let fe=this._elementRef.nativeElement.querySelector(me);fe&&this._forceFocus(fe,ce)}_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(ce=>{!ce&&"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,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap?.destroy(),this._anchor?.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,ce){me&&ce&&(this._openedVia=ce);const fe=this._setOpen(me,!me&&this._isFocusWithinDrawer(),this._openedVia||"program");return me||(this._openedVia=null),fe}_setOpen(me,ce,fe){return this._opened=me,me?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",ce&&this._restoreFocus(fe)),this._updateFocusTrapState(),new Promise(ke=>{this.openedChange.pipe((0,Q.s)(1)).subscribe(mt=>ke(mt?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop)}_updatePositionInParent(me){if(!this._platform.isBrowser)return;const ce=this._elementRef.nativeElement,fe=ce.parentNode;"end"===me?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),fe.insertBefore(this._anchor,ce)),fe.appendChild(ce)):this._anchor&&this._anchor.parentNode.insertBefore(ce,this._anchor)}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.aKT),t.rXU(S.GX),t.rXU(S.FN),t.rXU(I.OD),t.rXU(t.SKi),t.rXU(S.Z7),t.rXU(d.qQ,8),t.rXU(r,8))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer"]],viewQuery:function(ce,fe){if(1&ce&&t.GBs(ae,5),2&ce){let ke;t.mGM(ke=t.lsd())&&(fe._content=ke.first)}},hostAttrs:["tabIndex","-1",1,"mat-drawer"],hostVars:12,hostBindings:function(ce,fe){1&ce&&t.Kam("@transform.start",function(mt){return fe._animationStarted.next(mt)})("@transform.done",function(mt){return fe._animationEnd.next(mt)}),2&ce&&(t.zvX("@transform",fe._animationState),t.BMQ("align",null),t.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode)("mat-drawer-opened",fe.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"],standalone:!0,features:[t.aNF],ngContentSelectors:ge,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ce,fe){1&ce&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[k.transformDrawer]},changeDetection:0})}return se})(),ne=(()=>{class se{get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(me){this._autosize=(0,x.he)(me)}get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(me){this._backdropOverride=null==me?null:(0,x.he)(me)}get scrollable(){return this._userContent||this._content}constructor(me,ce,fe,ke,mt,_e=!1,be){this._dir=me,this._element=ce,this._ngZone=fe,this._changeDetectorRef=ke,this._animationMode=be,this._drawers=new t.rOR,this.backdropClick=new t.bkB,this._destroyed=new T.B,this._doCheckSubject=new T.B,this._contentMargins={left:null,right:null},this._contentMarginChanges=new T.B,me&&me.change.pipe((0,$.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),mt.change().pipe((0,$.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=_e}ngAfterContentInit(){this._allDrawers.changes.pipe((0,J.Z)(this._allDrawers),(0,$.Q)(this._destroyed)).subscribe(me=>{this._drawers.reset(me.filter(ce=>!ce._container||ce._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,J.Z)(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,ee.B)(10),(0,$.Q)(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,ce=0;if(this._left&&this._left.opened)if("side"==this._left.mode)me+=this._left._getWidth();else if("push"==this._left.mode){const fe=this._left._getWidth();me+=fe,ce-=fe}if(this._right&&this._right.opened)if("side"==this._right.mode)ce+=this._right._getWidth();else if("push"==this._right.mode){const fe=this._right._getWidth();ce+=fe,me-=fe}me=me||null,ce=ce||null,(me!==this._contentMargins.left||ce!==this._contentMargins.right)&&(this._contentMargins={left:me,right:ce},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,R.p)(ce=>ce.fromState!==ce.toState),(0,$.Q)(this._drawers.changes)).subscribe(ce=>{"open-instant"!==ce.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==me.mode&&me.openedChange.pipe((0,$.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(me.opened))}_watchDrawerPosition(me){me&&me.onPositionChanged.pipe((0,$.Q)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,Q.s)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(me){me&&me._modeChanged.pipe((0,$.Q)((0,F.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(me){const ce=this._element.nativeElement.classList,fe="mat-drawer-container-has-open";me?ce.add(fe):ce.remove(fe)}_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._drawerHasBackdrop(me)).forEach(me=>me._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(me){return null!=me&&me.opened}_drawerHasBackdrop(me){return null==this._backdropOverride?!!me&&"side"!==me.mode:this._backdropOverride}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(l.dS,8),t.rXU(t.aKT),t.rXU(t.SKi),t.rXU(t.gRc),t.rXU(e.Xj),t.rXU(_),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer-container"]],contentQueries:function(ce,fe,ke){if(1&ce&&(t.wni(ke,V,5),t.wni(ke,N,5)),2&ce){let mt;t.mGM(mt=t.lsd())&&(fe._content=mt.first),t.mGM(mt=t.lsd())&&(fe._allDrawers=mt)}},viewQuery:function(ce,fe){if(1&ce&&t.GBs(V,5),2&ce){let ke;t.mGM(ke=t.lsd())&&(fe._userContent=ke.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(ce,fe){2&ce&&t.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],standalone:!0,features:[t.Jv_([{provide:r,useExisting:se}]),t.aNF],ngContentSelectors:Te,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ce,fe){1&ce&&(t.NAR(Me),t.DNE(0,de,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,D,2,0,"mat-drawer-content")),2&ce&&(t.vxM(fe.hasBackdrop?0:-1),t.R7$(3),t.vxM(fe._content?-1:3))},dependencies:[V],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);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;background-color:var(--mat-sidenav-scrim-color)}.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;color:var(--mat-sidenav-container-text-color);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);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);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return se})(),Ee=(()=>{class se extends V{constructor(me,ce,fe,ke,mt){super(me,ce,fe,ke,mt)}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>qe)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(ce,fe){2&ce&&t.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:ge,decls:1,vars:0,template:function(ce,fe){1&ce&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return se})(),ze=(()=>{class se extends N{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(me){this._fixedInViewport=(0,x.he)(me)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(me){this._fixedTopGap=(0,x.OE)(me)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(me){this._fixedBottomGap=(0,x.OE)(me)}static#e=this.\u0275fac=(()=>{let me;return function(fe){return(me||(me=t.xGo(se)))(fe||se)}})();static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(ce,fe){2&ce&&(t.BMQ("align",null),t.xc7("top",fe.fixedInViewport?fe.fixedTopGap:null,"px")("bottom",fe.fixedInViewport?fe.fixedBottomGap:null,"px"),t.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode)("mat-drawer-opened",fe.opened)("mat-sidenav-fixed",fe.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],standalone:!0,features:[t.Vt3,t.aNF],ngContentSelectors:ge,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ce,fe){1&ce&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[k.transformDrawer]},changeDetection:0})}return se})(),qe=(()=>{class se extends ne{constructor(){super(...arguments),this._allDrawers=void 0,this._content=void 0}static#e=this.\u0275fac=(()=>{let me;return function(fe){return(me||(me=t.xGo(se)))(fe||se)}})();static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav-container"]],contentQueries:function(ce,fe,ke){if(1&ce&&(t.wni(ke,Ee,5),t.wni(ke,ze,5)),2&ce){let mt;t.mGM(mt=t.lsd())&&(fe._content=mt.first),t.mGM(mt=t.lsd())&&(fe._allDrawers=mt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(ce,fe){2&ce&&t.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},exportAs:["matSidenavContainer"],standalone:!0,features:[t.Jv_([{provide:r,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:c,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ce,fe){1&ce&&(t.NAR(n),t.DNE(0,m,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,h,2,0,"mat-sidenav-content")),2&ce&&(t.vxM(fe.hasBackdrop?0:-1),t.R7$(3),t.vxM(fe._content?-1:3))},dependencies:[Ee],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);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;background-color:var(--mat-sidenav-scrim-color)}.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;color:var(--mat-sidenav-container-text-color);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);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);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return se})(),Ke=(()=>{class se{static#e=this.\u0275fac=function(ce){return new(ce||se)};static#t=this.\u0275mod=t.$C({type:se});static#i=this.\u0275inj=t.G2t({imports:[w.yE,e.Gj,e.Gj,w.yE]})}return se})()},450:(Qe,te,g)=>{"use strict";g.d(te,{mV:()=>$,sG:()=>F});var e=g(4438),t=g(9417),w=g(8617),S=g(6600);const l=["switch"],x=["*"];function f(j,Q){1&j&&(e.j41(0,"div",10),e.qSk(),e.j41(1,"svg",12),e.nrm(2,"path",13),e.k0s(),e.j41(3,"svg",14),e.nrm(4,"path",15),e.k0s()())}const I=new e.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1})}),d={provide:t.kq,useExisting:(0,e.Rfq)(()=>F),multi:!0};class T{constructor(Q,J){this.source=Q,this.checked=J}}let y=0,F=(()=>{class j{_createChangeEvent(J){return new T(this,J)}get buttonId(){return`${this.id||this._uniqueId}-button`}focus(){this._switchElement.nativeElement.focus()}get checked(){return this._checked}set checked(J){this._checked=J,this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(J,ee,ie,ge,ae,Me){this._elementRef=J,this._focusMonitor=ee,this._changeDetectorRef=ie,this.defaults=ae,this._onChange=Te=>{},this._onTouched=()=>{},this._validatorOnChange=()=>{},this._checked=!1,this.name=null,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this.toggleChange=new e.bkB,this.tabIndex=parseInt(ge)||0,this.color=ae.color||"accent",this._noopAnimations="NoopAnimations"===Me,this.id=this._uniqueId="mat-mdc-slide-toggle-"+ ++y,this.hideIcon=ae.hideIcon??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(J=>{"keyboard"===J||"program"===J?(this._focused=!0,this._changeDetectorRef.markForCheck()):J||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(J){J.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(J){this.checked=!!J}registerOnChange(J){this._onChange=J}registerOnTouched(J){this._onTouched=J}validate(J){return this.required&&!0!==J.value?{required:!0}:null}registerOnValidatorChange(J){this._validatorOnChange=J}setDisabledState(J){this.disabled=J,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}_handleClick(){this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new T(this,this.checked)))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static#e=this.\u0275fac=function(ee){return new(ee||j)(e.rXU(e.aKT),e.rXU(w.FN),e.rXU(e.gRc),e.kS0("tabindex"),e.rXU(I),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:j,selectors:[["mat-slide-toggle"]],viewQuery:function(ee,ie){if(1&ee&&e.GBs(l,5),2&ee){let ge;e.mGM(ge=e.lsd())&&(ie._switchElement=ge.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(ee,ie){2&ee&&(e.Mr5("id",ie.id),e.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),e.HbH(ie.color?"mat-"+ie.color:""),e.AVh("mat-mdc-slide-toggle-focused",ie._focused)("mat-mdc-slide-toggle-checked",ie.checked)("_mat-animation-noopable",ie._noopAnimations))},inputs:{name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],required:[2,"required","required",e.L39],color:"color",disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",J=>null==J?0:(0,e.Udg)(J)],checked:[2,"checked","checked",e.L39],hideIcon:[2,"hideIcon","hideIcon",e.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],standalone:!0,features:[e.Jv_([d,{provide:t.cz,useExisting:j,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:x,decls:13,vars:24,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-switch__icons"],[1,"mdc-label",3,"click","for"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(ee,ie){if(1&ee){const ge=e.RV6();e.NAR(),e.j41(0,"div",1)(1,"button",2,0),e.bIt("click",function(){return e.eBV(ge),e.Njj(ie._handleClick())}),e.nrm(3,"div",3),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"div",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"div",9),e.k0s(),e.DNE(10,f,5,0,"div",10),e.k0s()()(),e.j41(11,"label",11),e.bIt("click",function(Me){return e.eBV(ge),e.Njj(Me.stopPropagation())}),e.SdG(12),e.k0s()()}if(2&ee){const ge=e.sdS(2);e.Y8G("labelPosition",ie.labelPosition),e.R7$(),e.AVh("mdc-switch--selected",ie.checked)("mdc-switch--unselected",!ie.checked)("mdc-switch--checked",ie.checked)("mdc-switch--disabled",ie.disabled),e.Y8G("tabIndex",ie.disabled?-1:ie.tabIndex)("disabled",ie.disabled),e.BMQ("id",ie.buttonId)("name",ie.name)("aria-label",ie.ariaLabel)("aria-labelledby",ie._getAriaLabelledBy())("aria-describedby",ie.ariaDescribedby)("aria-required",ie.required||null)("aria-checked",ie.checked),e.R7$(8),e.Y8G("matRippleTrigger",ge)("matRippleDisabled",ie.disableRipple||ie.disabled)("matRippleCentered",!0),e.R7$(),e.vxM(ie.hideIcon?-1:10),e.R7$(),e.Y8G("for",ie.buttonId),e.BMQ("id",ie._labelId)}},dependencies:[S.r6,S.tO],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative}.mdc-switch[hidden]{display:none}.mdc-switch:disabled{cursor:default;pointer-events:none}.mdc-switch__track{overflow:hidden;position:relative;width:100%}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%}@media screen and (forced-colors: active){.mdc-switch__track::before,.mdc-switch__track::after{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(-100%)}[dir=rtl] .mdc-switch__track::after,.mdc-switch__track[dir=rtl]::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track[dir=rtl]::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0)}[dir=rtl] .mdc-switch__handle-track,.mdc-switch__handle-track[dir=rtl]{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track,.mdc-switch--selected .mdc-switch__handle-track[dir=rtl]{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto}[dir=rtl] .mdc-switch__handle,.mdc-switch__handle[dir=rtl]{left:auto;right:0}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media screen and (forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-elevation-overlay{bottom:0;left:0;right:0;top:0}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1}.mdc-switch:disabled .mdc-switch__ripple{display:none}.mdc-switch__icons{height:100%;position:relative;width:100%;z-index:1}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:var(--mdc-switch-disabled-label-text-color)}.mdc-switch{width:var(--mdc-switch-track-width)}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-selected-handle-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-hover-handle-color)}.mdc-switch.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-focus-handle-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-selected-pressed-handle-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-selected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-unselected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-hover-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-focus-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-unselected-pressed-handle-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-unselected-handle-color)}.mdc-switch .mdc-switch__handle::before{background:var(--mdc-switch-handle-surface-color)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation)}.mdc-switch .mdc-switch__focus-ring-wrapper,.mdc-switch .mdc-switch__handle{height:var(--mdc-switch-handle-height)}.mdc-switch .mdc-switch__handle{border-radius:var(--mdc-switch-handle-shape)}.mdc-switch .mdc-switch__handle{width:var(--mdc-switch-handle-width)}.mdc-switch .mdc-switch__handle-track{width:calc(100% - var(--mdc-switch-handle-width))}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__icon{fill:var(--mdc-switch-selected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-selected-icon-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__icon{fill:var(--mdc-switch-unselected-icon-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-unselected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-selected-icon-opacity)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-unselected-icon-opacity)}.mdc-switch.mdc-switch--selected .mdc-switch__icon{width:var(--mdc-switch-selected-icon-size);height:var(--mdc-switch-selected-icon-size)}.mdc-switch.mdc-switch--unselected .mdc-switch__icon{width:var(--mdc-switch-unselected-icon-size);height:var(--mdc-switch-unselected-icon-size)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-hover-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-focus-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-pressed-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-hover-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-focus-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-pressed-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-selected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-selected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-unselected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-unselected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch .mdc-switch__ripple{height:var(--mdc-switch-state-layer-size);width:var(--mdc-switch-state-layer-size)}.mdc-switch .mdc-switch__track{height:var(--mdc-switch-track-height)}.mdc-switch:disabled .mdc-switch__track{opacity:var(--mdc-switch-disabled-track-opacity)}.mdc-switch:enabled .mdc-switch__track::after{background:var(--mdc-switch-selected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mdc-switch-selected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::after{background:var(--mdc-switch-disabled-selected-track-color)}.mdc-switch:enabled .mdc-switch__track::before{background:var(--mdc-switch-unselected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mdc-switch-unselected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::before{background:var(--mdc-switch-disabled-unselected-track-color)}.mdc-switch .mdc-switch__track{border-radius:var(--mdc-switch-track-shape)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation-shadow)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation-shadow)}.mat-mdc-slide-toggle{display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle .mdc-switch__ripple::after{content:"";opacity:0}.mat-mdc-slide-toggle .mdc-switch:hover .mdc-switch__ripple::after{opacity:.04;transition:opacity 75ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after{opacity:.12}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-mdc-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-elevation-overlay,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}.mdc-switch__handle{transition:width 75ms cubic-bezier(0.4, 0, 0.2, 1),height 75ms cubic-bezier(0.4, 0, 0.2, 1),margin 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-switch-unselected-handle-size);height:var(--mat-switch-unselected-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-switch-selected-handle-size);height:var(--mat-switch-selected-handle-size)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-switch-with-icon-handle-size);height:var(--mat-switch-with-icon-handle-size)}.mat-mdc-slide-toggle:active .mdc-switch:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-switch-pressed-handle-size);height:var(--mat-switch-pressed-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{margin:var(--mat-switch-selected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-selected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{margin:var(--mat-switch-unselected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-unselected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--selected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-selected-pressed-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--unselected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-unselected-pressed-handle-horizontal-margin)}.mdc-switch__track::after,.mdc-switch__track::before{border-width:var(--mat-switch-track-outline-width);border-color:var(--mat-switch-track-outline-color)}.mdc-switch--selected .mdc-switch__track::after,.mdc-switch--selected .mdc-switch__track::before{border-width:var(--mat-switch-selected-track-outline-width)}.mdc-switch--disabled .mdc-switch__track::after,.mdc-switch--disabled .mdc-switch__track::before{border-width:var(--mat-switch-disabled-unselected-track-outline-width);border-color:var(--mat-switch-disabled-unselected-track-outline-color)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-selected-handle-opacity)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-unselected-handle-opacity)}'],encapsulation:2,changeDetection:0})}return j})(),$=(()=>{class j{static#e=this.\u0275fac=function(ee){return new(ee||j)};static#t=this.\u0275mod=e.$C({type:j});static#i=this.\u0275inj=e.G2t({imports:[F,S.yE,S.yE]})}return j})()},5416:(Qe,te,g)=>{"use strict";g.d(te,{UG:()=>c,_T:()=>h,x6:()=>n});var e=g(4438),t=g(8834),w=g(1413),S=g(177),l=g(9969),x=g(6939),f=g(6860),I=g(8617),d=g(9327),T=g(6969),y=g(6977),F=g(6600);function R(C,k){if(1&C){const L=e.RV6();e.j41(0,"div",1)(1,"button",2),e.bIt("click",function(){e.eBV(L);const r=e.XpG();return e.Njj(r.action())}),e.EFF(2),e.k0s()()}if(2&C){const L=e.XpG();e.R7$(2),e.SpI(" ",L.data.action," ")}}const z=["label"];function W(C,k){}const $=Math.pow(2,31)-1;class j{constructor(k,L){this._overlayRef=L,this._afterDismissed=new w.B,this._afterOpened=new w.B,this._onAction=new w.B,this._dismissedByAction=!1,this.containerInstance=k,k._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(k){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(k,$))}_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}}const Q=new e.nKC("MatSnackBarData");class J{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}let ee=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"],standalone:!0})}return C})(),ie=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"],standalone:!0})}return C})(),ge=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"],standalone:!0})}return C})(),ae=(()=>{class C{constructor(L,_){this.snackBarRef=L,this.data=_}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static#e=this.\u0275fac=function(_){return new(_||C)(e.rXU(j),e.rXU(Q))};static#t=this.\u0275cmp=e.VBU({type:C,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],standalone:!0,features:[e.aNF],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(_,r){1&_&&(e.j41(0,"div",0),e.EFF(1),e.k0s(),e.DNE(2,R,3,1,"div",1)),2&_&&(e.R7$(),e.SpI(" ",r.data.message,"\n"),e.R7$(),e.vxM(r.hasAction?2:-1))},dependencies:[t.$z,ee,ie,ge],styles:[".mat-mdc-simple-snack-bar{display:flex}"],encapsulation:2,changeDetection:0})}return C})();const Me={snackBarState:(0,l.hZ)("state",[(0,l.wk)("void, hidden",(0,l.iF)({transform:"scale(0.8)",opacity:0})),(0,l.wk)("visible",(0,l.iF)({transform:"scale(1)",opacity:1})),(0,l.kY)("* => visible",(0,l.i0)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,l.kY)("* => void, * => hidden",(0,l.i0)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,l.iF)({opacity:0})))])};let Te=0,de=(()=>{class C extends x.lb{constructor(L,_,r,v,V){super(),this._ngZone=L,this._elementRef=_,this._changeDetectorRef=r,this._platform=v,this.snackBarConfig=V,this._document=(0,e.WQX)(S.qQ),this._trackedModals=new Set,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new w.B,this._onExit=new w.B,this._onEnter=new w.B,this._animationState="void",this._liveElementId="mat-snack-bar-container-live-"+Te++,this.attachDomPortal=N=>{this._assertNotAttached();const ne=this._portalOutlet.attachDomPortal(N);return this._afterPortalAttached(),ne},this._live="assertive"!==V.politeness||V.announcementMessage?"off"===V.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(L){this._assertNotAttached();const _=this._portalOutlet.attachComponentPortal(L);return this._afterPortalAttached(),_}attachTemplatePortal(L){this._assertNotAttached();const _=this._portalOutlet.attachTemplatePortal(L);return this._afterPortalAttached(),_}onAnimationEnd(L){const{fromState:_,toState:r}=L;if(("void"===r&&"void"!==_||"hidden"===r)&&this._completeExit(),"visible"===r){const v=this._onEnter;this._ngZone.run(()=>{v.next(),v.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const L=this._elementRef.nativeElement,_=this.snackBarConfig.panelClass;_&&(Array.isArray(_)?_.forEach(V=>L.classList.add(V)):L.classList.add(_)),this._exposeToModals();const r=this._label.nativeElement,v="mdc-snackbar__label";r.classList.toggle(v,!r.querySelector(`.${v}`))}_exposeToModals(){const L=this._liveElementId,_=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let r=0;r<_.length;r++){const v=_[r],V=v.getAttribute("aria-owns");this._trackedModals.add(v),V?-1===V.indexOf(L)&&v.setAttribute("aria-owns",V+" "+L):v.setAttribute("aria-owns",L)}}_clearFromModals(){this._trackedModals.forEach(L=>{const _=L.getAttribute("aria-owns");if(_){const r=_.replace(this._liveElementId,"").trim();r.length>0?L.setAttribute("aria-owns",r):L.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const L=this._elementRef.nativeElement.querySelector("[aria-hidden]"),_=this._elementRef.nativeElement.querySelector("[aria-live]");if(L&&_){let r=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&L.contains(document.activeElement)&&(r=document.activeElement),L.removeAttribute("aria-hidden"),_.appendChild(L),r?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static#e=this.\u0275fac=function(_){return new(_||C)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(f.OD),e.rXU(J))};static#t=this.\u0275cmp=e.VBU({type:C,selectors:[["mat-snack-bar-container"]],viewQuery:function(_,r){if(1&_&&(e.GBs(x.I3,7),e.GBs(z,7)),2&_){let v;e.mGM(v=e.lsd())&&(r._portalOutlet=v.first),e.mGM(v=e.lsd())&&(r._label=v.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container","mdc-snackbar--open"],hostVars:1,hostBindings:function(_,r){1&_&&e.Kam("@state.done",function(V){return r.onAnimationEnd(V)}),2&_&&e.zvX("@state",r._animationState)},standalone:!0,features:[e.Vt3,e.aNF],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(_,r){1&_&&(e.j41(0,"div",1)(1,"div",2,0)(3,"div",3),e.DNE(4,W,0,0,"ng-template",4),e.k0s(),e.nrm(5,"div"),e.k0s()()),2&_&&(e.R7$(5),e.BMQ("aria-live",r._live)("role",r._role)("id",r._liveElementId))},dependencies:[x.I3],styles:['.mdc-snackbar{display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-snackbar__surface::before{border-color:CanvasText}}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1)}.mdc-snackbar__label{padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-snack-bar-container{margin:8px;position:static}.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:100%}}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container{width:100vw}}.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:672px}.mat-mdc-snack-bar-container .mdc-snackbar__surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{background-color:var(--mdc-snackbar-container-color)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{border-radius:var(--mdc-snackbar-container-shape)}.mat-mdc-snack-bar-container .mdc-snackbar__label{color:var(--mdc-snackbar-supporting-text-color)}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-size:var(--mdc-snackbar-supporting-text-size);font-family:var(--mdc-snackbar-supporting-text-font);font-weight:var(--mdc-snackbar-supporting-text-weight);line-height:var(--mdc-snackbar-supporting-text-line-height)}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){color:var(--mat-snack-bar-button-color);--mat-text-button-state-layer-color:currentColor;--mat-text-button-ripple-color:currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}.mat-mdc-snack-bar-container .mdc-snackbar__label::before{display:none}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-handset .mdc-snackbar__surface{width:100%}'],encapsulation:2,data:{animation:[Me.snackBarState]}})}return C})();const n=new e.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function D(){return new J}});let c=(()=>{class C{get _openedSnackBarRef(){const L=this._parentSnackBar;return L?L._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(L){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=L:this._snackBarRefAtThisLevel=L}constructor(L,_,r,v,V,N){this._overlay=L,this._live=_,this._injector=r,this._breakpointObserver=v,this._parentSnackBar=V,this._defaultConfig=N,this._snackBarRefAtThisLevel=null,this.simpleSnackBarComponent=ae,this.snackBarContainerComponent=de,this.handsetCssClass="mat-mdc-snack-bar-handset"}openFromComponent(L,_){return this._attach(L,_)}openFromTemplate(L,_){return this._attach(L,_)}open(L,_="",r){const v={...this._defaultConfig,...r};return v.data={message:L,action:_},v.announcementMessage===L&&(v.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,v)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(L,_){const v=e.zZn.create({parent:_&&_.viewContainerRef&&_.viewContainerRef.injector||this._injector,providers:[{provide:J,useValue:_}]}),V=new x.A8(this.snackBarContainerComponent,_.viewContainerRef,v),N=L.attach(V);return N.instance.snackBarConfig=_,N.instance}_attach(L,_){const r={...new J,...this._defaultConfig,..._},v=this._createOverlay(r),V=this._attachSnackBarContainer(v,r),N=new j(V,v);if(L instanceof e.C4Q){const ne=new x.VA(L,null,{$implicit:r.data,snackBarRef:N});N.instance=V.attachTemplatePortal(ne)}else{const ne=this._createInjector(r,N),Ee=new x.A8(L,void 0,ne),ze=V.attachComponentPortal(Ee);N.instance=ze.instance}return this._breakpointObserver.observe(d.Rp.HandsetPortrait).pipe((0,y.Q)(v.detachments())).subscribe(ne=>{v.overlayElement.classList.toggle(this.handsetCssClass,ne.matches)}),r.announcementMessage&&V._onAnnounce.subscribe(()=>{this._live.announce(r.announcementMessage,r.politeness)}),this._animateSnackBar(N,r),this._openedSnackBarRef=N,this._openedSnackBarRef}_animateSnackBar(L,_){L.afterDismissed().subscribe(()=>{this._openedSnackBarRef==L&&(this._openedSnackBarRef=null),_.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{L.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):L.containerInstance.enter(),_.duration&&_.duration>0&&L.afterOpened().subscribe(()=>L._dismissAfter(_.duration))}_createOverlay(L){const _=new T.rR;_.direction=L.direction;let r=this._overlay.position().global();const v="rtl"===L.direction,V="left"===L.horizontalPosition||"start"===L.horizontalPosition&&!v||"end"===L.horizontalPosition&&v,N=!V&&"center"!==L.horizontalPosition;return V?r.left("0"):N?r.right("0"):r.centerHorizontally(),"top"===L.verticalPosition?r.top("0"):r.bottom("0"),_.positionStrategy=r,this._overlay.create(_)}_createInjector(L,_){return e.zZn.create({parent:L&&L.viewContainerRef&&L.viewContainerRef.injector||this._injector,providers:[{provide:j,useValue:_},{provide:Q,useValue:L.data}]})}static#e=this.\u0275fac=function(_){return new(_||C)(e.KVO(T.hJ),e.KVO(I.Ai),e.KVO(e.zZn),e.KVO(d.QP),e.KVO(C,12),e.KVO(n))};static#t=this.\u0275prov=e.jDH({token:C,factory:C.\u0275fac,providedIn:"root"})}return C})(),h=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275mod=e.$C({type:C});static#i=this.\u0275inj=e.G2t({providers:[c],imports:[T.z_,x.jc,t.Hl,F.yE,ae,F.yE]})}return C})()},2042:(Qe,te,g)=>{"use strict";g.d(te,{B4:()=>j,NQ:()=>Te,aE:()=>Me});var e=g(4438),t=g(8617),w=g(7336),S=g(2771),l=g(1413),x=g(7786),f=g(9969),I=g(6600);const d=["mat-sort-header",""],T=["*"];function y(de,D){if(1&de){const n=e.RV6();e.j41(0,"div",2),e.bIt("@arrowPosition.start",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!0)})("@arrowPosition.done",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!1)}),e.nrm(1,"div",3),e.j41(2,"div",4),e.nrm(3,"div",5)(4,"div",6)(5,"div",7),e.k0s()()}if(2&de){const n=e.XpG();e.Y8G("@arrowOpacity",n._getArrowViewState())("@arrowPosition",n._getArrowViewState())("@allowChildren",n._getArrowDirectionState()),e.R7$(2),e.Y8G("@indicator",n._getArrowDirectionState()),e.R7$(),e.Y8G("@leftPointer",n._getArrowDirectionState()),e.R7$(),e.Y8G("@rightPointer",n._getArrowDirectionState())}}const $=new e.nKC("MAT_SORT_DEFAULT_OPTIONS");let j=(()=>{class de{get direction(){return this._direction}set direction(n){this._direction=n}constructor(n){this._defaultOptions=n,this._initializedStream=new S.m(1),this.sortables=new Map,this._stateChanges=new l.B,this.start="asc",this._direction="",this.disabled=!1,this.sortChange=new e.bkB,this.initialized=this._initializedStream}register(n){this.sortables.set(n.id,n)}deregister(n){this.sortables.delete(n.id)}sort(n){this.active!=n.id?(this.active=n.id,this.direction=n.start?n.start:this.start):this.direction=this.getNextSortDirection(n),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(n){if(!n)return"";let m=function Q(de,D){let n=["asc","desc"];return"desc"==de&&n.reverse(),D||n.push(""),n}(n.start||this.start,n?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),h=m.indexOf(this.direction)+1;return h>=m.length&&(h=0),m[h]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU($,8))};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",e.L39],disabled:[2,"matSortDisabled","disabled",e.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],standalone:!0,features:[e.GFd,e.OA$]})}return de})();const J=I.ed.ENTERING+" "+I.r5.STANDARD_CURVE,ee={indicator:(0,f.hZ)("indicator",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"translateY(0px)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"translateY(10px)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),leftPointer:(0,f.hZ)("leftPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),rightPointer:(0,f.hZ)("rightPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),arrowOpacity:(0,f.hZ)("arrowOpacity",[(0,f.wk)("desc-to-active, asc-to-active, active",(0,f.iF)({opacity:1})),(0,f.wk)("desc-to-hint, asc-to-hint, hint",(0,f.iF)({opacity:.54})),(0,f.wk)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,f.iF)({opacity:0})),(0,f.kY)("* => asc, * => desc, * => active, * => hint, * => void",(0,f.i0)("0ms")),(0,f.kY)("* <=> *",(0,f.i0)(J))]),arrowPosition:(0,f.hZ)("arrowPosition",[(0,f.kY)("* => desc-to-hint, * => desc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(-25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-desc, * => active-to-desc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(25%)"})]))),(0,f.kY)("* => asc-to-hint, * => asc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-asc, * => active-to-asc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(-25%)"})]))),(0,f.wk)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,f.iF)({transform:"translateY(0)"})),(0,f.wk)("hint-to-desc, active-to-desc, desc",(0,f.iF)({transform:"translateY(-25%)"})),(0,f.wk)("hint-to-asc, active-to-asc, asc",(0,f.iF)({transform:"translateY(25%)"}))]),allowChildren:(0,f.hZ)("allowChildren",[(0,f.kY)("* <=> *",[(0,f.P)("@*",(0,f.MA)(),{optional:!0})])])};let ie=(()=>{class de{constructor(){this.changes=new l.B}static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275prov=e.jDH({token:de,factory:de.\u0275fac,providedIn:"root"})}return de})();const ae={provide:ie,deps:[[new e.Xx1,new e.kdw,ie]],useFactory:function ge(de){return de||new ie}};let Me=(()=>{class de{get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(n){this._updateSortActionDescription(n)}constructor(n,c,m,h,C,k,L,_){this._intl=n,this._changeDetectorRef=c,this._sort=m,this._columnDef=h,this._focusMonitor=C,this._elementRef=k,this._ariaDescriber=L,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this.disabled=!1,this._sortActionDescription="Sort",_?.arrowPosition&&(this.arrowPosition=_?.arrowPosition),this._handleStateChanges()}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(n=>{const c=!!n;c!==this._showIndicatorHint&&(this._setIndicatorHintVisible(c),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_setIndicatorHintVisible(n){this._isDisabled()&&n||(this._showIndicatorHint=n,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(n){this._viewState=n||{},this._disableViewStateAnimation&&(this._viewState={toState:n.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(n){!this._isDisabled()&&(n.keyCode===w.t6||n.keyCode===w.Fm)&&(n.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 n=this._viewState.fromState;return(n?`${n}-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(n){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,n)),this._sortActionDescription=n}_handleStateChanges(){this._rerenderSubscription=(0,x.h)(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()})}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU(ie),e.rXU(e.gRc),e.rXU(j,8),e.rXU("MAT_SORT_HEADER_COLUMN_DEF",8),e.rXU(t.FN),e.rXU(e.aKT),e.rXU(t.vr,8),e.rXU($,8))};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(c,m){1&c&&e.bIt("click",function(){return m._handleClick()})("keydown",function(C){return m._handleKeydown(C)})("mouseenter",function(){return m._setIndicatorHintVisible(!0)})("mouseleave",function(){return m._setIndicatorHintVisible(!1)}),2&c&&(e.BMQ("aria-sort",m._getAriaSortAttribute()),e.AVh("mat-sort-header-disabled",m._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",e.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",e.L39]},exportAs:["matSortHeader"],standalone:!0,features:[e.GFd,e.aNF],attrs:d,ngContentSelectors:T,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[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,m){1&c&&(e.NAR(),e.j41(0,"div",0)(1,"div",1),e.SdG(2),e.k0s(),e.DNE(3,y,6,6,"div",2),e.k0s()),2&c&&(e.AVh("mat-sort-header-sorted",m._isSorted())("mat-sort-header-position-before","before"===m.arrowPosition),e.BMQ("tabindex",m._isDisabled()?null:0)("role",m._isDisabled()?null:"button"),e.R7$(3),e.vxM(m._renderArrow()?3:-1))},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-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.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;color:var(--mat-sort-arrow-color);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}"],encapsulation:2,data:{animation:[ee.indicator,ee.leftPointer,ee.rightPointer,ee.arrowOpacity,ee.arrowPosition,ee.allowChildren]},changeDetection:0})}return de})(),Te=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275mod=e.$C({type:de});static#i=this.\u0275inj=e.G2t({providers:[ae],imports:[I.yE]})}return de})()},6013:(Qe,te,g)=>{"use strict";g.d(te,{F7:()=>pe,FR:()=>Ze,M6:()=>be,Ti:()=>ze,V5:()=>_e,aP:()=>_t,xJ:()=>ke});var e=g(6939),t=g(7768),w=g(177),S=g(4438),l=g(6600),x=g(9213),f=g(8617),I=g(1413),d=g(8359),T=g(8203),y=g(5558),F=g(6354),R=g(9172),z=g(6977),W=g(3294),$=g(9969),j=g(6860);function Q(at,pt){if(1&at&&S.eu8(0,2),2&at){const Xt=S.XpG();S.Y8G("ngTemplateOutlet",Xt.iconOverrides[Xt.state])("ngTemplateOutletContext",Xt._getIconContext())}}function J(at,pt){if(1&at&&(S.j41(0,"span",7),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(2);S.R7$(),S.JRh(Xt._getDefaultTextForState(Xt.state))}}function ee(at,pt){if(1&at&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(3);S.R7$(),S.JRh(Xt._intl.completedLabel)}}function ie(at,pt){if(1&at&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(3);S.R7$(),S.JRh(Xt._intl.editableLabel)}}function ge(at,pt){if(1&at&&(S.DNE(0,ee,2,1,"span",8)(1,ie,2,1,"span",8),S.j41(2,"mat-icon",7),S.EFF(3),S.k0s()),2&at){const Xt=S.XpG(2);S.vxM("done"===Xt.state?0:"edit"===Xt.state?1:-1),S.R7$(3),S.JRh(Xt._getDefaultTextForState(Xt.state))}}function ae(at,pt){if(1&at&&S.DNE(0,J,2,1,"span",7)(1,ge,4,2,"mat-icon",7),2&at){let Xt;const ye=S.XpG();S.vxM("number"===(Xt=ye.state)?0:1)}}function Me(at,pt){1&at&&(S.j41(0,"div",4),S.eu8(1,9),S.k0s()),2&at&&(S.R7$(),S.Y8G("ngTemplateOutlet",pt.template))}function Te(at,pt){if(1&at&&(S.j41(0,"div",4),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt.label)}}function de(at,pt){if(1&at&&(S.j41(0,"div",5),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt._intl.optionalLabel)}}function D(at,pt){if(1&at&&(S.j41(0,"div",6),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt.errorMessage)}}const n=["*"];function c(at,pt){}function m(at,pt){if(1&at&&(S.SdG(0),S.DNE(1,c,0,0,"ng-template",0)),2&at){const Xt=S.XpG();S.R7$(),S.Y8G("cdkPortalOutlet",Xt._portal)}}const h=(at,pt)=>({step:at,i:pt}),C=at=>({animationDuration:at}),k=(at,pt)=>({value:at,params:pt});function L(at,pt){1&at&&S.SdG(0)}function _(at,pt){1&at&&S.nrm(0,"div",6)}function r(at,pt){if(1&at&&(S.eu8(0,5),S.DNE(1,_,1,0,"div",6)),2&at){const Xt=pt.$implicit,ye=pt.$index,ue=pt.$count;S.XpG(2);const Ie=S.sdS(4);S.Y8G("ngTemplateOutlet",Ie)("ngTemplateOutletContext",S.l_i(3,h,Xt,ye)),S.R7$(),S.vxM(ye!==ue-1?1:-1)}}function v(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"div",7),S.bIt("@horizontalStepTransition.done",function(ue){S.eBV(Xt);const Ie=S.XpG(2);return S.Njj(Ie._animationDone.next(ue))}),S.eu8(1,8),S.k0s()}if(2&at){const Xt=pt.$implicit,ye=pt.$index,ue=S.XpG(2);S.AVh("mat-horizontal-stepper-content-inactive",ue.selectedIndex!==ye),S.Y8G("@horizontalStepTransition",S.l_i(8,k,ue._getAnimationDirection(ye),S.eq3(6,C,ue._getAnimationDuration())))("id",ue._getStepContentId(ye)),S.BMQ("aria-labelledby",ue._getStepLabelId(ye)),S.R7$(),S.Y8G("ngTemplateOutlet",Xt.content)}}function V(at,pt){if(1&at&&(S.j41(0,"div",1)(1,"div",2),S.Z7z(2,r,2,6,null,null,S.fX1),S.k0s(),S.j41(4,"div",3),S.Z7z(5,v,2,11,"div",4,S.fX1),S.k0s()()),2&at){const Xt=S.XpG();S.R7$(2),S.Dyx(Xt.steps),S.R7$(3),S.Dyx(Xt.steps)}}function N(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"div",9),S.eu8(1,5),S.j41(2,"div",10)(3,"div",11),S.bIt("@verticalStepTransition.done",function(ue){S.eBV(Xt);const Ie=S.XpG(2);return S.Njj(Ie._animationDone.next(ue))}),S.j41(4,"div",12),S.eu8(5,8),S.k0s()()()()}if(2&at){const Xt=pt.$implicit,ye=pt.$index,ue=pt.$count,Ie=S.XpG(2),He=S.sdS(4);S.R7$(),S.Y8G("ngTemplateOutlet",He)("ngTemplateOutletContext",S.l_i(10,h,Xt,ye)),S.R7$(),S.AVh("mat-stepper-vertical-line",ye!==ue-1),S.R7$(),S.AVh("mat-vertical-stepper-content-inactive",Ie.selectedIndex!==ye),S.Y8G("@verticalStepTransition",S.l_i(15,k,Ie._getAnimationDirection(ye),S.eq3(13,C,Ie._getAnimationDuration())))("id",Ie._getStepContentId(ye)),S.BMQ("aria-labelledby",Ie._getStepLabelId(ye)),S.R7$(2),S.Y8G("ngTemplateOutlet",Xt.content)}}function ne(at,pt){if(1&at&&S.Z7z(0,N,6,18,"div",9,S.fX1),2&at){const Xt=S.XpG();S.Dyx(Xt.steps)}}function Ee(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"mat-step-header",13),S.bIt("click",function(){const ue=S.eBV(Xt).step;return S.Njj(ue.select())})("keydown",function(ue){S.eBV(Xt);const Ie=S.XpG();return S.Njj(Ie._onKeydown(ue))}),S.k0s()}if(2&at){const Xt=pt.step,ye=pt.i,ue=S.XpG();S.AVh("mat-horizontal-stepper-header","horizontal"===ue.orientation)("mat-vertical-stepper-header","vertical"===ue.orientation),S.Y8G("tabIndex",ue._getFocusIndex()===ye?0:-1)("id",ue._getStepLabelId(ye))("index",ye)("state",ue._getIndicatorType(ye,Xt.state))("label",Xt.stepLabel||Xt.label)("selected",ue.selectedIndex===ye)("active",ue._stepIsNavigable(ye,Xt))("optional",Xt.optional)("errorMessage",Xt.errorMessage)("iconOverrides",ue._iconOverrides)("disableRipple",ue.disableRipple||!ue._stepIsNavigable(ye,Xt))("color",Xt.color||ue.color),S.BMQ("aria-posinset",ye+1)("aria-setsize",ue.steps.length)("aria-controls",ue._getStepContentId(ye))("aria-selected",ue.selectedIndex==ye)("aria-label",Xt.ariaLabel||null)("aria-labelledby",!Xt.ariaLabel&&Xt.ariaLabelledby?Xt.ariaLabelledby:null)("aria-disabled",!ue._stepIsNavigable(ye,Xt)||null)}}let ze=(()=>{class at extends t.nb{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["","matStepLabel",""]],standalone:!0,features:[S.Vt3]})}return at})(),qe=(()=>{class at{constructor(){this.changes=new I.B,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}static#e=this.\u0275fac=function(ye){return new(ye||at)};static#t=this.\u0275prov=S.jDH({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})();const se={provide:qe,deps:[[new S.Xx1,new S.kdw,qe]],useFactory:function Ke(at){return at||new qe}};let X=(()=>{class at extends t.oX{constructor(Xt,ye,ue,Ie){super(ue),this._intl=Xt,this._focusMonitor=ye,this._intlSubscription=Xt.changes.subscribe(()=>Ie.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Xt,ye){Xt?this._focusMonitor.focusVia(this._elementRef,Xt,ye):this._elementRef.nativeElement.focus(ye)}_stringLabel(){return this.label instanceof ze?null:this.label}_templateLabel(){return this.label instanceof ze?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(Xt){return"number"==Xt?`${this.index+1}`:"edit"==Xt?"create":"error"==Xt?"warning":Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(qe),S.rXU(f.FN),S.rXU(S.aKT),S.rXU(S.gRc))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:2,hostBindings:function(ye,ue){2&ye&&S.HbH("mat-"+(ue.color||"primary"))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},standalone:!0,features:[S.Vt3,S.aNF],decls:10,vars:17,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-step-label"],[1,"mat-step-text-label"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[3,"ngTemplateOutlet"]],template:function(ye,ue){if(1&ye&&(S.nrm(0,"div",0),S.j41(1,"div")(2,"div",1),S.DNE(3,Q,1,2,"ng-container",2)(4,ae,2,1),S.k0s()(),S.j41(5,"div",3),S.DNE(6,Me,2,1,"div",4)(7,Te,2,1,"div",4)(8,de,2,1,"div",5)(9,D,2,1,"div",6),S.k0s()),2&ye){let Ie;S.Y8G("matRippleTrigger",ue._getHostElement())("matRippleDisabled",ue.disableRipple),S.R7$(),S.ZvI("mat-step-icon-state-",ue.state," mat-step-icon"),S.AVh("mat-step-icon-selected",ue.selected),S.R7$(2),S.vxM(ue.iconOverrides&&ue.iconOverrides[ue.state]?3:4),S.R7$(2),S.AVh("mat-step-label-active",ue.active)("mat-step-label-selected",ue.selected)("mat-step-label-error","error"==ue.state),S.R7$(),S.vxM((Ie=ue._templateLabel())?6:ue._stringLabel()?7:-1,Ie),S.R7$(2),S.vxM(ue.optional&&"error"!=ue.state?8:-1),S.R7$(),S.vxM("error"===ue.state?9:-1)}},dependencies:[l.r6,w.T3,x.An],styles:['.mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-step-header:focus .mat-focus-indicator::before{content:""}.mat-step-header:hover[aria-disabled=true]{cursor:default}.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:var(--mat-stepper-header-hover-state-layer-color);border-radius:var(--mat-stepper-header-hover-state-layer-shape)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color);border-radius:var(--mat-stepper-header-focus-state-layer-shape)}@media(hover: none){.mat-step-header:hover{background:none}}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.cdk-high-contrast-active .mat-step-header[aria-disabled=true]{outline-color:GrayText}.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-label,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-icon,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-optional{color:GrayText}.mat-step-optional{font-size:12px;color:var(--mat-stepper-header-optional-label-text-color)}.mat-step-sub-label-error{font-size:12px;font-weight:normal}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative;color:var(--mat-stepper-header-icon-foreground-color);background-color:var(--mat-stepper-header-icon-background-color)}.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{background-color:var(--mat-stepper-header-error-state-icon-background-color);color:var(--mat-stepper-header-error-state-icon-foreground-color)}.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;font-family:var(--mat-stepper-header-label-text-font);font-size:var(--mat-stepper-header-label-text-size);font-weight:var(--mat-stepper-header-label-text-weight);color:var(--mat-stepper-header-label-text-color)}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color)}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color);font-size:var(--mat-stepper-header-error-state-label-text-size)}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size);font-weight:var(--mat-stepper-header-selected-state-label-text-weight)}.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}.mat-step-icon-selected{background-color:var(--mat-stepper-header-selected-state-icon-background-color);color:var(--mat-stepper-header-selected-state-icon-foreground-color)}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color);color:var(--mat-stepper-header-done-state-icon-foreground-color)}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color);color:var(--mat-stepper-header-edit-state-icon-foreground-color)}'],encapsulation:2,changeDetection:0})}return at})();const fe={horizontalStepTransition:(0,$.hZ)("horizontalStepTransition",[(0,$.wk)("previous",(0,$.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,$.wk)("current",(0,$.iF)({transform:"none",visibility:"inherit"})),(0,$.wk)("next",(0,$.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,$.kY)("* => *",(0,$.Os)([(0,$.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)"),(0,$.P)("@*",(0,$.MA)(),{optional:!0})]),{params:{animationDuration:"500ms"}})]),verticalStepTransition:(0,$.hZ)("verticalStepTransition",[(0,$.wk)("previous",(0,$.iF)({height:"0px",visibility:"hidden"})),(0,$.wk)("next",(0,$.iF)({height:"0px",visibility:"hidden"})),(0,$.wk)("current",(0,$.iF)({height:"*",visibility:"inherit"})),(0,$.kY)("* <=> current",(0,$.Os)([(0,$.i0)("{{animationDuration}} cubic-bezier(0.4, 0.0, 0.2, 1)"),(0,$.P)("@*",(0,$.MA)(),{optional:!0})]),{params:{animationDuration:"225ms"}})])};let ke=(()=>{class at{constructor(Xt){this.templateRef=Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:at,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]},standalone:!0})}return at})(),mt=(()=>{class at{constructor(Xt){this._template=Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:at,selectors:[["ng-template","matStepContent",""]],standalone:!0})}return at})(),_e=(()=>{class at extends t.VI{constructor(Xt,ye,ue,Ie){super(Xt,Ie),this._errorStateMatcher=ye,this._viewContainerRef=ue,this._isSelected=d.yU.EMPTY,this.stepLabel=void 0}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,y.n)(()=>this._stepper.selectionChange.pipe((0,F.T)(Xt=>Xt.selectedStep===this),(0,R.Z)(this._stepper.selected===this)))).subscribe(Xt=>{Xt&&this._lazyContent&&!this._portal&&(this._portal=new e.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Xt,ye){return this._errorStateMatcher.isErrorState(Xt,ye)||!!(Xt&&Xt.invalid&&this.interacted)}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU((0,S.Rfq)(()=>be)),S.rXU(l.es,4),S.rXU(S.c1b),S.rXU(t.x8,8))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-step"]],contentQueries:function(ye,ue,Ie){if(1&ye&&(S.wni(Ie,ze,5),S.wni(Ie,mt,5)),2&ye){let He;S.mGM(He=S.lsd())&&(ue.stepLabel=He.first),S.mGM(He=S.lsd())&&(ue._lazyContent=He.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],standalone:!0,features:[S.Jv_([{provide:l.es,useExisting:at},{provide:t.VI,useExisting:at}]),S.Vt3,S.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(ye,ue){1&ye&&(S.NAR(),S.DNE(0,m,2,1,"ng-template"))},dependencies:[e.I3],encapsulation:2,changeDetection:0})}return at})(),be=(()=>{class at extends t.Up{get animationDuration(){return this._animationDuration}set animationDuration(Xt){this._animationDuration=/^\d+$/.test(Xt)?Xt+"ms":Xt}constructor(Xt,ye,ue){super(Xt,ye,ue),this._stepHeader=void 0,this._steps=void 0,this.steps=new S.rOR,this.animationDone=new S.bkB,this.labelPosition="end",this.headerPosition="top",this._iconOverrides={},this._animationDone=new I.B,this._animationDuration="",this._isServer=!(0,S.WQX)(j.OD).isBrowser;const Ie=ue.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===Ie?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Xt,templateRef:ye})=>this._iconOverrides[Xt]=ye),this.steps.changes.pipe((0,z.Q)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,W.F)((Xt,ye)=>Xt.fromState===ye.fromState&&Xt.toState===ye.toState),(0,z.Q)(this._destroyed)).subscribe(Xt=>{"current"===Xt.toState&&this.animationDone.emit()})}_stepIsNavigable(Xt,ye){return ye.completed||this.selectedIndex===Xt||!this.linear}_getAnimationDuration(){return this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(T.dS,8),S.rXU(S.gRc),S.rXU(S.aKT))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(ye,ue,Ie){if(1&ye&&(S.wni(Ie,_e,5),S.wni(Ie,ke,5)),2&ye){let He;S.mGM(He=S.lsd())&&(ue._steps=He),S.mGM(He=S.lsd())&&(ue._icons=He)}},viewQuery:function(ye,ue){if(1&ye&&S.GBs(X,5),2&ye){let Ie;S.mGM(Ie=S.lsd())&&(ue._stepHeader=Ie)}},hostAttrs:["role","tablist"],hostVars:11,hostBindings:function(ye,ue){2&ye&&(S.BMQ("aria-orientation",ue.orientation),S.AVh("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)("mat-stepper-header-position-bottom","bottom"===ue.headerPosition))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],standalone:!0,features:[S.Jv_([{provide:t.Up,useExisting:at}]),S.Vt3,S.aNF],ngContentSelectors:n,decls:5,vars:2,consts:[["stepTemplate",""],[1,"mat-horizontal-stepper-wrapper"],[1,"mat-horizontal-stepper-header-container"],[1,"mat-horizontal-content-container"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id","mat-horizontal-stepper-content-inactive"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"click","keydown","tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color"]],template:function(ye,ue){if(1&ye&&(S.NAR(),S.DNE(0,L,1,0)(1,V,7,0,"div",1)(2,ne,2,0)(3,Ee,1,23,"ng-template",null,0,S.C5r)),2&ye){let Ie;S.vxM(ue._isServer?0:-1),S.R7$(),S.vxM("horizontal"===(Ie=ue.orientation)?1:"vertical"===Ie?2:-1)}},dependencies:[w.T3,X],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font);background:var(--mat-stepper-container-color)}.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-header-position-bottom .mat-horizontal-stepper-header-container{order:1}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px;border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height) - 24px) / 2) + 12px)}.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;height:var(--mat-stepper-header-height)}.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-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height) - 24px) / 2) 24px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after{top:calc(calc((var(--mat-stepper-header-height) - 24px) / 2) + 12px)}.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;padding:calc((var(--mat-stepper-header-height) - 24px) / 2) 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-wrapper{display:flex;flex-direction:column}.mat-horizontal-stepper-content{outline:0}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-inactive{height:0;overflow:hidden}.mat-horizontal-stepper-content:not(.mat-horizontal-stepper-content-inactive){visibility:inherit !important}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-active .mat-horizontal-content-container{outline:solid 1px}.mat-stepper-header-position-bottom .mat-horizontal-content-container{padding:24px 24px 0 24px}.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;border-left-color:var(--mat-stepper-line-color);top:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-stepper-content:not(.mat-vertical-stepper-content-inactive){visibility:inherit !important}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}'],encapsulation:2,data:{animation:[fe.horizontalStepTransition,fe.verticalStepTransition]},changeDetection:0})}return at})(),pe=(()=>{class at extends t.v5{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(ye,ue){2&ye&&S.Mr5("type",ue.type)},standalone:!0,features:[S.Vt3]})}return at})(),Ze=(()=>{class at extends t.FK{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(ye,ue){2&ye&&S.Mr5("type",ue.type)},standalone:!0,features:[S.Vt3]})}return at})(),_t=(()=>{class at{static#e=this.\u0275fac=function(ye){return new(ye||at)};static#t=this.\u0275mod=S.$C({type:at});static#i=this.\u0275inj=S.G2t({providers:[se,l.es],imports:[l.yE,w.MD,e.jc,t.uY,x.m_,l.pZ,be,X,l.yE]})}return at})()},9159:(Qe,te,g)=>{"use strict";g.d(te,{$R:()=>et,YV:()=>Re,cC:()=>$e,Qo:()=>Ge,Zq:()=>gt,iF:()=>Xi,xW:()=>mi,KS:()=>Fe,tL:()=>Ne,YZ:()=>Pt,ji:()=>Tt,NB:()=>di,iL:()=>Kt,Zl:()=>q,I6:()=>Qt,tP:()=>Li});var e=g(4438),t=g(8203),w=g(5024),S=g(6860),l=g(5542),x=g(177),f=g(1413),I=g(2806),d=g(4412),T=g(4402),y=g(7673),F=g(6977),R=g(6697);const z=[[["caption"]],[["colgroup"],["col"]],"*"],W=["caption","colgroup, col","*"];function $(Mt,it){1&Mt&&e.SdG(0,2)}function j(Mt,it){1&Mt&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",0),e.eu8(3,2)(4,3),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,4),e.k0s())}function Q(Mt,it){1&Mt&&e.eu8(0,1)(1,2)(2,3)(3,4)}const ie=new e.nKC("CDK_TABLE");let ae=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkCellDef",""]],standalone:!0})}return Mt})(),Me=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkHeaderCellDef",""]],standalone:!0})}return Mt})(),Te=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkFooterCellDef",""]],standalone:!0})}return Mt})(),de=(()=>{class Mt{get name(){return this._name}set name(ct){this._setNameInput(ct)}get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}get stickyEnd(){return this._stickyEnd}set stickyEnd(ct){ct!==this._stickyEnd&&(this._stickyEnd=ct,this._hasStickyChanged=!0)}constructor(ct){this._table=ct,this._hasStickyChanged=!1,this._sticky=!1,this._stickyEnd=!1}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(ct){ct&&(this._name=ct,this.cssClassFriendlyName=ct.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkColumnDef",""]],contentQueries:function(wt,Ut,xi){if(1&wt&&(e.wni(xi,ae,5),e.wni(xi,Me,5),e.wni(xi,Te,5)),2&wt){let Si;e.mGM(Si=e.lsd())&&(Ut.cell=Si.first),e.mGM(Si=e.lsd())&&(Ut.headerCell=Si.first),e.mGM(Si=e.lsd())&&(Ut.footerCell=Si.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",e.L39],stickyEnd:[2,"stickyEnd","stickyEnd",e.L39]},standalone:!0,features:[e.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Mt}]),e.GFd]})}return Mt})();class D{constructor(it,ct){ct.nativeElement.classList.add(...it._columnCssClassName)}}let n=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),c=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt);const Ut=ct._table?._getCellRole();Ut&&wt.nativeElement.setAttribute("role",Ut)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),m=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt);const Ut=ct._table?._getCellRole();Ut&&wt.nativeElement.setAttribute("role",Ut)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],standalone:!0,features:[e.Vt3]})}return Mt})();class h{constructor(){this.tasks=[],this.endTasks=[]}}const C=new e.nKC("_COALESCED_STYLE_SCHEDULER");let k=(()=>{class Mt{constructor(ct){this._ngZone=ct,this._currentSchedule=null,this._destroyed=new f.B}schedule(ct){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(ct)}scheduleEnd(ct){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(ct)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new h,this._getScheduleObservable().pipe((0,F.Q)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const ct=this._currentSchedule;this._currentSchedule=new h;for(const wt of ct.tasks)wt();for(const wt of ct.endTasks)wt()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,I.H)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,R.s)(1))}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.KVO(e.SKi))};static#t=this.\u0275prov=e.jDH({token:Mt,factory:Mt.\u0275fac})}return Mt})(),_=(()=>{class Mt{constructor(ct,wt){this.template=ct,this._differs=wt}ngOnChanges(ct){if(!this._columnsDiffer){const wt=ct.columns&&ct.columns.currentValue||[];this._columnsDiffer=this._differs.find(wt).create(),this._columnsDiffer.diff(wt)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(ct){return this instanceof r?ct.headerCell.template:this instanceof v?ct.footerCell.template:ct.cell.template}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3))};static#t=this.\u0275dir=e.FsC({type:Mt,features:[e.OA$]})}return Mt})(),r=(()=>{class Mt extends _{get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}constructor(ct,wt,Ut){super(ct,wt),this._table=Ut,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ct){super.ngOnChanges(ct)}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}return Mt})(),v=(()=>{class Mt extends _{get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}constructor(ct,wt,Ut){super(ct,wt),this._table=Ut,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ct){super.ngOnChanges(ct)}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}return Mt})(),V=(()=>{class Mt extends _{constructor(ct,wt,Ut){super(ct,wt),this._table=Ut}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},standalone:!0,features:[e.Vt3]})}return Mt})(),N=(()=>{class Mt{static#e=this.mostRecentCellOutlet=null;constructor(ct){this._viewContainer=ct,Mt.mostRecentCellOutlet=this}ngOnDestroy(){Mt.mostRecentCellOutlet===this&&(Mt.mostRecentCellOutlet=null)}static#t=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b))};static#i=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkCellOutlet",""]],standalone:!0})}return Mt})(),ne=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Ee=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),ze=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),qe=(()=>{class Mt{constructor(ct){this.templateRef=ct,this._contentClassName="cdk-no-data-row"}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["ng-template","cdkNoDataRow",""]],standalone:!0})}return Mt})();const Ke=["top","bottom","left","right"];class se{constructor(it,ct,wt,Ut,xi=!0,Si=!0,zi){this._isNativeHtmlTable=it,this._stickCellCss=ct,this.direction=wt,this._coalescedStyleScheduler=Ut,this._isBrowser=xi,this._needsPositionStickyOnElement=Si,this._positionListener=zi,this._cachedCellWidths=[],this._borderCellCss={top:`${ct}-border-elem-top`,bottom:`${ct}-border-elem-bottom`,left:`${ct}-border-elem-left`,right:`${ct}-border-elem-right`}}clearStickyPositioning(it,ct){const wt=[];for(const Ut of it)if(Ut.nodeType===Ut.ELEMENT_NODE){wt.push(Ut);for(let xi=0;xi{for(const Ut of wt)this._removeStickyStyle(Ut,ct)})}updateStickyColumns(it,ct,wt,Ut=!0){it.length&&this._isBrowser&&(ct.some(xi=>xi)||wt.some(xi=>xi))?this._coalescedStyleScheduler.schedule(()=>{const xi=it[0],Si=xi.children.length,zi=this._getCellWidths(xi,Ut),en=this._getStickyStartColumnPositions(zi,ct),Ni=this._getStickyEndColumnPositions(zi,wt),fn=ct.lastIndexOf(!0),Zt=wt.indexOf(!0),bt="rtl"===this.direction,re=bt?"right":"left",je=bt?"left":"right";for(const Ce of it)for(let ot=0;otct[ot]?Ce:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Zt?[]:zi.slice(Zt).map((Ce,ot)=>wt[ot+Zt]?Ce:null).reverse()}))}):this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]}))}stickRows(it,ct,wt){this._isBrowser&&this._coalescedStyleScheduler.schedule(()=>{const Ut="bottom"===wt?it.slice().reverse():it,xi="bottom"===wt?ct.slice().reverse():ct,Si=[],zi=[],en=[];for(let fn=0,Zt=0;fn{const wt=it.querySelector("tfoot");wt&&(ct.some(Ut=>!Ut)?this._removeStickyStyle(wt,["bottom"]):this._addStickyStyle(wt,"bottom",0,!1))})}_removeStickyStyle(it,ct){for(const Ut of ct)it.style[Ut]="",it.classList.remove(this._borderCellCss[Ut]);Ke.some(Ut=>-1===ct.indexOf(Ut)&&it.style[Ut])?it.style.zIndex=this._getCalculatedZIndex(it):(it.style.zIndex="",this._needsPositionStickyOnElement&&(it.style.position=""),it.classList.remove(this._stickCellCss))}_addStickyStyle(it,ct,wt,Ut){it.classList.add(this._stickCellCss),Ut&&it.classList.add(this._borderCellCss[ct]),it.style[ct]=`${wt}px`,it.style.zIndex=this._getCalculatedZIndex(it),this._needsPositionStickyOnElement&&(it.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(it){const ct={top:100,bottom:10,left:1,right:1};let wt=0;for(const Ut of Ke)it.style[Ut]&&(wt+=ct[Ut]);return wt?`${wt}`:""}_getCellWidths(it,ct=!0){if(!ct&&this._cachedCellWidths.length)return this._cachedCellWidths;const wt=[],Ut=it.children;for(let xi=0;xi0;xi--)ct[xi]&&(wt[xi]=Ut,Ut+=it[xi]);return wt}}const pe=new e.nKC("CDK_SPL");let _t=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._rowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","rowOutlet",""]],standalone:!0})}return Mt})(),at=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._headerRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","headerRowOutlet",""]],standalone:!0})}return Mt})(),pt=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._footerRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","footerRowOutlet",""]],standalone:!0})}return Mt})(),Xt=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._noDataRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","noDataRowOutlet",""]],standalone:!0})}return Mt})(),Ie=(()=>{class Mt{_getCellRole(){if(void 0===this._cellRoleInternal){const ct=this._elementRef.nativeElement.getAttribute("role"),wt="grid"===ct||"treegrid"===ct?"gridcell":"cell";this._cellRoleInternal=this._isNativeHtmlTable&&"cell"===wt?null:wt}return this._cellRoleInternal}get trackBy(){return this._trackByFn}set trackBy(ct){this._trackByFn=ct}get dataSource(){return this._dataSource}set dataSource(ct){this._dataSource!==ct&&this._switchDataSource(ct)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(ct){this._multiTemplateDataRows=ct,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(ct){this._fixedLayout=ct,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}constructor(ct,wt,Ut,xi,Si,zi,en,Ni,fn,Zt,bt,re){this._differs=ct,this._changeDetectorRef=wt,this._elementRef=Ut,this._dir=Si,this._platform=en,this._viewRepeater=Ni,this._coalescedStyleScheduler=fn,this._viewportRuler=Zt,this._stickyPositioningListener=bt,this._ngZone=re,this._onDestroy=new f.B,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._hasAllOutlets=!1,this._hasInitialized=!1,this._cellRoleInternal=void 0,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new e.bkB,this.viewChange=new d.t({start:0,end:Number.MAX_VALUE}),xi||Ut.nativeElement.setAttribute("role","table"),this._document=zi,this._isServer=!en.isBrowser,this._isNativeHtmlTable="TABLE"===Ut.nativeElement.nodeName}ngOnInit(){this._setupStickyStyler(),this._dataDiffer=this._differs.find([]).create((ct,wt)=>this.trackBy?this.trackBy(wt.dataIndex,wt.data):wt),this._viewportRuler.change().pipe((0,F.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(ct=>{ct?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,w.y4)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const ct=this._dataDiffer.diff(this._renderRows);if(!ct)return this._updateNoDataRow(),void this.contentChanged.next();const wt=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(ct,wt,(Ut,xi,Si)=>this._getEmbeddedViewArgs(Ut.item,Si),Ut=>Ut.item.data,Ut=>{Ut.operation===w.Q3.INSERTED&&Ut.context&&this._renderCellTemplateForItem(Ut.record.item.rowDef,Ut.context)}),this._updateRowIndexContext(),ct.forEachIdentityChange(Ut=>{wt.get(Ut.currentIndex).context.$implicit=Ut.item.data}),this._updateNoDataRow(),this._ngZone&&e.SKi.isInAngularZone()?this._ngZone.onStable.pipe((0,R.s)(1),(0,F.Q)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(ct){this._customColumnDefs.add(ct)}removeColumnDef(ct){this._customColumnDefs.delete(ct)}addRowDef(ct){this._customRowDefs.add(ct)}removeRowDef(ct){this._customRowDefs.delete(ct)}addHeaderRowDef(ct){this._customHeaderRowDefs.add(ct),this._headerRowDefChanged=!0}removeHeaderRowDef(ct){this._customHeaderRowDefs.delete(ct),this._headerRowDefChanged=!0}addFooterRowDef(ct){this._customFooterRowDefs.add(ct),this._footerRowDefChanged=!0}removeFooterRowDef(ct){this._customFooterRowDefs.delete(ct),this._footerRowDefChanged=!0}setNoDataRow(ct){this._customNoDataRow=ct}updateStickyHeaderRowStyles(){const ct=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Ut=Xe(this._headerRowOutlet,"thead");Ut&&(Ut.style.display=ct.length?"":"none")}const wt=this._headerRowDefs.map(Ut=>Ut.sticky);this._stickyStyler.clearStickyPositioning(ct,["top"]),this._stickyStyler.stickRows(ct,wt,"top"),this._headerRowDefs.forEach(Ut=>Ut.resetStickyChanged())}updateStickyFooterRowStyles(){const ct=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Ut=Xe(this._footerRowOutlet,"tfoot");Ut&&(Ut.style.display=ct.length?"":"none")}const wt=this._footerRowDefs.map(Ut=>Ut.sticky);this._stickyStyler.clearStickyPositioning(ct,["bottom"]),this._stickyStyler.stickRows(ct,wt,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,wt),this._footerRowDefs.forEach(Ut=>Ut.resetStickyChanged())}updateStickyColumnStyles(){const ct=this._getRenderedRows(this._headerRowOutlet),wt=this._getRenderedRows(this._rowOutlet),Ut=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...ct,...wt,...Ut],["left","right"]),this._stickyColumnStylesNeedReset=!1),ct.forEach((xi,Si)=>{this._addStickyColumnStyles([xi],this._headerRowDefs[Si])}),this._rowDefs.forEach(xi=>{const Si=[];for(let zi=0;zi{this._addStickyColumnStyles([xi],this._footerRowDefs[Si])}),Array.from(this._columnDefsByName.values()).forEach(xi=>xi.resetStickyChanged())}_outletAssigned(){!this._hasAllOutlets&&this._rowOutlet&&this._headerRowOutlet&&this._footerRowOutlet&&this._noDataRowOutlet&&(this._hasAllOutlets=!0,this._canRender()&&this._render())}_canRender(){return this._hasAllOutlets&&this._hasInitialized}_render(){this._cacheRowDefs(),this._cacheColumnDefs();const wt=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||wt,this._forceRecalculateCellWidths=wt,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()}_getAllRenderRows(){const ct=[],wt=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let Ut=0;Ut{const zi=Ut&&Ut.has(Si)?Ut.get(Si):[];if(zi.length){const en=zi.shift();return en.dataIndex=wt,en}return{data:ct,rowDef:Si,dataIndex:wt}})}_cacheColumnDefs(){this._columnDefsByName.clear(),He(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(wt=>{this._columnDefsByName.has(wt.name),this._columnDefsByName.set(wt.name,wt)})}_cacheRowDefs(){this._headerRowDefs=He(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=He(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=He(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const ct=this._rowDefs.filter(wt=>!wt.when);this._defaultRowDef=ct[0]}_renderUpdatedColumns(){const ct=(Si,zi)=>Si||!!zi.getColumnsDiff(),wt=this._rowDefs.reduce(ct,!1);wt&&this._forceRenderDataRows();const Ut=this._headerRowDefs.reduce(ct,!1);Ut&&this._forceRenderHeaderRows();const xi=this._footerRowDefs.reduce(ct,!1);return xi&&this._forceRenderFooterRows(),wt||Ut||xi}_switchDataSource(ct){this._data=[],(0,w.y4)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),ct||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=ct}_observeRenderChanges(){if(!this.dataSource)return;let ct;(0,w.y4)(this.dataSource)?ct=this.dataSource.connect(this):(0,T.A)(this.dataSource)?ct=this.dataSource:Array.isArray(this.dataSource)&&(ct=(0,y.of)(this.dataSource)),this._renderChangeSubscription=ct.pipe((0,F.Q)(this._onDestroy)).subscribe(wt=>{this._data=wt||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((ct,wt)=>this._renderRow(this._headerRowOutlet,ct,wt)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((ct,wt)=>this._renderRow(this._footerRowOutlet,ct,wt)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(ct,wt){const Ut=Array.from(wt.columns||[]).map(zi=>this._columnDefsByName.get(zi)),xi=Ut.map(zi=>zi.sticky),Si=Ut.map(zi=>zi.stickyEnd);this._stickyStyler.updateStickyColumns(ct,xi,Si,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(ct){const wt=[];for(let Ut=0;Ut!xi.when||xi.when(wt,ct));else{let xi=this._rowDefs.find(Si=>Si.when&&Si.when(wt,ct))||this._defaultRowDef;xi&&Ut.push(xi)}return Ut}_getEmbeddedViewArgs(ct,wt){return{templateRef:ct.rowDef.template,context:{$implicit:ct.data},index:wt}}_renderRow(ct,wt,Ut,xi={}){const Si=ct.viewContainer.createEmbeddedView(wt.template,xi,Ut);return this._renderCellTemplateForItem(wt,xi),Si}_renderCellTemplateForItem(ct,wt){for(let Ut of this._getCellTemplates(ct))N.mostRecentCellOutlet&&N.mostRecentCellOutlet._viewContainer.createEmbeddedView(Ut,wt);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const ct=this._rowOutlet.viewContainer;for(let wt=0,Ut=ct.length;wt{const Ut=this._columnDefsByName.get(wt);return ct.extractCellTemplate(Ut)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const ct=(wt,Ut)=>wt||Ut.hasStickyChanged();this._headerRowDefs.reduce(ct,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(ct,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(ct,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new se(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,y.of)()).pipe((0,F.Q)(this._onDestroy)).subscribe(wt=>{this._stickyStyler.direction=wt,this.updateStickyColumnStyles()})}_getOwnDefs(ct){return ct.filter(wt=>!wt._table||wt._table===this)}_updateNoDataRow(){const ct=this._customNoDataRow||this._noDataRow;if(!ct)return;const wt=0===this._rowOutlet.viewContainer.length;if(wt===this._isShowingNoDataRow)return;const Ut=this._noDataRowOutlet.viewContainer;if(wt){const xi=Ut.createEmbeddedView(ct.templateRef),Si=xi.rootNodes[0];1===xi.rootNodes.length&&Si?.nodeType===this._document.ELEMENT_NODE&&(Si.setAttribute("role","row"),Si.classList.add(ct._contentClassName))}else Ut.clear();this._isShowingNoDataRow=wt,this._changeDetectorRef.markForCheck()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e._q3),e.rXU(e.gRc),e.rXU(e.aKT),e.kS0("role"),e.rXU(t.dS,8),e.rXU(x.qQ),e.rXU(S.OD),e.rXU(w.sL),e.rXU(C),e.rXU(l.Xj),e.rXU(pe,12),e.rXU(e.SKi,8))};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(wt,Ut,xi){if(1&wt&&(e.wni(xi,qe,5),e.wni(xi,de,5),e.wni(xi,V,5),e.wni(xi,r,5),e.wni(xi,v,5)),2&wt){let Si;e.mGM(Si=e.lsd())&&(Ut._noDataRow=Si.first),e.mGM(Si=e.lsd())&&(Ut._contentColumnDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentRowDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentHeaderRowDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentFooterRowDefs=Si)}},hostAttrs:[1,"cdk-table"],hostVars:2,hostBindings:function(wt,Ut){2&wt&&e.AVh("cdk-table-fixed-layout",Ut.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:[2,"multiTemplateDataRows","multiTemplateDataRows",e.L39],fixedLayout:[2,"fixedLayout","fixedLayout",e.L39]},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],standalone:!0,features:[e.Jv_([{provide:ie,useExisting:Mt},{provide:w.sL,useClass:w.xn},{provide:C,useClass:k},{provide:pe,useValue:null}]),e.GFd,e.aNF],ngContentSelectors:W,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(wt,Ut){1&wt&&(e.NAR(z),e.SdG(0),e.SdG(1,1),e.DNE(2,$,1,0)(3,j,7,0)(4,Q,4,0)),2&wt&&(e.R7$(2),e.vxM(Ut._isServer?2:-1),e.R7$(),e.vxM(Ut._isNativeHtmlTable?3:4))},dependencies:[at,_t,Xt,pt],styles:[".cdk-table-fixed-layout{table-layout:fixed}"],encapsulation:2})}return Mt})();function He(Mt,it){return Mt.concat(Array.from(it))}function Xe(Mt,it){const ct=it.toUpperCase();let wt=Mt.viewContainer.element.nativeElement;for(;wt;){const Ut=1===wt.nodeType?wt.nodeName:null;if(Ut===ct)return wt;if("TABLE"===Ut)break;wt=wt.parentNode}return null}let rt=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275mod=e.$C({type:Mt});static#i=this.\u0275inj=e.G2t({imports:[l.E9]})}return Mt})();var Nt=g(6600),Et=g(7786),Vt=g(4572),oe=g(4085),tt=g(6354);const $t=[[["caption"]],[["colgroup"],["col"]],"*"],zt=["caption","colgroup, col","*"];function Jt(Mt,it){1&Mt&&e.SdG(0,2)}function St(Mt,it){1&Mt&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",2),e.eu8(3,3)(4,4),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,5),e.k0s())}function dt(Mt,it){1&Mt&&e.eu8(0,1)(1,3)(2,4)(3,5)}let q=(()=>{class Mt extends Ie{constructor(){super(...arguments),this.stickyCssClass="mat-mdc-table-sticky",this.needsPositionStickyOnElement=!1}static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(wt,Ut){2&wt&&e.AVh("mdc-table-fixed-layout",Ut.fixedLayout)},exportAs:["matTable"],standalone:!0,features:[e.Jv_([{provide:Ie,useExisting:Mt},{provide:ie,useExisting:Mt},{provide:C,useClass:k},{provide:w.sL,useClass:w.xn},{provide:pe,useValue:null}]),e.Vt3,e.aNF],ngContentSelectors:zt,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(wt,Ut){1&wt&&(e.NAR($t),e.SdG(0),e.SdG(1,1),e.DNE(2,Jt,1,0)(3,St,7,0)(4,dt,4,0)),2&wt&&(e.R7$(2),e.vxM(Ut._isServer?2:-1),e.R7$(),e.vxM(Ut._isNativeHtmlTable?3:4))},dependencies:[at,_t,Xt,pt],styles:[".mat-mdc-table-sticky{position:sticky !important}.mdc-data-table{-webkit-overflow-scrolling:touch;display:inline-flex;flex-direction:column;box-sizing:border-box;position:relative}.mdc-data-table__table-container{-webkit-overflow-scrolling:touch;overflow-x:auto;width:100%}.mdc-data-table__table{min-width:100%;border:0;white-space:nowrap;border-spacing:0;table-layout:fixed}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell,.mdc-data-table__cell[dir=rtl]{text-align:right}.mdc-data-table__cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__cell--numeric,.mdc-data-table__cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell{box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mdc-data-table__header-cell,.mdc-data-table__header-cell[dir=rtl]{text-align:right}.mdc-data-table__header-cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__header-cell--numeric,.mdc-data-table__header-cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell-wrapper{align-items:center;display:inline-flex;vertical-align:middle}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px 0 16px}.mdc-data-table__header-cell--checkbox,.mdc-data-table__cell--checkbox{padding-left:4px;padding-right:0}[dir=rtl] .mdc-data-table__header-cell--checkbox,[dir=rtl] .mdc-data-table__cell--checkbox,.mdc-data-table__header-cell--checkbox[dir=rtl],.mdc-data-table__cell--checkbox[dir=rtl]{padding-left:0;padding-right:4px}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}.mat-mdc-table{table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color)}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-header-headline-font, Roboto, sans-serif);line-height:var(--mat-table-header-headline-line-height);font-size:var(--mat-table-header-headline-size, 14px);font-weight:var(--mat-table-header-headline-weight, 500)}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, Roboto, sans-serif);line-height:var(--mat-table-row-item-label-text-line-height);font-size:var(--mat-table-row-item-label-text-size, 14px);font-weight:var(--mat-table-row-item-label-text-weight)}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-footer-supporting-text-font, Roboto, sans-serif);line-height:var(--mat-table-footer-supporting-text-line-height);font-size:var(--mat-table-footer-supporting-text-size, 14px);font-weight:var(--mat-table-footer-supporting-text-weight);letter-spacing:var(--mat-table-footer-supporting-text-tracking)}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking);font-weight:inherit;line-height:inherit}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking);line-height:inherit}.mdc-data-table__row:last-child .mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking)}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}"],encapsulation:2})}return Mt})(),Re=(()=>{class Mt extends ae{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matCellDef",""]],standalone:!0,features:[e.Jv_([{provide:ae,useExisting:Mt}]),e.Vt3]})}return Mt})(),Ne=(()=>{class Mt extends Me{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matHeaderCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Me,useExisting:Mt}]),e.Vt3]})}return Mt})(),gt=(()=>{class Mt extends Te{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matFooterCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Te,useExisting:Mt}]),e.Vt3]})}return Mt})(),$e=(()=>{class Mt extends de{get name(){return this._name}set name(ct){this._setNameInput(ct)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},standalone:!0,features:[e.Jv_([{provide:de,useExisting:Mt},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Mt}]),e.Vt3]})}return Mt})(),Fe=(()=>{class Mt extends n{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),Ge=(()=>{class Mt extends c{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),et=(()=>{class Mt extends m{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),Tt=(()=>{class Mt extends r{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:r,useExisting:Mt}]),e.GFd,e.Vt3]})}return Mt})(),mi=(()=>{class Mt extends v{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:v,useExisting:Mt}]),e.GFd,e.Vt3]})}return Mt})(),Kt=(()=>{class Mt extends V{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},standalone:!0,features:[e.Jv_([{provide:V,useExisting:Mt}]),e.Vt3]})}return Mt})(),Pt=(()=>{class Mt extends ne{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],standalone:!0,features:[e.Jv_([{provide:ne,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Xi=(()=>{class Mt extends Ee{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],standalone:!0,features:[e.Jv_([{provide:Ee,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),di=(()=>{class Mt extends ze{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],standalone:!0,features:[e.Jv_([{provide:ze,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Li=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275mod=e.$C({type:Mt});static#i=this.\u0275inj=e.G2t({imports:[Nt.yE,rt,Nt.yE]})}return Mt})();class Qt extends w.qS{get data(){return this._data.value}set data(it){it=Array.isArray(it)?it:[],this._data.next(it),this._renderChangesSubscription||this._filterData(it)}get filter(){return this._filter.value}set filter(it){this._filter.next(it),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(it){this._sort=it,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(it){this._paginator=it,this._updateChangeSubscription()}constructor(it=[]){super(),this._renderData=new d.t([]),this._filter=new d.t(""),this._internalPageChanges=new f.B,this._renderChangesSubscription=null,this.sortingDataAccessor=(ct,wt)=>{const Ut=ct[wt];if((0,oe.o1)(Ut)){const xi=Number(Ut);return xi<9007199254740991?xi:Ut}return Ut},this.sortData=(ct,wt)=>{const Ut=wt.active,xi=wt.direction;return Ut&&""!=xi?ct.sort((Si,zi)=>{let en=this.sortingDataAccessor(Si,Ut),Ni=this.sortingDataAccessor(zi,Ut);const fn=typeof en,Zt=typeof Ni;fn!==Zt&&("number"===fn&&(en+=""),"number"===Zt&&(Ni+=""));let bt=0;return null!=en&&null!=Ni?en>Ni?bt=1:en{const Ut=Object.keys(ct).reduce((Si,zi)=>Si+ct[zi]+"\u25ec","").toLowerCase(),xi=wt.trim().toLowerCase();return-1!=Ut.indexOf(xi)},this._data=new d.t(it),this._updateChangeSubscription()}_updateChangeSubscription(){const it=this._sort?(0,Et.h)(this._sort.sortChange,this._sort.initialized):(0,y.of)(null),ct=this._paginator?(0,Et.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,y.of)(null),Ut=(0,Vt.z)([this._data,this._filter]).pipe((0,tt.T)(([zi])=>this._filterData(zi))),xi=(0,Vt.z)([Ut,it]).pipe((0,tt.T)(([zi])=>this._orderData(zi))),Si=(0,Vt.z)([xi,ct]).pipe((0,tt.T)(([zi])=>this._pageData(zi)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=Si.subscribe(zi=>this._renderData.next(zi))}_filterData(it){return this.filteredData=null==this.filter||""===this.filter?it:it.filter(ct=>this.filterPredicate(ct,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(it){return this.sort?this.sortData(it.slice(),this.sort):it}_pageData(it){if(!this.paginator)return it;const ct=this.paginator.pageIndex*this.paginator.pageSize;return it.slice(ct,ct+this.paginator.pageSize)}_updatePaginator(it){Promise.resolve().then(()=>{const ct=this.paginator;if(ct&&(ct.length=it,ct.pageIndex>0)){const wt=Math.ceil(ct.length/ct.pageSize)-1||0,Ut=Math.min(ct.pageIndex,wt);Ut!==ct.pageIndex&&(ct.pageIndex=Ut,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},6850:(Qe,te,g)=>{"use strict";g.d(te,{Bu:()=>Jt,ES:()=>_e,Ql:()=>St,RI:()=>Ae,T8:()=>tt,hQ:()=>dt,mq:()=>pe});var e=g(4438),t=g(6600),w=g(6939),S=g(1413),l=g(3726),x=g(7673),f=g(7786),I=g(983),d=g(1985),T=g(1807),y=g(8359),F=g(4412),R=g(5542),z=g(6860),W=g(8203),$=g(8617),j=g(7336),Q=g(6977),J=g(6697),ee=g(9172),ie=g(5558),ge=g(5245),ae=g(5964),Me=g(3294),Te=g(2318),de=g(177),D=g(9969);const n=["*"];function c(we,he){1&we&&e.SdG(0)}const m=["tabListContainer"],h=["tabList"],C=["tabListInner"],k=["nextPaginator"],L=["previousPaginator"],_=we=>({animationDuration:we}),r=(we,he)=>({value:we,params:he});function v(we,he){}const V=["tabBodyWrapper"],N=["tabHeader"];function ne(we,he){}function Ee(we,he){if(1&we&&e.DNE(0,ne,0,0,"ng-template",12),2&we){const q=e.XpG().$implicit;e.Y8G("cdkPortalOutlet",q.templateLabel)}}function ze(we,he){if(1&we&&e.EFF(0),2&we){const q=e.XpG().$implicit;e.JRh(q.textLabel)}}function qe(we,he){if(1&we){const q=e.RV6();e.j41(0,"div",7,2),e.bIt("click",function(){const Ne=e.eBV(q),gt=Ne.$implicit,$e=Ne.$index,Fe=e.XpG(),Ge=e.sdS(1);return e.Njj(Fe._handleClick(gt,Ge,$e))})("cdkFocusChange",function(Ne){const gt=e.eBV(q).$index,$e=e.XpG();return e.Njj($e._tabFocusChanged(Ne,gt))}),e.nrm(2,"span",8)(3,"div",9),e.j41(4,"span",10)(5,"span",11),e.DNE(6,Ee,1,1,null,12)(7,ze,1,1),e.k0s()()()}if(2&we){const q=he.$implicit,Re=he.$index,Ne=e.sdS(1),gt=e.XpG();e.HbH(q.labelClass),e.AVh("mdc-tab--active",gt.selectedIndex===Re),e.Y8G("id",gt._getTabLabelId(Re))("disabled",q.disabled)("fitInkBarToContent",gt.fitInkBarToContent),e.BMQ("tabIndex",gt._getTabIndex(Re))("aria-posinset",Re+1)("aria-setsize",gt._tabs.length)("aria-controls",gt._getTabContentId(Re))("aria-selected",gt.selectedIndex===Re)("aria-label",q.ariaLabel||null)("aria-labelledby",!q.ariaLabel&&q.ariaLabelledby?q.ariaLabelledby:null),e.R7$(3),e.Y8G("matRippleTrigger",Ne)("matRippleDisabled",q.disabled||gt.disableRipple),e.R7$(3),e.vxM(q.templateLabel?6:7)}}function Ke(we,he){1&we&&e.SdG(0)}function se(we,he){if(1&we){const q=e.RV6();e.j41(0,"mat-tab-body",13),e.bIt("_onCentered",function(){e.eBV(q);const Ne=e.XpG();return e.Njj(Ne._removeTabBodyWrapperHeight())})("_onCentering",function(Ne){e.eBV(q);const gt=e.XpG();return e.Njj(gt._setTabBodyWrapperHeight(Ne))}),e.k0s()}if(2&we){const q=he.$implicit,Re=he.$index,Ne=e.XpG();e.HbH(q.bodyClass),e.AVh("mat-mdc-tab-body-active",Ne.selectedIndex===Re),e.Y8G("id",Ne._getTabContentId(Re))("content",q.content)("position",q.position)("origin",q.origin)("animationDuration",Ne.animationDuration)("preserveContent",Ne.preserveContent),e.BMQ("tabindex",null!=Ne.contentTabIndex&&Ne.selectedIndex===Re?Ne.contentTabIndex:null)("aria-labelledby",Ne._getTabLabelId(Re))("aria-hidden",Ne.selectedIndex!==Re)}}const X=["mat-tab-nav-bar",""],me=["mat-tab-link",""],ce=new e.nKC("MatTabContent");let fe=(()=>{class we{constructor(q){this.template=q}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabContent",""]],standalone:!0,features:[e.Jv_([{provide:ce,useExisting:we}])]})}return we})();const ke=new e.nKC("MatTabLabel"),mt=new e.nKC("MAT_TAB");let _e=(()=>{class we extends w.bV{constructor(q,Re,Ne){super(q,Re),this._closestTab=Ne}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.C4Q),e.rXU(e.c1b),e.rXU(mt,8))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],standalone:!0,features:[e.Jv_([{provide:ke,useExisting:we}]),e.Vt3]})}return we})();const be=new e.nKC("MAT_TAB_GROUP");let pe=(()=>{class we{get templateLabel(){return this._templateLabel}set templateLabel(q){this._setTemplateLabelInput(q)}get content(){return this._contentPortal}constructor(q,Re){this._viewContainerRef=q,this._closestTabGroup=Re,this.disabled=!1,this._explicitContent=void 0,this.textLabel="",this._contentPortal=null,this._stateChanges=new S.B,this.position=null,this.origin=null,this.isActive=!1}ngOnChanges(q){(q.hasOwnProperty("textLabel")||q.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new w.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(q){q&&q._closestTab===this&&(this._templateLabel=q)}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.c1b),e.rXU(be,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab"]],contentQueries:function(Re,Ne,gt){if(1&Re&&(e.wni(gt,_e,5),e.wni(gt,fe,7,e.C4Q)),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne.templateLabel=$e.first),e.mGM($e=e.lsd())&&(Ne._explicitContent=$e.first)}},viewQuery:function(Re,Ne){if(1&Re&&e.GBs(e.C4Q,7),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._implicitContent=gt.first)}},hostAttrs:["hidden",""],inputs:{disabled:[2,"disabled","disabled",e.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],standalone:!0,features:[e.Jv_([{provide:mt,useExisting:we}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Ne){1&Re&&(e.NAR(),e.DNE(0,c,1,0,"ng-template"))},encapsulation:2})}return we})();const Ze="mdc-tab-indicator--active",_t="mdc-tab-indicator--no-transition";class at{constructor(he){this._items=he}hide(){this._items.forEach(he=>he.deactivateInkBar())}alignToElement(he){const q=this._items.find(Ne=>Ne.elementRef.nativeElement===he),Re=this._currentItem;if(q!==Re&&(Re?.deactivateInkBar(),q)){const Ne=Re?.elementRef.nativeElement.getBoundingClientRect?.();q.activateInkBar(Ne),this._currentItem=q}}}let pt=(()=>{class we{constructor(){this._elementRef=(0,e.WQX)(e.aKT),this._fitToContent=!1}get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(q){this._fitToContent!==q&&(this._fitToContent=q,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(q){const Re=this._elementRef.nativeElement;if(!q||!Re.getBoundingClientRect||!this._inkBarContentElement)return void Re.classList.add(Ze);const Ne=Re.getBoundingClientRect(),gt=q.width/Ne.width,$e=q.left-Ne.left;Re.classList.add(_t),this._inkBarContentElement.style.setProperty("transform",`translateX(${$e}px) scaleX(${gt})`),Re.getBoundingClientRect(),Re.classList.remove(_t),Re.classList.add(Ze),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(Ze)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const q=this._elementRef.nativeElement.ownerDocument||document,Re=this._inkBarElement=q.createElement("span"),Ne=this._inkBarContentElement=q.createElement("span");Re.className="mdc-tab-indicator",Ne.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Re.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275dir=e.FsC({type:we,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39]},features:[e.GFd]})}return we})(),ue=(()=>{class we extends pt{constructor(q){super(),this.elementRef=q,this.disabled=!1}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Re,Ne){2&Re&&(e.BMQ("aria-disabled",!!Ne.disabled),e.AVh("mat-mdc-tab-disabled",Ne.disabled))},inputs:{disabled:[2,"disabled","disabled",e.L39]},standalone:!0,features:[e.GFd,e.Vt3]})}return we})();const Ie=(0,z.BQ)({passive:!0});let yt=(()=>{class we{get selectedIndex(){return this._selectedIndex}set selectedIndex(q){const Re=isNaN(q)?0:q;this._selectedIndex!=Re&&(this._selectedIndexChanged=!0,this._selectedIndex=Re,this._keyManager&&this._keyManager.updateActiveItem(Re))}constructor(q,Re,Ne,gt,$e,Fe,Ge){this._elementRef=q,this._changeDetectorRef=Re,this._viewportRuler=Ne,this._dir=gt,this._ngZone=$e,this._platform=Fe,this._animationMode=Ge,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new S.B,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new S.B,this.disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new e.bkB,this.indexFocused=new e.bkB,$e.runOutsideAngular(()=>{(0,l.R)(q.nativeElement,"mouseleave").pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}ngAfterViewInit(){(0,l.R)(this._previousPaginator.nativeElement,"touchstart",Ie).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,l.R)(this._nextPaginator.nativeElement,"touchstart",Ie).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const q=this._dir?this._dir.change:(0,x.of)("ltr"),Re=this._viewportRuler.change(150),Ne=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new $.Bu(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,J.s)(1)).subscribe(Ne),(0,f.h)(q,Re,this._items.changes,this._itemsResized()).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ne()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(gt=>{this.indexFocused.emit(gt),this._setTabFocus(gt)})}_itemsResized(){return"function"!=typeof ResizeObserver?I.w:this._items.changes.pipe((0,ee.Z)(this._items),(0,ie.n)(q=>new d.c(Re=>this._ngZone.runOutsideAngular(()=>{const Ne=new ResizeObserver(gt=>Re.next(gt));return q.forEach(gt=>Ne.observe(gt.elementRef.nativeElement)),()=>{Ne.disconnect()}}))),(0,ge.i)(1),(0,ae.p)(q=>q.some(Re=>Re.contentRect.width>0&&Re.contentRect.height>0)))}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._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(q){if(!(0,j.rp)(q))switch(q.keyCode){case j.Fm:case j.t6:if(this.focusIndex!==this.selectedIndex){const Re=this._items.get(this.focusIndex);Re&&!Re.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(q))}break;default:this._keyManager.onKeydown(q)}}_onContentChanges(){const q=this._elementRef.nativeElement.textContent;q!==this._currentTextContent&&(this._currentTextContent=q||"",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(q){!this._isValidIndex(q)||this.focusIndex===q||!this._keyManager||this._keyManager.setActiveItem(q)}_isValidIndex(q){return!this._items||!!this._items.toArray()[q]}_setTabFocus(q){if(this._showPaginationControls&&this._scrollToLabel(q),this._items&&this._items.length){this._items.toArray()[q].focus();const Re=this._tabListContainer.nativeElement;Re.scrollLeft="ltr"==this._getLayoutDirection()?0:Re.scrollWidth-Re.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const q=this.scrollDistance,Re="ltr"===this._getLayoutDirection()?-q:q;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Re)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(q){this._scrollTo(q)}_scrollHeader(q){return this._scrollTo(this._scrollDistance+("before"==q?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(q){this._stopInterval(),this._scrollHeader(q)}_scrollToLabel(q){if(this.disablePagination)return;const Re=this._items?this._items.toArray()[q]:null;if(!Re)return;const Ne=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:gt,offsetWidth:$e}=Re.elementRef.nativeElement;let Fe,Ge;"ltr"==this._getLayoutDirection()?(Fe=gt,Ge=Fe+$e):(Ge=this._tabListInner.nativeElement.offsetWidth-gt,Fe=Ge-$e);const et=this.scrollDistance,st=this.scrollDistance+Ne;Fest&&(this.scrollDistance+=Math.min(Ge-st,Fe-et))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const q=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;q||(this.scrollDistance=0),q!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=q}}_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 q=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Re=q?q.elementRef.nativeElement:null;Re?this._inkBar.alignToElement(Re):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(q,Re){Re&&null!=Re.button&&0!==Re.button||(this._stopInterval(),(0,T.O)(650,100).pipe((0,Q.Q)((0,f.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Ne,distance:gt}=this._scrollHeader(q);(0===gt||gt>=Ne)&&this._stopInterval()}))}_scrollTo(q){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Re=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Re,q)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Re,distance:this._scrollDistance}}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(R.Xj),e.rXU(W.dS,8),e.rXU(e.SKi),e.rXU(z.OD),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:we,inputs:{disablePagination:[2,"disablePagination","disablePagination",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[e.GFd]})}return we})(),Ye=(()=>{class we extends yt{constructor(q,Re,Ne,gt,$e,Fe,Ge){super(q,Re,Ne,gt,$e,Fe,Ge),this.disableRipple=!1}ngAfterContentInit(){this._inkBar=new at(this._items),super.ngAfterContentInit()}_itemSelected(q){q.preventDefault()}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(R.Xj),e.rXU(W.dS,8),e.rXU(e.SKi),e.rXU(z.OD),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-header"]],contentQueries:function(Re,Ne,gt){if(1&Re&&e.wni(gt,ue,4),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne._items=$e)}},viewQuery:function(Re,Ne){if(1&Re&&(e.GBs(m,7),e.GBs(h,7),e.GBs(C,7),e.GBs(k,5),e.GBs(L,5)),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._tabListContainer=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabList=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabListInner=gt.first),e.mGM(gt=e.lsd())&&(Ne._nextPaginator=gt.first),e.mGM(gt=e.lsd())&&(Ne._previousPaginator=gt.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Re,Ne){2&Re&&e.AVh("mat-mdc-tab-header-pagination-controls-enabled",Ne._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==Ne._getLayoutDirection())},inputs:{disableRipple:[2,"disableRipple","disableRipple",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.aNF],ngContentSelectors:n,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled","disabled"],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],[1,"mat-mdc-tab-labels"],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled","disabled"]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.NAR(),e.j41(0,"button",5,0),e.bIt("click",function(){return e.eBV(gt),e.Njj(Ne._handlePaginatorClick("before"))})("mousedown",function(Fe){return e.eBV(gt),e.Njj(Ne._handlePaginatorPress("before",Fe))})("touchend",function(){return e.eBV(gt),e.Njj(Ne._stopInterval())}),e.nrm(2,"div",6),e.k0s(),e.j41(3,"div",7,1),e.bIt("keydown",function(Fe){return e.eBV(gt),e.Njj(Ne._handleKeydown(Fe))}),e.j41(5,"div",8,2),e.bIt("cdkObserveContent",function(){return e.eBV(gt),e.Njj(Ne._onContentChanges())}),e.j41(7,"div",9,3),e.SdG(9),e.k0s()()(),e.j41(10,"button",10,4),e.bIt("mousedown",function(Fe){return e.eBV(gt),e.Njj(Ne._handlePaginatorPress("after",Fe))})("click",function(){return e.eBV(gt),e.Njj(Ne._handlePaginatorClick("after"))})("touchend",function(){return e.eBV(gt),e.Njj(Ne._stopInterval())}),e.nrm(12,"div",6),e.k0s()}2&Re&&(e.AVh("mat-mdc-tab-header-pagination-disabled",Ne._disableScrollBefore),e.Y8G("matRippleDisabled",Ne._disableScrollBefore||Ne.disableRipple)("disabled",Ne._disableScrollBefore||null),e.R7$(3),e.AVh("_mat-animation-noopable","NoopAnimations"===Ne._animationMode),e.R7$(7),e.AVh("mat-mdc-tab-header-pagination-disabled",Ne._disableScrollAfter),e.Y8G("matRippleDisabled",Ne._disableScrollAfter||Ne.disableRipple)("disabled",Ne._disableScrollAfter||null))},dependencies:[t.r6,Te.Wv],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-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:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-header-pagination-icon-color)}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}._mat-animation-noopable span.mdc-tab-indicator__content,._mat-animation-noopable span.mdc-tab__text-label{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-header-divider-height);border-top-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.mat-mdc-tab::before{margin:5px}.cdk-high-contrast-active .mat-mdc-tab[aria-disabled=true]{color:GrayText}"],encapsulation:2})}return we})();const rt=new e.nKC("MAT_TABS_CONFIG"),Yt={translateTab:(0,D.hZ)("translateTab",[(0,D.wk)("center, void, left-origin-center, right-origin-center",(0,D.iF)({transform:"none"})),(0,D.wk)("left",(0,D.iF)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,D.wk)("right",(0,D.iF)({transform:"translate3d(100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,D.kY)("* => left, * => right, left => center, right => center",(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,D.kY)("void => left-origin-center",[(0,D.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"}),(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,D.kY)("void => right-origin-center",[(0,D.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"}),(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let Nt=(()=>{class we extends w.I3{constructor(q,Re,Ne,gt){super(q,Re,gt),this._host=Ne,this._centeringSub=y.yU.EMPTY,this._leavingSub=y.yU.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,ee.Z)(this._host._isCenterPosition(this._host._position))).subscribe(q=>{q&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU((0,e.Rfq)(()=>Et)),e.rXU(de.qQ))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabBodyHost",""]],standalone:!0,features:[e.Vt3]})}return we})(),Et=(()=>{class we{set position(q){this._positionIndex=q,this._computePositionAnimationState()}constructor(q,Re,Ne){this._elementRef=q,this._dir=Re,this._dirChangeSubscription=y.yU.EMPTY,this._translateTabComplete=new S.B,this._onCentering=new e.bkB,this._beforeCentering=new e.bkB,this._afterLeavingCenter=new e.bkB,this._onCentered=new e.bkB(!0),this.animationDuration="500ms",this.preserveContent=!1,Re&&(this._dirChangeSubscription=Re.change.subscribe(gt=>{this._computePositionAnimationState(gt),Ne.markForCheck()})),this._translateTabComplete.pipe((0,Me.F)((gt,$e)=>gt.fromState===$e.fromState&>.toState===$e.toState)).subscribe(gt=>{this._isCenterPosition(gt.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(gt.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(q){const Re=this._isCenterPosition(q.toState);this._beforeCentering.emit(Re),Re&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(q){return"center"==q||"left-origin-center"==q||"right-origin-center"==q}_computePositionAnimationState(q=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==q?"left":"right":this._positionIndex>0?"ltr"==q?"right":"left":"center"}_computePositionFromOrigin(q){const Re=this._getLayoutDirection();return"ltr"==Re&&q<=0||"rtl"==Re&&q>0?"left-origin-center":"right-origin-center"}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(W.dS,8),e.rXU(e.gRc))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-body"]],viewQuery:function(Re,Ne){if(1&Re&&e.GBs(w.I3,5),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._portalHost=gt.first)}},hostAttrs:[1,"mat-mdc-tab-body"],inputs:{_content:[0,"content","_content"],origin:"origin",animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"},standalone:!0,features:[e.aNF],decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.j41(0,"div",1,0),e.bIt("@translateTab.start",function(Fe){return e.eBV(gt),e.Njj(Ne._onTranslateTabStarted(Fe))})("@translateTab.done",function(Fe){return e.eBV(gt),e.Njj(Ne._translateTabComplete.next(Fe))}),e.DNE(2,v,0,0,"ng-template",2),e.k0s()}2&Re&&e.Y8G("@translateTab",e.l_i(3,r,Ne._position,e.eq3(1,_,Ne.animationDuration)))},dependencies:[Nt,R.uv],styles:['.mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-mdc-tab-body-content[style*="visibility: hidden"]{display:none}'],encapsulation:2,data:{animation:[Yt.translateTab]}})}return we})(),Vt=0,tt=(()=>{class we{get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(q){this._fitInkBarToContent=q,this._changeDetectorRef.markForCheck()}get selectedIndex(){return this._selectedIndex}set selectedIndex(q){this._indexToSelect=isNaN(q)?null:q}get animationDuration(){return this._animationDuration}set animationDuration(q){const Re=q+"";this._animationDuration=/^\d+$/.test(Re)?q+"ms":Re}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(q){this._contentTabIndex=isNaN(q)?null:q}get backgroundColor(){return this._backgroundColor}set backgroundColor(q){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),q&&Re.add("mat-tabs-with-background",`mat-background-${q}`),this._backgroundColor=q}constructor(q,Re,Ne,gt){this._elementRef=q,this._changeDetectorRef=Re,this._animationMode=gt,this._tabs=new e.rOR,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=y.yU.EMPTY,this._tabLabelSubscription=y.yU.EMPTY,this._fitInkBarToContent=!1,this.stretchTabs=!0,this.dynamicHeight=!1,this._selectedIndex=null,this.headerPosition="above",this.disablePagination=!1,this.disableRipple=!1,this.preserveContent=!1,this.selectedIndexChange=new e.bkB,this.focusChange=new e.bkB,this.animationDone=new e.bkB,this.selectedTabChange=new e.bkB(!0),this._isServer=!(0,e.WQX)(z.OD).isBrowser,this._groupId=Vt++,this.animationDuration=Ne&&Ne.animationDuration?Ne.animationDuration:"500ms",this.disablePagination=!(!Ne||null==Ne.disablePagination)&&Ne.disablePagination,this.dynamicHeight=!(!Ne||null==Ne.dynamicHeight)&&Ne.dynamicHeight,null!=Ne?.contentTabIndex&&(this.contentTabIndex=Ne.contentTabIndex),this.preserveContent=!!Ne?.preserveContent,this.fitInkBarToContent=!(!Ne||null==Ne.fitInkBarToContent)&&Ne.fitInkBarToContent,this.stretchTabs=!Ne||null==Ne.stretchTabs||Ne.stretchTabs}ngAfterContentChecked(){const q=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=q){const Re=null==this._selectedIndex;if(!Re){this.selectedTabChange.emit(this._createChangeEvent(q));const Ne=this._tabBodyWrapper.nativeElement;Ne.style.minHeight=Ne.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Ne,gt)=>Ne.isActive=gt===q),Re||(this.selectedIndexChange.emit(q),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Re,Ne)=>{Re.position=Ne-q,null!=this._selectedIndex&&0==Re.position&&!Re.origin&&(Re.origin=q-this._selectedIndex)}),this._selectedIndex!==q&&(this._selectedIndex=q,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const q=this._clampTabIndex(this._indexToSelect);if(q===this._selectedIndex){const Re=this._tabs.toArray();let Ne;for(let gt=0;gt{Re[q].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(q))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,ee.Z)(this._allTabs)).subscribe(q=>{this._tabs.reset(q.filter(Re=>Re._closestTabGroup===this||!Re._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(q){const Re=this._tabHeader;Re&&(Re.focusIndex=q)}_focusChanged(q){this._lastFocusedTabIndex=q,this.focusChange.emit(this._createChangeEvent(q))}_createChangeEvent(q){const Re=new $t;return Re.index=q,this._tabs&&this._tabs.length&&(Re.tab=this._tabs.toArray()[q]),Re}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,f.h)(...this._tabs.map(q=>q._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(q){return Math.min(this._tabs.length-1,Math.max(q||0,0))}_getTabLabelId(q){return`mat-tab-label-${this._groupId}-${q}`}_getTabContentId(q){return`mat-tab-content-${this._groupId}-${q}`}_setTabBodyWrapperHeight(q){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return;const Re=this._tabBodyWrapper.nativeElement;Re.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Re.style.height=q+"px")}_removeTabBodyWrapperHeight(){const q=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=q.clientHeight,q.style.height="",this.animationDone.emit()}_handleClick(q,Re,Ne){Re.focusIndex=Ne,q.disabled||(this.selectedIndex=Ne)}_getTabIndex(q){return q===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(q,Re){q&&"mouse"!==q&&"touch"!==q&&(this._tabHeader.focusIndex=Re)}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(rt,8),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-group"]],contentQueries:function(Re,Ne,gt){if(1&Re&&e.wni(gt,pe,5),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne._allTabs=$e)}},viewQuery:function(Re,Ne){if(1&Re&&(e.GBs(V,5),e.GBs(N,5)),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._tabBodyWrapper=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabHeader=gt.first)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:10,hostBindings:function(Re,Ne){2&Re&&(e.HbH("mat-"+(Ne.color||"primary")),e.xc7("--mat-tab-animation-duration",Ne.animationDuration),e.AVh("mat-mdc-tab-group-dynamic-height",Ne.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===Ne.headerPosition)("mat-mdc-tab-group-stretch-tabs",Ne.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",e.L39],dynamicHeight:[2,"dynamicHeight","dynamicHeight",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",e.Udg],disablePagination:[2,"disablePagination","disablePagination",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],preserveContent:[2,"preserveContent","preserveContent",e.L39],backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],standalone:!0,features:[e.Jv_([{provide:be,useExisting:we}]),e.GFd,e.aNF],ngContentSelectors:n,decls:9,vars:6,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","mat-mdc-tab-body-active","class","content","position","origin","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"click","cdkFocusChange","id","disabled","fitInkBarToContent"],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"cdkPortalOutlet"],["role","tabpanel",3,"_onCentered","_onCentering","id","content","position","origin","animationDuration","preserveContent"]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.NAR(),e.j41(0,"mat-tab-header",3,0),e.bIt("indexFocused",function(Fe){return e.eBV(gt),e.Njj(Ne._focusChanged(Fe))})("selectFocusedIndex",function(Fe){return e.eBV(gt),e.Njj(Ne.selectedIndex=Fe)}),e.Z7z(2,qe,8,17,"div",4,e.fX1),e.k0s(),e.DNE(4,Ke,1,0),e.j41(5,"div",5,1),e.Z7z(7,se,1,13,"mat-tab-body",6,e.fX1),e.k0s()}2&Re&&(e.Y8G("selectedIndex",Ne.selectedIndex||0)("disableRipple",Ne.disableRipple)("disablePagination",Ne.disablePagination),e.R7$(2),e.Dyx(Ne._tabs),e.R7$(2),e.vxM(Ne._isServer?4:-1),e.R7$(),e.AVh("_mat-animation-noopable","NoopAnimations"===Ne._animationMode),e.R7$(2),e.Dyx(Ne._tabs))},dependencies:[Ye,ue,$.vR,t.r6,w.I3,Et],styles:['.mdc-tab{min-width:90px;padding-right:24px;padding-left:24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;margin:0;padding-top:0;padding-bottom:0;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;-webkit-appearance:none;z-index:1}.mdc-tab::-moz-focus-inner{padding:0;border:0}.mdc-tab[hidden]{display:none}.mdc-tab--min-width{flex:0 1 auto}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab__icon{transition:150ms color linear;z-index:2}.mdc-tab--stacked .mdc-tab__content{flex-direction:column;align-items:center;justify-content:center}.mdc-tab--stacked .mdc-tab__text-label{padding-top:6px;padding-bottom:4px}.mdc-tab--active .mdc-tab__text-label,.mdc-tab--active .mdc-tab__icon{transition-delay:100ms}.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label{padding-left:8px;padding-right:0}[dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label,.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label[dir=rtl]{padding-left:0;padding-right:8px}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator__content--icon{align-self:center;margin:0 auto}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}.mdc-tab-indicator .mdc-tab-indicator__content{transition:250ms transform cubic-bezier(0.4, 0, 0.2, 1)}.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition:150ms opacity linear}.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition-delay:100ms}.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}'],encapsulation:2})}return we})();class $t{}let zt=0,Jt=(()=>{class we extends yt{get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(q){this._fitInkBarToContent.next(q),this._changeDetectorRef.markForCheck()}get animationDuration(){return this._animationDuration}set animationDuration(q){const Re=q+"";this._animationDuration=/^\d+$/.test(Re)?q+"ms":Re}get backgroundColor(){return this._backgroundColor}set backgroundColor(q){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),q&&Re.add("mat-tabs-with-background",`mat-background-${q}`),this._backgroundColor=q}constructor(q,Re,Ne,gt,$e,Fe,Ge,et){super(q,gt,$e,Re,Ne,Fe,Ge),this._fitInkBarToContent=new F.t(!1),this.stretchTabs=!0,this.disableRipple=!1,this.color="primary",this.disablePagination=!(!et||null==et.disablePagination)&&et.disablePagination,this.fitInkBarToContent=!(!et||null==et.fitInkBarToContent)&&et.fitInkBarToContent,this.stretchTabs=!et||null==et.stretchTabs||et.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new at(this._items),this._items.changes.pipe((0,ee.Z)(null),(0,Q.Q)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const q=this._items.toArray();for(let Re=0;Re.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:flex-end}.mat-mdc-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-focus-indicator::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}"],encapsulation:2})}return we})(),St=(()=>{class we extends pt{get active(){return this._isActive}set active(q){q!==this._isActive&&(this._isActive=q,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}constructor(q,Re,Ne,gt,$e,Fe){super(),this._tabNavBar=q,this.elementRef=Re,this._focusMonitor=$e,this._destroyed=new S.B,this._isActive=!1,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.id="mat-tab-link-"+zt++,this.rippleConfig=Ne||{},this.tabIndex=parseInt(gt)||0,"NoopAnimations"===Fe&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),q._fitInkBarToContent.pipe((0,Q.Q)(this._destroyed)).subscribe(Ge=>{this.fitInkBarToContent=Ge})}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),super.ngOnDestroy(),this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(q){(q.keyCode===j.t6||q.keyCode===j.Fm)&&(this.disabled?q.preventDefault():this._tabNavBar.tabPanel&&(q.keyCode===j.t6&&q.preventDefault(),this.elementRef.nativeElement.click()))}_getAriaControls(){return this._tabNavBar.tabPanel?this._tabNavBar.tabPanel?.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&&!this.disabled?0:-1:this.disabled?-1:this.tabIndex}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(Jt),e.rXU(e.aKT),e.rXU(t.$E,8),e.kS0("tabindex"),e.rXU($.FN),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-mdc-focus-indicator"],hostVars:11,hostBindings:function(Re,Ne){1&Re&&e.bIt("focus",function(){return Ne._handleFocus()})("keydown",function($e){return Ne._handleKeydown($e)}),2&Re&&(e.BMQ("aria-controls",Ne._getAriaControls())("aria-current",Ne._getAriaCurrent())("aria-disabled",Ne.disabled)("aria-selected",Ne._getAriaSelected())("id",Ne.id)("tabIndex",Ne._getTabIndex())("role",Ne._getRole()),e.AVh("mat-mdc-tab-disabled",Ne.disabled)("mdc-tab--active",Ne.active))},inputs:{active:[2,"active","active",e.L39],disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",q=>null==q?0:(0,e.Udg)(q)],id:"id"},exportAs:["matTabLink"],standalone:!0,features:[e.GFd,e.Vt3,e.aNF],attrs:me,ngContentSelectors:n,decls:5,vars:2,consts:[[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"]],template:function(Re,Ne){1&Re&&(e.NAR(),e.nrm(0,"span",0)(1,"div",1),e.j41(2,"span",2)(3,"span",3),e.SdG(4),e.k0s()()),2&Re&&(e.R7$(),e.Y8G("matRippleTrigger",Ne.elementRef.nativeElement)("matRippleDisabled",Ne.rippleDisabled))},dependencies:[t.r6],styles:['.mat-mdc-tab-link{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab-link:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab-link:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab-link.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab-link.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab-link .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab-link .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab-link:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab-link.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab-link.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab-link .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link{flex-grow:1}.mat-mdc-tab-link::before{margin:5px}@media(max-width: 599px){.mat-mdc-tab-link{min-width:72px}}'],encapsulation:2,changeDetection:0})}return we})(),dt=(()=>{class we{constructor(){this.id="mat-tab-nav-panel-"+zt++}static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Re,Ne){2&Re&&e.BMQ("aria-labelledby",Ne._activeTabId)("id",Ne.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],standalone:!0,features:[e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Ne){1&Re&&(e.NAR(),e.SdG(0))},encapsulation:2,changeDetection:0})}return we})(),Ae=(()=>{class we{static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275mod=e.$C({type:we});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return we})()},5911:(Qe,te,g)=>{"use strict";g.d(te,{KQ:()=>I,s5:()=>T});var e=g(4438),t=g(6600),w=g(6860),S=g(177);const l=["*",[["mat-toolbar-row"]]],x=["*","mat-toolbar-row"];let f=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275dir=e.FsC({type:y,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"],standalone:!0})}return y})(),I=(()=>{class y{constructor(R,z,W){this._elementRef=R,this._platform=z,this._document=W}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.aKT),e.rXU(w.OD),e.rXU(S.qQ))};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["mat-toolbar"]],contentQueries:function(z,W,$){if(1&z&&e.wni($,f,5),2&z){let j;e.mGM(j=e.lsd())&&(W._toolbarRows=j)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(z,W){2&z&&(e.HbH(W.color?"mat-"+W.color:""),e.AVh("mat-toolbar-multiple-rows",W._toolbarRows.length>0)("mat-toolbar-single-row",0===W._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],standalone:!0,features:[e.aNF],ngContentSelectors:x,decls:2,vars:0,template:function(z,W){1&z&&(e.NAR(l),e.SdG(0),e.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color);color:var(--mat-toolbar-container-text-color)}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font);font-size:var(--mat-toolbar-title-text-size);line-height:var(--mat-toolbar-title-text-line-height);font-weight:var(--mat-toolbar-title-text-weight);letter-spacing:var(--mat-toolbar-title-text-tracking);margin:0}.cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mdc-text-button-label-text-color:var(--mat-toolbar-container-text-color);--mdc-outlined-button-label-text-color:var(--mat-toolbar-container-text-color)}.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;height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height)}}"],encapsulation:2,changeDetection:0})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return y})()},4823:(Qe,te,g)=>{"use strict";g.d(te,{oV:()=>h,uc:()=>L});var e=g(6977),t=g(6697),w=g(4085),S=g(7336),l=g(4438),x=g(177),f=g(6860),I=g(8617),d=g(8203),T=g(6969),y=g(5542),F=g(6939),R=g(1413),W=(g(9969),g(6600));const $=["tooltip"],J=new l.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const _=(0,l.WQX)(T.hJ);return()=>_.scrollStrategies.reposition({scrollThrottle:20})}}),ie={provide:J,deps:[T.hJ],useFactory:function ee(_){return()=>_.scrollStrategies.reposition({scrollThrottle:20})}},ae=new l.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function ge(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),Te="tooltip-panel",de=(0,f.BQ)({passive:!0});let h=(()=>{class _{get position(){return this._position}set position(v){v!==this._position&&(this._position=v,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(v){this._positionAtOrigin=(0,w.he)(v),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(v){this._disabled=(0,w.he)(v),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(v){this._showDelay=(0,w.OE)(v)}get hideDelay(){return this._hideDelay}set hideDelay(v){this._hideDelay=(0,w.OE)(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)}constructor(v,V,N,ne,Ee,ze,qe,Ke,se,X,me,ce){this._overlay=v,this._elementRef=V,this._scrollDispatcher=N,this._viewContainerRef=ne,this._ngZone=Ee,this._platform=ze,this._ariaDescriber=qe,this._focusMonitor=Ke,this._dir=X,this._defaultOptions=me,this._position="below",this._positionAtOrigin=!1,this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._tooltipComponent=C,this._viewportMargin=8,this._cssClassPrefix="mat-mdc",this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new R.B,this._scrollStrategy=se,this._document=ce,me&&(this._showDelay=me.showDelay,this._hideDelay=me.hideDelay,me.position&&(this.position=me.position),me.positionAtOrigin&&(this.positionAtOrigin=me.positionAtOrigin),me.touchGestures&&(this.touchGestures=me.touchGestures)),X.change.pipe((0,e.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)}),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,e.Q)(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(([V,N])=>{v.removeEventListener(V,N,de)}),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,V){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const N=this._createOverlay(V);this._detach(),this._portal=this._portal||new F.A8(this._tooltipComponent,this._viewContainerRef);const ne=this._tooltipInstance=N.attach(this._portal).instance;ne._triggerElement=this._elementRef.nativeElement,ne._mouseLeaveHideDelay=this._hideDelay,ne.afterHidden().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),ne.show(v)}hide(v=this.hideDelay){const V=this._tooltipInstance;V&&(V.isVisible()?V.hide(v):(V._cancelPendingAnimations(),this._detach()))}toggle(v){this._isTooltipVisible()?this.hide():this.show(void 0,v)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(v){if(this._overlayRef){const ne=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!v)&&ne._origin instanceof l.aKT)return this._overlayRef;this._detach()}const V=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),N=this._overlay.position().flexibleConnectedTo(this.positionAtOrigin&&v||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(V);return N.positionChanges.pipe((0,e.Q)(this._destroyed)).subscribe(ne=>{this._updateCurrentPositionClass(ne.connectionPair),this._tooltipInstance&&ne.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:N,panelClass:`${this._cssClassPrefix}-${Te}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,e.Q)(this._destroyed)).subscribe(ne=>{this._isTooltipVisible()&&ne.keyCode===S._f&&!(0,S.rp)(ne)&&(ne.preventDefault(),ne.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.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 V=v.getConfig().positionStrategy,N=this._getOrigin(),ne=this._getOverlayPosition();V.withPositions([this._addOffset({...N.main,...ne.main}),this._addOffset({...N.fallback,...ne.fallback})])}_addOffset(v){const N=!this._dir||"ltr"==this._dir.value;return"top"===v.originY?v.offsetY=-8:"bottom"===v.originY?v.offsetY=8:"start"===v.originX?v.offsetX=N?-8:8:"end"===v.originX&&(v.offsetX=N?8:-8),v}_getOrigin(){const v=!this._dir||"ltr"==this._dir.value,V=this.position;let N;"above"==V||"below"==V?N={originX:"center",originY:"above"==V?"top":"bottom"}:"before"==V||"left"==V&&v||"right"==V&&!v?N={originX:"start",originY:"center"}:("after"==V||"right"==V&&v||"left"==V&&!v)&&(N={originX:"end",originY:"center"});const{x:ne,y:Ee}=this._invertPosition(N.originX,N.originY);return{main:N,fallback:{originX:ne,originY:Ee}}}_getOverlayPosition(){const v=!this._dir||"ltr"==this._dir.value,V=this.position;let N;"above"==V?N={overlayX:"center",overlayY:"bottom"}:"below"==V?N={overlayX:"center",overlayY:"top"}:"before"==V||"left"==V&&v||"right"==V&&!v?N={overlayX:"end",overlayY:"center"}:("after"==V||"right"==V&&v||"left"==V&&!v)&&(N={overlayX:"start",overlayY:"center"});const{x:ne,y:Ee}=this._invertPosition(N.overlayX,N.overlayY);return{main:N,fallback:{overlayX:ne,overlayY:Ee}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,t.s)(1),(0,e.Q)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(v){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=v,this._tooltipInstance._markForCheck())}_invertPosition(v,V){return"above"===this.position||"below"===this.position?"top"===V?V="bottom":"bottom"===V&&(V="top"):"end"===v?v="start":"start"===v&&(v="end"),{x:v,y:V}}_updateCurrentPositionClass(v){const{overlayY:V,originX:N,originY:ne}=v;let Ee;if(Ee="center"===V?this._dir&&"rtl"===this._dir.value?"end"===N?"left":"right":"start"===N?"left":"right":"bottom"===V&&"top"===ne?"above":"below",Ee!==this._currentPosition){const ze=this._overlayRef;if(ze){const qe=`${this._cssClassPrefix}-${Te}-`;ze.removePanelClass(qe+this._currentPosition),ze.addPanelClass(qe+Ee)}this._currentPosition=Ee}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",v=>{let V;this._setupPointerExitEventsIfNeeded(),void 0!==v.x&&void 0!==v.y&&(V=v),this.show(void 0,V)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",v=>{const V=v.targetTouches?.[0],N=V?{x:V.clientX,y:V.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(void 0,N),this._defaultOptions.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const v=[];if(this._platformSupportsMouseEvents())v.push(["mouseleave",V=>{const N=V.relatedTarget;(!N||!this._overlayRef?.overlayElement.contains(N))&&this.hide()}],["wheel",V=>this._wheelListener(V)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const V=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};v.push(["touchend",V],["touchcancel",V])}this._addListeners(v),this._passiveListeners.push(...v)}_addListeners(v){v.forEach(([V,N])=>{this._elementRef.nativeElement.addEventListener(V,N,de)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(v){if(this._isTooltipVisible()){const V=this._document.elementFromPoint(v.clientX,v.clientY),N=this._elementRef.nativeElement;V!==N&&!N.contains(V)&&this.hide()}}_disableNativeGesturesIfNecessary(){const v=this.touchGestures;if("off"!==v){const V=this._elementRef.nativeElement,N=V.style;("on"===v||"INPUT"!==V.nodeName&&"TEXTAREA"!==V.nodeName)&&(N.userSelect=N.msUserSelect=N.webkitUserSelect=N.MozUserSelect="none"),("on"===v||!V.draggable)&&(N.webkitUserDrag="none"),N.touchAction="none",N.webkitTapHighlightColor="transparent"}}static#e=this.\u0275fac=function(V){return new(V||_)(l.rXU(T.hJ),l.rXU(l.aKT),l.rXU(y.R),l.rXU(l.c1b),l.rXU(l.SKi),l.rXU(f.OD),l.rXU(I.vr),l.rXU(I.FN),l.rXU(J),l.rXU(d.dS),l.rXU(ae,8),l.rXU(x.qQ))};static#t=this.\u0275dir=l.FsC({type:_,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(V,N){2&V&&l.AVh("mat-mdc-tooltip-disabled",N.disabled)},inputs:{position:[0,"matTooltipPosition","position"],positionAtOrigin:[0,"matTooltipPositionAtOrigin","positionAtOrigin"],disabled:[0,"matTooltipDisabled","disabled"],showDelay:[0,"matTooltipShowDelay","showDelay"],hideDelay:[0,"matTooltipHideDelay","hideDelay"],touchGestures:[0,"matTooltipTouchGestures","touchGestures"],message:[0,"matTooltip","message"],tooltipClass:[0,"matTooltipClass","tooltipClass"]},exportAs:["matTooltip"],standalone:!0})}return _})(),C=(()=>{class _{constructor(v,V,N){this._changeDetectorRef=v,this._elementRef=V,this._isMultiline=!1,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new R.B,this._showAnimation="mat-mdc-tooltip-show",this._hideAnimation="mat-mdc-tooltip-hide",this._animationsDisabled="NoopAnimations"===N}show(v){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},v)}hide(v){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},v)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),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.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const v=this._elementRef.nativeElement.getBoundingClientRect();return v.height>24&&v.width>=200}_handleAnimationEnd({animationName:v}){(v===this._showAnimation||v===this._hideAnimation)&&this._finalizeAnimation(v===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(v){v?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(v){const V=this._tooltip.nativeElement,N=this._showAnimation,ne=this._hideAnimation;if(V.classList.remove(v?ne:N),V.classList.add(v?N:ne),this._isVisible!==v&&(this._isVisible=v,this._changeDetectorRef.markForCheck()),v&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const Ee=getComputedStyle(V);("0s"===Ee.getPropertyValue("animation-duration")||"none"===Ee.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}v&&this._onShow(),this._animationsDisabled&&(V.classList.add("_mat-animation-noopable"),this._finalizeAnimation(v))}static#e=this.\u0275fac=function(V){return new(V||_)(l.rXU(l.gRc),l.rXU(l.aKT),l.rXU(l.bc$,8))};static#t=this.\u0275cmp=l.VBU({type:_,selectors:[["mat-tooltip-component"]],viewQuery:function(V,N){if(1&V&&l.GBs($,7),2&V){let ne;l.mGM(ne=l.lsd())&&(N._tooltip=ne.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(V,N){1&V&&l.bIt("mouseleave",function(Ee){return N._handleMouseLeave(Ee)}),2&V&&l.xc7("zoom",N.isVisible()?1:null)},standalone:!0,features:[l.aNF],decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mdc-tooltip--shown","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mdc-tooltip__surface","mdc-tooltip__surface-animation"]],template:function(V,N){if(1&V){const ne=l.RV6();l.j41(0,"div",1,0),l.bIt("animationend",function(ze){return l.eBV(ne),l.Njj(N._handleAnimationEnd(ze))}),l.j41(2,"div",2),l.EFF(3),l.k0s()()}2&V&&(l.AVh("mdc-tooltip--multiline",N._isMultiline),l.Y8G("ngClass",N.tooltipClass),l.R7$(3),l.JRh(N.message))},dependencies:[x.YU],styles:['.mdc-tooltip__surface{word-break:break-all;word-break:var(--mdc-tooltip-word-break, normal);overflow-wrap:anywhere}.mdc-tooltip--showing-transition .mdc-tooltip__surface-animation{transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-tooltip--hide-transition .mdc-tooltip__surface-animation{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-tooltip{position:fixed;display:none;z-index:9}.mdc-tooltip-wrapper--rich{position:relative}.mdc-tooltip--shown,.mdc-tooltip--showing,.mdc-tooltip--hide{display:inline-flex}.mdc-tooltip--shown.mdc-tooltip--rich,.mdc-tooltip--showing.mdc-tooltip--rich,.mdc-tooltip--hide.mdc-tooltip--rich{display:inline-block;left:-320px;position:absolute}.mdc-tooltip__surface{line-height:16px;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center}.mdc-tooltip__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-tooltip__surface::before{border-color:CanvasText}}.mdc-tooltip--rich .mdc-tooltip__surface{align-items:flex-start;display:flex;flex-direction:column;min-height:24px;min-width:40px;max-width:320px;position:relative}.mdc-tooltip--multiline .mdc-tooltip__surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface,.mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl]{text-align:right}.mdc-tooltip__surface .mdc-tooltip__title{margin:0 8px}.mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(200px - 2*8px);margin:8px;text-align:left}[dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content,.mdc-tooltip__surface .mdc-tooltip__content[dir=rtl]{text-align:right}.mdc-tooltip--rich .mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(320px - 2*8px);align-self:stretch}.mdc-tooltip__surface .mdc-tooltip__content-link{text-decoration:none}.mdc-tooltip--rich-actions,.mdc-tooltip__content,.mdc-tooltip__title{z-index:1}.mdc-tooltip__surface-animation{opacity:0;transform:scale(0.8);will-change:transform,opacity}.mdc-tooltip--shown .mdc-tooltip__surface-animation{transform:scale(1);opacity:1}.mdc-tooltip--hide .mdc-tooltip__surface-animation{transform:scale(1)}.mdc-tooltip__caret-surface-top,.mdc-tooltip__caret-surface-bottom{position:absolute;height:24px;width:24px;transform:rotate(35deg) skewY(20deg) scaleX(0.9396926208)}.mdc-tooltip__caret-surface-top .mdc-elevation-overlay,.mdc-tooltip__caret-surface-bottom .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-tooltip__caret-surface-bottom{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);outline:1px solid rgba(0,0,0,0);z-index:-1}@media screen and (forced-colors: active){.mdc-tooltip__caret-surface-bottom{outline-color:CanvasText}}.mat-mdc-tooltip .mdc-tooltip__surface{background-color:var(--mdc-plain-tooltip-container-color)}.mat-mdc-tooltip .mdc-tooltip__surface{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__caret-surface-top,.mat-mdc-tooltip .mdc-tooltip__caret-surface-bottom{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__surface{color:var(--mdc-plain-tooltip-supporting-text-color)}.mat-mdc-tooltip .mdc-tooltip__surface{font-family:var(--mdc-plain-tooltip-supporting-text-font);line-height:var(--mdc-plain-tooltip-supporting-text-line-height);font-size:var(--mdc-plain-tooltip-supporting-text-size);font-weight:var(--mdc-plain-tooltip-supporting-text-weight);letter-spacing:var(--mdc-plain-tooltip-supporting-text-tracking)}.mat-mdc-tooltip{position:relative;transform:scale(0)}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-panel.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}'],encapsulation:2,changeDetection:0})}return _})(),L=(()=>{class _{static#e=this.\u0275fac=function(V){return new(V||_)};static#t=this.\u0275mod=l.$C({type:_});static#i=this.\u0275inj=l.G2t({providers:[ie],imports:[I.Pd,x.MD,T.z_,W.yE,W.yE,y.Gj]})}return _})()},7358:(Qe,te,g)=>{"use strict";g.d(te,{Zh:()=>J,d6:()=>I,jH:()=>$,lQ:()=>R,pO:()=>z,q1:()=>T,wx:()=>F,yI:()=>d});var e=g(4109),t=g(4438),w=g(6600),S=g(5024),l=g(4412),x=g(7786),f=g(6354);let I=(()=>{class ee extends e.xn{constructor(ge,ae,Me){super(ge,ae),this.disabled=!1,this.tabIndex=Number(Me)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.aKT),t.rXU(e.NL),t.kS0("tabindex"))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{disabled:[2,"disabled","disabled",t.L39],tabIndex:[2,"tabIndex","tabIndex",ge=>null==ge?0:(0,t.Udg)(ge)]},exportAs:["matTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.xn,useExisting:ee}]),t.GFd,t.Vt3]})}return ee})(),d=(()=>{class ee extends e.Sz{static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},standalone:!0,features:[t.Jv_([{provide:e.Sz,useExisting:ee}]),t.Vt3]})}return ee})(),T=(()=>{class ee extends e.s3{get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(ge){this._tabIndex=ge??0}constructor(ge,ae,Me,Te){super(ge,ae,Me),this.disabled=!1,this.tabIndex=Number(Te)||0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.aKT),t.rXU(e.NL),t.rXU(t._q3),t.kS0("tabindex"))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",t.L39],tabIndex:"tabIndex"},exportAs:["matNestedTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.s3,useExisting:ee},{provide:e.xn,useExisting:ee},{provide:e.kZ,useExisting:ee}]),t.GFd,t.Vt3]})}return ee})(),F=(()=>{class ee{constructor(ge,ae){this.viewContainer=ge,this._node=ae}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.c1b),t.rXU(e.kZ,8))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeOutlet",""]],standalone:!0,features:[t.Jv_([{provide:e.a$,useExisting:ee}])]})}return ee})(),R=(()=>{class ee extends e.NL{constructor(){super(...arguments),this._nodeOutlet=void 0}static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275cmp=t.VBU({type:ee,selectors:[["mat-tree"]],viewQuery:function(ae,Me){if(1&ae&&t.GBs(F,7),2&ae){let Te;t.mGM(Te=t.lsd())&&(Me._nodeOutlet=Te.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],standalone:!0,features:[t.Jv_([{provide:e.NL,useExisting:ee}]),t.Vt3,t.aNF],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ae,Me){1&ae&&t.eu8(0,0)},dependencies:[F],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color)}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color);font-family:var(--mat-tree-node-text-font);font-size:var(--mat-tree-node-text-size);font-weight:var(--mat-tree-node-text-weight)}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height)}.mat-nested-tree-node{border-bottom-width:0}"],encapsulation:2})}return ee})(),z=(()=>{class ee extends e.Hy{static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},standalone:!0,features:[t.Jv_([{provide:e.Hy,useExisting:ee}]),t.Vt3]})}return ee})(),$=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=t.$C({type:ee});static#i=this.\u0275inj=t.G2t({imports:[e.Dc,w.yE,w.yE]})}return ee})();class J extends S.qS{constructor(){super(...arguments),this._data=new l.t([])}get data(){return this._data.value}set data(ie){this._data.next(ie)}connect(ie){return(0,x.h)(ie.viewChange,this._data).pipe((0,f.T)(()=>this.data))}disconnect(){}}},345:(Qe,te,g)=>{"use strict";g.d(te,{B7:()=>Te,Bb:()=>ke,fM:()=>rt,hE:()=>be,sG:()=>X,up:()=>Yt});var e=g(177),t=g(4438);class w extends e.VF{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class S extends w{static makeCurrent(){(0,e.ZD)(new S)}onAndCancel(we,he,q){return we.addEventListener(he,q),()=>{we.removeEventListener(he,q)}}dispatchEvent(we,he){we.dispatchEvent(he)}remove(we){we.parentNode&&we.parentNode.removeChild(we)}createElement(we,he){return(he=he||this.getDefaultDocument()).createElement(we)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(we){return we.nodeType===Node.ELEMENT_NODE}isShadowRoot(we){return we instanceof DocumentFragment}getGlobalEventTarget(we,he){return"window"===he?window:"document"===he?we:"body"===he?we.body:null}getBaseHref(we){const he=function x(){return l=l||document.querySelector("base"),l?l.getAttribute("href"):null}();return null==he?null:function f(Ae){return new URL(Ae,document.baseURI).pathname}(he)}resetBaseElement(){l=null}getUserAgent(){return window.navigator.userAgent}getCookie(we){return(0,e._b)(document.cookie,we)}}let l=null,d=(()=>{class Ae{build(){return new XMLHttpRequest}static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const T=new t.nKC("");let y=(()=>{class Ae{constructor(he,q){this._zone=q,this._eventNameToPlugin=new Map,he.forEach(Re=>{Re.manager=this}),this._plugins=he.slice().reverse()}addEventListener(he,q,Re){return this._findPluginFor(q).addEventListener(he,q,Re)}getZone(){return this._zone}_findPluginFor(he){let q=this._eventNameToPlugin.get(he);if(q)return q;if(q=this._plugins.find(Ne=>Ne.supports(he)),!q)throw new t.wOt(5101,!1);return this._eventNameToPlugin.set(he,q),q}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(T),t.KVO(t.SKi))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();class F{constructor(we){this._doc=we}}const R="ng-app-id";let z=(()=>{class Ae{constructor(he,q,Re,Ne={}){this.doc=he,this.appId=q,this.nonce=Re,this.platformId=Ne,this.styleRef=new Map,this.hostNodes=new Set,this.styleNodesInDOM=this.collectServerRenderedStyles(),this.platformIsServer=(0,e.Vy)(Ne),this.resetHostNodes()}addStyles(he){for(const q of he)1===this.changeUsageCount(q,1)&&this.onStyleAdded(q)}removeStyles(he){for(const q of he)this.changeUsageCount(q,-1)<=0&&this.onStyleRemoved(q)}ngOnDestroy(){const he=this.styleNodesInDOM;he&&(he.forEach(q=>q.remove()),he.clear());for(const q of this.getAllStyles())this.onStyleRemoved(q);this.resetHostNodes()}addHost(he){this.hostNodes.add(he);for(const q of this.getAllStyles())this.addStyleToHost(he,q)}removeHost(he){this.hostNodes.delete(he)}getAllStyles(){return this.styleRef.keys()}onStyleAdded(he){for(const q of this.hostNodes)this.addStyleToHost(q,he)}onStyleRemoved(he){const q=this.styleRef;q.get(he)?.elements?.forEach(Re=>Re.remove()),q.delete(he)}collectServerRenderedStyles(){const he=this.doc.head?.querySelectorAll(`style[${R}="${this.appId}"]`);if(he?.length){const q=new Map;return he.forEach(Re=>{null!=Re.textContent&&q.set(Re.textContent,Re)}),q}return null}changeUsageCount(he,q){const Re=this.styleRef;if(Re.has(he)){const Ne=Re.get(he);return Ne.usage+=q,Ne.usage}return Re.set(he,{usage:q,elements:[]}),q}getStyleElement(he,q){const Re=this.styleNodesInDOM,Ne=Re?.get(q);if(Ne?.parentNode===he)return Re.delete(q),Ne.removeAttribute(R),Ne;{const gt=this.doc.createElement("style");return this.nonce&>.setAttribute("nonce",this.nonce),gt.textContent=q,this.platformIsServer&>.setAttribute(R,this.appId),he.appendChild(gt),gt}}addStyleToHost(he,q){const Re=this.getStyleElement(he,q),Ne=this.styleRef,gt=Ne.get(q)?.elements;gt?gt.push(Re):Ne.set(q,{elements:[Re],usage:1})}resetHostNodes(){const he=this.hostNodes;he.clear(),he.add(this.doc.head)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ),t.KVO(t.sZ2),t.KVO(t.BIS,8),t.KVO(t.Agw))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const W={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/Math/MathML"},$=/%COMP%/g,j="%COMP%",Q=`_nghost-${j}`,J=`_ngcontent-${j}`,ie=new t.nKC("",{providedIn:"root",factory:()=>!0});function Me(Ae,we){return we.map(he=>he.replace($,Ae))}let Te=(()=>{class Ae{constructor(he,q,Re,Ne,gt,$e,Fe,Ge=null){this.eventManager=he,this.sharedStylesHost=q,this.appId=Re,this.removeStylesOnCompDestroy=Ne,this.doc=gt,this.platformId=$e,this.ngZone=Fe,this.nonce=Ge,this.rendererByCompId=new Map,this.platformIsServer=(0,e.Vy)($e),this.defaultRenderer=new de(he,gt,Fe,this.platformIsServer)}createRenderer(he,q){if(!he||!q)return this.defaultRenderer;this.platformIsServer&&q.encapsulation===t.gXe.ShadowDom&&(q={...q,encapsulation:t.gXe.Emulated});const Re=this.getOrCreateRenderer(he,q);return Re instanceof C?Re.applyToHost(he):Re instanceof h&&Re.applyStyles(),Re}getOrCreateRenderer(he,q){const Re=this.rendererByCompId;let Ne=Re.get(q.id);if(!Ne){const gt=this.doc,$e=this.ngZone,Fe=this.eventManager,Ge=this.sharedStylesHost,et=this.removeStylesOnCompDestroy,st=this.platformIsServer;switch(q.encapsulation){case t.gXe.Emulated:Ne=new C(Fe,Ge,q,this.appId,et,gt,$e,st);break;case t.gXe.ShadowDom:return new m(Fe,Ge,he,q,gt,$e,this.nonce,st);default:Ne=new h(Fe,Ge,q,et,gt,$e,st)}Re.set(q.id,Ne)}return Ne}ngOnDestroy(){this.rendererByCompId.clear()}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(y),t.KVO(z),t.KVO(t.sZ2),t.KVO(ie),t.KVO(e.qQ),t.KVO(t.Agw),t.KVO(t.SKi),t.KVO(t.BIS))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();class de{constructor(we,he,q,Re){this.eventManager=we,this.doc=he,this.ngZone=q,this.platformIsServer=Re,this.data=Object.create(null),this.throwOnSyntheticProps=!0,this.destroyNode=null}destroy(){}createElement(we,he){return he?this.doc.createElementNS(W[he]||he,we):this.doc.createElement(we)}createComment(we){return this.doc.createComment(we)}createText(we){return this.doc.createTextNode(we)}appendChild(we,he){(c(we)?we.content:we).appendChild(he)}insertBefore(we,he,q){we&&(c(we)?we.content:we).insertBefore(he,q)}removeChild(we,he){we&&we.removeChild(he)}selectRootElement(we,he){let q="string"==typeof we?this.doc.querySelector(we):we;if(!q)throw new t.wOt(-5104,!1);return he||(q.textContent=""),q}parentNode(we){return we.parentNode}nextSibling(we){return we.nextSibling}setAttribute(we,he,q,Re){if(Re){he=Re+":"+he;const Ne=W[Re];Ne?we.setAttributeNS(Ne,he,q):we.setAttribute(he,q)}else we.setAttribute(he,q)}removeAttribute(we,he,q){if(q){const Re=W[q];Re?we.removeAttributeNS(Re,he):we.removeAttribute(`${q}:${he}`)}else we.removeAttribute(he)}addClass(we,he){we.classList.add(he)}removeClass(we,he){we.classList.remove(he)}setStyle(we,he,q,Re){Re&(t.czy.DashCase|t.czy.Important)?we.style.setProperty(he,q,Re&t.czy.Important?"important":""):we.style[he]=q}removeStyle(we,he,q){q&t.czy.DashCase?we.style.removeProperty(he):we.style[he]=""}setProperty(we,he,q){null!=we&&(we[he]=q)}setValue(we,he){we.nodeValue=he}listen(we,he,q){if("string"==typeof we&&!(we=(0,e.QT)().getGlobalEventTarget(this.doc,we)))throw new Error(`Unsupported event target ${we} for event ${he}`);return this.eventManager.addEventListener(we,he,this.decoratePreventDefault(q))}decoratePreventDefault(we){return he=>{if("__ngUnwrap__"===he)return we;!1===(this.platformIsServer?this.ngZone.runGuarded(()=>we(he)):we(he))&&he.preventDefault()}}}function c(Ae){return"TEMPLATE"===Ae.tagName&&void 0!==Ae.content}class m extends de{constructor(we,he,q,Re,Ne,gt,$e,Fe){super(we,Ne,gt,Fe),this.sharedStylesHost=he,this.hostEl=q,this.shadowRoot=q.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const Ge=Me(Re.id,Re.styles);for(const et of Ge){const st=document.createElement("style");$e&&st.setAttribute("nonce",$e),st.textContent=et,this.shadowRoot.appendChild(st)}}nodeOrShadowRoot(we){return we===this.hostEl?this.shadowRoot:we}appendChild(we,he){return super.appendChild(this.nodeOrShadowRoot(we),he)}insertBefore(we,he,q){return super.insertBefore(this.nodeOrShadowRoot(we),he,q)}removeChild(we,he){return super.removeChild(this.nodeOrShadowRoot(we),he)}parentNode(we){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(we)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class h extends de{constructor(we,he,q,Re,Ne,gt,$e,Fe){super(we,Ne,gt,$e),this.sharedStylesHost=he,this.removeStylesOnCompDestroy=Re,this.styles=Fe?Me(Fe,q.styles):q.styles}applyStyles(){this.sharedStylesHost.addStyles(this.styles)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles)}}class C extends h{constructor(we,he,q,Re,Ne,gt,$e,Fe){const Ge=Re+"-"+q.id;super(we,he,q,Ne,gt,$e,Fe,Ge),this.contentAttr=function ge(Ae){return J.replace($,Ae)}(Ge),this.hostAttr=function ae(Ae){return Q.replace($,Ae)}(Ge)}applyToHost(we){this.applyStyles(),this.setAttribute(we,this.hostAttr,"")}createElement(we,he){const q=super.createElement(we,he);return super.setAttribute(q,this.contentAttr,""),q}}let k=(()=>{class Ae extends F{constructor(he){super(he)}supports(he){return!0}addEventListener(he,q,Re){return he.addEventListener(q,Re,!1),()=>this.removeEventListener(he,q,Re)}removeEventListener(he,q,Re){return he.removeEventListener(q,Re)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const L=["alt","control","meta","shift"],_={"\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"},r={alt:Ae=>Ae.altKey,control:Ae=>Ae.ctrlKey,meta:Ae=>Ae.metaKey,shift:Ae=>Ae.shiftKey};let v=(()=>{class Ae extends F{constructor(he){super(he)}supports(he){return null!=Ae.parseEventName(he)}addEventListener(he,q,Re){const Ne=Ae.parseEventName(q),gt=Ae.eventCallback(Ne.fullKey,Re,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,e.QT)().onAndCancel(he,Ne.domEventName,gt))}static parseEventName(he){const q=he.toLowerCase().split("."),Re=q.shift();if(0===q.length||"keydown"!==Re&&"keyup"!==Re)return null;const Ne=Ae._normalizeKey(q.pop());let gt="",$e=q.indexOf("code");if($e>-1&&(q.splice($e,1),gt="code."),L.forEach(Ge=>{const et=q.indexOf(Ge);et>-1&&(q.splice(et,1),gt+=Ge+".")}),gt+=Ne,0!=q.length||0===Ne.length)return null;const Fe={};return Fe.domEventName=Re,Fe.fullKey=gt,Fe}static matchEventFullKeyCode(he,q){let Re=_[he.key]||he.key,Ne="";return q.indexOf("code.")>-1&&(Re=he.code,Ne="code."),!(null==Re||!Re)&&(Re=Re.toLowerCase()," "===Re?Re="space":"."===Re&&(Re="dot"),L.forEach(gt=>{gt!==Re&&(0,r[gt])(he)&&(Ne+=gt+".")}),Ne+=Re,Ne===q)}static eventCallback(he,q,Re){return Ne=>{Ae.matchEventFullKeyCode(Ne,he)&&Re.runGuarded(()=>q(Ne))}}static _normalizeKey(he){return"esc"===he?"escape":he}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const X=(0,t.oH4)(t.fpN,"browser",[{provide:t.Agw,useValue:e.AJ},{provide:t.PLl,useValue:function ze(){S.makeCurrent()},multi:!0},{provide:e.qQ,useFactory:function Ke(){return(0,t.TL$)(document),document},deps:[]}]),me=new t.nKC(""),ce=[{provide:t.e01,useClass:class I{addToWindow(we){t.JZv.getAngularTestability=(q,Re=!0)=>{const Ne=we.findTestabilityInTree(q,Re);if(null==Ne)throw new t.wOt(5103,!1);return Ne},t.JZv.getAllAngularTestabilities=()=>we.getAllTestabilities(),t.JZv.getAllAngularRootElements=()=>we.getAllRootElements(),t.JZv.frameworkStabilizers||(t.JZv.frameworkStabilizers=[]),t.JZv.frameworkStabilizers.push(q=>{const Re=t.JZv.getAllAngularTestabilities();let Ne=Re.length;const gt=function(){Ne--,0==Ne&&q()};Re.forEach($e=>{$e.whenStable(gt)})})}findTestabilityInTree(we,he,q){return null==he?null:we.getTestability(he)??(q?(0,e.QT)().isShadowRoot(he)?this.findTestabilityInTree(we,he.host,!0):this.findTestabilityInTree(we,he.parentElement,!0):null)}},deps:[]},{provide:t.WHO,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]},{provide:t.NYb,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]}],fe=[{provide:t.H8p,useValue:"root"},{provide:t.zcH,useFactory:function qe(){return new t.zcH},deps:[]},{provide:T,useClass:k,multi:!0,deps:[e.qQ,t.SKi,t.Agw]},{provide:T,useClass:v,multi:!0,deps:[e.qQ]},Te,z,y,{provide:t._9s,useExisting:Te},{provide:e.N0,useClass:d,deps:[]},[]];let ke=(()=>{class Ae{constructor(he){}static withServerTransition(he){return{ngModule:Ae,providers:[{provide:t.sZ2,useValue:he.appId}]}}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(me,12))};static#t=this.\u0275mod=t.$C({type:Ae});static#i=this.\u0275inj=t.G2t({providers:[...fe,...ce],imports:[e.MD,t.Hbi]})}return Ae})(),be=(()=>{class Ae{constructor(he){this._doc=he}getTitle(){return this._doc.title}setTitle(he){this._doc.title=he||""}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac,providedIn:"root"})}return Ae})();const Ie={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},He=new t.nKC("HammerGestureConfig"),Xe=new t.nKC("HammerLoader");let yt=(()=>{class Ae{constructor(){this.events=[],this.overrides={}}buildHammer(he){const q=new Hammer(he,this.options);q.get("pinch").set({enable:!0}),q.get("rotate").set({enable:!0});for(const Re in this.overrides)q.get(Re).set(this.overrides[Re]);return q}static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})(),Ye=(()=>{class Ae extends F{constructor(he,q,Re,Ne){super(he),this._config=q,this.console=Re,this.loader=Ne,this._loaderPromise=null}supports(he){return!(!Ie.hasOwnProperty(he.toLowerCase())&&!this.isCustomEvent(he)||!window.Hammer&&!this.loader)}addEventListener(he,q,Re){const Ne=this.manager.getZone();if(q=q.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Ne.runOutsideAngular(()=>this.loader());let gt=!1,$e=()=>{gt=!0};return Ne.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?gt||($e=this.addEventListener(he,q,Re)):$e=()=>{}}).catch(()=>{$e=()=>{}})),()=>{$e()}}return Ne.runOutsideAngular(()=>{const gt=this._config.buildHammer(he),$e=function(Fe){Ne.runGuarded(function(){Re(Fe)})};return gt.on(q,$e),()=>{gt.off(q,$e),"function"==typeof gt.destroy&>.destroy()}})}isCustomEvent(he){return this._config.events.indexOf(he)>-1}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ),t.KVO(He),t.KVO(t.H3F),t.KVO(Xe,8))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})(),rt=(()=>{class Ae{static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275mod=t.$C({type:Ae});static#i=this.\u0275inj=t.G2t({providers:[{provide:T,useClass:Ye,multi:!0,deps:[e.qQ,He,t.H3F,[new t.Xx1,Xe]]},{provide:He,useClass:yt,deps:[]}]})}return Ae})(),Yt=(()=>{class Ae{static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:function(q){let Re=null;return Re=q?new(q||Ae):t.KVO(Nt),Re},providedIn:"root"})}return Ae})(),Nt=(()=>{class Ae extends Yt{constructor(he){super(),this._doc=he}sanitize(he,q){if(null==q)return null;switch(he){case t.WPN.NONE:return q;case t.WPN.HTML:return(0,t.ZF7)(q,"HTML")?(0,t.rcV)(q):(0,t.h9k)(this._doc,String(q)).toString();case t.WPN.STYLE:return(0,t.ZF7)(q,"Style")?(0,t.rcV)(q):q;case t.WPN.SCRIPT:if((0,t.ZF7)(q,"Script"))return(0,t.rcV)(q);throw new t.wOt(5200,!1);case t.WPN.URL:return(0,t.ZF7)(q,"URL")?(0,t.rcV)(q):(0,t.$MX)(String(q));case t.WPN.RESOURCE_URL:if((0,t.ZF7)(q,"ResourceURL"))return(0,t.rcV)(q);throw new t.wOt(5201,!1);default:throw new t.wOt(5202,!1)}}bypassSecurityTrustHtml(he){return(0,t.Kcf)(he)}bypassSecurityTrustStyle(he){return(0,t.cWb)(he)}bypassSecurityTrustScript(he){return(0,t.UyX)(he)}bypassSecurityTrustUrl(he){return(0,t.osQ)(he)}bypassSecurityTrustResourceUrl(he){return(0,t.e5t)(he)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac,providedIn:"root"})}return Ae})()},1188:(Qe,te,g)=>{"use strict";g.d(te,{nX:()=>Rr,j5:()=>si,wF:()=>ot,L6:()=>mn,Z:()=>Ce,gx:()=>rr,Ix:()=>sn,Wk:()=>fa,wQ:()=>Ya,iI:()=>En,n3:()=>hn});var e=g(467),t=g(4438),w=g(4402),S=g(2806),l=g(7673),x=g(4412),f=g(4572),I=g(9350),d=g(8793),T=g(9030),y=g(1203),F=g(8810),R=g(983),z=g(17),W=g(1413),$=g(8359),j=g(177),Q=g(6354),J=g(5558),ee=g(6697),ie=g(9172),ge=g(5964),ae=g(1397),Me=g(1594),Te=g(274),de=g(8141),D=g(9437),n=g(2816),c=g(9901),m=g(9974),h=g(4360);function C(ve){return ve<=0?()=>R.w:(0,m.N)((Pe,xe)=>{let Be=[];Pe.subscribe((0,h._)(xe,ft=>{Be.push(ft),ve{for(const ft of Be)xe.next(ft);xe.complete()},void 0,()=>{Be=null}))})}var k=g(3774),L=g(3669),r=g(3703),v=g(980),V=g(9898),N=g(6977),ne=g(6365),Ee=g(345);const ze="primary",qe=Symbol("RouteTitle");class Ke{constructor(Pe){this.params=Pe||{}}has(Pe){return Object.prototype.hasOwnProperty.call(this.params,Pe)}get(Pe){if(this.has(Pe)){const xe=this.params[Pe];return Array.isArray(xe)?xe[0]:xe}return null}getAll(Pe){if(this.has(Pe)){const xe=this.params[Pe];return Array.isArray(xe)?xe:[xe]}return[]}get keys(){return Object.keys(this.params)}}function se(ve){return new Ke(ve)}function X(ve,Pe,xe){const Be=xe.path.split("/");if(Be.length>ve.length||"full"===xe.pathMatch&&(Pe.hasChildren()||Be.lengthBe[Ot]===ft)}return ve===Pe}function mt(ve){return ve.length>0?ve[ve.length-1]:null}function _e(ve){return(0,w.A)(ve)?ve:(0,t.jNT)(ve)?(0,S.H)(Promise.resolve(ve)):(0,l.of)(ve)}const be={exact:function at(ve,Pe,xe){if(!Ye(ve.segments,Pe.segments)||!ue(ve.segments,Pe.segments,xe)||ve.numberOfChildren!==Pe.numberOfChildren)return!1;for(const Be in Pe.children)if(!ve.children[Be]||!at(ve.children[Be],Pe.children[Be],xe))return!1;return!0},subset:Xt},pe={exact:function _t(ve,Pe){return ce(ve,Pe)},subset:function pt(ve,Pe){return Object.keys(Pe).length<=Object.keys(ve).length&&Object.keys(Pe).every(xe=>ke(ve[xe],Pe[xe]))},ignored:()=>!0};function Ze(ve,Pe,xe){return be[xe.paths](ve.root,Pe.root,xe.matrixParams)&&pe[xe.queryParams](ve.queryParams,Pe.queryParams)&&!("exact"===xe.fragment&&ve.fragment!==Pe.fragment)}function Xt(ve,Pe,xe){return ye(ve,Pe,Pe.segments,xe)}function ye(ve,Pe,xe,Be){if(ve.segments.length>xe.length){const ft=ve.segments.slice(0,xe.length);return!(!Ye(ft,xe)||Pe.hasChildren()||!ue(ft,xe,Be))}if(ve.segments.length===xe.length){if(!Ye(ve.segments,xe)||!ue(ve.segments,xe,Be))return!1;for(const ft in Pe.children)if(!ve.children[ft]||!Xt(ve.children[ft],Pe.children[ft],Be))return!1;return!0}{const ft=xe.slice(0,ve.segments.length),Ot=xe.slice(ve.segments.length);return!!(Ye(ve.segments,ft)&&ue(ve.segments,ft,Be)&&ve.children[ze])&&ye(ve.children[ze],Pe,Ot,Be)}}function ue(ve,Pe,xe){return Pe.every((Be,ft)=>pe[xe](ve[ft].parameters,Be.parameters))}class Ie{constructor(Pe=new He([],{}),xe={},Be=null){this.root=Pe,this.queryParams=xe,this.fragment=Be}get queryParamMap(){return this._queryParamMap??=se(this.queryParams),this._queryParamMap}toString(){return Et.serialize(this)}}class He{constructor(Pe,xe){this.segments=Pe,this.children=xe,this.parent=null,Object.values(xe).forEach(Be=>Be.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Vt(this)}}class Xe{constructor(Pe,xe){this.path=Pe,this.parameters=xe}get parameterMap(){return this._parameterMap??=se(this.parameters),this._parameterMap}toString(){return Ae(this)}}function Ye(ve,Pe){return ve.length===Pe.length&&ve.every((xe,Be)=>xe.path===Pe[Be].path)}let Yt=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>new Nt,providedIn:"root"})}return ve})();class Nt{parse(Pe){const xe=new st(Pe);return new Ie(xe.parseRootSegment(),xe.parseQueryParams(),xe.parseFragment())}serialize(Pe){const xe=`/${oe(Pe.root,!0)}`,Be=function he(ve){const Pe=Object.entries(ve).map(([xe,Be])=>Array.isArray(Be)?Be.map(ft=>`${$t(xe)}=${$t(ft)}`).join("&"):`${$t(xe)}=${$t(Be)}`).filter(xe=>xe);return Pe.length?`?${Pe.join("&")}`:""}(Pe.queryParams);return`${xe}${Be}${"string"==typeof Pe.fragment?`#${function zt(ve){return encodeURI(ve)}(Pe.fragment)}`:""}`}}const Et=new Nt;function Vt(ve){return ve.segments.map(Pe=>Ae(Pe)).join("/")}function oe(ve,Pe){if(!ve.hasChildren())return Vt(ve);if(Pe){const xe=ve.children[ze]?oe(ve.children[ze],!1):"",Be=[];return Object.entries(ve.children).forEach(([ft,Ot])=>{ft!==ze&&Be.push(`${ft}:${oe(Ot,!1)}`)}),Be.length>0?`${xe}(${Be.join("//")})`:xe}{const xe=function rt(ve,Pe){let xe=[];return Object.entries(ve.children).forEach(([Be,ft])=>{Be===ze&&(xe=xe.concat(Pe(ft,Be)))}),Object.entries(ve.children).forEach(([Be,ft])=>{Be!==ze&&(xe=xe.concat(Pe(ft,Be)))}),xe}(ve,(Be,ft)=>ft===ze?[oe(ve.children[ze],!1)]:[`${ft}:${oe(Be,!1)}`]);return 1===Object.keys(ve.children).length&&null!=ve.children[ze]?`${Vt(ve)}/${xe[0]}`:`${Vt(ve)}/(${xe.join("//")})`}}function tt(ve){return encodeURIComponent(ve).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function $t(ve){return tt(ve).replace(/%3B/gi,";")}function Jt(ve){return tt(ve).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function St(ve){return decodeURIComponent(ve)}function dt(ve){return St(ve.replace(/\+/g,"%20"))}function Ae(ve){return`${Jt(ve.path)}${function we(ve){return Object.entries(ve).map(([Pe,xe])=>`;${Jt(Pe)}=${Jt(xe)}`).join("")}(ve.parameters)}`}const q=/^[^\/()?;#]+/;function Re(ve){const Pe=ve.match(q);return Pe?Pe[0]:""}const Ne=/^[^\/()?;=#]+/,$e=/^[^=?&#]+/,Ge=/^[^&#]+/;class st{constructor(Pe){this.url=Pe,this.remaining=Pe}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new He([],{}):new He([],this.parseChildren())}parseQueryParams(){const Pe={};if(this.consumeOptional("?"))do{this.parseQueryParam(Pe)}while(this.consumeOptional("&"));return Pe}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const Pe=[];for(this.peekStartsWith("(")||Pe.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),Pe.push(this.parseSegment());let xe={};this.peekStartsWith("/(")&&(this.capture("/"),xe=this.parseParens(!0));let Be={};return this.peekStartsWith("(")&&(Be=this.parseParens(!1)),(Pe.length>0||Object.keys(xe).length>0)&&(Be[ze]=new He(Pe,xe)),Be}parseSegment(){const Pe=Re(this.remaining);if(""===Pe&&this.peekStartsWith(";"))throw new t.wOt(4009,!1);return this.capture(Pe),new Xe(St(Pe),this.parseMatrixParams())}parseMatrixParams(){const Pe={};for(;this.consumeOptional(";");)this.parseParam(Pe);return Pe}parseParam(Pe){const xe=function gt(ve){const Pe=ve.match(Ne);return Pe?Pe[0]:""}(this.remaining);if(!xe)return;this.capture(xe);let Be="";if(this.consumeOptional("=")){const ft=Re(this.remaining);ft&&(Be=ft,this.capture(Be))}Pe[St(xe)]=St(Be)}parseQueryParam(Pe){const xe=function Fe(ve){const Pe=ve.match($e);return Pe?Pe[0]:""}(this.remaining);if(!xe)return;this.capture(xe);let Be="";if(this.consumeOptional("=")){const qt=function et(ve){const Pe=ve.match(Ge);return Pe?Pe[0]:""}(this.remaining);qt&&(Be=qt,this.capture(Be))}const ft=dt(xe),Ot=dt(Be);if(Pe.hasOwnProperty(ft)){let qt=Pe[ft];Array.isArray(qt)||(qt=[qt],Pe[ft]=qt),qt.push(Ot)}else Pe[ft]=Ot}parseParens(Pe){const xe={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const Be=Re(this.remaining),ft=this.remaining[Be.length];if("/"!==ft&&")"!==ft&&";"!==ft)throw new t.wOt(4010,!1);let Ot;Be.indexOf(":")>-1?(Ot=Be.slice(0,Be.indexOf(":")),this.capture(Ot),this.capture(":")):Pe&&(Ot=ze);const qt=this.parseChildren();xe[Ot]=1===Object.keys(qt).length?qt[ze]:new He([],qt),this.consumeOptional("//")}return xe}peekStartsWith(Pe){return this.remaining.startsWith(Pe)}consumeOptional(Pe){return!!this.peekStartsWith(Pe)&&(this.remaining=this.remaining.substring(Pe.length),!0)}capture(Pe){if(!this.consumeOptional(Pe))throw new t.wOt(4011,!1)}}function Tt(ve){return ve.segments.length>0?new He([],{[ze]:ve}):ve}function mi(ve){const Pe={};for(const[Be,ft]of Object.entries(ve.children)){const Ot=mi(ft);if(Be===ze&&0===Ot.segments.length&&Ot.hasChildren())for(const[qt,Mi]of Object.entries(Ot.children))Pe[qt]=Mi;else(Ot.segments.length>0||Ot.hasChildren())&&(Pe[Be]=Ot)}return function Kt(ve){if(1===ve.numberOfChildren&&ve.children[ze]){const Pe=ve.children[ze];return new He(ve.segments.concat(Pe.segments),Pe.children)}return ve}(new He(ve.segments,Pe))}function Pt(ve){return ve instanceof Ie}function di(ve){let Pe;const ft=Tt(function xe(Ot){const qt={};for(const vi of Ot.children){const on=xe(vi);qt[vi.outlet]=on}const Mi=new He(Ot.url,qt);return Ot===ve&&(Pe=Mi),Mi}(ve.root));return Pe??ft}function fi(ve,Pe,xe,Be){let ft=ve;for(;ft.parent;)ft=ft.parent;if(0===Pe.length)return Li(ft,ft,ft,xe,Be);const Ot=function Mt(ve){if("string"==typeof ve[0]&&1===ve.length&&"/"===ve[0])return new Qt(!0,0,ve);let Pe=0,xe=!1;const Be=ve.reduce((ft,Ot,qt)=>{if("object"==typeof Ot&&null!=Ot){if(Ot.outlets){const Mi={};return Object.entries(Ot.outlets).forEach(([vi,on])=>{Mi[vi]="string"==typeof on?on.split("/"):on}),[...ft,{outlets:Mi}]}if(Ot.segmentPath)return[...ft,Ot.segmentPath]}return"string"!=typeof Ot?[...ft,Ot]:0===qt?(Ot.split("/").forEach((Mi,vi)=>{0==vi&&"."===Mi||(0==vi&&""===Mi?xe=!0:".."===Mi?Pe++:""!=Mi&&ft.push(Mi))}),ft):[...ft,Ot]},[]);return new Qt(xe,Pe,Be)}(Pe);if(Ot.toRoot())return Li(ft,ft,new He([],{}),xe,Be);const qt=function ct(ve,Pe,xe){if(ve.isAbsolute)return new it(Pe,!0,0);if(!xe)return new it(Pe,!1,NaN);if(null===xe.parent)return new it(xe,!0,0);const Be=vn(ve.commands[0])?0:1;return function wt(ve,Pe,xe){let Be=ve,ft=Pe,Ot=xe;for(;Ot>ft;){if(Ot-=ft,Be=Be.parent,!Be)throw new t.wOt(4005,!1);ft=Be.segments.length}return new it(Be,!1,ft-Ot)}(xe,xe.segments.length-1+Be,ve.numberOfDoubleDots)}(Ot,ft,ve),Mi=qt.processChildren?Si(qt.segmentGroup,qt.index,Ot.commands):xi(qt.segmentGroup,qt.index,Ot.commands);return Li(ft,qt.segmentGroup,Mi,xe,Be)}function vn(ve){return"object"==typeof ve&&null!=ve&&!ve.outlets&&!ve.segmentPath}function Qi(ve){return"object"==typeof ve&&null!=ve&&ve.outlets}function Li(ve,Pe,xe,Be,ft){let qt,Ot={};Be&&Object.entries(Be).forEach(([vi,on])=>{Ot[vi]=Array.isArray(on)?on.map(Sn=>`${Sn}`):`${on}`}),qt=ve===Pe?xe:Zi(ve,Pe,xe);const Mi=Tt(mi(qt));return new Ie(Mi,Ot,ft)}function Zi(ve,Pe,xe){const Be={};return Object.entries(ve.children).forEach(([ft,Ot])=>{Be[ft]=Ot===Pe?xe:Zi(Ot,Pe,xe)}),new He(ve.segments,Be)}class Qt{constructor(Pe,xe,Be){if(this.isAbsolute=Pe,this.numberOfDoubleDots=xe,this.commands=Be,Pe&&Be.length>0&&vn(Be[0]))throw new t.wOt(4003,!1);const ft=Be.find(Qi);if(ft&&ft!==mt(Be))throw new t.wOt(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class it{constructor(Pe,xe,Be){this.segmentGroup=Pe,this.processChildren=xe,this.index=Be}}function xi(ve,Pe,xe){if(ve??=new He([],{}),0===ve.segments.length&&ve.hasChildren())return Si(ve,Pe,xe);const Be=function zi(ve,Pe,xe){let Be=0,ft=Pe;const Ot={match:!1,pathIndex:0,commandIndex:0};for(;ft=xe.length)return Ot;const qt=ve.segments[ft],Mi=xe[Be];if(Qi(Mi))break;const vi=`${Mi}`,on=Be0&&void 0===vi)break;if(vi&&on&&"object"==typeof on&&void 0===on.outlets){if(!Zt(vi,on,qt))return Ot;Be+=2}else{if(!Zt(vi,{},qt))return Ot;Be++}ft++}return{match:!0,pathIndex:ft,commandIndex:Be}}(ve,Pe,xe),ft=xe.slice(Be.commandIndex);if(Be.match&&Be.pathIndexOt!==ze)&&ve.children[ze]&&1===ve.numberOfChildren&&0===ve.children[ze].segments.length){const Ot=Si(ve.children[ze],Pe,xe);return new He(ve.segments,Ot.children)}return Object.entries(Be).forEach(([Ot,qt])=>{"string"==typeof qt&&(qt=[qt]),null!==qt&&(ft[Ot]=xi(ve.children[Ot],Pe,qt))}),Object.entries(ve.children).forEach(([Ot,qt])=>{void 0===Be[Ot]&&(ft[Ot]=qt)}),new He(ve.segments,ft)}}function en(ve,Pe,xe){const Be=ve.segments.slice(0,Pe);let ft=0;for(;ft{"string"==typeof Be&&(Be=[Be]),null!==Be&&(Pe[xe]=en(new He([],{}),0,Be))}),Pe}function fn(ve){const Pe={};return Object.entries(ve).forEach(([xe,Be])=>Pe[xe]=`${Be}`),Pe}function Zt(ve,Pe,xe){return ve==xe.path&&ce(Pe,xe.parameters)}const bt="imperative";var re=function(ve){return ve[ve.NavigationStart=0]="NavigationStart",ve[ve.NavigationEnd=1]="NavigationEnd",ve[ve.NavigationCancel=2]="NavigationCancel",ve[ve.NavigationError=3]="NavigationError",ve[ve.RoutesRecognized=4]="RoutesRecognized",ve[ve.ResolveStart=5]="ResolveStart",ve[ve.ResolveEnd=6]="ResolveEnd",ve[ve.GuardsCheckStart=7]="GuardsCheckStart",ve[ve.GuardsCheckEnd=8]="GuardsCheckEnd",ve[ve.RouteConfigLoadStart=9]="RouteConfigLoadStart",ve[ve.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",ve[ve.ChildActivationStart=11]="ChildActivationStart",ve[ve.ChildActivationEnd=12]="ChildActivationEnd",ve[ve.ActivationStart=13]="ActivationStart",ve[ve.ActivationEnd=14]="ActivationEnd",ve[ve.Scroll=15]="Scroll",ve[ve.NavigationSkipped=16]="NavigationSkipped",ve}(re||{});class je{constructor(Pe,xe){this.id=Pe,this.url=xe}}class Ce extends je{constructor(Pe,xe,Be="imperative",ft=null){super(Pe,xe),this.type=re.NavigationStart,this.navigationTrigger=Be,this.restoredState=ft}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class ot extends je{constructor(Pe,xe,Be){super(Pe,xe),this.urlAfterRedirects=Be,this.type=re.NavigationEnd}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var ut=function(ve){return ve[ve.Redirect=0]="Redirect",ve[ve.SupersededByNewNavigation=1]="SupersededByNewNavigation",ve[ve.NoDataFromResolver=2]="NoDataFromResolver",ve[ve.GuardRejected=3]="GuardRejected",ve}(ut||{}),ii=function(ve){return ve[ve.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",ve[ve.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",ve}(ii||{});class si extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.reason=Be,this.code=ft,this.type=re.NavigationCancel}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class Pi extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.reason=Be,this.code=ft,this.type=re.NavigationSkipped}}class mn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.error=Be,this.target=ft,this.type=re.NavigationError}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class Fn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.RoutesRecognized}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class $n extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.GuardsCheckStart}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Yn extends je{constructor(Pe,xe,Be,ft,Ot){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.shouldActivate=Ot,this.type=re.GuardsCheckEnd}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class Qn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.ResolveStart}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class rr extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.ResolveEnd}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Rn{constructor(Pe){this.route=Pe,this.type=re.RouteConfigLoadStart}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class _i{constructor(Pe){this.route=Pe,this.type=re.RouteConfigLoadEnd}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class Oi{constructor(Pe){this.snapshot=Pe,this.type=re.ChildActivationStart}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class jt{constructor(Pe){this.snapshot=Pe,this.type=re.ChildActivationEnd}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ci{constructor(Pe){this.snapshot=Pe,this.type=re.ActivationStart}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class hi{constructor(Pe){this.snapshot=Pe,this.type=re.ActivationEnd}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class yi{constructor(Pe,xe,Be){this.routerEvent=Pe,this.position=xe,this.anchor=Be,this.type=re.Scroll}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class Vi{}class ji{constructor(Pe,xe){this.url=Pe,this.navigationBehaviorOptions=xe}}class ar{constructor(Pe){this.injector=Pe,this.outlet=null,this.route=null,this.children=new sr(this.injector),this.attachRef=null}}let sr=(()=>{class ve{constructor(xe){this.parentInjector=xe,this.contexts=new Map}onChildOutletCreated(xe,Be){const ft=this.getOrCreateContext(xe);ft.outlet=Be,this.contexts.set(xe,ft)}onChildOutletDestroyed(xe){const Be=this.getContext(xe);Be&&(Be.outlet=null,Be.attachRef=null)}onOutletDeactivated(){const xe=this.contexts;return this.contexts=new Map,xe}onOutletReAttached(xe){this.contexts=xe}getOrCreateContext(xe){let Be=this.getContext(xe);return Be||(Be=new ar(this.parentInjector),this.contexts.set(xe,Be)),Be}getContext(xe){return this.contexts.get(xe)||null}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(t.uvJ))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();class nr{constructor(Pe){this._root=Pe}get root(){return this._root.value}parent(Pe){const xe=this.pathFromRoot(Pe);return xe.length>1?xe[xe.length-2]:null}children(Pe){const xe=or(Pe,this._root);return xe?xe.children.map(Be=>Be.value):[]}firstChild(Pe){const xe=or(Pe,this._root);return xe&&xe.children.length>0?xe.children[0].value:null}siblings(Pe){const xe=Xr(Pe,this._root);return xe.length<2?[]:xe[xe.length-2].children.map(ft=>ft.value).filter(ft=>ft!==Pe)}pathFromRoot(Pe){return Xr(Pe,this._root).map(xe=>xe.value)}}function or(ve,Pe){if(ve===Pe.value)return Pe;for(const xe of Pe.children){const Be=or(ve,xe);if(Be)return Be}return null}function Xr(ve,Pe){if(ve===Pe.value)return[Pe];for(const xe of Pe.children){const Be=Xr(ve,xe);if(Be.length)return Be.unshift(Pe),Be}return[]}class Sr{constructor(Pe,xe){this.value=Pe,this.children=xe}toString(){return`TreeNode(${this.value})`}}function zr(ve){const Pe={};return ve&&ve.children.forEach(xe=>Pe[xe.value.outlet]=xe),Pe}class Ho extends nr{constructor(Pe,xe){super(Pe),this.snapshot=xe,ho(this,Pe)}toString(){return this.snapshot.toString()}}function xo(ve){const Pe=function is(ve){const Ot=new Ea([],{},{},"",{},ze,ve,null,{});return new no("",new Sr(Ot,[]))}(ve),xe=new x.t([new Xe("",{})]),Be=new x.t({}),ft=new x.t({}),Ot=new x.t({}),qt=new x.t(""),Mi=new Rr(xe,Be,Ot,qt,ft,ze,ve,Pe.root);return Mi.snapshot=Pe.root,new Ho(new Sr(Mi,[]),Pe)}class Rr{constructor(Pe,xe,Be,ft,Ot,qt,Mi,vi){this.urlSubject=Pe,this.paramsSubject=xe,this.queryParamsSubject=Be,this.fragmentSubject=ft,this.dataSubject=Ot,this.outlet=qt,this.component=Mi,this._futureSnapshot=vi,this.title=this.dataSubject?.pipe((0,Q.T)(on=>on[qe]))??(0,l.of)(void 0),this.url=Pe,this.params=xe,this.queryParams=Be,this.fragment=ft,this.data=Ot}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.params.pipe((0,Q.T)(Pe=>se(Pe))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,Q.T)(Pe=>se(Pe))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Ma(ve,Pe,xe="emptyOnly"){let Be;const{routeConfig:ft}=ve;return Be=null===Pe||"always"!==xe&&""!==ft?.path&&(Pe.component||Pe.routeConfig?.loadComponent)?{params:{...ve.params},data:{...ve.data},resolve:{...ve.data,...ve._resolvedData??{}}}:{params:{...Pe.params,...ve.params},data:{...Pe.data,...ve.data},resolve:{...ve.data,...Pe.data,...ft?.data,...ve._resolvedData}},ft&&ro(ft)&&(Be.resolve[qe]=ft.title),Be}class Ea{get title(){return this.data?.[qe]}constructor(Pe,xe,Be,ft,Ot,qt,Mi,vi,on){this.url=Pe,this.params=xe,this.queryParams=Be,this.fragment=ft,this.data=Ot,this.outlet=qt,this.component=Mi,this.routeConfig=vi,this._resolve=on}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??=se(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=se(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(Be=>Be.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class no extends nr{constructor(Pe,xe){super(xe),this.url=Pe,ho(this,xe)}toString(){return xr(this._root)}}function ho(ve,Pe){Pe.value._routerState=ve,Pe.children.forEach(xe=>ho(ve,xe))}function xr(ve){const Pe=ve.children.length>0?` { ${ve.children.map(xr).join(", ")} } `:"";return`${ve.value}${Pe}`}function Sa(ve){if(ve.snapshot){const Pe=ve.snapshot,xe=ve._futureSnapshot;ve.snapshot=xe,ce(Pe.queryParams,xe.queryParams)||ve.queryParamsSubject.next(xe.queryParams),Pe.fragment!==xe.fragment&&ve.fragmentSubject.next(xe.fragment),ce(Pe.params,xe.params)||ve.paramsSubject.next(xe.params),function me(ve,Pe){if(ve.length!==Pe.length)return!1;for(let xe=0;xece(xe.parameters,Pe[Be].parameters))}(ve.url,Pe.url);return xe&&!(!ve.parent!=!Pe.parent)&&(!ve.parent||zn(ve.parent,Pe.parent))}function ro(ve){return"string"==typeof ve.title||null===ve.title}let hn=(()=>{class ve{constructor(){this.activated=null,this._activatedRoute=null,this.name=ze,this.activateEvents=new t.bkB,this.deactivateEvents=new t.bkB,this.attachEvents=new t.bkB,this.detachEvents=new t.bkB,this.parentContexts=(0,t.WQX)(sr),this.location=(0,t.WQX)(t.c1b),this.changeDetector=(0,t.WQX)(t.gRc),this.inputBinder=(0,t.WQX)(Ta,{optional:!0}),this.supportsBindingToComponentInputs=!0}get activatedComponentRef(){return this.activated}ngOnChanges(xe){if(xe.name){const{firstChange:Be,previousValue:ft}=xe.name;if(Be)return;this.isTrackedInParentContexts(ft)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(ft)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(xe){return this.parentContexts.getContext(xe)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const xe=this.parentContexts.getContext(this.name);xe?.route&&(xe.attachRef?this.attach(xe.attachRef,xe.route):this.activateWith(xe.route,xe.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new t.wOt(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new t.wOt(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new t.wOt(4012,!1);this.location.detach();const xe=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(xe.instance),xe}attach(xe,Be){this.activated=xe,this._activatedRoute=Be,this.location.insert(xe.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(xe.instance)}deactivate(){if(this.activated){const xe=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(xe)}}activateWith(xe,Be){if(this.isActivated)throw new t.wOt(4013,!1);this._activatedRoute=xe;const ft=this.location,qt=xe.snapshot.component,Mi=this.parentContexts.getOrCreateContext(this.name).children,vi=new Yr(xe,Mi,ft.injector);this.activated=ft.createComponent(qt,{index:ft.length,injector:vi,environmentInjector:Be}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["router-outlet"]],inputs:{name:"name"},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0,features:[t.OA$]})}return ve})();class Yr{__ngOutletInjector(Pe){return new Yr(this.route,this.childContexts,Pe)}constructor(Pe,xe,Be){this.route=Pe,this.childContexts=xe,this.parent=Be}get(Pe,xe){return Pe===Rr?this.route:Pe===sr?this.childContexts:this.parent.get(Pe,xe)}}const Ta=new t.nKC("");let Co=(()=>{class ve{constructor(){this.outletDataSubscriptions=new Map}bindActivatedRouteToOutletComponent(xe){this.unsubscribeFromRouteData(xe),this.subscribeToRouteData(xe)}unsubscribeFromRouteData(xe){this.outletDataSubscriptions.get(xe)?.unsubscribe(),this.outletDataSubscriptions.delete(xe)}subscribeToRouteData(xe){const{activatedRoute:Be}=xe,ft=(0,f.z)([Be.queryParams,Be.params,Be.data]).pipe((0,J.n)(([Ot,qt,Mi],vi)=>(Mi={...Ot,...qt,...Mi},0===vi?(0,l.of)(Mi):Promise.resolve(Mi)))).subscribe(Ot=>{if(!xe.isActivated||!xe.activatedComponentRef||xe.activatedRoute!==Be||null===Be.component)return void this.unsubscribeFromRouteData(xe);const qt=(0,t.HJs)(Be.component);if(qt)for(const{templateName:Mi}of qt.inputs)xe.activatedComponentRef.setInput(Mi,Ot[Mi]);else this.unsubscribeFromRouteData(xe)});this.outletDataSubscriptions.set(xe,ft)}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac})}return ve})();function zo(ve,Pe,xe){if(xe&&ve.shouldReuseRoute(Pe.value,xe.value.snapshot)){const Be=xe.value;Be._futureSnapshot=Pe.value;const ft=function da(ve,Pe,xe){return Pe.children.map(Be=>{for(const ft of xe.children)if(ve.shouldReuseRoute(Be.value,ft.value.snapshot))return zo(ve,Be,ft);return zo(ve,Be)})}(ve,Pe,xe);return new Sr(Be,ft)}{if(ve.shouldAttach(Pe.value)){const Ot=ve.retrieve(Pe.value);if(null!==Ot){const qt=Ot.route;return qt.value._futureSnapshot=Pe.value,qt.children=Pe.children.map(Mi=>zo(ve,Mi)),qt}}const Be=function ao(ve){return new Rr(new x.t(ve.url),new x.t(ve.params),new x.t(ve.queryParams),new x.t(ve.fragment),new x.t(ve.data),ve.outlet,ve.component,ve)}(Pe.value),ft=Pe.children.map(Ot=>zo(ve,Ot));return new Sr(Be,ft)}}class Oa{constructor(Pe,xe){this.redirectTo=Pe,this.navigationBehaviorOptions=xe}}const ns="ngNavigationCancelingError";function Fa(ve,Pe){const{redirectTo:xe,navigationBehaviorOptions:Be}=Pt(Pe)?{redirectTo:Pe,navigationBehaviorOptions:void 0}:Pe,ft=Ro(!1,ut.Redirect);return ft.url=xe,ft.navigationBehaviorOptions=Be,ft}function Ro(ve,Pe){const xe=new Error(`NavigationCancelingError: ${ve||""}`);return xe[ns]=!0,xe.cancellationCode=Pe,xe}function ha(ve){return!!ve&&ve[ns]}let Br=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275cmp=t.VBU({type:ve,selectors:[["ng-component"]],standalone:!0,features:[t.aNF],decls:1,vars:0,template:function(Be,ft){1&Be&&t.nrm(0,"router-outlet")},dependencies:[hn],encapsulation:2})}return ve})();function Za(ve){const Pe=ve.children&&ve.children.map(Za),xe=Pe?{...ve,children:Pe}:{...ve};return!xe.component&&!xe.loadComponent&&(Pe||xe.loadChildren)&&xe.outlet&&xe.outlet!==ze&&(xe.component=Br),xe}function Lr(ve){return ve.outlet||ze}function Oo(ve){if(!ve)return null;if(ve.routeConfig?._injector)return ve.routeConfig._injector;for(let Pe=ve.parent;Pe;Pe=Pe.parent){const xe=Pe.routeConfig;if(xe?._loadedInjector)return xe._loadedInjector;if(xe?._injector)return xe._injector}return null}class Da{constructor(Pe,xe,Be,ft,Ot){this.routeReuseStrategy=Pe,this.futureState=xe,this.currState=Be,this.forwardEvent=ft,this.inputBindingEnabled=Ot}activate(Pe){const xe=this.futureState._root,Be=this.currState?this.currState._root:null;this.deactivateChildRoutes(xe,Be,Pe),Sa(this.futureState.root),this.activateChildRoutes(xe,Be,Pe)}deactivateChildRoutes(Pe,xe,Be){const ft=zr(xe);Pe.children.forEach(Ot=>{const qt=Ot.value.outlet;this.deactivateRoutes(Ot,ft[qt],Be),delete ft[qt]}),Object.values(ft).forEach(Ot=>{this.deactivateRouteAndItsChildren(Ot,Be)})}deactivateRoutes(Pe,xe,Be){const ft=Pe.value,Ot=xe?xe.value:null;if(ft===Ot)if(ft.component){const qt=Be.getContext(ft.outlet);qt&&this.deactivateChildRoutes(Pe,xe,qt.children)}else this.deactivateChildRoutes(Pe,xe,Be);else Ot&&this.deactivateRouteAndItsChildren(xe,Be)}deactivateRouteAndItsChildren(Pe,xe){Pe.value.component&&this.routeReuseStrategy.shouldDetach(Pe.value.snapshot)?this.detachAndStoreRouteSubtree(Pe,xe):this.deactivateRouteAndOutlet(Pe,xe)}detachAndStoreRouteSubtree(Pe,xe){const Be=xe.getContext(Pe.value.outlet),ft=Be&&Pe.value.component?Be.children:xe,Ot=zr(Pe);for(const qt of Object.values(Ot))this.deactivateRouteAndItsChildren(qt,ft);if(Be&&Be.outlet){const qt=Be.outlet.detach(),Mi=Be.children.onOutletDeactivated();this.routeReuseStrategy.store(Pe.value.snapshot,{componentRef:qt,route:Pe,contexts:Mi})}}deactivateRouteAndOutlet(Pe,xe){const Be=xe.getContext(Pe.value.outlet),ft=Be&&Pe.value.component?Be.children:xe,Ot=zr(Pe);for(const qt of Object.values(Ot))this.deactivateRouteAndItsChildren(qt,ft);Be&&(Be.outlet&&(Be.outlet.deactivate(),Be.children.onOutletDeactivated()),Be.attachRef=null,Be.route=null)}activateChildRoutes(Pe,xe,Be){const ft=zr(xe);Pe.children.forEach(Ot=>{this.activateRoutes(Ot,ft[Ot.value.outlet],Be),this.forwardEvent(new hi(Ot.value.snapshot))}),Pe.children.length&&this.forwardEvent(new jt(Pe.value.snapshot))}activateRoutes(Pe,xe,Be){const ft=Pe.value,Ot=xe?xe.value:null;if(Sa(ft),ft===Ot)if(ft.component){const qt=Be.getOrCreateContext(ft.outlet);this.activateChildRoutes(Pe,xe,qt.children)}else this.activateChildRoutes(Pe,xe,Be);else if(ft.component){const qt=Be.getOrCreateContext(ft.outlet);if(this.routeReuseStrategy.shouldAttach(ft.snapshot)){const Mi=this.routeReuseStrategy.retrieve(ft.snapshot);this.routeReuseStrategy.store(ft.snapshot,null),qt.children.onOutletReAttached(Mi.contexts),qt.attachRef=Mi.componentRef,qt.route=Mi.route.value,qt.outlet&&qt.outlet.attach(Mi.componentRef,Mi.route.value),Sa(Mi.route.value),this.activateChildRoutes(Pe,null,qt.children)}else{const Mi=Oo(ft.snapshot);qt.attachRef=null,qt.route=ft,qt.injector=Mi??qt.injector,qt.outlet&&qt.outlet.activateWith(ft,qt.injector),this.activateChildRoutes(Pe,null,qt.children)}}else this.activateChildRoutes(Pe,null,Be)}}class Go{constructor(Pe){this.path=Pe,this.route=this.path[this.path.length-1]}}class Wa{constructor(Pe,xe){this.component=Pe,this.route=xe}}function as(ve,Pe,xe){const Be=ve._root;return xt(Be,Pe?Pe._root:null,xe,[Be.value])}function ri(ve,Pe){const xe=Symbol(),Be=Pe.get(ve,xe);return Be===xe?"function"!=typeof ve||(0,t.LfX)(ve)?Pe.get(ve):ve:Be}function xt(ve,Pe,xe,Be,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Ot=zr(Pe);return ve.children.forEach(qt=>{(function ai(ve,Pe,xe,Be,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Ot=ve.value,qt=Pe?Pe.value:null,Mi=xe?xe.getContext(ve.value.outlet):null;if(qt&&Ot.routeConfig===qt.routeConfig){const vi=function Ei(ve,Pe,xe){if("function"==typeof xe)return xe(ve,Pe);switch(xe){case"pathParamsChange":return!Ye(ve.url,Pe.url);case"pathParamsOrQueryParamsChange":return!Ye(ve.url,Pe.url)||!ce(ve.queryParams,Pe.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!zn(ve,Pe)||!ce(ve.queryParams,Pe.queryParams);default:return!zn(ve,Pe)}}(qt,Ot,Ot.routeConfig.runGuardsAndResolvers);vi?ft.canActivateChecks.push(new Go(Be)):(Ot.data=qt.data,Ot._resolvedData=qt._resolvedData),xt(ve,Pe,Ot.component?Mi?Mi.children:null:xe,Be,ft),vi&&Mi&&Mi.outlet&&Mi.outlet.isActivated&&ft.canDeactivateChecks.push(new Wa(Mi.outlet.component,qt))}else qt&&Ki(Pe,Mi,ft),ft.canActivateChecks.push(new Go(Be)),xt(ve,null,Ot.component?Mi?Mi.children:null:xe,Be,ft)})(qt,Ot[qt.value.outlet],xe,Be.concat([qt.value]),ft),delete Ot[qt.value.outlet]}),Object.entries(Ot).forEach(([qt,Mi])=>Ki(Mi,xe.getContext(qt),ft)),ft}function Ki(ve,Pe,xe){const Be=zr(ve),ft=ve.value;Object.entries(Be).forEach(([Ot,qt])=>{Ki(qt,ft.component?Pe?Pe.children.getContext(Ot):null:Pe,xe)}),xe.canDeactivateChecks.push(new Wa(ft.component&&Pe&&Pe.outlet&&Pe.outlet.isActivated?Pe.outlet.component:null,ft))}function tr(ve){return"function"==typeof ve}function oa(ve){return ve instanceof I.G||"EmptyError"===ve?.name}const Ri=Symbol("INITIAL_VALUE");function lt(){return(0,J.n)(ve=>(0,f.z)(ve.map(Pe=>Pe.pipe((0,ee.s)(1),(0,ie.Z)(Ri)))).pipe((0,Q.T)(Pe=>{for(const xe of Pe)if(!0!==xe){if(xe===Ri)return Ri;if(!1===xe||ht(xe))return xe}return!0}),(0,ge.p)(Pe=>Pe!==Ri),(0,ee.s)(1)))}function ht(ve){return Pt(ve)||ve instanceof Oa}function dc(ve){return(0,y.F)((0,de.M)(Pe=>{if("boolean"!=typeof Pe)throw Fa(0,Pe)}),(0,Q.T)(Pe=>!0===Pe))}class jo{constructor(Pe){this.segmentGroup=Pe||null}}class Wo extends Error{constructor(Pe){super(),this.urlTree=Pe}}function fo(ve){return(0,F.$)(new jo(ve))}class ua{constructor(Pe,xe){this.urlSerializer=Pe,this.urlTree=xe}lineralizeSegments(Pe,xe){let Be=[],ft=xe.root;for(;;){if(Be=Be.concat(ft.segments),0===ft.numberOfChildren)return(0,l.of)(Be);if(ft.numberOfChildren>1||!ft.children[ze])return(0,F.$)(new t.wOt(4e3,!1));ft=ft.children[ze]}}applyRedirectCommands(Pe,xe,Be,ft,Ot){if("string"!=typeof xe){const Mi=xe,{queryParams:vi,fragment:on,routeConfig:Sn,url:Jn,outlet:_r,params:ys,data:Nr,title:Ka}=ft,ls=(0,t.N4e)(Ot,()=>Mi({params:ys,data:Nr,queryParams:vi,fragment:on,routeConfig:Sn,url:Jn,outlet:_r,title:Ka}));if(ls instanceof Ie)throw new Wo(ls);xe=ls}const qt=this.applyRedirectCreateUrlTree(xe,this.urlSerializer.parse(xe),Pe,Be);if("/"===xe[0])throw new Wo(qt);return qt}applyRedirectCreateUrlTree(Pe,xe,Be,ft){const Ot=this.createSegmentGroup(Pe,xe.root,Be,ft);return new Ie(Ot,this.createQueryParams(xe.queryParams,this.urlTree.queryParams),xe.fragment)}createQueryParams(Pe,xe){const Be={};return Object.entries(Pe).forEach(([ft,Ot])=>{if("string"==typeof Ot&&":"===Ot[0]){const Mi=Ot.substring(1);Be[ft]=xe[Mi]}else Be[ft]=Ot}),Be}createSegmentGroup(Pe,xe,Be,ft){const Ot=this.createSegments(Pe,xe.segments,Be,ft);let qt={};return Object.entries(xe.children).forEach(([Mi,vi])=>{qt[Mi]=this.createSegmentGroup(Pe,vi,Be,ft)}),new He(Ot,qt)}createSegments(Pe,xe,Be,ft){return xe.map(Ot=>":"===Ot.path[0]?this.findPosParam(Pe,Ot,ft):this.findOrReturn(Ot,Be))}findPosParam(Pe,xe,Be){const ft=Be[xe.path.substring(1)];if(!ft)throw new t.wOt(4001,!1);return ft}findOrReturn(Pe,xe){let Be=0;for(const ft of xe){if(ft.path===Pe.path)return xe.splice(Be),ft;Be++}return Pe}}const so={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Ir(ve,Pe,xe,Be,ft){const Ot=Aa(ve,Pe,xe);return Ot.matched?(Be=function Ua(ve,Pe){return ve.providers&&!ve._injector&&(ve._injector=(0,t.Ol2)(ve.providers,Pe,`Route: ${ve.path}`)),ve._injector??Pe}(Pe,Be),function hc(ve,Pe,xe,Be){const ft=Pe.canMatch;if(!ft||0===ft.length)return(0,l.of)(!0);const Ot=ft.map(qt=>{const Mi=ri(qt,ve);return _e(function Ms(ve){return ve&&tr(ve.canMatch)}(Mi)?Mi.canMatch(Pe,xe):(0,t.N4e)(ve,()=>Mi(Pe,xe)))});return(0,l.of)(Ot).pipe(lt(),dc())}(Be,Pe,xe).pipe((0,Q.T)(qt=>!0===qt?Ot:{...so}))):(0,l.of)(Ot)}function Aa(ve,Pe,xe){if("**"===Pe.path)return function $s(ve){return{matched:!0,parameters:ve.length>0?mt(ve).parameters:{},consumedSegments:ve,remainingSegments:[],positionalParamSegments:{}}}(xe);if(""===Pe.path)return"full"===Pe.pathMatch&&(ve.hasChildren()||xe.length>0)?{...so}:{matched:!0,consumedSegments:[],remainingSegments:xe,parameters:{},positionalParamSegments:{}};const ft=(Pe.matcher||X)(xe,ve,Pe);if(!ft)return{...so};const Ot={};Object.entries(ft.posParams??{}).forEach(([Mi,vi])=>{Ot[Mi]=vi.path});const qt=ft.consumed.length>0?{...Ot,...ft.consumed[ft.consumed.length-1].parameters}:Ot;return{matched:!0,consumedSegments:ft.consumed,remainingSegments:xe.slice(ft.consumed.length),parameters:qt,positionalParamSegments:ft.posParams??{}}}function dn(ve,Pe,xe,Be){return xe.length>0&&function Ss(ve,Pe,xe){return xe.some(Be=>_s(ve,Pe,Be)&&Lr(Be)!==ze)}(ve,xe,Be)?{segmentGroup:new He(Pe,uc(Be,new He(xe,ve.children))),slicedSegments:[]}:0===xe.length&&function fc(ve,Pe,xe){return xe.some(Be=>_s(ve,Pe,Be))}(ve,xe,Be)?{segmentGroup:new He(ve.segments,Es(ve,xe,Be,ve.children)),slicedSegments:xe}:{segmentGroup:new He(ve.segments,ve.children),slicedSegments:xe}}function Es(ve,Pe,xe,Be){const ft={};for(const Ot of xe)if(_s(ve,Pe,Ot)&&!Be[Lr(Ot)]){const qt=new He([],{});ft[Lr(Ot)]=qt}return{...Be,...ft}}function uc(ve,Pe){const xe={};xe[ze]=Pe;for(const Be of ve)if(""===Be.path&&Lr(Be)!==ze){const ft=new He([],{});xe[Lr(Be)]=ft}return xe}function _s(ve,Pe,xe){return(!(ve.hasChildren()||Pe.length>0)||"full"!==xe.pathMatch)&&""===xe.path}class Ll{}class Qs{constructor(Pe,xe,Be,ft,Ot,qt,Mi){this.injector=Pe,this.configLoader=xe,this.rootComponentType=Be,this.config=ft,this.urlTree=Ot,this.paramsInheritanceStrategy=qt,this.urlSerializer=Mi,this.applyRedirects=new ua(this.urlSerializer,this.urlTree),this.absoluteRedirectCount=0,this.allowRedirects=!0}noMatchError(Pe){return new t.wOt(4002,`'${Pe.segmentGroup}'`)}recognize(){const Pe=dn(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(Pe).pipe((0,Q.T)(({children:xe,rootSnapshot:Be})=>{const ft=new Sr(Be,xe),Ot=new no("",ft),qt=function Xi(ve,Pe,xe=null,Be=null){return fi(di(ve),Pe,xe,Be)}(Be,[],this.urlTree.queryParams,this.urlTree.fragment);return qt.queryParams=this.urlTree.queryParams,Ot.url=this.urlSerializer.serialize(qt),{state:Ot,tree:qt}}))}match(Pe){const xe=new Ea([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),ze,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,Pe,ze,xe).pipe((0,Q.T)(Be=>({children:Be,rootSnapshot:xe})),(0,D.W)(Be=>{if(Be instanceof Wo)return this.urlTree=Be.urlTree,this.match(Be.urlTree.root);throw Be instanceof jo?this.noMatchError(Be):Be}))}processSegmentGroup(Pe,xe,Be,ft,Ot){return 0===Be.segments.length&&Be.hasChildren()?this.processChildren(Pe,xe,Be,Ot):this.processSegment(Pe,xe,Be,Be.segments,ft,!0,Ot).pipe((0,Q.T)(qt=>qt instanceof Sr?[qt]:[]))}processChildren(Pe,xe,Be,ft){const Ot=[];for(const qt of Object.keys(Be.children))"primary"===qt?Ot.unshift(qt):Ot.push(qt);return(0,S.H)(Ot).pipe((0,Te.H)(qt=>{const Mi=Be.children[qt],vi=function _a(ve,Pe){const xe=ve.filter(Be=>Lr(Be)===Pe);return xe.push(...ve.filter(Be=>Lr(Be)!==Pe)),xe}(xe,qt);return this.processSegmentGroup(Pe,vi,Mi,qt,ft)}),(0,n.S)((qt,Mi)=>(qt.push(...Mi),qt)),(0,c.U)(null),function _(ve,Pe){const xe=arguments.length>=2;return Be=>Be.pipe(ve?(0,ge.p)((ft,Ot)=>ve(ft,Ot,Be)):L.D,C(1),xe?(0,c.U)(Pe):(0,k.v)(()=>new I.G))}(),(0,ae.Z)(qt=>{if(null===qt)return fo(Be);const Mi=Eo(qt);return function Zs(ve){ve.sort((Pe,xe)=>Pe.value.outlet===ze?-1:xe.value.outlet===ze?1:Pe.value.outlet.localeCompare(xe.value.outlet))}(Mi),(0,l.of)(Mi)}))}processSegment(Pe,xe,Be,ft,Ot,qt,Mi){return(0,S.H)(xe).pipe((0,Te.H)(vi=>this.processSegmentAgainstRoute(vi._injector??Pe,xe,vi,Be,ft,Ot,qt,Mi).pipe((0,D.W)(on=>{if(on instanceof jo)return(0,l.of)(null);throw on}))),(0,Me.$)(vi=>!!vi),(0,D.W)(vi=>{if(oa(vi))return function vs(ve,Pe,xe){return 0===Pe.length&&!ve.children[xe]}(Be,ft,Ot)?(0,l.of)(new Ll):fo(Be);throw vi}))}processSegmentAgainstRoute(Pe,xe,Be,ft,Ot,qt,Mi,vi){return function kl(ve,Pe,xe,Be){return!!(Lr(ve)===Be||Be!==ze&&_s(Pe,xe,ve))&&Aa(Pe,ve,xe).matched}(Be,ft,Ot,qt)?void 0===Be.redirectTo?this.matchSegmentAgainstRoute(Pe,ft,Be,Ot,qt,vi):this.allowRedirects&&Mi?this.expandSegmentAgainstRouteUsingRedirect(Pe,ft,xe,Be,Ot,qt,vi):fo(ft):fo(ft)}expandSegmentAgainstRouteUsingRedirect(Pe,xe,Be,ft,Ot,qt,Mi){const{matched:vi,parameters:on,consumedSegments:Sn,positionalParamSegments:Jn,remainingSegments:_r}=Aa(xe,ft,Ot);if(!vi)return fo(xe);"string"==typeof ft.redirectTo&&"/"===ft.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const ys=new Ea(Ot,on,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Js(ft),Lr(ft),ft.component??ft._loadedComponent??null,ft,bs(ft)),Nr=Ma(ys,Mi,this.paramsInheritanceStrategy);ys.params=Object.freeze(Nr.params),ys.data=Object.freeze(Nr.data);const Ka=this.applyRedirects.applyRedirectCommands(Sn,ft.redirectTo,Jn,ys,Pe);return this.applyRedirects.lineralizeSegments(ft,Ka).pipe((0,ae.Z)(ls=>this.processSegment(Pe,Be,xe,ls.concat(_r),qt,!1,Mi)))}matchSegmentAgainstRoute(Pe,xe,Be,ft,Ot,qt){const Mi=Ir(xe,Be,ft,Pe);return"**"===Be.path&&(xe.children={}),Mi.pipe((0,J.n)(vi=>vi.matched?this.getChildConfig(Pe=Be._injector??Pe,Be,ft).pipe((0,J.n)(({routes:on})=>{const Sn=Be._loadedInjector??Pe,{parameters:Jn,consumedSegments:_r,remainingSegments:ys}=vi,Nr=new Ea(_r,Jn,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Js(Be),Lr(Be),Be.component??Be._loadedComponent??null,Be,bs(Be)),Ka=Ma(Nr,qt,this.paramsInheritanceStrategy);Nr.params=Object.freeze(Ka.params),Nr.data=Object.freeze(Ka.data);const{segmentGroup:ls,slicedSegments:xc}=dn(xe,_r,ys,on);if(0===xc.length&&ls.hasChildren())return this.processChildren(Sn,on,ls,Nr).pipe((0,Q.T)(Ko=>new Sr(Nr,Ko)));if(0===on.length&&0===xc.length)return(0,l.of)(new Sr(Nr,[]));const Pl=Lr(Be)===Ot;return this.processSegment(Sn,on,ls,xc,Pl?ze:Ot,!0,Nr).pipe((0,Q.T)(Ko=>new Sr(Nr,Ko instanceof Sr?[Ko]:[])))})):fo(xe)))}getChildConfig(Pe,xe,Be){return xe.children?(0,l.of)({routes:xe.children,injector:Pe}):xe.loadChildren?void 0!==xe._loadedRoutes?(0,l.of)({routes:xe._loadedRoutes,injector:xe._loadedInjector}):function lc(ve,Pe,xe,Be){const ft=Pe.canLoad;if(void 0===ft||0===ft.length)return(0,l.of)(!0);const Ot=ft.map(qt=>{const Mi=ri(qt,ve);return _e(function Fr(ve){return ve&&tr(ve.canLoad)}(Mi)?Mi.canLoad(Pe,xe):(0,t.N4e)(ve,()=>Mi(Pe,xe)))});return(0,l.of)(Ot).pipe(lt(),dc())}(Pe,xe,Be).pipe((0,ae.Z)(ft=>ft?this.configLoader.loadChildren(Pe,xe).pipe((0,de.M)(Ot=>{xe._loadedRoutes=Ot.routes,xe._loadedInjector=Ot.injector})):function Kr(ve){return(0,F.$)(Ro(!1,ut.GuardRejected))}())):(0,l.of)({routes:[],injector:Pe})}}function Rs(ve){const Pe=ve.value.routeConfig;return Pe&&""===Pe.path}function Eo(ve){const Pe=[],xe=new Set;for(const Be of ve){if(!Rs(Be)){Pe.push(Be);continue}const ft=Pe.find(Ot=>Be.value.routeConfig===Ot.value.routeConfig);void 0!==ft?(ft.children.push(...Be.children),xe.add(ft)):Pe.push(Be)}for(const Be of xe){const ft=Eo(Be.children);Pe.push(new Sr(Be.value,ft))}return Pe.filter(Be=>!xe.has(Be))}function Js(ve){return ve.data||{}}function bs(ve){return ve.resolve||{}}function os(ve){const Pe=ve.children.map(xe=>os(xe)).flat();return[ve,...Pe]}function Rc(ve){return(0,J.n)(Pe=>{const xe=ve(Pe);return xe?(0,S.H)(xe).pipe((0,Q.T)(()=>Pe)):(0,l.of)(Pe)})}let Il=(()=>{class ve{buildTitle(xe){let Be,ft=xe.root;for(;void 0!==ft;)Be=this.getResolvedTitleForRoute(ft)??Be,ft=ft.children.find(Ot=>Ot.outlet===ze);return Be}getResolvedTitleForRoute(xe){return xe.data[qe]}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(il),providedIn:"root"})}return ve})(),il=(()=>{class ve extends Il{constructor(xe){super(),this.title=xe}updateTitle(xe){const Be=this.buildTitle(xe);void 0!==Be&&this.title.setTitle(Be)}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(Ee.hE))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const ss=new t.nKC("",{providedIn:"root",factory:()=>({})}),Fs=new t.nKC("");let nt=(()=>{class ve{constructor(){this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap,this.compiler=(0,t.WQX)(t.Ql9)}loadComponent(xe){if(this.componentLoaders.get(xe))return this.componentLoaders.get(xe);if(xe._loadedComponent)return(0,l.of)(xe._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(xe);const Be=_e(xe.loadComponent()).pipe((0,Q.T)(Z),(0,de.M)(Ot=>{this.onLoadEndListener&&this.onLoadEndListener(xe),xe._loadedComponent=Ot}),(0,v.j)(()=>{this.componentLoaders.delete(xe)})),ft=new z.G(Be,()=>new W.B).pipe((0,V.B)());return this.componentLoaders.set(xe,ft),ft}loadChildren(xe,Be){if(this.childrenLoaders.get(Be))return this.childrenLoaders.get(Be);if(Be._loadedRoutes)return(0,l.of)({routes:Be._loadedRoutes,injector:Be._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(Be);const Ot=function Rt(ve,Pe,xe,Be){return _e(ve.loadChildren()).pipe((0,Q.T)(Z),(0,ae.Z)(ft=>ft instanceof t.Co$||Array.isArray(ft)?(0,l.of)(ft):(0,S.H)(Pe.compileModuleAsync(ft))),(0,Q.T)(ft=>{Be&&Be(ve);let Ot,qt,Mi=!1;return Array.isArray(ft)?(qt=ft,!0):(Ot=ft.create(xe).injector,qt=Ot.get(Fs,[],{optional:!0,self:!0}).flat()),{routes:qt.map(Za),injector:Ot}}))}(Be,this.compiler,xe,this.onLoadEndListener).pipe((0,v.j)(()=>{this.childrenLoaders.delete(Be)})),qt=new z.G(Ot,()=>new W.B).pipe((0,V.B)());return this.childrenLoaders.set(Be,qt),qt}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();function Z(ve){return function kt(ve){return ve&&"object"==typeof ve&&"default"in ve}(ve)?ve.default:ve}let Ve=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(De),providedIn:"root"})}return ve})(),De=(()=>{class ve{shouldProcessUrl(xe){return!0}extract(xe){return xe}merge(xe,Be){return xe}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const We=new t.nKC(""),Dt=new t.nKC("");function ei(ve,Pe,xe){const Be=ve.get(Dt),ft=ve.get(j.qQ);return ve.get(t.SKi).runOutsideAngular(()=>{if(!ft.startViewTransition||Be.skipNextTransition)return Be.skipNextTransition=!1,new Promise(on=>setTimeout(on));let Ot;const qt=new Promise(on=>{Ot=on}),Mi=ft.startViewTransition(()=>(Ot(),function pi(ve){return new Promise(Pe=>{(0,t.mal)(Pe,{injector:ve})})}(ve))),{onViewTransitionCreated:vi}=Be;return vi&&(0,t.N4e)(ve,()=>vi({transition:Mi,from:Pe,to:xe})),qt})}const Di=new t.nKC("");let an=(()=>{class ve{get hasRequestedNavigation(){return 0!==this.navigationId}constructor(){this.currentNavigation=null,this.currentTransition=null,this.lastSuccessfulNavigation=null,this.events=new W.B,this.transitionAbortSubject=new W.B,this.configLoader=(0,t.WQX)(nt),this.environmentInjector=(0,t.WQX)(t.uvJ),this.urlSerializer=(0,t.WQX)(Yt),this.rootContexts=(0,t.WQX)(sr),this.location=(0,t.WQX)(j.aZ),this.inputBindingEnabled=null!==(0,t.WQX)(Ta,{optional:!0}),this.titleStrategy=(0,t.WQX)(Il),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly",this.urlHandlingStrategy=(0,t.WQX)(Ve),this.createViewTransition=(0,t.WQX)(We,{optional:!0}),this.navigationErrorHandler=(0,t.WQX)(Di,{optional:!0}),this.navigationId=0,this.afterPreactivation=()=>(0,l.of)(void 0),this.rootComponentType=null,this.configLoader.onLoadEndListener=ft=>this.events.next(new _i(ft)),this.configLoader.onLoadStartListener=ft=>this.events.next(new Rn(ft))}complete(){this.transitions?.complete()}handleNavigationRequest(xe){const Be=++this.navigationId;this.transitions?.next({...this.transitions.value,...xe,id:Be})}setupNavigations(xe,Be,ft){return this.transitions=new x.t({id:0,currentUrlTree:Be,currentRawUrl:Be,extractedUrl:this.urlHandlingStrategy.extract(Be),urlAfterRedirects:this.urlHandlingStrategy.extract(Be),rawUrl:Be,extras:{},resolve:()=>{},reject:()=>{},promise:Promise.resolve(!0),source:bt,restoredState:null,currentSnapshot:ft.snapshot,targetSnapshot:null,currentRouterState:ft,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.transitions.pipe((0,ge.p)(Ot=>0!==Ot.id),(0,Q.T)(Ot=>({...Ot,extractedUrl:this.urlHandlingStrategy.extract(Ot.rawUrl)})),(0,J.n)(Ot=>{let qt=!1,Mi=!1;return(0,l.of)(Ot).pipe((0,J.n)(vi=>{if(this.navigationId>Ot.id)return this.cancelNavigationTransition(Ot,"",ut.SupersededByNewNavigation),R.w;this.currentTransition=Ot,this.currentNavigation={id:vi.id,initialUrl:vi.rawUrl,extractedUrl:vi.extractedUrl,trigger:vi.source,extras:vi.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null};const on=!xe.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!on&&"reload"!==(vi.extras.onSameUrlNavigation??xe.onSameUrlNavigation)){const Jn="";return this.events.next(new Pi(vi.id,this.urlSerializer.serialize(vi.rawUrl),Jn,ii.IgnoredSameUrlNavigation)),vi.resolve(!1),R.w}if(this.urlHandlingStrategy.shouldProcessUrl(vi.rawUrl))return(0,l.of)(vi).pipe((0,J.n)(Jn=>{const _r=this.transitions?.getValue();return this.events.next(new Ce(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),Jn.source,Jn.restoredState)),_r!==this.transitions?.getValue()?R.w:Promise.resolve(Jn)}),function gc(ve,Pe,xe,Be,ft,Ot){return(0,ae.Z)(qt=>function mc(ve,Pe,xe,Be,ft,Ot,qt="emptyOnly"){return new Qs(ve,Pe,xe,Be,ft,qt,Ot).recognize()}(ve,Pe,xe,Be,qt.extractedUrl,ft,Ot).pipe((0,Q.T)(({state:Mi,tree:vi})=>({...qt,targetSnapshot:Mi,urlAfterRedirects:vi}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,xe.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,de.M)(Jn=>{Ot.targetSnapshot=Jn.targetSnapshot,Ot.urlAfterRedirects=Jn.urlAfterRedirects,this.currentNavigation={...this.currentNavigation,finalUrl:Jn.urlAfterRedirects};const _r=new Fn(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),this.urlSerializer.serialize(Jn.urlAfterRedirects),Jn.targetSnapshot);this.events.next(_r)}));if(on&&this.urlHandlingStrategy.shouldProcessUrl(vi.currentRawUrl)){const{id:Jn,extractedUrl:_r,source:ys,restoredState:Nr,extras:Ka}=vi,ls=new Ce(Jn,this.urlSerializer.serialize(_r),ys,Nr);this.events.next(ls);const xc=xo(this.rootComponentType).snapshot;return this.currentTransition=Ot={...vi,targetSnapshot:xc,urlAfterRedirects:_r,extras:{...Ka,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.finalUrl=_r,(0,l.of)(Ot)}{const Jn="";return this.events.next(new Pi(vi.id,this.urlSerializer.serialize(vi.extractedUrl),Jn,ii.IgnoredByUrlHandlingStrategy)),vi.resolve(!1),R.w}}),(0,de.M)(vi=>{const on=new $n(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects),vi.targetSnapshot);this.events.next(on)}),(0,Q.T)(vi=>(this.currentTransition=Ot={...vi,guards:as(vi.targetSnapshot,vi.currentSnapshot,this.rootContexts)},Ot)),function Ue(ve,Pe){return(0,ae.Z)(xe=>{const{targetSnapshot:Be,currentSnapshot:ft,guards:{canActivateChecks:Ot,canDeactivateChecks:qt}}=xe;return 0===qt.length&&0===Ot.length?(0,l.of)({...xe,guardsResult:!0}):function At(ve,Pe,xe,Be){return(0,S.H)(ve).pipe((0,ae.Z)(ft=>function Xa(ve,Pe,xe,Be,ft){const Ot=Pe&&Pe.routeConfig?Pe.routeConfig.canDeactivate:null;if(!Ot||0===Ot.length)return(0,l.of)(!0);const qt=Ot.map(Mi=>{const vi=Oo(Pe)??ft,on=ri(Mi,vi);return _e(function oo(ve){return ve&&tr(ve.canDeactivate)}(on)?on.canDeactivate(ve,Pe,xe,Be):(0,t.N4e)(vi,()=>on(ve,Pe,xe,Be))).pipe((0,Me.$)())});return(0,l.of)(qt).pipe(lt())}(ft.component,ft.route,xe,Pe,Be)),(0,Me.$)(ft=>!0!==ft,!0))}(qt,Be,ft,ve).pipe((0,ae.Z)(Mi=>Mi&&function Or(ve){return"boolean"==typeof ve}(Mi)?function ni(ve,Pe,xe,Be){return(0,S.H)(Pe).pipe((0,Te.H)(ft=>(0,d.x)(function Zn(ve,Pe){return null!==ve&&Pe&&Pe(new Oi(ve)),(0,l.of)(!0)}(ft.route.parent,Be),function pn(ve,Pe){return null!==ve&&Pe&&Pe(new Ci(ve)),(0,l.of)(!0)}(ft.route,Be),function vr(ve,Pe,xe){const Be=Pe[Pe.length-1],Ot=Pe.slice(0,Pe.length-1).reverse().map(qt=>function Ft(ve){const Pe=ve.routeConfig?ve.routeConfig.canActivateChild:null;return Pe&&0!==Pe.length?{node:ve,guards:Pe}:null}(qt)).filter(qt=>null!==qt).map(qt=>(0,T.v)(()=>{const Mi=qt.guards.map(vi=>{const on=Oo(qt.node)??xe,Sn=ri(vi,on);return _e(function gs(ve){return ve&&tr(ve.canActivateChild)}(Sn)?Sn.canActivateChild(Be,ve):(0,t.N4e)(on,()=>Sn(Be,ve))).pipe((0,Me.$)())});return(0,l.of)(Mi).pipe(lt())}));return(0,l.of)(Ot).pipe(lt())}(ve,ft.path,xe),function Fo(ve,Pe,xe){const Be=Pe.routeConfig?Pe.routeConfig.canActivate:null;if(!Be||0===Be.length)return(0,l.of)(!0);const ft=Be.map(Ot=>(0,T.v)(()=>{const qt=Oo(Pe)??xe,Mi=ri(Ot,qt);return _e(function Mo(ve){return ve&&tr(ve.canActivate)}(Mi)?Mi.canActivate(Pe,ve):(0,t.N4e)(qt,()=>Mi(Pe,ve))).pipe((0,Me.$)())}));return(0,l.of)(ft).pipe(lt())}(ve,ft.route,xe))),(0,Me.$)(ft=>!0!==ft,!0))}(Be,Ot,ve,Pe):(0,l.of)(Mi)),(0,Q.T)(Mi=>({...xe,guardsResult:Mi})))})}(this.environmentInjector,vi=>this.events.next(vi)),(0,de.M)(vi=>{if(Ot.guardsResult=vi.guardsResult,vi.guardsResult&&"boolean"!=typeof vi.guardsResult)throw Fa(0,vi.guardsResult);const on=new Yn(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects),vi.targetSnapshot,!!vi.guardsResult);this.events.next(on)}),(0,ge.p)(vi=>!!vi.guardsResult||(this.cancelNavigationTransition(vi,"",ut.GuardRejected),!1)),Rc(vi=>{if(vi.guards.canActivateChecks.length)return(0,l.of)(vi).pipe((0,de.M)(on=>{const Sn=new Qn(on.id,this.urlSerializer.serialize(on.extractedUrl),this.urlSerializer.serialize(on.urlAfterRedirects),on.targetSnapshot);this.events.next(Sn)}),(0,J.n)(on=>{let Sn=!1;return(0,l.of)(on).pipe(function _c(ve,Pe){return(0,ae.Z)(xe=>{const{targetSnapshot:Be,guards:{canActivateChecks:ft}}=xe;if(!ft.length)return(0,l.of)(xe);const Ot=new Set(ft.map(vi=>vi.route)),qt=new Set;for(const vi of Ot)if(!qt.has(vi))for(const on of os(vi))qt.add(on);let Mi=0;return(0,S.H)(qt).pipe((0,Te.H)(vi=>Ot.has(vi)?function So(ve,Pe,xe,Be){const ft=ve.routeConfig,Ot=ve._resolve;return void 0!==ft?.title&&!ro(ft)&&(Ot[qe]=ft.title),function Os(ve,Pe,xe,Be){const ft=fe(ve);if(0===ft.length)return(0,l.of)({});const Ot={};return(0,S.H)(ft).pipe((0,ae.Z)(qt=>function tl(ve,Pe,xe,Be){const ft=Oo(Pe)??Be,Ot=ri(ve,ft);return _e(Ot.resolve?Ot.resolve(Pe,xe):(0,t.N4e)(ft,()=>Ot(Pe,xe)))}(ve[qt],Pe,xe,Be).pipe((0,Me.$)(),(0,de.M)(Mi=>{if(Mi instanceof Oa)throw Fa(new Nt,Mi);Ot[qt]=Mi}))),C(1),(0,r.u)(Ot),(0,D.W)(qt=>oa(qt)?R.w:(0,F.$)(qt)))}(Ot,ve,Pe,Be).pipe((0,Q.T)(qt=>(ve._resolvedData=qt,ve.data=Ma(ve,ve.parent,xe).resolve,null)))}(vi,Be,ve,Pe):(vi.data=Ma(vi,vi.parent,ve).resolve,(0,l.of)(void 0))),(0,de.M)(()=>Mi++),C(1),(0,ae.Z)(vi=>Mi===qt.size?(0,l.of)(xe):R.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,de.M)({next:()=>Sn=!0,complete:()=>{Sn||this.cancelNavigationTransition(on,"",ut.NoDataFromResolver)}}))}),(0,de.M)(on=>{const Sn=new rr(on.id,this.urlSerializer.serialize(on.extractedUrl),this.urlSerializer.serialize(on.urlAfterRedirects),on.targetSnapshot);this.events.next(Sn)}))}),Rc(vi=>{const on=Sn=>{const Jn=[];Sn.routeConfig?.loadComponent&&!Sn.routeConfig._loadedComponent&&Jn.push(this.configLoader.loadComponent(Sn.routeConfig).pipe((0,de.M)(_r=>{Sn.component=_r}),(0,Q.T)(()=>{})));for(const _r of Sn.children)Jn.push(...on(_r));return Jn};return(0,f.z)(on(vi.targetSnapshot.root)).pipe((0,c.U)(null),(0,ee.s)(1))}),Rc(()=>this.afterPreactivation()),(0,J.n)(()=>{const{currentSnapshot:vi,targetSnapshot:on}=Ot,Sn=this.createViewTransition?.(this.environmentInjector,vi.root,on.root);return Sn?(0,S.H)(Sn).pipe((0,Q.T)(()=>Ot)):(0,l.of)(Ot)}),(0,Q.T)(vi=>{const on=function wo(ve,Pe,xe){const Be=zo(ve,Pe._root,xe?xe._root:void 0);return new Ho(Be,Pe)}(xe.routeReuseStrategy,vi.targetSnapshot,vi.currentRouterState);return this.currentTransition=Ot={...vi,targetRouterState:on},this.currentNavigation.targetRouterState=on,Ot}),(0,de.M)(()=>{this.events.next(new Vi)}),((ve,Pe,xe,Be)=>(0,Q.T)(ft=>(new Da(Pe,ft.targetRouterState,ft.currentRouterState,xe,Be).activate(ve),ft)))(this.rootContexts,xe.routeReuseStrategy,vi=>this.events.next(vi),this.inputBindingEnabled),(0,ee.s)(1),(0,de.M)({next:vi=>{qt=!0,this.lastSuccessfulNavigation=this.currentNavigation,this.events.next(new ot(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects))),this.titleStrategy?.updateTitle(vi.targetRouterState.snapshot),vi.resolve(!0)},complete:()=>{qt=!0}}),(0,N.Q)(this.transitionAbortSubject.pipe((0,de.M)(vi=>{throw vi}))),(0,v.j)(()=>{!qt&&!Mi&&this.cancelNavigationTransition(Ot,"",ut.SupersededByNewNavigation),this.currentTransition?.id===Ot.id&&(this.currentNavigation=null,this.currentTransition=null)}),(0,D.W)(vi=>{if(Mi=!0,ha(vi))this.events.next(new si(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),vi.message,vi.cancellationCode)),function kr(ve){return ha(ve)&&Pt(ve.url)}(vi)?this.events.next(new ji(vi.url,vi.navigationBehaviorOptions)):Ot.resolve(!1);else{const on=new mn(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),vi,Ot.targetSnapshot??void 0);try{const Sn=(0,t.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(on));if(Sn instanceof Oa){const{message:Jn,cancellationCode:_r}=Fa(0,Sn);this.events.next(new si(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),Jn,_r)),this.events.next(new ji(Sn.redirectTo,Sn.navigationBehaviorOptions))}else{this.events.next(on);const Jn=xe.errorHandler(vi);Ot.resolve(!!Jn)}}catch(Sn){this.options.resolveNavigationPromiseOnError?Ot.resolve(!1):Ot.reject(Sn)}}return R.w}))}))}cancelNavigationTransition(xe,Be,ft){const Ot=new si(xe.id,this.urlSerializer.serialize(xe.extractedUrl),Be,ft);this.events.next(Ot),xe.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){return this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))).toString()!==this.currentTransition?.extractedUrl.toString()&&!this.currentTransition?.extras.skipLocationChange}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();function gn(ve){return ve!==bt}let yn=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(hr),providedIn:"root"})}return ve})();class Dn{shouldDetach(Pe){return!1}store(Pe,xe){}shouldAttach(Pe){return!1}retrieve(Pe){return null}shouldReuseRoute(Pe,xe){return Pe.routeConfig===xe.routeConfig}}let hr=(()=>{class ve extends Dn{static#e=this.\u0275fac=(()=>{let xe;return function(ft){return(xe||(xe=t.xGo(ve)))(ft||ve)}})();static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})(),ir=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(br),providedIn:"root"})}return ve})(),br=(()=>{class ve extends ir{constructor(){super(...arguments),this.location=(0,t.WQX)(j.aZ),this.urlSerializer=(0,t.WQX)(Yt),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.canceledNavigationResolution=this.options.canceledNavigationResolution||"replace",this.urlHandlingStrategy=(0,t.WQX)(Ve),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.currentUrlTree=new Ie,this.rawUrlTree=this.currentUrlTree,this.currentPageId=0,this.lastSuccessfulId=-1,this.routerState=xo(null),this.stateMemento=this.createStateMemento()}getCurrentUrlTree(){return this.currentUrlTree}getRawUrlTree(){return this.rawUrlTree}restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}getRouterState(){return this.routerState}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}registerNonRouterCurrentEntryChangeListener(xe){return this.location.subscribe(Be=>{"popstate"===Be.type&&xe(Be.url,Be.state)})}handleRouterEvent(xe,Be){if(xe instanceof Ce)this.stateMemento=this.createStateMemento();else if(xe instanceof Pi)this.rawUrlTree=Be.initialUrl;else if(xe instanceof Fn){if("eager"===this.urlUpdateStrategy&&!Be.extras.skipLocationChange){const ft=this.urlHandlingStrategy.merge(Be.finalUrl,Be.initialUrl);this.setBrowserUrl(ft,Be)}}else xe instanceof Vi?(this.currentUrlTree=Be.finalUrl,this.rawUrlTree=this.urlHandlingStrategy.merge(Be.finalUrl,Be.initialUrl),this.routerState=Be.targetRouterState,"deferred"===this.urlUpdateStrategy&&(Be.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,Be))):xe instanceof si&&(xe.code===ut.GuardRejected||xe.code===ut.NoDataFromResolver)?this.restoreHistory(Be):xe instanceof mn?this.restoreHistory(Be,!0):xe instanceof ot&&(this.lastSuccessfulId=xe.id,this.currentPageId=this.browserPageId)}setBrowserUrl(xe,Be){const ft=this.urlSerializer.serialize(xe);if(this.location.isCurrentPathEqualTo(ft)||Be.extras.replaceUrl){const qt={...Be.extras.state,...this.generateNgRouterState(Be.id,this.browserPageId)};this.location.replaceState(ft,"",qt)}else{const Ot={...Be.extras.state,...this.generateNgRouterState(Be.id,this.browserPageId+1)};this.location.go(ft,"",Ot)}}restoreHistory(xe,Be=!1){if("computed"===this.canceledNavigationResolution){const Ot=this.currentPageId-this.browserPageId;0!==Ot?this.location.historyGo(Ot):this.currentUrlTree===xe.finalUrl&&0===Ot&&(this.resetState(xe),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(Be&&this.resetState(xe),this.resetUrlToCurrentUrlTree())}resetState(xe){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,xe.finalUrl??this.rawUrlTree)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(xe,Be){return"computed"===this.canceledNavigationResolution?{navigationId:xe,\u0275routerPageId:Be}:{navigationId:xe}}static#e=this.\u0275fac=(()=>{let xe;return function(ft){return(xe||(xe=t.xGo(ve)))(ft||ve)}})();static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();var gr=function(ve){return ve[ve.COMPLETE=0]="COMPLETE",ve[ve.FAILED=1]="FAILED",ve[ve.REDIRECTING=2]="REDIRECTING",ve}(gr||{});function Cr(ve,Pe){ve.events.pipe((0,ge.p)(xe=>xe instanceof ot||xe instanceof si||xe instanceof mn||xe instanceof Pi),(0,Q.T)(xe=>xe instanceof ot||xe instanceof Pi?gr.COMPLETE:xe instanceof si&&(xe.code===ut.Redirect||xe.code===ut.SupersededByNewNavigation)?gr.REDIRECTING:gr.FAILED),(0,ge.p)(xe=>xe!==gr.REDIRECTING),(0,ee.s)(1)).subscribe(()=>{Pe()})}function sa(ve){throw ve}const Hn={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},Bi={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let sn=(()=>{class ve{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}constructor(){this.disposed=!1,this.console=(0,t.WQX)(t.H3F),this.stateManager=(0,t.WQX)(ir),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.pendingTasks=(0,t.WQX)(t.TgB),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.navigationTransitions=(0,t.WQX)(an),this.urlSerializer=(0,t.WQX)(Yt),this.location=(0,t.WQX)(j.aZ),this.urlHandlingStrategy=(0,t.WQX)(Ve),this._events=new W.B,this.errorHandler=this.options.errorHandler||sa,this.navigated=!1,this.routeReuseStrategy=(0,t.WQX)(yn),this.onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore",this.config=(0,t.WQX)(Fs,{optional:!0})?.flat()??[],this.componentInputBindingEnabled=!!(0,t.WQX)(Ta,{optional:!0}),this.eventsSubscription=new $.yU,this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this,this.currentUrlTree,this.routerState).subscribe({error:xe=>{this.console.warn(xe)}}),this.subscribeToNavigationEvents()}subscribeToNavigationEvents(){const xe=this.navigationTransitions.events.subscribe(Be=>{try{const ft=this.navigationTransitions.currentTransition,Ot=this.navigationTransitions.currentNavigation;if(null!==ft&&null!==Ot)if(this.stateManager.handleRouterEvent(Be,Ot),Be instanceof si&&Be.code!==ut.Redirect&&Be.code!==ut.SupersededByNewNavigation)this.navigated=!0;else if(Be instanceof ot)this.navigated=!0;else if(Be instanceof ji){const qt=Be.navigationBehaviorOptions,Mi=this.urlHandlingStrategy.merge(Be.url,ft.currentRawUrl),vi={info:ft.extras.info,skipLocationChange:ft.extras.skipLocationChange,replaceUrl:ft.extras.replaceUrl||"eager"===this.urlUpdateStrategy||gn(ft.source),...qt};this.scheduleNavigation(Mi,bt,null,vi,{resolve:ft.resolve,reject:ft.reject,promise:ft.promise})}(function $r(ve){return!(ve instanceof Vi||ve instanceof ji)})(Be)&&this._events.next(Be)}catch(ft){this.navigationTransitions.transitionAbortSubject.next(ft)}});this.eventsSubscription.add(xe)}resetRootComponentType(xe){this.routerState.root.component=xe,this.navigationTransitions.rootComponentType=xe}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),bt,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((xe,Be)=>{setTimeout(()=>{this.navigateToSyncWithBrowser(xe,"popstate",Be)},0)})}navigateToSyncWithBrowser(xe,Be,ft){const Ot={replaceUrl:!0},qt=ft?.navigationId?ft:null;if(ft){const vi={...ft};delete vi.navigationId,delete vi.\u0275routerPageId,0!==Object.keys(vi).length&&(Ot.state=vi)}const Mi=this.parseUrl(xe);this.scheduleNavigation(Mi,Be,qt,Ot)}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.navigationTransitions.currentNavigation}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(xe){this.config=xe.map(Za),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(xe,Be={}){const{relativeTo:ft,queryParams:Ot,fragment:qt,queryParamsHandling:Mi,preserveFragment:vi}=Be,on=vi?this.currentUrlTree.fragment:qt;let Jn,Sn=null;switch(Mi){case"merge":Sn={...this.currentUrlTree.queryParams,...Ot};break;case"preserve":Sn=this.currentUrlTree.queryParams;break;default:Sn=Ot||null}null!==Sn&&(Sn=this.removeEmptyProps(Sn));try{Jn=di(ft?ft.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof xe[0]||"/"!==xe[0][0])&&(xe=[]),Jn=this.currentUrlTree.root}return fi(Jn,xe,Sn,on??null)}navigateByUrl(xe,Be={skipLocationChange:!1}){const ft=Pt(xe)?xe:this.parseUrl(xe),Ot=this.urlHandlingStrategy.merge(ft,this.rawUrlTree);return this.scheduleNavigation(Ot,bt,null,Be)}navigate(xe,Be={skipLocationChange:!1}){return function fr(ve){for(let Pe=0;Pe(null!=Ot&&(Be[ft]=Ot),Be),{})}scheduleNavigation(xe,Be,ft,Ot,qt){if(this.disposed)return Promise.resolve(!1);let Mi,vi,on;qt?(Mi=qt.resolve,vi=qt.reject,on=qt.promise):on=new Promise((Jn,_r)=>{Mi=Jn,vi=_r});const Sn=this.pendingTasks.add();return Cr(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Sn))}),this.navigationTransitions.handleNavigationRequest({source:Be,restoredState:ft,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:xe,extras:Ot,resolve:Mi,reject:vi,promise:on,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),on.catch(Jn=>Promise.reject(Jn))}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})(),fa=(()=>{class ve{constructor(xe,Be,ft,Ot,qt,Mi){this.router=xe,this.route=Be,this.tabIndexAttribute=ft,this.renderer=Ot,this.el=qt,this.locationStrategy=Mi,this.href=null,this.commands=null,this.onChanges=new W.B,this.preserveFragment=!1,this.skipLocationChange=!1,this.replaceUrl=!1;const vi=qt.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===vi||"area"===vi,this.isAnchorElement?this.subscription=xe.events.subscribe(on=>{on instanceof ot&&this.updateHref()}):this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(xe){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",xe)}ngOnChanges(xe){this.isAnchorElement&&this.updateHref(),this.onChanges.next(this)}set routerLink(xe){null!=xe?(this.commands=Array.isArray(xe)?xe:[xe],this.setTabIndexIfNotOnNativeEl("0")):(this.commands=null,this.setTabIndexIfNotOnNativeEl(null))}onClick(xe,Be,ft,Ot,qt){const Mi=this.urlTree;return!!(null===Mi||this.isAnchorElement&&(0!==xe||Be||ft||Ot||qt||"string"==typeof this.target&&"_self"!=this.target))||(this.router.navigateByUrl(Mi,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info}),!this.isAnchorElement)}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const xe=this.urlTree;this.href=null!==xe&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(xe)):null;const Be=null===this.href?null:(0,t.n$t)(this.href,this.el.nativeElement.tagName.toLowerCase(),"href");this.applyAttributeValue("href",Be)}applyAttributeValue(xe,Be){const ft=this.renderer,Ot=this.el.nativeElement;null!==Be?ft.setAttribute(Ot,xe,Be):ft.removeAttribute(Ot,xe)}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:this.preserveFragment})}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.rXU(sn),t.rXU(Rr),t.kS0("tabindex"),t.rXU(t.sFG),t.rXU(t.aKT),t.rXU(j.hb))};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["","routerLink",""]],hostVars:1,hostBindings:function(Be,ft){1&Be&&t.bIt("click",function(qt){return ft.onClick(qt.button,qt.ctrlKey,qt.shiftKey,qt.altKey,qt.metaKey)}),2&Be&&t.BMQ("target",ft.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",t.L39],skipLocationChange:[2,"skipLocationChange","skipLocationChange",t.L39],replaceUrl:[2,"replaceUrl","replaceUrl",t.L39],routerLink:"routerLink"},standalone:!0,features:[t.GFd,t.OA$]})}return ve})(),Ya=(()=>{class ve{get isActive(){return this._isActive}constructor(xe,Be,ft,Ot,qt){this.router=xe,this.element=Be,this.renderer=ft,this.cdr=Ot,this.link=qt,this.classes=[],this._isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new t.bkB,this.routerEventsSubscription=xe.events.subscribe(Mi=>{Mi instanceof ot&&this.update()})}ngAfterContentInit(){(0,l.of)(this.links.changes,(0,l.of)(null)).pipe((0,ne.U)()).subscribe(xe=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const xe=[...this.links.toArray(),this.link].filter(Be=>!!Be).map(Be=>Be.onChanges);this.linkInputChangesSubscription=(0,S.H)(xe).pipe((0,ne.U)()).subscribe(Be=>{this._isActive!==this.isLinkActive(this.router)(Be)&&this.update()})}set routerLinkActive(xe){const Be=Array.isArray(xe)?xe:xe.split(" ");this.classes=Be.filter(ft=>!!ft)}ngOnChanges(xe){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const xe=this.hasActiveLinks();this.classes.forEach(Be=>{xe?this.renderer.addClass(this.element.nativeElement,Be):this.renderer.removeClass(this.element.nativeElement,Be)}),xe&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this._isActive!==xe&&(this._isActive=xe,this.cdr.markForCheck(),this.isActiveChange.emit(xe))})}isLinkActive(xe){const Be=function vc(ve){return!!ve.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return ft=>{const Ot=ft.urlTree;return!!Ot&&xe.isActive(Ot,Be)}}hasActiveLinks(){const xe=this.isLinkActive(this.router);return this.link&&xe(this.link)||this.links.some(xe)}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.rXU(sn),t.rXU(t.aKT),t.rXU(t.sFG),t.rXU(t.gRc),t.rXU(fa,8))};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["","routerLinkActive",""]],contentQueries:function(Be,ft,Ot){if(1&Be&&t.wni(Ot,fa,5),2&Be){let qt;t.mGM(qt=t.lsd())&&(ft.links=qt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],standalone:!0,features:[t.OA$]})}return ve})();class Ur{}let Wn=(()=>{class ve{constructor(xe,Be,ft,Ot,qt){this.router=xe,this.injector=ft,this.preloadingStrategy=Ot,this.loader=qt}setUpPreloading(){this.subscription=this.router.events.pipe((0,ge.p)(xe=>xe instanceof ot),(0,Te.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(xe,Be){const ft=[];for(const Ot of Be){Ot.providers&&!Ot._injector&&(Ot._injector=(0,t.Ol2)(Ot.providers,xe,`Route: ${Ot.path}`));const qt=Ot._injector??xe,Mi=Ot._loadedInjector??qt;(Ot.loadChildren&&!Ot._loadedRoutes&&void 0===Ot.canLoad||Ot.loadComponent&&!Ot._loadedComponent)&&ft.push(this.preloadConfig(qt,Ot)),(Ot.children||Ot._loadedRoutes)&&ft.push(this.processRoutes(Mi,Ot.children??Ot._loadedRoutes))}return(0,S.H)(ft).pipe((0,ne.U)())}preloadConfig(xe,Be){return this.preloadingStrategy.preload(Be,()=>{let ft;ft=Be.loadChildren&&void 0===Be.canLoad?this.loader.loadChildren(xe,Be):(0,l.of)(null);const Ot=ft.pipe((0,ae.Z)(qt=>null===qt?(0,l.of)(void 0):(Be._loadedRoutes=qt.routes,Be._loadedInjector=qt.injector,this.processRoutes(qt.injector??xe,qt.routes))));if(Be.loadComponent&&!Be._loadedComponent){const qt=this.loader.loadComponent(Be);return(0,S.H)([Ot,qt]).pipe((0,ne.U)())}return Ot})}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(sn),t.KVO(t.Ql9),t.KVO(t.uvJ),t.KVO(Ur),t.KVO(nt))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const bc=new t.nKC("");let Rl=(()=>{class ve{constructor(xe,Be,ft,Ot,qt={}){this.urlSerializer=xe,this.transitions=Be,this.viewportScroller=ft,this.zone=Ot,this.options=qt,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},this.environmentInjector=(0,t.WQX)(t.uvJ),qt.scrollPositionRestoration||="disabled",qt.anchorScrolling||="disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(xe=>{xe instanceof Ce?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=xe.navigationTrigger,this.restoredId=xe.restoredState?xe.restoredState.navigationId:0):xe instanceof ot?(this.lastId=xe.id,this.scheduleScrollEvent(xe,this.urlSerializer.parse(xe.urlAfterRedirects).fragment)):xe instanceof Pi&&xe.code===ii.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(xe,this.urlSerializer.parse(xe.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(xe=>{xe instanceof yi&&(xe.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(xe.position):xe.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(xe.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(xe,Be){var ft=this;this.zone.runOutsideAngular((0,e.A)(function*(){yield new Promise(Ot=>{setTimeout(()=>{Ot()}),(0,t.mal)(()=>{Ot()},{injector:ft.environmentInjector})}),ft.zone.run(()=>{ft.transitions.events.next(new yi(xe,"popstate"===ft.lastSource?ft.store[ft.restoredId]:null,Be))})}))}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static#e=this.\u0275fac=function(Be){t.QTQ()};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac})}return ve})();function mo(ve,Pe){return{\u0275kind:ve,\u0275providers:Pe}}function Gi(){const ve=(0,t.WQX)(t.zZn);return Pe=>{const xe=ve.get(t.o8S);if(Pe!==xe.components[0])return;const Be=ve.get(sn),ft=ve.get(Fc);1===ve.get(Ps)&&Be.initialNavigation(),ve.get(Xo,null,t.$GK.Optional)?.setUpPreloading(),ve.get(bc,null,t.$GK.Optional)?.init(),Be.resetRootComponentType(xe.componentTypes[0]),ft.closed||(ft.next(),ft.complete(),ft.unsubscribe())}}const Fc=new t.nKC("",{factory:()=>new W.B}),Ps=new t.nKC("",{providedIn:"root",factory:()=>1}),Xo=new t.nKC("");function Ol(ve){return mo(0,[{provide:Xo,useExisting:Wn},{provide:Ur,useExisting:ve}])}function ba(ve){return mo(9,[{provide:We,useValue:ei},{provide:Dt,useValue:{skipNextTransition:!!ve?.skipInitialTransition,...ve}}])}const Vs=new t.nKC("ROUTER_FORROOT_GUARD"),Ja=[j.aZ,{provide:Yt,useClass:Nt},sn,sr,{provide:Rr,useFactory:function Qr(ve){return ve.routerState.root},deps:[sn]},nt,[]];let En=(()=>{class ve{constructor(xe){}static forRoot(xe,Be){return{ngModule:ve,providers:[Ja,[],{provide:Fs,multi:!0,useValue:xe},{provide:Vs,useFactory:$i,deps:[[sn,new t.Xx1,new t.kdw]]},{provide:ss,useValue:Be||{}},Be?.useHash?{provide:j.hb,useClass:j.fw}:{provide:j.hb,useClass:j.Sm},{provide:bc,useFactory:()=>{const ve=(0,t.WQX)(j.Xr),Pe=(0,t.WQX)(t.SKi),xe=(0,t.WQX)(ss),Be=(0,t.WQX)(an),ft=(0,t.WQX)(Yt);return xe.scrollOffset&&ve.setOffset(xe.scrollOffset),new Rl(ft,Be,ve,Pe,xe)}},Be?.preloadingStrategy?Ol(Be.preloadingStrategy).\u0275providers:[],Be?.initialNavigation?mr(Be):[],Be?.bindToComponentInputs?mo(8,[Co,{provide:Ta,useExisting:Co}]).\u0275providers:[],Be?.enableViewTransitions?ba().\u0275providers:[],[{provide:ca,useFactory:Gi},{provide:t.iLQ,multi:!0,useExisting:ca}]]}}static forChild(xe){return{ngModule:ve,providers:[{provide:Fs,multi:!0,useValue:xe}]}}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(Vs,8))};static#t=this.\u0275mod=t.$C({type:ve});static#i=this.\u0275inj=t.G2t({})}return ve})();function $i(ve){return"guarded"}function mr(ve){return["disabled"===ve.initialNavigation?mo(3,[{provide:t.hnV,multi:!0,useFactory:()=>{const Pe=(0,t.WQX)(sn);return()=>{Pe.setUpLocationChangeListener()}}},{provide:Ps,useValue:2}]).\u0275providers:[],"enabledBlocking"===ve.initialNavigation?mo(2,[{provide:Ps,useValue:0},{provide:t.hnV,multi:!0,deps:[t.zZn],useFactory:Pe=>{const xe=Pe.get(j.hj,Promise.resolve());return()=>xe.then(()=>new Promise(Be=>{const ft=Pe.get(sn),Ot=Pe.get(Fc);Cr(ft,()=>{Be(!0)}),Pe.get(an).afterPreactivation=()=>(Be(!0),Ot.closed?(0,l.of)(void 0):Ot),ft.initialNavigation()}))}}]).\u0275providers:[]]}const ca=new t.nKC("")},60:(Qe,te,g)=>{"use strict";g.d(te,{aY:()=>Os,dX:()=>Fs});var e=g(4438),t=g(177);function w(nt,Rt){var kt=Object.keys(nt);if(Object.getOwnPropertySymbols){var Z=Object.getOwnPropertySymbols(nt);Rt&&(Z=Z.filter(function(Ve){return Object.getOwnPropertyDescriptor(nt,Ve).enumerable})),kt.push.apply(kt,Z)}return kt}function S(nt){for(var Rt=1;Rtnt.length)&&(Rt=nt.length);for(var kt=0,Z=new Array(Rt);kt0;)Rt+=$e[62*Math.random()|0];return Rt}function Ge(nt){for(var Rt=[],kt=(nt||[]).length>>>0;kt--;)Rt[kt]=nt[kt];return Rt}function et(nt){return nt.classList?Ge(nt.classList):(nt.getAttribute("class")||"").split(" ").filter(function(Rt){return Rt})}function st(nt){return"".concat(nt).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function mi(nt){return Object.keys(nt||{}).reduce(function(Rt,kt){return Rt+"".concat(kt,": ").concat(nt[kt].trim(),";")},"")}function Kt(nt){return nt.size!==Ne.size||nt.x!==Ne.x||nt.y!==Ne.y||nt.rotate!==Ne.rotate||nt.flipX||nt.flipY}var di=':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-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-thin: normal 100 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 -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 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, 0));\n transform: rotate(var(--fa-rotate-angle, 0));\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}';function fi(){var nt=se,Rt=X,kt=we.cssPrefix,Z=we.replacementClass,Ve=di;if(kt!==nt||Z!==Rt){var De=new RegExp("\\.".concat(nt,"\\-"),"g"),We=new RegExp("\\--".concat(nt,"\\-"),"g"),Dt=new RegExp("\\.".concat(Rt),"g");Ve=Ve.replace(De,".".concat(kt,"-")).replace(We,"--".concat(kt,"-")).replace(Dt,".".concat(Z))}return Ve}var vn=!1;function Qi(){we.autoAddCss&&!vn&&(function gt(nt){if(nt&&r){var Rt=C.createElement("style");Rt.setAttribute("type","text/css"),Rt.innerHTML=nt;for(var kt=C.head.childNodes,Z=null,Ve=kt.length-1;Ve>-1;Ve--){var De=kt[Ve],We=(De.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(We)>-1&&(Z=De)}C.head.insertBefore(Rt,Z)}}(fi()),vn=!0)}var Li={mixout:function(){return{dom:{css:fi,insertCss:Qi}}},hooks:function(){return{beforeDOMElementCreation:function(){Qi()},beforeI2svg:function(){Qi()}}}},Zi=h||{};Zi[qe]||(Zi[qe]={}),Zi[qe].styles||(Zi[qe].styles={}),Zi[qe].hooks||(Zi[qe].hooks={}),Zi[qe].shims||(Zi[qe].shims=[]);var Qt=Zi[qe],Mt=[],ct=!1;function Ut(nt){var Rt=nt.tag,kt=nt.attributes,Z=void 0===kt?{}:kt,Ve=nt.children,De=void 0===Ve?[]:Ve;return"string"==typeof nt?st(nt):"<".concat(Rt," ").concat(function Tt(nt){return Object.keys(nt||{}).reduce(function(Rt,kt){return Rt+"".concat(kt,'="').concat(st(nt[kt]),'" ')},"").trim()}(Z),">").concat(De.map(Ut).join(""),"")}function xi(nt,Rt,kt){if(nt&&nt[Rt]&&nt[Rt][kt])return{prefix:Rt,iconName:kt,icon:nt[Rt][kt]}}r&&((ct=(C.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(C.readyState))||C.addEventListener("DOMContentLoaded",function nt(){C.removeEventListener("DOMContentLoaded",nt),ct=1,Mt.map(function(Rt){return Rt()})}));var zi=function(Rt,kt,Z,Ve){var ei,pi,Di,De=Object.keys(Rt),We=De.length,Dt=void 0!==Ve?function(Rt,kt){return function(Z,Ve,De,We){return Rt.call(kt,Z,Ve,De,We)}}(kt,Ve):kt;for(void 0===Z?(ei=1,Di=Rt[De[0]]):(ei=0,Di=Z);ei=55296&&Ve<=56319&&kt2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,Ve=void 0!==Z&&Z,De=Zt(Rt);"function"!=typeof Qt.hooks.addPack||Ve?Qt.styles[nt]=S(S({},Qt.styles[nt]||{}),De):Qt.hooks.addPack(nt,Zt(Rt)),"fas"===nt&&bt("fa",Rt)}var je,Ce,ot,ut=Qt.styles,ii=Qt.shims,si=(T(je={},_t,Object.values(Ie[_t])),T(je,at,Object.values(Ie[at])),je),Pi=null,mn={},Fn={},$n={},Yn={},Qn={},rr=(T(Ce={},_t,Object.keys(ye[_t])),T(Ce,at,Object.keys(ye[at])),Ce);var Oi=function(){var Rt=function(De){return zi(ut,function(We,Dt,ei){return We[ei]=zi(Dt,De,{}),We},{})};mn=Rt(function(Ve,De,We){return De[3]&&(Ve[De[3]]=We),De[2]&&De[2].filter(function(ei){return"number"==typeof ei}).forEach(function(ei){Ve[ei.toString(16)]=We}),Ve}),Fn=Rt(function(Ve,De,We){return Ve[We]=We,De[2]&&De[2].filter(function(ei){return"string"==typeof ei}).forEach(function(ei){Ve[ei]=We}),Ve}),Qn=Rt(function(Ve,De,We){var Dt=De[2];return Ve[We]=We,Dt.forEach(function(ei){Ve[ei]=We}),Ve});var kt="far"in ut||we.autoFetchSvg,Z=zi(ii,function(Ve,De){var We=De[0],Dt=De[1],ei=De[2];return"far"===Dt&&!kt&&(Dt="fas"),"string"==typeof We&&(Ve.names[We]={prefix:Dt,iconName:ei}),"number"==typeof We&&(Ve.unicodes[We.toString(16)]={prefix:Dt,iconName:ei}),Ve},{names:{},unicodes:{}});$n=Z.names,Yn=Z.unicodes,Pi=ar(we.styleDefault,{family:we.familyDefault})};function jt(nt,Rt){return(mn[nt]||{})[Rt]}function hi(nt,Rt){return(Qn[nt]||{})[Rt]}function yi(nt){return $n[nt]||{prefix:null,iconName:null}}function ji(){return Pi}(function q(nt){he.push(nt)})(function(nt){Pi=ar(nt.styleDefault,{family:we.familyDefault})}),Oi();var rn=function(){return{prefix:null,iconName:null,rest:[]}};function ar(nt){var kt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,Z=void 0===kt?_t:kt;return ue[Z][nt]||ue[Z][ye[Z][nt]]||(nt in Qt.styles?nt:null)||null}var sr=(T(ot={},_t,Object.keys(Ie[_t])),T(ot,at,Object.keys(Ie[at])),ot);function nr(nt){var Rt,Z=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,Ve=void 0!==Z&&Z,De=(T(Rt={},_t,"".concat(we.cssPrefix,"-").concat(_t)),T(Rt,at,"".concat(we.cssPrefix,"-").concat(at)),Rt),We=null,Dt=_t;(nt.includes(De[_t])||nt.some(function(pi){return sr[_t].includes(pi)}))&&(Dt=_t),(nt.includes(De[at])||nt.some(function(pi){return sr[at].includes(pi)}))&&(Dt=at);var ei=nt.reduce(function(pi,Di){var an=function _i(nt,Rt){var kt=Rt.split("-"),Z=kt[0],Ve=kt.slice(1).join("-");return Z!==nt||""===Ve||function Rn(nt){return~tt.indexOf(nt)}(Ve)?null:Ve}(we.cssPrefix,Di);if(ut[Di]?(Di=si[Dt].includes(Di)?He[Dt][Di]:Di,We=Di,pi.prefix=Di):rr[Dt].indexOf(Di)>-1?(We=Di,pi.prefix=ar(Di,{family:Dt})):an?pi.iconName=an:Di!==we.replacementClass&&Di!==De[_t]&&Di!==De[at]&&pi.rest.push(Di),!Ve&&pi.prefix&&pi.iconName){var gn="fa"===We?yi(pi.iconName):{},yn=hi(pi.prefix,pi.iconName);gn.prefix&&(We=null),pi.iconName=gn.iconName||yn||pi.iconName,pi.prefix=gn.prefix||pi.prefix,"far"===pi.prefix&&!ut.far&&ut.fas&&!we.autoFetchSvg&&(pi.prefix="fas")}return pi},rn());return(nt.includes("fa-brands")||nt.includes("fab"))&&(ei.prefix="fab"),(nt.includes("fa-duotone")||nt.includes("fad"))&&(ei.prefix="fad"),!ei.prefix&&Dt===at&&(ut.fass||we.autoFetchSvg)&&(ei.prefix="fass",ei.iconName=hi(ei.prefix,ei.iconName)||ei.iconName),("fa"===ei.prefix||"fa"===We)&&(ei.prefix=ji()||"fas"),ei}var or=function(){function nt(){(function f(nt,Rt){if(!(nt instanceof Rt))throw new TypeError("Cannot call a class as a function")})(this,nt),this.definitions={}}return function d(nt,Rt,kt){Rt&&I(nt.prototype,Rt),kt&&I(nt,kt),Object.defineProperty(nt,"prototype",{writable:!1})}(nt,[{key:"add",value:function(){for(var kt=this,Z=arguments.length,Ve=new Array(Z),De=0;De0&&Di.forEach(function(an){"string"==typeof an&&(kt[Dt][an]=pi)}),kt[Dt][ei]=pi}),kt}}]),nt}(),Xr=[],Sr={},zr={},Ho=Object.keys(zr);function is(nt,Rt){for(var kt=arguments.length,Z=new Array(kt>2?kt-2:0),Ve=2;Ve1?Rt-1:0),Z=1;Z0&&void 0!==arguments[0]?arguments[0]:{};return r?(Rr("beforeI2svg",Rt),Ma("pseudoElements2svg",Rt),Ma("i2svg",Rt)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var Rt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},kt=Rt.autoReplaceSvgRoot;!1===we.autoReplaceSvg&&(we.autoReplaceSvg=!0),we.observeMutations=!0,function wt(nt){r&&(ct?setTimeout(nt,0):Mt.push(nt))}(function(){ro({autoReplaceSvgRoot:kt}),Rr("watch",Rt)})}},zn={noAuto:function(){we.autoReplaceSvg=!1,we.observeMutations=!1,Rr("noAuto")},config:we,dom:xr,parse:{icon:function(Rt){if(null===Rt)return null;if("object"===l(Rt)&&Rt.prefix&&Rt.iconName)return{prefix:Rt.prefix,iconName:hi(Rt.prefix,Rt.iconName)||Rt.iconName};if(Array.isArray(Rt)&&2===Rt.length){var kt=0===Rt[1].indexOf("fa-")?Rt[1].slice(3):Rt[1],Z=ar(Rt[0]);return{prefix:Z,iconName:hi(Z,kt)||kt}}if("string"==typeof Rt&&(Rt.indexOf("".concat(we.cssPrefix,"-"))>-1||Rt.match(Xe))){var Ve=nr(Rt.split(" "),{skipLookups:!0});return{prefix:Ve.prefix||ji(),iconName:hi(Ve.prefix,Ve.iconName)||Ve.iconName}}if("string"==typeof Rt){var De=ji();return{prefix:De,iconName:hi(De,Rt)||Rt}}}},library:no,findIconDefinition:Ea,toHtml:Ut},ro=function(){var kt=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,Z=void 0===kt?C:kt;(Object.keys(Qt.styles).length>0||we.autoFetchSvg)&&r&&we.autoReplaceSvg&&zn.dom.i2svg({node:Z})};function hn(nt,Rt){return Object.defineProperty(nt,"abstract",{get:Rt}),Object.defineProperty(nt,"html",{get:function(){return nt.abstract.map(function(Z){return Ut(Z)})}}),Object.defineProperty(nt,"node",{get:function(){if(r){var Z=C.createElement("div");return Z.innerHTML=nt.html,Z.children}}}),nt}function Co(nt){var Rt=nt.icons,kt=Rt.main,Z=Rt.mask,Ve=nt.prefix,De=nt.iconName,We=nt.transform,Dt=nt.symbol,ei=nt.title,pi=nt.maskId,Di=nt.titleId,an=nt.extra,gn=nt.watchable,yn=void 0!==gn&&gn,Dn=Z.found?Z:kt,hr=Dn.width,ir=Dn.height,br="fak"===Ve,gr=[we.replacementClass,De?"".concat(we.cssPrefix,"-").concat(De):""].filter(function($r){return-1===an.classes.indexOf($r)}).filter(function($r){return""!==$r||!!$r}).concat(an.classes).join(" "),Cr={children:[],attributes:S(S({},an.attributes),{},{"data-prefix":Ve,"data-icon":De,class:gr,role:an.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(hr," ").concat(ir)})},sa=br&&!~an.classes.indexOf("fa-fw")?{width:"".concat(hr/ir*16*.0625,"em")}:{};yn&&(Cr.attributes[me]=""),ei&&(Cr.children.push({tag:"title",attributes:{id:Cr.attributes["aria-labelledby"]||"title-".concat(Di||Fe())},children:[ei]}),delete Cr.attributes.title);var Hn=S(S({},Cr),{},{prefix:Ve,iconName:De,main:kt,mask:Z,maskId:pi,transform:We,symbol:Dt,styles:S(S({},sa),an.styles)}),Bi=Z.found&&kt.found?Ma("generateAbstractMask",Hn)||{children:[],attributes:{}}:Ma("generateAbstractIcon",Hn)||{children:[],attributes:{}},fr=Bi.attributes;return Hn.children=Bi.children,Hn.attributes=fr,Dt?function Ta(nt){var kt=nt.iconName,Z=nt.children,Ve=nt.attributes,De=nt.symbol,We=!0===De?"".concat(nt.prefix,"-").concat(we.cssPrefix,"-").concat(kt):De;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:S(S({},Ve),{},{id:We}),children:Z}]}]}(Hn):function Yr(nt){var Rt=nt.children,kt=nt.main,Z=nt.mask,Ve=nt.attributes,De=nt.styles,We=nt.transform;if(Kt(We)&&kt.found&&!Z.found){var pi={x:kt.width/kt.height/2,y:.5};Ve.style=mi(S(S({},De),{},{"transform-origin":"".concat(pi.x+We.x/16,"em ").concat(pi.y+We.y/16,"em")}))}return[{tag:"svg",attributes:Ve,children:Rt}]}(Hn)}function wo(nt){var Rt=nt.content,kt=nt.width,Z=nt.height,Ve=nt.transform,De=nt.title,We=nt.extra,Dt=nt.watchable,ei=void 0!==Dt&&Dt,pi=S(S(S({},We.attributes),De?{title:De}:{}),{},{class:We.classes.join(" ")});ei&&(pi[me]="");var Di=S({},We.styles);Kt(Ve)&&(Di.transform=function Xi(nt){var Rt=nt.transform,kt=nt.width,Ve=nt.height,De=void 0===Ve?16:Ve,We=nt.startCentered,Dt=void 0!==We&&We,ei="";return ei+=Dt&&v?"translate(".concat(Rt.x/16-(void 0===kt?16:kt)/2,"em, ").concat(Rt.y/16-De/2,"em) "):Dt?"translate(calc(-50% + ".concat(Rt.x/16,"em), calc(-50% + ").concat(Rt.y/16,"em)) "):"translate(".concat(Rt.x/16,"em, ").concat(Rt.y/16,"em) "),(ei+="scale(".concat(Rt.size/16*(Rt.flipX?-1:1),", ").concat(Rt.size/16*(Rt.flipY?-1:1),") "))+"rotate(".concat(Rt.rotate,"deg) ")}({transform:Ve,startCentered:!0,width:kt,height:Z}),Di["-webkit-transform"]=Di.transform);var an=mi(Di);an.length>0&&(pi.style=an);var gn=[];return gn.push({tag:"span",attributes:pi,children:[Rt]}),De&&gn.push({tag:"span",attributes:{class:"sr-only"},children:[De]}),gn}var da=Qt.styles;function ao(nt){var Rt=nt[0],kt=nt[1],De=R(nt.slice(4),1)[0];return{found:!0,width:Rt,height:kt,icon:Array.isArray(De)?{tag:"g",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.GROUP)},children:[{tag:"path",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.SECONDARY),fill:"currentColor",d:De[0]}},{tag:"path",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.PRIMARY),fill:"currentColor",d:De[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:De}}}}var Oa={found:!1,width:512,height:512};function Fa(nt,Rt){var kt=Rt;return"fa"===Rt&&null!==we.styleDefault&&(Rt=ji()),new Promise(function(Z,Ve){if(Ma("missingIconAbstract"),"fa"===kt){var We=yi(nt)||{};nt=We.iconName||nt,Rt=We.prefix||Rt}if(nt&&Rt&&da[Rt]&&da[Rt][nt])return Z(ao(da[Rt][nt]));(function ns(nt,Rt){!Ze&&!we.showMissingIcons&&nt&&console.error('Icon with name "'.concat(nt,'" and prefix "').concat(Rt,'" is missing.'))})(nt,Rt),Z(S(S({},Oa),{},{icon:we.showMissingIcons&&nt&&Ma("missingIconAbstract")||{}}))})}var Ro=function(){},kr=we.measurePerformance&&L&&L.mark&&L.measure?L:{mark:Ro,measure:Ro},ha='FA "6.5.2"',Ua=function(Rt){kr.mark("".concat(ha," ").concat(Rt," ends")),kr.measure("".concat(ha," ").concat(Rt),"".concat(ha," ").concat(Rt," begins"),"".concat(ha," ").concat(Rt," ends"))},rs={begin:function(Rt){return kr.mark("".concat(ha," ").concat(Rt," begins")),function(){return Ua(Rt)}},end:Ua},Ga=function(){};function Na(nt){return"string"==typeof(nt.getAttribute?nt.getAttribute(me):null)}function uo(nt){return C.createElementNS("http://www.w3.org/2000/svg",nt)}function ga(nt){return C.createElement(nt)}function Za(nt){var kt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,Z=void 0===kt?"svg"===nt.tag?uo:ga:kt;if("string"==typeof nt)return C.createTextNode(nt);var Ve=Z(nt.tag);return Object.keys(nt.attributes||[]).forEach(function(We){Ve.setAttribute(We,nt.attributes[We])}),(nt.children||[]).forEach(function(We){Ve.appendChild(Za(We,{ceFn:Z}))}),Ve}var _a={replace:function(Rt){var kt=Rt[0];if(kt.parentNode)if(Rt[1].forEach(function(Ve){kt.parentNode.insertBefore(Za(Ve),kt)}),null===kt.getAttribute(me)&&we.keepOriginalSource){var Z=C.createComment(function Lr(nt){var Rt=" ".concat(nt.outerHTML," ");return"".concat(Rt,"Font Awesome fontawesome.com ")}(kt));kt.parentNode.replaceChild(Z,kt)}else kt.remove()},nest:function(Rt){var kt=Rt[0],Z=Rt[1];if(~et(kt).indexOf(we.replacementClass))return _a.replace(Rt);var Ve=new RegExp("".concat(we.cssPrefix,"-.*"));if(delete Z[0].attributes.id,Z[0].attributes.class){var De=Z[0].attributes.class.split(" ").reduce(function(Dt,ei){return ei===we.replacementClass||ei.match(Ve)?Dt.toSvg.push(ei):Dt.toNode.push(ei),Dt},{toNode:[],toSvg:[]});Z[0].attributes.class=De.toSvg.join(" "),0===De.toNode.length?kt.removeAttribute("class"):kt.setAttribute("class",De.toNode.join(" "))}var We=Z.map(function(Dt){return Ut(Dt)}).join("\n");kt.setAttribute(me,""),kt.innerHTML=We}};function Oo(nt){nt()}function qr(nt,Rt){var kt="function"==typeof Rt?Rt:Ga;if(0===nt.length)kt();else{var Z=Oo;we.mutateApproach===be&&(Z=h.requestAnimationFrame||Oo),Z(function(){var Ve=function Uo(){return!0===we.autoReplaceSvg?_a.replace:_a[we.autoReplaceSvg]||_a.replace}(),De=rs.begin("mutate");nt.map(Ve),De(),kt()})}}var Bn=!1;function Da(){Bn=!0}function Go(){Bn=!1}var Wa=null;function as(nt){if(k&&we.observeMutations){var Rt=nt.treeCallback,kt=void 0===Rt?Ga:Rt,Z=nt.nodeCallback,Ve=void 0===Z?Ga:Z,De=nt.pseudoElementsCallback,We=void 0===De?Ga:De,Dt=nt.observeMutationsRoot,ei=void 0===Dt?C:Dt;Wa=new k(function(pi){if(!Bn){var Di=ji();Ge(pi).forEach(function(an){if("childList"===an.type&&an.addedNodes.length>0&&!Na(an.addedNodes[0])&&(we.searchPseudoElements&&We(an.target),kt(an.target)),"attributes"===an.type&&an.target.parentNode&&we.searchPseudoElements&&We(an.target.parentNode),"attributes"===an.type&&Na(an.target)&&~Et.indexOf(an.attributeName))if("class"===an.attributeName&&function ja(nt){var Rt=nt.getAttribute?nt.getAttribute(ke):null,kt=nt.getAttribute?nt.getAttribute(mt):null;return Rt&&kt}(an.target)){var gn=nr(et(an.target)),Dn=gn.iconName;an.target.setAttribute(ke,gn.prefix||Di),Dn&&an.target.setAttribute(mt,Dn)}else(function Bo(nt){return nt&&nt.classList&&nt.classList.contains&&nt.classList.contains(we.replacementClass)})(an.target)&&Ve(an.target)})}}),r&&Wa.observe(ei,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Ki(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},kt=function xt(nt){var Rt=nt.getAttribute("data-prefix"),kt=nt.getAttribute("data-icon"),Z=void 0!==nt.innerText?nt.innerText.trim():"",Ve=nr(et(nt));return Ve.prefix||(Ve.prefix=ji()),Rt&&kt&&(Ve.prefix=Rt,Ve.iconName=kt),Ve.iconName&&Ve.prefix||(Ve.prefix&&Z.length>0&&(Ve.iconName=function Ci(nt,Rt){return(Fn[nt]||{})[Rt]}(Ve.prefix,nt.innerText)||jt(Ve.prefix,Ni(nt.innerText))),!Ve.iconName&&we.autoFetchSvg&&nt.firstChild&&nt.firstChild.nodeType===Node.TEXT_NODE&&(Ve.iconName=nt.firstChild.data)),Ve}(nt),Z=kt.iconName,Ve=kt.prefix,De=kt.rest,We=function ai(nt){var Rt=Ge(nt.attributes).reduce(function(Ve,De){return"class"!==Ve.name&&"style"!==Ve.name&&(Ve[De.name]=De.value),Ve},{}),kt=nt.getAttribute("title"),Z=nt.getAttribute("data-fa-title-id");return we.autoA11y&&(kt?Rt["aria-labelledby"]="".concat(we.replacementClass,"-title-").concat(Z||Fe()):(Rt["aria-hidden"]="true",Rt.focusable="false")),Rt}(nt),Dt=is("parseNodeAttributes",{},nt),ei=Rt.styleParser?function ri(nt){var Rt=nt.getAttribute("style"),kt=[];return Rt&&(kt=Rt.split(";").reduce(function(Z,Ve){var De=Ve.split(":"),We=De[0],Dt=De.slice(1);return We&&Dt.length>0&&(Z[We]=Dt.join(":").trim()),Z},{})),kt}(nt):[];return S({iconName:Z,title:nt.getAttribute("title"),titleId:nt.getAttribute("data-fa-title-id"),prefix:Ve,transform:Ne,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:De,styles:ei,attributes:We}},Dt)}var tr=Qt.styles;function Or(nt){var Rt="nest"===we.autoReplaceSvg?Ki(nt,{styleParser:!1}):Ki(nt);return~Rt.extra.classes.indexOf(yt)?Ma("generateLayersText",nt,Rt):Ma("generateSvgReplacementMutation",nt,Rt)}var Fr=new Set;function Mo(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!r)return Promise.resolve();var kt=C.documentElement.classList,Z=function(an){return kt.add("".concat(_e,"-").concat(an))},Ve=function(an){return kt.remove("".concat(_e,"-").concat(an))},De=we.autoFetchSvg?Fr:pt.map(function(Di){return"fa-".concat(Di)}).concat(Object.keys(tr));De.includes("fa")||De.push("fa");var We=[".".concat(yt,":not([").concat(me,"])")].concat(De.map(function(Di){return".".concat(Di,":not([").concat(me,"])")})).join(", ");if(0===We.length)return Promise.resolve();var Dt=[];try{Dt=Ge(nt.querySelectorAll(We))}catch{}if(!(Dt.length>0))return Promise.resolve();Z("pending"),Ve("complete");var ei=rs.begin("onTree"),pi=Dt.reduce(function(Di,an){try{var gn=Or(an);gn&&Di.push(gn)}catch(yn){Ze||"MissingIcon"===yn.name&&console.error(yn)}return Di},[]);return new Promise(function(Di,an){Promise.all(pi).then(function(gn){qr(gn,function(){Z("active"),Z("complete"),Ve("pending"),"function"==typeof Rt&&Rt(),ei(),Di()})}).catch(function(gn){ei(),an(gn)})})}function gs(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Or(nt).then(function(kt){kt&&qr([kt],Rt)})}pt.map(function(nt){Fr.add("fa-".concat(nt))}),Object.keys(ye[_t]).map(Fr.add.bind(Fr)),Object.keys(ye[at]).map(Fr.add.bind(Fr)),Fr=z(Fr);var Ms=function(Rt){var kt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=kt.transform,Ve=void 0===Z?Ne:Z,De=kt.symbol,We=void 0!==De&&De,Dt=kt.mask,ei=void 0===Dt?null:Dt,pi=kt.maskId,Di=void 0===pi?null:pi,an=kt.title,gn=void 0===an?null:an,yn=kt.titleId,Dn=void 0===yn?null:yn,hr=kt.classes,ir=void 0===hr?[]:hr,br=kt.attributes,gr=void 0===br?{}:br,Cr=kt.styles,sa=void 0===Cr?{}:Cr;if(Rt){var Hn=Rt.prefix,Bi=Rt.iconName,sn=Rt.icon;return hn(S({type:"icon"},Rt),function(){return Rr("beforeDOMElementCreation",{iconDefinition:Rt,params:kt}),we.autoA11y&&(gn?gr["aria-labelledby"]="".concat(we.replacementClass,"-title-").concat(Dn||Fe()):(gr["aria-hidden"]="true",gr.focusable="false")),Co({icons:{main:ao(sn),mask:ei?ao(ei.icon):{found:!1,width:null,height:null,icon:{}}},prefix:Hn,iconName:Bi,transform:S(S({},Ne),Ve),symbol:We,title:gn,maskId:Di,titleId:Dn,extra:{attributes:gr,styles:sa,classes:ir}})})}},oa={mixout:function(){return{icon:(nt=Ms,function(Rt){var kt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=(Rt||{}).icon?Rt:Ea(Rt||{}),Ve=kt.mask;return Ve&&(Ve=(Ve||{}).icon?Ve:Ea(Ve||{})),nt(Z,S(S({},kt),{},{mask:Ve}))})};var nt},hooks:function(){return{mutationObserverCallbacks:function(kt){return kt.treeCallback=Mo,kt.nodeCallback=gs,kt}}},provides:function(Rt){Rt.i2svg=function(kt){var Z=kt.node,De=kt.callback;return Mo(void 0===Z?C:Z,void 0===De?function(){}:De)},Rt.generateSvgReplacementMutation=function(kt,Z){var Ve=Z.iconName,De=Z.title,We=Z.titleId,Dt=Z.prefix,ei=Z.transform,pi=Z.symbol,Di=Z.mask,an=Z.maskId,gn=Z.extra;return new Promise(function(yn,Dn){Promise.all([Fa(Ve,Dt),Di.iconName?Fa(Di.iconName,Di.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(hr){var ir=R(hr,2);yn([kt,Co({icons:{main:ir[0],mask:ir[1]},prefix:Dt,iconName:Ve,transform:ei,symbol:pi,maskId:an,title:De,titleId:We,extra:gn,watchable:!0})])}).catch(Dn)})},Rt.generateAbstractIcon=function(kt){var pi,Z=kt.children,Ve=kt.attributes,De=kt.main,We=kt.transform,ei=mi(kt.styles);return ei.length>0&&(Ve.style=ei),Kt(We)&&(pi=Ma("generateAbstractTransformGrouping",{main:De,transform:We,containerWidth:De.width,iconWidth:De.width})),Z.push(pi||De.icon),{children:Z,attributes:Ve}}}},Ri={mixout:function(){return{layer:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.classes,De=void 0===Ve?[]:Ve;return hn({type:"layer"},function(){Rr("beforeDOMElementCreation",{assembler:kt,params:Z});var We=[];return kt(function(Dt){Array.isArray(Dt)?Dt.map(function(ei){We=We.concat(ei.abstract)}):We=We.concat(Dt.abstract)}),[{tag:"span",attributes:{class:["".concat(we.cssPrefix,"-layers")].concat(z(De)).join(" ")},children:We}]})}}}},lt={mixout:function(){return{counter:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.title,De=void 0===Ve?null:Ve,We=Z.classes,Dt=void 0===We?[]:We,ei=Z.attributes,pi=void 0===ei?{}:ei,Di=Z.styles,an=void 0===Di?{}:Di;return hn({type:"counter",content:kt},function(){return Rr("beforeDOMElementCreation",{content:kt,params:Z}),function zo(nt){var Rt=nt.content,kt=nt.title,Z=nt.extra,Ve=S(S(S({},Z.attributes),kt?{title:kt}:{}),{},{class:Z.classes.join(" ")}),De=mi(Z.styles);De.length>0&&(Ve.style=De);var We=[];return We.push({tag:"span",attributes:Ve,children:[Rt]}),kt&&We.push({tag:"span",attributes:{class:"sr-only"},children:[kt]}),We}({content:kt.toString(),title:De,extra:{attributes:pi,styles:an,classes:["".concat(we.cssPrefix,"-layers-counter")].concat(z(Dt))}})})}}}},ht={mixout:function(){return{text:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.transform,De=void 0===Ve?Ne:Ve,We=Z.title,Dt=void 0===We?null:We,ei=Z.classes,pi=void 0===ei?[]:ei,Di=Z.attributes,an=void 0===Di?{}:Di,gn=Z.styles,yn=void 0===gn?{}:gn;return hn({type:"text",content:kt},function(){return Rr("beforeDOMElementCreation",{content:kt,params:Z}),wo({content:kt,transform:S(S({},Ne),De),title:Dt,extra:{attributes:an,styles:yn,classes:["".concat(we.cssPrefix,"-layers-text")].concat(z(pi))}})})}}},provides:function(Rt){Rt.generateLayersText=function(kt,Z){var Ve=Z.title,De=Z.transform,We=Z.extra,Dt=null,ei=null;if(v){var pi=parseInt(getComputedStyle(kt).fontSize,10),Di=kt.getBoundingClientRect();Dt=Di.width/pi,ei=Di.height/pi}return we.autoA11y&&!Ve&&(We.attributes["aria-hidden"]="true"),Promise.resolve([kt,wo({content:kt.innerHTML,width:Dt,height:ei,transform:De,title:Ve,extra:We,watchable:!0})])}}},Ue=new RegExp('"',"ug"),At=[1105920,1112319];function pn(nt,Rt){var kt="".concat(fe).concat(Rt.replace(":","-"));return new Promise(function(Z,Ve){if(null!==nt.getAttribute(kt))return Z();var We=Ge(nt.children).filter(function(sn){return sn.getAttribute(ce)===Rt})[0],Dt=h.getComputedStyle(nt,Rt),ei=Dt.getPropertyValue("font-family").match(Ye),pi=Dt.getPropertyValue("font-weight"),Di=Dt.getPropertyValue("content");if(We&&!ei)return nt.removeChild(We),Z();if(ei&&"none"!==Di&&""!==Di){var an=Dt.getPropertyValue("content"),gn=~["Sharp"].indexOf(ei[2])?at:_t,yn=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(ei[2])?ue[gn][ei[2].toLowerCase()]:rt[gn][pi],Dn=function ni(nt){var Rt=nt.replace(Ue,""),kt=function fn(nt,Rt){var Ve,kt=nt.length,Z=nt.charCodeAt(Rt);return Z>=55296&&Z<=56319&&kt>Rt+1&&(Ve=nt.charCodeAt(Rt+1))>=56320&&Ve<=57343?1024*(Z-55296)+Ve-56320+65536:Z}(Rt,0),Z=kt>=At[0]&&kt<=At[1],Ve=2===Rt.length&&Rt[0]===Rt[1];return{value:Ni(Ve?Rt[0]:Rt),isSecondary:Z||Ve}}(an),hr=Dn.value,ir=Dn.isSecondary,br=ei[0].startsWith("FontAwesome"),gr=jt(yn,hr),Cr=gr;if(br){var sa=function Vi(nt){var Rt=Yn[nt],kt=jt("fas",nt);return Rt||(kt?{prefix:"fas",iconName:kt}:null)||{prefix:null,iconName:null}}(hr);sa.iconName&&sa.prefix&&(gr=sa.iconName,yn=sa.prefix)}if(!gr||ir||We&&We.getAttribute(ke)===yn&&We.getAttribute(mt)===Cr)Z();else{nt.setAttribute(kt,Cr),We&&nt.removeChild(We);var Hn=function Ei(){return{iconName:null,title:null,titleId:null,prefix:null,transform:Ne,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),Bi=Hn.extra;Bi.attributes[ce]=Rt,Fa(gr,yn).then(function(sn){var fr=Co(S(S({},Hn),{},{icons:{main:sn,mask:rn()},prefix:yn,iconName:Cr,extra:Bi,watchable:!0})),$r=C.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===Rt?nt.insertBefore($r,nt.firstChild):nt.appendChild($r),$r.outerHTML=fr.map(function(fa){return Ut(fa)}).join("\n"),nt.removeAttribute(kt),Z()}).catch(Ve)}}else Z()})}function Zn(nt){return Promise.all([pn(nt,"::before"),pn(nt,"::after")])}function Fo(nt){return!(nt.parentNode===document.head||~pe.indexOf(nt.tagName.toUpperCase())||nt.getAttribute(ce)||nt.parentNode&&"svg"===nt.parentNode.tagName)}function vr(nt){if(r)return new Promise(function(Rt,kt){var Z=Ge(nt.querySelectorAll("*")).filter(Fo).map(Zn),Ve=rs.begin("searchPseudoElements");Da(),Promise.all(Z).then(function(){Ve(),Go(),Rt()}).catch(function(){Ve(),Go(),kt()})})}var lc=!1,hc=function(Rt){return Rt.toLowerCase().split(" ").reduce(function(Z,Ve){var De=Ve.toLowerCase().split("-"),We=De[0],Dt=De.slice(1).join("-");if(We&&"h"===Dt)return Z.flipX=!0,Z;if(We&&"v"===Dt)return Z.flipY=!0,Z;if(Dt=parseFloat(Dt),isNaN(Dt))return Z;switch(We){case"grow":Z.size=Z.size+Dt;break;case"shrink":Z.size=Z.size-Dt;break;case"left":Z.x=Z.x-Dt;break;case"right":Z.x=Z.x+Dt;break;case"up":Z.y=Z.y-Dt;break;case"down":Z.y=Z.y+Dt;break;case"rotate":Z.rotate=Z.rotate+Dt}return Z},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},Wo={x:0,y:0,width:"100%",height:"100%"};function fo(nt){return nt.attributes&&(nt.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(nt.attributes.fill="black"),nt}!function xo(nt,Rt){var kt=Rt.mixoutsTo;Xr=nt,Sr={},Object.keys(zr).forEach(function(Z){-1===Ho.indexOf(Z)&&delete zr[Z]}),Xr.forEach(function(Z){var Ve=Z.mixout?Z.mixout():{};if(Object.keys(Ve).forEach(function(We){"function"==typeof Ve[We]&&(kt[We]=Ve[We]),"object"===l(Ve[We])&&Object.keys(Ve[We]).forEach(function(Dt){kt[We]||(kt[We]={}),kt[We][Dt]=Ve[We][Dt]})}),Z.hooks){var De=Z.hooks();Object.keys(De).forEach(function(We){Sr[We]||(Sr[We]=[]),Sr[We].push(De[We])})}Z.provides&&Z.provides(zr)})}([Li,oa,Ri,lt,ht,{hooks:function(){return{mutationObserverCallbacks:function(kt){return kt.pseudoElementsCallback=vr,kt}}},provides:function(Rt){Rt.pseudoElements2svg=function(kt){var Z=kt.node;we.searchPseudoElements&&vr(void 0===Z?C:Z)}}},{mixout:function(){return{dom:{unwatch:function(){Da(),lc=!0}}}},hooks:function(){return{bootstrap:function(){as(is("mutationObserverCallbacks",{}))},noAuto:function(){!function Ft(){Wa&&Wa.disconnect()}()},watch:function(kt){var Z=kt.observeMutationsRoot;lc?Go():as(is("mutationObserverCallbacks",{observeMutationsRoot:Z}))}}}},{mixout:function(){return{parse:{transform:function(kt){return hc(kt)}}}},hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-transform");return Ve&&(kt.transform=hc(Ve)),kt}}},provides:function(Rt){Rt.generateAbstractTransformGrouping=function(kt){var Z=kt.main,Ve=kt.transform,We=kt.iconWidth,Dt={transform:"translate(".concat(kt.containerWidth/2," 256)")},ei="translate(".concat(32*Ve.x,", ").concat(32*Ve.y,") "),pi="scale(".concat(Ve.size/16*(Ve.flipX?-1:1),", ").concat(Ve.size/16*(Ve.flipY?-1:1),") "),Di="rotate(".concat(Ve.rotate," 0 0)"),yn={outer:Dt,inner:{transform:"".concat(ei," ").concat(pi," ").concat(Di)},path:{transform:"translate(".concat(We/2*-1," -256)")}};return{tag:"g",attributes:S({},yn.outer),children:[{tag:"g",attributes:S({},yn.inner),children:[{tag:Z.icon.tag,children:Z.icon.children,attributes:S(S({},Z.icon.attributes),yn.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-mask"),De=Ve?nr(Ve.split(" ").map(function(We){return We.trim()})):rn();return De.prefix||(De.prefix=ji()),kt.mask=De,kt.maskId=Z.getAttribute("data-fa-mask-id"),kt}}},provides:function(Rt){Rt.generateAbstractMask=function(kt){var nt,Z=kt.children,Ve=kt.attributes,De=kt.main,We=kt.mask,Dt=kt.maskId,Di=De.icon,gn=We.icon,yn=function Pt(nt){var Rt=nt.transform,Z=nt.iconWidth,Ve={transform:"translate(".concat(nt.containerWidth/2," 256)")},De="translate(".concat(32*Rt.x,", ").concat(32*Rt.y,") "),We="scale(".concat(Rt.size/16*(Rt.flipX?-1:1),", ").concat(Rt.size/16*(Rt.flipY?-1:1),") "),Dt="rotate(".concat(Rt.rotate," 0 0)");return{outer:Ve,inner:{transform:"".concat(De," ").concat(We," ").concat(Dt)},path:{transform:"translate(".concat(Z/2*-1," -256)")}}}({transform:kt.transform,containerWidth:We.width,iconWidth:De.width}),Dn={tag:"rect",attributes:S(S({},Wo),{},{fill:"white"})},hr=Di.children?{children:Di.children.map(fo)}:{},ir={tag:"g",attributes:S({},yn.inner),children:[fo(S({tag:Di.tag,attributes:S(S({},Di.attributes),yn.path)},hr))]},br={tag:"g",attributes:S({},yn.outer),children:[ir]},gr="mask-".concat(Dt||Fe()),Cr="clip-".concat(Dt||Fe()),sa={tag:"mask",attributes:S(S({},Wo),{},{id:gr,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[Dn,br]},Hn={tag:"defs",children:[{tag:"clipPath",attributes:{id:Cr},children:(nt=gn,"g"===nt.tag?nt.children:[nt])},sa]};return Z.push(Hn,{tag:"rect",attributes:S({fill:"currentColor","clip-path":"url(#".concat(Cr,")"),mask:"url(#".concat(gr,")")},Wo)}),{children:Z,attributes:Ve}}}},{provides:function(Rt){var kt=!1;h.matchMedia&&(kt=h.matchMedia("(prefers-reduced-motion: reduce)").matches),Rt.missingIconAbstract=function(){var Z=[],Ve={fill:"currentColor"},De={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Z.push({tag:"path",attributes:S(S({},Ve),{},{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 We=S(S({},De),{},{attributeName:"opacity"}),Dt={tag:"circle",attributes:S(S({},Ve),{},{cx:"256",cy:"364",r:"28"}),children:[]};return kt||Dt.children.push({tag:"animate",attributes:S(S({},De),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:S(S({},We),{},{values:"1;0;1;1;0;1;"})}),Z.push(Dt),Z.push({tag:"path",attributes:S(S({},Ve),{},{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:kt?[]:[{tag:"animate",attributes:S(S({},We),{},{values:"1;0;0;0;0;1;"})}]}),kt||Z.push({tag:"path",attributes:S(S({},Ve),{},{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:S(S({},We),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:Z}}}},{hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-symbol");return kt.symbol=null!==Ve&&(""===Ve||Ve),kt}}}}],{mixoutsTo:zn});var Aa=zn.config,dn=zn.dom,Es=zn.parse,fc=zn.icon,Ll=g(345);const mc=["*"],Zs=nt=>{const Rt={[`fa-${nt.animation}`]:null!=nt.animation&&!nt.animation.startsWith("spin"),"fa-spin":"spin"===nt.animation||"spin-reverse"===nt.animation,"fa-spin-pulse":"spin-pulse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-spin-reverse":"spin-reverse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-pulse":"spin-pulse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-fw":nt.fixedWidth,"fa-border":nt.border,"fa-inverse":nt.inverse,"fa-layers-counter":nt.counter,"fa-flip-horizontal":"horizontal"===nt.flip||"both"===nt.flip,"fa-flip-vertical":"vertical"===nt.flip||"both"===nt.flip,[`fa-${nt.size}`]:null!==nt.size,[`fa-rotate-${nt.rotate}`]:null!==nt.rotate,[`fa-pull-${nt.pull}`]:null!==nt.pull,[`fa-stack-${nt.stackItemSize}`]:null!=nt.stackItemSize};return Object.keys(Rt).map(kt=>Rt[kt]?kt:null).filter(kt=>kt)},Rs=new WeakSet,Eo="fa-auto-css";let gc=(()=>{class nt{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null,this._autoAddCss=!0}set autoAddCss(kt){Aa.autoAddCss=kt,this._autoAddCss=kt}get autoAddCss(){return this._autoAddCss}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275prov=e.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),_c=(()=>{class nt{constructor(){this.definitions={}}addIcons(...kt){for(const Z of kt){Z.prefix in this.definitions||(this.definitions[Z.prefix]={}),this.definitions[Z.prefix][Z.iconName]=Z;for(const Ve of Z.icon[2])"string"==typeof Ve&&(this.definitions[Z.prefix][Ve]=Z)}}addIconPacks(...kt){for(const Z of kt){const Ve=Object.keys(Z).map(De=>Z[De]);this.addIcons(...Ve)}}getIconDefinition(kt,Z){return kt in this.definitions&&Z in this.definitions[kt]?this.definitions[kt][Z]:null}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275prov=e.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),os=(()=>{class nt{constructor(){this.stackItemSize="1x"}ngOnChanges(kt){if("size"in kt)throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275dir=e.FsC({type:nt,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},standalone:!0,features:[e.OA$]})}return nt})(),So=(()=>{class nt{constructor(kt,Z){this.renderer=kt,this.elementRef=Z}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(kt){"size"in kt&&(null!=kt.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${kt.size.currentValue}`),null!=kt.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${kt.size.previousValue}`))}static#e=this.\u0275fac=function(Z){return new(Z||nt)(e.rXU(e.sFG),e.rXU(e.aKT))};static#t=this.\u0275cmp=e.VBU({type:nt,selectors:[["fa-stack"]],inputs:{size:"size"},standalone:!0,features:[e.OA$,e.aNF],ngContentSelectors:mc,decls:1,vars:0,template:function(Z,Ve){1&Z&&(e.NAR(),e.SdG(0))},encapsulation:2})}return nt})(),Os=(()=>{class nt{constructor(kt,Z,Ve,De,We){this.sanitizer=kt,this.config=Z,this.iconLibrary=Ve,this.stackItem=De,this.document=(0,e.WQX)(t.qQ),null!=We&&null==De&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(kt){if(null!=this.icon||null!=this.config.fallbackIcon){if(kt){const Z=this.findIconDefinition(this.icon??this.config.fallbackIcon);if(null!=Z){const Ve=this.buildParams();!function pc(nt,Rt){if(!Rt.autoAddCss||Rs.has(nt))return;if(null!=nt.getElementById(Eo))return Rt.autoAddCss=!1,void Rs.add(nt);const kt=nt.createElement("style");kt.setAttribute("type","text/css"),kt.setAttribute("id",Eo),kt.innerHTML=dn.css();const Z=nt.head.childNodes;let Ve=null;for(let De=Z.length-1;De>-1;De--){const We=Z[De],Dt=We.nodeName.toUpperCase();["STYLE","LINK"].indexOf(Dt)>-1&&(Ve=We)}nt.head.insertBefore(kt,Ve),Rt.autoAddCss=!1,Rs.add(nt)}(this.document,this.config);const De=fc(Z,Ve);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(De.html.join("\n"))}}}else(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})()}render(){this.ngOnChanges({})}findIconDefinition(kt){const Z=((nt,Rt)=>(nt=>void 0!==nt.prefix&&void 0!==nt.iconName)(nt)?nt:Array.isArray(nt)&&2===nt.length?{prefix:nt[0],iconName:nt[1]}:{prefix:Rt,iconName:nt})(kt,this.config.defaultPrefix);return"icon"in Z?Z:this.iconLibrary.getIconDefinition(Z.prefix,Z.iconName)??((nt=>{throw new Error(`Could not find icon with iconName=${nt.iconName} and prefix=${nt.prefix} in the icon library.`)})(Z),null)}buildParams(){const kt={flip:this.flip,animation:this.animation,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},Z="string"==typeof this.transform?Es.transform(this.transform):this.transform;return{title:this.title,transform:Z,classes:Zs(kt),mask:null!=this.mask?this.findIconDefinition(this.mask):null,symbol:this.symbol,attributes:{role:this.a11yRole}}}static#e=this.\u0275fac=function(Z){return new(Z||nt)(e.rXU(Ll.up),e.rXU(gc),e.rXU(_c),e.rXU(os,8),e.rXU(So,8))};static#t=this.\u0275cmp=e.VBU({type:nt,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(Z,Ve){2&Z&&(e.Mr5("innerHTML",Ve.renderedIconHTML,e.npT),e.BMQ("title",Ve.title))},inputs:{icon:"icon",title:"title",animation:"animation",mask:"mask",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",transform:"transform",a11yRole:"a11yRole"},standalone:!0,features:[e.OA$,e.aNF],decls:0,vars:0,template:function(Z,Ve){},encapsulation:2})}return nt})(),Fs=(()=>{class nt{static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275mod=e.$C({type:nt});static#i=this.\u0275inj=e.G2t({})}return nt})()},5383:(Qe,te,g)=>{"use strict";g.d(te,{$$g:()=>da,$Fj:()=>pl,$sC:()=>N6,BA1:()=>o0,C8j:()=>b9,CQO:()=>Lg,Ccf:()=>h7,D6w:()=>dl,DW4:()=>ei,EvL:()=>R4,FYJ:()=>Dm,GR4:()=>BC,GRI:()=>Cv,HEq:()=>jo,If6:()=>d_,Int:()=>e9,JKM:()=>Zh,Kcb:()=>JC,M29:()=>kh,McB:()=>Gt,Mf0:()=>Ng,MjD:()=>Og,Oh6:()=>Ci,QLR:()=>rp,TBz:()=>f3,Tq9:()=>Wg,Vpi:()=>q8,VwO:()=>U6,W1p:()=>J2,WKo:()=>Uv,WxX:()=>oe,Xbc:()=>s0,_eQ:()=>Dt,_qq:()=>Y8,aAJ:()=>p_,aFw:()=>rh,cbP:()=>ng,dB:()=>yo,e4L:()=>Gd,eGi:()=>q6,f6_:()=>Au,gdJ:()=>yc,hb3:()=>Mp,iW_:()=>yb,iy8:()=>E3,jPR:()=>qg,jTw:()=>N4,k02:()=>Wr,k6j:()=>Qr,knH:()=>Wp,ld_:()=>yp,njF:()=>f5,nsx:()=>Yp,o97:()=>Zm,pCJ:()=>ii,pS3:()=>d6,peG:()=>Hf,qFF:()=>Jg,qIE:()=>Ui,s5m:()=>js,vfE:()=>g1,xiI:()=>L_,ymQ:()=>Mc,zPk:()=>Du,zjW:()=>f7,zm_:()=>zm,zpE:()=>j3});var oe={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"]},ii={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 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"]},Ci={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"]},da={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"]},jo={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"]},Dt={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},ei={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"]},yc={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 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.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 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"]},Qr={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.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 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.5L373 389.9z"]},Gd={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"]},Mc={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"]},dl={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-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 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-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},pl={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"]},rh={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"]},js={prefix:"fas",iconName:"euro-sign",icon:[320,512,[8364,"eur","euro"],"f153","M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z"]},g1={prefix:"fas",iconName:"sterling-sign",icon:[320,512,[163,"gbp","pound-sign"],"f154","M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z"]},kh={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"]},Hf={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M297.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.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.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.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},Ui={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"]},R4={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M80 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]},N4={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"]},Zh={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z"]},J2={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"]},f5={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"]},Wp={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"]},Yp={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.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},o0={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 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},s0={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-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 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]},f3={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"]},d6={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 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]},Gt={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.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.8v17.7c0 7.8 4.8 14.8 11.6 18.7c6.8 3.9 15.1 4.5 21.8 .6l13.8-7.9c6.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-14.4 8.3c-6.5 3.7-10 10.9-10 18.4s3.5 14.7 10 18.4l14.4 8.3c6.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-13.8-7.9c-6.7-3.9-15.1-3.3-21.8 .6c-6.8 3.9-11.6 10.9-11.6 18.7v17.7c0 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.8V467.8c0-7.9-4.9-14.9-11.7-18.9c-6.8-3.9-15.2-4.5-22-.6l-13.5 7.8c-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.2l14-8.1c6.5-3.8 10.1-11.1 10.1-18.6s-3.5-14.8-10.1-18.6l-14-8.1c-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.4l13.6 7.8c6.8 3.9 15.2 3.3 22-.6c6.9-3.9 11.7-11 11.7-18.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z"]},Wr={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},N6={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"]},yb={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 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-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},U6={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V224v64V448c0 17.7-14.3 32-32 32H128c-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-32H96V64zm448 0v64h32c17.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 32H544v64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z"]},Dm={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z"]},h7={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-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 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"]},E3=h7,f7={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},yo={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 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z"]},q6={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"]},ng={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 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},zm={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"]},Du={prefix:"fas",iconName:"yen-sign",icon:[320,512,[165,"cny","jpy","rmb","yen"],"f157","M58.6 46.2C48.8 31.5 29 27.6 14.3 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z"]},Au={prefix:"fas",iconName:"ruble-sign",icon:[384,512,[8381,"rouble","rub","ruble"],"f158","M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},d_={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 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z"]},p_={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-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"]},L_={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 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 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},Zm={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},Lg={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"]},Og={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 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},Ng={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.3-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.3 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"]},Wg={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z"]},Jg={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"]},qg={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M208 0H332.1c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48zM48 128h80v64H64V448H256V416h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48z"]},rp={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"]},Cv={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"]},Uv={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 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]},e9={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"]},b9={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"]},BC={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 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"]},JC={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z"]},j3={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 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},Y8={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"]},yp={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.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 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-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"]},Mp={prefix:"fas",iconName:"turkish-lira-sign",icon:[384,512,["try","turkish-lira"],"e2bb","M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z"]},q8={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M160 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3c-16.1-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C119.4 279.3 84.4 270 58.4 253c-14.2-9.3-27.5-22-35.8-39.6c-8.4-17.9-10.1-37.9-6.1-59.2C23.7 116 52.3 91.2 84.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z"]}},4054:(Qe,te,g)=>{"use strict";g.d(te,{En:()=>Ke,Vm:()=>oe,EH:()=>C,gp:()=>se});var e=g(7673);g(274),g(3993);var x=g(7786),f=g(1985),I=g(1413),d=g(3557),T=g(983),y=g(8810),F=g(8071);class z{constructor(Ae,we,he){this.kind=Ae,this.value=we,this.error=he,this.hasValue="N"===Ae}observe(Ae){return W(this,Ae)}do(Ae,we,he){const{kind:q,value:Re,error:Ne}=this;return"N"===q?Ae?.(Re):"E"===q?we?.(Ne):he?.()}accept(Ae,we,he){var q;return(0,F.T)(null===(q=Ae)||void 0===q?void 0:q.next)?this.observe(Ae):this.do(Ae,we,he)}toObservable(){const{kind:Ae,value:we,error:he}=this,q="N"===Ae?(0,e.of)(we):"E"===Ae?(0,y.$)(()=>he):"C"===Ae?T.w:0;if(!q)throw new TypeError(`Unexpected notification kind ${Ae}`);return q}static createNext(Ae){return new z("N",Ae)}static createError(Ae){return new z("E",void 0,Ae)}static createComplete(){return z.completeNotification}}function W(dt,Ae){var we,he,q;const{kind:Re,value:Ne,error:gt}=dt;if("string"!=typeof Re)throw new TypeError('Invalid notification, missing "kind"');"N"===Re?null===(we=Ae.next)||void 0===we||we.call(Ae,Ne):"E"===Re?null===(he=Ae.error)||void 0===he||he.call(Ae,gt):null===(q=Ae.complete)||void 0===q||q.call(Ae)}z.completeNotification=new z("C");var $=g(9974),j=g(4360),J=g(6354),ee=g(9437),ie=g(5964),ge=g(8750);function ae(dt,Ae,we,he){return(0,$.N)((q,Re)=>{let Ne;Ae&&"function"!=typeof Ae?({duration:we,element:Ne,connector:he}=Ae):Ne=Ae;const gt=new Map,$e=mi=>{gt.forEach(mi),mi(Re)},Fe=mi=>$e(Kt=>Kt.error(mi));let Ge=0,et=!1;const st=new j.H(Re,mi=>{try{const Kt=dt(mi);let Pt=gt.get(Kt);if(!Pt){gt.set(Kt,Pt=he?he():new I.B);const Xi=function Tt(mi,Kt){const Pt=new f.c(Xi=>{Ge++;const di=Kt.subscribe(Xi);return()=>{di.unsubscribe(),0==--Ge&&et&&st.unsubscribe()}});return Pt.key=mi,Pt}(Kt,Pt);if(Re.next(Xi),we){const di=(0,j._)(Pt,()=>{Pt.complete(),di?.unsubscribe()},void 0,void 0,()=>gt.delete(Kt));st.add((0,ge.Tg)(we(Xi)).subscribe(di))}}Pt.next(Ne?Ne(mi):mi)}catch(Kt){Fe(Kt)}},()=>$e(mi=>mi.complete()),Fe,()=>gt.clear(),()=>(et=!0,0===Ge));q.subscribe(st)})}var Me=g(1397);function Te(dt,Ae){return Ae?we=>we.pipe(Te((he,q)=>(0,ge.Tg)(dt(he,q)).pipe((0,J.T)((Re,Ne)=>Ae(he,Re,q,Ne))))):(0,$.N)((we,he)=>{let q=0,Re=null,Ne=!1;we.subscribe((0,j._)(he,gt=>{Re||(Re=(0,j._)(he,void 0,()=>{Re=null,Ne&&he.complete()}),(0,ge.Tg)(dt(gt,q++)).subscribe(Re))},()=>{Ne=!0,!Re&&he.complete()}))})}var D=g(6697),n=g(4438),c=g(9640);const m={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},h="__@ngrx/effects_create__";function C(dt,Ae={}){const we=Ae.functional?dt:dt(),he={...m,...Ae};return Object.defineProperty(we,h,{value:he}),we}function r(dt){return Object.getPrototypeOf(dt)}function V(dt){return"function"==typeof dt}function N(dt){return dt.filter(V)}function Ee(dt,Ae,we){const he=r(dt),Re=he&&"Object"!==he.constructor.name?he.constructor.name:null,Ne=function _(dt){return function k(dt){return Object.getOwnPropertyNames(dt).filter(he=>!(!dt[he]||!dt[he].hasOwnProperty(h))&&dt[he][h].hasOwnProperty("dispatch")).map(he=>({propertyName:he,...dt[he][h]}))}(dt)}(dt).map(({propertyName:gt,dispatch:$e,useEffectsErrorHandler:Fe})=>{const Ge="function"==typeof dt[gt]?dt[gt]():dt[gt],et=Fe?we(Ge,Ae):Ge;return!1===$e?et.pipe((0,d.w)()):et.pipe(function Q(){return(0,$.N)((dt,Ae)=>{dt.subscribe((0,j._)(Ae,we=>{Ae.next(z.createNext(we))},()=>{Ae.next(z.createComplete()),Ae.complete()},we=>{Ae.next(z.createError(we)),Ae.complete()}))})}()).pipe((0,J.T)(Tt=>({effect:dt[gt],notification:Tt,propertyName:gt,sourceName:Re,sourceInstance:dt})))});return(0,x.h)(...Ne)}function qe(dt,Ae,we=10){return dt.pipe((0,ee.W)(he=>(Ae&&Ae.handleError(he),we<=1?dt:qe(dt,Ae,we-1))))}let Ke=(()=>{class dt extends f.c{constructor(we){super(),we&&(this.source=we)}lift(we){const he=new dt;return he.source=this,he.operator=we,he}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(c.sA))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})();function se(...dt){return(0,ie.p)(Ae=>dt.some(we=>"string"==typeof we?we===Ae.type:we.type===Ae.type))}const X=new n.nKC("@ngrx/effects Internal Root Guard"),me=new n.nKC("@ngrx/effects User Provided Effects"),ce=new n.nKC("@ngrx/effects Internal Root Effects"),fe=new n.nKC("@ngrx/effects Internal Root Effects Instances"),ke=new n.nKC("@ngrx/effects Internal Feature Effects"),mt=new n.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),_e=new n.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>qe}),be="@ngrx/effects/init";(0,c.VP)(be);function Xe(dt){return yt(dt,"ngrxOnInitEffects")}function yt(dt,Ae){return dt&&Ae in dt&&"function"==typeof dt[Ae]}let Ye=(()=>{class dt extends I.B{constructor(we,he){super(),this.errorHandler=we,this.effectsErrorHandler=he}addEffects(we){this.next(we)}toActions(){return this.pipe(ae(we=>function v(dt){return!!dt.constructor&&"Object"!==dt.constructor.name&&"Function"!==dt.constructor.name}(we)?r(we):we),(0,Me.Z)(we=>we.pipe(ae(rt))),(0,Me.Z)(we=>{const he=we.pipe(Te(Re=>function Yt(dt,Ae){return we=>{const he=Ee(we,dt,Ae);return function Ie(dt){return yt(dt,"ngrxOnRunEffects")}(we)?we.ngrxOnRunEffects(he):he}}(this.errorHandler,this.effectsErrorHandler)(Re)),(0,J.T)(Re=>(function Ze(dt,Ae){if("N"===dt.notification.kind){const we=dt.notification.value;!function _t(dt){return"function"!=typeof dt&&dt&&dt.type&&"string"==typeof dt.type}(we)&&Ae.handleError(new Error(`Effect ${function at({propertyName:dt,sourceInstance:Ae,sourceName:we}){const he="function"==typeof Ae[dt];return we?`"${we}.${String(dt)}${he?"()":""}"`:`"${String(dt)}()"`}(dt)} dispatched an invalid action: ${function pt(dt){try{return JSON.stringify(dt)}catch{return dt}}(we)}`))}}(Re,this.errorHandler),Re.notification)),(0,ie.p)(Re=>"N"===Re.kind&&null!=Re.value),function de(){return(0,$.N)((dt,Ae)=>{dt.subscribe((0,j._)(Ae,we=>W(we,Ae)))})}()),q=we.pipe((0,D.s)(1),(0,ie.p)(Xe),(0,J.T)(Re=>Re.ngrxOnInitEffects()));return(0,x.h)(he,q)}))}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(n.zcH),n.KVO(_e))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})();function rt(dt){return function ye(dt){return yt(dt,"ngrxOnIdentifyEffects")}(dt)?dt.ngrxOnIdentifyEffects():""}let Nt=(()=>{class dt{get isStarted(){return!!this.effectsSubscription}constructor(we,he){this.effectSources=we,this.store=he,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Ye),n.KVO(c.il))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})(),Et=(()=>{class dt{constructor(we,he,q,Re,Ne,gt,$e){this.sources=we,he.start();for(const Fe of Re)we.addEffects(Fe);q.dispatch({type:be})}addEffects(we){this.sources.addEffects(we)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Ye),n.KVO(Nt),n.KVO(c.il),n.KVO(fe),n.KVO(c.wc,8),n.KVO(c.ae,8),n.KVO(X,8))};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})(),Vt=(()=>{class dt{constructor(we,he,q,Re){const Ne=he.flat();for(const gt of Ne)we.addEffects(gt)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Et),n.KVO(mt),n.KVO(c.wc,8),n.KVO(c.ae,8))};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})(),oe=(()=>{class dt{static forFeature(...we){const he=we.flat(),q=N(he);return{ngModule:Vt,providers:[q,{provide:ke,multi:!0,useValue:he},{provide:me,multi:!0,useValue:[]},{provide:mt,multi:!0,useFactory:tt,deps:[ke,me]}]}}static forRoot(...we){const he=we.flat(),q=N(he);return{ngModule:Et,providers:[q,{provide:ce,useValue:[he]},{provide:X,useFactory:$t},{provide:me,multi:!0,useValue:[]},{provide:fe,useFactory:tt,deps:[ce,me]}]}}static#e=this.\u0275fac=function(he){return new(he||dt)};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})();function tt(dt,Ae){const we=[];for(const he of dt)we.push(...he);for(const he of Ae)we.push(...he);return we.map(he=>function ne(dt){return dt instanceof n.nKC||V(dt)}(he)?(0,n.WQX)(he):he)}function $t(){const dt=(0,n.WQX)(Nt,{optional:!0,skipSelf:!0}),Ae=(0,n.WQX)(ce,{self:!0});if((1!==Ae.length||0!==Ae[0].length)&&dt)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9640:(Qe,te,g)=>{"use strict";g.d(te,{SS:()=>de,Zz:()=>Te,N_:()=>m,Bh:()=>at,QU:()=>_t,sA:()=>ue,h1:()=>He,il:()=>rt,ae:()=>rr,md:()=>Rn,wc:()=>Qn,q6:()=>pt,VP:()=>W,UX:()=>Kt,vy:()=>Oi,Mz:()=>st,on:()=>_i,xk:()=>$});var e=g(4438),t=g(4412),w=g(1985),S=g(1413),l=g(7242),x=g(941),f=g(3993),I=g(2816),d=g(6354),y=g(3294),F=g(9079);const R={};function W(jt,Ci){if(R[jt]=(R[jt]||0)+1,"function"==typeof Ci)return Q(jt,(...yi)=>({...Ci(...yi),type:jt}));switch(Ci?Ci._as:"empty"){case"empty":return Q(jt,()=>({type:jt}));case"props":return Q(jt,yi=>({...yi,type:jt}));default:throw new Error("Unexpected config.")}}function $(){return{_as:"props",_p:void 0}}function Q(jt,Ci){return Object.defineProperty(Ci,"type",{value:jt,writable:!1})}const Te="@ngrx/store/init";let de=(()=>{class jt extends t.t{constructor(){super({type:Te})}next(hi){if("function"==typeof hi)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(typeof hi>"u")throw new TypeError("Actions must be objects");if(typeof hi.type>"u")throw new TypeError("Actions must have a type property");super.next(hi)}complete(){}ngOnDestroy(){super.complete()}static#e=this.\u0275fac=function(yi){return new(yi||jt)};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const D=[de],n=new e.nKC("@ngrx/store Internal Root Guard"),c=new e.nKC("@ngrx/store Internal Initial State"),m=new e.nKC("@ngrx/store Initial State"),h=new e.nKC("@ngrx/store Reducer Factory"),C=new e.nKC("@ngrx/store Internal Reducer Factory Provider"),k=new e.nKC("@ngrx/store Initial Reducers"),L=new e.nKC("@ngrx/store Internal Initial Reducers"),_=new e.nKC("@ngrx/store Store Features"),r=new e.nKC("@ngrx/store Internal Store Reducers"),v=new e.nKC("@ngrx/store Internal Feature Reducers"),V=new e.nKC("@ngrx/store Internal Feature Configs"),N=new e.nKC("@ngrx/store Internal Store Features"),ne=new e.nKC("@ngrx/store Internal Feature Reducers Token"),Ee=new e.nKC("@ngrx/store Feature Reducers"),ze=new e.nKC("@ngrx/store User Provided Meta Reducers"),qe=new e.nKC("@ngrx/store Meta Reducers"),Ke=new e.nKC("@ngrx/store Internal Resolved Meta Reducers"),se=new e.nKC("@ngrx/store User Runtime Checks Config"),X=new e.nKC("@ngrx/store Internal User Runtime Checks Config"),me=new e.nKC("@ngrx/store Internal Runtime Checks"),ce=new e.nKC("@ngrx/store Check if Action types are unique");function mt(jt,Ci={}){const hi=Object.keys(jt),yi={};for(let ji=0;jiji(Vi),hi(Ci))}}function pe(jt,Ci){return Array.isArray(Ci)&&Ci.length>0&&(jt=be.apply(null,[...Ci,jt])),(hi,yi)=>{const Vi=jt(hi);return(ji,rn)=>Vi(ji=void 0===ji?yi:ji,rn)}}new e.nKC("@ngrx/store Root Store Provider"),new e.nKC("@ngrx/store Feature State Provider");class _t extends w.c{}class at extends de{}const pt="@ngrx/store/update-reducers";let Xt=(()=>{class jt extends t.t{get currentReducers(){return this.reducers}constructor(hi,yi,Vi,ji){super(ji(Vi,yi)),this.dispatcher=hi,this.initialState=yi,this.reducers=Vi,this.reducerFactory=ji}addFeature(hi){this.addFeatures([hi])}addFeatures(hi){const yi=hi.reduce((Vi,{reducers:ji,reducerFactory:rn,metaReducers:ar,initialState:sr,key:nr})=>{const or="function"==typeof ji?function Ze(jt){const Ci=Array.isArray(jt)&&jt.length>0?be(...jt):hi=>hi;return(hi,yi)=>(hi=Ci(hi),(Vi,ji)=>hi(Vi=void 0===Vi?yi:Vi,ji))}(ar)(ji,sr):pe(rn,ar)(ji,sr);return Vi[nr]=or,Vi},{});this.addReducers(yi)}removeFeature(hi){this.removeFeatures([hi])}removeFeatures(hi){this.removeReducers(hi.map(yi=>yi.key))}addReducer(hi,yi){this.addReducers({[hi]:yi})}addReducers(hi){this.reducers={...this.reducers,...hi},this.updateReducers(Object.keys(hi))}removeReducer(hi){this.removeReducers([hi])}removeReducers(hi){hi.forEach(yi=>{this.reducers=function _e(jt,Ci){return Object.keys(jt).filter(hi=>hi!==Ci).reduce((hi,yi)=>Object.assign(hi,{[yi]:jt[yi]}),{})}(this.reducers,yi)}),this.updateReducers(hi)}updateReducers(hi){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:pt,features:hi})}ngOnDestroy(){this.complete()}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(at),e.KVO(m),e.KVO(k),e.KVO(h))};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const ye=[Xt,{provide:_t,useExisting:Xt},{provide:at,useExisting:de}];let ue=(()=>{class jt extends S.B{ngOnDestroy(){this.complete()}static#e=this.\u0275fac=(()=>{let hi;return function(Vi){return(hi||(hi=e.xGo(jt)))(Vi||jt)}})();static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const Ie=[ue];class He extends w.c{}let Xe=(()=>{class jt extends t.t{static#e=this.INIT=Te;constructor(hi,yi,Vi,ji){super(ji);const nr=hi.pipe((0,x.Q)(l.T)).pipe((0,f.E)(yi)).pipe((0,I.S)(yt,{state:ji}));this.stateSubscription=nr.subscribe(({state:or,action:Xr})=>{this.next(or),Vi.next(Xr)}),this.state=(0,F.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#t=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(de),e.KVO(_t),e.KVO(ue),e.KVO(m))};static#i=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();function yt(jt={state:void 0},[Ci,hi]){const{state:yi}=jt;return{state:hi(yi,Ci),action:Ci}}const Ye=[Xe,{provide:He,useExisting:Xe}];let rt=(()=>{class jt extends w.c{constructor(hi,yi,Vi){super(),this.actionsObserver=yi,this.reducerManager=Vi,this.source=hi,this.state=hi.state}select(hi,...yi){return Nt.call(null,hi,...yi)(this)}selectSignal(hi,yi){return(0,e.EWP)(()=>hi(this.state()),yi)}lift(hi){const yi=new jt(this,this.actionsObserver,this.reducerManager);return yi.operator=hi,yi}dispatch(hi){this.actionsObserver.next(hi)}next(hi){this.actionsObserver.next(hi)}error(hi){this.actionsObserver.error(hi)}complete(){this.actionsObserver.complete()}addReducer(hi,yi){this.reducerManager.addReducer(hi,yi)}removeReducer(hi){this.reducerManager.removeReducer(hi)}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(He),e.KVO(de),e.KVO(Xt))};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const Yt=[rt];function Nt(jt,Ci,...hi){return function(Vi){let ji;if("string"==typeof jt){const rn=[Ci,...hi].filter(Boolean);ji=Vi.pipe(function T(...jt){const Ci=jt.length;if(0===Ci)throw new Error("list of properties cannot be empty.");return(0,d.T)(hi=>{let yi=hi;for(let Vi=0;Vijt(rn,Ci)))}return ji.pipe((0,y.F)())}}const Et="https://ngrx.io/guide/store/configuration/runtime-checks";function Vt(jt){return void 0===jt}function oe(jt){return null===jt}function tt(jt){return Array.isArray(jt)}function St(jt){return"object"==typeof jt&&null!==jt}function we(jt){return"function"==typeof jt}let Re=!1;function $e(jt,Ci){return jt===Ci}function et(jt,Ci=$e,hi=$e){let ji,yi=null,Vi=null;return{memoized:function nr(){if(void 0!==ji)return ji.result;if(!yi)return Vi=jt.apply(null,arguments),yi=arguments,Vi;if(!function Fe(jt,Ci,hi){for(let yi=0;yi"function"==typeof Ci)}(yi[0])&&(yi=function Xi(jt){const Ci=Object.values(jt),hi=Object.keys(jt);return[...Ci,(...Vi)=>hi.reduce((ji,rn,ar)=>({...ji,[rn]:Vi[ar]}),{})]}(yi[0]));const Vi=yi.slice(0,yi.length-1),ji=yi[yi.length-1],rn=Vi.filter(or=>or.release&&"function"==typeof or.release),ar=jt(function(...or){return ji.apply(null,or)}),sr=et(function(or,Xr){return Ci.stateFn.apply(null,[or,Vi,Xr,ar])});return Object.assign(sr.memoized,{release:function nr(){sr.reset(),ar.reset(),rn.forEach(or=>or.release())},projector:ar.memoized,setResult:sr.setResult,clearResult:sr.clearResult})}}(et)(...jt)}function Tt(jt,Ci,hi,yi){if(void 0===hi){const ji=Ci.map(rn=>rn(jt));return yi.memoized.apply(null,ji)}const Vi=Ci.map(ji=>ji(jt,hi));return yi.memoized.apply(null,[...Vi,hi])}function Kt(jt){return st(Ci=>{const hi=Ci[jt];return!function gt(){return Re}()&&(0,e.naY)()&&!(jt in Ci)&&console.warn(`@ngrx/store: The feature name "${jt}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${jt}', ...) or StoreModule.forFeature('${jt}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),hi},Ci=>Ci)}function Qi(jt){return jt instanceof e.nKC?(0,e.WQX)(jt):jt}function Li(jt,Ci){return Ci.map((hi,yi)=>{if(jt[yi]instanceof e.nKC){const Vi=(0,e.WQX)(jt[yi]);return{key:hi.key,reducerFactory:Vi.reducerFactory?Vi.reducerFactory:mt,metaReducers:Vi.metaReducers?Vi.metaReducers:[],initialState:Vi.initialState}}return hi})}function Zi(jt){return jt.map(Ci=>Ci instanceof e.nKC?(0,e.WQX)(Ci):Ci)}function Qt(jt){return"function"==typeof jt?jt():jt}function Mt(jt,Ci){return jt.concat(Ci)}function it(){if((0,e.WQX)(rt,{optional:!0,skipSelf:!0}))throw new TypeError("The root Store has been provided more than once. Feature modules should provide feature states instead.");return"guarded"}function wt(jt){Object.freeze(jt);const Ci=we(jt);return Object.getOwnPropertyNames(jt).forEach(hi=>{if(!hi.startsWith("\u0275")&&function q(jt,Ci){return Object.prototype.hasOwnProperty.call(jt,Ci)}(jt,hi)&&(!Ci||"caller"!==hi&&"callee"!==hi&&"arguments"!==hi)){const yi=jt[hi];(St(yi)||we(yi))&&!Object.isFrozen(yi)&&wt(yi)}}),jt}function xi(jt,Ci=[]){return(Vt(jt)||oe(jt))&&0===Ci.length?{path:["root"],value:jt}:Object.keys(jt).reduce((yi,Vi)=>{if(yi)return yi;const ji=jt[Vi];return function he(jt){return we(jt)&&jt.hasOwnProperty("\u0275cmp")}(ji)?yi:!(Vt(ji)||oe(ji)||function Jt(jt){return"number"==typeof jt}(ji)||function zt(jt){return"boolean"==typeof jt}(ji)||function $t(jt){return"string"==typeof jt}(ji)||tt(ji))&&(function Ae(jt){if(!function dt(jt){return St(jt)&&!tt(jt)}(jt))return!1;const Ci=Object.getPrototypeOf(jt);return Ci===Object.prototype||null===Ci}(ji)?xi(ji,[...Ci,Vi]):{path:[...Ci,Vi],value:ji})},!1)}function Si(jt,Ci){if(!1===jt)return;const hi=jt.path.join("."),yi=new Error(`Detected unserializable ${Ci} at "${hi}". ${Et}#strict${Ci}serializability`);throw yi.value=jt.value,yi.unserializablePath=hi,yi}function en(jt){return(0,e.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...jt}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function Ni({strictActionSerializability:jt,strictStateSerializability:Ci}){return hi=>jt||Ci?function Ut(jt,Ci){return function(hi,yi){Ci.action(yi)&&Si(xi(yi),"action");const Vi=jt(hi,yi);return Ci.state()&&Si(xi(Vi),"state"),Vi}}(hi,{action:yi=>jt&&!Zt(yi),state:()=>Ci}):hi}function fn({strictActionImmutability:jt,strictStateImmutability:Ci}){return hi=>jt||Ci?function ct(jt,Ci){return function(hi,yi){const Vi=Ci.action(yi)?wt(yi):yi,ji=jt(hi,Vi);return Ci.state()?wt(ji):ji}}(hi,{action:yi=>jt&&!Zt(yi),state:()=>Ci}):hi}function Zt(jt){return jt.type.startsWith("@ngrx")}function bt({strictActionWithinNgZone:jt}){return Ci=>jt?function zi(jt,Ci){return function(hi,yi){if(Ci.action(yi)&&!e.SKi.isInAngularZone())throw new Error(`Action '${yi.type}' running outside NgZone. ${Et}#strictactionwithinngzone`);return jt(hi,yi)}}(Ci,{action:hi=>jt&&!Zt(hi)}):Ci}function re(jt){return[{provide:X,useValue:jt},{provide:se,useFactory:Ce,deps:[X]},{provide:me,deps:[se],useFactory:en},{provide:qe,multi:!0,deps:[me],useFactory:fn},{provide:qe,multi:!0,deps:[me],useFactory:Ni},{provide:qe,multi:!0,deps:[me],useFactory:bt}]}function je(){return[{provide:ce,multi:!0,deps:[me],useFactory:ot}]}function Ce(jt){return jt}function ot(jt){if(!jt.strictActionTypeUniqueness)return;const Ci=Object.entries(R).filter(([,hi])=>hi>1).map(([hi])=>hi);if(Ci.length)throw new Error(`Action types are registered more than once, ${Ci.map(hi=>`"${hi}"`).join(", ")}. ${Et}#strictactiontypeuniqueness`)}function ii(jt={},Ci={}){return[{provide:n,useFactory:it},{provide:c,useValue:Ci.initialState},{provide:m,useFactory:Qt,deps:[c]},{provide:L,useValue:jt},{provide:r,useExisting:jt instanceof e.nKC?jt:L},{provide:k,deps:[L,[new e.y_5(r)]],useFactory:Qi},{provide:ze,useValue:Ci.metaReducers?Ci.metaReducers:[]},{provide:Ke,deps:[qe,ze],useFactory:Mt},{provide:C,useValue:Ci.reducerFactory?Ci.reducerFactory:mt},{provide:h,deps:[C,Ke],useFactory:pe},D,ye,Ie,Ye,Yt,re(Ci.runtimeChecks),je()]}function Yn(jt,Ci,hi={}){return[{provide:V,multi:!0,useValue:jt instanceof Object?{}:hi},{provide:_,multi:!0,useValue:{key:jt instanceof Object?jt.name:jt,reducerFactory:hi instanceof e.nKC||!hi.reducerFactory?mt:hi.reducerFactory,metaReducers:hi instanceof e.nKC||!hi.metaReducers?[]:hi.metaReducers,initialState:hi instanceof e.nKC||!hi.initialState?void 0:hi.initialState}},{provide:N,deps:[V,_],useFactory:Li},{provide:v,multi:!0,useValue:jt instanceof Object?jt.reducer:Ci},{provide:ne,multi:!0,useExisting:Ci instanceof e.nKC?Ci:v},{provide:Ee,multi:!0,deps:[v,[new e.y_5(ne)]],useFactory:Zi},je()]}let Qn=(()=>{class jt{constructor(hi,yi,Vi,ji,rn,ar){}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(de),e.KVO(_t),e.KVO(ue),e.KVO(rt),e.KVO(n,8),e.KVO(ce,8))};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})(),rr=(()=>{class jt{constructor(hi,yi,Vi,ji,rn){this.features=hi,this.featureReducers=yi,this.reducerManager=Vi;const ar=hi.map((sr,nr)=>{const Xr=yi.shift()[nr];return{...sr,reducers:Xr,initialState:Qt(sr.initialState)}});Vi.addFeatures(ar)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(N),e.KVO(Ee),e.KVO(Xt),e.KVO(Qn),e.KVO(ce,8))};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})(),Rn=(()=>{class jt{static forRoot(hi,yi){return{ngModule:Qn,providers:[...ii(hi,yi)]}}static forFeature(hi,yi,Vi={}){return{ngModule:rr,providers:[...Yn(hi,yi,Vi)]}}static#e=this.\u0275fac=function(yi){return new(yi||jt)};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})();function _i(...jt){return{reducer:jt.pop(),types:jt.map(yi=>yi.type)}}function Oi(jt,...Ci){const hi=new Map;for(const yi of Ci)for(const Vi of yi.types){const ji=hi.get(Vi);hi.set(Vi,ji?(ar,sr)=>yi.reducer(ji(ar,sr),sr):yi.reducer)}return function(yi=jt,Vi){const ji=hi.get(Vi.type);return ji?ji(yi,Vi):yi}}},6064:(Qe,te,g)=>{"use strict";g.d(te,{Dl:()=>c6,L8:()=>um,dV:()=>C3});var e=g(4438),t=g(177),w=g(1635),S=g(6939),l=g(3726),x=g(152),f=g(9969);function I(){}function d(u){return null==u?I:function(){return this.querySelector(u)}}function F(){return[]}function R(u){return null==u?F:function(){return this.querySelectorAll(u)}}function $(u){return function(){return this.matches(u)}}function j(u){return function(A){return A.matches(u)}}var Q=Array.prototype.find;function ee(){return this.firstElementChild}var ge=Array.prototype.filter;function ae(){return Array.from(this.children)}function D(u){return new Array(u.length)}function c(u,A){this.ownerDocument=u.ownerDocument,this.namespaceURI=u.namespaceURI,this._next=null,this._parent=u,this.__data__=A}function h(u,A,o,M,B,Y){for(var Ct,Le=0,Gt=A.length,Ht=Y.length;LeA?1:u>=A?0:NaN}c.prototype={constructor:c,appendChild:function(u){return this._parent.insertBefore(u,this._next)},insertBefore:function(u,A){return this._parent.insertBefore(u,A)},querySelector:function(u){return this._parent.querySelector(u)},querySelectorAll:function(u){return this._parent.querySelectorAll(u)}};var ce="http://www.w3.org/1999/xhtml";const fe={svg:"http://www.w3.org/2000/svg",xhtml:ce,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function ke(u){var A=u+="",o=A.indexOf(":");return o>=0&&"xmlns"!==(A=u.slice(0,o))&&(u=u.slice(o+1)),fe.hasOwnProperty(A)?{space:fe[A],local:u}:u}function mt(u){return function(){this.removeAttribute(u)}}function _e(u){return function(){this.removeAttributeNS(u.space,u.local)}}function be(u,A){return function(){this.setAttribute(u,A)}}function pe(u,A){return function(){this.setAttributeNS(u.space,u.local,A)}}function Ze(u,A){return function(){var o=A.apply(this,arguments);null==o?this.removeAttribute(u):this.setAttribute(u,o)}}function _t(u,A){return function(){var o=A.apply(this,arguments);null==o?this.removeAttributeNS(u.space,u.local):this.setAttributeNS(u.space,u.local,o)}}function pt(u){return u.ownerDocument&&u.ownerDocument.defaultView||u.document&&u||u.defaultView}function Xt(u){return function(){this.style.removeProperty(u)}}function ye(u,A,o){return function(){this.style.setProperty(u,A,o)}}function ue(u,A,o){return function(){var M=A.apply(this,arguments);null==M?this.style.removeProperty(u):this.style.setProperty(u,M,o)}}function He(u,A){return u.style.getPropertyValue(A)||pt(u).getComputedStyle(u,null).getPropertyValue(A)}function Xe(u){return function(){delete this[u]}}function yt(u,A){return function(){this[u]=A}}function Ye(u,A){return function(){var o=A.apply(this,arguments);null==o?delete this[u]:this[u]=o}}function Yt(u){return u.trim().split(/^|\s+/)}function Nt(u){return u.classList||new Et(u)}function Et(u){this._node=u,this._names=Yt(u.getAttribute("class")||"")}function Vt(u,A){for(var o=Nt(u),M=-1,B=A.length;++M=0&&(this._names.splice(A,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(u){return this._names.indexOf(u)>=0}};var en=[null];function Ni(u,A){this._groups=u,this._parents=A}function fn(){return new Ni([[document.documentElement]],en)}Ni.prototype=fn.prototype={constructor:Ni,select:function T(u){"function"!=typeof u&&(u=d(u));for(var A=this._groups,o=A.length,M=new Array(o),B=0;B=_n&&(_n=Ln+1);!(Xn=ki[_n])&&++_n=0;)(Le=M[B])&&(Y&&4^Le.compareDocumentPosition(Y)&&Y.parentNode.insertBefore(Le,Y),Y=Le);return this},sort:function ne(u){function A(gi,wi){return gi&&wi?u(gi.__data__,wi.__data__):!gi-!wi}u||(u=Ee);for(var o=this._groups,M=o.length,B=new Array(M),Y=0;Y1?this.each((null==A?Xt:"function"==typeof A?ue:ye)(u,A,o??"")):He(this.node(),u)},property:function rt(u,A){return arguments.length>1?this.each((null==A?Xe:"function"==typeof A?Ye:yt)(u,A)):this.node()[u]},classed:function Jt(u,A){var o=Yt(u+"");if(arguments.length<2){for(var M=Nt(this.node()),B=-1,Y=o.length;++B=0&&(o=A.slice(M+1),A=A.slice(0,M)),{type:A,name:o}})}(u+""),Y=M.length;if(!(arguments.length<2)){for(Ct=A?it:Mt,B=0;B{}};function Ce(){for(var M,u=0,A=arguments.length,o={};u=0&&(M=o.slice(B+1),o=o.slice(0,B)),o&&!A.hasOwnProperty(o))throw new Error("unknown type: "+o);return{type:o,name:M}})}(u+"",o),Y=-1,Le=M.length;if(!(arguments.length<2)){if(null!=A&&"function"!=typeof A)throw new Error("invalid callback: "+A);for(;++Y0)for(var B,Y,o=new Array(B),M=0;M>8&15|A>>4&240,A>>4&15|240&A,(15&A)<<4|15&A,1):8===o?Ea(A>>24&255,A>>16&255,A>>8&255,(255&A)/255):4===o?Ea(A>>12&15|A>>8&240,A>>8&15|A>>4&240,A>>4&15|240&A,((15&A)<<4|15&A)/255):null):(A=rn.exec(u))?new xr(A[1],A[2],A[3],1):(A=ar.exec(u))?new xr(255*A[1]/100,255*A[2]/100,255*A[3]/100,1):(A=sr.exec(u))?Ea(A[1],A[2],A[3],A[4]):(A=nr.exec(u))?Ea(255*A[1]/100,255*A[2]/100,255*A[3]/100,A[4]):(A=or.exec(u))?Co(A[1],A[2]/100,A[3]/100,1):(A=Xr.exec(u))?Co(A[1],A[2]/100,A[3]/100,A[4]):Sr.hasOwnProperty(u)?Ma(Sr[u]):"transparent"===u?new xr(NaN,NaN,NaN,0):null}function Ma(u){return new xr(u>>16&255,u>>8&255,255&u,1)}function Ea(u,A,o,M){return M<=0&&(u=A=o=NaN),new xr(u,A,o,M)}function ho(u,A,o,M){return 1===arguments.length?function no(u){return u instanceof Oi||(u=Rr(u)),u?new xr((u=u.rgb()).r,u.g,u.b,u.opacity):new xr}(u):new xr(u,A,o,M??1)}function xr(u,A,o,M){this.r=+u,this.g=+A,this.b=+o,this.opacity=+M}function Sa(){return`#${Ta(this.r)}${Ta(this.g)}${Ta(this.b)}`}function ro(){const u=hn(this.opacity);return`${1===u?"rgb(":"rgba("}${Yr(this.r)}, ${Yr(this.g)}, ${Yr(this.b)}${1===u?")":`, ${u})`}`}function hn(u){return isNaN(u)?1:Math.max(0,Math.min(1,u))}function Yr(u){return Math.max(0,Math.min(255,Math.round(u)||0))}function Ta(u){return((u=Yr(u))<16?"0":"")+u.toString(16)}function Co(u,A,o,M){return M<=0?u=A=o=NaN:o<=0||o>=1?u=A=NaN:A<=0&&(u=NaN),new da(u,A,o,M)}function wo(u){if(u instanceof da)return new da(u.h,u.s,u.l,u.opacity);if(u instanceof Oi||(u=Rr(u)),!u)return new da;if(u instanceof da)return u;var A=(u=u.rgb()).r/255,o=u.g/255,M=u.b/255,B=Math.min(A,o,M),Y=Math.max(A,o,M),Le=NaN,Ct=Y-B,Gt=(Y+B)/2;return Ct?(Le=A===Y?(o-M)/Ct+6*(o0&&Gt<1?0:Le,new da(Le,Ct,Gt,u.opacity)}function da(u,A,o,M){this.h=+u,this.s=+A,this.l=+o,this.opacity=+M}function ao(u){return(u=(u||0)%360)<0?u+360:u}function Oa(u){return Math.max(0,Math.min(1,u||0))}function ns(u,A,o){return 255*(u<60?A+(o-A)*u/60:u<180?o:u<240?A+(o-A)*(240-u)/60:A)}function Fa(u,A,o,M,B){var Y=u*u,Le=Y*u;return((1-3*u+3*Y-Le)*A+(4-6*Y+3*Le)*o+(1+3*u+3*Y-3*Le)*M+Le*B)/6}Rn(Oi,Rr,{copy(u){return Object.assign(new this.constructor,this,u)},displayable(){return this.rgb().displayable()},hex:zr,formatHex:zr,formatHex8:function Ho(){return this.rgb().formatHex8()},formatHsl:function xo(){return wo(this).formatHsl()},formatRgb:is,toString:is}),Rn(xr,ho,_i(Oi,{brighter(u){return u=null==u?Ci:Math.pow(Ci,u),new xr(this.r*u,this.g*u,this.b*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new xr(this.r*u,this.g*u,this.b*u,this.opacity)},rgb(){return this},clamp(){return new xr(Yr(this.r),Yr(this.g),Yr(this.b),hn(this.opacity))},displayable(){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:Sa,formatHex:Sa,formatHex8:function zn(){return`#${Ta(this.r)}${Ta(this.g)}${Ta(this.b)}${Ta(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:ro,toString:ro})),Rn(da,function zo(u,A,o,M){return 1===arguments.length?wo(u):new da(u,A,o,M??1)},_i(Oi,{brighter(u){return u=null==u?Ci:Math.pow(Ci,u),new da(this.h,this.s,this.l*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new da(this.h,this.s,this.l*u,this.opacity)},rgb(){var u=this.h%360+360*(this.h<0),A=isNaN(u)||isNaN(this.s)?0:this.s,o=this.l,M=o+(o<.5?o:1-o)*A,B=2*o-M;return new xr(ns(u>=240?u-240:u+120,B,M),ns(u,B,M),ns(u<120?u+240:u-120,B,M),this.opacity)},clamp(){return new da(ao(this.h),Oa(this.s),Oa(this.l),hn(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const u=hn(this.opacity);return`${1===u?"hsl(":"hsla("}${ao(this.h)}, ${100*Oa(this.s)}%, ${100*Oa(this.l)}%${1===u?")":`, ${u})`}`}}));const ha=u=>()=>u;function Na(u,A){var o=A-u;return o?function Br(u,A){return function(o){return u+o*A}}(u,o):ha(isNaN(u)?A:u)}const ja=function u(A){var o=function Ga(u){return 1==(u=+u)?Na:function(A,o){return o-A?function Ua(u,A,o){return u=Math.pow(u,o),A=Math.pow(A,o)-u,o=1/o,function(M){return Math.pow(u+M*A,o)}}(A,o,u):ha(isNaN(A)?o:A)}}(A);function M(B,Y){var Le=o((B=ho(B)).r,(Y=ho(Y)).r),Ct=o(B.g,Y.g),Gt=o(B.b,Y.b),Ht=Na(B.opacity,Y.opacity);return function(li){return B.r=Le(li),B.g=Ct(li),B.b=Gt(li),B.opacity=Ht(li),B+""}}return M.gamma=u,M}(1);function Bo(u){return function(A){var Le,Ct,o=A.length,M=new Array(o),B=new Array(o),Y=new Array(o);for(Le=0;Le=1?(o=1,A-1):Math.floor(o*A),B=u[M],Y=u[M+1];return Fa((o-M/A)*A,M>0?u[M-1]:2*B-Y,B,Y,Mo&&(Y=A.slice(o,Y),Ct[Le]?Ct[Le]+=Y:Ct[++Le]=Y),(M=M[0])===(B=B[0])?Ct[Le]?Ct[Le]+=B:Ct[++Le]=B:(Ct[++Le]=null,Gt.push({i:Le,x:_a(M,B)})),o=Bn.lastIndex;return o=0&&u._call.call(void 0,A),u=u._next;--Ei}()}finally{Ei=0,function Fo(){for(var u,o,A=Fr,M=1/0;A;)A._call?(M>A._time&&(M=A._time),u=A,A=A._next):(o=A._next,A._next=null,A=u?u._next=o:Fr=o);Mo=u,vr(M)}(),oo=0}}function Zn(){var u=oa.now(),A=u-gs;A>Or&&(Ms-=A,gs=u)}function vr(u){Ei||(Ki&&(Ki=clearTimeout(Ki)),u-oo>24?(u<1/0&&(Ki=setTimeout(pn,u-oa.now()-Ms)),tr&&(tr=clearInterval(tr))):(tr||(gs=oa.now(),tr=setInterval(Zn,Or)),Ei=1,Ri(pn)))}function Xa(u,A,o){var M=new Ue;return M.restart(B=>{M.stop(),u(B+A)},A=null==A?0:+A,o),M}Ue.prototype=At.prototype={constructor:Ue,restart:function(u,A,o){if("function"!=typeof u)throw new TypeError("callback is not a function");o=(null==o?lt():+o)+(null==A?0:+A),!this._next&&Mo!==this&&(Mo?Mo._next=this:Fr=this,Mo=this),this._call=u,this._time=o,vr()},stop:function(){this._call&&(this._call=null,this._time=1/0,vr())}};var lc=Pi("start","end","cancel","interrupt"),dc=[],hc=0,fo=3;function ua(u,A,o,M,B,Y){var Le=u.__transition;if(Le){if(o in Le)return}else u.__transition={};!function $s(u,A,o){var B,M=u.__transition;function Le(Ht){var li,gi,wi,Ai;if(1!==o.state)return Gt();for(li in M)if((Ai=M[li]).name===o.name){if(Ai.state===fo)return Xa(Le);4===Ai.state?(Ai.state=6,Ai.timer.stop(),Ai.on.call("interrupt",u,u.__data__,Ai.index,Ai.group),delete M[li]):+lihc)throw new Error("too late; already scheduled");return o}function Ir(u,A){var o=Aa(u,A);if(o.state>fo)throw new Error("too late; already running");return o}function Aa(u,A){var o=u.__transition;if(!o||!(o=o[A]))throw new Error("transition not found");return o}var _s,uc=180/Math.PI,Ss={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function fc(u,A,o,M,B,Y){var Le,Ct,Gt;return(Le=Math.sqrt(u*u+A*A))&&(u/=Le,A/=Le),(Gt=u*o+A*M)&&(o-=u*Gt,M-=A*Gt),(Ct=Math.sqrt(o*o+M*M))&&(o/=Ct,M/=Ct,Gt/=Ct),u*M180?li+=360:li-Ht>180&&(Ht+=360),wi.push({i:gi.push(B(gi)+"rotate(",null,M)-2,x:_a(Ht,li)})):li&&gi.push(B(gi)+"rotate("+li+M)}(Ht.rotate,li.rotate,gi,wi),function Ct(Ht,li,gi,wi){Ht!==li?wi.push({i:gi.push(B(gi)+"skewX(",null,M)-2,x:_a(Ht,li)}):li&&gi.push(B(gi)+"skewX("+li+M)}(Ht.skewX,li.skewX,gi,wi),function Gt(Ht,li,gi,wi,Ai,cn){if(Ht!==gi||li!==wi){var Tn=Ai.push(B(Ai)+"scale(",null,",",null,")");cn.push({i:Tn-4,x:_a(Ht,gi)},{i:Tn-2,x:_a(li,wi)})}else(1!==gi||1!==wi)&&Ai.push(B(Ai)+"scale("+gi+","+wi+")")}(Ht.scaleX,Ht.scaleY,li.scaleX,li.scaleY,gi,wi),Ht=li=null,function(Ai){for(var ki,cn=-1,Tn=wi.length;++cn=0&&(A=A.slice(0,o)),!A||"start"===A})}(A)?so:Ir;return function(){var Le=Y(this,u),Ct=Le.on;Ct!==M&&(B=(M=Ct).copy()).on(A,o),Le.on=B}}(o,u,A))},attr:function Os(u,A){var o=ke(u),M="transform"===o?el:pc;return this.attrTween(u,"function"==typeof A?(o.local?So:os)(o,M,Eo(this,"attr."+u,A)):null==A?(o.local?bs:Js)(o):(o.local?_c:gc)(o,M,A))},attrTween:function ss(u,A){var o="attr."+u;if(arguments.length<2)return(o=this.tween(o))&&o._value;if(null==A)return this.tween(o,null);if("function"!=typeof A)throw new Error;var M=ke(u);return this.tween(o,(M.local?Il:il)(M,A))},style:function $r(u,A,o){var M="transform"==(u+="")?mc:pc;return null==A?this.styleTween(u,function sa(u,A){var o,M,B;return function(){var Y=He(this,u),Le=(this.style.removeProperty(u),He(this,u));return Y===Le?null:Y===o&&Le===M?B:B=A(o=Y,M=Le)}}(u,M)).on("end.style."+u,Hn(u)):"function"==typeof A?this.styleTween(u,function sn(u,A,o){var M,B,Y;return function(){var Le=He(this,u),Ct=o(this),Gt=Ct+"";return null==Ct&&(this.style.removeProperty(u),Gt=Ct=He(this,u)),Le===Gt?null:Le===M&&Gt===B?Y:(B=Gt,Y=A(M=Le,Ct))}}(u,M,Eo(this,"style."+u,A))).each(function fr(u,A){var o,M,B,Ct,Y="style."+A,Le="end."+Y;return function(){var Gt=Ir(this,u),Ht=Gt.on,li=null==Gt.value[Y]?Ct||(Ct=Hn(A)):void 0;(Ht!==o||B!==li)&&(M=(o=Ht).copy()).on(Le,B=li),Gt.on=M}}(this._id,u)):this.styleTween(u,function Bi(u,A,o){var M,Y,B=o+"";return function(){var Le=He(this,u);return Le===B?null:Le===M?Y:Y=A(M=Le,o)}}(u,M,A),o).on("end.style."+u,null)},styleTween:function vc(u,A,o){var M="style."+(u+="");if(arguments.length<2)return(M=this.tween(M))&&M._value;if(null==A)return this.tween(M,null);if("function"!=typeof A)throw new Error;return this.tween(M,function Ya(u,A,o){var M,B;function Y(){var Le=A.apply(this,arguments);return Le!==B&&(M=(B=Le)&&function fa(u,A,o){return function(M){this.style.setProperty(u,A.call(this,M),o)}}(u,Le,o)),M}return Y._value=A,Y}(u,A,o??""))},text:function cs(u){return this.tween("text","function"==typeof u?function va(u){return function(){var A=u(this);this.textContent=A??""}}(Eo(this,"text",u)):function Ur(u){return function(){this.textContent=u}}(null==u?"":u+""))},textTween:function Rl(u){var A="text";if(arguments.length<1)return(A=this.tween(A))&&A._value;if(null==u)return this.tween(A,null);if("function"!=typeof u)throw new Error;return this.tween(A,function bc(u){var A,o;function M(){var B=u.apply(this,arguments);return B!==o&&(A=(o=B)&&function Wn(u){return function(A){this.textContent=u.call(this,A)}}(B)),A}return M._value=u,M}(u))},remove:function hr(){return this.on("end.remove",function Dn(u){return function(){var A=this.parentNode;for(var o in this.__transition)if(+o!==u)return;A&&A.removeChild(this)}}(this._id))},tween:function Rs(u,A){var o=this._id;if(u+="",arguments.length<2){for(var Le,M=Aa(this.node(),o).tween,B=0,Y=M.length;B2&&M.state<5,M.state=6,M.timer.stop(),M.on.call(B?"interrupt":"cancel",u,u.__data__,M.index,M.group),delete o[Le]):Y=!1;Y&&delete u.__transition}}(this,u)})},bt.prototype.transition=function rl(u){var A,o;u instanceof To?(A=u._id,u=u._name):(A=Oc(),(o=kn).time=lt(),u=null==u?null:u+"");for(var M=this._groups,B=M.length,Y=0;YA?1:u>=A?0:NaN}function on(u,A){return null==u||null==A?NaN:Au?1:A>=u?0:NaN}function Sn(u){let A,o,M;function B(Ct,Gt,Ht=0,li=Ct.length){if(Ht>>1;o(Ct[gi],Gt)<0?Ht=gi+1:li=gi}while(Htvi(u(Ct),Gt),M=(Ct,Gt)=>u(Ct)-Gt):(A=u===vi||u===on?u:Jn,o=u,M=u),{left:B,center:function Le(Ct,Gt,Ht=0,li=Ct.length){const gi=B(Ct,Gt,Ht,li-1);return gi>Ht&&M(Ct[gi-1],Gt)>-M(Ct[gi],Gt)?gi-1:gi},right:function Y(Ct,Gt,Ht=0,li=Ct.length){if(Ht>>1;o(Ct[gi],Gt)<=0?Ht=gi+1:li=gi}while(Ht=_r?10:Y>=ys?5:Y>=Nr?2:1;let Ct,Gt,Ht;return B<0?(Ht=Math.pow(10,-B)/Le,Ct=Math.round(u*Ht),Gt=Math.round(A*Ht),Ct/HtA&&--Gt,Ht=-Ht):(Ht=Math.pow(10,B)*Le,Ct=Math.round(u/Ht),Gt=Math.round(A/Ht),Ct*HtA&&--Gt),Gt(u(Y=new Date(+Y)),Y),B.ceil=Y=>(u(Y=new Date(Y-1)),A(Y,1),u(Y),Y),B.round=Y=>{const Le=B(Y),Ct=B.ceil(Y);return Y-Le(A(Y=new Date(+Y),null==Le?1:Math.floor(Le)),Y),B.range=(Y,Le,Ct)=>{const Gt=[];if(Y=B.ceil(Y),Ct=null==Ct?1:Math.floor(Ct),!(Y0))return Gt;let Ht;do{Gt.push(Ht=new Date(+Y)),A(Y,Ct),u(Y)}while(HtLa(Le=>{if(Le>=Le)for(;u(Le),!Y(Le);)Le.setTime(Le-1)},(Le,Ct)=>{if(Le>=Le)if(Ct<0)for(;++Ct<=0;)for(;A(Le,-1),!Y(Le););else for(;--Ct>=0;)for(;A(Le,1),!Y(Le););}),o&&(B.count=(Y,Le)=>(wr.setTime(+Y),ld.setTime(+Le),u(wr),u(ld),Math.floor(o(wr,ld))),B.every=Y=>(Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?B.filter(M?Le=>M(Le)%Y==0:Le=>B.count(0,Le)%Y==0):B:null)),B}const po=La(()=>{},(u,A)=>{u.setTime(+u+A)},(u,A)=>A-u);po.every=u=>(u=Math.floor(u),isFinite(u)&&u>0?u>1?La(A=>{A.setTime(Math.floor(A/u)*u)},(A,o)=>{A.setTime(+A+o*u)},(A,o)=>(o-A)/u):po:null);const ec=La(u=>{u.setTime(u-u.getMilliseconds())},(u,A)=>{u.setTime(+u+A*Ko)},(u,A)=>(A-u)/Ko,u=>u.getUTCSeconds()),$o=La(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Ko)},(u,A)=>{u.setTime(+u+A*Ds)},(u,A)=>(A-u)/Ds,u=>u.getMinutes()),zd=La(u=>{u.setUTCSeconds(0,0)},(u,A)=>{u.setTime(+u+A*Ds)},(u,A)=>(A-u)/Ds,u=>u.getUTCMinutes()),qa=La(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Ko-u.getMinutes()*Ds)},(u,A)=>{u.setTime(+u+A*Hs)},(u,A)=>(A-u)/Hs,u=>u.getHours()),y0=La(u=>{u.setUTCMinutes(0,0,0)},(u,A)=>{u.setTime(+u+A*Hs)},(u,A)=>(A-u)/Hs,u=>u.getUTCHours()),al=La(u=>u.setHours(0,0,0,0),(u,A)=>u.setDate(u.getDate()+A),(u,A)=>(A-u-(A.getTimezoneOffset()-u.getTimezoneOffset())*Ds)/Cc,u=>u.getDate()-1),wc=(La(u=>{u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCDate(u.getUTCDate()+A)},(u,A)=>(A-u)/Cc,u=>u.getUTCDate()-1),La(u=>{u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCDate(u.getUTCDate()+A)},(u,A)=>(A-u)/Cc,u=>Math.floor(u/Cc)));function Nn(u){return La(A=>{A.setDate(A.getDate()-(A.getDay()+7-u)%7),A.setHours(0,0,0,0)},(A,o)=>{A.setDate(A.getDate()+7*o)},(A,o)=>(o-A-(o.getTimezoneOffset()-A.getTimezoneOffset())*Ds)/As)}const zl=Nn(0);function Ii(u){return La(A=>{A.setUTCDate(A.getUTCDate()-(A.getUTCDay()+7-u)%7),A.setUTCHours(0,0,0,0)},(A,o)=>{A.setUTCDate(A.getUTCDate()+7*o)},(A,o)=>(o-A)/As)}Nn(1),Nn(2),Nn(3),Nn(4),Nn(5),Nn(6);const ur=Ii(0),jd=(Ii(1),Ii(2),Ii(3),Ii(4),Ii(5),Ii(6),La(u=>{u.setDate(1),u.setHours(0,0,0,0)},(u,A)=>{u.setMonth(u.getMonth()+A)},(u,A)=>A.getMonth()-u.getMonth()+12*(A.getFullYear()-u.getFullYear()),u=>u.getMonth())),tc=La(u=>{u.setUTCDate(1),u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCMonth(u.getUTCMonth()+A)},(u,A)=>A.getUTCMonth()-u.getUTCMonth()+12*(A.getUTCFullYear()-u.getUTCFullYear()),u=>u.getUTCMonth()),us=La(u=>{u.setMonth(0,1),u.setHours(0,0,0,0)},(u,A)=>{u.setFullYear(u.getFullYear()+A)},(u,A)=>A.getFullYear()-u.getFullYear(),u=>u.getFullYear());us.every=u=>isFinite(u=Math.floor(u))&&u>0?La(A=>{A.setFullYear(Math.floor(A.getFullYear()/u)*u),A.setMonth(0,1),A.setHours(0,0,0,0)},(A,o)=>{A.setFullYear(A.getFullYear()+o*u)}):null;const dd=La(u=>{u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCFullYear(u.getUTCFullYear()+A)},(u,A)=>A.getUTCFullYear()-u.getUTCFullYear(),u=>u.getUTCFullYear());function xa(u,A,o,M,B,Y){const Le=[[ec,1,Ko],[ec,5,5e3],[ec,15,15e3],[ec,30,3e4],[Y,1,Ds],[Y,5,5*Ds],[Y,15,15*Ds],[Y,30,30*Ds],[B,1,Hs],[B,3,3*Hs],[B,6,6*Hs],[B,12,12*Hs],[M,1,Cc],[M,2,2*Cc],[o,1,As],[A,1,Vl],[A,3,3*Vl],[u,1,Hd]];function Gt(Ht,li,gi){const wi=Math.abs(li-Ht)/gi,Ai=Sn(([,,ki])=>ki).right(Le,wi);if(Ai===Le.length)return u.every(Pl(Ht/Hd,li/Hd,gi));if(0===Ai)return po.every(Math.max(Pl(Ht,li,gi),1));const[cn,Tn]=Le[wi/Le[Ai-1][2]isFinite(u=Math.floor(u))&&u>0?La(A=>{A.setUTCFullYear(Math.floor(A.getUTCFullYear()/u)*u),A.setUTCMonth(0,1),A.setUTCHours(0,0,0,0)},(A,o)=>{A.setUTCFullYear(A.getUTCFullYear()+o*u)}):null;const[Pa,n2]=xa(dd,tc,ur,wc,y0,zd),[Ca,Vc]=xa(us,jd,zl,al,qa,$o);var ic=new Date,Ul=new Date;function zs(u,A,o,M){function B(Y){return u(Y=0===arguments.length?new Date:new Date(+Y)),Y}return B.floor=function(Y){return u(Y=new Date(+Y)),Y},B.ceil=function(Y){return u(Y=new Date(Y-1)),A(Y,1),u(Y),Y},B.round=function(Y){var Le=B(Y),Ct=B.ceil(Y);return Y-Le0))return Gt;do{Gt.push(Ht=new Date(+Y)),A(Y,Ct),u(Y)}while(Ht=Le)for(;u(Le),!Y(Le);)Le.setTime(Le-1)},function(Le,Ct){if(Le>=Le)if(Ct<0)for(;++Ct<=0;)for(;A(Le,-1),!Y(Le););else for(;--Ct>=0;)for(;A(Le,1),!Y(Le););})},o&&(B.count=function(Y,Le){return ic.setTime(+Y),Ul.setTime(+Le),u(ic),u(Ul),Math.floor(o(ic,Ul))},B.every=function(Y){return Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?B.filter(M?function(Le){return M(Le)%Y==0}:function(Le){return B.count(0,Le)%Y==0}):B:null}),B}const Gl=864e5,Xd=7*Gl;function Va(u){return zs(function(A){A.setUTCDate(A.getUTCDate()-(A.getUTCDay()+7-u)%7),A.setUTCHours(0,0,0,0)},function(A,o){A.setUTCDate(A.getUTCDate()+7*o)},function(A,o){return(o-A)/Xd})}var Hc=Va(0),Pr=Va(1),cl=(Va(2),Va(3),Va(4));const s2=(Va(5),Va(6),zs(function(u){u.setUTCHours(0,0,0,0)},function(u,A){u.setUTCDate(u.getUTCDate()+A)},function(u,A){return(A-u)/Gl},function(u){return u.getUTCDate()-1}));function ll(u){return zs(function(A){A.setDate(A.getDate()-(A.getDay()+7-u)%7),A.setHours(0,0,0,0)},function(A,o){A.setDate(A.getDate()+7*o)},function(A,o){return(o-A-6e4*(o.getTimezoneOffset()-A.getTimezoneOffset()))/Xd})}var zc=ll(0),Bc=ll(1),dl=(ll(2),ll(3),ll(4));const nf=(ll(5),ll(6),zs(u=>u.setHours(0,0,0,0),(u,A)=>u.setDate(u.getDate()+A),(u,A)=>(A-u-6e4*(A.getTimezoneOffset()-u.getTimezoneOffset()))/Gl,u=>u.getDate()-1));var Qd=zs(function(u){u.setMonth(0,1),u.setHours(0,0,0,0)},function(u,A){u.setFullYear(u.getFullYear()+A)},function(u,A){return A.getFullYear()-u.getFullYear()},function(u){return u.getFullYear()});Qd.every=function(u){return isFinite(u=Math.floor(u))&&u>0?zs(function(A){A.setFullYear(Math.floor(A.getFullYear()/u)*u),A.setMonth(0,1),A.setHours(0,0,0,0)},function(A,o){A.setFullYear(A.getFullYear()+o*u)}):null};const jl=Qd;var l2=zs(function(u){u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},function(u,A){u.setUTCFullYear(u.getUTCFullYear()+A)},function(u,A){return A.getUTCFullYear()-u.getUTCFullYear()},function(u){return u.getUTCFullYear()});l2.every=function(u){return isFinite(u=Math.floor(u))&&u>0?zs(function(A){A.setUTCFullYear(Math.floor(A.getUTCFullYear()/u)*u),A.setUTCMonth(0,1),A.setUTCHours(0,0,0,0)},function(A,o){A.setUTCFullYear(A.getUTCFullYear()+o*u)}):null};const Uc=l2;function Zd(u){if(0<=u.y&&u.y<100){var A=new Date(-1,u.m,u.d,u.H,u.M,u.S,u.L);return A.setFullYear(u.y),A}return new Date(u.y,u.m,u.d,u.H,u.M,u.S,u.L)}function Wl(u){if(0<=u.y&&u.y<100){var A=new Date(Date.UTC(-1,u.m,u.d,u.H,u.M,u.S,u.L));return A.setUTCFullYear(u.y),A}return new Date(Date.UTC(u.y,u.m,u.d,u.H,u.M,u.S,u.L))}function fl(u,A,o){return{y:u,m:A,d:o,H:0,M:0,S:0,L:0}}var d2={"-":"",_:" ",0:"0"},eo=/^\s*\d+/,N0=/^%/,h2=/[\\^$*+?|[\]().{}]/g;function Dr(u,A,o){var M=u<0?"-":"",B=(M?-u:u)+"",Y=B.length;return M+(Y[A.toLowerCase(),o]))}function P0(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.w=+M[0],o+M[0].length):-1}function u2(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.u=+M[0],o+M[0].length):-1}function Xl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.U=+M[0],o+M[0].length):-1}function Yl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.V=+M[0],o+M[0].length):-1}function to(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.W=+M[0],o+M[0].length):-1}function V0(u,A,o){var M=eo.exec(A.slice(o,o+4));return M?(u.y=+M[0],o+M[0].length):-1}function f2(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.y=+M[0]+(+M[0]>68?1900:2e3),o+M[0].length):-1}function m2(u,A,o){var M=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(A.slice(o,o+6));return M?(u.Z=M[1]?0:-(M[2]+(M[3]||"00")),o+M[0].length):-1}function H0(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.q=3*M[0]-3,o+M[0].length):-1}function z0(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.m=M[0]-1,o+M[0].length):-1}function Kl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.d=+M[0],o+M[0].length):-1}function rf(u,A,o){var M=eo.exec(A.slice(o,o+3));return M?(u.m=0,u.d=+M[0],o+M[0].length):-1}function qd(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.H=+M[0],o+M[0].length):-1}function p2(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.M=+M[0],o+M[0].length):-1}function e1(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.S=+M[0],o+M[0].length):-1}function B0(u,A,o){var M=eo.exec(A.slice(o,o+3));return M?(u.L=+M[0],o+M[0].length):-1}function af(u,A,o){var M=eo.exec(A.slice(o,o+6));return M?(u.L=Math.floor(M[0]/1e3),o+M[0].length):-1}function U0(u,A,o){var M=N0.exec(A.slice(o,o+1));return M?o+M[0].length:-1}function G0(u,A,o){var M=eo.exec(A.slice(o));return M?(u.Q=+M[0],o+M[0].length):-1}function t1(u,A,o){var M=eo.exec(A.slice(o));return M?(u.s=+M[0],o+M[0].length):-1}function fd(u,A){return Dr(u.getDate(),A,2)}function g2(u,A){return Dr(u.getHours(),A,2)}function sf(u,A){return Dr(u.getHours()%12||12,A,2)}function cf(u,A){return Dr(1+nf.count(jl(u),u),A,3)}function lf(u,A){return Dr(u.getMilliseconds(),A,3)}function j0(u,A){return lf(u,A)+"000"}function W0(u,A){return Dr(u.getMonth()+1,A,2)}function go(u,A){return Dr(u.getMinutes(),A,2)}function e4(u,A){return Dr(u.getSeconds(),A,2)}function X0(u){var A=u.getDay();return 0===A?7:A}function t4(u,A){return Dr(zc.count(jl(u)-1,u),A,2)}function _2(u){var A=u.getDay();return A>=4||0===A?dl(u):dl.ceil(u)}function i4(u,A){return u=_2(u),Dr(dl.count(jl(u),u)+(4===jl(u).getDay()),A,2)}function n1(u){return u.getDay()}function Bs(u,A){return Dr(Bc.count(jl(u)-1,u),A,2)}function r1(u,A){return Dr(u.getFullYear()%100,A,2)}function ml(u,A){return Dr((u=_2(u)).getFullYear()%100,A,2)}function df(u,A){return Dr(u.getFullYear()%1e4,A,4)}function Y0(u,A){var o=u.getDay();return Dr((u=o>=4||0===o?dl(u):dl.ceil(u)).getFullYear()%1e4,A,4)}function v2(u){var A=u.getTimezoneOffset();return(A>0?"-":(A*=-1,"+"))+Dr(A/60|0,"0",2)+Dr(A%60,"0",2)}function md(u,A){return Dr(u.getUTCDate(),A,2)}function hf(u,A){return Dr(u.getUTCHours(),A,2)}function n4(u,A){return Dr(u.getUTCHours()%12||12,A,2)}function r4(u,A){return Dr(1+s2.count(Uc(u),u),A,3)}function uf(u,A){return Dr(u.getUTCMilliseconds(),A,3)}function ff(u,A){return uf(u,A)+"000"}function $l(u,A){return Dr(u.getUTCMonth()+1,A,2)}function pd(u,A){return Dr(u.getUTCMinutes(),A,2)}function Ql(u,A){return Dr(u.getUTCSeconds(),A,2)}function mf(u){var A=u.getUTCDay();return 0===A?7:A}function a1(u,A){return Dr(Hc.count(Uc(u)-1,u),A,2)}function Us(u){var A=u.getUTCDay();return A>=4||0===A?cl(u):cl.ceil(u)}function K0(u,A){return u=Us(u),Dr(cl.count(Uc(u),u)+(4===Uc(u).getUTCDay()),A,2)}function o1(u){return u.getUTCDay()}function gd(u,A){return Dr(Pr.count(Uc(u)-1,u),A,2)}function $0(u,A){return Dr(u.getUTCFullYear()%100,A,2)}function Q0(u,A){return Dr((u=Us(u)).getUTCFullYear()%100,A,2)}function Z0(u,A){return Dr(u.getUTCFullYear()%1e4,A,4)}function _d(u,A){var o=u.getUTCDay();return Dr((u=o>=4||0===o?cl(u):cl.ceil(u)).getUTCFullYear()%1e4,A,4)}function s1(){return"+0000"}function c1(){return"%"}function J0(u){return+u}function q0(u){return Math.floor(+u/1e3)}function l1(u){return null===u?NaN:+u}!function y2(u){(function F0(u){var A=u.dateTime,o=u.date,M=u.time,B=u.periods,Y=u.days,Le=u.shortDays,Ct=u.months,Gt=u.shortMonths,Ht=ks(B),li=ud(B),gi=ks(Y),wi=ud(Y),Ai=ks(Le),cn=ud(Le),Tn=ks(Ct),ki=ud(Ct),xn=ks(Gt),Ln=ud(Gt),_n={a:function pa(Mn){return Le[Mn.getDay()]},A:function Do(Mn){return Y[Mn.getDay()]},b:function Zr(Mn){return Gt[Mn.getMonth()]},B:function Ao(Mn){return Ct[Mn.getMonth()]},c:null,d:fd,e:fd,f:j0,g:ml,G:Y0,H:g2,I:sf,j:cf,L:lf,m:W0,M:go,p:function co(Mn){return B[+(Mn.getHours()>=12)]},q:function lo(Mn){return 1+~~(Mn.getMonth()/3)},Q:J0,s:q0,S:e4,u:X0,U:t4,V:i4,w:n1,W:Bs,x:null,X:null,y:r1,Y:df,Z:v2,"%":c1},qn={a:function h0(Mn){return Le[Mn.getUTCDay()]},A:function P1(Mn){return Y[Mn.getUTCDay()]},b:function V1(Mn){return Gt[Mn.getUTCMonth()]},B:function H1(Mn){return Ct[Mn.getUTCMonth()]},c:null,d:md,e:md,f:ff,g:Q0,G:_d,H:hf,I:n4,j:r4,L:uf,m:$l,M:pd,p:function ko(Mn){return B[+(Mn.getUTCHours()>=12)]},q:function Pd(Mn){return 1+~~(Mn.getUTCMonth()/3)},Q:J0,s:q0,S:Ql,u:mf,U:a1,V:K0,w:o1,W:gd,x:null,X:null,y:$0,Y:Z0,Z:s1,"%":c1},Xn={a:function Hr(Mn,dr,yr){var tn=Ai.exec(dr.slice(yr));return tn?(Mn.w=cn.get(tn[0].toLowerCase()),yr+tn[0].length):-1},A:function Pn(Mn,dr,yr){var tn=gi.exec(dr.slice(yr));return tn?(Mn.w=wi.get(tn[0].toLowerCase()),yr+tn[0].length):-1},b:function Po(Mn,dr,yr){var tn=xn.exec(dr.slice(yr));return tn?(Mn.m=Ln.get(tn[0].toLowerCase()),yr+tn[0].length):-1},B:function Er(Mn,dr,yr){var tn=Tn.exec(dr.slice(yr));return tn?(Mn.m=ki.get(tn[0].toLowerCase()),yr+tn[0].length):-1},c:function aa(Mn,dr,yr){return ra(Mn,A,dr,yr)},d:Kl,e:Kl,f:af,g:f2,G:V0,H:qd,I:qd,j:rf,L:B0,m:z0,M:p2,p:function ms(Mn,dr,yr){var tn=Ht.exec(dr.slice(yr));return tn?(Mn.p=li.get(tn[0].toLowerCase()),yr+tn[0].length):-1},q:H0,Q:G0,s:t1,S:e1,u:u2,U:Xl,V:Yl,w:P0,W:to,x:function Ls(Mn,dr,yr){return ra(Mn,o,dr,yr)},X:function za(Mn,dr,yr){return ra(Mn,M,dr,yr)},y:f2,Y:V0,Z:m2,"%":U0};function In(Mn,dr){return function(yr){var Vo,Kn,Qa,tn=[],$a=-1,Wr=0,ps=Mn.length;for(yr instanceof Date||(yr=new Date(+yr));++$a53)return null;"w"in tn||(tn.w=1),"Z"in tn?(ps=(Wr=Wl(fl(tn.y,0,1))).getUTCDay(),Wr=ps>4||0===ps?Pr.ceil(Wr):Pr(Wr),Wr=s2.offset(Wr,7*(tn.V-1)),tn.y=Wr.getUTCFullYear(),tn.m=Wr.getUTCMonth(),tn.d=Wr.getUTCDate()+(tn.w+6)%7):(ps=(Wr=Zd(fl(tn.y,0,1))).getDay(),Wr=ps>4||0===ps?Bc.ceil(Wr):Bc(Wr),Wr=nf.offset(Wr,7*(tn.V-1)),tn.y=Wr.getFullYear(),tn.m=Wr.getMonth(),tn.d=Wr.getDate()+(tn.w+6)%7)}else("W"in tn||"U"in tn)&&("w"in tn||(tn.w="u"in tn?tn.u%7:"W"in tn?1:0),ps="Z"in tn?Wl(fl(tn.y,0,1)).getUTCDay():Zd(fl(tn.y,0,1)).getDay(),tn.m=0,tn.d="W"in tn?(tn.w+6)%7+7*tn.W-(ps+5)%7:tn.w+7*tn.U-(ps+6)%7);return"Z"in tn?(tn.H+=tn.Z/100|0,tn.M+=tn.Z%100,Wl(tn)):Zd(tn)}}function ra(Mn,dr,yr,tn){for(var Vo,Kn,$a=0,Wr=dr.length,ps=yr.length;$a=ps)return-1;if(37===(Vo=dr.charCodeAt($a++))){if(Vo=dr.charAt($a++),!(Kn=Xn[Vo in d2?dr.charAt($a++):Vo])||(tn=Kn(Mn,yr,tn))<0)return-1}else if(Vo!=yr.charCodeAt(tn++))return-1}return tn}return _n.x=In(o,_n),_n.X=In(M,_n),_n.c=In(A,_n),qn.x=In(o,qn),qn.X=In(M,qn),qn.c=In(A,qn),{format:function(Mn){var dr=In(Mn+="",_n);return dr.toString=function(){return Mn},dr},parse:function(Mn){var dr=na(Mn+="",!1);return dr.toString=function(){return Mn},dr},utcFormat:function(Mn){var dr=In(Mn+="",qn);return dr.toString=function(){return Mn},dr},utcParse:function(Mn){var dr=na(Mn+="",!0);return dr.toString=function(){return Mn},dr}}})(u)}({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 a4=Sn(vi).right,C2=(Sn(l1),a4);function w2(u,A){return u=+u,A=+A,function(o){return Math.round(u*(1-o)+A*o)}}function th(u){return+u}var ih=[0,1];function Gc(u){return u}function M2(u,A){return(A-=u=+u)?function(o){return(o-u)/A}:function _f(u){return function(){return u}}(isNaN(A)?NaN:.5)}function vf(u,A,o){var M=u[0],B=u[1],Y=A[0],Le=A[1];return BA&&(o=u,u=A,A=o),function(M){return Math.max(u,Math.min(A,M))}}(u[0],u[wi-1])),Ct=wi>2?rh:vf,Gt=Ht=null,gi}function gi(wi){return null==wi||isNaN(wi=+wi)?Y:(Gt||(Gt=Ct(u.map(M),A,o)))(M(Le(wi)))}return gi.invert=function(wi){return Le(B((Ht||(Ht=Ct(A,u.map(M),_a)))(wi)))},gi.domain=function(wi){return arguments.length?(u=Array.from(wi,th),li()):u.slice()},gi.range=function(wi){return arguments.length?(A=Array.from(wi),li()):A.slice()},gi.rangeRound=function(wi){return A=Array.from(wi),o=w2,li()},gi.clamp=function(wi){return arguments.length?(Le=!!wi||Gc,li()):Le!==Gc},gi.interpolate=function(wi){return arguments.length?(o=wi,li()):o},gi.unknown=function(wi){return arguments.length?(Y=wi,gi):Y},function(wi,Ai){return M=wi,B=Ai,li()}}()(Gc,Gc)}function Jl(u,A){switch(arguments.length){case 0:break;case 1:this.range(u);break;default:this.range(A).domain(u)}return this}var A2,xf=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function h1(u){if(!(A=xf.exec(u)))throw new Error("invalid format: "+u);var A;return new D2({fill:A[1],align:A[2],sign:A[3],symbol:A[4],zero:A[5],width:A[6],comma:A[7],precision:A[8]&&A[8].slice(1),trim:A[9],type:A[10]})}function D2(u){this.fill=void 0===u.fill?" ":u.fill+"",this.align=void 0===u.align?">":u.align+"",this.sign=void 0===u.sign?"-":u.sign+"",this.symbol=void 0===u.symbol?"":u.symbol+"",this.zero=!!u.zero,this.width=void 0===u.width?void 0:+u.width,this.comma=!!u.comma,this.precision=void 0===u.precision?void 0:+u.precision,this.trim=!!u.trim,this.type=void 0===u.type?"":u.type+""}function ql(u,A){if((o=(u=A?u.toExponential(A-1):u.toExponential()).indexOf("e"))<0)return null;var o,M=u.slice(0,o);return[M.length>1?M[0]+M.slice(2):M,+u.slice(o+1)]}function vd(u){return(u=ql(Math.abs(u)))?u[1]:NaN}function u1(u,A){var o=ql(u,A);if(!o)return u+"";var M=o[0],B=o[1];return B<0?"0."+new Array(-B).join("0")+M:M.length>B+1?M.slice(0,B+1)+"."+M.slice(B+1):M+new Array(B-M.length+2).join("0")}h1.prototype=D2.prototype,D2.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 ch={"%":(u,A)=>(100*u).toFixed(A),b:u=>Math.round(u).toString(2),c:u=>u+"",d:function Cf(u){return Math.abs(u=Math.round(u))>=1e21?u.toLocaleString("en").replace(/,/g,""):u.toString(10)},e:(u,A)=>u.toExponential(A),f:(u,A)=>u.toFixed(A),g:(u,A)=>u.toPrecision(A),o:u=>Math.round(u).toString(8),p:(u,A)=>u1(100*u,A),r:u1,s:function sh(u,A){var o=ql(u,A);if(!o)return u+"";var M=o[0],B=o[1],Y=B-(A2=3*Math.max(-8,Math.min(8,Math.floor(B/3))))+1,Le=M.length;return Y===Le?M:Y>Le?M+new Array(Y-Le+1).join("0"):Y>0?M.slice(0,Y)+"."+M.slice(Y):"0."+new Array(1-Y).join("0")+ql(u,Math.max(0,A+Y-1))[0]},X:u=>Math.round(u).toString(16).toUpperCase(),x:u=>Math.round(u).toString(16)};function Dc(u){return u}var ed,dh,hh,f1=Array.prototype.map,k2=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function c4(u){var A=u.domain;return u.ticks=function(o){var M=A();return function ls(u,A,o){if(!((o=+o)>0))return[];if((u=+u)==(A=+A))return[u];const M=A=B))return[];const Ct=Y-B+1,Gt=new Array(Ct);if(M)if(Le<0)for(let Ht=0;Ht0;){if((Ht=xc(Le,Ct,o))===Gt)return M[B]=Le,M[Y]=Ct,A(M);if(Ht>0)Le=Math.floor(Le/Ht)*Ht,Ct=Math.ceil(Ct/Ht)*Ht;else{if(!(Ht<0))break;Le=Math.ceil(Le*Ht)/Ht,Ct=Math.floor(Ct*Ht)/Ht}Gt=Ht}return u},u}function Gs(){var u=S2();return u.copy=function(){return function E2(u,A){return A.domain(u.domain()).range(u.range()).interpolate(u.interpolate()).clamp(u.clamp()).unknown(u.unknown())}(u,Gs())},Jl.apply(u,arguments),c4(u)}function fh(u,A,o){u=+u,A=+A,o=(B=arguments.length)<2?(A=u,u=0,1):B<3?1:+o;for(var M=-1,B=0|Math.max(0,Math.ceil((A-u)/o)),Y=new Array(B);++M0&&Ct>0&&(Gt+Ct+1>M&&(Ct=Math.max(1,M-Gt)),Y.push(o.substring(B-=Ct,B+Ct)),!((Gt+=Ct+1)>M));)Ct=u[Le=(Le+1)%u.length];return Y.reverse().join(A)}}(f1.call(u.grouping,Number),u.thousands+""),o=void 0===u.currency?"":u.currency[0]+"",M=void 0===u.currency?"":u.currency[1]+"",B=void 0===u.decimal?".":u.decimal+"",Y=void 0===u.numerals?Dc:function Mf(u){return function(A){return A.replace(/[0-9]/g,function(o){return u[+o]})}}(f1.call(u.numerals,String)),Le=void 0===u.percent?"%":u.percent+"",Ct=void 0===u.minus?"\u2212":u.minus+"",Gt=void 0===u.nan?"NaN":u.nan+"";function Ht(gi){var wi=(gi=h1(gi)).fill,Ai=gi.align,cn=gi.sign,Tn=gi.symbol,ki=gi.zero,xn=gi.width,Ln=gi.comma,_n=gi.precision,qn=gi.trim,Xn=gi.type;"n"===Xn?(Ln=!0,Xn="g"):ch[Xn]||(void 0===_n&&(_n=12),qn=!0,Xn="g"),(ki||"0"===wi&&"="===Ai)&&(ki=!0,wi="0",Ai="=");var In="$"===Tn?o:"#"===Tn&&/[boxX]/.test(Xn)?"0"+Xn.toLowerCase():"",na="$"===Tn?M:/[%p]/.test(Xn)?Le:"",ra=ch[Xn],ms=/[defgprs%]/.test(Xn);function Hr(Pn){var aa,Ls,za,Po=In,Er=na;if("c"===Xn)Er=ra(Pn)+Er,Pn="";else{var pa=(Pn=+Pn)<0||1/Pn<0;if(Pn=isNaN(Pn)?Gt:ra(Math.abs(Pn),_n),qn&&(Pn=function o4(u){e:for(var B,A=u.length,o=1,M=-1;o0&&(M=0)}return M>0?u.slice(0,M)+u.slice(B+1):u}(Pn)),pa&&0==+Pn&&"+"!==cn&&(pa=!1),Po=(pa?"("===cn?cn:Ct:"-"===cn||"("===cn?"":cn)+Po,Er=("s"===Xn?k2[8+A2/3]:"")+Er+(pa&&"("===cn?")":""),ms)for(aa=-1,Ls=Pn.length;++aa(za=Pn.charCodeAt(aa))||za>57){Er=(46===za?B+Pn.slice(aa+1):Pn.slice(aa))+Er,Pn=Pn.slice(0,aa);break}}Ln&&!ki&&(Pn=A(Pn,1/0));var Do=Po.length+Pn.length+Er.length,Zr=Do>1)+Po+Pn+Er+Zr.slice(Do);break;default:Pn=Zr+Po+Pn+Er}return Y(Pn)}return _n=void 0===_n?6:/[gprs]/.test(Xn)?Math.max(1,Math.min(21,_n)):Math.max(0,Math.min(20,_n)),Hr.toString=function(){return gi+""},Hr}return{format:Ht,formatPrefix:function li(gi,wi){var Ai=Ht(((gi=h1(gi)).type="f",gi)),cn=3*Math.max(-8,Math.min(8,Math.floor(vd(wi)/3))),Tn=Math.pow(10,-cn),ki=k2[8+cn/3];return function(xn){return Ai(Tn*xn)+ki}}}}(u),dh=ed.format,hh=ed.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class m1 extends Map{constructor(A,o=td){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:o}}),null!=A)for(const[M,B]of A)this.set(M,B)}get(A){return super.get(js(this,A))}has(A){return super.has(js(this,A))}set(A,o){return super.set(function yd({_intern:u,_key:A},o){const M=A(o);return u.has(M)?u.get(M):(u.set(M,o),o)}(this,A),o)}delete(A){return super.delete(function p1({_intern:u,_key:A},o){const M=A(o);return u.has(M)&&(o=u.get(M),u.delete(M)),o}(this,A))}}function js({_intern:u,_key:A},o){const M=A(o);return u.has(M)?u.get(M):o}function td(u){return null!==u&&"object"==typeof u?u.valueOf():u}Set;const id=Symbol("implicit");function Wc(){var u=new m1,A=[],o=[],M=id;function B(Y){let Le=u.get(Y);if(void 0===Le){if(M!==id)return M;u.set(Y,Le=A.push(Y)-1)}return o[Le%o.length]}return B.domain=function(Y){if(!arguments.length)return A.slice();A=[],u=new m1;for(const Le of Y)u.has(Le)||u.set(Le,A.push(Le)-1);return B},B.range=function(Y){return arguments.length?(o=Array.from(Y),B):o.slice()},B.unknown=function(Y){return arguments.length?(M=Y,B):M},B.copy=function(){return Wc(A,o).unknown(M)},Jl.apply(B,arguments),B}function Ac(){var Y,Le,u=Wc().unknown(void 0),A=u.domain,o=u.range,M=0,B=1,Ct=!1,Gt=0,Ht=0,li=.5;function gi(){var wi=A().length,Ai=B=1)return+o(u[M-1],M-1,u);var M,B=(M-1)*A,Y=Math.floor(B),Le=+o(u[Y],Y,u);return Le+(+o(u[Y+1],Y+1,u)-Le)*(B-Y)}}function Cd(){var M,u=[],A=[],o=[];function B(){var Le=0,Ct=Math.max(1,A.length);for(o=new Array(Ct-1);++Le0?o[Ct-1]:u[0],Ct({model:u});function Df(u,A){}function io(u,A){if(1&u&&(e.j41(0,"span"),e.DNE(1,Df,0,0,"ng-template",5),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngTemplateOutlet",o.template)("ngTemplateOutletContext",e.eq3(2,h4,o.context))}}function _h(u,A){if(1&u&&e.nrm(0,"span",6),2&u){const o=e.XpG();e.Y8G("innerHTML",o.title,e.npT)}}function Af(u,A){if(1&u&&(e.j41(0,"header",4)(1,"span",5),e.EFF(2),e.k0s()()),2&u){const o=e.XpG();e.R7$(2),e.JRh(o.title)}}function vh(u,A){if(1&u){const o=e.RV6();e.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.labelClick.emit(B))})("activate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.activate(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.deactivate(B))}),e.k0s()()}if(2&u){const o=A.$implicit,M=e.XpG();e.R7$(),e.Y8G("label",o.label)("formattedLabel",o.formattedLabel)("color",o.color)("isActive",M.isActive(o))}}const rd=["*"];function bh(u,A){if(1&u&&e.nrm(0,"ngx-charts-scale-legend",4),2&u){const o=e.XpG();e.Y8G("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("valueRange",o.legendOptions.domain)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)}}function L2(u,A){if(1&u){const o=e.RV6();e.j41(0,"ngx-charts-legend",5),e.bIt("labelClick",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelClick.emit(B))})("labelActivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelActivate.emit(B))})("labelDeactivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelDeactivate.emit(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("data",o.legendOptions.domain)("title",o.legendOptions.title)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)("activeEntries",o.activeEntries)}}const kf=["ngx-charts-axis-label",""],g1=["ticksel"],u4=["ngx-charts-x-axis-ticks",""];function wd(u,A){1&u&&(e.qSk(),e.eu8(0))}function Lf(u,A){if(1&u&&(e.qSk(),e.j41(0,"tspan",10),e.EFF(1),e.k0s()),2&u){const o=A.$implicit;e.BMQ("y",12*A.index),e.R7$(),e.SpI(" ",o," ")}}function _1(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Lf,2,2,"tspan",9),e.bVm()),2&u){const o=A.ngIf;e.R7$(),e.Y8G("ngForOf",o)}}function I2(u,A){if(1&u&&e.DNE(0,_1,2,1,"ng-container",6),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(o))}}function R2(u,A){if(1&u&&e.EFF(0),2&u){const o=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(o)," ")}}function No(u,A){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",7),e.DNE(4,wd,1,0,"ng-container",8),e.k0s(),e.DNE(5,I2,1,1,"ng-template",null,1,e.C5r)(7,R2,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const o=A.ngIf,M=e.sdS(6),B=e.sdS(8),Y=e.XpG(2);e.R7$(2),e.JRh(o),e.R7$(),e.BMQ("text-anchor",Y.textAnchor)("transform",Y.textTransform),e.R7$(),e.Y8G("ngIf",Y.isWrapTicksSupported)("ngIfThen",M)("ngIfElse",B)}}function O2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g",5),e.DNE(1,No,9,6,"ng-container",6),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(o)),e.R7$(),e.Y8G("ngIf",M.tickFormat(o))}}function F2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",11),e.k0s()),2&u){const o=e.XpG(2);e.BMQ("transform",o.gridLineTransform()),e.R7$(),e.BMQ("y1",-o.gridLineHeight)}}function N2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,F2,2,2,"g",6),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(o)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}const Md=["ngx-charts-x-axis",""];function yh(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.emitTicksHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("trimTicks",o.trimTicks)("rotateTicks",o.rotateTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickStroke",o.tickStroke)("scale",o.xScale)("orient",o.xOrient)("showGridLines",o.showGridLines)("gridLineHeight",o.dims.height)("width",o.dims.width)("tickValues",o.ticks)("wrapTicks",o.wrapTicks)}}function Ed(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const o=e.XpG();e.Y8G("label",o.labelText)("offset",o.labelOffset)("orient",o.orientation.Bottom)("height",o.dims.height)("width",o.dims.width)}}const xh=["ngx-charts-y-axis-ticks",""];function P2(u,A){1&u&&(e.qSk(),e.eu8(0))}function Ch(u,A){if(1&u&&(e.qSk(),e.j41(0,"tspan",12),e.EFF(1),e.k0s()),2&u){const o=A.$implicit,M=A.index,B=e.XpG(6);e.BMQ("y",M*(8+B.tickSpacing)),e.R7$(),e.SpI(" ",o," ")}}function wh(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Ch,2,2,"tspan",11),e.bVm()),2&u){const o=e.XpG().ngIf;e.R7$(),e.Y8G("ngForOf",o)}}function Sd(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,wh,2,1,"ng-container",10),e.bVm()),2&u){const o=A.ngIf;e.XpG(2);const M=e.sdS(8);e.R7$(),e.Y8G("ngIf",o.length>1)("ngIfElse",M)}}function V2(u,A){if(1&u&&e.DNE(0,Sd,2,2,"ng-container",7),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(o))}}function gl(u,A){if(1&u&&e.EFF(0),2&u){const o=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(o)," ")}}function If(u,A){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",8),e.DNE(4,P2,1,0,"ng-container",9),e.k0s(),e.DNE(5,V2,1,1,"ng-template",null,1,e.C5r)(7,gl,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const o=A.ngIf,M=e.sdS(6),B=e.sdS(8),Y=e.XpG(2);e.R7$(2),e.JRh(o),e.R7$(),e.xc7("font-size","12px"),e.BMQ("dy",Y.dy)("x",Y.x1)("y",Y.y1)("text-anchor",Y.textAnchor),e.R7$(),e.Y8G("ngIf",Y.wrapTicks)("ngIfThen",M)("ngIfElse",B)}}function Mh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g",6),e.DNE(1,If,9,10,"ng-container",7),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.transform(o)),e.R7$(),e.Y8G("ngIf",M.tickFormat(o))}}function f4(u,A){if(1&u&&(e.qSk(),e.nrm(0,"path",13)),2&u){const o=e.XpG();e.BMQ("d",o.referenceAreaPath)("transform",o.gridLineTransform())}}function v1(u,A){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const o=e.XpG(3);e.BMQ("x2",o.gridLineWidth)}}function H2(u,A){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const o=e.XpG(3);e.BMQ("x2",-o.gridLineWidth)}}function Eh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,v1,1,1,"line",14)(2,H2,1,1,"line",14),e.k0s()),2&u){const o=e.XpG(2);e.BMQ("transform",o.gridLineTransform()),e.R7$(),e.Y8G("ngIf",o.orient===o.Orientation.Left),e.R7$(),e.Y8G("ngIf",o.orient===o.Orientation.Right)}}function Sh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Eh,3,3,"g",7),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.transform(o)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}function Th(u,A){if(1&u&&(e.qSk(),e.j41(0,"g")(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",17),e.EFF(4),e.k0s()()),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.R7$(2),e.JRh(M.tickTrim(M.tickFormat(o.value))),e.R7$(),e.BMQ("dy",M.dy)("y",-6)("x",M.gridLineWidth)("text-anchor",M.textAnchor),e.R7$(),e.SpI(" ",o.name," ")}}function _l(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",16),e.DNE(2,Th,5,6,"g",7),e.k0s()),2&u){const o=e.XpG().$implicit,M=e.XpG();e.BMQ("transform",M.transform(o.value)),e.R7$(),e.BMQ("x2",M.gridLineWidth)("transform",M.gridLineTransform()),e.R7$(),e.Y8G("ngIf",M.showRefLabels)}}function b1(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,_l,3,4,"g",7),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngIf",o.showRefLines)}}const Rf=["ngx-charts-y-axis",""];function Of(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.emitTicksWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("trimTicks",o.trimTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickValues",o.ticks)("tickStroke",o.tickStroke)("scale",o.yScale)("orient",o.yOrient)("showGridLines",o.showGridLines)("gridLineWidth",o.dims.width)("referenceLines",o.referenceLines)("showRefLines",o.showRefLines)("showRefLabels",o.showRefLabels)("height",o.dims.height)("wrapTicks",o.wrapTicks)}}function Ff(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const o=e.XpG();e.Y8G("label",o.labelText)("offset",o.labelOffset)("orient",o.yOrient)("height",o.dims.height)("width",o.dims.width)}}const Nf=["ngx-charts-svg-linear-gradient",""];function Ws(u,A){if(1&u&&(e.qSk(),e.nrm(0,"stop")),2&u){const o=A.$implicit;e.xc7("stop-color",o.color)("stop-opacity",o.opacity),e.BMQ("offset",o.offset+"%")}}const Dh=["ngx-charts-grid-panel",""],Ah=["ngx-charts-grid-panel-series",""];function kh(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",1)),2&u){const o=A.$implicit;e.AVh("grid-panel",!0)("odd","odd"===o.class)("even","even"===o.class),e.Y8G("height",o.height)("width",o.width)("x",o.x)("y",o.y)}}const Dd=["tooltipTemplate"],vl=(u,A)=>[u,A],C1=".ngx-charts-outer{animation:chartFadeIn linear .6s}@keyframes chartFadeIn{0%{opacity:0}20%{opacity:0}to{opacity:1}}.ngx-charts{float:left;overflow:visible}.ngx-charts .circle,.ngx-charts .cell,.ngx-charts .bar,.ngx-charts .node,.ngx-charts .link,.ngx-charts .arc{cursor:pointer}.ngx-charts .bar.active,.ngx-charts .bar:hover,.ngx-charts .cell.active,.ngx-charts .cell:hover,.ngx-charts .arc.active,.ngx-charts .arc:hover,.ngx-charts .node.active,.ngx-charts .node:hover,.ngx-charts .link.active,.ngx-charts .link:hover,.ngx-charts .card.active,.ngx-charts .card:hover{opacity:.8;transition:opacity .1s ease-in-out}.ngx-charts .bar:focus,.ngx-charts .cell:focus,.ngx-charts .arc:focus,.ngx-charts .node:focus,.ngx-charts .link:focus,.ngx-charts .card:focus{outline:none}.ngx-charts .bar.hidden,.ngx-charts .cell.hidden,.ngx-charts .arc.hidden,.ngx-charts .node.hidden,.ngx-charts .link.hidden,.ngx-charts .card.hidden{display:none}.ngx-charts g:focus{outline:none}.ngx-charts .line-series.inactive,.ngx-charts .line-series-range.inactive,.ngx-charts .polar-series-path.inactive,.ngx-charts .polar-series-area.inactive,.ngx-charts .area-series.inactive{transition:opacity .1s ease-in-out;opacity:.2}.ngx-charts .line-highlight{display:none}.ngx-charts .line-highlight.active{display:block}.ngx-charts .area{opacity:.6}.ngx-charts .circle:hover{cursor:pointer}.ngx-charts .label{font-size:12px;font-weight:400}.ngx-charts .tooltip-anchor{fill:#000}.ngx-charts .gridline-path{stroke:#ddd;stroke-width:1;fill:none}.ngx-charts .refline-path{stroke:#a8b2c7;stroke-width:1;stroke-dasharray:5;stroke-dashoffset:5}.ngx-charts .refline-label{font-size:9px}.ngx-charts .reference-area{fill-opacity:.05;fill:#000}.ngx-charts .gridline-path-dotted{stroke:#ddd;stroke-width:1;fill:none;stroke-dasharray:1,20;stroke-dashoffset:3}.ngx-charts .grid-panel rect{fill:none}.ngx-charts .grid-panel.odd rect{fill:#0000000d}\n",Ad=["ngx-charts-bar",""];function jh(u,A){if(1&u&&(e.qSk(),e.j41(0,"defs"),e.nrm(1,"g",2),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("orientation",o.orientation)("name",o.gradientId)("stops",o.gradientStops)}}const Wh=["ngx-charts-bar-label",""],bn=["ngx-charts-series-vertical",""];function Yi(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.onClick(B))})("activate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.activate.emit(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.deactivate.emit(B))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("@.disabled",!M.animations)("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",M.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",M.gradient)("ariaLabel",o.ariaLabel)("isActive",M.isActive(o.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function Ji(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Yi,1,22,"g",1),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function An(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.onClick(B))})("activate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.activate.emit(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.deactivate.emit(B))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",M.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",M.gradient)("ariaLabel",o.ariaLabel)("isActive",M.isActive(o.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function Un(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,An,1,20,"g",1),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function Vr(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",4),e.bIt("dimensionsChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.dataLabelHeightChanged.emit({size:B,index:Y}))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("barX",o.x)("barY",o.y)("barWidth",o.width)("barHeight",o.height)("value",o.total)("valueFormatting",M.dataLabelFormatting)("orientation",M.barOrientation.Vertical)}}function la(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Vr,1,7,"g",3),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.barsForDataLabels)("ngForTrackBy",o.trackDataLabelBy)}}function cr(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",5),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateXAxisHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("xScale",o.xScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function ta(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateYAxisWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("yScale",o.yScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function Ar(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateXAxisHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("xScale",o.groupScale)("dims",o.dims)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function ma(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",7),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateYAxisWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("yScale",o.valueScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function ia(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onClick(B,Y))})("activate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onActivate(B,Y))})("deactivate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onDeactivate(B,Y))})("dataLabelHeightChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.onDataLabelMaxHeightChanged(B,Y))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",o.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",o.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(o))}}function rc(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,ia,1,17,"g",8),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Lc(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onClick(B,Y))})("activate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onActivate(B,Y))})("deactivate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onDeactivate(B,Y))})("dataLabelHeightChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.onDataLabelMaxHeightChanged(B,Y))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",o.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",o.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(o))}}function M1(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Lc,1,16,"g",8),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Zc(u,A,o){o=o||{};let M,B,Y,Le=null,Ct=0;function Gt(){Ct=!1===o.leading?0:+new Date,Le=null,Y=u.apply(M,B)}return function(){const Ht=+new Date;!Ct&&!1===o.leading&&(Ct=Ht);const li=A-(Ht-Ct);return M=this,B=arguments,li<=0?(clearTimeout(Le),Le=null,Ct=Ht,Y=u.apply(M,B)):!Le&&!1!==o.trailing&&(Le=setTimeout(Gt,li)),Y}}function qp(u,A){return function(M,B,Y){return{configurable:!0,enumerable:Y.enumerable,get:function(){return Object.defineProperty(this,B,{configurable:!0,enumerable:Y.enumerable,value:Zc(Y.value,u,A)}),this[B]}}}}var pr=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u.Center="center",u}(pr||{});function Q4(u,A,o){return o===pr.Top?u.top-7:o===pr.Bottom?u.top+u.height-A.height+7:o===pr.Center?u.top+u.height/2-A.height/2:void 0}function Rd(u,A,o){return o===pr.Left?u.left-7:o===pr.Right?u.left+u.width-A.width+7:o===pr.Center?u.left+u.width/2-A.width/2:void 0}class Cs{static calculateVerticalAlignment(A,o,M){let B=Q4(A,o,M);return B+o.height>window.innerHeight&&(B=window.innerHeight-o.height),B}static calculateVerticalCaret(A,o,M,B){let Y;B===pr.Top&&(Y=A.height/2-M.height/2+7),B===pr.Bottom&&(Y=o.height-A.height/2-M.height/2-7),B===pr.Center&&(Y=o.height/2-M.height/2);const Le=Q4(A,o,B);return Le+o.height>window.innerHeight&&(Y+=Le+o.height-window.innerHeight),Y}static calculateHorizontalAlignment(A,o,M){let B=Rd(A,o,M);return B+o.width>window.innerWidth&&(B=window.innerWidth-o.width),B}static calculateHorizontalCaret(A,o,M,B){let Y;B===pr.Left&&(Y=A.width/2-M.width/2+7),B===pr.Right&&(Y=o.width-A.width/2-M.width/2-7),B===pr.Center&&(Y=o.width/2-M.width/2);const Le=Rd(A,o,B);return Le+o.width>window.innerWidth&&(Y+=Le+o.width-window.innerWidth),Y}static shouldFlip(A,o,M,B){let Y=!1;return M===pr.Right&&A.left+A.width+o.width+B>window.innerWidth&&(Y=!0),M===pr.Left&&A.left-o.width-B<0&&(Y=!0),M===pr.Top&&A.top-o.height-B<0&&(Y=!0),M===pr.Bottom&&A.top+A.height+o.height+B>window.innerHeight&&(Y=!0),Y}static positionCaret(A,o,M,B,Y){let Le=0,Ct=0;return A===pr.Right?(Ct=-7,Le=Cs.calculateVerticalCaret(M,o,B,Y)):A===pr.Left?(Ct=o.width,Le=Cs.calculateVerticalCaret(M,o,B,Y)):A===pr.Top?(Le=o.height,Ct=Cs.calculateHorizontalCaret(M,o,B,Y)):A===pr.Bottom&&(Le=-7,Ct=Cs.calculateHorizontalCaret(M,o,B,Y)),{top:Le,left:Ct}}static positionContent(A,o,M,B,Y){let Le=0,Ct=0;return A===pr.Right?(Ct=M.left+M.width+B,Le=Cs.calculateVerticalAlignment(M,o,Y)):A===pr.Left?(Ct=M.left-o.width-B,Le=Cs.calculateVerticalAlignment(M,o,Y)):A===pr.Top?(Le=M.top-o.height-B,Ct=Cs.calculateHorizontalAlignment(M,o,Y)):A===pr.Bottom&&(Le=M.top+M.height+B,Ct=Cs.calculateHorizontalAlignment(M,o,Y)),{top:Le,left:Ct}}static determinePlacement(A,o,M,B){if(Cs.shouldFlip(M,o,A,B)){if(A===pr.Right)return pr.Left;if(A===pr.Left)return pr.Right;if(A===pr.Top)return pr.Bottom;if(A===pr.Bottom)return pr.Top}return A}}let Od=(()=>{class u{constructor(o,M,B){this.element=o,this.renderer=M,this.platformId=B}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,t.UE)(this.platformId))return;const o=this.element.nativeElement,M=this.host.nativeElement.getBoundingClientRect();if(!M.height&&!M.width)return;const B=o.getBoundingClientRect();this.checkFlip(M,B),this.positionContent(o,M,B),this.showCaret&&this.positionCaret(M,B),setTimeout(()=>this.renderer.addClass(o,"animate"),1)}positionContent(o,M,B){const{top:Y,left:Le}=Cs.positionContent(this.placement,B,M,this.spacing,this.alignment);this.renderer.setStyle(o,"top",`${Y}px`),this.renderer.setStyle(o,"left",`${Le}px`)}positionCaret(o,M){const B=this.caretElm.nativeElement,Y=B.getBoundingClientRect(),{top:Le,left:Ct}=Cs.positionCaret(this.placement,M,o,Y,this.alignment);this.renderer.setStyle(B,"top",`${Le}px`),this.renderer.setStyle(B,"left",`${Ct}px`)}checkFlip(o,M){this.placement=Cs.determinePlacement(this.placement,M,o,this.spacing)}onWindowResize(){this.position()}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.sFG),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-tooltip-content"]],viewQuery:function(o,M){if(1&o&&e.GBs(Tf,5),2&o){let B;e.mGM(B=e.lsd())&&(M.caretElm=B.first)}},hostVars:2,hostBindings:function(o,M){1&o&&e.bIt("resize",function(){return M.onWindowResize()},!1,e.tSv),2&o&&e.HbH(M.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:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(o,M){1&o&&(e.j41(0,"div"),e.nrm(1,"span",1,0),e.j41(3,"div",2),e.DNE(4,io,2,4,"span",3)(5,_h,1,1,"span",4),e.k0s()()),2&o&&(e.R7$(),e.ZvI("tooltip-caret position-",M.placement,""),e.Y8G("hidden",!M.showCaret),e.R7$(3),e.Y8G("ngIf",!M.title),e.R7$(),e.Y8G("ngIf",M.title))},dependencies:[t.bT,t.T3],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,w.Cg)([qp(100)],u.prototype,"onWindowResize",null),u})();class S1{constructor(A){this.injectionService=A,this.defaults={},this.components=new Map}getByType(A=this.type){return this.components.get(A)}create(A){return this.createByType(this.type,A)}createByType(A,o){o=this.assignDefaults(o);const M=this.injectComponent(A,o);return this.register(A,M),M}destroy(A){const o=this.components.get(A.componentType);if(o&&o.length){const M=o.indexOf(A);M>-1&&(o[M].destroy(),o.splice(M,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(A){const o=this.components.get(A);if(o&&o.length){let M=o.length-1;for(;M>=0;)this.destroy(o[M--])}}injectComponent(A,o){return this.injectionService.appendComponent(A,o)}assignDefaults(A){const o={...this.defaults.inputs},M={...this.defaults.outputs};return!A.inputs&&!A.outputs&&(A={inputs:A}),o&&(A.inputs={...o,...A.inputs}),M&&(A.outputs={...M,...A.outputs}),A}register(A,o){this.components.has(A)||this.components.set(A,[]),this.components.get(A).push(o)}}let Cl=(()=>{class u{constructor(o,M,B){this.applicationRef=o,this.componentFactoryResolver=M,this.injector=B}static setGlobalRootViewContainer(o){u.globalRootViewContainer=o}getRootViewContainer(){if(this._container)return this._container;if(u.globalRootViewContainer)return u.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 n3(u){return u.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,M){if(M){if(void 0!==M.inputs){const B=Object.getOwnPropertyNames(M.inputs);for(const Y of B)o.instance[Y]=M.inputs[Y]}if(void 0!==M.outputs){const B=Object.getOwnPropertyNames(M.outputs);for(const Y of B)o.instance[Y]=M.outputs[Y]}}return o}appendComponent(o,M={},B){B||(B=this.getRootViewContainer());const Y=this.getComponentRootNode(B),Le=new S.aI(Y,this.componentFactoryResolver,this.applicationRef,this.injector),Ct=new S.A8(o),Gt=Le.attach(Ct);return this.projectComponentBindings(Gt,M),Gt}}return u.globalRootViewContainer=null,u.\u0275fac=function(o){return new(o||u)(e.KVO(e.o8S),e.KVO(e.OM3),e.KVO(e.zZn))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})(),qh=(()=>{class u extends S1{constructor(o){super(o),this.type=Od}}return u.\u0275fac=function(o){return new(o||u)(e.KVO(Cl))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})();var wl=function(u){return u.Right="right",u.Below="below",u}(wl||{}),e0=function(u){return u.ScaleLegend="scaleLegend",u.Legend="legend",u}(e0||{}),jn=function(u){return u.Time="time",u.Linear="linear",u.Ordinal="ordinal",u.Quantile="quantile",u}(jn||{});let Z4=(()=>{class u{constructor(){this.horizontal=!1}ngOnChanges(o){const M=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${M})`}gradientString(o,M){M.push(1);const B=[];return o.reverse().forEach((Y,Le)=>{B.push(`${Y} ${Math.round(100*M[Le])}%`)}),B.join(", ")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[e.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(o,M){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"span"),e.EFF(3),e.k0s()(),e.nrm(4,"div",2),e.j41(5,"div",1)(6,"span"),e.EFF(7),e.k0s()()()),2&o&&(e.xc7("height",M.horizontal?void 0:M.height,"px")("width",M.width,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(3),e.JRh(M.valueRange[1].toLocaleString()),e.R7$(),e.xc7("background",M.gradient),e.R7$(3),e.JRh(M.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}),u})();function t0(u){return u instanceof Date?u.toLocaleDateString():u.toLocaleString()}let n0=(()=>{class u{constructor(){this.isActive=!1,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.toggle=new e.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(o,M){1&o&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.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,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(o,M){1&o&&(e.j41(0,"span",0),e.bIt("click",function(){return M.select.emit(M.formattedLabel)}),e.j41(1,"span",1),e.bIt("click",function(){return M.toggle.emit(M.formattedLabel)}),e.k0s(),e.j41(2,"span",2),e.EFF(3),e.k0s()()),2&o&&(e.AVh("active",M.isActive),e.Y8G("title",M.formattedLabel),e.R7$(),e.xc7("background-color",M.color),e.R7$(2),e.SpI(" ",M.trimmedLabel," "))},encapsulation:2,changeDetection:0}),u})(),J4=(()=>{class u{constructor(o){this.cd=o,this.horizontal=!1,this.labelClick=new e.bkB,this.labelActivate=new e.bkB,this.labelDeactivate=new e.bkB,this.legendEntries=[]}ngOnChanges(o){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const o=[];for(const M of this.data){const B=t0(M);-1===o.findIndex(Le=>Le.label===B)&&o.push({label:M,formattedLabel:B,color:this.colors.getColor(M)})}return o}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(B=>o.label===B.name)}activate(o){this.labelActivate.emit(o)}deactivate(o){this.labelDeactivate.emit(o)}trackBy(o,M){return M.label}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.gRc))},u.\u0275cmp=e.VBU({type:u,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:[e.OA$],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,"select","activate","deactivate","label","formattedLabel","color","isActive"]],template:function(o,M){1&o&&(e.j41(0,"div"),e.DNE(1,Af,3,1,"header",0),e.j41(2,"div",1)(3,"ul",2),e.DNE(4,vh,2,4,"li",3),e.k0s()()()),2&o&&(e.xc7("width",M.width,"px"),e.R7$(),e.Y8G("ngIf",(null==M.title?null:M.title.length)>0),e.R7$(2),e.xc7("max-height",M.height-45,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(),e.Y8G("ngForOf",M.legendEntries)("ngForTrackBy",M.trackBy))},dependencies:[n0,t.bT,t.Sq],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}),u})(),eu=(()=>{class u{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new e.bkB,this.legendLabelActivate=new e.bkB,this.legendLabelDeactivate=new e.bkB,this.LegendPosition=wl,this.LegendType=e0}ngOnChanges(o){this.update()}update(){let o=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===wl.Right)&&(o=this.legendType===e0.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-o)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==wl.Right?this.chartWidth:Math.floor(this.view[0]*o/12)}getLegendType(){return this.legendOptions.scaleType===jn.Linear?e0.ScaleLegend:e0.Legend}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,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:[e.Jv_([qh]),e.OA$],ngContentSelectors:rd,decls:5,vars:8,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,"labelClick","labelActivate","labelDeactivate","horizontal","data","title","colors","height","width","activeEntries"]],template:function(o,M){1&o&&(e.NAR(),e.j41(0,"div",0),e.qSk(),e.j41(1,"svg",1),e.SdG(2),e.k0s(),e.DNE(3,bh,1,5,"ngx-charts-scale-legend",2)(4,L2,1,7,"ngx-charts-legend",3),e.k0s()),2&o&&(e.xc7("width",M.view[0],"px")("height",M.view[1],"px"),e.R7$(),e.BMQ("width",M.chartWidth)("height",M.view[1]),e.R7$(2),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.ScaleLegend),e.R7$(),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.Legend))},dependencies:[Z4,J4,t.bT],encapsulation:2,changeDetection:0}),u})(),e6=(()=>{class u{constructor(o,M){this.element=o,this.zone=M,this.visible=new e.bkB,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:M,offsetWidth:B}=this.element.nativeElement;M&&B?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o())})}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.SKi))},u.\u0275dir=e.FsC({type:u,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),u})();function q4(u){return"[object Date]"===toString.call(u)}let a3=(()=>{class u{constructor(o,M,B,Y){this.chartElement=o,this.zone=M,this.cd=B,this.platformId=Y,this.scheme="cool",this.schemeType=jn.Ordinal,this.animations=!0,this.select=new e.bkB}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new e6(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,M;const B=this.chartElement.nativeElement;if((0,t.UE)(this.platformId)&&null!==B.parentNode){const Y=B.parentNode.getBoundingClientRect();o=Y.width,M=Y.height}return o&&M?{width:o,height:M}:null}formatDates(){for(let o=0;o{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=M}cloneData(o){const M=[];for(const B of o){const Y={};if(void 0!==B.name&&(Y.name=B.name),void 0!==B.value&&(Y.value=B.value),void 0!==B.series){Y.series=[];for(const Le of B.series){const Ct=Object.assign({},Le);Y.series.push(Ct)}}void 0!==B.extra&&(Y.extra=JSON.parse(JSON.stringify(B.extra))),void 0!==B.source&&(Y.source=B.source),void 0!==B.target&&(Y.target=B.target),M.push(Y)}return M}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[e.OA$],decls:1,vars:0,template:function(o,M){1&o&&e.nrm(0,"div")},encapsulation:2}),u})();var Jo=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u}(Jo||{});let tu=(()=>{class u{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 Jo.Top:case Jo.Bottom:this.y=this.offset,this.x=this.width/2;break;case Jo.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Jo.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[e.OA$],attrs:kf,decls:2,vars:6,template:function(o,M){1&o&&(e.qSk(),e.j41(0,"text"),e.EFF(1),e.k0s()),2&o&&(e.BMQ("stroke-width",M.strokeWidth)("x",M.x)("y",M.y)("text-anchor",M.textAnchor)("transform",M.transform),e.R7$(),e.SpI(" ",M.label," "))},encapsulation:2,changeDetection:0}),u})();function r0(u,A=16){return"string"!=typeof u?"number"==typeof u?u+"":"":(u=u.trim()).length<=A?u:`${u.slice(0,A)}...`}function o3(u,A){if(u.length>A){const o=[],M=Math.floor(u.length/A);for(let B=0;B{const Ct=(Y.pop()||"")+" ";return Ct.length+Le.length>A?[...Y,Ct.trim(),Le.trim()]:[...Y,Ct+Le]},[]);else{let Y=0;for(;Yo&&(B=B.splice(0,o),B[B.length-1]+="..."),B}var Ys=function(u){return u.Start="start",u.Middle="middle",u.End="end",u}(Ys||{});let D1=(()=>{class u{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=Ys.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16}get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(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(B){return"Date"===B.constructor.name?B.toLocaleDateString():B.toLocaleString()};const M=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(B){return this.scale(B)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",M&&0!==M?(this.textTransform=`rotate(${M})`,this.textAnchor=Ys.End,this.verticalSpacing=10):this.textAnchor=Ys.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(o){let M=0;this.maxTicksLength=0;for(let gi=0;githis.maxTicksLength&&(this.maxTicksLength=Ai)}const Le=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let Ct=Le;const Gt=Math.floor(this.width/o.length);for(;Ct>Gt&&M>-90;)M-=30,Ct=Math.cos(M*(Math.PI/180))*Le;let Ht=14;if(this.isWrapTicksSupported){const gi=this.ticks.reduce((Ai,cn)=>cn.length>Ai.length?cn:Ai,"");Ht=14*(this.tickChunks(gi).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(gi)}const li=0!==M?Math.max(Math.abs(Math.sin(M*Math.PI/180))*this.maxTickLength*7,10):Ht;return this.approxHeight=Math.min(li,200),M}getTicks(){let o;const M=this.getMaxTicks(20),B=this.getMaxTicks(100);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[B]):(o=this.scale.domain(),o=o3(o,M)),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?r0(o,this.maxTickLength):o}getMaxPossibleLengthForTick(o){if(this.scale.bandwidth){const B=Math.floor(this.scale.bandwidth()/7),Y=o.slice(0,B);return Math.max(Y.length,this.maxTickLength)}return this.maxTickLength}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){let B=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(B<=1)return[this.tickTrim(o)];let Y=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,t.UE)(this.platformId)||(Y=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),B=Math.min(B,5),T1(o,Y,B<1?1:B)}return[this.tickTrim(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(o,M){if(1&o&&e.GBs(g1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksElement=B.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:u4,decls:4,vars:2,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01","font-size","12px"],[4,"ngIf","ngIfThen","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],["y2","0",1,"gridline-path","gridline-path-vertical"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,O2,2,2,"g",3),e.k0s(),e.DNE(3,N2,2,2,"g",4)),2&o&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.ticks))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),s3=(()=>{class u{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Jo.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=Jo}ngOnChanges(o){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:o}){const M=o+25+5;M!==this.labelOffset&&(this.labelOffset=M,setTimeout(()=>{this.dimensionsChanged.emit({height:o})},0))}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(o,M){if(1&o&&e.GBs(D1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksComponent=B.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Md,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"dimensionsChanged","trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g"),e.DNE(1,yh,1,13,"g",0)(2,Ed,1,5,"g",1),e.k0s()),2&o&&(e.BMQ("class",M.xAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[D1,tu,t.bT],encapsulation:2,changeDetection:0}),u})();function ad(u,A,o,M,B,[Y,Le,Ct,Gt]){let Ht="";return Ht=`M${[u+B,A]}`,Ht+="h"+((o=0===(o=Math.floor(o))?1:o)-2*B),Ht+=Le?`a${[B,B]} 0 0 1 ${[B,B]}`:`h${B}v${B}`,Ht+="v"+((M=0===(M=Math.floor(M))?1:M)-2*B),Ht+=Gt?`a${[B,B]} 0 0 1 ${[-B,B]}`:`v${B}h${-B}`,Ht+="h"+(2*B-o),Ht+=Ct?`a${[B,B]} 0 0 1 ${[-B,-B]}`:`h${-B}v${-B}`,Ht+="v"+(2*B-M),Ht+=Y?`a${[B,B]} 0 0 1 ${[B,-B]}`:`v${-B}h${B}`,Ht+="z",Ht}let tm=(()=>{class u{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.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=Ys.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Jo}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(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(){const o=this.scale,M=this.orient===Jo.Top||this.orient===Jo.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(B){return"Date"===B.constructor.name?B.toLocaleDateString():B.toLocaleString()},this.adjustedScale=o.bandwidth?B=>{const Y=o(B)+.5*o.bandwidth();if(this.wrapTicks&&B.toString().length>this.maxTickLength){const Le=this.tickChunks(B).length;if(1===Le)return Y;const Ht=.5*o.bandwidth()-8*Le*.5;return o(B)+Ht}return Y}:o,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Jo.Top:case Jo.Bottom:this.transform=function(B){return"translate("+this.adjustedScale(B)+",0)"},this.textAnchor=Ys.Middle,this.y2=this.innerTickSize*M,this.y1=this.tickSpacing*M,this.dy=M<0?"0em":".71em";break;case Jo.Left:this.transform=function(B){return"translate(0,"+this.adjustedScale(B)+")"},this.textAnchor=Ys.End,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em";break;case Jo.Right:this.transform=function(B){return"translate(0,"+this.adjustedScale(B)+")"},this.textAnchor=Ys.Start,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,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=ad(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let o;const M=this.getMaxTicks(20),B=this.getMaxTicks(50);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[B]):(o=this.scale.domain(),o=o3(o,M)),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?r0(o,this.maxTickLength):o}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(B=>this.tickTrim(this.tickFormat(B)).length))}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){const M=this.maxTickLength,B=Math.floor(this.scale.bandwidth()/15);return B<=1?[this.tickTrim(o)]:T1(o,M,Math.min(B,5))}return[this.tickFormat(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(o,M){if(1&o&&e.GBs(g1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksElement=B.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:xh,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01"],[4,"ngIf","ngIfThen","ngIfElse"],[4,"ngIf","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],[1,"reference-area"],["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,M){1&o&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,Mh,2,2,"g",3),e.k0s(),e.DNE(3,f4,1,2,"path",4)(4,Sh,2,2,"g",5)(5,b1,2,1,"g",5)),2&o&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngIf",M.referenceLineLength>1&&M.refMax&&M.refMin&&M.showRefLines),e.R7$(),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.referenceLines))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),A1=(()=>{class u{constructor(){this.showGridLines=!1,this.yOrient=Jo.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,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===Jo.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):this.transform=`translate(${this.offset} , 0)`,void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:o}){o!==this.labelOffset&&this.yOrient===Jo.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 u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(o,M){if(1&o&&e.GBs(tm,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksComponent=B.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Rf,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","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"dimensionsChanged","trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Of,1,15,"g",0)(2,Ff,1,5,"g",1),e.k0s()),2&o&&(e.BMQ("class",M.yAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.yScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[tm,tu,t.bT],encapsulation:2,changeDetection:0}),u})(),iu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD]]}),u})();var k1=function(u){return u.popover="popover",u.tooltip="tooltip",u}(k1||{}),a0=function(u){return u[u.all="all"]="all",u[u.focus="focus"]="focus",u[u.mouseover="mouseover"]="mouseover",u}(a0||{});let c3=(()=>{class u{constructor(o,M,B){this.tooltipService=o,this.viewContainerRef=M,this.renderer=B,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=pr.Top,this.tooltipAlignment=pr.Center,this.tooltipType=k1.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=a0.all,this.tooltipImmediateExit=!1,this.show=new e.bkB,this.hide=new e.bkB}get listensForFocus(){return this.tooltipShowEvent===a0.all||this.tooltipShowEvent===a0.focus}get listensForHover(){return this.tooltipShowEvent===a0.all||this.tooltipShowEvent===a0.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 M=o?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const B=this.createBoundOptions();this.component=this.tooltipService.create(B),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},M)}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",M=>{o.contains(M.target)||this.hideTooltip()}))}hideTooltip(o=!1){if(!this.component)return;const M=()=>{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?M():this.timeout=setTimeout(M,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 u.\u0275fac=function(o){return new(o||u)(e.rXU(qh),e.rXU(e.c1b),e.rXU(e.sFG))},u.\u0275dir=e.FsC({type:u,selectors:[["","ngx-tooltip",""]],hostBindings:function(o,M){1&o&&e.bIt("focusin",function(){return M.onFocus()})("blur",function(){return M.onBlur()})("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(Y){return M.onMouseLeave(Y.target)})("click",function(){return M.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"}}),u})(),im=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({providers:[Cl,qh],imports:[[t.MD]]}),u})();const nm={};function o0(){let u=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return u=`a${u}`,nm[u]?o0():(nm[u]=!0,u)}var bo=function(u){return u.Vertical="vertical",u.Horizontal="horizontal",u}(bo||{});let l3=(()=>{class u{constructor(){this.orientation=bo.Vertical}ngOnChanges(o){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===bo.Horizontal?this.x2="100%":this.orientation===bo.Vertical&&(this.y1="100%")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[e.OA$],attrs:Nf,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"linearGradient",0),e.DNE(1,Ws,1,5,"stop",1),e.k0s()),2&o&&(e.Y8G("id",M.name),e.BMQ("x1",M.x1)("y1",M.y1)("x2",M.x2)("y2",M.y2),e.R7$(),e.Y8G("ngForOf",M.stops))},dependencies:[t.Sq],encapsulation:2,changeDetection:0}),u})(),ru=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:Dh,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(o,M){1&o&&(e.qSk(),e.nrm(0,"rect",0)),2&o&&e.BMQ("height",M.height)("width",M.width)("x",M.x)("y",M.y)},encapsulation:2,changeDetection:0}),u})();var Ml=function(u){return u.Odd="odd",u.Even="even",u}(Ml||{});let s0,au=(()=>{class u{ngOnChanges(o){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(o=>{let M,B,Y,Le,Ct,Gt=Ml.Odd;if(this.orient===bo.Vertical){const Ht=this.xScale(o.name);Number.parseInt((Ht/this.xScale.step()).toString(),10)%2==1&&(Gt=Ml.Even),M=this.xScale.bandwidth()*this.xScale.paddingInner(),B=this.xScale.bandwidth()+M,Y=this.dims.height,Le=this.xScale(o.name)-M/2,Ct=0}else if(this.orient===bo.Horizontal){const Ht=this.yScale(o.name);Number.parseInt((Ht/this.yScale.step()).toString(),10)%2==1&&(Gt=Ml.Even),M=this.yScale.bandwidth()*this.yScale.paddingInner(),B=this.dims.width,Y=this.yScale.bandwidth()+M,Le=0,Ct=this.yScale(o.name)-M/2}return{name:o.name,class:Gt,height:Y,width:B,x:Le,y:Ct}})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[e.OA$],attrs:Ah,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,M){1&o&&e.DNE(0,kh,1,10,"g",0),2&o&&e.Y8G("ngForOf",M.gridPanels)},dependencies:[ru,t.Sq],encapsulation:2,changeDetection:0}),u})();typeof window<"u"?s0=window:typeof global<"u"&&(s0=global);let qo=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD,iu,im],t.MD,iu,im]}),u})();function om({width:u,height:A,margins:o,showXAxis:M=!1,showYAxis:B=!1,xAxisHeight:Y=0,yAxisWidth:Le=0,showXLabel:Ct=!1,showYLabel:Gt=!1,showLegend:Ht=!1,legendType:li=jn.Ordinal,legendPosition:gi=wl.Right,columns:wi=12}){let Ai=o[3],cn=u,Tn=A-o[0]-o[2];return Ht&&gi===wl.Right&&(wi-=li===jn.Ordinal?2:1),cn=cn*wi/12,cn=cn-o[1]-o[3],M&&(Tn-=5,Tn-=Y,Ct&&(Tn-=30)),B&&(cn-=5,cn-=Le,Ai+=Le,Ai+=10,Gt&&(cn-=30,Ai+=30)),cn=Math.max(0,cn),Tn=Math.max(0,Tn),{width:Math.floor(cn),height:Math.floor(Tn),xOffset:Math.floor(Ai)}}const f3=[{name:"vivid",selectable:!0,group:jn.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:jn.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:jn.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:jn.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:jn.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:jn.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:jn.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:jn.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:jn.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:jn.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:jn.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:jn.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:jn.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:jn.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:jn.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class sm{constructor(A,o,M,B){"string"==typeof A&&(A=f3.find(Y=>Y.name===A)),this.colorDomain=A.domain,this.scaleType=o,this.domain=M,this.customColors=B,this.scale=this.generateColorScheme(A,o,this.domain)}generateColorScheme(A,o,M){let B;switch("string"==typeof A&&(A=f3.find(Y=>Y.name===A)),o){case jn.Quantile:B=Cd().range(A.domain).domain(M);break;case jn.Ordinal:B=Wc().range(A.domain).domain(M);break;case jn.Linear:{const Y=[...A.domain];1===Y.length&&(Y.push(Y[0]),this.colorDomain=Y);const Le=fh(0,1,1/Y.length);B=Gs().range(Y).domain(Le)}}return B}getColor(A){if(null==A)throw new Error("Value can not be null");if(this.scaleType===jn.Linear){const o=Gs().domain(this.domain).range([0,1]);return this.scale(o(A))}{if("function"==typeof this.customColors)return this.customColors(A);const o=A.toString();let M;return this.customColors&&this.customColors.length>0&&(M=this.customColors.find(B=>B.name.toLowerCase()===o.toLowerCase())),M?M.value:this.scale(A)}}getLinearGradientStops(A,o){void 0===o&&(o=this.domain[0]);const M=Gs().domain(this.domain).range([0,1]),B=Ac().domain(this.colorDomain).range([0,1]),Y=this.getColor(A),Le=M(o),Ct=this.getColor(o),Gt=M(A);let Ht=1,li=Le;const gi=[];for(gi.push({color:Ct,offset:Le,originalOffset:Le,opacity:1});li=(Gt-B.bandwidth()).toFixed(4))break;gi.push({color:wi,offset:Ai,opacity:1}),li=Ai,Ht++}}if(gi[gi.length-1].offset<100&&gi.push({color:Y,offset:Gt,opacity:1}),Gt===Le)gi[0].offset=0,gi[1].offset=100;else if(100!==gi[gi.length-1].offset)for(const wi of gi)wi.offset=(wi.offset-Le)/(Gt-Le)*100;return gi}}let cu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),c0=(()=>{class u{constructor(o){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=o.nativeElement}ngOnChanges(o){o.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+o0().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 re(u){return"string"==typeof u?new Ni([[document.querySelector(u)]],[document.documentElement]):new Ni([[u]],en)}(this.element).select(".bar"),M=this.getPath();this.animations?o.transition().duration(500).attr("d",M):o.attr("d",M)}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 M,o=this.getRadius();return this.roundEdges?this.orientation===bo.Vertical?(o=Math.min(this.height,o),M=ad(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===bo.Horizontal&&(o=Math.min(this.width,o),M=ad(this.x,this.y,1,this.height,0,this.edges)):this.orientation===bo.Vertical?M=ad(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===bo.Horizontal&&(M=ad(this.x,this.y,1,this.height,0,this.edges)),M}getPath(){let M,o=this.getRadius();return this.roundEdges?this.orientation===bo.Vertical?(o=Math.min(this.height,o),M=ad(this.x,this.y,this.width,this.height,o,this.edges)):this.orientation===bo.Horizontal&&(o=Math.min(this.width,o),M=ad(this.x,this.y,this.width,this.height,o,this.edges)):M=ad(this.x,this.y,this.width,this.height,o,this.edges),M}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===bo.Vertical?o=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===bo.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===bo.Vertical&&0===this.height||this.orientation===bo.Horizontal&&0===this.width)}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(o,M){1&o&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.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:[e.OA$],attrs:Ad,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,M){1&o&&(e.DNE(0,jh,2,3,"defs",0),e.qSk(),e.j41(1,"path",1),e.bIt("click",function(){return M.select.emit(M.data)}),e.k0s()),2&o&&(e.Y8G("ngIf",M.hasGradient),e.R7$(),e.AVh("active",M.isActive)("hidden",M.hideBar),e.BMQ("d",M.path)("aria-label",M.ariaLabel)("fill",M.hasGradient?M.gradientFill:M.fill))},dependencies:[l3,t.bT],encapsulation:2,changeDetection:0}),u})();var El=function(u){return u.Standard="standard",u.Normalized="normalized",u.Stacked="stacked",u}(El||{}),Fd=function(u){return u.positive="positive",u.negative="negative",u}(Fd||{});let l0=(()=>{class u{constructor(o){this.dimensionsChanged=new e.bkB,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):t0(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 u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,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:[e.OA$],attrs:Wh,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"text",0),e.EFF(1),e.k0s()),2&o&&(e.BMQ("text-anchor",M.textAnchor)("transform",M.transform)("x",M.x)("y",M.y),e.R7$(),e.SpI(" ",M.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),u})(),hm=(()=>{class u{constructor(o){this.platformId=o,this.type=El.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.dataLabelHeightChanged=new e.bkB,this.barsForDataLabels=[],this.barOrientation=bo,this.isSSR=!1}ngOnInit(){(0,t.Vy)(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 M=Math.max(this.yScale.domain()[0],0),B={[Fd.positive]:0,[Fd.negative]:0};let Le,Y=Fd.positive;this.type===El.Normalized&&(Le=this.series.map(Ct=>Ct.value).reduce((Ct,Gt)=>Ct+Gt,0)),this.bars=this.series.map((Ct,Gt)=>{let Ht=Ct.value;const li=this.getLabel(Ct),gi=t0(li);Y=Ht>0?Fd.positive:Fd.negative;const Ai={value:Ht,label:li,roundEdges:this.roundEdges,data:Ct,width:o,formattedLabel:gi,height:0,x:0,y:0};if(this.type===El.Standard)Ai.height=Math.abs(this.yScale(Ht)-this.yScale(M)),Ai.x=this.xScale(li),Ai.y=this.yScale(Ht<0?0:Ht);else if(this.type===El.Stacked){const Tn=B[Y],ki=Tn+Ht;B[Y]+=Ht,Ai.height=this.yScale(Tn)-this.yScale(ki),Ai.x=0,Ai.y=this.yScale(ki),Ai.offset0=Tn,Ai.offset1=ki}else if(this.type===El.Normalized){let Tn=B[Y],ki=Tn+Ht;B[Y]+=Ht,Le>0?(Tn=100*Tn/Le,ki=100*ki/Le):(Tn=0,ki=0),Ai.height=this.yScale(Tn)-this.yScale(ki),Ai.x=0,Ai.y=this.yScale(ki),Ai.offset0=Tn,Ai.offset1=ki,Ht=(ki-Tn).toFixed(2)+"%"}this.colors.scaleType===jn.Ordinal?Ai.color=this.colors.getColor(li):this.type===El.Standard?(Ai.color=this.colors.getColor(Ht),Ai.gradientStops=this.colors.getLinearGradientStops(Ht)):(Ai.color=this.colors.getColor(Ai.offset1),Ai.gradientStops=this.colors.getLinearGradientStops(Ai.offset1,Ai.offset0));let cn=gi;return Ai.ariaLabel=gi+" "+Ht.toLocaleString(),null!=this.seriesName&&(cn=`${this.seriesName} \u2022 ${gi}`,Ai.data.series=this.seriesName,Ai.ariaLabel=this.seriesName+" "+Ai.ariaLabel),Ai.tooltipText=this.tooltipDisabled?void 0:`\n ${function r3(u){return u.toLocaleString().replace(/[&'`"<>]/g,A=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[A]))}(cn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Ht):Ht.toLocaleString()}\n `,Ai}),this.updateDataLabels()}updateDataLabels(){if(this.type===El.Stacked){this.barsForDataLabels=[];const o={};o.series=this.seriesName;const M=this.series.map(Y=>Y.value).reduce((Y,Le)=>Le>0?Y+Le:Y,0),B=this.series.map(Y=>Y.value).reduce((Y,Le)=>Le<0?Y+Le:Y,0);o.total=M+B,o.x=0,o.y=0,o.height=this.yScale(o.total>0?M:B),o.width=this.xScale.bandwidth(),this.barsForDataLabels.push(o)}else this.barsForDataLabels=this.series.map(o=>{const M={};return M.series=this.seriesName??o.label,M.total=o.value,M.x=this.xScale(o.label),M.y=this.yScale(0),M.height=this.yScale(M.total)-this.yScale(0),M.width=this.xScale.bandwidth(),M})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:pr.Top,this.tooltipType=this.tooltipDisabled?void 0:k1.tooltip}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(B=>o.name===B.name&&o.value===B.value)}onClick(o){this.select.emit(o)}getLabel(o){return o.label?o.label:o.name}trackBy(o,M){return M.label}trackDataLabelBy(o,M){return o+"#"+M.series+"#"+M.total}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,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:[e.OA$],attrs:bn,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,"select","activate","deactivate","width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"dimensionsChanged","barX","barY","barWidth","barHeight","value","valueFormatting","orientation"]],template:function(o,M){1&o&&e.DNE(0,Ji,2,2,"g",0)(1,Un,2,2,"g",0)(2,la,2,2,"g",0),2&o&&(e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR),e.R7$(),e.Y8G("ngIf",M.showDataLabel))},dependencies:[c0,l0,t.bT,t.Sq,c3],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1}),(0,f.i0)(500,(0,f.iF)({opacity:0}))])])]},changeDetection:0}),u})(),um=(()=>{class u extends a3{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=wl.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.wrapTicks=!1,this.activate=new e.bkB,this.deactivate=new e.bkB,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=om({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 Ac().range([0,this.dims.width]).paddingInner(o).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const o=Gs().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(Y=>Y.value);let M=this.yScaleMin?Math.min(this.yScaleMin,...o):Math.min(0,...o);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(M=Math.min(M,...this.yAxisTicks));let B=this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(B=Math.max(B,...this.yAxisTicks)),[M,B]}onClick(o){this.select.emit(o)}setColors(){let o;o=this.schemeType===jn.Ordinal?this.xDomain:this.yDomain,this.colors=new sm(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===jn.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,M=!1){o=this.results.find(Y=>M?Y.label===o.name:Y.name===o.name),!(this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series)>-1)&&(this.activeEntries=[o,...this.activeEntries],this.activate.emit({value:o,entries:this.activeEntries}))}onDeactivate(o,M=!1){o=this.results.find(Y=>M?Y.label===o.name:Y.name===o.name);const B=this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series);this.activeEntries.splice(B,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:o,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let A;return function(M){return(A||(A=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(o,M,B){if(1&o&&e.wni(B,Dd,5),2&o){let Y;e.mGM(Y=e.lsd())&&(M.tooltipTemplate=Y.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",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.Vt3],decls:5,vars:25,consts:[[3,"legendLabelClick","legendLabelActivate","legendLabelDeactivate","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"activate","deactivate","select","dataLabelHeightChanged","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"]],template:function(o,M){1&o&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelClick",function(Y){return M.onClick(Y)})("legendLabelActivate",function(Y){return M.onActivate(Y,!0)})("legendLabelDeactivate",function(Y){return M.onDeactivate(Y,!0)}),e.qSk(),e.j41(1,"g",1),e.DNE(2,cr,1,12,"g",2)(3,ta,1,10,"g",3),e.j41(4,"g",4),e.bIt("activate",function(Y){return M.onActivate(Y)})("deactivate",function(Y){return M.onDeactivate(Y)})("select",function(Y){return M.onClick(Y)})("dataLabelHeightChanged",function(Y){return M.onDataLabelMaxHeightChanged(Y)}),e.k0s()()()),2&o&&(e.Y8G("view",e.l_i(22,vl,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("xScale",M.xScale)("yScale",M.yScale)("colors",M.colors)("series",M.results)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("activeEntries",M.activeEntries)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero))},dependencies:[eu,s3,A1,hm,t.bT],styles:[C1],encapsulation:2,changeDetection:0}),u})(),c6=(()=>{class u extends a3{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=wl.Right,this.tooltipDisabled=!1,this.scaleType=jn.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.wrapTicks=!1,this.activate=new e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=bo,this.trackBy=(o,M)=>M.name}ngOnInit(){(0,t.Vy)(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=om({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,M){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),M===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const o=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Ac().rangeRound([0,this.dims.width]).paddingInner(o).paddingOuter(o/2).domain(this.groupDomain)}getInnerScale(){const o=this.groupScale.bandwidth(),M=this.innerDomain.length/(o/this.barPadding+1);return Ac().rangeRound([0,o]).paddingInner(M).domain(this.innerDomain)}getValueScale(){const o=Gs().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?o.nice():o}getGroupDomain(){const o=[];for(const M of this.results)o.includes(M.label)||o.push(M.label);return o}getInnerDomain(){const o=[];for(const M of this.results)for(const B of M.series)o.includes(B.label)||o.push(B.label);return o}getValueDomain(){const o=[];for(const Y of this.results)for(const Le of Y.series)o.includes(Le.value)||o.push(Le.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,M){M&&(o.series=M.name),this.select.emit(o)}setColors(){let o;o=this.schemeType===jn.Ordinal?this.innerDomain:this.valueDomain,this.colors=new sm(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===jn.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,M,B=!1){const Y=Object.assign({},o);M&&(Y.series=M.name);const Le=this.results.map(Ct=>Ct.series).flat().filter(Ct=>B?Ct.label===Y.name:Ct.name===Y.name&&Ct.series===Y.series);this.activeEntries=[...Le],this.activate.emit({value:Y,entries:this.activeEntries})}onDeactivate(o,M,B=!1){const Y=Object.assign({},o);M&&(Y.series=M.name),this.activeEntries=this.activeEntries.filter(Le=>B?Le.label!==Y.name:!(Le.name===Y.name&&Le.series===Y.series)),this.deactivate.emit({value:Y,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let A;return function(M){return(A||(A=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(o,M,B){if(1&o&&e.wni(B,Dd,5),2&o){let Y;e.mGM(Y=e.lsd())&&(M.tooltipTemplate=Y.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",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.Vt3],decls:7,vars:18,consts:[[3,"legendLabelActivate","legendLabelDeactivate","legendLabelClick","view","showLegend","legendOptions","activeEntries","animations"],[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","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"],["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,"select","activate","deactivate","dataLabelHeightChanged","activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero"]],template:function(o,M){1&o&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelActivate",function(Y){return M.onActivate(Y,void 0,!0)})("legendLabelDeactivate",function(Y){return M.onDeactivate(Y,void 0,!0)})("legendLabelClick",function(Y){return M.onClick(Y)}),e.qSk(),e.j41(1,"g",1),e.nrm(2,"g",2),e.DNE(3,Ar,1,11,"g",3)(4,ma,1,10,"g",4)(5,rc,2,2,"g",5),e.k0s(),e.DNE(6,M1,2,2,"g",5),e.k0s()),2&o&&(e.Y8G("view",e.l_i(15,vl,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("xScale",M.groupScale)("yScale",M.valueScale)("data",M.results)("dims",M.dims)("orient",M.barOrientation.Vertical),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR))},dependencies:[eu,au,s3,A1,hm,t.bT,t.Sq],styles:[C1],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1,transform:"*"}),(0,f.i0)(500,(0,f.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),u})(),g3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})();d4();let u6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),d0=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),O1=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),v3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})();Math;let Nd=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),g6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo,Nd,v3]]}),u})(),b3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),y3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),x3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo,Nd,g3]]}),u})(),S6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),C3=(()=>{class u{constructor(){!function U5(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[qo,cu,g3,u6,d0,O1,S6,v3,g6,b3,Nd,y3,x3]}),u})()},8288:(Qe,te,g)=>{"use strict";g.d(te,{Um:()=>d,XK:()=>T});var e=g(467),t=g(4438),w=g(177),S=g(8314);function l(y,F){if(1&y&&t.nrm(0,"canvas",1),2&y){const R=t.XpG();t.HbH(R.styleClass),t.Y8G("qrCode",R.value)("qrCodeErrorCorrectionLevel",R.errorCorrectionLevel)("qrCodeCenterImageSrc",R.centerImageSrc)("qrCodeCenterImageWidth",R.centerImageSize)("qrCodeCenterImageHeight",R.centerImageSize)("qrCodeMargin",R.margin)("width",R.size)("height",R.size)("ngStyle",R.style)("darkColor",R.darkColor)("lightColor",R.lightColor)}}const x=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let f=(()=>{class y{static#e=this.DEFAULT_ERROR_CORRECTION_LEVEL="M";static#t=this.DEFAULT_CENTER_IMAGE_SIZE=40;constructor(R){this.viewContainerRef=R,this.errorCorrectionLevel=y.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var R=this;return(0,e.A)(function*(){if(!R.value)return;R.version&&R.version>40?(console.warn("[qrCode] max version is 40, clamping"),R.version=40):R.version&&R.version<1?(console.warn("[qrCode] min version is 1, clamping"),R.version=1):void 0!==R.version&&isNaN(R.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),R.version=void 0);const z=R.viewContainerRef.element.nativeElement;if(!z)return;const W=z.getContext("2d");W&&W.clearRect(0,0,W.canvas.width,W.canvas.height);const $=R.errorCorrectionLevel??y.DEFAULT_ERROR_CORRECTION_LEVEL,j=x.test(R.darkColor)?R.darkColor:void 0,Q=x.test(R.lightColor)?R.lightColor:void 0;(0,t.naY)()&&(!j&&R.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!Q&&R.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield S.toCanvas(z,R.value,{version:R.version,errorCorrectionLevel:$,width:R.width,margin:R.margin,color:{dark:j,light:Q}});const J=R.centerImageSrc,ee=I(R.centerImageWidth,y.DEFAULT_CENTER_IMAGE_SIZE),ie=I(R.centerImageHeight,y.DEFAULT_CENTER_IMAGE_SIZE);if(J&&W){R.centerImage||(R.centerImage=new Image(ee,ie));const ge=R.centerImage;J!==R.centerImage.src&&(ge.src=J),ee!==R.centerImage.width&&(ge.width=ee),ie!==R.centerImage.height&&(ge.height=ie);const ae=()=>{W.drawImage(ge,z.width/2-ee/2,z.height/2-ie/2,ee,ie)};ge.onload=ae,ge.complete&&ae()}})()}static#i=this.\u0275fac=function(z){return new(z||y)(t.rXU(t.c1b))};static#n=this.\u0275dir=t.FsC({type:y,selectors:[["canvas","qrCode",""]],inputs:{value:[0,"qrCode","value"],version:[0,"qrCodeVersion","version"],errorCorrectionLevel:[0,"qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:[0,"qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:[0,"qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:[0,"qrCodeCenterImageHeight","centerImageHeight"],margin:[0,"qrCodeMargin","margin"]},features:[t.OA$]})}return y})();function I(y,F){return void 0===y||""===y?F:"string"==typeof y?parseInt(y,10):y}let d=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275cmp=t.VBU({type:y,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",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","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","ngStyle","darkColor","lightColor"]],template:function(z,W){1&z&&t.DNE(0,l,1,13,"canvas",0),2&z&&t.vxM(W.value?0:-1)},dependencies:[w.B3,f],encapsulation:2})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=t.$C({type:y});static#i=this.\u0275inj=t.G2t({imports:[w.MD]})}return y})()},497:(Qe,te,g)=>{"use strict";g.d(te,{kU:()=>St,ZF:()=>Re,Ld:()=>q,U$:()=>gt});var e=g(1413),t=g(3726),w=g(7786),S=g(3798),l=g(6977),x=g(3294),f=g(3703),I=g(4438),d=g(177);function T($e){return getComputedStyle($e)}function y($e,Fe){for(var Ge in Fe){var et=Fe[Ge];"number"==typeof et&&(et+="px"),$e.style[Ge]=et}return $e}function F($e){var Fe=document.createElement("div");return Fe.className=$e,Fe}var R=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function z($e,Fe){if(!R)throw new Error("No element matching method supported");return R.call($e,Fe)}function W($e){$e.remove?$e.remove():$e.parentNode&&$e.parentNode.removeChild($e)}function $($e,Fe){return Array.prototype.filter.call($e.children,function(Ge){return z(Ge,Fe)})}var j={main:"ps",rtl:"ps__rtl",element:{thumb:function($e){return"ps__thumb-"+$e},rail:function($e){return"ps__rail-"+$e},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function($e){return"ps--active-"+$e},scrolling:function($e){return"ps--scrolling-"+$e}}},Q={x:null,y:null};function J($e,Fe){var Ge=$e.element.classList,et=j.state.scrolling(Fe);Ge.contains(et)?clearTimeout(Q[Fe]):Ge.add(et)}function ee($e,Fe){Q[Fe]=setTimeout(function(){return $e.isAlive&&$e.element.classList.remove(j.state.scrolling(Fe))},$e.settings.scrollingThreshold)}var ge=function(Fe){this.element=Fe,this.handlers={}},ae={isEmpty:{configurable:!0}};ge.prototype.bind=function(Fe,Ge){typeof this.handlers[Fe]>"u"&&(this.handlers[Fe]=[]),this.handlers[Fe].push(Ge),this.element.addEventListener(Fe,Ge,!1)},ge.prototype.unbind=function(Fe,Ge){var et=this;this.handlers[Fe]=this.handlers[Fe].filter(function(st){return!(!Ge||st===Ge)||(et.element.removeEventListener(Fe,st,!1),!1)})},ge.prototype.unbindAll=function(){for(var Fe in this.handlers)this.unbind(Fe)},ae.isEmpty.get=function(){var $e=this;return Object.keys(this.handlers).every(function(Fe){return 0===$e.handlers[Fe].length})},Object.defineProperties(ge.prototype,ae);var Me=function(){this.eventElements=[]};function Te($e){if("function"==typeof window.CustomEvent)return new CustomEvent($e);var Fe=document.createEvent("CustomEvent");return Fe.initCustomEvent($e,!1,!1,void 0),Fe}function de($e,Fe,Ge,et,st){var Tt;if(void 0===et&&(et=!0),void 0===st&&(st=!1),"top"===Fe)Tt=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==Fe)throw new Error("A proper axis should be provided");Tt=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function D($e,Fe,Ge,et,st){var Tt=Ge[0],mi=Ge[1],Kt=Ge[2],Pt=Ge[3],Xi=Ge[4],di=Ge[5];void 0===et&&(et=!0),void 0===st&&(st=!1);var fi=$e.element;$e.reach[Pt]=null,fi[Kt]<1&&($e.reach[Pt]="start"),fi[Kt]>$e[Tt]-$e[mi]-1&&($e.reach[Pt]="end"),Fe&&(fi.dispatchEvent(Te("ps-scroll-"+Pt)),Fe<0?fi.dispatchEvent(Te("ps-scroll-"+Xi)):Fe>0&&fi.dispatchEvent(Te("ps-scroll-"+di)),et&&function ie($e,Fe){J($e,Fe),ee($e,Fe)}($e,Pt)),$e.reach[Pt]&&(Fe||st)&&fi.dispatchEvent(Te("ps-"+Pt+"-reach-"+$e.reach[Pt]))}($e,Ge,Tt,et,st)}function n($e){return parseInt($e,10)||0}Me.prototype.eventElement=function(Fe){var Ge=this.eventElements.filter(function(et){return et.element===Fe})[0];return Ge||(Ge=new ge(Fe),this.eventElements.push(Ge)),Ge},Me.prototype.bind=function(Fe,Ge,et){this.eventElement(Fe).bind(Ge,et)},Me.prototype.unbind=function(Fe,Ge,et){var st=this.eventElement(Fe);st.unbind(Ge,et),st.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(st),1)},Me.prototype.unbindAll=function(){this.eventElements.forEach(function(Fe){return Fe.unbindAll()}),this.eventElements=[]},Me.prototype.once=function(Fe,Ge,et){var st=this.eventElement(Fe),Tt=function(mi){st.unbind(Ge,Tt),et(mi)};st.bind(Ge,Tt)};var h={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function C($e){var Fe=$e.element,Ge=Math.floor(Fe.scrollTop),et=Fe.getBoundingClientRect();$e.containerWidth=Math.round(et.width),$e.containerHeight=Math.round(et.height),$e.contentWidth=Fe.scrollWidth,$e.contentHeight=Fe.scrollHeight,Fe.contains($e.scrollbarXRail)||($(Fe,j.element.rail("x")).forEach(function(st){return W(st)}),Fe.appendChild($e.scrollbarXRail)),Fe.contains($e.scrollbarYRail)||($(Fe,j.element.rail("y")).forEach(function(st){return W(st)}),Fe.appendChild($e.scrollbarYRail)),!$e.settings.suppressScrollX&&$e.containerWidth+$e.settings.scrollXMarginOffset<$e.contentWidth?($e.scrollbarXActive=!0,$e.railXWidth=$e.containerWidth-$e.railXMarginWidth,$e.railXRatio=$e.containerWidth/$e.railXWidth,$e.scrollbarXWidth=k($e,n($e.railXWidth*$e.containerWidth/$e.contentWidth)),$e.scrollbarXLeft=n(($e.negativeScrollAdjustment+Fe.scrollLeft)*($e.railXWidth-$e.scrollbarXWidth)/($e.contentWidth-$e.containerWidth))):$e.scrollbarXActive=!1,!$e.settings.suppressScrollY&&$e.containerHeight+$e.settings.scrollYMarginOffset<$e.contentHeight?($e.scrollbarYActive=!0,$e.railYHeight=$e.containerHeight-$e.railYMarginHeight,$e.railYRatio=$e.containerHeight/$e.railYHeight,$e.scrollbarYHeight=k($e,n($e.railYHeight*$e.containerHeight/$e.contentHeight)),$e.scrollbarYTop=n(Ge*($e.railYHeight-$e.scrollbarYHeight)/($e.contentHeight-$e.containerHeight))):$e.scrollbarYActive=!1,$e.scrollbarXLeft>=$e.railXWidth-$e.scrollbarXWidth&&($e.scrollbarXLeft=$e.railXWidth-$e.scrollbarXWidth),$e.scrollbarYTop>=$e.railYHeight-$e.scrollbarYHeight&&($e.scrollbarYTop=$e.railYHeight-$e.scrollbarYHeight),function L($e,Fe){var Ge={width:Fe.railXWidth},et=Math.floor($e.scrollTop);Ge.left=Fe.isRtl?Fe.negativeScrollAdjustment+$e.scrollLeft+Fe.containerWidth-Fe.contentWidth:$e.scrollLeft,Fe.isScrollbarXUsingBottom?Ge.bottom=Fe.scrollbarXBottom-et:Ge.top=Fe.scrollbarXTop+et,y(Fe.scrollbarXRail,Ge);var st={top:et,height:Fe.railYHeight};Fe.isScrollbarYUsingRight?st.right=Fe.isRtl?Fe.contentWidth-(Fe.negativeScrollAdjustment+$e.scrollLeft)-Fe.scrollbarYRight-Fe.scrollbarYOuterWidth-9:Fe.scrollbarYRight-$e.scrollLeft:st.left=Fe.isRtl?Fe.negativeScrollAdjustment+$e.scrollLeft+2*Fe.containerWidth-Fe.contentWidth-Fe.scrollbarYLeft-Fe.scrollbarYOuterWidth:Fe.scrollbarYLeft+$e.scrollLeft,y(Fe.scrollbarYRail,st),y(Fe.scrollbarX,{left:Fe.scrollbarXLeft,width:Fe.scrollbarXWidth-Fe.railBorderXWidth}),y(Fe.scrollbarY,{top:Fe.scrollbarYTop,height:Fe.scrollbarYHeight-Fe.railBorderYWidth})}(Fe,$e),$e.scrollbarXActive?Fe.classList.add(j.state.active("x")):(Fe.classList.remove(j.state.active("x")),$e.scrollbarXWidth=0,$e.scrollbarXLeft=0,Fe.scrollLeft=!0===$e.isRtl?$e.contentWidth:0),$e.scrollbarYActive?Fe.classList.add(j.state.active("y")):(Fe.classList.remove(j.state.active("y")),$e.scrollbarYHeight=0,$e.scrollbarYTop=0,Fe.scrollTop=0)}function k($e,Fe){return $e.settings.minScrollbarLength&&(Fe=Math.max(Fe,$e.settings.minScrollbarLength)),$e.settings.maxScrollbarLength&&(Fe=Math.min(Fe,$e.settings.maxScrollbarLength)),Fe}function v($e,Fe){var Ge=Fe[0],et=Fe[1],st=Fe[2],Tt=Fe[3],mi=Fe[4],Kt=Fe[5],Pt=Fe[6],Xi=Fe[7],di=Fe[8],fi=$e.element,vn=null,Qi=null,Li=null;function Zi(it){it.touches&&it.touches[0]&&(it[st]=it.touches[0].pageY),fi[Pt]=vn+Li*(it[st]-Qi),J($e,Xi),C($e),it.stopPropagation(),it.type.startsWith("touch")&&it.changedTouches.length>1&&it.preventDefault()}function Qt(){ee($e,Xi),$e[di].classList.remove(j.state.clicking),$e.event.unbind($e.ownerDocument,"mousemove",Zi)}function Mt(it,ct){vn=fi[Pt],ct&&it.touches&&(it[st]=it.touches[0].pageY),Qi=it[st],Li=($e[et]-$e[Ge])/($e[Tt]-$e[Kt]),ct?$e.event.bind($e.ownerDocument,"touchmove",Zi):($e.event.bind($e.ownerDocument,"mousemove",Zi),$e.event.once($e.ownerDocument,"mouseup",Qt),it.preventDefault()),$e[di].classList.add(j.state.clicking),it.stopPropagation()}$e.event.bind($e[mi],"mousedown",function(it){Mt(it)}),$e.event.bind($e[mi],"touchstart",function(it){Mt(it,!0)})}var ze={"click-rail":function _($e){$e.event.bind($e.scrollbarY,"mousedown",function(Ge){return Ge.stopPropagation()}),$e.event.bind($e.scrollbarYRail,"mousedown",function(Ge){var et=Ge.pageY-window.pageYOffset-$e.scrollbarYRail.getBoundingClientRect().top;$e.element.scrollTop+=(et>$e.scrollbarYTop?1:-1)*$e.containerHeight,C($e),Ge.stopPropagation()}),$e.event.bind($e.scrollbarX,"mousedown",function(Ge){return Ge.stopPropagation()}),$e.event.bind($e.scrollbarXRail,"mousedown",function(Ge){var et=Ge.pageX-window.pageXOffset-$e.scrollbarXRail.getBoundingClientRect().left;$e.element.scrollLeft+=(et>$e.scrollbarXLeft?1:-1)*$e.containerWidth,C($e),Ge.stopPropagation()})},"drag-thumb":function r($e){v($e,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),v($e,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function V($e){var Fe=$e.element;$e.event.bind($e.ownerDocument,"keydown",function(Tt){if(!(Tt.isDefaultPrevented&&Tt.isDefaultPrevented()||Tt.defaultPrevented)&&(z(Fe,":hover")||z($e.scrollbarX,":focus")||z($e.scrollbarY,":focus"))){var mi=document.activeElement?document.activeElement:$e.ownerDocument.activeElement;if(mi){if("IFRAME"===mi.tagName)mi=mi.contentDocument.activeElement;else for(;mi.shadowRoot;)mi=mi.shadowRoot.activeElement;if(function c($e){return z($e,"input,[contenteditable]")||z($e,"select,[contenteditable]")||z($e,"textarea,[contenteditable]")||z($e,"button,[contenteditable]")}(mi))return}var Kt=0,Pt=0;switch(Tt.which){case 37:Kt=Tt.metaKey?-$e.contentWidth:Tt.altKey?-$e.containerWidth:-30;break;case 38:Pt=Tt.metaKey?$e.contentHeight:Tt.altKey?$e.containerHeight:30;break;case 39:Kt=Tt.metaKey?$e.contentWidth:Tt.altKey?$e.containerWidth:30;break;case 40:Pt=Tt.metaKey?-$e.contentHeight:Tt.altKey?-$e.containerHeight:-30;break;case 32:Pt=Tt.shiftKey?$e.containerHeight:-$e.containerHeight;break;case 33:Pt=$e.containerHeight;break;case 34:Pt=-$e.containerHeight;break;case 36:Pt=$e.contentHeight;break;case 35:Pt=-$e.contentHeight;break;default:return}$e.settings.suppressScrollX&&0!==Kt||$e.settings.suppressScrollY&&0!==Pt||(Fe.scrollTop-=Pt,Fe.scrollLeft+=Kt,C($e),function st(Tt,mi){var Kt=Math.floor(Fe.scrollTop);if(0===Tt){if(!$e.scrollbarYActive)return!1;if(0===Kt&&mi>0||Kt>=$e.contentHeight-$e.containerHeight&&mi<0)return!$e.settings.wheelPropagation}var Pt=Fe.scrollLeft;if(0===mi){if(!$e.scrollbarXActive)return!1;if(0===Pt&&Tt<0||Pt>=$e.contentWidth-$e.containerWidth&&Tt>0)return!$e.settings.wheelPropagation}return!0}(Kt,Pt)&&Tt.preventDefault())}})},wheel:function N($e){var Fe=$e.element;function Tt(mi){var Kt=function et(mi){var Kt=mi.deltaX,Pt=-1*mi.deltaY;return(typeof Kt>"u"||typeof Pt>"u")&&(Kt=-1*mi.wheelDeltaX/6,Pt=mi.wheelDeltaY/6),mi.deltaMode&&1===mi.deltaMode&&(Kt*=10,Pt*=10),Kt!=Kt&&Pt!=Pt&&(Kt=0,Pt=mi.wheelDelta),mi.shiftKey?[-Pt,-Kt]:[Kt,Pt]}(mi),Pt=Kt[0],Xi=Kt[1];if(!function st(mi,Kt,Pt){if(!h.isWebKit&&Fe.querySelector("select:focus"))return!0;if(!Fe.contains(mi))return!1;for(var Xi=mi;Xi&&Xi!==Fe;){if(Xi.classList.contains(j.element.consuming))return!0;var di=T(Xi);if(Pt&&di.overflowY.match(/(scroll|auto)/)){var fi=Xi.scrollHeight-Xi.clientHeight;if(fi>0&&(Xi.scrollTop>0&&Pt<0||Xi.scrollTop0))return!0}if(Kt&&di.overflowX.match(/(scroll|auto)/)){var vn=Xi.scrollWidth-Xi.clientWidth;if(vn>0&&(Xi.scrollLeft>0&&Kt<0||Xi.scrollLeft0))return!0}Xi=Xi.parentNode}return!1}(mi.target,Pt,Xi)){var di=!1;$e.settings.useBothWheelAxes?$e.scrollbarYActive&&!$e.scrollbarXActive?(Xi?Fe.scrollTop-=Xi*$e.settings.wheelSpeed:Fe.scrollTop+=Pt*$e.settings.wheelSpeed,di=!0):$e.scrollbarXActive&&!$e.scrollbarYActive&&(Pt?Fe.scrollLeft+=Pt*$e.settings.wheelSpeed:Fe.scrollLeft-=Xi*$e.settings.wheelSpeed,di=!0):(Fe.scrollTop-=Xi*$e.settings.wheelSpeed,Fe.scrollLeft+=Pt*$e.settings.wheelSpeed),C($e),di=di||function Ge(mi,Kt){var Pt=Math.floor(Fe.scrollTop),Xi=0===Fe.scrollTop,di=Pt+Fe.offsetHeight===Fe.scrollHeight,fi=0===Fe.scrollLeft,vn=Fe.scrollLeft+Fe.offsetWidth===Fe.scrollWidth;return!(Math.abs(Kt)>Math.abs(mi)?Xi||di:fi||vn)||!$e.settings.wheelPropagation}(Pt,Xi),di&&!mi.ctrlKey&&(mi.stopPropagation(),mi.preventDefault())}}typeof window.onwheel<"u"?$e.event.bind(Fe,"wheel",Tt):typeof window.onmousewheel<"u"&&$e.event.bind(Fe,"mousewheel",Tt)},touch:function ne($e){if(h.supportsTouch||h.supportsIePointer){var Fe=$e.element,st={},Tt=0,mi={},Kt=null;h.supportsTouch?($e.event.bind(Fe,"touchstart",di),$e.event.bind(Fe,"touchmove",vn),$e.event.bind(Fe,"touchend",Qi)):h.supportsIePointer&&(window.PointerEvent?($e.event.bind(Fe,"pointerdown",di),$e.event.bind(Fe,"pointermove",vn),$e.event.bind(Fe,"pointerup",Qi)):window.MSPointerEvent&&($e.event.bind(Fe,"MSPointerDown",di),$e.event.bind(Fe,"MSPointerMove",vn),$e.event.bind(Fe,"MSPointerUp",Qi)))}function et(Li,Zi){Fe.scrollTop-=Zi,Fe.scrollLeft-=Li,C($e)}function Pt(Li){return Li.targetTouches?Li.targetTouches[0]:Li}function Xi(Li){return!(Li.pointerType&&"pen"===Li.pointerType&&0===Li.buttons||!(Li.targetTouches&&1===Li.targetTouches.length||Li.pointerType&&"mouse"!==Li.pointerType&&Li.pointerType!==Li.MSPOINTER_TYPE_MOUSE))}function di(Li){if(Xi(Li)){var Zi=Pt(Li);st.pageX=Zi.pageX,st.pageY=Zi.pageY,Tt=(new Date).getTime(),null!==Kt&&clearInterval(Kt)}}function vn(Li){if(Xi(Li)){var Zi=Pt(Li),Qt={pageX:Zi.pageX,pageY:Zi.pageY},Mt=Qt.pageX-st.pageX,it=Qt.pageY-st.pageY;if(function fi(Li,Zi,Qt){if(!Fe.contains(Li))return!1;for(var Mt=Li;Mt&&Mt!==Fe;){if(Mt.classList.contains(j.element.consuming))return!0;var it=T(Mt);if(Qt&&it.overflowY.match(/(scroll|auto)/)){var ct=Mt.scrollHeight-Mt.clientHeight;if(ct>0&&(Mt.scrollTop>0&&Qt<0||Mt.scrollTop0))return!0}if(Zi&&it.overflowX.match(/(scroll|auto)/)){var wt=Mt.scrollWidth-Mt.clientWidth;if(wt>0&&(Mt.scrollLeft>0&&Zi<0||Mt.scrollLeft0))return!0}Mt=Mt.parentNode}return!1}(Li.target,Mt,it))return;et(Mt,it),st=Qt;var ct=(new Date).getTime(),wt=ct-Tt;wt>0&&(mi.x=Mt/wt,mi.y=it/wt,Tt=ct),function Ge(Li,Zi){var Qt=Math.floor(Fe.scrollTop),Mt=Fe.scrollLeft,it=Math.abs(Li),ct=Math.abs(Zi);if(ct>it){if(Zi<0&&Qt===$e.contentHeight-$e.containerHeight||Zi>0&&0===Qt)return 0===window.scrollY&&Zi>0&&h.isChrome}else if(it>ct&&(Li<0&&Mt===$e.contentWidth-$e.containerWidth||Li>0&&0===Mt))return!0;return!0}(Mt,it)&&Li.preventDefault()}}function Qi(){$e.settings.swipeEasing&&(clearInterval(Kt),Kt=setInterval(function(){$e.isInitialized?clearInterval(Kt):mi.x||mi.y?Math.abs(mi.x)<.01&&Math.abs(mi.y)<.01?clearInterval(Kt):$e.element?(et(30*mi.x,30*mi.y),mi.x*=.8,mi.y*=.8):clearInterval(Kt):clearInterval(Kt)},10))}}},qe=function(Fe,Ge){var et=this;if(void 0===Ge&&(Ge={}),"string"==typeof Fe&&(Fe=document.querySelector(Fe)),!Fe||!Fe.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var st in this.element=Fe,Fe.classList.add(j.main),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},Ge)this.settings[st]=Ge[st];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var di,Xi,Tt=function(){return Fe.classList.add(j.state.focus)},mi=function(){return Fe.classList.remove(j.state.focus)};this.isRtl="rtl"===T(Fe).direction,!0===this.isRtl&&Fe.classList.add(j.rtl),this.isNegativeScroll=(Xi=Fe.scrollLeft,Fe.scrollLeft=-1,di=Fe.scrollLeft<0,Fe.scrollLeft=Xi,di),this.negativeScrollAdjustment=this.isNegativeScroll?Fe.scrollWidth-Fe.clientWidth:0,this.event=new Me,this.ownerDocument=Fe.ownerDocument||document,this.scrollbarXRail=F(j.element.rail("x")),Fe.appendChild(this.scrollbarXRail),this.scrollbarX=F(j.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Tt),this.event.bind(this.scrollbarX,"blur",mi),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var Kt=T(this.scrollbarXRail);this.scrollbarXBottom=parseInt(Kt.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=n(Kt.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=n(Kt.borderLeftWidth)+n(Kt.borderRightWidth),y(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=n(Kt.marginLeft)+n(Kt.marginRight),y(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=F(j.element.rail("y")),Fe.appendChild(this.scrollbarYRail),this.scrollbarY=F(j.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Tt),this.event.bind(this.scrollbarY,"blur",mi),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var Pt=T(this.scrollbarYRail);this.scrollbarYRight=parseInt(Pt.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=n(Pt.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function m($e){var Fe=T($e);return n(Fe.width)+n(Fe.paddingLeft)+n(Fe.paddingRight)+n(Fe.borderLeftWidth)+n(Fe.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=n(Pt.borderTopWidth)+n(Pt.borderBottomWidth),y(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=n(Pt.marginTop)+n(Pt.marginBottom),y(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:Fe.scrollLeft<=0?"start":Fe.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:Fe.scrollTop<=0?"start":Fe.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Xi){return ze[Xi](et)}),this.lastScrollTop=Math.floor(Fe.scrollTop),this.lastScrollLeft=Fe.scrollLeft,this.event.bind(this.element,"scroll",function(Xi){return et.onScroll(Xi)}),C(this)};qe.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,y(this.scrollbarXRail,{display:"block"}),y(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=n(T(this.scrollbarXRail).marginLeft)+n(T(this.scrollbarXRail).marginRight),this.railYMarginHeight=n(T(this.scrollbarYRail).marginTop)+n(T(this.scrollbarYRail).marginBottom),y(this.scrollbarXRail,{display:"none"}),y(this.scrollbarYRail,{display:"none"}),C(this),de(this,"top",0,!1,!0),de(this,"left",0,!1,!0),y(this.scrollbarXRail,{display:""}),y(this.scrollbarYRail,{display:""}))},qe.prototype.onScroll=function(Fe){this.isAlive&&(C(this),de(this,"top",this.element.scrollTop-this.lastScrollTop),de(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},qe.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),W(this.scrollbarX),W(this.scrollbarY),W(this.scrollbarXRail),W(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},qe.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(Fe){return!Fe.match(/^ps([-_].+|)$/)}).join(" ")};const Ke=qe;var se=function(){if(typeof Map<"u")return Map;function $e(Fe,Ge){var et=-1;return Fe.some(function(st,Tt){return st[0]===Ge&&(et=Tt,!0)}),et}return function(){function Fe(){this.__entries__=[]}return Object.defineProperty(Fe.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),Fe.prototype.get=function(Ge){var et=$e(this.__entries__,Ge),st=this.__entries__[et];return st&&st[1]},Fe.prototype.set=function(Ge,et){var st=$e(this.__entries__,Ge);~st?this.__entries__[st][1]=et:this.__entries__.push([Ge,et])},Fe.prototype.delete=function(Ge){var et=this.__entries__,st=$e(et,Ge);~st&&et.splice(st,1)},Fe.prototype.has=function(Ge){return!!~$e(this.__entries__,Ge)},Fe.prototype.clear=function(){this.__entries__.splice(0)},Fe.prototype.forEach=function(Ge,et){void 0===et&&(et=null);for(var st=0,Tt=this.__entries__;st0},$e.prototype.connect_=function(){!X||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),be?(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)},$e.prototype.disconnect_=function(){!X||!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)},$e.prototype.onTransitionEnd_=function(Fe){var Ge=Fe.propertyName,et=void 0===Ge?"":Ge;_e.some(function(Tt){return!!~et.indexOf(Tt)})&&this.refresh()},$e.getInstance=function(){return this.instance_||(this.instance_=new $e),this.instance_},$e.instance_=null,$e}(),Ze=function($e,Fe){for(var Ge=0,et=Object.keys(Fe);Ge"u")&&Element instanceof Object){if(!(Fe instanceof _t(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)||(Ge.set(Fe,new Yt(Fe)),this.controller_.addObserver(this),this.controller_.refresh())}},$e.prototype.unobserve=function(Fe){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(Fe instanceof _t(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)&&(Ge.delete(Fe),Ge.size||this.controller_.removeObserver(this))}},$e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},$e.prototype.gatherActive=function(){var Fe=this;this.clearActive(),this.observations_.forEach(function(Ge){Ge.isActive()&&Fe.activeObservations_.push(Ge)})},$e.prototype.broadcastActive=function(){if(this.hasActive()){var Fe=this.callbackCtx_,Ge=this.activeObservations_.map(function(et){return new Nt(et.target,et.broadcastRect())});this.callback_.call(Fe,Ge,Fe),this.clearActive()}},$e.prototype.clearActive=function(){this.activeObservations_.splice(0)},$e.prototype.hasActive=function(){return this.activeObservations_.length>0},$e}(),Vt=typeof WeakMap<"u"?new WeakMap:new se,oe=function(){return function $e(Fe){if(!(this instanceof $e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var Ge=pe.getInstance(),et=new Et(Fe,Ge,this);Vt.set(this,et)}}();["observe","unobserve","disconnect"].forEach(function($e){oe.prototype[$e]=function(){var Fe;return(Fe=Vt.get(this))[$e].apply(Fe,arguments)}});const $t=typeof me.ResizeObserver<"u"?me.ResizeObserver:oe,zt=["*"];function Jt($e,Fe){if(1&$e&&(I.j41(0,"div",3),I.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),I.k0s()),2&$e){const Ge=I.XpG();I.AVh("ps-at-top",Ge.states.top)("ps-at-left",Ge.states.left)("ps-at-right",Ge.states.right)("ps-at-bottom",Ge.states.bottom),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction)}}const St=new I.nKC("PERFECT_SCROLLBAR_CONFIG");class dt{constructor(Fe,Ge,et,st){this.x=Fe,this.y=Ge,this.w=et,this.h=st}}class Ae{constructor(Fe,Ge){this.x=Fe,this.y=Ge}}const we=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class he{constructor(Fe={}){this.assign(Fe)}assign(Fe={}){for(const Ge in Fe)this[Ge]=Fe[Ge]}}let q=(()=>{class $e{constructor(Ge,et,st,Tt,mi){this.zone=Ge,this.differs=et,this.elementRef=st,this.platformId=Tt,this.defaults=mi,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new e.B,this.disabled=!1,this.psScrollY=new I.bkB,this.psScrollX=new I.bkB,this.psScrollUp=new I.bkB,this.psScrollDown=new I.bkB,this.psScrollLeft=new I.bkB,this.psScrollRight=new I.bkB,this.psYReachEnd=new I.bkB,this.psYReachStart=new I.bkB,this.psXReachEnd=new I.bkB,this.psXReachStart=new I.bkB}ngOnInit(){if(!this.disabled&&(0,d.UE)(this.platformId)){const Ge=new he(this.defaults);Ge.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new Ke(this.elementRef.nativeElement,Ge)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new $t(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{we.forEach(et=>{const st=et.replace(/([A-Z])/g,Tt=>`-${Tt.toLowerCase()}`);(0,t.R)(this.elementRef.nativeElement,st).pipe((0,S.Z)(20),(0,l.Q)(this.ngDestroy)).subscribe(Tt=>{this[et].emit(Tt)})})})}}ngOnDestroy(){(0,d.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&typeof window<"u"&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,d.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(Ge){Ge.disabled&&!Ge.disabled.isFirstChange()&&(0,d.UE)(this.platformId)&&Ge.disabled.currentValue!==Ge.disabled.previousValue&&(!0===Ge.disabled.currentValue?this.ngOnDestroy():!1===Ge.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){typeof window<"u"&&(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{}},0))}geometry(Ge="scroll"){return new dt(this.elementRef.nativeElement[Ge+"Left"],this.elementRef.nativeElement[Ge+"Top"],this.elementRef.nativeElement[Ge+"Width"],this.elementRef.nativeElement[Ge+"Height"])}position(Ge=!1){return!Ge&&this.instance?new Ae(this.instance.reach.x||0,this.instance.reach.y||0):new Ae(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(Ge="any"){const et=this.elementRef.nativeElement;return"any"===Ge?et.classList.contains("ps--active-x")||et.classList.contains("ps--active-y"):"both"===Ge?et.classList.contains("ps--active-x")&&et.classList.contains("ps--active-y"):et.classList.contains("ps--active-"+Ge)}scrollTo(Ge,et,st){this.disabled||(null==et&&null==st?this.animateScrolling("scrollTop",Ge,st):(null!=Ge&&this.animateScrolling("scrollLeft",Ge,st),null!=et&&this.animateScrolling("scrollTop",et,st)))}scrollToX(Ge,et){this.animateScrolling("scrollLeft",Ge,et)}scrollToY(Ge,et){this.animateScrolling("scrollTop",Ge,et)}scrollToTop(Ge,et){this.animateScrolling("scrollTop",Ge||0,et)}scrollToLeft(Ge,et){this.animateScrolling("scrollLeft",Ge||0,et)}scrollToRight(Ge,et){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(Ge||0),et)}scrollToBottom(Ge,et){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(Ge||0),et)}scrollToElement(Ge,et,st){if("string"==typeof Ge&&(Ge=this.elementRef.nativeElement.querySelector(Ge)),Ge){const Tt=Ge.getBoundingClientRect(),mi=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Tt.left-mi.left+this.elementRef.nativeElement.scrollLeft+(et||0),st),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Tt.top-mi.top+this.elementRef.nativeElement.scrollTop+(et||0),st)}}animateScrolling(Ge,et,st){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!st||typeof window>"u")this.elementRef.nativeElement[Ge]=et;else if(et!==this.elementRef.nativeElement[Ge]){let Tt=0,mi=0,Kt=performance.now(),Pt=this.elementRef.nativeElement[Ge];const Xi=(Pt-et)/2,di=fi=>{mi+=Math.PI/(st/(fi-Kt)),Tt=Math.round(et+Xi+Xi*Math.cos(mi)),this.elementRef.nativeElement[Ge]===Pt&&(mi>=Math.PI?this.animateScrolling(Ge,et,0):(this.elementRef.nativeElement[Ge]=Tt,Pt=this.elementRef.nativeElement[Ge],Kt=fi,this.animation=window.requestAnimationFrame(di)))};window.requestAnimationFrame(di)}}}return $e.\u0275fac=function(Ge){return new(Ge||$e)(I.rXU(I.SKi),I.rXU(I.MKu),I.rXU(I.aKT),I.rXU(I.Agw),I.rXU(St,8))},$e.\u0275dir=I.FsC({type:$e,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:[0,"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:[I.OA$]}),$e})(),Re=(()=>{class $e{constructor(Ge,et,st){this.zone=Ge,this.cdRef=et,this.platformId=st,this.states={},this.indicatorX=!1,this.indicatorY=!1,this.interaction=!1,this.scrollPositionX=0,this.scrollPositionY=0,this.scrollDirectionX=0,this.scrollDirectionY=0,this.usePropagationX=!1,this.usePropagationY=!1,this.allowPropagationX=!1,this.allowPropagationY=!1,this.stateTimeout=null,this.ngDestroy=new e.B,this.stateUpdate=new e.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new I.bkB,this.psScrollX=new I.bkB,this.psScrollUp=new I.bkB,this.psScrollDown=new I.bkB,this.psScrollLeft=new I.bkB,this.psScrollRight=new I.bkB,this.psYReachEnd=new I.bkB,this.psYReachStart=new I.bkB,this.psXReachEnd=new I.bkB,this.psXReachStart=new I.bkB}ngOnInit(){(0,d.UE)(this.platformId)&&(this.stateUpdate.pipe((0,l.Q)(this.ngDestroy),(0,x.F)((Ge,et)=>Ge===et&&!this.stateTimeout)).subscribe(Ge=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===Ge||"y"===Ge?(this.interaction=!1,"x"===Ge?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===Ge&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===Ge||"right"===Ge?(this.states.left=!1,this.states.right=!1,this.states[Ge]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===Ge||"bottom"===Ge)&&(this.states.top=!1,this.states.bottom=!1,this.states[Ge]=!0,this.autoPropagation&&this.usePropagationY&&(this.indicatorY=!0)),this.autoPropagation&&typeof window<"u"&&(this.stateTimeout=window.setTimeout(()=>{this.indicatorX=!1,this.indicatorY=!1,this.stateTimeout=null,this.interaction&&(this.states.left||this.states.right)&&(this.allowPropagationX=!0),this.interaction&&(this.states.top||this.states.bottom)&&(this.allowPropagationY=!0),this.cdRef.markForCheck()},500))),this.cdRef.markForCheck(),this.cdRef.detectChanges()}),this.zone.runOutsideAngular(()=>{if(this.directiveRef){const Ge=this.directiveRef.elementRef.nativeElement;(0,t.R)(Ge,"wheel").pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(et,et.deltaX,et.deltaY)}),(0,t.R)(Ge,"touchmove").pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{if(!this.disabled&&this.autoPropagation){const st=et.touches[0].clientX,Tt=et.touches[0].clientY;this.checkPropagation(et,st-this.scrollPositionX,Tt-this.scrollPositionY),this.scrollPositionX=st,this.scrollPositionY=Tt}}),(0,w.h)((0,t.R)(Ge,"ps-scroll-x").pipe((0,f.u)("x")),(0,t.R)(Ge,"ps-scroll-y").pipe((0,f.u)("y")),(0,t.R)(Ge,"ps-x-reach-end").pipe((0,f.u)("right")),(0,t.R)(Ge,"ps-y-reach-end").pipe((0,f.u)("bottom")),(0,t.R)(Ge,"ps-x-reach-start").pipe((0,f.u)("left")),(0,t.R)(Ge,"ps-y-reach-start").pipe((0,f.u)("top"))).pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(et)})}}),window.setTimeout(()=>{we.forEach(Ge=>{this.directiveRef&&(this.directiveRef[Ge]=this[Ge])})},0))}ngOnDestroy(){(0,d.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,d.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const Ge=this.directiveRef.elementRef.nativeElement;this.usePropagationX=Ge.classList.contains("ps--active-x"),this.usePropagationY=Ge.classList.contains("ps--active-y")}}checkPropagation(Ge,et,st){this.interaction=!0;const Tt=et<0?-1:1,mi=st<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==Tt)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==mi))&&(Ge.preventDefault(),Ge.stopPropagation()),et&&(this.scrollDirectionX=Tt),st&&(this.scrollDirectionY=mi),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return $e.\u0275fac=function(Ge){return new(Ge||$e)(I.rXU(I.SKi),I.rXU(I.gRc),I.rXU(I.Agw))},$e.\u0275cmp=I.VBU({type:$e,selectors:[["perfect-scrollbar"]],viewQuery:function(Ge,et){if(1&Ge&&I.GBs(q,7),2&Ge){let st;I.mGM(st=I.lsd())&&(et.directiveRef=st.first)}},hostVars:4,hostBindings:function(Ge,et){2&Ge&&I.AVh("ps-show-limits",et.autoPropagation)("ps-show-active",et.scrollIndicators)},inputs:{disabled:"disabled",usePSClass:"usePSClass",autoPropagation:"autoPropagation",scrollIndicators:"scrollIndicators",config:"config"},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],ngContentSelectors:zt,decls:4,vars:5,consts:[[2,"position","static",3,"perfectScrollbar","disabled"],[1,"ps-content"],["class","ps-overlay",3,"ps-at-top","ps-at-left","ps-at-right","ps-at-bottom",4,"ngIf"],[1,"ps-overlay"],[1,"ps-indicator-top"],[1,"ps-indicator-left"],[1,"ps-indicator-right"],[1,"ps-indicator-bottom"]],template:function(Ge,et){1&Ge&&(I.NAR(),I.j41(0,"div",0)(1,"div",1),I.SdG(2),I.k0s(),I.DNE(3,Jt,5,16,"div",2),I.k0s()),2&Ge&&(I.AVh("ps",et.usePSClass),I.Y8G("perfectScrollbar",et.config)("disabled",et.disabled),I.R7$(3),I.Y8G("ngIf",et.scrollIndicators))},dependencies:[q,d.bT],styles:["perfect-scrollbar{position:relative;display:block;overflow:hidden;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar[hidden]{display:none}perfect-scrollbar[fxflex]{display:flex;flex-direction:column;height:auto;min-width:0;min-height:0}perfect-scrollbar[fxflex]>.ps{flex:1 1 auto;width:auto;height:auto;min-width:0;min-height:0;-webkit-box-flex:1}perfect-scrollbar[fxlayout]>.ps,perfect-scrollbar[fxlayout]>.ps>.ps-content{display:flex;flex:1 1 auto;flex-direction:inherit;align-items:inherit;align-content:inherit;justify-content:inherit;width:100%;height:100%;-webkit-box-align:inherit;-webkit-box-flex:1;-webkit-box-pack:inherit}perfect-scrollbar[fxlayout=row]>.ps,perfect-scrollbar[fxlayout=row]>.ps>.ps-content{flex-direction:row!important}perfect-scrollbar[fxlayout=column]>.ps,perfect-scrollbar[fxlayout=column]>.ps>.ps-content{flex-direction:column!important}perfect-scrollbar>.ps{position:static;display:block;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar>.ps textarea{-ms-overflow-style:scrollbar}perfect-scrollbar>.ps>.ps-overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:block;overflow:hidden;pointer-events:none}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{position:absolute;opacity:0;transition:opacity .3s ease-in-out}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{left:0;min-width:100%;min-height:24px}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{top:0;min-width:24px;min-height:100%}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top{top:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left{left:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{right:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{bottom:0}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y{top:0!important;right:0!important;left:auto!important;width:10px;cursor:default;transition:width .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y:hover,perfect-scrollbar>.ps.ps--active-y>.ps__rail-y.ps--clicking{width:15px}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x{top:auto!important;bottom:0!important;left:0!important;height:10px;cursor:default;transition:height .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x:hover,perfect-scrollbar>.ps.ps--active-x>.ps__rail-x.ps--clicking{height:15px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-y{margin:0 0 10px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-x{margin:0 10px 0 0}perfect-scrollbar>.ps.ps--scrolling-y>.ps__rail-y,perfect-scrollbar>.ps.ps--scrolling-x>.ps__rail-x{opacity:.9;background-color:#eee}perfect-scrollbar.ps-show-always>.ps.ps--active-y>.ps__rail-y,perfect-scrollbar.ps-show-always>.ps.ps--active-x>.ps__rail-x{opacity:.6}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-top) .ps-indicator-top{opacity:1;background:linear-gradient(to bottom,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom{opacity:1;background:linear-gradient(to top,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-left) .ps-indicator-left{opacity:1;background:linear-gradient(to right,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-right) .ps-indicator-right{opacity:1;background:linear-gradient(to left,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top{background:linear-gradient(to bottom,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom{background:linear-gradient(to top,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left{background:linear-gradient(to right,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right{background:linear-gradient(to left,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right.ps-indicator-show{opacity:1}\n",".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:0px;position:absolute}.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:15px;right:0;position:absolute}.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:#eee;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:6px;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:6px;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:11px}.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:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}\n"],encapsulation:2}),$e})(),gt=(()=>{class $e{}return $e.\u0275fac=function(Ge){return new(Ge||$e)},$e.\u0275mod=I.$C({type:$e}),$e.\u0275inj=I.G2t({imports:[[d.MD],d.MD]}),$e})()},467:(Qe,te,g)=>{"use strict";function e(w,S,l,x,f,I,d){try{var T=w[I](d),y=T.value}catch(F){return void l(F)}T.done?S(y):Promise.resolve(y).then(x,f)}function t(w){return function(){var S=this,l=arguments;return new Promise(function(x,f){var I=w.apply(S,l);function d(y){e(I,x,f,d,T,"next",y)}function T(y){e(I,x,f,d,T,"throw",y)}d(void 0)})}}g.d(te,{A:()=>t})},1635:(Qe,te,g)=>{"use strict";function l(r,v,V,N){var ze,ne=arguments.length,Ee=ne<3?v:null===N?N=Object.getOwnPropertyDescriptor(v,V):N;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Ee=Reflect.decorate(r,v,V,N);else for(var qe=r.length-1;qe>=0;qe--)(ze=r[qe])&&(Ee=(ne<3?ze(Ee):ne>3?ze(v,V,Ee):ze(v,V))||Ee);return ne>3&&Ee&&Object.defineProperty(v,V,Ee),Ee}function F(r,v,V,N){return new(V||(V=Promise))(function(Ee,ze){function qe(X){try{se(N.next(X))}catch(me){ze(me)}}function Ke(X){try{se(N.throw(X))}catch(me){ze(me)}}function se(X){X.done?Ee(X.value):function ne(Ee){return Ee instanceof V?Ee:new V(function(ze){ze(Ee)})}(X.value).then(qe,Ke)}se((N=N.apply(r,v||[])).next())})}function ie(r){return this instanceof ie?(this.v=r,this):new ie(r)}function ge(r,v,V){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var ne,N=V.apply(r,v||[]),Ee=[];return ne={},qe("next"),qe("throw"),qe("return",function ze(fe){return function(ke){return Promise.resolve(ke).then(fe,me)}}),ne[Symbol.asyncIterator]=function(){return this},ne;function qe(fe,ke){N[fe]&&(ne[fe]=function(mt){return new Promise(function(_e,be){Ee.push([fe,mt,_e,be])>1||Ke(fe,mt)})},ke&&(ne[fe]=ke(ne[fe])))}function Ke(fe,ke){try{!function se(fe){fe.value instanceof ie?Promise.resolve(fe.value.v).then(X,me):ce(Ee[0][2],fe)}(N[fe](ke))}catch(mt){ce(Ee[0][3],mt)}}function X(fe){Ke("next",fe)}function me(fe){Ke("throw",fe)}function ce(fe,ke){fe(ke),Ee.shift(),Ee.length&&Ke(Ee[0][0],Ee[0][1])}}function Me(r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var V,v=r[Symbol.asyncIterator];return v?v.call(r):(r=function $(r){var v="function"==typeof Symbol&&Symbol.iterator,V=v&&r[v],N=0;if(V)return V.call(r);if(r&&"number"==typeof r.length)return{next:function(){return r&&N>=r.length&&(r=void 0),{value:r&&r[N++],done:!r}}};throw new TypeError(v?"Object is not iterable.":"Symbol.iterator is not defined.")}(r),V={},N("next"),N("throw"),N("return"),V[Symbol.asyncIterator]=function(){return this},V);function N(Ee){V[Ee]=r[Ee]&&function(ze){return new Promise(function(qe,Ke){!function ne(Ee,ze,qe,Ke){Promise.resolve(Ke).then(function(se){Ee({value:se,done:qe})},ze)}(qe,Ke,(ze=r[Ee](ze)).done,ze.value)})}}}g.d(te,{AQ:()=>ge,Cg:()=>l,N3:()=>ie,sH:()=>F,xN:()=>Me}),"function"==typeof SuppressedError&&SuppressedError},3219:Qe=>{"use strict";Qe.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"}}')},2951:Qe=>{"use strict";Qe.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"}}')},4589:Qe=>{"use strict";Qe.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"}')},3241:Qe=>{"use strict";Qe.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"}}')},1636:Qe=>{"use strict";Qe.exports={rE:"6.5.5"}},5579:Qe=>{"use strict";Qe.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"}')}},Qe=>{Qe(Qe.s=3471)}]); \ No newline at end of file diff --git a/frontend/main.4f7f075c33c518c3.js b/frontend/main.4f7f075c33c518c3.js deleted file mode 100644 index 3c3f1dc2..00000000 --- a/frontend/main.4f7f075c33c518c3.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[179],{234:(Fe,q,p)=>{"use strict";p.d(q,{$A:()=>v,$W:()=>B,BL:()=>C,CX:()=>E,EK:()=>se,El:()=>j,HI:()=>ae,HJ:()=>M,Hc:()=>y,I8:()=>I,JK:()=>Ct,Mf:()=>l,Nr:()=>De,OG:()=>D,QJ:()=>R,Rd:()=>ct,Sf:()=>O,TM:()=>J,UR:()=>n,VD:()=>qe,W:()=>d,WM:()=>ee,WO:()=>he,Wi:()=>fe,X3:()=>X,YP:()=>Ke,YX:()=>h,Z8:()=>W,ZH:()=>Ze,Zu:()=>ve,_9:()=>Be,_E:()=>k,aL:()=>Je,as:()=>s,cQ:()=>ue,d7:()=>It,dh:()=>ce,e9:()=>Ae,eF:()=>P,eM:()=>pe,en:()=>rt,g6:()=>ye,i9:()=>We,kL:()=>S,lv:()=>xe,mI:()=>A,n7:()=>r,nE:()=>le,oV:()=>Me,pW:()=>f,pd:()=>m,u0:()=>H,uT:()=>ut,v_:()=>g,wD:()=>w,yl:()=>re,z:()=>ie});var e=p(4221),t=p(2154);const y=(0,e.PH)(t.AB.UPDATE_API_CALL_STATUS_CLN,(0,e.Ky)()),A=(0,e.PH)(t.AB.RESET_CLN_STORE,(0,e.Ky)()),l=(0,e.PH)(t.AB.SET_CHILD_NODE_SETTINGS_CLN,(0,e.Ky)()),w=(0,e.PH)(t.AB.FETCH_PAGE_SETTINGS_CLN),m=(0,e.PH)(t.AB.SET_PAGE_SETTINGS_CLN,(0,e.Ky)()),P=(0,e.PH)(t.AB.SAVE_PAGE_SETTINGS_CLN,(0,e.Ky)()),d=(0,e.PH)(t.AB.FETCH_INFO_CLN,(0,e.Ky)()),E=(0,e.PH)(t.AB.SET_INFO_CLN,(0,e.Ky)()),M=(0,e.PH)(t.AB.FETCH_FEE_RATES_CLN,(0,e.Ky)()),I=(0,e.PH)(t.AB.SET_FEE_RATES_CLN,(0,e.Ky)()),k=(0,e.PH)(t.AB.GET_NEW_ADDRESS_CLN,(0,e.Ky)()),B=((0,e.PH)(t.AB.SET_NEW_ADDRESS_CLN,(0,e.Ky)()),(0,e.PH)(t.AB.FETCH_PEERS_CLN)),W=(0,e.PH)(t.AB.SET_PEERS_CLN,(0,e.Ky)()),j=(0,e.PH)(t.AB.SAVE_NEW_PEER_CLN,(0,e.Ky)()),X=((0,e.PH)(t.AB.NEWLY_ADDED_PEER_CLN,(0,e.Ky)()),(0,e.PH)(t.AB.ADD_PEER_CLN,(0,e.Ky)())),ie=(0,e.PH)(t.AB.DETACH_PEER_CLN,(0,e.Ky)()),se=(0,e.PH)(t.AB.REMOVE_PEER_CLN,(0,e.Ky)()),ue=(0,e.PH)(t.AB.FETCH_PAYMENTS_CLN),ae=(0,e.PH)(t.AB.SET_PAYMENTS_CLN,(0,e.Ky)()),Me=(0,e.PH)(t.AB.SEND_PAYMENT_CLN,(0,e.Ky)()),J=(0,e.PH)(t.AB.SEND_PAYMENT_STATUS_CLN,(0,e.Ky)()),he=(0,e.PH)(t.AB.GET_QUERY_ROUTES_CLN,(0,e.Ky)()),S=(0,e.PH)(t.AB.SET_QUERY_ROUTES_CLN,(0,e.Ky)()),n=(0,e.PH)(t.AB.FETCH_CHANNELS_CLN),s=(0,e.PH)(t.AB.SET_CHANNELS_CLN,(0,e.Ky)()),f=(0,e.PH)(t.AB.UPDATE_CHANNEL_CLN,(0,e.Ky)()),h=(0,e.PH)(t.AB.SAVE_NEW_CHANNEL_CLN,(0,e.Ky)()),C=(0,e.PH)(t.AB.CLOSE_CHANNEL_CLN,(0,e.Ky)()),D=(0,e.PH)(t.AB.REMOVE_CHANNEL_CLN,(0,e.Ky)()),O=(0,e.PH)(t.AB.PEER_LOOKUP_CLN,(0,e.Ky)()),v=(0,e.PH)(t.AB.CHANNEL_LOOKUP_CLN,(0,e.Ky)()),r=(0,e.PH)(t.AB.INVOICE_LOOKUP_CLN,(0,e.Ky)()),g=(0,e.PH)(t.AB.SET_LOOKUP_CLN,(0,e.Ky)()),H=(0,e.PH)(t.AB.GET_FORWARDING_HISTORY_CLN,(0,e.Ky)()),R=(0,e.PH)(t.AB.SET_FORWARDING_HISTORY_CLN,(0,e.Ky)()),ee=(0,e.PH)(t.AB.FETCH_INVOICES_CLN),De=(0,e.PH)(t.AB.SET_INVOICES_CLN,(0,e.Ky)()),ct=(0,e.PH)(t.AB.SAVE_NEW_INVOICE_CLN,(0,e.Ky)()),Ke=(0,e.PH)(t.AB.ADD_INVOICE_CLN,(0,e.Ky)()),Je=(0,e.PH)(t.AB.UPDATE_INVOICE_CLN,(0,e.Ky)()),ye=(0,e.PH)(t.AB.DELETE_EXPIRED_INVOICE_CLN,(0,e.Ky)()),fe=(0,e.PH)(t.AB.SET_CHANNEL_TRANSACTION_CLN,(0,e.Ky)()),xe=((0,e.PH)(t.AB.SET_CHANNEL_TRANSACTION_RES_CLN,(0,e.Ky)()),(0,e.PH)(t.AB.FETCH_UTXO_BALANCES_CLN)),le=(0,e.PH)(t.AB.SET_UTXO_BALANCES_CLN,(0,e.Ky)()),pe=(0,e.PH)(t.AB.FETCH_OFFER_INVOICE_CLN,(0,e.Ky)()),qe=(0,e.PH)(t.AB.SET_OFFER_INVOICE_CLN,(0,e.Ky)()),re=(0,e.PH)(t.AB.FETCH_OFFERS_CLN),ve=(0,e.PH)(t.AB.SET_OFFERS_CLN,(0,e.Ky)()),ce=(0,e.PH)(t.AB.SAVE_NEW_OFFER_CLN,(0,e.Ky)()),Ze=(0,e.PH)(t.AB.ADD_OFFER_CLN,(0,e.Ky)()),We=(0,e.PH)(t.AB.DISABLE_OFFER_CLN,(0,e.Ky)()),Ct=(0,e.PH)(t.AB.UPDATE_OFFER_CLN,(0,e.Ky)()),ut=(0,e.PH)(t.AB.FETCH_OFFER_BOOKMARKS_CLN),It=(0,e.PH)(t.AB.SET_OFFER_BOOKMARKS_CLN,(0,e.Ky)()),Ae=(0,e.PH)(t.AB.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,e.Ky)()),Be=(0,e.PH)(t.AB.DELETE_OFFER_BOOKMARK_CLN,(0,e.Ky)()),rt=(0,e.PH)(t.AB.REMOVE_OFFER_BOOKMARK_CLN,(0,e.Ky)())},9125:(Fe,q,p)=>{"use strict";p.d(q,{J:()=>Me});var e=p(5154),t=p(8645),y=p(2096),A=p(1631),l=p(9773),w=p(7398),m=p(6306),P=p(3315),d=p(6820),E=p(2154),M=p(9103),I=p(234),k=p(3468),z=p(5440),B=p(9212),W=p(9862),j=p(4221),K=p(5813),X=p(6339),ie=p(5980),se=p(4190),ue=p(2285),ae=p(6814);let Me=(()=>{class J{constructor(S,n,s,f,h,C,D,O,v){this.actions=S,this.httpClient=n,this.store=s,this.sessionService=f,this.commonService=h,this.logger=C,this.router=D,this.wsService=O,this.location=v,this.CHILD_API_URL=E.T5+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new t.x,new t.x,new t.x],this.infoFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_INFO_CLN),(0,A.z)(r=>(this.flgInitialized=!1,this.store.dispatch((0,M.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,I.Hc)({payload:{action:"FetchInfo",status:E.Bn.INITIATED}})),this.store.dispatch((0,M.ac)({payload:E.m6.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+E.vv.GETINFO_API).pipe((0,l.R)(this.actions.pipe((0,e.l4)(E.pg.SET_SELECTED_NODE))),(0,w.U)(g=>(this.logger.info(g),this.CLN_VERISON=g.version||"",g.chains&&g.chains.length&&g.chains[0]&&"object"==typeof g.chains[0]&&g.chains[0].hasOwnProperty("chain")&&g?.chains[0].chain&&g?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&g?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,I.Hc)({payload:{action:"FetchInfo",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.GET_NODE_INFO})),this.store.dispatch((0,M.ts)()),setTimeout(()=>{this.store.dispatch((0,M.qR)({payload:{data:{type:E.n_.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:E.pg.LOGOUT}):(this.initializeRemainingData(g,r.payload.loadPage),this.store.dispatch((0,I.Hc)({payload:{action:"FetchInfo",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.GET_NODE_INFO})),{type:E.AB.SET_INFO_CLN,payload:g||{}}))),(0,m.K)(g=>{const H=this.commonService.extractErrorCode(g),R="ETIMEDOUT"===H?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(g);return this.router.navigate(["/error"],{state:{errorCode:H,errorMessage:R}}),this.handleErrorWithoutAlert("FetchInfo",E.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:H,error:R}),(0,y.of)({type:E.pg.VOID})})))))),this.fetchFeeRatesCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_FEE_RATES_CLN),(0,A.z)(r=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchFeeRates"+r.payload,status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.NETWORK_API+"/feeRates",{style:r.payload}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"FetchFeeRates"+r.payload,status:E.Bn.COMPLETED}})),{type:E.AB.SET_FEE_RATES_CLN,payload:g||{}})),(0,m.K)(g=>(this.handleErrorWithoutAlert("FetchFeeRates"+r.payload,E.m6.NO_SPINNER,"Fetching Fee Rates Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.getNewAddressCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.GET_NEW_ADDRESS_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+E.vv.ON_CHAIN_API+"/newaddr",{addresstype:r.payload.addressCode}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,M.uO)({payload:E.m6.GENERATE_NEW_ADDRESS})),{type:E.AB.SET_NEW_ADDRESS_CLN,payload:g&&g[r.payload.addressCode]?g[r.payload.addressCode]:{}})),(0,m.K)(g=>(this.handleErrorWithAlert("GenerateNewAddress",E.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+E.vv.ON_CHAIN_API,g),(0,y.of)({type:E.pg.VOID})))))))),this.setNewAddressCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SET_NEW_ADDRESS_CLN),(0,w.U)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.peersFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_PEERS_CLN),(0,A.z)(()=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchPeers",status:E.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+E.vv.PEERS_API).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.Hc)({payload:{action:"FetchPeers",status:E.Bn.COMPLETED}})),{type:E.AB.SET_PEERS_CLN,payload:r||[]})),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchPeers",E.m6.NO_SPINNER,"Fetching Peers Failed.",r),(0,y.of)({type:E.pg.VOID})))))))),this.saveNewPeerCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SAVE_NEW_PEER_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.CONNECT_PEER})),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewPeer",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.PEERS_API,{id:r.payload.id}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewPeer",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.CONNECT_PEER})),this.store.dispatch((0,I.Z8)({payload:g||[]})),{type:E.AB.NEWLY_ADDED_PEER_CLN,payload:{peer:g.find(H=>0===r.payload.id.indexOf(H.id?H.id:""))}})),(0,m.K)(g=>(this.handleErrorWithoutAlert("SaveNewPeer",E.m6.CONNECT_PEER,"Peer Connection Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.detachPeerCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.DETACH_PEER_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+E.vv.PEERS_API+"/disconnect",{id:r.payload.id,force:r.payload.force}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,M.uO)({payload:E.m6.DISCONNECT_PEER})),this.store.dispatch((0,M.jW)({payload:"Peer Disconnected Successfully!"})),{type:E.AB.REMOVE_PEER_CLN,payload:{id:r.payload.id}})),(0,m.K)(g=>(this.handleErrorWithAlert("PeerDisconnect",E.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+E.vv.PEERS_API+"/"+r.payload.id,g),(0,y.of)({type:E.pg.VOID})))))))),this.channelsFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_CHANNELS_CLN),(0,A.z)(()=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchChannels",status:E.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+E.vv.CHANNELS_API+"/listPeerChannels"))),(0,w.U)(r=>{this.logger.info(r),this.store.dispatch((0,I.Hc)({payload:{action:"FetchChannels",status:E.Bn.COMPLETED}}));const g={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return r.forEach(H=>{"CHANNELD_NORMAL"===H.state?H.peer_connected?g.activeChannels.push(H):g.inactiveChannels.push(H):g.pendingChannels.push(H)}),{type:E.AB.SET_CHANNELS_CLN,payload:g}}),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchChannels",E.m6.NO_SPINNER,"Fetching Channels Failed.",r),(0,y.of)({type:E.pg.VOID}))))),this.openNewChannelCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SAVE_NEW_CHANNEL_CLN),(0,A.z)(r=>{this.store.dispatch((0,M.ac)({payload:E.m6.OPEN_CHANNEL})),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewChannel",status:E.Bn.INITIATED}}));const g={id:r.payload.peerId,amount:r.payload.amount,feerate:r.payload.feeRate,announce:r.payload.announce};return r.payload.minconf&&(g.minconf=r.payload.minconf),r.payload.utxos&&(g.utxos=r.payload.utxos),r.payload.requestAmount&&(g.request_amt=r.payload.requestAmount),r.payload.compactLease&&(g.compact_lease=r.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+E.vv.CHANNELS_API,g).pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewChannel",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.OPEN_CHANNEL})),this.store.dispatch((0,M.jW)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,I.lv)()),{type:E.AB.FETCH_CHANNELS_CLN})),(0,m.K)(H=>(this.handleErrorWithoutAlert("SaveNewChannel",E.m6.OPEN_CHANNEL,"Opening Channel Failed.",H),(0,y.of)({type:E.pg.VOID}))))}))),this.updateChannelCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.UPDATE_CHANNEL_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+E.vv.CHANNELS_API+"/setChannelFee",r.payload).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,M.uO)({payload:E.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,M.jW)("all"===r.payload.id?{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:E.AB.FETCH_CHANNELS_CLN})),(0,m.K)(g=>(this.handleErrorWithAlert("UpdateChannel",E.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+E.vv.CHANNELS_API,g),(0,y.of)({type:E.pg.VOID})))))))),this.closeChannelCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.CLOSE_CHANNEL_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:r.payload.force?E.m6.FORCE_CLOSE_CHANNEL:E.m6.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+E.vv.CHANNELS_API+"/close",{id:r.payload.channelId,unilateraltimeout:r.payload.force?1:null}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,M.uO)({payload:r.payload.force?E.m6.FORCE_CLOSE_CHANNEL:E.m6.CLOSE_CHANNEL})),this.store.dispatch((0,I.UR)()),this.store.dispatch((0,I.lv)()),this.store.dispatch((0,M.jW)({payload:"Channel Closed Successfully!"})),{type:E.AB.REMOVE_CHANNEL_CLN,payload:r.payload})),(0,m.K)(g=>(this.handleErrorWithAlert("CloseChannel",r.payload.force?E.m6.FORCE_CLOSE_CHANNEL:E.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+E.vv.CHANNELS_API,g),(0,y.of)({type:E.pg.VOID})))))))),this.paymentsFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_PAYMENTS_CLN),(0,A.z)(()=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchPayments",status:E.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+E.vv.PAYMENTS_API))),(0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.Hc)({payload:{action:"FetchPayments",status:E.Bn.COMPLETED}})),{type:E.AB.SET_PAYMENTS_CLN,payload:r||[]})),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchPayments",E.m6.NO_SPINNER,"Fetching Payments Failed.",r),(0,y.of)({type:E.pg.VOID}))))),this.fetchOfferInvoiceCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_OFFER_INVOICE_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.FETCH_INVOICE})),this.store.dispatch((0,I.Hc)({payload:{action:"FetchOfferInvoice",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.OFFERS_API+"/fetchOfferInvoice",r.payload).pipe((0,w.U)(g=>{this.logger.info(g),setTimeout(()=>{this.store.dispatch((0,I.Hc)({payload:{action:"FetchOfferInvoice",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.FETCH_INVOICE})),this.store.dispatch((0,I.VD)({payload:g||{}}))},500)}),(0,m.K)(g=>(this.handleErrorWithoutAlert("FetchOfferInvoice",E.m6.FETCH_INVOICE,"Offer Invoice Fetch Failed",g),(0,y.of)({type:E.pg.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SET_OFFER_INVOICE_CLN),(0,w.U)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.sendPaymentCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SEND_PAYMENT_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:r.payload.uiMessage})),this.store.dispatch((0,I.Hc)({payload:{action:"SendPayment",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.PAYMENTS_API,r.payload).pipe((0,w.U)(g=>{this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"SendPayment",status:E.Bn.COMPLETED}}));let H="Payment Sent Successfully!";g.saveToDBError&&(H="Payment Sent Successfully but Offer Saving to Database Failed."),g.saveToDBResponse&&"NA"!==g.saveToDBResponse&&(this.store.dispatch((0,I.e9)({payload:g.saveToDBResponse})),H="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,I.UR)()),this.store.dispatch((0,I.lv)()),this.store.dispatch((0,I.cQ)()),this.store.dispatch((0,M.uO)({payload:r.payload.uiMessage})),this.store.dispatch((0,M.jW)({payload:H})),this.store.dispatch((0,I.TM)({payload:g.paymentResponse}))},1e3)}),(0,m.K)(g=>(this.logger.error("Error: "+JSON.stringify(g)),r.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed.",g):this.handleErrorWithAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+E.vv.PAYMENTS_API,g),(0,y.of)({type:E.pg.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.GET_QUERY_ROUTES_CLN),(0,A.z)(r=>(this.store.dispatch((0,I.Hc)({payload:{action:"GetQueryRoutes",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.NETWORK_API+"/getRoute",{id:r.payload.destPubkey,amount_msat:r.payload.amount,riskfactor:0}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"GetQueryRoutes",status:E.Bn.COMPLETED}})),{type:E.AB.SET_QUERY_ROUTES_CLN,payload:g})),(0,m.K)(g=>(this.store.dispatch((0,I.kL)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",E.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+E.vv.NETWORK_API+"/getRoute",g),(0,y.of)({type:E.pg.VOID})))))))),this.setQueryRoutesCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SET_QUERY_ROUTES_CLN),(0,w.U)(r=>r.payload)),{dispatch:!1}),this.peerLookupCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.PEER_LOOKUP_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.SEARCHING_NODE})),this.store.dispatch((0,I.Hc)({payload:{action:"Lookup",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.NETWORK_API+"/listNodes",{id:r.payload}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"Lookup",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.SEARCHING_NODE})),{type:E.AB.SET_LOOKUP_CLN,payload:g})),(0,m.K)(g=>(this.handleErrorWithAlert("Lookup",E.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+E.vv.NETWORK_API+"/listNodes/"+r.payload,g),(0,y.of)({type:E.pg.VOID})))))))),this.channelLookupCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.CHANNEL_LOOKUP_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:r.payload.uiMessage})),this.store.dispatch((0,I.Hc)({payload:{action:"Lookup",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.NETWORK_API+"/listChannels",{short_channel_id:r.payload.shortChannelID}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"Lookup",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:r.payload.uiMessage})),{type:E.AB.SET_LOOKUP_CLN,payload:g})),(0,m.K)(g=>(r.payload.showError?this.handleErrorWithAlert("Lookup",r.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+E.vv.NETWORK_API+"/listChannels/"+r.payload.shortChannelID,g):this.store.dispatch((0,M.uO)({payload:r.payload.uiMessage})),this.store.dispatch((0,I.v_)({payload:[]})),(0,y.of)({type:E.pg.VOID})))))))),this.invoiceLookupCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.INVOICE_LOOKUP_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.SEARCHING_INVOICE})),this.store.dispatch((0,I.Hc)({payload:{action:"Lookup",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.INVOICES_API+"/lookup",{label:r.payload}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"Lookup",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.SEARCHING_INVOICE})),g.invoices&&g.invoices.length&&g.invoices.length>0&&this.store.dispatch((0,I.aL)({payload:g.invoices[0]})),{type:E.AB.SET_LOOKUP_CLN,payload:g.invoices&&g.invoices.length&&g.invoices.length>0?g.invoices[0]:g})),(0,m.K)(g=>(this.handleErrorWithoutAlert("Lookup",E.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",g),this.store.dispatch((0,M.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,y.of)({type:E.pg.VOID})))))))),this.setLookupCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SET_LOOKUP_CLN),(0,w.U)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.GET_FORWARDING_HISTORY_CLN),(0,A.z)(r=>{const g=r.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,I.Hc)({payload:{action:"FetchForwardingHistory"+g,status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.CHANNELS_API+"/listForwards",r.payload).pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,I.Hc)({payload:{action:"FetchForwardingHistory"+g,status:E.Bn.COMPLETED}})),r.payload.status===E.OO.FAILED?this.store.dispatch((0,I.QJ)({payload:{status:E.OO.FAILED,totalForwards:H.length,listForwards:H}})):r.payload.status===E.OO.LOCAL_FAILED?this.store.dispatch((0,I.QJ)({payload:{status:E.OO.LOCAL_FAILED,totalForwards:H.length,listForwards:H}})):r.payload.status===E.OO.SETTLED&&this.store.dispatch((0,I.QJ)({payload:{status:E.OO.SETTLED,totalForwards:H.length,listForwards:H}})),{type:E.pg.VOID})),(0,m.K)(H=>(this.handleErrorWithAlert("FetchForwardingHistory"+g,E.m6.NO_SPINNER,"Get "+r.payload.status+" Forwarding History Failed",this.CHILD_API_URL+E.vv.CHANNELS_API+"/listForwards",H),(0,y.of)({type:E.pg.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.DELETE_EXPIRED_INVOICE_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+E.vv.INVOICES_API+"/delete",{maxexpiry:r.payload}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,M.uO)({payload:E.m6.DELETE_INVOICE})),this.store.dispatch((0,M.jW)({payload:"Invoices Deleted Successfully!"})),{type:E.AB.FETCH_INVOICES_CLN})),(0,m.K)(g=>(this.handleErrorWithAlert("DeleteInvoices",E.m6.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+E.vv.INVOICES_API,g),(0,y.of)({type:E.pg.VOID})))))))),this.saveNewInvoiceCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SAVE_NEW_INVOICE_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.ADD_INVOICE})),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewInvoice",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.INVOICES_API,r.payload).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewInvoice",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.ADD_INVOICE})),g.amount_msat=r.payload.amount_msat,g.label=r.payload.label,g.expires_at=Math.round((new Date).getTime()/1e3+r.payload.expiry),g.description=r.payload.description,g.status="unpaid",setTimeout(()=>{this.store.dispatch((0,M.qR)({payload:{data:{invoice:g,newlyAdded:!0,component:d.y}}}))},200),{type:E.AB.ADD_INVOICE_CLN,payload:g})),(0,m.K)(g=>(this.handleErrorWithoutAlert("SaveNewInvoice",E.m6.ADD_INVOICE,"Add Invoice Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.saveNewOfferCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SAVE_NEW_OFFER_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.CREATE_OFFER})),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewOffer",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.OFFERS_API,r.payload).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"SaveNewOffer",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,M.qR)({payload:{data:{offer:g,newlyAdded:!0,component:z.k}}}))},100),{type:E.AB.ADD_OFFER_CLN,payload:g})),(0,m.K)(g=>(this.handleErrorWithoutAlert("SaveNewOffer",E.m6.CREATE_OFFER,"Create Offer Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.invoicesFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_INVOICES_CLN),(0,A.z)(()=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchInvoices",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.INVOICES_API+"/lookup",null))),(0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.Hc)({payload:{action:"FetchInvoices",status:E.Bn.COMPLETED}})),{type:E.AB.SET_INVOICES_CLN,payload:r})),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchInvoices",E.m6.NO_SPINNER,"Fetching Invoices Failed.",r),(0,y.of)({type:E.pg.VOID}))))),this.offersFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_OFFERS_CLN),(0,A.z)(r=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchOffers",status:E.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+E.vv.OFFERS_API).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"FetchOffers",status:E.Bn.COMPLETED}})),{type:E.AB.SET_OFFERS_CLN,payload:g.offers?g.offers:[]})),(0,m.K)(g=>(this.handleErrorWithoutAlert("FetchOffers",E.m6.NO_SPINNER,"Fetching Offers Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.offersDisableCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.DISABLE_OFFER_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.DISABLE_OFFER})),this.store.dispatch((0,I.Hc)({payload:{action:"DisableOffer",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.OFFERS_API+"/disableOffer",{offer_id:r.payload.offer_id}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"DisableOffer",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.DISABLE_OFFER})),this.store.dispatch((0,M.jW)({payload:"Offer Disabled Successfully!"})),{type:E.AB.UPDATE_OFFER_CLN,payload:{offer:g}})),(0,m.K)(g=>(this.handleErrorWithoutAlert("DisableOffer",E.m6.DISABLE_OFFER,"Disabling Offer Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.offerBookmarksFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_OFFER_BOOKMARKS_CLN),(0,A.z)(r=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchOfferBookmarks",status:E.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+E.vv.OFFERS_API+"/offerbookmarks").pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"FetchOfferBookmarks",status:E.Bn.COMPLETED}})),{type:E.AB.SET_OFFER_BOOKMARKS_CLN,payload:g||[]})),(0,m.K)(g=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",E.m6.NO_SPINNER,"Fetching Offer Bookmarks Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.peidOffersDeleteCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.DELETE_OFFER_BOOKMARK_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,I.Hc)({payload:{action:"DeleteOfferBookmark",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.OFFERS_API+"/offerbookmark/delete",{offer_str:r.payload.bolt12}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"DeleteOfferBookmark",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,M.jW)({payload:"Offer Bookmark Deleted Successfully!"})),{type:E.AB.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:r.payload.bolt12}})),(0,m.K)(g=>(this.handleErrorWithAlert("DeleteOfferBookmark",E.m6.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+E.vv.OFFERS_API+"/offerbookmark/"+r.payload.bolt12,g),(0,y.of)({type:E.pg.VOID})))))))),this.SetChannelTransactionCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SET_CHANNEL_TRANSACTION_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.SEND_FUNDS})),this.store.dispatch((0,I.Hc)({payload:{action:"SetChannelTransaction",status:E.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+E.vv.ON_CHAIN_API,r.payload).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"SetChannelTransaction",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.SEND_FUNDS})),this.store.dispatch((0,I.lv)()),{type:E.AB.SET_CHANNEL_TRANSACTION_RES_CLN,payload:g})),(0,m.K)(g=>(this.handleErrorWithoutAlert("SetChannelTransaction",E.m6.SEND_FUNDS,"Sending Fund Failed.",g),(0,y.of)({type:E.pg.VOID})))))))),this.utxoBalancesFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_UTXO_BALANCES_CLN),(0,A.z)(()=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchUTXOBalances",status:E.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+E.vv.ON_CHAIN_API+"/utxos"))),(0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.Hc)({payload:{action:"FetchUTXOBalances",status:E.Bn.COMPLETED}})),{type:E.AB.SET_UTXO_BALANCES_CLN,payload:r})),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchUTXOBalances",E.m6.NO_SPINNER,"Fetching UTXO and Balances Failed.",r),(0,y.of)({type:E.pg.VOID}))))),this.pageSettingsFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.FETCH_PAGE_SETTINGS_CLN),(0,A.z)(()=>(this.store.dispatch((0,I.Hc)({payload:{action:"FetchPageSettings",status:E.Bn.INITIATED}})),this.httpClient.get(E.vv.PAGE_SETTINGS_API).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.Hc)({payload:{action:"FetchPageSettings",status:E.Bn.COMPLETED}})),{type:E.AB.SET_PAGE_SETTINGS_CLN,payload:r||[]})),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchPageSettings",E.m6.NO_SPINNER,"Fetching Page Settings Failed.",r),(0,y.of)({type:E.pg.VOID})))))))),this.savePageSettingsCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(E.AB.SAVE_PAGE_SETTINGS_CLN),(0,A.z)(r=>(this.store.dispatch((0,M.ac)({payload:E.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,I.Hc)({payload:{action:"SavePageSettings",status:E.Bn.INITIATED}})),this.httpClient.post(E.vv.PAGE_SETTINGS_API,r.payload).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.Hc)({payload:{action:"SavePageSettings",status:E.Bn.COMPLETED}})),this.store.dispatch((0,M.uO)({payload:E.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,M.jW)({payload:"Page Layout Updated Successfully!"})),{type:E.AB.SET_PAGE_SETTINGS_CLN,payload:g||[]})),(0,m.K)(g=>(this.handleErrorWithAlert("SavePageSettings",E.m6.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",E.vv.PAGE_SETTINGS_API,g),(0,y.of)({type:E.pg.VOID})))))))),this.store.select(k.yA).pipe((0,l.R)(this.unSubs[0])).subscribe(r=>{r.FetchInfo.status!==E.Bn.COMPLETED&&r.FetchInfo.status!==E.Bn.ERROR||r.FetchChannels.status!==E.Bn.COMPLETED&&r.FetchChannels.status!==E.Bn.ERROR||r.FetchUTXOBalances.status!==E.Bn.COMPLETED&&r.FetchUTXOBalances.status!==E.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,M.uO)({payload:E.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,l.R)(this.unSubs[1])).subscribe(r=>{this.logger.info("Received new message from the service: "+JSON.stringify(r)),r&&r.data&&r.data[E.nM.INVOICE_PAYMENT]&&r.data[E.nM.INVOICE_PAYMENT].label&&this.store.dispatch((0,I.aL)({payload:r.data[E.nM.INVOICE_PAYMENT]}))})}initializeRemainingData(S,n){this.sessionService.setItem("clnUnlocked","true");const s={identity_pubkey:S.id,alias:S.alias,testnet:"testnet"===S.network.toLowerCase(),chains:S.chains,uris:S.uris,version:S.version,api_version:S.api_version,numberOfPendingChannels:S.num_pending_channels};this.store.dispatch((0,M.ac)({payload:E.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,M._V)({payload:s}));let f=this.location.path();f.includes("/lnd/")?f=f?.replace("/lnd/","/cln/"):f.includes("/ecl/")&&(f=f?.replace("/ecl/","/cln/")),(f.includes("/login")||f.includes("/error")||""===f||"HOME"===n||f.includes("?access-key="))&&(f="/cln/home"),this.router.navigate([f]),this.store.dispatch((0,I.WM)()),this.store.dispatch((0,I.UR)()),this.store.dispatch((0,I.lv)()),this.store.dispatch((0,I.HJ)({payload:"perkw"})),this.store.dispatch((0,I.HJ)({payload:"perkb"})),this.store.dispatch((0,I.$W)()),this.store.dispatch((0,I.cQ)())}handleErrorWithoutAlert(S,n,s,f){if(this.logger.error("ERROR IN: "+S+"\n"+JSON.stringify(f)),401===f.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,M.ts)()),this.store.dispatch((0,M.kS)()),this.store.dispatch((0,M.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,M.uO)({payload:n}));const h=this.commonService.extractErrorMessage(f,s);this.store.dispatch((0,I.Hc)({payload:{action:S,status:E.Bn.ERROR,statusCode:f.status.toString(),message:h}}))}}handleErrorWithAlert(S,n,s,f,h){if(this.logger.error(h),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,M.ts)()),this.store.dispatch((0,M.kS)()),this.store.dispatch((0,M.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,M.uO)({payload:n}));const C=this.commonService.extractErrorMessage(h);this.store.dispatch((0,M.qR)({payload:{data:{type:"ERROR",alertTitle:s,message:{code:h.status,message:C,URL:f},component:P.H}}})),this.store.dispatch((0,I.Hc)({payload:{action:S,status:E.Bn.ERROR,statusCode:h.status.toString(),message:C,URL:f}}))}}ngOnDestroy(){this.unSubs.forEach(S=>{S.next(null),S.complete()})}static#e=this.\u0275fac=function(n){return new(n||J)(B.LFG(e.eX),B.LFG(W.eN),B.LFG(j.yh),B.LFG(K.m),B.LFG(X.v),B.LFG(ie.mQ),B.LFG(se.F0),B.LFG(ue.d),B.LFG(ae.Ye))};static#t=this.\u0275prov=B.Yz7({token:J,factory:J.\u0275fac})}return J})()},3468:(Fe,q,p)=>{"use strict";p.d(q,{AS:()=>A,Ao:()=>ie,Bo:()=>B,EQ:()=>ae,Hz:()=>se,OL:()=>K,PP:()=>P,Wi:()=>d,XP:()=>k,Y_:()=>ue,ZW:()=>z,ey:()=>l,gc:()=>I,hx:()=>M,jK:()=>X,lK:()=>j,lw:()=>y,xQ:()=>W,yA:()=>m,zm:()=>E});var e=p(4221);const t=(0,e.ZF)("cln"),y=(0,e.P1)(t,J=>J.nodeSettings),A=(0,e.P1)(t,J=>({pageSettings:J.pageSettings,apiCallStatus:J.apisCallStatus.FetchPageSettings})),l=(0,e.P1)(t,J=>J.information),m=((0,e.P1)(t,J=>J.apisCallStatus.FetchInfo),(0,e.P1)(t,J=>J.apisCallStatus)),P=(0,e.P1)(t,J=>({payments:J.payments,apiCallStatus:J.apisCallStatus.FetchPayments})),d=(0,e.P1)(t,J=>({peers:J.peers,apiCallStatus:J.apisCallStatus.FetchPeers})),E=(0,e.P1)(t,J=>({feeRatesPerKB:J.feeRatesPerKB,apiCallStatus:J.apisCallStatus.FetchFeeRatesperkb})),M=(0,e.P1)(t,J=>({feeRatesPerKW:J.feeRatesPerKW,apiCallStatus:J.apisCallStatus.FetchFeeRatesperkw})),I=(0,e.P1)(t,J=>({listInvoices:J.invoices,apiCallStatus:J.apisCallStatus.FetchInvoices})),k=(0,e.P1)(t,J=>({utxos:J.utxos,balance:J.balance,localRemoteBalance:J.localRemoteBalance,apiCallStatus:J.apisCallStatus.FetchUTXOBalances})),z=(0,e.P1)(t,J=>({activeChannels:J.activeChannels,pendingChannels:J.pendingChannels,inactiveChannels:J.inactiveChannels,apiCallStatus:J.apisCallStatus.FetchChannels})),B=(0,e.P1)(t,J=>({forwardingHistory:J.forwardingHistory,apiCallStatus:J.apisCallStatus.FetchForwardingHistoryS})),W=(0,e.P1)(t,J=>({failedForwardingHistory:J.failedForwardingHistory,apiCallStatus:J.apisCallStatus.FetchForwardingHistoryF})),j=(0,e.P1)(t,J=>({localFailedForwardingHistory:J.localFailedForwardingHistory,apiCallStatus:J.apisCallStatus.FetchForwardingHistoryL})),K=(0,e.P1)(t,J=>({information:J.information,nodeSettings:J.nodeSettings,balance:J.balance})),X=(0,e.P1)(t,J=>({information:J.information,balance:J.balance,numPeers:J.peers.length})),ie=(0,e.P1)(t,J=>({information:J.information,balance:J.balance})),se=(0,e.P1)(t,J=>({information:J.information,nodeSettings:J.nodeSettings,fees:J.fees,apisCallStatus:[J.apisCallStatus.FetchInfo,J.apisCallStatus.FetchForwardingHistoryS]})),ue=(0,e.P1)(t,J=>({offers:J.offers,apiCallStatus:J.apisCallStatus.FetchOffers})),ae=(0,e.P1)(t,J=>({offersBookmarks:J.offersBookmarks,apiCallStatus:J.apisCallStatus.FetchOfferBookmarks}))},6820:(Fe,q,p)=>{"use strict";p.d(q,{y:()=>qe});var e=p(7700),t=p(590),y=p(8645),A=p(9773),l=p(2154),w=p(3468),m=p(9212),P=p(5980),d=p(6339),E=p(2939),M=p(4221),I=p(6814),k=p(5597),z=p(3814),B=p(7509),W=p(2296),j=p(5195),K=p(6385),X=p(5940),ie=p(2596),se=p(2279),ue=p(7313),ae=p(6985);function Me(re,ve){if(1&re&&m._UZ(0,"qr-code",33),2&re){const ce=m.oxw();m.Q6J("value",(null==ce.invoice?null:ce.invoice.bolt11)||(null==ce.invoice?null:ce.invoice.bolt12))("size",ce.qrWidth)("errorCorrectionLevel","L")}}function J(re,ve){1&re&&(m.TgZ(0,"span",34),m._uU(1,"N/A"),m.qZA())}const he=re=>({"mr-0":re});function S(re,ve){if(1&re&&m._UZ(0,"span",35),2&re){const ce=m.oxw();m.Q6J("ngClass",m.VKq(1,he,ce.screenSize===ce.screenSizeEnum.XS))}}function n(re,ve){if(1&re&&m._UZ(0,"span",36),2&re){const ce=m.oxw();m.Q6J("ngClass",m.VKq(1,he,ce.screenSize===ce.screenSizeEnum.XS))}}function s(re,ve){if(1&re&&m._UZ(0,"span",37),2&re){const ce=m.oxw();m.Q6J("ngClass",m.VKq(1,he,ce.screenSize===ce.screenSizeEnum.XS))}}function f(re,ve){if(1&re&&m._UZ(0,"qr-code",33),2&re){const ce=m.oxw();m.Q6J("value",(null==ce.invoice?null:ce.invoice.bolt11)||(null==ce.invoice?null:ce.invoice.bolt12))("size",ce.qrWidth)("errorCorrectionLevel","L")}}function h(re,ve){1&re&&(m.TgZ(0,"span",38),m._uU(1,"QR Code Not Applicable"),m.qZA())}function C(re,ve){1&re&&m._UZ(0,"mat-divider",39)}function D(re,ve){if(1&re&&(m.TgZ(0,"div",19)(1,"div",40),m._UZ(2,"fa-icon",41),m.TgZ(3,"span"),m._uU(4),m.qZA()()()),2&re){const ce=m.oxw();m.xp6(2),m.Q6J("icon",ce.faExclamationTriangle),m.xp6(2),m.Oqu(null==ce.invoice?null:ce.invoice.warning_capacity)}}function O(re,ve){1&re&&(m.ynx(0),m._uU(1," (zero amount) "),m.BQk())}function v(re,ve){1&re&&m._UZ(0,"span",47)}const r=()=>[];function g(re,ve){if(1&re&&(m.TgZ(0,"div",43)(1,"div",44)(2,"span",45),m._uU(3),m.ALo(4,"number"),m.qZA(),m.YNc(5,v,1,0,"span",46),m.qZA()()),2&re){const ce=m.oxw(2);m.xp6(3),m.hij("",m.lcZ(4,2,(null==ce.invoice?null:ce.invoice.amount_received_msat)/1e3)," Sats"),m.xp6(2),m.Q6J("ngForOf",m.DdM(4,r).constructor(35))}}function H(re,ve){if(1&re&&(m.TgZ(0,"div"),m._uU(1),m.ALo(2,"number"),m.qZA()),2&re){const ce=m.oxw(2);m.xp6(1),m.hij("",m.lcZ(2,1,(null==ce.invoice?null:ce.invoice.amount_received_msat)/1e3)," Sats")}}function R(re,ve){if(1&re&&(m.ynx(0),m.YNc(1,g,6,5,"div",42)(2,H,3,3,"div",23),m.BQk()),2&re){const ce=m.oxw();m.xp6(1),m.Q6J("ngIf",ce.flgInvoicePaid),m.xp6(1),m.Q6J("ngIf",!ce.flgInvoicePaid)}}function ee(re,ve){1&re&&(m.TgZ(0,"span"),m._uU(1,"-"),m.qZA())}function De(re,ve){1&re&&m._UZ(0,"mat-spinner",49),2&re&&m.Q6J("diameter",20)}function ct(re,ve){if(1&re&&(m.ynx(0),m.YNc(1,ee,2,0,"span",23)(2,De,1,1,"mat-spinner",48),m.BQk()),2&re){const ce=m.oxw();m.xp6(1),m.Q6J("ngIf","unpaid"!==(null==ce.invoice?null:ce.invoice.status)),m.xp6(1),m.Q6J("ngIf","unpaid"===(null==ce.invoice?null:ce.invoice.status))}}function Ke(re,ve){if(1&re&&(m.TgZ(0,"div"),m._UZ(1,"mat-divider",25),m.TgZ(2,"div",19)(3,"div",26)(4,"h4",21),m._uU(5,"Payment Hash"),m.qZA(),m.TgZ(6,"span",24),m._uU(7),m.qZA()()(),m._UZ(8,"mat-divider",25),m.TgZ(9,"div",19)(10,"div",26)(11,"h4",21),m._uU(12,"Label"),m.qZA(),m.TgZ(13,"span",24),m._uU(14),m.qZA()()(),m._UZ(15,"mat-divider",25),m.qZA()),2&re){const ce=m.oxw();m.xp6(7),m.Oqu(null==ce.invoice?null:ce.invoice.payment_hash),m.xp6(7),m.Oqu(null==ce.invoice?null:ce.invoice.label)}}function Je(re,ve){1&re&&(m.TgZ(0,"p"),m._uU(1,"Show Advanced"),m.qZA())}function ye(re,ve){1&re&&(m.TgZ(0,"p"),m._uU(1,"Hide Advanced"),m.qZA())}function fe(re,ve){if(1&re){const ce=m.EpF();m.TgZ(0,"button",50),m.NdJ("copied",function(We){m.CHM(ce);const Ct=m.oxw();return m.KtG(Ct.onCopyPayment(We))}),m._uU(1,"Copy Invoice"),m.qZA()}if(2&re){const ce=m.oxw();m.Q6J("payload",(null==ce.invoice?null:ce.invoice.bolt11)||(null==ce.invoice?null:ce.invoice.bolt12))}}function de(re,ve){if(1&re){const ce=m.EpF();m.TgZ(0,"button",51),m.NdJ("click",function(){m.CHM(ce);const We=m.oxw();return m.KtG(We.onClose())}),m._uU(1,"OK"),m.qZA()}}const xe=re=>({"display-none":re}),le=re=>({"xs-scroll-y":re}),pe=(re,ve)=>({"mt-2":re,"mt-1":ve});let qe=(()=>{class re{constructor(ce,Ze,We,Ct,ut,It){this.dialogRef=ce,this.data=Ze,this.logger=We,this.commonService=Ct,this.snackBar=ut,this.store=It,this.faReceipt=t.dLy,this.faExclamationTriangle=t.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.cu,this.flgInvoicePaid=!1,this.unSubs=[new y.x,new y.x,new y.x,new y.x,new y.x]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS&&(this.qrWidth=220),this.store.select(w.gc).pipe((0,A.R)(this.unSubs[1])).subscribe(ce=>{const We=(ce.listInvoices.invoices||[])?.find(Ct=>Ct.payment_hash===this.invoice.payment_hash)||null;We&&(this.invoice=We),this.invoiceStatus!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(this.invoice),this.logger.info(this.invoiceStatus),this.logger.info(We),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()})}static#e=this.\u0275fac=function(Ze){return new(Ze||re)(m.Y36(e.so),m.Y36(e.WI),m.Y36(P.mQ),m.Y36(d.v),m.Y36(E.ux),m.Y36(M.yh))};static#t=this.\u0275cmp=m.Xpm({type:re,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 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",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"],["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(Ze,We){if(1&Ze&&(m.TgZ(0,"div",0)(1,"div",1),m.YNc(2,Me,1,3,"qr-code",2)(3,J,2,0,"span",3),m.qZA(),m.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),m._UZ(7,"fa-icon",7),m.TgZ(8,"span",8),m._uU(9),m.YNc(10,S,1,3,"span",9)(11,n,1,3,"span",10)(12,s,1,3,"span",11),m.qZA()(),m.TgZ(13,"button",12),m.NdJ("click",function(){return We.onClose()}),m._uU(14,"X"),m.qZA()(),m.TgZ(15,"mat-card-content",13)(16,"div",14)(17,"div",15),m.YNc(18,f,1,3,"qr-code",2)(19,h,2,0,"span",16),m.qZA(),m.YNc(20,C,1,0,"mat-divider",17)(21,D,5,2,"div",18),m.TgZ(22,"div",19)(23,"div",20)(24,"h4",21),m._uU(25),m.qZA(),m.TgZ(26,"span",22),m._uU(27),m.ALo(28,"number"),m.YNc(29,O,2,0,"ng-container",23),m.qZA()(),m.TgZ(30,"div",20)(31,"h4",21),m._uU(32,"Amount Received"),m.qZA(),m.TgZ(33,"span",24),m.YNc(34,R,3,2,"ng-container",23)(35,ct,3,2,"ng-container",23),m.qZA()()(),m._UZ(36,"mat-divider",25),m.TgZ(37,"div",19)(38,"div",20)(39,"h4",21),m._uU(40,"Date Expiry"),m.qZA(),m.TgZ(41,"span",22),m._uU(42),m.ALo(43,"date"),m.qZA()(),m.TgZ(44,"div",20)(45,"h4",21),m._uU(46,"Date Settled"),m.qZA(),m.TgZ(47,"span",22),m._uU(48),m.ALo(49,"date"),m.qZA()()(),m._UZ(50,"mat-divider",25),m.TgZ(51,"div",19)(52,"div",26)(53,"h4",21),m._uU(54,"Description"),m.qZA(),m.TgZ(55,"span",22),m._uU(56),m.qZA()()(),m._UZ(57,"mat-divider",25),m.TgZ(58,"div",19)(59,"div",26)(60,"h4",21),m._uU(61),m.qZA(),m.TgZ(62,"span",24),m._uU(63),m.qZA()()(),m.YNc(64,Ke,16,2,"div",23),m.TgZ(65,"div",27)(66,"button",28),m.NdJ("click",function(){return We.onShowAdvanced()}),m.YNc(67,Je,2,0,"p",29)(68,ye,2,0,"ng-template",null,30,m.W1O),m.qZA(),m.YNc(70,fe,2,1,"button",31)(71,de,2,0,"button",32),m.qZA()()()()()),2&Ze){const Ct=m.MAs(69);m.xp6(1),m.Q6J("fxLayoutAlign",null!=We.invoice&&We.invoice.bolt11&&""!==(null==We.invoice?null:We.invoice.bolt11)||null!=We.invoice&&We.invoice.bolt12&&""!==(null==We.invoice?null:We.invoice.bolt12)?"center start":"center center")("ngClass",m.VKq(40,xe,We.screenSize===We.screenSizeEnum.XS||We.screenSize===We.screenSizeEnum.SM)),m.xp6(1),m.Q6J("ngIf",(null==We.invoice?null:We.invoice.bolt11)&&""!==(null==We.invoice?null:We.invoice.bolt11)||(null==We.invoice?null:We.invoice.bolt12)&&""!==(null==We.invoice?null:We.invoice.bolt12)),m.xp6(1),m.Q6J("ngIf",!(null!=We.invoice&&We.invoice.bolt11||null!=We.invoice&&We.invoice.bolt12)),m.xp6(4),m.Q6J("icon",We.faReceipt),m.xp6(2),m.hij(" ",We.screenSize===We.screenSizeEnum.XS?We.newlyAdded?"Created":"Invoice":We.newlyAdded?"Invoice Created":"Invoice Information"," "),m.xp6(1),m.Q6J("ngIf","paid"===(null==We.invoice?null:We.invoice.status)),m.xp6(1),m.Q6J("ngIf","unpaid"===(null==We.invoice?null:We.invoice.status)),m.xp6(1),m.Q6J("ngIf","expired"===(null==We.invoice?null:We.invoice.status)),m.xp6(3),m.Q6J("ngClass",m.VKq(42,le,We.screenSize===We.screenSizeEnum.XS)),m.xp6(2),m.Q6J("fxLayoutAlign",null!=We.invoice&&We.invoice.bolt11&&""!==(null==We.invoice?null:We.invoice.bolt11)||null!=We.invoice&&We.invoice.bolt12&&""!==(null==We.invoice?null:We.invoice.bolt12)?"center start":"center center")("ngClass",m.VKq(44,xe,We.screenSize!==We.screenSizeEnum.XS&&We.screenSize!==We.screenSizeEnum.SM)),m.xp6(1),m.Q6J("ngIf",(null==We.invoice?null:We.invoice.bolt11)&&""!==(null==We.invoice?null:We.invoice.bolt11)||(null==We.invoice?null:We.invoice.bolt12)&&""!==(null==We.invoice?null:We.invoice.bolt12)),m.xp6(1),m.Q6J("ngIf",!(null!=We.invoice&&We.invoice.bolt11||null!=We.invoice&&We.invoice.bolt12)),m.xp6(1),m.Q6J("ngIf",We.screenSize===We.screenSizeEnum.XS||We.screenSize===We.screenSizeEnum.SM),m.xp6(1),m.Q6J("ngIf",null==We.invoice?null:We.invoice.warning_capacity),m.xp6(4),m.Oqu(We.screenSize===We.screenSizeEnum.XS?"Amount":"Amount Requested"),m.xp6(2),m.hij(" ",m.lcZ(28,32,(null==We.invoice?null:We.invoice.amount_msat)/1e3||0)," Sats"),m.xp6(2),m.Q6J("ngIf",!(null!=We.invoice&&We.invoice.amount_msat)||"0"===(null==We.invoice?null:We.invoice.amount_msat)||"any"===(null==We.invoice?null:We.invoice.amount_msat)),m.xp6(5),m.Q6J("ngIf","paid"===(null==We.invoice?null:We.invoice.status)),m.xp6(1),m.Q6J("ngIf","paid"!==(null==We.invoice?null:We.invoice.status)),m.xp6(7),m.Oqu(m.xi3(43,34,1e3*(null==We.invoice?null:We.invoice.expires_at),"dd/MMM/y HH:mm")),m.xp6(6),m.Oqu(m.xi3(49,37,1e3*(null==We.invoice?null:We.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),m.xp6(8),m.Oqu((null==We.invoice?null:We.invoice.description)||"-"),m.xp6(5),m.hij("",null!=We.invoice&&We.invoice.bolt12?"Bolt12":null!=We.invoice&&We.invoice.bolt11&&!We.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),m.xp6(2),m.Oqu((null==We.invoice?null:We.invoice.bolt11)||(null==We.invoice?null:We.invoice.bolt12)),m.xp6(1),m.Q6J("ngIf",We.showAdvanced),m.xp6(1),m.Q6J("ngClass",m.WLB(46,pe,!We.showAdvanced,We.showAdvanced)),m.xp6(2),m.Q6J("ngIf",!We.showAdvanced)("ngIfElse",Ct),m.xp6(3),m.Q6J("ngIf",(null==We.invoice?null:We.invoice.bolt11)&&""!==(null==We.invoice?null:We.invoice.bolt11)||(null==We.invoice?null:We.invoice.bolt12)&&""!==(null==We.invoice?null:We.invoice.bolt12)),m.xp6(1),m.Q6J("ngIf",!(null!=We.invoice&&We.invoice.bolt11||null!=We.invoice&&We.invoice.bolt12))}},dependencies:[I.mk,I.sg,I.O5,k.BN,z.xw,z.Wh,z.yH,B.oO,W.lW,j.dn,j.dk,K.d,X.Ou,ie.gM,se.uU,ue.y,ae.h,I.JJ,I.uU]})}return re})()},5440:(Fe,q,p)=>{"use strict";p.d(q,{k:()=>ee});var e=p(7700),t=p(590),y=p(8645),A=p(9773),l=p(2154),w=p(9212),m=p(5980),P=p(6339),d=p(2939),E=p(6046),M=p(6814),I=p(5597),k=p(3814),z=p(7509),B=p(2296),W=p(5195),j=p(6385),K=p(2279),X=p(7313),ie=p(6985);function se(De,ct){if(1&De&&w._UZ(0,"qr-code",28),2&De){const Ke=w.oxw();w.Q6J("value",null==Ke.offer?null:Ke.offer.bolt12)("size",Ke.qrWidth)("errorCorrectionLevel","L")}}function ue(De,ct){1&De&&(w.TgZ(0,"span",29),w._uU(1,"N/A"),w.qZA())}function ae(De,ct){if(1&De&&w._UZ(0,"qr-code",28),2&De){const Ke=w.oxw();w.Q6J("value",null==Ke.offer?null:Ke.offer.bolt12)("size",Ke.qrWidth)("errorCorrectionLevel","L")}}function Me(De,ct){1&De&&(w.TgZ(0,"span",30),w._uU(1,"QR Code Not Applicable"),w.qZA())}function J(De,ct){1&De&&w._UZ(0,"mat-divider",31),2&De&&w.Q6J("inset",!0)}function he(De,ct){1&De&&w._UZ(0,"mat-divider",19)}function S(De,ct){if(1&De&&(w.TgZ(0,"div",15)(1,"div",16)(2,"h4",17),w._uU(3,"Used"),w.qZA(),w.TgZ(4,"span",18),w._uU(5),w.qZA()(),w.TgZ(6,"div",16)(7,"h4",17),w._uU(8,"Single Use"),w.qZA(),w.TgZ(9,"span",18),w._uU(10),w.qZA()()()),2&De){const Ke=w.oxw(2);w.xp6(5),w.hij(" ",null!=Ke.offer&&Ke.offer.used?null!=Ke.offer&&Ke.offer.used?"Yes":"No":"N/K"," "),w.xp6(5),w.hij(" ",null!=Ke.offer&&Ke.offer.single_use?null!=Ke.offer&&Ke.offer.single_use?"Yes":"No":"N/K"," ")}}function n(De,ct){1&De&&w._UZ(0,"mat-divider",19)}function s(De,ct){if(1&De&&(w.TgZ(0,"div",15)(1,"div",20)(2,"h4",17),w._uU(3,"Issuer"),w.qZA(),w.TgZ(4,"span",34),w._uU(5),w.qZA()()()),2&De){const Ke=w.oxw(2);w.xp6(5),w.Oqu(null==Ke.offerDecoded?null:Ke.offerDecoded.offer_issuer)}}function f(De,ct){1&De&&w._UZ(0,"mat-divider",19)}function h(De,ct){if(1&De&&(w.TgZ(0,"div",15)(1,"div",20)(2,"h4",17),w._uU(3,"Label"),w.qZA(),w.TgZ(4,"span",18),w._uU(5),w.qZA()()()),2&De){const Ke=w.oxw(2);w.xp6(5),w.Oqu(Ke.offer.label)}}function C(De,ct){if(1&De&&(w.TgZ(0,"div"),w.YNc(1,he,1,0,"mat-divider",32)(2,S,11,2,"div",33)(3,n,1,0,"mat-divider",32)(4,s,6,1,"div",33)(5,f,1,0,"mat-divider",32)(6,h,6,1,"div",33),w._UZ(7,"mat-divider",19),w.TgZ(8,"div",15)(9,"div",20)(10,"h4",17),w._uU(11,"Offer ID"),w.qZA(),w.TgZ(12,"span",18),w._uU(13),w.qZA()()(),w._UZ(14,"mat-divider",19),w.TgZ(15,"div",15)(16,"div",20)(17,"h4",17),w._uU(18,"Offer Node ID"),w.qZA(),w.TgZ(19,"span",18),w._uU(20),w.qZA()()(),w._UZ(21,"mat-divider",19),w.qZA()),2&De){const Ke=w.oxw();w.xp6(1),w.Q6J("ngIf",(null==Ke.offer?null:Ke.offer.used)||(null==Ke.offer?null:Ke.offer.single_use)),w.xp6(1),w.Q6J("ngIf",(null==Ke.offer?null:Ke.offer.used)||(null==Ke.offer?null:Ke.offer.single_use)),w.xp6(1),w.Q6J("ngIf",null==Ke.offerDecoded?null:Ke.offerDecoded.issuer),w.xp6(1),w.Q6J("ngIf",null==Ke.offerDecoded?null:Ke.offerDecoded.issuer),w.xp6(1),w.Q6J("ngIf",Ke.offer.label),w.xp6(1),w.Q6J("ngIf",Ke.offer.label),w.xp6(7),w.Oqu(Ke.offerDecoded.offer_id),w.xp6(7),w.Oqu(null==Ke.offerDecoded?null:Ke.offerDecoded.offer_node_id)}}function D(De,ct){1&De&&(w.TgZ(0,"p"),w._uU(1,"Show Advanced"),w.qZA())}function O(De,ct){1&De&&(w.TgZ(0,"p"),w._uU(1,"Hide Advanced"),w.qZA())}function v(De,ct){if(1&De){const Ke=w.EpF();w.TgZ(0,"button",35),w.NdJ("copied",function(ye){w.CHM(Ke);const fe=w.oxw();return w.KtG(fe.onCopyOffer(ye))}),w._uU(1,"Copy Offer"),w.qZA()}if(2&De){const Ke=w.oxw();w.Q6J("payload",null==Ke.offer?null:Ke.offer.bolt12)}}function r(De,ct){if(1&De){const Ke=w.EpF();w.TgZ(0,"button",36),w.NdJ("click",function(){w.CHM(Ke);const ye=w.oxw();return w.KtG(ye.onClose())}),w._uU(1,"OK"),w.qZA()}}const g=De=>({"display-none":De}),H=De=>({"xs-scroll-y":De}),R=(De,ct)=>({"mt-2":De,"mt-1":ct});let ee=(()=>{class De{constructor(Ke,Je,ye,fe,de,xe){this.dialogRef=Ke,this.data=Je,this.logger=ye,this.commonService=fe,this.snackBar=de,this.dataService=xe,this.faReceipt=t.dLy,this.faExclamationTriangle=t.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.cu,this.flgOfferPaid=!1,this.unSubs=[new y.x,new y.x,new y.x,new y.x,new y.x]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,A.R)(this.unSubs[1])).subscribe(Ke=>{this.offerDecoded=Ke,this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat&&(this.offerDecoded.offer_amount_msat=0)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(Ke){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+Ke)}ngOnDestroy(){this.unSubs.forEach(Ke=>{Ke.next(null),Ke.complete()})}static#e=this.\u0275fac=function(Je){return new(Je||De)(w.Y36(e.so),w.Y36(e.WI),w.Y36(m.mQ),w.Y36(P.v),w.Y36(d.ux),w.Y36(E.D))};static#t=this.\u0275cmp=w.Xpm({type:De,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 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(Je,ye){if(1&Je&&(w.TgZ(0,"div",0)(1,"div",1),w.YNc(2,se,1,3,"qr-code",2)(3,ue,2,0,"span",3),w.qZA(),w.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),w._UZ(7,"fa-icon",7),w.TgZ(8,"span",8),w._uU(9),w.qZA()(),w.TgZ(10,"button",9),w.NdJ("click",function(){return ye.onClose()}),w._uU(11,"X"),w.qZA()(),w.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),w.YNc(15,ae,1,3,"qr-code",2)(16,Me,2,0,"span",13),w.qZA(),w.YNc(17,J,1,1,"mat-divider",14),w.TgZ(18,"div",15)(19,"div",16)(20,"h4",17),w._uU(21,"Amount Requested (Sats)"),w.qZA(),w.TgZ(22,"span",18),w._uU(23),w.ALo(24,"number"),w.qZA()(),w.TgZ(25,"div",16)(26,"h4",17),w._uU(27,"Valid"),w.qZA(),w.TgZ(28,"span",18),w._uU(29),w.qZA()()(),w._UZ(30,"mat-divider",19),w.TgZ(31,"div",15)(32,"div",20)(33,"h4",17),w._uU(34,"Description"),w.qZA(),w.TgZ(35,"span",18),w._uU(36),w.qZA()()(),w._UZ(37,"mat-divider",19),w.TgZ(38,"div",15)(39,"div",20)(40,"h4",17),w._uU(41,"Offer"),w.qZA(),w.TgZ(42,"span",18),w._uU(43),w.qZA()()(),w.YNc(44,C,22,8,"div",21),w.TgZ(45,"div",22)(46,"button",23),w.NdJ("click",function(){return ye.onShowAdvanced()}),w.YNc(47,D,2,0,"p",24)(48,O,2,0,"ng-template",null,25,w.W1O),w.qZA(),w.YNc(50,v,2,1,"button",26)(51,r,2,0,"button",27),w.qZA()()()()()),2&Je){const fe=w.MAs(49);w.xp6(1),w.Q6J("fxLayoutAlign",null!=ye.offer&&ye.offer.bolt12&&""!==(null==ye.offer?null:ye.offer.bolt12)?"center start":"center center")("ngClass",w.VKq(24,g,ye.screenSize===ye.screenSizeEnum.XS||ye.screenSize===ye.screenSizeEnum.SM)),w.xp6(1),w.Q6J("ngIf",(null==ye.offer?null:ye.offer.bolt12)&&""!==(null==ye.offer?null:ye.offer.bolt12)),w.xp6(1),w.Q6J("ngIf",!(null!=ye.offer&&ye.offer.bolt12)||""===(null==ye.offer?null:ye.offer.bolt12)),w.xp6(4),w.Q6J("icon",ye.faReceipt),w.xp6(2),w.Oqu(ye.screenSize===ye.screenSizeEnum.XS?ye.newlyAdded?"Created":"Offer":ye.newlyAdded?"Offer Created":"Offer Information"),w.xp6(3),w.Q6J("ngClass",w.VKq(26,H,ye.screenSize===ye.screenSizeEnum.XS)),w.xp6(2),w.Q6J("fxLayoutAlign",null!=ye.offer&&ye.offer.bolt12&&""!==(null==ye.offer?null:ye.offer.bolt12)?"center start":"center center")("ngClass",w.VKq(28,g,ye.screenSize!==ye.screenSizeEnum.XS&&ye.screenSize!==ye.screenSizeEnum.SM)),w.xp6(1),w.Q6J("ngIf",(null==ye.offer?null:ye.offer.bolt12)&&""!==(null==ye.offer?null:ye.offer.bolt12)),w.xp6(1),w.Q6J("ngIf",!(null!=ye.offer&&ye.offer.bolt12)||""===(null==ye.offer?null:ye.offer.bolt12)),w.xp6(1),w.Q6J("ngIf",ye.screenSize===ye.screenSizeEnum.XS||ye.screenSize===ye.screenSizeEnum.SM),w.xp6(6),w.hij(" ",null!=ye.offerDecoded&&ye.offerDecoded.offer_amount_msat&&0!==(null==ye.offerDecoded?null:ye.offerDecoded.offer_amount_msat)?w.lcZ(24,22,(null==ye.offerDecoded?null:ye.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),w.xp6(6),w.hij(" ",null!=ye.offerDecoded&&ye.offerDecoded.valid?null!=ye.offerDecoded&&ye.offerDecoded.valid?"Yes":"No":"N/K"," "),w.xp6(7),w.hij(" ",null==ye.offerDecoded?null:ye.offerDecoded.offer_description," "),w.xp6(7),w.Oqu(null==ye.offer?null:ye.offer.bolt12),w.xp6(1),w.Q6J("ngIf",ye.showAdvanced),w.xp6(1),w.Q6J("ngClass",w.WLB(30,R,!ye.showAdvanced,ye.showAdvanced)),w.xp6(2),w.Q6J("ngIf",!ye.showAdvanced)("ngIfElse",fe),w.xp6(3),w.Q6J("ngIf",(null==ye.offer?null:ye.offer.bolt12)&&""!==(null==ye.offer?null:ye.offer.bolt12)),w.xp6(1),w.Q6J("ngIf",!(null!=ye.offer&&ye.offer.bolt12)||""===(null==ye.offer?null:ye.offer.bolt12))}},dependencies:[M.mk,M.O5,I.BN,k.xw,k.Wh,k.yH,z.oO,B.lW,W.dn,W.dk,j.d,K.uU,X.y,ie.h,M.JJ]})}return De})()},2249:(Fe,q,p)=>{"use strict";p.d(q,{$W:()=>se,BL:()=>C,Bw:()=>K,CX:()=>E,DJ:()=>re,EK:()=>S,El:()=>ae,Fd:()=>A,GD:()=>he,HG:()=>ie,HI:()=>v,Iy:()=>ct,Lf:()=>De,Nr:()=>ye,OG:()=>D,On:()=>X,QZ:()=>y,RX:()=>I,SN:()=>M,Sf:()=>le,TM:()=>R,TW:()=>B,UR:()=>k,WM:()=>Je,WO:()=>r,YP:()=>de,YX:()=>f,Z$:()=>fe,Z8:()=>ue,Zr:()=>l,_E:()=>n,aL:()=>xe,cQ:()=>O,eF:()=>P,eN:()=>z,i:()=>W,iL:()=>j,iz:()=>d,kL:()=>g,mC:()=>ee,n7:()=>pe,oV:()=>H,pW:()=>h,pd:()=>m,ti:()=>ve,wD:()=>w});var e=p(4221),t=p(2154);const y=(0,e.PH)(t.lr.UPDATE_API_CALL_STATUS_ECL,(0,e.Ky)()),A=(0,e.PH)(t.lr.RESET_ECL_STORE,(0,e.Ky)()),l=(0,e.PH)(t.lr.SET_CHILD_NODE_SETTINGS_ECL,(0,e.Ky)()),w=(0,e.PH)(t.lr.FETCH_PAGE_SETTINGS_ECL),m=(0,e.PH)(t.lr.SET_PAGE_SETTINGS_ECL,(0,e.Ky)()),P=(0,e.PH)(t.lr.SAVE_PAGE_SETTINGS_ECL,(0,e.Ky)()),d=(0,e.PH)(t.lr.FETCH_INFO_ECL,(0,e.Ky)()),E=(0,e.PH)(t.lr.SET_INFO_ECL,(0,e.Ky)()),M=(0,e.PH)(t.lr.FETCH_FEES_ECL),I=(0,e.PH)(t.lr.SET_FEES_ECL,(0,e.Ky)()),k=(0,e.PH)(t.lr.FETCH_CHANNELS_ECL,(0,e.Ky)()),z=(0,e.PH)(t.lr.SET_ACTIVE_CHANNELS_ECL,(0,e.Ky)()),B=(0,e.PH)(t.lr.SET_PENDING_CHANNELS_ECL,(0,e.Ky)()),W=(0,e.PH)(t.lr.SET_INACTIVE_CHANNELS_ECL,(0,e.Ky)()),j=(0,e.PH)(t.lr.FETCH_ONCHAIN_BALANCE_ECL),K=(0,e.PH)(t.lr.SET_ONCHAIN_BALANCE_ECL,(0,e.Ky)()),X=(0,e.PH)(t.lr.SET_LIGHTNING_BALANCE_ECL,(0,e.Ky)()),ie=(0,e.PH)(t.lr.SET_CHANNELS_STATUS_ECL,(0,e.Ky)()),se=(0,e.PH)(t.lr.FETCH_PEERS_ECL),ue=(0,e.PH)(t.lr.SET_PEERS_ECL,(0,e.Ky)()),ae=(0,e.PH)(t.lr.SAVE_NEW_PEER_ECL,(0,e.Ky)()),he=((0,e.PH)(t.lr.NEWLY_ADDED_PEER_ECL,(0,e.Ky)()),(0,e.PH)(t.lr.ADD_PEER_ECL,(0,e.Ky)()),(0,e.PH)(t.lr.DETACH_PEER_ECL,(0,e.Ky)())),S=(0,e.PH)(t.lr.REMOVE_PEER_ECL,(0,e.Ky)()),n=(0,e.PH)(t.lr.GET_NEW_ADDRESS_ECL),f=((0,e.PH)(t.lr.SET_NEW_ADDRESS_ECL,(0,e.Ky)()),(0,e.PH)(t.lr.SAVE_NEW_CHANNEL_ECL,(0,e.Ky)())),h=(0,e.PH)(t.lr.UPDATE_CHANNEL_ECL,(0,e.Ky)()),C=(0,e.PH)(t.lr.CLOSE_CHANNEL_ECL,(0,e.Ky)()),D=(0,e.PH)(t.lr.REMOVE_CHANNEL_ECL,(0,e.Ky)()),O=(0,e.PH)(t.lr.FETCH_PAYMENTS_ECL),v=(0,e.PH)(t.lr.SET_PAYMENTS_ECL,(0,e.Ky)()),r=(0,e.PH)(t.lr.GET_QUERY_ROUTES_ECL,(0,e.Ky)()),g=(0,e.PH)(t.lr.SET_QUERY_ROUTES_ECL,(0,e.Ky)()),H=(0,e.PH)(t.lr.SEND_PAYMENT_ECL,(0,e.Ky)()),R=(0,e.PH)(t.lr.SEND_PAYMENT_STATUS_ECL,(0,e.Ky)()),ee=(0,e.PH)(t.lr.FETCH_TRANSACTIONS_ECL),De=(0,e.PH)(t.lr.SET_TRANSACTIONS_ECL,(0,e.Ky)()),ct=(0,e.PH)(t.lr.SEND_ONCHAIN_FUNDS_ECL,(0,e.Ky)()),Je=((0,e.PH)(t.lr.SEND_ONCHAIN_FUNDS_RES_ECL,(0,e.Ky)()),(0,e.PH)(t.lr.FETCH_INVOICES_ECL)),ye=(0,e.PH)(t.lr.SET_INVOICES_ECL,(0,e.Ky)()),fe=(0,e.PH)(t.lr.CREATE_INVOICE_ECL,(0,e.Ky)()),de=(0,e.PH)(t.lr.ADD_INVOICE_ECL,(0,e.Ky)()),xe=(0,e.PH)(t.lr.UPDATE_INVOICE_ECL,(0,e.Ky)()),le=(0,e.PH)(t.lr.PEER_LOOKUP_ECL,(0,e.Ky)()),pe=(0,e.PH)(t.lr.INVOICE_LOOKUP_ECL,(0,e.Ky)()),re=((0,e.PH)(t.lr.SET_LOOKUP_ECL,(0,e.Ky)()),(0,e.PH)(t.lr.UPDATE_CHANNEL_STATE_ECL,(0,e.Ky)())),ve=(0,e.PH)(t.lr.UPDATE_RELAYED_PAYMENT_ECL,(0,e.Ky)())},9337:(Fe,q,p)=>{"use strict";p.d(q,{o:()=>ae});var e=p(5154),t=p(8645),y=p(2096),A=p(1631),l=p(9773),w=p(7398),m=p(6306),P=p(3315),d=p(2154),E=p(9103),M=p(9671),I=p(2249),k=p(9930),z=p(9212),B=p(9862),W=p(4221),j=p(5813),K=p(6339),X=p(5980),ie=p(4190),se=p(2285),ue=p(6814);let ae=(()=>{class Me{constructor(he,S,n,s,f,h,C,D,O){this.actions=he,this.httpClient=S,this.store=n,this.sessionService=s,this.commonService=f,this.logger=h,this.router=C,this.wsService=D,this.location=O,this.CHILD_API_URL=d.T5+"/ecl",this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new t.x,new t.x,new t.x],this.infoFetchECL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_INFO_ECL),(0,A.z)(v=>(this.flgInitialized=!1,this.store.dispatch((0,E.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,E.ac)({payload:d.m6.GET_NODE_INFO})),this.store.dispatch((0,I.QZ)({payload:{action:"FetchInfo",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.GETINFO_API).pipe((0,l.R)(this.actions.pipe((0,e.l4)(d.pg.SET_SELECTED_NODE))),(0,w.U)(r=>(this.logger.info(r),this.initializeRemainingData(r,v.payload.loadPage),this.store.dispatch((0,I.QZ)({payload:{action:"FetchInfo",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.GET_NODE_INFO})),{type:d.lr.SET_INFO_ECL,payload:r||{}})),(0,m.K)(r=>{const g=this.commonService.extractErrorCode(r),H=503===g?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(r);return this.router.navigate(["/error"],{state:{errorCode:g,errorMessage:H}}),this.handleErrorWithoutAlert("FetchInfo",d.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:g,error:H}),(0,y.of)({type:d.pg.VOID})})))))),this.fetchFees=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_FEES_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchFees",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.FEES_API+"/fees").pipe((0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchFees",status:d.Bn.COMPLETED}})),{type:d.lr.SET_FEES_ECL,payload:v||{}})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchFees",d.m6.NO_SPINNER,"Fetching Fees Failed.",v),(0,y.of)({type:d.pg.VOID})))))))),this.fetchPayments=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_PAYMENTS_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchPayments",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.FEES_API+"/payments").pipe((0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchPayments",status:d.Bn.COMPLETED}})),{type:d.lr.SET_PAYMENTS_ECL,payload:v||{}})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchPayments",d.m6.NO_SPINNER,"Fetching Payments Failed.",v),(0,y.of)({type:d.pg.VOID})))))))),this.channelsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_CHANNELS_ECL),(0,A.z)(v=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchChannels",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.CHANNELS_API).pipe((0,w.U)(r=>(this.logger.info(r),this.rawChannelsList=r,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,I.QZ)({payload:{action:"FetchChannels",status:d.Bn.COMPLETED}})),v.payload&&v.payload.fetchPayments&&this.store.dispatch((0,I.cQ)()),{type:d.pg.VOID})),(0,m.K)(r=>(this.handleErrorWithoutAlert("FetchChannels",d.m6.NO_SPINNER,"Fetching Channels Failed.",r),(0,y.of)({type:d.pg.VOID})))))))),this.fetchOnchainBalance=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_ONCHAIN_BALANCE_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchOnchainBalance",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.ON_CHAIN_API+"/balance"))),(0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchOnchainBalance",status:d.Bn.COMPLETED}})),{type:d.lr.SET_ONCHAIN_BALANCE_ECL,payload:v||{}})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchOnchainBalance",d.m6.NO_SPINNER,"Fetching Onchain Balances Failed.",v),(0,y.of)({type:d.pg.VOID}))))),this.peersFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_PEERS_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchPeers",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.PEERS_API).pipe((0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchPeers",status:d.Bn.COMPLETED}})),{type:d.lr.SET_PEERS_ECL,payload:v||[]})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchPeers",d.m6.NO_SPINNER,"Fetching Peers Failed.",v),(0,y.of)({type:d.pg.VOID})))))))),this.getNewAddress=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.GET_NEW_ADDRESS_ECL),(0,A.z)(()=>(this.store.dispatch((0,E.ac)({payload:d.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+d.vv.ON_CHAIN_API).pipe((0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,E.uO)({payload:d.m6.GENERATE_NEW_ADDRESS})),{type:d.lr.SET_NEW_ADDRESS_ECL,payload:v})),(0,m.K)(v=>(this.handleErrorWithAlert("GetNewAddress",d.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+d.vv.ON_CHAIN_API,v),(0,y.of)({type:d.pg.VOID})))))))),this.setNewAddress=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SET_NEW_ADDRESS_ECL),(0,w.U)(v=>(this.logger.info(v.payload),v.payload))),{dispatch:!1}),this.saveNewPeer=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SAVE_NEW_PEER_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.CONNECT_PEER})),this.store.dispatch((0,I.QZ)({payload:{action:"SaveNewPeer",status:d.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.vv.PEERS_API+(v.payload.id.includes("@")?"?uri=":"?nodeId=")+v.payload.id,{}).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.QZ)({payload:{action:"SaveNewPeer",status:d.Bn.COMPLETED}})),r=r||[],this.store.dispatch((0,E.uO)({payload:d.m6.CONNECT_PEER})),this.store.dispatch((0,I.Z8)({payload:r})),{type:d.lr.NEWLY_ADDED_PEER_ECL,payload:{peer:r.find(g=>g.nodeId===(v.payload.id.includes("@")?v.payload.id.substring(0,v.payload.id.indexOf("@")):v.payload.id))}})),(0,m.K)(r=>(this.handleErrorWithoutAlert("SaveNewPeer",d.m6.CONNECT_PEER,"Peer Connection Failed.",r),(0,y.of)({type:d.pg.VOID})))))))),this.detachPeer=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.DETACH_PEER_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+d.vv.PEERS_API+"/"+v.payload.nodeId).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,E.uO)({payload:d.m6.DISCONNECT_PEER})),this.store.dispatch((0,E.jW)({payload:"Disconnecting Peer!"})),{type:d.lr.REMOVE_PEER_ECL,payload:{nodeId:v.payload.nodeId}})),(0,m.K)(r=>(this.handleErrorWithAlert("DisconnectPeer",d.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+d.vv.PEERS_API+"/"+v.payload.nodeId,r),(0,y.of)({type:d.pg.VOID})))))))),this.openNewChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SAVE_NEW_CHANNEL_ECL),(0,A.z)(v=>{this.store.dispatch((0,E.ac)({payload:d.m6.OPEN_CHANNEL})),this.store.dispatch((0,I.QZ)({payload:{action:"SaveNewChannel",status:d.Bn.INITIATED}}));const r={nodeId:v.payload.nodeId,fundingSatoshis:v.payload.amount,announceChannel:!v.payload.private};return v.payload.feeRate&&v.payload.feeRate>0&&(r.fundingFeerateSatByte=v.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+d.vv.CHANNELS_API,r).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,I.QZ)({payload:{action:"SaveNewChannel",status:d.Bn.COMPLETED}})),this.store.dispatch((0,I.$W)()),this.store.dispatch((0,I.iL)()),this.store.dispatch((0,E.uO)({payload:d.m6.OPEN_CHANNEL})),this.store.dispatch((0,E.jW)({payload:"Channel Added Successfully!"})),{type:d.lr.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,m.K)(g=>(this.handleErrorWithoutAlert("SaveNewChannel",d.m6.OPEN_CHANNEL,"Opening Channel Failed.",g),(0,y.of)({type:d.pg.VOID}))))}))),this.updateChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.UPDATE_CHANNEL_ECL),(0,A.z)(v=>{this.store.dispatch((0,E.ac)({payload:d.m6.UPDATE_CHAN_POLICY}));let r="?feeBaseMsat="+v.payload.baseFeeMsat+"&feeProportionalMillionths="+v.payload.feeRate;return r=v.payload.nodeIds?r+"&nodeIds="+v.payload.nodeIds:v.payload.nodeId?r+"&nodeId="+v.payload.nodeId:v.payload.channelIds?r+"&channelIds="+v.payload.channelIds:r+"&channelId="+v.payload.channelId,this.httpClient.post(this.CHILD_API_URL+d.vv.CHANNELS_API+"/updateRelayFee"+r,{}).pipe((0,w.U)(g=>(this.logger.info(g),this.store.dispatch((0,E.uO)({payload:d.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,E.jW)(v.payload.nodeIds||v.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:d.lr.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,m.K)(g=>(this.handleErrorWithAlert("UpdateChannels",d.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+d.vv.CHANNELS_API,g),(0,y.of)({type:d.pg.VOID}))))}))),this.closeChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.CLOSE_CHANNEL_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:v.payload.force?d.m6.FORCE_CLOSE_CHANNEL:d.m6.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+d.vv.CHANNELS_API+"?channelId="+v.payload.channelId+"&force="+v.payload.force).pipe((0,w.U)(r=>(this.logger.info(r),setTimeout(()=>{this.store.dispatch((0,E.uO)({payload:v.payload.force?d.m6.FORCE_CLOSE_CHANNEL:d.m6.CLOSE_CHANNEL})),this.store.dispatch((0,I.UR)({payload:{fetchPayments:!1}})),this.store.dispatch((0,E.jW)({payload:v.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:d.pg.VOID})),(0,m.K)(r=>(this.handleErrorWithAlert("CloseChannel",v.payload.force?d.m6.FORCE_CLOSE_CHANNEL:d.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+d.vv.CHANNELS_API,r),(0,y.of)({type:d.pg.VOID})))))))),this.queryRoutesFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.GET_QUERY_ROUTES_ECL),(0,A.z)(v=>this.httpClient.get(this.CHILD_API_URL+d.vv.PAYMENTS_API+"/route?nodeId="+v.payload.nodeId+"&amountMsat="+v.payload.amount).pipe((0,w.U)(r=>(this.logger.info(r),{type:d.lr.SET_QUERY_ROUTES_ECL,payload:r})),(0,m.K)(r=>(this.store.dispatch((0,I.kL)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",d.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+d.vv.PAYMENTS_API+"/route?nodeId="+v.payload.nodeId+"&amountMsat="+v.payload.amount,r),(0,y.of)({type:d.pg.VOID}))))))),this.setQueryRoutes=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SET_QUERY_ROUTES_ECL),(0,w.U)(v=>v.payload)),{dispatch:!1}),this.sendPayment=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SEND_PAYMENT_ECL),(0,A.z)(v=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,E.ac)({payload:d.m6.SEND_PAYMENT})),this.store.dispatch((0,I.QZ)({payload:{action:"SendPayment",status:d.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.vv.PAYMENTS_API,v.payload).pipe((0,w.U)(r=>(this.logger.info(r),this.latestPaymentRes=r,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:d.pg.VOID})),(0,m.K)(r=>(this.logger.error("Error: "+JSON.stringify(r)),v.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",d.m6.SEND_PAYMENT,"Send Payment Failed.",r):this.handleErrorWithAlert("SendPayment",d.m6.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+d.vv.PAYMENTS_API,r),(0,y.of)({type:d.pg.VOID})))))))),this.transactionsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_TRANSACTIONS_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchTransactions",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.ON_CHAIN_API+"/transactions?count=1000&skip=0"))),(0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchTransactions",status:d.Bn.COMPLETED}})),{type:d.lr.SET_TRANSACTIONS_ECL,payload:v||[]})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchTransactions",d.m6.NO_SPINNER,"Fetching Transactions Failed.",v),(0,y.of)({type:d.pg.VOID}))))),this.SendOnchainFunds=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SEND_ONCHAIN_FUNDS_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.SEND_FUNDS})),this.store.dispatch((0,I.QZ)({payload:{action:"SendOnchainFunds",status:d.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.vv.ON_CHAIN_API,v.payload).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.QZ)({payload:{action:"SendOnchainFunds",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.SEND_FUNDS})),this.store.dispatch((0,I.iL)()),{type:d.lr.SEND_ONCHAIN_FUNDS_RES_ECL,payload:r})),(0,m.K)(r=>(this.handleErrorWithoutAlert("SendOnchainFunds",d.m6.SEND_FUNDS,"Sending Fund Failed.",r),(0,y.of)({type:d.pg.VOID})))))))),this.createInvoice=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.CREATE_INVOICE_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.CREATE_INVOICE})),this.store.dispatch((0,I.QZ)({payload:{action:"CreateInvoice",status:d.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.vv.INVOICES_API,v.payload).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.QZ)({payload:{action:"CreateInvoice",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.CREATE_INVOICE})),r.timestamp=Math.round((new Date).getTime()/1e3),r.expiresAt=Math.round(r.timestamp+v.payload.expireIn),r.description=v.payload.description,r.status="unpaid",setTimeout(()=>{this.store.dispatch((0,E.qR)({payload:{data:{invoice:r,newlyAdded:!0,component:M.R}}}))},200),{type:d.lr.ADD_INVOICE_ECL,payload:r})),(0,m.K)(r=>(this.handleErrorWithoutAlert("CreateInvoice",d.m6.CREATE_INVOICE,"Create Invoice Failed.",r),(0,y.of)({type:d.pg.VOID})))))))),this.invoicesFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_INVOICES_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchInvoices",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.INVOICES_API).pipe((0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchInvoices",status:d.Bn.COMPLETED}})),{type:d.lr.SET_INVOICES_ECL,payload:v})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchInvoices",d.m6.NO_SPINNER,"Fetching Invoices Failed.",v),(0,y.of)({type:d.pg.VOID})))))))),this.peerLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.PEER_LOOKUP_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.SEARCHING_NODE})),this.store.dispatch((0,I.QZ)({payload:{action:"Lookup",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.NETWORK_API+"/nodes/"+v.payload).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.QZ)({payload:{action:"Lookup",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.SEARCHING_NODE})),{type:d.lr.SET_LOOKUP_ECL,payload:r})),(0,m.K)(r=>(this.handleErrorWithAlert("Lookup",d.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+d.vv.NETWORK_API+"/nodes/"+v.payload,r),(0,y.of)({type:d.pg.VOID})))))))),this.invoiceLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.INVOICE_LOOKUP_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.SEARCHING_INVOICE})),this.store.dispatch((0,I.QZ)({payload:{action:"Lookup",status:d.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.vv.INVOICES_API+"/"+v.payload).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.QZ)({payload:{action:"Lookup",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.SEARCHING_INVOICE})),this.store.dispatch((0,I.aL)({payload:r})),{type:d.lr.SET_LOOKUP_ECL,payload:r})),(0,m.K)(r=>(this.handleErrorWithoutAlert("Lookup",d.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",r),this.store.dispatch((0,E.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,y.of)({type:d.pg.VOID})))))))),this.setLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SET_LOOKUP_ECL),(0,w.U)(v=>(this.logger.info(v.payload),v.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.FETCH_PAGE_SETTINGS_ECL),(0,A.z)(()=>(this.store.dispatch((0,I.QZ)({payload:{action:"FetchPageSettings",status:d.Bn.INITIATED}})),this.httpClient.get(d.vv.PAGE_SETTINGS_API).pipe((0,w.U)(v=>(this.logger.info(v),this.store.dispatch((0,I.QZ)({payload:{action:"FetchPageSettings",status:d.Bn.COMPLETED}})),{type:d.lr.SET_PAGE_SETTINGS_ECL,payload:v||[]})),(0,m.K)(v=>(this.handleErrorWithoutAlert("FetchPageSettings",d.m6.NO_SPINNER,"Fetching Page Settings Failed.",v),(0,y.of)({type:d.pg.VOID})))))))),this.savePageSettingsCL=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(d.lr.SAVE_PAGE_SETTINGS_ECL),(0,A.z)(v=>(this.store.dispatch((0,E.ac)({payload:d.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,I.QZ)({payload:{action:"SavePageSettings",status:d.Bn.INITIATED}})),this.httpClient.post(d.vv.PAGE_SETTINGS_API,v.payload).pipe((0,w.U)(r=>(this.logger.info(r),this.store.dispatch((0,I.QZ)({payload:{action:"SavePageSettings",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,E.jW)({payload:"Page Layout Updated Successfully!"})),{type:d.lr.SET_PAGE_SETTINGS_ECL,payload:r||[]})),(0,m.K)(r=>(this.handleErrorWithAlert("SavePageSettings",d.m6.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",d.vv.PAGE_SETTINGS_API,r),(0,y.of)({type:d.pg.VOID})))))))),this.handleSendPaymentStatus=v=>{this.store.dispatch((0,I.QZ)({payload:{action:"SendPayment",status:d.Bn.COMPLETED}})),this.store.dispatch((0,E.uO)({payload:d.m6.SEND_PAYMENT})),this.store.dispatch((0,I.TM)({payload:this.latestPaymentRes})),this.store.dispatch((0,I.UR)({payload:{fetchPayments:!0}})),this.store.dispatch((0,E.jW)({payload:v}))},this.store.select(k.yA).pipe((0,l.R)(this.unSubs[0])).subscribe(v=>{v.FetchInfo.status!==d.Bn.COMPLETED&&v.FetchInfo.status!==d.Bn.ERROR||v.FetchFees.status!==d.Bn.COMPLETED&&v.FetchFees.status!==d.Bn.ERROR||v.FetchOnchainBalance.status!==d.Bn.COMPLETED&&v.FetchOnchainBalance.status!==d.Bn.ERROR||v.FetchChannels.status!==d.Bn.COMPLETED&&v.FetchChannels.status!==d.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,E.uO)({payload:d.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,l.R)(this.unSubs[1])).subscribe(v=>{this.logger.info("Received new message from the service: "+JSON.stringify(v));let r="";if(v)switch(v.type){case d.$v.PAYMENT_SENT:v&&v.id&&this.latestPaymentRes===v.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Sent: "+(v.paymentHash?"with payment hash "+v.paymentHash:JSON.stringify(v)),this.handleSendPaymentStatus(r));break;case d.$v.PAYMENT_FAILED:v&&v.id&&this.latestPaymentRes===v.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Failed: "+(v.failures&&v.failures.length&&v.failures.length>0&&v.failures[0].t?v.failures[0].t:v.failures&&v.failures.length&&v.failures.length>0&&v.failures[0].e&&v.failures[0].e.failureMessage?v.failures[0].e.failureMessage:JSON.stringify(v)),this.handleSendPaymentStatus(r));break;case d.$v.PAYMENT_RECEIVED:this.store.dispatch((0,I.aL)({payload:v}));break;case d.$v.PAYMENT_RELAYED:delete v.source,v.amountIn=Math.round((v.amountIn||0)/1e3),v.amountOut=Math.round((v.amountOut||0)/1e3),v.timestamp.unix&&(v.timestamp=1e3*v.timestamp.unix),this.store.dispatch((0,I.ti)({payload:v}));break;case d.$v.CHANNEL_STATE_CHANGED:"NORMAL"===v.currentState||"CLOSED"===v.currentState?(this.rawChannelsList=this.rawChannelsList?.map(g=>(g.channelId===v.channelId&&g.nodeId===v.remoteNodeId&&(g.state=v.currentState),g)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,I.DJ)({payload:v}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(v))}})}setChannelsAndStatusAndBalances(){let he=0,S=0,n=0,s={localBalance:0,remoteBalance:0},f=[];const h=[],C=[],D={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((O,v)=>{O&&("NORMAL"===O.state?(he=(O.toLocal||0)+(O.toRemote||0),S+=O.toLocal||0,n+=O.toRemote||0,O.balancedness=0===he?1:+(1-Math.abs(((O.toLocal||0)-(O.toRemote||0))/he)).toFixed(3),f.push(O),D.active.channels=D.active.channels+1,D.active.capacity=D.active.capacity+(O.toLocal||0)):O.state?.includes("WAIT")||O.state?.includes("CLOSING")||O.state?.includes("SYNCING")?(O.state=O.state?.replace(/_/g," "),h.push(O),D.pending.channels=D.pending.channels+1,D.pending.capacity=D.pending.capacity+(O.toLocal||0)):(O.state=O.state?.replace(/_/g," "),C.push(O),D.inactive.channels=D.inactive.channels+1,D.inactive.capacity=D.inactive.capacity+(O.toLocal||0)))}),s={localBalance:S,remoteBalance:n},f=this.commonService.sortDescByKey(f,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(f)),this.logger.info("Pending Channels: "+JSON.stringify(h)),this.logger.info("Inactive Channels: "+JSON.stringify(C)),this.logger.info("Lightning Balances: "+JSON.stringify(s)),this.logger.info("Channels Status: "+JSON.stringify(D)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:f,pending:h,inactive:C,balances:s,status:D})),this.store.dispatch((0,I.eN)({payload:f})),this.store.dispatch((0,I.TW)({payload:h})),this.store.dispatch((0,I.i)({payload:C})),this.store.dispatch((0,I.On)({payload:s})),this.store.dispatch((0,I.HG)({payload:D}))}initializeRemainingData(he,S){this.sessionService.setItem("eclUnlocked","true");const n={identity_pubkey:he.nodeId,alias:he.alias,testnet:"testnet"===he.network,chains:he.publicAddresses,uris:he.uris,version:he.version,numberOfPendingChannels:0};this.store.dispatch((0,E.ac)({payload:d.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,E._V)({payload:n}));let s=this.location.path();s.includes("/lnd/")?s=s?.replace("/lnd/","/ecl/"):s.includes("/cln/")&&(s=s?.replace("/cln/","/ecl/")),(s.includes("/login")||s.includes("/error")||""===s||"HOME"===S||s.includes("?access-key="))&&(s="/ecl/home"),this.router.navigate([s]),this.store.dispatch((0,I.WM)()),this.store.dispatch((0,I.UR)({payload:{fetchPayments:!0}})),this.store.dispatch((0,I.SN)()),this.store.dispatch((0,I.iL)()),this.store.dispatch((0,I.$W)())}handleErrorWithoutAlert(he,S,n,s){this.logger.error("ERROR IN: "+he+"\n"+JSON.stringify(s)),401===s.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:S})),this.store.dispatch((0,I.QZ)({payload:{action:he,status:d.Bn.ERROR,statusCode:s.status.toString(),message:this.commonService.extractErrorMessage(s,n)}})))}handleErrorWithAlert(he,S,n,s,f){if(this.logger.error(f),401===f.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:S}));const h=this.commonService.extractErrorMessage(f);this.store.dispatch((0,E.qR)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:f.status,message:h,URL:s},component:P.H}}})),this.store.dispatch((0,I.QZ)({payload:{action:he,status:d.Bn.ERROR,statusCode:f.status.toString(),message:h,URL:s}}))}}ngOnDestroy(){this.unSubs.forEach(he=>{he.next(null),he.complete()})}static#e=this.\u0275fac=function(S){return new(S||Me)(z.LFG(e.eX),z.LFG(B.eN),z.LFG(W.yh),z.LFG(j.m),z.LFG(K.v),z.LFG(X.mQ),z.LFG(ie.F0),z.LFG(se.d),z.LFG(ue.Ye))};static#t=this.\u0275prov=z.Yz7({token:Me,factory:Me.\u0275fac})}return Me})()},9930:(Fe,q,p)=>{"use strict";p.d(q,{Bo:()=>j,Ef:()=>W,JG:()=>E,LR:()=>y,PP:()=>d,T$:()=>w,Xz:()=>z,dx:()=>B,kY:()=>K,nF:()=>A,yA:()=>P,yD:()=>l});var e=p(4221);const t=(0,e.ZF)("ecl"),y=(0,e.P1)(t,X=>X.nodeSettings),A=(0,e.P1)(t,X=>({pageSettings:X.pageSettings,apiCallStatus:X.apisCallStatus.FetchPageSettings})),l=(0,e.P1)(t,X=>X.information),w=(0,e.P1)(t,X=>({information:X.information,apiCallStatus:X.apisCallStatus.FetchInfo})),P=((0,e.P1)(t,X=>X.apisCallStatus.FetchInfo),(0,e.P1)(t,X=>X.apisCallStatus)),d=(0,e.P1)(t,X=>({payments:X.payments,apiCallStatus:X.apisCallStatus.FetchPayments})),E=(0,e.P1)(t,X=>({fees:X.fees,apiCallStatus:X.apisCallStatus.FetchFees})),z=((0,e.P1)(t,X=>({activeChannels:X.activeChannels,apiCallStatus:X.apisCallStatus.FetchChannels})),(0,e.P1)(t,X=>({pendingChannels:X.pendingChannels,apiCallStatus:X.apisCallStatus.FetchChannels})),(0,e.P1)(t,X=>({inactiveChannels:X.inactiveChannels,apiCallStatus:X.apisCallStatus.FetchChannels})),(0,e.P1)(t,X=>({activeChannels:X.activeChannels,pendingChannels:X.pendingChannels,inactiveChannels:X.inactiveChannels,lightningBalance:X.lightningBalance,channelsStatus:X.channelsStatus,apiCallStatus:X.apisCallStatus.FetchChannels}))),B=(0,e.P1)(t,X=>({transactions:X.transactions,apiCallStatus:X.apisCallStatus.FetchTransactions})),W=(0,e.P1)(t,X=>({invoices:X.invoices,apiCallStatus:X.apisCallStatus.FetchInvoices})),j=(0,e.P1)(t,X=>({peers:X.peers,apiCallStatus:X.apisCallStatus.FetchPeers})),K=(0,e.P1)(t,X=>({onchainBalance:X.onchainBalance,apiCallStatus:X.apisCallStatus.FetchOnchainBalance}))},9671:(Fe,q,p)=>{"use strict";p.d(q,{R:()=>ye});var e=p(7700),t=p(590),y=p(8645),A=p(9773),l=p(2154),w=p(9930),m=p(9212),P=p(5980),d=p(6339),E=p(2939),M=p(4221),I=p(6814),k=p(5597),z=p(3814),B=p(7509),W=p(2296),j=p(5195),K=p(6385),X=p(5940),ie=p(2279),se=p(7313),ue=p(6985);function ae(fe,de){if(1&fe&&m._UZ(0,"qr-code",29),2&fe){const xe=m.oxw();m.Q6J("value",null==xe.invoice?null:xe.invoice.serialized)("size",xe.qrWidth)("errorCorrectionLevel","L")}}function Me(fe,de){1&fe&&(m.TgZ(0,"span",30),m._uU(1,"N/A"),m.qZA())}function J(fe,de){if(1&fe&&m._UZ(0,"qr-code",29),2&fe){const xe=m.oxw();m.Q6J("value",null==xe.invoice?null:xe.invoice.serialized)("size",xe.qrWidth)("errorCorrectionLevel","L")}}function he(fe,de){1&fe&&(m.TgZ(0,"span",31),m._uU(1,"QR Code Not Applicable"),m.qZA())}function S(fe,de){1&fe&&m._UZ(0,"mat-divider",32),2&fe&&m.Q6J("inset",!0)}function n(fe,de){1&fe&&(m.ynx(0),m._uU(1," (zero amount) "),m.BQk())}function s(fe,de){1&fe&&m._UZ(0,"span",38)}const f=()=>[];function h(fe,de){if(1&fe&&(m.TgZ(0,"div",34)(1,"div",35)(2,"span",36),m._uU(3),m.ALo(4,"number"),m.qZA(),m.YNc(5,s,1,0,"span",37),m.qZA()()),2&fe){const xe=m.oxw(2);m.xp6(3),m.hij("",m.lcZ(4,2,null==xe.invoice?null:xe.invoice.amountSettled)," Sats"),m.xp6(2),m.Q6J("ngForOf",m.DdM(4,f).constructor(35))}}function C(fe,de){if(1&fe&&(m.TgZ(0,"div"),m._uU(1),m.ALo(2,"number"),m.qZA()),2&fe){const xe=m.oxw(2);m.xp6(1),m.hij("",m.lcZ(2,1,null==xe.invoice?null:xe.invoice.amountSettled)," Sats")}}function D(fe,de){if(1&fe&&(m.ynx(0),m.YNc(1,h,6,5,"div",33)(2,C,3,3,"div",19),m.BQk()),2&fe){const xe=m.oxw();m.xp6(1),m.Q6J("ngIf",xe.flgInvoicePaid),m.xp6(1),m.Q6J("ngIf",!xe.flgInvoicePaid)}}function O(fe,de){1&fe&&(m.TgZ(0,"span"),m._uU(1,"-"),m.qZA())}function v(fe,de){1&fe&&m._UZ(0,"mat-spinner",40),2&fe&&m.Q6J("diameter",20)}function r(fe,de){if(1&fe&&(m.ynx(0),m.YNc(1,O,2,0,"span",19)(2,v,1,1,"mat-spinner",39),m.BQk()),2&fe){const xe=m.oxw();m.xp6(1),m.Q6J("ngIf","unpaid"!==(null==xe.invoice?null:xe.invoice.status)||!xe.flgVersionCompatible),m.xp6(1),m.Q6J("ngIf","unpaid"===(null==xe.invoice?null:xe.invoice.status)&&xe.flgVersionCompatible)}}function g(fe,de){if(1&fe&&(m.TgZ(0,"div"),m._UZ(1,"mat-divider",20),m.TgZ(2,"div",15)(3,"div",41)(4,"h4",17),m._uU(5,"Date Expiry"),m.qZA(),m.TgZ(6,"span",18),m._uU(7),m.ALo(8,"date"),m.qZA()(),m.TgZ(9,"div",42)(10,"h4",17),m._uU(11,"Date Settled"),m.qZA(),m.TgZ(12,"span",21),m._uU(13),m.ALo(14,"date"),m.qZA()()(),m._UZ(15,"mat-divider",20),m.TgZ(16,"div",15)(17,"div",22)(18,"h4",17),m._uU(19,"Payment Hash"),m.qZA(),m.TgZ(20,"span",21),m._uU(21),m.qZA()()(),m._UZ(22,"mat-divider",20),m.TgZ(23,"div",15)(24,"div",22)(25,"h4",17),m._uU(26,"Node ID"),m.qZA(),m.TgZ(27,"span",21),m._uU(28),m.qZA()()(),m._UZ(29,"mat-divider",20),m.qZA()),2&fe){const xe=m.oxw();m.xp6(7),m.Oqu(m.xi3(8,4,1e3*(null==xe.invoice?null:xe.invoice.expiresAt),"dd/MMM/y HH:mm")),m.xp6(6),m.Oqu(m.xi3(14,7,1e3*(null==xe.invoice?null:xe.invoice.receivedAt),"dd/MMM/y HH:mm")),m.xp6(8),m.Oqu(null==xe.invoice?null:xe.invoice.paymentHash),m.xp6(7),m.Oqu(null==xe.invoice?null:xe.invoice.nodeId)}}function H(fe,de){1&fe&&(m.TgZ(0,"p"),m._uU(1,"Show Advanced"),m.qZA())}function R(fe,de){1&fe&&(m.TgZ(0,"p"),m._uU(1,"Hide Advanced"),m.qZA())}function ee(fe,de){if(1&fe){const xe=m.EpF();m.TgZ(0,"button",43),m.NdJ("copied",function(pe){m.CHM(xe);const qe=m.oxw();return m.KtG(qe.onCopyPayment(pe))}),m._uU(1,"Copy Invoice"),m.qZA()}if(2&fe){const xe=m.oxw();m.Q6J("payload",null==xe.invoice?null:xe.invoice.serialized)}}function De(fe,de){if(1&fe){const xe=m.EpF();m.TgZ(0,"button",44),m.NdJ("click",function(){m.CHM(xe);const pe=m.oxw();return m.KtG(pe.onClose())}),m._uU(1,"OK"),m.qZA()}}const ct=fe=>({"display-none":fe}),Ke=fe=>({"xs-scroll-y":fe}),Je=(fe,de)=>({"mt-2":fe,"mt-1":de});let ye=(()=>{class fe{constructor(xe,le,pe,qe,re,ve){this.dialogRef=xe,this.data=le,this.logger=pe,this.commonService=qe,this.snackBar=re,this.store=ve,this.faReceipt=t.dLy,this.faExclamationTriangle=t.eHv,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.cu,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new y.x,new y.x,new y.x,new y.x,new y.x]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS&&(this.qrWidth=220),this.store.select(w.yD).pipe((0,A.R)(this.unSubs[0])).subscribe(xe=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(xe.version,"0.5.0")}),this.store.select(w.Ef).pipe((0,A.R)(this.unSubs[1])).subscribe(xe=>{const le=this.invoice.status,qe=(xe.invoices&&xe.invoices.length>0?xe.invoices:[])?.find(re=>re.paymentHash===this.invoice.paymentHash)||null;qe&&(this.invoice=qe),le!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(xe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(xe){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+xe)}ngOnDestroy(){this.unSubs.forEach(xe=>{xe.next(null),xe.complete()})}static#e=this.\u0275fac=function(le){return new(le||fe)(m.Y36(e.so),m.Y36(e.WI),m.Y36(P.mQ),m.Y36(d.v),m.Y36(E.ux),m.Y36(M.yh))};static#t=this.\u0275cmp=m.Xpm({type:fe,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 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(le,pe){if(1&le&&(m.TgZ(0,"div",0)(1,"div",1),m.YNc(2,ae,1,3,"qr-code",2)(3,Me,2,0,"span",3),m.qZA(),m.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),m._UZ(7,"fa-icon",7),m.TgZ(8,"span",8),m._uU(9),m.qZA()(),m.TgZ(10,"button",9),m.NdJ("click",function(){return pe.onClose()}),m._uU(11,"X"),m.qZA()(),m.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),m.YNc(15,J,1,3,"qr-code",2)(16,he,2,0,"span",13),m.qZA(),m.YNc(17,S,1,1,"mat-divider",14),m.TgZ(18,"div",15)(19,"div",16)(20,"h4",17),m._uU(21,"Amount Requested"),m.qZA(),m.TgZ(22,"span",18),m._uU(23),m.ALo(24,"number"),m.YNc(25,n,2,0,"ng-container",19),m.qZA()(),m.TgZ(26,"div",16)(27,"h4",17),m._uU(28,"Amount Settled"),m.qZA(),m.TgZ(29,"span",18),m.YNc(30,D,3,2,"ng-container",19)(31,r,3,2,"ng-container",19),m.qZA()()(),m._UZ(32,"mat-divider",20),m.TgZ(33,"div",15)(34,"div",16)(35,"h4",17),m._uU(36,"Date Created"),m.qZA(),m.TgZ(37,"span",21),m._uU(38),m.ALo(39,"date"),m.qZA()(),m.TgZ(40,"div",16)(41,"h4",17),m._uU(42,"Status"),m.qZA(),m.TgZ(43,"span",21),m._uU(44),m.ALo(45,"titlecase"),m.qZA()()(),m._UZ(46,"mat-divider",20),m.TgZ(47,"div",15)(48,"div",22)(49,"h4",17),m._uU(50,"Description"),m.qZA(),m.TgZ(51,"span",18),m._uU(52),m.qZA()()(),m._UZ(53,"mat-divider",20),m.TgZ(54,"div",15)(55,"div",22)(56,"h4",17),m._uU(57,"Invoice"),m.qZA(),m.TgZ(58,"span",21),m._uU(59),m.qZA()()(),m.YNc(60,g,30,10,"div",19),m.TgZ(61,"div",23)(62,"button",24),m.NdJ("click",function(){return pe.onShowAdvanced()}),m.YNc(63,H,2,0,"p",25)(64,R,2,0,"ng-template",null,26,m.W1O),m.qZA(),m.YNc(66,ee,2,1,"button",27)(67,De,2,0,"button",28),m.qZA()()()()()),2&le){const qe=m.MAs(65);m.xp6(1),m.Q6J("fxLayoutAlign",null!=pe.invoice&&pe.invoice.serialized&&""!==(null==pe.invoice?null:pe.invoice.serialized)?"center start":"center center")("ngClass",m.VKq(33,ct,pe.screenSize===pe.screenSizeEnum.XS||pe.screenSize===pe.screenSizeEnum.SM)),m.xp6(1),m.Q6J("ngIf",(null==pe.invoice?null:pe.invoice.serialized)&&""!==(null==pe.invoice?null:pe.invoice.serialized)),m.xp6(1),m.Q6J("ngIf",!(null!=pe.invoice&&pe.invoice.serialized)||""===(null==pe.invoice?null:pe.invoice.serialized)),m.xp6(4),m.Q6J("icon",pe.faReceipt),m.xp6(2),m.Oqu(pe.screenSize===pe.screenSizeEnum.XS?pe.newlyAdded?"Created":"Invoice":pe.newlyAdded?"Invoice Created":"Invoice Information"),m.xp6(3),m.Q6J("ngClass",m.VKq(35,Ke,pe.screenSize===pe.screenSizeEnum.XS)),m.xp6(2),m.Q6J("fxLayoutAlign",null!=pe.invoice&&pe.invoice.serialized&&""!==(null==pe.invoice?null:pe.invoice.serialized)?"center start":"center center")("ngClass",m.VKq(37,ct,pe.screenSize!==pe.screenSizeEnum.XS&&pe.screenSize!==pe.screenSizeEnum.SM)),m.xp6(1),m.Q6J("ngIf",(null==pe.invoice?null:pe.invoice.serialized)&&""!==(null==pe.invoice?null:pe.invoice.serialized)),m.xp6(1),m.Q6J("ngIf",!(null!=pe.invoice&&pe.invoice.serialized)||""===(null==pe.invoice?null:pe.invoice.serialized)),m.xp6(1),m.Q6J("ngIf",pe.screenSize===pe.screenSizeEnum.XS||pe.screenSize===pe.screenSizeEnum.SM),m.xp6(6),m.hij("",m.lcZ(24,26,(null==pe.invoice?null:pe.invoice.amount)||0)," Sats"),m.xp6(2),m.Q6J("ngIf",!(null!=pe.invoice&&pe.invoice.amount)||"0"===(null==pe.invoice?null:pe.invoice.amount)),m.xp6(5),m.Q6J("ngIf",null==pe.invoice?null:pe.invoice.amountSettled),m.xp6(1),m.Q6J("ngIf",!(null!=pe.invoice&&pe.invoice.amountSettled)),m.xp6(7),m.Oqu(m.xi3(39,28,1e3*(null==pe.invoice?null:pe.invoice.timestamp),"dd/MMM/y HH:mm")),m.xp6(6),m.Oqu(m.lcZ(45,31,null==pe.invoice?null:pe.invoice.status)),m.xp6(8),m.Oqu((null==pe.invoice?null:pe.invoice.description)||"-"),m.xp6(7),m.Oqu((null==pe.invoice?null:pe.invoice.serialized)||"N/A"),m.xp6(1),m.Q6J("ngIf",pe.showAdvanced),m.xp6(1),m.Q6J("ngClass",m.WLB(39,Je,!pe.showAdvanced,pe.showAdvanced)),m.xp6(2),m.Q6J("ngIf",!pe.showAdvanced)("ngIfElse",qe),m.xp6(3),m.Q6J("ngIf",(null==pe.invoice?null:pe.invoice.serialized)&&""!==(null==pe.invoice?null:pe.invoice.serialized)),m.xp6(1),m.Q6J("ngIf",!(null!=pe.invoice&&pe.invoice.serialized)||""===(null==pe.invoice?null:pe.invoice.serialized))}},dependencies:[I.mk,I.sg,I.O5,k.BN,z.xw,z.Wh,z.yH,B.oO,W.lW,j.dn,j.dk,K.d,X.Ou,ie.uU,se.y,ue.h,I.JJ,I.rS,I.uU]})}return fe})()},9191:(Fe,q,p)=>{"use strict";p.d(q,{$A:()=>dt,$W:()=>M,BL:()=>O,B_:()=>De,Bl:()=>ue,CX:()=>E,Cp:()=>g,EK:()=>W,El:()=>k,Fr:()=>yt,HI:()=>ve,JT:()=>l,Jl:()=>ae,Jo:()=>Ot,Lf:()=>le,Ll:()=>A,Ly:()=>pe,Nr:()=>ye,OG:()=>v,PC:()=>y,QJ:()=>je,RX:()=>se,Rd:()=>j,Rv:()=>Me,SN:()=>ie,Sf:()=>St,TW:()=>s,UH:()=>qe,UR:()=>he,Vv:()=>r,WM:()=>Je,WO:()=>Ft,Wi:()=>Ae,YP:()=>X,YX:()=>D,Z7:()=>n,Z8:()=>I,Zh:()=>f,_E:()=>ut,_L:()=>h,aL:()=>fe,as:()=>S,cQ:()=>re,dV:()=>We,eF:()=>P,fu:()=>rt,kL:()=>xt,ks:()=>J,mC:()=>xe,n7:()=>te,oV:()=>ce,pW:()=>C,pd:()=>m,qY:()=>de,sQ:()=>d,tb:()=>ee,u0:()=>Ye,vV:()=>ct,wD:()=>w,xG:()=>Qe,y2:()=>Ie,yZ:()=>Ue,z:()=>B});var e=p(4221),t=p(2154);const y=(0,e.PH)(t.uR.UPDATE_API_CALL_STATUS_LND,(0,e.Ky)()),A=(0,e.PH)(t.uR.RESET_LND_STORE,(0,e.Ky)()),l=(0,e.PH)(t.uR.SET_CHILD_NODE_SETTINGS_LND,(0,e.Ky)()),w=(0,e.PH)(t.uR.FETCH_PAGE_SETTINGS_LND),m=(0,e.PH)(t.uR.SET_PAGE_SETTINGS_LND,(0,e.Ky)()),P=(0,e.PH)(t.uR.SAVE_PAGE_SETTINGS_LND,(0,e.Ky)()),d=(0,e.PH)(t.uR.FETCH_INFO_LND,(0,e.Ky)()),E=(0,e.PH)(t.uR.SET_INFO_LND,(0,e.Ky)()),M=(0,e.PH)(t.uR.FETCH_PEERS_LND),I=(0,e.PH)(t.uR.SET_PEERS_LND,(0,e.Ky)()),k=(0,e.PH)(t.uR.SAVE_NEW_PEER_LND,(0,e.Ky)()),B=((0,e.PH)(t.uR.NEWLY_ADDED_PEER_LND,(0,e.Ky)()),(0,e.PH)(t.uR.DETACH_PEER_LND,(0,e.Ky)())),W=(0,e.PH)(t.uR.REMOVE_PEER_LND,(0,e.Ky)()),j=(0,e.PH)(t.uR.SAVE_NEW_INVOICE_LND,(0,e.Ky)()),X=((0,e.PH)(t.uR.NEWLY_SAVED_INVOICE_LND,(0,e.Ky)()),(0,e.PH)(t.uR.ADD_INVOICE_LND,(0,e.Ky)())),ie=(0,e.PH)(t.uR.FETCH_FEES_LND),se=(0,e.PH)(t.uR.SET_FEES_LND,(0,e.Ky)()),ue=(0,e.PH)(t.uR.FETCH_BLOCKCHAIN_BALANCE_LND),ae=(0,e.PH)(t.uR.SET_BLOCKCHAIN_BALANCE_LND,(0,e.Ky)()),Me=(0,e.PH)(t.uR.FETCH_NETWORK_LND),J=(0,e.PH)(t.uR.SET_NETWORK_LND,(0,e.Ky)()),he=(0,e.PH)(t.uR.FETCH_CHANNELS_LND),S=(0,e.PH)(t.uR.SET_CHANNELS_LND,(0,e.Ky)()),n=(0,e.PH)(t.uR.FETCH_PENDING_CHANNELS_LND),s=(0,e.PH)(t.uR.SET_PENDING_CHANNELS_LND,(0,e.Ky)()),f=(0,e.PH)(t.uR.FETCH_CLOSED_CHANNELS_LND),h=(0,e.PH)(t.uR.SET_CLOSED_CHANNELS_LND,(0,e.Ky)()),C=(0,e.PH)(t.uR.UPDATE_CHANNEL_LND,(0,e.Ky)()),D=(0,e.PH)(t.uR.SAVE_NEW_CHANNEL_LND,(0,e.Ky)()),O=(0,e.PH)(t.uR.CLOSE_CHANNEL_LND,(0,e.Ky)()),v=(0,e.PH)(t.uR.REMOVE_CHANNEL_LND,(0,e.Ky)()),r=(0,e.PH)(t.uR.BACKUP_CHANNELS_LND,(0,e.Ky)()),g=(0,e.PH)(t.uR.VERIFY_CHANNEL_LND,(0,e.Ky)()),ee=((0,e.PH)(t.uR.BACKUP_CHANNELS_RES_LND,(0,e.Ky)()),(0,e.PH)(t.uR.VERIFY_CHANNEL_RES_LND,(0,e.Ky)()),(0,e.PH)(t.uR.RESTORE_CHANNELS_LIST_LND)),De=(0,e.PH)(t.uR.SET_RESTORE_CHANNELS_LIST_LND,(0,e.Ky)()),ct=(0,e.PH)(t.uR.RESTORE_CHANNELS_LND,(0,e.Ky)()),Je=((0,e.PH)(t.uR.RESTORE_CHANNELS_RES_LND,(0,e.Ky)()),(0,e.PH)(t.uR.FETCH_INVOICES_LND,(0,e.Ky)())),ye=(0,e.PH)(t.uR.SET_INVOICES_LND,(0,e.Ky)()),fe=(0,e.PH)(t.uR.UPDATE_INVOICE_LND,(0,e.Ky)()),de=(0,e.PH)(t.uR.UPDATE_PAYMENT_LND,(0,e.Ky)()),xe=(0,e.PH)(t.uR.FETCH_TRANSACTIONS_LND),le=(0,e.PH)(t.uR.SET_TRANSACTIONS_LND,(0,e.Ky)()),pe=(0,e.PH)(t.uR.FETCH_UTXOS_LND),qe=(0,e.PH)(t.uR.SET_UTXOS_LND,(0,e.Ky)()),re=(0,e.PH)(t.uR.FETCH_PAYMENTS_LND,(0,e.Ky)()),ve=(0,e.PH)(t.uR.SET_PAYMENTS_LND,(0,e.Ky)()),ce=(0,e.PH)(t.uR.SEND_PAYMENT_LND,(0,e.Ky)()),We=((0,e.PH)(t.uR.SEND_PAYMENT_STATUS_LND,(0,e.Ky)()),(0,e.PH)(t.uR.FETCH_GRAPH_NODE_LND,(0,e.Ky)())),ut=((0,e.PH)(t.uR.SET_GRAPH_NODE_LND,(0,e.Ky)()),(0,e.PH)(t.uR.GET_NEW_ADDRESS_LND,(0,e.Ky)())),Ae=((0,e.PH)(t.uR.SET_NEW_ADDRESS_LND,(0,e.Ky)()),(0,e.PH)(t.uR.SET_CHANNEL_TRANSACTION_LND,(0,e.Ky)())),rt=((0,e.PH)(t.uR.SET_CHANNEL_TRANSACTION_RES_LND,(0,e.Ky)()),(0,e.PH)(t.uR.GEN_SEED_LND,(0,e.Ky)())),Ie=((0,e.PH)(t.uR.GEN_SEED_RESPONSE_LND,(0,e.Ky)()),(0,e.PH)(t.uR.INIT_WALLET_LND,(0,e.Ky)())),Qe=((0,e.PH)(t.uR.INIT_WALLET_RESPONSE_LND,(0,e.Ky)()),(0,e.PH)(t.uR.UNLOCK_WALLET_LND,(0,e.Ky)())),St=(0,e.PH)(t.uR.PEER_LOOKUP_LND,(0,e.Ky)()),dt=(0,e.PH)(t.uR.CHANNEL_LOOKUP_LND,(0,e.Ky)()),te=(0,e.PH)(t.uR.INVOICE_LOOKUP_LND,(0,e.Ky)()),Ue=(0,e.PH)(t.uR.PAYMENT_LOOKUP_LND,(0,e.Ky)()),Ye=((0,e.PH)(t.uR.SET_LOOKUP_LND,(0,e.Ky)()),(0,e.PH)(t.uR.GET_FORWARDING_HISTORY_LND,(0,e.Ky)())),je=(0,e.PH)(t.uR.SET_FORWARDING_HISTORY_LND,(0,e.Ky)()),Ft=(0,e.PH)(t.uR.GET_QUERY_ROUTES_LND,(0,e.Ky)()),xt=(0,e.PH)(t.uR.SET_QUERY_ROUTES_LND,(0,e.Ky)()),Ot=(0,e.PH)(t.uR.GET_ALL_LIGHTNING_TRANSATIONS_LND),yt=(0,e.PH)(t.uR.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,e.Ky)())},168:(Fe,q,p)=>{"use strict";p.d(q,{l:()=>J});var e=p(5154),t=p(8645),y=p(2096),A=p(1631),l=p(9773),w=p(7398),m=p(6306),P=p(2460),d=p(5456),E=p(3315),M=p(2154),I=p(9103),k=p(9191),z=p(7321),B=p(9212),W=p(9862),j=p(4221),K=p(5980),X=p(6339),ie=p(5813),se=p(7700),ue=p(4190),ae=p(2285),Me=p(6814);let J=(()=>{class he{constructor(n,s,f,h,C,D,O,v,r,g){this.actions=n,this.httpClient=s,this.store=f,this.logger=h,this.commonService=C,this.sessionService=D,this.dialog=O,this.router=v,this.wsService=r,this.location=g,this.CHILD_API_URL=M.T5+"/lnd",this.invoicesPageSettings=M.gK.find(H=>"transactions"===H.pageId)?.tables.find(H=>"invoices"===H.tableId),this.paymentsPageSettings=M.gK.find(H=>"transactions"===H.pageId)?.tables.find(H=>"payments"===H.tableId),this.flgInitialized=!1,this.unSubs=[new t.x,new t.x],this.infoFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_INFO_LND),(0,A.z)(H=>(this.flgInitialized=!1,this.store.dispatch((0,I.lC)({payload:this.CHILD_API_URL})),this.store.dispatch((0,I.ts)()),this.store.dispatch((0,I.ac)({payload:M.m6.GET_NODE_INFO})),this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.GETINFO_API).pipe((0,l.R)(this.actions.pipe((0,e.l4)(M.pg.SET_SELECTED_NODE))),(0,w.U)(R=>(this.logger.info(R),R.chains&&R.chains.length&&R.chains[0]&&("string"==typeof R.chains[0]&&R.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof R.chains[0]&&R.chains[0].hasOwnProperty("chain")&&R.chains[0].chain&&R.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.ts)()),this.store.dispatch((0,I.qR)({payload:{data:{type:M.n_.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:M.pg.LOGOUT}):R.identity_pubkey?(R.lnImplementation="LND",this.initializeRemainingData(R,H.payload.loadPage),this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.ts)()),{type:M.uR.SET_INFO_LND,payload:R||{}}):(this.store.dispatch((0,k.PC)({payload:{action:"FetchInfo",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.ts)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:M.uR.SET_INFO_LND,payload:{}}))),(0,m.K)(R=>{if("string"==typeof R.error.error&&R.error.error.includes("Not Found")||"string"==typeof R.error.error&&R.error.error.includes("wallet locked")||502===R.status&&!R.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",M.m6.GET_NODE_INFO,"Fetching Node Info Failed.",R);else if("string"==typeof R.error.error&&R.error.error.includes("starting up")&&500===R.status)setTimeout(()=>{this.store.dispatch((0,k.sQ)({payload:{loadPage:"HOME"}}))},2e3);else{const ee=this.commonService.extractErrorCode(R),De=503===ee?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(R);this.router.navigate(["/error"],{state:{errorCode:ee,errorMessage:De}}),this.handleErrorWithoutAlert("FetchInfo",M.m6.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ee,error:De})}return(0,y.of)({type:M.pg.VOID})})))))),this.peersFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_PEERS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPeers",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.PEERS_API).pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchPeers",status:M.Bn.COMPLETED}})),{type:M.uR.SET_PEERS_LND,payload:H||[]})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchPeers",M.m6.NO_SPINNER,"Fetching Peers Failed.",H),(0,y.of)({type:M.pg.VOID})))))))),this.saveNewPeer=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SAVE_NEW_PEER_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.CONNECT_PEER})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewPeer",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.PEERS_API,{pubkey:H.payload.pubkey,host:H.payload.host,perm:H.payload.perm}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewPeer",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:M.m6.CONNECT_PEER})),this.store.dispatch((0,k.Z8)({payload:R||[]})),{type:M.uR.NEWLY_ADDED_PEER_LND,payload:{peer:R[0]}})),(0,m.K)(R=>(this.handleErrorWithoutAlert("SaveNewPeer",M.m6.CONNECT_PEER,"Peer Connection Failed.",R),(0,y.of)({type:M.pg.VOID})))))))),this.detachPeer=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.DETACH_PEER_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+M.vv.PEERS_API+"/"+H.payload.pubkey).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.DISCONNECT_PEER})),this.store.dispatch((0,I.jW)({payload:"Peer Disconnected Successfully."})),{type:M.uR.REMOVE_PEER_LND,payload:{pubkey:H.payload.pubkey}})),(0,m.K)(R=>(this.handleErrorWithAlert("DetachPeer",M.m6.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+M.vv.PEERS_API+"/"+H.payload.pubkey,R),(0,y.of)({type:M.pg.VOID})))))))),this.saveNewInvoice=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SAVE_NEW_INVOICE_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewInvoice",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.INVOICES_API,{memo:H.payload.memo,value:H.payload.value,private:H.payload.private,expiry:H.payload.expiry,is_amp:H.payload.is_amp}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewInvoice",status:M.Bn.COMPLETED}})),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:H.payload.pageSize,reversed:!0}})),H.payload.openModal?(R.memo=H.payload.memo,R.value=H.payload.value,R.expiry=H.payload.expiry,R.private=H.payload.private,R.is_amp=H.payload.is_amp,R.cltv_expiry="144",R.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,I.qR)({payload:{data:{invoice:R,newlyAdded:!0,component:d.v}}}))},200),{type:M.pg.CLOSE_SPINNER,payload:H.payload.uiMessage}):{type:M.uR.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:R.payment_request}})),(0,m.K)(R=>(this.handleErrorWithoutAlert("SaveNewInvoice",H.payload.uiMessage,"Add Invoice Failed.",R),(0,y.of)({type:M.pg.VOID})))))))),this.openNewChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SAVE_NEW_CHANNEL_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.OPEN_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewChannel",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.CHANNELS_API,{node_pubkey:H.payload.selectedPeerPubkey,local_funding_amount:H.payload.fundingAmount,private:H.payload.private,trans_type:H.payload.transType,trans_type_value:H.payload.transTypeValue,spend_unconfirmed:H.payload.spendUnconfirmed,commitment_type:H.payload.commitmentType}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"SaveNewChannel",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:M.m6.OPEN_CHANNEL})),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Vv)({payload:{uiMessage:M.m6.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:M.uR.FETCH_PENDING_CHANNELS_LND})),(0,m.K)(R=>(this.handleErrorWithoutAlert("SaveNewChannel",M.m6.OPEN_CHANNEL,"Opening Channel Failed.",R),(0,y.of)({type:M.pg.VOID})))))))),this.updateChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.UPDATE_CHANNEL_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+M.vv.CHANNELS_API+"/chanPolicy",{baseFeeMsat:H.payload.baseFeeMsat,feeRate:H.payload.feeRate,timeLockDelta:H.payload.timeLockDelta,max_htlc_msat:H.payload.maxHtlcMsat,min_htlc_msat:H.payload.minHtlcMsat,chanPoint:H.payload.chanPoint}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.UPDATE_CHAN_POLICY})),this.store.dispatch((0,I.jW)("all"===H.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:M.uR.FETCH_CHANNELS_LND})),(0,m.K)(R=>(this.handleErrorWithAlert("UpdateChannels",M.m6.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+M.vv.CHANNELS_API+"/chanPolicy",R),(0,y.of)({type:M.pg.VOID})))))))),this.closeChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.CLOSE_CHANNEL_LND),(0,A.z)(H=>{this.store.dispatch((0,I.ac)({payload:H.payload.forcibly?M.m6.FORCE_CLOSE_CHANNEL:M.m6.CLOSE_CHANNEL}));let R=this.CHILD_API_URL+M.vv.CHANNELS_API+"/"+H.payload.channelPoint+"?force="+H.payload.forcibly;return H.payload.targetConf&&(R=R+"&target_conf="+H.payload.targetConf),H.payload.satPerByte&&(R=R+"&sat_per_byte="+H.payload.satPerByte),this.httpClient.delete(R).pipe((0,w.U)(ee=>(this.logger.info(ee),this.store.dispatch((0,I.uO)({payload:H.payload.forcibly?M.m6.FORCE_CLOSE_CHANNEL:M.m6.CLOSE_CHANNEL})),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.Z7)()),this.store.dispatch((0,k.Vv)({payload:{uiMessage:M.m6.NO_SPINNER,channelPoint:"ALL",showMessage:ee.message}})),{type:M.pg.VOID})),(0,m.K)(ee=>(this.handleErrorWithAlert("CloseChannel",H.payload.forcibly?M.m6.FORCE_CLOSE_CHANNEL:M.m6.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+M.vv.CHANNELS_API+"/"+H.payload.channelPoint+"?force="+H.payload.forcibly,ee),(0,y.of)({type:M.pg.VOID}))))}))),this.backupChannels=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.BACKUP_CHANNELS_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"BackupChannels",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/"+H.payload.channelPoint).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"BackupChannels",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:H.payload.uiMessage})),this.store.dispatch((0,I.jW)({payload:H.payload.showMessage+" "+R.message})),{type:M.uR.BACKUP_CHANNELS_RES_LND,payload:R.message})),(0,m.K)(R=>(this.handleErrorWithAlert("BackupChannels",H.payload.uiMessage,H.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/"+H.payload.channelPoint,R),(0,y.of)({type:M.pg.VOID})))))))),this.verifyChannel=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.VERIFY_CHANNEL_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.VERIFY_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"VerifyChannel",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/verify/"+H.payload.channelPoint,{}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"VerifyChannel",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:M.m6.VERIFY_CHANNEL})),this.store.dispatch((0,I.jW)({payload:R.message})),{type:M.uR.VERIFY_CHANNEL_RES_LND,payload:R.message})),(0,m.K)(R=>(this.handleErrorWithAlert("VerifyChannel",M.m6.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/verify/"+H.payload.channelPoint,R),(0,y.of)({type:M.pg.VOID})))))))),this.restoreChannels=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.RESTORE_CHANNELS_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.RESTORE_CHANNEL})),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannels",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/restore/"+H.payload.channelPoint,{}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannels",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:M.m6.RESTORE_CHANNEL})),this.store.dispatch((0,I.jW)({payload:R.message})),this.store.dispatch((0,k.B_)({payload:R.list})),{type:M.uR.RESTORE_CHANNELS_RES_LND,payload:R.message})),(0,m.K)(R=>(this.handleErrorWithAlert("RestoreChannels",M.m6.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/restore/"+H.payload.channelPoint,R),(0,y.of)({type:M.pg.VOID})))))))),this.fetchFees=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_FEES_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchFees",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.FEES_API))),(0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchFees",status:M.Bn.COMPLETED}})),H.forwarding_events_history&&(this.store.dispatch((0,k.QJ)({payload:H.forwarding_events_history})),delete H.forwarding_events_history),{type:M.uR.SET_FEES_LND,payload:H||{}})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchFees",M.m6.NO_SPINNER,"Fetching Fees Failed.",H),(0,y.of)({type:M.pg.VOID}))))),this.balanceBlockchainFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_BLOCKCHAIN_BALANCE_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchBalance",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.BALANCE_API))),(0,w.U)(H=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchBalance",status:M.Bn.COMPLETED}})),this.logger.info(H),{type:M.uR.SET_BLOCKCHAIN_BALANCE_LND,payload:H||{total_balance:""}})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchBalance",M.m6.NO_SPINNER,"Fetching Blockchain Balance Failed.",H),(0,y.of)({type:M.pg.VOID}))))),this.networkInfoFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_NETWORK_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchNetwork",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.NETWORK_API+"/info"))),(0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchNetwork",status:M.Bn.COMPLETED}})),{type:M.uR.SET_NETWORK_LND,payload:H||{}})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchNetwork",M.m6.NO_SPINNER,"Fetching Network Failed.",H),(0,y.of)({type:M.pg.VOID}))))),this.channelsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_CHANNELS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchChannels",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.CHANNELS_API).pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchChannels",status:M.Bn.COMPLETED}})),{type:M.uR.SET_CHANNELS_LND,payload:H.channels||[]})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchChannels",M.m6.NO_SPINNER,"Fetching Channels Failed.",H),(0,y.of)({type:M.pg.VOID})))))))),this.channelsPendingFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_PENDING_CHANNELS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPendingChannels",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.CHANNELS_API+"/pending").pipe((0,w.U)(H=>{this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchPendingChannels",status:M.Bn.COMPLETED}}));const R={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 H&&(R.total_limbo_balance=H.total_limbo_balance,H.pending_closing_channels&&(R.closing.num_channels=H.pending_closing_channels.length,R.total_channels=R.total_channels+H.pending_closing_channels.length,H.pending_closing_channels.forEach(ee=>{R.closing.limbo_balance=+R.closing.limbo_balance+(ee.channel.local_balance?+ee.channel.local_balance:0)})),H.pending_force_closing_channels&&(R.force_closing.num_channels=H.pending_force_closing_channels.length,R.total_channels=R.total_channels+H.pending_force_closing_channels.length,H.pending_force_closing_channels.forEach(ee=>{R.force_closing.limbo_balance=+R.force_closing.limbo_balance+(ee.channel.local_balance?+ee.channel.local_balance:0)})),H.pending_open_channels&&(R.open.num_channels=H.pending_open_channels.length,R.total_channels=R.total_channels+H.pending_open_channels.length,H.pending_open_channels.forEach(ee=>{R.open.limbo_balance=+R.open.limbo_balance+(ee.channel.local_balance?+ee.channel.local_balance:0)})),H.waiting_close_channels&&(R.waiting_close.num_channels=H.waiting_close_channels.length,R.total_channels=R.total_channels+H.waiting_close_channels.length,H.waiting_close_channels.forEach(ee=>{R.waiting_close.limbo_balance=+R.waiting_close.limbo_balance+(ee.channel.local_balance?+ee.channel.local_balance:0)}))),{type:M.uR.SET_PENDING_CHANNELS_LND,payload:H?{pendingChannels:H,pendingChannelsSummary:R}:{pendingChannels:{},pendingChannelsSummary:R}}}),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchPendingChannels",M.m6.NO_SPINNER,"Fetching Pending Channels Failed.",H),(0,y.of)({type:M.pg.VOID})))))))),this.channelsClosedFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_CLOSED_CHANNELS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchClosedChannels",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.CHANNELS_API+"/closed").pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchClosedChannels",status:M.Bn.COMPLETED}})),{type:M.uR.SET_CLOSED_CHANNELS_LND,payload:H.channels||[]})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchClosedChannels",M.m6.NO_SPINNER,"Fetching Closed Channels Failed.",H),(0,y.of)({type:M.pg.VOID})))))))),this.invoicesFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_INVOICES_LND),(0,A.z)(H=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchInvoices",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.INVOICES_API+"?num_max_invoices="+(H.payload.num_max_invoices?H.payload.num_max_invoices:100)+"&index_offset="+(H.payload.index_offset?H.payload.index_offset:0)+"&reversed="+(!!H.payload.reversed&&H.payload.reversed)).pipe((0,w.U)(ct=>(this.logger.info(ct),this.store.dispatch((0,k.PC)({payload:{action:"FetchInvoices",status:M.Bn.COMPLETED}})),H.payload.reversed&&!H.payload.index_offset&&(ct.total_invoices=+(ct.last_index_offset||0)),{type:M.uR.SET_INVOICES_LND,payload:ct})),(0,m.K)(ct=>(this.handleErrorWithoutAlert("FetchInvoices",M.m6.NO_SPINNER,"Fetching Invoices Failed.",ct),(0,y.of)({type:M.pg.VOID})))))))),this.transactionsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_TRANSACTIONS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchTransactions",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.TRANSACTIONS_API))),(0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchTransactions",status:M.Bn.COMPLETED}})),{type:M.uR.SET_TRANSACTIONS_LND,payload:H||[]})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchTransactions",M.m6.NO_SPINNER,"Fetching Transactions Failed.",H),(0,y.of)({type:M.pg.VOID}))))),this.utxosFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_UTXOS_LND),(0,P.M)(this.store.select(z.Q5)),(0,A.z)(([H,R])=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchUTXOs",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.WALLET_API+"/getUTXOs?max_confs="+(R&&R.block_height?R.block_height:1e9)))),(0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchUTXOs",status:M.Bn.COMPLETED}})),{type:M.uR.SET_UTXOS_LND,payload:H||[]})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchUTXOs",M.m6.NO_SPINNER,"Fetching UTXOs Failed.",H),(0,y.of)({type:M.pg.VOID}))))),this.paymentsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_PAYMENTS_LND),(0,A.z)(H=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPayments",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.PAYMENTS_API+"?max_payments="+(H.payload.max_payments?H.payload.max_payments:100)+"&index_offset="+(H.payload.index_offset?H.payload.index_offset:0)+"&reversed="+(!!H.payload.reversed&&H.payload.reversed)).pipe((0,w.U)(ct=>(this.logger.info(ct),this.store.dispatch((0,k.PC)({payload:{action:"FetchPayments",status:M.Bn.COMPLETED}})),this.commonService.sortByKey(ct.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:M.uR.SET_PAYMENTS_LND,payload:ct})),(0,m.K)(ct=>(this.handleErrorWithoutAlert("FetchPayments",M.m6.NO_SPINNER,"Fetching Payments Failed.",ct),(0,y.of)({type:M.uR.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SEND_PAYMENT_LND),(0,A.z)(H=>{this.store.dispatch((0,I.ac)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:M.Bn.INITIATED}}));const R={};return R.paymentReq=H.payload.paymentReq,H.payload.paymentAmount&&(R.paymentAmount=H.payload.paymentAmount),H.payload.outgoingChannel&&(R.outgoingChannel=H.payload.outgoingChannel.chan_id),H.payload.allowSelfPayment&&(R.allowSelfPayment=H.payload.allowSelfPayment),H.payload.lastHopPubkey&&(R.lastHopPubkey=H.payload.lastHopPubkey),H.payload.feeLimitType&&H.payload.feeLimitType!==M.Vc[0].id&&(R.feeLimit={},R.feeLimit[H.payload.feeLimitType]=H.payload.feeLimit),this.httpClient.post(this.CHILD_API_URL+M.vv.CHANNELS_API+"/transactions",R).pipe((0,w.U)(ee=>{if(this.logger.info(ee),this.store.dispatch((0,I.uO)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:M.Bn.COMPLETED}})),ee.payment_error)return H.payload.allowSelfPayment?(this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:M.uR.SEND_PAYMENT_STATUS_LND,payload:ee}):(H.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",H.payload.uiMessage,"Send Payment Failed.",ee.payment_error):this.handleErrorWithAlert("SendPayment",H.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+M.vv.CHANNELS_API+"/transactions",ee.payment_error),{type:M.pg.VOID});if(this.store.dispatch((0,I.uO)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"SendPayment",status:M.Bn.COMPLETED}})),this.store.dispatch((0,k.UR)()),this.store.dispatch((0,k.cQ)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),H.payload.allowSelfPayment)this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let De="Payment Sent Successfully.";ee.payment_route&&ee.payment_route.total_fees_msat&&(De="Payment sent successfully with the total fee "+ee.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,I.jW)({payload:De}))}return{type:M.uR.SEND_PAYMENT_STATUS_LND,payload:ee}}),(0,m.K)(ee=>(this.logger.error("Error: "+JSON.stringify(ee)),H.payload.allowSelfPayment?(this.handleErrorWithoutAlert("SendPayment",H.payload.uiMessage,"Send Payment Failed.",ee),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,y.of)({type:M.uR.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(ee)}})):(H.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",H.payload.uiMessage,"Send Payment Failed.",ee):this.handleErrorWithAlert("SendPayment",H.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+M.vv.CHANNELS_API+"/transactions",ee),(0,y.of)({type:M.pg.VOID})))))}))),this.graphNodeFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_GRAPH_NODE_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.GET_NODE_ADDRESS})),this.store.dispatch((0,k.PC)({payload:{action:"FetchGraphNode",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.NETWORK_API+"/node/"+H.payload.pubkey).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.GET_NODE_ADDRESS})),this.store.dispatch((0,k.PC)({payload:{action:"FetchGraphNode",status:M.Bn.COMPLETED}})),{type:M.uR.SET_GRAPH_NODE_LND,payload:R&&R.node?{node:R.node}:{node:null}})),(0,m.K)(R=>(this.handleErrorWithoutAlert("FetchGraphNode",M.m6.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",R),(0,y.of)({type:M.pg.VOID})))))))),this.setGraphNode=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SET_GRAPH_NODE_LND),(0,w.U)(H=>(this.logger.info(H.payload),H.payload))),{dispatch:!1}),this.getNewAddress=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.GET_NEW_ADDRESS_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+M.vv.NEW_ADDRESS_API+"?type="+H.payload.addressId).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.GENERATE_NEW_ADDRESS})),{type:M.uR.SET_NEW_ADDRESS_LND,payload:R&&R.address?R.address:{}})),(0,m.K)(R=>(this.handleErrorWithAlert("GetNewAddress",M.m6.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+M.vv.NEW_ADDRESS_API+"?type="+H.payload.addressId,R),(0,y.of)({type:M.pg.VOID})))))))),this.setNewAddress=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SET_NEW_ADDRESS_LND),(0,w.U)(H=>(this.logger.info(H.payload),H.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SET_CHANNEL_TRANSACTION_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.SEND_FUNDS})),this.store.dispatch((0,k.PC)({payload:{action:"SetChannelTransaction",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.TRANSACTIONS_API,{amount:H.payload.amount,address:H.payload.address,sendAll:H.payload.sendAll,fees:H.payload.fees,blocks:H.payload.blocks}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"SetChannelTransaction",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:M.m6.SEND_FUNDS})),this.store.dispatch((0,k.mC)()),this.store.dispatch((0,k.Bl)()),this.store.dispatch((0,k.UR)()),{type:M.uR.SET_CHANNEL_TRANSACTION_RES_LND,payload:R})),(0,m.K)(R=>(this.handleErrorWithoutAlert("SetChannelTransaction",M.m6.SEND_FUNDS,"Sending Fund Failed.",R),(0,y.of)({type:M.pg.VOID})))))))),this.fetchForwardingHistory=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.GET_FORWARDING_HISTORY_LND),(0,A.z)(H=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchForwardingHistory",status:M.Bn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+M.vv.SWITCH_API,{num_max_events:H.payload.num_max_events,index_offset:H.payload.index_offset,end_time:H.payload.end_time,start_time:H.payload.start_time}).pipe((0,w.U)(ee=>(this.logger.info(ee),this.store.dispatch((0,k.PC)({payload:{action:"FetchForwardingHistory",status:M.Bn.COMPLETED}})),{type:M.uR.SET_FORWARDING_HISTORY_LND,payload:ee})),(0,m.K)(ee=>(this.handleErrorWithAlert("FetchForwardingHistory",M.m6.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+M.vv.SWITCH_API,ee),(0,y.of)({type:M.pg.VOID})))))))),this.queryRoutesFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.GET_QUERY_ROUTES_LND),(0,A.z)(H=>{let R=this.CHILD_API_URL+M.vv.NETWORK_API+"/routes/"+H.payload.destPubkey+"/"+H.payload.amount;return H.payload.outgoingChanId&&(R=R+"?outgoing_chan_id="+H.payload.outgoingChanId),this.httpClient.get(R).pipe((0,w.U)(ee=>(this.logger.info(ee),{type:M.uR.SET_QUERY_ROUTES_LND,payload:ee})),(0,m.K)(ee=>(this.store.dispatch((0,k.kL)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",M.m6.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+M.vv.NETWORK_API,ee),(0,y.of)({type:M.pg.VOID}))))}))),this.setQueryRoutes=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SET_QUERY_ROUTES_LND),(0,w.U)(H=>H.payload)),{dispatch:!1}),this.genSeed=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.GEN_SEED_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+M.vv.WALLET_API+"/genseed/"+H.payload).pipe((0,w.U)(R=>(this.logger.info("Generated GenSeed!"),this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.GEN_SEED})),{type:M.uR.GEN_SEED_RESPONSE_LND,payload:R.cipher_seed_mnemonic})),(0,m.K)(R=>(this.handleErrorWithAlert("GenSeed",M.m6.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+M.vv.WALLET_API+"/genseed/"+H.payload,R),(0,y.of)({type:M.pg.VOID})))))))),this.updateSelNodeOptions=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.pg.UPDATE_SELECTED_NODE_OPTIONS),(0,A.z)(()=>this.httpClient.get(this.CHILD_API_URL+M.vv.WALLET_API+"/updateSelNodeOptions").pipe((0,w.U)(H=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(H),{type:M.pg.VOID})),(0,m.K)(H=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",M.m6.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",H),(0,y.of)({type:M.pg.VOID}))))))),this.genSeedResponse=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.GEN_SEED_RESPONSE_LND),(0,w.U)(H=>H.payload)),{dispatch:!1}),this.initWalletRes=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.INIT_WALLET_RESPONSE_LND),(0,w.U)(H=>H.payload)),{dispatch:!1}),this.initWallet=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.INIT_WALLET_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+M.vv.WALLET_API+"/wallet/initwallet",{wallet_password:H.payload.pwd,cipher_seed_mnemonic:H.payload.cipher?H.payload.cipher:"",aezeed_passphrase:H.payload.passphrase?H.payload.passphrase:""}).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.INITIALIZE_WALLET})),{type:M.uR.INIT_WALLET_RESPONSE_LND,payload:R})),(0,m.K)(R=>(this.handleErrorWithAlert("InitWallet",M.m6.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+M.vv.WALLET_API+"/initwallet",R),(0,y.of)({type:M.pg.VOID})))))))),this.unlockWallet=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.UNLOCK_WALLET_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+M.vv.WALLET_API+"/wallet/unlockwallet",{wallet_password:H.payload.pwd}).pipe((0,w.U)(R=>(this.logger.info(R),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,I.uO)({payload:M.m6.UNLOCK_WALLET})),this.store.dispatch((0,I.ac)({payload:M.m6.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,I.uO)({payload:M.m6.WAIT_SYNC_NODE})),this.store.dispatch((0,k.sQ)({payload:{loadPage:"HOME"}}))},5e3),{type:M.pg.VOID})),(0,m.K)(R=>(this.handleErrorWithAlert("UnlockWallet",M.m6.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+M.vv.WALLET_API+"/unlockwallet",R),(0,y.of)({type:M.pg.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.PEER_LOOKUP_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.SEARCHING_NODE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.NETWORK_API+"/node/"+H.payload).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.SEARCHING_NODE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.COMPLETED}})),{type:M.uR.SET_LOOKUP_LND,payload:R})),(0,m.K)(R=>(this.handleErrorWithAlert("Lookup",M.m6.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+M.vv.NETWORK_API+"/node/"+H.payload,R),(0,y.of)({type:M.pg.VOID})))))))),this.channelLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.CHANNEL_LOOKUP_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.NETWORK_API+"/edge/"+H.payload.channelID).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:H.payload.uiMessage})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.COMPLETED}})),{type:M.uR.SET_LOOKUP_LND,payload:R})),(0,m.K)(R=>(this.handleErrorWithAlert("Lookup",H.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+M.vv.NETWORK_API+"/edge/"+H.payload.channelID,R),(0,y.of)({type:M.pg.VOID})))))))),this.invoiceLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.INVOICE_LOOKUP_LND),(0,A.z)(H=>{this.store.dispatch((0,I.ac)({payload:M.m6.SEARCHING_INVOICE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.INITIATED}}));let R=this.CHILD_API_URL+M.vv.INVOICES_API+"/lookup";return R=H.payload.paymentAddress&&""!==H.payload.paymentAddress?R+"?payment_addr="+H.payload.paymentAddress:R+"?payment_hash="+H.payload.paymentHash,this.httpClient.get(R).pipe((0,w.U)(ee=>(this.logger.info(ee),this.store.dispatch((0,I.uO)({payload:M.m6.SEARCHING_INVOICE})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.COMPLETED}})),this.store.dispatch((0,k.aL)({payload:ee})),{type:M.uR.SET_LOOKUP_LND,payload:ee})),(0,m.K)(ee=>(this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.ERROR}})),this.handleErrorWithoutAlert("Lookup",M.m6.SEARCHING_INVOICE,"Invoice Lookup Failed",ee),H.payload.openSnackBar&&this.store.dispatch((0,I.jW)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,y.of)({type:M.uR.SET_LOOKUP_LND,payload:{error:ee}}))))}))),this.paymentLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.PAYMENT_LOOKUP_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.SEARCHING_PAYMENT})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.PAYMENTS_API+"/lookup/"+H.payload).pipe((0,w.U)(R=>(this.logger.info(R),this.store.dispatch((0,I.uO)({payload:M.m6.SEARCHING_PAYMENT})),this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.COMPLETED}})),this.store.dispatch((0,k.qY)({payload:R})),{type:M.uR.SET_LOOKUP_LND,payload:R})),(0,m.K)(R=>(this.store.dispatch((0,k.PC)({payload:{action:"Lookup",status:M.Bn.ERROR}})),this.handleErrorWithoutAlert("Lookup",M.m6.SEARCHING_PAYMENT,"Payment Lookup Failed",R),(0,y.of)({type:M.uR.SET_LOOKUP_LND,payload:{error:R}})))))))),this.setLookup=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SET_LOOKUP_LND),(0,w.U)(H=>(this.logger.info(H.payload),H.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.RESTORE_CHANNELS_LIST_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannelsList",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API+"/restore/list").pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"RestoreChannelsList",status:M.Bn.COMPLETED}})),{type:M.uR.SET_RESTORE_CHANNELS_LIST_LND,payload:H||{all_restore_exists:!1,files:[]}})),(0,m.K)(H=>(this.handleErrorWithAlert("RestoreChannelsList",M.m6.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+M.vv.CHANNELS_BACKUP_API,H),(0,y.of)({type:M.pg.VOID})))))))),this.setRestoreChannelList=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SET_RESTORE_CHANNELS_LIST_LND),(0,w.U)(H=>(this.logger.info(H.payload),H.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchLightningTransactions",status:M.Bn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+M.vv.PAYMENTS_API+"/alltransactions").pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchLightningTransactions",status:M.Bn.COMPLETED}})),{type:M.uR.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:H})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchLightningTransactions",M.m6.NO_SPINNER,"Fetching All Lightning Transaction Failed.",H),(0,y.of)({type:M.pg.VOID})))))))),this.pageSettingsFetch=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.FETCH_PAGE_SETTINGS_LND),(0,A.z)(()=>(this.store.dispatch((0,k.PC)({payload:{action:"FetchPageSettings",status:M.Bn.INITIATED}})),this.httpClient.get(M.vv.PAGE_SETTINGS_API).pipe((0,w.U)(H=>(this.logger.info(H),this.store.dispatch((0,k.PC)({payload:{action:"FetchPageSettings",status:M.Bn.COMPLETED}})),this.invoicesPageSettings=H&&Object.keys(H).length>0?H.find(R=>"transactions"===R.pageId)?.tables.find(R=>"invoices"===R.tableId):M.gK.find(R=>"transactions"===R.pageId)?.tables.find(R=>"invoices"===R.tableId),this.paymentsPageSettings=H&&Object.keys(H).length>0?H.find(R=>"transactions"===R.pageId)?.tables.find(R=>"payments"===R.tableId):M.gK.find(R=>"transactions"===R.pageId)?.tables.find(R=>"payments"===R.tableId),{type:M.uR.SET_PAGE_SETTINGS_LND,payload:H||[]})),(0,m.K)(H=>(this.handleErrorWithoutAlert("FetchPageSettings",M.m6.NO_SPINNER,"Fetching Page Settings Failed.",H),(0,y.of)({type:M.pg.VOID})))))))),this.savePageSettings=(0,e.GW)(()=>this.actions.pipe((0,e.l4)(M.uR.SAVE_PAGE_SETTINGS_LND),(0,A.z)(H=>(this.store.dispatch((0,I.ac)({payload:M.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,k.PC)({payload:{action:"SavePageSettings",status:M.Bn.INITIATED}})),this.httpClient.post(M.vv.PAGE_SETTINGS_API,H.payload).pipe((0,w.U)(R=>{this.logger.info(R),this.store.dispatch((0,k.PC)({payload:{action:"SavePageSettings",status:M.Bn.COMPLETED}})),this.store.dispatch((0,I.uO)({payload:M.m6.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,I.jW)({payload:"Page Layout Updated Successfully!"}));const ee=(R.find(ct=>"transactions"===ct.pageId)?.tables.find(ct=>"invoices"===ct.tableId)||M.gK.find(ct=>"transactions"===ct.pageId)?.tables.find(ct=>"invoices"===ct.tableId)).recordsPerPage,De=(R.find(ct=>"transactions"===ct.pageId)?.tables.find(ct=>"payments"===ct.tableId)||M.gK.find(ct=>"transactions"===ct.pageId)?.tables.find(ct=>"payments"===ct.tableId)).recordsPerPage;return this.invoicesPageSettings&&ee!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ee,this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&De!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=De),{type:M.uR.SET_PAGE_SETTINGS_LND,payload:R||[]}}),(0,m.K)(R=>(this.handleErrorWithAlert("SavePageSettings",M.m6.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",M.vv.PAGE_SETTINGS_API,R),(0,y.of)({type:M.pg.VOID})))))))),this.store.select(z.yA).pipe((0,l.R)(this.unSubs[0])).subscribe(H=>{H.FetchInfo.status!==M.Bn.COMPLETED&&H.FetchInfo.status!==M.Bn.ERROR||H.FetchFees.status!==M.Bn.COMPLETED&&H.FetchFees.status!==M.Bn.ERROR||H.FetchBalanceBlockchain.status!==M.Bn.COMPLETED&&H.FetchBalanceBlockchain.status!==M.Bn.ERROR||H.FetchAllChannels.status!==M.Bn.COMPLETED&&H.FetchAllChannels.status!==M.Bn.ERROR||H.FetchPendingChannels.status!==M.Bn.COMPLETED&&H.FetchPendingChannels.status!==M.Bn.ERROR||this.flgInitialized||(this.store.dispatch((0,I.uO)({payload:M.m6.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,l.R)(this.unSubs[1])).subscribe(H=>{this.logger.info("Received new message from the service: "+JSON.stringify(H)),H&&(H.type===M.g8.INVOICE?(this.logger.info(H),H&&H.result&&H.result.payment_request&&this.store.dispatch((0,k.aL)({payload:H.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(H)))})}initializeRemainingData(n,s){this.sessionService.setItem("lndUnlocked","true");const f={identity_pubkey:n.identity_pubkey,alias:n.alias,testnet:n.testnet,chains:n.chains,uris:n.uris,version:n.version?n.version.split(" ")[0]:""};this.store.dispatch((0,I.ac)({payload:M.m6.INITALIZE_NODE_DATA})),this.store.dispatch((0,I._V)({payload:f}));let h=this.location.path();h.includes("/cln/")?h=h?.replace("/cln/","/lnd/"):h.includes("/ecl/")&&(h=h?.replace("/ecl/","/lnd/")),(h.includes("/unlock")||h.includes("/login")||h.includes("/error")||""===h||"HOME"===s||h.includes("?access-key="))&&(h="/lnd/home"),this.router.navigate([h]),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}})),this.store.dispatch((0,k.WM)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(n,s,f,h){this.logger.error("ERROR IN: "+n+"\n"+JSON.stringify(h)),401===h.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,I.ts)()),this.store.dispatch((0,I.kS)()),this.store.dispatch((0,I.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,I.uO)({payload:s})),this.store.dispatch((0,k.PC)({payload:{action:n,status:M.Bn.ERROR,statusCode:h.status.toString(),message:this.commonService.extractErrorMessage(h,f)}})))}handleErrorWithAlert(n,s,f,h,C){if(this.logger.error(C),401===C.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,I.ts)()),this.store.dispatch((0,I.kS)()),this.store.dispatch((0,I.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,I.uO)({payload:s}));const D=this.commonService.extractErrorMessage(C);this.store.dispatch((0,I.qR)({payload:{data:{type:"ERROR",alertTitle:f,message:{code:C.status,message:D,URL:h},component:E.H}}})),this.store.dispatch((0,k.PC)({payload:{action:n,status:M.Bn.ERROR,statusCode:C.status.toString(),message:D,URL:h}}))}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#e=this.\u0275fac=function(s){return new(s||he)(B.LFG(e.eX),B.LFG(W.eN),B.LFG(j.yh),B.LFG(K.mQ),B.LFG(X.v),B.LFG(ie.m),B.LFG(se.uw),B.LFG(ue.F0),B.LFG(ae.d),B.LFG(Me.Ye))};static#t=this.\u0275prov=B.Yz7({token:he,factory:he.\u0275fac})}return he})()},7321:(Fe,q,p)=>{"use strict";p.d(q,{$k:()=>y,Bo:()=>P,Ef:()=>k,JG:()=>E,N7:()=>se,P2:()=>j,PP:()=>d,Pr:()=>A,Q5:()=>l,T4:()=>ie,Wi:()=>M,ZW:()=>z,_f:()=>ae,bx:()=>Me,dx:()=>I,l5:()=>ue,ni:()=>W,qU:()=>K,yA:()=>m});var e=p(4221);const t=(0,e.ZF)("lnd"),y=(0,e.P1)(t,J=>J.nodeSettings),A=(0,e.P1)(t,J=>({pageSettings:J.pageSettings,apiCallStatus:J.apisCallStatus.FetchPageSettings})),l=(0,e.P1)(t,J=>J.information),m=((0,e.P1)(t,J=>({information:J.information,apiCallStatus:J.apisCallStatus.FetchInfo})),(0,e.P1)(t,J=>J.apisCallStatus)),P=(0,e.P1)(t,J=>({forwardingHistory:J.forwardingHistory,apiCallStatus:J.apisCallStatus.FetchForwardingHistory})),d=(0,e.P1)(t,J=>({listPayments:J.listPayments,apiCallStatus:J.apisCallStatus.FetchPayments})),E=(0,e.P1)(t,J=>({fees:J.fees,apiCallStatus:J.apisCallStatus.FetchFees})),M=(0,e.P1)(t,J=>({peers:J.peers,apiCallStatus:J.apisCallStatus.FetchPeers})),I=(0,e.P1)(t,J=>({transactions:J.transactions,apiCallStatus:J.apisCallStatus.FetchTransactions})),k=(0,e.P1)(t,J=>({listInvoices:J.listInvoices,apiCallStatus:J.apisCallStatus.FetchInvoices})),z=(0,e.P1)(t,J=>({channels:J.channels,channelsSummary:J.channelsSummary,lightningBalance:J.lightningBalance,apiCallStatus:J.apisCallStatus.FetchAllChannels})),W=((0,e.P1)(t,J=>({channelsSummary:J.channelsSummary,pendingChannels:J.pendingChannels,closedChannels:J.closedChannels,apiCallStatus:J.apisCallStatus.FetchAllChannels})),(0,e.P1)(t,J=>({pendingChannels:J.pendingChannels,pendingChannelsSummary:J.pendingChannelsSummary,apiCallStatus:J.apisCallStatus.FetchPendingChannels}))),j=(0,e.P1)(t,J=>({closedChannels:J.closedChannels,apiCallStatus:J.apisCallStatus.FetchClosedChannels})),K=(0,e.P1)(t,J=>({blockchainBalance:J.blockchainBalance,apiCallStatus:J.apisCallStatus.FetchBalanceBlockchain})),ie=((0,e.P1)(t,J=>({lightningBalance:J.lightningBalance,apiCallStatus:J.apisCallStatus.FetchAllChannels})),(0,e.P1)(t,J=>({utxos:J.utxos,apiCallStatus:J.apisCallStatus.FetchUTXOs}))),se=(0,e.P1)(t,J=>({networkInfo:J.networkInfo,apiCallStatus:J.apisCallStatus.FetchNetwork})),ue=(0,e.P1)(t,J=>({allLightningTransactions:J.allLightningTransactions,apiCallStatus:J.apisCallStatus.FetchLightningTransactions})),ae=(0,e.P1)(t,J=>({channels:J.channels,pendingChannels:J.pendingChannels,closedChannels:J.closedChannels})),Me=(0,e.P1)(t,J=>({information:J.information,nodeSettings:J.nodeSettings,apiCallStatus:J.apisCallStatus.FetchInfo}))},5456:(Fe,q,p)=>{"use strict";p.d(q,{v:()=>It});var e=p(7700),t=p(590),y=p(8645),A=p(9773),l=p(2154),w=p(7321),m=p(9212),P=p(5980),d=p(6339),E=p(2939),M=p(4221),I=p(6814),k=p(5597),z=p(3814),B=p(7509),W=p(2296),j=p(5195),K=p(3305),X=p(617),ie=p(6385),se=p(5940),ue=p(2596),ae=p(2279),Me=p(7313),J=p(6985);const he=["scrollContainer"];function S(Ae,Be){if(1&Ae&&m._UZ(0,"qr-code",33),2&Ae){const rt=m.oxw();m.Q6J("value",null==rt.invoice?null:rt.invoice.payment_request)("size",rt.qrWidth)("errorCorrectionLevel","L")}}function n(Ae,Be){1&Ae&&(m.TgZ(0,"span",34),m._uU(1,"N/A"),m.qZA())}function s(Ae,Be){if(1&Ae&&m._UZ(0,"qr-code",33),2&Ae){const rt=m.oxw();m.Q6J("value",null==rt.invoice?null:rt.invoice.payment_request)("size",rt.qrWidth)("errorCorrectionLevel","L")}}function f(Ae,Be){1&Ae&&(m.TgZ(0,"span",35),m._uU(1,"QR Code Not Applicable"),m.qZA())}function h(Ae,Be){1&Ae&&m._UZ(0,"mat-divider",22),2&Ae&&m.Q6J("inset",!0)}function C(Ae,Be){1&Ae&&(m.ynx(0),m._uU(1," (zero amount) "),m.BQk())}function D(Ae,Be){1&Ae&&m._UZ(0,"span",41)}const O=()=>[];function v(Ae,Be){if(1&Ae&&(m.TgZ(0,"div",37)(1,"div",38)(2,"span",39),m._uU(3),m.ALo(4,"number"),m.qZA(),m.YNc(5,D,1,0,"span",40),m.qZA()()),2&Ae){const rt=m.oxw(2);m.xp6(3),m.hij("",m.lcZ(4,2,null==rt.invoice?null:rt.invoice.amt_paid_sat)," Sats"),m.xp6(2),m.Q6J("ngForOf",m.DdM(4,O).constructor(35))}}function r(Ae,Be){if(1&Ae&&(m.TgZ(0,"div"),m._uU(1),m.ALo(2,"number"),m.qZA()),2&Ae){const rt=m.oxw(2);m.xp6(1),m.hij("",m.lcZ(2,1,null==rt.invoice?null:rt.invoice.amt_paid_sat)," Sats")}}function g(Ae,Be){if(1&Ae&&(m.ynx(0),m.YNc(1,v,6,5,"div",36)(2,r,3,3,"div",21),m.BQk()),2&Ae){const rt=m.oxw();m.xp6(1),m.Q6J("ngIf",rt.flgInvoicePaid),m.xp6(1),m.Q6J("ngIf",!rt.flgInvoicePaid)}}function H(Ae,Be){1&Ae&&(m.TgZ(0,"span"),m._uU(1,"-"),m.qZA())}function R(Ae,Be){1&Ae&&m._UZ(0,"mat-spinner",43),2&Ae&&m.Q6J("diameter",20)}function ee(Ae,Be){if(1&Ae&&(m.ynx(0),m.YNc(1,H,2,0,"span",21)(2,R,1,1,"mat-spinner",42),m.BQk()),2&Ae){const rt=m.oxw();m.xp6(1),m.Q6J("ngIf","OPEN"!==(null==rt.invoice?null:rt.invoice.state)||!rt.flgVersionCompatible),m.xp6(1),m.Q6J("ngIf","OPEN"===(null==rt.invoice?null:rt.invoice.state)&&rt.flgVersionCompatible)}}function De(Ae,Be){1&Ae&&m.GkF(0)}function ct(Ae,Be){if(1&Ae&&(m.TgZ(0,"div"),m.YNc(1,De,1,0,"ng-container",44),m.qZA()),2&Ae){m.oxw();const rt=m.MAs(79);m.xp6(1),m.Q6J("ngTemplateOutlet",rt)}}function Ke(Ae,Be){if(1&Ae){const rt=m.EpF();m.TgZ(0,"div",45)(1,"button",46),m.NdJ("click",function(){m.CHM(rt);const Ie=m.oxw();return m.KtG(Ie.onScrollDown())}),m.TgZ(2,"mat-icon",47),m._uU(3,"arrow_downward"),m.qZA()()()}}function Je(Ae,Be){1&Ae&&(m.TgZ(0,"p"),m._uU(1,"Show Advanced"),m.qZA())}function ye(Ae,Be){1&Ae&&(m.TgZ(0,"p"),m._uU(1,"Hide Advanced"),m.qZA())}function fe(Ae,Be){if(1&Ae){const rt=m.EpF();m.TgZ(0,"button",48),m.NdJ("copied",function(Ie){m.CHM(rt);const lt=m.oxw();return m.KtG(lt.onCopyPayment(Ie))}),m._uU(1),m.qZA()}if(2&Ae){const rt=m.oxw();m.Q6J("payload",null==rt.invoice?null:rt.invoice.payment_request),m.xp6(1),m.Oqu(rt.screenSize===rt.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function de(Ae,Be){if(1&Ae){const rt=m.EpF();m.TgZ(0,"button",49),m.NdJ("click",function(){m.CHM(rt);const Ie=m.oxw();return m.KtG(Ie.onClose())}),m._uU(1,"OK"),m.qZA()}}const xe=Ae=>({"mr-0":Ae});function le(Ae,Be){if(1&Ae&&m._UZ(0,"span",64),2&Ae){const rt=m.oxw(4);m.Q6J("ngClass",m.VKq(1,xe,rt.screenSize===rt.screenSizeEnum.XS))}}function pe(Ae,Be){if(1&Ae&&m._UZ(0,"span",65),2&Ae){const rt=m.oxw(4);m.Q6J("ngClass",m.VKq(1,xe,rt.screenSize===rt.screenSizeEnum.XS))}}function qe(Ae,Be){if(1&Ae&&m._UZ(0,"span",66),2&Ae){const rt=m.oxw(4);m.Q6J("ngClass",m.VKq(1,xe,rt.screenSize===rt.screenSizeEnum.XS))}}function re(Ae,Be){if(1&Ae&&(m.TgZ(0,"div",53)(1,"div",58)(2,"span",59),m.YNc(3,le,1,3,"span",60)(4,pe,1,3,"span",61)(5,qe,1,3,"span",62),m._uU(6),m.qZA(),m.TgZ(7,"span",63),m._uU(8),m.ALo(9,"number"),m.qZA()(),m._UZ(10,"mat-divider",22),m.qZA()),2&Ae){const rt=Be.$implicit,$e=m.oxw(3);m.xp6(3),m.Q6J("ngIf","SETTLED"===rt.state),m.xp6(1),m.Q6J("ngIf","ACCEPTED"===rt.state),m.xp6(1),m.Q6J("ngIf","CANCELED"===rt.state),m.xp6(1),m.hij(" ",rt.chan_id," "),m.xp6(2),m.Oqu(m.xi3(9,6,+rt.amt_msat/1e3||0,$e.getDecimalFormat(rt))),m.xp6(2),m.Q6J("inset",!0)}}function ve(Ae,Be){if(1&Ae){const rt=m.EpF();m.TgZ(0,"div",17)(1,"mat-expansion-panel",51),m.NdJ("opened",function(){m.CHM(rt);const Ie=m.oxw(2);return m.KtG(Ie.flgOpened=!0)})("closed",function(){m.CHM(rt);const Ie=m.oxw(2);return m.KtG(Ie.onExpansionClosed())}),m.TgZ(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),m._uU(5,"HTLCs"),m.qZA()()(),m.TgZ(6,"div",53)(7,"div",54)(8,"span",55),m._uU(9,"Channel ID"),m.qZA(),m.TgZ(10,"span",56),m._uU(11,"Amount (Sats)"),m.qZA()(),m._UZ(12,"mat-divider",22),m.YNc(13,re,11,9,"div",57),m.qZA()()()}if(2&Ae){const rt=m.oxw(2);m.xp6(12),m.Q6J("inset",!0),m.xp6(1),m.Q6J("ngForOf",null==rt.invoice?null:rt.invoice.htlcs)}}function ce(Ae,Be){1&Ae&&m._UZ(0,"mat-divider",22),2&Ae&&m.Q6J("inset",!0)}function Ze(Ae,Be){if(1&Ae&&(m._UZ(0,"mat-divider",22),m.TgZ(1,"div",17)(2,"div",23)(3,"h4",19),m._uU(4,"Preimage"),m.qZA(),m.TgZ(5,"span",24),m._uU(6),m.qZA()()(),m._UZ(7,"mat-divider",22),m.TgZ(8,"div",17)(9,"div",18)(10,"h4",19),m._uU(11,"State"),m.qZA(),m.TgZ(12,"span",24),m._uU(13),m.qZA()(),m.TgZ(14,"div",18)(15,"h4",19),m._uU(16,"Expiry"),m.qZA(),m.TgZ(17,"span",24),m._uU(18),m.ALo(19,"date"),m.qZA()()(),m._UZ(20,"mat-divider",22),m.TgZ(21,"div",17)(22,"div",18)(23,"h4",19),m._uU(24,"Private Routing Hints"),m.qZA(),m.TgZ(25,"span",24),m._uU(26),m.qZA()(),m.TgZ(27,"div",18)(28,"h4",19),m._uU(29,"AMP Invoice"),m.qZA(),m.TgZ(30,"span",24),m._uU(31),m.qZA()()(),m._UZ(32,"mat-divider",22),m.YNc(33,ve,14,2,"div",50)(34,ce,1,1,"mat-divider",14)),2&Ae){const rt=m.oxw();m.Q6J("inset",!0),m.xp6(6),m.Oqu((null==rt.invoice?null:rt.invoice.r_preimage)||"-"),m.xp6(1),m.Q6J("inset",!0),m.xp6(6),m.Oqu(null==rt.invoice?null:rt.invoice.state),m.xp6(5),m.Oqu(m.xi3(19,11,1e3*(+(null==rt.invoice?null:rt.invoice.creation_date)+ +(null==rt.invoice?null:rt.invoice.expiry)),"dd/MMM/y HH:mm")),m.xp6(2),m.Q6J("inset",!0),m.xp6(6),m.Oqu(null!=rt.invoice&&rt.invoice.private?"Yes":"No"),m.xp6(5),m.Oqu(null!=rt.invoice&&rt.invoice.is_amp?"Yes":"No"),m.xp6(1),m.Q6J("inset",!0),m.xp6(1),m.Q6J("ngIf",(null==rt.invoice?null:rt.invoice.htlcs)&&(null==rt.invoice?null:rt.invoice.htlcs.length)>0),m.xp6(1),m.Q6J("ngIf",(null==rt.invoice?null:rt.invoice.htlcs)&&(null==rt.invoice?null:rt.invoice.htlcs.length)>0)}}const We=Ae=>({"display-none":Ae}),Ct=Ae=>({"xs-scroll-y":Ae}),ut=Ae=>({"h-50":Ae});let It=(()=>{class Ae{set container(rt){rt&&(this.scrollContainer=rt)}constructor(rt,$e,Ie,lt,Qe,St){this.dialogRef=rt,this.data=$e,this.logger=Ie,this.commonService=lt,this.snackBar=Qe,this.store=St,this.faReceipt=t.dLy,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.cu,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new y.x,new y.x,new y.x,new y.x,new y.x]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.cu.XS&&(this.qrWidth=220),this.store.select(w.Q5).pipe((0,A.R)(this.unSubs[0])).subscribe($e=>{this.flgVersionCompatible=this.commonService.isVersionCompatible($e.version,"0.11.0")});const rt=JSON.parse(JSON.stringify(this.invoice));this.store.select(w.Ef).pipe((0,A.R)(this.unSubs[1])).subscribe($e=>{const Ie=this.invoice?.state,Qe=($e.listInvoices.invoices||[]).find(St=>St.r_hash===rt.r_hash)||null;Qe&&(this.invoice=Qe),Ie!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info($e)})}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(rt){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+rt)}getDecimalFormat(rt){return rt.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(rt=>{rt.next(null),rt.complete()})}static#e=this.\u0275fac=function($e){return new($e||Ae)(m.Y36(e.so),m.Y36(e.WI),m.Y36(P.mQ),m.Y36(d.v),m.Y36(E.ux),m.Y36(M.yh))};static#t=this.\u0275cmp=m.Xpm({type:Ae,selectors:[["rtl-invoice-information"]],viewQuery:function($e,Ie){if(1&$e&&m.Gf(he,5),2&$e){let lt;m.iGM(lt=m.CRH())&&(Ie.container=lt.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 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($e,Ie){if(1&$e&&(m.TgZ(0,"div",0)(1,"div",1),m.YNc(2,S,1,3,"qr-code",2)(3,n,2,0,"span",3),m.qZA(),m.TgZ(4,"div",4)(5,"mat-card-header",5)(6,"div",6),m._UZ(7,"fa-icon",7),m.TgZ(8,"span",8),m._uU(9),m.qZA()(),m.TgZ(10,"button",9),m.NdJ("click",function(){return Ie.onClose()}),m._uU(11,"X"),m.qZA()(),m.TgZ(12,"mat-card-content",10)(13,"div",11)(14,"div",12),m.YNc(15,s,1,3,"qr-code",2)(16,f,2,0,"span",13),m.qZA(),m.YNc(17,h,1,1,"mat-divider",14),m.TgZ(18,"div",15,16)(20,"div",17)(21,"div",18)(22,"h4",19),m._uU(23),m.qZA(),m.TgZ(24,"span",20),m._uU(25),m.ALo(26,"number"),m.YNc(27,C,2,0,"ng-container",21),m.qZA()(),m.TgZ(28,"div",18)(29,"h4",19),m._uU(30,"Amount Settled"),m.qZA(),m.TgZ(31,"span",20),m.YNc(32,g,3,2,"ng-container",21)(33,ee,3,2,"ng-container",21),m.qZA()()(),m._UZ(34,"mat-divider",22),m.TgZ(35,"div",17)(36,"div",18)(37,"h4",19),m._uU(38,"Date Created"),m.qZA(),m.TgZ(39,"span",20),m._uU(40),m.ALo(41,"date"),m.qZA()(),m.TgZ(42,"div",18)(43,"h4",19),m._uU(44,"Date Settled"),m.qZA(),m.TgZ(45,"span",20),m._uU(46),m.ALo(47,"date"),m.qZA()()(),m._UZ(48,"mat-divider",22),m.TgZ(49,"div",17)(50,"div",23)(51,"h4",19),m._uU(52,"Memo"),m.qZA(),m.TgZ(53,"span",20),m._uU(54),m.qZA()()(),m._UZ(55,"mat-divider",22),m.TgZ(56,"div",17)(57,"div",23)(58,"h4",19),m._uU(59,"Payment Request"),m.qZA(),m.TgZ(60,"span",24),m._uU(61),m.qZA()()(),m._UZ(62,"mat-divider",22),m.TgZ(63,"div",17)(64,"div",23)(65,"h4",19),m._uU(66,"Payment Hash"),m.qZA(),m.TgZ(67,"span",24),m._uU(68),m.qZA()()(),m.YNc(69,ct,2,1,"div",21),m.qZA()()(),m.YNc(70,Ke,4,0,"div",25),m.TgZ(71,"div",26)(72,"button",27),m.NdJ("click",function(){return Ie.onShowAdvanced()}),m.YNc(73,Je,2,0,"p",28)(74,ye,2,0,"ng-template",null,29,m.W1O),m.qZA(),m.YNc(76,fe,2,2,"button",30)(77,de,2,0,"button",31),m.qZA()()(),m.YNc(78,Ze,35,14,"ng-template",null,32,m.W1O)),2&$e){const lt=m.MAs(75);m.xp6(1),m.Q6J("fxLayoutAlign",null!=Ie.invoice&&Ie.invoice.payment_request&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)?"center start":"center center")("ngClass",m.VKq(41,We,Ie.screenSize===Ie.screenSizeEnum.XS||Ie.screenSize===Ie.screenSizeEnum.SM)),m.xp6(1),m.Q6J("ngIf",(null==Ie.invoice?null:Ie.invoice.payment_request)&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)),m.xp6(1),m.Q6J("ngIf",!(null!=Ie.invoice&&Ie.invoice.payment_request)||""===(null==Ie.invoice?null:Ie.invoice.payment_request)),m.xp6(4),m.Q6J("icon",Ie.faReceipt),m.xp6(2),m.Oqu(Ie.screenSize===Ie.screenSizeEnum.XS?Ie.newlyAdded?"Created":"Invoice":Ie.newlyAdded?"Invoice Created":"Invoice Information"),m.xp6(3),m.Q6J("ngClass",m.VKq(43,Ct,Ie.screenSize===Ie.screenSizeEnum.XS)),m.xp6(2),m.Q6J("fxLayoutAlign",null!=Ie.invoice&&Ie.invoice.payment_request&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)?"center start":"center center")("ngClass",m.VKq(45,We,Ie.screenSize!==Ie.screenSizeEnum.XS&&Ie.screenSize!==Ie.screenSizeEnum.SM)),m.xp6(1),m.Q6J("ngIf",(null==Ie.invoice?null:Ie.invoice.payment_request)&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)),m.xp6(1),m.Q6J("ngIf",!(null!=Ie.invoice&&Ie.invoice.payment_request)||""===(null==Ie.invoice?null:Ie.invoice.payment_request)),m.xp6(1),m.Q6J("ngIf",Ie.screenSize===Ie.screenSizeEnum.XS||Ie.screenSize===Ie.screenSizeEnum.SM),m.xp6(1),m.Q6J("ngClass",m.VKq(47,ut,(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0&&Ie.showAdvanced)),m.xp6(5),m.Oqu(Ie.screenSize===Ie.screenSizeEnum.XS?"Amount":"Amount Requested"),m.xp6(2),m.hij("",m.lcZ(26,33,(null==Ie.invoice?null:Ie.invoice.value)||0)," Sats"),m.xp6(2),m.Q6J("ngIf",!(null!=Ie.invoice&&Ie.invoice.value)||"0"===(null==Ie.invoice?null:Ie.invoice.value)),m.xp6(5),m.Q6J("ngIf",(null==Ie.invoice?null:Ie.invoice.amt_paid_sat)&&"OPEN"!==(null==Ie.invoice?null:Ie.invoice.state)),m.xp6(1),m.Q6J("ngIf",!(null!=Ie.invoice&&Ie.invoice.amt_paid_sat)||"0"===(null==Ie.invoice?null:Ie.invoice.amt_paid_sat)),m.xp6(1),m.Q6J("inset",!0),m.xp6(6),m.Oqu(m.xi3(41,35,1e3*(null==Ie.invoice?null:Ie.invoice.creation_date),"dd/MMM/y HH:mm")),m.xp6(6),m.Oqu(0!=+(null==Ie.invoice?null:Ie.invoice.settle_date)?m.xi3(47,38,1e3*+(null==Ie.invoice?null:Ie.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),m.xp6(2),m.Q6J("inset",!0),m.xp6(6),m.Oqu(null==Ie.invoice?null:Ie.invoice.memo),m.xp6(1),m.Q6J("inset",!0),m.xp6(6),m.Oqu((null==Ie.invoice?null:Ie.invoice.payment_request)||"N/A"),m.xp6(1),m.Q6J("inset",!0),m.xp6(6),m.Oqu((null==Ie.invoice?null:Ie.invoice.r_hash)||""),m.xp6(1),m.Q6J("ngIf",Ie.showAdvanced),m.xp6(1),m.Q6J("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0&&Ie.showAdvanced&&Ie.flgOpened),m.xp6(3),m.Q6J("ngIf",!Ie.showAdvanced)("ngIfElse",lt),m.xp6(3),m.Q6J("ngIf",(null==Ie.invoice?null:Ie.invoice.payment_request)&&""!==(null==Ie.invoice?null:Ie.invoice.payment_request)),m.xp6(1),m.Q6J("ngIf",!(null!=Ie.invoice&&Ie.invoice.payment_request)||""===(null==Ie.invoice?null:Ie.invoice.payment_request))}},dependencies:[I.mk,I.sg,I.O5,I.tP,k.BN,z.xw,z.Wh,z.yH,B.oO,W.lW,W.nh,j.dn,j.dk,K.ib,K.yz,K.yK,X.Hw,ie.d,se.Ou,ue.gM,ae.uU,Me.y,J.h,I.JJ,I.uU]})}return Ae})()},8291:(Fe,q,p)=>{"use strict";p.d(q,{J:()=>y,_:()=>t});var e=p(6825);const t=[(0,e.X$)("opacityAnimation",[(0,e.eR)(":enter",[(0,e.oB)({opacity:0}),(0,e.jt)("1000ms ease-in",(0,e.oB)({opacity:1}))]),(0,e.eR)(":leave",[(0,e.jt)("0ms",(0,e.oB)({opacity:0}))])])],y=[(0,e.X$)("fadeIn",[(0,e.eR)("void => *",[]),(0,e.eR)("* => void",[]),(0,e.eR)("* => *",[(0,e.jt)(800,(0,e.F4)([(0,e.oB)({opacity:0,transform:"translateY(100%)"}),(0,e.oB)({opacity:1,transform:"translateY(0%)"})]))])])]},5256:(Fe,q,p)=>{"use strict";p.d(q,{g:()=>t});var e=p(6825);const t=(0,e.X$)("routeAnimation",[(0,e.eR)("* => *",[(0,e.IO)(":enter, :leave",(0,e.oB)({position:"fixed",width:"100%"}),{optional:!0}),(0,e.ru)([(0,e.IO)(":enter",[(0,e.oB)({transform:"translateX(100%)"}),(0,e.jt)("1000ms ease-in-out",(0,e.oB)({transform:"translateX(0%)"}))],{optional:!0}),(0,e.IO)(":leave",[(0,e.oB)({transform:"translateX(0%)"}),(0,e.jt)("1000ms ease-in-out",(0,e.oB)({transform:"translateX(-100%)"}))],{optional:!0})])])])},3214:(Fe,q,p)=>{"use strict";p.d(q,{l:()=>t});var e=p(6825);const t=[(0,e.X$)("sliderAnimation",[(0,e.SB)("*",(0,e.oB)({transform:"translateX(0)"})),(0,e.eR)("void => backward",[(0,e.oB)({transform:"translateX(-100%"}),(0,e.jt)("800ms")]),(0,e.eR)("backward => void",[(0,e.jt)("0ms",(0,e.oB)({transform:"translateX(100%)"}))]),(0,e.eR)("void => forward",[(0,e.oB)({transform:"translateX(100%"}),(0,e.jt)("800ms")]),(0,e.eR)("forward => void",[(0,e.jt)("0ms",(0,e.oB)({transform:"translateX(-100%)"}))])])]},3315:(Fe,q,p)=>{"use strict";p.d(q,{H:()=>M});var e=p(7700),t=p(9212),y=p(5980),A=p(6814),l=p(3814),w=p(2296),m=p(5195),P=p(6385),d=p(6985);function E(I,k){if(1&I&&(t.TgZ(0,"p",14),t._uU(1),t.qZA()),2&I){const z=t.oxw();t.xp6(1),t.Oqu(z.data.titleMessage)}}let M=(()=>{class I{constructor(z,B,W){this.dialogRef=z,this.data=B,this.logger=W,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)}static#e=this.\u0275fac=function(B){return new(B||I)(t.Y36(e.so),t.Y36(e.WI),t.Y36(y.mQ))};static#t=this.\u0275cmp=t.Xpm({type:I,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 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(B,W){1&B&&(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 W.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"div",7),t.YNc(10,E,2,1,"p",8),t.TgZ(11,"h4",9),t._uU(12,"Error Code"),t.qZA(),t.TgZ(13,"span"),t._uU(14),t.qZA(),t._UZ(15,"mat-divider",10),t.TgZ(16,"h4",9),t._uU(17,"Error Message"),t.qZA(),t.TgZ(18,"span",11),t._uU(19),t.qZA(),t._UZ(20,"mat-divider",10),t.TgZ(21,"h4",9),t._uU(22,"API URL"),t.qZA(),t.TgZ(23,"span",11),t._uU(24),t.qZA(),t._UZ(25,"mat-divider",10),t.TgZ(26,"div",12)(27,"button",13),t._uU(28,"OK"),t.qZA()()()()()()),2&B&&(t.xp6(5),t.Oqu(W.data.alertTitle||"ERROR"),t.xp6(5),t.Q6J("ngIf",W.data.titleMessage),t.xp6(4),t.Oqu(W.data.message.code),t.xp6(5),t.Oqu(W.errorMessage),t.xp6(5),t.Oqu(W.data.message.URL),t.xp6(3),t.Q6J("mat-dialog-close",!1))},dependencies:[A.O5,l.xw,l.Wh,l.yH,e.ZT,w.lW,m.dn,m.dk,P.d,d.h],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return I})()},5487:(Fe,q,p)=>{"use strict";p.d(q,{a:()=>on});var e=p(6223),t=p(8645),y=p(9773),A=p(7700),l=p(590),w=p(8291),m=p(2154),P=p(7321),d=p(9212),E=p(4221),M=p(3149),I=p(6814),k=p(5980),z=p(4190),B=p(6339),W=p(3814),j=p(7509),K=p(2296),X=p(5195),ie=p(3305),se=p(617),ue=p(2032),ae=p(5683),Me=p(6007),J=p(7466),he=p(2599),S=p(2596),n=p(8257),s=p(6985),f=p(6385);function h(st,si){1&st&&d.GkF(0)}function C(st,si){1&st&&d.GkF(0)}const D=st=>({"h-5":st});function O(st,si){if(1&st&&(d.TgZ(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),d._uU(4),d.ALo(5,"number"),d.qZA()()(),d.YNc(6,C,1,0,"ng-container",0),d.qZA()),2&st){const Ce=d.oxw(),Mt=d.MAs(4);d.Q6J("expanded",Ce.panelExpanded)("ngClass",d.VKq(7,D,!Ce.flgShowPanel)),d.xp6(4),d.AsE("Quote for ",Ce.termCaption," amount (",d.lcZ(5,5,Ce.quote.amount)," Sats)"),d.xp6(2),d.Q6J("ngTemplateOutlet",Mt)}}function v(st,si){if(1&st&&(d.TgZ(0,"div",19)(1,"h4",8),d._uU(2," Prepay Amount (Sats) "),d.TgZ(3,"mat-icon",20),d._uU(4,"info_outline"),d.qZA()(),d.TgZ(5,"span",10),d._uU(6),d.ALo(7,"number"),d.qZA()()),2&st){const Ce=d.oxw(2);d.xp6(6),d.Oqu(d.lcZ(7,1,null==Ce.quote?null:Ce.quote.prepay_amt_sat))}}function r(st,si){1&st&&d._UZ(0,"mat-divider",13)}function g(st,si){if(1&st&&(d.TgZ(0,"div",6)(1,"div",21)(2,"h4",8),d._uU(3," Swap Server Node Pubkey "),d.TgZ(4,"mat-icon",22),d._uU(5,"info_outline"),d.qZA()(),d.TgZ(6,"span",10),d._uU(7),d.qZA()()()),2&st){const Ce=d.oxw(2);d.xp6(7),d.Oqu(null==Ce.quote?null:Ce.quote.swap_payment_dest)}}function H(st,si){if(1&st&&(d.TgZ(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),d._uU(4," Swap Fee (Sats) "),d.TgZ(5,"mat-icon",9),d._uU(6,"info_outline"),d.qZA()(),d.TgZ(7,"span",10),d._uU(8),d.ALo(9,"number"),d.qZA()(),d.TgZ(10,"div",7)(11,"h4",8),d._uU(12),d.TgZ(13,"mat-icon",11),d._uU(14,"info_outline"),d.qZA()(),d.TgZ(15,"span",10),d._uU(16),d.ALo(17,"number"),d.qZA()(),d.YNc(18,v,8,3,"div",12),d.qZA(),d._UZ(19,"mat-divider",13),d.TgZ(20,"div",6)(21,"div",14)(22,"h4",8),d._uU(23," Max Off-chain Swap Routing Fee (Sats) "),d.TgZ(24,"mat-icon",15),d._uU(25,"info_outline"),d.qZA()(),d.TgZ(26,"span",10),d._uU(27),d.ALo(28,"number"),d.qZA()(),d.TgZ(29,"div",14)(30,"h4",8),d._uU(31," Max Off-chain Prepay Routing Fee (Sats) "),d.TgZ(32,"mat-icon",16),d._uU(33,"info_outline"),d.qZA()(),d.TgZ(34,"span",10),d._uU(35,"36"),d.qZA()()(),d.YNc(36,r,1,0,"mat-divider",17)(37,g,8,1,"div",18),d.qZA()),2&st){const Ce=d.oxw();d.xp6(2),d.Q6J("fxFlex",null!=Ce.quote&&Ce.quote.prepay_amt_sat?"30":"50"),d.xp6(6),d.Oqu(d.lcZ(9,9,null==Ce.quote?null:Ce.quote.swap_fee_sat)),d.xp6(2),d.Q6J("fxFlex",null!=Ce.quote&&Ce.quote.prepay_amt_sat?"35":"50"),d.xp6(2),d.hij(" ",null!=Ce.quote&&Ce.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=Ce.quote&&Ce.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),d.xp6(4),d.Oqu(d.lcZ(17,11,null!=Ce.quote&&Ce.quote.htlc_sweep_fee_sat?Ce.quote.htlc_sweep_fee_sat:null!=Ce.quote&&Ce.quote.htlc_publish_fee_sat?Ce.quote.htlc_publish_fee_sat:0)),d.xp6(2),d.Q6J("ngIf",null==Ce.quote?null:Ce.quote.prepay_amt_sat),d.xp6(9),d.Oqu(d.lcZ(28,13,(null==Ce.quote?null:Ce.quote.amount)*((null!=Ce.quote&&Ce.quote.off_chain_swap_routing_fee_percentage?null==Ce.quote?null:Ce.quote.off_chain_swap_routing_fee_percentage:2)/100))),d.xp6(9),d.Q6J("ngIf",""!==(null==Ce.quote?null:Ce.quote.swap_payment_dest)),d.xp6(1),d.Q6J("ngIf",""!==(null==Ce.quote?null:Ce.quote.swap_payment_dest))}}let R=(()=>{class st{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275cmp=d.Xpm({type:st,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(Mt,Ht){if(1&Mt&&d.YNc(0,h,1,0,"ng-container",0)(1,O,7,9,"ng-template",null,1,d.W1O)(3,H,38,15,"ng-template",null,2,d.W1O),2&Mt){const Dt=d.MAs(2),kt=d.MAs(4);d.Q6J("ngTemplateOutlet",Ht.showPanel?Dt:kt)}},dependencies:[I.mk,I.O5,I.tP,W.xw,W.Wh,W.yH,j.oO,ie.ib,ie.yz,ie.yK,se.Hw,f.d,S.gM,I.JJ]})}return st})();function ee(st,si){1&st&&d.GkF(0)}function De(st,si){if(1&st&&(d.TgZ(0,"div",3)(1,"span",4),d._uU(2),d.qZA()()),2&st){const Ce=d.oxw();d.xp6(2),d.Oqu(null!=Ce.loopStatus&&Ce.loopStatus.error?null==Ce.loopStatus?null:Ce.loopStatus.error:"Unknown Error.")}}function ct(st,si){if(1&st&&(d.TgZ(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),d._uU(4,"ID"),d.qZA(),d.TgZ(5,"span",4),d._uU(6),d.qZA()()(),d._UZ(7,"mat-divider",8),d.TgZ(8,"div",5)(9,"div",6)(10,"h4",7),d._uU(11,"HTLC Address"),d.qZA(),d.TgZ(12,"span",4),d._uU(13),d.qZA()()()()),2&st){const Ce=d.oxw();d.xp6(6),d.Oqu(null==Ce.loopStatus?null:Ce.loopStatus.id_bytes),d.xp6(7),d.Oqu(null==Ce.loopStatus?null:Ce.loopStatus.htlc_address)}}let Ke=(()=>{class st{constructor(){}static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275cmp=d.Xpm({type:st,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(Mt,Ht){if(1&Mt&&d.YNc(0,ee,1,0,"ng-container",0)(1,De,3,1,"ng-template",null,1,d.W1O)(3,ct,14,2,"ng-template",null,2,d.W1O),2&Mt){const Dt=d.MAs(2),kt=d.MAs(4);d.Q6J("ngTemplateOutlet",null!=Ht.loopStatus&&Ht.loopStatus.error?Dt:kt)}},dependencies:[I.tP,W.xw,W.Wh,W.yH,f.d]})}return st})();var Je=p(3214);function ye(st,si){1&st&&d.GkF(0)}const fe=(st,si)=>({"small-svg":st,"large-svg":si});function de(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",7)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d._UZ(8,"circle",12)(9,"path",13),d.qZA(),d.TgZ(10,"g",14),d._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),d.qZA()()()()(),d.kcU(),d.TgZ(26,"div",30)(27,"mat-card-title"),d._uU(28,"Loop In explained."),d.qZA()(),d.TgZ(29,"div",31)(30,"mat-card-subtitle",32),d._uU(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,fe,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function xe(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",33)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"defs")(5,"linearGradient",34),d._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),d.qZA()(),d.TgZ(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),d._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),d.qZA(),d.TgZ(28,"g",56)(29,"g",57)(30,"g",58),d._UZ(31,"path",59)(32,"rect",60)(33,"polygon",61),d.TgZ(34,"g",62),d._UZ(35,"path",63),d.qZA(),d._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),d.qZA(),d.TgZ(45,"g",73),d._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),d.qZA(),d._UZ(59,"path",87),d.qZA()()()()()(),d.kcU(),d.TgZ(60,"div",30)(61,"mat-card-title"),d._uU(62,"Step 1: Deciding to Loop In"),d.qZA()(),d.TgZ(63,"div",31)(64,"mat-card-subtitle",32),d._uU(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,fe,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function le(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",88)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"defs")(5,"linearGradient",89),d._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),d.qZA()(),d.TgZ(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),d._UZ(14,"circle",95)(15,"path",96),d.TgZ(16,"g",97),d._UZ(17,"polygon",98)(18,"polygon",99)(19,"path",100),d.qZA(),d.TgZ(20,"g",101),d._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),d.TgZ(31,"g",112)(32,"g",113),d._UZ(33,"g",114),d.qZA(),d._UZ(34,"g",115),d.qZA()()(),d.TgZ(35,"g",116)(36,"g",40),d._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),d.qZA(),d.TgZ(53,"g",56)(54,"g",57)(55,"g",58),d._UZ(56,"path",59)(57,"rect",60)(58,"polygon",61),d.TgZ(59,"g",122),d._UZ(60,"path",63),d.qZA(),d._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),d.qZA(),d.TgZ(70,"g",73),d._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),d.qZA(),d._UZ(84,"path",139),d.qZA()()()(),d._UZ(85,"path",140)(86,"path",141),d.qZA()()()(),d.kcU(),d.TgZ(87,"div",30)(88,"mat-card-title"),d._uU(89,"Step 2: Send payment out"),d.qZA()(),d.TgZ(90,"div",31)(91,"mat-card-subtitle",32),d._uU(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,fe,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function pe(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",142)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),d._UZ(10,"circle",12)(11,"path",147),d.qZA(),d.TgZ(12,"g",14),d._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),d.qZA()(),d.TgZ(28,"g",149),d._UZ(29,"polygon",150)(30,"polygon",99)(31,"path",151),d.qZA(),d.TgZ(32,"g",152),d._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),d.TgZ(43,"g",112)(44,"g",113),d._UZ(45,"g",114),d.qZA(),d._UZ(46,"g",115),d.qZA()()(),d._UZ(47,"path",153),d.qZA()()()(),d.kcU(),d.TgZ(48,"div",30)(49,"mat-card-title"),d._uU(50,"Step 3: Recieve Funds Off-chain"),d.qZA()(),d.TgZ(51,"div",31)(52,"mat-card-subtitle",32),d._uU(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,fe,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function qe(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",154)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"defs")(5,"linearGradient",34),d._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),d.qZA()(),d.TgZ(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),d._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),d.qZA(),d.TgZ(28,"g",172),d._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),d.qZA(),d._UZ(43,"path",187),d.qZA()(),d._UZ(44,"circle",188),d.qZA()()()(),d.kcU(),d.TgZ(45,"div",30)(46,"mat-card-title"),d._uU(47,"Done!"),d.qZA()(),d.TgZ(48,"div",31)(49,"mat-card-subtitle",32),d._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. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,fe,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}let re=(()=>{class st{constructor(Ce){this.commonService=Ce,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.vpe,this.screenSize="",this.screenSizeEnum=m.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Ce){2===Ce.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Ce.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(d.Y36(B.v))};static#t=this.\u0275cmp=d.Xpm({type:st,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(Mt,Ht){if(1&Mt&&d.YNc(0,ye,1,0,"ng-container",0)(1,de,32,5,"ng-template",null,1,d.W1O)(3,xe,66,5,"ng-template",null,2,d.W1O)(5,le,93,5,"ng-template",null,3,d.W1O)(7,pe,54,5,"ng-template",null,4,d.W1O)(9,qe,51,5,"ng-template",null,5,d.W1O),2&Mt){const Dt=d.MAs(2),kt=d.MAs(4),Gt=d.MAs(6),oi=d.MAs(8),bi=d.MAs(10);d.Q6J("ngTemplateOutlet",1===Ht.stepNumber?Dt:2===Ht.stepNumber?kt:3===Ht.stepNumber?Gt:4===Ht.stepNumber?oi:bi)}},dependencies:[I.mk,I.tP,W.xw,W.Wh,W.yH,j.oO,X.$j,X.n5],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:[Je.l]}})}return st})();function ve(st,si){1&st&&d.GkF(0)}const ce=(st,si)=>({"small-svg":st,"large-svg":si});function Ze(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",7)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d._UZ(8,"circle",12)(9,"path",13),d.qZA(),d.TgZ(10,"g",14),d._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),d.qZA()()()()(),d.kcU(),d.TgZ(26,"div",30)(27,"mat-card-title"),d._uU(28,"Loop Out explained."),d.qZA()(),d.TgZ(29,"div",31)(30,"mat-card-subtitle",32),d._uU(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,ce,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function We(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",33)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"defs")(5,"linearGradient",34),d._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),d.qZA()(),d.TgZ(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),d._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),d.qZA(),d.TgZ(28,"g",56),d._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),d.qZA(),d._UZ(43,"path",71),d.qZA()(),d._UZ(44,"circle",72),d.qZA()()()(),d.kcU(),d.TgZ(45,"div",30)(46,"mat-card-title"),d._uU(47,"Step 1: Deciding to Loop Out"),d.qZA()(),d.TgZ(48,"div",31)(49,"mat-card-subtitle",32),d._uU(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,ce,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function Ct(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",73)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"defs")(5,"linearGradient",74),d._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),d.qZA()(),d.TgZ(9,"g",8)(10,"g",75)(11,"g",76),d._UZ(12,"circle",77)(13,"path",78),d.TgZ(14,"g",79),d._UZ(15,"polygon",80)(16,"polygon",81)(17,"path",82),d.qZA(),d.TgZ(18,"g",83),d._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),d.TgZ(29,"g",94)(30,"g",95),d._UZ(31,"g",96),d.qZA(),d._UZ(32,"g",97),d.qZA(),d._UZ(33,"path",98),d.qZA(),d.TgZ(34,"g",99)(35,"g",41)(36,"g",42),d._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),d.qZA(),d.TgZ(52,"g",56),d._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),d.qZA(),d._UZ(67,"path",111),d.qZA()()()()()(),d.kcU(),d.TgZ(68,"div",30)(69,"mat-card-title"),d._uU(70,"Step 2: Send lightning payment"),d.qZA()(),d.TgZ(71,"div",31)(72,"mat-card-subtitle",32),d._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. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,ce,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function ut(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",112)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),d._UZ(9,"circle",12)(10,"path",117),d.qZA(),d.TgZ(11,"g",14),d._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),d.qZA()(),d.TgZ(27,"g",119),d._UZ(28,"polygon",80)(29,"polygon",120)(30,"path",82),d.qZA(),d.TgZ(31,"g",121),d._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),d.TgZ(42,"g",94)(43,"g",95),d._UZ(44,"g",96),d.qZA(),d._UZ(45,"g",97),d.qZA(),d._UZ(46,"path",123),d.qZA()()()()(),d.kcU(),d.TgZ(47,"div",30)(48,"mat-card-title"),d._uU(49,"Step 3: Receive funds back"),d.qZA()(),d.TgZ(50,"div",31)(51,"mat-card-subtitle",32),d._uU(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,ce,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}function It(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",6),d.NdJ("swipe",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.onSwipe(Ht))}),d.O4$(),d.TgZ(1,"svg",124)(2,"desc"),d._uU(3,"Created with Sketch."),d.qZA(),d.TgZ(4,"defs")(5,"linearGradient",34),d._UZ(6,"stop",35)(7,"stop",36)(8,"stop",37),d.qZA()(),d.TgZ(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),d._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),d.qZA(),d.TgZ(28,"g",142)(29,"g",143)(30,"g",144),d._UZ(31,"path",145)(32,"rect",146)(33,"polygon",147),d.TgZ(34,"g",148),d._UZ(35,"path",149),d.qZA(),d._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),d.qZA(),d.TgZ(45,"g",159),d._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),d.qZA(),d._UZ(59,"path",173),d.qZA()()()()()(),d.kcU(),d.TgZ(60,"div",30)(61,"mat-card-title"),d._uU(62,"Done!"),d.qZA()(),d.TgZ(63,"div",31)(64,"mat-card-subtitle",32),d._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. "),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@sliderAnimation",Ce.animationDirection),d.xp6(1),d.Q6J("ngClass",d.WLB(2,ce,Ce.screenSize===Ce.screenSizeEnum.XS,Ce.screenSize!==Ce.screenSizeEnum.XS))}}let Ae=(()=>{class st{constructor(Ce){this.commonService=Ce,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.vpe,this.screenSize="",this.screenSizeEnum=m.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Ce){2===Ce.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Ce.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(d.Y36(B.v))};static#t=this.\u0275cmp=d.Xpm({type:st,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(Mt,Ht){if(1&Mt&&d.YNc(0,ve,1,0,"ng-container",0)(1,Ze,32,5,"ng-template",null,1,d.W1O)(3,We,51,5,"ng-template",null,2,d.W1O)(5,Ct,74,5,"ng-template",null,3,d.W1O)(7,ut,53,5,"ng-template",null,4,d.W1O)(9,It,66,5,"ng-template",null,5,d.W1O),2&Mt){const Dt=d.MAs(2),kt=d.MAs(4),Gt=d.MAs(6),oi=d.MAs(8),bi=d.MAs(10);d.Q6J("ngTemplateOutlet",1===Ht.stepNumber?Dt:2===Ht.stepNumber?kt:3===Ht.stepNumber?Gt:4===Ht.stepNumber?oi:bi)}},dependencies:[I.mk,I.tP,W.xw,W.Wh,W.yH,j.oO,X.$j,X.n5],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:[Je.l]}})}return st})();const Be=["stepper"];function rt(st,si){if(1&st&&(d.TgZ(0,"div",48)(1,"p",49)(2,"strong"),d._uU(3,"Channel Peer:\xa0"),d.qZA(),d._uU(4),d.ALo(5,"titlecase"),d.qZA(),d.TgZ(6,"p",50)(7,"strong"),d._uU(8,"Channel ID:\xa0"),d.qZA(),d._uU(9),d.qZA(),d._UZ(10,"p",50),d.qZA()),2&st){const Ce=d.oxw(2);d.xp6(4),d.Oqu(d.lcZ(5,2,Ce.channel.remote_alias)),d.xp6(5),d.Oqu(Ce.channel.chan_id)}}function $e(st,si){if(1&st&&d._uU(0),2&st){const Ce=d.oxw(2);d.Oqu(Ce.inputFormLabel)}}function Ie(st,si){1&st&&(d.TgZ(0,"mat-error"),d._uU(1,"Amount is required."),d.qZA())}function lt(st,si){if(1&st&&(d.TgZ(0,"mat-error"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&st){const Ce=d.oxw(2);d.xp6(1),d.hij("Amount must be greater than or equal to ",d.lcZ(2,1,Ce.minQuote.amount),".")}}function Qe(st,si){if(1&st&&(d.TgZ(0,"mat-error"),d._uU(1),d.ALo(2,"number"),d.qZA()),2&st){const Ce=d.oxw(2);d.xp6(1),d.hij("Amount must be less than or equal to ",d.lcZ(2,1,Ce.maxQuote.amount),".")}}function St(st,si){1&st&&(d.TgZ(0,"mat-error"),d._uU(1,"Confirmation target is required."),d.qZA())}function dt(st,si){1&st&&(d.TgZ(0,"mat-error"),d._uU(1,"Confirmation target must be a positive number."),d.qZA())}function te(st,si){1&st&&(d.TgZ(0,"mat-error"),d._uU(1,"Percentage is required."),d.qZA())}function Ue(st,si){1&st&&(d.TgZ(0,"mat-error"),d._uU(1,"Percentage must be a positive number."),d.qZA())}function Bt(st,si){if(1&st&&(d.TgZ(0,"mat-form-field",50)(1,"mat-label"),d._uU(2,"Max Off-chain Routing Fee (%)"),d.qZA(),d._UZ(3,"input",51),d.YNc(4,te,2,0,"mat-error",25)(5,Ue,2,0,"mat-error",25),d.qZA()),2&st){const Ce=d.oxw(2);d.xp6(3),d.Q6J("step",1),d.xp6(1),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.routingFeePercent.errors?null:Ce.inputFormGroup.controls.routingFeePercent.errors.required),d.xp6(1),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.routingFeePercent.errors?null:Ce.inputFormGroup.controls.routingFeePercent.errors.min)}}function Ye(st,si){1&st&&(d.TgZ(0,"div",52)(1,"mat-slide-toggle",53),d._uU(2,"Fast"),d.qZA(),d.TgZ(3,"mat-icon",54),d._uU(4,"info_outline"),d.qZA()())}function je(st,si){if(1&st&&d._uU(0),2&st){const Ce=d.oxw(2);d.Oqu(Ce.quoteFormLabel)}}function Ft(st,si){1&st&&(d.TgZ(0,"p",55)(1,"mat-icon",56),d._uU(2,"close"),d.qZA(),d._uU(3,"Local balance amount is insufficient for swap."),d.qZA())}function xt(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",57),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onValidateAmount())}),d._uU(1,"Next"),d.qZA()}}function Ot(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",58),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onLoop())}),d._uU(1),d.qZA()}if(2&st){const Ce=d.oxw(2);d.xp6(1),d.hij("Initiate ",Ce.loopDirectionCaption,"")}}function yt(st,si){if(1&st&&d._uU(0),2&st){const Ce=d.oxw(3);d.Oqu(Ce.addressFormLabel)}}function at(st,si){1&st&&(d.TgZ(0,"mat-error"),d._uU(1,"Address is required."),d.qZA())}function Ee(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"mat-step",16)(1,"form",17),d.YNc(2,yt,1,1,"ng-template",18),d.TgZ(3,"div",59)(4,"mat-radio-group",60),d.NdJ("change",function(Ht){d.CHM(Ce);const Dt=d.oxw(2);return d.KtG(Dt.onAddressTypeChange(Ht))}),d.TgZ(5,"mat-radio-button",61),d._uU(6,"Node Local Address"),d.qZA(),d.TgZ(7,"mat-radio-button",62),d._uU(8,"External Address"),d.qZA()(),d.TgZ(9,"mat-form-field",63)(10,"mat-label"),d._uU(11,"Address"),d.qZA(),d._UZ(12,"input",64),d.YNc(13,at,2,0,"mat-error",25),d.qZA()(),d.TgZ(14,"div",29)(15,"button",65),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onLoop())}),d._uU(16),d.qZA()()()()}if(2&st){const Ce=d.oxw(2);d.Q6J("stepControl",Ce.addressFormGroup)("editable",Ce.flgEditable),d.xp6(1),d.Q6J("formGroup",Ce.addressFormGroup),d.xp6(11),d.Q6J("required","external"===Ce.addressFormGroup.controls.addressType.value),d.xp6(1),d.Q6J("ngIf",null==Ce.addressFormGroup.controls.address.errors?null:Ce.addressFormGroup.controls.address.errors.required),d.xp6(3),d.hij("Initiate ",Ce.loopDirectionCaption,"")}}function nt(st,si){if(1&st&&d._uU(0),2&st){const Ce=d.oxw(2);d.hij("",Ce.loopDirectionCaption," Status")}}function Ge(st,si){if(1&st&&(d.TgZ(0,"mat-icon",66),d._uU(1),d.qZA()),2&st){const Ce=d.oxw(2);d.xp6(1),d.Oqu(Ce.loopStatus&&null!=Ce.loopStatus&&Ce.loopStatus.id_bytes?"check":"close")}}function Xe(st,si){1&st&&d._UZ(0,"div")}function gt(st,si){1&st&&d._UZ(0,"mat-progress-bar",67)}function Le(st,si){if(1&st&&(d.TgZ(0,"h4",68),d._uU(1),d.qZA()),2&st){const Ce=d.oxw(2);d.xp6(1),d.Oqu(Ce.loopStatus&&Ce.loopStatus.error?Ce.loopDirectionCaption+" failed.":Ce.loopStatus&&Ce.loopStatus.id_bytes&&Ce.channel?Ce.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":Ce.loopDirectionCaption+" request placed successfully.")}}function be(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",69),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.goToLoop())}),d._uU(1,"Check Status"),d.qZA()}}function $(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",70),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onRestart())}),d._uU(1,"Start Again"),d.qZA()}}function ne(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),d._uU(5),d.qZA()(),d.TgZ(6,"div",8)(7,"button",9),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw();return d.KtG(Ht.showInfo())}),d._uU(8,"?"),d.qZA(),d.TgZ(9,"button",10),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw();return d.KtG(Ht.onClose())}),d._uU(10,"X"),d.qZA()()(),d.TgZ(11,"mat-card-content",11)(12,"div",12),d.YNc(13,rt,11,4,"div",13),d.TgZ(14,"mat-vertical-stepper",14,15),d.NdJ("selectionChange",function(Ht){d.CHM(Ce);const Dt=d.oxw();return d.KtG(Dt.stepSelectionChanged(Ht))}),d.TgZ(16,"mat-step",16)(17,"form",17),d.YNc(18,$e,1,1,"ng-template",18),d.TgZ(19,"div",19),d._UZ(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),d.qZA(),d.TgZ(22,"div",21)(23,"mat-form-field",22)(24,"mat-label"),d._uU(25,"Amount"),d.qZA(),d._UZ(26,"input",23),d.TgZ(27,"mat-hint"),d._uU(28),d.ALo(29,"number"),d.ALo(30,"number"),d.qZA(),d.TgZ(31,"span",24),d._uU(32,"Sats"),d.qZA(),d.YNc(33,Ie,2,0,"mat-error",25)(34,lt,3,3,"mat-error",25)(35,Qe,3,3,"mat-error",25),d.qZA(),d.TgZ(36,"mat-form-field",22)(37,"mat-label"),d._uU(38,"Sweep Confirmation Target"),d.qZA(),d._UZ(39,"input",26),d.YNc(40,St,2,0,"mat-error",25)(41,dt,2,0,"mat-error",25),d.qZA(),d.YNc(42,Bt,6,3,"mat-form-field",27),d.qZA(),d.YNc(43,Ye,5,0,"div",28),d.TgZ(44,"div",29)(45,"button",30),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw();return d.KtG(Ht.onEstimateQuote())}),d._uU(46,"Estimate Quote"),d.qZA()()()(),d.TgZ(47,"mat-step",16)(48,"form",17),d.YNc(49,je,1,1,"ng-template",18),d._UZ(50,"rtl-loop-quote",31),d.YNc(51,Ft,4,0,"p",32),d.TgZ(52,"div",29),d.YNc(53,xt,2,0,"button",33)(54,Ot,2,1,"button",34),d.qZA()()(),d.YNc(55,Ee,17,6,"mat-step",35),d.TgZ(56,"mat-step",36)(57,"form",17),d.YNc(58,nt,1,1,"ng-template",18),d.TgZ(59,"div",37)(60,"mat-expansion-panel",38)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",39),d._uU(64),d.YNc(65,Ge,2,1,"mat-icon",40),d.qZA()()(),d.YNc(66,Xe,1,0,"div",41),d.qZA(),d.YNc(67,gt,1,0,"mat-progress-bar",42),d.qZA(),d.YNc(68,Le,2,1,"h4",43),d.TgZ(69,"div",29),d.YNc(70,be,2,0,"button",44)(71,$,2,0,"button",45),d.qZA()()()(),d.TgZ(72,"div",46)(73,"button",47),d._uU(74,"Close"),d.qZA()()()()()()}if(2&st){const Ce=d.oxw(),Mt=d.MAs(2);d.Q6J("@opacityAnimation",void 0),d.xp6(3),d.Q6J("fxFlex",Ce.screenSize===Ce.screenSizeEnum.XS||Ce.screenSize===Ce.screenSizeEnum.SM?"83":"91"),d.xp6(2),d.Oqu(Ce.channel?"Channel "+Ce.loopDirectionCaption:Ce.loopDirectionCaption),d.xp6(1),d.Q6J("fxFlex",Ce.screenSize===Ce.screenSizeEnum.XS||Ce.screenSize===Ce.screenSizeEnum.SM?"17":"9"),d.xp6(7),d.Q6J("ngIf",Ce.channel),d.xp6(1),d.Q6J("linear",!0),d.xp6(2),d.Q6J("stepControl",Ce.inputFormGroup)("editable",Ce.flgEditable),d.xp6(1),d.Q6J("formGroup",Ce.inputFormGroup),d.xp6(3),d.Q6J("quote",Ce.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),d.xp6(1),d.Q6J("quote",Ce.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),d.xp6(2),d.Q6J("fxFlex",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT?"35":"48"),d.xp6(3),d.Q6J("step",1e3),d.xp6(2),d.AsE("Range: ",d.lcZ(29,51,Ce.minQuote.amount),"-",d.lcZ(30,53,Ce.maxQuote.amount),""),d.xp6(5),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.amount.errors?null:Ce.inputFormGroup.controls.amount.errors.required),d.xp6(1),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.amount.errors?null:Ce.inputFormGroup.controls.amount.errors.min),d.xp6(1),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.amount.errors?null:Ce.inputFormGroup.controls.amount.errors.max),d.xp6(1),d.Q6J("fxFlex",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT?"30":"48"),d.xp6(3),d.Q6J("step",1),d.xp6(1),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.sweepConfTarget.errors?null:Ce.inputFormGroup.controls.sweepConfTarget.errors.required),d.xp6(1),d.Q6J("ngIf",null==Ce.inputFormGroup.controls.sweepConfTarget.errors?null:Ce.inputFormGroup.controls.sweepConfTarget.errors.min),d.xp6(1),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT),d.xp6(1),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT),d.xp6(4),d.Q6J("stepControl",Ce.quoteFormGroup)("editable",Ce.flgEditable),d.xp6(1),d.Q6J("formGroup",Ce.quoteFormGroup),d.xp6(2),d.Q6J("quote",Ce.quote)("showPanel",!1),d.xp6(1),d.Q6J("ngIf",Ce.inputFormGroup.controls.amount.value>Ce.localBalanceToCompare),d.xp6(2),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT),d.xp6(1),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_IN),d.xp6(1),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT),d.xp6(1),d.Q6J("stepControl",Ce.statusFormGroup),d.xp6(1),d.Q6J("formGroup",Ce.statusFormGroup),d.xp6(3),d.Q6J("expanded",!!Ce.loopStatus),d.xp6(4),d.Oqu(Ce.loopStatus?Ce.loopStatus.id_bytes?Ce.loopDirectionCaption+" request details":Ce.loopDirectionCaption+" error details":"Waiting for "+Ce.loopDirectionCaption+" request..."),d.xp6(1),d.Q6J("ngIf",Ce.loopStatus),d.xp6(1),d.Q6J("ngIf",!Ce.loopStatus)("ngIfElse",Mt),d.xp6(1),d.Q6J("ngIf",!Ce.loopStatus),d.xp6(1),d.Q6J("ngIf",Ce.loopStatus),d.xp6(2),d.Q6J("ngIf",Ce.loopStatus&&Ce.loopStatus.id_bytes&&Ce.channel),d.xp6(1),d.Q6J("ngIf",Ce.loopStatus&&(Ce.loopStatus.error||!Ce.loopStatus.id_bytes)),d.xp6(2),d.Q6J("mat-dialog-close",!1)}}function ke(st,si){if(1&st&&d._UZ(0,"rtl-loop-status",71),2&st){const Ce=d.oxw();d.Q6J("loopStatus",Ce.loopStatus)}}function Nt(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"rtl-loop-out-info-graphics",87),d.NdJ("stepNumberChange",function(Ht){d.CHM(Ce);const Dt=d.oxw(2);return d.KtG(Dt.stepNumber=Ht)}),d.qZA()}if(2&st){const Ce=d.oxw(2);d.Q6J("animationDirection",Ce.animationDirection)("stepNumber",Ce.stepNumber)}}function At(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"rtl-loop-in-info-graphics",87),d.NdJ("stepNumberChange",function(Ht){d.CHM(Ce);const Dt=d.oxw(2);return d.KtG(Dt.stepNumber=Ht)}),d.qZA()}if(2&st){const Ce=d.oxw(2);d.Q6J("animationDirection",Ce.animationDirection)("stepNumber",Ce.stepNumber)}}const Wt=(st,si)=>({"dot-primary":st,"dot-primary-lighter":si});function gi(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"span",88),d.NdJ("click",function(){const Dt=d.CHM(Ce).$implicit,kt=d.oxw(2);return d.KtG(kt.onStepChanged(Dt))}),d._UZ(1,"p",89),d.qZA()}if(2&st){const Ce=si.$implicit,Mt=d.oxw(2);d.xp6(1),d.Q6J("ngClass",d.WLB(1,Wt,Mt.stepNumber===Ce,Mt.stepNumber!==Ce))}}function ei(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",90),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onReadMore())}),d._uU(1,"Read More"),d.qZA()}}function $t(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",91),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onStepChanged(4))}),d._uU(1,"Back"),d.qZA()}}function Fi(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",92),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return Ht.flgShowInfo=!1,d.KtG(Ht.stepNumber=1)}),d._uU(1,"Close"),d.qZA()}}function li(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",93),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return Ht.flgShowInfo=!1,d.KtG(Ht.stepNumber=1)}),d._uU(1,"Close"),d.qZA()}}function ui(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",94),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onStepChanged(Ht.stepNumber-1))}),d._uU(1,"Back"),d.qZA()}}function un(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"button",95),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw(2);return d.KtG(Ht.onStepChanged(Ht.stepNumber+1))}),d._uU(1,"Next"),d.qZA()}}const Ki=()=>[1,2,3,4,5];function Mi(st,si){if(1&st){const Ce=d.EpF();d.TgZ(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),d._UZ(4,"span",7),d.qZA(),d.TgZ(5,"div",75)(6,"button",10),d.NdJ("click",function(){d.CHM(Ce);const Ht=d.oxw();return Ht.flgShowInfo=!1,d.KtG(Ht.stepNumber=1)}),d._uU(7,"X"),d.qZA()()(),d.TgZ(8,"mat-card-content",76),d.YNc(9,Nt,1,2,"rtl-loop-out-info-graphics",77)(10,At,1,2,"rtl-loop-in-info-graphics",77),d.qZA(),d.TgZ(11,"div",78),d.YNc(12,gi,2,4,"span",79),d.qZA(),d.TgZ(13,"div",80),d.YNc(14,ei,2,0,"button",81)(15,$t,2,0,"button",82)(16,Fi,2,0,"button",83)(17,li,2,0,"button",84)(18,ui,2,0,"button",85)(19,un,2,0,"button",86),d.qZA()()()}if(2&st){const Ce=d.oxw();d.Q6J("@opacityAnimation",void 0),d.xp6(9),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_OUT),d.xp6(1),d.Q6J("ngIf",Ce.direction===Ce.LoopTypeEnum.LOOP_IN),d.xp6(2),d.Q6J("ngForOf",d.DdM(10,Ki)),d.xp6(2),d.Q6J("ngIf",5===Ce.stepNumber),d.xp6(1),d.Q6J("ngIf",5===Ce.stepNumber),d.xp6(1),d.Q6J("ngIf",5===Ce.stepNumber),d.xp6(1),d.Q6J("ngIf",Ce.stepNumber<5),d.xp6(1),d.Q6J("ngIf",Ce.stepNumber>1&&Ce.stepNumber<5),d.xp6(1),d.Q6J("ngIf",Ce.stepNumber<5)}}let on=(()=>{class st{constructor(Ce,Mt,Ht,Dt,kt,Gt,oi,bi,yi){this.dialogRef=Ce,this.data=Mt,this.store=Ht,this.loopService=Dt,this.formBuilder=kt,this.decimalPipe=Gt,this.logger=oi,this.router=bi,this.commonService=yi,this.faInfoCircle=l.sqG,this.LoopTypeEnum=m.$I,this.direction=m.$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=m.cu,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.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||m.$I.LOOP_OUT,this.loopDirectionCaption=this.direction===m.$I.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[e.kI.required,e.kI.min(this.minQuote.amount||0),e.kI.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[e.kI.required,e.kI.min(1)]],routingFeePercent:[2,[e.kI.required,e.kI.min(0)]],fast:[!1,[e.kI.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[e.kI.required]],address:[{value:"",disabled:!0}]}),this.direction===m.$I.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(P.ZW).pipe((0,y.R)(this.unSubs[6])).subscribe(Ce=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:Ce.lightningBalance&&Ce.lightningBalance.local?+Ce.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,y.R)(this.unSubs[4])).subscribe(Ce=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===m.$I.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,y.R)(this.unSubs[5])).subscribe(Ce=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(Ce){"external"===Ce.value?(this.addressFormGroup.controls.address.setValidators([e.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(){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===m.$I.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===m.$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,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===m.$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,y.R)(this.unSubs[0])).subscribe({next:Ce=>{this.loopStatus=Ce,this.loopService.listSwaps(),this.flgEditable=!0},error:Ce=>{this.loopStatus={error:Ce},this.flgEditable=!0,this.logger.error(Ce)}});else{const Ce=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),Mt="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",Ht=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,Ce,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),Ht,Mt).pipe((0,y.R)(this.unSubs[1])).subscribe({next:Dt=>{this.loopStatus=Dt,this.loopService.listSwaps(),this.flgEditable=!0},error:Dt=>{this.loopStatus={error:Dt},this.flgEditable=!0,this.logger.error(Dt)}})}}onEstimateQuote(){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 Ce=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===m.$I.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Ce).pipe((0,y.R)(this.unSubs[2])).subscribe(Mt=>{this.quote=Mt,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,Ce).pipe((0,y.R)(this.unSubs[3])).subscribe(Mt=>{this.quote=Mt,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),this.stepper.selected?.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(Ce){switch(Ce.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===m.$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===m.$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===m.$I.LOOP_OUT&&1!==Ce.selectedIndex&&Ce.selectedIndex{Ce.next(null),Ce.complete()})}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(d.Y36(A.so),d.Y36(A.WI),d.Y36(E.yh),d.Y36(M.W),d.Y36(e.QS),d.Y36(I.JJ),d.Y36(k.mQ),d.Y36(z.F0),d.Y36(B.v))};static#t=this.\u0275cmp=d.Xpm({type:st,selectors:[["rtl-loop-modal"]],viewQuery:function(Mt,Ht){if(1&Mt&&d.Gf(Be,5),2&Mt){let Dt;d.iGM(Dt=d.CRH())&&(Ht.stepper=Dt.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","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","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","","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"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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,"animationDirection","stepNumber","stepNumberChange"],["tabindex","21","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(Mt,Ht){1&Mt&&d.YNc(0,ne,75,55,"div",0)(1,ke,1,1,"ng-template",null,1,d.W1O)(3,Mi,20,11,"div",2),2&Mt&&(d.Q6J("ngIf",!Ht.flgShowInfo),d.xp6(3),d.Q6J("ngIf",Ht.flgShowInfo))},dependencies:[I.mk,I.sg,I.O5,e._Y,e.Fj,e.wV,e.JJ,e.JL,e.Q7,e.sg,e.u,W.xw,W.Wh,W.yH,j.oO,A.ZT,K.lW,X.dn,X.dk,ie.ib,ie.yz,ie.yK,se.Hw,ue.Nt,ae.KE,ae.hX,ae.bx,ae.TO,ae.R9,Me.pW,J.VQ,J.U0,he.Rr,S.gM,n.C0,n.VY,n.Vq,s.h,R,Ke,re,Ae,I.JJ,I.rS],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[w._]}})}return st})()},4740:(Fe,q,p)=>{"use strict";p.d(q,{w:()=>P});var e=p(590),t=p(9212),y=p(4190),A=p(5597),l=p(3814),w=p(2296),m=p(5195);let P=(()=>{class d{constructor(M){this.router=M,this.faTimes=e.NBC}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(I){return new(I||d)(t.Y36(y.F0))};static#t=this.\u0275cmp=t.Xpm({type:d,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(I,k){1&I&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Page Not Found"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),t._uU(9,"This page does not exist!"),t.qZA(),t.TgZ(10,"span",7)(11,"button",8),t.NdJ("click",function(){return k.goToHelp()}),t._uU(12,"Go To Help"),t.qZA()()()()()()),2&I&&(t.xp6(1),t.Q6J("icon",k.faTimes))},dependencies:[A.BN,l.xw,l.Wh,l.yH,w.lW,m.a8,m.dn],encapsulation:2})}return d})()},6985:(Fe,q,p)=>{"use strict";p.d(q,{h:()=>t});var e=p(9212);let t=(()=>{class y{constructor(l){this.el=l}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=this.\u0275fac=function(w){return new(w||y)(e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:y,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}})}return y})()},7313:(Fe,q,p)=>{"use strict";p.d(q,{y:()=>t});var e=p(9212);let t=(()=>{class y{constructor(){this.copied=new e.vpe}onClick(l){l.preventDefault(),this.payload&&navigator.clipboard&&navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())},w=>{this.copied.emit("Error could not copy text: "+JSON.stringify(w))})}static#e=this.\u0275fac=function(w){return new(w||y)};static#t=this.\u0275dir=e.lG2({type:y,selectors:[["","rtlClipboard",""]],hostBindings:function(w,m){1&w&&e.NdJ("click",function(d){return m.onClick(d)})},inputs:{payload:"payload"},outputs:{copied:"copied"}})}return y})()},3362:(Fe,q,p)=>{"use strict";p.d(q,{F:()=>y});var e=p(6223),t=p(9212);let y=(()=>{class A{validate(w){return this.max?e.kI.max(+this.max)(w):null}static#e=this.\u0275fac=function(m){return new(m||A)};static#t=this.\u0275dir=t.lG2({type:A,selectors:[["input","max",""]],inputs:{max:"max"},features:[t._Bn([{provide:e.Cf,useExisting:A,multi:!0}])]})}return A})()},6082:(Fe,q,p)=>{"use strict";p.d(q,{q:()=>y});var e=p(6223),t=p(9212);let y=(()=>{class A{validate(w){return this.min?e.kI.min(+this.min)(w):null}static#e=this.\u0275fac=function(m){return new(m||A)};static#t=this.\u0275dir=t.lG2({type:A,selectors:[["input","min",""]],inputs:{min:"min"},features:[t._Bn([{provide:e.Cf,useExisting:A,multi:!0}])]})}return A})()},2995:(Fe,q,p)=>{"use strict";p.d(q,{D3:()=>l,al:()=>t,h9:()=>y,i1:()=>A});var e=p(9212);let t=(()=>{class w{transform(P,d){return P?.replace(/^[0]+/g,"")}static#e=this.\u0275fac=function(d){return new(d||w)};static#t=this.\u0275pipe=e.Yjl({name:"removeleadingzeros",type:w,pure:!0})}return w})(),y=(()=>{class w{transform(P,d){return P?.replace(/(?:^\w|[A-Z]|\b\w)/g,(E,M)=>E.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=this.\u0275fac=function(d){return new(d||w)};static#t=this.\u0275pipe=e.Yjl({name:"camelcase",type:w,pure:!0})}return w})(),A=(()=>{class w{transform(P,d,E){return P.replace(/(?:^\w|[A-Z]|\b\w)/g,(M,I)=>" "+M.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||w)};static#t=this.\u0275pipe=e.Yjl({name:"camelCaseWithSpaces",type:w,pure:!0})}return w})(),l=(()=>{class w{transform(P,d,E){return P=P?P.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",d&&(P=P.replace(new RegExp(d,"g")," ")),E&&(P=P.replace(new RegExp(E,"g")," ")),P.replace(/(?:^\w|[A-Z]|\b\w)/g,(M,I)=>M.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||w)};static#t=this.\u0275pipe=e.Yjl({name:"camelcaseWithReplace",type:w,pure:!0})}return w})()},5525:(Fe,q,p)=>{"use strict";p.d(q,{QM:()=>w,a1:()=>l,eQ:()=>m,fY:()=>P});var e=p(9212),t=p(4190),y=p(5813),A=p(7398);function l(){return()=>{const d=(0,e.f3M)(t.F0),E=(0,e.f3M)(t.gz),M=(0,e.f3M)(y.m);return!(!M.getItem("token")||E.snapshot.url&&E.snapshot.url.length&&"settings"!==E.snapshot.url[0].path&&"auth"!==E.snapshot.url[0].path&&"true"===M.getItem("defaultPassword")&&(d.navigate(["/settings/auth"]),1))}}function w(){return()=>!!(0,e.f3M)(y.m).watchSession().pipe((0,A.U)(E=>E.lndUnlocked))}function m(){return()=>!!(0,e.f3M)(y.m).watchSession().pipe((0,A.U)(E=>E.clnUnlocked))}function P(){return()=>!!(0,e.f3M)(y.m).watchSession().pipe((0,A.U)(E=>E.eclUnlocked))}},6339:(Fe,q,p)=>{"use strict";p.d(q,{v:()=>I});var e=p(5619),t=p(2096),y=p(8504),A=p(8180),l=p(7398),w=p(6306),m=p(2154),P=p(9212),d=p(6046),E=p(5980),M=p(6814);let I=(()=>{class k{constructor(B,W,j){this.dataService=B,this.logger=W,this.datePipe=j,this.currencyUnits=[],this.CurrencyUnitEnum=m.NT,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=m.Bn.UN_INITIATED,this.screenSize=m.cu.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new e.X(this.containerSize)}getScreenSize(){return this.screenSize}setScreenSize(B){this.screenSize=B}getContainerSize(){return this.containerSize}setContainerSize(B,W){this.containerSize={width:B,height:W},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(B,W,j,K="asc"){return B.sort("number"===j?"desc"===K?(X,ie)=>+X[W]>+ie[W]?-1:1:(X,ie)=>+X[W]>+ie[W]?1:-1:"desc"===K?(X,ie)=>X[W]>ie[W]?-1:1:(X,ie)=>X[W]>ie[W]?1:-1)}sortDescByKey(B,W){return B.sort((j,K)=>{const X=+j[W],ie=+K[W];return X>ie?-1:X{const X=+j[W],ie=+K[W];return Xie?1:0})}camelCase(B){return B?.replace(/(?:^\w|[A-Z]|\b\w)/g,(W,j)=>W.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(B,W,j){return W&&j&&""!==W&&""!==j&&(B=B?.replace(new RegExp(W,"g"),j)),B.indexOf("!\n")>0||B.indexOf(".\n")>0?B.split("\n")?.reduce((K,X)=>K+X.charAt(0).toUpperCase()+X.substring(1).toLowerCase()+"\n",""):B.indexOf(" ")>0?B.split(" ")?.reduce((K,X)=>K+X.charAt(0).toUpperCase()+X.substring(1).toLowerCase()+" ",""):B.charAt(0).toUpperCase()+B.substring(1).toLowerCase()}convertCurrency(B,W,j,K,X){const ie=(new Date).valueOf();return X&&K&&this.ratesAPIStatus!==m.Bn.INITIATED&&(W===m.NT.OTHER||j===m.NT.OTHER)?this.conversionData.data&&this.conversionData.last_fetched&&ie(this.ratesAPIStatus=m.Bn.COMPLETED,this.conversionData.data=se&&"object"==typeof se?se:se&&"string"==typeof se?JSON.parse(se):{},this.conversionData.last_fetched=ie,this.convertWithFiat(B,W,K))),(0,w.K)(se=>(this.ratesAPIStatus=m.Bn.ERROR,(0,y._)(()=>this.extractErrorMessage(se,"Currency Conversion Error.")))))):(0,t.of)(this.convertWithoutFiat(B,W))}convertWithoutFiat(B,W){const j={};switch(j[m.NT.SATS]=0,j[m.NT.BTC]=0,W){case m.NT.SATS:j[m.NT.SATS]=B,j[m.NT.BTC]=1e-8*B;break;case m.NT.BTC:j[m.NT.SATS]=1e8*B,j[m.NT.BTC]=B}return j}convertWithFiat(B,W,j){const K={unit:j,symbol:this.conversionData.data[j].symbol};switch(K[m.NT.SATS]=0,K[m.NT.BTC]=0,K[m.NT.OTHER]=0,W){case m.NT.SATS:K[m.NT.SATS]=B,K[m.NT.BTC]=1e-8*B,K[m.NT.OTHER]=1e-8*B*this.conversionData.data[j].last;break;case m.NT.BTC:K[m.NT.SATS]=1e8*B,K[m.NT.BTC]=B,K[m.NT.OTHER]=B*this.conversionData.data[j].last;break;case m.NT.OTHER:K[m.NT.SATS]=B/this.conversionData.data[j].last*1e8,K[m.NT.BTC]=B/this.conversionData.data[j].last,K[m.NT.OTHER]=B}return K}convertTime(B,W,j){switch(W){case m.Qk.SECS:switch(j){case m.Qk.MINS:B/=60;break;case m.Qk.HOURS:B/=m.k_;break;case m.Qk.DAYS:B/=24*m.k_}break;case m.Qk.MINS:switch(j){case m.Qk.SECS:B*=60;break;case m.Qk.HOURS:B/=60;break;case m.Qk.DAYS:B/=1440}break;case m.Qk.HOURS:switch(j){case m.Qk.SECS:B*=m.k_;break;case m.Qk.MINS:B*=60;break;case m.Qk.DAYS:B/=24}break;case m.Qk.DAYS:switch(j){case m.Qk.SECS:B=B*m.k_*24;break;case m.Qk.MINS:B=60*B*24;break;case m.Qk.HOURS:B*=24}}return B}downloadFile(B,W,j=".json",K=".csv"){let X=new Blob;X=".json"===j?new Blob(["\ufeff"+this.convertToCSV(B)],{type:"text/csv;charset=utf-8;"}):new Blob([B.toString()],{type:"text/plain;charset=utf-8"});const ie=document.createElement("a"),se=URL.createObjectURL(X);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&ie.setAttribute("target","_blank"),ie.setAttribute("href",se),ie.setAttribute("download",W+K),ie.style.visibility="hidden",document.body.appendChild(ie),ie.click(),document.body.removeChild(ie)}convertToCSV(B){const W=[];let j="",K="",X="";return"object"!=typeof B&&(B=JSON.parse(B)),B.forEach((se,ue)=>{for(const ae in se)W.findIndex(Me=>Me===ae)<0&&W.push(ae)}),X=W.join(",")+"\r\n",B.forEach(se=>{j="",W.forEach(ue=>{if(se.hasOwnProperty(ue))if(Array.isArray(se[ue]))K="",se[ue].forEach((ae,Me)=>{K+="object"==typeof ae?"("+JSON.stringify(ae)?.replace(/\,/g,";")+")":"("+ae+")"}),j+=K+",";else if("object"==typeof se[ue])j+=JSON.stringify(se[ue])?.replace(/\,/g,";")+",";else if(ue.includes("timestamp")||ue.includes("date"))try{switch(se[ue].toString().length){case 10:j+=this.datePipe.transform(new Date(1e3*se[ue]),"dd/MMM/y HH:mm")+",";break;case 13:j+=this.datePipe.transform(new Date(se[ue]),"dd/MMM/y HH:mm")+",";break;default:j+=se[ue]+","}}catch{j+=se[ue]+","}else j+=se[ue]+",";else j+=","}),X+=j.slice(0,-1)+"\r\n"}),X}isVersionCompatible(B,W){if(B){const j=B.match(/v?(?\d+(?:\.\d+)*)/);if(j&&j.groups&&j.groups.version){this.logger.info("Current Version: "+j.groups.version),this.logger.info("Checking Compatiblility with Version: "+W);const K=j.groups.version.split(".")||[],X=W.split(".");return+K[0]>+X[0]||+K[0]==+X[0]&&+K[1]>+X[1]||+K[0]==+X[0]&&+K[1]==+X[1]&&+K[2]>=+X[2]}return this.logger.error("Invalid Version String: "+B),!1}return!1}extractErrorMessage(B,W="Unknown Error."){const j=this.titleCase(B.error&&B.error.text&&"string"==typeof B.error.text&&B.error.text.includes('')?"API Route Does Not Exist.":B.error&&B.error.error&&B.error.error.error&&B.error.error.error.error&&B.error.error.error.error.error&&"string"==typeof B.error.error.error.error.error?B.error.error.error.error.error:B.error&&B.error.error&&B.error.error.error&&B.error.error.error.error&&"string"==typeof B.error.error.error.error?B.error.error.error.error:B.error&&B.error.error&&B.error.error.error&&"string"==typeof B.error.error.error?B.error.error.error:B.error&&B.error.error&&"string"==typeof B.error.error?B.error.error:B.error&&"string"==typeof B.error?B.error:B.error&&B.error.error&&B.error.error.error&&B.error.error.error.error&&B.error.error.error.error.message&&"string"==typeof B.error.error.error.error.message?B.error.error.error.error.message:B.error&&B.error.error&&B.error.error.error&&B.error.error.error.message&&"string"==typeof B.error.error.error.message?B.error.error.error.message:B.error&&B.error.error&&B.error.error.message&&"string"==typeof B.error.error.message?B.error.error.message:B.error&&B.error.message&&"string"==typeof B.error.message?B.error.message:B.message&&"string"==typeof B.message?B.message:W);return this.logger.info("Error Message: "+j),j}extractErrorCode(B,W=500){const j=B.error&&B.error.error&&B.error.error.message&&B.error.error.message.code?B.error.error.message.code:B.error&&B.error.error&&B.error.error.code?B.error.error.code:B.error&&B.error.code?B.error.code:B.code?B.code:B.status?B.status:W;return this.logger.info("Error Code: "+j),j}extractErrorNumber(B,W=500){const j=B.error&&B.error.error&&B.error.error.errno?B.error.error.errno:B.error&&B.error.errno?B.error.errno:B.errno?B.errno:B.status?B.status:W;return this.logger.info("Error Number: "+j),j}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=this.\u0275fac=function(W){return new(W||k)(P.LFG(d.D),P.LFG(E.mQ),P.LFG(M.uU))};static#t=this.\u0275prov=P.Yz7({token:k,factory:k.\u0275fac})}return k})()},2154:(Fe,q,p)=>{"use strict";p.d(q,{$I:()=>g,$Y:()=>l,$v:()=>se,AB:()=>pe,At:()=>Ie,Bn:()=>Je,Df:()=>re,Dr:()=>j,Er:()=>M,Fq:()=>r,Gi:()=>f,HW:()=>C,H_:()=>ve,IV:()=>z,IX:()=>fe,JX:()=>ct,LO:()=>I,NT:()=>s,OJ:()=>he,OO:()=>We,Pi:()=>Be,Qk:()=>S,Qw:()=>R,T5:()=>m,TJ:()=>B,Vc:()=>K,Xk:()=>dt,Xr:()=>de,Xz:()=>E,Zs:()=>v,_t:()=>W,c3:()=>St,cu:()=>h,g8:()=>ae,gB:()=>Ze,gG:()=>$e,gK:()=>lt,gg:()=>ee,hG:()=>Qe,hZ:()=>ce,hc:()=>H,kO:()=>Ke,k_:()=>A,lr:()=>qe,m6:()=>ye,nM:()=>ue,n_:()=>J,ol:()=>Me,op:()=>De,p7:()=>O,pg:()=>xe,pt:()=>y,q4:()=>w,uA:()=>d,uR:()=>le,vn:()=>X,vv:()=>P,wZ:()=>ie,x$:()=>D,zZ:()=>rt});var e=p(9212),t=p(1476);function y(te){const Ue=new t.ye;return Ue.itemsPerPageLabel=te+" per page:",Ue}const A=3600,l=24*A*7,w="0.15.0-beta",m=(0,e.X6Q)()?"http://localhost:3000/rtl/api":"./api",P={AUTHENTICATE_API:m+"/authenticate",CONF_API:m+"/conf",PAGE_SETTINGS_API:m+"/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"},d=["Sats","BTC"],E={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},M=[{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"}],I=["SECS","MINS","HOURS","DAYS"],z=10,B=[5,10,25,100],W=[{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"}],j=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],K=[{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"}],X=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom (Sats/vByte)"}],ie={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 se=function(te){return te.PAYMENT_RECEIVED="payment-received",te.PAYMENT_RELAYED="payment-relayed",te.PAYMENT_SENT="payment-sent",te.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",te.PAYMENT_FAILED="payment-failed",te.CHANNEL_OPENED="channel-opened",te.CHANNEL_STATE_CHANGED="channel-state-changed",te.CHANNEL_CLOSED="channel-closed",te}(se||{}),ue=function(te){return te.CONNECT="connect",te.DISCONNECT="disconnect",te.WARNING="warning",te.INVOICE_PAYMENT="invoice_payment",te.INVOICE_CREATION="invoice_creation",te.CHANNEL_OPENED="channel_opened",te.CHANNEL_STATE_CHANGED="channel_state_changed",te.SENDPAY_SUCCESS="sendpay_success",te.SENDPAY_FAILURE="sendpay_failure",te.COIN_MOVEMENT="coin_movement",te.BALANCE_SNAPSHOT="balance_snapshot",te.BLOCK_ADDED="block_added",te.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",te.CHANNEL_OPEN_FAILED="channel_open_failed",te}(ue||{}),ae=function(te){return te.INVOICE="invoice",te}(ae||{}),Me=function(te){return te.OPERATOR="OPERATOR",te.MERCHANT="MERCHANT",te.ALL="ALL",te}(Me||{}),J=function(te){return te.INFORMATION="Information",te.WARNING="Warning",te.ERROR="Error",te.SUCCESS="Success",te.CONFIRM="Confirm",te}(J||{}),he=function(te){return te.JWT="JWT",te.PASSWORD="PASSWORD",te}(he||{}),S=function(te){return te.SECS="SECS",te.MINS="MINS",te.HOURS="HOURS",te.DAYS="DAYS",te}(S||{}),s=function(te){return te.SATS="Sats",te.BTC="BTC",te.OTHER="OTHER",te}(s||{}),f=function(te){return te.ARRAY="ARRAY",te.NUMBER="NUMBER",te.STRING="STRING",te.BOOLEAN="BOOLEAN",te.PASSWORD="PASSWORD",te.DATE="DATE",te.DATE_TIME="DATE_TIME",te}(f||{}),h=function(te){return te.XS="XS",te.SM="SM",te.MD="MD",te.LG="LG",te.XL="XL",te}(h||{});const C={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"}},D={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 O=function(te){return te.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",te.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",te.WIRE_INVALID_ONION_KEY="Invalid Onion Key",te.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",te.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",te.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",te.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",te.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",te.WIRE_FEE_INSUFFICIENT="Insufficient Fee",te.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",te.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",te.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",te.WIRE_CHANNEL_DISABLED="Channel Disabled",te.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",te.WIRE_INVALID_REALM="Invalid Realm",te.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",te.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",te.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",te.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",te.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",te.WIRE_MPP_TIMEOUT="MPP Timeout",te.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",te.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",te}(O||{}),v=function(te){return te.CHANNELD_NORMAL="Active",te.OPENINGD="Opening",te.CHANNELD_AWAITING_LOCKIN="Pending Open",te.CHANNELD_SHUTTING_DOWN="Shutting Down",te.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",te.CLOSINGD_COMPLETE="Closed",te.AWAITING_UNILATERAL="Awaiting Unilateral Close",te.FUNDING_SPEND_SEEN="Funding Spend Seen",te.ONCHAIN="Onchain",te.DUALOPEND_OPEN_INIT="Dual Open Initialized",te.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",te}(v||{}),r=function(te){return te.INITIATED="Initiated",te.PREIMAGE_REVEALED="Preimage Revealed",te.HTLC_PUBLISHED="HTLC Published",te.SUCCESS="Successful",te.FAILED="Failed",te.INVOICE_SETTLED="Invoice Settled",te}(r||{}),g=function(te){return te.LOOP_OUT="LOOP_OUT",te.LOOP_IN="LOOP_IN",te}(g||{}),H=function(te){return te.SWAP_OUT="SWAP_OUT",te.SWAP_IN="SWAP_IN",te}(H||{}),R=function(te){return te["swap.created"]="Swap Created",te["swap.expired"]="Swap Expired",te["invoice.set"]="Invoice Set",te["invoice.paid"]="Invoice Paid",te["invoice.pending"]="Invoice Pending",te["invoice.settled"]="Invoice Settled",te["invoice.failedToPay"]="Invoice Failed To Pay",te["channel.created"]="Channel Created",te["transaction.failed"]="Transaction Failed",te["transaction.mempool"]="Transaction Mempool",te["transaction.claimed"]="Transaction Claimed",te["transaction.refunded"]="Transaction Refunded",te["transaction.confirmed"]="Transaction Confirmed",te["swap.refunded"]="Swap Refunded",te["swap.abandoned"]="Swap Abandoned",te}(R||{});const ee=[{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}],De=["MONTHLY","YEARLY"];var ct=function(te){return te.LOOP="LOOP",te.BOLTZ="BOLTZ",te.OFFERS="OFFERS",te.PEERSWAP="PEERSWAP",te}(ct||{});const Ke=["password","changeme","moneyprintergobrrr"];var Je=function(te){return te.UN_INITIATED="UN_INITIATED",te.INITIATED="INITIATED",te.COMPLETED="COMPLETED",te.ERROR="ERROR",te}(Je||{});const ye={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_INFO:"Getting Loop Info...",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...",REBALANCE_CHANNEL:"Rebalancing Channel...",LOG_OUT:"Logging Out..."};var fe=function(te){return te.INVOICE="INVOICE",te.OFFER="OFFER",te.KEYSEND="KEYSEND",te}(fe||{}),de=function(te){return te.FEES="FEES",te.EVENTS="EVENTS",te}(de||{}),xe=function(te){return te.VOID="VOID",te.SET_API_URL_ECL="SET_API_URL_ECL",te.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",te.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",te.RESET_ROOT_STORE="RESET_ROOT_STORE",te.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",te.OPEN_SNACK_BAR="OPEN_SNACKBAR",te.OPEN_SPINNER="OPEN_SPINNER",te.CLOSE_SPINNER="CLOSE_SPINNER",te.OPEN_ALERT="OPEN_ALERT",te.CLOSE_ALERT="CLOSE_ALERT",te.OPEN_CONFIRMATION="OPEN_CONFIRMATION",te.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",te.SHOW_PUBKEY="SHOW_PUBKEY",te.FETCH_CONFIG="FETCH_CONFIG",te.SHOW_CONFIG="SHOW_CONFIG",te.FETCH_STORE="FETCH_STORE",te.SET_STORE="SET_STORE",te.FETCH_RTL_CONFIG="FETCH_RTL_CONFIG",te.SET_RTL_CONFIG="SET_RTL_CONFIG",te.SAVE_SSO="SAVE_SSO",te.SAVE_SETTINGS="SAVE_SETTINGS",te.TWO_FA_SAVE_SETTINGS="TWO_FA_SAVE_SETTINGS",te.SET_SELECTED_NODE="SET_SELECTED_NODE",te.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",te.UPDATE_SERVICE_SETTINGS="UPDATE_SERVICE_SETTINGS",te.SET_NODE_DATA="SET_NODE_DATA",te.IS_AUTHORIZED="IS_AUTHORIZED",te.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",te.LOGIN="LOGIN",te.VERIFY_TWO_FA="VERIFY_TWO_FA",te.LOGOUT="LOGOUT",te.RESET_PASSWORD="RESET_PASSWORD",te.RESET_PASSWORD_RES="RESET_PASSWORD_RES",te.FETCH_FILE="FETCH_FILE",te.SHOW_FILE="SHOW_FILE",te}(xe||{}),le=function(te){return te.RESET_LND_STORE="RESET_LND_STORE",te.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",te.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",te.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",te.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",te.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",te.FETCH_INFO_LND="FETCH_INFO_LND",te.SET_INFO_LND="SET_INFO_LND",te.FETCH_PEERS_LND="FETCH_PEERS_LND",te.SET_PEERS_LND="SET_PEERS_LND",te.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",te.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",te.DETACH_PEER_LND="DETACH_PEER_LND",te.REMOVE_PEER_LND="REMOVE_PEER_LND",te.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",te.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",te.ADD_INVOICE_LND="ADD_INVOICE_LND",te.FETCH_FEES_LND="FETCH_FEES_LND",te.SET_FEES_LND="SET_FEES_LND",te.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",te.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",te.FETCH_NETWORK_LND="FETCH_NETWORK_LND",te.SET_NETWORK_LND="SET_NETWORK_LND",te.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",te.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",te.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",te.SET_CHANNELS_LND="SET_CHANNELS_LND",te.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",te.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",te.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",te.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",te.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",te.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",te.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",te.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",te.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",te.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",te.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",te.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",te.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",te.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",te.FETCH_INVOICES_LND="FETCH_INVOICES_LND",te.SET_INVOICES_LND="SET_INVOICES_LND",te.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",te.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",te.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",te.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",te.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",te.FETCH_UTXOS_LND="FETCH_UTXOS_LND",te.SET_UTXOS_LND="SET_UTXOS_LND",te.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",te.SET_PAYMENTS_LND="SET_PAYMENTS_LND",te.SEND_PAYMENT_LND="SEND_PAYMENT_LND",te.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",te.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",te.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",te.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",te.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",te.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",te.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",te.GEN_SEED_LND="GEN_SEED_LND",te.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",te.INIT_WALLET_LND="INIT_WALLET_LND",te.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",te.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",te.PEER_LOOKUP_LND="PEER_LOOKUP_LND",te.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",te.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",te.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",te.SET_LOOKUP_LND="SET_LOOKUP_LND",te.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",te.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",te.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",te.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",te.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",te.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",te}(le||{}),pe=function(te){return te.RESET_CLN_STORE="RESET_CLN_STORE",te.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",te.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",te.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",te.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",te.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",te.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",te.SET_INFO_CLN="SET_INFO_CLN",te.FETCH_FEES_CLN="FETCH_FEES_CLN",te.SET_FEES_CLN="SET_FEES_CLN",te.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",te.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",te.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",te.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",te.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",te.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",te.FETCH_PEERS_CLN="FETCH_PEERS_CLN",te.SET_PEERS_CLN="SET_PEERS_CLN",te.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",te.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",te.ADD_PEER_CLN="ADD_PEER_CLN",te.DETACH_PEER_CLN="DETACH_PEER_CLN",te.REMOVE_PEER_CLN="REMOVE_PEER_CLN",te.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",te.SET_CHANNELS_CLN="SET_CHANNELS_CLN",te.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",te.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",te.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",te.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",te.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",te.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",te.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",te.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",te.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",te.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",te.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",te.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",te.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",te.SET_LOOKUP_CLN="SET_LOOKUP_CLN",te.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",te.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",te.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",te.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",te.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",te.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",te.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",te.SET_INVOICES_CLN="SET_INVOICES_CLN",te.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",te.ADD_INVOICE_CLN="ADD_INVOICE_CLN",te.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",te.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",te.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",te.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",te.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",te.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",te.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",te.SET_OFFERS_CLN="SET_OFFERS_CLN",te.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",te.ADD_OFFER_CLN="ADD_OFFER_CLN",te.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",te.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",te.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",te.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",te.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",te.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",te.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",te}(pe||{}),qe=function(te){return te.RESET_ECL_STORE="RESET_ECL_STORE",te.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",te.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",te.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",te.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",te.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",te.FETCH_INFO_ECL="FETCH_INFO_ECL",te.SET_INFO_ECL="SET_INFO_ECL",te.FETCH_FEES_ECL="FETCH_FEES_ECL",te.SET_FEES_ECL="SET_FEES_ECL",te.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",te.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",te.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",te.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",te.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",te.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",te.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",te.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",te.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",te.FETCH_PEERS_ECL="FETCH_PEERS_ECL",te.SET_PEERS_ECL="SET_PEERS_ECL",te.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",te.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",te.ADD_PEER_ECL="ADD_PEER_ECL",te.DETACH_PEER_ECL="DETACH_PEER_ECL",te.REMOVE_PEER_ECL="REMOVE_PEER_ECL",te.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",te.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",te.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",te.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",te.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",te.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",te.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",te.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",te.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",te.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",te.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",te.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",te.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",te.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",te.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",te.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",te.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",te.SET_INVOICES_ECL="SET_INVOICES_ECL",te.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",te.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",te.ADD_INVOICE_ECL="ADD_INVOICE_ECL",te.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",te.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",te.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",te.SET_LOOKUP_ECL="SET_LOOKUP_ECL",te.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",te.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",te}(qe||{});const re=[{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"},{range:{min:30,max:31},description:"AMP support"},{range:{min:44,max:45},description:"Explicit commitment type"}];var ve=function(te){return te.gossip_queries_ex="Gossip queries including additional information",te.option_anchor_outputs="Anchor outputs",te.option_data_loss_protect="Extra channel re-establish fields",te.var_onion_optin="Variable-length routing onion payloads",te.option_static_remotekey="Static key for remote output",te.option_support_large_channel="Create large channels",te.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",te.payment_secret="Payment secret field",te.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",te.basic_mpp="Basic multi-part payments",te.gossip_queries="More sophisticated gossip control",te.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",te.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",te.amp="AMP",te}(ve||{}),ce=function(te){return te["data-loss-protect"]="Extra channel re-establish fields",te["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",te["gossip-queries"]="More sophisticated gossip control",te["tlv-onion"]="Variable-length routing onion payloads",te["ext-gossip-queries"]="Gossip queries can include additional information",te["static-remote-key"]="Static key for remote output",te["payment-addr"]="Payment secret field",te["multi-path-payments"]="Basic multi-part payments",te["wumbo-channels"]="Wumbo Channels",te.anchors="Anchor outputs",te["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",te.amp="AMP",te}(ce||{});const Ze=[{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 We=function(te){return te.OFFERED="offered",te.SETTLED="settled",te.FAILED="failed",te.LOCAL_FAILED="local_failed",te}(We||{}),Be=function(te){return te.ASCENDING="asc",te.DESCENDING="desc",te}(Be||{});const rt=["asc","desc"],$e=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:Be.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:Be.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"msatoshi_to_us",sortOrder:Be.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:z,sortBy:"state",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:Be.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"expiry",sortOrder:Be.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:z,sortBy:"channel_opening_fee",sortOrder:Be.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"created_at",sortOrder:Be.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:z,sortBy:"expires_at",sortOrder:Be.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:z,sortBy:"offer_id",sortOrder:Be.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:z,sortBy:"lastUpdatedAt",sortOrder:Be.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"received_time",sortOrder:Be.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:z,sortBy:"total_fee",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:z,sortBy:"received_time",sortOrder:Be.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:z,sortBy:"received_time",sortOrder:Be.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:z,sortBy:"received_time",sortOrder:Be.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:z,sortBy:"date",sortOrder:Be.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:z,sortBy:"msatoshi",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],Ie={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"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount_msat",label:"Amount (Sats)"},{column:"direction"},{column:"id",label:"HTLC ID"},{column:"state"},{column:"expiry"},{column:"payment_hash"},{column:"local_trimmed"}]}},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:"issuer"},{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"}]}}},lt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:Be.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:z,sortBy:"time_stamp",sortOrder:Be.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:Be.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:z,sortBy:"balancedness",sortOrder:Be.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:Be.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:Be.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:Be.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:Be.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:z,sortBy:"close_type",sortOrder:Be.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"incoming",sortOrder:Be.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"creation_date",sortOrder:Be.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:z,sortBy:"creation_date",sortOrder:Be.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:Be.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"total_amount",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:z,sortBy:"remote_alias",sortOrder:Be.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:z,sortBy:"timestamp",sortOrder:Be.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:Be.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:z,sortBy:"hop_sequence",sortOrder:Be.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:z,sortBy:"initiation_time",sortOrder:Be.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:z,sortBy:"status",sortOrder:Be.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:z,sortBy:"status",sortOrder:Be.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],Qe={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"}]}}},St=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:z,sortBy:"timestamp",sortOrder:Be.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"alias",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:z,sortBy:"alias",sortOrder:Be.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:z,sortBy:"alias",sortOrder:Be.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:Be.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"firstPartTimestamp",sortOrder:Be.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:z,sortBy:"receivedAt",sortOrder:Be.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:Be.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"totalFee",sortOrder:Be.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:z,sortBy:"timestamp",sortOrder:Be.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:Be.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],dt={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:"isInitiator",label:"Initiator"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{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"}]}}}},6046:(Fe,q,p)=>{"use strict";p.d(q,{D:()=>ae});var e=p(9862),t=p(5619),y=p(8645),A=p(8504),l=p(2096),w=p(1374),m=p(1631),P=p(9773),d=p(7398),E=p(6306),M=p(2460),I=p(2154),k=p(3315),z=p(9103),B=p(9191),W=p(7321),j=p(3468),K=p(9212),X=p(4221),ie=p(5980),se=p(2939),ue=p(6814);let ae=(()=>{class Me{constructor(he,S,n,s,f){this.httpClient=he,this.store=S,this.logger=n,this.snackBar=s,this.titleCasePipe=f,this.APIUrl=I.T5,this.lnImplementation="",this.lnImplementationUpdated=new t.X(null),this.unSubs=[new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x],this.mapAliases=(h,C)=>(h&&h.length>0?h.forEach((D,O)=>{if(C&&C.length>0)for(let v=0;v{let s=this.APIUrl+"/"+n+I.vv.PAYMENTS_API+"/decode/"+he,f="GET",h=null;return"cln"===n&&(s=this.APIUrl+"/"+n+I.vv.UTILITY_API+"/decode",h={string:he},f="POST"),this.store.dispatch((0,z.ac)({payload:I.m6.DECODE_PAYMENT})),this.httpClient.request(f,s,{body:JSON.stringify(h),headers:{"Content-Type":"application/json"}}).pipe((0,P.R)(this.unSubs[0]),(0,d.U)(C=>(this.store.dispatch((0,z.uO)({payload:I.m6.DECODE_PAYMENT})),C)),(0,E.K)(C=>(S?this.handleErrorWithoutAlert("Decode Payment",I.m6.DECODE_PAYMENT,C):this.handleErrorWithAlert("decodePaymentData",I.m6.DECODE_PAYMENT,"Decode Payment Failed",s,C),(0,A._)(()=>new Error(this.extractErrorMessage(C))))))}))}decodePayments(he){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(S=>{let n="",s="",f=null;return"ecl"===S?(n=this.APIUrl+"/"+S+I.vv.PAYMENTS_API+"/getsentinfos",f={payments:he},s=I.m6.GET_SENT_PAYMENTS):"cln"===S?(n=this.APIUrl+"/"+S+I.vv.UTILITY_API+"/decode",f={string:he},s=I.m6.DECODE_PAYMENTS):(n=this.APIUrl+"/"+S+I.vv.PAYMENTS_API,f={payments:he},s=I.m6.DECODE_PAYMENTS),this.store.dispatch((0,z.ac)({payload:s})),this.httpClient.post(n,f).pipe((0,P.R)(this.unSubs[1]),(0,d.U)(h=>(this.store.dispatch((0,z.uO)({payload:s})),h)),(0,E.K)(h=>(this.handleErrorWithAlert("decodePaymentsData",s,s+" Failed",n,h),(0,A._)(()=>new Error(this.extractErrorMessage(h))))))}))}getAliasesFromPubkeys(he,S){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(n=>{if(S){const s=(new e.LE).set("pubkeys",he);return this.httpClient.get(this.APIUrl+"/"+n+I.vv.NETWORK_API+"/nodes",{params:s})}return this.httpClient.get(this.APIUrl+"/"+n+I.vv.NETWORK_API+"/node/"+he)}))}signMessage(he){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(S=>{let n=this.APIUrl+"/"+S+I.vv.MESSAGE_API+"/sign";return"cln"===S&&(n=this.APIUrl+"/"+S+I.vv.UTILITY_API+"/sign"),this.store.dispatch((0,z.ac)({payload:I.m6.SIGN_MESSAGE})),this.httpClient.post(n,{message:he}).pipe((0,P.R)(this.unSubs[2]),(0,d.U)(s=>(this.store.dispatch((0,z.uO)({payload:I.m6.SIGN_MESSAGE})),s)),(0,E.K)(s=>(this.handleErrorWithAlert("signMessageData",I.m6.SIGN_MESSAGE,"Sign Message Failed",n,s),(0,A._)(()=>new Error(this.extractErrorMessage(s))))))}))}verifyMessage(he,S){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(n=>{let s="",f=null;return"cln"===n?(s=this.APIUrl+"/"+n+I.vv.UTILITY_API+"/verify",f={message:he,zbase:S}):(s=this.APIUrl+"/"+n+I.vv.MESSAGE_API+"/verify",f={message:he,signature:S}),this.store.dispatch((0,z.ac)({payload:I.m6.VERIFY_MESSAGE})),this.httpClient.post(s,f).pipe((0,P.R)(this.unSubs[3]),(0,d.U)(h=>(this.store.dispatch((0,z.uO)({payload:I.m6.VERIFY_MESSAGE})),h)),(0,E.K)(h=>(this.handleErrorWithAlert("verifyMessageData",I.m6.VERIFY_MESSAGE,"Verify Message Failed",s,h),(0,A._)(()=>new Error(this.extractErrorMessage(h))))))}))}bumpFee(he,S,n,s){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(f=>{const h={txid:he,outputIndex:S};return n&&(h.targetConf=n),s&&(h.satPerByte=s),this.store.dispatch((0,z.ac)({payload:I.m6.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+f+I.vv.WALLET_API+"/bumpfee",h).pipe((0,P.R)(this.unSubs[4]),(0,d.U)(C=>(this.store.dispatch((0,z.uO)({payload:I.m6.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),C)),(0,E.K)(C=>(this.handleErrorWithoutAlert("Bump Fee",I.m6.BUMP_FEE,C),(0,A._)(()=>new Error(this.extractErrorMessage(C))))))}))}labelUTXO(he,S,n=!0){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(s=>{const f={txid:he,label:S,overwrite:n};return this.store.dispatch((0,z.ac)({payload:I.m6.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+s+I.vv.WALLET_API+"/label",f).pipe((0,P.R)(this.unSubs[5]),(0,d.U)(h=>(this.store.dispatch((0,z.uO)({payload:I.m6.LABEL_UTXO})),h)),(0,E.K)(h=>(this.handleErrorWithoutAlert("Lease UTXO",I.m6.LABEL_UTXO,h),(0,A._)(()=>new Error(this.extractErrorMessage(h))))))}))}leaseUTXO(he,S){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(n=>{const s={txid:he,outputIndex:S};return this.store.dispatch((0,z.ac)({payload:I.m6.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+n+I.vv.WALLET_API+"/lease",s).pipe((0,P.R)(this.unSubs[6]),(0,d.U)(f=>{this.store.dispatch((0,z.uO)({payload:I.m6.LEASE_UTXO})),this.store.dispatch((0,B.mC)()),this.store.dispatch((0,B.Ly)());const h=new Date(1e3*f.expiration);return Math.round(h.getTime())-60*h.getTimezoneOffset()}),(0,E.K)(f=>(this.handleErrorWithoutAlert("Lease UTXO",I.m6.LEASE_UTXO,f),(0,A._)(()=>new Error(this.extractErrorMessage(f))))))}))}getForwardingHistory(he,S,n,s){if("LND"===he){const f={end_time:n,start_time:S};return this.store.dispatch((0,z.ac)({payload:I.m6.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+I.vv.SWITCH_API,f).pipe((0,P.R)(this.unSubs[7]),(0,M.M)(this.store.select(W._f)),(0,m.z)(([h,C])=>{if(h.forwarding_events){const D=[...C.channels,...C.closedChannels];h.forwarding_events.forEach(O=>{if(D&&D.length>0)for(let v=0;v(this.handleErrorWithAlert("getForwardingHistoryData",I.m6.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+I.vv.SWITCH_API,h),(0,A._)(()=>new Error(this.extractErrorMessage(h))))))}return"CLN"===he?(this.store.dispatch((0,z.ac)({payload:I.m6.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+I.vv.CHANNELS_API+"/listForwards",{status:s||"settled"}).pipe((0,P.R)(this.unSubs[8]),(0,M.M)(this.store.select(j.ZW)),(0,m.z)(([f,h])=>{const C=this.mapAliases(f,[...h.activeChannels,...h.pendingChannels,...h.inactiveChannels]);return this.store.dispatch((0,z.uO)({payload:I.m6.GET_FORWARDING_HISTORY})),(0,l.of)(C)}),(0,E.K)(f=>(this.handleErrorWithAlert("getForwardingHistoryData",I.m6.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+I.vv.CHANNELS_API+"/listForwards",f),(0,A._)(()=>new Error(this.extractErrorMessage(f))))))):(0,l.of)({})}listNetworkNodes(he){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(S=>(this.store.dispatch((0,z.ac)({payload:I.m6.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+S+I.vv.NETWORK_API+"/listNodes",he).pipe((0,P.R)(this.unSubs[9]),(0,m.z)(n=>(this.store.dispatch((0,z.uO)({payload:I.m6.LIST_NETWORK_NODES})),(0,l.of)(n))),(0,E.K)(n=>(this.handleErrorWithoutAlert("List Network Nodes",I.m6.LIST_NETWORK_NODES,n),(0,A._)(()=>this.extractErrorMessage(n))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(he=>(this.store.dispatch((0,z.ac)({payload:I.m6.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+he+I.vv.UTILITY_API+"/listConfigs").pipe((0,P.R)(this.unSubs[10]),(0,m.z)(S=>(this.store.dispatch((0,z.uO)({payload:I.m6.GET_LIST_CONFIGS})),(0,l.of)(S))),(0,E.K)(S=>(this.handleErrorWithoutAlert("List Configurations",I.m6.GET_LIST_CONFIGS,S),(0,A._)(()=>this.extractErrorMessage(S))))))))}getOrUpdateFunderPolicy(he,S,n,s,f,h){return this.lnImplementationUpdated.pipe((0,w.P)(),(0,m.z)(C=>{const D=he?{policy:he,policy_mod:S,lease_fee_base_msat:n,lease_fee_basis:s,channel_fee_max_base_msat:f,channel_fee_max_proportional_thousandths:h}:null;return this.store.dispatch((0,z.ac)({payload:I.m6.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+C+I.vv.CHANNELS_API+"/funderUpdate",D).pipe((0,P.R)(this.unSubs[11]),(0,d.U)(O=>(this.store.dispatch((0,z.uO)({payload:I.m6.GET_FUNDER_POLICY})),D&&this.store.dispatch((0,z.jW)({payload:"Funder Policy Updated Successfully with Compact Lease: "+O.compact_lease+"!"})),O)),(0,E.K)(O=>(this.handleErrorWithoutAlert("Funder Policy",I.m6.GET_FUNDER_POLICY,O),(0,A._)(()=>new Error(this.extractErrorMessage(O))))))}))}circularRebalance(he,S="",n="",s="",f="",h=[],C="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+I.vv.CHANNELS_API+"/circularRebalance",{amountMsat:he,sourceShortChannelId:S,sourceNodeId:n,targetShortChannelId:s,targetNodeId:f,ignoreNodeIds:h,format:C}).pipe((0,P.R)(this.unSubs[12]),(0,d.U)(v=>v),(0,E.K)(v=>(this.handleErrorWithoutAlert("Rebalance Channel",I.m6.REBALANCE_CHANNEL,v),(0,A._)(()=>v.error))))}extractErrorMessage(he,S="Unknown Error."){return this.titleCasePipe.transform(he.error.text&&"string"==typeof he.error.text&&he.error.text.includes('')?"API Route Does Not Exist.":he.error&&he.error.error&&he.error.error.error&&he.error.error.error.error&&he.error.error.error.error.error&&"string"==typeof he.error.error.error.error.error?he.error.error.error.error.error:he.error&&he.error.error&&he.error.error.error&&he.error.error.error.error&&"string"==typeof he.error.error.error.error?he.error.error.error.error:he.error&&he.error.error&&he.error.error.error&&"string"==typeof he.error.error.error?he.error.error.error:he.error&&he.error.error&&"string"==typeof he.error.error?he.error.error:he.error&&"string"==typeof he.error?he.error:he.error&&he.error.error&&he.error.error.error&&he.error.error.error.error&&he.error.error.error.error.message&&"string"==typeof he.error.error.error.error.message?he.error.error.error.error.message:he.error&&he.error.error&&he.error.error.error&&he.error.error.error.message&&"string"==typeof he.error.error.error.message?he.error.error.error.message:he.error&&he.error.error&&he.error.error.message&&"string"==typeof he.error.error.message?he.error.error.message:he.error&&he.error.message&&"string"==typeof he.error.message?he.error.message:he.message&&"string"==typeof he.message?he.message:S)}handleErrorWithoutAlert(he,S,n){n.error.text&&"string"==typeof n.error.text&&n.error.text.includes('')&&(n={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+he+"\n"+JSON.stringify(n)),401===n.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.ts)()),this.store.dispatch((0,z.kS)()),this.store.dispatch((0,z.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,z.uO)({payload:S})),this.store.dispatch((0,z.qi)({payload:{action:he,status:I.Bn.ERROR,statusCode:n.status.toString(),message:this.extractErrorMessage(n)}})))}handleErrorWithAlert(he,S,n,s,f){if(this.logger.error(f),401===f.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.ts)()),this.store.dispatch((0,z.kS)()),this.store.dispatch((0,z.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,z.uO)({payload:S}));const h=this.extractErrorMessage(f);this.store.dispatch((0,z.qR)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:f.status?f.status:"Unknown Error",message:h,URL:s},component:k.H}}})),this.store.dispatch((0,z.qi)({payload:{action:he,status:I.Bn.ERROR,statusCode:f.status.toString(),message:h,URL:s}}))}}ngOnDestroy(){this.unSubs.forEach(he=>{he.next(null),he.complete()})}static#e=this.\u0275fac=function(S){return new(S||Me)(K.LFG(e.eN),K.LFG(X.yh),K.LFG(ie.mQ),K.LFG(se.ux),K.LFG(ue.rS))};static#t=this.\u0275prov=K.Yz7({token:Me,factory:Me.\u0275fac})}return Me})()},5980:(Fe,q,p)=>{"use strict";p.d(q,{LG:()=>w,mQ:()=>l});var e=p(9212);const t=(0,e.X6Q)(),y=()=>null;let l=(()=>{class m{invokeConsoleMethod(d,E){}static#e=this.\u0275fac=function(E){return new(E||m)};static#t=this.\u0275prov=e.Yz7({token:m,factory:m.\u0275fac})}return m})(),w=(()=>{class m{get info(){return t?console.log.bind(console):y}get warn(){return t?console.warn.bind(console):y}get error(){return t?console.error.bind(console):y}invokeConsoleMethod(d,E){(console[d]||console.log||y).apply(console,[E])}static#e=this.\u0275fac=function(E){return new(E||m)};static#t=this.\u0275prov=e.Yz7({token:m,factory:m.\u0275fac})}return m})()},3149:(Fe,q,p)=>{"use strict";p.d(q,{W:()=>W});var e=p(9862),t=p(5619),y=p(8645),A=p(2096),l=p(8504),w=p(9773),m=p(6306),P=p(7398),d=p(2154),E=p(3315),M=p(9103),I=p(9212),k=p(5980),z=p(4221),B=p(6339);let W=(()=>{class j{constructor(X,ie,se,ue){this.httpClient=X,this.logger=ie,this.store=se,this.commonService=ue,this.loopUrl="",this.swaps=[],this.swapsChanged=new t.X([]),this.unSubs=[new y.x,new y.x,new y.x,new y.x,new y.x,new y.x,new y.x]}getLoopInfo(){return this.loopUrl=d.T5+d.vv.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,M.ac)({payload:d.m6.GET_LOOP_SWAPS})),this.loopUrl=d.T5+d.vv.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,w.R)(this.unSubs[0])).subscribe({next:X=>{this.store.dispatch((0,M.uO)({payload:d.m6.GET_LOOP_SWAPS})),this.swaps=X,this.swapsChanged.next(this.swaps)},error:X=>this.swapsChanged.error(this.handleErrorWithAlert(d.m6.GET_LOOP_SWAPS,this.loopUrl,X))})}loopOut(X,ie,se,ue,ae,Me,J,he,S,n){const s={amount:X,targetConf:se,swapRoutingFee:ue,minerFee:ae,prepayRoutingFee:Me,prepayAmt:J,swapFee:he,swapPublicationDeadline:S,destAddress:n};return""!==ie&&(s.chanId=ie),this.loopUrl=d.T5+d.vv.LOOP_API+"/out",this.httpClient.post(this.loopUrl,s).pipe((0,m.K)(f=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ie,d.m6.NO_SPINNER,f)))}getLoopOutTerms(){return this.loopUrl=d.T5+d.vv.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,m.K)(X=>this.handleErrorWithoutAlert("Loop Out Terms",d.m6.NO_SPINNER,X)))}getLoopOutQuote(X,ie,se){let ue=new e.LE;return ue=ue.append("targetConf",ie.toString()),ue=ue.append("swapPublicationDeadline",se.toString()),this.loopUrl=d.T5+d.vv.LOOP_API+"/out/quote/"+X,this.store.dispatch((0,M.ac)({payload:d.m6.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ue}).pipe((0,w.R)(this.unSubs[1]),(0,P.U)(ae=>(this.store.dispatch((0,M.uO)({payload:d.m6.GET_QUOTE})),ae)),(0,m.K)(ae=>this.handleErrorWithoutAlert("Loop Out Quote",d.m6.GET_QUOTE,ae)))}getLoopOutTermsAndQuotes(X){let ie=new e.LE;return ie=ie.append("targetConf",X.toString()),ie=ie.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.T5+d.vv.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,M.ac)({payload:d.m6.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ie}).pipe((0,w.R)(this.unSubs[2]),(0,P.U)(se=>(this.store.dispatch((0,M.uO)({payload:d.m6.GET_TERMS_QUOTES})),se)),(0,m.K)(se=>(0,A.of)(this.handleErrorWithAlert(d.m6.GET_TERMS_QUOTES,this.loopUrl,se))))}loopIn(X,ie,se,ue,ae){const Me={amount:X,swapFee:ie,minerFee:se,lastHop:ue,externalHtlc:ae};return this.loopUrl=d.T5+d.vv.LOOP_API+"/in",this.httpClient.post(this.loopUrl,Me).pipe((0,m.K)(J=>this.handleErrorWithoutAlert("Loop In",d.m6.NO_SPINNER,J)))}getLoopInTerms(){return this.loopUrl=d.T5+d.vv.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,m.K)(X=>this.handleErrorWithoutAlert("Loop In Terms",d.m6.NO_SPINNER,X)))}getLoopInQuote(X,ie,se){let ue=new e.LE;return ue=ue.append("targetConf",ie.toString()),ue=ue.append("swapPublicationDeadline",se.toString()),this.loopUrl=d.T5+d.vv.LOOP_API+"/in/quote/"+X,this.store.dispatch((0,M.ac)({payload:d.m6.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ue}).pipe((0,w.R)(this.unSubs[3]),(0,P.U)(ae=>(this.store.dispatch((0,M.uO)({payload:d.m6.GET_QUOTE})),ae)),(0,m.K)(ae=>this.handleErrorWithoutAlert("Loop In Qoute",d.m6.GET_QUOTE,ae)))}getLoopInTermsAndQuotes(X){let ie=new e.LE;return ie=ie.append("targetConf",X.toString()),ie=ie.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.T5+d.vv.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,M.ac)({payload:d.m6.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ie}).pipe((0,w.R)(this.unSubs[4]),(0,P.U)(se=>(this.store.dispatch((0,M.uO)({payload:d.m6.GET_TERMS_QUOTES})),se)),(0,m.K)(se=>(0,A.of)(this.handleErrorWithAlert(d.m6.GET_TERMS_QUOTES,this.loopUrl,se))))}getSwap(X){return this.loopUrl=d.T5+d.vv.LOOP_API+"/swap/"+X,this.httpClient.get(this.loopUrl).pipe((0,m.K)(ie=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+X,d.m6.NO_SPINNER,ie)))}handleErrorWithoutAlert(X,ie,se){let ue="";return this.logger.error("ERROR IN: "+X+"\n"+JSON.stringify(se)),this.store.dispatch((0,M.uO)({payload:ie})),401===se.status?(ue="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,M.kS)())):503===se.status?(ue="Unable to Connect to Loop Server.",this.store.dispatch((0,M.qR)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:se.status,message:"Unable to Connect to Loop Server",URL:X},component:E.H}}}))):ue=this.commonService.extractErrorMessage(se),(0,l._)(()=>new Error(ue))}handleErrorWithAlert(X,ie,se){let ue="";if(this.logger.error(se),this.store.dispatch((0,M.uO)({payload:X})),401===se.status)ue="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,M.kS)());else if(503===se.status)ue="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,M.qR)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:se.status,message:"Unable to Connect to Loop Server",URL:ie},component:E.H}}}))},100);else{ue=this.commonService.extractErrorMessage(se);const ae=se.error&&se.error.error&&se.error.error.code?se.error.error.code:se.error&&se.error.code?se.error.code:se.code?se.code:se.status;setTimeout(()=>{this.store.dispatch((0,M.qR)({payload:{data:{type:d.n_.ERROR,alertTitle:"ERROR",message:{code:ae,message:ue,URL:ie},component:E.H}}}))},100)}return{message:ue}}ngOnDestroy(){this.unSubs.forEach(X=>{X.next(null),X.complete()})}static#e=this.\u0275fac=function(ie){return new(ie||j)(I.LFG(e.eN),I.LFG(k.mQ),I.LFG(z.yh),I.LFG(B.v))};static#t=this.\u0275prov=I.Yz7({token:j,factory:j.\u0275fac})}return j})()},5813:(Fe,q,p)=>{"use strict";p.d(q,{m:()=>y});var e=p(8645),t=p(9212);let y=(()=>{class A{constructor(){this.sessionSub=new e.x}watchSession(){return this.sessionSub.asObservable()}getItem(w){return sessionStorage.getItem(w)}getAllItems(){return sessionStorage}setItem(w,m){sessionStorage.setItem(w,m),this.sessionSub.next(sessionStorage)}removeItem(w){sessionStorage.removeItem(w),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=this.\u0275fac=function(m){return new(m||A)};static#t=this.\u0275prov=t.Yz7({token:A,factory:A.\u0275fac})}return A})()},2285:(Fe,q,p)=>{"use strict";p.d(q,{d:()=>z});var e=p(5619),t=p(8645),y=p(9773),A=p(305),l=p(5592),w=p(7394),m=p(7328);const P={url:"",deserializer:B=>JSON.parse(B.data),serializer:B=>JSON.stringify(B)};class E extends t.u{constructor(W,j){if(super(),this._socket=null,W instanceof l.y)this.destination=j,this.source=W;else{const K=this._config=Object.assign({},P);if(this._output=new t.x,"string"==typeof W)K.url=W;else for(const X in W)W.hasOwnProperty(X)&&(K[X]=W[X]);if(!K.WebSocketCtor&&WebSocket)K.WebSocketCtor=WebSocket;else if(!K.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new m.t}}lift(W){const j=new E(this._config,this.destination);return j.operator=W,j.source=this,j}_resetState(){this._socket=null,this.source||(this.destination=new m.t),this._output=new t.x}multiplex(W,j,K){const X=this;return new l.y(ie=>{try{X.next(W())}catch(ue){ie.error(ue)}const se=X.subscribe({next:ue=>{try{K(ue)&&ie.next(ue)}catch(ae){ie.error(ae)}},error:ue=>ie.error(ue),complete:()=>ie.complete()});return()=>{try{X.next(j())}catch(ue){ie.error(ue)}se.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:W,protocol:j,url:K,binaryType:X}=this._config,ie=this._output;let se=null;try{se=j?new W(K,j):new W(K),this._socket=se,X&&(this._socket.binaryType=X)}catch(ae){return void ie.error(ae)}const ue=new w.w0(()=>{this._socket=null,se&&1===se.readyState&&se.close()});se.onopen=ae=>{const{_socket:Me}=this;if(!Me)return se.close(),void this._resetState();const{openObserver:J}=this._config;J&&J.next(ae);const he=this.destination;this.destination=A.Lv.create(S=>{if(1===se.readyState)try{const{serializer:n}=this._config;se.send(n(S))}catch(n){this.destination.error(n)}},S=>{const{closingObserver:n}=this._config;n&&n.next(void 0),S&&S.code?se.close(S.code,S.reason):ie.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:S}=this._config;S&&S.next(void 0),se.close(),this._resetState()}),he&&he instanceof m.t&&ue.add(he.subscribe(this.destination))},se.onerror=ae=>{this._resetState(),ie.error(ae)},se.onclose=ae=>{se===this._socket&&this._resetState();const{closeObserver:Me}=this._config;Me&&Me.next(ae),ae.wasClean?ie.complete():ie.error(ae)},se.onmessage=ae=>{try{const{deserializer:Me}=this._config;ie.next(Me(ae))}catch(Me){ie.error(Me)}}}_subscribe(W){const{source:j}=this;return j?j.subscribe(W):(this._socket||this._connectSocket(),this._output.subscribe(W),W.add(()=>{const{_socket:K}=this;0===this._output.observers.length&&(K&&(1===K.readyState||0===K.readyState)&&K.close(),this._resetState())}),W)}unsubscribe(){const{_socket:W}=this;W&&(1===W.readyState||0===W.readyState)&&W.close(),this._resetState(),super.unsubscribe()}}var M=p(9212),I=p(5980),k=p(5813);let z=(()=>{class B{constructor(j,K){this.logger=j,this.sessionService=K,this.clWSMessages=new e.X(null),this.eclWSMessages=new e.X(null),this.lndWSMessages=new e.X(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x,new t.x]}connectWebSocket(j,K){(!this.socket||this.socket.closed)&&(this.wsUrl=j,this.nodeIndex=K,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new E({url:j,protocol:[this.sessionService.getItem("token")||"",K]}),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(){this.socket?.pipe((0,y.R)(this.unSubs[1])).subscribe({next:j=>{if((j="string"==typeof j?JSON.parse(j):j).error)this.handleError(j.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(j)),j.source){case"LND":this.lndWSMessages.next(j);break;case"CLN":this.clWSMessages.next(j);break;case"ECL":this.eclWSMessages.next(j)}},error:j=>this.handleError(j),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(j){this.logger.error(j),this.clWSMessages.error(j),this.eclWSMessages.error(j),this.lndWSMessages.error(j),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()}static#e=this.\u0275fac=function(K){return new(K||B)(M.LFG(I.mQ),M.LFG(k.m))};static#t=this.\u0275prov=M.Yz7({token:B,factory:B.\u0275fac})}return B})()},8339:(Fe,q,p)=>{"use strict";p.d(q,{m:()=>Ao});var e=p(6814),t=p(4190),y=p(6223),A=p(9862),l=p(5597),w=p(9212),m=p(1462),P=p(7509),d=p(3814);p(2495);let Mt=(()=>{class Vt{}return Vt.\u0275fac=function(wt){return new(wt||Vt)},Vt.\u0275mod=w.oAB({type:Vt}),Vt.\u0275inj=w.cJS({imports:[m.IR]}),Vt})(),Dt=(()=>{class Vt{constructor(wt,ii){(0,e.PM)(ii)&&!wt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(wt,ii=[]){return{ngModule:Vt,providers:wt.serverLoaded?[{provide:m.WU,useValue:{...m.g5,...wt}},{provide:m.Bs,useValue:ii,multi:!0},{provide:m.wY,useValue:!0}]:[{provide:m.WU,useValue:{...m.g5,...wt}},{provide:m.Bs,useValue:ii,multi:!0}]}}}return Vt.\u0275fac=function(wt){return new(wt||Vt)(w.LFG(m.wY),w.LFG(w.Lbi))},Vt.\u0275mod=w.oAB({type:Vt}),Vt.\u0275inj=w.cJS({imports:[d.ae,P.aT,Mt,d.ae,P.aT,Mt]}),Vt})();var kt=p(1088),Gt=p(3680),oi=p(7700),bi=p(4630),yi=p(9014),Oi=p(2296);p(4300),p(8337);let Sn=(()=>{class Vt{static#e=this.\u0275fac=function(ii){return new(ii||Vt)};static#t=this.\u0275mod=w.oAB({type:Vt});static#i=this.\u0275inj=w.cJS({imports:[Gt.BQ,Gt.si,Gt.BQ]})}return Vt})();var an=p(5195),sr=p(5986),Jr=p(8034),Ar=p(3305),Yr=p(3176),$r=p(617),Ni=p(2032),zt=p(9038),pi=p(7988),_i=p(1476),Ci=p(6007),Gi=p(5940),Ji=p(7466),yn=p(8525),jn=p(2651),Rn=p(2599),Er=p(2831);p(8645);let ea=(()=>{class Vt{static#e=this.\u0275fac=function(ii){return new(ii||Vt)};static#t=this.\u0275mod=w.oAB({type:Vt});static#i=this.\u0275inj=w.cJS({imports:[Gt.BQ,Gt.si]})}return Vt})();var Ia=p(2939),Oa=p(3566),_o=p(8257),oo=p(5313),Eo=p(4104),vo=p(1274),Kr=p(2596),ca=p(8445),_a=p(2557),Fo=p(25),Va=p(2279),Qr=p(2159),_s=p(3651);let so=(()=>{class Vt extends _s.Xj{constructor(wt,ii){super(wt,ii)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ii){return new(ii||Vt)(w.Y36(e.K0),w.Y36(Er.t4))};static#t=this.\u0275dir=w.lG2({type:Vt,features:[w.qOj]})}return Vt})();var To=p(5980),Ja=p(2154),co=p(2995);const Gr={suppressScrollX:!1,suppressScrollY:!1};let zo=(()=>{class Vt extends Gt.LF{constructor(wt){super(wt)}format(wt,ii){if("input"===ii){let Ti=wt.getDate().toString();return Ti=+Ti<10?"0"+Ti:Ti,Ti+"/"+Ja.gg[wt.getMonth()].name.toUpperCase()+"/"+wt.getFullYear()}return Ja.gg[wt.getMonth()].name.toUpperCase()+" "+wt.getFullYear()}static#e=this.\u0275fac=function(ii){return new(ii||Vt)(w.LFG(Gt.Ad,8))};static#t=this.\u0275prov=w.Yz7({token:Vt,factory:Vt.\u0275fac})}return Vt})();const bo={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 Ao=(()=>{class Vt{static#e=this.\u0275fac=function(ii){return new(ii||Vt)};static#t=this.\u0275mod=w.oAB({type:Vt});static#i=this.\u0275inj=w.cJS({providers:[{provide:To.mQ,useClass:To.LG},{provide:Qr.op,useValue:Gr},{provide:Ia.Ve,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:oi.Bq,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:Gt._A,useClass:zo},{provide:Gt.sG,useValue:bo},{provide:_s.Xj,useClass:so},e.JJ,e.rS,e.uU,co.al,co.h9,co.D3,co.i1],imports:[e.ez,y.u5,y.UX,l.uH,Dt,kt.xu,oi.Is,Oi.ot,Sn,an.QW,sr.p9,Ar.To,Yr.N6,Jr.FA,Gt.XK,$r.Ps,Ni.c,zt.ie,pi.Tx,Ci.Cv,Gi.Cq,Ji.Fk,ca.dp,_a.Hi,yn.LD,jn.SJ,Rn.rP,Oa.JX,oo.p0,vo.g0,Kr.AV,yi.g,_i.TU,_o.T5,ea,Eo.Nh,Ia.ZX,bi.Bb,Fo.a4,Va.OF,t.Bz,A.JF,Qr.Xd,y.u5,y.UX,l.uH,Dt,kt.xu,oi.Is,Oi.ot,Sn,an.QW,sr.p9,Ar.To,Yr.N6,Jr.FA,Gt.XK,$r.Ps,Ni.c,zt.ie,pi.Tx,Ci.Cv,Gi.Cq,Ji.Fk,ca.dp,_a.Hi,yn.LD,jn.SJ,Rn.rP,Oa.JX,oo.p0,vo.g0,Kr.AV,yi.g,_i.TU,_o.T5,ea,Eo.Nh,Ia.ZX,bi.Bb,Fo.a4,Va.OF,Qr.Xd]})}return Vt})()},9103:(Fe,q,p)=>{"use strict";p.d(q,{M6:()=>M,Q2:()=>B,QO:()=>h,Tm:()=>Me,Uy:()=>ue,XT:()=>ie,_V:()=>he,ac:()=>P,c0:()=>s,c1:()=>I,dc:()=>v,ey:()=>X,fk:()=>ae,jS:()=>J,jW:()=>m,kS:()=>n,lC:()=>A,qR:()=>E,qi:()=>l,tj:()=>z,ts:()=>w,tw:()=>j,uO:()=>d,vI:()=>K,x4:()=>D,yb:()=>k,zQ:()=>se});var e=p(4221),t=p(2154);(0,e.PH)(t.pg.VOID);const A=(0,e.PH)(t.pg.SET_API_URL_ECL,(0,e.Ky)()),l=(0,e.PH)(t.pg.UPDATE_API_CALL_STATUS_ROOT,(0,e.Ky)()),w=(0,e.PH)(t.pg.CLOSE_ALL_DIALOGS),m=(0,e.PH)(t.pg.OPEN_SNACK_BAR,(0,e.Ky)()),P=(0,e.PH)(t.pg.OPEN_SPINNER,(0,e.Ky)()),d=(0,e.PH)(t.pg.CLOSE_SPINNER,(0,e.Ky)()),E=(0,e.PH)(t.pg.OPEN_ALERT,(0,e.Ky)()),M=(0,e.PH)(t.pg.CLOSE_ALERT,(0,e.Ky)()),I=(0,e.PH)(t.pg.OPEN_CONFIRMATION,(0,e.Ky)()),k=(0,e.PH)(t.pg.CLOSE_CONFIRMATION,(0,e.Ky)()),z=(0,e.PH)(t.pg.SHOW_PUBKEY),B=(0,e.PH)(t.pg.FETCH_CONFIG,(0,e.Ky)()),j=((0,e.PH)(t.pg.SHOW_CONFIG,(0,e.Ky)()),(0,e.PH)(t.pg.UPDATE_SELECTED_NODE_OPTIONS)),K=(0,e.PH)(t.pg.RESET_ROOT_STORE,(0,e.Ky)()),X=(0,e.PH)(t.pg.FETCH_RTL_CONFIG),ie=(0,e.PH)(t.pg.SET_RTL_CONFIG,(0,e.Ky)()),se=(0,e.PH)(t.pg.SAVE_SETTINGS,(0,e.Ky)()),ue=(0,e.PH)(t.pg.TWO_FA_SAVE_SETTINGS,(0,e.Ky)()),ae=(0,e.PH)(t.pg.SET_SELECTED_NODE,(0,e.Ky)()),Me=(0,e.PH)(t.pg.UPDATE_ROOT_NODE_SETTINGS,(0,e.Ky)()),J=(0,e.PH)(t.pg.UPDATE_SERVICE_SETTINGS,(0,e.Ky)()),he=(0,e.PH)(t.pg.SET_NODE_DATA,(0,e.Ky)()),n=((0,e.PH)(t.pg.SAVE_SSO,(0,e.Ky)()),(0,e.PH)(t.pg.LOGOUT)),s=(0,e.PH)(t.pg.RESET_PASSWORD,(0,e.Ky)()),h=((0,e.PH)(t.pg.RESET_PASSWORD_RES,(0,e.Ky)()),(0,e.PH)(t.pg.IS_AUTHORIZED,(0,e.Ky)())),D=((0,e.PH)(t.pg.IS_AUTHORIZED_RES,(0,e.Ky)()),(0,e.PH)(t.pg.LOGIN,(0,e.Ky)())),v=((0,e.PH)(t.pg.VERIFY_TWO_FA,(0,e.Ky)()),(0,e.PH)(t.pg.FETCH_FILE,(0,e.Ky)()));(0,e.PH)(t.pg.SHOW_FILE,(0,e.Ky)())},2703:(Fe,q,p)=>{"use strict";p.d(q,{V:()=>Se});var e=p(9212),t=p(5154),y=p(8645),A=p(2096),l=p(5592),w=p(9315),m=p(7398),P=p(8180),d=p(2460),E=p(1631),M=p(6306),I=p(9773),k=p(2154),z=p(7700),B=p(3814),W=p(5940);let j=(()=>{class Ve{constructor(tt,Yt){this.dialogRef=tt,this.data=Yt}static#e=this.\u0275fac=function(Yt){return new(Yt||Ve)(e.Y36(z.so),e.Y36(z.WI))};static#t=this.\u0275cmp=e.Xpm({type:Ve,selectors:[["rtl-spinner-dialog"]],decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(Yt,ri){1&Yt&&(e.TgZ(0,"div",0),e._UZ(1,"mat-progress-spinner",1),e.TgZ(2,"h2"),e._uU(3),e.qZA()()),2&Yt&&(e.xp6(3),e.Oqu(ri.data.titleMessage))},dependencies:[B.xw,B.Wh,W.Ou],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]})}return Ve})();var K=p(5980),X=p(2939),ie=p(6339),se=p(4190),ue=p(6814),ae=p(7509),Me=p(2296),J=p(5195),he=p(617),S=p(6385),n=p(2596),s=p(2279),f=p(2159),h=p(7313),C=p(6985);const D=["scrollContainer"];function O(Ve,et){if(1&Ve&&e._UZ(0,"qr-code",15),2&Ve){const tt=e.oxw();e.Q6J("value",tt.showQRField)("size",200)("errorCorrectionLevel","L")}}function v(Ve,et){1&Ve&&e.GkF(0)}const r=Ve=>({"h-40":Ve});function g(Ve,et){if(1&Ve&&(e.ynx(0),e.TgZ(1,"mat-card-content",16,17),e.YNc(3,v,1,0,"ng-container",18),e.qZA(),e.BQk()),2&Ve){const tt=e.oxw(),Yt=e.MAs(20);e.xp6(1),e.Q6J("ngClass",e.VKq(2,r,tt.data.scrollable)),e.xp6(2),e.Q6J("ngTemplateOutlet",Yt)}}function H(Ve,et){1&Ve&&e.GkF(0)}function R(Ve,et){if(1&Ve&&(e.ynx(0),e.TgZ(1,"mat-card-content",19),e.YNc(2,H,1,0,"ng-container",18),e.qZA(),e.BQk()),2&Ve){e.oxw();const tt=e.MAs(20);e.xp6(2),e.Q6J("ngTemplateOutlet",tt)}}function ee(Ve,et){1&Ve&&(e.TgZ(0,"mat-icon",23),e._uU(1,"arrow_downward"),e.qZA())}function De(Ve,et){1&Ve&&(e.TgZ(0,"mat-icon",23),e._uU(1,"arrow_upward"),e.qZA())}function ct(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"div",20)(1,"button",21),e.NdJ("click",function(){e.CHM(tt);const ri=e.oxw();return e.KtG(ri.onScroll())}),e.YNc(2,ee,2,0,"mat-icon",22)(3,De,2,0,"mat-icon",22),e.qZA()()}if(2&Ve){const tt=e.oxw();e.xp6(2),e.Q6J("ngIf","DOWN"===tt.scrollDirection),e.xp6(1),e.Q6J("ngIf","UP"===tt.scrollDirection)}}function Ke(Ve,et){1&Ve&&(e.TgZ(0,"button",24),e._uU(1,"OK"),e.qZA()),2&Ve&&e.Q6J("mat-dialog-close",!1)}function Je(Ve,et){1&Ve&&(e.TgZ(0,"button",25),e._uU(1,"Close"),e.qZA()),2&Ve&&e.Q6J("mat-dialog-close",!1)}function ye(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"button",26),e.NdJ("copied",function(ri){e.CHM(tt);const fn=e.oxw();return e.KtG(fn.onCopyField(ri))}),e._uU(1),e.qZA()}if(2&Ve){const tt=e.oxw();e.Q6J("payload",tt.showCopyField),e.xp6(1),e.hij("Copy ",tt.showCopyName,"")}}function fe(Ve,et){1&Ve&&(e.TgZ(0,"button",25),e._uU(1,"Close"),e.qZA()),2&Ve&&e.Q6J("mat-dialog-close",!1)}function de(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"button",26),e.NdJ("copied",function(ri){e.CHM(tt);const fn=e.oxw();return e.KtG(fn.onCopyField(ri))}),e._uU(1),e.qZA()}if(2&Ve){const tt=e.oxw();e.Q6J("payload",tt.showQRField),e.xp6(1),e.hij("Copy ",tt.showQRName,"")}}function xe(Ve,et){if(1&Ve&&e._UZ(0,"qr-code",15),2&Ve){const tt=e.oxw(2);e.Q6J("value",tt.showQRField)("size",200)("errorCorrectionLevel","L")}}function le(Ve,et){if(1&Ve&&(e.TgZ(0,"p",32),e._uU(1),e.qZA()),2&Ve){const tt=e.oxw(2);e.xp6(1),e.Oqu(tt.data.titleMessage)}}function pe(Ve,et){1&Ve&&e._UZ(0,"span",46),2&Ve&&e.Q6J("innerHTML",et.$implicit,e.oJD)}function qe(Ve,et){if(1&Ve&&(e.ynx(0),e.YNc(1,pe,1,1,"span",45),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Q6J("ngForOf",tt.value)}}function re(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.ALo(2,"date"),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*tt.value,"dd/MMM/y HH:mm"))}}function ve(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.ALo(2,"number"),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,tt.value,tt.digitsInfo?tt.digitsInfo:"1.0-3"))}}function ce(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(tt.value?"True":"False")}}function Ze(Ve,et){1&Ve&&(e.TgZ(0,"mat-icon",51),e._uU(1,"info"),e.qZA())}const We=Ve=>({"failed-status":Ve});function Ct(Ve,et){if(1&Ve&&(e.TgZ(0,"p",49),e._uU(1),e.YNc(2,Ze,2,0,"mat-icon",50),e.qZA()),2&Ve){const tt=e.oxw(3).$implicit,Yt=e.oxw(4);e.Q6J("ngClass",e.VKq(3,We,tt.value===Yt.LoopStateEnum.FAILED)),e.xp6(1),e.hij(" ",tt.value," "),e.xp6(1),e.Q6J("ngIf",tt.value===Yt.LoopStateEnum.FAILED)}}function ut(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"p",54),e.NdJ("click",function(){e.CHM(tt);const ri=e.oxw(8);return e.KtG(ri.onGoToLink())}),e._uU(1),e.qZA()}if(2&Ve){const tt=e.oxw(4).$implicit,Yt=e.oxw(4);e.s9C("matTooltip","Go To "+Yt.goToName),e.xp6(1),e.hij(" ",tt.value," ")}}function It(Ve,et){if(1&Ve&&e._uU(0),2&Ve){const tt=e.oxw(4).$implicit;e.hij(" ",tt.value," ")}}function Ae(Ve,et){if(1&Ve&&e.YNc(0,ut,2,2,"p",52)(1,It,1,1,"ng-template",null,53,e.W1O),2&Ve){const tt=e.MAs(2),Yt=e.oxw(3).$implicit,ri=e.oxw(4);e.Q6J("ngIf",Yt.value===ri.goToFieldValue)("ngIfElse",tt)}}function Be(Ve,et){if(1&Ve&&(e.ynx(0),e.YNc(1,Ct,3,5,"p",47)(2,Ae,3,2,"ng-template",null,48,e.W1O),e.BQk()),2&Ve){const tt=e.MAs(3),Yt=e.oxw(2).$implicit,ri=e.oxw(4);e.xp6(1),e.Q6J("ngIf","SWAP"===ri.data.openedBy&&"state"===Yt.key)("ngIfElse",tt)}}function rt(Ve,et){if(1&Ve&&(e.TgZ(0,"span")(1,"span",42),e.YNc(2,qe,2,1,"ng-container",43)(3,re,3,4,"ng-container",43)(4,ve,3,4,"ng-container",43)(5,ce,2,1,"ng-container",43)(6,Be,4,2,"ng-container",44),e.qZA()()),2&Ve){const tt=e.oxw().$implicit,Yt=e.oxw(4);e.xp6(1),e.Q6J("ngSwitch",tt.type),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.ARRAY),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.DATE_TIME),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.NUMBER),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.BOOLEAN)}}function $e(Ve,et){1&Ve&&(e.TgZ(0,"span",55),e._uU(1,"\xa0"),e.qZA())}function Ie(Ve,et){if(1&Ve&&(e.TgZ(0,"div",37)(1,"h4",38),e._uU(2),e.qZA(),e.YNc(3,rt,7,5,"span",39)(4,$e,2,0,"ng-template",null,40,e.W1O),e._UZ(6,"mat-divider",41),e.qZA()),2&Ve){const tt=et.$implicit,Yt=e.MAs(5);e.s9C("fxFlex.gt-md",tt.width),e.xp6(2),e.Oqu(tt.title),e.xp6(1),e.Q6J("ngIf",tt&&(!!tt.value||0===tt.value))("ngIfElse",Yt)}}function lt(Ve,et){if(1&Ve&&(e.TgZ(0,"div")(1,"div",35),e.YNc(2,Ie,7,4,"div",36),e.qZA()()),2&Ve){const tt=et.$implicit;e.xp6(2),e.Q6J("ngForOf",tt)}}function Qe(Ve,et){if(1&Ve&&(e.TgZ(0,"div",33),e.YNc(1,lt,3,1,"div",34),e.qZA()),2&Ve){const tt=e.oxw(2);e.xp6(1),e.Q6J("ngForOf",tt.messageObjs)}}const St=Ve=>({"display-none":Ve});function dt(Ve,et){if(1&Ve&&(e.TgZ(0,"div",27)(1,"div",28),e.YNc(2,xe,1,3,"qr-code",2),e.qZA(),e.TgZ(3,"div",29),e.YNc(4,le,2,1,"p",30)(5,Qe,2,1,"div",31),e.qZA()()),2&Ve){const tt=e.oxw();e.xp6(1),e.Q6J("ngClass",e.VKq(4,St,""===tt.showQRField||tt.screenSize!==tt.screenSizeEnum.XS&&tt.screenSize!==tt.screenSizeEnum.SM)),e.xp6(1),e.Q6J("ngIf",""!==tt.showQRField),e.xp6(2),e.Q6J("ngIf",tt.data.titleMessage),e.xp6(1),e.Q6J("ngIf",(null==tt.messageObjs?null:tt.messageObjs.length)>0)}}let te=(()=>{class Ve{set container(tt){tt&&(this.scrollContainer=tt,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",Yt=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",Yt=>{this.scrollDirection="DOWN"})))}constructor(tt,Yt,ri,fn,Sn,an,sr){this.dialogRef=tt,this.data=Yt,this.logger=ri,this.snackBar=fn,this.commonService=Sn,this.renderer=an,this.router=sr,this.LoopStateEnum=k.Fq,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=k.n_,this.dataTypeEnum=k.Gi,this.screenSize="",this.screenSizeEnum=k.cu,this.scrollDirection="DOWN",this.shouldScroll=!0}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.goToFieldValue=this.data.goToFieldValue?this.data.goToFieldValue:"",this.goToName=this.data.goToName?this.data.goToName:"",this.goToLink=this.data.goToLink?this.data.goToLink:"",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===k.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(tt){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+tt)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd()}static#e=this.\u0275fac=function(Yt){return new(Yt||Ve)(e.Y36(z.so),e.Y36(z.WI),e.Y36(K.mQ),e.Y36(X.ux),e.Y36(ie.v),e.Y36(e.Qsj),e.Y36(se.F0))};static#t=this.\u0275cmp=e.Xpm({type:Ve,selectors:[["rtl-alert-message"]],viewQuery:function(Yt,ri){if(1&Yt&&e.Gf(D,5),2&Yt){let fn;e.iGM(fn=e.CRH())&&(ri.container=fn.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 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"],["tabindex","4","fxLayout","row","class","go-to-link",3,"matTooltip","click",4,"ngIf","ngIfElse"],["noStyleChild",""],["tabindex","4","fxLayout","row",1,"go-to-link",3,"matTooltip","click"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(Yt,ri){1&Yt&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,O,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 ri.onClose()}),e._uU(9,"X"),e.qZA()(),e.YNc(10,g,4,4,"ng-container",8)(11,R,3,1,"ng-container",8)(12,ct,4,2,"div",9),e.TgZ(13,"div",10),e.YNc(14,Ke,2,1,"button",11)(15,Je,2,1,"button",12)(16,ye,2,2,"button",13)(17,fe,2,1,"button",12)(18,de,2,2,"button",13),e.qZA()()(),e.YNc(19,dt,6,6,"ng-template",null,14,e.W1O)),2&Yt&&(e.xp6(1),e.Q6J("ngClass",e.VKq(12,St,""===ri.showQRField||ri.screenSize===ri.screenSizeEnum.XS||ri.screenSize===ri.screenSizeEnum.SM)),e.xp6(1),e.Q6J("ngIf",""!==ri.showQRField),e.xp6(1),e.Q6J("fxFlex",""===ri.showQRField||ri.screenSize===ri.screenSizeEnum.XS||ri.screenSize===ri.screenSizeEnum.SM?"100":"70"),e.xp6(4),e.Oqu(ri.data.alertTitle||ri.alertTypeEnum[ri.data.type]),e.xp6(3),e.Q6J("ngIf",ri.data.scrollable),e.xp6(1),e.Q6J("ngIf",!ri.data.scrollable),e.xp6(1),e.Q6J("ngIf",ri.data.scrollable&&ri.shouldScroll),e.xp6(2),e.Q6J("ngIf",(!ri.showQRField||""===ri.showQRField)&&""===ri.showCopyName),e.xp6(1),e.Q6J("ngIf",""!==ri.showCopyName),e.xp6(1),e.Q6J("ngIf",""!==ri.showCopyName),e.xp6(1),e.Q6J("ngIf",""!==ri.showQRField),e.xp6(1),e.Q6J("ngIf",""!==ri.showQRField))},dependencies:[ue.mk,ue.sg,ue.O5,ue.tP,ue.RF,ue.n9,ue.ED,B.xw,B.Wh,B.yH,ae.oO,z.ZT,Me.lW,Me.nh,J.dn,J.dk,he.Hw,S.d,n.gM,s.uU,f.$V,h.y,C.h,ue.JJ,ue.uU],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return Ve})();var Ue=p(590),Bt=p(9103),Ye=p(4221),je=p(6223),Ft=p(5597),xt=p(2032),Ot=p(5683),yt=p(6082);function at(Ve,et){if(1&Ve&&(e.TgZ(0,"div",18),e._UZ(1,"fa-icon",19),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&Ve){const tt=e.oxw();e.xp6(1),e.Q6J("icon",tt.faExclamationTriangle),e.xp6(2),e.Oqu(tt.warningMessage)}}function Ee(Ve,et){if(1&Ve&&(e.TgZ(0,"div",20),e._UZ(1,"fa-icon",19),e.TgZ(2,"span"),e._uU(3),e.qZA()()),2&Ve){const tt=e.oxw();e.xp6(1),e.Q6J("icon",tt.faInfoCircle),e.xp6(2),e.Oqu(tt.informationMessage)}}function nt(Ve,et){if(1&Ve&&(e.TgZ(0,"p",21),e._uU(1),e.qZA()),2&Ve){const tt=e.oxw();e.xp6(1),e.Oqu(tt.data.titleMessage)}}function Ge(Ve,et){1&Ve&&e._UZ(0,"div",36),2&Ve&&e.Q6J("innerHTML",et.$implicit,e.oJD)}function Xe(Ve,et){if(1&Ve&&(e.ynx(0,34),e.YNc(1,Ge,1,1,"div",35),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Q6J("ngForOf",tt.value)}}function gt(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.ALo(2,"date"),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,1e3*tt.value,"dd/MMM/y HH:mm"))}}function Le(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.ALo(2,"number"),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(e.xi3(2,1,tt.value,"1.0-3"))}}function be(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(!0===tt.value?"True":"False")}}function $(Ve,et){if(1&Ve&&(e.ynx(0),e._uU(1),e.BQk()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.Oqu(tt.value)}}function ne(Ve,et){if(1&Ve&&(e.TgZ(0,"span")(1,"span",30),e.YNc(2,Xe,2,1,"ng-container",31)(3,gt,3,4,"ng-container",32)(4,Le,3,4,"ng-container",32)(5,be,2,1,"ng-container",32)(6,$,2,1,"ng-container",33),e.qZA()()),2&Ve){const tt=e.oxw().$implicit,Yt=e.oxw(3);e.xp6(1),e.Q6J("ngSwitch",tt.type),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.ARRAY),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.DATE_TIME),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.NUMBER),e.xp6(1),e.Q6J("ngSwitchCase",Yt.dataTypeEnum.BOOLEAN)}}function ke(Ve,et){1&Ve&&(e.TgZ(0,"span",37),e._uU(1,"\xa0"),e.qZA())}function Nt(Ve,et){if(1&Ve&&(e.TgZ(0,"div",25)(1,"h4",26),e._uU(2),e.qZA(),e.YNc(3,ne,7,5,"span",27)(4,ke,2,0,"ng-template",null,28,e.W1O),e._UZ(6,"mat-divider",29),e.qZA()),2&Ve){const tt=et.$implicit,Yt=e.MAs(5);e.s9C("fxFlex.gt-md",tt.width),e.xp6(2),e.Oqu(tt.title),e.xp6(1),e.Q6J("ngIf",tt&&(!!tt.value||0===tt.value))("ngIfElse",Yt)}}function At(Ve,et){if(1&Ve&&(e.TgZ(0,"div")(1,"div",23),e.YNc(2,Nt,7,4,"div",24),e.qZA()()),2&Ve){const tt=et.$implicit;e.xp6(2),e.Q6J("ngForOf",tt)}}function Wt(Ve,et){if(1&Ve&&(e.TgZ(0,"div"),e.YNc(1,At,3,1,"div",22),e.qZA()),2&Ve){const tt=e.oxw();e.xp6(1),e.Q6J("ngForOf",tt.messageObjs)}}function gi(Ve,et){if(1&Ve&&(e.TgZ(0,"p",21),e._uU(1),e.qZA()),2&Ve){const tt=e.oxw(2);e.xp6(1),e.Oqu(tt.data.titleMessage)}}function ei(Ve,et){if(1&Ve&&(e.TgZ(0,"mat-error"),e._uU(1),e.qZA()),2&Ve){const tt=e.oxw(2).$implicit;e.xp6(1),e.hij("",tt.placeholder," is required.")}}function $t(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"mat-form-field",41)(1,"mat-label"),e._uU(2),e.qZA(),e.TgZ(3,"input",42),e.NdJ("ngModelChange",function(ri){e.CHM(tt);const fn=e.oxw().$implicit;return e.KtG(fn.inputValue=ri)}),e.ALo(4,"lowercase"),e.qZA(),e.YNc(5,ei,2,1,"mat-error",11),e.TgZ(6,"mat-hint"),e._uU(7),e.qZA()()}if(2&Ve){const tt=e.oxw(),Yt=tt.$implicit,ri=tt.index;e.Q6J("fxFlex",Yt.width),e.xp6(2),e.Oqu(Yt.placeholder),e.xp6(1),e.MGl("name","input",ri,""),e.Q6J("autoFocus",0===ri)("min",Yt.min)("step",Yt.step)("type",e.lcZ(4,11,Yt.inputType))("tabindex",ri+1)("ngModel",Yt.inputValue),e.xp6(2),e.Q6J("ngIf",!Yt.inputValue),e.xp6(2),e.Oqu(Yt.hintFunction?Yt.hintFunction(Yt.inputValue):Yt.hintText)}}function Fi(Ve,et){if(1&Ve&&(e.ynx(0),e.YNc(1,$t,8,13,"mat-form-field",40),e.BQk()),2&Ve){const tt=et.$implicit,Yt=e.oxw(2);e.xp6(1),e.Q6J("ngIf",!tt.advancedField||Yt.showAdvanced)}}function li(Ve,et){if(1&Ve&&(e.TgZ(0,"div",38),e.YNc(1,gi,2,1,"p",10),e.TgZ(2,"div",39),e.YNc(3,Fi,2,1,"ng-container",22),e.qZA()()),2&Ve){const tt=e.oxw();e.xp6(1),e.Q6J("ngIf",tt.data.titleMessage),e.xp6(2),e.Q6J("ngForOf",tt.getInputs)}}function ui(Ve,et){1&Ve&&(e.TgZ(0,"p"),e._uU(1,"Show Advanced"),e.qZA())}function un(Ve,et){1&Ve&&(e.TgZ(0,"p"),e._uU(1,"Hide Advanced"),e.qZA())}function Ki(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"button",43),e.NdJ("click",function(){e.CHM(tt);const ri=e.oxw();return e.KtG(ri.onShowAdvanced())}),e.YNc(1,ui,2,0,"p",27)(2,un,2,0,"ng-template",null,44,e.W1O),e.qZA()}if(2&Ve){const tt=e.MAs(3),Yt=e.oxw();e.xp6(1),e.Q6J("ngIf",!Yt.showAdvanced)("ngIfElse",tt)}}function Mi(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"button",45),e.NdJ("click",function(){e.CHM(tt);const ri=e.oxw();return e.KtG(ri.onClose(ri.getInputs))}),e._uU(1),e.qZA()}if(2&Ve){const tt=e.oxw();e.xp6(1),e.Oqu(tt.yesBtnText)}}function on(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"button",46),e.NdJ("click",function(){e.CHM(tt);const ri=e.oxw();return e.KtG(ri.onClose(!0))}),e._uU(1),e.qZA()}if(2&Ve){const tt=e.oxw();e.xp6(1),e.Oqu(tt.yesBtnText)}}let st=(()=>{class Ve{constructor(tt,Yt,ri,fn){this.dialogRef=tt,this.data=Yt,this.logger=ri,this.store=fn,this.faInfoCircle=Ue.sqG,this.faExclamationTriangle=Ue.eHv,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=k.n_,this.dataTypeEnum=k.Gi,this.getInputs=[{placeholder:"",inputType:k.Gi.STRING,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===k.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(tt){if(tt&&this.getInputs&&this.getInputs.some(Yt=>typeof Yt.inputValue>"u"))return!0;!this.showAdvanced&&tt.length&&(tt=tt?.reduce((Yt,ri)=>(ri.advancedField||Yt.push(ri),Yt),[])),this.store.dispatch((0,Bt.yb)({payload:tt}))}static#e=this.\u0275fac=function(Yt){return new(Yt||Ve)(e.Y36(z.so),e.Y36(z.WI),e.Y36(K.mQ),e.Y36(Ye.yh))};static#t=this.\u0275cmp=e.Xpm({type:Ve,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 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","name","min","step","type","tabindex","ngModel","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(Yt,ri){1&Yt&&(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 ri.onClose(!1)}),e._uU(7,"X"),e.qZA()(),e.TgZ(8,"mat-card-content",6)(9,"form",7),e.YNc(10,at,4,2,"div",8)(11,Ee,4,2,"div",9)(12,nt,2,1,"p",10)(13,Wt,2,1,"div",11)(14,li,4,2,"div",12),e.TgZ(15,"div",13)(16,"button",14),e.NdJ("click",function(){return ri.onClose(!1)}),e._uU(17),e.qZA(),e.YNc(18,Ki,4,2,"button",15)(19,Mi,2,1,"button",16)(20,on,2,1,"button",17),e.qZA()()()()()),2&Yt&&(e.xp6(5),e.Oqu(ri.data.alertTitle||ri.alertTypeEnum[ri.data.type]),e.xp6(5),e.Q6J("ngIf",ri.warningMessage&&""!==ri.warningMessage),e.xp6(1),e.Q6J("ngIf",ri.informationMessage&&""!==ri.informationMessage),e.xp6(1),e.Q6J("ngIf",ri.data.titleMessage&&!ri.flgShowInput),e.xp6(1),e.Q6J("ngIf",(null==ri.messageObjs?null:ri.messageObjs.length)>0),e.xp6(1),e.Q6J("ngIf",ri.flgShowInput),e.xp6(3),e.Oqu(ri.noBtnText),e.xp6(1),e.Q6J("ngIf",ri.hasAdvanced),e.xp6(1),e.Q6J("ngIf",ri.flgShowInput),e.xp6(1),e.Q6J("ngIf",!ri.flgShowInput))},dependencies:[ue.sg,ue.O5,ue.RF,ue.n9,ue.ED,je._Y,je.Fj,je.JJ,je.JL,je.Q7,je.On,je.F,Ft.BN,B.xw,B.Wh,B.yH,Me.lW,J.dn,J.dk,xt.Nt,Ot.KE,Ot.hX,Ot.bx,Ot.TO,S.d,C.h,yt.q,ue.i8,ue.JJ,ue.uU]})}return Ve})();var si=p(3315),Ce=p(8525),Mt=p(3680);function Ht(Ve,et){if(1&Ve&&(e.TgZ(0,"mat-option",23),e._uU(1),e.qZA()),2&Ve){const tt=et.$implicit;e.Q6J("value",tt),e.xp6(1),e.hij(" ",tt.infoName," ")}}function Dt(Ve,et){if(1&Ve){const tt=e.EpF();e.TgZ(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),e.NdJ("valueChange",function(ri){e.CHM(tt);const fn=e.oxw();return e.KtG(fn.selInfoType=ri)}),e.YNc(3,Ht,2,2,"mat-option",22),e.qZA()()()}if(2&Ve){const tt=e.oxw();e.xp6(2),e.Q6J("value",tt.selInfoType),e.xp6(1),e.Q6J("ngForOf",tt.infoTypes)}}const kt=Ve=>({"display-none":Ve});let Gt=(()=>{class Ve{constructor(tt,Yt,ri,fn,Sn){this.dialogRef=tt,this.data=Yt,this.logger=ri,this.snackBar=fn,this.commonService=Sn,this.faReceipt=Ue.dLy,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=k.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((tt,Yt)=>{this.infoTypes.push({infoID:Yt+1,infoKey:"node URI "+(Yt+1),infoName:"Node URI "+(Yt+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(tt){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+tt)}static#e=this.\u0275fac=function(Yt){return new(Yt||Ve)(e.Y36(z.so),e.Y36(z.WI),e.Y36(K.mQ),e.Y36(X.ux),e.Y36(ie.v))};static#t=this.\u0275cmp=e.Xpm({type:Ve,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 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"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],["tabindex","1",3,"value","valueChange"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(Yt,ri){1&Yt&&(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 ri.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,Dt,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(Sn){return ri.onCopyPubkey(Sn)}),e._uU(25),e.qZA()()()()()()),2&Yt&&(e.xp6(1),e.Q6J("ngClass",e.VKq(15,kt,ri.screenSize===ri.screenSizeEnum.XS||ri.screenSize===ri.screenSizeEnum.SM)),e.xp6(1),e.s9C("value",0===ri.selInfoType.infoID?ri.information.identity_pubkey:ri.information.uris[ri.selInfoType.infoID-1]),e.Q6J("size",ri.qrWidth)("errorCorrectionLevel","L"),e.xp6(4),e.Q6J("icon",ri.faReceipt),e.xp6(2),e.Oqu(ri.selInfoType.infoName),e.xp6(5),e.Q6J("ngClass",e.VKq(17,kt,ri.screenSize!==ri.screenSizeEnum.XS&&ri.screenSize!==ri.screenSizeEnum.SM)),e.xp6(1),e.s9C("value",0===ri.selInfoType.infoID?ri.information.identity_pubkey:ri.information.uris[ri.selInfoType.infoID-1]),e.Q6J("size",ri.qrWidth)("errorCorrectionLevel","L"),e.xp6(1),e.Q6J("ngIf",ri.information.uris&&ri.information.uris.length>0),e.xp6(4),e.Oqu(ri.selInfoType.infoName),e.xp6(2),e.Oqu(0===ri.selInfoType.infoID?ri.information.identity_pubkey:ri.information.uris[ri.selInfoType.infoID-1]),e.xp6(3),e.s9C("payload",0===ri.selInfoType.infoID?ri.information.identity_pubkey:ri.information.uris[ri.selInfoType.infoID-1]),e.xp6(1),e.hij("Copy ",ri.selInfoType.infoKey,""))},dependencies:[ue.mk,ue.sg,ue.O5,Ft.BN,B.xw,B.Wh,B.yH,ae.oO,Me.lW,J.dn,J.dk,Ot.KE,S.d,Ce.gD,Mt.ey,s.uU,h.y,C.h]})}return Ve})();var oi=p(9191),bi=p(234),yi=p(2249),Oi=p(4818),Ui=p(9862),Bi=p(2285),qt=p(5813),xi=p(6046);let Se=(()=>{class Ve{constructor(tt,Yt,ri,fn,Sn,an,sr,Jr,Ar,Yr,$r){this.actions=tt,this.httpClient=Yt,this.store=ri,this.logger=fn,this.wsService=Sn,this.sessionService=an,this.commonService=sr,this.dataService=Jr,this.dialog=Ar,this.snackBar=Yr,this.router=$r,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new y.x,new y.x],this.closeAllDialogs=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.CLOSE_ALL_DIALOGS),(0,m.U)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.OPEN_SNACK_BAR),(0,m.U)(Ni=>{"string"==typeof Ni.payload?this.snackBar.open(Ni.payload):this.snackBar.open(Ni.payload.message,"","ERROR"===Ni.payload.type?{duration:Ni.payload.duration?Ni.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===Ni.payload.type?{duration:Ni.payload.duration?Ni.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:Ni.payload.duration?Ni.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.OPEN_SPINNER),(0,m.U)(Ni=>{Ni.payload!==k.m6.NO_SPINNER&&(this.dialogRef=this.dialog.open(j,{panelClass:"spinner-dialog-panel",data:{titleMessage:Ni.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.CLOSE_SPINNER),(0,m.U)(Ni=>{if(Ni.payload!==k.m6.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===Ni.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(zt=>{zt.componentInstance&&zt.componentInstance.data&&zt.componentInstance.data.titleMessage&&zt.componentInstance.data.titleMessage===Ni.payload&&zt.close()})}catch(zt){this.logger.error(zt)}})),{dispatch:!1}),this.openAlert=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.OPEN_ALERT),(0,m.U)(Ni=>{const zt=JSON.parse(JSON.stringify(Ni.payload));zt.width||(zt.width=this.alertWidth),this.dialogRef=this.dialog.open(Ni.payload.data.component?Ni.payload.data.component:te,zt)})),{dispatch:!1}),this.closeAlert=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.CLOSE_ALERT),(0,m.U)(Ni=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Ni.payload),Ni.payload))),{dispatch:!1}),this.openConfirm=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.OPEN_CONFIRMATION),(0,m.U)(Ni=>{const zt=JSON.parse(JSON.stringify(Ni.payload));zt.width||(zt.width=this.confirmWidth),this.dialogRef=this.dialog.open(st,zt)})),{dispatch:!1}),this.closeConfirm=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.CLOSE_CONFIRMATION),(0,P.q)(1),(0,m.U)(Ni=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Ni.payload),Ni.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.SHOW_PUBKEY),(0,d.M)(this.store.select(Oi.R4)),(0,E.z)(([Ni,zt])=>(this.sessionService.getItem("token")&&zt.identity_pubkey?this.store.dispatch((0,Bt.qR)({payload:{data:{information:zt,component:Gt}}})):this.snackBar.open("Node Pubkey does not exist."),(0,A.of)({type:k.pg.VOID}))))),this.appConfigFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.FETCH_RTL_CONFIG),(0,E.z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===k.cu.XS||this.screenSize===k.cu.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===k.cu.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,Bt.ac)({payload:k.m6.GET_RTL_CONFIG})),this.store.dispatch((0,Bt.qi)({payload:{action:"FetchRTLConfig",status:k.Bn.INITIATED}})),this.sessionService.getItem("token")?this.httpClient.get(k.vv.CONF_API+"/rtlconf"):this.httpClient.get(k.vv.CONF_API+"/rtlconfinit"))),(0,m.U)(Ni=>{this.logger.info(Ni),this.store.dispatch((0,Bt.uO)({payload:k.m6.GET_RTL_CONFIG})),this.store.dispatch((0,Bt.qi)({payload:{action:"FetchRTLConfig",status:k.Bn.COMPLETED}}));let zt=null;return Ni.nodes.forEach(pi=>{pi.settings.currencyUnits=[...k.uA,pi.settings?.currencyUnit?pi.settings?.currencyUnit:""],+(pi.index||-1)===Ni.selectedNodeIndex&&(zt=pi)}),zt?(this.store.dispatch((0,Bt.fk)({payload:{uiMessage:k.m6.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:zt,isInitialSetup:!0}})),{type:k.pg.SET_RTL_CONFIG,payload:Ni}):{type:k.pg.VOID}}),(0,M.K)(Ni=>(this.handleErrorWithAlert("FetchRTLConfig",k.m6.GET_RTL_CONFIG,"Fetch RTL Config Failed!",k.vv.CONF_API,Ni),(0,A.of)({type:k.pg.VOID}))))),this.settingSave=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.SAVE_SETTINGS),(0,E.z)(Ni=>{this.store.dispatch((0,Bt.ac)({payload:Ni.payload.uiMessage})),this.store.dispatch((0,Bt.qi)({payload:{action:"UpdateSettings",status:k.Bn.INITIATED}}));let zt=new l.y;if(Ni.payload.settings&&Ni.payload.defaultNodeIndex){const pi=this.httpClient.post(k.vv.CONF_API,{updatedSettings:Ni.payload.settings}),_i=this.httpClient.post(k.vv.CONF_API+"/updateDefaultNode",{defaultNodeIndex:Ni.payload.defaultNodeIndex});zt=(0,w.D)([pi,_i])}else Ni.payload.settings&&!Ni.payload.defaultNodeIndex?zt=this.httpClient.post(k.vv.CONF_API,{updatedSettings:Ni.payload.settings}):!Ni.payload.settings&&Ni.payload.defaultNodeIndex&&(zt=this.httpClient.post(k.vv.CONF_API+"/updateDefaultNode",{defaultNodeIndex:Ni.payload.defaultNodeIndex}));return zt.pipe((0,m.U)(pi=>(this.logger.info(pi),this.store.dispatch((0,Bt.qi)({payload:{action:"UpdateSettings",status:k.Bn.COMPLETED}})),this.store.dispatch((0,Bt.uO)({payload:Ni.payload.uiMessage})),{type:k.pg.OPEN_SNACK_BAR,payload:pi.length?pi[0].message+".":pi.message+"."})),(0,M.K)(pi=>(this.handleErrorWithAlert("UpdateSettings",Ni.payload.uiMessage,"Update Settings Failed!",k.vv.CONF_API,pi.length?pi[0]:pi),(0,A.of)({type:k.pg.VOID}))))}))),this.updateServicesettings=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.UPDATE_SERVICE_SETTINGS),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.ac)({payload:Ni.payload.uiMessage})),this.store.dispatch((0,Bt.qi)({payload:{action:"UpdateServiceSettings",status:k.Bn.INITIATED}})),this.httpClient.post(k.vv.CONF_API+"/updateServiceSettings",Ni.payload).pipe((0,m.U)(zt=>(this.logger.info(zt),this.store.dispatch((0,Bt.qi)({payload:{action:"UpdateServiceSettings",status:k.Bn.COMPLETED}})),this.store.dispatch((0,Bt.uO)({payload:Ni.payload.uiMessage})),this.store.dispatch((0,Bt.Tm)({payload:Ni.payload})),{type:k.pg.OPEN_SNACK_BAR,payload:zt.message+"."})),(0,M.K)(zt=>(this.handleErrorWithAlert("UpdateServiceSettings",Ni.payload.uiMessage,"Update Service Settings Failed!",k.vv.CONF_API,zt),(0,A.of)({type:k.pg.VOID})))))))),this.twoFASettingSave=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.TWO_FA_SAVE_SETTINGS),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.ac)({payload:k.m6.UPDATE_UI_SETTINGS})),this.store.dispatch((0,Bt.qi)({payload:{action:"Update2FASettings",status:k.Bn.INITIATED}})),this.httpClient.post(k.vv.CONF_API+"/update2FA",{secret2fa:Ni.payload.secret2fa}))),(0,d.M)(this.store.select(Oi.Yj)),(0,m.U)(([Ni,zt])=>{this.logger.info(Ni),zt.enable2FA=!zt.enable2FA,this.store.dispatch((0,Bt.qi)({payload:{action:"Update2FASettings",status:k.Bn.COMPLETED}})),this.store.dispatch((0,Bt.uO)({payload:k.m6.UPDATE_UI_SETTINGS})),this.store.dispatch((0,Bt.XT)({payload:zt}))}),(0,M.K)(Ni=>(this.handleErrorWithAlert("Update2FASettings",k.m6.UPDATE_UI_SETTINGS,"Update 2FA Settings Failed!",k.vv.CONF_API,Ni),(0,A.of)({type:k.pg.VOID})))),{dispatch:!1}),this.configFetch=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.FETCH_CONFIG),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.ac)({payload:k.m6.OPEN_CONFIG_FILE})),this.store.dispatch((0,Bt.qi)({payload:{action:"fetchConfig",status:k.Bn.INITIATED}})),this.httpClient.get(k.vv.CONF_API+"/config/"+Ni.payload).pipe((0,m.U)(zt=>(this.store.dispatch((0,Bt.qi)({payload:{action:"fetchConfig",status:k.Bn.COMPLETED}})),this.store.dispatch((0,Bt.uO)({payload:k.m6.OPEN_CONFIG_FILE})),{type:k.pg.SHOW_CONFIG,payload:zt})),(0,M.K)(zt=>(this.handleErrorWithAlert("fetchConfig",k.m6.OPEN_CONFIG_FILE,"Fetch Config Failed!",k.vv.CONF_API+"/config/"+Ni.payload,zt),(0,A.of)({type:k.pg.VOID})))))))),this.showLnConfig=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.SHOW_CONFIG),(0,m.U)(Ni=>Ni.payload)),{dispatch:!1}),this.isAuthorized=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.IS_AUTHORIZED),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.qi)({payload:{action:"IsAuthorized",status:k.Bn.INITIATED}})),this.httpClient.post(k.vv.AUTHENTICATE_API,{authenticateWith:Ni.payload&&""!==Ni.payload.trim()?k.OJ.PASSWORD:k.OJ.JWT,authenticationValue:Ni.payload&&""!==Ni.payload.trim()?Ni.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,m.U)(zt=>(this.logger.info(zt),this.store.dispatch((0,Bt.qi)({payload:{action:"IsAuthorized",status:k.Bn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:k.pg.IS_AUTHORIZED_RES,payload:zt})),(0,M.K)(zt=>(this.handleErrorWithAlert("IsAuthorized",k.m6.NO_SPINNER,"Authorization Failed",k.vv.AUTHENTICATE_API,zt),(0,A.of)({type:k.pg.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.IS_AUTHORIZED_RES),(0,m.U)(Ni=>Ni.payload)),{dispatch:!1}),this.authLogin=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.LOGIN),(0,d.M)(this.store.select(Oi.Yj)),(0,E.z)(([Ni,zt])=>(this.store.dispatch((0,oi.Ll)({payload:null})),this.store.dispatch((0,bi.mI)({payload:null})),this.store.dispatch((0,yi.Fd)({payload:null})),this.store.dispatch((0,Bt.qi)({payload:{action:"Login",status:k.Bn.INITIATED}})),this.httpClient.post(k.vv.AUTHENTICATE_API,{authenticateWith:Ni.payload.password?k.OJ.PASSWORD:k.OJ.JWT,authenticationValue:Ni.payload.password?Ni.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:Ni.payload.twoFAToken?Ni.payload.twoFAToken:""}).pipe((0,m.U)(pi=>{this.logger.info(pi),this.store.dispatch((0,Bt.qi)({payload:{action:"Login",status:k.Bn.COMPLETED}})),this.setLoggedInDetails(Ni.payload.defaultPassword,pi)}),(0,M.K)(pi=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",k.m6.NO_SPINNER,pi),+zt.sso.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:pi.error&&pi.error.error?pi.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"]),(0,A.of)({type:k.pg.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.VERIFY_TWO_FA),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.ac)({payload:k.m6.VERIFY_TOKEN})),this.store.dispatch((0,Bt.qi)({payload:{action:"VerifyToken",status:k.Bn.INITIATED}})),this.httpClient.post(k.vv.AUTHENTICATE_API+"/token",{authentication2FA:Ni.payload.token}).pipe((0,m.U)(zt=>{this.logger.info(zt),this.store.dispatch((0,Bt.uO)({payload:k.m6.VERIFY_TOKEN})),this.store.dispatch((0,Bt.qi)({payload:{action:"VerifyToken",status:k.Bn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,Ni.payload.authResponse)}),(0,M.K)(zt=>(this.handleErrorWithAlert("VerifyToken",k.m6.VERIFY_TOKEN,"Authorization Failed!",k.vv.AUTHENTICATE_API+"/token",zt),(0,A.of)({type:k.pg.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.LOGOUT),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.ac)({payload:k.m6.LOG_OUT})),Ni.sso&&+Ni.sso.rtlSSO?window.location.href=Ni.sso.logoutRedirectLink:this.router.navigate(["./login"]),this.sessionService.clearAll(),this.store.dispatch((0,Bt._V)({payload:{}})),this.store.dispatch((0,Bt.uO)({payload:k.m6.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(k.vv.AUTHENTICATE_API+"/logout").pipe((0,m.U)(zt=>{this.logger.info(zt),this.store.dispatch((0,Bt.uO)({payload:k.m6.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.GW)(()=>this.actions.pipe((0,I.R)(this.unSubs[1]),(0,t.l4)(k.pg.RESET_PASSWORD),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.qi)({payload:{action:"ResetPassword",status:k.Bn.INITIATED}})),this.httpClient.post(k.vv.AUTHENTICATE_API+"/reset",{currPassword:Ni.payload.currPassword,newPassword:Ni.payload.newPassword}).pipe((0,I.R)(this.unSubs[0]),(0,m.U)(zt=>(this.logger.info(zt),this.store.dispatch((0,Bt.qi)({payload:{action:"ResetPassword",status:k.Bn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,Bt.jW)({payload:"Password Reset Successful!"})),this.SetToken(zt.token),{type:k.pg.RESET_PASSWORD_RES,payload:zt.token})),(0,M.K)(zt=>(this.handleErrorWithAlert("ResetPassword",k.m6.NO_SPINNER,"Password Reset Failed!",k.vv.AUTHENTICATE_API+"/reset",zt),(0,A.of)({type:k.pg.VOID})))))))),this.setSelectedNode=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.SET_SELECTED_NODE),(0,E.z)(Ni=>(this.store.dispatch((0,Bt.ac)({payload:Ni.payload.uiMessage})),this.store.dispatch((0,Bt.qi)({payload:{action:"UpdateSelNode",status:k.Bn.INITIATED}})),this.httpClient.get(k.vv.CONF_API+"/updateSelNode/"+Ni.payload.currentLnNode?.index+"/"+Ni.payload.prevLnNodeIndex).pipe((0,m.U)(zt=>(this.logger.info(zt),this.store.dispatch((0,Bt.qi)({payload:{action:"UpdateSelNode",status:k.Bn.COMPLETED}})),this.store.dispatch((0,Bt.uO)({payload:Ni.payload.uiMessage})),this.initializeNode(Ni.payload.currentLnNode,Ni.payload.isInitialSetup),{type:k.pg.VOID})),(0,M.K)(zt=>(this.handleErrorWithAlert("UpdateSelNode",Ni.payload.uiMessage,"Update Selected Node Failed!",k.vv.CONF_API+"/updateSelNode",zt),(0,A.of)({type:k.pg.VOID})))))))),this.fetchFile=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.FETCH_FILE),(0,E.z)(Ni=>{this.store.dispatch((0,Bt.ac)({payload:k.m6.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,Bt.qi)({payload:{action:"FetchFile",status:k.Bn.INITIATED}}));const zt="?channel="+Ni.payload.channelPoint+(Ni.payload.path?"&path="+Ni.payload.path:"");return this.httpClient.get(k.vv.CONF_API+"/file"+zt).pipe((0,m.U)(pi=>(this.store.dispatch((0,Bt.qi)({payload:{action:"FetchFile",status:k.Bn.COMPLETED}})),this.store.dispatch((0,Bt.uO)({payload:k.m6.DOWNLOAD_BACKUP_FILE})),{type:k.pg.SHOW_FILE,payload:pi})),(0,M.K)(pi=>(this.handleErrorWithAlert("fetchFile",k.m6.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",k.vv.CONF_API+"/file"+zt,{status:this.commonService.extractErrorNumber(pi),error:{error:this.commonService.extractErrorCode(pi)}}),(0,A.of)({type:k.pg.VOID}))))}))),this.showFile=(0,t.GW)(()=>this.actions.pipe((0,t.l4)(k.pg.SHOW_FILE),(0,m.U)(Ni=>Ni.payload)),{dispatch:!1})}initializeNode(tt,Yt){this.logger.info("Initializing node from RTL Effects.");const ri=Yt?"":"HOME",fn={userPersona:tt.settings.userPersona,channelBackupPath:tt.settings.channelBackupPath,unannouncedChannels:!!tt.settings.unannouncedChannels,selCurrencyUnit:tt.settings.currencyUnit,currencyUnits:k.uA,fiatConversion:tt.settings.fiatConversion,lnImplementation:tt.lnImplementation,swapServerUrl:tt.settings.swapServerUrl,boltzServerUrl:tt.settings.boltzServerUrl,enableOffers:tt.settings.enableOffers,enablePeerswap:tt.settings.enablePeerswap};if(tt.settings.fiatConversion&&tt.settings.currencyUnit&&(fn.currencyUnits=[...k.uA,tt.settings.currencyUnit]),this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),this.store.dispatch((0,Bt.vI)({payload:tt})),this.store.dispatch((0,oi.Ll)({payload:fn})),this.store.dispatch((0,bi.mI)({payload:fn})),this.store.dispatch((0,yi.Fd)({payload:fn})),this.sessionService.getItem("token")){const Sn=tt.lnImplementation?tt.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Sn);const an=!(0,e.X6Q)()&&window.location.origin?window.location.origin+"/rtl/api":k.T5;switch(this.wsService.connectWebSocket(an?.replace(/^http/,"ws")+k.vv.Web_SOCKET_API,tt.index?tt.index.toString():"-1"),Sn){case"CLN":this.store.dispatch((0,bi.wD)()),this.store.dispatch((0,bi.W)({payload:{loadPage:ri}}));break;case"ECL":this.store.dispatch((0,yi.wD)()),this.store.dispatch((0,yi.iz)({payload:{loadPage:ri}}));break;default:this.store.dispatch((0,oi.wD)()),this.store.dispatch((0,oi.sQ)({payload:{loadPage:ri}}))}}}SetToken(tt){tt?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",tt)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(tt,Yt){this.logger.info("Successfully Authorized!"),this.SetToken(Yt.token),this.sessionService.setItem("defaultPassword",tt),tt?(this.store.dispatch((0,Bt.jW)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,Bt.ey)())}handleErrorWithoutAlert(tt,Yt,ri){this.logger.error("ERROR IN: "+tt+"\n"+JSON.stringify(ri)),401===ri.status&&"Login"!==tt?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bt.ts)()),this.store.dispatch((0,Bt.kS)()),this.store.dispatch((0,Bt.jW)({payload:"Authentication Failed. Redirecting to Login."}))):(this.store.dispatch((0,Bt.uO)({payload:Yt})),this.store.dispatch((0,Bt.qi)({payload:{action:tt,status:k.Bn.ERROR,statusCode:ri.status?ri.status.toString():"",message:this.commonService.extractErrorMessage(ri)}})))}handleErrorWithAlert(tt,Yt,ri,fn,Sn){if(this.logger.error(Sn),0===Sn.status&&Sn.statusText&&"Unknown Error"===Sn.statusText&&(Sn={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===Sn.status&&"Login"!==tt)this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bt.ts)()),this.store.dispatch((0,Bt.kS)()),this.store.dispatch((0,Bt.jW)({payload:"Authentication Failed. Redirecting to Login."}));else{this.store.dispatch((0,Bt.uO)({payload:Yt}));const an=this.commonService.extractErrorMessage(Sn);this.store.dispatch((0,Bt.qR)({payload:{data:{type:"ERROR",alertTitle:ri,message:{code:Sn.status?Sn.status:"Unknown Error",message:an,URL:fn},component:si.H}}})),this.store.dispatch((0,Bt.qi)({payload:{action:tt,status:k.Bn.ERROR,statusCode:Sn.status?Sn.status.toString():"",message:an,URL:fn}}))}}ngOnDestroy(){this.unSubs.forEach(tt=>{tt.next(null),tt.complete()})}static#e=this.\u0275fac=function(Yt){return new(Yt||Ve)(e.LFG(t.eX),e.LFG(Ui.eN),e.LFG(Ye.yh),e.LFG(K.mQ),e.LFG(Bi.d),e.LFG(qt.m),e.LFG(ie.v),e.LFG(xi.D),e.LFG(z.uw),e.LFG(X.ux),e.LFG(se.F0))};static#t=this.\u0275prov=e.Yz7({token:Ve,factory:Ve.\u0275fac})}return Ve})()},4818:(Fe,q,p)=>{"use strict";p.d(q,{R4:()=>w,Sr:()=>P,Yj:()=>l,dT:()=>A,gW:()=>d,ul:()=>m});var e=p(4221);const t=(0,e.ZF)("root"),A=((0,e.P1)(t,E=>E.apiURL),(0,e.P1)(t,E=>E.selNode)),l=(0,e.P1)(t,E=>E.appConfig),w=(0,e.P1)(t,E=>E.nodeData),m=(0,e.P1)(t,E=>E.apisCallStatus.Login),P=(0,e.P1)(t,E=>E.apisCallStatus.IsAuthorized),d=(0,e.P1)(t,E=>({nodeDate:E.nodeData,selNode:E.selNode}))},9941:(Fe,q,p)=>{"use strict";var e=p(6593),t=p(9212),y=p(6825);function l(N){return new t.vHH(3e3,!1)}function ct(N){switch(N.length){case 0:return new y.ZN;case 1:return N[0];default:return new y.ZE(N)}}function Ke(N,V,b=new Map,G=new Map){const Z=[],He=[];let Pt=-1,ti=null;if(V.forEach(fi=>{const wi=fi.get("offset"),dn=wi==Pt,Qi=dn&&ti||new Map;fi.forEach((zn,On)=>{let pn=On,kn=zn;if("offset"!==On)switch(pn=N.normalizePropertyName(pn,Z),kn){case y.k1:kn=b.get(On);break;case y.l3:kn=G.get(On);break;default:kn=N.normalizeStyleValue(On,pn,kn,Z)}Qi.set(pn,kn)}),dn||He.push(Qi),ti=Qi,Pt=wi}),Z.length)throw function s(N){return new t.vHH(3502,!1)}();return He}function Je(N,V,b,G){switch(V){case"start":N.onStart(()=>G(b&&ye(b,"start",N)));break;case"done":N.onDone(()=>G(b&&ye(b,"done",N)));break;case"destroy":N.onDestroy(()=>G(b&&ye(b,"destroy",N)))}}function ye(N,V,b){const He=fe(N.element,N.triggerName,N.fromState,N.toState,V||N.phaseName,b.totalTime??N.totalTime,!!b.disabled),Pt=N._data;return null!=Pt&&(He._data=Pt),He}function fe(N,V,b,G,Z="",He=0,Pt){return{element:N,triggerName:V,fromState:b,toState:G,phaseName:Z,totalTime:He,disabled:!!Pt}}function de(N,V,b){let G=N.get(V);return G||N.set(V,G=b),G}function xe(N){const V=N.indexOf(":");return[N.substring(1,V),N.slice(V+1)]}const le=(()=>typeof document>"u"?null:document.documentElement)();function pe(N){const V=N.parentNode||N.host||null;return V===le?null:V}let re=null,ve=!1;function Ct(N,V){for(;V;){if(V===N)return!0;V=pe(V)}return!1}function ut(N,V,b){if(b)return Array.from(N.querySelectorAll(V));const G=N.querySelector(V);return G?[G]:[]}let Ae=(()=>{class N{validateStyleProperty(b){return function ce(N){re||(re=function We(){return typeof document<"u"?document.body:null}()||{},ve=!!re.style&&"WebkitAppearance"in re.style);let V=!0;return re.style&&!function qe(N){return"ebkit"==N.substring(1,6)}(N)&&(V=N in re.style,!V&&ve&&(V="Webkit"+N.charAt(0).toUpperCase()+N.slice(1)in re.style)),V}(b)}matchesElement(b,G){return!1}containsElement(b,G){return Ct(b,G)}getParentElement(b){return pe(b)}query(b,G,Z){return ut(b,G,Z)}computeStyle(b,G,Z){return Z||""}animate(b,G,Z,He,Pt,ti=[],fi){return new y.ZN(Z,He)}static#e=this.\u0275fac=function(G){return new(G||N)};static#t=this.\u0275prov=t.Yz7({token:N,factory:N.\u0275fac})}return N})(),Be=(()=>{class N{static#e=this.NOOP=new Ae}return N})();class rt{}const Ie=1e3,St="ng-enter",dt="ng-leave",te="ng-trigger",Ue=".ng-trigger",Bt="ng-animating",Ye=".ng-animating";function je(N){if("number"==typeof N)return N;const V=N.match(/^(-?[\.\d]+)(m?s)/);return!V||V.length<2?0:Ft(parseFloat(V[1]),V[2])}function Ft(N,V){return"s"===V?N*Ie:N}function xt(N,V,b){return N.hasOwnProperty("duration")?N:function Ot(N,V,b){let Z,He=0,Pt="";if("string"==typeof N){const ti=N.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===ti)return V.push(l()),{duration:0,delay:0,easing:""};Z=Ft(parseFloat(ti[1]),ti[2]);const fi=ti[3];null!=fi&&(He=Ft(parseFloat(fi),ti[4]));const wi=ti[5];wi&&(Pt=wi)}else Z=N;if(!b){let ti=!1,fi=V.length;Z<0&&(V.push(function w(){return new t.vHH(3100,!1)}()),ti=!0),He<0&&(V.push(function m(){return new t.vHH(3101,!1)}()),ti=!0),ti&&V.splice(fi,0,l())}return{duration:Z,delay:He,easing:Pt}}(N,V,b)}function yt(N,V={}){return Object.keys(N).forEach(b=>{V[b]=N[b]}),V}function at(N){const V=new Map;return Object.keys(N).forEach(b=>{V.set(b,N[b])}),V}function Ge(N,V=new Map,b){if(b)for(let[G,Z]of b)V.set(G,Z);for(let[G,Z]of N)V.set(G,Z);return V}function Xe(N,V,b){V.forEach((G,Z)=>{const He=Wt(Z);b&&!b.has(Z)&&b.set(Z,N.style[He]),N.style[He]=G})}function gt(N,V){V.forEach((b,G)=>{const Z=Wt(G);N.style[Z]=""})}function Le(N){return Array.isArray(N)?1==N.length?N[0]:(0,y.vP)(N):N}const $=new RegExp("{{\\s*(.+?)\\s*}}","g");function ne(N){let V=[];if("string"==typeof N){let b;for(;b=$.exec(N);)V.push(b[1]);$.lastIndex=0}return V}function ke(N,V,b){const G=N.toString(),Z=G.replace($,(He,Pt)=>{let ti=V[Pt];return null==ti&&(b.push(function d(N){return new t.vHH(3003,!1)}()),ti=""),ti.toString()});return Z==G?N:Z}function Nt(N){const V=[];let b=N.next();for(;!b.done;)V.push(b.value),b=N.next();return V}const At=/-+([a-z0-9])/g;function Wt(N){return N.replace(At,(...V)=>V[1].toUpperCase())}function Fi(N,V,b){switch(V.type){case 7:return N.visitTrigger(V,b);case 0:return N.visitState(V,b);case 1:return N.visitTransition(V,b);case 2:return N.visitSequence(V,b);case 3:return N.visitGroup(V,b);case 4:return N.visitAnimate(V,b);case 5:return N.visitKeyframes(V,b);case 6:return N.visitStyle(V,b);case 8:return N.visitReference(V,b);case 9:return N.visitAnimateChild(V,b);case 10:return N.visitAnimateRef(V,b);case 11:return N.visitQuery(V,b);case 12:return N.visitStagger(V,b);default:throw function E(N){return new t.vHH(3004,!1)}()}}function li(N,V){return window.getComputedStyle(N)[V]}const ui=new Set(["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"]);class un extends rt{normalizePropertyName(V,b){return Wt(V)}normalizeStyleValue(V,b,G,Z){let He="";const Pt=G.toString().trim();if(ui.has(b)&&0!==G&&"0"!==G)if("number"==typeof G)He="px";else{const ti=G.match(/^[+-]?[\d\.]+([a-z]*)$/);ti&&0==ti[1].length&&Z.push(function M(N,V){return new t.vHH(3005,!1)}())}return Pt+He}}const Mt="*";function Ht(N,V){const b=[];return"string"==typeof N?N.split(/\s*,\s*/).forEach(G=>function Dt(N,V,b){if(":"==N[0]){const fi=function kt(N,V){switch(N){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(b,G)=>parseFloat(G)>parseFloat(b);case":decrement":return(b,G)=>parseFloat(G) *"}}(N,b);if("function"==typeof fi)return void V.push(fi);N=fi}const G=N.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==G||G.length<4)return b.push(function Me(N){return new t.vHH(3015,!1)}()),V;const Z=G[1],He=G[2],Pt=G[3];V.push(bi(Z,Pt));"<"==He[0]&&!(Z==Mt&&Pt==Mt)&&V.push(bi(Pt,Z))}(G,b,V)):b.push(N),b}const Gt=new Set(["true","1"]),oi=new Set(["false","0"]);function bi(N,V){const b=Gt.has(N)||oi.has(N),G=Gt.has(V)||oi.has(V);return(Z,He)=>{let Pt=N==Mt||N==Z,ti=V==Mt||V==He;return!Pt&&b&&"boolean"==typeof Z&&(Pt=Z?Gt.has(N):oi.has(N)),!ti&&G&&"boolean"==typeof He&&(ti=He?Gt.has(V):oi.has(V)),Pt&&ti}}const Oi=new RegExp("s*:selfs*,?","g");function Ui(N,V,b,G){return new qt(N).build(V,b,G)}class qt{constructor(V){this._driver=V}build(V,b,G){const Z=new Ve(b);return this._resetContextStyleTimingState(Z),Fi(this,Le(V),Z)}_resetContextStyleTimingState(V){V.currentQuerySelector="",V.collectedStyles=new Map,V.collectedStyles.set("",new Map),V.currentTime=0}visitTrigger(V,b){let G=b.queryCount=0,Z=b.depCount=0;const He=[],Pt=[];return"@"==V.name.charAt(0)&&b.errors.push(function I(){return new t.vHH(3006,!1)}()),V.definitions.forEach(ti=>{if(this._resetContextStyleTimingState(b),0==ti.type){const fi=ti,wi=fi.name;wi.toString().split(/\s*,\s*/).forEach(dn=>{fi.name=dn,He.push(this.visitState(fi,b))}),fi.name=wi}else if(1==ti.type){const fi=this.visitTransition(ti,b);G+=fi.queryCount,Z+=fi.depCount,Pt.push(fi)}else b.errors.push(function k(){return new t.vHH(3007,!1)}())}),{type:7,name:V.name,states:He,transitions:Pt,queryCount:G,depCount:Z,options:null}}visitState(V,b){const G=this.visitStyle(V.styles,b),Z=V.options&&V.options.params||null;if(G.containsDynamicStyles){const He=new Set,Pt=Z||{};G.styles.forEach(ti=>{ti instanceof Map&&ti.forEach(fi=>{ne(fi).forEach(wi=>{Pt.hasOwnProperty(wi)||He.add(wi)})})}),He.size&&(Nt(He.values()),b.errors.push(function z(N,V){return new t.vHH(3008,!1)}()))}return{type:0,name:V.name,style:G,options:Z?{params:Z}:null}}visitTransition(V,b){b.queryCount=0,b.depCount=0;const G=Fi(this,Le(V.animation),b);return{type:1,matchers:Ht(V.expr,b.errors),animation:G,queryCount:b.queryCount,depCount:b.depCount,options:Yt(V.options)}}visitSequence(V,b){return{type:2,steps:V.steps.map(G=>Fi(this,G,b)),options:Yt(V.options)}}visitGroup(V,b){const G=b.currentTime;let Z=0;const He=V.steps.map(Pt=>{b.currentTime=G;const ti=Fi(this,Pt,b);return Z=Math.max(Z,b.currentTime),ti});return b.currentTime=Z,{type:3,steps:He,options:Yt(V.options)}}visitAnimate(V,b){const G=function tt(N,V){if(N.hasOwnProperty("duration"))return N;if("number"==typeof N)return ri(xt(N,V).duration,0,"");const b=N;if(b.split(/\s+/).some(He=>"{"==He.charAt(0)&&"{"==He.charAt(1))){const He=ri(0,0,"");return He.dynamic=!0,He.strValue=b,He}const Z=xt(b,V);return ri(Z.duration,Z.delay,Z.easing)}(V.timings,b.errors);b.currentAnimateTimings=G;let Z,He=V.styles?V.styles:(0,y.oB)({});if(5==He.type)Z=this.visitKeyframes(He,b);else{let Pt=V.styles,ti=!1;if(!Pt){ti=!0;const wi={};G.easing&&(wi.easing=G.easing),Pt=(0,y.oB)(wi)}b.currentTime+=G.duration+G.delay;const fi=this.visitStyle(Pt,b);fi.isEmptyStep=ti,Z=fi}return b.currentAnimateTimings=null,{type:4,timings:G,style:Z,options:null}}visitStyle(V,b){const G=this._makeStyleAst(V,b);return this._validateStyleAst(G,b),G}_makeStyleAst(V,b){const G=[],Z=Array.isArray(V.styles)?V.styles:[V.styles];for(let ti of Z)"string"==typeof ti?ti===y.l3?G.push(ti):b.errors.push(new t.vHH(3002,!1)):G.push(at(ti));let He=!1,Pt=null;return G.forEach(ti=>{if(ti instanceof Map&&(ti.has("easing")&&(Pt=ti.get("easing"),ti.delete("easing")),!He))for(let fi of ti.values())if(fi.toString().indexOf("{{")>=0){He=!0;break}}),{type:6,styles:G,easing:Pt,offset:V.offset,containsDynamicStyles:He,options:null}}_validateStyleAst(V,b){const G=b.currentAnimateTimings;let Z=b.currentTime,He=b.currentTime;G&&He>0&&(He-=G.duration+G.delay),V.styles.forEach(Pt=>{"string"!=typeof Pt&&Pt.forEach((ti,fi)=>{const wi=b.collectedStyles.get(b.currentQuerySelector),dn=wi.get(fi);let Qi=!0;dn&&(He!=Z&&He>=dn.startTime&&Z<=dn.endTime&&(b.errors.push(function j(N,V,b,G,Z){return new t.vHH(3010,!1)}()),Qi=!1),He=dn.startTime),Qi&&wi.set(fi,{startTime:He,endTime:Z}),b.options&&function be(N,V,b){const G=V.params||{},Z=ne(N);Z.length&&Z.forEach(He=>{G.hasOwnProperty(He)||b.push(function P(N){return new t.vHH(3001,!1)}())})}(ti,b.options,b.errors)})})}visitKeyframes(V,b){const G={type:5,styles:[],options:null};if(!b.currentAnimateTimings)return b.errors.push(function K(){return new t.vHH(3011,!1)}()),G;let He=0;const Pt=[];let ti=!1,fi=!1,wi=0;const dn=V.steps.map(ha=>{const Ya=this._makeStyleAst(ha,b);let to=null!=Ya.offset?Ya.offset:function et(N){if("string"==typeof N)return null;let V=null;if(Array.isArray(N))N.forEach(b=>{if(b instanceof Map&&b.has("offset")){const G=b;V=parseFloat(G.get("offset")),G.delete("offset")}});else if(N instanceof Map&&N.has("offset")){const b=N;V=parseFloat(b.get("offset")),b.delete("offset")}return V}(Ya.styles),ja=0;return null!=to&&(He++,ja=Ya.offset=to),fi=fi||ja<0||ja>1,ti=ti||ja0&&He{const to=zn>0?Ya==On?1:zn*Ya:Pt[Ya],ja=to*Cr;b.currentTime=pn+kn.delay+ja,kn.duration=ja,this._validateStyleAst(ha,b),ha.offset=to,G.styles.push(ha)}),G}visitReference(V,b){return{type:8,animation:Fi(this,Le(V.animation),b),options:Yt(V.options)}}visitAnimateChild(V,b){return b.depCount++,{type:9,options:Yt(V.options)}}visitAnimateRef(V,b){return{type:10,animation:this.visitReference(V.animation,b),options:Yt(V.options)}}visitQuery(V,b){const G=b.currentQuerySelector,Z=V.options||{};b.queryCount++,b.currentQuery=V;const[He,Pt]=function xi(N){const V=!!N.split(/\s*,\s*/).find(b=>":self"==b);return V&&(N=N.replace(Oi,"")),N=N.replace(/@\*/g,Ue).replace(/@\w+/g,b=>Ue+"-"+b.slice(1)).replace(/:animating/g,Ye),[N,V]}(V.selector);b.currentQuerySelector=G.length?G+" "+He:He,de(b.collectedStyles,b.currentQuerySelector,new Map);const ti=Fi(this,Le(V.animation),b);return b.currentQuery=null,b.currentQuerySelector=G,{type:11,selector:He,limit:Z.limit||0,optional:!!Z.optional,includeSelf:Pt,animation:ti,originalSelector:V.selector,options:Yt(V.options)}}visitStagger(V,b){b.currentQuery||b.errors.push(function ue(){return new t.vHH(3013,!1)}());const G="full"===V.timings?{duration:0,delay:0,easing:"full"}:xt(V.timings,b.errors,!0);return{type:12,animation:Fi(this,Le(V.animation),b),timings:G,options:null}}}class Ve{constructor(V){this.errors=V,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function Yt(N){return N?(N=yt(N)).params&&(N.params=function Se(N){return N?yt(N):null}(N.params)):N={},N}function ri(N,V,b){return{duration:N,delay:V,easing:b}}function fn(N,V,b,G,Z,He,Pt=null,ti=!1){return{type:1,element:N,keyframes:V,preStyleProps:b,postStyleProps:G,duration:Z,delay:He,totalTime:Z+He,easing:Pt,subTimeline:ti}}class Sn{constructor(){this._map=new Map}get(V){return this._map.get(V)||[]}append(V,b){let G=this._map.get(V);G||this._map.set(V,G=[]),G.push(...b)}has(V){return this._map.has(V)}clear(){this._map.clear()}}const Jr=new RegExp(":enter","g"),Yr=new RegExp(":leave","g");function $r(N,V,b,G,Z,He=new Map,Pt=new Map,ti,fi,wi=[]){return(new Ni).buildKeyframes(N,V,b,G,Z,He,Pt,ti,fi,wi)}class Ni{buildKeyframes(V,b,G,Z,He,Pt,ti,fi,wi,dn=[]){wi=wi||new Sn;const Qi=new pi(V,b,wi,Z,He,dn,[]);Qi.options=fi;const zn=fi.delay?je(fi.delay):0;Qi.currentTimeline.delayNextStep(zn),Qi.currentTimeline.setStyles([Pt],null,Qi.errors,fi),Fi(this,G,Qi);const On=Qi.timelines.filter(pn=>pn.containsAnimation());if(On.length&&ti.size){let pn;for(let kn=On.length-1;kn>=0;kn--){const Cr=On[kn];if(Cr.element===b){pn=Cr;break}}pn&&!pn.allowOnlyTimelineStyles()&&pn.setStyles([ti],null,Qi.errors,fi)}return On.length?On.map(pn=>pn.buildKeyframes()):[fn(b,[],[],[],0,zn,"",!1)]}visitTrigger(V,b){}visitState(V,b){}visitTransition(V,b){}visitAnimateChild(V,b){const G=b.subInstructions.get(b.element);if(G){const Z=b.createSubContext(V.options),He=b.currentTimeline.currentTime,Pt=this._visitSubInstructions(G,Z,Z.options);He!=Pt&&b.transformIntoNewTimeline(Pt)}b.previousNode=V}visitAnimateRef(V,b){const G=b.createSubContext(V.options);G.transformIntoNewTimeline(),this._applyAnimationRefDelays([V.options,V.animation.options],b,G),this.visitReference(V.animation,G),b.transformIntoNewTimeline(G.currentTimeline.currentTime),b.previousNode=V}_applyAnimationRefDelays(V,b,G){for(const Z of V){const He=Z?.delay;if(He){const Pt="number"==typeof He?He:je(ke(He,Z?.params??{},b.errors));G.delayNextStep(Pt)}}}_visitSubInstructions(V,b,G){let He=b.currentTimeline.currentTime;const Pt=null!=G.duration?je(G.duration):null,ti=null!=G.delay?je(G.delay):null;return 0!==Pt&&V.forEach(fi=>{const wi=b.appendInstructionToTimeline(fi,Pt,ti);He=Math.max(He,wi.duration+wi.delay)}),He}visitReference(V,b){b.updateOptions(V.options,!0),Fi(this,V.animation,b),b.previousNode=V}visitSequence(V,b){const G=b.subContextCount;let Z=b;const He=V.options;if(He&&(He.params||He.delay)&&(Z=b.createSubContext(He),Z.transformIntoNewTimeline(),null!=He.delay)){6==Z.previousNode.type&&(Z.currentTimeline.snapshotCurrentStyles(),Z.previousNode=zt);const Pt=je(He.delay);Z.delayNextStep(Pt)}V.steps.length&&(V.steps.forEach(Pt=>Fi(this,Pt,Z)),Z.currentTimeline.applyStylesToKeyframe(),Z.subContextCount>G&&Z.transformIntoNewTimeline()),b.previousNode=V}visitGroup(V,b){const G=[];let Z=b.currentTimeline.currentTime;const He=V.options&&V.options.delay?je(V.options.delay):0;V.steps.forEach(Pt=>{const ti=b.createSubContext(V.options);He&&ti.delayNextStep(He),Fi(this,Pt,ti),Z=Math.max(Z,ti.currentTimeline.currentTime),G.push(ti.currentTimeline)}),G.forEach(Pt=>b.currentTimeline.mergeTimelineCollectedStyles(Pt)),b.transformIntoNewTimeline(Z),b.previousNode=V}_visitTiming(V,b){if(V.dynamic){const G=V.strValue;return xt(b.params?ke(G,b.params,b.errors):G,b.errors)}return{duration:V.duration,delay:V.delay,easing:V.easing}}visitAnimate(V,b){const G=b.currentAnimateTimings=this._visitTiming(V.timings,b),Z=b.currentTimeline;G.delay&&(b.incrementTime(G.delay),Z.snapshotCurrentStyles());const He=V.style;5==He.type?this.visitKeyframes(He,b):(b.incrementTime(G.duration),this.visitStyle(He,b),Z.applyStylesToKeyframe()),b.currentAnimateTimings=null,b.previousNode=V}visitStyle(V,b){const G=b.currentTimeline,Z=b.currentAnimateTimings;!Z&&G.hasCurrentStyleProperties()&&G.forwardFrame();const He=Z&&Z.easing||V.easing;V.isEmptyStep?G.applyEmptyStep(He):G.setStyles(V.styles,He,b.errors,b.options),b.previousNode=V}visitKeyframes(V,b){const G=b.currentAnimateTimings,Z=b.currentTimeline.duration,He=G.duration,ti=b.createSubContext().currentTimeline;ti.easing=G.easing,V.styles.forEach(fi=>{ti.forwardTime((fi.offset||0)*He),ti.setStyles(fi.styles,fi.easing,b.errors,b.options),ti.applyStylesToKeyframe()}),b.currentTimeline.mergeTimelineCollectedStyles(ti),b.transformIntoNewTimeline(Z+He),b.previousNode=V}visitQuery(V,b){const G=b.currentTimeline.currentTime,Z=V.options||{},He=Z.delay?je(Z.delay):0;He&&(6===b.previousNode.type||0==G&&b.currentTimeline.hasCurrentStyleProperties())&&(b.currentTimeline.snapshotCurrentStyles(),b.previousNode=zt);let Pt=G;const ti=b.invokeQuery(V.selector,V.originalSelector,V.limit,V.includeSelf,!!Z.optional,b.errors);b.currentQueryTotal=ti.length;let fi=null;ti.forEach((wi,dn)=>{b.currentQueryIndex=dn;const Qi=b.createSubContext(V.options,wi);He&&Qi.delayNextStep(He),wi===b.element&&(fi=Qi.currentTimeline),Fi(this,V.animation,Qi),Qi.currentTimeline.applyStylesToKeyframe(),Pt=Math.max(Pt,Qi.currentTimeline.currentTime)}),b.currentQueryIndex=0,b.currentQueryTotal=0,b.transformIntoNewTimeline(Pt),fi&&(b.currentTimeline.mergeTimelineCollectedStyles(fi),b.currentTimeline.snapshotCurrentStyles()),b.previousNode=V}visitStagger(V,b){const G=b.parentContext,Z=b.currentTimeline,He=V.timings,Pt=Math.abs(He.duration),ti=Pt*(b.currentQueryTotal-1);let fi=Pt*b.currentQueryIndex;switch(He.duration<0?"reverse":He.easing){case"reverse":fi=ti-fi;break;case"full":fi=G.currentStaggerTime}const dn=b.currentTimeline;fi&&dn.delayNextStep(fi);const Qi=dn.currentTime;Fi(this,V.animation,b),b.previousNode=V,G.currentStaggerTime=Z.currentTime-Qi+(Z.startTime-G.currentTimeline.startTime)}}const zt={};class pi{constructor(V,b,G,Z,He,Pt,ti,fi){this._driver=V,this.element=b,this.subInstructions=G,this._enterClassName=Z,this._leaveClassName=He,this.errors=Pt,this.timelines=ti,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=zt,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=fi||new _i(this._driver,b,0),ti.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(V,b){if(!V)return;const G=V;let Z=this.options;null!=G.duration&&(Z.duration=je(G.duration)),null!=G.delay&&(Z.delay=je(G.delay));const He=G.params;if(He){let Pt=Z.params;Pt||(Pt=this.options.params={}),Object.keys(He).forEach(ti=>{(!b||!Pt.hasOwnProperty(ti))&&(Pt[ti]=ke(He[ti],Pt,this.errors))})}}_copyOptions(){const V={};if(this.options){const b=this.options.params;if(b){const G=V.params={};Object.keys(b).forEach(Z=>{G[Z]=b[Z]})}}return V}createSubContext(V=null,b,G){const Z=b||this.element,He=new pi(this._driver,Z,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(Z,G||0));return He.previousNode=this.previousNode,He.currentAnimateTimings=this.currentAnimateTimings,He.options=this._copyOptions(),He.updateOptions(V),He.currentQueryIndex=this.currentQueryIndex,He.currentQueryTotal=this.currentQueryTotal,He.parentContext=this,this.subContextCount++,He}transformIntoNewTimeline(V){return this.previousNode=zt,this.currentTimeline=this.currentTimeline.fork(this.element,V),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(V,b,G){const Z={duration:b??V.duration,delay:this.currentTimeline.currentTime+(G??0)+V.delay,easing:""},He=new Ci(this._driver,V.element,V.keyframes,V.preStyleProps,V.postStyleProps,Z,V.stretchStartingKeyframe);return this.timelines.push(He),Z}incrementTime(V){this.currentTimeline.forwardTime(this.currentTimeline.duration+V)}delayNextStep(V){V>0&&this.currentTimeline.delayNextStep(V)}invokeQuery(V,b,G,Z,He,Pt){let ti=[];if(Z&&ti.push(this.element),V.length>0){V=(V=V.replace(Jr,"."+this._enterClassName)).replace(Yr,"."+this._leaveClassName);let wi=this._driver.query(this.element,V,1!=G);0!==G&&(wi=G<0?wi.slice(wi.length+G,wi.length):wi.slice(0,G)),ti.push(...wi)}return!He&&0==ti.length&&Pt.push(function ae(N){return new t.vHH(3014,!1)}()),ti}}class _i{constructor(V,b,G,Z){this._driver=V,this.element=b,this.startTime=G,this._elementTimelineStylesLookup=Z,this.duration=0,this.easing=null,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(b),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(b,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(V){const b=1===this._keyframes.size&&this._pendingStyles.size;this.duration||b?(this.forwardTime(this.currentTime+V),b&&this.snapshotCurrentStyles()):this.startTime+=V}fork(V,b){return this.applyStylesToKeyframe(),new _i(this._driver,V,b||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(V){this.applyStylesToKeyframe(),this.duration=V,this._loadKeyframe()}_updateStyle(V,b){this._localTimelineStyles.set(V,b),this._globalTimelineStyles.set(V,b),this._styleSummary.set(V,{time:this.currentTime,value:b})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(V){V&&this._previousKeyframe.set("easing",V);for(let[b,G]of this._globalTimelineStyles)this._backFill.set(b,G||y.l3),this._currentKeyframe.set(b,y.l3);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(V,b,G,Z){b&&this._previousKeyframe.set("easing",b);const He=Z&&Z.params||{},Pt=function Ji(N,V){const b=new Map;let G;return N.forEach(Z=>{if("*"===Z){G=G||V.keys();for(let He of G)b.set(He,y.l3)}else Ge(Z,b)}),b}(V,this._globalTimelineStyles);for(let[ti,fi]of Pt){const wi=ke(fi,He,G);this._pendingStyles.set(ti,wi),this._localTimelineStyles.has(ti)||this._backFill.set(ti,this._globalTimelineStyles.get(ti)??y.l3),this._updateStyle(ti,wi)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((V,b)=>{this._currentKeyframe.set(b,V)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((V,b)=>{this._currentKeyframe.has(b)||this._currentKeyframe.set(b,V)}))}snapshotCurrentStyles(){for(let[V,b]of this._localTimelineStyles)this._pendingStyles.set(V,b),this._updateStyle(V,b)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const V=[];for(let b in this._currentKeyframe)V.push(b);return V}mergeTimelineCollectedStyles(V){V._styleSummary.forEach((b,G)=>{const Z=this._styleSummary.get(G);(!Z||b.time>Z.time)&&this._updateStyle(G,b.value)})}buildKeyframes(){this.applyStylesToKeyframe();const V=new Set,b=new Set,G=1===this._keyframes.size&&0===this.duration;let Z=[];this._keyframes.forEach((ti,fi)=>{const wi=Ge(ti,new Map,this._backFill);wi.forEach((dn,Qi)=>{dn===y.k1?V.add(Qi):dn===y.l3&&b.add(Qi)}),G||wi.set("offset",fi/this.duration),Z.push(wi)});const He=V.size?Nt(V.values()):[],Pt=b.size?Nt(b.values()):[];if(G){const ti=Z[0],fi=new Map(ti);ti.set("offset",0),fi.set("offset",1),Z=[ti,fi]}return fn(this.element,Z,He,Pt,this.duration,this.startTime,this.easing,!1)}}class Ci extends _i{constructor(V,b,G,Z,He,Pt,ti=!1){super(V,b,Pt.delay),this.keyframes=G,this.preStyleProps=Z,this.postStyleProps=He,this._stretchStartingKeyframe=ti,this.timings={duration:Pt.duration,delay:Pt.delay,easing:Pt.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let V=this.keyframes,{delay:b,duration:G,easing:Z}=this.timings;if(this._stretchStartingKeyframe&&b){const He=[],Pt=G+b,ti=b/Pt,fi=Ge(V[0]);fi.set("offset",0),He.push(fi);const wi=Ge(V[0]);wi.set("offset",Gi(ti)),He.push(wi);const dn=V.length-1;for(let Qi=1;Qi<=dn;Qi++){let zn=Ge(V[Qi]);const On=zn.get("offset");zn.set("offset",Gi((b+On*G)/Pt)),He.push(zn)}G=Pt,b=0,Z="",V=He}return fn(this.element,V,this.preStyleProps,this.postStyleProps,G,b,Z,!0)}}function Gi(N,V=3){const b=Math.pow(10,V-1);return Math.round(N*b)/b}function yn(N,V,b,G,Z,He,Pt,ti,fi,wi,dn,Qi,zn){return{type:0,element:N,triggerName:V,isRemovalTransition:Z,fromState:b,fromStyles:He,toState:G,toStyles:Pt,timelines:ti,queriedElements:fi,preStyleProps:wi,postStyleProps:dn,totalTime:Qi,errors:zn}}const jn={};class Rn{constructor(V,b,G){this._triggerName=V,this.ast=b,this._stateStyles=G}match(V,b,G,Z){return function er(N,V,b,G,Z){return N.some(He=>He(V,b,G,Z))}(this.ast.matchers,V,b,G,Z)}buildStyles(V,b,G){let Z=this._stateStyles.get("*");return void 0!==V&&(Z=this._stateStyles.get(V?.toString())||Z),Z?Z.buildStyles(b,G):new Map}build(V,b,G,Z,He,Pt,ti,fi,wi,dn){const Qi=[],zn=this.ast.options&&this.ast.options.params||jn,pn=this.buildStyles(G,ti&&ti.params||jn,Qi),kn=fi&&fi.params||jn,Cr=this.buildStyles(Z,kn,Qi),ha=new Set,Ya=new Map,to=new Map,ja="void"===Z,jo={params:yr(kn,zn),delay:this.ast.options?.delay},Ns=dn?[]:$r(V,b,this.ast.animation,He,Pt,pn,Cr,jo,wi,Qi);let Po=0;if(Ns.forEach(Ks=>{Po=Math.max(Ks.duration+Ks.delay,Po)}),Qi.length)return yn(b,this._triggerName,G,Z,ja,pn,Cr,[],[],Ya,to,Po,Qi);Ns.forEach(Ks=>{const ms=Ks.element,hl=de(Ya,ms,new Set);Ks.preStyleProps.forEach(dc=>hl.add(dc));const ul=de(to,ms,new Set);Ks.postStyleProps.forEach(dc=>ul.add(dc)),ms!==b&&ha.add(ms)});const lc=Nt(ha.values());return yn(b,this._triggerName,G,Z,ja,pn,Cr,Ns,lc,Ya,to,Po)}}function yr(N,V){const b=yt(V);for(const G in N)N.hasOwnProperty(G)&&null!=N[G]&&(b[G]=N[G]);return b}class aa{constructor(V,b,G){this.styles=V,this.defaultParams=b,this.normalizer=G}buildStyles(V,b){const G=new Map,Z=yt(this.defaultParams);return Object.keys(V).forEach(He=>{const Pt=V[He];null!==Pt&&(Z[He]=Pt)}),this.styles.styles.forEach(He=>{"string"!=typeof He&&He.forEach((Pt,ti)=>{Pt&&(Pt=ke(Pt,Z,b));const fi=this.normalizer.normalizePropertyName(ti,b);Pt=this.normalizer.normalizeStyleValue(ti,fi,Pt,b),G.set(ti,Pt)})}),G}}class oa{constructor(V,b,G){this.name=V,this.ast=b,this._normalizer=G,this.transitionFactories=[],this.states=new Map,b.states.forEach(Z=>{this.states.set(Z.name,new aa(Z.style,Z.options&&Z.options.params||{},G))}),fr(this.states,"true","1"),fr(this.states,"false","0"),b.transitions.forEach(Z=>{this.transitionFactories.push(new Rn(V,Z,this.states))}),this.fallbackTransition=function Fa(N,V,b){return new Rn(N,{type:1,animation:{type:2,steps:[],options:null},matchers:[(Pt,ti)=>!0],options:null,queryCount:0,depCount:0},V)}(V,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(V,b,G,Z){return this.transitionFactories.find(Pt=>Pt.match(V,b,G,Z))||null}matchStyles(V,b,G){return this.fallbackTransition.buildStyles(V,b,G)}}function fr(N,V,b){N.has(V)?N.has(b)||N.set(b,N.get(V)):N.has(b)&&N.set(V,N.get(b))}const Dr=new Sn;class Kn{constructor(V,b,G){this.bodyNode=V,this._driver=b,this._normalizer=G,this._animations=new Map,this._playersById=new Map,this.players=[]}register(V,b){const G=[],He=Ui(this._driver,b,G,[]);if(G.length)throw function f(N){return new t.vHH(3503,!1)}();this._animations.set(V,He)}_buildPlayer(V,b,G){const Z=V.element,He=Ke(this._normalizer,V.keyframes,b,G);return this._driver.animate(Z,He,V.duration,V.delay,V.easing,[],!0)}create(V,b,G={}){const Z=[],He=this._animations.get(V);let Pt;const ti=new Map;if(He?(Pt=$r(this._driver,b,He,St,dt,new Map,new Map,G,Dr,Z),Pt.forEach(dn=>{const Qi=de(ti,dn.element,new Map);dn.postStyleProps.forEach(zn=>Qi.set(zn,null))})):(Z.push(function h(){return new t.vHH(3300,!1)}()),Pt=[]),Z.length)throw function C(N){return new t.vHH(3504,!1)}();ti.forEach((dn,Qi)=>{dn.forEach((zn,On)=>{dn.set(On,this._driver.computeStyle(Qi,On,y.l3))})});const wi=ct(Pt.map(dn=>{const Qi=ti.get(dn.element);return this._buildPlayer(dn,new Map,Qi)}));return this._playersById.set(V,wi),wi.onDestroy(()=>this.destroy(V)),this.players.push(wi),wi}destroy(V){const b=this._getPlayer(V);b.destroy(),this._playersById.delete(V);const G=this.players.indexOf(b);G>=0&&this.players.splice(G,1)}_getPlayer(V){const b=this._playersById.get(V);if(!b)throw function D(N){return new t.vHH(3301,!1)}();return b}listen(V,b,G,Z){const He=fe(b,"","","");return Je(this._getPlayer(V),G,He,Z),()=>{}}command(V,b,G,Z){if("register"==G)return void this.register(V,Z[0]);if("create"==G)return void this.create(V,b,Z[0]||{});const He=this._getPlayer(V);switch(G){case"play":He.play();break;case"pause":He.pause();break;case"reset":He.reset();break;case"restart":He.restart();break;case"finish":He.finish();break;case"init":He.init();break;case"setPosition":He.setPosition(parseFloat(Z[0]));break;case"destroy":this.destroy(V)}}}const pa="ng-animate-queued",ga="ng-animate-disabled",jr=[],Ca={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},kr={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},dr="__ng_removed";class Bn{get params(){return this.options.params}constructor(V,b=""){this.namespaceId=b;const G=V&&V.hasOwnProperty("value");if(this.value=function Oa(N){return N??null}(G?V.value:V),G){const He=yt(V);delete He.value,this.options=He}else this.options={};this.options.params||(this.options.params={})}absorbOptions(V){const b=V.params;if(b){const G=this.options.params;Object.keys(b).forEach(Z=>{null==G[Z]&&(G[Z]=b[Z])})}}}const wa="void",ao=new Bn(wa);class Tr{constructor(V,b,G){this.id=V,this.hostElement=b,this._engine=G,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+V,ca(b,this._hostClassName)}listen(V,b,G,Z){if(!this._triggers.has(b))throw function O(N,V){return new t.vHH(3302,!1)}();if(null==G||0==G.length)throw function v(N){return new t.vHH(3303,!1)}();if(!function oo(N){return"start"==N||"done"==N}(G))throw function r(N,V){return new t.vHH(3400,!1)}();const He=de(this._elementListeners,V,[]),Pt={name:b,phase:G,callback:Z};He.push(Pt);const ti=de(this._engine.statesByElement,V,new Map);return ti.has(b)||(ca(V,te),ca(V,te+"-"+b),ti.set(b,ao)),()=>{this._engine.afterFlush(()=>{const fi=He.indexOf(Pt);fi>=0&&He.splice(fi,1),this._triggers.has(b)||ti.delete(b)})}}register(V,b){return!this._triggers.has(V)&&(this._triggers.set(V,b),!0)}_getTrigger(V){const b=this._triggers.get(V);if(!b)throw function g(N){return new t.vHH(3401,!1)}();return b}trigger(V,b,G,Z=!0){const He=this._getTrigger(b),Pt=new ea(this.id,b,V);let ti=this._engine.statesByElement.get(V);ti||(ca(V,te),ca(V,te+"-"+b),this._engine.statesByElement.set(V,ti=new Map));let fi=ti.get(b);const wi=new Bn(G,this.id);if(!(G&&G.hasOwnProperty("value"))&&fi&&wi.absorbOptions(fi.options),ti.set(b,wi),fi||(fi=ao),wi.value!==wa&&fi.value===wi.value){if(!function _s(N,V){const b=Object.keys(N),G=Object.keys(V);if(b.length!=G.length)return!1;for(let Z=0;Z{gt(V,Cr),Xe(V,ha)})}return}const zn=de(this._engine.playersByElement,V,[]);zn.forEach(kn=>{kn.namespaceId==this.id&&kn.triggerName==b&&kn.queued&&kn.destroy()});let On=He.matchTransition(fi.value,wi.value,V,wi.params),pn=!1;if(!On){if(!Z)return;On=He.fallbackTransition,pn=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:V,triggerName:b,transition:On,fromState:fi,toState:wi,player:Pt,isFallbackTransition:pn}),pn||(ca(V,pa),Pt.onStart(()=>{_a(V,pa)})),Pt.onDone(()=>{let kn=this.players.indexOf(Pt);kn>=0&&this.players.splice(kn,1);const Cr=this._engine.playersByElement.get(V);if(Cr){let ha=Cr.indexOf(Pt);ha>=0&&Cr.splice(ha,1)}}),this.players.push(Pt),zn.push(Pt),Pt}deregister(V){this._triggers.delete(V),this._engine.statesByElement.forEach(b=>b.delete(V)),this._elementListeners.forEach((b,G)=>{this._elementListeners.set(G,b.filter(Z=>Z.name!=V))})}clearElementCache(V){this._engine.statesByElement.delete(V),this._elementListeners.delete(V);const b=this._engine.playersByElement.get(V);b&&(b.forEach(G=>G.destroy()),this._engine.playersByElement.delete(V))}_signalRemovalForInnerTriggers(V,b){const G=this._engine.driver.query(V,Ue,!0);G.forEach(Z=>{if(Z[dr])return;const He=this._engine.fetchNamespacesByElement(Z);He.size?He.forEach(Pt=>Pt.triggerLeaveAnimation(Z,b,!1,!0)):this.clearElementCache(Z)}),this._engine.afterFlushAnimationsDone(()=>G.forEach(Z=>this.clearElementCache(Z)))}triggerLeaveAnimation(V,b,G,Z){const He=this._engine.statesByElement.get(V),Pt=new Map;if(He){const ti=[];if(He.forEach((fi,wi)=>{if(Pt.set(wi,fi.value),this._triggers.has(wi)){const dn=this.trigger(V,wi,wa,Z);dn&&ti.push(dn)}}),ti.length)return this._engine.markElementAsRemoved(this.id,V,!0,b,Pt),G&&ct(ti).onDone(()=>this._engine.processLeaveNode(V)),!0}return!1}prepareLeaveAnimationListeners(V){const b=this._elementListeners.get(V),G=this._engine.statesByElement.get(V);if(b&&G){const Z=new Set;b.forEach(He=>{const Pt=He.name;if(Z.has(Pt))return;Z.add(Pt);const fi=this._triggers.get(Pt).fallbackTransition,wi=G.get(Pt)||ao,dn=new Bn(wa),Qi=new ea(this.id,Pt,V);this._engine.totalQueuedPlayers++,this._queue.push({element:V,triggerName:Pt,transition:fi,fromState:wi,toState:dn,player:Qi,isFallbackTransition:!0})})}}removeNode(V,b){const G=this._engine;if(V.childElementCount&&this._signalRemovalForInnerTriggers(V,b),this.triggerLeaveAnimation(V,b,!0))return;let Z=!1;if(G.totalAnimations){const He=G.players.length?G.playersByQueriedElement.get(V):[];if(He&&He.length)Z=!0;else{let Pt=V;for(;Pt=Pt.parentNode;)if(G.statesByElement.get(Pt)){Z=!0;break}}}if(this.prepareLeaveAnimationListeners(V),Z)G.markElementAsRemoved(this.id,V,!1,b);else{const He=V[dr];(!He||He===Ca)&&(G.afterFlush(()=>this.clearElementCache(V)),G.destroyInnerAnimations(V),G._onRemovalComplete(V,b))}}insertNode(V,b){ca(V,this._hostClassName)}drainQueuedTransitions(V){const b=[];return this._queue.forEach(G=>{const Z=G.player;if(Z.destroyed)return;const He=G.element,Pt=this._elementListeners.get(He);Pt&&Pt.forEach(ti=>{if(ti.name==G.triggerName){const fi=fe(He,G.triggerName,G.fromState.value,G.toState.value);fi._data=V,Je(G.player,ti.phase,fi,ti.callback)}}),Z.markedForDestroy?this._engine.afterFlush(()=>{Z.destroy()}):b.push(G)}),this._queue=[],b.sort((G,Z)=>{const He=G.transition.ast.depCount,Pt=Z.transition.ast.depCount;return 0==He||0==Pt?He-Pt:this._engine.driver.containsElement(G.element,Z.element)?1:-1})}destroy(V){this.players.forEach(b=>b.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,V)}}class qo{_onRemovalComplete(V,b){this.onRemovalComplete(V,b)}constructor(V,b,G){this.bodyNode=V,this.driver=b,this._normalizer=G,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=(Z,He)=>{}}get queuedPlayers(){const V=[];return this._namespaceList.forEach(b=>{b.players.forEach(G=>{G.queued&&V.push(G)})}),V}createNamespace(V,b){const G=new Tr(V,b,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,b)?this._balanceNamespaceList(G,b):(this.newHostElements.set(b,G),this.collectEnterElement(b)),this._namespaceLookup[V]=G}_balanceNamespaceList(V,b){const G=this._namespaceList,Z=this.namespacesByHostElement;if(G.length-1>=0){let Pt=!1,ti=this.driver.getParentElement(b);for(;ti;){const fi=Z.get(ti);if(fi){const wi=G.indexOf(fi);G.splice(wi+1,0,V),Pt=!0;break}ti=this.driver.getParentElement(ti)}Pt||G.unshift(V)}else G.push(V);return Z.set(b,V),V}register(V,b){let G=this._namespaceLookup[V];return G||(G=this.createNamespace(V,b)),G}registerTrigger(V,b,G){let Z=this._namespaceLookup[V];Z&&Z.register(b,G)&&this.totalAnimations++}destroy(V,b){V&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const G=this._fetchNamespace(V);this.namespacesByHostElement.delete(G.hostElement);const Z=this._namespaceList.indexOf(G);Z>=0&&this._namespaceList.splice(Z,1),G.destroy(b),delete this._namespaceLookup[V]}))}_fetchNamespace(V){return this._namespaceLookup[V]}fetchNamespacesByElement(V){const b=new Set,G=this.statesByElement.get(V);if(G)for(let Z of G.values())if(Z.namespaceId){const He=this._fetchNamespace(Z.namespaceId);He&&b.add(He)}return b}trigger(V,b,G,Z){if(_o(b)){const He=this._fetchNamespace(V);if(He)return He.trigger(b,G,Z),!0}return!1}insertNode(V,b,G,Z){if(!_o(b))return;const He=b[dr];if(He&&He.setForRemoval){He.setForRemoval=!1,He.setForMove=!0;const Pt=this.collectedLeaveElements.indexOf(b);Pt>=0&&this.collectedLeaveElements.splice(Pt,1)}if(V){const Pt=this._fetchNamespace(V);Pt&&Pt.insertNode(b,G)}Z&&this.collectEnterElement(b)}collectEnterElement(V){this.collectedEnterElements.push(V)}markElementAsDisabled(V,b){b?this.disabledNodes.has(V)||(this.disabledNodes.add(V),ca(V,ga)):this.disabledNodes.has(V)&&(this.disabledNodes.delete(V),_a(V,ga))}removeNode(V,b,G){if(_o(b)){const Z=V?this._fetchNamespace(V):null;Z?Z.removeNode(b,G):this.markElementAsRemoved(V,b,!1,G);const He=this.namespacesByHostElement.get(b);He&&He.id!==V&&He.removeNode(b,G)}else this._onRemovalComplete(b,G)}markElementAsRemoved(V,b,G,Z,He){this.collectedLeaveElements.push(b),b[dr]={namespaceId:V,setForRemoval:Z,hasAnimation:G,removedBeforeQueried:!1,previousTriggersValues:He}}listen(V,b,G,Z,He){return _o(b)?this._fetchNamespace(V).listen(b,G,Z,He):()=>{}}_buildInstruction(V,b,G,Z,He){return V.transition.build(this.driver,V.element,V.fromState.value,V.toState.value,G,Z,V.fromState.options,V.toState.options,b,He)}destroyInnerAnimations(V){let b=this.driver.query(V,Ue,!0);b.forEach(G=>this.destroyActiveAnimationsForElement(G)),0!=this.playersByQueriedElement.size&&(b=this.driver.query(V,Ye,!0),b.forEach(G=>this.finishActiveQueriedAnimationOnElement(G)))}destroyActiveAnimationsForElement(V){const b=this.playersByElement.get(V);b&&b.forEach(G=>{G.queued?G.markedForDestroy=!0:G.destroy()})}finishActiveQueriedAnimationOnElement(V){const b=this.playersByQueriedElement.get(V);b&&b.forEach(G=>G.finish())}whenRenderingDone(){return new Promise(V=>{if(this.players.length)return ct(this.players).onDone(()=>V());V()})}processLeaveNode(V){const b=V[dr];if(b&&b.setForRemoval){if(V[dr]=Ca,b.namespaceId){this.destroyInnerAnimations(V);const G=this._fetchNamespace(b.namespaceId);G&&G.clearElementCache(V)}this._onRemovalComplete(V,b.setForRemoval)}V.classList?.contains(ga)&&this.markElementAsDisabled(V,!1),this.driver.query(V,".ng-animate-disabled",!0).forEach(G=>{this.markElementAsDisabled(G,!1)})}flush(V=-1){let b=[];if(this.newHostElements.size&&(this.newHostElements.forEach((G,Z)=>this._balanceNamespaceList(G,Z)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let G=0;GG()),this._flushFns=[],this._whenQuietFns.length){const G=this._whenQuietFns;this._whenQuietFns=[],b.length?ct(b).onDone(()=>{G.forEach(Z=>Z())}):G.forEach(Z=>Z())}}reportError(V){throw function H(N){return new t.vHH(3402,!1)}()}_flushAnimations(V,b){const G=new Sn,Z=[],He=new Map,Pt=[],ti=new Map,fi=new Map,wi=new Map,dn=new Set;this.disabledNodes.forEach(vn=>{dn.add(vn);const Tn=this.driver.query(vn,".ng-animate-queued",!0);for(let Nn=0;Nn{const Nn=St+kn++;pn.set(Tn,Nn),vn.forEach(_r=>ca(_r,Nn))});const Cr=[],ha=new Set,Ya=new Set;for(let vn=0;vnha.add(_r)):Ya.add(Tn))}const to=new Map,ja=Kr(zn,Array.from(ha));ja.forEach((vn,Tn)=>{const Nn=dt+kn++;to.set(Tn,Nn),vn.forEach(_r=>ca(_r,Nn))}),V.push(()=>{On.forEach((vn,Tn)=>{const Nn=pn.get(Tn);vn.forEach(_r=>_a(_r,Nn))}),ja.forEach((vn,Tn)=>{const Nn=to.get(Tn);vn.forEach(_r=>_a(_r,Nn))}),Cr.forEach(vn=>{this.processLeaveNode(vn)})});const jo=[],Ns=[];for(let vn=this._namespaceList.length-1;vn>=0;vn--)this._namespaceList[vn].drainQueuedTransitions(b).forEach(Nn=>{const _r=Nn.player,Ka=Nn.element;if(jo.push(_r),this.collectedEnterElements.length){const no=Ka[dr];if(no&&no.setForMove){if(no.previousTriggersValues&&no.previousTriggersValues.has(Nn.triggerName)){const kc=no.previousTriggersValues.get(Nn.triggerName),is=this.statesByElement.get(Nn.element);if(is&&is.has(Nn.triggerName)){const fl=is.get(Nn.triggerName);fl.value=kc,is.set(Nn.triggerName,fl)}}return void _r.destroy()}}const io=!Qi||!this.driver.containsElement(Qi,Ka),Qa=to.get(Ka),uc=pn.get(Ka),ua=this._buildInstruction(Nn,G,uc,Qa,io);if(ua.errors&&ua.errors.length)return void Ns.push(ua);if(io)return _r.onStart(()=>gt(Ka,ua.fromStyles)),_r.onDestroy(()=>Xe(Ka,ua.toStyles)),void Z.push(_r);if(Nn.isFallbackTransition)return _r.onStart(()=>gt(Ka,ua.fromStyles)),_r.onDestroy(()=>Xe(Ka,ua.toStyles)),void Z.push(_r);const P0=[];ua.timelines.forEach(no=>{no.stretchStartingKeyframe=!0,this.disabledNodes.has(no.element)||P0.push(no)}),ua.timelines=P0,G.append(Ka,ua.timelines),Pt.push({instruction:ua,player:_r,element:Ka}),ua.queriedElements.forEach(no=>de(ti,no,[]).push(_r)),ua.preStyleProps.forEach((no,kc)=>{if(no.size){let is=fi.get(kc);is||fi.set(kc,is=new Set),no.forEach((fl,Kd)=>is.add(Kd))}}),ua.postStyleProps.forEach((no,kc)=>{let is=wi.get(kc);is||wi.set(kc,is=new Set),no.forEach((fl,Kd)=>is.add(Kd))})});if(Ns.length){const vn=[];Ns.forEach(Tn=>{vn.push(function ee(N,V){return new t.vHH(3505,!1)}())}),jo.forEach(Tn=>Tn.destroy()),this.reportError(vn)}const Po=new Map,lc=new Map;Pt.forEach(vn=>{const Tn=vn.element;G.has(Tn)&&(lc.set(Tn,Tn),this._beforeAnimationBuild(vn.player.namespaceId,vn.instruction,Po))}),Z.forEach(vn=>{const Tn=vn.element;this._getPreviousPlayers(Tn,!1,vn.namespaceId,vn.triggerName,null).forEach(_r=>{de(Po,Tn,[]).push(_r),_r.destroy()})});const Ks=Cr.filter(vn=>so(vn,fi,wi)),ms=new Map;vo(ms,this.driver,Ya,wi,y.l3).forEach(vn=>{so(vn,fi,wi)&&Ks.push(vn)});const ul=new Map;On.forEach((vn,Tn)=>{vo(ul,this.driver,new Set(vn),fi,y.k1)}),Ks.forEach(vn=>{const Tn=ms.get(vn),Nn=ul.get(vn);ms.set(vn,new Map([...Tn?.entries()??[],...Nn?.entries()??[]]))});const dc=[],Q1=[],hc={};Pt.forEach(vn=>{const{element:Tn,player:Nn,instruction:_r}=vn;if(G.has(Tn)){if(dn.has(Tn))return Nn.onDestroy(()=>Xe(Tn,_r.toStyles)),Nn.disabled=!0,Nn.overrideTotalTime(_r.totalTime),void Z.push(Nn);let Ka=hc;if(lc.size>1){let Qa=Tn;const uc=[];for(;Qa=Qa.parentNode;){const ua=lc.get(Qa);if(ua){Ka=ua;break}uc.push(Qa)}uc.forEach(ua=>lc.set(ua,Ka))}const io=this._buildAnimation(Nn.namespaceId,_r,Po,He,ul,ms);if(Nn.setRealPlayer(io),Ka===hc)dc.push(Nn);else{const Qa=this.playersByElement.get(Ka);Qa&&Qa.length&&(Nn.parentPlayer=ct(Qa)),Z.push(Nn)}}else gt(Tn,_r.fromStyles),Nn.onDestroy(()=>Xe(Tn,_r.toStyles)),Q1.push(Nn),dn.has(Tn)&&Z.push(Nn)}),Q1.forEach(vn=>{const Tn=He.get(vn.element);if(Tn&&Tn.length){const Nn=ct(Tn);vn.setRealPlayer(Nn)}}),Z.forEach(vn=>{vn.parentPlayer?vn.syncPlayerEvents(vn.parentPlayer):vn.destroy()});for(let vn=0;vn!io.destroyed);Ka.length?Fo(this,Tn,Ka):this.processLeaveNode(Tn)}return Cr.length=0,dc.forEach(vn=>{this.players.push(vn),vn.onDone(()=>{vn.destroy();const Tn=this.players.indexOf(vn);this.players.splice(Tn,1)}),vn.play()}),dc}afterFlush(V){this._flushFns.push(V)}afterFlushAnimationsDone(V){this._whenQuietFns.push(V)}_getPreviousPlayers(V,b,G,Z,He){let Pt=[];if(b){const ti=this.playersByQueriedElement.get(V);ti&&(Pt=ti)}else{const ti=this.playersByElement.get(V);if(ti){const fi=!He||He==wa;ti.forEach(wi=>{wi.queued||!fi&&wi.triggerName!=Z||Pt.push(wi)})}}return(G||Z)&&(Pt=Pt.filter(ti=>!(G&&G!=ti.namespaceId||Z&&Z!=ti.triggerName))),Pt}_beforeAnimationBuild(V,b,G){const He=b.element,Pt=b.isRemovalTransition?void 0:V,ti=b.isRemovalTransition?void 0:b.triggerName;for(const fi of b.timelines){const wi=fi.element,dn=wi!==He,Qi=de(G,wi,[]);this._getPreviousPlayers(wi,dn,Pt,ti,b.toState).forEach(On=>{const pn=On.getRealPlayer();pn.beforeDestroy&&pn.beforeDestroy(),On.destroy(),Qi.push(On)})}gt(He,b.fromStyles)}_buildAnimation(V,b,G,Z,He,Pt){const ti=b.triggerName,fi=b.element,wi=[],dn=new Set,Qi=new Set,zn=b.timelines.map(pn=>{const kn=pn.element;dn.add(kn);const Cr=kn[dr];if(Cr&&Cr.removedBeforeQueried)return new y.ZN(pn.duration,pn.delay);const ha=kn!==fi,Ya=function Va(N){const V=[];return Qr(N,V),V}((G.get(kn)||jr).map(Po=>Po.getRealPlayer())).filter(Po=>!!Po.element&&Po.element===kn),to=He.get(kn),ja=Pt.get(kn),jo=Ke(this._normalizer,pn.keyframes,to,ja),Ns=this._buildPlayer(pn,jo,Ya);if(pn.subTimeline&&Z&&Qi.add(kn),ha){const Po=new ea(V,ti,kn);Po.setRealPlayer(Ns),wi.push(Po)}return Ns});wi.forEach(pn=>{de(this.playersByQueriedElement,pn.element,[]).push(pn),pn.onDone(()=>function Ia(N,V,b){let G=N.get(V);if(G){if(G.length){const Z=G.indexOf(b);G.splice(Z,1)}0==G.length&&N.delete(V)}return G}(this.playersByQueriedElement,pn.element,pn))}),dn.forEach(pn=>ca(pn,Bt));const On=ct(zn);return On.onDestroy(()=>{dn.forEach(pn=>_a(pn,Bt)),Xe(fi,b.toStyles)}),Qi.forEach(pn=>{de(Z,pn,[]).push(On)}),On}_buildPlayer(V,b,G){return b.length>0?this.driver.animate(V.element,b,V.duration,V.delay,V.easing,G):new y.ZN(V.duration,V.delay)}}class ea{constructor(V,b,G){this.namespaceId=V,this.triggerName=b,this.element=G,this._player=new y.ZN,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.parentPlayer=null,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(V){this._containsRealPlayer||(this._player=V,this._queuedCallbacks.forEach((b,G)=>{b.forEach(Z=>Je(V,G,void 0,Z))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(V.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(V){this.totalTime=V}syncPlayerEvents(V){const b=this._player;b.triggerCallback&&V.onStart(()=>b.triggerCallback("start")),V.onDone(()=>this.finish()),V.onDestroy(()=>this.destroy())}_queueEvent(V,b){de(this._queuedCallbacks,V,[]).push(b)}onDone(V){this.queued&&this._queueEvent("done",V),this._player.onDone(V)}onStart(V){this.queued&&this._queueEvent("start",V),this._player.onStart(V)}onDestroy(V){this.queued&&this._queueEvent("destroy",V),this._player.onDestroy(V)}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(V){this.queued||this._player.setPosition(V)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(V){const b=this._player;b.triggerCallback&&b.triggerCallback(V)}}function _o(N){return N&&1===N.nodeType}function Eo(N,V){const b=N.style.display;return N.style.display=V??"none",b}function vo(N,V,b,G,Z){const He=[];b.forEach(fi=>He.push(Eo(fi)));const Pt=[];G.forEach((fi,wi)=>{const dn=new Map;fi.forEach(Qi=>{const zn=V.computeStyle(wi,Qi,Z);dn.set(Qi,zn),(!zn||0==zn.length)&&(wi[dr]=kr,Pt.push(wi))}),N.set(wi,dn)});let ti=0;return b.forEach(fi=>Eo(fi,He[ti++])),Pt}function Kr(N,V){const b=new Map;if(N.forEach(ti=>b.set(ti,[])),0==V.length)return b;const Z=new Set(V),He=new Map;function Pt(ti){if(!ti)return 1;let fi=He.get(ti);if(fi)return fi;const wi=ti.parentNode;return fi=b.has(wi)?wi:Z.has(wi)?1:Pt(wi),He.set(ti,fi),fi}return V.forEach(ti=>{const fi=Pt(ti);1!==fi&&b.get(fi).push(ti)}),b}function ca(N,V){N.classList?.add(V)}function _a(N,V){N.classList?.remove(V)}function Fo(N,V,b){ct(b).onDone(()=>N.processLeaveNode(V))}function Qr(N,V){for(let b=0;bZ.add(He)):V.set(N,G),b.delete(N),!0}class To{constructor(V,b,G){this._driver=b,this._normalizer=G,this._triggerCache={},this.onRemovalComplete=(Z,He)=>{},this._transitionEngine=new qo(V.body,b,G),this._timelineEngine=new Kn(V.body,b,G),this._transitionEngine.onRemovalComplete=(Z,He)=>this.onRemovalComplete(Z,He)}registerTrigger(V,b,G,Z,He){const Pt=V+"-"+Z;let ti=this._triggerCache[Pt];if(!ti){const fi=[],dn=Ui(this._driver,He,fi,[]);if(fi.length)throw function n(N,V){return new t.vHH(3404,!1)}();ti=function ma(N,V,b){return new oa(N,V,b)}(Z,dn,this._normalizer),this._triggerCache[Pt]=ti}this._transitionEngine.registerTrigger(b,Z,ti)}register(V,b){this._transitionEngine.register(V,b)}destroy(V,b){this._transitionEngine.destroy(V,b)}onInsert(V,b,G,Z){this._transitionEngine.insertNode(V,b,G,Z)}onRemove(V,b,G){this._transitionEngine.removeNode(V,b,G)}disableAnimations(V,b){this._transitionEngine.markElementAsDisabled(V,b)}process(V,b,G,Z){if("@"==G.charAt(0)){const[He,Pt]=xe(G);this._timelineEngine.command(He,b,Pt,Z)}else this._transitionEngine.trigger(V,b,G,Z)}listen(V,b,G,Z,He){if("@"==G.charAt(0)){const[Pt,ti]=xe(G);return this._timelineEngine.listen(Pt,b,ti,He)}return this._transitionEngine.listen(V,b,G,Z,He)}flush(V=-1){this._transitionEngine.flush(V)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(V){this._transitionEngine.afterFlushAnimationsDone(V)}}let co=(()=>{class N{static#e=this.initialStylesByElement=new WeakMap;constructor(b,G,Z){this._element=b,this._startStyles=G,this._endStyles=Z,this._state=0;let He=N.initialStylesByElement.get(b);He||N.initialStylesByElement.set(b,He=new Map),this._initialStyles=He}start(){this._state<1&&(this._startStyles&&Xe(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Xe(this._element,this._initialStyles),this._endStyles&&(Xe(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(N.initialStylesByElement.delete(this._element),this._startStyles&&(gt(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(gt(this._element,this._endStyles),this._endStyles=null),Xe(this._element,this._initialStyles),this._state=3)}}return N})();function Gr(N){let V=null;return N.forEach((b,G)=>{(function zo(N){return"display"===N||"position"===N})(G)&&(V=V||new Map,V.set(G,b))}),V}class bo{constructor(V,b,G,Z){this.element=V,this.keyframes=b,this.options=G,this._specialStyles=Z,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=G.duration,this._delay=G.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(V=>V()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const V=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,V,this.options),this._finalKeyframe=V.length?V[V.length-1]:new Map;const b=()=>this._onFinish();this.domPlayer.addEventListener("finish",b),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",b)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(V){const b=[];return V.forEach(G=>{b.push(Object.fromEntries(G))}),b}_triggerWebAnimation(V,b,G){return V.animate(this._convertKeyframesToObject(b),G)}onStart(V){this._originalOnStartFns.push(V),this._onStartFns.push(V)}onDone(V){this._originalOnDoneFns.push(V),this._onDoneFns.push(V)}onDestroy(V){this._onDestroyFns.push(V)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(V=>V()),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,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_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(V=>V()),this._onDestroyFns=[])}setPosition(V){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=V*this.time}getPosition(){return+(this.domPlayer.currentTime??0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const V=new Map;this.hasStarted()&&this._finalKeyframe.forEach((G,Z)=>{"offset"!==Z&&V.set(Z,this._finished?G:li(this.element,Z))}),this.currentSnapshot=V}triggerCallback(V){const b="start"===V?this._onStartFns:this._onDoneFns;b.forEach(G=>G()),b.length=0}}class Ao{validateStyleProperty(V){return!0}validateAnimatableStyleProperty(V){return!0}matchesElement(V,b){return!1}containsElement(V,b){return Ct(V,b)}getParentElement(V){return pe(V)}query(V,b,G){return ut(V,b,G)}computeStyle(V,b,G){return window.getComputedStyle(V)[b]}animate(V,b,G,Z,He,Pt=[]){const fi={duration:G,delay:Z,fill:0==Z?"both":"forwards"};He&&(fi.easing=He);const wi=new Map,dn=Pt.filter(On=>On instanceof bo);(function ei(N,V){return 0===N||0===V})(G,Z)&&dn.forEach(On=>{On.currentSnapshot.forEach((pn,kn)=>wi.set(kn,pn))});let Qi=function Ee(N){return N.length?N[0]instanceof Map?N:N.map(V=>at(V)):[]}(b).map(On=>Ge(On));Qi=function $t(N,V,b){if(b.size&&V.length){let G=V[0],Z=[];if(b.forEach((He,Pt)=>{G.has(Pt)||Z.push(Pt),G.set(Pt,He)}),Z.length)for(let He=1;HePt.set(ti,li(N,ti)))}}return V}(V,Qi,wi);const zn=function Ja(N,V){let b=null,G=null;return Array.isArray(V)&&V.length?(b=Gr(V[0]),V.length>1&&(G=Gr(V[V.length-1]))):V instanceof Map&&(b=Gr(V)),b||G?new co(N,b,G):null}(V,Qi);return new bo(V,Qi,fi,zn)}}const ii="@.disabled";class Ti{constructor(V,b,G,Z){this.namespaceId=V,this.delegate=b,this.engine=G,this._onDestroy=Z,this.\u0275type=0}get data(){return this.delegate.data}destroyNode(V){this.delegate.destroyNode?.(V)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(V,b){return this.delegate.createElement(V,b)}createComment(V){return this.delegate.createComment(V)}createText(V){return this.delegate.createText(V)}appendChild(V,b){this.delegate.appendChild(V,b),this.engine.onInsert(this.namespaceId,b,V,!1)}insertBefore(V,b,G,Z=!0){this.delegate.insertBefore(V,b,G),this.engine.onInsert(this.namespaceId,b,V,Z)}removeChild(V,b,G){this.engine.onRemove(this.namespaceId,b,this.delegate)}selectRootElement(V,b){return this.delegate.selectRootElement(V,b)}parentNode(V){return this.delegate.parentNode(V)}nextSibling(V){return this.delegate.nextSibling(V)}setAttribute(V,b,G,Z){this.delegate.setAttribute(V,b,G,Z)}removeAttribute(V,b,G){this.delegate.removeAttribute(V,b,G)}addClass(V,b){this.delegate.addClass(V,b)}removeClass(V,b){this.delegate.removeClass(V,b)}setStyle(V,b,G,Z){this.delegate.setStyle(V,b,G,Z)}removeStyle(V,b,G){this.delegate.removeStyle(V,b,G)}setProperty(V,b,G){"@"==b.charAt(0)&&b==ii?this.disableAnimations(V,!!G):this.delegate.setProperty(V,b,G)}setValue(V,b){this.delegate.setValue(V,b)}listen(V,b,G){return this.delegate.listen(V,b,G)}disableAnimations(V,b){this.engine.disableAnimations(V,b)}}class Zi extends Ti{constructor(V,b,G,Z,He){super(b,G,Z,He),this.factory=V,this.namespaceId=b}setProperty(V,b,G){"@"==b.charAt(0)?"."==b.charAt(1)&&b==ii?this.disableAnimations(V,G=void 0===G||!!G):this.engine.process(this.namespaceId,V,b.slice(1),G):this.delegate.setProperty(V,b,G)}listen(V,b,G){if("@"==b.charAt(0)){const Z=function nr(N){switch(N){case"body":return document.body;case"document":return document;case"window":return window;default:return N}}(V);let He=b.slice(1),Pt="";return"@"!=He.charAt(0)&&([He,Pt]=function ar(N){const V=N.indexOf(".");return[N.substring(0,V),N.slice(V+1)]}(He)),this.engine.listen(this.namespaceId,Z,He,Pt,ti=>{this.factory.scheduleListenerCallback(ti._data||-1,G,ti)})}return this.delegate.listen(V,b,G)}}class Zr{constructor(V,b,G){this.delegate=V,this.engine=b,this._zone=G,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,b.onRemovalComplete=(Z,He)=>{const Pt=He?.parentNode(Z);Pt&&He.removeChild(Pt,Z)}}createRenderer(V,b){const Z=this.delegate.createRenderer(V,b);if(!V||!b?.data?.animation){const wi=this._rendererCache;let dn=wi.get(Z);return dn||(dn=new Ti("",Z,this.engine,()=>wi.delete(Z)),wi.set(Z,dn)),dn}const He=b.id,Pt=b.id+"-"+this._currentId;this._currentId++,this.engine.register(Pt,V);const ti=wi=>{Array.isArray(wi)?wi.forEach(ti):this.engine.registerTrigger(He,Pt,V,wi.name,wi)};return b.data.animation.forEach(ti),new Zi(this,Pt,Z,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(V,b,G){if(V>=0&&Vb(G));const Z=this._animationCallbacksBuffer;0==Z.length&&queueMicrotask(()=>{this._zone.run(()=>{Z.forEach(He=>{const[Pt,ti]=He;Pt(ti)}),this._animationCallbacksBuffer=[]})}),Z.push([b,G])}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()}}var sn=p(6814);const ze=[{provide:rt,useFactory:function ht(){return new un}},{provide:To,useClass:(()=>{class N extends To{constructor(b,G,Z,He){super(b,G,Z)}ngOnDestroy(){this.flush()}static#e=this.\u0275fac=function(G){return new(G||N)(t.LFG(sn.K0),t.LFG(Be),t.LFG(rt),t.LFG(t.z2F))};static#t=this.\u0275prov=t.Yz7({token:N,factory:N.\u0275fac})}return N})()},{provide:t.FYo,useFactory:function bt(N,V,b){return new Zr(N,V,b)},deps:[e.se,To,t.R0b]}],vt=[{provide:Be,useFactory:()=>new Ao},{provide:t.QbO,useValue:"BrowserAnimations"},...ze],Jt=[{provide:Be,useClass:Ae},{provide:t.QbO,useValue:"NoopAnimations"},...ze];let zi=(()=>{class N{static withConfig(b){return{ngModule:N,providers:b.disableAnimations?Jt:vt}}static#e=this.\u0275fac=function(G){return new(G||N)};static#t=this.\u0275mod=t.oAB({type:N});static#i=this.\u0275inj=t.cJS({providers:vt,imports:[e.b2]})}return N})();var yo=p(9862),Hn=p(1088),Vi=p(4221),lo=p(5154),An=p(7632),Yi=p(8645),Ms=p(3019),xo=p(2438),gr=p(9666),Do=p(6321),Ua=p(9080);function Sa(N=0,V=Do.z){return N<0&&(N=0),(0,Ua.H)(N,N,V)}var va=p(2096),Ss=p(7394),ho=p(9360),Vo=p(8251),Co=p(9039),En=p(9940),Xo=p(7103),cr=p(2181),Ea=p(9397),os=p(4664),qi=p(9773),Es=p(4716),la=p(3997),Ir=p(7398);class Ts{}function Bo(N){return(0,t.MR2)([{provide:Ts,useValue:N}])}let Vs=(()=>{class N{constructor(b,G){this._ngZone=G,this.timerStart$=new Yi.x,this.idleDetected$=new Yi.x,this.timeout$=new Yi.x,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,b&&this.setConfig(b)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,Ms.T)((0,xo.R)(window,"mousemove"),(0,xo.R)(window,"resize"),(0,xo.R)(document,"keydown"))),this.idle$=(0,gr.D)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function as(N,...V){var b,G;const Z=null!==(b=(0,En.yG)(V))&&void 0!==b?b:Do.z,He=null!==(G=V[0])&&void 0!==G?G:null,Pt=V[1]||1/0;return(0,ho.e)((ti,fi)=>{let wi=[],dn=!1;const Qi=pn=>{const{buffer:kn,subs:Cr}=pn;Cr.unsubscribe(),(0,Co.P)(wi,pn),fi.next(kn),dn&&zn()},zn=()=>{if(wi){const pn=new Ss.w0;fi.add(pn);const Cr={buffer:[],subs:pn};wi.push(Cr),(0,Xo.f)(pn,Z,()=>Qi(Cr),N)}};null!==He&&He>=0?(0,Xo.f)(fi,Z,zn,He,!0):dn=!0,zn();const On=(0,Vo.x)(fi,pn=>{const kn=wi.slice();for(const Cr of kn){const{buffer:ha}=Cr;ha.push(pn),Pt<=ha.length&&Qi(Cr)}},()=>{for(;wi?.length;)fi.next(wi.shift().buffer);On?.unsubscribe(),fi.complete(),fi.unsubscribe()},void 0,()=>wi=null);ti.subscribe(On)})}(this.idleSensitivityMillisec),(0,cr.h)(b=>!b.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,Ea.b)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,os.w)(()=>this._ngZone.runOutsideAngular(()=>Sa(1e3).pipe((0,qi.R)((0,Ms.T)(this.activityEvents$,(0,Ua.H)(this.idleMillisec).pipe((0,Ea.b)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,Es.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,la.x)(),(0,os.w)(b=>b?this.timer$:(0,va.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,cr.h)(b=>!!b),(0,Ea.b)(()=>this.isTimeout=!0),(0,Ir.U)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(b){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(b):console.error("Call stopWatching() before set config values")}setConfig(b){b.idle&&(this.idleMillisec=1e3*b.idle),b.ping&&(this.pingMillisec=1e3*b.ping),b.idleSensitivity&&(this.idleSensitivityMillisec=1e3*b.idleSensitivity),b.timeout&&(this.timeout=b.timeout)}setCustomActivityEvents(b){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=b:console.error("Call stopWatching() before set custom activity events")}setupTimer(b){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,va.of)(()=>new Date).pipe((0,Ir.U)(G=>G()),(0,os.w)(G=>Sa(1e3).pipe((0,Ir.U)(()=>Math.round(((new Date).valueOf()-G.valueOf())/1e3)),(0,Ea.b)(Z=>{Z>=b&&this.timeout$.next(!0)}))))})}setupPing(b){this.ping$=Sa(b).pipe((0,cr.h)(()=>!this.isTimeout))}}return N.\u0275fac=function(b){return new(b||N)(t.LFG(Ts,8),t.LFG(t.R0b))},N.\u0275prov=t.Yz7({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();var Xn=p(4190),nn=p(590),Nr=p(4818),qr=p(5597),$i=p(3814),or=p(5195),ta=p(4104);const gc=()=>({initial:!1});function Fc(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[1].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[1].link),t.Q6J("active",b.activeLink===b.links[1].link)("state",t.DdM(4,gc)),t.xp6(1),t.Oqu(b.links[1].name)}}function vl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[2].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[2].link),t.Q6J("active",b.activeLink===b.links[2].link),t.xp6(1),t.Oqu(b.links[2].name)}}let As=(()=>{class N{constructor(b,G){this.store=b,this.router=G,this.faUserCog=nn.gNZ,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){const b=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,qi.R)(this.unSubs[0]),(0,cr.h)(G=>G instanceof Xn.Av)).subscribe({next:G=>{const Z=this.links.find(He=>G.urlAfterRedirects.includes(He.link));this.activeLink=Z?Z.link:this.links[0].link}}),this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[1])).subscribe(G=>{this.appConfig=G}),this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[2])).subscribe(G=>{this.showBitcoind=!1,this.selNode=G,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Vi.yh),t.Y36(Xn.F0))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-settings"]],decls:16,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(G,Z){if(1&G&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Settings"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),t.NdJ("click",function(){return Z.activeLink=Z.links[0].link}),t._uU(9),t.qZA(),t.YNc(10,Fc,2,5,"div",7)(11,vl,2,3,"div",8),t.qZA(),t._UZ(12,"mat-tab-nav-panel",null,9),t.TgZ(14,"div",10),t._UZ(15,"router-outlet"),t.qZA()()()()),2&G){const He=t.MAs(13);t.xp6(1),t.Q6J("icon",Z.faUserCog),t.xp6(6),t.Q6J("tabPanel",He),t.xp6(1),t.s9C("routerLink",Z.links[0].link),t.Q6J("active",Z.activeLink===Z.links[0].link),t.xp6(1),t.Oqu(Z.links[0].name),t.xp6(1),t.Q6J("ngIf",!+Z.appConfig.sso.rtlSSO),t.xp6(1),t.Q6J("ngIf",Z.showBitcoind)}},dependencies:[sn.O5,qr.BN,$i.xw,$i.Wh,$i.yH,or.a8,or.dn,ta.BU,ta.sW,ta.Nj,Xn.lC,Xn.rH]})}return N})();var Kt=p(2154),_e=p(9103),Tt=p(5980),Pe=p(6223),pt=p(2296),Qt=p(5683),Re=p(8525),ft=p(3680),_t=p(2159),Lt=p(6985);function Xt(N,V){if(1&N&&(t.TgZ(0,"mat-option",17),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b.index),t.xp6(1),t.AsE(" ",b.lnNode," (",b.lnImplementation,") ")}}function hi(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"form",2,3)(2,"div",4),t._UZ(3,"fa-icon",5),t.TgZ(4,"span",6),t._uU(5,"Default Node"),t.qZA()(),t.TgZ(6,"div",7)(7,"div",8),t._UZ(8,"fa-icon",9),t.TgZ(9,"span"),t._uU(10,"The setting will apply after RTL server restarts."),t.qZA()(),t.TgZ(11,"div",10)(12,"mat-form-field",11)(13,"mat-select",12),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.appConfig.defaultNodeIndex=Z)}),t.YNc(14,Xt,2,3,"mat-option",13),t.qZA()()(),t.TgZ(15,"div",14)(16,"div",10)(17,"button",15),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onResetSettings())}),t._uU(18,"Reset"),t.qZA(),t.TgZ(19,"button",16),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onUpdateSettings())}),t._uU(20,"Update"),t.qZA()()()()()}if(2&N){const b=t.oxw();t.xp6(3),t.Q6J("icon",b.faWindowRestore),t.xp6(5),t.Q6J("icon",b.faInfoCircle),t.xp6(5),t.Q6J("ngModel",b.appConfig.defaultNodeIndex),t.xp6(1),t.Q6J("ngForOf",b.appConfig.nodes)}}let di=(()=>{class N{constructor(b,G){this.logger=b,this.store=G,this.faInfoCircle=nn.sqG,this.faWindowRestore=nn.wyP,this.faPlus=nn.r8p,this.previousDefaultNode=0,this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(b)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateSettings(){this.store.dispatch((0,_e.zQ)({payload:{uiMessage:Kt.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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Vi.yh))};static#t=this.\u0275cmp=t.Xpm({type:N,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"],["fxLayout","column","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(G,Z){1&G&&(t.TgZ(0,"div",0),t.YNc(1,hi,21,4,"form",1),t.qZA()),2&G&&(t.xp6(1),t.Q6J("ngIf",Z.appConfig.nodes&&Z.appConfig.nodes.length&&Z.appConfig.nodes.length>0))},dependencies:[sn.sg,sn.O5,Pe._Y,Pe.JJ,Pe.JL,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,pt.lW,Qt.KE,Re.gD,ft.ey,_t.$V,Lt.h]})}return N})();var Si=p(8927),Ii=p(8180),Xi=p(7700),en=p(3439),cn=p(2703),Un=p(2939),Ln=p(2032),hr=p(8257),Hr=p(2279),da=p(7313);const ia=["stepper"];function Ta(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw();t.Oqu(b.passwordFormLabel)}}function Or(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Password is required."),t.qZA())}function Lo(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw(2);t.Oqu(b.secretFormLabel)}}function $a(N,V){if(1&N&&t._UZ(0,"qr-code",33),2&N){const b=t.oxw(2);t.Q6J("value",b.otpauth)("size",180)("errorCorrectionLevel","L")}}function Fn(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Secret Code is required."),t.qZA())}function Jo(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-step",10)(1,"form",22),t.YNc(2,Lo,1,1,"ng-template",23),t.TgZ(3,"div",24),t.YNc(4,$a,1,3,"qr-code",25),t.qZA(),t.TgZ(5,"div",26),t._UZ(6,"fa-icon",27),t.TgZ(7,"span"),t._uU(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),t.qZA()(),t.TgZ(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),t._uU(12,"Secret Code"),t.qZA(),t._UZ(13,"input",29),t.TgZ(14,"fa-icon",30),t.NdJ("copied",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onCopySecret(Z))}),t.qZA(),t.YNc(15,Fn,2,0,"mat-error",15),t.qZA()(),t.TgZ(16,"div",31)(17,"button",32),t._uU(18,"Next"),t.qZA()()()()}if(2&N){const b=t.oxw();t.Q6J("stepControl",b.secretFormGroup)("editable",b.flgEditable),t.xp6(1),t.Q6J("formGroup",b.secretFormGroup),t.xp6(3),t.Q6J("ngIf",b.otpauth),t.xp6(2),t.Q6J("icon",b.faInfoCircle),t.xp6(8),t.Q6J("icon",b.faCopy)("payload",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret?null:b.secretFormGroup.controls.secret.value),t.xp6(1),t.Q6J("ngIf",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret||null==b.secretFormGroup.controls.secret.errors?null:b.secretFormGroup.controls.secret.errors.required)}}function vs(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw(2);t.Oqu(b.tokenFormLabel)}}function Sr(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Token is required."),t.qZA())}function zc(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Token is invalid."),t.qZA())}function _c(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",7)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),t._uU(4,"Token"),t.qZA(),t._UZ(5,"input",37),t.YNc(6,Sr,2,0,"mat-error",15)(7,zc,2,0,"mat-error",15),t.qZA()(),t.TgZ(8,"div",31)(9,"button",38),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onVerifyToken())}),t._uU(10),t.qZA()()()}if(2&N){const b=t.oxw(2);t.xp6(6),t.Q6J("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.required),t.xp6(1),t.Q6J("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.notValid),t.xp6(3),t.Oqu(null!=b.tokenFormGroup&&null!=b.tokenFormGroup.controls&&null!=b.tokenFormGroup.controls.token&&null!=b.tokenFormGroup.controls.token.errors&&b.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function Ds(N,V){1&N&&(t.TgZ(0,"div")(1,"strong"),t._uU(2,"Success! You are all set."),t.qZA()())}function Uo(N,V){if(1&N&&(t.TgZ(0,"mat-step",34)(1,"form",35),t.YNc(2,vs,1,1,"ng-template",12)(3,_c,11,3,"div",36)(4,Ds,3,0,"div",15),t.qZA()()),2&N){const b=t.oxw();t.Q6J("stepControl",b.tokenFormGroup),t.xp6(1),t.Q6J("formGroup",b.tokenFormGroup),t.xp6(2),t.Q6J("ngIf",!b.flgValidated||!b.isTokenValid),t.xp6(1),t.Q6J("ngIf",b.flgValidated&&b.isTokenValid)}}function E2(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw(2);t.Oqu(b.disableFormLabel)}}function bl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",7)(1,"div",39),t._UZ(2,"fa-icon",27),t.TgZ(3,"span"),t._uU(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),t.qZA()(),t.TgZ(5,"div",31)(6,"button",38),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onVerifyToken())}),t._uU(7,"Disable"),t.qZA()()()}if(2&N){const b=t.oxw(2);t.xp6(2),t.Q6J("icon",b.faExclamationTriangle)}}function Vc(N,V){1&N&&(t.TgZ(0,"div")(1,"strong"),t._uU(2,"Two factor authentication removed from RTL."),t.qZA()())}function $o(N,V){if(1&N&&(t.TgZ(0,"mat-step",34)(1,"form",35),t.YNc(2,E2,1,1,"ng-template",12)(3,bl,8,1,"div",36)(4,Vc,3,0,"div",15),t.qZA()()),2&N){const b=t.oxw();t.Q6J("stepControl",b.disableFormGroup),t.xp6(1),t.Q6J("formGroup",b.disableFormGroup),t.xp6(2),t.Q6J("ngIf",!b.flgValidated||!b.isTokenValid),t.xp6(1),t.Q6J("ngIf",b.flgValidated&&b.isTokenValid)}}let yl=(()=>{class N{constructor(b,G,Z,He,Pt,ti){this.dialogRef=b,this.data=G,this.store=Z,this.formBuilder=He,this.rtlEffects=Pt,this.snackBar=ti,this.faExclamationTriangle=nn.eHv,this.faCopy=nn.kZ_,this.faInfoCircle=nn.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:["",[Pe.kI.required]],password:["",[Pe.kI.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},Pe.kI.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",Pe.kI.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!this.appConfig?.enable2FA,this.secretFormGroup=this.formBuilder.group({secret:[{value:this.appConfig?.enable2FA?"":this.generateSecret(),disabled:!0},Pe.kI.required]})}generateSecret(){const b=en.authenticator.generateSecret();return this.otpauth=en.authenticator.keyuri("","Ride The Lightning (RTL)",b),b}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,_e.QO)({payload:Si(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Ii.q)(1)).subscribe(b=>{"ERROR"!==b?(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(b){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){if(this.appConfig?.enable2FA)this.store.dispatch((0,_e.Uy)({payload:{secret2fa:""}})),this.generateSecret(),this.isTokenValid=!0;else{if(!this.tokenFormGroup.controls.token.value)return!0;if(this.isTokenValid=en.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,_e.Uy)({payload:{secret2fa:this.secretFormGroup.controls.secret.value}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0,this.appConfig&&(this.appConfig.enable2FA=!this.appConfig?.enable2FA)}stepSelectionChanged(b){switch(b.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}b.selectedIndex{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xi.so),t.Y36(Xi.WI),t.Y36(Vi.yh),t.Y36(Pe.QS),t.Y36(cn.V),t.Y36(Un.ux))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-two-factor-auth"]],viewQuery:function(G,Z){if(1&G&&t.Gf(ia,5),2&G){let He;t.iGM(He=t.CRH())&&(Z.stepper=He.first)}},decls:30,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 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",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","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","","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","","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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Setup Two Factor Authentication"),t.qZA()(),t.TgZ(6,"button",5),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(Pt){return Z.stepSelectionChanged(Pt)}),t.TgZ(12,"mat-step",10)(13,"form",11),t.YNc(14,Ta,1,1,"ng-template",12),t.TgZ(15,"div",0)(16,"mat-form-field",13)(17,"mat-label"),t._uU(18,"Password"),t.qZA(),t._UZ(19,"input",14),t.YNc(20,Or,2,0,"mat-error",15),t.qZA()(),t.TgZ(21,"div",16)(22,"button",17),t.NdJ("click",function(){return Z.onAuthenticate()}),t._uU(23,"Confirm"),t.qZA()()()(),t.YNc(24,Jo,19,8,"mat-step",18)(25,Uo,5,4,"mat-step",19)(26,$o,5,4,"mat-step",19),t.qZA(),t.TgZ(27,"div",20)(28,"button",21),t._uU(29),t.qZA()()()()()()),2&G&&(t.xp6(6),t.Q6J("mat-dialog-close",!1),t.xp6(4),t.Q6J("linear",!0),t.xp6(2),t.Q6J("stepControl",Z.passwordFormGroup)("editable",Z.flgEditable),t.xp6(1),t.Q6J("formGroup",Z.passwordFormGroup),t.xp6(7),t.Q6J("ngIf",null==Z.passwordFormGroup||null==Z.passwordFormGroup.controls||null==Z.passwordFormGroup.controls.password||null==Z.passwordFormGroup.controls.password.errors?null:Z.passwordFormGroup.controls.password.errors.required),t.xp6(4),t.Q6J("ngIf",!Z.showDisableStepper),t.xp6(1),t.Q6J("ngIf",!Z.showDisableStepper),t.xp6(1),t.Q6J("ngIf",Z.showDisableStepper),t.xp6(2),t.Q6J("mat-dialog-close",!1),t.xp6(1),t.Oqu(Z.flgValidated&&Z.isTokenValid?"Close":"Cancel"))},dependencies:[sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.sg,Pe.u,qr.BN,$i.xw,$i.Wh,$i.yH,Xi.ZT,pt.lW,or.dn,or.dk,Ln.Nt,Qt.KE,Qt.hX,Qt.TO,Qt.R9,hr.C0,hr.VY,hr.Vq,hr.Ic,Hr.uU,da.y,Lt.h]})}return N})();var Ls=p(5813),Pa=p(6385);const m1=["authForm"];function xl(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Current password is required."),t.qZA())}function Bc(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.Oqu(b.errorMsg)}}function Cl(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.Oqu(b.errorConfirmMsg)}}function In(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"form",11,12)(2,"div",13),t._UZ(3,"fa-icon",5),t.TgZ(4,"span",6),t._uU(5,"Password"),t.qZA()(),t.TgZ(6,"mat-form-field")(7,"mat-label"),t._uU(8,"Current Password"),t.qZA(),t.TgZ(9,"input",14),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.currPassword=Z)}),t.qZA(),t.YNc(10,xl,2,0,"mat-error",15),t.qZA(),t.TgZ(11,"mat-form-field")(12,"mat-label"),t._uU(13,"New Password"),t.qZA(),t.TgZ(14,"input",16),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.newPassword=Z)}),t.qZA(),t.YNc(15,Bc,2,1,"mat-error",15),t.qZA(),t.TgZ(16,"mat-form-field")(17,"mat-label"),t._uU(18,"Confirm New Password"),t.qZA(),t.TgZ(19,"input",17),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.confirmPassword=Z)}),t.qZA(),t.YNc(20,Cl,2,1,"mat-error",15),t.qZA(),t.TgZ(21,"div",18)(22,"button",19),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onResetPassword())}),t._uU(23,"Reset"),t.qZA(),t.TgZ(24,"button",20),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onChangePassword())}),t._uU(25,"Change Password"),t.qZA()()()}if(2&N){const b=t.oxw();t.xp6(3),t.Q6J("icon",b.faLock),t.xp6(6),t.Q6J("ngModel",b.currPassword),t.xp6(1),t.Q6J("ngIf",!b.currPassword),t.xp6(4),t.Q6J("ngModel",b.newPassword),t.xp6(1),t.Q6J("ngIf",b.matchOldAndNewPasswords()),t.xp6(4),t.Q6J("ngModel",b.confirmPassword),t.xp6(1),t.Q6J("ngIf",b.matchNewPasswords())}}let Go=(()=>{class N{constructor(b,G,Z,He,Pt){this.logger=b,this.store=G,this.actions=Z,this.router=He,this.sessionService=Pt,this.faInfoCircle=nn.sqG,this.faUserLock=nn.FJU,this.faUserClock=nn.hnx,this.faLock=nn.byT,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.logger.info(this.appConfig)}),this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{this.selNode=b}),this.actions.pipe((0,qi.R)(this.unSubs[2]),(0,cr.h)(b=>b.type===Kt.pg.RESET_PASSWORD_RES)).subscribe(b=>{if(Kt.kO.includes(this.currPassword.toLowerCase()))switch(this.selNode.lnImplementation?.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||Kt.kO.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,_e.c0)({payload:{currPassword:Si(this.currPassword).toString(),newPassword:Si(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let b=!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.",b=!0):Kt.kO.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=Kt.kO?.reduce((G,Z,He)=>He{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Vi.yh),t.Y36(lo.eX),t.Y36(Xn.F0),t.Y36(Ls.m))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-auth-settings"]],viewQuery:function(G,Z){if(1&G&&t.Gf(m1,5),2&G){let He;t.iGM(He=t.CRH())&&(Z.form=He.first)}},decls:15,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"],[1,"my-2"],["fxLayout","column","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","","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModel","ngModelChange"],[4,"ngIf"],["matInput","","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModel","ngModelChange"],["matInput","","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"]],template:function(G,Z){1&G&&(t.TgZ(0,"div",0),t.YNc(1,In,26,7,"form",1),t._UZ(2,"mat-divider",2),t.TgZ(3,"div",3)(4,"div",4),t._UZ(5,"fa-icon",5),t.TgZ(6,"span",6),t._uU(7,"Two Factor Authentication"),t.qZA()(),t.TgZ(8,"div",7),t._UZ(9,"fa-icon",8),t.TgZ(10,"span"),t._uU(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),t.qZA()(),t.TgZ(12,"div",9)(13,"button",10),t.NdJ("click",function(){return Z.on2FAuth()}),t._uU(14),t.qZA()()()()),2&G&&(t.xp6(1),t.Q6J("ngIf",null==Z.appConfig?null:Z.appConfig.allowPasswordUpdate),t.xp6(4),t.Q6J("icon",Z.faUserClock),t.xp6(4),t.Q6J("icon",Z.faInfoCircle),t.xp6(5),t.Oqu(Z.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,pt.lW,Ln.Nt,Qt.KE,Qt.hX,Qt.TO,Pa.d,Lt.h]})}return N})();var Bs=p(9038);function p1(N,V){1&N&&t._UZ(0,"mat-divider",7)}function bs(N,V){if(1&N&&(t.TgZ(0,"div",4)(1,"pre",5),t._uU(2),t.ALo(3,"json"),t.qZA(),t.YNc(4,p1,1,0,"mat-divider",6),t.qZA()),2&N){const b=t.oxw();t.xp6(2),t.Oqu(t.lcZ(3,2,b.configData)),t.xp6(2),t.Q6J("ngIf",""!==b.configData)}}function Sh(N,V){if(1&N&&(t.TgZ(0,"h2"),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Oqu(b)}}function g1(N,V){if(1&N&&(t.TgZ(0,"h4",14),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Oqu(b)}}function Qs(N,V){1&N&&t._UZ(0,"mat-divider",15),2&N&&t.Q6J("inset",!0)}function T2(N,V){if(1&N&&(t.TgZ(0,"mat-list-item")(1,"mat-card-subtitle",7),t.YNc(2,Sh,2,1,"h2",10),t.qZA(),t.TgZ(3,"mat-card-subtitle",11),t.YNc(4,g1,2,1,"h4",12),t.qZA(),t.YNc(5,Qs,1,1,"mat-divider",13),t.qZA()),2&N){const b=V.$implicit;t.xp6(2),t.Q6J("ngIf",b.indexOf("[")>=0),t.xp6(2),t.Q6J("ngIf",b.indexOf("[")<0),t.xp6(1),t.Q6J("ngIf",b.indexOf("[")<0)}}function A2(N,V){if(1&N&&(t.TgZ(0,"div",8)(1,"mat-list"),t.YNc(2,T2,6,3,"mat-list-item",9),t.qZA()()),2&N){const b=t.oxw();t.xp6(2),t.Q6J("ngForOf",b.configData)}}let pd=(()=>{class N{constructor(b,G,Z){this.store=b,this.rtlEffects=G,this.router=Z,this.configData="",this.fileFormat="INI",this.faCog=nn.b7W,this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.store.dispatch((0,_e.Q2)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{const G=b.data;this.fileFormat=b.format,this.configData=""===G||!G||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==G&&G&&"JSON"===this.fileFormat?G:"":G.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Vi.yh),t.Y36(cn.V),t.Y36(Xn.F0))};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1),t.YNc(2,bs,5,4,"div",2)(3,A2,3,1,"div",3),t.qZA()()),2&G&&(t.xp6(2),t.Q6J("ngIf",""!==Z.configData&&"JSON"===Z.fileFormat),t.xp6(1),t.Q6J("ngIf",""!==Z.configData&&("INI"===Z.fileFormat||"HOCON"===Z.fileFormat)))},dependencies:[sn.sg,sn.O5,$i.xw,$i.Wh,$i.yH,or.$j,Bs.i$,Bs.Tg,Pa.d,sn.Ts],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return N})();function wl(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Password is required."),t.qZA())}let gd=(()=>{class N{constructor(b,G,Z){this.dialogRef=b,this.store=G,this.rtlEffects=Z,this.password="",this.isAuthenticated=!1,this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,Ii.q)(1)).subscribe(b=>{"ERROR"!==b?(this.isAuthenticated=!0,this.store.dispatch((0,_e.M6)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,_e.QO)({payload:Si(this.password)}))}onClose(){this.store.dispatch((0,_e.M6)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xi.so),t.Y36(Vi.yh),t.Y36(cn.V))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-is-authorized"]],decls:18,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 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","","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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Authenticate with your RTL Password"),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return Z.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),t._uU(12,"Password"),t.qZA(),t.TgZ(13,"input",8),t.NdJ("ngModelChange",function(Pt){return Z.password=Pt}),t.qZA(),t.YNc(14,wl,2,0,"mat-error",9),t.qZA(),t.TgZ(15,"div",10)(16,"button",11),t.NdJ("click",function(){return Z.onAuthenticate()}),t._uU(17,"Confirm"),t.qZA()()()()()()),2&G&&(t.xp6(13),t.Q6J("ngModel",Z.password),t.xp6(1),t.Q6J("ngIf",!Z.password))},dependencies:[sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,$i.xw,$i.Wh,$i.yH,pt.lW,or.dn,or.dk,Ln.Nt,Qt.KE,Qt.hX,Qt.TO,Lt.h]})}return N})();const Hi=()=>({initial:!1});function rr(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",13),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[2].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[2].link),t.Q6J("active",b.activeLink===b.links[2].link)("state",t.DdM(4,Hi)),t.xp6(1),t.Oqu(b.links[2].name)}}function Ml(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",14),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[3].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[3].link),t.Q6J("active",b.activeLink===b.links[3].link),t.xp6(1),t.Oqu(b.links[3].name)}}function vc(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",15),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.showLnConfigClicked())}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.Q6J("active",b.activeLink===b.links[4].link),t.xp6(1),t.Oqu(b.links[4].name)}}let mr=(()=>{class N{constructor(b,G,Z,He){this.store=b,this.router=G,this.rtlEffects=Z,this.activatedRoute=He,this.faTools=nn.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 Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){const b=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,qi.R)(this.unSubs[0]),(0,cr.h)(G=>G instanceof Xn.Av)).subscribe({next:G=>{const Z=this.links.find(He=>G.urlAfterRedirects.includes(He.link));this.activeLink=Z?Z.link:this.links[0].link}}),this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[1])).subscribe(G=>{this.appConfig=G}),this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[2])).subscribe(G=>{switch(this.showLnConfig=!1,this.selNode=G,this.selNode.lnImplementation?.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.appConfig.sso.rtlSSO?(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})):(this.store.dispatch((0,_e.qR)({payload:{maxWidth:"50rem",data:{component:gd}}})),this.rtlEffects.closeAlert.pipe((0,qi.R)(this.unSubs[3])).subscribe(b=>{b&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Vi.yh),t.Y36(Xn.F0),t.Y36(cn.V),t.Y36(Xn.gz))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-node-config"]],decls:19,vars:11,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","5","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","click",4,"ngIf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","click"]],template:function(G,Z){if(1&G&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3,"Node Config"),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5)(8,"div",6),t.NdJ("click",function(){return Z.activeLink=Z.links[0].link}),t._uU(9),t.qZA(),t.TgZ(10,"div",7),t.NdJ("click",function(){return Z.activeLink=Z.links[1].link}),t._uU(11),t.qZA(),t.YNc(12,rr,2,5,"div",8)(13,Ml,2,3,"div",9)(14,vc,2,2,"div",10),t.qZA(),t._UZ(15,"mat-tab-nav-panel",null,11),t.TgZ(17,"div",12),t._UZ(18,"router-outlet"),t.qZA()()()()),2&G){const He=t.MAs(16);t.xp6(1),t.Q6J("icon",Z.faTools),t.xp6(6),t.Q6J("tabPanel",He),t.xp6(1),t.s9C("routerLink",Z.links[0].link),t.Q6J("active",Z.activeLink===Z.links[0].link),t.xp6(1),t.Oqu(Z.links[0].name),t.xp6(1),t.s9C("routerLink",Z.links[1].link),t.Q6J("active",Z.activeLink===Z.links[1].link),t.xp6(1),t.Oqu(Z.links[1].name),t.xp6(1),t.Q6J("ngIf","LND"===(null==Z.selNode||null==Z.selNode.lnImplementation?null:Z.selNode.lnImplementation.toUpperCase())),t.xp6(1),t.Q6J("ngIf","CLN"===(null==Z.selNode||null==Z.selNode.lnImplementation?null:Z.selNode.lnImplementation.toUpperCase())),t.xp6(1),t.Q6J("ngIf",Z.showLnConfig)}},dependencies:[sn.O5,qr.BN,$i.xw,$i.Wh,$i.yH,or.a8,or.dn,ta.BU,ta.sW,ta.Nj,Xn.lC,Xn.rH]})}return N})();function ss(N,V){1&N&&t._UZ(0,"mat-divider",7)}function qs(N,V){if(1&N&&(t.TgZ(0,"div",4)(1,"pre",5),t._uU(2),t.ALo(3,"json"),t.qZA(),t.YNc(4,ss,1,0,"mat-divider",6),t.qZA()),2&N){const b=t.oxw();t.xp6(2),t.Oqu(t.lcZ(3,2,b.configData)),t.xp6(2),t.Q6J("ngIf",""!==b.configData)}}function Fr(N,V){if(1&N&&(t.TgZ(0,"h2"),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Oqu(b)}}function Ra(N,V){if(1&N&&(t.TgZ(0,"h4",14),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Oqu(b)}}function bc(N,V){1&N&&t._UZ(0,"mat-divider",15),2&N&&t.Q6J("inset",!0)}function Sl(N,V){if(1&N&&(t.TgZ(0,"mat-list-item")(1,"mat-card-subtitle",7),t.YNc(2,Fr,2,1,"h2",10),t.qZA(),t.TgZ(3,"mat-card-subtitle",11),t.YNc(4,Ra,2,1,"h4",12),t.qZA(),t.YNc(5,bc,1,1,"mat-divider",13),t.qZA()),2&N){const b=V.$implicit;t.xp6(2),t.Q6J("ngIf",b.indexOf("[")>=0),t.xp6(2),t.Q6J("ngIf",b.indexOf("[")<0),t.xp6(1),t.Q6J("ngIf",b.indexOf("[")<0)}}function El(N,V){if(1&N&&(t.TgZ(0,"div",8)(1,"mat-list"),t.YNc(2,Sl,6,3,"mat-list-item",9),t.qZA()()),2&N){const b=t.oxw();t.xp6(2),t.Q6J("ngForOf",b.configData)}}let Uc=(()=>{class N{constructor(b,G,Z){this.store=b,this.rtlEffects=G,this.router=Z,this.configData="",this.fileFormat="INI",this.faCog=nn.b7W,this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.store.dispatch((0,_e.Q2)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{const G=b.data;this.fileFormat=b.format,this.configData=""===G||!G||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==G&&G&&"JSON"===this.fileFormat?G:"":G.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Vi.yh),t.Y36(cn.V),t.Y36(Xn.F0))};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1),t.YNc(2,qs,5,4,"div",2)(3,El,3,1,"div",3),t.qZA()()),2&G&&(t.xp6(2),t.Q6J("ngIf",""!==Z.configData&&"JSON"===Z.fileFormat),t.xp6(1),t.Q6J("ngIf",""!==Z.configData&&("INI"===Z.fileFormat||"HOCON"===Z.fileFormat)))},dependencies:[sn.sg,sn.O5,$i.xw,$i.Wh,$i.yH,or.$j,Bs.i$,Bs.Tg,Pa.d,sn.Ts],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return N})();var qn=p(2249),Wn=p(234),xr=p(9191),na=p(6339),me=p(7509),Oe=p(3305),ge=p(7466),Ne=p(2599);function mt(N,V){if(1&N&&(t.TgZ(0,"mat-option",35),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b.id),t.xp6(1),t.hij(" ",b.id," ")}}function Rt(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Currency unit is required."),t.qZA())}function ni(N,V){if(1&N&&(t.TgZ(0,"mat-radio-button",36),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.Q6J("value",b)("checked",G.selNode.settings.userPersona===b),t.xp6(1),t.hij(" ",t.lcZ(2,3,b)," ")}}function Li(N,V){if(1&N&&(t.TgZ(0,"mat-radio-button",37),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b),t.xp6(1),t.hij("",b.name," ")}}const Di=N=>({skin:!0,"selected-color":N});function ln(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"span",38)(1,"div",39),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw();return t.KtG(Pt.changeThemeColor(He.id))}),t.ALo(2,"lowercase"),t.qZA(),t._uU(3),t.qZA()}if(2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Tol(t.lcZ(2,4,b.id)),t.Q6J("ngClass",t.VKq(6,Di,G.selectedThemeColor===b.id)),t.xp6(2),t.hij(" ",b.name," ")}}let Qn=(()=>{class N{constructor(b,G,Z){this.logger=b,this.commonService=G,this.store=Z,this.faExclamationTriangle=nn.eHv,this.faMoneyBillAlt=nn.co4,this.faPaintBrush=nn.XsY,this.faInfoCircle=nn.sqG,this.faEyeSlash=nn.Aq,this.userPersonas=[Kt.ol.OPERATOR,Kt.ol.MERCHANT],this.currencyUnits=Kt.Er,this.themeModes=Kt.wZ.modes,this.themeColors=Kt.wZ.themes,this.selectedThemeMode=Kt.wZ.modes[0],this.selectedThemeColor=Kt.wZ.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=Kt.cu,this.unSubs=[new Yi.x,new Yi.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.selectedThemeMode=this.themeModes.find(G=>this.selNode.settings.themeMode===G.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(b)})}onCurrencyChange(b){this.selNode.settings.currencyUnits=[...Kt.uA,b.value],this.store.dispatch((0,xr.JT)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:b.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,Wn.Mf)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:b.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,qn.Zr)({payload:{userPersona:this.selNode.settings.userPersona,channelBackupPath:this.selNode.settings.channelBackupPath,selCurrencyUnit:b.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(b,G){this.selNode.settings[b]=!this.selNode.settings[b]}changeThemeColor(b){this.selectedThemeColor=b,this.selNode.settings.themeColor=b}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,_e.zQ)({payload:{uiMessage:Kt.m6.UPDATE_NODE_SETTINGS,settings:this.selNode.settings}})),this.store.dispatch((0,xr.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,Wn.Mf)({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,qn.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 b=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(G=>G.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,_e.fk)({payload:{uiMessage:Kt.m6.NO_SPINNER,prevLnNodeIndex:+b,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(na.v),t.Y36(Vi.yh))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-node-settings"]],decls:78,vars:18,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container"],["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",1,"mr-2",3,"ngModel","ngModelChange","change"],["autoFocus","","tabindex","3","name","currencyUnit",3,"disabled","required","ngModel","ngModelChange","selectionChange"],["currencyUnit","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",1,"radio-group",3,"ngModel","ngModelChange"],["class","radio-text mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],["color","primary","name","themeMode",1,"radio-group",3,"ngModel","ngModelChange","change"],["tabindex","5","class","radio-text mr-4",3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["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","column","fxLayoutAlign","start start",1,"mt-1"],["fxLayout","row"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],[1,"radio-text","mr-4",3,"value","checked"],["tabindex","5",1,"radio-text","mr-4",3,"value"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"ngClass","click"]],template:function(G,Z){1&G&&(t.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"),t._UZ(7,"fa-icon",5),t.TgZ(8,"span",6),t._uU(9,"Open Unannounced Channels"),t.qZA()()(),t.TgZ(10,"div",7)(11,"div",8),t._UZ(12,"fa-icon",9),t.TgZ(13,"span"),t._uU(14,"Use this control to toggle setting which defaults to opening unannounced channels only."),t.qZA()(),t.TgZ(15,"div",10)(16,"mat-slide-toggle",11),t.NdJ("ngModelChange",function(Pt){return Z.selNode.settings.unannouncedChannels=Pt})("change",function(){return!Z.selNode.settings.unannouncedChannels}),t._uU(17,"Open Unannounced Channels"),t.qZA()()()(),t.TgZ(18,"mat-expansion-panel",4)(19,"mat-expansion-panel-header")(20,"mat-panel-title"),t._UZ(21,"fa-icon",5),t.TgZ(22,"span",6),t._uU(23,"Balance Display"),t.qZA()()(),t.TgZ(24,"div",7)(25,"div",12),t._UZ(26,"fa-icon",9),t.TgZ(27,"span"),t._uU(28,"Fiat conversion calls "),t.TgZ(29,"strong")(30,"a",13),t._uU(31,"Blockchain.com"),t.qZA()(),t._uU(32," API to get conversion rates."),t.qZA()(),t.TgZ(33,"div",10)(34,"mat-slide-toggle",14),t.NdJ("ngModelChange",function(Pt){return Z.selNode.settings.fiatConversion=Pt})("change",function(){return!Z.selNode.settings.currencyUnit}),t._uU(35,"Enable Fiat Conversion"),t.qZA(),t.TgZ(36,"mat-form-field")(37,"mat-label"),t._uU(38,"Fiat Currency"),t.qZA(),t.TgZ(39,"mat-select",15,16),t.NdJ("ngModelChange",function(Pt){return Z.selNode.settings.currencyUnit=Pt})("selectionChange",function(Pt){return Z.onCurrencyChange(Pt)}),t.YNc(41,mt,2,2,"mat-option",17),t.qZA(),t.YNc(42,Rt,2,0,"mat-error",18),t.qZA()()()(),t.TgZ(43,"mat-expansion-panel",4)(44,"mat-expansion-panel-header")(45,"mat-panel-title"),t._UZ(46,"fa-icon",5),t.TgZ(47,"span",6),t._uU(48,"Customization"),t.qZA()()(),t.TgZ(49,"div",7)(50,"div",19),t._UZ(51,"fa-icon",9),t.TgZ(52,"span"),t._uU(53,"Dashboard layout will be tailored based on the role selected to better serve its needs."),t.qZA()(),t.TgZ(54,"div",20)(55,"h4"),t._uU(56,"Dashboard Layout"),t.qZA(),t.TgZ(57,"mat-radio-group",21),t.NdJ("ngModelChange",function(Pt){return Z.selNode.settings.userPersona=Pt}),t.YNc(58,ni,3,5,"mat-radio-button",22),t.qZA()(),t._UZ(59,"mat-divider",23),t.TgZ(60,"div",24)(61,"h4"),t._uU(62,"Mode"),t.qZA(),t.TgZ(63,"mat-radio-group",25),t.NdJ("ngModelChange",function(Pt){return Z.selectedThemeMode=Pt})("change",function(){return Z.chooseThemeMode()}),t.YNc(64,Li,2,2,"mat-radio-button",26),t.qZA()(),t._UZ(65,"mat-divider",23),t.TgZ(66,"div",27)(67,"div",28)(68,"h4"),t._uU(69,"Themes"),t.qZA(),t.TgZ(70,"div",29),t.YNc(71,ln,4,8,"span",30),t.qZA()()()()()()(),t.TgZ(72,"div",31)(73,"div",32)(74,"button",33),t.NdJ("click",function(){return Z.onResetSettings()}),t._uU(75,"Reset"),t.qZA(),t.TgZ(76,"button",34),t.NdJ("click",function(){return Z.onUpdateSettings()}),t._uU(77,"Update"),t.qZA()()()()),2&G&&(t.xp6(7),t.Q6J("icon",Z.faEyeSlash),t.xp6(5),t.Q6J("icon",Z.faInfoCircle),t.xp6(4),t.Q6J("ngModel",Z.selNode.settings.unannouncedChannels),t.xp6(5),t.Q6J("icon",Z.faMoneyBillAlt),t.xp6(5),t.Q6J("icon",Z.faExclamationTriangle),t.xp6(8),t.Q6J("ngModel",Z.selNode.settings.fiatConversion),t.xp6(5),t.Q6J("disabled",!Z.selNode.settings.fiatConversion)("required",Z.selNode.settings.fiatConversion)("ngModel",Z.selNode.settings.currencyUnit),t.xp6(2),t.Q6J("ngForOf",Z.currencyUnits),t.xp6(1),t.Q6J("ngIf",Z.selNode.settings.fiatConversion&&!Z.selNode.settings.currencyUnit),t.xp6(4),t.Q6J("icon",Z.faPaintBrush),t.xp6(5),t.Q6J("icon",Z.faInfoCircle),t.xp6(6),t.Q6J("ngModel",Z.selNode.settings.userPersona),t.xp6(1),t.Q6J("ngForOf",Z.userPersonas),t.xp6(5),t.Q6J("ngModel",Z.selectedThemeMode),t.xp6(1),t.Q6J("ngForOf",Z.themeModes),t.xp6(7),t.Q6J("ngForOf",Z.themeColors))},dependencies:[sn.mk,sn.sg,sn.O5,Pe._Y,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,me.oO,pt.lW,Oe.pp,Oe.ib,Oe.yz,Oe.yK,Qt.KE,Qt.hX,Qt.TO,Pa.d,ge.VQ,ge.U0,Re.gD,ft.ey,Ne.Rr,_t.$V,Lt.h,sn.i8,sn.rS],styles:["h4[_ngcontent-%COMP%]{margin:.75rem 0 .5rem}.theme-name[_ngcontent-%COMP%]{min-width:10rem}@media only screen and (max-width: 37.5em){.theme-name[_ngcontent-%COMP%]{min-width:unset}}.skin[_ngcontent-%COMP%]{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.skin.selected-color[_ngcontent-%COMP%]{width:1rem;height:1rem;border:2px solid}.skin.purple[_ngcontent-%COMP%]{background-color:#5e4ea5}.skin.indigo[_ngcontent-%COMP%]{background-color:#3f51b5}.skin.teal[_ngcontent-%COMP%]{background-color:#00695c}.skin.pink[_ngcontent-%COMP%]{background-color:#d81b60}.skin.yellow[_ngcontent-%COMP%]{background-color:#a1842c}"]})}return N})();var Jn=p(2460),Pr=p(3468),ko=p(7321),Us=p(9930),wo=p(617),Gs=p(2596),cs=p(2995);const fo=N=>({error:N});function yc(N,V){if(1&N&&t.GkF(0,14),2&N){const b=t.oxw(),G=t.MAs(18);t.Q6J("ngTemplateOutlet",G)("ngTemplateOutletContext",t.VKq(2,fo,b.errorMessage))}}function Rr(N,V){if(1&N&&(t.TgZ(0,"mat-option",31),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b),t.xp6(1),t.hij(" ",b," ")}}function D2(N,V){if(1&N&&(t.TgZ(0,"mat-option",31),t._uU(1),t.ALo(2,"camelCaseWithSpaces"),t.ALo(3,"camelcaseWithReplace"),t.qZA()),2&N){const b=V.$implicit,G=t.oxw(3);t.Q6J("value",b),t.xp6(1),t.hij(" ","ECL"===G.selNode.lnImplementation?t.lcZ(2,2,b):t.xi3(3,4,b,"_")," ")}}function _d(N,V){if(1&N&&(t.TgZ(0,"mat-option",31),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b),t.xp6(1),t.hij(" ","desc"===b?"Descending":"Ascending"," ")}}function _1(N,V){if(1&N&&(t.TgZ(0,"mat-option",34),t._uU(1),t.ALo(2,"camelCaseWithSpaces"),t.ALo(3,"camelcaseWithReplace"),t.qZA()),2&N){const b=V.$implicit,G=t.oxw(2).$implicit,Z=t.oxw(2);t.Q6J("value",b.column)("disabled",G.columnSelection.length<=2&&G.columnSelection.includes(b.column)),t.xp6(1),t.hij(" ",b.label?b.label:"ECL"===Z.selNode.lnImplementation?t.lcZ(2,3,b.column):t.xi3(3,5,b.column,"_")," ")}}function Zs(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-form-field",32)(1,"mat-label"),t._uU(2,"Column selection (Desktop Resolution)"),t.qZA(),t.TgZ(3,"mat-select",33),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw().$implicit;return t.KtG(He.columnSelection=Z)})("selectionChange",function(){t.CHM(b);const Z=t.oxw().$implicit,He=t.oxw(2);return t.KtG(He.oncolumnSelectionChange(Z))}),t.YNc(4,_1,4,8,"mat-option",28),t.qZA()()}if(2&N){const b=t.oxw().$implicit,G=t.oxw().$implicit,Z=t.oxw();t.xp6(3),t.hYB("name","",G.pageId,"",b.tableId,"-columns-selection"),t.Q6J("ngModel",b.columnSelection),t.xp6(1),t.Q6J("ngForOf",Z.nodePageDefs[G.pageId][b.tableId].allowedColumns)}}function es(N,V){if(1&N&&(t.TgZ(0,"mat-option",34),t._uU(1),t.ALo(2,"camelCaseWithSpaces"),t.ALo(3,"camelcaseWithReplace"),t.qZA()),2&N){const b=V.$implicit,G=t.oxw().$implicit,Z=t.oxw(2);t.Q6J("value",b.column)("disabled",G.columnSelectionSM.length<=1&&G.columnSelectionSM.includes(b.column)||G.columnSelectionSM.length>=3&&!G.columnSelectionSM.includes(b.column)),t.xp6(1),t.hij(" ",b.label?b.label:"ECL"===Z.selNode.lnImplementation?t.lcZ(2,3,b.column):t.xi3(3,5,b.column,"_")," ")}}const ks=N=>({"ml-minus-1":N});function ls(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",17)(1,"div",18)(2,"span",19),t._uU(3),t.ALo(4,"camelcaseWithReplace"),t.qZA(),t.TgZ(5,"mat-form-field",20)(6,"mat-label"),t._uU(7,"Records/Page"),t.qZA(),t.TgZ(8,"mat-select",21),t.NdJ("ngModelChange",function(Z){const Pt=t.CHM(b).$implicit;return t.KtG(Pt.recordsPerPage=Z)}),t.YNc(9,Rr,2,2,"mat-option",22),t.qZA()(),t.TgZ(10,"mat-form-field",20)(11,"mat-label"),t._uU(12,"Sort By"),t.qZA(),t.TgZ(13,"mat-select",23),t.NdJ("ngModelChange",function(Z){const Pt=t.CHM(b).$implicit;return t.KtG(Pt.sortBy=Z)}),t.YNc(14,D2,4,7,"mat-option",22),t.qZA()(),t.TgZ(15,"mat-form-field",20)(16,"mat-label"),t._uU(17,"Sort Order"),t.qZA(),t.TgZ(18,"mat-select",24),t.NdJ("ngModelChange",function(Z){const Pt=t.CHM(b).$implicit;return t.KtG(Pt.sortOrder=Z)}),t.YNc(19,_d,2,2,"mat-option",22),t.qZA()(),t.YNc(20,Zs,5,4,"mat-form-field",25),t.TgZ(21,"mat-form-field",26)(22,"mat-label"),t._uU(23,"Column Selection (Mobile Resolution)"),t.qZA(),t.TgZ(24,"mat-select",27),t.NdJ("ngModelChange",function(Z){const Pt=t.CHM(b).$implicit;return t.KtG(Pt.columnSelectionSM=Z)}),t.YNc(25,es,4,8,"mat-option",28),t.qZA()(),t.TgZ(26,"button",29),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw().$implicit,ti=t.oxw();return t.KtG(ti.onTableReset(Pt.pageId,He))}),t.TgZ(27,"mat-icon",30),t._uU(28,"restore"),t.qZA()()()()}if(2&N){const b=V.$implicit,G=t.oxw().$implicit,Z=t.oxw();t.xp6(3),t.hij("",t.xi3(4,20,b.tableId,"_"),":"),t.xp6(5),t.hYB("name","",G.pageId,"",b.tableId,"-page-size-options"),t.Q6J("disabled",Z.nodePageDefs[G.pageId][b.tableId].disablePageSize)("ngModel",b.recordsPerPage),t.xp6(1),t.Q6J("ngForOf",Z.pageSizeOptions),t.xp6(4),t.hYB("name","",G.pageId,"",b.tableId,"-sort-by"),t.Q6J("ngModel",b.sortBy),t.xp6(1),t.Q6J("ngForOf",b.columnSelection),t.xp6(4),t.hYB("name","",G.pageId,"",b.tableId,"-sort-order"),t.Q6J("ngModel",b.sortOrder),t.xp6(1),t.Q6J("ngForOf",Z.sortOrders),t.xp6(1),t.Q6J("ngIf",Z.screenSize!==Z.screenSizeEnum.XS),t.xp6(4),t.hYB("name","",G.pageId,"",b.tableId,"-columns-selection-sm"),t.Q6J("ngModel",b.columnSelectionSM),t.xp6(1),t.Q6J("ngForOf",Z.nodePageDefs[G.pageId][b.tableId].allowedColumns),t.xp6(2),t.Q6J("ngClass",t.VKq(23,ks,Z.screenSize===Z.screenSizeEnum.XS||Z.screenSize===Z.screenSizeEnum.SM))}}function Is(N,V){if(1&N&&t.GkF(0,14),2&N){const b=t.oxw(2),G=t.MAs(18);t.Q6J("ngTemplateOutlet",G)("ngTemplateOutletContext",t.VKq(2,fo,b.errorMessage))}}const Tl=N=>({"error-border":N});function Gc(N,V){if(1&N&&(t.TgZ(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t._uU(3),t.ALo(4,"camelcaseWithReplace"),t.qZA()(),t.YNc(5,ls,29,25,"div",16)(6,Is,1,4,"ng-container",6),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.Q6J("ngClass",t.VKq(7,Tl,(null==G.errorMessage?null:G.errorMessage.page)===b.pageId)),t.xp6(3),t.Oqu(t.xi3(4,4,b.pageId,"_")),t.xp6(2),t.Q6J("ngForOf",b.tables),t.xp6(1),t.Q6J("ngIf",G.errorMessage&&(null==G.errorMessage?null:G.errorMessage.page)===b.pageId)}}function Zc(N,V){if(1&N&&(t.TgZ(0,"mat-panel-title"),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&N){const b=t.oxw().error;t.xp6(1),t.hij("Page ",t.lcZ(2,1,b.page),"")}}function Wc(N,V){if(1&N&&(t.TgZ(0,"mat-list-item")(1,"mat-icon",39),t._uU(2,"close"),t.qZA(),t.TgZ(3,"span"),t._uU(4),t.qZA()()),2&N){const b=t.oxw().error;t.xp6(4),t.Oqu(b.message)}}function Aa(N,V){if(1&N&&(t.TgZ(0,"mat-list-item")(1,"mat-icon",39),t._uU(2,"close"),t.qZA(),t.TgZ(3,"span"),t._uU(4),t.ALo(5,"titlecase"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(4),t.AsE("Table ",t.lcZ(5,2,b.table)," ",b.message,"")}}const Al=N=>({"error-border p-2":N});function L2(N,V){if(1&N&&(t.TgZ(0,"div",35),t.YNc(1,Zc,3,3,"mat-panel-title",36),t.TgZ(2,"mat-list",37),t.YNc(3,Wc,5,1,"mat-list-item",36)(4,Aa,6,4,"mat-list-item",38),t.qZA()()),2&N){const b=V.error,G=t.oxw();t.Q6J("ngClass",t.VKq(4,Al,"unknown"===G.errorMessage.page)),t.xp6(1),t.Q6J("ngIf","unknown"===G.errorMessage.page),t.xp6(2),t.Q6J("ngIf",b.message),t.xp6(1),t.Q6J("ngForOf",b.tables)}}let Yc=(()=>{class N{constructor(b,G,Z,He){this.logger=b,this.commonService=G,this.store=Z,this.actions=He,this.faPenRuler=nn.SoD,this.faExclamationTriangle=nn.eHv,this.screenSize="",this.screenSizeEnum=Kt.cu,this.pageSizeOptions=Kt.TJ,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=Kt.zZ,this.apiCallStatus=null,this.apiCallStatusEnum=Kt.Bn,this.errorMessage=null,this.unSubs=[new Yi.x,new Yi.x,new Yi.x,new Yi.x],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{switch(this.selNode=b,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],Kt.gG),this.defaultSettings=Object.assign([],Kt.gG),this.nodePageDefs=Kt.At,this.store.select(Pr.AS).pipe((0,qi.R)(this.unSubs[1]),(0,Jn.M)(this.store.select(Pr.lw))).subscribe(([G,Z])=>{const He=JSON.parse(JSON.stringify(G.pageSettings));if(this.errorMessage=null,this.apiCallStatus=G.apiCallStatus,this.apiCallStatus.status===Kt.Bn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=He,this.initialPageSettings=He;else{if(!Z?.enableOffers){const Pt=He.find(wi=>"transactions"===wi.pageId),ti=Pt?.tables.findIndex(wi=>"offers"===wi.tableId),fi=Pt?.tables.findIndex(wi=>"offer_bookmarks"===wi.tableId);ti>-1&&Pt?.tables.splice(ti,1),fi>-1&&Pt?.tables.splice(fi,1)}if(!Z?.enablePeerswap){const Pt=He.findIndex(ti=>"peerswap"===ti.pageId);Pt>-1&&He.splice(Pt,1)}this.pageSettings=He,this.initialPageSettings=He}this.logger.info(He)}),this.actions.pipe((0,qi.R)(this.unSubs[2]),(0,cr.h)(G=>G.type===Kt.AB.UPDATE_API_CALL_STATUS_CLN||G.type===Kt.AB.SAVE_PAGE_SETTINGS_CLN)).subscribe(G=>{G.type===Kt.AB.UPDATE_API_CALL_STATUS_CLN&&G.payload.status===Kt.Bn.ERROR&&"SavePageSettings"===G.payload.action&&(this.errorMessage=JSON.parse(G.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],Kt.c3),this.defaultSettings=Object.assign([],Kt.c3),this.nodePageDefs=Kt.Xk,this.store.select(Us.nF).pipe((0,qi.R)(this.unSubs[1]),(0,Jn.M)(this.store.select(Us.LR))).subscribe(([G,Z])=>{const He=JSON.parse(JSON.stringify(G.pageSettings));this.errorMessage=null,this.apiCallStatus=G.apiCallStatus,this.apiCallStatus.status===Kt.Bn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=He,this.initialPageSettings=He):(this.pageSettings=He,this.initialPageSettings=He),this.logger.info(He)}),this.actions.pipe((0,qi.R)(this.unSubs[2]),(0,cr.h)(G=>G.type===Kt.lr.UPDATE_API_CALL_STATUS_ECL||G.type===Kt.lr.SAVE_PAGE_SETTINGS_ECL)).subscribe(G=>{G.type===Kt.lr.UPDATE_API_CALL_STATUS_ECL&&G.payload.status===Kt.Bn.ERROR&&"SavePageSettings"===G.payload.action&&(this.errorMessage=JSON.parse(G.payload.message))});break;default:this.initialPageSettings=Object.assign([],Kt.gK),this.defaultSettings=Object.assign([],Kt.gK),this.nodePageDefs=Kt.hG,this.store.select(ko.Pr).pipe((0,qi.R)(this.unSubs[1]),(0,Jn.M)(this.store.select(ko.$k))).subscribe(([G,Z])=>{const He=JSON.parse(JSON.stringify(G.pageSettings));if(this.errorMessage=null,this.apiCallStatus=G.apiCallStatus,this.apiCallStatus.status===Kt.Bn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=He,this.initialPageSettings=He;else{if(!Z?.swapServerUrl||""===Z.swapServerUrl.trim()){const Pt=He.findIndex(ti=>"loop"===ti.pageId);Pt>-1&&He.splice(Pt,1)}if(!Z?.boltzServerUrl||""===Z.boltzServerUrl.trim()){const Pt=He.findIndex(ti=>"boltz"===ti.pageId);Pt>-1&&He.splice(Pt,1)}if(!Z?.enablePeerswap){const Pt=He.findIndex(ti=>"peerswap"===ti.pageId);Pt>-1&&He.splice(Pt,1)}this.pageSettings=He,this.initialPageSettings=He}this.logger.info(He)}),this.actions.pipe((0,qi.R)(this.unSubs[2]),(0,cr.h)(G=>G.type===Kt.uR.UPDATE_API_CALL_STATUS_LND||G.type===Kt.uR.SAVE_PAGE_SETTINGS_LND)).subscribe(G=>{G.type===Kt.uR.UPDATE_API_CALL_STATUS_LND&&G.payload.status===Kt.Bn.ERROR&&"SavePageSettings"===G.payload.action&&(this.errorMessage=JSON.parse(G.payload.message))})}})}oncolumnSelectionChange(b){b.columnSelection&&(!b.sortBy||!b.columnSelection.includes(b.sortBy))&&(b.sortBy=b.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((b,G)=>b||G.tables.reduce((Z,He)=>!(He.recordsPerPage&&He.sortBy&&He.sortOrder&&He.columnSelection&&He.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,Wn.eF)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,qn.eF)({payload:this.pageSettings}));break;default:this.store.dispatch((0,xr.eF)({payload:this.pageSettings}))}}onTableReset(b,G){const Z=this.pageSettings.findIndex(ti=>ti.pageId===b),He=this.pageSettings[Z].tables.findIndex(ti=>ti.tableId===G.tableId),Pt=this.defaultSettings.find(ti=>ti.pageId===b)?.tables.find(ti=>ti.tableId===G.tableId)||this.pageSettings.find(ti=>ti.pageId===b)?.tables.find(ti=>ti.tableId===G.tableId);this.pageSettings[Z].tables.splice(He,1,Pt)}onResetPageSettings(b){"current"===b?(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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(na.v),t.Y36(Vi.yh),t.Y36(lo.eX))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-page-settings"]],decls:19,vars:3,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"],[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",1,"mb-2"],["fxLayout","column","fxFlex","10"],["tabindex","2","required","",3,"disabled","name","ngModel","ngModelChange"],[3,"value",4,"ngFor","ngForOf"],["tabindex","3","required","",3,"name","ngModel","ngModelChange"],["tabindex","4","required","",3,"name","ngModel","ngModelChange"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxLayout","column","fxFlex","15","matTooltip","Select between 1 and 3 columns"],["tabindex","5","multiple","","required","",3,"name","ngModel","ngModelChange"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",1,"mb-2",3,"click"],["color","primary",3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["tabindex","6","multiple","","required","",3,"name","ngModel","ngModelChange","selectionChange"],[3,"value","disabled"],[3,"ngClass"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"form",1,2)(3,"div",3),t._UZ(4,"fa-icon",4),t.TgZ(5,"span",5),t._uU(6,"Grid Settings"),t.qZA()(),t.YNc(7,yc,1,4,"ng-container",6),t.TgZ(8,"mat-accordion",7),t.YNc(9,Gc,7,9,"mat-expansion-panel",8),t.qZA()(),t.TgZ(10,"div",9)(11,"button",10),t.NdJ("click",function(){return Z.onResetPageSettings("current")}),t._uU(12,"Reset"),t.qZA(),t.TgZ(13,"button",11),t.NdJ("click",function(){return Z.onResetPageSettings("default")}),t._uU(14,"Reset to Default"),t.qZA(),t.TgZ(15,"button",12),t.NdJ("click",function(){return Z.onUpdatePageSettings()}),t._uU(16,"Save"),t.qZA()()(),t.YNc(17,L2,5,6,"ng-template",null,13,t.W1O)),2&G&&(t.xp6(4),t.Q6J("icon",Z.faPenRuler),t.xp6(3),t.Q6J("ngIf",Z.errorMessage&&"unknown"===Z.errorMessage.page),t.xp6(2),t.Q6J("ngForOf",Z.pageSettings))},dependencies:[sn.mk,sn.sg,sn.O5,sn.tP,Pe._Y,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,me.oO,pt.lW,pt.RK,Oe.pp,Oe.ib,Oe.yz,Oe.yK,wo.Hw,Qt.KE,Qt.hX,Bs.i$,Bs.Tg,Re.gD,ft.ey,Gs.gM,_t.$V,sn.rS,cs.D3,cs.i1],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]})}return N})();function jc(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[0].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[0].link),t.Q6J("active",b.activeLink===b.links[0].link),t.xp6(1),t.Oqu(b.links[0].name)}}const xc=()=>({initial:!1});function Af(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",12),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[1].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[1].link),t.Q6J("active",b.activeLink===b.links[1].link)("state",t.DdM(4,xc)),t.xp6(1),t.Oqu(b.links[1].name)}}function v1(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",13),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.activeLink=Z.links[2].link)}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw();t.s9C("routerLink",b.links[2].link),t.Q6J("active",b.activeLink===b.links[2].link),t.xp6(1),t.Oqu(b.links[2].name)}}let Df=(()=>{class N{constructor(b,G,Z){this.store=b,this.router=G,this.activatedRoute=Z,this.faLayerGroup=nn.Krp,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"peerswap",name:"Peerswap"}],this.activeLink="",this.unSubs=[new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){const b=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,qi.R)(this.unSubs[0]),(0,cr.h)(G=>G instanceof Xn.Av)).subscribe({next:G=>{const Z=this.links.find(He=>G.urlAfterRedirects.includes(He.link));this.activeLink="CLN"===this.selNode.lnImplementation.toUpperCase()?this.links[2].link:Z?Z.link:this.links[0].link}}),this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[1])).subscribe(G=>{this.selNode=G,"CLN"===this.selNode.lnImplementation.toUpperCase()&&(this.activeLink=this.links[2].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Vi.yh),t.Y36(Xn.F0),t.Y36(Xn.gz))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-services-settings"]],decls:16,vars:5,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","my-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabPanel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","state","click"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(G,Z){if(1&G&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span",3),t._uU(4,"Services"),t.qZA()()(),t.TgZ(5,"div",4)(6,"mat-card")(7,"mat-card-content",4)(8,"nav",5),t.YNc(9,jc,2,3,"div",6)(10,Af,2,5,"div",7)(11,v1,2,3,"div",8),t.qZA(),t._UZ(12,"mat-tab-nav-panel",null,9),t.TgZ(14,"div",10),t._UZ(15,"router-outlet"),t.qZA()()()()),2&G){const He=t.MAs(13);t.xp6(2),t.Q6J("icon",Z.faLayerGroup),t.xp6(6),t.Q6J("tabPanel",He),t.xp6(1),t.Q6J("ngIf","LND"===(null==Z.selNode||null==Z.selNode.lnImplementation?null:Z.selNode.lnImplementation.toUpperCase())),t.xp6(1),t.Q6J("ngIf","LND"===(null==Z.selNode||null==Z.selNode.lnImplementation?null:Z.selNode.lnImplementation.toUpperCase())),t.xp6(1),t.Q6J("ngIf","CLN"===(null==Z.selNode||null==Z.selNode.lnImplementation?null:Z.selNode.lnImplementation.toUpperCase()))}},dependencies:[sn.O5,qr.BN,$i.xw,$i.Wh,$i.yH,or.a8,or.dn,ta.BU,ta.sW,ta.Nj,Xn.lC,Xn.rH]})}return N})();const vd=["form"];function Lf(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Loop server URL is required."),t.qZA())}function Eh(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Specify the loop server url with 'https://'."),t.qZA())}function sm(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Loop macaroon path is required."),t.qZA())}let Dl=(()=>{class N{constructor(b,G){this.logger=b,this.store=G,this.faInfoCircle=nn.sqG,this.enableLoop=!1,this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableLoop=!(!b.settings.swapServerUrl||""===b.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(b)})}onEnableServiceChanged(b){this.enableLoop=b.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,_e.jS)({payload:{uiMessage:Kt.m6.UPDATE_LOOP_SETTINGS,service:Kt.JX.LOOP,settings:{enable:this.enableLoop,serverUrl:this.selNode.settings.swapServerUrl,macaroonPath:this.selNode.authentication.swapMacaroonPath}}})),this.store.dispatch((0,xr.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,Wn.Mf)({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,qn.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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Vi.yh))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-loop-service-settings"]],viewQuery:function(G,Z){if(1&G&&t.Gf(vd,7),2&G){let He;t.iGM(He=t.CRH())&&(Z.form=He.first)}},decls:38,vars:11,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[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,"ml-2",3,"ngModel","ngModelChange","change"],[1,"mb-2"],["matInput","","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"required","disabled","ngModel","ngModelChange"],["srvrUrl","ngModel"],[4,"ngIf"],["matInput","","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"required","disabled","ngModel","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(G,Z){if(1&G&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span"),t._uU(4,"Please ensure that "),t.TgZ(5,"strong"),t._uU(6,"loopd"),t.qZA(),t._uU(7," is running and accessible to RTL before enabling this service. Click "),t.TgZ(8,"strong")(9,"a",3),t._uU(10,"here"),t.qZA()(),t._uU(11," to learn more about the installation."),t.qZA()(),t.TgZ(12,"form",4,5)(14,"div",6)(15,"mat-slide-toggle",7),t.NdJ("ngModelChange",function(Pt){return Z.enableLoop=Pt})("change",function(Pt){return Z.onEnableServiceChanged(Pt)}),t._uU(16,"Enable Loop Service"),t.qZA(),t.TgZ(17,"mat-form-field",8)(18,"mat-label"),t._uU(19,"Loop Server URL"),t.qZA(),t.TgZ(20,"input",9,10),t.NdJ("ngModelChange",function(Pt){return Z.selNode.settings.swapServerUrl=Pt}),t.qZA(),t.TgZ(22,"mat-hint"),t._uU(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),t.qZA(),t.YNc(24,Lf,2,0,"mat-error",11)(25,Eh,2,0,"mat-error",11),t.qZA(),t.TgZ(26,"mat-form-field")(27,"mat-label"),t._uU(28,"Loop Macaroon Path"),t.qZA(),t.TgZ(29,"input",12),t.NdJ("ngModelChange",function(Pt){return Z.selNode.authentication.swapMacaroonPath=Pt}),t.qZA(),t.TgZ(30,"mat-hint"),t._uU(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),t.qZA(),t.YNc(32,sm,2,0,"mat-error",11),t.qZA()()(),t.TgZ(33,"div",13)(34,"button",14),t.NdJ("click",function(){return Z.onReset()}),t._uU(35,"Reset"),t.qZA(),t.TgZ(36,"button",15),t.NdJ("click",function(){return Z.onUpdateService()}),t._uU(37,"Update"),t.qZA()()()),2&G){const He=t.MAs(21);t.xp6(2),t.Q6J("icon",Z.faInfoCircle),t.xp6(13),t.Q6J("ngModel",Z.enableLoop),t.xp6(5),t.Q6J("required",Z.enableLoop)("disabled",!Z.enableLoop)("ngModel",Z.selNode.settings.swapServerUrl),t.xp6(4),t.Q6J("ngIf",!Z.selNode.settings.swapServerUrl&&Z.enableLoop),t.xp6(1),t.Q6J("ngIf",(null==He||null==He.errors?null:He.errors.invalid)&&Z.enableLoop),t.xp6(4),t.Q6J("required",Z.enableLoop)("disabled",!Z.enableLoop)("ngModel",Z.selNode.authentication.swapMacaroonPath),t.xp6(3),t.Q6J("ngIf",!Z.selNode.authentication.swapMacaroonPath&&Z.enableLoop)}},dependencies:[sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,pt.lW,Ln.Nt,Qt.KE,Qt.hX,Qt.bx,Qt.TO,Ne.Rr,_t.$V,Lt.h],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return N})();const b1=["form"];function kf(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Boltz server URL is required."),t.qZA())}function Ll(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Specify the boltz server url with 'https://'."),t.qZA())}function y1(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Boltz macaroon path is required."),t.qZA())}let x1=(()=>{class N{constructor(b,G){this.logger=b,this.store=G,this.faInfoCircle=nn.sqG,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new Yi.x,new Yi.x]}ngOnInit(){this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableBoltz=!(!b.settings.boltzServerUrl||""===b.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(b)})}onEnableServiceChanged(b){this.enableBoltz=b.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,_e.jS)({payload:{uiMessage:Kt.m6.UPDATE_BOLTZ_SETTINGS,service:Kt.JX.BOLTZ,settings:{enable:this.enableBoltz,serverUrl:this.serverUrl,macaroonPath:this.macaroonPath}}})),this.store.dispatch((0,xr.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,Wn.Mf)({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,qn.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(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Vi.yh))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(G,Z){if(1&G&&t.Gf(b1,7),2&G){let He;t.iGM(He=t.CRH())&&(Z.form=He.first)}},decls:38,vars:11,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[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,"ml-2",3,"ngModel","ngModelChange","change"],[1,"mb-2"],["matInput","","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"required","disabled","ngModel","ngModelChange"],["srvrUrl","ngModel"],[4,"ngIf"],["matInput","","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"required","disabled","ngModel","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(G,Z){if(1&G&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span"),t._uU(4,"Please ensure that "),t.TgZ(5,"strong"),t._uU(6,"boltzd"),t.qZA(),t._uU(7," is running and accessible to RTL before enabling this service. Click "),t.TgZ(8,"strong")(9,"a",3),t._uU(10,"here"),t.qZA()(),t._uU(11," to learn more about the installation."),t.qZA()(),t.TgZ(12,"form",4,5)(14,"div",6)(15,"mat-slide-toggle",7),t.NdJ("ngModelChange",function(Pt){return Z.enableBoltz=Pt})("change",function(Pt){return Z.onEnableServiceChanged(Pt)}),t._uU(16,"Enable Boltz Service"),t.qZA(),t.TgZ(17,"mat-form-field",8)(18,"mat-label"),t._uU(19,"Boltz Server URL"),t.qZA(),t.TgZ(20,"input",9,10),t.NdJ("ngModelChange",function(Pt){return Z.serverUrl=Pt}),t.qZA(),t.TgZ(22,"mat-hint"),t._uU(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),t.qZA(),t.YNc(24,kf,2,0,"mat-error",11)(25,Ll,2,0,"mat-error",11),t.qZA(),t.TgZ(26,"mat-form-field")(27,"mat-label"),t._uU(28,"Boltz Macaroon Path"),t.qZA(),t.TgZ(29,"input",12),t.NdJ("ngModelChange",function(Pt){return Z.macaroonPath=Pt}),t.qZA(),t.TgZ(30,"mat-hint"),t._uU(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),t.qZA(),t.YNc(32,y1,2,0,"mat-error",11),t.qZA()()(),t.TgZ(33,"div",13)(34,"button",14),t.NdJ("click",function(){return Z.onReset()}),t._uU(35,"Reset"),t.qZA(),t.TgZ(36,"button",15),t.NdJ("click",function(){return Z.onUpdateService()}),t._uU(37,"Update"),t.qZA()()()),2&G){const He=t.MAs(21);t.xp6(2),t.Q6J("icon",Z.faInfoCircle),t.xp6(13),t.Q6J("ngModel",Z.enableBoltz),t.xp6(5),t.Q6J("required",Z.enableBoltz)("disabled",!Z.enableBoltz)("ngModel",Z.serverUrl),t.xp6(4),t.Q6J("ngIf",(!Z.serverUrl||""===Z.serverUrl.trim())&&Z.enableBoltz),t.xp6(1),t.Q6J("ngIf",(null==He||null==He.errors?null:He.errors.invalid)&&Z.enableBoltz),t.xp6(4),t.Q6J("required",Z.enableBoltz)("disabled",!Z.enableBoltz)("ngModel",Z.macaroonPath),t.xp6(3),t.Q6J("ngIf",!Z.macaroonPath&&Z.enableBoltz)}},dependencies:[sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,pt.lW,Ln.Nt,Qt.KE,Qt.hX,Qt.bx,Qt.TO,Ne.Rr,_t.$V,Lt.h],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return N})(),Kc=(()=>{class N{constructor(){}static#e=this.\u0275fac=function(G){return new(G||N)};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(G,Z){1&G&&t._UZ(0,"router-outlet")},dependencies:[Xn.lC]})}return N})();var kl=p(5487),C1=p(3149),Qc=p(1476),Io=p(3566),ur=p(5313),qc=p(6007);function bd(N,V){if(1&N&&(t.TgZ(0,"mat-option",37),t._uU(1),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.Q6J("value",b),t.xp6(1),t.Oqu(G.getLabel(b))}}function Th(N,V){1&N&&t._UZ(0,"mat-progress-bar",38)}function w1(N,V){1&N&&(t.TgZ(0,"th",39),t._uU(1,"State"),t.qZA())}function k2(N,V){if(1&N&&(t.TgZ(0,"td",40),t._uU(1),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Oqu(G.LoopStateEnum[null==b?null:b.state])}}function If(N,V){1&N&&(t.TgZ(0,"th",39),t._uU(1,"Initiation Time"),t.qZA())}function I2(N,V){if(1&N&&(t.TgZ(0,"td",40),t._uU(1),t.ALo(2,"date"),t.qZA()),2&N){const b=V.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,(null==b?null:b.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function Ah(N,V){1&N&&(t.TgZ(0,"th",39),t._uU(1,"Last Update Time"),t.qZA())}function Dh(N,V){if(1&N&&(t.TgZ(0,"td",40),t._uU(1),t.ALo(2,"date"),t.qZA()),2&N){const b=V.$implicit;t.xp6(1),t.Oqu(t.xi3(2,1,(null==b?null:b.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function Xs(N,V){1&N&&(t.TgZ(0,"th",41),t._uU(1,"Amount (Sats)"),t.qZA())}function O2(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",42),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==b?null:b.amt))}}function M1(N,V){1&N&&(t.TgZ(0,"th",41),t._uU(1,"Cost Server (Sats)"),t.qZA())}function Js(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",42),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==b?null:b.cost_server))}}function Lh(N,V){1&N&&(t.TgZ(0,"th",41),t._uU(1,"Cost Offchain (Sats)"),t.qZA())}function P2(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",42),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==b?null:b.cost_offchain))}}function yd(N,V){1&N&&(t.TgZ(0,"th",41),t._uU(1,"Cost Onchain (Sats)"),t.qZA())}function Xc(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",42),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.hij(" ",t.lcZ(3,1,null==b?null:b.cost_onchain)," ")}}function Il(N,V){1&N&&(t.TgZ(0,"th",39),t._uU(1,"HTLC Address"),t.qZA())}const Na=N=>({width:N});function kh(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",43)(2,"span",44),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Na,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.htlc_address)}}function Ih(N,V){1&N&&(t.TgZ(0,"th",39),t._uU(1,"ID"),t.qZA())}function R2(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",43)(2,"span",44),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Na,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.id)}}function Of(N,V){1&N&&(t.TgZ(0,"th",39),t._uU(1,"ID (Bytes)"),t.qZA())}function Oh(N,V){if(1&N&&(t.TgZ(0,"td",40)(1,"span",43)(2,"span",44),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Na,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.id_bytes)}}function Ol(N,V){if(1&N){const b=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(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function Pl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"td",49)(1,"button",50),t.NdJ("click",function(Z){const Pt=t.CHM(b).$implicit,ti=t.oxw();return t.KtG(ti.onSwapClick(Pt,Z))}),t._uU(2,"View Info"),t.qZA()()}}function Cc(N,V){if(1&N&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.Oqu(b.emptyTableMessage)}}function Rl(N,V){if(1&N&&(t.TgZ(0,"td",51),t.YNc(1,Cc,2,1,"p",52),t.qZA()),2&N){const b=t.oxw();t.xp6(1),t.Q6J("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}const Nl=N=>({"display-none":N});function xd(N,V){if(1&N&&t._UZ(0,"tr",53),2&N){const b=t.oxw();t.Q6J("ngClass",t.VKq(1,Nl,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Ws(N,V){1&N&&t._UZ(0,"tr",54)}function cm(N,V){1&N&&t._UZ(0,"tr",55)}const N2=()=>["all"],lm=N=>({"overflow-auto error-border":N,"overflow-auto":!0}),Pf=()=>["no_swap"];let Rf=(()=>{class N{constructor(b,G,Z,He,Pt,ti){this.logger=b,this.commonService=G,this.store=Z,this.loopService=He,this.datePipe=Pt,this.camelCaseWithReplace=ti,this.selectedSwapType=Kt.$I.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Kt.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:Kt.IV,sortBy:"initiation_time",sortOrder:Kt.Pi.DESCENDING},this.LoopStateEnum=Kt.Fq,this.faHistory=nn.qO$,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new ur.by([]),this.selFilter="",this.pageSize=Kt.IV,this.pageSizeOptions=Kt.TJ,this.screenSize="",this.screenSizeEnum=Kt.cu,this.unSubs=[new Yi.x,new Yi.x,new Yi.x],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){this.swapCaption=this.selectedSwapType===Kt.$I.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(ko.Pr).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.tableSetting=b.pageSettings.find(G=>G.pageId===this.PAGE_ID)?.tables.find(G=>G.tableId===this.tableSetting.tableId)||Kt.gK.find(G=>G.pageId===this.PAGE_ID)?.tables.find(G=>G.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===Kt.cu.XS||this.screenSize===Kt.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:Kt.IV,this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(b){const G=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(Z=>Z.column===b);return G?G.label?G.label:this.camelCaseWithReplace.transform(G.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,G)=>{let Z="";switch(this.selFilterBy){case"all":Z=JSON.stringify(b).toLowerCase();break;case"state":Z=b?.state?this.LoopStateEnum[b?.state]:"";break;case"initiation_time":case"last_update_time":Z=this.datePipe.transform(new Date((b[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:Z=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===Z.indexOf(G):Z.includes(G)}}onSwapClick(b,G){this.loopService.getSwap(b.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,qi.R)(this.unSubs[1])).subscribe(Z=>{this.store.dispatch((0,_e.qR)({payload:{data:{type:Kt.n_.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:Kt.Fq[Z.state||""],title:"Status",width:50,type:Kt.Gi.STRING},{key:"amt",value:Z.amt,title:"Amount (Sats)",width:50,type:Kt.Gi.NUMBER}],[{key:"initiation_time",value:(Z.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:Kt.Gi.DATE_TIME},{key:"last_update_time",value:(Z.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:Kt.Gi.DATE_TIME}],[{key:"cost_server",value:Z.cost_server,title:"Server Cost (Sats)",width:33,type:Kt.Gi.NUMBER},{key:"cost_offchain",value:Z.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:Kt.Gi.NUMBER},{key:"cost_onchain",value:Z.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:Kt.Gi.NUMBER}],[{key:"id_bytes",value:Z.id_bytes,title:"ID",width:100,type:Kt.Gi.STRING}],[{key:"htlc_address",value:Z.htlc_address,title:"HTLC Address",width:100,type:Kt.Gi.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new ur.by([...b]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(G,Z)=>G[Z]&&isNaN(G[Z])?G[Z].toLocaleLowerCase():G[Z]?+G[Z]:null,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===Kt.$I.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(na.v),t.Y36(Vi.yh),t.Y36(C1.W),t.Y36(sn.uU),t.Y36(cs.D3))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-swaps"]],viewQuery:function(G,Z){if(1&G&&(t.Gf(Io.YE,5),t.Gf(Qc.NW,5)),2&G){let He;t.iGM(He=t.CRH())&&(Z.sort=He.first),t.iGM(He=t.CRH())&&(Z.paginator=He.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t._Bn([{provide:Re.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Qc.ye,useValue:(0,Kt.pt)("Swaps")}]),t.TTD],decls:61,vars:20,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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(G,Z){1&G&&(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),t.qZA()(),t.TgZ(6,"div",5)(7,"mat-form-field",6)(8,"mat-label"),t._uU(9,"Filter By"),t.qZA(),t.TgZ(10,"mat-select",7),t.NdJ("ngModelChange",function(Pt){return Z.selFilterBy=Pt})("selectionChange",function(){return Z.selFilter="",Z.applyFilter()}),t.TgZ(11,"perfect-scrollbar"),t.YNc(12,bd,2,2,"mat-option",8),t.qZA()()(),t.TgZ(13,"mat-form-field",6)(14,"mat-label"),t._uU(15,"Filter"),t.qZA(),t.TgZ(16,"input",9),t.NdJ("ngModelChange",function(Pt){return Z.selFilter=Pt})("input",function(){return Z.applyFilter()})("keyup",function(){return Z.applyFilter()}),t.qZA()()()(),t.TgZ(17,"div",10)(18,"div",11),t.YNc(19,Th,1,0,"mat-progress-bar",12),t.TgZ(20,"table",13,14),t.ynx(22,15),t.YNc(23,w1,2,0,"th",16)(24,k2,2,1,"td",17),t.BQk(),t.ynx(25,18),t.YNc(26,If,2,0,"th",16)(27,I2,3,4,"td",17),t.BQk(),t.ynx(28,19),t.YNc(29,Ah,2,0,"th",16)(30,Dh,3,4,"td",17),t.BQk(),t.ynx(31,20),t.YNc(32,Xs,2,0,"th",21)(33,O2,4,3,"td",17),t.BQk(),t.ynx(34,22),t.YNc(35,M1,2,0,"th",21)(36,Js,4,3,"td",17),t.BQk(),t.ynx(37,23),t.YNc(38,Lh,2,0,"th",21)(39,P2,4,3,"td",17),t.BQk(),t.ynx(40,24),t.YNc(41,yd,2,0,"th",21)(42,Xc,4,3,"td",17),t.BQk(),t.ynx(43,25),t.YNc(44,Il,2,0,"th",16)(45,kh,4,4,"td",17),t.BQk(),t.ynx(46,26),t.YNc(47,Ih,2,0,"th",16)(48,R2,4,4,"td",17),t.BQk(),t.ynx(49,27),t.YNc(50,Of,2,0,"th",16)(51,Oh,4,4,"td",17),t.BQk(),t.ynx(52,28),t.YNc(53,Ol,6,0,"th",29)(54,Pl,3,0,"td",30),t.BQk(),t.ynx(55,31),t.YNc(56,Rl,2,1,"td",32),t.BQk(),t.YNc(57,xd,1,3,"tr",33)(58,Ws,1,0,"tr",34)(59,cm,1,0,"tr",35),t.qZA(),t._UZ(60,"mat-paginator",36),t.qZA()()()),2&G&&(t.xp6(3),t.Q6J("icon",Z.faHistory),t.xp6(2),t.hij("",Z.swapCaption," History"),t.xp6(5),t.Q6J("ngModel",Z.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(16,N2).concat(Z.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",Z.selFilter),t.xp6(3),t.Q6J("ngIf",!0===Z.flgLoading[0]),t.xp6(1),t.Q6J("matSortActive",Z.tableSetting.sortBy)("matSortDirection",Z.tableSetting.sortOrder)("dataSource",Z.listSwaps)("ngClass",t.VKq(17,lm,"error"===Z.flgLoading[0])),t.xp6(37),t.Q6J("matFooterRowDef",t.DdM(19,Pf)),t.xp6(1),t.Q6J("matHeaderRowDef",Z.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",Z.displayedColumns),t.xp6(1),t.Q6J("pageSize",Z.pageSize)("pageSizeOptions",Z.pageSizeOptions)("showFirstLastButtons",Z.screenSize!==Z.screenSizeEnum.XS))},dependencies:[sn.mk,sn.sg,sn.O5,sn.PC,Pe.Fj,Pe.JJ,Pe.On,qr.BN,$i.xw,$i.Wh,$i.yH,me.oO,me.Zl,pt.lW,Ln.Nt,Qt.KE,Qt.hX,qc.pW,Re.gD,Re.$L,ft.ey,Io.YE,Io.nU,ur.BZ,ur.fO,ur.as,ur.w1,ur.Dz,ur.nj,ur.mD,ur.Ke,ur.ge,ur.ev,ur.yh,ur.XQ,ur.Gk,ur.Q2,Qc.NW,_t.Vv,_t.$V,sn.JJ,sn.uU]})}return N})();const Nf=N=>["../",N];function Cd(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",11),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw();return t.KtG(Pt.onSelectedIndexChange(He))}),t._uU(1),t.qZA()}if(2&N){const b=V.$implicit,G=t.oxw();t.Q6J("active",G.activeTab.link===b.link)("routerLink",t.VKq(3,Nf,b.link)),t.xp6(1),t.Oqu(b.name)}}let H2=(()=>{class N{constructor(b,G,Z){this.router=b,this.loopService=G,this.store=Z,this.faInfinity=nn.vqe,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=Kt.$I,this.selectedSwapType=Kt.$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 Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.store.dispatch((0,_e.ac)({payload:Kt.m6.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,qi.R)(this.unSubs[4])).subscribe({next:G=>{this.store.dispatch((0,_e.uO)({payload:Kt.m6.GET_LOOP_INFO})),this.loopInfo=G,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:G=>{this.store.dispatch((0,_e.uO)({payload:Kt.m6.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const b=this.links.find(G=>this.router.url.includes(G.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"loopin"===b.link?Kt.$I.LOOP_IN:Kt.$I.LOOP_OUT,this.router.events.pipe((0,qi.R)(this.unSubs[0]),(0,cr.h)(G=>G instanceof Xn.Av)).subscribe({next:G=>{const Z=this.links.find(He=>G.urlAfterRedirects.includes(He.link));this.activeTab=Z||this.links[0],this.selectedSwapType=Z&&"loopin"===Z.link?Kt.$I.LOOP_IN:Kt.$I.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,qi.R)(this.unSubs[1])).subscribe({next:G=>{this.flgLoading[0]=!1,this.storedSwaps=G,this.filteredSwaps=this.storedSwaps?.filter(Z=>Z.type===this.selectedSwapType)},error:G=>{this.flgLoading[0]="error",this.emptyTableMessage=G.message?G.message:"No loop "+(this.selectedSwapType===Kt.$I.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){this.selectedSwapType="loopin"===b.link?Kt.$I.LOOP_IN:Kt.$I.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(G=>G.type===this.selectedSwapType)}onLoop(b){b===Kt.$I.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,qi.R)(this.unSubs[2])).subscribe({next:G=>{this.store.dispatch((0,_e.qR)({payload:{data:{minQuote:G[0],maxQuote:G[1],direction:b,component:kl.a}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,qi.R)(this.unSubs[3])).subscribe({next:G=>{this.store.dispatch((0,_e.qR)({payload:{data:{minQuote:G[0],maxQuote:G[1],direction:b,component:kl.a}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xn.F0),t.Y36(C1.W),t.Y36(Vi.yh))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-loop"]],decls:15,vars:9,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(G,Z){if(1&G&&(t.TgZ(0,"div",0),t._UZ(1,"fa-icon",1),t.TgZ(2,"span",2),t._uU(3),t.qZA()(),t.TgZ(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"nav",5),t.YNc(8,Cd,2,5,"div",6),t.qZA(),t._UZ(9,"mat-tab-nav-panel",null,7),t.TgZ(11,"div",8)(12,"button",9),t.NdJ("click",function(){return Z.onLoop(Z.selectedSwapType)}),t._uU(13),t.qZA()(),t._UZ(14,"rtl-swaps",10),t.qZA()()()),2&G){const He=t.MAs(10);t.xp6(1),t.Q6J("icon",Z.faInfinity),t.xp6(2),t.hij("Loop (v",(null==Z.loopInfo?null:Z.loopInfo.version)||" Unknown",")"),t.xp6(4),t.Q6J("tabPanel",He),t.xp6(1),t.Q6J("ngForOf",Z.links),t.xp6(5),t.hij("Start ",Z.activeTab.name,""),t.xp6(1),t.Q6J("selectedSwapType",Z.selectedSwapType)("swapsData",Z.filteredSwaps)("flgLoading",Z.flgLoading)("emptyTableMessage",Z.emptyTableMessage)}},dependencies:[sn.sg,qr.BN,$i.xw,$i.Wh,$i.yH,pt.lW,or.a8,or.dn,ta.BU,ta.sW,ta.Nj,Xn.rH,Rf]})}return N})();var Zo=p(8291),Hf=p(5619),wd=p(8504),Da=p(6306),wc=p(3315);let Os=(()=>{class N{constructor(b,G,Z,He){this.httpClient=b,this.logger=G,this.store=Z,this.commonService=He,this.swapUrl="",this.swaps={},this.swapsChanged=new Hf.X({}),this.unSubs=[new Yi.x,new Yi.x,new Yi.x]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,_e.ac)({payload:Kt.m6.GET_BOLTZ_SWAPS})),this.swapUrl=Kt.T5+Kt.vv.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,qi.R)(this.unSubs[0])).subscribe({next:b=>{this.store.dispatch((0,_e.uO)({payload:Kt.m6.GET_BOLTZ_SWAPS})),this.swaps=b,this.swapsChanged.next(this.swaps)},error:b=>this.swapsChanged.error(this.handleErrorWithAlert(Kt.m6.GET_BOLTZ_SWAPS,this.swapUrl,b))})}swapInfo(b){return this.swapUrl=Kt.T5+Kt.vv.BOLTZ_API+"/swapInfo/"+b,this.httpClient.get(this.swapUrl).pipe((0,Da.K)(G=>(0,va.of)(this.handleErrorWithAlert(Kt.m6.NO_SPINNER,this.swapUrl,G))))}serviceInfo(){return this.store.dispatch((0,_e.ac)({payload:Kt.m6.GET_SERVICE_INFO})),this.swapUrl=Kt.T5+Kt.vv.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,qi.R)(this.unSubs[1]),(0,Ir.U)(b=>(this.store.dispatch((0,_e.uO)({payload:Kt.m6.GET_SERVICE_INFO})),b)),(0,Da.K)(b=>(0,va.of)(this.handleErrorWithAlert(Kt.m6.GET_SERVICE_INFO,this.swapUrl,b))))}swapOut(b,G){const Z={amount:b,address:G};return this.swapUrl=Kt.T5+Kt.vv.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Z).pipe((0,Da.K)(He=>this.handleErrorWithoutAlert("Swap Out for Address: "+G,Kt.m6.NO_SPINNER,He)))}swapIn(b){const G={amount:b};return this.swapUrl=Kt.T5+Kt.vv.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,G).pipe((0,Da.K)(Z=>this.handleErrorWithoutAlert("Swap In for Amount: "+b,Kt.m6.NO_SPINNER,Z)))}handleErrorWithoutAlert(b,G,Z){let He="";return this.logger.error("ERROR IN: "+b+"\n"+JSON.stringify(Z)),this.store.dispatch((0,_e.uO)({payload:G})),401===Z.status?(He="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,_e.kS)())):503===Z.status?(He="Unable to Connect to Boltz Server.",this.store.dispatch((0,_e.qR)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:Z.status,message:"Unable to Connect to Boltz Server",URL:b},component:wc.H}}}))):He=this.commonService.extractErrorMessage(Z),(0,wd._)(()=>new Error(He))}handleErrorWithAlert(b,G,Z){let He="";if(401===Z.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,_e.kS)())),this.logger.error(Z),this.store.dispatch((0,_e.uO)({payload:b})),401===Z.status)He="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,_e.kS)());else if(503===Z.status)He="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,_e.qR)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:Z.status,message:"Unable to Connect to Boltz Server",URL:G},component:wc.H}}}))},100);else{He=this.commonService.extractErrorMessage(Z);const Pt=Z.error&&Z.error.error&&Z.error.error.code?Z.error.error.code:Z.error&&Z.error.code?Z.error.code:Z.code?Z.code:Z.status;setTimeout(()=>{this.store.dispatch((0,_e.qR)({payload:{data:{type:Kt.n_.ERROR,alertTitle:"ERROR",message:{code:Pt,message:He,URL:G},component:wc.H}}}))},100)}return{message:He}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.LFG(yo.eN),t.LFG(Tt.mQ),t.LFG(Vi.yh),t.LFG(na.v))};static#t=this.\u0275prov=t.Yz7({token:N,factory:N.\u0275fac})}return N})();function Ff(N,V){1&N&&t.GkF(0)}function Wo(N,V){if(1&N&&(t.TgZ(0,"div",4)(1,"span",5),t._uU(2),t.qZA()()),2&N){const b=t.oxw();t.xp6(2),t.Oqu(null!=b.swapStatus&&b.swapStatus.error?null==b.swapStatus?null:b.swapStatus.error:"Unknown Error.")}}function ds(N,V){if(1&N&&(t.TgZ(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),t._uU(4,"ID"),t.qZA(),t.TgZ(5,"span",5),t._uU(6),t.qZA()(),t.TgZ(7,"div",7)(8,"h4",8),t._uU(9,"Routing Fee (mSats)"),t.qZA(),t.TgZ(10,"span",5),t._uU(11),t.ALo(12,"number"),t.qZA()()(),t._UZ(13,"mat-divider",9),t.TgZ(14,"div",6)(15,"div",7)(16,"h4",8),t._uU(17,"Claim Transaction ID"),t.qZA(),t.TgZ(18,"span",5),t._uU(19),t.qZA()(),t.TgZ(20,"div",7)(21,"h4",8),t._uU(22,"Lockup Address"),t.qZA(),t.TgZ(23,"span",5),t._uU(24),t.qZA()()()()),2&N){const b=t.oxw();t.xp6(6),t.Oqu(null==b.swapStatus?null:b.swapStatus.id),t.xp6(5),t.Oqu(t.lcZ(12,4,null==b.swapStatus?null:b.swapStatus.routingFeeMilliSat)),t.xp6(8),t.Oqu(null==b.swapStatus?null:b.swapStatus.claimTransactionId),t.xp6(5),t.Oqu(null==b.swapStatus?null:b.swapStatus.lockupAddress)}}function Md(N,V){if(1&N&&(t.TgZ(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),t._uU(4,"ID"),t.qZA(),t.TgZ(5,"span",5),t._uU(6),t.qZA()(),t.TgZ(7,"div",7)(8,"h4",8),t._uU(9,"Expected Amount (Sats)"),t.qZA(),t.TgZ(10,"span",5),t._uU(11),t.ALo(12,"number"),t.qZA()()(),t._UZ(13,"mat-divider",9),t.TgZ(14,"div",6)(15,"div",10)(16,"h4",8),t._uU(17,"Address"),t.qZA(),t.TgZ(18,"span",5),t._uU(19),t.qZA()()(),t._UZ(20,"mat-divider",9),t.TgZ(21,"div",6)(22,"div",10)(23,"h4",8),t._uU(24,"BIP 21"),t.qZA(),t.TgZ(25,"span",5),t._uU(26),t.qZA()()()()),2&N){const b=t.oxw();t.xp6(6),t.Oqu(null==b.swapStatus?null:b.swapStatus.id),t.xp6(5),t.Oqu(t.lcZ(12,4,null==b.swapStatus?null:b.swapStatus.expectedAmount)),t.xp6(8),t.Oqu(null==b.swapStatus?null:b.swapStatus.address),t.xp6(7),t.Oqu(null==b.swapStatus?null:b.swapStatus.bip21)}}let $s=(()=>{class N{constructor(){this.swapStatus=null,this.direction=Kt.hc.SWAP_OUT,this.swapTypeEnum=Kt.hc}static#e=this.\u0275fac=function(G){return new(G||N)};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){if(1&G&&t.YNc(0,Ff,1,0,"ng-container",0)(1,Wo,3,1,"ng-template",null,1,t.W1O)(3,ds,25,6,"ng-template",null,2,t.W1O)(5,Md,27,6,"ng-template",null,3,t.W1O),2&G){const He=t.MAs(2),Pt=t.MAs(4),ti=t.MAs(6);t.Q6J("ngTemplateOutlet",null!=Z.swapStatus&&Z.swapStatus.error?He:Z.direction===Z.swapTypeEnum.SWAP_OUT?Pt:ti)}},dependencies:[sn.tP,$i.xw,$i.Wh,$i.yH,Pa.d,sn.JJ]})}return N})(),Hl=(()=>{class N{constructor(){this.serviceInfo={},this.direction=Kt.hc.SWAP_OUT,this.swapTypeEnum=Kt.hc}static#e=this.\u0275fac=function(G){return new(G||N)};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){1&G&&(t.TgZ(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),t._uU(4,"Service Information"),t.qZA()()(),t.TgZ(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),t._uU(9,"Minimum Amount (Sats)"),t.qZA(),t.TgZ(10,"span",6),t._uU(11),t.ALo(12,"number"),t.qZA()(),t.TgZ(13,"div",4)(14,"h4",5),t._uU(15,"Maximum Amount (Sats)"),t.qZA(),t.TgZ(16,"span",6),t._uU(17),t.ALo(18,"number"),t.qZA()()(),t._UZ(19,"mat-divider",7),t.TgZ(20,"div",3)(21,"div",4)(22,"h4",5),t._uU(23,"Fee Percentage"),t.qZA(),t.TgZ(24,"span",6),t._uU(25),t.ALo(26,"number"),t.qZA()(),t.TgZ(27,"div",4)(28,"h4",5),t._uU(29,"Miner Fee (Sats)"),t.qZA(),t.TgZ(30,"span",6),t._uU(31),t.ALo(32,"number"),t.qZA()()()()()),2&G&&(t.Q6J("expanded",!0),t.xp6(11),t.Oqu(t.lcZ(12,5,null==Z.serviceInfo||null==Z.serviceInfo.limits?null:Z.serviceInfo.limits.minimal)),t.xp6(6),t.Oqu(t.lcZ(18,7,null==Z.serviceInfo||null==Z.serviceInfo.limits?null:Z.serviceInfo.limits.maximal)),t.xp6(8),t.Oqu(t.lcZ(26,9,null==Z.serviceInfo||null==Z.serviceInfo.fees?null:Z.serviceInfo.fees.percentage)),t.xp6(6),t.Oqu(t.lcZ(32,11,Z.direction===Z.swapTypeEnum.SWAP_OUT?null==Z.serviceInfo||null==Z.serviceInfo.fees||null==Z.serviceInfo.fees.miner?null:Z.serviceInfo.fees.miner.reverse:null==Z.serviceInfo||null==Z.serviceInfo.fees||null==Z.serviceInfo.fees.miner?null:Z.serviceInfo.fees.miner.normal)))},dependencies:[$i.xw,$i.Wh,$i.yH,Oe.ib,Oe.yz,Oe.yK,Pa.d,sn.JJ]})}return N})();var Fl=p(3214);function zl(N,V){1&N&&t.GkF(0)}const Mc=(N,V)=>({"small-svg":N,"large-svg":V});function zf(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",7),t._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),t.qZA(),t.kcU(),t.TgZ(12,"div",18)(13,"mat-card-title"),t._uU(14,"Boltz Submarine Swaps explained."),t.qZA()(),t.TgZ(15,"div",19)(16,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,Mc,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function hs(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",21),t._UZ(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.qZA(),t.kcU(),t.TgZ(9,"div",18)(10,"mat-card-title"),t._uU(11,"Step 1: Deciding to Submarine Swap"),t.qZA()(),t.TgZ(12,"div",19)(13,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,Mc,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function F2(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",29),t._UZ(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),t.TgZ(9,"defs")(10,"pattern",37),t._UZ(11,"use",38),t.qZA(),t._UZ(12,"image",39),t.qZA()(),t.kcU(),t.TgZ(13,"div",18)(14,"mat-card-title"),t._uU(15,"Step 2: Sending the on-chain funds"),t.qZA()(),t.TgZ(16,"div",19)(17,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,Mc,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Vl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",40)(2,"g",41),t._UZ(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),t.qZA(),t.TgZ(8,"defs")(9,"clipPath",47),t._UZ(10,"rect",48),t.qZA()()(),t.kcU(),t.TgZ(11,"div",18)(12,"mat-card-title"),t._uU(13,"Step 3: Receiving the funds on Lightning"),t.qZA()(),t.TgZ(14,"div",19)(15,"mat-card-subtitle",20),t._uU(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,Mc,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function dm(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",49),t._UZ(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),t.qZA(),t.kcU(),t.TgZ(7,"div",18)(8,"mat-card-title"),t._uU(9,"Done!"),t.qZA()(),t.TgZ(10,"div",19)(11,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,Mc,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let Ph=(()=>{class N{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.vpe,this.screenSize="",this.screenSizeEnum=Kt.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(na.v))};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){if(1&G&&t.YNc(0,zl,1,0,"ng-container",0)(1,zf,18,5,"ng-template",null,1,t.W1O)(3,hs,15,5,"ng-template",null,2,t.W1O)(5,F2,19,5,"ng-template",null,3,t.W1O)(7,Vl,17,5,"ng-template",null,4,t.W1O)(9,dm,13,5,"ng-template",null,5,t.W1O),2&G){const He=t.MAs(2),Pt=t.MAs(4),ti=t.MAs(6),fi=t.MAs(8),wi=t.MAs(10);t.Q6J("ngTemplateOutlet",1===Z.stepNumber?He:2===Z.stepNumber?Pt:3===Z.stepNumber?ti:4===Z.stepNumber?fi:wi)}},dependencies:[sn.mk,sn.tP,$i.xw,$i.Wh,$i.yH,me.oO,or.$j,or.n5],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:[Fl.l]}})}return N})();function Vf(N,V){1&N&&t.GkF(0)}const S1=(N,V)=>({"small-svg":N,"large-svg":V});function z2(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",7),t._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),t.qZA(),t.kcU(),t.TgZ(12,"div",18)(13,"mat-card-title"),t._uU(14,"Boltz Reverse Submarine Swap explained."),t.qZA()(),t.TgZ(15,"div",19)(16,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,S1,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function V2(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",21)(2,"g",22),t._UZ(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.qZA(),t._UZ(9,"path",29),t.TgZ(10,"defs")(11,"clipPath",30),t._UZ(12,"rect",31),t.qZA()()(),t.kcU(),t.TgZ(13,"div",18)(14,"mat-card-title"),t._uU(15,"Step 1: Deciding to Reverse Submarine Swap"),t.qZA()(),t.TgZ(16,"div",19)(17,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,S1,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Rh(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",32),t._UZ(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),t.TgZ(9,"defs")(10,"pattern",40),t._UZ(11,"use",41),t.qZA(),t._UZ(12,"image",42),t.qZA()(),t.kcU(),t.TgZ(13,"div",18)(14,"mat-card-title"),t._uU(15,"Step 2: Paying the Lightning Invoice"),t.qZA()(),t.TgZ(16,"div",19)(17,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,S1,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Sc(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",43)(2,"g",22),t._UZ(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),t.qZA(),t.TgZ(8,"defs")(9,"clipPath",30),t._UZ(10,"rect",49),t.qZA()()(),t.kcU(),t.TgZ(11,"div",18)(12,"mat-card-title"),t._uU(13,"Step 3: Receiving the funds on-chain"),t.qZA()(),t.TgZ(14,"div",19)(15,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,S1,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Bl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",6),t.NdJ("swipe",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onSwipe(Z))}),t.O4$(),t.TgZ(1,"svg",50),t._UZ(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),t.qZA(),t.kcU(),t.TgZ(7,"div",18)(8,"mat-card-title"),t._uU(9,"Done!"),t.qZA()(),t.TgZ(10,"div",19)(11,"mat-card-subtitle",20),t._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. "),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@sliderAnimation",b.animationDirection),t.xp6(1),t.Q6J("ngClass",t.WLB(2,S1,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let Ec=(()=>{class N{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.vpe,this.screenSize="",this.screenSizeEnum=Kt.cu}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(na.v))};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){if(1&G&&t.YNc(0,Vf,1,0,"ng-container",0)(1,z2,18,5,"ng-template",null,1,t.W1O)(3,V2,19,5,"ng-template",null,2,t.W1O)(5,Rh,19,5,"ng-template",null,3,t.W1O)(7,Sc,17,5,"ng-template",null,4,t.W1O)(9,Bl,13,5,"ng-template",null,5,t.W1O),2&G){const He=t.MAs(2),Pt=t.MAs(4),ti=t.MAs(6),fi=t.MAs(8),wi=t.MAs(10);t.Q6J("ngTemplateOutlet",1===Z.stepNumber?He:2===Z.stepNumber?Pt:3===Z.stepNumber?ti:4===Z.stepNumber?fi:wi)}},dependencies:[sn.mk,sn.tP,$i.xw,$i.Wh,$i.yH,me.oO,or.$j,or.n5],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:[Fl.l]}})}return N})();const Sd=["stepper"];function E1(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw(2);t.Oqu(b.inputFormLabel)}}function Tc(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Amount is required."),t.qZA())}function T1(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.ALo(2,"number"),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.hij("Amount must be greater than or equal to ",t.lcZ(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),".")}}function Nh(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.ALo(2,"number"),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.hij("Amount must be less than or equal to ",t.lcZ(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),".")}}function B2(N,V){1&N&&(t.TgZ(0,"button",40),t._uU(1,"Next"),t.qZA())}function U2(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",41),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onSwap())}),t._uU(1),t.qZA()}if(2&N){const b=t.oxw(2);t.xp6(1),t.hij("Initiate ",b.swapDirectionCaption,"")}}function Ed(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw(3);t.Oqu(b.addressFormLabel)}}function Hh(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Address is required."),t.qZA())}function Bf(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-step",15)(1,"form",16),t.YNc(2,Ed,1,1,"ng-template",17),t.TgZ(3,"div",42)(4,"mat-radio-group",43),t.NdJ("change",function(Z){t.CHM(b);const He=t.oxw(2);return t.KtG(He.onAddressTypeChange(Z))}),t.TgZ(5,"mat-radio-button",44),t._uU(6,"Node Local Address"),t.qZA(),t.TgZ(7,"mat-radio-button",45),t._uU(8,"External Address"),t.qZA()(),t.TgZ(9,"mat-form-field",46)(10,"mat-label"),t._uU(11,"Address"),t.qZA(),t._UZ(12,"input",47),t.YNc(13,Hh,2,0,"mat-error",24),t.qZA()(),t.TgZ(14,"div",25)(15,"button",48),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onSwap())}),t._uU(16),t.qZA()()()()}if(2&N){const b=t.oxw(2);t.Q6J("stepControl",b.addressFormGroup)("editable",b.flgEditable),t.xp6(1),t.Q6J("formGroup",b.addressFormGroup),t.xp6(11),t.Q6J("required","external"===b.addressFormGroup.controls.addressType.value),t.xp6(1),t.Q6J("ngIf",null==b.addressFormGroup.controls.address.errors?null:b.addressFormGroup.controls.address.errors.required),t.xp6(3),t.hij("Initiate ",b.swapDirectionCaption,"")}}function Fh(N,V){if(1&N&&t._uU(0),2&N){const b=t.oxw(2);t.hij("",b.swapDirectionCaption," Status")}}function Ul(N,V){if(1&N&&(t.TgZ(0,"mat-icon",49),t._uU(1),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.Oqu(b.swapStatus&&null!=b.swapStatus&&b.swapStatus.id?"check":"close")}}function Jc(N,V){1&N&&t._UZ(0,"div")}function G2(N,V){1&N&&t._UZ(0,"mat-progress-bar",50)}function Uf(N,V){if(1&N&&(t.TgZ(0,"h4",51),t._uU(1),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.Oqu(b.swapStatus&&b.swapStatus.error?b.swapDirectionCaption+" failed.":b.swapStatus&&b.swapStatus.id?b.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":b.swapDirectionCaption+" request placed successfully.")}}function A1(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",52),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onRestart())}),t._uU(1,"Start Again"),t.qZA()}}function $c(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),t._uU(5),t.qZA()(),t.TgZ(6,"div",8)(7,"button",9),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.showInfo())}),t._uU(8,"?"),t.qZA(),t.TgZ(9,"button",10),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onClose())}),t._uU(10,"X"),t.qZA()()(),t.TgZ(11,"mat-card-content",11)(12,"div",12)(13,"mat-vertical-stepper",13,14),t.NdJ("selectionChange",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.stepSelectionChanged(Z))}),t.TgZ(15,"mat-step",15)(16,"form",16),t.YNc(17,E1,1,1,"ng-template",17),t.TgZ(18,"div",18),t._UZ(19,"rtl-boltz-service-info",19),t.qZA(),t.TgZ(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),t._uU(23,"Amount"),t.qZA(),t._UZ(24,"input",22),t.TgZ(25,"mat-hint"),t._uU(26),t.ALo(27,"number"),t.ALo(28,"number"),t.qZA(),t.TgZ(29,"span",23),t._uU(30,"Sats"),t.qZA(),t.YNc(31,Tc,2,0,"mat-error",24)(32,T1,3,3,"mat-error",24)(33,Nh,3,3,"mat-error",24),t.qZA()(),t.TgZ(34,"div",25),t.YNc(35,B2,2,0,"button",26)(36,U2,2,1,"button",27),t.qZA()()(),t.YNc(37,Bf,17,6,"mat-step",28),t.TgZ(38,"mat-step",29)(39,"form",16),t.YNc(40,Fh,1,1,"ng-template",17),t.TgZ(41,"div",30)(42,"mat-expansion-panel",31)(43,"mat-expansion-panel-header")(44,"mat-panel-title")(45,"span",32),t._uU(46),t.YNc(47,Ul,2,1,"mat-icon",33),t.qZA()()(),t.YNc(48,Jc,1,0,"div",34),t.qZA(),t.YNc(49,G2,1,0,"mat-progress-bar",35),t.qZA(),t.YNc(50,Uf,2,1,"h4",36),t.TgZ(51,"div",25),t.YNc(52,A1,2,0,"button",37),t.qZA()()()(),t.TgZ(53,"div",38)(54,"button",39),t._uU(55,"Close"),t.qZA()()()()()()}if(2&N){const b=t.oxw(),G=t.MAs(2);t.Q6J("@opacityAnimation",void 0),t.xp6(3),t.Q6J("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"83":"91"),t.xp6(2),t.Oqu(b.swapDirectionCaption),t.xp6(1),t.Q6J("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"17":"9"),t.xp6(7),t.Q6J("linear",!0),t.xp6(2),t.Q6J("stepControl",b.inputFormGroup)("editable",b.flgEditable),t.xp6(1),t.Q6J("formGroup",b.inputFormGroup),t.xp6(3),t.Q6J("serviceInfo",b.serviceInfo)("direction",b.direction),t.xp6(5),t.Q6J("step",1e3),t.xp6(2),t.AsE("Range: ",t.lcZ(27,30,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),"-",t.lcZ(28,32,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),""),t.xp6(5),t.Q6J("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.required),t.xp6(1),t.Q6J("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.min),t.xp6(1),t.Q6J("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.max),t.xp6(2),t.Q6J("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.xp6(1),t.Q6J("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.xp6(1),t.Q6J("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.xp6(1),t.Q6J("stepControl",b.statusFormGroup),t.xp6(1),t.Q6J("formGroup",b.statusFormGroup),t.xp6(3),t.Q6J("expanded",!!b.swapStatus),t.xp6(4),t.Oqu(b.swapStatus?b.swapStatus.id?b.swapDirectionCaption+" request details":b.swapDirectionCaption+" error details":"Waiting for "+b.swapDirectionCaption+" request..."),t.xp6(1),t.Q6J("ngIf",b.swapStatus),t.xp6(1),t.Q6J("ngIf",!b.swapStatus)("ngIfElse",G),t.xp6(1),t.Q6J("ngIf",!b.swapStatus),t.xp6(1),t.Q6J("ngIf",b.swapStatus),t.xp6(2),t.Q6J("ngIf",b.swapStatus&&(b.swapStatus.error||!b.swapStatus.id)),t.xp6(2),t.Q6J("mat-dialog-close",!1)}}function hm(N,V){if(1&N&&t._UZ(0,"rtl-boltz-swap-status",53),2&N){const b=t.oxw();t.Q6J("swapStatus",b.swapStatus)("direction",b.direction)}}function Td(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"rtl-boltz-swapout-info-graphics",69),t.NdJ("stepNumberChange",function(Z){t.CHM(b);const He=t.oxw(2);return t.KtG(He.stepNumber=Z)}),t.qZA()}if(2&N){const b=t.oxw(2);t.Q6J("animationDirection",b.animationDirection)("stepNumber",b.stepNumber)}}function Gl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"rtl-boltz-swapin-info-graphics",69),t.NdJ("stepNumberChange",function(Z){t.CHM(b);const He=t.oxw(2);return t.KtG(He.stepNumber=Z)}),t.qZA()}if(2&N){const b=t.oxw(2);t.Q6J("animationDirection",b.animationDirection)("stepNumber",b.stepNumber)}}const Gf=(N,V)=>({"dot-primary":N,"dot-primary-lighter":V});function ec(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"span",70),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw(2);return t.KtG(Pt.onStepChanged(He))}),t._UZ(1,"p",71),t.qZA()}if(2&N){const b=V.$implicit,G=t.oxw(2);t.xp6(1),t.Q6J("ngClass",t.WLB(1,Gf,G.stepNumber===b,G.stepNumber!==b))}}function D1(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",72),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onReadMore())}),t._uU(1,"Read More"),t.qZA()}}function Ac(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",73),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onStepChanged(4))}),t._uU(1,"Back"),t.qZA()}}function Zl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",74),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return Z.flgShowInfo=!1,t.KtG(Z.stepNumber=1)}),t._uU(1,"Close"),t.qZA()}}function L1(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",75),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return Z.flgShowInfo=!1,t.KtG(Z.stepNumber=1)}),t._uU(1,"Close"),t.qZA()}}function Ga(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",76),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onStepChanged(Z.stepNumber-1))}),t._uU(1,"Back"),t.qZA()}}function Z2(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",77),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onStepChanged(Z.stepNumber+1))}),t._uU(1,"Next"),t.qZA()}}const Ad=()=>[1,2,3,4,5];function pr(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",54)(1,"div",18)(2,"mat-card-header",55)(3,"div",56),t._UZ(4,"span",7),t.qZA(),t.TgZ(5,"div",57)(6,"button",10),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return Z.flgShowInfo=!1,t.KtG(Z.stepNumber=1)}),t._uU(7,"X"),t.qZA()()(),t.TgZ(8,"mat-card-content",58),t.YNc(9,Td,1,2,"rtl-boltz-swapout-info-graphics",59)(10,Gl,1,2,"rtl-boltz-swapin-info-graphics",59),t.qZA(),t.TgZ(11,"div",60),t.YNc(12,ec,2,4,"span",61),t.qZA(),t.TgZ(13,"div",62),t.YNc(14,D1,2,0,"button",63)(15,Ac,2,0,"button",64)(16,Zl,2,0,"button",65)(17,L1,2,0,"button",66)(18,Ga,2,0,"button",67)(19,Z2,2,0,"button",68),t.qZA()()()}if(2&N){const b=t.oxw();t.Q6J("@opacityAnimation",void 0),t.xp6(9),t.Q6J("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.xp6(1),t.Q6J("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.xp6(2),t.Q6J("ngForOf",t.DdM(10,Ad)),t.xp6(2),t.Q6J("ngIf",5===b.stepNumber),t.xp6(1),t.Q6J("ngIf",5===b.stepNumber),t.xp6(1),t.Q6J("ngIf",5===b.stepNumber),t.xp6(1),t.Q6J("ngIf",b.stepNumber<5),t.xp6(1),t.Q6J("ngIf",b.stepNumber>1&&b.stepNumber<5),t.xp6(1),t.Q6J("ngIf",b.stepNumber<5)}}let Zf=(()=>{class N{constructor(b,G,Z,He,Pt,ti,fi){this.dialogRef=b,this.data=G,this.boltzService=Z,this.formBuilder=He,this.decimalPipe=Pt,this.logger=ti,this.commonService=fi,this.faInfoCircle=nn.sqG,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=Kt.hc,this.direction=Kt.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=Kt.cu,this.animationDirection="forward",this.flgEditable=!0,this.unSubs=[new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||Kt.hc.SWAP_OUT,this.swapDirectionCaption=this.direction===Kt.hc.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[Pe.kI.required,Pe.kI.min(this.serviceInfo.limits?.minimal||0),Pe.kI.max(this.serviceInfo.limits?.maximal||0)]]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[Pe.kI.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges()}ngAfterViewInit(){this.direction===Kt.hc.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===Kt.hc.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,qi.R)(this.unSubs[2])).subscribe(b=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(b){"external"===b.value?(this.addressFormGroup.controls.address.setValidators([Pe.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(){if(!this.inputFormGroup.controls.amount.value||this.serviceInfo.limits?.minimal&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||this.serviceInfo.limits?.maximal&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===Kt.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,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===Kt.hc.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value).pipe((0,qi.R)(this.unSubs[3])).subscribe({next:b=>{this.swapStatus=b,this.boltzService.listSwaps(),this.flgEditable=!0},error:b=>{this.swapStatus={error:b},this.flgEditable=!0,this.logger.error(b)}}):this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"").pipe((0,qi.R)(this.unSubs[4])).subscribe({next:G=>{this.swapStatus=G,this.boltzService.listSwaps(),this.flgEditable=!0},error:G=>{this.swapStatus={error:G},this.flgEditable=!0,this.logger.error(G)}})}stepSelectionChanged(b){switch(b.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"}b.selectedIndex{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xi.so),t.Y36(Xi.WI),t.Y36(Os),t.Y36(Pe.QS),t.Y36(sn.JJ),t.Y36(Tt.mQ),t.Y36(na.v))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(G,Z){if(1&G&&t.Gf(Sd,5),2&G){let He;t.iGM(He=t.CRH())&&(Z.stepper=He.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"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","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"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","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"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","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,"animationDirection","stepNumber","stepNumberChange"],["tabindex","21","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(G,Z){1&G&&t.YNc(0,$c,56,34,"div",0)(1,hm,1,2,"ng-template",null,1,t.W1O)(3,pr,20,11,"div",2),2&G&&(t.Q6J("ngIf",!Z.flgShowInfo),t.xp6(3),t.Q6J("ngIf",Z.flgShowInfo))},dependencies:[sn.mk,sn.sg,sn.O5,Pe._Y,Pe.Fj,Pe.wV,Pe.JJ,Pe.JL,Pe.Q7,Pe.sg,Pe.u,$i.xw,$i.Wh,$i.yH,me.oO,Xi.ZT,pt.lW,or.dn,or.dk,Oe.ib,Oe.yz,Oe.yK,wo.Hw,Ln.Nt,Qt.KE,Qt.hX,Qt.bx,Qt.TO,Qt.R9,qc.pW,ge.VQ,ge.U0,hr.C0,hr.VY,hr.Vq,hr.Ic,Lt.h,$s,Hl,Ph,Ec,sn.JJ],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Zo._]}})}return N})();function tc(N,V){if(1&N&&(t.TgZ(0,"mat-option",42),t._uU(1),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.Q6J("value",b),t.xp6(1),t.Oqu(G.getLabel(b))}}function Wl(N,V){1&N&&t._UZ(0,"mat-progress-bar",43)}function Dd(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Status"),t.qZA())}function Ld(N,V){if(1&N&&(t.TgZ(0,"td",45),t._uU(1),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Oqu(G.swapStateEnum[null==b?null:b.status])}}function W2(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Swap ID"),t.qZA())}function Dc(N,V){if(1&N&&(t.TgZ(0,"td",45),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.xp6(1),t.Oqu(null==b?null:b.id)}}function Y2(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Claim Address"),t.qZA())}const Ps=N=>({width:N});function Yl(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.claimAddress)}}function zh(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Lockup Address"),t.qZA())}function k1(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.lockupAddress)}}function I1(N,V){1&N&&(t.TgZ(0,"th",48),t._uU(1,"Onchain Amount (Sats)"),t.qZA())}function us(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==b?null:b.onchainAmount))}}function el(N,V){1&N&&(t.TgZ(0,"th",48),t._uU(1,"Expected Amount (Sats)"),t.qZA())}function jl(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==b?null:b.expectedAmount))}}function Vh(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Error"),t.qZA())}function Bh(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.error)}}function j2(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Private Key"),t.qZA())}function tl(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.privateKey)}}function Uh(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Preimage"),t.qZA())}function K2(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.preimage)}}function Gh(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Redeem Script"),t.qZA())}function O1(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.redeemScript)}}function Zh(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Invoice"),t.qZA())}function P1(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",46)(2,"span",47),t._uU(3),t.qZA()()()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngStyle",t.VKq(2,Ps,G.screenSize===G.screenSizeEnum.XS?"6rem":G.colWidth)),t.xp6(2),t.Oqu(null==b?null:b.invoice)}}function Q2(N,V){1&N&&(t.TgZ(0,"th",48),t._uU(1,"Timeout Block Height"),t.qZA())}function q2(N,V){if(1&N&&(t.TgZ(0,"td",45)(1,"span",49),t._uU(2),t.ALo(3,"number"),t.qZA()()),2&N){const b=V.$implicit;t.xp6(2),t.Oqu(t.lcZ(3,1,null==b?null:b.timeoutBlockHeight))}}function Wh(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Lockup Tx ID"),t.qZA())}function X2(N,V){if(1&N&&(t.TgZ(0,"td",45),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.xp6(1),t.Oqu(null==b?null:b.lockupTransactionId)}}function J2(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Claim Tx ID"),t.qZA())}function $2(N,V){if(1&N&&(t.TgZ(0,"td",45),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.xp6(1),t.Oqu(null==b?null:b.claimTransactionId)}}function e0(N,V){1&N&&(t.TgZ(0,"th",44),t._uU(1,"Refund Tx ID"),t.qZA())}function Yh(N,V){if(1&N&&(t.TgZ(0,"td",45),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.xp6(1),t.Oqu(null==b?null:b.refundTransactionId)}}function jh(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"th",50)(1,"div",51)(2,"mat-select",52),t._UZ(3,"mat-select-trigger"),t.TgZ(4,"mat-option",53),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onDownloadCSV())}),t._uU(5,"Download CSV"),t.qZA()()()()}}function t0(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"td",54)(1,"button",55),t.NdJ("click",function(Z){const Pt=t.CHM(b).$implicit,ti=t.oxw();return t.KtG(ti.onSwapClick(Pt,Z))}),t._uU(2,"View Info"),t.qZA()()}}function kd(N,V){if(1&N&&(t.TgZ(0,"p"),t._uU(1),t.qZA()),2&N){const b=t.oxw(2);t.xp6(1),t.Oqu(b.emptyTableMessage)}}function fs(N,V){if(1&N&&(t.TgZ(0,"td",56),t.YNc(1,kd,2,1,"p",57),t.qZA()),2&N){const b=t.oxw();t.xp6(1),t.Q6J("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}const Kl=N=>({"display-none":N});function ic(N,V){if(1&N&&t._UZ(0,"tr",58),2&N){const b=t.oxw();t.Q6J("ngClass",t.VKq(1,Kl,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function R1(N,V){1&N&&t._UZ(0,"tr",59)}function Id(N,V){1&N&&t._UZ(0,"tr",60)}const Ql=()=>["all"],n0=N=>({"overflow-auto error-border":N,"overflow-auto":!0}),r0=()=>["no_swap"];let Od=(()=>{class N{constructor(b,G,Z,He,Pt){this.logger=b,this.commonService=G,this.store=Z,this.boltzService=He,this.camelCaseWithReplace=Pt,this.selectedSwapType=Kt.hc.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Kt.hG,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:Kt.IV,sortBy:"status",sortOrder:Kt.Pi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:Kt.IV,sortBy:"status",sortOrder:Kt.Pi.DESCENDING},this.swapStateEnum=Kt.Qw,this.swapTypeEnum=Kt.hc,this.faHistory=nn.qO$,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new ur.by([]),this.selFilter="",this.pageSize=Kt.IV,this.pageSizeOptions=Kt.TJ,this.screenSize="",this.screenSizeEnum=Kt.cu,this.unSubs=[new Yi.x,new Yi.x,new Yi.x],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){b.selectedSwapType&&!b.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===Kt.hc.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(ko.Pr).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.tableSettingSwapOut=b.pageSettings.find(G=>G.pageId===this.PAGE_ID)?.tables.find(G=>G.tableId===this.tableSettingSwapOut.tableId)||Kt.gK.find(G=>G.pageId===this.PAGE_ID)?.tables.find(G=>G.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=b.pageSettings.find(G=>G.pageId===this.PAGE_ID)?.tables.find(G=>G.tableId===this.tableSettingSwapIn.tableId)||Kt.gK.find(G=>G.pageId===this.PAGE_ID)?.tables.find(G=>G.tableId===this.tableSettingSwapIn.tableId),this.setTableColumns(),this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===Kt.hc.SWAP_IN?(this.displayedColumns=this.screenSize===Kt.cu.XS||this.screenSize===Kt.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:Kt.IV):(this.displayedColumns=this.screenSize===Kt.cu.XS||this.screenSize===Kt.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:Kt.IV)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(b){const Z=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===Kt.hc.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(He=>He.column===b);return Z?Z.label?Z.label:this.camelCaseWithReplace.transform(Z.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,G)=>{let Z="";switch(this.selFilterBy){case"all":Z=JSON.stringify(b).toLowerCase();break;case"status":Z=b?.status?this.swapStateEnum[b?.status]:"";break;default:Z=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===Z.indexOf(G):Z.includes(G)}}onSwapClick(b,G){this.boltzService.swapInfo(b.id||"").pipe((0,qi.R)(this.unSubs[1])).subscribe(Z=>{this.store.dispatch((0,_e.qR)({payload:{data:{type:Kt.n_.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:Kt.Qw[(Z=this.selectedSwapType===Kt.hc.SWAP_IN?Z.swap:Z.reverseSwap).status],title:"Status",width:50,type:Kt.Gi.STRING},{key:"id",value:Z.id,title:"ID",width:50,type:Kt.Gi.STRING}],[{key:"amount",value:Z.onchainAmount?Z.onchainAmount:Z.expectedAmount?Z.expectedAmount:0,title:Z.onchainAmount?"Onchain Amount (Sats)":Z.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:Kt.Gi.NUMBER},{key:"timeoutBlockHeight",value:Z.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:Kt.Gi.NUMBER}],[{key:"address",value:Z.claimAddress?Z.claimAddress:Z.lockupAddress?Z.lockupAddress:"",title:Z.claimAddress?"Claim Address":Z.lockupAddress?"Lockup Address":"Address",width:100,type:Kt.Gi.STRING}],[{key:"invoice",value:Z.invoice,title:"Invoice",width:100,type:Kt.Gi.STRING}],[{key:"privateKey",value:Z.privateKey,title:"Private Key",width:100,type:Kt.Gi.STRING}],[{key:"preimage",value:Z.preimage,title:"Preimage",width:100,type:Kt.Gi.STRING}],[{key:"redeemScript",value:Z.redeemScript,title:"Redeem Script",width:100,type:Kt.Gi.STRING}],[{key:"lockupTransactionId",value:Z.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:Kt.Gi.STRING},{key:"transactionId",value:Z.claimTransactionId?Z.claimTransactionId:Z.refundTransactionId?Z.refundTransactionId:"",title:Z.claimTransactionId?"Claim Transaction ID":Z.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:Kt.Gi.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new ur.by(b?[...b]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(G,Z)=>G[Z]&&isNaN(G[Z])?G[Z].toLocaleLowerCase():G[Z]?+G[Z]:null,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===Kt.hc.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(na.v),t.Y36(Vi.yh),t.Y36(Os),t.Y36(cs.D3))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-boltz-swaps"]],viewQuery:function(G,Z){if(1&G&&(t.Gf(Io.YE,5),t.Gf(Qc.NW,5)),2&G){let He;t.iGM(He=t.CRH())&&(Z.sort=He.first),t.iGM(He=t.CRH())&&(Z.paginator=He.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t._Bn([{provide:Re.PG,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:Qc.ye,useValue:(0,Kt.pt)("Swaps")}]),t.TTD],decls:76,vars:20,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"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","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,"matSortActive","matSortDirection","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.gt-xs","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(G,Z){1&G&&(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),t.qZA()(),t.TgZ(6,"div",5)(7,"mat-form-field",6)(8,"mat-label"),t._uU(9,"Filter By"),t.qZA(),t.TgZ(10,"mat-select",7),t.NdJ("ngModelChange",function(Pt){return Z.selFilterBy=Pt})("selectionChange",function(){return Z.selFilter="",Z.applyFilter()}),t.TgZ(11,"perfect-scrollbar"),t.YNc(12,tc,2,2,"mat-option",8),t.qZA()()(),t.TgZ(13,"mat-form-field",6)(14,"mat-label"),t._uU(15,"Filter"),t.qZA(),t.TgZ(16,"input",9),t.NdJ("ngModelChange",function(Pt){return Z.selFilter=Pt})("input",function(){return Z.applyFilter()})("keyup",function(){return Z.applyFilter()}),t.qZA()()()(),t.TgZ(17,"div",10)(18,"div",11),t.YNc(19,Wl,1,0,"mat-progress-bar",12),t.TgZ(20,"table",13,14),t.ynx(22,15),t.YNc(23,Dd,2,0,"th",16)(24,Ld,2,1,"td",17),t.BQk(),t.ynx(25,18),t.YNc(26,W2,2,0,"th",16)(27,Dc,2,1,"td",17),t.BQk(),t.ynx(28,19),t.YNc(29,Y2,2,0,"th",16)(30,Yl,4,4,"td",17),t.BQk(),t.ynx(31,20),t.YNc(32,zh,2,0,"th",16)(33,k1,4,4,"td",17),t.BQk(),t.ynx(34,21),t.YNc(35,I1,2,0,"th",22)(36,us,4,3,"td",17),t.BQk(),t.ynx(37,23),t.YNc(38,el,2,0,"th",22)(39,jl,4,3,"td",17),t.BQk(),t.ynx(40,24),t.YNc(41,Vh,2,0,"th",16)(42,Bh,4,4,"td",17),t.BQk(),t.ynx(43,25),t.YNc(44,j2,2,0,"th",16)(45,tl,4,4,"td",17),t.BQk(),t.ynx(46,26),t.YNc(47,Uh,2,0,"th",16)(48,K2,4,4,"td",17),t.BQk(),t.ynx(49,27),t.YNc(50,Gh,2,0,"th",16)(51,O1,4,4,"td",17),t.BQk(),t.ynx(52,28),t.YNc(53,Zh,2,0,"th",16)(54,P1,4,4,"td",17),t.BQk(),t.ynx(55,29),t.YNc(56,Q2,2,0,"th",22)(57,q2,4,3,"td",17),t.BQk(),t.ynx(58,30),t.YNc(59,Wh,2,0,"th",16)(60,X2,2,1,"td",17),t.BQk(),t.ynx(61,31),t.YNc(62,J2,2,0,"th",16)(63,$2,2,1,"td",17),t.BQk(),t.ynx(64,32),t.YNc(65,e0,2,0,"th",16)(66,Yh,2,1,"td",17),t.BQk(),t.ynx(67,33),t.YNc(68,jh,6,0,"th",34)(69,t0,3,0,"td",35),t.BQk(),t.ynx(70,36),t.YNc(71,fs,2,1,"td",37),t.BQk(),t.YNc(72,ic,1,3,"tr",38)(73,R1,1,0,"tr",39)(74,Id,1,0,"tr",40),t.qZA(),t._UZ(75,"mat-paginator",41),t.qZA()()()),2&G&&(t.xp6(3),t.Q6J("icon",Z.faHistory),t.xp6(2),t.hij("",Z.swapCaption," History"),t.xp6(5),t.Q6J("ngModel",Z.selFilterBy),t.xp6(2),t.Q6J("ngForOf",t.DdM(16,Ql).concat(Z.displayedColumns.slice(0,-1))),t.xp6(4),t.Q6J("ngModel",Z.selFilter),t.xp6(3),t.Q6J("ngIf",!0===Z.flgLoading[0]),t.xp6(1),t.Q6J("matSortActive",Z.selectedSwapType===Z.swapTypeEnum.SWAP_IN?Z.tableSettingSwapIn.sortBy:Z.tableSettingSwapOut.sortBy)("matSortDirection",Z.selectedSwapType===Z.swapTypeEnum.SWAP_IN?Z.tableSettingSwapIn.sortOrder:Z.tableSettingSwapOut.sortOrder)("dataSource",Z.listSwaps)("ngClass",t.VKq(17,n0,"error"===Z.flgLoading[0])),t.xp6(52),t.Q6J("matFooterRowDef",t.DdM(19,r0)),t.xp6(1),t.Q6J("matHeaderRowDef",Z.displayedColumns),t.xp6(1),t.Q6J("matRowDefColumns",Z.displayedColumns),t.xp6(1),t.Q6J("pageSize",Z.pageSize)("pageSizeOptions",Z.pageSizeOptions)("showFirstLastButtons",Z.screenSize!==Z.screenSizeEnum.XS))},dependencies:[sn.mk,sn.sg,sn.O5,sn.PC,Pe.Fj,Pe.JJ,Pe.On,qr.BN,$i.xw,$i.Wh,$i.yH,me.oO,me.Zl,pt.lW,Ln.Nt,Qt.KE,Qt.hX,qc.pW,Re.gD,Re.$L,ft.ey,Io.YE,Io.nU,ur.BZ,ur.fO,ur.as,ur.w1,ur.Dz,ur.nj,ur.mD,ur.Ke,ur.ge,ur.ev,ur.yh,ur.XQ,ur.Gk,ur.Q2,Qc.NW,_t.Vv,_t.$V,sn.JJ]})}return N})();const Kh=N=>["../",N];function Ys(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",16),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw();return t.KtG(Pt.onSelectedIndexChange(He))}),t._uU(1),t.qZA()}if(2&N){const b=V.$implicit,G=t.oxw();t.Q6J("active",G.activeTab.link===b.link)("routerLink",t.VKq(3,Kh,b.link)),t.xp6(1),t.Oqu(b.name)}}let a0=(()=>{class N{constructor(b,G,Z){this.router=b,this.store=G,this.boltzService=Z,this.swapTypeEnum=Kt.hc,this.selectedSwapType=Kt.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 Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.boltzService.listSwaps();const b=this.links.find(G=>this.router.url.includes(G.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"swapin"===b.link?Kt.hc.SWAP_IN:Kt.hc.SWAP_OUT,this.router.events.pipe((0,qi.R)(this.unSubs[0]),(0,cr.h)(G=>G instanceof Xn.Av)).subscribe({next:G=>{const Z=this.links.find(He=>G.urlAfterRedirects.includes(He.link));this.activeTab=Z||this.links[0],this.selectedSwapType=Z&&"swapin"===Z.link?Kt.hc.SWAP_IN:Kt.hc.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,qi.R)(this.unSubs[1])).subscribe({next:G=>{this.swaps=G,this.swapsData=this.selectedSwapType===Kt.hc.SWAP_IN&&G.swaps?G.swaps:this.selectedSwapType===Kt.hc.SWAP_OUT&&G.reverseSwaps?G.reverseSwaps:[],this.flgLoading[0]=!1},error:G=>{this.flgLoading[0]="error",this.emptyTableMessage=G.message?G.message:"No swap "+(this.selectedSwapType===Kt.hc.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){"swapin"===b.link?(this.selectedSwapType=Kt.hc.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=Kt.hc.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(b){this.boltzService.serviceInfo().pipe((0,qi.R)(this.unSubs[2])).subscribe({next:G=>{this.store.dispatch((0,_e.qR)({payload:{data:{serviceInfo:G,direction:b,component:Zf}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xn.F0),t.Y36(Vi.yh),t.Y36(Os))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-boltz-root"]],decls:20,vars:7,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","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabPanel",""],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"active","routerLink","click"]],template:function(G,Z){if(1&G&&(t.TgZ(0,"div",0),t.O4$(),t.TgZ(1,"svg",1)(2,"g",2)(3,"g",3),t._UZ(4,"circle",4)(5,"path",5)(6,"path",6),t.qZA()()(),t.kcU(),t.TgZ(7,"span",7),t._uU(8,"Boltz"),t.qZA()(),t.TgZ(9,"div",8)(10,"mat-card")(11,"mat-card-content",9)(12,"nav",10),t.YNc(13,Ys,2,5,"div",11),t.qZA(),t._UZ(14,"mat-tab-nav-panel",null,12),t.TgZ(16,"div",13)(17,"button",14),t.NdJ("click",function(){return Z.onSwap(Z.selectedSwapType)}),t._uU(18),t.qZA()(),t._UZ(19,"rtl-boltz-swaps",15),t.qZA()()()),2&G){const He=t.MAs(15);t.xp6(12),t.Q6J("tabPanel",He),t.xp6(1),t.Q6J("ngForOf",Z.links),t.xp6(5),t.hij("Start ",Z.activeTab.name,""),t.xp6(1),t.Q6J("selectedSwapType",Z.selectedSwapType)("swapsData",Z.swapsData)("flgLoading",Z.flgLoading)("emptyTableMessage",Z.emptyTableMessage)}},dependencies:[sn.sg,$i.xw,$i.Wh,$i.yH,pt.lW,or.a8,or.dn,ta.BU,ta.sW,ta.Nj,Xn.rH,Od]})}return N})();class Za{constructor(V){this.help=V}}function s0(N,V){if(1&N&&(t.TgZ(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t._uU(3),t.qZA()(),t.TgZ(4,"mat-panel-description",9),t._UZ(5,"span",10),t.TgZ(6,"a",11),t._uU(7),t.qZA()()()),2&N){const b=t.oxw().$implicit,G=t.oxw();t.xp6(3),t.Oqu(b.help.question),t.xp6(2),t.Q6J("innerHTML",b.help.answer,t.oJD),t.xp6(1),t.Q6J("routerLink",G.flgLoggedIn?b.help.link:"/login"),t.xp6(1),t.Oqu(G.flgLoggedIn?b.help.linkCaption:"Login to go to the page")}}function Xh(N,V){if(1&N&&(t.TgZ(0,"div",6),t.YNc(1,s0,8,4,"mat-expansion-panel",7),t.qZA()),2&N){const b=V.$implicit,G=t.oxw();t.xp6(1),t.Q6J("ngIf","ALL"===b.help.lnImplementation||b.help.lnImplementation===G.selNode.lnImplementation)}}let c0=(()=>{class N{constructor(b,G){this.store=b,this.sessionService=G,this.helpTopics=[],this.faQuestion=nn.Psp,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{this.flgLoggedIn=!!b.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new Za({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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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. issuer - issuer 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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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 Za({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(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Vi.yh),t.Y36(Ls.m))};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span",3),t._uU(4,"Help"),t.qZA()(),t.TgZ(5,"div",4)(6,"div",0),t.YNc(7,Xh,2,1,"div",5),t.qZA()()()),2&G&&(t.xp6(2),t.Q6J("icon",Z.faQuestion),t.xp6(5),t.Q6J("ngForOf",Z.helpTopics))},dependencies:[sn.sg,sn.O5,qr.BN,$i.xw,$i.Wh,$i.yH,Oe.ib,Oe.yz,Oe.yK,Oe.u4,Xn.rH],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]})}return N})();var l0=p(2572);function d0(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Token is required."),t.qZA())}let il=(()=>{class N{constructor(b,G){this.dialogRef=b,this.store=G,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,_e.M6)({payload:{twoFAToken:this.token}}))}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xi.so),t.Y36(Vi.yh))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-login-token"]],decls:19,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 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","","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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t._uU(5,"Two Factor Token"),t.qZA()(),t.TgZ(6,"button",5),t.NdJ("click",function(){return Z.onClose()}),t._uU(7,"X"),t.qZA()(),t.TgZ(8,"mat-card-content",6)(9,"form",7,8),t.NdJ("ngSubmit",function(){return Z.onVerifyToken()}),t.TgZ(11,"mat-form-field")(12,"mat-label"),t._uU(13,"Token"),t.qZA(),t.TgZ(14,"input",9),t.NdJ("ngModelChange",function(Pt){return Z.token=Pt}),t.qZA(),t.YNc(15,d0,2,0,"mat-error",10),t.qZA(),t.TgZ(16,"div",11)(17,"button",12),t._uU(18,"Verify Token"),t.qZA()()()()()()),2&G&&(t.xp6(14),t.Q6J("ngModel",Z.token),t.xp6(1),t.Q6J("ngIf",!Z.token))},dependencies:[sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,$i.xw,$i.Wh,$i.yH,pt.lW,or.dn,or.dk,Ln.Nt,Qt.KE,Qt.hX,Qt.TO,Lt.h]})}return N})();function Yo(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Password is required."),t.qZA())}function nc(N,V){if(1&N&&(t.TgZ(0,"p",20)(1,"mat-icon",21),t._uU(2,"close"),t.qZA(),t._uU(3),t.qZA()),2&N){const b=t.oxw();t.xp6(3),t.hij(" ",b.loginErrorMessage," ")}}const N1=N=>({"padding-gap-large":N}),Pd=(N,V)=>({"font-size-200":N,"font-size-300":V});let js=(()=>{class N{constructor(b,G,Z,He){this.logger=b,this.store=G,this.rtlEffects=Z,this.commonService=He,this.faUnlockAlt=nn.B$L,this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=Kt.cu,this.loginErrorMessage="",this.apiCallStatusEnum=Kt.Bn,this.unSubs=[new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,l0.a)([this.store.select(Nr.ul),this.store.select(Nr.Sr)]).pipe((0,qi.R)(this.unSubs[0])).subscribe(([b,G])=>{this.loginErrorMessage="",b.status===Kt.Bn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof b.message?JSON.stringify(b.message):b.message),this.logger.error(b.message)),G.status===Kt.Bn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof G.message?JSON.stringify(G.message):G.message),this.logger.error(G.message))}),this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{this.appConfig=b,this.logger.info(b)})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.appConfig.enable2FA?(this.store.dispatch((0,_e.qR)({payload:{maxWidth:"35rem",data:{component:il}}})),this.rtlEffects.closeAlert.pipe((0,Ii.q)(1)).subscribe(b=>{b&&this.store.dispatch((0,_e.x4)({payload:{password:Si(this.password),defaultPassword:Kt.kO.includes(this.password.toLowerCase()),twoFAToken:b.twoFAToken}}))})):this.store.dispatch((0,_e.x4)({payload:{password:Si(this.password),defaultPassword:Kt.kO.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Vi.yh),t.Y36(cn.V),t.Y36(na.v))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-login"]],decls:28,vars:13,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"login-container"],["fxLayout","row","fxFlex.gt-sm","35","fxLayoutAlign","center center"],["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"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","mt-2","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"pb-2"],["fxLayout","column","fxLayoutAlign","start space-between"],["loginForm","ngForm"],["autoFocus","","matInput","","id","password","name","password","tabindex","1","required","",3,"type","ngModel","ngModelChange"],["mat-icon-button","","matSuffix","","tabindex","2","type","button",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","mb-2",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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1)(2,"mat-card",2)(3,"div",3)(4,"div",4),t._UZ(5,"img",5),t.qZA(),t.TgZ(6,"div",6)(7,"mat-card-header",7)(8,"mat-card-title",8)(9,"span",9),t._uU(10,"Welcome"),t.qZA()()(),t.TgZ(11,"mat-card-content",10)(12,"form",11,12)(14,"mat-form-field")(15,"mat-label"),t._uU(16,"Password"),t.qZA(),t.TgZ(17,"input",13),t.NdJ("ngModelChange",function(Pt){return Z.password=Pt}),t.qZA(),t.TgZ(18,"button",14),t.NdJ("click",function(){return Z.flgShow=!Z.flgShow}),t.TgZ(19,"mat-icon"),t._uU(20),t.qZA()(),t.YNc(21,Yo,2,0,"mat-error",15),t.qZA(),t.YNc(22,nc,4,1,"p",16),t.TgZ(23,"div",17)(24,"button",18),t.NdJ("click",function(){return Z.resetData()}),t._uU(25,"Clear"),t.qZA(),t.TgZ(26,"button",19),t.NdJ("click",function(){return Z.onLogin()}),t._uU(27,"Login"),t.qZA()()()()()()()()()),2&G&&(t.xp6(6),t.Q6J("ngClass",t.VKq(8,N1,Z.screenSize===Z.screenSizeEnum.XS)),t.xp6(2),t.Q6J("ngClass",t.WLB(10,Pd,Z.screenSize===Z.screenSizeEnum.XS,Z.screenSize!==Z.screenSizeEnum.XS)),t.xp6(9),t.Q6J("type",Z.flgShow?"text":"password")("ngModel",Z.password),t.xp6(1),t.uIk("aria-label","Hide password"),t.xp6(2),t.Oqu(Z.flgShow?"visibility_off":"visibility"),t.xp6(1),t.Q6J("ngIf",!Z.password),t.xp6(1),t.Q6J("ngIf",""!==Z.loginErrorMessage))},dependencies:[sn.mk,sn.O5,Pe._Y,Pe.Fj,Pe.JJ,Pe.JL,Pe.Q7,Pe.On,Pe.F,$i.xw,$i.Wh,$i.yH,me.oO,pt.lW,pt.RK,or.a8,or.dn,or.dk,or.n5,wo.Hw,Ln.Nt,Qt.KE,Qt.hX,Qt.TO,Qt.R9,Lt.h],styles:[".login-container[_ngcontent-%COMP%]{height:60vh;margin-top:15%}.login-container[_ngcontent-%COMP%] .mat-mdc-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:90%;cursor:pointer}"]})}return N})();var Rs=p(4740);let Jh=(()=>{class N{constructor(b,G){this.activatedRoute=b,this.router=G,this.error={errorCode:"",errorMessage:""},this.faTimes=nn.NBC,this.unsubs=[new Yi.x,new Yi.x]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,qi.R)(this.unsubs[0])).subscribe(b=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Xn.gz),t.Y36(Xn.F0))};static#t=this.\u0275cmp=t.Xpm({type:N,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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),t._UZ(4,"fa-icon",4),t.TgZ(5,"span",5),t._uU(6),t.qZA()()(),t.TgZ(7,"mat-card-content",6)(8,"div",7),t._uU(9),t.qZA(),t.TgZ(10,"span",8)(11,"button",9),t.NdJ("click",function(){return Z.goToHelp()}),t._uU(12,"Go To Help"),t.qZA()()()()()),2&G&&(t.xp6(4),t.Q6J("icon",Z.faTimes),t.xp6(2),t.hij("Error ",Z.error.errorCode,""),t.xp6(3),t.Oqu(Z.error.errorMessage))},dependencies:[qr.BN,$i.xw,$i.Wh,$i.yH,pt.lW,or.a8,or.dn,or.dk,or.n5],encapsulation:2})}return N})();var Wa=p(5525),Rd=p(6046),h0=p(3362),u0=p(6082);function f0(N,V){1&N&&t._UZ(0,"span",16)}function $h(N,V){1&N&&t._UZ(0,"span",17)}function m0(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"form",18,4)(2,"div",19),t._UZ(3,"fa-icon",2),t.TgZ(4,"span"),t._uU(5,"Please ensure that "),t.TgZ(6,"strong"),t._uU(7,"experimental-offers"),t.qZA(),t._uU(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.TgZ(9,"strong")(10,"a",20),t._uU(11,"here"),t.qZA()(),t._uU(12," to learn more about Core Lightning offers."),t.qZA()(),t.TgZ(13,"h4",21),t._uU(14,"Description"),t.qZA(),t.TgZ(15,"span"),t._uU(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),t.qZA(),t.TgZ(17,"h4",21),t._uU(18,"Links"),t.qZA(),t.TgZ(19,"span")(20,"a",22),t._uU(21,"Core lightning Bolt12"),t.qZA()(),t._UZ(22,"mat-divider",23),t.TgZ(23,"div",24),t._UZ(24,"fa-icon",2),t.TgZ(25,"span"),t._uU(26,"Do not get an Offer tattoo until spec is fully ratified!"),t.qZA()(),t.TgZ(27,"mat-slide-toggle",25),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(2);return t.KtG(He.enableOffers=Z)})("change",function(){t.CHM(b);const Z=t.oxw(2);return t.KtG(Z.onUpdateFeature())}),t._uU(28),t.qZA()()}if(2&N){const b=t.oxw(2);t.xp6(3),t.Q6J("icon",b.faInfoCircle),t.xp6(19),t.Q6J("inset",!0),t.xp6(2),t.Q6J("icon",b.faExclamationTriangle),t.xp6(3),t.Q6J("ngModel",b.enableOffers),t.xp6(1),t.hij("Enable Offers ",b.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function eu(N,V){if(1&N&&(t.TgZ(0,"div")(1,"div",28),t._UZ(2,"fa-icon",2),t.TgZ(3,"span"),t._uU(4,"Please ensure that "),t.TgZ(5,"strong"),t._uU(6,"experimental-dual-fund"),t.qZA(),t._uU(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.TgZ(8,"strong")(9,"a",29),t._uU(10,"here"),t.qZA()(),t._uU(11," to learn more about Core Lightning Liquidity Ads."),t.qZA()()()),2&N){const b=t.oxw(3);t.xp6(2),t.Q6J("icon",b.faExclamationTriangle)}}function Yf(N,V){if(1&N&&(t.TgZ(0,"mat-option",47),t._uU(1),t.ALo(2,"titlecase"),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b),t.xp6(1),t.hij(" ",t.lcZ(2,2,b.id)," ")}}function H1(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&N){const b=t.oxw(4);t.xp6(1),t.hij("",b.selPolicyType.placeholder," is required.")}}function tu(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&N){const b=t.oxw(4);t.xp6(1),t.AsE("",b.selPolicyType.placeholder," must be greater than or equal to ",b.selPolicyType.min,".")}}function iu(N,V){if(1&N&&(t.TgZ(0,"mat-error"),t._uU(1),t.qZA()),2&N){const b=t.oxw(4);t.xp6(1),t.AsE("",b.selPolicyType.placeholder," must be less than or equal to ",b.selPolicyType.max,".")}}function Nd(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Lease base fee is required."),t.qZA())}function jf(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Lease base basis is required."),t.qZA())}function nu(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Max channel routing base fee is required."),t.qZA())}function nl(N,V){1&N&&(t.TgZ(0,"mat-error"),t._uU(1,"Max channel routing fee rate is required."),t.qZA())}const p0=(N,V)=>({"alert-danger":N,"alert-info":V});function Kf(N,V){if(1&N&&(t.TgZ(0,"h4",48)(1,"span",49),t._uU(2),t.qZA()()),2&N){const b=t.oxw(4);t.xp6(1),t.Q6J("ngClass",t.WLB(2,p0,!!b.updateMsg.error,!!b.updateMsg.data)),t.xp6(1),t.hij(" ",b.updateMsg.error&&""!==b.updateMsg.error?"Error: "+b.updateMsg.error||0:b.updateMsg.data&&""!==b.updateMsg.data?b.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function ru(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"div",30)(1,"div",31),t._UZ(2,"fa-icon",2),t.TgZ(3,"span"),t._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."),t.qZA()(),t.TgZ(5,"div",32)(6,"mat-form-field",33)(7,"mat-label"),t._uU(8,"Policy"),t.qZA(),t.TgZ(9,"mat-select",34),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(3);return t.KtG(He.selPolicyType=Z)})("selectionChange",function(){t.CHM(b);const Z=t.oxw(3);return t.KtG(Z.policyMod=null)}),t.YNc(10,Yf,3,4,"mat-option",35),t.qZA()(),t.TgZ(11,"mat-form-field",36)(12,"mat-label"),t._uU(13),t.qZA(),t.TgZ(14,"input",37,38),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(3);return t.KtG(He.policyMod=Z)}),t.qZA(),t.TgZ(16,"mat-hint"),t._uU(17),t.qZA(),t.YNc(18,H1,2,1,"mat-error",26)(19,tu,2,2,"mat-error",26)(20,iu,2,2,"mat-error",26),t.qZA()(),t.TgZ(21,"div",32)(22,"mat-form-field",36)(23,"mat-label"),t._uU(24,"Lease Base Fee (Sats)"),t.qZA(),t.TgZ(25,"input",39),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(3);return t.KtG(He.lease_fee_base_sat=Z)}),t.qZA(),t.YNc(26,Nd,2,0,"mat-error",26),t.qZA(),t.TgZ(27,"mat-form-field",36)(28,"mat-label"),t._uU(29,"Lease Base Basis (bps)"),t.qZA(),t.TgZ(30,"input",40),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(3);return t.KtG(He.lease_fee_basis=Z)}),t.qZA(),t.YNc(31,jf,2,0,"mat-error",26),t.qZA()(),t.TgZ(32,"div",32)(33,"mat-form-field",36)(34,"mat-label"),t._uU(35,"Max Channel Routing Base Fee (Sats)"),t.qZA(),t.TgZ(36,"input",41),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(3);return t.KtG(He.channelFeeMaxBaseSat=Z)}),t.qZA(),t.YNc(37,nu,2,0,"mat-error",26),t.qZA(),t.TgZ(38,"mat-form-field",36)(39,"mat-label"),t._uU(40,"Max Channel Routing Fee Rate (ppm)"),t.qZA(),t.TgZ(41,"input",42),t.NdJ("ngModelChange",function(Z){t.CHM(b);const He=t.oxw(3);return t.KtG(He.channelFeeMaxProportional=Z)}),t.qZA(),t.YNc(42,nl,2,0,"mat-error",26),t.qZA()(),t.YNc(43,Kf,3,5,"h4",43),t.TgZ(44,"div",44)(45,"button",45),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(3);return t.KtG(Z.onResetPolicy())}),t._uU(46,"Reset"),t.qZA(),t.TgZ(47,"button",46),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw(3);return t.KtG(Z.onUpdateFundingPolicy())}),t._uU(48,"Update"),t.qZA()()()}if(2&N){const b=t.oxw(3);t.xp6(2),t.Q6J("icon",b.faExclamationTriangle),t.xp6(7),t.Q6J("ngModel",b.selPolicyType),t.xp6(1),t.Q6J("ngForOf",b.policyTypes),t.xp6(3),t.Oqu(b.selPolicyType.placeholder),t.xp6(1),t.Q6J("step","fixed"===b.selPolicyType.id?1e3:10)("min",b.selPolicyType.min)("max",b.selPolicyType.max)("ngModel",b.policyMod),t.xp6(3),t.lnq("",b.selPolicyType.placeholder," should be between ",b.selPolicyType.min," and ",b.selPolicyType.max,""),t.xp6(1),t.Q6J("ngIf",!b.policyMod),t.xp6(1),t.Q6J("ngIf",b.policyModb.selPolicyType.max),t.xp6(5),t.Q6J("ngModel",b.lease_fee_base_sat),t.xp6(1),t.Q6J("ngIf",!b.lease_fee_base_sat),t.xp6(4),t.Q6J("ngModel",b.lease_fee_basis),t.xp6(1),t.Q6J("ngIf",!b.lease_fee_basis),t.xp6(5),t.Q6J("ngModel",b.channelFeeMaxBaseSat),t.xp6(1),t.Q6J("ngIf",!b.channelFeeMaxBaseSat),t.xp6(4),t.Q6J("ngModel",b.channelFeeMaxProportional),t.xp6(1),t.Q6J("ngIf",!b.channelFeeMaxProportional),t.xp6(1),t.Q6J("ngIf",b.flgUpdateCalled)}}function ql(N,V){if(1&N&&(t.TgZ(0,"form",18,4),t.YNc(2,eu,12,1,"div",26)(3,ru,49,23,"div",27),t.qZA()),2&N){const b=t.oxw(2);t.xp6(2),t.Q6J("ngIf",!b.features[1].enabled),t.xp6(1),t.Q6J("ngIf",b.features[1].enabled)}}function rl(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-expansion-panel",9),t.NdJ("opened",function(){const He=t.CHM(b).index,Pt=t.oxw();return t.KtG(Pt.onPanelExpanded(He))}),t.TgZ(1,"mat-expansion-panel-header")(2,"mat-panel-title",10)(3,"h4",11),t._uU(4),t.qZA(),t.TgZ(5,"h4",11),t.YNc(6,f0,1,0,"span",12)(7,$h,1,0,"span",13),t._uU(8),t.qZA()()(),t.TgZ(9,"div",14),t.YNc(10,m0,29,5,"form",15)(11,ql,4,2,"form",15),t.qZA()()}if(2&N){const b=V.$implicit,G=V.index;t.Q6J("expanded",!1),t.xp6(4),t.Oqu(b.name),t.xp6(2),t.Q6J("ngIf",b.enabled),t.xp6(1),t.Q6J("ngIf",!b.enabled),t.xp6(1),t.hij(" ",b.enabled?"Enabled":"Disabled"," "),t.xp6(2),t.Q6J("ngIf",0===G),t.xp6(1),t.Q6J("ngIf",1===G)}}let Hd=(()=>{class N{constructor(b,G,Z,He){this.logger=b,this.store=G,this.dataService=Z,this.commonService=He,this.faInfoCircle=nn.sqG,this.faExclamationTriangle=nn.eHv,this.faCode=nn.dT$,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=Kt.gB,this.selPolicyType=Kt.gB[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.dataService.listConfigs().pipe((0,qi.R)(this.unSubs[0])).subscribe({next:b=>{this.logger.info("Received List Configs: "+JSON.stringify(b)),this.features[1].enabled=!!b["experimental-dual-fund"]},error:b=>{this.logger.error("List Configs Error: "+JSON.stringify(b)),this.features[1].enabled=!1}}),this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(Pr.XP).pipe((0,qi.R)(this.unSubs[2])).subscribe(b=>{this.policyTypes[2].max=b.balance.totalBalance||1e3})}onPanelExpanded(b){1===b&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,qi.R)(this.unSubs[3])).subscribe(G=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(G)),this.fundingPolicy=G,this.fundingPolicy.policy&&(this.selPolicyType=Kt.gB.find(Z=>Z.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,_e.jS)({payload:{uiMessage:Kt.m6.UPDATE_SETTING,service:Kt.JX.OFFERS,settings:{enableOffers:this.enableOffers}}})),this.store.dispatch((0,xr.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,Wn.Mf)({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,qn.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,qi.R)(this.unSubs[4])).subscribe({next:b=>{this.logger.info(b),this.fundingPolicy=b,this.updateMsg={data:"Compact Lease: "+b.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:b=>{this.logger.error(b),this.updateMsg={error:this.commonService.extractErrorMessage(b,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?Kt.gB.find(b=>b.id===this.fundingPolicy.policy)||this.policyTypes[0]:Kt.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(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Vi.yh),t.Y36(Rd.D),t.Y36(na.v))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-experimental-settings"]],decls:13,vars:3,consts:[["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[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"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","name","policy",3,"ngModel","ngModelChange","selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"step","min","max","ngModel","ngModelChange"],["plcMod","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModel","ngModelChange"],["matInput","","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModel","ngModelChange"],["matInput","","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModel","ngModelChange"],["matInput","","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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1),t._UZ(2,"fa-icon",2),t.TgZ(3,"span"),t._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."),t.qZA()(),t.TgZ(5,"form",3,4)(7,"div",5),t._UZ(8,"fa-icon",6),t.TgZ(9,"span",7),t._uU(10,"Features"),t.qZA()(),t.TgZ(11,"mat-accordion"),t.YNc(12,rl,12,7,"mat-expansion-panel",8),t.qZA()()()),2&G&&(t.xp6(2),t.Q6J("icon",Z.faInfoCircle),t.xp6(6),t.Q6J("icon",Z.faCode),t.xp6(4),t.Q6J("ngForOf",Z.features))},dependencies:[sn.mk,sn.sg,sn.O5,Pe._Y,Pe.Fj,Pe.wV,Pe.JJ,Pe.JL,Pe.Q7,Pe.qQ,Pe.Fd,Pe.On,Pe.F,qr.BN,$i.xw,$i.Wh,$i.yH,me.oO,pt.lW,Oe.pp,Oe.ib,Oe.yz,Oe.yK,Ln.Nt,Qt.KE,Qt.hX,Qt.bx,Qt.TO,Pa.d,Re.gD,ft.ey,Ne.Rr,_t.$V,Lt.h,h0.F,u0.q,sn.rS],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return N})();const Fd=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([p.e(758),p.e(570)]).then(p.bind(p,4570)).then(N=>N.LNDModule),canActivate:[(0,Wa.a1)()]},{path:"cln",loadChildren:()=>Promise.all([p.e(758),p.e(125)]).then(p.bind(p,7125)).then(N=>N.CLNModule),canActivate:[(0,Wa.a1)()]},{path:"ecl",loadChildren:()=>Promise.all([p.e(758),p.e(456)]).then(p.bind(p,6456)).then(N=>N.ECLModule),canActivate:[(0,Wa.a1)()]},{path:"settings",component:As,canActivate:[(0,Wa.a1)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:di,canActivate:[(0,Wa.a1)()]},{path:"auth",component:Go,canActivate:[(0,Wa.a1)()]},{path:"bconfig",component:pd,canActivate:[(0,Wa.a1)()]}]},{path:"config",component:mr,canActivate:[(0,Wa.a1)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:Qn,canActivate:[(0,Wa.a1)()]},{path:"pglayout",component:Yc,canActivate:[(0,Wa.a1)()]},{path:"services",component:Df,canActivate:[(0,Wa.a1)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:Dl,canActivate:[(0,Wa.a1)()]},{path:"boltz",component:x1,canActivate:[(0,Wa.a1)()]}]},{path:"experimental",component:Hd,canActivate:[(0,Wa.a1)()]},{path:"lnconfig",component:Uc,canActivate:[(0,Wa.a1)()]}]},{path:"services",component:Kc,canActivate:[(0,Wa.a1)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:H2},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:a0}]},{path:"help",component:c0},{path:"login",component:js},{path:"error",component:Jh},{path:"**",component:Rs.w}],al=Xn.Bz.forRoot(Fd,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var F1=p(8339),au=p(5256),g0=p(5940),z1=p(2651),Xl=p(1274),ol=p(1894),ts=p(8445);const rc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.HLz,link:"/lnd/home",userPersona:Kt.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.nNP,link:"/lnd/onchain",userPersona:Kt.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.BDt,link:"/lnd/connections",userPersona:Kt.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.FVb,link:"/lnd/connections",userPersona:Kt.ol.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn.Ssp,link:"/lnd/transactions",userPersona:Kt.ol.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.SuH,link:"/lnd/routing",userPersona:Kt.ol.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.koM,link:"/lnd/reports",userPersona:Kt.ol.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.wn1,link:"/lnd/graph",userPersona:Kt.ol.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.hkK,link:"/lnd/messages",userPersona:Kt.ol.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:nn.q7m,link:"/lnd/channelbackup",userPersona:Kt.ol.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:nn.TmZ,link:"/lnd/network",userPersona:Kt.ol.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:nn.xf3,link:"/lnd/network",userPersona:Kt.ol.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.Krp,link:"/services/loop",userPersona:Kt.ol.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:nn.vqe,link:"/services/loop",userPersona:Kt.ol.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Kt.ol.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.CgH,link:"/config",userPersona:Kt.ol.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.Psp,link:"/help",userPersona:Kt.ol.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.HLz,link:"/cln/home",userPersona:Kt.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.nNP,link:"/cln/onchain",userPersona:Kt.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.BDt,link:"/cln/connections",userPersona:Kt.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.FVb,link:"/cln/connections",userPersona:Kt.ol.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:nn.Acd,link:"/cln/liquidityads",userPersona:Kt.ol.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:nn.Ssp,link:"/cln/transactions",userPersona:Kt.ol.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:nn.SuH,link:"/cln/routing",userPersona:Kt.ol.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:nn.koM,link:"/cln/reports",userPersona:Kt.ol.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.wn1,link:"/cln/graph",userPersona:Kt.ol.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.hkK,link:"/cln/messages",userPersona:Kt.ol.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:nn.USL,link:"/cln/rates",userPersona:Kt.ol.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:nn.xf3,link:"/cln/rates",userPersona:Kt.ol.MERCHANT}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.CgH,link:"/config",userPersona:Kt.ol.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.Psp,link:"/help",userPersona:Kt.ol.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.HLz,link:"/ecl/home",userPersona:Kt.ol.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.nNP,link:"/ecl/onchain",userPersona:Kt.ol.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.BDt,link:"/ecl/connections",userPersona:Kt.ol.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.FVb,link:"/ecl/connections",userPersona:Kt.ol.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn.Ssp,link:"/ecl/transactions",userPersona:Kt.ol.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.SuH,link:"/ecl/routing",userPersona:Kt.ol.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.koM,link:"/ecl/reports",userPersona:Kt.ol.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.wn1,link:"/ecl/graph",userPersona:Kt.ol.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:nn.CgH,link:"/config",userPersona:Kt.ol.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:nn.Psp,link:"/help",userPersona:Kt.ol.ALL}]};function sl(N,V){if(1&N&&(t.TgZ(0,"mat-option",11),t._uU(1),t.qZA()),2&N){const b=V.$implicit;t.Q6J("value",b.index),t.xp6(1),t.AsE(" ",b.lnNode," (",b.lnImplementation,") ")}}function ac(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-select",9),t.NdJ("selectionChange",function(Z){t.CHM(b);const He=t.oxw();return t.KtG(He.onNodeSelectionChange(Z.value))}),t.TgZ(1,"perfect-scrollbar"),t.YNc(2,sl,2,3,"mat-option",10),t.qZA()()}if(2&N){const b=t.oxw();t.Q6J("value",b.selConfigNodeIndex),t.xp6(2),t.Q6J("ngForOf",b.appConfig.nodes)}}function V1(N,V){if(1&N&&(t.TgZ(0,"span",21),t.GkF(1,22),t.qZA()),2&N){const b=t.oxw().$implicit;t.oxw(2);const G=t.MAs(11);t.xp6(1),t.Q6J("ngTemplateOutlet","boltzIconBlock"===b.icon?G:null)}}function ou(N,V){if(1&N&&t._UZ(0,"fa-icon",23),2&N){const b=t.oxw().$implicit;t.Q6J("icon",b.icon)}}function su(N,V){if(1&N&&(t.TgZ(0,"mat-icon",24),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Oqu(b.icon)}}function v0(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-tree-node",15)(1,"div",16),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw(2);return t.KtG(Pt.onChildNavClicked(He))}),t.TgZ(2,"div",17),t.YNc(3,V1,2,1,"span",18)(4,ou,1,1,"fa-icon",19)(5,su,2,1,"mat-icon",20),t.TgZ(6,"span"),t._uU(7),t.qZA()()()()}if(2&N){const b=V.$implicit;t.s9C("routerLink",b.link),t.xp6(3),t.Q6J("ngIf","SVG"===b.iconType),t.xp6(1),t.Q6J("ngIf","FA"===b.iconType),t.xp6(1),t.Q6J("ngIf",!b.iconType),t.xp6(2),t.Oqu(b.name)}}function Vd(N,V){if(1&N&&(t.TgZ(0,"span",32),t.GkF(1,22),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Q6J("ngTemplateOutlet",b.icon)}}function cu(N,V){if(1&N&&t._UZ(0,"fa-icon",23),2&N){const b=t.oxw().$implicit;t.Q6J("icon",b.icon)}}function Oo(N,V){if(1&N&&(t.TgZ(0,"mat-icon",24),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Oqu(b.icon)}}function B1(N,V){if(1&N&&(t.TgZ(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),t.YNc(3,Vd,2,1,"span",28)(4,cu,1,1,"fa-icon",19)(5,Oo,2,1,"mat-icon",20),t.TgZ(6,"span"),t._uU(7),t.qZA()(),t.TgZ(8,"button",29)(9,"mat-icon"),t._uU(10),t.qZA()()(),t.TgZ(11,"div",30),t.GkF(12,31),t.qZA()()),2&N){const b=V.$implicit,G=t.oxw(2);t.xp6(3),t.Q6J("ngIf","SVG"===b.iconType),t.xp6(1),t.Q6J("ngIf","FA"===b.iconType),t.xp6(1),t.Q6J("ngIf",!b.iconType),t.xp6(2),t.Oqu(b.name),t.xp6(1),t.uIk("aria-label","toggle "+b.name),t.xp6(2),t.Oqu(G.treeControlNested.isExpanded(b)?"arrow_drop_up":"arrow_drop_down"),t.xp6(1),t.ekj("tree-children-invisible",!G.treeControlNested.isExpanded(b))}}function Bd(N,V){if(1&N&&(t.TgZ(0,"mat-tree",5,12),t.YNc(2,v0,8,5,"mat-tree-node",13)(3,B1,13,8,"mat-nested-tree-node",14),t.qZA()),2&N){const b=t.oxw();t.Q6J("dataSource",b.navMenus)("treeControl",b.treeControlNested),t.xp6(3),t.Q6J("matTreeNodeDefWhen",b.hasChild)}}function U1(N,V){if(1&N&&(t.TgZ(0,"span",21),t.GkF(1,22),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Q6J("ngTemplateOutlet",b.icon)}}function eo(N,V){if(1&N&&t._UZ(0,"fa-icon",36),2&N){const b=t.oxw().$implicit;t.s9C("matTooltip",b.name),t.Q6J("icon",b.icon)}}function Jl(N,V){if(1&N&&(t.TgZ(0,"mat-icon",37),t._uU(1),t.qZA()),2&N){const b=t.oxw().$implicit;t.s9C("matTooltip",b.name),t.xp6(1),t.Oqu(b.icon)}}function $l(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-tree-node",33),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw();return t.KtG(Pt.onShowData(He))}),t.YNc(1,U1,2,1,"span",18)(2,eo,1,2,"fa-icon",34)(3,Jl,2,2,"mat-icon",35),t.TgZ(4,"span"),t._uU(5),t.qZA()()}if(2&N){const b=V.$implicit;t.xp6(1),t.Q6J("ngIf","SVG"===b.iconType),t.xp6(1),t.Q6J("ngIf","FA"===b.iconType),t.xp6(1),t.Q6J("ngIf",!b.iconType),t.xp6(2),t.Oqu(b.name)}}function G1(N,V){if(1&N&&(t.TgZ(0,"span",32),t.GkF(1,22),t.qZA()),2&N){const b=t.oxw().$implicit;t.xp6(1),t.Q6J("ngTemplateOutlet",b.icon)}}function b0(N,V){if(1&N&&t._UZ(0,"fa-icon",36),2&N){const b=t.oxw().$implicit;t.s9C("matTooltip",b.name),t.Q6J("icon",b.icon)}}function y0(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"mat-tree-node",33),t.NdJ("click",function(){const He=t.CHM(b).$implicit,Pt=t.oxw(2);return t.KtG(Pt.onClick(He))}),t.YNc(1,G1,2,1,"span",28)(2,b0,1,2,"fa-icon",34),t.TgZ(3,"span"),t._uU(4),t.qZA()()}if(2&N){const b=V.$implicit;t.xp6(1),t.Q6J("ngIf","SVG"===b.iconType),t.xp6(1),t.Q6J("ngIf","FA"===b.iconType),t.xp6(2),t.Oqu(b.name)}}function lu(N,V){if(1&N&&(t.TgZ(0,"mat-tree",5),t.YNc(1,y0,5,3,"mat-tree-node",6),t.qZA()),2&N){const b=t.oxw();t.Q6J("dataSource",b.navMenusLogout)("treeControl",b.treeControlLogout)}}function Ud(N,V){1&N&&(t.O4$(),t.TgZ(0,"svg",38)(1,"g",39)(2,"g",40),t._UZ(3,"circle",41)(4,"path",42)(5,"path",43),t.qZA()()())}let du=(()=>{class N{constructor(b,G,Z,He,Pt,ti){this.logger=b,this.commonService=G,this.sessionService=Z,this.store=He,this.actions=Pt,this.rtlEffects=ti,this.ChildNavClicked=new t.vpe,this.faEject=nn.KOR,this.faEye=nn.Mdf,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:nn.KOR}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:nn.Mdf}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=Kt.ol,this.unSubs=[new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x],this.treeControlNested=new ol.VY(fi=>fi.children),this.treeControlLogout=new ol.VY(fi=>fi.children),this.treeControlShowData=new ol.VY(fi=>fi.children),this.navMenus=new ts.WX,this.navMenusLogout=new ts.WX,this.navMenusShowData=new ts.WX,this.hasChild=(fi,wi)=>!!wi.children&&wi.children.length>0,this.version=Kt.q4,rc.LNDChildren&&200===rc.LNDChildren[rc.LNDChildren.length-1].id&&rc.LNDChildren.pop(),this.navMenus.data=rc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const b=this.sessionService.getItem("token");this.showLogout=!!b,this.flgLoading=!!b,this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[0])).subscribe(G=>{this.appConfig=G}),this.store.select(Nr.gW).pipe((0,qi.R)(this.unSubs[1])).subscribe(G=>{if(this.information=G.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 Z=this.information.chains[0];this.informationChain.chain=Z.chain,this.informationChain.network=Z.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=G.selNode,this.settings=this.selNode?.settings||null,this.selConfigNodeIndex=+(G.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(G)}),this.sessionService.watchSession().pipe((0,qi.R)(this.unSubs[2])).subscribe(G=>{this.showLogout=!!G.token,this.flgLoading=!!G.token}),this.actions.pipe((0,qi.R)(this.unSubs[3]),(0,cr.h)(G=>G.type===Kt.pg.LOGOUT)).subscribe(G=>{this.showLogout=!1})}onClick(b){"Logout"===b.name&&(this.store.dispatch((0,_e.c1)({payload:{data:{type:Kt.n_.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,qi.R)(this.unSubs[4])).subscribe(G=>{G&&(this.showLogout=!1,this.store.dispatch((0,_e.kS)()))})),this.ChildNavClicked.emit(b)}onChildNavClicked(b){this.ChildNavClicked.emit(b)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let b=[];b=JSON.parse(JSON.stringify(rc.LNDChildren)),this.navMenus.data=b?.filter(G=>G.children&&G.children.length?(G.children=G.children?.filter(Z=>(Z.userPersona===Kt.ol.ALL||Z.userPersona===this.settings?.userPersona)&&"/services/loop"!==Z.link&&"/services/boltz"!==Z.link||"/services/loop"===Z.link&&this.settings?.swapServerUrl&&""!==this.settings.swapServerUrl.trim()||"/services/boltz"===Z.link&&this.settings?.boltzServerUrl&&""!==this.settings.boltzServerUrl.trim()),G.children.length>0):G.userPersona===Kt.ol.ALL||G.userPersona===this.settings?.userPersona)}loadCLNMenu(){let b=[];b=JSON.parse(JSON.stringify(rc.CLNChildren)),this.navMenus.data=b?.filter(G=>G.children&&G.children.length?(G.children=G.children?.filter(Z=>(Z.userPersona===Kt.ol.ALL||Z.userPersona===this.settings?.userPersona)&&"/services/peerswap"!==Z.link||"/services/peerswap"===Z.link&&this.settings?.enablePeerswap),G.children.length>0):G.userPersona===Kt.ol.ALL||G.userPersona===this.settings?.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(rc.ECLChildren))}onShowData(b){this.store.dispatch((0,_e.tj)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(b){const G=this.selConfigNodeIndex;this.selConfigNodeIndex=b;const Z=this.appConfig.nodes.find(He=>+He.index===b);this.store.dispatch((0,_e.fk)({payload:{uiMessage:Kt.m6.UPDATE_SELECTED_NODE,prevLnNodeIndex:+G,currentLnNode:Z||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(na.v),t.Y36(Ls.m),t.Y36(Vi.yh),t.Y36(lo.eX),t.Y36(cn.V))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-side-navigation"]],viewQuery:function(G,Z){if(1&G&&t.Gf(ts.gi,5),2&G){let He;t.iGM(He=t.CRH())&&(Z.tree=He.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"],["tabindex","2",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","80","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","20","mat-icon-button","","fxLayoutAlign","end center",1,"btn-icon-small"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],[3,"click"],["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(G,Z){1&G&&(t.TgZ(0,"div",0)(1,"div",1),t.YNc(2,ac,3,2,"mat-select",2),t._UZ(3,"mat-divider",3),t.YNc(4,Bd,4,3,"mat-tree",4),t._UZ(5,"mat-divider",3),t.TgZ(6,"mat-tree",5),t.YNc(7,$l,6,4,"mat-tree-node",6),t.qZA()(),t.TgZ(8,"div",7),t.YNc(9,lu,2,2,"mat-tree",4),t.qZA()(),t.YNc(10,Ud,6,0,"ng-template",null,8,t.W1O)),2&G&&(t.xp6(2),t.Q6J("ngIf",Z.appConfig.nodes.length>1),t.xp6(2),t.Q6J("ngIf",null==Z.settings?null:Z.settings.lnServerUrl),t.xp6(2),t.Q6J("dataSource",Z.navMenusShowData)("treeControl",Z.treeControlShowData),t.xp6(3),t.Q6J("ngIf",Z.showLogout))},dependencies:[sn.sg,sn.O5,sn.tP,qr.BN,$i.xw,$i.Wh,$i.yH,pt.RK,wo.Hw,Pa.d,ts.GZ,ts.fQ,ts.eu,ts.gi,ts.uo,ts.Ar,Re.gD,ft.ey,Gs.gM,Xn.rH,Xn.Od,_t.Vv,_t.$V],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]})}return N})();var Z1=p(7988);function oc(N,V){if(1&N&&(t.TgZ(0,"p",14),t._UZ(1,"fa-icon",3),t.TgZ(2,"span"),t._uU(3),t.qZA()()),2&N){const b=t.oxw();t.xp6(1),t.Q6J("icon",b.faCode),t.xp6(2),t.hij("API Version: ",null==b.information?null:b.information.api_version,"")}}function x0(N,V){if(1&N&&(t.TgZ(0,"p",15),t._UZ(1,"fa-icon",3),t.TgZ(2,"span",16),t._uU(3,"Settings"),t.qZA()()),2&N){const b=t.oxw();t.xp6(1),t.Q6J("icon",b.faUserCog)}}function W1(N,V){if(1&N&&(t.TgZ(0,"p",17),t._UZ(1,"fa-icon",3),t.TgZ(2,"span",18),t._uU(3,"Help"),t.qZA()()),2&N){const b=t.oxw();t.xp6(1),t.Q6J("icon",b.faQuestion)}}function C0(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"p",19),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.onClick())}),t._UZ(1,"fa-icon",3),t.TgZ(2,"span"),t._uU(3,"Logout"),t.qZA()()}if(2&N){const b=t.oxw();t.xp6(1),t.Q6J("icon",b.faEject)}}let e1=(()=>{class N{constructor(b,G,Z,He,Pt){this.logger=b,this.sessionService=G,this.store=Z,this.rtlEffects=He,this.actions=Pt,this.faUserCog=nn.gNZ,this.faCodeBranch=nn.mh3,this.faCode=nn.dT$,this.faCog=nn.b7W,this.faQuestion=nn.Psp,this.faEject=nn.KOR,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new Yi.x,new Yi.x,new Yi.x,new Yi.x],this.version=Kt.q4}ngOnInit(){this.store.select(Nr.R4).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{if(this.information=b,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 G=this.information.chains[0];this.informationChain.chain=G.chain,this.informationChain.network=G.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(b)}),this.sessionService.watchSession().pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{this.showLogout=!!b.token,this.flgLoading=!!b.token}),this.actions.pipe((0,qi.R)(this.unSubs[2]),(0,cr.h)(b=>b.type===Kt.pg.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,_e.c1)({payload:{data:{type:Kt.n_.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,qi.R)(this.unSubs[3])).subscribe(b=>{b&&(this.showLogout=!1,this.store.dispatch((0,_e.kS)()))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(Ls.m),t.Y36(Vi.yh),t.Y36(cn.V),t.Y36(lo.eX))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-top-menu"]],decls:20,vars:8,consts:[[1,"top-menu",3,"overlapTrigger"],["topMenu","matMenu"],["tabindex","1","mat-menu-item","",1,"cursor-default"],[1,"fa-icon-small","mr-1",3,"icon"],["tabindex","2","mat-menu-item","","class","cursor-default",4,"ngIf"],["tabindex","3","mat-menu-item","","routerLink","/settings",4,"ngIf"],["tabindex","4","mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","","tabindex","5","fxLayoutAlign","start center",3,"click"],["fill","currentColor","version","1.1","viewBox","0 0 64 64",0,"xml","space","preserve","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"svg-donation"],["d","M62.519,17.698l-12-14c-0.659-0.768-1.786-0.923-2.628-0.362l-8.712,5.808l-16.688,4.172 c-2.485,0.622-4.537,2.412-5.487,4.791L12.21,30.09C10.206,32.512,9,35.618,9,39c0,2.974,0.939,5.73,2.527,8H5 c-2.206,0-4,1.794-4,4v6c0,2.206,1.794,4,4,4h36c2.206,0,4-1.794,4-4v-6c0-2.206-1.794-4-4-4h-6.522 c0.375-0.535,0.713-1.1,1.013-1.691l4.291-2.452l3.378-0.965c2.619-0.749,4.903-2.269,6.604-4.395 c1.39-1.736,2.317-3.813,2.682-6.006l0.412-2.472l9.48-8.532C63.145,19.76,63.225,18.523,62.519,17.698z M34.428,30.929 c-1.487-2.094-3.517-3.732-5.842-4.75L29.207,25h7.058l0.588,4.11L34.428,30.929z M31.225,33.331l-0.373,0.28 c-1.772,1.329-2.889,3.273-3.146,5.473c-0.257,2.2,0.382,4.348,1.8,6.048l0.667,0.8C28.315,47.845,25.742,49,23,49 c-5.514,0-10-4.486-10-10s4.486-10,10-10C26.299,29,29.376,30.663,31.225,33.331z M41,57H5v-6h10.826c2.101,1.261,4.55,2,7.174,2 c2.571,0,5.041-0.723,7.176-2H41V57z M49.662,26.513c-0.336,0.303-0.561,0.711-0.635,1.158L48.5,30.833 c-0.253,1.521-0.896,2.96-1.86,4.165c-1.18,1.475-2.763,2.529-4.579,3.048l-3.61,1.031c-0.155,0.044-0.303,0.106-0.443,0.187 l-5.541,3.166c-0.63-0.826-0.909-1.843-0.788-2.882c0.128-1.1,0.687-2.072,1.573-2.737l6.001-4.5 c1.169-0.877,1.767-2.32,1.56-3.766l-0.587-4.11C39.946,22.477,38.244,21,36.266,21h-7.059c-1.489,0-2.845,0.818-3.539,2.136 l-1.037,1.969C24.093,25.041,23.549,25,23,25c-1.685,0-3.294,0.314-4.791,0.862l2.509-6.271c0.476-1.189,1.501-2.084,2.743-2.395 l17.024-4.256c0.223-0.056,0.434-0.149,0.625-0.276l7.525-5.017l9.576,11.172L49.662,26.513z"],["tabindex","6","mat-menu-item","",3,"click",4,"ngIf"],["tabindex","7","mat-icon-button","",3,"matMenuTriggerFor"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-log-top"],[1,"rtl-logo-dropdown","color-white"],["tabindex","2","mat-menu-item","",1,"cursor-default"],["tabindex","3","mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["tabindex","4","mat-menu-item","","routerLink","/help"],["routerLink","/help"],["tabindex","6","mat-menu-item","",3,"click"]],template:function(G,Z){if(1&G&&(t.TgZ(0,"mat-menu",0,1)(2,"p",2),t._UZ(3,"fa-icon",3),t.TgZ(4,"span"),t._uU(5),t.qZA()(),t.YNc(6,oc,4,2,"p",4)(7,x0,4,1,"p",5)(8,W1,4,1,"p",6),t.TgZ(9,"p",7),t.NdJ("click",function(){return Z.onDonate()}),t.O4$(),t.TgZ(10,"svg",8)(11,"g"),t._UZ(12,"path",9),t.qZA()(),t.kcU(),t.TgZ(13,"span"),t._uU(14,"Donate"),t.qZA()(),t.YNc(15,C0,4,1,"p",10),t.qZA(),t.TgZ(16,"button",11),t._UZ(17,"img",12),t.TgZ(18,"mat-icon",13),t._uU(19,"arrow_drop_down"),t.qZA()()),2&G){const He=t.MAs(1);t.Q6J("overlapTrigger",!1),t.xp6(3),t.Q6J("icon",Z.faCodeBranch),t.xp6(2),t.hij("Version: ",Z.version,""),t.xp6(1),t.Q6J("ngIf",null==Z.information?null:Z.information.api_version),t.xp6(1),t.Q6J("ngIf",Z.showLogout),t.xp6(1),t.Q6J("ngIf",Z.showLogout),t.xp6(7),t.Q6J("ngIf",Z.showLogout),t.xp6(1),t.Q6J("matMenuTriggerFor",He)}},dependencies:[sn.O5,qr.BN,$i.Wh,pt.RK,wo.Hw,Z1.VK,Z1.OP,Z1.p6,Xn.rH],styles:[".mat-mdc-icon-button img.rtl-log-top{width:2rem;height:2rem}.mat-icon.material-icons.mat-icon-no-color.rtl-logo-dropdown{height:2rem}\n"],encapsulation:2})}return N})();const cl=["sideNavigation"],w0=["sideNavContent"];function M0(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",14),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.sideNavToggle())}),t.TgZ(1,"mat-icon",15),t._uU(2,"menu"),t.qZA()()}if(2&N){const b=t.oxw();t.Q6J("matTooltip",b.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",b.smallScreen)}}function Y1(N,V){1&N&&(t.O4$(),t._UZ(0,"path",20))}function j1(N,V){1&N&&(t.O4$(),t._UZ(0,"path",21))}function sc(N,V){if(1&N){const b=t.EpF();t.TgZ(0,"button",16),t.NdJ("click",function(){t.CHM(b);const Z=t.oxw();return t.KtG(Z.flgSidenavPinned=!Z.flgSidenavPinned)}),t.O4$(),t.TgZ(1,"svg",17),t.YNc(2,Y1,1,0,"path",18)(3,j1,1,0,"path",19),t.qZA()()}if(2&N){const b=t.oxw();t.Q6J("matTooltip",b.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),t.xp6(2),t.Q6J("ngIf",!b.flgSidenavPinned),t.xp6(1),t.Q6J("ngIf",b.flgSidenavPinned)}}function Lc(N,V){if(1&N&&(t.TgZ(0,"span",22),t._uU(1),t.qZA()),2&N){const b=t.oxw();t.xp6(1),t.Oqu(b.information.alias?"RTL - "+b.information.alias:"RTL")}}function t1(N,V){if(1&N&&(t.TgZ(0,"span",23),t._uU(1),t.qZA()),2&N){const b=t.oxw();t.xp6(1),t.Oqu(b.information.alias?"Ride The Lightning - "+b.information.alias:"Ride The Lightning")}}function hu(N,V){1&N&&(t.TgZ(0,"div",24),t._UZ(1,"mat-spinner",25),t.TgZ(2,"h4"),t._uU(3,"Loading RTL..."),t.qZA()())}const Gd=(N,V)=>[N,V];let Zd=(()=>{class N{constructor(b,G,Z,He,Pt,ti,fi,wi,dn){this.logger=b,this.commonService=G,this.store=Z,this.actions=He,this.userIdle=Pt,this.router=ti,this.sessionService=fi,this.breakpointObserver=wi,this.renderer=dn,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 Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x,new Yi.x]}ngOnInit(){this.router.events.subscribe(b=>{b instanceof Xn.m2&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([Hn.u3.XSmall,Hn.u3.TabletPortrait,Hn.u3.Small,Hn.u3.Medium,Hn.u3.Large,Hn.u3.XLarge]).pipe((0,qi.R)(this.unSubs[0])).subscribe(b=>{b.breakpoints[Hn.u3.XSmall]?(this.commonService.setScreenSize(Kt.cu.XS),this.smallScreen=!0):b.breakpoints[Hn.u3.TabletPortrait]?(this.commonService.setScreenSize(Kt.cu.SM),this.smallScreen=!0):b.breakpoints[Hn.u3.Small]||b.breakpoints[Hn.u3.Medium]?(this.commonService.setScreenSize(Kt.cu.MD),this.smallScreen=!1):b.breakpoints[Hn.u3.Large]?(this.commonService.setScreenSize(Kt.cu.LG),this.smallScreen=!1):(this.commonService.setScreenSize(Kt.cu.XL),this.smallScreen=!1)}),this.store.dispatch((0,_e.ey)()),this.accessKey=this.readAccessKey()||"",this.store.select(Nr.dT).pipe((0,qi.R)(this.unSubs[1])).subscribe(b=>{this.settings=b.settings,this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1)}),this.store.select(Nr.Yj).pipe((0,qi.R)(this.unSubs[2])).subscribe(b=>{this.appConfig=b}),this.store.select(Nr.R4).pipe((0,qi.R)(this.unSubs[3])).subscribe(b=>{this.information=b,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,qi.R)(this.unSubs[4]),(0,cr.h)(b=>b.type===Kt.pg.SET_RTL_CONFIG||b.type===Kt.pg.LOGIN||b.type===Kt.pg.LOGOUT)).subscribe(b=>{b.type===Kt.pg.SET_RTL_CONFIG&&(this.sessionService.getItem("token")||(+b.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,_e.x4)({payload:{password:Si(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"]))),b.type===Kt.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)),b.type===Kt.pg.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,qi.R)(this.unSubs[5])).subscribe(b=>{this.logger.info("Counting Down: "+(11-b))}),this.userIdle.onTimeout().pipe((0,qi.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,_e.ts)()),this.store.dispatch((0,_e.qR)({payload:{data:{type:Kt.n_.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,_e.kS)()))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const b=window.location.href;return b.includes("access-key=")?b.substring(b.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(b){this.smallScreen&&this.sideNavigation.close()}copiedText(b){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+b)}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(G){return new(G||N)(t.Y36(Tt.mQ),t.Y36(na.v),t.Y36(Vi.yh),t.Y36(lo.eX),t.Y36(Vs),t.Y36(Xn.F0),t.Y36(Ls.m),t.Y36(Hn.Yg),t.Y36(t.Qsj))};static#t=this.\u0275cmp=t.Xpm({type:N,selectors:[["rtl-app"]],viewQuery:function(G,Z){if(1&G&&(t.Gf(cl,5),t.Gf(w0,5)),2&G){let He;t.iGM(He=t.CRH())&&(Z.sideNavigation=He.first),t.iGM(He=t.CRH())&&(Z.sideNavContent=He.first)}},decls:23,vars:15,consts:[["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"bg-primary","rtl-top-toolbar"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],["class","font-weight-500",4,"ngIf"],["class","font-size-120 font-weight-500",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",3,"matTooltip","matTooltipDisabled","click"],[1,"color-white"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click"],["width","20","height","20","viewBox","0 0 24 24",1,"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,"font-weight-500"],[1,"font-size-120","font-weight-500"],[1,"rtl-spinner"],["color","accent"]],template:function(G,Z){1&G&&(t.TgZ(0,"div",0),t.ALo(1,"lowercase"),t.ALo(2,"lowercase"),t.TgZ(3,"mat-toolbar",1)(4,"div"),t.YNc(5,M0,3,2,"button",2)(6,sc,4,3,"button",3),t.qZA(),t.TgZ(7,"div"),t.YNc(8,Lc,2,1,"span",4)(9,t1,2,1,"span",5),t.qZA(),t.TgZ(10,"div"),t._UZ(11,"rtl-top-menu"),t.qZA()(),t.TgZ(12,"mat-sidenav-container")(13,"mat-sidenav",6,7)(15,"rtl-side-navigation",8),t.NdJ("ChildNavClicked",function(Pt){return Z.onNavigationClicked(Pt)}),t.qZA()(),t.TgZ(16,"mat-sidenav-content",9,10)(18,"div",11),t._UZ(19,"router-outlet",null,12),t.qZA()(),t._uU(21,"> "),t.qZA(),t.YNc(22,hu,4,0,"div",13),t.qZA()),2&G&&(t.Q6J("ngClass",t.WLB(12,Gd,t.lcZ(1,8,Z.settings.themeColor),t.lcZ(2,10,Z.settings.themeMode))),t.xp6(5),t.Q6J("ngIf",Z.flgLoggedIn),t.xp6(1),t.Q6J("ngIf",!Z.smallScreen&&Z.flgLoggedIn),t.xp6(2),t.Q6J("ngIf",Z.smallScreen),t.xp6(1),t.Q6J("ngIf",!Z.smallScreen),t.xp6(4),t.Q6J("opened",Z.flgSideNavOpened&&Z.flgLoggedIn)("mode",Z.flgSidenavPinned&&!Z.smallScreen?"side":"over"),t.xp6(9),t.Q6J("ngIf",!Z.settings.themeColor))},dependencies:[sn.mk,sn.O5,$i.xw,$i.Wh,$i.yH,me.oO,pt.RK,wo.Hw,g0.Ou,z1.JX,z1.TM,z1.Rh,Xl.Ye,Gs.gM,_t.$V,du,e1,Xn.lC,sn.i8],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[au.g]}})}return N})(),S0=(()=>{class N{constructor(b){this.sessionService=b}intercept(b,G){if(this.sessionService.getItem("token")){const Z=b.clone({headers:b.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return G.handle(Z)}return G.handle(b)}static#e=this.\u0275fac=function(G){return new(G||N)(t.LFG(Ls.m))};static#t=this.\u0275prov=t.Yz7({token:N,factory:N.\u0275fac})}return N})();var uu=p(2285),fu=p(168),mu=p(9125),E0=p(9337);const T0={userPersona:"OPERATOR",themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1},Wd={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},ll={apiURL:"",apisCallStatus:{Login:{status:Kt.Bn.UN_INITIATED},IsAuthorized:{status:Kt.Bn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:T0,authentication:Wd,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,sso:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,allowPasswordUpdate:!0,nodes:[{settings:T0,authentication:Wd}]},nodeData:{}},n1=(0,Vi.Lq)(ll,(0,Vi.on)(_e.qi,(N,{payload:V})=>{const b=JSON.parse(JSON.stringify(N.apisCallStatus));return V.action&&(b[V.action]={status:V.status,statusCode:V.statusCode,message:V.message,URL:V.URL,filePath:V.filePath}),{...N,apisCallStatus:b}}),(0,Vi.on)(_e.vI,(N,{payload:V})=>({...ll,apisCallStatus:N.apisCallStatus,appConfig:N.appConfig,selNode:V})),(0,Vi.on)(_e.fk,(N,{payload:V})=>({...N,selNode:V.currentLnNode})),(0,Vi.on)(_e.Tm,(N,{payload:V})=>{const b=JSON.parse(JSON.stringify(N.selNode));switch(V.service){case Kt.JX.BOLTZ:b.settings.boltzServerUrl=V.settings.boltzServerUrl;break;case Kt.JX.LOOP:b.settings.swapServerUrl=V.settings.swapServerUrl;break;case Kt.JX.OFFERS:b.settings.enableOffers=V.settings.enableOffers;break;case Kt.JX.PEERSWAP:b.settings.enablePeerswap=V.settings.enablePeerswap}return{...N,selNode:b}}),(0,Vi.on)(_e._V,(N,{payload:V})=>({...N,nodeData:V})),(0,Vi.on)(_e.XT,(N,{payload:V})=>({...N,appConfig:V}))),K1={apisCallStatus:{FetchPageSettings:{status:Kt.Bn.UN_INITIATED},FetchInfo:{status:Kt.Bn.UN_INITIATED},FetchFees:{status:Kt.Bn.UN_INITIATED},FetchPeers:{status:Kt.Bn.UN_INITIATED},FetchClosedChannels:{status:Kt.Bn.UN_INITIATED},FetchPendingChannels:{status:Kt.Bn.UN_INITIATED},FetchAllChannels:{status:Kt.Bn.UN_INITIATED},FetchBalanceBlockchain:{status:Kt.Bn.UN_INITIATED},FetchInvoices:{status:Kt.Bn.UN_INITIATED},FetchPayments:{status:Kt.Bn.UN_INITIATED},FetchForwardingHistory:{status:Kt.Bn.UN_INITIATED},FetchUTXOs:{status:Kt.Bn.UN_INITIATED},FetchTransactions:{status:Kt.Bn.UN_INITIATED},FetchLightningTransactions:{status:Kt.Bn.UN_INITIATED},FetchNetwork:{status:Kt.Bn.UN_INITIATED}},nodeSettings:{userPersona:Kt.ol.OPERATOR,unannouncedChannels:!1,fiatConversion:!1,channelBackupPath:"",currencyUnits:[],selCurrencyUnit:"",lnImplementation:"",swapServerUrl:""},pageSettings:Kt.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 A0=!1,Yd=!1;const jd=(0,Vi.Lq)(K1,(0,Vi.on)(xr.PC,(N,{payload:V})=>{const b=JSON.parse(JSON.stringify(N.apisCallStatus));return V.action&&(b[V.action]={status:V.status,statusCode:V.statusCode,message:V.message,URL:V.URL,filePath:V.filePath}),{...N,apisCallStatus:b}}),(0,Vi.on)(xr.JT,(N,{payload:V})=>({...N,nodeSettings:V})),(0,Vi.on)(xr.Ll,(N,{payload:V})=>({...K1,nodeSettings:V})),(0,Vi.on)(xr.CX,(N,{payload:V})=>({...N,information:V})),(0,Vi.on)(xr.Z8,(N,{payload:V})=>({...N,peers:V})),(0,Vi.on)(xr.EK,(N,{payload:V})=>{const b=[...N.peers],G=N.peers.findIndex(Z=>Z.pub_key===V.pubkey);return G>-1&&b.splice(G,1),{...N,peers:b}}),(0,Vi.on)(xr.YP,(N,{payload:V})=>{const b=N.listInvoices;return b.invoices?.unshift(V),{...N,listInvoices:b}}),(0,Vi.on)(xr.aL,(N,{payload:V})=>{const b=N.listInvoices;return b.invoices=b.invoices?.map(G=>G.payment_request===V.payment_request?V:G),{...N,listInvoices:b}}),(0,Vi.on)(xr.qY,(N,{payload:V})=>{const b=N.listPayments;return b.payments=b.payments?.map(G=>G.payment_hash===V.payment_hash?V:G),{...N,listPayments:b}}),(0,Vi.on)(xr.RX,(N,{payload:V})=>({...N,fees:V})),(0,Vi.on)(xr._L,(N,{payload:V})=>({...N,closedChannels:V})),(0,Vi.on)(xr.TW,(N,{payload:V})=>({...N,pendingChannels:V.pendingChannels,pendingChannelsSummary:V.pendingChannelsSummary})),(0,Vi.on)(xr.as,(N,{payload:V})=>{let b=0,G=0,Z=0,He=0,Pt=0,ti=0;return V&&V.forEach(fi=>{fi.local_balance||(fi.local_balance=0),!0===fi.active?(Pt+=+fi.local_balance,Z+=1,fi.local_balance?b=+b+ +fi.local_balance:fi.local_balance=0,fi.remote_balance?G=+G+ +fi.remote_balance:fi.remote_balance=0):(ti+=+fi.local_balance,He+=1)}),{...N,channels:V,channelsSummary:{active:{num_channels:Z,capacity:Pt},inactive:{num_channels:He,capacity:ti}},lightningBalance:{local:b,remote:G}}}),(0,Vi.on)(xr.OG,(N,{payload:V})=>{const b=[...N.channels],G=N.channels.findIndex(Z=>Z.channel_point===V.channelPoint);return G>-1&&b.splice(G,1),{...N,channels:b}}),(0,Vi.on)(xr.Jl,(N,{payload:V})=>({...N,blockchainBalance:V})),(0,Vi.on)(xr.ks,(N,{payload:V})=>({...N,networkInfo:V})),(0,Vi.on)(xr.Nr,(N,{payload:V})=>(V.total_invoices||(V.total_invoices=N.listInvoices.total_invoices),{...N,listInvoices:V})),(0,Vi.on)(xr.Lf,(N,{payload:V})=>{if(A0=!0,V.length&&Yd){const b=[...N.utxos];return b.forEach(G=>{const Z=V.find(He=>He.tx_hash===G.outpoint?.txid_str);G.label=Z&&Z.label?Z.label:""}),{...N,utxos:b,transactions:V}}return{...N,transactions:V}}),(0,Vi.on)(xr.UH,(N,{payload:V})=>{if(Yd=!0,V.length&&A0){const b=[...N.transactions];V.forEach(G=>{const Z=b.find(He=>He.tx_hash===G.outpoint?.txid_str);G.label=Z&&Z.label?Z.label:""})}return{...N,utxos:V}}),(0,Vi.on)(xr.HI,(N,{payload:V})=>{const b={listInvoicesAll:N.allLightningTransactions.listInvoicesAll,listPaymentsAll:V};return{...N,listPayments:V,allLightningTransactions:b}}),(0,Vi.on)(xr.Fr,(N,{payload:V})=>{const b={listInvoicesAll:V.listInvoicesAll,listPaymentsAll:N.listPayments};return{...N,allLightningTransactions:b}}),(0,Vi.on)(xr.QJ,(N,{payload:V})=>{const b=[...N.channels,...N.closedChannels];let G=V.forwarding_events?JSON.parse(JSON.stringify(V)):{};return G.forwarding_events&&(G=r1(G,b)),{...N,forwardingHistory:G}}),(0,Vi.on)(xr.pd,(N,{payload:V})=>{const b=[];return Kt.gK.forEach(G=>{const Z=V&&V.length&&V.length>0?V.find(He=>He.pageId===G.pageId):null;if(Z){const He=JSON.parse(JSON.stringify(Z.tables));Z.tables=[],G.tables.forEach(Pt=>{const ti=He.find(fi=>fi.tableId===Pt.tableId)||null;Z.tables.push(ti||JSON.parse(JSON.stringify(Pt)))}),b.push(Z)}else b.push(JSON.parse(JSON.stringify(G)))}),{...N,pageSettings:b}})),r1=(N,V)=>(N.forwarding_events.forEach(b=>{if(V&&V.length>0)for(let G=0;G{const b=JSON.parse(JSON.stringify(N.apisCallStatus));return V.action&&(b[V.action]={status:V.status,statusCode:V.statusCode,message:V.message,URL:V.URL,filePath:V.filePath}),{...N,apisCallStatus:b}}),(0,Vi.on)(Wn.Mf,(N,{payload:V})=>({...N,nodeSettings:V})),(0,Vi.on)(Wn.mI,(N,{payload:V})=>({...cc,nodeSettings:V})),(0,Vi.on)(Wn.CX,(N,{payload:V})=>({...N,information:V,fees:{feeCollected:V.fees_collected_msat}})),(0,Vi.on)(Wn.I8,(N,{payload:V})=>V.perkb?{...N,feeRatesPerKB:V}:V.perkw?{...N,feeRatesPerKW:V}:{...N}),(0,Vi.on)(Wn.nE,(N,{payload:V})=>({...N,utxos:V.utxos||[],balance:V.balance,localRemoteBalance:V.localRemoteBalance})),(0,Vi.on)(Wn.Z8,(N,{payload:V})=>({...N,peers:V})),(0,Vi.on)(Wn.X3,(N,{payload:V})=>({...N,peers:[...N.peers,V]})),(0,Vi.on)(Wn.EK,(N,{payload:V})=>{const b=[...N.peers],G=N.peers.findIndex(Z=>Z.id===V.id);return G>-1&&b.splice(G,1),{...N,peers:b}}),(0,Vi.on)(Wn.as,(N,{payload:V})=>({...N,activeChannels:V.activeChannels,pendingChannels:V.pendingChannels,inactiveChannels:V.inactiveChannels})),(0,Vi.on)(Wn.OG,(N,{payload:V})=>{const b=[...N.peers];return b.forEach(G=>{G.id===V.id&&(G.connected=!1,delete G.netaddr)}),{...N,peers:b}}),(0,Vi.on)(Wn.HI,(N,{payload:V})=>({...N,payments:V})),(0,Vi.on)(Wn.QJ,(N,{payload:V})=>{const b=[...N.activeChannels,...N.pendingChannels,...N.inactiveChannels],G=L0(V.listForwards,b);switch(V.listForwards=G,V.status){case Kt.OO.SETTLED:const Z=N.fees;return Z.totalTxCount=V.totalForwards||0,{...N,fees:Z,forwardingHistory:V};case Kt.OO.FAILED:return{...N,failedForwardingHistory:V};case Kt.OO.LOCAL_FAILED:return{...N,localFailedForwardingHistory:V};default:return{...N}}}),(0,Vi.on)(Wn.YP,(N,{payload:V})=>{const b=N.invoices;return b.invoices?.unshift(V),{...N,invoices:b}}),(0,Vi.on)(Wn.Nr,(N,{payload:V})=>({...N,invoices:V})),(0,Vi.on)(Wn.aL,(N,{payload:V})=>{const b=N.invoices;return b.invoices=b.invoices?.map(G=>(G.label===V.label&&(G.amount_received_msat=V.msat,G.payment_preimage=V.preimage,G.status="paid"),G)),{...N,invoices:b}}),(0,Vi.on)(Wn.Zu,(N,{payload:V})=>({...N,offers:V})),(0,Vi.on)(Wn.ZH,(N,{payload:V})=>{const b=N.offers;return b?.unshift(V),{...N,offers:b}}),(0,Vi.on)(Wn.JK,(N,{payload:V})=>{const b=[...N.offers],G=N.offers.findIndex(Z=>Z.offer_id===V.offer.offer_id);return G>-1&&b.splice(G,1,V.offer),{...N,offers:b}}),(0,Vi.on)(Wn.d7,(N,{payload:V})=>({...N,offersBookmarks:V})),(0,Vi.on)(Wn.e9,(N,{payload:V})=>{const b=[...N.offersBookmarks],G=b.findIndex(Z=>Z.bolt12===V.bolt12);if(G<0)b?.unshift(V);else{const Z={...b[G]};Z.title=V.title,Z.amountMSat=V.amountMSat,Z.lastUpdatedAt=V.lastUpdatedAt,Z.description=V.description,Z.issuer=V.issuer,b.splice(G,1,Z)}return{...N,offersBookmarks:b}}),(0,Vi.on)(Wn.en,(N,{payload:V})=>{const b=[...N.offersBookmarks],G=N.offersBookmarks.findIndex(Z=>Z.bolt12===V.bolt12);return G>-1&&b.splice(G,1),{...N,offersBookmarks:b}}),(0,Vi.on)(Wn.pd,(N,{payload:V})=>{const b=[];return Kt.gG.forEach(G=>{const Z=V&&V.length&&V.length>0?V.find(He=>He.pageId===G.pageId):null;if(Z){const He=JSON.parse(JSON.stringify(Z.tables));Z.tables=[],G.tables.forEach(Pt=>{const ti=He.find(fi=>fi.tableId===Pt.tableId)||null;Z.tables.push(ti||JSON.parse(JSON.stringify(Pt)))}),b.push(Z)}else b.push(JSON.parse(JSON.stringify(G)))}),{...N,pageSettings:b}})),L0=(N,V)=>(N&&N.length>0?N.forEach((b,G)=>{if(V&&V.length>0)for(let Z=0;Z{const b=JSON.parse(JSON.stringify(N.apisCallStatus));return V.action&&(b[V.action]={status:V.status,statusCode:V.statusCode,message:V.message,URL:V.URL,filePath:V.filePath}),{...N,apisCallStatus:b}}),(0,Vi.on)(qn.Zr,(N,{payload:V})=>({...N,nodeSettings:V})),(0,Vi.on)(qn.Fd,(N,{payload:V})=>({...k0,nodeSettings:V})),(0,Vi.on)(qn.CX,(N,{payload:V})=>({...N,information:V})),(0,Vi.on)(qn.RX,(N,{payload:V})=>({...N,fees:V})),(0,Vi.on)(qn.eN,(N,{payload:V})=>({...N,activeChannels:V})),(0,Vi.on)(qn.TW,(N,{payload:V})=>({...N,pendingChannels:V})),(0,Vi.on)(qn.i,(N,{payload:V})=>({...N,inactiveChannels:V})),(0,Vi.on)(qn.HG,(N,{payload:V})=>({...N,channelsStatus:V})),(0,Vi.on)(qn.Bw,(N,{payload:V})=>({...N,onchainBalance:V})),(0,Vi.on)(qn.On,(N,{payload:V})=>({...N,lightningBalance:V})),(0,Vi.on)(qn.Z8,(N,{payload:V})=>({...N,peers:V})),(0,Vi.on)(qn.EK,(N,{payload:V})=>{const b=[...N.peers],G=N.peers.findIndex(Z=>Z.nodeId===V.nodeId);return G>-1&&b.splice(G,1),{...N,peers:b}}),(0,Vi.on)(qn.OG,(N,{payload:V})=>{const b=[...N.activeChannels],G=N.activeChannels.findIndex(Z=>Z.channelId===V.channelId);return G>-1&&b.splice(G,1),{...N,activeChannels:b}}),(0,Vi.on)(qn.HI,(N,{payload:V})=>{if(V&&V.sent){const b=[...N.activeChannels,...N.pendingChannels,...N.inactiveChannels];V.sent?.map(G=>{const Z=N.peers.find(He=>He.nodeId===G.recipientNodeId);return G.recipientNodeAlias=Z?Z.alias:G.recipientNodeId,G.parts&&G.parts?.map(He=>{const Pt=b.find(ti=>ti.channelId===He.toChannelId);return He.toChannelAlias=Pt?Pt.alias:He.toChannelId,G.parts}),V.sent})}if(V&&V.relayed){const b=[...N.activeChannels,...N.pendingChannels,...N.inactiveChannels];V.relayed.forEach(G=>{G=dl(G,b)})}return{...N,payments:V}}),(0,Vi.on)(qn.Lf,(N,{payload:V})=>({...N,transactions:V})),(0,Vi.on)(qn.YP,(N,{payload:V})=>{const b=N.invoices;return b?.unshift(V),{...N,invoices:b}}),(0,Vi.on)(qn.Nr,(N,{payload:V})=>({...N,invoices:V})),(0,Vi.on)(qn.aL,(N,{payload:V})=>{let b=N.invoices;return b=b?.map(G=>{if(G.paymentHash===V.paymentHash){if(V.hasOwnProperty("type")){const Z=JSON.parse(JSON.stringify(G));return Z.amountSettled=V.parts&&V.parts.length&&V.parts.length>0&&V.parts[0].amount?(V.parts[0].amount||0)/1e3:0,Z.receivedAt=V.parts&&V.parts.length&&V.parts.length>0&&V.parts[0].timestamp?Math.round((V.parts[0].timestamp||0)/1e3):0,Z.status="received",Z}return V}return G}),{...N,invoices:b}}),(0,Vi.on)(qn.DJ,(N,{payload:V})=>{let b=N.pendingChannels;return b=b?.map(G=>(G.channelId===V.channelId&&G.nodeId===V.remoteNodeId&&(V.currentState=V.currentState?.replace(/_/g," "),G.state=V.currentState),G)),{...N,pendingChannels:b}}),(0,Vi.on)(qn.ti,(N,{payload:V})=>{const b=N.payments,G=dl(V,[...N.activeChannels,...N.pendingChannels,...N.inactiveChannels]);b.relayed?.unshift(G);const Z=(V.amountIn||0)-(V.amountOut||0),He={localBalance:N.lightningBalance.localBalance+Z,remoteBalance:N.lightningBalance.remoteBalance-Z},Pt=N.channelsStatus;Pt.active&&(Pt.active.capacity=(N.channelsStatus?.active?.capacity||0)+Z);const ti={daily_fee:(N.fees.daily_fee||0)+Z,daily_txs:(N.fees.daily_txs||0)+1,weekly_fee:(N.fees.weekly_fee||0)+Z,weekly_txs:(N.fees.weekly_txs||0)+1,monthly_fee:(N.fees.monthly_fee||0)+Z,monthly_txs:(N.fees.monthly_txs||0)+1},fi=N.activeChannels;let wi=!1,dn=!1;for(const Qi of fi){if(Qi.channelId===V.fromChannelId){wi=!0;const zn=(Qi.toLocal||0)+(Qi.toRemote||0);Qi.toLocal=(Qi.toLocal||0)+G.amountIn,Qi.toRemote=(Qi.toRemote||0)-G.amountIn,Qi.balancedness=0===zn?1:+(1-Math.abs((Qi.toLocal-Qi.toRemote)/zn)).toFixed(3)}if(Qi.channelId===V.toChannelId){dn=!0;const zn=(Qi.toLocal||0)+(Qi.toRemote||0);Qi.toLocal=(Qi.toLocal||0)-G.amountOut,Qi.toRemote=(Qi.toRemote||0)+G.amountOut,Qi.balancedness=0===zn?1:+(1-Math.abs((Qi.toLocal-Qi.toRemote)/zn)).toFixed(3)}if(dn&&wi)break}return{...N,payments:b,lightningBalance:He,channelStatus:Pt,fees:ti,activeChannels:fi}}),(0,Vi.on)(qn.pd,(N,{payload:V})=>{const b=[];return Kt.c3.forEach(G=>{const Z=V&&V.length&&V.length>0?V.find(He=>He.pageId===G.pageId):null;if(Z){const He=JSON.parse(JSON.stringify(Z.tables));Z.tables=[],G.tables.forEach(Pt=>{const ti=He.find(fi=>fi.tableId===Pt.tableId)||null;Z.tables.push(ti||JSON.parse(JSON.stringify(Pt)))}),b.push(Z)}else b.push(JSON.parse(JSON.stringify(G)))}),{...N,pageSettings:b}})),dl=(N,V)=>{if("payment-relayed"===N.type)if(V&&V.length>0)for(let b=0;b0)for(let Z=0;Z{V[Z].channelId?.toString()===He.channelId&&(He.channelAlias=V[Z].alias?V[Z].alias:He.channelId,He.shortChannelId=V[Z].shortChannelId?V[Z].shortChannelId:"")}),N.outgoing?.forEach(He=>{V[Z].channelId?.toString()===He.channelId&&(He.channelAlias=V[Z].alias?V[Z].alias:He.channelId,He.shortChannelId=V[Z].shortChannelId?V[Z].shortChannelId:"")}),Z===V.length-1&&(N.incoming&&N.incoming.length&&N.incoming.length>0&&!N.incoming[0].channelAlias&&N.incoming?.forEach(He=>{He.channelAlias=He.channelId?.substring(0,17)+"...",He.shortChannelId=""}),N.outgoing&&N.outgoing.length&&N.outgoing.length>0&&!N.outgoing[0].channelAlias&&N.outgoing?.forEach(He=>{He.channelAlias=He.channelId?.substring(0,17)+"...",He.shortChannelId=""}));else N.incoming?.forEach(Z=>{Z.channelAlias=Z.channelId?.substring(0,17)+"...",Z.shortChannelId=""}),N.outgoing?.forEach(Z=>{Z.channelAlias=Z.channelId?.substring(0,17)+"...",Z.shortChannelId=""});const b=N.incoming?.reduce((Z,He)=>Z+He.amount,0)||0;N.amountIn=Math.round(b/1e3),N.fromChannelId=N.incoming&&N.incoming.length?N.incoming[0].channelId:"",N.fromChannelAlias=N.incoming&&N.incoming.length?N.incoming[0].channelAlias:"",N.fromShortChannelId=N.incoming&&N.incoming.length?N.incoming[0].shortChannelId:"";const G=N.outgoing?.reduce((Z,He)=>Z+He.amount,0)||0;N.amountOut=Math.round(G/1e3),N.toChannelId=N.outgoing&&N.outgoing.length?N.outgoing[0].channelId:"",N.toChannelAlias=N.outgoing&&N.outgoing.length?N.outgoing[0].channelAlias:"",N.toShortChannelId=N.outgoing&&N.outgoing.length?N.outgoing[0].shortChannelId:""}return N};let I0=!1;(0,t.X6Q)()&&(I0=!0);let O0=(()=>{class N{static#e=this.\u0275fac=function(G){return new(G||N)};static#t=this.\u0275mod=t.oAB({type:N,bootstrap:[Zd]});static#i=this.\u0275inj=t.cJS({providers:[Bo({idle:Kt.k_-10,timeout:10,ping:12e3}),{provide:yo.TP,useClass:S0,multi:!0},Ls.m,Rd.D,uu.d,C1.W,na.v,Os],imports:[zi,F1.m,al,Hn.xu,e.t6,Vi.Aw.forRoot({root:n1,lnd:jd,cln:D0,ecl:Qf},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),lo.sQ.forRoot([cn.V,fu.l,mu.J,E0.o]),I0?An.FT.instrument({connectInZone:!0}):[]]})}return N})();e.q6().bootstrapModule(O0).catch(N=>console.error(N))},9599:(Fe,q)=>{"use strict";function p(fe){return Object.keys(fe).map(de=>fe[de])}var fe;Object.defineProperty(q,"__esModule",{value:!0}),(fe=q.HashAlgorithms||(q.HashAlgorithms={})).SHA1="sha1",fe.SHA256="sha256",fe.SHA512="sha512";const e=p(q.HashAlgorithms);!function(fe){fe.ASCII="ascii",fe.BASE64="base64",fe.HEX="hex",fe.LATIN1="latin1",fe.UTF8="utf8"}(q.KeyEncodings||(q.KeyEncodings={}));const t=p(q.KeyEncodings);!function(fe){fe.HOTP="hotp",fe.TOTP="totp"}(q.Strategy||(q.Strategy={}));const y=p(q.Strategy),A=()=>{throw new Error("Please provide an options.createDigest implementation.")};function l(fe){return/^(\d+)$/.test(fe)}function w(fe,de,xe){return fe.length>=de?fe:`${Array(de+1).join(xe)}${fe}`.slice(-1*de)}function m(fe){const de=`otpauth://${fe.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,xe=[];if(y.indexOf(fe.type)<0)throw new Error(`Expecting options.type to be one of ${y.join(", ")}. Received ${fe.type}.`);if("hotp"===fe.type){if(null==fe.counter||"number"!=typeof fe.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');xe.push(`&counter=${fe.counter}`)}return"totp"===fe.type&&fe.step&&xe.push(`&period=${fe.step}`),fe.digits&&xe.push(`&digits=${fe.digits}`),fe.algorithm&&xe.push(`&algorithm=${fe.algorithm.toUpperCase()}`),fe.issuer&&xe.push(`&issuer=${encodeURIComponent(fe.issuer)}`),de.replace("{labelPrefix}",encodeURIComponent(fe.issuer||fe.accountName)).replace("{accountName}",encodeURIComponent(fe.accountName)).replace("{secret}",fe.secret).replace("{query}",xe.join(""))}class P{constructor(de={}){this._defaultOptions=Object.freeze({...de}),this._options=Object.freeze({})}create(de={}){return new P(de)}clone(de={}){const xe=this.create({...this._defaultOptions,...de});return xe.options=this._options,xe}get options(){return Object.freeze({...this._defaultOptions,...this._options})}set options(de){this._options=Object.freeze({...this._options,...de})}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function d(fe){if("function"!=typeof fe.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof fe.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof fe.digits)throw new Error("Expecting options.digits to be a number.");if(!fe.algorithm||e.indexOf(fe.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${e.join(", ")}. Received ${fe.algorithm}.`);if(!fe.encoding||t.indexOf(fe.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${t.join(", ")}. Received ${fe.encoding}.`)}const E=(fe,de,xe)=>Buffer.from(de,xe).toString("hex");function M(){return{algorithm:q.HashAlgorithms.SHA1,createHmacKey:E,createDigest:A,digits:6,encoding:q.KeyEncodings.ASCII}}function I(fe){const de={...M(),...fe};return d(de),Object.freeze(de)}function k(fe){return w(fe.toString(16),16,"0")}function z(fe,de){const xe=Buffer.from(fe,"hex"),le=15&xe[xe.length-1],qe=((127&xe[le])<<24|(255&xe[le+1])<<16|(255&xe[le+2])<<8|255&xe[le+3])%Math.pow(10,de);return w(String(qe),de,"0")}function W(fe,de,xe){const le=xe.digest||function B(fe,de,xe){const le=k(de),pe=xe.createHmacKey(xe.algorithm,fe,xe.encoding);return xe.createDigest(xe.algorithm,pe,le)}(fe,de,xe);return z(le,xe.digits)}function j(fe,de,xe,le){return!!l(fe)&&fe===W(de,xe,le)}function K(fe,de,xe,le,pe){return m({algorithm:pe.algorithm,digits:pe.digits,type:q.Strategy.HOTP,accountName:fe,counter:le,issuer:de,secret:xe})}class X extends P{create(de={}){return new X(de)}allOptions(){return I(this.options)}generate(de,xe){return W(de,xe,this.allOptions())}check(de,xe,le){return j(de,xe,le,this.allOptions())}verify(de){if("object"!=typeof de)throw new Error("Expecting argument 0 of verify to be an object");return this.check(de.token,de.secret,de.counter)}keyuri(de,xe,le,pe){return K(de,xe,le,pe,this.allOptions())}}function ie(fe){if("number"==typeof fe)return[Math.abs(fe),Math.abs(fe)];if(Array.isArray(fe)){const[de,xe]=fe;if("number"==typeof de&&"number"==typeof xe)return[Math.abs(de),Math.abs(xe)]}throw new Error("Expecting options.window to be an number or [number, number].")}function se(fe){if(d(fe),ie(fe.window),"number"!=typeof fe.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof fe.step)throw new Error("Expecting options.step to be a number.")}const ue=(fe,de,xe)=>{const le=fe.length,pe=Buffer.from(fe,de).toString("hex");if(le{switch(fe){case q.HashAlgorithms.SHA1:return ue(de,xe,20);case q.HashAlgorithms.SHA256:return ue(de,xe,32);case q.HashAlgorithms.SHA512:return ue(de,xe,64);default:throw new Error(`Expecting algorithm to be one of ${e.join(", ")}. Received ${fe}.`)}};function Me(){return{algorithm:q.HashAlgorithms.SHA1,createDigest:A,createHmacKey:ae,digits:6,encoding:q.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function J(fe){const de={...Me(),...fe};return se(de),Object.freeze(de)}function he(fe,de){return Math.floor(fe/de/1e3)}function S(fe,de){return W(fe,he(de.epoch,de.step),de)}function n(fe,de,xe,le){const pe=[];if(0===le)return pe;for(let qe=1;qe<=le;qe++)pe.push(fe+de*qe*xe);return pe}function s(fe,de,xe){const le=ie(xe),pe=1e3*de;return{current:fe,past:n(fe,-1,pe,le[0]),future:n(fe,1,pe,le[1])}}function f(fe,de,xe){return!!l(fe)&&fe===S(de,xe)}function h(fe,de,xe,le){let pe=null;return fe.some((qe,re)=>!!f(de,xe,{...le,epoch:qe})&&(pe=re+1,!0)),pe}function C(fe,de,xe){if(f(fe,de,xe))return 0;const le=s(xe.epoch,xe.step,xe.window),pe=h(le.past,fe,de,xe);return null!==pe?-1*pe:h(le.future,fe,de,xe)}function D(fe,de){return Math.floor(fe/1e3)%de}function O(fe,de){return de-D(fe,de)}function v(fe,de,xe,le){return m({algorithm:le.algorithm,digits:le.digits,step:le.step,type:q.Strategy.TOTP,accountName:fe,issuer:de,secret:xe})}class r extends X{create(de={}){return new r(de)}allOptions(){return J(this.options)}generate(de){return S(de,this.allOptions())}checkDelta(de,xe){return C(de,xe,this.allOptions())}check(de,xe){return"number"==typeof this.checkDelta(de,xe)}verify(de){if("object"!=typeof de)throw new Error("Expecting argument 0 of verify to be an object");return this.check(de.token,de.secret)}timeRemaining(){const de=this.allOptions();return O(de.epoch,de.step)}timeUsed(){const de=this.allOptions();return D(de.epoch,de.step)}keyuri(de,xe,le){return v(de,xe,le,this.allOptions())}}function g(fe){if(se(fe),"function"!=typeof fe.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(fe.keyEncoder&&"function"!=typeof fe.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function H(){return{algorithm:q.HashAlgorithms.SHA1,createDigest:A,createHmacKey:ae,digits:6,encoding:q.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function R(fe){const de={...H(),...fe};return g(de),Object.freeze(de)}function ee(fe,de){return de.keyEncoder(fe,de.encoding)}function De(fe,de){return de.keyDecoder(fe,de.encoding)}function ct(fe,de){return ee(de.createRandomBytes(fe,de.encoding),de)}function Ke(fe,de){return S(De(fe,de),de)}function Je(fe,de,xe){return C(fe,De(de,xe),xe)}class ye extends r{create(de={}){return new ye(de)}allOptions(){return R(this.options)}generate(de){return Ke(de,this.allOptions())}checkDelta(de,xe){return Je(de,xe,this.allOptions())}encode(de){return ee(de,this.allOptions())}decode(de){return De(de,this.allOptions())}generateSecret(de=10){return ct(de,this.allOptions())}}q.Authenticator=ye,q.HASH_ALGORITHMS=e,q.HOTP=X,q.KEY_ENCODINGS=t,q.OTP=P,q.STRATEGY=y,q.TOTP=r,q.authenticatorCheckWithWindow=Je,q.authenticatorDecoder=De,q.authenticatorDefaultOptions=H,q.authenticatorEncoder=ee,q.authenticatorGenerateSecret=ct,q.authenticatorOptionValidator=g,q.authenticatorOptions=R,q.authenticatorToken=Ke,q.createDigestPlaceholder=A,q.hotpCheck=j,q.hotpCounter=k,q.hotpCreateHmacKey=E,q.hotpDefaultOptions=M,q.hotpDigestToToken=z,q.hotpKeyuri=K,q.hotpOptions=I,q.hotpOptionsValidator=d,q.hotpToken=W,q.isTokenValid=l,q.keyuri=m,q.objectValues=p,q.padStart=w,q.totpCheck=f,q.totpCheckByEpoch=h,q.totpCheckWithWindow=C,q.totpCounter=he,q.totpCreateHmacKey=ae,q.totpDefaultOptions=Me,q.totpEpochAvailable=s,q.totpKeyuri=v,q.totpOptions=J,q.totpOptionsValidator=se,q.totpPadSecret=ue,q.totpTimeRemaining=O,q.totpTimeUsed=D,q.totpToken=S},1239:(Fe,q,p)=>{"use strict";Object.defineProperty(q,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(p(7903));q.createDigest=(l,w,m)=>t.createHmac(l,Buffer.from(w,"hex")).update(Buffer.from(m,"hex")).digest().toString("hex"),q.createRandomBytes=(l,w)=>t.randomBytes(l).toString(w)},3637:(Fe,q,p)=>{"use strict";Object.defineProperty(q,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(p(5852));q.keyDecoder=(l,w)=>t.decode(l).toString(w),q.keyEncoder=(l,w)=>t.encode(Buffer.from(l,w).toString("ascii")).toString().replace(/=/g,"")},6981:(Fe,q,p)=>{"use strict";Object.defineProperty(q,"__esModule",{value:!0});var e=p(1239),t=p(3637),y=p(9599);const A=new y.HOTP({createDigest:e.createDigest}),l=new y.TOTP({createDigest:e.createDigest}),w=new y.Authenticator({createDigest:e.createDigest,createRandomBytes:e.createRandomBytes,keyDecoder:t.keyDecoder,keyEncoder:t.keyEncoder});q.authenticator=w,q.hotp=A,q.totp=l},7414:(Fe,q,p)=>{"use strict";const e=q;e.bignum=p(5047),e.define=p(302).define,e.base=p(510),e.constants=p(4155),e.decoders=p(1301),e.encoders=p(3693)},302:(Fe,q,p)=>{"use strict";const e=p(3693),t=p(1301),y=p(6698);function l(w,m){this.name=w,this.body=m,this.decoders={},this.encoders={}}q.define=function(m,P){return new l(m,P)},l.prototype._createNamed=function(m){const P=this.name;function d(E){this._initNamed(E,P)}return y(d,m),d.prototype._initNamed=function(M,I){m.call(this,M,I)},new d(this)},l.prototype._getDecoder=function(m){return this.decoders.hasOwnProperty(m=m||"der")||(this.decoders[m]=this._createNamed(t[m])),this.decoders[m]},l.prototype.decode=function(m,P,d){return this._getDecoder(P).decode(m,d)},l.prototype._getEncoder=function(m){return this.encoders.hasOwnProperty(m=m||"der")||(this.encoders[m]=this._createNamed(e[m])),this.encoders[m]},l.prototype.encode=function(m,P,d){return this._getEncoder(P).encode(m,d)}},5720:(Fe,q,p)=>{"use strict";const e=p(6698),t=p(5684).b,y=p(4179).Buffer;function A(w,m){t.call(this,m),y.isBuffer(w)?(this.base=w,this.offset=0,this.length=w.length):this.error("Input not Buffer")}function l(w,m){if(Array.isArray(w))this.length=0,this.value=w.map(function(P){return l.isEncoderBuffer(P)||(P=new l(P,m)),this.length+=P.length,P},this);else if("number"==typeof w){if(!(0<=w&&w<=255))return m.error("non-byte EncoderBuffer value");this.value=w,this.length=1}else if("string"==typeof w)this.value=w,this.length=y.byteLength(w);else{if(!y.isBuffer(w))return m.error("Unsupported type: "+typeof w);this.value=w,this.length=w.length}}e(A,t),q.C=A,A.isDecoderBuffer=function(m){return m instanceof A||"object"==typeof m&&y.isBuffer(m.base)&&"DecoderBuffer"===m.constructor.name&&"number"==typeof m.offset&&"number"==typeof m.length&&"function"==typeof m.save&&"function"==typeof m.restore&&"function"==typeof m.isEmpty&&"function"==typeof m.readUInt8&&"function"==typeof m.skip&&"function"==typeof m.raw},A.prototype.save=function(){return{offset:this.offset,reporter:t.prototype.save.call(this)}},A.prototype.restore=function(m){const P=new A(this.base);return P.offset=m.offset,P.length=this.offset,this.offset=m.offset,t.prototype.restore.call(this,m.reporter),P},A.prototype.isEmpty=function(){return this.offset===this.length},A.prototype.readUInt8=function(m){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(m||"DecoderBuffer overrun")},A.prototype.skip=function(m,P){if(!(this.offset+m<=this.length))return this.error(P||"DecoderBuffer overrun");const d=new A(this.base);return d._reporterState=this._reporterState,d.offset=this.offset,d.length=this.offset+m,this.offset+=m,d},A.prototype.raw=function(m){return this.base.slice(m?m.offset:this.offset,this.length)},q.R=l,l.isEncoderBuffer=function(m){return m instanceof l||"object"==typeof m&&"EncoderBuffer"===m.constructor.name&&"number"==typeof m.length&&"function"==typeof m.join},l.prototype.join=function(m,P){return m||(m=y.alloc(this.length)),P||(P=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(d){d.join(m,P),P+=d.length}):("number"==typeof this.value?m[P]=this.value:"string"==typeof this.value?m.write(this.value,P):y.isBuffer(this.value)&&this.value.copy(m,P),P+=this.length)),m}},510:(Fe,q,p)=>{"use strict";const e=q;e.Reporter=p(5684).b,e.DecoderBuffer=p(5720).C,e.EncoderBuffer=p(5720).R,e.Node=p(8533)},8533:(Fe,q,p)=>{"use strict";const e=p(5684).b,t=p(5720).R,y=p(5720).C,A=p(7798),l=["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"],w=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(l);function P(E,M,I){const k={};this._baseState=k,k.name=I,k.enc=E,k.parent=M||null,k.children=null,k.tag=null,k.args=null,k.reverseArgs=null,k.choice=null,k.optional=!1,k.any=!1,k.obj=!1,k.use=null,k.useDecoder=null,k.key=null,k.default=null,k.explicit=null,k.implicit=null,k.contains=null,k.parent||(k.children=[],this._wrap())}Fe.exports=P;const d=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];P.prototype.clone=function(){const M=this._baseState,I={};d.forEach(function(z){I[z]=M[z]});const k=new this.constructor(I.parent);return k._baseState=I,k},P.prototype._wrap=function(){const M=this._baseState;w.forEach(function(I){this[I]=function(){const z=new this.constructor(this);return M.children.push(z),z[I].apply(z,arguments)}},this)},P.prototype._init=function(M){const I=this._baseState;A(null===I.parent),M.call(this),I.children=I.children.filter(function(k){return k._baseState.parent===this},this),A.equal(I.children.length,1,"Root node can have only one child")},P.prototype._useArgs=function(M){const I=this._baseState,k=M.filter(function(z){return z instanceof this.constructor},this);M=M.filter(function(z){return!(z instanceof this.constructor)},this),0!==k.length&&(A(null===I.children),I.children=k,k.forEach(function(z){z._baseState.parent=this},this)),0!==M.length&&(A(null===I.args),I.args=M,I.reverseArgs=M.map(function(z){if("object"!=typeof z||z.constructor!==Object)return z;const B={};return Object.keys(z).forEach(function(W){W==(0|W)&&(W|=0),B[z[W]]=W}),B}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(E){P.prototype[E]=function(){throw new Error(E+" not implemented for encoding: "+this._baseState.enc)}}),l.forEach(function(E){P.prototype[E]=function(){const I=this._baseState,k=Array.prototype.slice.call(arguments);return A(null===I.tag),I.tag=E,this._useArgs(k),this}}),P.prototype.use=function(M){A(M);const I=this._baseState;return A(null===I.use),I.use=M,this},P.prototype.optional=function(){return this._baseState.optional=!0,this},P.prototype.def=function(M){const I=this._baseState;return A(null===I.default),I.default=M,I.optional=!0,this},P.prototype.explicit=function(M){const I=this._baseState;return A(null===I.explicit&&null===I.implicit),I.explicit=M,this},P.prototype.implicit=function(M){const I=this._baseState;return A(null===I.explicit&&null===I.implicit),I.implicit=M,this},P.prototype.obj=function(){const M=this._baseState,I=Array.prototype.slice.call(arguments);return M.obj=!0,0!==I.length&&this._useArgs(I),this},P.prototype.key=function(M){const I=this._baseState;return A(null===I.key),I.key=M,this},P.prototype.any=function(){return this._baseState.any=!0,this},P.prototype.choice=function(M){const I=this._baseState;return A(null===I.choice),I.choice=M,this._useArgs(Object.keys(M).map(function(k){return M[k]})),this},P.prototype.contains=function(M){const I=this._baseState;return A(null===I.use),I.contains=M,this},P.prototype._decode=function(M,I){const k=this._baseState;if(null===k.parent)return M.wrapResult(k.children[0]._decode(M,I));let j,z=k.default,B=!0,W=null;if(null!==k.key&&(W=M.enterKey(k.key)),k.optional){let K=null;if(null!==k.explicit?K=k.explicit:null!==k.implicit?K=k.implicit:null!==k.tag&&(K=k.tag),null!==K||k.any){if(B=this._peekTag(M,K,k.any),M.isError(B))return B}else{const X=M.save();try{null===k.choice?this._decodeGeneric(k.tag,M,I):this._decodeChoice(M,I),B=!0}catch{B=!1}M.restore(X)}}if(k.obj&&B&&(j=M.enterObject()),B){if(null!==k.explicit){const X=this._decodeTag(M,k.explicit);if(M.isError(X))return X;M=X}const K=M.offset;if(null===k.use&&null===k.choice){let X;k.any&&(X=M.save());const ie=this._decodeTag(M,null!==k.implicit?k.implicit:k.tag,k.any);if(M.isError(ie))return ie;k.any?z=M.raw(X):M=ie}if(I&&I.track&&null!==k.tag&&I.track(M.path(),K,M.length,"tagged"),I&&I.track&&null!==k.tag&&I.track(M.path(),M.offset,M.length,"content"),k.any||(z=null===k.choice?this._decodeGeneric(k.tag,M,I):this._decodeChoice(M,I)),M.isError(z))return z;if(!k.any&&null===k.choice&&null!==k.children&&k.children.forEach(function(ie){ie._decode(M,I)}),k.contains&&("octstr"===k.tag||"bitstr"===k.tag)){const X=new y(z);z=this._getUse(k.contains,M._reporterState.obj)._decode(X,I)}}return k.obj&&B&&(z=M.leaveObject(j)),null===k.key||null===z&&!0!==B?null!==W&&M.exitKey(W):M.leaveKey(W,k.key,z),z},P.prototype._decodeGeneric=function(M,I,k){const z=this._baseState;return"seq"===M||"set"===M?null:"seqof"===M||"setof"===M?this._decodeList(I,M,z.args[0],k):/str$/.test(M)?this._decodeStr(I,M,k):"objid"===M&&z.args?this._decodeObjid(I,z.args[0],z.args[1],k):"objid"===M?this._decodeObjid(I,null,null,k):"gentime"===M||"utctime"===M?this._decodeTime(I,M,k):"null_"===M?this._decodeNull(I,k):"bool"===M?this._decodeBool(I,k):"objDesc"===M?this._decodeStr(I,M,k):"int"===M||"enum"===M?this._decodeInt(I,z.args&&z.args[0],k):null!==z.use?this._getUse(z.use,I._reporterState.obj)._decode(I,k):I.error("unknown tag: "+M)},P.prototype._getUse=function(M,I){const k=this._baseState;return k.useDecoder=this._use(M,I),A(null===k.useDecoder._baseState.parent),k.useDecoder=k.useDecoder._baseState.children[0],k.implicit!==k.useDecoder._baseState.implicit&&(k.useDecoder=k.useDecoder.clone(),k.useDecoder._baseState.implicit=k.implicit),k.useDecoder},P.prototype._decodeChoice=function(M,I){const k=this._baseState;let z=null,B=!1;return Object.keys(k.choice).some(function(W){const j=M.save(),K=k.choice[W];try{const X=K._decode(M,I);if(M.isError(X))return!1;z={type:W,value:X},B=!0}catch{return M.restore(j),!1}return!0},this),B?z:M.error("Choice not matched")},P.prototype._createEncoderBuffer=function(M){return new t(M,this.reporter)},P.prototype._encode=function(M,I,k){const z=this._baseState;if(null!==z.default&&z.default===M)return;const B=this._encodeValue(M,I,k);return void 0===B||this._skipDefault(B,I,k)?void 0:B},P.prototype._encodeValue=function(M,I,k){const z=this._baseState;if(null===z.parent)return z.children[0]._encode(M,I||new e);let B=null;if(this.reporter=I,z.optional&&void 0===M){if(null===z.default)return;M=z.default}let W=null,j=!1;if(z.any)B=this._createEncoderBuffer(M);else if(z.choice)B=this._encodeChoice(M,I);else if(z.contains)W=this._getUse(z.contains,k)._encode(M,I),j=!0;else if(z.children)W=z.children.map(function(K){if("null_"===K._baseState.tag)return K._encode(null,I,M);if(null===K._baseState.key)return I.error("Child should have a key");const X=I.enterKey(K._baseState.key);if("object"!=typeof M)return I.error("Child expected, but input is not object");const ie=K._encode(M[K._baseState.key],I,M);return I.leaveKey(X),ie},this).filter(function(K){return K}),W=this._createEncoderBuffer(W);else if("seqof"===z.tag||"setof"===z.tag){if(!z.args||1!==z.args.length)return I.error("Too many args for : "+z.tag);if(!Array.isArray(M))return I.error("seqof/setof, but data is not Array");const K=this.clone();K._baseState.implicit=null,W=this._createEncoderBuffer(M.map(function(X){return this._getUse(this._baseState.args[0],M)._encode(X,I)},K))}else null!==z.use?B=this._getUse(z.use,k)._encode(M,I):(W=this._encodePrimitive(z.tag,M),j=!0);if(!z.any&&null===z.choice){const K=null!==z.implicit?z.implicit:z.tag,X=null===z.implicit?"universal":"context";null===K?null===z.use&&I.error("Tag could be omitted only for .use()"):null===z.use&&(B=this._encodeComposite(K,j,X,W))}return null!==z.explicit&&(B=this._encodeComposite(z.explicit,!1,"context",B)),B},P.prototype._encodeChoice=function(M,I){const k=this._baseState,z=k.choice[M.type];return z||A(!1,M.type+" not found in "+JSON.stringify(Object.keys(k.choice))),z._encode(M.value,I)},P.prototype._encodePrimitive=function(M,I){const k=this._baseState;if(/str$/.test(M))return this._encodeStr(I,M);if("objid"===M&&k.args)return this._encodeObjid(I,k.reverseArgs[0],k.args[1]);if("objid"===M)return this._encodeObjid(I,null,null);if("gentime"===M||"utctime"===M)return this._encodeTime(I,M);if("null_"===M)return this._encodeNull();if("int"===M||"enum"===M)return this._encodeInt(I,k.args&&k.reverseArgs[0]);if("bool"===M)return this._encodeBool(I);if("objDesc"===M)return this._encodeStr(I,M);throw new Error("Unsupported tag: "+M)},P.prototype._isNumstr=function(M){return/^[0-9 ]*$/.test(M)},P.prototype._isPrintstr=function(M){return/^[A-Za-z0-9 '()+,-./:=?]*$/.test(M)}},5684:(Fe,q,p)=>{"use strict";const e=p(6698);function t(A){this._reporterState={obj:null,path:[],options:A||{},errors:[]}}function y(A,l){this.path=A,this.rethrow(l)}q.b=t,t.prototype.isError=function(l){return l instanceof y},t.prototype.save=function(){const l=this._reporterState;return{obj:l.obj,pathLen:l.path.length}},t.prototype.restore=function(l){const w=this._reporterState;w.obj=l.obj,w.path=w.path.slice(0,l.pathLen)},t.prototype.enterKey=function(l){return this._reporterState.path.push(l)},t.prototype.exitKey=function(l){const w=this._reporterState;w.path=w.path.slice(0,l-1)},t.prototype.leaveKey=function(l,w,m){const P=this._reporterState;this.exitKey(l),null!==P.obj&&(P.obj[w]=m)},t.prototype.path=function(){return this._reporterState.path.join("/")},t.prototype.enterObject=function(){const l=this._reporterState,w=l.obj;return l.obj={},w},t.prototype.leaveObject=function(l){const w=this._reporterState,m=w.obj;return w.obj=l,m},t.prototype.error=function(l){let w;const m=this._reporterState,P=l instanceof y;if(w=P?l:new y(m.path.map(function(d){return"["+JSON.stringify(d)+"]"}).join(""),l.message||l,l.stack),!m.options.partial)throw w;return P||m.errors.push(w),w},t.prototype.wrapResult=function(l){const w=this._reporterState;return w.options.partial?{result:this.isError(l)?null:l,errors:w.errors}:l},e(y,Error),y.prototype.rethrow=function(l){if(this.message=l+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,y),!this.stack)try{throw new Error(this.message)}catch(w){this.stack=w.stack}return this}},5086:(Fe,q)=>{"use strict";function p(e){const t={};return Object.keys(e).forEach(function(y){(0|y)==y&&(y|=0),t[e[y]]=y}),t}q.tagClass={0:"universal",1:"application",2:"context",3:"private"},q.tagClassByName=p(q.tagClass),q.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"},q.tagByName=p(q.tag)},4155:(Fe,q,p)=>{"use strict";const e=q;e._reverse=function(y){const A={};return Object.keys(y).forEach(function(l){(0|l)==l&&(l|=0),A[y[l]]=l}),A},e.der=p(5086)},6835:(Fe,q,p)=>{"use strict";const e=p(6698),t=p(5047),y=p(5720).C,A=p(8533),l=p(5086);function w(E){this.enc="der",this.name=E.name,this.entity=E,this.tree=new m,this.tree._init(E.body)}function m(E){A.call(this,"der",E)}function P(E,M){let I=E.readUInt8(M);if(E.isError(I))return I;const k=l.tagClass[I>>6],z=0==(32&I);if(31==(31&I)){let W=I;for(I=0;128==(128&W);){if(W=E.readUInt8(M),E.isError(W))return W;I<<=7,I|=127&W}}else I&=31;return{cls:k,primitive:z,tag:I,tagStr:l.tag[I]}}function d(E,M,I){let k=E.readUInt8(I);if(E.isError(k))return k;if(!M&&128===k)return null;if(!(128&k))return k;const z=127&k;if(z>4)return E.error("length octect is too long");k=0;for(let B=0;B{"use strict";const e=q;e.der=p(6835),e.pem=p(2208)},2208:(Fe,q,p)=>{"use strict";const e=p(6698),t=p(4179).Buffer,y=p(6835);function A(l){y.call(this,l),this.enc="pem"}e(A,y),Fe.exports=A,A.prototype.decode=function(w,m){const P=w.toString().split(/[\r\n]+/g),d=m.label.toUpperCase(),E=/^-----(BEGIN|END) ([^-]+)-----$/;let M=-1,I=-1;for(let B=0;B{"use strict";const e=p(6698),t=p(4179).Buffer,y=p(8533),A=p(5086);function l(d){this.enc="der",this.name=d.name,this.entity=d,this.tree=new w,this.tree._init(d.body)}function w(d){y.call(this,"der",d)}function m(d){return d<10?"0"+d:d}Fe.exports=l,l.prototype.encode=function(E,M){return this.tree._encode(E,M).join()},e(w,y),w.prototype._encodeComposite=function(E,M,I,k){const z=function P(d,E,M,I){let k;if("seqof"===d?d="seq":"setof"===d&&(d="set"),A.tagByName.hasOwnProperty(d))k=A.tagByName[d];else{if("number"!=typeof d||(0|d)!==d)return I.error("Unknown tag: "+d);k=d}return k>=31?I.error("Multi-octet tag encoding unsupported"):(E||(k|=32),k|=A.tagClassByName[M||"universal"]<<6,k)}(E,M,I,this.reporter);if(k.length<128){const j=t.alloc(2);return j[0]=z,j[1]=k.length,this._createEncoderBuffer([j,k])}let B=1;for(let j=k.length;j>=256;j>>=8)B++;const W=t.alloc(2+B);W[0]=z,W[1]=128|B;for(let j=1+B,K=k.length;K>0;j--,K>>=8)W[j]=255&K;return this._createEncoderBuffer([W,k])},w.prototype._encodeStr=function(E,M){if("bitstr"===M)return this._createEncoderBuffer([0|E.unused,E.data]);if("bmpstr"===M){const I=t.alloc(2*E.length);for(let k=0;k=40)return this.reporter.error("Second objid identifier OOB");E.splice(0,2,40*E[0]+E[1])}let k=0;for(let W=0;W=128;j>>=7)k++}const z=t.alloc(k);let B=z.length-1;for(let W=E.length-1;W>=0;W--){let j=E[W];for(z[B--]=127&j;(j>>=7)>0;)z[B--]=128|127&j}return this._createEncoderBuffer(z)},w.prototype._encodeTime=function(E,M){let I;const k=new Date(E);return"gentime"===M?I=[m(k.getUTCFullYear()),m(k.getUTCMonth()+1),m(k.getUTCDate()),m(k.getUTCHours()),m(k.getUTCMinutes()),m(k.getUTCSeconds()),"Z"].join(""):"utctime"===M?I=[m(k.getUTCFullYear()%100),m(k.getUTCMonth()+1),m(k.getUTCDate()),m(k.getUTCHours()),m(k.getUTCMinutes()),m(k.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+M+" time is not supported yet"),this._encodeStr(I,"octstr")},w.prototype._encodeNull=function(){return this._createEncoderBuffer("")},w.prototype._encodeInt=function(E,M){if("string"==typeof E){if(!M)return this.reporter.error("String int or enum given, but no values map");if(!M.hasOwnProperty(E))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(E));E=M[E]}if("number"!=typeof E&&!t.isBuffer(E)){const z=E.toArray();!E.sign&&128&z[0]&&z.unshift(0),E=t.from(z)}if(t.isBuffer(E)){let z=E.length;0===E.length&&z++;const B=t.alloc(z);return E.copy(B),0===E.length&&(B[0]=0),this._createEncoderBuffer(B)}if(E<128)return this._createEncoderBuffer(E);if(E<256)return this._createEncoderBuffer([0,E]);let I=1;for(let z=E;z>=256;z>>=8)I++;const k=new Array(I);for(let z=k.length-1;z>=0;z--)k[z]=255&E,E>>=8;return 128&k[0]&&k.unshift(0),this._createEncoderBuffer(t.from(k))},w.prototype._encodeBool=function(E){return this._createEncoderBuffer(E?255:0)},w.prototype._use=function(E,M){return"function"==typeof E&&(E=E(M)),E._getEncoder("der").tree},w.prototype._skipDefault=function(E,M,I){const k=this._baseState;let z;if(null===k.default)return!1;const B=E.join();if(void 0===k.defaultBuffer&&(k.defaultBuffer=this._encodeValue(k.default,M,I).join()),B.length!==k.defaultBuffer.length)return!1;for(z=0;z{"use strict";const e=q;e.der=p(9133),e.pem=p(7900)},7900:(Fe,q,p)=>{"use strict";const e=p(6698),t=p(9133);function y(A){t.call(this,A),this.enc="pem"}e(y,t),Fe.exports=y,y.prototype.encode=function(l,w){const P=t.prototype.encode.call(this,l).toString("base64"),d=["-----BEGIN "+w.label+"-----"];for(let E=0;E=65&&s<=70?s-55:s>=97&&s<=102?s-87:s-48&15}function P(S,n,s){var f=m(S,s);return s-1>=n&&(f|=m(S,s-1)<<4),f}function d(S,n,s,f){for(var h=0,C=Math.min(S.length,s),D=n;D=49?O-49+10:O>=17?O-17+10:O}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,s){return n.cmp(s)>0?n:s},l.min=function(n,s){return n.cmp(s)<0?n:s},l.prototype._init=function(n,s,f){if("number"==typeof n)return this._initNumber(n,s,f);if("object"==typeof n)return this._initArray(n,s,f);"hex"===s&&(s=16),y(s===(0|s)&&s>=2&&s<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(D=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);else if("le"===f)for(h=0,C=0;h>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);return this.strip()},l.prototype._parseHex=function(n,s,f){this.length=Math.ceil((n.length-s)/6),this.words=new Array(this.length);for(var h=0;h=s;h-=2)O=P(n,s,h)<=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;else for(h=(n.length-s)%2==0?s+1:s;h=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,s,f){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=s)h++;h--,C=C/s|0;for(var D=n.length-f,O=D%h,v=Math.min(D,D-O)+f,r=0,g=f;g1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var E=["","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"],M=[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],I=[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(S,n,s){s.negative=n.negative^S.negative;var f=S.length+n.length|0;s.length=f,f=f-1|0;var h=0|S.words[0],C=0|n.words[0],D=h*C,v=D/67108864|0;s.words[0]=67108863&D;for(var r=1;r>>26,H=67108863&v,R=Math.min(r,n.length-1),ee=Math.max(0,r-S.length+1);ee<=R;ee++)g+=(D=(h=0|S.words[r-ee|0])*(C=0|n.words[ee])+H)/67108864|0,H=67108863&D;s.words[r]=0|H,v=0|g}return 0!==v?s.words[r]=0|v:s.length--,s.strip()}l.prototype.toString=function(n,s){var f;if(s=0|s||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,C=0,D=0;D>>24-h&16777215)||D!==this.length-1?E[6-v.length]+v+f:v+f,(h+=2)>=26&&(h-=26,D--)}for(0!==C&&(f=C.toString(16)+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=M[n],g=I[n];f="";var H=this.clone();for(H.negative=0;!H.isZero();){var R=H.modn(g).toString(n);f=(H=H.idivn(g)).isZero()?R+f:E[r-R.length]+R+f}for(this.isZero()&&(f="0"+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,s){return y(typeof w<"u"),this.toArrayLike(w,n,s)},l.prototype.toArray=function(n,s){return this.toArrayLike(Array,n,s)},l.prototype.toArrayLike=function(n,s,f){var h=this.byteLength(),C=f||Math.max(1,h);y(h<=C,"byte array longer than desired length"),y(C>0,"Requested array length <= 0"),this.strip();var v,r,D="le"===s,O=new n(C),g=this.clone();if(D){for(r=0;!g.isZero();r++)v=g.andln(255),g.iushrn(8),O[r]=v;for(;r=4096&&(f+=13,s>>>=13),s>=64&&(f+=7,s>>>=7),s>=8&&(f+=4,s>>>=4),s>=2&&(f+=2,s>>>=2),f+s},l.prototype._zeroBits=function(n){if(0===n)return 26;var s=n,f=0;return 8191&s||(f+=13,s>>>=13),127&s||(f+=7,s>>>=7),15&s||(f+=4,s>>>=4),3&s||(f+=2,s>>>=2),1&s||f++,f},l.prototype.bitLength=function(){var s=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+s},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,s=0;sn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var s;s=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var s,f;this.length>n.length?(s=this,f=n):(s=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){y("number"==typeof n&&n>=0);var s=0|Math.ceil(n/26),f=n%26;this._expand(s),f>0&&s--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,s){y("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=s?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var C=0,D=0;D>>26;for(;0!==C&&D>>26;if(this.length=f.length,0!==C)this.words[this.length]=C,this.length++;else if(f!==this)for(;Dn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var s=this.iadd(n);return n.negative=1,s._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,C=n):(h=n,C=this);for(var D=0,O=0;O>26,this.words[O]=67108863&s;for(;0!==D&&O>26,this.words[O]=67108863&s;if(0===D&&O>>13,De=0|h[1],ct=8191&De,Ke=De>>>13,Je=0|h[2],ye=8191&Je,fe=Je>>>13,de=0|h[3],xe=8191&de,le=de>>>13,pe=0|h[4],qe=8191&pe,re=pe>>>13,ve=0|h[5],ce=8191&ve,Ze=ve>>>13,We=0|h[6],Ct=8191&We,ut=We>>>13,It=0|h[7],Ae=8191&It,Be=It>>>13,rt=0|h[8],$e=8191&rt,Ie=rt>>>13,lt=0|h[9],Qe=8191<,St=lt>>>13,dt=0|C[0],te=8191&dt,Ue=dt>>>13,Bt=0|C[1],Ye=8191&Bt,je=Bt>>>13,Ft=0|C[2],xt=8191&Ft,Ot=Ft>>>13,yt=0|C[3],at=8191&yt,Ee=yt>>>13,nt=0|C[4],Ge=8191&nt,Xe=nt>>>13,gt=0|C[5],Le=8191>,be=gt>>>13,$=0|C[6],ne=8191&$,ke=$>>>13,Nt=0|C[7],At=8191&Nt,Wt=Nt>>>13,gi=0|C[8],ei=8191&gi,$t=gi>>>13,Fi=0|C[9],li=8191&Fi,ui=Fi>>>13;f.negative=n.negative^s.negative,f.length=19;var un=(O+(v=Math.imul(R,te))|0)+((8191&(r=(r=Math.imul(R,Ue))+Math.imul(ee,te)|0))<<13)|0;O=((g=Math.imul(ee,Ue))+(r>>>13)|0)+(un>>>26)|0,un&=67108863,v=Math.imul(ct,te),r=(r=Math.imul(ct,Ue))+Math.imul(Ke,te)|0,g=Math.imul(Ke,Ue);var Ki=(O+(v=v+Math.imul(R,Ye)|0)|0)+((8191&(r=(r=r+Math.imul(R,je)|0)+Math.imul(ee,Ye)|0))<<13)|0;O=((g=g+Math.imul(ee,je)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,v=Math.imul(ye,te),r=(r=Math.imul(ye,Ue))+Math.imul(fe,te)|0,g=Math.imul(fe,Ue),v=v+Math.imul(ct,Ye)|0,r=(r=r+Math.imul(ct,je)|0)+Math.imul(Ke,Ye)|0,g=g+Math.imul(Ke,je)|0;var Mi=(O+(v=v+Math.imul(R,xt)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ot)|0)+Math.imul(ee,xt)|0))<<13)|0;O=((g=g+Math.imul(ee,Ot)|0)+(r>>>13)|0)+(Mi>>>26)|0,Mi&=67108863,v=Math.imul(xe,te),r=(r=Math.imul(xe,Ue))+Math.imul(le,te)|0,g=Math.imul(le,Ue),v=v+Math.imul(ye,Ye)|0,r=(r=r+Math.imul(ye,je)|0)+Math.imul(fe,Ye)|0,g=g+Math.imul(fe,je)|0,v=v+Math.imul(ct,xt)|0,r=(r=r+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0,g=g+Math.imul(Ke,Ot)|0;var on=(O+(v=v+Math.imul(R,at)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ee)|0)+Math.imul(ee,at)|0))<<13)|0;O=((g=g+Math.imul(ee,Ee)|0)+(r>>>13)|0)+(on>>>26)|0,on&=67108863,v=Math.imul(qe,te),r=(r=Math.imul(qe,Ue))+Math.imul(re,te)|0,g=Math.imul(re,Ue),v=v+Math.imul(xe,Ye)|0,r=(r=r+Math.imul(xe,je)|0)+Math.imul(le,Ye)|0,g=g+Math.imul(le,je)|0,v=v+Math.imul(ye,xt)|0,r=(r=r+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,g=g+Math.imul(fe,Ot)|0,v=v+Math.imul(ct,at)|0,r=(r=r+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0,g=g+Math.imul(Ke,Ee)|0;var st=(O+(v=v+Math.imul(R,Ge)|0)|0)+((8191&(r=(r=r+Math.imul(R,Xe)|0)+Math.imul(ee,Ge)|0))<<13)|0;O=((g=g+Math.imul(ee,Xe)|0)+(r>>>13)|0)+(st>>>26)|0,st&=67108863,v=Math.imul(ce,te),r=(r=Math.imul(ce,Ue))+Math.imul(Ze,te)|0,g=Math.imul(Ze,Ue),v=v+Math.imul(qe,Ye)|0,r=(r=r+Math.imul(qe,je)|0)+Math.imul(re,Ye)|0,g=g+Math.imul(re,je)|0,v=v+Math.imul(xe,xt)|0,r=(r=r+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,g=g+Math.imul(le,Ot)|0,v=v+Math.imul(ye,at)|0,r=(r=r+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,g=g+Math.imul(fe,Ee)|0,v=v+Math.imul(ct,Ge)|0,r=(r=r+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0,g=g+Math.imul(Ke,Xe)|0;var si=(O+(v=v+Math.imul(R,Le)|0)|0)+((8191&(r=(r=r+Math.imul(R,be)|0)+Math.imul(ee,Le)|0))<<13)|0;O=((g=g+Math.imul(ee,be)|0)+(r>>>13)|0)+(si>>>26)|0,si&=67108863,v=Math.imul(Ct,te),r=(r=Math.imul(Ct,Ue))+Math.imul(ut,te)|0,g=Math.imul(ut,Ue),v=v+Math.imul(ce,Ye)|0,r=(r=r+Math.imul(ce,je)|0)+Math.imul(Ze,Ye)|0,g=g+Math.imul(Ze,je)|0,v=v+Math.imul(qe,xt)|0,r=(r=r+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,g=g+Math.imul(re,Ot)|0,v=v+Math.imul(xe,at)|0,r=(r=r+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,g=g+Math.imul(le,Ee)|0,v=v+Math.imul(ye,Ge)|0,r=(r=r+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,g=g+Math.imul(fe,Xe)|0,v=v+Math.imul(ct,Le)|0,r=(r=r+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0,g=g+Math.imul(Ke,be)|0;var Ce=(O+(v=v+Math.imul(R,ne)|0)|0)+((8191&(r=(r=r+Math.imul(R,ke)|0)+Math.imul(ee,ne)|0))<<13)|0;O=((g=g+Math.imul(ee,ke)|0)+(r>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,v=Math.imul(Ae,te),r=(r=Math.imul(Ae,Ue))+Math.imul(Be,te)|0,g=Math.imul(Be,Ue),v=v+Math.imul(Ct,Ye)|0,r=(r=r+Math.imul(Ct,je)|0)+Math.imul(ut,Ye)|0,g=g+Math.imul(ut,je)|0,v=v+Math.imul(ce,xt)|0,r=(r=r+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,g=g+Math.imul(Ze,Ot)|0,v=v+Math.imul(qe,at)|0,r=(r=r+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,g=g+Math.imul(re,Ee)|0,v=v+Math.imul(xe,Ge)|0,r=(r=r+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,g=g+Math.imul(le,Xe)|0,v=v+Math.imul(ye,Le)|0,r=(r=r+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,g=g+Math.imul(fe,be)|0,v=v+Math.imul(ct,ne)|0,r=(r=r+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0,g=g+Math.imul(Ke,ke)|0;var Mt=(O+(v=v+Math.imul(R,At)|0)|0)+((8191&(r=(r=r+Math.imul(R,Wt)|0)+Math.imul(ee,At)|0))<<13)|0;O=((g=g+Math.imul(ee,Wt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul($e,te),r=(r=Math.imul($e,Ue))+Math.imul(Ie,te)|0,g=Math.imul(Ie,Ue),v=v+Math.imul(Ae,Ye)|0,r=(r=r+Math.imul(Ae,je)|0)+Math.imul(Be,Ye)|0,g=g+Math.imul(Be,je)|0,v=v+Math.imul(Ct,xt)|0,r=(r=r+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,g=g+Math.imul(ut,Ot)|0,v=v+Math.imul(ce,at)|0,r=(r=r+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,g=g+Math.imul(Ze,Ee)|0,v=v+Math.imul(qe,Ge)|0,r=(r=r+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,g=g+Math.imul(re,Xe)|0,v=v+Math.imul(xe,Le)|0,r=(r=r+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,g=g+Math.imul(le,be)|0,v=v+Math.imul(ye,ne)|0,r=(r=r+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,g=g+Math.imul(fe,ke)|0,v=v+Math.imul(ct,At)|0,r=(r=r+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0,g=g+Math.imul(Ke,Wt)|0;var Ht=(O+(v=v+Math.imul(R,ei)|0)|0)+((8191&(r=(r=r+Math.imul(R,$t)|0)+Math.imul(ee,ei)|0))<<13)|0;O=((g=g+Math.imul(ee,$t)|0)+(r>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,v=Math.imul(Qe,te),r=(r=Math.imul(Qe,Ue))+Math.imul(St,te)|0,g=Math.imul(St,Ue),v=v+Math.imul($e,Ye)|0,r=(r=r+Math.imul($e,je)|0)+Math.imul(Ie,Ye)|0,g=g+Math.imul(Ie,je)|0,v=v+Math.imul(Ae,xt)|0,r=(r=r+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,g=g+Math.imul(Be,Ot)|0,v=v+Math.imul(Ct,at)|0,r=(r=r+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,g=g+Math.imul(ut,Ee)|0,v=v+Math.imul(ce,Ge)|0,r=(r=r+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,g=g+Math.imul(Ze,Xe)|0,v=v+Math.imul(qe,Le)|0,r=(r=r+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,g=g+Math.imul(re,be)|0,v=v+Math.imul(xe,ne)|0,r=(r=r+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,g=g+Math.imul(le,ke)|0,v=v+Math.imul(ye,At)|0,r=(r=r+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,g=g+Math.imul(fe,Wt)|0,v=v+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0,g=g+Math.imul(Ke,$t)|0;var Dt=(O+(v=v+Math.imul(R,li)|0)|0)+((8191&(r=(r=r+Math.imul(R,ui)|0)+Math.imul(ee,li)|0))<<13)|0;O=((g=g+Math.imul(ee,ui)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,v=Math.imul(Qe,Ye),r=(r=Math.imul(Qe,je))+Math.imul(St,Ye)|0,g=Math.imul(St,je),v=v+Math.imul($e,xt)|0,r=(r=r+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,g=g+Math.imul(Ie,Ot)|0,v=v+Math.imul(Ae,at)|0,r=(r=r+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,g=g+Math.imul(Be,Ee)|0,v=v+Math.imul(Ct,Ge)|0,r=(r=r+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,g=g+Math.imul(ut,Xe)|0,v=v+Math.imul(ce,Le)|0,r=(r=r+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,g=g+Math.imul(Ze,be)|0,v=v+Math.imul(qe,ne)|0,r=(r=r+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,g=g+Math.imul(re,ke)|0,v=v+Math.imul(xe,At)|0,r=(r=r+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,g=g+Math.imul(le,Wt)|0,v=v+Math.imul(ye,ei)|0,r=(r=r+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,g=g+Math.imul(fe,$t)|0;var kt=(O+(v=v+Math.imul(ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;O=((g=g+Math.imul(Ke,ui)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,v=Math.imul(Qe,xt),r=(r=Math.imul(Qe,Ot))+Math.imul(St,xt)|0,g=Math.imul(St,Ot),v=v+Math.imul($e,at)|0,r=(r=r+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,g=g+Math.imul(Ie,Ee)|0,v=v+Math.imul(Ae,Ge)|0,r=(r=r+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,g=g+Math.imul(Be,Xe)|0,v=v+Math.imul(Ct,Le)|0,r=(r=r+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,g=g+Math.imul(ut,be)|0,v=v+Math.imul(ce,ne)|0,r=(r=r+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,g=g+Math.imul(Ze,ke)|0,v=v+Math.imul(qe,At)|0,r=(r=r+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,g=g+Math.imul(re,Wt)|0,v=v+Math.imul(xe,ei)|0,r=(r=r+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,g=g+Math.imul(le,$t)|0;var Gt=(O+(v=v+Math.imul(ye,li)|0)|0)+((8191&(r=(r=r+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0))<<13)|0;O=((g=g+Math.imul(fe,ui)|0)+(r>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,v=Math.imul(Qe,at),r=(r=Math.imul(Qe,Ee))+Math.imul(St,at)|0,g=Math.imul(St,Ee),v=v+Math.imul($e,Ge)|0,r=(r=r+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,g=g+Math.imul(Ie,Xe)|0,v=v+Math.imul(Ae,Le)|0,r=(r=r+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,g=g+Math.imul(Be,be)|0,v=v+Math.imul(Ct,ne)|0,r=(r=r+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,g=g+Math.imul(ut,ke)|0,v=v+Math.imul(ce,At)|0,r=(r=r+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,g=g+Math.imul(Ze,Wt)|0,v=v+Math.imul(qe,ei)|0,r=(r=r+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,g=g+Math.imul(re,$t)|0;var oi=(O+(v=v+Math.imul(xe,li)|0)|0)+((8191&(r=(r=r+Math.imul(xe,ui)|0)+Math.imul(le,li)|0))<<13)|0;O=((g=g+Math.imul(le,ui)|0)+(r>>>13)|0)+(oi>>>26)|0,oi&=67108863,v=Math.imul(Qe,Ge),r=(r=Math.imul(Qe,Xe))+Math.imul(St,Ge)|0,g=Math.imul(St,Xe),v=v+Math.imul($e,Le)|0,r=(r=r+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,g=g+Math.imul(Ie,be)|0,v=v+Math.imul(Ae,ne)|0,r=(r=r+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,g=g+Math.imul(Be,ke)|0,v=v+Math.imul(Ct,At)|0,r=(r=r+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,g=g+Math.imul(ut,Wt)|0,v=v+Math.imul(ce,ei)|0,r=(r=r+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,g=g+Math.imul(Ze,$t)|0;var bi=(O+(v=v+Math.imul(qe,li)|0)|0)+((8191&(r=(r=r+Math.imul(qe,ui)|0)+Math.imul(re,li)|0))<<13)|0;O=((g=g+Math.imul(re,ui)|0)+(r>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Qe,Le),r=(r=Math.imul(Qe,be))+Math.imul(St,Le)|0,g=Math.imul(St,be),v=v+Math.imul($e,ne)|0,r=(r=r+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,g=g+Math.imul(Ie,ke)|0,v=v+Math.imul(Ae,At)|0,r=(r=r+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,g=g+Math.imul(Be,Wt)|0,v=v+Math.imul(Ct,ei)|0,r=(r=r+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,g=g+Math.imul(ut,$t)|0;var yi=(O+(v=v+Math.imul(ce,li)|0)|0)+((8191&(r=(r=r+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0))<<13)|0;O=((g=g+Math.imul(Ze,ui)|0)+(r>>>13)|0)+(yi>>>26)|0,yi&=67108863,v=Math.imul(Qe,ne),r=(r=Math.imul(Qe,ke))+Math.imul(St,ne)|0,g=Math.imul(St,ke),v=v+Math.imul($e,At)|0,r=(r=r+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,g=g+Math.imul(Ie,Wt)|0,v=v+Math.imul(Ae,ei)|0,r=(r=r+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,g=g+Math.imul(Be,$t)|0;var Oi=(O+(v=v+Math.imul(Ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0))<<13)|0;O=((g=g+Math.imul(ut,ui)|0)+(r>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,v=Math.imul(Qe,At),r=(r=Math.imul(Qe,Wt))+Math.imul(St,At)|0,g=Math.imul(St,Wt),v=v+Math.imul($e,ei)|0,r=(r=r+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,g=g+Math.imul(Ie,$t)|0;var Ui=(O+(v=v+Math.imul(Ae,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0))<<13)|0;O=((g=g+Math.imul(Be,ui)|0)+(r>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(Qe,ei),r=(r=Math.imul(Qe,$t))+Math.imul(St,ei)|0,g=Math.imul(St,$t);var Bi=(O+(v=v+Math.imul($e,li)|0)|0)+((8191&(r=(r=r+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0))<<13)|0;O=((g=g+Math.imul(Ie,ui)|0)+(r>>>13)|0)+(Bi>>>26)|0,Bi&=67108863;var qt=(O+(v=Math.imul(Qe,li))|0)+((8191&(r=(r=Math.imul(Qe,ui))+Math.imul(St,li)|0))<<13)|0;return O=((g=Math.imul(St,ui))+(r>>>13)|0)+(qt>>>26)|0,qt&=67108863,D[0]=un,D[1]=Ki,D[2]=Mi,D[3]=on,D[4]=st,D[5]=si,D[6]=Ce,D[7]=Mt,D[8]=Ht,D[9]=Dt,D[10]=kt,D[11]=Gt,D[12]=oi,D[13]=bi,D[14]=yi,D[15]=Oi,D[16]=Ui,D[17]=Bi,D[18]=qt,0!==O&&(D[19]=O,f.length++),f};function j(S,n,s){return(new K).mulp(S,n,s)}function K(S,n){this.x=S,this.y=n}Math.imul||(B=z),l.prototype.mulTo=function(n,s){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?B(this,n,s):h<63?z(this,n,s):h<1024?function W(S,n,s){s.negative=n.negative^S.negative,s.length=S.length+n.length;for(var f=0,h=0,C=0;C>>26)|0)>>>26,D&=67108863}s.words[C]=O,f=D,D=h}return 0!==f?s.words[C]=f:s.length--,s.strip()}(this,n,s):j(this,n,s),f},K.prototype.makeRBT=function(n){for(var s=new Array(n),f=l.prototype._countBits(n)-1,h=0;h>=1;return h},K.prototype.permute=function(n,s,f,h,C,D){for(var O=0;O>>=1)C++;return 1<>>=13),C>>>=13;for(D=2*s;D>=26,s+=h/67108864|0,s+=C>>>26,this.words[f]=67108863&C}return 0!==s&&(this.words[f]=s,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var s=function k(S){for(var n=new Array(S.bitLength()),s=0;s>>h}return n}(n);if(0===s.length)return new l(1);for(var f=this,h=0;h=0);var C,s=n%26,f=(n-s)/26,h=67108863>>>26-s<<26-s;if(0!==s){var D=0;for(C=0;C>>26-s}D&&(this.words[C]=D,this.length++)}if(0!==f){for(C=this.length-1;C>=0;C--)this.words[C+f]=this.words[C];for(C=0;C=0),h=s?(s-s%26)/26:0;var C=n%26,D=Math.min((n-C)/26,this.length),O=67108863^67108863>>>C<D)for(this.length-=D,r=0;r=0&&(0!==g||r>=h);r--){var H=0|this.words[r];this.words[r]=g<<26-C|H>>>C,g=H&O}return v&&0!==g&&(v.words[v.length++]=g),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,s,f){return y(0===this.negative),this.iushrn(n,s,f)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){y("number"==typeof n&&n>=0);var s=n%26,f=(n-s)/26;return!(this.length<=f||!(this.words[f]&1<=0);var s=n%26,f=(n-s)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==s&&f++,this.length=Math.min(f,this.length),0!==s&&(this.words[this.length-1]&=67108863^67108863>>>s<=67108864;s++)this.words[s]-=67108864,s===this.length-1?this.words[s+1]=1:this.words[s+1]++;return this.length=Math.max(this.length,s+1),this},l.prototype.isubn=function(n){if(y("number"==typeof n),y(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var s=0;s>26)-(v/67108864|0),this.words[C+f]=67108863&D}for(;C>26,this.words[C+f]=67108863&D;if(0===O)return this.strip();for(y(-1===O),O=0,C=0;C>26,this.words[C]=67108863&D;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,s){var f,h=this.clone(),C=n,D=0|C.words[C.length-1];0!=(f=26-this._countBits(D))&&(C=C.ushln(f),h.iushln(f),D=0|C.words[C.length-1]);var r,v=h.length-C.length;if("mod"!==s){(r=new l(null)).length=v+1,r.words=new Array(r.length);for(var g=0;g=0;R--){var ee=67108864*(0|h.words[C.length+R])+(0|h.words[C.length+R-1]);for(ee=Math.min(ee/D|0,67108863),h._ishlnsubmul(C,ee,R);0!==h.negative;)ee--,h.negative=0,h._ishlnsubmul(C,1,R),h.isZero()||(h.negative^=1);r&&(r.words[R]=ee)}return r&&r.strip(),h.strip(),"div"!==s&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},l.prototype.divmod=function(n,s,f){return y(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(D=this.neg().divmod(n,s),"mod"!==s&&(h=D.div.neg()),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(D=this.divmod(n.neg(),s),"mod"!==s&&(h=D.div.neg()),{div:h,mod:D.mod}):this.negative&n.negative?(D=this.neg().divmod(n.neg(),s),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.isub(n)),{div:D.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===s?{div:this.divn(n.words[0]),mod:null}:"mod"===s?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,s);var h,C,D},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var s=this.divmod(n);if(s.mod.isZero())return s.div;var f=0!==s.div.negative?s.mod.isub(n):s.mod,h=n.ushrn(1),C=n.andln(1),D=f.cmp(h);return D<0||1===C&&0===D?s.div:0!==s.div.negative?s.div.isubn(1):s.div.iaddn(1)},l.prototype.modn=function(n){y(n<=67108863);for(var s=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(s*f+(0|this.words[h]))%n;return f},l.prototype.idivn=function(n){y(n<=67108863);for(var s=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*s;this.words[f]=h/n|0,s=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){y(0===n.negative),y(!n.isZero());var s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=new l(0),O=new l(1),v=0;s.isEven()&&f.isEven();)s.iushrn(1),f.iushrn(1),++v;for(var r=f.clone(),g=s.clone();!s.isZero();){for(var H=0,R=1;!(s.words[0]&R)&&H<26;++H,R<<=1);if(H>0)for(s.iushrn(H);H-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(g)),h.iushrn(1),C.iushrn(1);for(var ee=0,De=1;!(f.words[0]&De)&&ee<26;++ee,De<<=1);if(ee>0)for(f.iushrn(ee);ee-- >0;)(D.isOdd()||O.isOdd())&&(D.iadd(r),O.isub(g)),D.iushrn(1),O.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(D),C.isub(O)):(f.isub(s),D.isub(h),O.isub(C))}return{a:D,b:O,gcd:f.iushln(v)}},l.prototype._invmp=function(n){y(0===n.negative),y(!n.isZero());var H,s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=f.clone();s.cmpn(1)>0&&f.cmpn(1)>0;){for(var O=0,v=1;!(s.words[0]&v)&&O<26;++O,v<<=1);if(O>0)for(s.iushrn(O);O-- >0;)h.isOdd()&&h.iadd(D),h.iushrn(1);for(var r=0,g=1;!(f.words[0]&g)&&r<26;++r,g<<=1);if(r>0)for(f.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(D),C.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(C)):(f.isub(s),C.isub(h))}return(H=0===s.cmpn(1)?h:C).cmpn(0)<0&&H.iadd(n),H},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var s=this.clone(),f=n.clone();s.negative=0,f.negative=0;for(var h=0;s.isEven()&&f.isEven();h++)s.iushrn(1),f.iushrn(1);for(;;){for(;s.isEven();)s.iushrn(1);for(;f.isEven();)f.iushrn(1);var C=s.cmp(f);if(C<0){var D=s;s=f,f=D}else if(0===C||0===f.cmpn(1))break;s.isub(f)}return f.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){y("number"==typeof n);var s=n%26,f=(n-s)/26,h=1<>>26,this.words[D]=O&=67108863}return 0!==C&&(this.words[D]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var f,s=n<0;if(0!==this.negative&&!s)return-1;if(0===this.negative&&s)return 1;if(this.strip(),this.length>1)f=1;else{s&&(n=-n),y(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],C=0|n.words[f];if(h!==C){hC&&(s=1);break}}return s},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new J(n)},l.prototype.toRed=function(n){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return y(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return y(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var X={k256:null,p224:null,p192:null,p25519:null};function ie(S,n){this.name=S,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function se(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function J(S){if("string"==typeof S){var n=l._prime(S);this.m=n.p,this.prime=n}else y(S.gtn(1),"modulus must be greater than 1"),this.m=S,this.prime=null}function he(S){J.call(this,S),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var f,s=n;do{this.split(s,this.tmp),f=(s=(s=this.imulK(s)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?s.isub(this.p):void 0!==s.strip?s.strip():s._strip(),s},ie.prototype.split=function(n,s){n.iushrn(this.n,0,s)},ie.prototype.imulK=function(n){return n.imul(this.k)},A(se,ie),se.prototype.split=function(n,s){for(var f=4194303,h=Math.min(n.length,9),C=0;C>>22,D=O}n.words[C-10]=D>>>=22,n.length-=0===D&&n.length>10?10:9},se.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var s=0,f=0;f>>=26,n.words[f]=C,s=h}return 0!==s&&(n.words[n.length++]=s),n},l._prime=function(n){if(X[n])return X[n];var s;if("k256"===n)s=new se;else if("p224"===n)s=new ue;else if("p192"===n)s=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);s=new Me}return X[n]=s,s},J.prototype._verify1=function(n){y(0===n.negative,"red works only with positives"),y(n.red,"red works only with red numbers")},J.prototype._verify2=function(n,s){y(0==(n.negative|s.negative),"red works only with positives"),y(n.red&&n.red===s.red,"red works only with red numbers")},J.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},J.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},J.prototype.add=function(n,s){this._verify2(n,s);var f=n.add(s);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},J.prototype.iadd=function(n,s){this._verify2(n,s);var f=n.iadd(s);return f.cmp(this.m)>=0&&f.isub(this.m),f},J.prototype.sub=function(n,s){this._verify2(n,s);var f=n.sub(s);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},J.prototype.isub=function(n,s){this._verify2(n,s);var f=n.isub(s);return f.cmpn(0)<0&&f.iadd(this.m),f},J.prototype.shl=function(n,s){return this._verify1(n),this.imod(n.ushln(s))},J.prototype.imul=function(n,s){return this._verify2(n,s),this.imod(n.imul(s))},J.prototype.mul=function(n,s){return this._verify2(n,s),this.imod(n.mul(s))},J.prototype.isqr=function(n){return this.imul(n,n.clone())},J.prototype.sqr=function(n){return this.mul(n,n)},J.prototype.sqrt=function(n){if(n.isZero())return n.clone();var s=this.m.andln(3);if(y(s%2==1),3===s){var f=this.m.add(new l(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);y(!h.isZero());var D=new l(1).toRed(this),O=D.redNeg(),v=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,v).cmp(O);)r.redIAdd(O);for(var g=this.pow(r,h),H=this.pow(n,h.addn(1).iushrn(1)),R=this.pow(n,h),ee=C;0!==R.cmp(D);){for(var De=R,ct=0;0!==De.cmp(D);ct++)De=De.redSqr();y(ct=0;C--){for(var g=s.words[C],H=r-1;H>=0;H--){var R=g>>H&1;D!==h[0]&&(D=this.sqr(D)),0!==R||0!==O?(O<<=1,O|=R,(4==++v||0===C&&0===H)&&(D=this.mul(D,h[O]),v=0,O=0)):v=0}r=26}return D},J.prototype.convertTo=function(n){var s=n.umod(this.m);return s===n?s.clone():s},J.prototype.convertFrom=function(n){var s=n.clone();return s.red=null,s},l.mont=function(n){return new he(n)},A(he,J),he.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},he.prototype.convertFrom=function(n){var s=this.imod(n.mul(this.rinv));return s.red=null,s},he.prototype.imul=function(n,s){if(n.isZero()||s.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.mul=function(n,s){if(n.isZero()||s.isZero())return new l(0)._forceRed(this);var f=n.mul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},9919:(Fe,q)=>{"use strict";q.byteLength=function m(k){var z=w(k),W=z[1];return 3*(z[0]+W)/4-W},q.toByteArray=function d(k){var z,se,B=w(k),W=B[0],j=B[1],K=new t(function P(k,z,B){return 3*(z+B)/4-B}(0,W,j)),X=0,ie=j>0?W-4:W;for(se=0;se>16&255,K[X++]=z>>8&255,K[X++]=255&z;return 2===j&&(z=e[k.charCodeAt(se)]<<2|e[k.charCodeAt(se+1)]>>4,K[X++]=255&z),1===j&&(z=e[k.charCodeAt(se)]<<10|e[k.charCodeAt(se+1)]<<4|e[k.charCodeAt(se+2)]>>2,K[X++]=z>>8&255,K[X++]=255&z),K},q.fromByteArray=function I(k){for(var z,B=k.length,W=B%3,j=[],K=16383,X=0,ie=B-W;Xie?ie:X+K));return 1===W?j.push(p[(z=k[B-1])>>2]+p[z<<4&63]+"=="):2===W&&j.push(p[(z=(k[B-2]<<8)+k[B-1])>>10]+p[z>>4&63]+p[z<<2&63]+"="),j.join("")};for(var p=[],e=[],t=typeof Uint8Array<"u"?Uint8Array:Array,y="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",A=0;A<64;++A)p[A]=y[A],e[y.charCodeAt(A)]=A;function w(k){var z=k.length;if(z%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var B=k.indexOf("=");return-1===B&&(B=z),[B,B===z?0:4-B%4]}function E(k){return p[k>>18&63]+p[k>>12&63]+p[k>>6&63]+p[63&k]}function M(k,z,B){for(var j=[],K=z;K=48&&C<=57?C-48:C>=65&&C<=70?C-55:C>=97&&C<=102?C-87:void y(!1,"Invalid character in "+f)}function P(f,h,C){var D=m(f,C);return C-1>=h&&(D|=m(f,C-1)<<4),D}function d(f,h,C,D){for(var O=0,v=0,r=Math.min(f.length,C),g=h;g=49?H-49+10:H>=17?H-17+10:H,y(H>=0&&v0?h:C},l.min=function(h,C){return h.cmp(C)<0?h:C},l.prototype._init=function(h,C,D){if("number"==typeof h)return this._initNumber(h,C,D);if("object"==typeof h)return this._initArray(h,C,D);"hex"===C&&(C=16),y(C===(0|C)&&C>=2&&C<=36);var O=0;"-"===(h=h.toString().replace(/\s+/g,""))[0]&&(O++,this.negative=1),O=0;O-=3)this.words[v]|=(r=h[O]|h[O-1]<<8|h[O-2]<<16)<>>26-g&67108863,(g+=24)>=26&&(g-=26,v++);else if("le"===D)for(O=0,v=0;O>>26-g&67108863,(g+=24)>=26&&(g-=26,v++);return this._strip()},l.prototype._parseHex=function(h,C,D){this.length=Math.ceil((h.length-C)/6),this.words=new Array(this.length);for(var O=0;O=C;O-=2)g=P(h,C,O)<=18?(v-=18,this.words[r+=1]|=g>>>26):v+=8;else for(O=(h.length-C)%2==0?C+1:C;O=18?(v-=18,this.words[r+=1]|=g>>>26):v+=8;this._strip()},l.prototype._parseBase=function(h,C,D){this.words=[0],this.length=1;for(var O=0,v=1;v<=67108863;v*=C)O++;O--,v=v/C|0;for(var r=h.length-D,g=r%O,H=Math.min(r,r-g)+D,R=0,ee=D;ee1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},typeof Symbol<"u"&&"function"==typeof Symbol.for)try{l.prototype[Symbol.for("nodejs.util.inspect.custom")]=M}catch{l.prototype.inspect=M}else l.prototype.inspect=M;function M(){return(this.red?""}var I=["","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"],k=[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],z=[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 j(f,h,C){C.negative=h.negative^f.negative;var D=f.length+h.length|0;C.length=D,D=D-1|0;var O=0|f.words[0],v=0|h.words[0],r=O*v,H=r/67108864|0;C.words[0]=67108863&r;for(var R=1;R>>26,De=67108863&H,ct=Math.min(R,h.length-1),Ke=Math.max(0,R-f.length+1);Ke<=ct;Ke++)ee+=(r=(O=0|f.words[R-Ke|0])*(v=0|h.words[Ke])+De)/67108864|0,De=67108863&r;C.words[R]=0|De,H=0|ee}return 0!==H?C.words[R]=0|H:C.length--,C._strip()}l.prototype.toString=function(h,C){var D;if(C=0|C||1,16===(h=h||10)||"hex"===h){D="";for(var O=0,v=0,r=0;r>>24-O&16777215,(O+=2)>=26&&(O-=26,r--),D=0!==v||r!==this.length-1?I[6-H.length]+H+D:H+D}for(0!==v&&(D=v.toString(16)+D);D.length%C!=0;)D="0"+D;return 0!==this.negative&&(D="-"+D),D}if(h===(0|h)&&h>=2&&h<=36){var R=k[h],ee=z[h];D="";var De=this.clone();for(De.negative=0;!De.isZero();){var ct=De.modrn(ee).toString(h);D=(De=De.idivn(ee)).isZero()?ct+D:I[R-ct.length]+ct+D}for(this.isZero()&&(D="0"+D);D.length%C!=0;)D="0"+D;return 0!==this.negative&&(D="-"+D),D}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var h=this.words[0];return 2===this.length?h+=67108864*this.words[1]:3===this.length&&1===this.words[2]?h+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-h:h},l.prototype.toJSON=function(){return this.toString(16,2)},w&&(l.prototype.toBuffer=function(h,C){return this.toArrayLike(w,h,C)}),l.prototype.toArray=function(h,C){return this.toArrayLike(Array,h,C)},l.prototype.toArrayLike=function(h,C,D){this._strip();var O=this.byteLength(),v=D||Math.max(1,O);y(O<=v,"byte array longer than desired length"),y(v>0,"Requested array length <= 0");var r=function(h,C){return h.allocUnsafe?h.allocUnsafe(C):new h(C)}(h,v);return this["_toArrayLike"+("le"===C?"LE":"BE")](r,O),r},l.prototype._toArrayLikeLE=function(h,C){for(var D=0,O=0,v=0,r=0;v>8&255),D>16&255),6===r?(D>24&255),O=0,r=0):(O=g>>>24,r+=2)}if(D=0&&(h[D--]=g>>8&255),D>=0&&(h[D--]=g>>16&255),6===r?(D>=0&&(h[D--]=g>>24&255),O=0,r=0):(O=g>>>24,r+=2)}if(D>=0)for(h[D--]=O;D>=0;)h[D--]=0},l.prototype._countBits=Math.clz32?function(h){return 32-Math.clz32(h)}:function(h){var C=h,D=0;return C>=4096&&(D+=13,C>>>=13),C>=64&&(D+=7,C>>>=7),C>=8&&(D+=4,C>>>=4),C>=2&&(D+=2,C>>>=2),D+C},l.prototype._zeroBits=function(h){if(0===h)return 26;var C=h,D=0;return 8191&C||(D+=13,C>>>=13),127&C||(D+=7,C>>>=7),15&C||(D+=4,C>>>=4),3&C||(D+=2,C>>>=2),1&C||D++,D},l.prototype.bitLength=function(){var C=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+C},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var h=0,C=0;Ch.length?this.clone().ior(h):h.clone().ior(this)},l.prototype.uor=function(h){return this.length>h.length?this.clone().iuor(h):h.clone().iuor(this)},l.prototype.iuand=function(h){var C;C=this.length>h.length?h:this;for(var D=0;Dh.length?this.clone().iand(h):h.clone().iand(this)},l.prototype.uand=function(h){return this.length>h.length?this.clone().iuand(h):h.clone().iuand(this)},l.prototype.iuxor=function(h){var C,D;this.length>h.length?(C=this,D=h):(C=h,D=this);for(var O=0;Oh.length?this.clone().ixor(h):h.clone().ixor(this)},l.prototype.uxor=function(h){return this.length>h.length?this.clone().iuxor(h):h.clone().iuxor(this)},l.prototype.inotn=function(h){y("number"==typeof h&&h>=0);var C=0|Math.ceil(h/26),D=h%26;this._expand(C),D>0&&C--;for(var O=0;O0&&(this.words[O]=~this.words[O]&67108863>>26-D),this._strip()},l.prototype.notn=function(h){return this.clone().inotn(h)},l.prototype.setn=function(h,C){y("number"==typeof h&&h>=0);var D=h/26|0,O=h%26;return this._expand(D+1),this.words[D]=C?this.words[D]|1<h.length?(D=this,O=h):(D=h,O=this);for(var v=0,r=0;r>>26;for(;0!==v&&r>>26;if(this.length=D.length,0!==v)this.words[this.length]=v,this.length++;else if(D!==this)for(;rh.length?this.clone().iadd(h):h.clone().iadd(this)},l.prototype.isub=function(h){if(0!==h.negative){h.negative=0;var C=this.iadd(h);return h.negative=1,C._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(h),this.negative=1,this._normSign();var O,v,D=this.cmp(h);if(0===D)return this.negative=0,this.length=1,this.words[0]=0,this;D>0?(O=this,v=h):(O=h,v=this);for(var r=0,g=0;g>26,this.words[g]=67108863&C;for(;0!==r&&g>26,this.words[g]=67108863&C;if(0===r&&g>>13,Je=0|O[1],ye=8191&Je,fe=Je>>>13,de=0|O[2],xe=8191&de,le=de>>>13,pe=0|O[3],qe=8191&pe,re=pe>>>13,ve=0|O[4],ce=8191&ve,Ze=ve>>>13,We=0|O[5],Ct=8191&We,ut=We>>>13,It=0|O[6],Ae=8191&It,Be=It>>>13,rt=0|O[7],$e=8191&rt,Ie=rt>>>13,lt=0|O[8],Qe=8191<,St=lt>>>13,dt=0|O[9],te=8191&dt,Ue=dt>>>13,Bt=0|v[0],Ye=8191&Bt,je=Bt>>>13,Ft=0|v[1],xt=8191&Ft,Ot=Ft>>>13,yt=0|v[2],at=8191&yt,Ee=yt>>>13,nt=0|v[3],Ge=8191&nt,Xe=nt>>>13,gt=0|v[4],Le=8191>,be=gt>>>13,$=0|v[5],ne=8191&$,ke=$>>>13,Nt=0|v[6],At=8191&Nt,Wt=Nt>>>13,gi=0|v[7],ei=8191&gi,$t=gi>>>13,Fi=0|v[8],li=8191&Fi,ui=Fi>>>13,un=0|v[9],Ki=8191&un,Mi=un>>>13;D.negative=h.negative^C.negative,D.length=19;var on=(g+(H=Math.imul(ct,Ye))|0)+((8191&(R=(R=Math.imul(ct,je))+Math.imul(Ke,Ye)|0))<<13)|0;g=((ee=Math.imul(Ke,je))+(R>>>13)|0)+(on>>>26)|0,on&=67108863,H=Math.imul(ye,Ye),R=(R=Math.imul(ye,je))+Math.imul(fe,Ye)|0,ee=Math.imul(fe,je);var st=(g+(H=H+Math.imul(ct,xt)|0)|0)+((8191&(R=(R=R+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,Ot)|0)+(R>>>13)|0)+(st>>>26)|0,st&=67108863,H=Math.imul(xe,Ye),R=(R=Math.imul(xe,je))+Math.imul(le,Ye)|0,ee=Math.imul(le,je),H=H+Math.imul(ye,xt)|0,R=(R=R+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,ee=ee+Math.imul(fe,Ot)|0;var si=(g+(H=H+Math.imul(ct,at)|0)|0)+((8191&(R=(R=R+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,Ee)|0)+(R>>>13)|0)+(si>>>26)|0,si&=67108863,H=Math.imul(qe,Ye),R=(R=Math.imul(qe,je))+Math.imul(re,Ye)|0,ee=Math.imul(re,je),H=H+Math.imul(xe,xt)|0,R=(R=R+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,ee=ee+Math.imul(le,Ot)|0,H=H+Math.imul(ye,at)|0,R=(R=R+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,ee=ee+Math.imul(fe,Ee)|0;var Ce=(g+(H=H+Math.imul(ct,Ge)|0)|0)+((8191&(R=(R=R+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,Xe)|0)+(R>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,H=Math.imul(ce,Ye),R=(R=Math.imul(ce,je))+Math.imul(Ze,Ye)|0,ee=Math.imul(Ze,je),H=H+Math.imul(qe,xt)|0,R=(R=R+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,ee=ee+Math.imul(re,Ot)|0,H=H+Math.imul(xe,at)|0,R=(R=R+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,ee=ee+Math.imul(le,Ee)|0,H=H+Math.imul(ye,Ge)|0,R=(R=R+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,ee=ee+Math.imul(fe,Xe)|0;var Mt=(g+(H=H+Math.imul(ct,Le)|0)|0)+((8191&(R=(R=R+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,be)|0)+(R>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,H=Math.imul(Ct,Ye),R=(R=Math.imul(Ct,je))+Math.imul(ut,Ye)|0,ee=Math.imul(ut,je),H=H+Math.imul(ce,xt)|0,R=(R=R+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,ee=ee+Math.imul(Ze,Ot)|0,H=H+Math.imul(qe,at)|0,R=(R=R+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,ee=ee+Math.imul(re,Ee)|0,H=H+Math.imul(xe,Ge)|0,R=(R=R+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,ee=ee+Math.imul(le,Xe)|0,H=H+Math.imul(ye,Le)|0,R=(R=R+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,ee=ee+Math.imul(fe,be)|0;var Ht=(g+(H=H+Math.imul(ct,ne)|0)|0)+((8191&(R=(R=R+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,ke)|0)+(R>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,H=Math.imul(Ae,Ye),R=(R=Math.imul(Ae,je))+Math.imul(Be,Ye)|0,ee=Math.imul(Be,je),H=H+Math.imul(Ct,xt)|0,R=(R=R+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,ee=ee+Math.imul(ut,Ot)|0,H=H+Math.imul(ce,at)|0,R=(R=R+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,ee=ee+Math.imul(Ze,Ee)|0,H=H+Math.imul(qe,Ge)|0,R=(R=R+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,ee=ee+Math.imul(re,Xe)|0,H=H+Math.imul(xe,Le)|0,R=(R=R+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,ee=ee+Math.imul(le,be)|0,H=H+Math.imul(ye,ne)|0,R=(R=R+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,ee=ee+Math.imul(fe,ke)|0;var Dt=(g+(H=H+Math.imul(ct,At)|0)|0)+((8191&(R=(R=R+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,Wt)|0)+(R>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,H=Math.imul($e,Ye),R=(R=Math.imul($e,je))+Math.imul(Ie,Ye)|0,ee=Math.imul(Ie,je),H=H+Math.imul(Ae,xt)|0,R=(R=R+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,ee=ee+Math.imul(Be,Ot)|0,H=H+Math.imul(Ct,at)|0,R=(R=R+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,ee=ee+Math.imul(ut,Ee)|0,H=H+Math.imul(ce,Ge)|0,R=(R=R+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,ee=ee+Math.imul(Ze,Xe)|0,H=H+Math.imul(qe,Le)|0,R=(R=R+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,ee=ee+Math.imul(re,be)|0,H=H+Math.imul(xe,ne)|0,R=(R=R+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,ee=ee+Math.imul(le,ke)|0,H=H+Math.imul(ye,At)|0,R=(R=R+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,ee=ee+Math.imul(fe,Wt)|0;var kt=(g+(H=H+Math.imul(ct,ei)|0)|0)+((8191&(R=(R=R+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,$t)|0)+(R>>>13)|0)+(kt>>>26)|0,kt&=67108863,H=Math.imul(Qe,Ye),R=(R=Math.imul(Qe,je))+Math.imul(St,Ye)|0,ee=Math.imul(St,je),H=H+Math.imul($e,xt)|0,R=(R=R+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,ee=ee+Math.imul(Ie,Ot)|0,H=H+Math.imul(Ae,at)|0,R=(R=R+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,ee=ee+Math.imul(Be,Ee)|0,H=H+Math.imul(Ct,Ge)|0,R=(R=R+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,ee=ee+Math.imul(ut,Xe)|0,H=H+Math.imul(ce,Le)|0,R=(R=R+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,ee=ee+Math.imul(Ze,be)|0,H=H+Math.imul(qe,ne)|0,R=(R=R+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,ee=ee+Math.imul(re,ke)|0,H=H+Math.imul(xe,At)|0,R=(R=R+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,ee=ee+Math.imul(le,Wt)|0,H=H+Math.imul(ye,ei)|0,R=(R=R+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,ee=ee+Math.imul(fe,$t)|0;var Gt=(g+(H=H+Math.imul(ct,li)|0)|0)+((8191&(R=(R=R+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,ui)|0)+(R>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,H=Math.imul(te,Ye),R=(R=Math.imul(te,je))+Math.imul(Ue,Ye)|0,ee=Math.imul(Ue,je),H=H+Math.imul(Qe,xt)|0,R=(R=R+Math.imul(Qe,Ot)|0)+Math.imul(St,xt)|0,ee=ee+Math.imul(St,Ot)|0,H=H+Math.imul($e,at)|0,R=(R=R+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,ee=ee+Math.imul(Ie,Ee)|0,H=H+Math.imul(Ae,Ge)|0,R=(R=R+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,ee=ee+Math.imul(Be,Xe)|0,H=H+Math.imul(Ct,Le)|0,R=(R=R+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,ee=ee+Math.imul(ut,be)|0,H=H+Math.imul(ce,ne)|0,R=(R=R+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,ee=ee+Math.imul(Ze,ke)|0,H=H+Math.imul(qe,At)|0,R=(R=R+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,ee=ee+Math.imul(re,Wt)|0,H=H+Math.imul(xe,ei)|0,R=(R=R+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,ee=ee+Math.imul(le,$t)|0,H=H+Math.imul(ye,li)|0,R=(R=R+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0,ee=ee+Math.imul(fe,ui)|0;var oi=(g+(H=H+Math.imul(ct,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(ct,Mi)|0)+Math.imul(Ke,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(Ke,Mi)|0)+(R>>>13)|0)+(oi>>>26)|0,oi&=67108863,H=Math.imul(te,xt),R=(R=Math.imul(te,Ot))+Math.imul(Ue,xt)|0,ee=Math.imul(Ue,Ot),H=H+Math.imul(Qe,at)|0,R=(R=R+Math.imul(Qe,Ee)|0)+Math.imul(St,at)|0,ee=ee+Math.imul(St,Ee)|0,H=H+Math.imul($e,Ge)|0,R=(R=R+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,ee=ee+Math.imul(Ie,Xe)|0,H=H+Math.imul(Ae,Le)|0,R=(R=R+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,ee=ee+Math.imul(Be,be)|0,H=H+Math.imul(Ct,ne)|0,R=(R=R+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,ee=ee+Math.imul(ut,ke)|0,H=H+Math.imul(ce,At)|0,R=(R=R+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,ee=ee+Math.imul(Ze,Wt)|0,H=H+Math.imul(qe,ei)|0,R=(R=R+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,ee=ee+Math.imul(re,$t)|0,H=H+Math.imul(xe,li)|0,R=(R=R+Math.imul(xe,ui)|0)+Math.imul(le,li)|0,ee=ee+Math.imul(le,ui)|0;var bi=(g+(H=H+Math.imul(ye,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(ye,Mi)|0)+Math.imul(fe,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(fe,Mi)|0)+(R>>>13)|0)+(bi>>>26)|0,bi&=67108863,H=Math.imul(te,at),R=(R=Math.imul(te,Ee))+Math.imul(Ue,at)|0,ee=Math.imul(Ue,Ee),H=H+Math.imul(Qe,Ge)|0,R=(R=R+Math.imul(Qe,Xe)|0)+Math.imul(St,Ge)|0,ee=ee+Math.imul(St,Xe)|0,H=H+Math.imul($e,Le)|0,R=(R=R+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,ee=ee+Math.imul(Ie,be)|0,H=H+Math.imul(Ae,ne)|0,R=(R=R+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,ee=ee+Math.imul(Be,ke)|0,H=H+Math.imul(Ct,At)|0,R=(R=R+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,ee=ee+Math.imul(ut,Wt)|0,H=H+Math.imul(ce,ei)|0,R=(R=R+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,ee=ee+Math.imul(Ze,$t)|0,H=H+Math.imul(qe,li)|0,R=(R=R+Math.imul(qe,ui)|0)+Math.imul(re,li)|0,ee=ee+Math.imul(re,ui)|0;var yi=(g+(H=H+Math.imul(xe,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(xe,Mi)|0)+Math.imul(le,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(le,Mi)|0)+(R>>>13)|0)+(yi>>>26)|0,yi&=67108863,H=Math.imul(te,Ge),R=(R=Math.imul(te,Xe))+Math.imul(Ue,Ge)|0,ee=Math.imul(Ue,Xe),H=H+Math.imul(Qe,Le)|0,R=(R=R+Math.imul(Qe,be)|0)+Math.imul(St,Le)|0,ee=ee+Math.imul(St,be)|0,H=H+Math.imul($e,ne)|0,R=(R=R+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,ee=ee+Math.imul(Ie,ke)|0,H=H+Math.imul(Ae,At)|0,R=(R=R+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,ee=ee+Math.imul(Be,Wt)|0,H=H+Math.imul(Ct,ei)|0,R=(R=R+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,ee=ee+Math.imul(ut,$t)|0,H=H+Math.imul(ce,li)|0,R=(R=R+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0,ee=ee+Math.imul(Ze,ui)|0;var Oi=(g+(H=H+Math.imul(qe,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(qe,Mi)|0)+Math.imul(re,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(re,Mi)|0)+(R>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,H=Math.imul(te,Le),R=(R=Math.imul(te,be))+Math.imul(Ue,Le)|0,ee=Math.imul(Ue,be),H=H+Math.imul(Qe,ne)|0,R=(R=R+Math.imul(Qe,ke)|0)+Math.imul(St,ne)|0,ee=ee+Math.imul(St,ke)|0,H=H+Math.imul($e,At)|0,R=(R=R+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,ee=ee+Math.imul(Ie,Wt)|0,H=H+Math.imul(Ae,ei)|0,R=(R=R+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,ee=ee+Math.imul(Be,$t)|0,H=H+Math.imul(Ct,li)|0,R=(R=R+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0,ee=ee+Math.imul(ut,ui)|0;var Ui=(g+(H=H+Math.imul(ce,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(ce,Mi)|0)+Math.imul(Ze,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(Ze,Mi)|0)+(R>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,H=Math.imul(te,ne),R=(R=Math.imul(te,ke))+Math.imul(Ue,ne)|0,ee=Math.imul(Ue,ke),H=H+Math.imul(Qe,At)|0,R=(R=R+Math.imul(Qe,Wt)|0)+Math.imul(St,At)|0,ee=ee+Math.imul(St,Wt)|0,H=H+Math.imul($e,ei)|0,R=(R=R+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,ee=ee+Math.imul(Ie,$t)|0,H=H+Math.imul(Ae,li)|0,R=(R=R+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0,ee=ee+Math.imul(Be,ui)|0;var Bi=(g+(H=H+Math.imul(Ct,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(Ct,Mi)|0)+Math.imul(ut,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(ut,Mi)|0)+(R>>>13)|0)+(Bi>>>26)|0,Bi&=67108863,H=Math.imul(te,At),R=(R=Math.imul(te,Wt))+Math.imul(Ue,At)|0,ee=Math.imul(Ue,Wt),H=H+Math.imul(Qe,ei)|0,R=(R=R+Math.imul(Qe,$t)|0)+Math.imul(St,ei)|0,ee=ee+Math.imul(St,$t)|0,H=H+Math.imul($e,li)|0,R=(R=R+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0,ee=ee+Math.imul(Ie,ui)|0;var qt=(g+(H=H+Math.imul(Ae,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(Ae,Mi)|0)+Math.imul(Be,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(Be,Mi)|0)+(R>>>13)|0)+(qt>>>26)|0,qt&=67108863,H=Math.imul(te,ei),R=(R=Math.imul(te,$t))+Math.imul(Ue,ei)|0,ee=Math.imul(Ue,$t),H=H+Math.imul(Qe,li)|0,R=(R=R+Math.imul(Qe,ui)|0)+Math.imul(St,li)|0,ee=ee+Math.imul(St,ui)|0;var xi=(g+(H=H+Math.imul($e,Ki)|0)|0)+((8191&(R=(R=R+Math.imul($e,Mi)|0)+Math.imul(Ie,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(Ie,Mi)|0)+(R>>>13)|0)+(xi>>>26)|0,xi&=67108863,H=Math.imul(te,li),R=(R=Math.imul(te,ui))+Math.imul(Ue,li)|0,ee=Math.imul(Ue,ui);var Se=(g+(H=H+Math.imul(Qe,Ki)|0)|0)+((8191&(R=(R=R+Math.imul(Qe,Mi)|0)+Math.imul(St,Ki)|0))<<13)|0;g=((ee=ee+Math.imul(St,Mi)|0)+(R>>>13)|0)+(Se>>>26)|0,Se&=67108863;var Ve=(g+(H=Math.imul(te,Ki))|0)+((8191&(R=(R=Math.imul(te,Mi))+Math.imul(Ue,Ki)|0))<<13)|0;return g=((ee=Math.imul(Ue,Mi))+(R>>>13)|0)+(Ve>>>26)|0,Ve&=67108863,r[0]=on,r[1]=st,r[2]=si,r[3]=Ce,r[4]=Mt,r[5]=Ht,r[6]=Dt,r[7]=kt,r[8]=Gt,r[9]=oi,r[10]=bi,r[11]=yi,r[12]=Oi,r[13]=Ui,r[14]=Bi,r[15]=qt,r[16]=xi,r[17]=Se,r[18]=Ve,0!==g&&(r[19]=g,D.length++),D};function X(f,h,C){C.negative=h.negative^f.negative,C.length=f.length+h.length;for(var D=0,O=0,v=0;v>>26)|0)>>>26,r&=67108863}C.words[v]=g,D=r,r=O}return 0!==D?C.words[v]=D:C.length--,C._strip()}function ie(f,h,C){return X(f,h,C)}function se(f,h){this.x=f,this.y=h}Math.imul||(K=j),l.prototype.mulTo=function(h,C){var O=this.length+h.length;return 10===this.length&&10===h.length?K(this,h,C):O<63?j(this,h,C):O<1024?X(this,h,C):ie(this,h,C)},se.prototype.makeRBT=function(h){for(var C=new Array(h),D=l.prototype._countBits(h)-1,O=0;O>=1;return O},se.prototype.permute=function(h,C,D,O,v,r){for(var g=0;g>>=1)v++;return 1<>>=13),v>>>=13;for(r=2*C;r>=26,D+=v/67108864|0,D+=r>>>26,this.words[O]=67108863&r}return 0!==D&&(this.words[O]=D,this.length++),C?this.ineg():this},l.prototype.muln=function(h){return this.clone().imuln(h)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(h){var C=function W(f){for(var h=new Array(f.bitLength()),C=0;C>>C%26&1;return h}(h);if(0===C.length)return new l(1);for(var D=this,O=0;O=0);var v,C=h%26,D=(h-C)/26,O=67108863>>>26-C<<26-C;if(0!==C){var r=0;for(v=0;v>>26-C}r&&(this.words[v]=r,this.length++)}if(0!==D){for(v=this.length-1;v>=0;v--)this.words[v+D]=this.words[v];for(v=0;v=0),O=C?(C-C%26)/26:0;var v=h%26,r=Math.min((h-v)/26,this.length),g=67108863^67108863>>>v<r)for(this.length-=r,R=0;R=0&&(0!==ee||R>=O);R--){var De=0|this.words[R];this.words[R]=ee<<26-v|De>>>v,ee=De&g}return H&&0!==ee&&(H.words[H.length++]=ee),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},l.prototype.ishrn=function(h,C,D){return y(0===this.negative),this.iushrn(h,C,D)},l.prototype.shln=function(h){return this.clone().ishln(h)},l.prototype.ushln=function(h){return this.clone().iushln(h)},l.prototype.shrn=function(h){return this.clone().ishrn(h)},l.prototype.ushrn=function(h){return this.clone().iushrn(h)},l.prototype.testn=function(h){y("number"==typeof h&&h>=0);var C=h%26,D=(h-C)/26;return!(this.length<=D||!(this.words[D]&1<=0);var C=h%26,D=(h-C)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=D?this:(0!==C&&D++,this.length=Math.min(D,this.length),0!==C&&(this.words[this.length-1]&=67108863^67108863>>>C<=67108864;C++)this.words[C]-=67108864,C===this.length-1?this.words[C+1]=1:this.words[C+1]++;return this.length=Math.max(this.length,C+1),this},l.prototype.isubn=function(h){if(y("number"==typeof h),y(h<67108864),h<0)return this.iaddn(-h);if(0!==this.negative)return this.negative=0,this.iaddn(h),this.negative=1,this;if(this.words[0]-=h,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var C=0;C>26)-(H/67108864|0),this.words[v+D]=67108863&r}for(;v>26,this.words[v+D]=67108863&r;if(0===g)return this._strip();for(y(-1===g),g=0,v=0;v>26,this.words[v]=67108863&r;return this.negative=1,this._strip()},l.prototype._wordDiv=function(h,C){var D,O=this.clone(),v=h,r=0|v.words[v.length-1];0!=(D=26-this._countBits(r))&&(v=v.ushln(D),O.iushln(D),r=0|v.words[v.length-1]);var R,H=O.length-v.length;if("mod"!==C){(R=new l(null)).length=H+1,R.words=new Array(R.length);for(var ee=0;ee=0;ct--){var Ke=67108864*(0|O.words[v.length+ct])+(0|O.words[v.length+ct-1]);for(Ke=Math.min(Ke/r|0,67108863),O._ishlnsubmul(v,Ke,ct);0!==O.negative;)Ke--,O.negative=0,O._ishlnsubmul(v,1,ct),O.isZero()||(O.negative^=1);R&&(R.words[ct]=Ke)}return R&&R._strip(),O._strip(),"div"!==C&&0!==D&&O.iushrn(D),{div:R||null,mod:O}},l.prototype.divmod=function(h,C,D){return y(!h.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===h.negative?(r=this.neg().divmod(h,C),"mod"!==C&&(O=r.div.neg()),"div"!==C&&(v=r.mod.neg(),D&&0!==v.negative&&v.iadd(h)),{div:O,mod:v}):0===this.negative&&0!==h.negative?(r=this.divmod(h.neg(),C),"mod"!==C&&(O=r.div.neg()),{div:O,mod:r.mod}):this.negative&h.negative?(r=this.neg().divmod(h.neg(),C),"div"!==C&&(v=r.mod.neg(),D&&0!==v.negative&&v.isub(h)),{div:r.div,mod:v}):h.length>this.length||this.cmp(h)<0?{div:new l(0),mod:this}:1===h.length?"div"===C?{div:this.divn(h.words[0]),mod:null}:"mod"===C?{div:null,mod:new l(this.modrn(h.words[0]))}:{div:this.divn(h.words[0]),mod:new l(this.modrn(h.words[0]))}:this._wordDiv(h,C);var O,v,r},l.prototype.div=function(h){return this.divmod(h,"div",!1).div},l.prototype.mod=function(h){return this.divmod(h,"mod",!1).mod},l.prototype.umod=function(h){return this.divmod(h,"mod",!0).mod},l.prototype.divRound=function(h){var C=this.divmod(h);if(C.mod.isZero())return C.div;var D=0!==C.div.negative?C.mod.isub(h):C.mod,O=h.ushrn(1),v=h.andln(1),r=D.cmp(O);return r<0||1===v&&0===r?C.div:0!==C.div.negative?C.div.isubn(1):C.div.iaddn(1)},l.prototype.modrn=function(h){var C=h<0;C&&(h=-h),y(h<=67108863);for(var D=(1<<26)%h,O=0,v=this.length-1;v>=0;v--)O=(D*O+(0|this.words[v]))%h;return C?-O:O},l.prototype.modn=function(h){return this.modrn(h)},l.prototype.idivn=function(h){var C=h<0;C&&(h=-h),y(h<=67108863);for(var D=0,O=this.length-1;O>=0;O--){var v=(0|this.words[O])+67108864*D;this.words[O]=v/h|0,D=v%h}return this._strip(),C?this.ineg():this},l.prototype.divn=function(h){return this.clone().idivn(h)},l.prototype.egcd=function(h){y(0===h.negative),y(!h.isZero());var C=this,D=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var O=new l(1),v=new l(0),r=new l(0),g=new l(1),H=0;C.isEven()&&D.isEven();)C.iushrn(1),D.iushrn(1),++H;for(var R=D.clone(),ee=C.clone();!C.isZero();){for(var De=0,ct=1;!(C.words[0]&ct)&&De<26;++De,ct<<=1);if(De>0)for(C.iushrn(De);De-- >0;)(O.isOdd()||v.isOdd())&&(O.iadd(R),v.isub(ee)),O.iushrn(1),v.iushrn(1);for(var Ke=0,Je=1;!(D.words[0]&Je)&&Ke<26;++Ke,Je<<=1);if(Ke>0)for(D.iushrn(Ke);Ke-- >0;)(r.isOdd()||g.isOdd())&&(r.iadd(R),g.isub(ee)),r.iushrn(1),g.iushrn(1);C.cmp(D)>=0?(C.isub(D),O.isub(r),v.isub(g)):(D.isub(C),r.isub(O),g.isub(v))}return{a:r,b:g,gcd:D.iushln(H)}},l.prototype._invmp=function(h){y(0===h.negative),y(!h.isZero());var De,C=this,D=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var O=new l(1),v=new l(0),r=D.clone();C.cmpn(1)>0&&D.cmpn(1)>0;){for(var g=0,H=1;!(C.words[0]&H)&&g<26;++g,H<<=1);if(g>0)for(C.iushrn(g);g-- >0;)O.isOdd()&&O.iadd(r),O.iushrn(1);for(var R=0,ee=1;!(D.words[0]&ee)&&R<26;++R,ee<<=1);if(R>0)for(D.iushrn(R);R-- >0;)v.isOdd()&&v.iadd(r),v.iushrn(1);C.cmp(D)>=0?(C.isub(D),O.isub(v)):(D.isub(C),v.isub(O))}return(De=0===C.cmpn(1)?O:v).cmpn(0)<0&&De.iadd(h),De},l.prototype.gcd=function(h){if(this.isZero())return h.abs();if(h.isZero())return this.abs();var C=this.clone(),D=h.clone();C.negative=0,D.negative=0;for(var O=0;C.isEven()&&D.isEven();O++)C.iushrn(1),D.iushrn(1);for(;;){for(;C.isEven();)C.iushrn(1);for(;D.isEven();)D.iushrn(1);var v=C.cmp(D);if(v<0){var r=C;C=D,D=r}else if(0===v||0===D.cmpn(1))break;C.isub(D)}return D.iushln(O)},l.prototype.invm=function(h){return this.egcd(h).a.umod(h)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(h){return this.words[0]&h},l.prototype.bincn=function(h){y("number"==typeof h);var C=h%26,D=(h-C)/26,O=1<>>26,this.words[r]=g&=67108863}return 0!==v&&(this.words[r]=v,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(h){var D,C=h<0;if(0!==this.negative&&!C)return-1;if(0===this.negative&&C)return 1;if(this._strip(),this.length>1)D=1;else{C&&(h=-h),y(h<=67108863,"Number is too big");var O=0|this.words[0];D=O===h?0:Oh.length)return 1;if(this.length=0;D--){var O=0|this.words[D],v=0|h.words[D];if(O!==v){Ov&&(C=1);break}}return C},l.prototype.gtn=function(h){return 1===this.cmpn(h)},l.prototype.gt=function(h){return 1===this.cmp(h)},l.prototype.gten=function(h){return this.cmpn(h)>=0},l.prototype.gte=function(h){return this.cmp(h)>=0},l.prototype.ltn=function(h){return-1===this.cmpn(h)},l.prototype.lt=function(h){return-1===this.cmp(h)},l.prototype.lten=function(h){return this.cmpn(h)<=0},l.prototype.lte=function(h){return this.cmp(h)<=0},l.prototype.eqn=function(h){return 0===this.cmpn(h)},l.prototype.eq=function(h){return 0===this.cmp(h)},l.red=function(h){return new n(h)},l.prototype.toRed=function(h){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),h.convertTo(this)._forceRed(h)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(h){return this.red=h,this},l.prototype.forceRed=function(h){return y(!this.red,"Already a number in reduction context"),this._forceRed(h)},l.prototype.redAdd=function(h){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,h)},l.prototype.redIAdd=function(h){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,h)},l.prototype.redSub=function(h){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,h)},l.prototype.redISub=function(h){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,h)},l.prototype.redShl=function(h){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,h)},l.prototype.redMul=function(h){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.mul(this,h)},l.prototype.redIMul=function(h){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.imul(this,h)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(h){return y(this.red&&!h.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,h)};var ue={k256:null,p224:null,p192:null,p25519:null};function ae(f,h){this.name=f,this.p=new l(h,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function Me(){ae.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function J(){ae.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function he(){ae.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function S(){ae.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function n(f){if("string"==typeof f){var h=l._prime(f);this.m=h.p,this.prime=h}else y(f.gtn(1),"modulus must be greater than 1"),this.m=f,this.prime=null}function s(f){n.call(this,f),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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)}ae.prototype._tmp=function(){var h=new l(null);return h.words=new Array(Math.ceil(this.n/13)),h},ae.prototype.ireduce=function(h){var D,C=h;do{this.split(C,this.tmp),D=(C=(C=this.imulK(C)).iadd(this.tmp)).bitLength()}while(D>this.n);var O=D0?C.isub(this.p):void 0!==C.strip?C.strip():C._strip(),C},ae.prototype.split=function(h,C){h.iushrn(this.n,0,C)},ae.prototype.imulK=function(h){return h.imul(this.k)},A(Me,ae),Me.prototype.split=function(h,C){for(var D=4194303,O=Math.min(h.length,9),v=0;v>>22,r=g}h.words[v-10]=r>>>=22,h.length-=0===r&&h.length>10?10:9},Me.prototype.imulK=function(h){h.words[h.length]=0,h.words[h.length+1]=0,h.length+=2;for(var C=0,D=0;D>>=26,h.words[D]=v,C=O}return 0!==C&&(h.words[h.length++]=C),h},l._prime=function(h){if(ue[h])return ue[h];var C;if("k256"===h)C=new Me;else if("p224"===h)C=new J;else if("p192"===h)C=new he;else{if("p25519"!==h)throw new Error("Unknown prime "+h);C=new S}return ue[h]=C,C},n.prototype._verify1=function(h){y(0===h.negative,"red works only with positives"),y(h.red,"red works only with red numbers")},n.prototype._verify2=function(h,C){y(0==(h.negative|C.negative),"red works only with positives"),y(h.red&&h.red===C.red,"red works only with red numbers")},n.prototype.imod=function(h){return this.prime?this.prime.ireduce(h)._forceRed(this):(E(h,h.umod(this.m)._forceRed(this)),h)},n.prototype.neg=function(h){return h.isZero()?h.clone():this.m.sub(h)._forceRed(this)},n.prototype.add=function(h,C){this._verify2(h,C);var D=h.add(C);return D.cmp(this.m)>=0&&D.isub(this.m),D._forceRed(this)},n.prototype.iadd=function(h,C){this._verify2(h,C);var D=h.iadd(C);return D.cmp(this.m)>=0&&D.isub(this.m),D},n.prototype.sub=function(h,C){this._verify2(h,C);var D=h.sub(C);return D.cmpn(0)<0&&D.iadd(this.m),D._forceRed(this)},n.prototype.isub=function(h,C){this._verify2(h,C);var D=h.isub(C);return D.cmpn(0)<0&&D.iadd(this.m),D},n.prototype.shl=function(h,C){return this._verify1(h),this.imod(h.ushln(C))},n.prototype.imul=function(h,C){return this._verify2(h,C),this.imod(h.imul(C))},n.prototype.mul=function(h,C){return this._verify2(h,C),this.imod(h.mul(C))},n.prototype.isqr=function(h){return this.imul(h,h.clone())},n.prototype.sqr=function(h){return this.mul(h,h)},n.prototype.sqrt=function(h){if(h.isZero())return h.clone();var C=this.m.andln(3);if(y(C%2==1),3===C){var D=this.m.add(new l(1)).iushrn(2);return this.pow(h,D)}for(var O=this.m.subn(1),v=0;!O.isZero()&&0===O.andln(1);)v++,O.iushrn(1);y(!O.isZero());var r=new l(1).toRed(this),g=r.redNeg(),H=this.m.subn(1).iushrn(1),R=this.m.bitLength();for(R=new l(2*R*R).toRed(this);0!==this.pow(R,H).cmp(g);)R.redIAdd(g);for(var ee=this.pow(R,O),De=this.pow(h,O.addn(1).iushrn(1)),ct=this.pow(h,O),Ke=v;0!==ct.cmp(r);){for(var Je=ct,ye=0;0!==Je.cmp(r);ye++)Je=Je.redSqr();y(ye=0;v--){for(var ee=C.words[v],De=R-1;De>=0;De--){var ct=ee>>De&1;r!==O[0]&&(r=this.sqr(r)),0!==ct||0!==g?(g<<=1,g|=ct,(4==++H||0===v&&0===De)&&(r=this.mul(r,O[g]),H=0,g=0)):H=0}R=26}return r},n.prototype.convertTo=function(h){var C=h.umod(this.m);return C===h?C.clone():C},n.prototype.convertFrom=function(h){var C=h.clone();return C.red=null,C},l.mont=function(h){return new s(h)},A(s,n),s.prototype.convertTo=function(h){return this.imod(h.ushln(this.shift))},s.prototype.convertFrom=function(h){var C=this.imod(h.mul(this.rinv));return C.red=null,C},s.prototype.imul=function(h,C){if(h.isZero()||C.isZero())return h.words[0]=0,h.length=1,h;var D=h.imul(C),O=D.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=D.isub(O).iushrn(this.shift),r=v;return v.cmp(this.m)>=0?r=v.isub(this.m):v.cmpn(0)<0&&(r=v.iadd(this.m)),r._forceRed(this)},s.prototype.mul=function(h,C){if(h.isZero()||C.isZero())return new l(0)._forceRed(this);var D=h.mul(C),O=D.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),v=D.isub(O).iushrn(this.shift),r=v;return v.cmp(this.m)>=0?r=v.isub(this.m):v.cmpn(0)<0&&(r=v.iadd(this.m)),r._forceRed(this)},s.prototype.invm=function(h){return this.imod(h._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},82:(Fe,q,p)=>{var e;function t(A){this.rand=A}if(Fe.exports=function(l){return e||(e=new t(null)),e.generate(l)},Fe.exports.Rand=t,t.prototype.generate=function(l){return this._rand(l)},t.prototype._rand=function(l){if(this.rand.getBytes)return this.rand.getBytes(l);for(var w=new Uint8Array(l),m=0;m{var e=p(843).Buffer;function t(P){e.isBuffer(P)||(P=e.from(P));for(var d=P.length/4|0,E=new Array(d),M=0;M>>24]^z[K>>>16&255]^B[X>>>8&255]^W[255&ie]^d[J++],ue=k[K>>>24]^z[X>>>16&255]^B[ie>>>8&255]^W[255&j]^d[J++],ae=k[X>>>24]^z[ie>>>16&255]^B[j>>>8&255]^W[255&K]^d[J++],Me=k[ie>>>24]^z[j>>>16&255]^B[K>>>8&255]^W[255&X]^d[J++],j=se,K=ue,X=ae,ie=Me;return se=(M[j>>>24]<<24|M[K>>>16&255]<<16|M[X>>>8&255]<<8|M[255&ie])^d[J++],ue=(M[K>>>24]<<24|M[X>>>16&255]<<16|M[ie>>>8&255]<<8|M[255&j])^d[J++],ae=(M[X>>>24]<<24|M[ie>>>16&255]<<16|M[j>>>8&255]<<8|M[255&K])^d[J++],Me=(M[ie>>>24]<<24|M[j>>>16&255]<<16|M[K>>>8&255]<<8|M[255&X])^d[J++],[se>>>=0,ue>>>=0,ae>>>=0,Me>>>=0]}var l=[0,1,2,4,8,16,32,64,128,27,54],w=function(){for(var P=new Array(256),d=0;d<256;d++)P[d]=d<128?d<<1:d<<1^283;for(var E=[],M=[],I=[[],[],[],[]],k=[[],[],[],[]],z=0,B=0,W=0;W<256;++W){var j=B^B<<1^B<<2^B<<3^B<<4;E[z]=j=j>>>8^255&j^99,M[j]=z;var K=P[z],X=P[K],ie=P[X],se=257*P[j]^16843008*j;I[0][z]=se<<24|se>>>8,I[1][z]=se<<16|se>>>16,I[2][z]=se<<8|se>>>24,I[3][z]=se,k[0][j]=(se=16843009*ie^65537*X^257*K^16843008*z)<<24|se>>>8,k[1][j]=se<<16|se>>>16,k[2][j]=se<<8|se>>>24,k[3][j]=se,0===z?z=B=1:(z=K^P[P[P[ie^K]]],B^=P[P[B]])}return{SBOX:E,INV_SBOX:M,SUB_MIX:I,INV_SUB_MIX:k}}();function m(P){this._key=t(P),this._reset()}m.blockSize=16,m.keySize=32,m.prototype.blockSize=m.blockSize,m.prototype.keySize=m.keySize,m.prototype._reset=function(){for(var P=this._key,d=P.length,E=d+6,M=4*(E+1),I=[],k=0;k>>24)>>>24]<<24|w.SBOX[z>>>16&255]<<16|w.SBOX[z>>>8&255]<<8|w.SBOX[255&z],z^=l[k/d|0]<<24):d>6&&k%d==4&&(z=w.SBOX[z>>>24]<<24|w.SBOX[z>>>16&255]<<16|w.SBOX[z>>>8&255]<<8|w.SBOX[255&z]),I[k]=I[k-d]^z}for(var B=[],W=0;W>>24]]^w.INV_SUB_MIX[1][w.SBOX[K>>>16&255]]^w.INV_SUB_MIX[2][w.SBOX[K>>>8&255]]^w.INV_SUB_MIX[3][w.SBOX[255&K]]}this._nRounds=E,this._keySchedule=I,this._invKeySchedule=B},m.prototype.encryptBlockRaw=function(P){return A(P=t(P),this._keySchedule,w.SUB_MIX,w.SBOX,this._nRounds)},m.prototype.encryptBlock=function(P){var d=this.encryptBlockRaw(P),E=e.allocUnsafe(16);return E.writeUInt32BE(d[0],0),E.writeUInt32BE(d[1],4),E.writeUInt32BE(d[2],8),E.writeUInt32BE(d[3],12),E},m.prototype.decryptBlock=function(P){var d=(P=t(P))[1];P[1]=P[3],P[3]=d;var E=A(P,this._invKeySchedule,w.INV_SUB_MIX,w.INV_SBOX,this._nRounds),M=e.allocUnsafe(16);return M.writeUInt32BE(E[0],0),M.writeUInt32BE(E[3],4),M.writeUInt32BE(E[2],8),M.writeUInt32BE(E[1],12),M},m.prototype.scrub=function(){y(this._keySchedule),y(this._invKeySchedule),y(this._key)},Fe.exports.AES=m},6087:(Fe,q,p)=>{var e=p(6403),t=p(843).Buffer,y=p(6420),A=p(6698),l=p(1503),w=p(3636),m=p(9107);function E(M,I,k,z){y.call(this);var B=t.alloc(4,0);this._cipher=new e.AES(I);var W=this._cipher.encryptBlock(B);this._ghash=new l(W),k=function d(M,I,k){if(12===I.length)return M._finID=t.concat([I,t.from([0,0,0,1])]),t.concat([I,t.from([0,0,0,2])]);var z=new l(k),B=I.length,W=B%16;z.update(I),W&&z.update(t.alloc(W=16-W,0)),z.update(t.alloc(8,0));var j=8*B,K=t.alloc(8);K.writeUIntBE(j,0,8),z.update(K),M._finID=z.state;var X=t.from(M._finID);return m(X),X}(this,k,W),this._prev=t.from(k),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=z,this._alen=0,this._len=0,this._mode=M,this._authTag=null,this._called=!1}A(E,y),E.prototype._update=function(M){if(!this._called&&this._alen){var I=16-this._alen%16;I<16&&(I=t.alloc(I,0),this._ghash.update(I))}this._called=!0;var k=this._mode.encrypt(this,M);return this._ghash.update(this._decrypt?M:k),this._len+=M.length,k},E.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var M=w(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function P(M,I){var k=0;M.length!==I.length&&k++;for(var z=Math.min(M.length,I.length),B=0;B{var e=p(2689),t=p(46),y=p(4946);q.createCipher=q.Cipher=e.createCipher,q.createCipheriv=q.Cipheriv=e.createCipheriv,q.createDecipher=q.Decipher=t.createDecipher,q.createDecipheriv=q.Decipheriv=t.createDecipheriv,q.listCiphers=q.getCiphers=function A(){return Object.keys(y)}},46:(Fe,q,p)=>{var e=p(6087),t=p(843).Buffer,y=p(2421),A=p(9354),l=p(6420),w=p(6403),m=p(6505);function d(z,B,W){l.call(this),this._cache=new E,this._last=void 0,this._cipher=new w.AES(B),this._prev=t.from(W),this._mode=z,this._autopadding=!0}function E(){this.cache=t.allocUnsafe(0)}function I(z,B,W){var j=y[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof W&&(W=t.from(W)),"GCM"!==j.mode&&W.length!==j.iv)throw new TypeError("invalid iv length "+W.length);if("string"==typeof B&&(B=t.from(B)),B.length!==j.key/8)throw new TypeError("invalid key length "+B.length);return"stream"===j.type?new A(j.module,B,W,!0):"auth"===j.type?new e(j.module,B,W,!0):new d(j.module,B,W)}p(6698)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var B,W,j=[];B=this._cache.get(this._autopadding);)W=this._mode.decrypt(this,B),j.push(W);return t.concat(j)},d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return function M(z){var B=z[15];if(B<1||B>16)throw new Error("unable to decrypt data");for(var W=-1;++W16)return B=this.cache.slice(0,16),this.cache=this.cache.slice(16),B}else if(this.cache.length>=16)return B=this.cache.slice(0,16),this.cache=this.cache.slice(16),B;return null},E.prototype.flush=function(){if(this.cache.length)return this.cache},q.createDecipher=function k(z,B){var W=y[z.toLowerCase()];if(!W)throw new TypeError("invalid suite type");var j=m(B,!1,W.key,W.iv);return I(z,j.key,j.iv)},q.createDecipheriv=I},2689:(Fe,q,p)=>{var e=p(2421),t=p(6087),y=p(843).Buffer,A=p(9354),l=p(6420),w=p(6403),m=p(6505);function d(z,B,W){l.call(this),this._cache=new M,this._cipher=new w.AES(B),this._prev=y.from(W),this._mode=z,this._autopadding=!0}p(6698)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var B,W,j=[];B=this._cache.get();)W=this._mode.encrypt(this,B),j.push(W);return y.concat(j)};var E=y.alloc(16,16);function M(){this.cache=y.allocUnsafe(0)}function I(z,B,W){var j=e[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof B&&(B=y.from(B)),B.length!==j.key/8)throw new TypeError("invalid key length "+B.length);if("string"==typeof W&&(W=y.from(W)),"GCM"!==j.mode&&W.length!==j.iv)throw new TypeError("invalid iv length "+W.length);return"stream"===j.type?new A(j.module,B,W):"auth"===j.type?new t(j.module,B,W):new d(j.module,B,W)}d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return z=this._mode.encrypt(this,z),this._cipher.scrub(),z;if(!z.equals(E))throw this._cipher.scrub(),new Error("data not multiple of block length")},d.prototype.setAutoPadding=function(z){return this._autopadding=!!z,this},M.prototype.add=function(z){this.cache=y.concat([this.cache,z])},M.prototype.get=function(){if(this.cache.length>15){var z=this.cache.slice(0,16);return this.cache=this.cache.slice(16),z}return null},M.prototype.flush=function(){for(var z=16-this.cache.length,B=y.allocUnsafe(z),W=-1;++W{var e=p(843).Buffer,t=e.alloc(16,0);function A(w){var m=e.allocUnsafe(16);return m.writeUInt32BE(w[0]>>>0,0),m.writeUInt32BE(w[1]>>>0,4),m.writeUInt32BE(w[2]>>>0,8),m.writeUInt32BE(w[3]>>>0,12),m}function l(w){this.h=w,this.state=e.alloc(16,0),this.cache=e.allocUnsafe(0)}l.prototype.ghash=function(w){for(var m=-1;++m0;P--)w[P]=w[P]>>>1|(1&w[P-1])<<31;w[0]=w[0]>>>1,E&&(w[0]=w[0]^225<<24)}this.state=A(m)},l.prototype.update=function(w){this.cache=e.concat([this.cache,w]);for(var m;this.cache.length>=16;)m=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(m)},l.prototype.final=function(w,m){return this.cache.length&&this.ghash(e.concat([this.cache,t],16)),this.ghash(A([0,w,0,m])),this.state},Fe.exports=l},9107:Fe=>{Fe.exports=function q(p){for(var t,e=p.length;e--;){if(255!==(t=p.readUInt8(e))){t++,p.writeUInt8(t,e);break}p.writeUInt8(0,e)}}},1175:(Fe,q,p)=>{var e=p(3636);q.encrypt=function(t,y){var A=e(y,t._prev);return t._prev=t._cipher.encryptBlock(A),t._prev},q.decrypt=function(t,y){var A=t._prev;t._prev=y;var l=t._cipher.decryptBlock(y);return e(l,A)}},3631:(Fe,q,p)=>{var e=p(843).Buffer,t=p(3636);function y(A,l,w){var m=l.length,P=t(l,A._cache);return A._cache=A._cache.slice(m),A._prev=e.concat([A._prev,w?l:P]),P}q.encrypt=function(A,l,w){for(var P,m=e.allocUnsafe(0);l.length;){if(0===A._cache.length&&(A._cache=A._cipher.encryptBlock(A._prev),A._prev=e.allocUnsafe(0)),!(A._cache.length<=l.length)){m=e.concat([m,y(A,l,w)]);break}m=e.concat([m,y(A,l.slice(0,P=A._cache.length),w)]),l=l.slice(P)}return m}},3892:(Fe,q,p)=>{var e=p(843).Buffer;function t(A,l,w){for(var M,I,P=-1,E=0;++P<8;)E+=(128&(I=A._cipher.encryptBlock(A._prev)[0]^(M=l&1<<7-P?128:0)))>>P%8,A._prev=y(A._prev,w?M:I);return E}function y(A,l){var w=A.length,m=-1,P=e.allocUnsafe(A.length);for(A=e.concat([A,e.from([l])]);++m>7;return P}q.encrypt=function(A,l,w){for(var m=l.length,P=e.allocUnsafe(m),d=-1;++d{var e=p(843).Buffer;function t(y,A,l){var m=y._cipher.encryptBlock(y._prev)[0]^A;return y._prev=e.concat([y._prev.slice(1),e.from([l?A:m])]),m}q.encrypt=function(y,A,l){for(var w=A.length,m=e.allocUnsafe(w),P=-1;++P{var e=p(3636),t=p(843).Buffer,y=p(9107);function A(w){var m=w._cipher.encryptBlockRaw(w._prev);return y(w._prev),m}q.encrypt=function(w,m){var P=Math.ceil(m.length/16),d=w._cache.length;w._cache=t.concat([w._cache,t.allocUnsafe(16*P)]);for(var E=0;E{q.encrypt=function(p,e){return p._cipher.encryptBlock(e)},q.decrypt=function(p,e){return p._cipher.decryptBlock(e)}},2421:(Fe,q,p)=>{var e={ECB:p(5995),CBC:p(1175),CFB:p(3631),CFB8:p(6787),CFB1:p(3892),OFB:p(4532),CTR:p(5268),GCM:p(5268)},t=p(4946);for(var y in t)t[y].module=e[t[y].mode];Fe.exports=t},4532:(Fe,q,p)=>{var e=p(3636);function t(y){return y._prev=y._cipher.encryptBlock(y._prev),y._prev}q.encrypt=function(y,A){for(;y._cache.length{var e=p(6403),t=p(843).Buffer,y=p(6420);function l(w,m,P,d){y.call(this),this._cipher=new e.AES(m),this._prev=t.from(P),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=d,this._mode=w}p(6698)(l,y),l.prototype._update=function(w){return this._mode.encrypt(this,w,this._decrypt)},l.prototype._final=function(){this._cipher.scrub()},Fe.exports=l},5600:(Fe,q,p)=>{var e=p(4948),t=p(2489),y=p(2421),A=p(9402),l=p(6505);function P(M,I,k){if(M=M.toLowerCase(),y[M])return t.createCipheriv(M,I,k);if(A[M])return new e({key:I,iv:k,mode:M});throw new TypeError("invalid suite type")}function d(M,I,k){if(M=M.toLowerCase(),y[M])return t.createDecipheriv(M,I,k);if(A[M])return new e({key:I,iv:k,mode:M,decrypt:!0});throw new TypeError("invalid suite type")}q.createCipher=q.Cipher=function w(M,I){var k,z;if(M=M.toLowerCase(),y[M])k=y[M].key,z=y[M].iv;else{if(!A[M])throw new TypeError("invalid suite type");k=8*A[M].key,z=A[M].iv}var B=l(I,!1,k,z);return P(M,B.key,B.iv)},q.createCipheriv=q.Cipheriv=P,q.createDecipher=q.Decipher=function m(M,I){var k,z;if(M=M.toLowerCase(),y[M])k=y[M].key,z=y[M].iv;else{if(!A[M])throw new TypeError("invalid suite type");k=8*A[M].key,z=A[M].iv}var B=l(I,!1,k,z);return d(M,B.key,B.iv)},q.createDecipheriv=q.Decipheriv=d,q.listCiphers=q.getCiphers=function E(){return Object.keys(A).concat(t.getCiphers())}},4948:(Fe,q,p)=>{var e=p(6420),t=p(132),y=p(6698),A=p(843).Buffer,l={"des-ede3-cbc":t.CBC.instantiate(t.EDE),"des-ede3":t.EDE,"des-ede-cbc":t.CBC.instantiate(t.EDE),"des-ede":t.EDE,"des-cbc":t.CBC.instantiate(t.DES),"des-ecb":t.DES};function w(m){e.call(this);var E,P=m.mode.toLowerCase(),d=l[P];E=m.decrypt?"decrypt":"encrypt";var M=m.key;A.isBuffer(M)||(M=A.from(M)),("des-ede"===P||"des-ede-cbc"===P)&&(M=A.concat([M,M.slice(0,8)]));var I=m.iv;A.isBuffer(I)||(I=A.from(I)),this._des=d.create({key:M,iv:I,type:E})}l.des=l["des-cbc"],l.des3=l["des-ede3-cbc"],Fe.exports=w,y(w,e),w.prototype._update=function(m){return A.from(this._des.update(m))},w.prototype._final=function(){return A.from(this._des.final())}},9402:(Fe,q)=>{q["des-ecb"]={key:8,iv:0},q["des-cbc"]=q.des={key:8,iv:8},q["des-ede3-cbc"]=q.des3={key:24,iv:8},q["des-ede3"]={key:24,iv:0},q["des-ede-cbc"]={key:16,iv:8},q["des-ede"]={key:16,iv:0}},1946:(Fe,q,p)=>{var e=p(2662),t=p(4019);function A(w){var P,m=w.modulus.byteLength();do{P=new e(t(m))}while(P.cmp(w.modulus)>=0||!P.umod(w.prime1)||!P.umod(w.prime2));return P}function l(w,m){var P=function y(w){var m=A(w);return{blinder:m.toRed(e.mont(w.modulus)).redPow(new e(w.publicExponent)).fromRed(),unblinder:m.invm(w.modulus)}}(m),d=m.modulus.byteLength(),E=new e(w).mul(P.blinder).umod(m.modulus),M=E.toRed(e.mont(m.prime1)),I=E.toRed(e.mont(m.prime2)),k=m.coefficient,z=m.prime1,B=m.prime2,W=M.redPow(m.exponent1).fromRed(),j=I.redPow(m.exponent2).fromRed(),K=W.isub(j).imul(k).umod(z).imul(B);return j.iadd(K).imul(P.unblinder).umod(m.modulus).toArrayLike(Buffer,"be",d)}l.getr=A,Fe.exports=l},1699:(Fe,q,p)=>{"use strict";Fe.exports=p(5207)},7686:(Fe,q,p)=>{"use strict";var e=p(843).Buffer,t=p(6362),y=p(6745),A=p(6698),l=p(3602),w=p(1173),m=p(5207);function P(I){y.Writable.call(this);var k=m[I];if(!k)throw new Error("Unknown message digest");this._hashType=k.hash,this._hash=t(k.hash),this._tag=k.id,this._signType=k.sign}function d(I){y.Writable.call(this);var k=m[I];if(!k)throw new Error("Unknown message digest");this._hash=t(k.hash),this._tag=k.id,this._signType=k.sign}function E(I){return new P(I)}function M(I){return new d(I)}Object.keys(m).forEach(function(I){m[I].id=e.from(m[I].id,"hex"),m[I.toLowerCase()]=m[I]}),A(P,y.Writable),P.prototype._write=function(k,z,B){this._hash.update(k),B()},P.prototype.update=function(k,z){return this._hash.update("string"==typeof k?e.from(k,z):k),this},P.prototype.sign=function(k,z){this.end();var B=this._hash.digest(),W=l(B,k,this._hashType,this._signType,this._tag);return z?W.toString(z):W},A(d,y.Writable),d.prototype._write=function(k,z,B){this._hash.update(k),B()},d.prototype.update=function(k,z){return this._hash.update("string"==typeof k?e.from(k,z):k),this},d.prototype.verify=function(k,z,B){var W="string"==typeof z?e.from(z,B):z;this.end();var j=this._hash.digest();return w(W,j,k,this._signType,this._tag)},Fe.exports={Sign:E,Verify:M,createSign:E,createVerify:M}},3602:(Fe,q,p)=>{"use strict";var e=p(843).Buffer,t=p(5825),y=p(1946),A=p(8651).ec,l=p(2662),w=p(7983),m=p(1308);function k(K,X,ie,se){if((K=e.from(K.toArray())).length0&&ie.ishrn(se),ie}function W(K,X,ie){var se,ue;do{for(se=e.alloc(0);8*se.length{"use strict";var e=p(843).Buffer,t=p(2662),y=p(8651).ec,A=p(7983),l=p(1308);function d(E,M){if(E.cmpn(0)<=0)throw new Error("invalid sig");if(E.cmp(M)>=0)throw new Error("invalid sig")}Fe.exports=function w(E,M,I,k,z){var B=A(I);if("ec"===B.type){if("ecdsa"!==k&&"ecdsa/rsa"!==k)throw new Error("wrong public key type");return function m(E,M,I){var k=l[I.data.algorithm.curve.join(".")];if(!k)throw new Error("unknown curve "+I.data.algorithm.curve.join("."));return new y(k).verify(M,E,I.data.subjectPrivateKey.data)}(E,M,B)}if("dsa"===B.type){if("dsa"!==k)throw new Error("wrong public key type");return function P(E,M,I){var k=I.data.p,z=I.data.q,B=I.data.g,W=I.data.pub_key,j=A.signature.decode(E,"der"),K=j.s,X=j.r;d(K,z),d(X,z);var ie=t.mont(k),se=K.invm(z);return 0===B.toRed(ie).redPow(new t(M).mul(se).mod(z)).fromRed().mul(W.toRed(ie).redPow(X.mul(se).mod(z)).fromRed()).mod(k).mod(z).cmp(X)}(E,M,B)}if("rsa"!==k&&"ecdsa/rsa"!==k)throw new Error("wrong public key type");M=e.concat([z,M]);for(var W=B.modulus.byteLength(),j=[1],K=0;M.length+j.length+2{Fe.exports=function(p,e){for(var t=Math.min(p.length,e.length),y=new Buffer(t),A=0;A{"use strict";var e=p(9919),t=p(2601),y="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;q.Buffer=m,q.SlowBuffer=function K(re){return+re!=re&&(re=0),m.alloc(+re)},q.INSPECT_MAX_BYTES=50;var A=2147483647;function w(re){if(re>A)throw new RangeError('The value "'+re+'" is invalid for option "size"');var ve=new Uint8Array(re);return Object.setPrototypeOf(ve,m.prototype),ve}function m(re,ve,ce){if("number"==typeof re){if("string"==typeof ve)throw new TypeError('The "string" argument must be of type string. Received type number');return M(re)}return P(re,ve,ce)}function P(re,ve,ce){if("string"==typeof re)return function I(re,ve){if(("string"!=typeof ve||""===ve)&&(ve="utf8"),!m.isEncoding(ve))throw new TypeError("Unknown encoding: "+ve);var ce=0|X(re,ve),Ze=w(ce),We=Ze.write(re,ve);return We!==ce&&(Ze=Ze.slice(0,We)),Ze}(re,ve);if(ArrayBuffer.isView(re))return function z(re){if(le(re,Uint8Array)){var ve=new Uint8Array(re);return B(ve.buffer,ve.byteOffset,ve.byteLength)}return k(re)}(re);if(null==re)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof re);if(le(re,ArrayBuffer)||re&&le(re.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(le(re,SharedArrayBuffer)||re&&le(re.buffer,SharedArrayBuffer)))return B(re,ve,ce);if("number"==typeof re)throw new TypeError('The "value" argument must not be of type number. Received type number');var Ze=re.valueOf&&re.valueOf();if(null!=Ze&&Ze!==re)return m.from(Ze,ve,ce);var We=function W(re){if(m.isBuffer(re)){var ve=0|j(re.length),ce=w(ve);return 0===ce.length||re.copy(ce,0,0,ve),ce}return void 0!==re.length?"number"!=typeof re.length||pe(re.length)?w(0):k(re):"Buffer"===re.type&&Array.isArray(re.data)?k(re.data):void 0}(re);if(We)return We;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof re[Symbol.toPrimitive])return m.from(re[Symbol.toPrimitive]("string"),ve,ce);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof re)}function d(re){if("number"!=typeof re)throw new TypeError('"size" argument must be of type number');if(re<0)throw new RangeError('The value "'+re+'" is invalid for option "size"')}function M(re){return d(re),w(re<0?0:0|j(re))}function k(re){for(var ve=re.length<0?0:0|j(re.length),ce=w(ve),Ze=0;Ze=A)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+A.toString(16)+" bytes");return 0|re}function X(re,ve){if(m.isBuffer(re))return re.length;if(ArrayBuffer.isView(re)||le(re,ArrayBuffer))return re.byteLength;if("string"!=typeof re)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof re);var ce=re.length,Ze=arguments.length>2&&!0===arguments[2];if(!Ze&&0===ce)return 0;for(var We=!1;;)switch(ve){case"ascii":case"latin1":case"binary":return ce;case"utf8":case"utf-8":return Je(re).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*ce;case"hex":return ce>>>1;case"base64":return de(re).length;default:if(We)return Ze?-1:Je(re).length;ve=(""+ve).toLowerCase(),We=!0}}function ie(re,ve,ce){var Ze=!1;if((void 0===ve||ve<0)&&(ve=0),ve>this.length||((void 0===ce||ce>this.length)&&(ce=this.length),ce<=0)||(ce>>>=0)<=(ve>>>=0))return"";for(re||(re="utf8");;)switch(re){case"hex":return v(this,ve,ce);case"utf8":case"utf-8":return f(this,ve,ce);case"ascii":return D(this,ve,ce);case"latin1":case"binary":return O(this,ve,ce);case"base64":return s(this,ve,ce);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r(this,ve,ce);default:if(Ze)throw new TypeError("Unknown encoding: "+re);re=(re+"").toLowerCase(),Ze=!0}}function se(re,ve,ce){var Ze=re[ve];re[ve]=re[ce],re[ce]=Ze}function ue(re,ve,ce,Ze,We){if(0===re.length)return-1;if("string"==typeof ce?(Ze=ce,ce=0):ce>2147483647?ce=2147483647:ce<-2147483648&&(ce=-2147483648),pe(ce=+ce)&&(ce=We?0:re.length-1),ce<0&&(ce=re.length+ce),ce>=re.length){if(We)return-1;ce=re.length-1}else if(ce<0){if(!We)return-1;ce=0}if("string"==typeof ve&&(ve=m.from(ve,Ze)),m.isBuffer(ve))return 0===ve.length?-1:ae(re,ve,ce,Ze,We);if("number"==typeof ve)return ve&=255,"function"==typeof Uint8Array.prototype.indexOf?We?Uint8Array.prototype.indexOf.call(re,ve,ce):Uint8Array.prototype.lastIndexOf.call(re,ve,ce):ae(re,[ve],ce,Ze,We);throw new TypeError("val must be string, number or Buffer")}function ae(re,ve,ce,Ze,We){var Be,Ct=1,ut=re.length,It=ve.length;if(void 0!==Ze&&("ucs2"===(Ze=String(Ze).toLowerCase())||"ucs-2"===Ze||"utf16le"===Ze||"utf-16le"===Ze)){if(re.length<2||ve.length<2)return-1;Ct=2,ut/=2,It/=2,ce/=2}function Ae(lt,Qe){return 1===Ct?lt[Qe]:lt.readUInt16BE(Qe*Ct)}if(We){var rt=-1;for(Be=ce;Beut&&(ce=ut-It),Be=ce;Be>=0;Be--){for(var $e=!0,Ie=0;IeWe&&(Ze=We):Ze=We;var Ct=ve.length;Ze>Ct/2&&(Ze=Ct/2);for(var ut=0;ut>8,Ct.push(ce%256),Ct.push(Ze);return Ct}(ve,re.length-ce),re,ce,Ze)}function s(re,ve,ce){return e.fromByteArray(0===ve&&ce===re.length?re:re.slice(ve,ce))}function f(re,ve,ce){ce=Math.min(re.length,ce);for(var Ze=[],We=ve;We239?4:Ct>223?3:Ct>191?2:1;if(We+It<=ce)switch(It){case 1:Ct<128&&(ut=Ct);break;case 2:128==(192&(Ae=re[We+1]))&&($e=(31&Ct)<<6|63&Ae)>127&&(ut=$e);break;case 3:Be=re[We+2],128==(192&(Ae=re[We+1]))&&128==(192&Be)&&($e=(15&Ct)<<12|(63&Ae)<<6|63&Be)>2047&&($e<55296||$e>57343)&&(ut=$e);break;case 4:Be=re[We+2],rt=re[We+3],128==(192&(Ae=re[We+1]))&&128==(192&Be)&&128==(192&rt)&&($e=(15&Ct)<<18|(63&Ae)<<12|(63&Be)<<6|63&rt)>65535&&$e<1114112&&(ut=$e)}null===ut?(ut=65533,It=1):ut>65535&&(Ze.push((ut-=65536)>>>10&1023|55296),ut=56320|1023&ut),Ze.push(ut),We+=It}return function C(re){var ve=re.length;if(ve<=h)return String.fromCharCode.apply(String,re);for(var ce="",Ze=0;ZeWe.length?m.from(ut).copy(We,Ct):Uint8Array.prototype.set.call(We,ut,Ct);else{if(!m.isBuffer(ut))throw new TypeError('"list" argument must be an Array of Buffers');ut.copy(We,Ct)}Ct+=ut.length}return We},m.byteLength=X,m.prototype._isBuffer=!0,m.prototype.swap16=function(){var ve=this.length;if(ve%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var ce=0;cece&&(ve+=" ... "),""},y&&(m.prototype[y]=m.prototype.inspect),m.prototype.compare=function(ve,ce,Ze,We,Ct){if(le(ve,Uint8Array)&&(ve=m.from(ve,ve.offset,ve.byteLength)),!m.isBuffer(ve))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof ve);if(void 0===ce&&(ce=0),void 0===Ze&&(Ze=ve?ve.length:0),void 0===We&&(We=0),void 0===Ct&&(Ct=this.length),ce<0||Ze>ve.length||We<0||Ct>this.length)throw new RangeError("out of range index");if(We>=Ct&&ce>=Ze)return 0;if(We>=Ct)return-1;if(ce>=Ze)return 1;if(this===ve)return 0;for(var ut=(Ct>>>=0)-(We>>>=0),It=(Ze>>>=0)-(ce>>>=0),Ae=Math.min(ut,It),Be=this.slice(We,Ct),rt=ve.slice(ce,Ze),$e=0;$e>>=0,isFinite(Ze)?(Ze>>>=0,void 0===We&&(We="utf8")):(We=Ze,Ze=void 0)}var Ct=this.length-ce;if((void 0===Ze||Ze>Ct)&&(Ze=Ct),ve.length>0&&(Ze<0||ce<0)||ce>this.length)throw new RangeError("Attempt to write outside buffer bounds");We||(We="utf8");for(var ut=!1;;)switch(We){case"hex":return Me(this,ve,ce,Ze);case"utf8":case"utf-8":return J(this,ve,ce,Ze);case"ascii":case"latin1":case"binary":return he(this,ve,ce,Ze);case"base64":return S(this,ve,ce,Ze);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,ve,ce,Ze);default:if(ut)throw new TypeError("Unknown encoding: "+We);We=(""+We).toLowerCase(),ut=!0}},m.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var h=4096;function D(re,ve,ce){var Ze="";ce=Math.min(re.length,ce);for(var We=ve;WeZe)&&(ce=Ze);for(var We="",Ct=ve;Ctce)throw new RangeError("Trying to access beyond buffer length")}function H(re,ve,ce,Ze,We,Ct){if(!m.isBuffer(re))throw new TypeError('"buffer" argument must be a Buffer instance');if(ve>We||vere.length)throw new RangeError("Index out of range")}function R(re,ve,ce,Ze,We,Ct){if(ce+Ze>re.length)throw new RangeError("Index out of range");if(ce<0)throw new RangeError("Index out of range")}function ee(re,ve,ce,Ze,We){return ve=+ve,ce>>>=0,We||R(re,0,ce,4),t.write(re,ve,ce,Ze,23,4),ce+4}function De(re,ve,ce,Ze,We){return ve=+ve,ce>>>=0,We||R(re,0,ce,8),t.write(re,ve,ce,Ze,52,8),ce+8}m.prototype.slice=function(ve,ce){var Ze=this.length;(ve=~~ve)<0?(ve+=Ze)<0&&(ve=0):ve>Ze&&(ve=Ze),(ce=void 0===ce?Ze:~~ce)<0?(ce+=Ze)<0&&(ce=0):ce>Ze&&(ce=Ze),ce>>=0,ce>>>=0,Ze||g(ve,ce,this.length);for(var We=this[ve],Ct=1,ut=0;++ut>>=0,ce>>>=0,Ze||g(ve,ce,this.length);for(var We=this[ve+--ce],Ct=1;ce>0&&(Ct*=256);)We+=this[ve+--ce]*Ct;return We},m.prototype.readUint8=m.prototype.readUInt8=function(ve,ce){return ve>>>=0,ce||g(ve,1,this.length),this[ve]},m.prototype.readUint16LE=m.prototype.readUInt16LE=function(ve,ce){return ve>>>=0,ce||g(ve,2,this.length),this[ve]|this[ve+1]<<8},m.prototype.readUint16BE=m.prototype.readUInt16BE=function(ve,ce){return ve>>>=0,ce||g(ve,2,this.length),this[ve]<<8|this[ve+1]},m.prototype.readUint32LE=m.prototype.readUInt32LE=function(ve,ce){return ve>>>=0,ce||g(ve,4,this.length),(this[ve]|this[ve+1]<<8|this[ve+2]<<16)+16777216*this[ve+3]},m.prototype.readUint32BE=m.prototype.readUInt32BE=function(ve,ce){return ve>>>=0,ce||g(ve,4,this.length),16777216*this[ve]+(this[ve+1]<<16|this[ve+2]<<8|this[ve+3])},m.prototype.readIntLE=function(ve,ce,Ze){ve>>>=0,ce>>>=0,Ze||g(ve,ce,this.length);for(var We=this[ve],Ct=1,ut=0;++ut=(Ct*=128)&&(We-=Math.pow(2,8*ce)),We},m.prototype.readIntBE=function(ve,ce,Ze){ve>>>=0,ce>>>=0,Ze||g(ve,ce,this.length);for(var We=ce,Ct=1,ut=this[ve+--We];We>0&&(Ct*=256);)ut+=this[ve+--We]*Ct;return ut>=(Ct*=128)&&(ut-=Math.pow(2,8*ce)),ut},m.prototype.readInt8=function(ve,ce){return ve>>>=0,ce||g(ve,1,this.length),128&this[ve]?-1*(255-this[ve]+1):this[ve]},m.prototype.readInt16LE=function(ve,ce){ve>>>=0,ce||g(ve,2,this.length);var Ze=this[ve]|this[ve+1]<<8;return 32768&Ze?4294901760|Ze:Ze},m.prototype.readInt16BE=function(ve,ce){ve>>>=0,ce||g(ve,2,this.length);var Ze=this[ve+1]|this[ve]<<8;return 32768&Ze?4294901760|Ze:Ze},m.prototype.readInt32LE=function(ve,ce){return ve>>>=0,ce||g(ve,4,this.length),this[ve]|this[ve+1]<<8|this[ve+2]<<16|this[ve+3]<<24},m.prototype.readInt32BE=function(ve,ce){return ve>>>=0,ce||g(ve,4,this.length),this[ve]<<24|this[ve+1]<<16|this[ve+2]<<8|this[ve+3]},m.prototype.readFloatLE=function(ve,ce){return ve>>>=0,ce||g(ve,4,this.length),t.read(this,ve,!0,23,4)},m.prototype.readFloatBE=function(ve,ce){return ve>>>=0,ce||g(ve,4,this.length),t.read(this,ve,!1,23,4)},m.prototype.readDoubleLE=function(ve,ce){return ve>>>=0,ce||g(ve,8,this.length),t.read(this,ve,!0,52,8)},m.prototype.readDoubleBE=function(ve,ce){return ve>>>=0,ce||g(ve,8,this.length),t.read(this,ve,!1,52,8)},m.prototype.writeUintLE=m.prototype.writeUIntLE=function(ve,ce,Ze,We){ve=+ve,ce>>>=0,Ze>>>=0,We||H(this,ve,ce,Ze,Math.pow(2,8*Ze)-1,0);var ut=1,It=0;for(this[ce]=255&ve;++It>>=0,Ze>>>=0,We||H(this,ve,ce,Ze,Math.pow(2,8*Ze)-1,0);var ut=Ze-1,It=1;for(this[ce+ut]=255&ve;--ut>=0&&(It*=256);)this[ce+ut]=ve/It&255;return ce+Ze},m.prototype.writeUint8=m.prototype.writeUInt8=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,1,255,0),this[ce]=255&ve,ce+1},m.prototype.writeUint16LE=m.prototype.writeUInt16LE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,2,65535,0),this[ce]=255&ve,this[ce+1]=ve>>>8,ce+2},m.prototype.writeUint16BE=m.prototype.writeUInt16BE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,2,65535,0),this[ce]=ve>>>8,this[ce+1]=255&ve,ce+2},m.prototype.writeUint32LE=m.prototype.writeUInt32LE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,4,4294967295,0),this[ce+3]=ve>>>24,this[ce+2]=ve>>>16,this[ce+1]=ve>>>8,this[ce]=255&ve,ce+4},m.prototype.writeUint32BE=m.prototype.writeUInt32BE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,4,4294967295,0),this[ce]=ve>>>24,this[ce+1]=ve>>>16,this[ce+2]=ve>>>8,this[ce+3]=255&ve,ce+4},m.prototype.writeIntLE=function(ve,ce,Ze,We){if(ve=+ve,ce>>>=0,!We){var Ct=Math.pow(2,8*Ze-1);H(this,ve,ce,Ze,Ct-1,-Ct)}var ut=0,It=1,Ae=0;for(this[ce]=255&ve;++ut>0)-Ae&255;return ce+Ze},m.prototype.writeIntBE=function(ve,ce,Ze,We){if(ve=+ve,ce>>>=0,!We){var Ct=Math.pow(2,8*Ze-1);H(this,ve,ce,Ze,Ct-1,-Ct)}var ut=Ze-1,It=1,Ae=0;for(this[ce+ut]=255&ve;--ut>=0&&(It*=256);)ve<0&&0===Ae&&0!==this[ce+ut+1]&&(Ae=1),this[ce+ut]=(ve/It>>0)-Ae&255;return ce+Ze},m.prototype.writeInt8=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,1,127,-128),ve<0&&(ve=255+ve+1),this[ce]=255&ve,ce+1},m.prototype.writeInt16LE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,2,32767,-32768),this[ce]=255&ve,this[ce+1]=ve>>>8,ce+2},m.prototype.writeInt16BE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,2,32767,-32768),this[ce]=ve>>>8,this[ce+1]=255&ve,ce+2},m.prototype.writeInt32LE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,4,2147483647,-2147483648),this[ce]=255&ve,this[ce+1]=ve>>>8,this[ce+2]=ve>>>16,this[ce+3]=ve>>>24,ce+4},m.prototype.writeInt32BE=function(ve,ce,Ze){return ve=+ve,ce>>>=0,Ze||H(this,ve,ce,4,2147483647,-2147483648),ve<0&&(ve=4294967295+ve+1),this[ce]=ve>>>24,this[ce+1]=ve>>>16,this[ce+2]=ve>>>8,this[ce+3]=255&ve,ce+4},m.prototype.writeFloatLE=function(ve,ce,Ze){return ee(this,ve,ce,!0,Ze)},m.prototype.writeFloatBE=function(ve,ce,Ze){return ee(this,ve,ce,!1,Ze)},m.prototype.writeDoubleLE=function(ve,ce,Ze){return De(this,ve,ce,!0,Ze)},m.prototype.writeDoubleBE=function(ve,ce,Ze){return De(this,ve,ce,!1,Ze)},m.prototype.copy=function(ve,ce,Ze,We){if(!m.isBuffer(ve))throw new TypeError("argument should be a Buffer");if(Ze||(Ze=0),!We&&0!==We&&(We=this.length),ce>=ve.length&&(ce=ve.length),ce||(ce=0),We>0&&We=this.length)throw new RangeError("Index out of range");if(We<0)throw new RangeError("sourceEnd out of bounds");We>this.length&&(We=this.length),ve.length-ce>>=0,Ze=void 0===Ze?this.length:Ze>>>0,ve||(ve=0),"number"==typeof ve)for(ut=ce;ut55295&&ce<57344){if(!We){if(ce>56319){(ve-=3)>-1&&Ct.push(239,191,189);continue}if(ut+1===Ze){(ve-=3)>-1&&Ct.push(239,191,189);continue}We=ce;continue}if(ce<56320){(ve-=3)>-1&&Ct.push(239,191,189),We=ce;continue}ce=65536+(We-55296<<10|ce-56320)}else We&&(ve-=3)>-1&&Ct.push(239,191,189);if(We=null,ce<128){if((ve-=1)<0)break;Ct.push(ce)}else if(ce<2048){if((ve-=2)<0)break;Ct.push(ce>>6|192,63&ce|128)}else if(ce<65536){if((ve-=3)<0)break;Ct.push(ce>>12|224,ce>>6&63|128,63&ce|128)}else{if(!(ce<1114112))throw new Error("Invalid code point");if((ve-=4)<0)break;Ct.push(ce>>18|240,ce>>12&63|128,ce>>6&63|128,63&ce|128)}}return Ct}function de(re){return e.toByteArray(function Ke(re){if((re=(re=re.split("=")[0]).trim().replace(ct,"")).length<2)return"";for(;re.length%4!=0;)re+="=";return re}(re))}function xe(re,ve,ce,Ze){for(var We=0;We=ve.length||We>=re.length);++We)ve[We+ce]=re[We];return We}function le(re,ve){return re instanceof ve||null!=re&&null!=re.constructor&&null!=re.constructor.name&&re.constructor.name===ve.name}function pe(re){return re!=re}var qe=function(){for(var re="0123456789abcdef",ve=new Array(256),ce=0;ce<16;++ce)for(var Ze=16*ce,We=0;We<16;++We)ve[Ze+We]=re[ce]+re[We];return ve}()},6420:(Fe,q,p)=>{var e=p(843).Buffer,t=p(1793).Transform,y=p(2024).s;function l(w){t.call(this),this.hashMode="string"==typeof w,this.hashMode?this[w]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}p(6698)(l,t),l.prototype.update=function(w,m,P){"string"==typeof w&&(w=e.from(w,m));var d=this._update(w);return this.hashMode?this:(P&&(d=this._toString(d,P)),d)},l.prototype.setAutoPadding=function(){},l.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},l.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},l.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},l.prototype._transform=function(w,m,P){var d;try{this.hashMode?this._update(w):this.push(this._update(w))}catch(E){d=E}finally{P(d)}},l.prototype._flush=function(w){var m;try{this.push(this.__final())}catch(P){m=P}w(m)},l.prototype._finalOrDigest=function(w){var m=this.__final()||e.alloc(0);return w&&(m=this._toString(m,w,!0)),m},l.prototype._toString=function(w,m,P){if(this._decoder||(this._decoder=new y(m),this._encoding=m),this._encoding!==m)throw new Error("can't switch encodings");var d=this._decoder.write(w);return P&&(d+=this._decoder.end()),d},Fe.exports=l},188:function(Fe){!function(q){"use strict";var p={bytesToHex:function(y){return function e(y){return y.map(function(A){return function t(y,A){return y.length>A?y:Array(A-y.length+1).join("0")+y}(A.toString(16),2)}).join("")}(y)},hexToBytes:function(y){if(y.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===y.indexOf("0x")&&(y=y.slice(2)),y.match(/../g).map(function(A){return parseInt(A,16)})}};Fe.exports?Fe.exports=p:q.convertHex=p}(this)},5486:function(Fe){!function(q){"use strict";var p={bytesToString:function(e){return e.map(function(t){return String.fromCharCode(t)}).join("")},stringToBytes:function(e){return e.split("").map(function(t){return t.charCodeAt(0)})}};p.UTF8={bytesToString:function(e){return decodeURIComponent(escape(p.bytesToString(e)))},stringToBytes:function(e){return p.stringToBytes(unescape(encodeURIComponent(e)))}},Fe.exports?Fe.exports=p:q.convertString=p}(this)},8840:(Fe,q,p)=>{var e=p(8651),t=p(3185);Fe.exports=function(m){return new A(m)};var y={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 A(w){this.curveType=y[w],this.curveType||(this.curveType={name:w}),this.curve=new e.ec(this.curveType.name),this.keys=void 0}function l(w,m,P){Array.isArray(w)||(w=w.toArray());var d=new Buffer(w);if(P&&d.length=65&&s<=70?s-55:s>=97&&s<=102?s-87:s-48&15}function P(S,n,s){var f=m(S,s);return s-1>=n&&(f|=m(S,s-1)<<4),f}function d(S,n,s,f){for(var h=0,C=Math.min(S.length,s),D=n;D=49?O-49+10:O>=17?O-17+10:O}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,s){return n.cmp(s)>0?n:s},l.min=function(n,s){return n.cmp(s)<0?n:s},l.prototype._init=function(n,s,f){if("number"==typeof n)return this._initNumber(n,s,f);if("object"==typeof n)return this._initArray(n,s,f);"hex"===s&&(s=16),y(s===(0|s)&&s>=2&&s<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(D=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);else if("le"===f)for(h=0,C=0;h>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);return this.strip()},l.prototype._parseHex=function(n,s,f){this.length=Math.ceil((n.length-s)/6),this.words=new Array(this.length);for(var h=0;h=s;h-=2)O=P(n,s,h)<=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;else for(h=(n.length-s)%2==0?s+1:s;h=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,s,f){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=s)h++;h--,C=C/s|0;for(var D=n.length-f,O=D%h,v=Math.min(D,D-O)+f,r=0,g=f;g1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var E=["","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"],M=[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],I=[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(S,n,s){s.negative=n.negative^S.negative;var f=S.length+n.length|0;s.length=f,f=f-1|0;var h=0|S.words[0],C=0|n.words[0],D=h*C,v=D/67108864|0;s.words[0]=67108863&D;for(var r=1;r>>26,H=67108863&v,R=Math.min(r,n.length-1),ee=Math.max(0,r-S.length+1);ee<=R;ee++)g+=(D=(h=0|S.words[r-ee|0])*(C=0|n.words[ee])+H)/67108864|0,H=67108863&D;s.words[r]=0|H,v=0|g}return 0!==v?s.words[r]=0|v:s.length--,s.strip()}l.prototype.toString=function(n,s){var f;if(s=0|s||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,C=0,D=0;D>>24-h&16777215)||D!==this.length-1?E[6-v.length]+v+f:v+f,(h+=2)>=26&&(h-=26,D--)}for(0!==C&&(f=C.toString(16)+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=M[n],g=I[n];f="";var H=this.clone();for(H.negative=0;!H.isZero();){var R=H.modn(g).toString(n);f=(H=H.idivn(g)).isZero()?R+f:E[r-R.length]+R+f}for(this.isZero()&&(f="0"+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,s){return y(typeof w<"u"),this.toArrayLike(w,n,s)},l.prototype.toArray=function(n,s){return this.toArrayLike(Array,n,s)},l.prototype.toArrayLike=function(n,s,f){var h=this.byteLength(),C=f||Math.max(1,h);y(h<=C,"byte array longer than desired length"),y(C>0,"Requested array length <= 0"),this.strip();var v,r,D="le"===s,O=new n(C),g=this.clone();if(D){for(r=0;!g.isZero();r++)v=g.andln(255),g.iushrn(8),O[r]=v;for(;r=4096&&(f+=13,s>>>=13),s>=64&&(f+=7,s>>>=7),s>=8&&(f+=4,s>>>=4),s>=2&&(f+=2,s>>>=2),f+s},l.prototype._zeroBits=function(n){if(0===n)return 26;var s=n,f=0;return 8191&s||(f+=13,s>>>=13),127&s||(f+=7,s>>>=7),15&s||(f+=4,s>>>=4),3&s||(f+=2,s>>>=2),1&s||f++,f},l.prototype.bitLength=function(){var s=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+s},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,s=0;sn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var s;s=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var s,f;this.length>n.length?(s=this,f=n):(s=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){y("number"==typeof n&&n>=0);var s=0|Math.ceil(n/26),f=n%26;this._expand(s),f>0&&s--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,s){y("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=s?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var C=0,D=0;D>>26;for(;0!==C&&D>>26;if(this.length=f.length,0!==C)this.words[this.length]=C,this.length++;else if(f!==this)for(;Dn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var s=this.iadd(n);return n.negative=1,s._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,C=n):(h=n,C=this);for(var D=0,O=0;O>26,this.words[O]=67108863&s;for(;0!==D&&O>26,this.words[O]=67108863&s;if(0===D&&O>>13,De=0|h[1],ct=8191&De,Ke=De>>>13,Je=0|h[2],ye=8191&Je,fe=Je>>>13,de=0|h[3],xe=8191&de,le=de>>>13,pe=0|h[4],qe=8191&pe,re=pe>>>13,ve=0|h[5],ce=8191&ve,Ze=ve>>>13,We=0|h[6],Ct=8191&We,ut=We>>>13,It=0|h[7],Ae=8191&It,Be=It>>>13,rt=0|h[8],$e=8191&rt,Ie=rt>>>13,lt=0|h[9],Qe=8191<,St=lt>>>13,dt=0|C[0],te=8191&dt,Ue=dt>>>13,Bt=0|C[1],Ye=8191&Bt,je=Bt>>>13,Ft=0|C[2],xt=8191&Ft,Ot=Ft>>>13,yt=0|C[3],at=8191&yt,Ee=yt>>>13,nt=0|C[4],Ge=8191&nt,Xe=nt>>>13,gt=0|C[5],Le=8191>,be=gt>>>13,$=0|C[6],ne=8191&$,ke=$>>>13,Nt=0|C[7],At=8191&Nt,Wt=Nt>>>13,gi=0|C[8],ei=8191&gi,$t=gi>>>13,Fi=0|C[9],li=8191&Fi,ui=Fi>>>13;f.negative=n.negative^s.negative,f.length=19;var un=(O+(v=Math.imul(R,te))|0)+((8191&(r=(r=Math.imul(R,Ue))+Math.imul(ee,te)|0))<<13)|0;O=((g=Math.imul(ee,Ue))+(r>>>13)|0)+(un>>>26)|0,un&=67108863,v=Math.imul(ct,te),r=(r=Math.imul(ct,Ue))+Math.imul(Ke,te)|0,g=Math.imul(Ke,Ue);var Ki=(O+(v=v+Math.imul(R,Ye)|0)|0)+((8191&(r=(r=r+Math.imul(R,je)|0)+Math.imul(ee,Ye)|0))<<13)|0;O=((g=g+Math.imul(ee,je)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,v=Math.imul(ye,te),r=(r=Math.imul(ye,Ue))+Math.imul(fe,te)|0,g=Math.imul(fe,Ue),v=v+Math.imul(ct,Ye)|0,r=(r=r+Math.imul(ct,je)|0)+Math.imul(Ke,Ye)|0,g=g+Math.imul(Ke,je)|0;var Mi=(O+(v=v+Math.imul(R,xt)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ot)|0)+Math.imul(ee,xt)|0))<<13)|0;O=((g=g+Math.imul(ee,Ot)|0)+(r>>>13)|0)+(Mi>>>26)|0,Mi&=67108863,v=Math.imul(xe,te),r=(r=Math.imul(xe,Ue))+Math.imul(le,te)|0,g=Math.imul(le,Ue),v=v+Math.imul(ye,Ye)|0,r=(r=r+Math.imul(ye,je)|0)+Math.imul(fe,Ye)|0,g=g+Math.imul(fe,je)|0,v=v+Math.imul(ct,xt)|0,r=(r=r+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0,g=g+Math.imul(Ke,Ot)|0;var on=(O+(v=v+Math.imul(R,at)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ee)|0)+Math.imul(ee,at)|0))<<13)|0;O=((g=g+Math.imul(ee,Ee)|0)+(r>>>13)|0)+(on>>>26)|0,on&=67108863,v=Math.imul(qe,te),r=(r=Math.imul(qe,Ue))+Math.imul(re,te)|0,g=Math.imul(re,Ue),v=v+Math.imul(xe,Ye)|0,r=(r=r+Math.imul(xe,je)|0)+Math.imul(le,Ye)|0,g=g+Math.imul(le,je)|0,v=v+Math.imul(ye,xt)|0,r=(r=r+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,g=g+Math.imul(fe,Ot)|0,v=v+Math.imul(ct,at)|0,r=(r=r+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0,g=g+Math.imul(Ke,Ee)|0;var st=(O+(v=v+Math.imul(R,Ge)|0)|0)+((8191&(r=(r=r+Math.imul(R,Xe)|0)+Math.imul(ee,Ge)|0))<<13)|0;O=((g=g+Math.imul(ee,Xe)|0)+(r>>>13)|0)+(st>>>26)|0,st&=67108863,v=Math.imul(ce,te),r=(r=Math.imul(ce,Ue))+Math.imul(Ze,te)|0,g=Math.imul(Ze,Ue),v=v+Math.imul(qe,Ye)|0,r=(r=r+Math.imul(qe,je)|0)+Math.imul(re,Ye)|0,g=g+Math.imul(re,je)|0,v=v+Math.imul(xe,xt)|0,r=(r=r+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,g=g+Math.imul(le,Ot)|0,v=v+Math.imul(ye,at)|0,r=(r=r+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,g=g+Math.imul(fe,Ee)|0,v=v+Math.imul(ct,Ge)|0,r=(r=r+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0,g=g+Math.imul(Ke,Xe)|0;var si=(O+(v=v+Math.imul(R,Le)|0)|0)+((8191&(r=(r=r+Math.imul(R,be)|0)+Math.imul(ee,Le)|0))<<13)|0;O=((g=g+Math.imul(ee,be)|0)+(r>>>13)|0)+(si>>>26)|0,si&=67108863,v=Math.imul(Ct,te),r=(r=Math.imul(Ct,Ue))+Math.imul(ut,te)|0,g=Math.imul(ut,Ue),v=v+Math.imul(ce,Ye)|0,r=(r=r+Math.imul(ce,je)|0)+Math.imul(Ze,Ye)|0,g=g+Math.imul(Ze,je)|0,v=v+Math.imul(qe,xt)|0,r=(r=r+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,g=g+Math.imul(re,Ot)|0,v=v+Math.imul(xe,at)|0,r=(r=r+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,g=g+Math.imul(le,Ee)|0,v=v+Math.imul(ye,Ge)|0,r=(r=r+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,g=g+Math.imul(fe,Xe)|0,v=v+Math.imul(ct,Le)|0,r=(r=r+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0,g=g+Math.imul(Ke,be)|0;var Ce=(O+(v=v+Math.imul(R,ne)|0)|0)+((8191&(r=(r=r+Math.imul(R,ke)|0)+Math.imul(ee,ne)|0))<<13)|0;O=((g=g+Math.imul(ee,ke)|0)+(r>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,v=Math.imul(Ae,te),r=(r=Math.imul(Ae,Ue))+Math.imul(Be,te)|0,g=Math.imul(Be,Ue),v=v+Math.imul(Ct,Ye)|0,r=(r=r+Math.imul(Ct,je)|0)+Math.imul(ut,Ye)|0,g=g+Math.imul(ut,je)|0,v=v+Math.imul(ce,xt)|0,r=(r=r+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,g=g+Math.imul(Ze,Ot)|0,v=v+Math.imul(qe,at)|0,r=(r=r+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,g=g+Math.imul(re,Ee)|0,v=v+Math.imul(xe,Ge)|0,r=(r=r+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,g=g+Math.imul(le,Xe)|0,v=v+Math.imul(ye,Le)|0,r=(r=r+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,g=g+Math.imul(fe,be)|0,v=v+Math.imul(ct,ne)|0,r=(r=r+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0,g=g+Math.imul(Ke,ke)|0;var Mt=(O+(v=v+Math.imul(R,At)|0)|0)+((8191&(r=(r=r+Math.imul(R,Wt)|0)+Math.imul(ee,At)|0))<<13)|0;O=((g=g+Math.imul(ee,Wt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul($e,te),r=(r=Math.imul($e,Ue))+Math.imul(Ie,te)|0,g=Math.imul(Ie,Ue),v=v+Math.imul(Ae,Ye)|0,r=(r=r+Math.imul(Ae,je)|0)+Math.imul(Be,Ye)|0,g=g+Math.imul(Be,je)|0,v=v+Math.imul(Ct,xt)|0,r=(r=r+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,g=g+Math.imul(ut,Ot)|0,v=v+Math.imul(ce,at)|0,r=(r=r+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,g=g+Math.imul(Ze,Ee)|0,v=v+Math.imul(qe,Ge)|0,r=(r=r+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,g=g+Math.imul(re,Xe)|0,v=v+Math.imul(xe,Le)|0,r=(r=r+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,g=g+Math.imul(le,be)|0,v=v+Math.imul(ye,ne)|0,r=(r=r+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,g=g+Math.imul(fe,ke)|0,v=v+Math.imul(ct,At)|0,r=(r=r+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0,g=g+Math.imul(Ke,Wt)|0;var Ht=(O+(v=v+Math.imul(R,ei)|0)|0)+((8191&(r=(r=r+Math.imul(R,$t)|0)+Math.imul(ee,ei)|0))<<13)|0;O=((g=g+Math.imul(ee,$t)|0)+(r>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,v=Math.imul(Qe,te),r=(r=Math.imul(Qe,Ue))+Math.imul(St,te)|0,g=Math.imul(St,Ue),v=v+Math.imul($e,Ye)|0,r=(r=r+Math.imul($e,je)|0)+Math.imul(Ie,Ye)|0,g=g+Math.imul(Ie,je)|0,v=v+Math.imul(Ae,xt)|0,r=(r=r+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,g=g+Math.imul(Be,Ot)|0,v=v+Math.imul(Ct,at)|0,r=(r=r+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,g=g+Math.imul(ut,Ee)|0,v=v+Math.imul(ce,Ge)|0,r=(r=r+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,g=g+Math.imul(Ze,Xe)|0,v=v+Math.imul(qe,Le)|0,r=(r=r+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,g=g+Math.imul(re,be)|0,v=v+Math.imul(xe,ne)|0,r=(r=r+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,g=g+Math.imul(le,ke)|0,v=v+Math.imul(ye,At)|0,r=(r=r+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,g=g+Math.imul(fe,Wt)|0,v=v+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0,g=g+Math.imul(Ke,$t)|0;var Dt=(O+(v=v+Math.imul(R,li)|0)|0)+((8191&(r=(r=r+Math.imul(R,ui)|0)+Math.imul(ee,li)|0))<<13)|0;O=((g=g+Math.imul(ee,ui)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,v=Math.imul(Qe,Ye),r=(r=Math.imul(Qe,je))+Math.imul(St,Ye)|0,g=Math.imul(St,je),v=v+Math.imul($e,xt)|0,r=(r=r+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,g=g+Math.imul(Ie,Ot)|0,v=v+Math.imul(Ae,at)|0,r=(r=r+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,g=g+Math.imul(Be,Ee)|0,v=v+Math.imul(Ct,Ge)|0,r=(r=r+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,g=g+Math.imul(ut,Xe)|0,v=v+Math.imul(ce,Le)|0,r=(r=r+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,g=g+Math.imul(Ze,be)|0,v=v+Math.imul(qe,ne)|0,r=(r=r+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,g=g+Math.imul(re,ke)|0,v=v+Math.imul(xe,At)|0,r=(r=r+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,g=g+Math.imul(le,Wt)|0,v=v+Math.imul(ye,ei)|0,r=(r=r+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,g=g+Math.imul(fe,$t)|0;var kt=(O+(v=v+Math.imul(ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;O=((g=g+Math.imul(Ke,ui)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,v=Math.imul(Qe,xt),r=(r=Math.imul(Qe,Ot))+Math.imul(St,xt)|0,g=Math.imul(St,Ot),v=v+Math.imul($e,at)|0,r=(r=r+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,g=g+Math.imul(Ie,Ee)|0,v=v+Math.imul(Ae,Ge)|0,r=(r=r+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,g=g+Math.imul(Be,Xe)|0,v=v+Math.imul(Ct,Le)|0,r=(r=r+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,g=g+Math.imul(ut,be)|0,v=v+Math.imul(ce,ne)|0,r=(r=r+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,g=g+Math.imul(Ze,ke)|0,v=v+Math.imul(qe,At)|0,r=(r=r+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,g=g+Math.imul(re,Wt)|0,v=v+Math.imul(xe,ei)|0,r=(r=r+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,g=g+Math.imul(le,$t)|0;var Gt=(O+(v=v+Math.imul(ye,li)|0)|0)+((8191&(r=(r=r+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0))<<13)|0;O=((g=g+Math.imul(fe,ui)|0)+(r>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,v=Math.imul(Qe,at),r=(r=Math.imul(Qe,Ee))+Math.imul(St,at)|0,g=Math.imul(St,Ee),v=v+Math.imul($e,Ge)|0,r=(r=r+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,g=g+Math.imul(Ie,Xe)|0,v=v+Math.imul(Ae,Le)|0,r=(r=r+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,g=g+Math.imul(Be,be)|0,v=v+Math.imul(Ct,ne)|0,r=(r=r+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,g=g+Math.imul(ut,ke)|0,v=v+Math.imul(ce,At)|0,r=(r=r+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,g=g+Math.imul(Ze,Wt)|0,v=v+Math.imul(qe,ei)|0,r=(r=r+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,g=g+Math.imul(re,$t)|0;var oi=(O+(v=v+Math.imul(xe,li)|0)|0)+((8191&(r=(r=r+Math.imul(xe,ui)|0)+Math.imul(le,li)|0))<<13)|0;O=((g=g+Math.imul(le,ui)|0)+(r>>>13)|0)+(oi>>>26)|0,oi&=67108863,v=Math.imul(Qe,Ge),r=(r=Math.imul(Qe,Xe))+Math.imul(St,Ge)|0,g=Math.imul(St,Xe),v=v+Math.imul($e,Le)|0,r=(r=r+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,g=g+Math.imul(Ie,be)|0,v=v+Math.imul(Ae,ne)|0,r=(r=r+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,g=g+Math.imul(Be,ke)|0,v=v+Math.imul(Ct,At)|0,r=(r=r+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,g=g+Math.imul(ut,Wt)|0,v=v+Math.imul(ce,ei)|0,r=(r=r+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,g=g+Math.imul(Ze,$t)|0;var bi=(O+(v=v+Math.imul(qe,li)|0)|0)+((8191&(r=(r=r+Math.imul(qe,ui)|0)+Math.imul(re,li)|0))<<13)|0;O=((g=g+Math.imul(re,ui)|0)+(r>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Qe,Le),r=(r=Math.imul(Qe,be))+Math.imul(St,Le)|0,g=Math.imul(St,be),v=v+Math.imul($e,ne)|0,r=(r=r+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,g=g+Math.imul(Ie,ke)|0,v=v+Math.imul(Ae,At)|0,r=(r=r+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,g=g+Math.imul(Be,Wt)|0,v=v+Math.imul(Ct,ei)|0,r=(r=r+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,g=g+Math.imul(ut,$t)|0;var yi=(O+(v=v+Math.imul(ce,li)|0)|0)+((8191&(r=(r=r+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0))<<13)|0;O=((g=g+Math.imul(Ze,ui)|0)+(r>>>13)|0)+(yi>>>26)|0,yi&=67108863,v=Math.imul(Qe,ne),r=(r=Math.imul(Qe,ke))+Math.imul(St,ne)|0,g=Math.imul(St,ke),v=v+Math.imul($e,At)|0,r=(r=r+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,g=g+Math.imul(Ie,Wt)|0,v=v+Math.imul(Ae,ei)|0,r=(r=r+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,g=g+Math.imul(Be,$t)|0;var Oi=(O+(v=v+Math.imul(Ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0))<<13)|0;O=((g=g+Math.imul(ut,ui)|0)+(r>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,v=Math.imul(Qe,At),r=(r=Math.imul(Qe,Wt))+Math.imul(St,At)|0,g=Math.imul(St,Wt),v=v+Math.imul($e,ei)|0,r=(r=r+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,g=g+Math.imul(Ie,$t)|0;var Ui=(O+(v=v+Math.imul(Ae,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0))<<13)|0;O=((g=g+Math.imul(Be,ui)|0)+(r>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(Qe,ei),r=(r=Math.imul(Qe,$t))+Math.imul(St,ei)|0,g=Math.imul(St,$t);var Bi=(O+(v=v+Math.imul($e,li)|0)|0)+((8191&(r=(r=r+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0))<<13)|0;O=((g=g+Math.imul(Ie,ui)|0)+(r>>>13)|0)+(Bi>>>26)|0,Bi&=67108863;var qt=(O+(v=Math.imul(Qe,li))|0)+((8191&(r=(r=Math.imul(Qe,ui))+Math.imul(St,li)|0))<<13)|0;return O=((g=Math.imul(St,ui))+(r>>>13)|0)+(qt>>>26)|0,qt&=67108863,D[0]=un,D[1]=Ki,D[2]=Mi,D[3]=on,D[4]=st,D[5]=si,D[6]=Ce,D[7]=Mt,D[8]=Ht,D[9]=Dt,D[10]=kt,D[11]=Gt,D[12]=oi,D[13]=bi,D[14]=yi,D[15]=Oi,D[16]=Ui,D[17]=Bi,D[18]=qt,0!==O&&(D[19]=O,f.length++),f};function j(S,n,s){return(new K).mulp(S,n,s)}function K(S,n){this.x=S,this.y=n}Math.imul||(B=z),l.prototype.mulTo=function(n,s){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?B(this,n,s):h<63?z(this,n,s):h<1024?function W(S,n,s){s.negative=n.negative^S.negative,s.length=S.length+n.length;for(var f=0,h=0,C=0;C>>26)|0)>>>26,D&=67108863}s.words[C]=O,f=D,D=h}return 0!==f?s.words[C]=f:s.length--,s.strip()}(this,n,s):j(this,n,s),f},K.prototype.makeRBT=function(n){for(var s=new Array(n),f=l.prototype._countBits(n)-1,h=0;h>=1;return h},K.prototype.permute=function(n,s,f,h,C,D){for(var O=0;O>>=1)C++;return 1<>>=13),C>>>=13;for(D=2*s;D>=26,s+=h/67108864|0,s+=C>>>26,this.words[f]=67108863&C}return 0!==s&&(this.words[f]=s,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var s=function k(S){for(var n=new Array(S.bitLength()),s=0;s>>h}return n}(n);if(0===s.length)return new l(1);for(var f=this,h=0;h=0);var C,s=n%26,f=(n-s)/26,h=67108863>>>26-s<<26-s;if(0!==s){var D=0;for(C=0;C>>26-s}D&&(this.words[C]=D,this.length++)}if(0!==f){for(C=this.length-1;C>=0;C--)this.words[C+f]=this.words[C];for(C=0;C=0),h=s?(s-s%26)/26:0;var C=n%26,D=Math.min((n-C)/26,this.length),O=67108863^67108863>>>C<D)for(this.length-=D,r=0;r=0&&(0!==g||r>=h);r--){var H=0|this.words[r];this.words[r]=g<<26-C|H>>>C,g=H&O}return v&&0!==g&&(v.words[v.length++]=g),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,s,f){return y(0===this.negative),this.iushrn(n,s,f)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){y("number"==typeof n&&n>=0);var s=n%26,f=(n-s)/26;return!(this.length<=f||!(this.words[f]&1<=0);var s=n%26,f=(n-s)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==s&&f++,this.length=Math.min(f,this.length),0!==s&&(this.words[this.length-1]&=67108863^67108863>>>s<=67108864;s++)this.words[s]-=67108864,s===this.length-1?this.words[s+1]=1:this.words[s+1]++;return this.length=Math.max(this.length,s+1),this},l.prototype.isubn=function(n){if(y("number"==typeof n),y(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var s=0;s>26)-(v/67108864|0),this.words[C+f]=67108863&D}for(;C>26,this.words[C+f]=67108863&D;if(0===O)return this.strip();for(y(-1===O),O=0,C=0;C>26,this.words[C]=67108863&D;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,s){var f,h=this.clone(),C=n,D=0|C.words[C.length-1];0!=(f=26-this._countBits(D))&&(C=C.ushln(f),h.iushln(f),D=0|C.words[C.length-1]);var r,v=h.length-C.length;if("mod"!==s){(r=new l(null)).length=v+1,r.words=new Array(r.length);for(var g=0;g=0;R--){var ee=67108864*(0|h.words[C.length+R])+(0|h.words[C.length+R-1]);for(ee=Math.min(ee/D|0,67108863),h._ishlnsubmul(C,ee,R);0!==h.negative;)ee--,h.negative=0,h._ishlnsubmul(C,1,R),h.isZero()||(h.negative^=1);r&&(r.words[R]=ee)}return r&&r.strip(),h.strip(),"div"!==s&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},l.prototype.divmod=function(n,s,f){return y(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(D=this.neg().divmod(n,s),"mod"!==s&&(h=D.div.neg()),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(D=this.divmod(n.neg(),s),"mod"!==s&&(h=D.div.neg()),{div:h,mod:D.mod}):this.negative&n.negative?(D=this.neg().divmod(n.neg(),s),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.isub(n)),{div:D.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===s?{div:this.divn(n.words[0]),mod:null}:"mod"===s?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,s);var h,C,D},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var s=this.divmod(n);if(s.mod.isZero())return s.div;var f=0!==s.div.negative?s.mod.isub(n):s.mod,h=n.ushrn(1),C=n.andln(1),D=f.cmp(h);return D<0||1===C&&0===D?s.div:0!==s.div.negative?s.div.isubn(1):s.div.iaddn(1)},l.prototype.modn=function(n){y(n<=67108863);for(var s=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(s*f+(0|this.words[h]))%n;return f},l.prototype.idivn=function(n){y(n<=67108863);for(var s=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*s;this.words[f]=h/n|0,s=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){y(0===n.negative),y(!n.isZero());var s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=new l(0),O=new l(1),v=0;s.isEven()&&f.isEven();)s.iushrn(1),f.iushrn(1),++v;for(var r=f.clone(),g=s.clone();!s.isZero();){for(var H=0,R=1;!(s.words[0]&R)&&H<26;++H,R<<=1);if(H>0)for(s.iushrn(H);H-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(g)),h.iushrn(1),C.iushrn(1);for(var ee=0,De=1;!(f.words[0]&De)&&ee<26;++ee,De<<=1);if(ee>0)for(f.iushrn(ee);ee-- >0;)(D.isOdd()||O.isOdd())&&(D.iadd(r),O.isub(g)),D.iushrn(1),O.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(D),C.isub(O)):(f.isub(s),D.isub(h),O.isub(C))}return{a:D,b:O,gcd:f.iushln(v)}},l.prototype._invmp=function(n){y(0===n.negative),y(!n.isZero());var H,s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=f.clone();s.cmpn(1)>0&&f.cmpn(1)>0;){for(var O=0,v=1;!(s.words[0]&v)&&O<26;++O,v<<=1);if(O>0)for(s.iushrn(O);O-- >0;)h.isOdd()&&h.iadd(D),h.iushrn(1);for(var r=0,g=1;!(f.words[0]&g)&&r<26;++r,g<<=1);if(r>0)for(f.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(D),C.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(C)):(f.isub(s),C.isub(h))}return(H=0===s.cmpn(1)?h:C).cmpn(0)<0&&H.iadd(n),H},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var s=this.clone(),f=n.clone();s.negative=0,f.negative=0;for(var h=0;s.isEven()&&f.isEven();h++)s.iushrn(1),f.iushrn(1);for(;;){for(;s.isEven();)s.iushrn(1);for(;f.isEven();)f.iushrn(1);var C=s.cmp(f);if(C<0){var D=s;s=f,f=D}else if(0===C||0===f.cmpn(1))break;s.isub(f)}return f.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){y("number"==typeof n);var s=n%26,f=(n-s)/26,h=1<>>26,this.words[D]=O&=67108863}return 0!==C&&(this.words[D]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var f,s=n<0;if(0!==this.negative&&!s)return-1;if(0===this.negative&&s)return 1;if(this.strip(),this.length>1)f=1;else{s&&(n=-n),y(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],C=0|n.words[f];if(h!==C){hC&&(s=1);break}}return s},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new J(n)},l.prototype.toRed=function(n){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return y(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return y(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var X={k256:null,p224:null,p192:null,p25519:null};function ie(S,n){this.name=S,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function se(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function J(S){if("string"==typeof S){var n=l._prime(S);this.m=n.p,this.prime=n}else y(S.gtn(1),"modulus must be greater than 1"),this.m=S,this.prime=null}function he(S){J.call(this,S),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var f,s=n;do{this.split(s,this.tmp),f=(s=(s=this.imulK(s)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?s.isub(this.p):void 0!==s.strip?s.strip():s._strip(),s},ie.prototype.split=function(n,s){n.iushrn(this.n,0,s)},ie.prototype.imulK=function(n){return n.imul(this.k)},A(se,ie),se.prototype.split=function(n,s){for(var f=4194303,h=Math.min(n.length,9),C=0;C>>22,D=O}n.words[C-10]=D>>>=22,n.length-=0===D&&n.length>10?10:9},se.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var s=0,f=0;f>>=26,n.words[f]=C,s=h}return 0!==s&&(n.words[n.length++]=s),n},l._prime=function(n){if(X[n])return X[n];var s;if("k256"===n)s=new se;else if("p224"===n)s=new ue;else if("p192"===n)s=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);s=new Me}return X[n]=s,s},J.prototype._verify1=function(n){y(0===n.negative,"red works only with positives"),y(n.red,"red works only with red numbers")},J.prototype._verify2=function(n,s){y(0==(n.negative|s.negative),"red works only with positives"),y(n.red&&n.red===s.red,"red works only with red numbers")},J.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},J.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},J.prototype.add=function(n,s){this._verify2(n,s);var f=n.add(s);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},J.prototype.iadd=function(n,s){this._verify2(n,s);var f=n.iadd(s);return f.cmp(this.m)>=0&&f.isub(this.m),f},J.prototype.sub=function(n,s){this._verify2(n,s);var f=n.sub(s);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},J.prototype.isub=function(n,s){this._verify2(n,s);var f=n.isub(s);return f.cmpn(0)<0&&f.iadd(this.m),f},J.prototype.shl=function(n,s){return this._verify1(n),this.imod(n.ushln(s))},J.prototype.imul=function(n,s){return this._verify2(n,s),this.imod(n.imul(s))},J.prototype.mul=function(n,s){return this._verify2(n,s),this.imod(n.mul(s))},J.prototype.isqr=function(n){return this.imul(n,n.clone())},J.prototype.sqr=function(n){return this.mul(n,n)},J.prototype.sqrt=function(n){if(n.isZero())return n.clone();var s=this.m.andln(3);if(y(s%2==1),3===s){var f=this.m.add(new l(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);y(!h.isZero());var D=new l(1).toRed(this),O=D.redNeg(),v=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,v).cmp(O);)r.redIAdd(O);for(var g=this.pow(r,h),H=this.pow(n,h.addn(1).iushrn(1)),R=this.pow(n,h),ee=C;0!==R.cmp(D);){for(var De=R,ct=0;0!==De.cmp(D);ct++)De=De.redSqr();y(ct=0;C--){for(var g=s.words[C],H=r-1;H>=0;H--){var R=g>>H&1;D!==h[0]&&(D=this.sqr(D)),0!==R||0!==O?(O<<=1,O|=R,(4==++v||0===C&&0===H)&&(D=this.mul(D,h[O]),v=0,O=0)):v=0}r=26}return D},J.prototype.convertTo=function(n){var s=n.umod(this.m);return s===n?s.clone():s},J.prototype.convertFrom=function(n){var s=n.clone();return s.red=null,s},l.mont=function(n){return new he(n)},A(he,J),he.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},he.prototype.convertFrom=function(n){var s=this.imod(n.mul(this.rinv));return s.red=null,s},he.prototype.imul=function(n,s){if(n.isZero()||s.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.mul=function(n,s){if(n.isZero()||s.isZero())return new l(0)._forceRed(this);var f=n.mul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},6362:(Fe,q,p)=>{"use strict";var e=p(6698),t=p(5829),y=p(9706),A=p(7965),l=p(6420);function w(m){l.call(this,"digest"),this._hash=m}e(w,l),w.prototype._update=function(m){this._hash.update(m)},w.prototype._final=function(){return this._hash.digest()},Fe.exports=function(P){return"md5"===(P=P.toLowerCase())?new t:"rmd160"===P||"ripemd160"===P?new y:new w(A(P))}},7588:(Fe,q,p)=>{var e=p(5829);Fe.exports=function(t){return(new e).update(t).digest()}},5825:(Fe,q,p)=>{"use strict";var e=p(6698),t=p(5922),y=p(6420),A=p(843).Buffer,l=p(7588),w=p(9706),m=p(7965),P=A.alloc(128);function d(E,M){y.call(this,"digest"),"string"==typeof M&&(M=A.from(M));var I="sha512"===E||"sha384"===E?128:64;this._alg=E,this._key=M,M.length>I?M=("rmd160"===E?new w:m(E)).update(M).digest():M.length{"use strict";var e=p(6698),t=p(843).Buffer,y=p(6420),A=t.alloc(128),l=64;function w(m,P){y.call(this,"digest"),"string"==typeof P&&(P=t.from(P)),this._alg=m,this._key=P,P.length>l?P=m(P):P.length{"use strict";q.randomBytes=q.rng=q.pseudoRandomBytes=q.prng=p(4019),q.createHash=q.Hash=p(6362),q.createHmac=q.Hmac=p(5825);var e=p(1699),t=Object.keys(e),y=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(t);q.getHashes=function(){return y};var A=p(7100);q.pbkdf2=A.pbkdf2,q.pbkdf2Sync=A.pbkdf2Sync;var l=p(5600);q.Cipher=l.Cipher,q.createCipher=l.createCipher,q.Cipheriv=l.Cipheriv,q.createCipheriv=l.createCipheriv,q.Decipher=l.Decipher,q.createDecipher=l.createDecipher,q.Decipheriv=l.Decipheriv,q.createDecipheriv=l.createDecipheriv,q.getCiphers=l.getCiphers,q.listCiphers=l.listCiphers;var w=p(5144);q.DiffieHellmanGroup=w.DiffieHellmanGroup,q.createDiffieHellmanGroup=w.createDiffieHellmanGroup,q.getDiffieHellman=w.getDiffieHellman,q.createDiffieHellman=w.createDiffieHellman,q.DiffieHellman=w.DiffieHellman;var m=p(7686);q.createSign=m.createSign,q.Sign=m.Sign,q.createVerify=m.createVerify,q.Verify=m.Verify,q.createECDH=p(8840);var P=p(7050);q.publicEncrypt=P.publicEncrypt,q.privateEncrypt=P.privateEncrypt,q.publicDecrypt=P.publicDecrypt,q.privateDecrypt=P.privateDecrypt;var d=p(1237);q.randomFill=d.randomFill,q.randomFillSync=d.randomFillSync,q.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},q.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}},132:(Fe,q,p)=>{"use strict";q.utils=p(2294),q.Cipher=p(9484),q.DES=p(4374),q.CBC=p(2066),q.EDE=p(9710)},2066:(Fe,q,p)=>{"use strict";var e=p(7798),t=p(6698),y={};function A(w){e.equal(w.length,8,"Invalid IV length"),this.iv=new Array(8);for(var m=0;m{"use strict";var e=p(7798);function t(y){this.options=y,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0,this.padding=!1!==y.padding}Fe.exports=t,t.prototype._init=function(){},t.prototype.update=function(A){return 0===A.length?[]:"decrypt"===this.type?this._updateDecrypt(A):this._updateEncrypt(A)},t.prototype._buffer=function(A,l){for(var w=Math.min(this.buffer.length-this.bufferOff,A.length-l),m=0;m0;m--)l+=this._buffer(A,l),w+=this._flushBuffer(P,w);return l+=this._buffer(A,l),P},t.prototype.final=function(A){var l,w;return A&&(l=this.update(A)),w="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),l?l.concat(w):w},t.prototype._pad=function(A,l){if(0===l)return!1;for(;l{"use strict";var e=p(7798),t=p(6698),y=p(2294),A=p(9484);function l(){this.tmp=new Array(2),this.keys=null}function w(P){A.call(this,P);var d=new l;this._desState=d,this.deriveKeys(d,P.key)}t(w,A),Fe.exports=w,w.create=function(d){return new w(d)};var m=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];w.prototype.deriveKeys=function(d,E){d.keys=new Array(32),e.equal(E.length,this.blockSize,"Invalid key length");var M=y.readUInt32BE(E,0),I=y.readUInt32BE(E,4);y.pc1(M,I,d.tmp,0),M=d.tmp[0],I=d.tmp[1];for(var k=0;k>>1];M=y.r28shl(M,z),I=y.r28shl(I,z),y.pc2(M,I,d.keys,k)}},w.prototype._update=function(d,E,M,I){var k=this._desState,z=y.readUInt32BE(d,E),B=y.readUInt32BE(d,E+4);y.ip(z,B,k.tmp,0),z=k.tmp[0],B=k.tmp[1],"encrypt"===this.type?this._encrypt(k,z,B,k.tmp,0):this._decrypt(k,z,B,k.tmp,0),B=k.tmp[1],y.writeUInt32BE(M,z=k.tmp[0],I),y.writeUInt32BE(M,B,I+4)},w.prototype._pad=function(d,E){if(!1===this.padding)return!1;for(var M=d.length-E,I=E;I>>0,z=se}y.rip(B,z,I,k)},w.prototype._decrypt=function(d,E,M,I,k){for(var z=M,B=E,W=d.keys.length-2;W>=0;W-=2){var j=d.keys[W],K=d.keys[W+1];y.expand(z,d.tmp,0);var X=y.substitute(j^=d.tmp[0],K^=d.tmp[1]),se=z;z=(B^y.permute(X))>>>0,B=se}y.rip(z,B,I,k)}},9710:(Fe,q,p)=>{"use strict";var e=p(7798),t=p(6698),y=p(9484),A=p(4374);function l(m,P){e.equal(P.length,24,"Invalid key length");var d=P.slice(0,8),E=P.slice(8,16),M=P.slice(16,24);this.ciphers="encrypt"===m?[A.create({type:"encrypt",key:d}),A.create({type:"decrypt",key:E}),A.create({type:"encrypt",key:M})]:[A.create({type:"decrypt",key:M}),A.create({type:"encrypt",key:E}),A.create({type:"decrypt",key:d})]}function w(m){y.call(this,m);var P=new l(this.type,this.options.key);this._edeState=P}t(w,y),Fe.exports=w,w.create=function(P){return new w(P)},w.prototype._update=function(P,d,E,M){var I=this._edeState;I.ciphers[0]._update(P,d,E,M),I.ciphers[1]._update(E,M,E,M),I.ciphers[2]._update(E,M,E,M)},w.prototype._pad=A.prototype._pad,w.prototype._unpad=A.prototype._unpad},2294:(Fe,q)=>{"use strict";q.readUInt32BE=function(A,l){return(A[0+l]<<24|A[1+l]<<16|A[2+l]<<8|A[3+l])>>>0},q.writeUInt32BE=function(A,l,w){A[0+w]=l>>>24,A[1+w]=l>>>16&255,A[2+w]=l>>>8&255,A[3+w]=255&l},q.ip=function(A,l,w,m){for(var P=0,d=0,E=6;E>=0;E-=2){for(var M=0;M<=24;M+=8)P<<=1,P|=l>>>M+E&1;for(M=0;M<=24;M+=8)P<<=1,P|=A>>>M+E&1}for(E=6;E>=0;E-=2){for(M=1;M<=25;M+=8)d<<=1,d|=l>>>M+E&1;for(M=1;M<=25;M+=8)d<<=1,d|=A>>>M+E&1}w[m+0]=P>>>0,w[m+1]=d>>>0},q.rip=function(A,l,w,m){for(var P=0,d=0,E=0;E<4;E++)for(var M=24;M>=0;M-=8)P<<=1,P|=l>>>M+E&1,P<<=1,P|=A>>>M+E&1;for(E=4;E<8;E++)for(M=24;M>=0;M-=8)d<<=1,d|=l>>>M+E&1,d<<=1,d|=A>>>M+E&1;w[m+0]=P>>>0,w[m+1]=d>>>0},q.pc1=function(A,l,w,m){for(var P=0,d=0,E=7;E>=5;E--){for(var M=0;M<=24;M+=8)P<<=1,P|=l>>M+E&1;for(M=0;M<=24;M+=8)P<<=1,P|=A>>M+E&1}for(M=0;M<=24;M+=8)P<<=1,P|=l>>M+E&1;for(E=1;E<=3;E++){for(M=0;M<=24;M+=8)d<<=1,d|=l>>M+E&1;for(M=0;M<=24;M+=8)d<<=1,d|=A>>M+E&1}for(M=0;M<=24;M+=8)d<<=1,d|=A>>M+E&1;w[m+0]=P>>>0,w[m+1]=d>>>0},q.r28shl=function(A,l){return A<>>28-l};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];q.pc2=function(A,l,w,m){for(var P=0,d=0,E=p.length>>>1,M=0;M>>p[M]&1;for(M=E;M>>p[M]&1;w[m+0]=P>>>0,w[m+1]=d>>>0},q.expand=function(A,l,w){var m=0,P=0;m=(1&A)<<5|A>>>27;for(var d=23;d>=15;d-=4)m<<=6,m|=A>>>d&63;for(d=11;d>=3;d-=4)P|=A>>>d&63,P<<=6;P|=(31&A)<<1|A>>>31,l[w+0]=m>>>0,l[w+1]=P>>>0};var e=[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];q.substitute=function(A,l){for(var w=0,m=0;m<4;m++)w<<=4,w|=e[64*m+(A>>>18-6*m&63)];for(m=0;m<4;m++)w<<=4,w|=e[256+64*m+(l>>>18-6*m&63)];return w>>>0};var t=[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];q.permute=function(A){for(var l=0,w=0;w>>t[w]&1;return l>>>0},q.padSplit=function(A,l,w){for(var m=A.toString(2);m.length{var e=p(1096),t=p(9799),y=p(5580),l={binary:!0,hex:!0,base64:!0};q.DiffieHellmanGroup=q.createDiffieHellmanGroup=q.getDiffieHellman=function A(m){var P=new Buffer(t[m].prime,"hex"),d=new Buffer(t[m].gen,"hex");return new y(P,d)},q.createDiffieHellman=q.DiffieHellman=function w(m,P,d,E){return Buffer.isBuffer(P)||void 0===l[P]?w(m,"binary",P,d):(P=P||"binary",E=E||"binary",d=d||new Buffer([2]),Buffer.isBuffer(d)||(d=new Buffer(d,E)),"number"==typeof m?new y(e(m,d),d,!0):(Buffer.isBuffer(m)||(m=new Buffer(m,P)),new y(m,d,!0)))}},5580:(Fe,q,p)=>{var e=p(7301),y=new(p(8606)),A=new e(24),l=new e(11),w=new e(10),m=new e(3),P=new e(7),d=p(1096),E=p(4019);function M(j,K){return K=K||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,K)),this._pub=new e(j),this}function I(j,K){return K=K||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,K)),this._priv=new e(j),this}Fe.exports=B;var k={};function B(j,K,X){this.setGenerator(K),this.__prime=new e(j),this._prime=e.mont(this.__prime),this._primeLen=j.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,X?(this.setPublicKey=M,this.setPrivateKey=I):this._primeCode=8}function W(j,K){var X=new Buffer(j.toArray());return K?X.toString(K):X}Object.defineProperty(B.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function z(j,K){var X=K.toString("hex"),ie=[X,j.toString(16)].join("_");if(ie in k)return k[ie];var ue,se=0;if(j.isEven()||!d.simpleSieve||!d.fermatTest(j)||!y.test(j))return se+=1,k[ie]=se+="02"===X||"05"===X?8:4,se;switch(y.test(j.shrn(1))||(se+=2),X){case"02":j.mod(A).cmp(l)&&(se+=8);break;case"05":(ue=j.mod(w)).cmp(m)&&ue.cmp(P)&&(se+=8);break;default:se+=4}return k[ie]=se,se}(this.__prime,this.__gen)),this._primeCode}}),B.prototype.generateKeys=function(){return this._priv||(this._priv=new e(E(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},B.prototype.computeSecret=function(j){var K=(j=(j=new e(j)).toRed(this._prime)).redPow(this._priv).fromRed(),X=new Buffer(K.toArray()),ie=this.getPrime();if(X.length{var e=p(4019);Fe.exports=se,se.simpleSieve=X,se.fermatTest=ie;var t=p(7301),y=new t(24),l=new(p(8606)),w=new t(1),m=new t(2),P=new t(5),M=(new t(16),new t(8),new t(10)),I=new t(3),z=(new t(7),new t(11)),B=new t(4),j=(new t(12),null);function X(ue){for(var ae=function K(){if(null!==j)return j;var ae=[];ae[0]=2;for(var Me=1,J=3;J<1048576;J+=2){for(var he=Math.ceil(Math.sqrt(J)),S=0;Sue;)Me.ishrn(1);if(Me.isEven()&&Me.iadd(w),Me.testn(1)||Me.iadd(m),ae.cmp(m)){if(!ae.cmp(P))for(;Me.mod(M).cmp(I);)Me.iadd(B)}else for(;Me.mod(y).cmp(z);)Me.iadd(B);if(X(J=Me.shrn(1))&&X(Me)&&ie(J)&&ie(Me)&&l.test(J)&&l.test(Me))return Me}}},7301:function(Fe,q,p){!function(e,t){"use strict";function y(S,n){if(!S)throw new Error(n||"Assertion failed")}function A(S,n){S.super_=n;var s=function(){};s.prototype=n.prototype,S.prototype=new s,S.prototype.constructor=S}function l(S,n,s){if(l.isBN(S))return S;this.negative=0,this.words=null,this.length=0,this.red=null,null!==S&&(("le"===n||"be"===n)&&(s=n,n=10),this._init(S||0,n||10,s||"be"))}var w;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{w=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:p(7748).Buffer}catch{}function m(S,n){var s=S.charCodeAt(n);return s>=65&&s<=70?s-55:s>=97&&s<=102?s-87:s-48&15}function P(S,n,s){var f=m(S,s);return s-1>=n&&(f|=m(S,s-1)<<4),f}function d(S,n,s,f){for(var h=0,C=Math.min(S.length,s),D=n;D=49?O-49+10:O>=17?O-17+10:O}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,s){return n.cmp(s)>0?n:s},l.min=function(n,s){return n.cmp(s)<0?n:s},l.prototype._init=function(n,s,f){if("number"==typeof n)return this._initNumber(n,s,f);if("object"==typeof n)return this._initArray(n,s,f);"hex"===s&&(s=16),y(s===(0|s)&&s>=2&&s<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(D=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);else if("le"===f)for(h=0,C=0;h>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);return this.strip()},l.prototype._parseHex=function(n,s,f){this.length=Math.ceil((n.length-s)/6),this.words=new Array(this.length);for(var h=0;h=s;h-=2)O=P(n,s,h)<=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;else for(h=(n.length-s)%2==0?s+1:s;h=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,s,f){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=s)h++;h--,C=C/s|0;for(var D=n.length-f,O=D%h,v=Math.min(D,D-O)+f,r=0,g=f;g1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var E=["","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"],M=[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],I=[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(S,n,s){s.negative=n.negative^S.negative;var f=S.length+n.length|0;s.length=f,f=f-1|0;var h=0|S.words[0],C=0|n.words[0],D=h*C,v=D/67108864|0;s.words[0]=67108863&D;for(var r=1;r>>26,H=67108863&v,R=Math.min(r,n.length-1),ee=Math.max(0,r-S.length+1);ee<=R;ee++)g+=(D=(h=0|S.words[r-ee|0])*(C=0|n.words[ee])+H)/67108864|0,H=67108863&D;s.words[r]=0|H,v=0|g}return 0!==v?s.words[r]=0|v:s.length--,s.strip()}l.prototype.toString=function(n,s){var f;if(s=0|s||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,C=0,D=0;D>>24-h&16777215)||D!==this.length-1?E[6-v.length]+v+f:v+f,(h+=2)>=26&&(h-=26,D--)}for(0!==C&&(f=C.toString(16)+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=M[n],g=I[n];f="";var H=this.clone();for(H.negative=0;!H.isZero();){var R=H.modn(g).toString(n);f=(H=H.idivn(g)).isZero()?R+f:E[r-R.length]+R+f}for(this.isZero()&&(f="0"+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,s){return y(typeof w<"u"),this.toArrayLike(w,n,s)},l.prototype.toArray=function(n,s){return this.toArrayLike(Array,n,s)},l.prototype.toArrayLike=function(n,s,f){var h=this.byteLength(),C=f||Math.max(1,h);y(h<=C,"byte array longer than desired length"),y(C>0,"Requested array length <= 0"),this.strip();var v,r,D="le"===s,O=new n(C),g=this.clone();if(D){for(r=0;!g.isZero();r++)v=g.andln(255),g.iushrn(8),O[r]=v;for(;r=4096&&(f+=13,s>>>=13),s>=64&&(f+=7,s>>>=7),s>=8&&(f+=4,s>>>=4),s>=2&&(f+=2,s>>>=2),f+s},l.prototype._zeroBits=function(n){if(0===n)return 26;var s=n,f=0;return 8191&s||(f+=13,s>>>=13),127&s||(f+=7,s>>>=7),15&s||(f+=4,s>>>=4),3&s||(f+=2,s>>>=2),1&s||f++,f},l.prototype.bitLength=function(){var s=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+s},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,s=0;sn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var s;s=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var s,f;this.length>n.length?(s=this,f=n):(s=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){y("number"==typeof n&&n>=0);var s=0|Math.ceil(n/26),f=n%26;this._expand(s),f>0&&s--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,s){y("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=s?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var C=0,D=0;D>>26;for(;0!==C&&D>>26;if(this.length=f.length,0!==C)this.words[this.length]=C,this.length++;else if(f!==this)for(;Dn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var s=this.iadd(n);return n.negative=1,s._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,C=n):(h=n,C=this);for(var D=0,O=0;O>26,this.words[O]=67108863&s;for(;0!==D&&O>26,this.words[O]=67108863&s;if(0===D&&O>>13,De=0|h[1],ct=8191&De,Ke=De>>>13,Je=0|h[2],ye=8191&Je,fe=Je>>>13,de=0|h[3],xe=8191&de,le=de>>>13,pe=0|h[4],qe=8191&pe,re=pe>>>13,ve=0|h[5],ce=8191&ve,Ze=ve>>>13,We=0|h[6],Ct=8191&We,ut=We>>>13,It=0|h[7],Ae=8191&It,Be=It>>>13,rt=0|h[8],$e=8191&rt,Ie=rt>>>13,lt=0|h[9],Qe=8191<,St=lt>>>13,dt=0|C[0],te=8191&dt,Ue=dt>>>13,Bt=0|C[1],Ye=8191&Bt,je=Bt>>>13,Ft=0|C[2],xt=8191&Ft,Ot=Ft>>>13,yt=0|C[3],at=8191&yt,Ee=yt>>>13,nt=0|C[4],Ge=8191&nt,Xe=nt>>>13,gt=0|C[5],Le=8191>,be=gt>>>13,$=0|C[6],ne=8191&$,ke=$>>>13,Nt=0|C[7],At=8191&Nt,Wt=Nt>>>13,gi=0|C[8],ei=8191&gi,$t=gi>>>13,Fi=0|C[9],li=8191&Fi,ui=Fi>>>13;f.negative=n.negative^s.negative,f.length=19;var un=(O+(v=Math.imul(R,te))|0)+((8191&(r=(r=Math.imul(R,Ue))+Math.imul(ee,te)|0))<<13)|0;O=((g=Math.imul(ee,Ue))+(r>>>13)|0)+(un>>>26)|0,un&=67108863,v=Math.imul(ct,te),r=(r=Math.imul(ct,Ue))+Math.imul(Ke,te)|0,g=Math.imul(Ke,Ue);var Ki=(O+(v=v+Math.imul(R,Ye)|0)|0)+((8191&(r=(r=r+Math.imul(R,je)|0)+Math.imul(ee,Ye)|0))<<13)|0;O=((g=g+Math.imul(ee,je)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,v=Math.imul(ye,te),r=(r=Math.imul(ye,Ue))+Math.imul(fe,te)|0,g=Math.imul(fe,Ue),v=v+Math.imul(ct,Ye)|0,r=(r=r+Math.imul(ct,je)|0)+Math.imul(Ke,Ye)|0,g=g+Math.imul(Ke,je)|0;var Mi=(O+(v=v+Math.imul(R,xt)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ot)|0)+Math.imul(ee,xt)|0))<<13)|0;O=((g=g+Math.imul(ee,Ot)|0)+(r>>>13)|0)+(Mi>>>26)|0,Mi&=67108863,v=Math.imul(xe,te),r=(r=Math.imul(xe,Ue))+Math.imul(le,te)|0,g=Math.imul(le,Ue),v=v+Math.imul(ye,Ye)|0,r=(r=r+Math.imul(ye,je)|0)+Math.imul(fe,Ye)|0,g=g+Math.imul(fe,je)|0,v=v+Math.imul(ct,xt)|0,r=(r=r+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0,g=g+Math.imul(Ke,Ot)|0;var on=(O+(v=v+Math.imul(R,at)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ee)|0)+Math.imul(ee,at)|0))<<13)|0;O=((g=g+Math.imul(ee,Ee)|0)+(r>>>13)|0)+(on>>>26)|0,on&=67108863,v=Math.imul(qe,te),r=(r=Math.imul(qe,Ue))+Math.imul(re,te)|0,g=Math.imul(re,Ue),v=v+Math.imul(xe,Ye)|0,r=(r=r+Math.imul(xe,je)|0)+Math.imul(le,Ye)|0,g=g+Math.imul(le,je)|0,v=v+Math.imul(ye,xt)|0,r=(r=r+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,g=g+Math.imul(fe,Ot)|0,v=v+Math.imul(ct,at)|0,r=(r=r+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0,g=g+Math.imul(Ke,Ee)|0;var st=(O+(v=v+Math.imul(R,Ge)|0)|0)+((8191&(r=(r=r+Math.imul(R,Xe)|0)+Math.imul(ee,Ge)|0))<<13)|0;O=((g=g+Math.imul(ee,Xe)|0)+(r>>>13)|0)+(st>>>26)|0,st&=67108863,v=Math.imul(ce,te),r=(r=Math.imul(ce,Ue))+Math.imul(Ze,te)|0,g=Math.imul(Ze,Ue),v=v+Math.imul(qe,Ye)|0,r=(r=r+Math.imul(qe,je)|0)+Math.imul(re,Ye)|0,g=g+Math.imul(re,je)|0,v=v+Math.imul(xe,xt)|0,r=(r=r+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,g=g+Math.imul(le,Ot)|0,v=v+Math.imul(ye,at)|0,r=(r=r+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,g=g+Math.imul(fe,Ee)|0,v=v+Math.imul(ct,Ge)|0,r=(r=r+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0,g=g+Math.imul(Ke,Xe)|0;var si=(O+(v=v+Math.imul(R,Le)|0)|0)+((8191&(r=(r=r+Math.imul(R,be)|0)+Math.imul(ee,Le)|0))<<13)|0;O=((g=g+Math.imul(ee,be)|0)+(r>>>13)|0)+(si>>>26)|0,si&=67108863,v=Math.imul(Ct,te),r=(r=Math.imul(Ct,Ue))+Math.imul(ut,te)|0,g=Math.imul(ut,Ue),v=v+Math.imul(ce,Ye)|0,r=(r=r+Math.imul(ce,je)|0)+Math.imul(Ze,Ye)|0,g=g+Math.imul(Ze,je)|0,v=v+Math.imul(qe,xt)|0,r=(r=r+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,g=g+Math.imul(re,Ot)|0,v=v+Math.imul(xe,at)|0,r=(r=r+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,g=g+Math.imul(le,Ee)|0,v=v+Math.imul(ye,Ge)|0,r=(r=r+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,g=g+Math.imul(fe,Xe)|0,v=v+Math.imul(ct,Le)|0,r=(r=r+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0,g=g+Math.imul(Ke,be)|0;var Ce=(O+(v=v+Math.imul(R,ne)|0)|0)+((8191&(r=(r=r+Math.imul(R,ke)|0)+Math.imul(ee,ne)|0))<<13)|0;O=((g=g+Math.imul(ee,ke)|0)+(r>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,v=Math.imul(Ae,te),r=(r=Math.imul(Ae,Ue))+Math.imul(Be,te)|0,g=Math.imul(Be,Ue),v=v+Math.imul(Ct,Ye)|0,r=(r=r+Math.imul(Ct,je)|0)+Math.imul(ut,Ye)|0,g=g+Math.imul(ut,je)|0,v=v+Math.imul(ce,xt)|0,r=(r=r+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,g=g+Math.imul(Ze,Ot)|0,v=v+Math.imul(qe,at)|0,r=(r=r+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,g=g+Math.imul(re,Ee)|0,v=v+Math.imul(xe,Ge)|0,r=(r=r+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,g=g+Math.imul(le,Xe)|0,v=v+Math.imul(ye,Le)|0,r=(r=r+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,g=g+Math.imul(fe,be)|0,v=v+Math.imul(ct,ne)|0,r=(r=r+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0,g=g+Math.imul(Ke,ke)|0;var Mt=(O+(v=v+Math.imul(R,At)|0)|0)+((8191&(r=(r=r+Math.imul(R,Wt)|0)+Math.imul(ee,At)|0))<<13)|0;O=((g=g+Math.imul(ee,Wt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul($e,te),r=(r=Math.imul($e,Ue))+Math.imul(Ie,te)|0,g=Math.imul(Ie,Ue),v=v+Math.imul(Ae,Ye)|0,r=(r=r+Math.imul(Ae,je)|0)+Math.imul(Be,Ye)|0,g=g+Math.imul(Be,je)|0,v=v+Math.imul(Ct,xt)|0,r=(r=r+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,g=g+Math.imul(ut,Ot)|0,v=v+Math.imul(ce,at)|0,r=(r=r+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,g=g+Math.imul(Ze,Ee)|0,v=v+Math.imul(qe,Ge)|0,r=(r=r+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,g=g+Math.imul(re,Xe)|0,v=v+Math.imul(xe,Le)|0,r=(r=r+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,g=g+Math.imul(le,be)|0,v=v+Math.imul(ye,ne)|0,r=(r=r+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,g=g+Math.imul(fe,ke)|0,v=v+Math.imul(ct,At)|0,r=(r=r+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0,g=g+Math.imul(Ke,Wt)|0;var Ht=(O+(v=v+Math.imul(R,ei)|0)|0)+((8191&(r=(r=r+Math.imul(R,$t)|0)+Math.imul(ee,ei)|0))<<13)|0;O=((g=g+Math.imul(ee,$t)|0)+(r>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,v=Math.imul(Qe,te),r=(r=Math.imul(Qe,Ue))+Math.imul(St,te)|0,g=Math.imul(St,Ue),v=v+Math.imul($e,Ye)|0,r=(r=r+Math.imul($e,je)|0)+Math.imul(Ie,Ye)|0,g=g+Math.imul(Ie,je)|0,v=v+Math.imul(Ae,xt)|0,r=(r=r+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,g=g+Math.imul(Be,Ot)|0,v=v+Math.imul(Ct,at)|0,r=(r=r+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,g=g+Math.imul(ut,Ee)|0,v=v+Math.imul(ce,Ge)|0,r=(r=r+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,g=g+Math.imul(Ze,Xe)|0,v=v+Math.imul(qe,Le)|0,r=(r=r+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,g=g+Math.imul(re,be)|0,v=v+Math.imul(xe,ne)|0,r=(r=r+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,g=g+Math.imul(le,ke)|0,v=v+Math.imul(ye,At)|0,r=(r=r+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,g=g+Math.imul(fe,Wt)|0,v=v+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0,g=g+Math.imul(Ke,$t)|0;var Dt=(O+(v=v+Math.imul(R,li)|0)|0)+((8191&(r=(r=r+Math.imul(R,ui)|0)+Math.imul(ee,li)|0))<<13)|0;O=((g=g+Math.imul(ee,ui)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,v=Math.imul(Qe,Ye),r=(r=Math.imul(Qe,je))+Math.imul(St,Ye)|0,g=Math.imul(St,je),v=v+Math.imul($e,xt)|0,r=(r=r+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,g=g+Math.imul(Ie,Ot)|0,v=v+Math.imul(Ae,at)|0,r=(r=r+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,g=g+Math.imul(Be,Ee)|0,v=v+Math.imul(Ct,Ge)|0,r=(r=r+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,g=g+Math.imul(ut,Xe)|0,v=v+Math.imul(ce,Le)|0,r=(r=r+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,g=g+Math.imul(Ze,be)|0,v=v+Math.imul(qe,ne)|0,r=(r=r+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,g=g+Math.imul(re,ke)|0,v=v+Math.imul(xe,At)|0,r=(r=r+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,g=g+Math.imul(le,Wt)|0,v=v+Math.imul(ye,ei)|0,r=(r=r+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,g=g+Math.imul(fe,$t)|0;var kt=(O+(v=v+Math.imul(ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;O=((g=g+Math.imul(Ke,ui)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,v=Math.imul(Qe,xt),r=(r=Math.imul(Qe,Ot))+Math.imul(St,xt)|0,g=Math.imul(St,Ot),v=v+Math.imul($e,at)|0,r=(r=r+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,g=g+Math.imul(Ie,Ee)|0,v=v+Math.imul(Ae,Ge)|0,r=(r=r+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,g=g+Math.imul(Be,Xe)|0,v=v+Math.imul(Ct,Le)|0,r=(r=r+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,g=g+Math.imul(ut,be)|0,v=v+Math.imul(ce,ne)|0,r=(r=r+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,g=g+Math.imul(Ze,ke)|0,v=v+Math.imul(qe,At)|0,r=(r=r+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,g=g+Math.imul(re,Wt)|0,v=v+Math.imul(xe,ei)|0,r=(r=r+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,g=g+Math.imul(le,$t)|0;var Gt=(O+(v=v+Math.imul(ye,li)|0)|0)+((8191&(r=(r=r+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0))<<13)|0;O=((g=g+Math.imul(fe,ui)|0)+(r>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,v=Math.imul(Qe,at),r=(r=Math.imul(Qe,Ee))+Math.imul(St,at)|0,g=Math.imul(St,Ee),v=v+Math.imul($e,Ge)|0,r=(r=r+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,g=g+Math.imul(Ie,Xe)|0,v=v+Math.imul(Ae,Le)|0,r=(r=r+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,g=g+Math.imul(Be,be)|0,v=v+Math.imul(Ct,ne)|0,r=(r=r+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,g=g+Math.imul(ut,ke)|0,v=v+Math.imul(ce,At)|0,r=(r=r+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,g=g+Math.imul(Ze,Wt)|0,v=v+Math.imul(qe,ei)|0,r=(r=r+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,g=g+Math.imul(re,$t)|0;var oi=(O+(v=v+Math.imul(xe,li)|0)|0)+((8191&(r=(r=r+Math.imul(xe,ui)|0)+Math.imul(le,li)|0))<<13)|0;O=((g=g+Math.imul(le,ui)|0)+(r>>>13)|0)+(oi>>>26)|0,oi&=67108863,v=Math.imul(Qe,Ge),r=(r=Math.imul(Qe,Xe))+Math.imul(St,Ge)|0,g=Math.imul(St,Xe),v=v+Math.imul($e,Le)|0,r=(r=r+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,g=g+Math.imul(Ie,be)|0,v=v+Math.imul(Ae,ne)|0,r=(r=r+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,g=g+Math.imul(Be,ke)|0,v=v+Math.imul(Ct,At)|0,r=(r=r+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,g=g+Math.imul(ut,Wt)|0,v=v+Math.imul(ce,ei)|0,r=(r=r+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,g=g+Math.imul(Ze,$t)|0;var bi=(O+(v=v+Math.imul(qe,li)|0)|0)+((8191&(r=(r=r+Math.imul(qe,ui)|0)+Math.imul(re,li)|0))<<13)|0;O=((g=g+Math.imul(re,ui)|0)+(r>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Qe,Le),r=(r=Math.imul(Qe,be))+Math.imul(St,Le)|0,g=Math.imul(St,be),v=v+Math.imul($e,ne)|0,r=(r=r+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,g=g+Math.imul(Ie,ke)|0,v=v+Math.imul(Ae,At)|0,r=(r=r+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,g=g+Math.imul(Be,Wt)|0,v=v+Math.imul(Ct,ei)|0,r=(r=r+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,g=g+Math.imul(ut,$t)|0;var yi=(O+(v=v+Math.imul(ce,li)|0)|0)+((8191&(r=(r=r+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0))<<13)|0;O=((g=g+Math.imul(Ze,ui)|0)+(r>>>13)|0)+(yi>>>26)|0,yi&=67108863,v=Math.imul(Qe,ne),r=(r=Math.imul(Qe,ke))+Math.imul(St,ne)|0,g=Math.imul(St,ke),v=v+Math.imul($e,At)|0,r=(r=r+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,g=g+Math.imul(Ie,Wt)|0,v=v+Math.imul(Ae,ei)|0,r=(r=r+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,g=g+Math.imul(Be,$t)|0;var Oi=(O+(v=v+Math.imul(Ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0))<<13)|0;O=((g=g+Math.imul(ut,ui)|0)+(r>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,v=Math.imul(Qe,At),r=(r=Math.imul(Qe,Wt))+Math.imul(St,At)|0,g=Math.imul(St,Wt),v=v+Math.imul($e,ei)|0,r=(r=r+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,g=g+Math.imul(Ie,$t)|0;var Ui=(O+(v=v+Math.imul(Ae,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0))<<13)|0;O=((g=g+Math.imul(Be,ui)|0)+(r>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(Qe,ei),r=(r=Math.imul(Qe,$t))+Math.imul(St,ei)|0,g=Math.imul(St,$t);var Bi=(O+(v=v+Math.imul($e,li)|0)|0)+((8191&(r=(r=r+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0))<<13)|0;O=((g=g+Math.imul(Ie,ui)|0)+(r>>>13)|0)+(Bi>>>26)|0,Bi&=67108863;var qt=(O+(v=Math.imul(Qe,li))|0)+((8191&(r=(r=Math.imul(Qe,ui))+Math.imul(St,li)|0))<<13)|0;return O=((g=Math.imul(St,ui))+(r>>>13)|0)+(qt>>>26)|0,qt&=67108863,D[0]=un,D[1]=Ki,D[2]=Mi,D[3]=on,D[4]=st,D[5]=si,D[6]=Ce,D[7]=Mt,D[8]=Ht,D[9]=Dt,D[10]=kt,D[11]=Gt,D[12]=oi,D[13]=bi,D[14]=yi,D[15]=Oi,D[16]=Ui,D[17]=Bi,D[18]=qt,0!==O&&(D[19]=O,f.length++),f};function j(S,n,s){return(new K).mulp(S,n,s)}function K(S,n){this.x=S,this.y=n}Math.imul||(B=z),l.prototype.mulTo=function(n,s){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?B(this,n,s):h<63?z(this,n,s):h<1024?function W(S,n,s){s.negative=n.negative^S.negative,s.length=S.length+n.length;for(var f=0,h=0,C=0;C>>26)|0)>>>26,D&=67108863}s.words[C]=O,f=D,D=h}return 0!==f?s.words[C]=f:s.length--,s.strip()}(this,n,s):j(this,n,s),f},K.prototype.makeRBT=function(n){for(var s=new Array(n),f=l.prototype._countBits(n)-1,h=0;h>=1;return h},K.prototype.permute=function(n,s,f,h,C,D){for(var O=0;O>>=1)C++;return 1<>>=13),C>>>=13;for(D=2*s;D>=26,s+=h/67108864|0,s+=C>>>26,this.words[f]=67108863&C}return 0!==s&&(this.words[f]=s,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var s=function k(S){for(var n=new Array(S.bitLength()),s=0;s>>h}return n}(n);if(0===s.length)return new l(1);for(var f=this,h=0;h=0);var C,s=n%26,f=(n-s)/26,h=67108863>>>26-s<<26-s;if(0!==s){var D=0;for(C=0;C>>26-s}D&&(this.words[C]=D,this.length++)}if(0!==f){for(C=this.length-1;C>=0;C--)this.words[C+f]=this.words[C];for(C=0;C=0),h=s?(s-s%26)/26:0;var C=n%26,D=Math.min((n-C)/26,this.length),O=67108863^67108863>>>C<D)for(this.length-=D,r=0;r=0&&(0!==g||r>=h);r--){var H=0|this.words[r];this.words[r]=g<<26-C|H>>>C,g=H&O}return v&&0!==g&&(v.words[v.length++]=g),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,s,f){return y(0===this.negative),this.iushrn(n,s,f)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){y("number"==typeof n&&n>=0);var s=n%26,f=(n-s)/26;return!(this.length<=f||!(this.words[f]&1<=0);var s=n%26,f=(n-s)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==s&&f++,this.length=Math.min(f,this.length),0!==s&&(this.words[this.length-1]&=67108863^67108863>>>s<=67108864;s++)this.words[s]-=67108864,s===this.length-1?this.words[s+1]=1:this.words[s+1]++;return this.length=Math.max(this.length,s+1),this},l.prototype.isubn=function(n){if(y("number"==typeof n),y(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var s=0;s>26)-(v/67108864|0),this.words[C+f]=67108863&D}for(;C>26,this.words[C+f]=67108863&D;if(0===O)return this.strip();for(y(-1===O),O=0,C=0;C>26,this.words[C]=67108863&D;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,s){var f,h=this.clone(),C=n,D=0|C.words[C.length-1];0!=(f=26-this._countBits(D))&&(C=C.ushln(f),h.iushln(f),D=0|C.words[C.length-1]);var r,v=h.length-C.length;if("mod"!==s){(r=new l(null)).length=v+1,r.words=new Array(r.length);for(var g=0;g=0;R--){var ee=67108864*(0|h.words[C.length+R])+(0|h.words[C.length+R-1]);for(ee=Math.min(ee/D|0,67108863),h._ishlnsubmul(C,ee,R);0!==h.negative;)ee--,h.negative=0,h._ishlnsubmul(C,1,R),h.isZero()||(h.negative^=1);r&&(r.words[R]=ee)}return r&&r.strip(),h.strip(),"div"!==s&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},l.prototype.divmod=function(n,s,f){return y(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(D=this.neg().divmod(n,s),"mod"!==s&&(h=D.div.neg()),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(D=this.divmod(n.neg(),s),"mod"!==s&&(h=D.div.neg()),{div:h,mod:D.mod}):this.negative&n.negative?(D=this.neg().divmod(n.neg(),s),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.isub(n)),{div:D.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===s?{div:this.divn(n.words[0]),mod:null}:"mod"===s?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,s);var h,C,D},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var s=this.divmod(n);if(s.mod.isZero())return s.div;var f=0!==s.div.negative?s.mod.isub(n):s.mod,h=n.ushrn(1),C=n.andln(1),D=f.cmp(h);return D<0||1===C&&0===D?s.div:0!==s.div.negative?s.div.isubn(1):s.div.iaddn(1)},l.prototype.modn=function(n){y(n<=67108863);for(var s=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(s*f+(0|this.words[h]))%n;return f},l.prototype.idivn=function(n){y(n<=67108863);for(var s=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*s;this.words[f]=h/n|0,s=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){y(0===n.negative),y(!n.isZero());var s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=new l(0),O=new l(1),v=0;s.isEven()&&f.isEven();)s.iushrn(1),f.iushrn(1),++v;for(var r=f.clone(),g=s.clone();!s.isZero();){for(var H=0,R=1;!(s.words[0]&R)&&H<26;++H,R<<=1);if(H>0)for(s.iushrn(H);H-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(g)),h.iushrn(1),C.iushrn(1);for(var ee=0,De=1;!(f.words[0]&De)&&ee<26;++ee,De<<=1);if(ee>0)for(f.iushrn(ee);ee-- >0;)(D.isOdd()||O.isOdd())&&(D.iadd(r),O.isub(g)),D.iushrn(1),O.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(D),C.isub(O)):(f.isub(s),D.isub(h),O.isub(C))}return{a:D,b:O,gcd:f.iushln(v)}},l.prototype._invmp=function(n){y(0===n.negative),y(!n.isZero());var H,s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=f.clone();s.cmpn(1)>0&&f.cmpn(1)>0;){for(var O=0,v=1;!(s.words[0]&v)&&O<26;++O,v<<=1);if(O>0)for(s.iushrn(O);O-- >0;)h.isOdd()&&h.iadd(D),h.iushrn(1);for(var r=0,g=1;!(f.words[0]&g)&&r<26;++r,g<<=1);if(r>0)for(f.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(D),C.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(C)):(f.isub(s),C.isub(h))}return(H=0===s.cmpn(1)?h:C).cmpn(0)<0&&H.iadd(n),H},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var s=this.clone(),f=n.clone();s.negative=0,f.negative=0;for(var h=0;s.isEven()&&f.isEven();h++)s.iushrn(1),f.iushrn(1);for(;;){for(;s.isEven();)s.iushrn(1);for(;f.isEven();)f.iushrn(1);var C=s.cmp(f);if(C<0){var D=s;s=f,f=D}else if(0===C||0===f.cmpn(1))break;s.isub(f)}return f.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){y("number"==typeof n);var s=n%26,f=(n-s)/26,h=1<>>26,this.words[D]=O&=67108863}return 0!==C&&(this.words[D]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var f,s=n<0;if(0!==this.negative&&!s)return-1;if(0===this.negative&&s)return 1;if(this.strip(),this.length>1)f=1;else{s&&(n=-n),y(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],C=0|n.words[f];if(h!==C){hC&&(s=1);break}}return s},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new J(n)},l.prototype.toRed=function(n){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return y(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return y(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var X={k256:null,p224:null,p192:null,p25519:null};function ie(S,n){this.name=S,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function se(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function J(S){if("string"==typeof S){var n=l._prime(S);this.m=n.p,this.prime=n}else y(S.gtn(1),"modulus must be greater than 1"),this.m=S,this.prime=null}function he(S){J.call(this,S),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var f,s=n;do{this.split(s,this.tmp),f=(s=(s=this.imulK(s)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?s.isub(this.p):void 0!==s.strip?s.strip():s._strip(),s},ie.prototype.split=function(n,s){n.iushrn(this.n,0,s)},ie.prototype.imulK=function(n){return n.imul(this.k)},A(se,ie),se.prototype.split=function(n,s){for(var f=4194303,h=Math.min(n.length,9),C=0;C>>22,D=O}n.words[C-10]=D>>>=22,n.length-=0===D&&n.length>10?10:9},se.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var s=0,f=0;f>>=26,n.words[f]=C,s=h}return 0!==s&&(n.words[n.length++]=s),n},l._prime=function(n){if(X[n])return X[n];var s;if("k256"===n)s=new se;else if("p224"===n)s=new ue;else if("p192"===n)s=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);s=new Me}return X[n]=s,s},J.prototype._verify1=function(n){y(0===n.negative,"red works only with positives"),y(n.red,"red works only with red numbers")},J.prototype._verify2=function(n,s){y(0==(n.negative|s.negative),"red works only with positives"),y(n.red&&n.red===s.red,"red works only with red numbers")},J.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},J.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},J.prototype.add=function(n,s){this._verify2(n,s);var f=n.add(s);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},J.prototype.iadd=function(n,s){this._verify2(n,s);var f=n.iadd(s);return f.cmp(this.m)>=0&&f.isub(this.m),f},J.prototype.sub=function(n,s){this._verify2(n,s);var f=n.sub(s);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},J.prototype.isub=function(n,s){this._verify2(n,s);var f=n.isub(s);return f.cmpn(0)<0&&f.iadd(this.m),f},J.prototype.shl=function(n,s){return this._verify1(n),this.imod(n.ushln(s))},J.prototype.imul=function(n,s){return this._verify2(n,s),this.imod(n.imul(s))},J.prototype.mul=function(n,s){return this._verify2(n,s),this.imod(n.mul(s))},J.prototype.isqr=function(n){return this.imul(n,n.clone())},J.prototype.sqr=function(n){return this.mul(n,n)},J.prototype.sqrt=function(n){if(n.isZero())return n.clone();var s=this.m.andln(3);if(y(s%2==1),3===s){var f=this.m.add(new l(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);y(!h.isZero());var D=new l(1).toRed(this),O=D.redNeg(),v=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,v).cmp(O);)r.redIAdd(O);for(var g=this.pow(r,h),H=this.pow(n,h.addn(1).iushrn(1)),R=this.pow(n,h),ee=C;0!==R.cmp(D);){for(var De=R,ct=0;0!==De.cmp(D);ct++)De=De.redSqr();y(ct=0;C--){for(var g=s.words[C],H=r-1;H>=0;H--){var R=g>>H&1;D!==h[0]&&(D=this.sqr(D)),0!==R||0!==O?(O<<=1,O|=R,(4==++v||0===C&&0===H)&&(D=this.mul(D,h[O]),v=0,O=0)):v=0}r=26}return D},J.prototype.convertTo=function(n){var s=n.umod(this.m);return s===n?s.clone():s},J.prototype.convertFrom=function(n){var s=n.clone();return s.red=null,s},l.mont=function(n){return new he(n)},A(he,J),he.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},he.prototype.convertFrom=function(n){var s=this.imod(n.mul(this.rinv));return s.red=null,s},he.prototype.imul=function(n,s){if(n.isZero()||s.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.mul=function(n,s){if(n.isZero()||s.isZero())return new l(0)._forceRed(this);var f=n.mul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},7206:Fe=>{"use strict";var q={single_source_shortest_paths:function(p,e,t){var y={},A={};A[e]=0;var w,m,P,d,E,I,l=q.PriorityQueue.make();for(l.push(e,0);!l.empty();)for(P in d=(w=l.pop()).cost,E=p[m=w.value]||{})E.hasOwnProperty(P)&&(I=d+E[P],(typeof A[P]>"u"||A[P]>I)&&(A[P]=I,l.push(P,I),y[P]=m));if(typeof t<"u"&&typeof A[t]>"u"){var B=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(B)}return y},extract_shortest_path_from_predecessor_list:function(p,e){for(var t=[],y=e;y;)t.push(y),y=p[y];return t.reverse(),t},find_path:function(p,e,t){var y=q.single_source_shortest_paths(p,e,t);return q.extract_shortest_path_from_predecessor_list(y,t)},PriorityQueue:{make:function(p){var y,e=q.PriorityQueue,t={};for(y in p=p||{},e)e.hasOwnProperty(y)&&(t[y]=e[y]);return t.queue=[],t.sorter=p.sorter||e.default_sorter,t},default_sorter:function(p,e){return p.cost-e.cost},push:function(p,e){this.queue.push({value:p,cost:e}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Fe.exports=q},8651:(Fe,q,p)=>{"use strict";var e=q;e.version=p(8597).i8,e.utils=p(6767),e.rand=p(82),e.curve=p(9132),e.curves=p(8049),e.ec=p(6443),e.eddsa=p(9577)},1324:(Fe,q,p)=>{"use strict";var e=p(1387),t=p(6767),y=t.getNAF,A=t.getJSF,l=t.assert;function w(P,d){this.type=P,this.p=new e(d.p,16),this.red=d.prime?e.red(d.prime):e.mont(this.p),this.zero=new e(0).toRed(this.red),this.one=new e(1).toRed(this.red),this.two=new e(2).toRed(this.red),this.n=d.n&&new e(d.n,16),this.g=d.g&&this.pointFromJSON(d.g,d.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 E=this.n&&this.p.div(this.n);!E||E.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function m(P,d){this.curve=P,this.type=d,this.precomputed=null}Fe.exports=w,w.prototype.point=function(){throw new Error("Not implemented")},w.prototype.validate=function(){throw new Error("Not implemented")},w.prototype._fixedNafMul=function(d,E){l(d.precomputed);var M=d._getDoubles(),I=y(E,1,this._bitLength),k=(1<=B;j--)W=(W<<1)+I[j];z.push(W)}for(var K=this.jpoint(null,null,null),X=this.jpoint(null,null,null),ie=k;ie>0;ie--){for(B=0;B=0;W--){for(var j=0;W>=0&&0===z[W];W--)j++;if(W>=0&&j++,B=B.dblp(j),W<0)break;var K=z[W];l(0!==K),B="affine"===d.type?B.mixedAdd(K>0?k[K-1>>1]:k[-K-1>>1].neg()):B.add(K>0?k[K-1>>1]:k[-K-1>>1].neg())}return"affine"===d.type?B.toP():B},w.prototype._wnafMulAdd=function(d,E,M,I,k){var K,X,ie,z=this._wnafT1,B=this._wnafT2,W=this._wnafT3,j=0;for(K=0;K=1;K-=2){var ue=K-1,ae=K;if(1===z[ue]&&1===z[ae]){var Me=[E[ue],null,null,E[ae]];0===E[ue].y.cmp(E[ae].y)?(Me[1]=E[ue].add(E[ae]),Me[2]=E[ue].toJ().mixedAdd(E[ae].neg())):0===E[ue].y.cmp(E[ae].y.redNeg())?(Me[1]=E[ue].toJ().mixedAdd(E[ae]),Me[2]=E[ue].add(E[ae].neg())):(Me[1]=E[ue].toJ().mixedAdd(E[ae]),Me[2]=E[ue].toJ().mixedAdd(E[ae].neg()));var J=[-3,-1,-5,-7,0,7,5,1,3],he=A(M[ue],M[ae]);for(j=Math.max(he[0].length,j),W[ue]=new Array(j),W[ae]=new Array(j),X=0;X=0;K--){for(var h=0;K>=0;){var C=!0;for(X=0;X=0&&h++,s=s.dblp(h),K<0)break;for(X=0;X0?ie=B[X][D-1>>1]:D<0&&(ie=B[X][-D-1>>1].neg()),s="affine"===ie.type?s.mixedAdd(ie):s.add(ie))}}for(K=0;K=Math.ceil((d.bitLength()+1)/E.step)},m.prototype._getDoubles=function(d,E){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var M=[this],I=this,k=0;k{"use strict";var e=p(6767),t=p(1387),y=p(6698),A=p(1324),l=e.assert;function w(P){this.twisted=1!=(0|P.a),this.mOneA=this.twisted&&-1==(0|P.a),this.extended=this.mOneA,A.call(this,"edwards",P),this.a=new t(P.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new t(P.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new t(P.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),l(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|P.c)}function m(P,d,E,M,I){A.BasePoint.call(this,P,"projective"),null===d&&null===E&&null===M?(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 t(d,16),this.y=new t(E,16),this.z=M?new t(M,16):this.curve.one,this.t=I&&new t(I,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()))))}y(w,A),Fe.exports=w,w.prototype._mulA=function(d){return this.mOneA?d.redNeg():this.a.redMul(d)},w.prototype._mulC=function(d){return this.oneC?d:this.c.redMul(d)},w.prototype.jpoint=function(d,E,M,I){return this.point(d,E,M,I)},w.prototype.pointFromX=function(d,E){(d=new t(d,16)).red||(d=d.toRed(this.red));var M=d.redSqr(),I=this.c2.redSub(this.a.redMul(M)),k=this.one.redSub(this.c2.redMul(this.d).redMul(M)),z=I.redMul(k.redInvm()),B=z.redSqrt();if(0!==B.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");var W=B.fromRed().isOdd();return(E&&!W||!E&&W)&&(B=B.redNeg()),this.point(d,B)},w.prototype.pointFromY=function(d,E){(d=new t(d,16)).red||(d=d.toRed(this.red));var M=d.redSqr(),I=M.redSub(this.c2),k=M.redMul(this.d).redMul(this.c2).redSub(this.a),z=I.redMul(k.redInvm());if(0===z.cmp(this.zero)){if(E)throw new Error("invalid point");return this.point(this.zero,d)}var B=z.redSqrt();if(0!==B.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");return B.fromRed().isOdd()!==E&&(B=B.redNeg()),this.point(B,d)},w.prototype.validate=function(d){if(d.isInfinity())return!0;d.normalize();var E=d.x.redSqr(),M=d.y.redSqr(),I=E.redMul(this.a).redAdd(M),k=this.c2.redMul(this.one.redAdd(this.d.redMul(E).redMul(M)));return 0===I.cmp(k)},y(m,A.BasePoint),w.prototype.pointFromJSON=function(d){return m.fromJSON(this,d)},w.prototype.point=function(d,E,M,I){return new m(this,d,E,M,I)},m.fromJSON=function(d,E){return new m(d,E[0],E[1],E[2])},m.prototype.inspect=function(){return this.isInfinity()?"":""},m.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},m.prototype._extDbl=function(){var d=this.x.redSqr(),E=this.y.redSqr(),M=this.z.redSqr();M=M.redIAdd(M);var I=this.curve._mulA(d),k=this.x.redAdd(this.y).redSqr().redISub(d).redISub(E),z=I.redAdd(E),B=z.redSub(M),W=I.redSub(E),j=k.redMul(B),K=z.redMul(W),X=k.redMul(W),ie=B.redMul(z);return this.curve.point(j,K,ie,X)},m.prototype._projDbl=function(){var I,k,z,B,W,j,d=this.x.redAdd(this.y).redSqr(),E=this.x.redSqr(),M=this.y.redSqr();if(this.curve.twisted){var K=(B=this.curve._mulA(E)).redAdd(M);this.zOne?(I=d.redSub(E).redSub(M).redMul(K.redSub(this.curve.two)),k=K.redMul(B.redSub(M)),z=K.redSqr().redSub(K).redSub(K)):(W=this.z.redSqr(),j=K.redSub(W).redISub(W),I=d.redSub(E).redISub(M).redMul(j),k=K.redMul(B.redSub(M)),z=K.redMul(j))}else B=E.redAdd(M),W=this.curve._mulC(this.z).redSqr(),j=B.redSub(W).redSub(W),I=this.curve._mulC(d.redISub(B)).redMul(j),k=this.curve._mulC(B).redMul(E.redISub(M)),z=B.redMul(j);return this.curve.point(I,k,z)},m.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},m.prototype._extAdd=function(d){var E=this.y.redSub(this.x).redMul(d.y.redSub(d.x)),M=this.y.redAdd(this.x).redMul(d.y.redAdd(d.x)),I=this.t.redMul(this.curve.dd).redMul(d.t),k=this.z.redMul(d.z.redAdd(d.z)),z=M.redSub(E),B=k.redSub(I),W=k.redAdd(I),j=M.redAdd(E),K=z.redMul(B),X=W.redMul(j),ie=z.redMul(j),se=B.redMul(W);return this.curve.point(K,X,se,ie)},m.prototype._projAdd=function(d){var X,ie,E=this.z.redMul(d.z),M=E.redSqr(),I=this.x.redMul(d.x),k=this.y.redMul(d.y),z=this.curve.d.redMul(I).redMul(k),B=M.redSub(z),W=M.redAdd(z),j=this.x.redAdd(this.y).redMul(d.x.redAdd(d.y)).redISub(I).redISub(k),K=E.redMul(B).redMul(j);return this.curve.twisted?(X=E.redMul(W).redMul(k.redSub(this.curve._mulA(I))),ie=B.redMul(W)):(X=E.redMul(W).redMul(k.redSub(I)),ie=this.curve._mulC(B).redMul(W)),this.curve.point(K,X,ie)},m.prototype.add=function(d){return this.isInfinity()?d:d.isInfinity()?this:this.curve.extended?this._extAdd(d):this._projAdd(d)},m.prototype.mul=function(d){return this._hasDoubles(d)?this.curve._fixedNafMul(this,d):this.curve._wnafMul(this,d)},m.prototype.mulAdd=function(d,E,M){return this.curve._wnafMulAdd(1,[this,E],[d,M],2,!1)},m.prototype.jmulAdd=function(d,E,M){return this.curve._wnafMulAdd(1,[this,E],[d,M],2,!0)},m.prototype.normalize=function(){if(this.zOne)return this;var d=this.z.redInvm();return this.x=this.x.redMul(d),this.y=this.y.redMul(d),this.t&&(this.t=this.t.redMul(d)),this.z=this.curve.one,this.zOne=!0,this},m.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},m.prototype.getX=function(){return this.normalize(),this.x.fromRed()},m.prototype.getY=function(){return this.normalize(),this.y.fromRed()},m.prototype.eq=function(d){return this===d||0===this.getX().cmp(d.getX())&&0===this.getY().cmp(d.getY())},m.prototype.eqXToP=function(d){var E=d.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(E))return!0;for(var M=d.clone(),I=this.curve.redN.redMul(this.z);;){if(M.iadd(this.curve.n),M.cmp(this.curve.p)>=0)return!1;if(E.redIAdd(I),0===this.x.cmp(E))return!0}},m.prototype.toP=m.prototype.normalize,m.prototype.mixedAdd=m.prototype.add},9132:(Fe,q,p)=>{"use strict";var e=q;e.base=p(1324),e.short=p(9996),e.mont=p(9253),e.edwards=p(7665)},9253:(Fe,q,p)=>{"use strict";var e=p(1387),t=p(6698),y=p(1324),A=p(6767);function l(m){y.call(this,"mont",m),this.a=new e(m.a,16).toRed(this.red),this.b=new e(m.b,16).toRed(this.red),this.i4=new e(4).toRed(this.red).redInvm(),this.two=new e(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function w(m,P,d){y.BasePoint.call(this,m,"projective"),null===P&&null===d?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new e(P,16),this.z=new e(d,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}t(l,y),Fe.exports=l,l.prototype.validate=function(P){var d=P.normalize().x,E=d.redSqr(),M=E.redMul(d).redAdd(E.redMul(this.a)).redAdd(d);return 0===M.redSqrt().redSqr().cmp(M)},t(w,y.BasePoint),l.prototype.decodePoint=function(P,d){return this.point(A.toArray(P,d),1)},l.prototype.point=function(P,d){return new w(this,P,d)},l.prototype.pointFromJSON=function(P){return w.fromJSON(this,P)},w.prototype.precompute=function(){},w.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},w.fromJSON=function(P,d){return new w(P,d[0],d[1]||P.one)},w.prototype.inspect=function(){return this.isInfinity()?"":""},w.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},w.prototype.dbl=function(){var d=this.x.redAdd(this.z).redSqr(),M=this.x.redSub(this.z).redSqr(),I=d.redSub(M),k=d.redMul(M),z=I.redMul(M.redAdd(this.curve.a24.redMul(I)));return this.curve.point(k,z)},w.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},w.prototype.diffAdd=function(P,d){var E=this.x.redAdd(this.z),M=this.x.redSub(this.z),I=P.x.redAdd(P.z),z=P.x.redSub(P.z).redMul(E),B=I.redMul(M),W=d.z.redMul(z.redAdd(B).redSqr()),j=d.x.redMul(z.redISub(B).redSqr());return this.curve.point(W,j)},w.prototype.mul=function(P){for(var d=P.clone(),E=this,M=this.curve.point(null,null),k=[];0!==d.cmpn(0);d.iushrn(1))k.push(d.andln(1));for(var z=k.length-1;z>=0;z--)0===k[z]?(E=E.diffAdd(M,this),M=M.dbl()):(M=E.diffAdd(M,this),E=E.dbl());return M},w.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},w.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},w.prototype.eq=function(P){return 0===this.getX().cmp(P.getX())},w.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},w.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},9996:(Fe,q,p)=>{"use strict";var e=p(6767),t=p(1387),y=p(6698),A=p(1324),l=e.assert;function w(d){A.call(this,"short",d),this.a=new t(d.a,16).toRed(this.red),this.b=new t(d.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(d),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function m(d,E,M,I){A.BasePoint.call(this,d,"affine"),null===E&&null===M?(this.x=null,this.y=null,this.inf=!0):(this.x=new t(E,16),this.y=new t(M,16),I&&(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 P(d,E,M,I){A.BasePoint.call(this,d,"jacobian"),null===E&&null===M&&null===I?(this.x=this.curve.one,this.y=this.curve.one,this.z=new t(0)):(this.x=new t(E,16),this.y=new t(M,16),this.z=new t(I,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}y(w,A),Fe.exports=w,w.prototype._getEndomorphism=function(E){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var M,I;if(E.beta)M=new t(E.beta,16).toRed(this.red);else{var k=this._getEndoRoots(this.p);M=(M=k[0].cmp(k[1])<0?k[0]:k[1]).toRed(this.red)}if(E.lambda)I=new t(E.lambda,16);else{var z=this._getEndoRoots(this.n);0===this.g.mul(z[0]).x.cmp(this.g.x.redMul(M))?I=z[0]:l(0===this.g.mul(I=z[1]).x.cmp(this.g.x.redMul(M)))}return{beta:M,lambda:I,basis:E.basis?E.basis.map(function(W){return{a:new t(W.a,16),b:new t(W.b,16)}}):this._getEndoBasis(I)}}},w.prototype._getEndoRoots=function(E){var M=E===this.p?this.red:t.mont(E),I=new t(2).toRed(M).redInvm(),k=I.redNeg(),z=new t(3).toRed(M).redNeg().redSqrt().redMul(I);return[k.redAdd(z).fromRed(),k.redSub(z).fromRed()]},w.prototype._getEndoBasis=function(E){for(var K,X,ie,se,ue,ae,Me,he,S,M=this.n.ushrn(Math.floor(this.n.bitLength()/2)),I=E,k=this.n.clone(),z=new t(1),B=new t(0),W=new t(0),j=new t(1),J=0;0!==I.cmpn(0);){var n=k.div(I);he=k.sub(n.mul(I)),S=W.sub(n.mul(z));var s=j.sub(n.mul(B));if(!ie&&he.cmp(M)<0)K=Me.neg(),X=z,ie=he.neg(),se=S;else if(ie&&2==++J)break;Me=he,k=I,I=he,W=z,z=S,j=B,B=s}ue=he.neg(),ae=S;var f=ie.sqr().add(se.sqr());return ue.sqr().add(ae.sqr()).cmp(f)>=0&&(ue=K,ae=X),ie.negative&&(ie=ie.neg(),se=se.neg()),ue.negative&&(ue=ue.neg(),ae=ae.neg()),[{a:ie,b:se},{a:ue,b:ae}]},w.prototype._endoSplit=function(E){var M=this.endo.basis,I=M[0],k=M[1],z=k.b.mul(E).divRound(this.n),B=I.b.neg().mul(E).divRound(this.n),W=z.mul(I.a),j=B.mul(k.a),K=z.mul(I.b),X=B.mul(k.b);return{k1:E.sub(W).sub(j),k2:K.add(X).neg()}},w.prototype.pointFromX=function(E,M){(E=new t(E,16)).red||(E=E.toRed(this.red));var I=E.redSqr().redMul(E).redIAdd(E.redMul(this.a)).redIAdd(this.b),k=I.redSqrt();if(0!==k.redSqr().redSub(I).cmp(this.zero))throw new Error("invalid point");var z=k.fromRed().isOdd();return(M&&!z||!M&&z)&&(k=k.redNeg()),this.point(E,k)},w.prototype.validate=function(E){if(E.inf)return!0;var M=E.x,I=E.y,k=this.a.redMul(M),z=M.redSqr().redMul(M).redIAdd(k).redIAdd(this.b);return 0===I.redSqr().redISub(z).cmpn(0)},w.prototype._endoWnafMulAdd=function(E,M,I){for(var k=this._endoWnafT1,z=this._endoWnafT2,B=0;B":""},m.prototype.isInfinity=function(){return this.inf},m.prototype.add=function(E){if(this.inf)return E;if(E.inf)return this;if(this.eq(E))return this.dbl();if(this.neg().eq(E))return this.curve.point(null,null);if(0===this.x.cmp(E.x))return this.curve.point(null,null);var M=this.y.redSub(E.y);0!==M.cmpn(0)&&(M=M.redMul(this.x.redSub(E.x).redInvm()));var I=M.redSqr().redISub(this.x).redISub(E.x),k=M.redMul(this.x.redSub(I)).redISub(this.y);return this.curve.point(I,k)},m.prototype.dbl=function(){if(this.inf)return this;var E=this.y.redAdd(this.y);if(0===E.cmpn(0))return this.curve.point(null,null);var M=this.curve.a,I=this.x.redSqr(),k=E.redInvm(),z=I.redAdd(I).redIAdd(I).redIAdd(M).redMul(k),B=z.redSqr().redISub(this.x.redAdd(this.x)),W=z.redMul(this.x.redSub(B)).redISub(this.y);return this.curve.point(B,W)},m.prototype.getX=function(){return this.x.fromRed()},m.prototype.getY=function(){return this.y.fromRed()},m.prototype.mul=function(E){return E=new t(E,16),this.isInfinity()?this:this._hasDoubles(E)?this.curve._fixedNafMul(this,E):this.curve.endo?this.curve._endoWnafMulAdd([this],[E]):this.curve._wnafMul(this,E)},m.prototype.mulAdd=function(E,M,I){var k=[this,M],z=[E,I];return this.curve.endo?this.curve._endoWnafMulAdd(k,z):this.curve._wnafMulAdd(1,k,z,2)},m.prototype.jmulAdd=function(E,M,I){var k=[this,M],z=[E,I];return this.curve.endo?this.curve._endoWnafMulAdd(k,z,!0):this.curve._wnafMulAdd(1,k,z,2,!0)},m.prototype.eq=function(E){return this===E||this.inf===E.inf&&(this.inf||0===this.x.cmp(E.x)&&0===this.y.cmp(E.y))},m.prototype.neg=function(E){if(this.inf)return this;var M=this.curve.point(this.x,this.y.redNeg());if(E&&this.precomputed){var I=this.precomputed,k=function(z){return z.neg()};M.precomputed={naf:I.naf&&{wnd:I.naf.wnd,points:I.naf.points.map(k)},doubles:I.doubles&&{step:I.doubles.step,points:I.doubles.points.map(k)}}}return M},m.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},y(P,A.BasePoint),w.prototype.jpoint=function(E,M,I){return new P(this,E,M,I)},P.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var E=this.z.redInvm(),M=E.redSqr(),I=this.x.redMul(M),k=this.y.redMul(M).redMul(E);return this.curve.point(I,k)},P.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},P.prototype.add=function(E){if(this.isInfinity())return E;if(E.isInfinity())return this;var M=E.z.redSqr(),I=this.z.redSqr(),k=this.x.redMul(M),z=E.x.redMul(I),B=this.y.redMul(M.redMul(E.z)),W=E.y.redMul(I.redMul(this.z)),j=k.redSub(z),K=B.redSub(W);if(0===j.cmpn(0))return 0!==K.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var X=j.redSqr(),ie=X.redMul(j),se=k.redMul(X),ue=K.redSqr().redIAdd(ie).redISub(se).redISub(se),ae=K.redMul(se.redISub(ue)).redISub(B.redMul(ie)),Me=this.z.redMul(E.z).redMul(j);return this.curve.jpoint(ue,ae,Me)},P.prototype.mixedAdd=function(E){if(this.isInfinity())return E.toJ();if(E.isInfinity())return this;var M=this.z.redSqr(),I=this.x,k=E.x.redMul(M),z=this.y,B=E.y.redMul(M).redMul(this.z),W=I.redSub(k),j=z.redSub(B);if(0===W.cmpn(0))return 0!==j.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var K=W.redSqr(),X=K.redMul(W),ie=I.redMul(K),se=j.redSqr().redIAdd(X).redISub(ie).redISub(ie),ue=j.redMul(ie.redISub(se)).redISub(z.redMul(X)),ae=this.z.redMul(W);return this.curve.jpoint(se,ue,ae)},P.prototype.dblp=function(E){if(0===E)return this;if(this.isInfinity())return this;if(!E)return this.dbl();var M;if(this.curve.zeroA||this.curve.threeA){var I=this;for(M=0;M=0)return!1;if(I.redIAdd(z),0===this.x.cmp(I))return!0}},P.prototype.inspect=function(){return this.isInfinity()?"":""},P.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},8049:(Fe,q,p)=>{"use strict";var P,e=q,t=p(1076),y=p(9132),l=p(6767).assert;function w(d){this.curve="short"===d.type?new y.short(d):"edwards"===d.type?new y.edwards(d):new y.mont(d),this.g=this.curve.g,this.n=this.curve.n,this.hash=d.hash,l(this.g.validate(),"Invalid curve"),l(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function m(d,E){Object.defineProperty(e,d,{configurable:!0,enumerable:!0,get:function(){var M=new w(E);return Object.defineProperty(e,d,{configurable:!0,enumerable:!0,value:M}),M}})}e.PresetCurve=w,m("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:t.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),m("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:t.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),m("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:t.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),m("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:t.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"]}),m("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:t.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"]}),m("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:t.sha256,gRed:!1,g:["9"]}),m("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:t.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{P=p(7274)}catch{P=void 0}m("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:t.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",P]})},6443:(Fe,q,p)=>{"use strict";var e=p(1387),t=p(2447),y=p(6767),A=p(8049),l=p(82),w=y.assert,m=p(1373),P=p(7746);function d(E){if(!(this instanceof d))return new d(E);"string"==typeof E&&(w(Object.prototype.hasOwnProperty.call(A,E),"Unknown curve "+E),E=A[E]),E instanceof A.PresetCurve&&(E={curve:E}),this.curve=E.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=E.curve.g,this.g.precompute(E.curve.n.bitLength()+1),this.hash=E.hash||E.curve.hash}Fe.exports=d,d.prototype.keyPair=function(M){return new m(this,M)},d.prototype.keyFromPrivate=function(M,I){return m.fromPrivate(this,M,I)},d.prototype.keyFromPublic=function(M,I){return m.fromPublic(this,M,I)},d.prototype.genKeyPair=function(M){M||(M={});for(var I=new t({hash:this.hash,pers:M.pers,persEnc:M.persEnc||"utf8",entropy:M.entropy||l(this.hash.hmacStrength),entropyEnc:M.entropy&&M.entropyEnc||"utf8",nonce:this.n.toArray()}),k=this.n.byteLength(),z=this.n.sub(new e(2));;){var B=new e(I.generate(k));if(!(B.cmp(z)>0))return B.iaddn(1),this.keyFromPrivate(B)}},d.prototype._truncateToN=function(M,I){var k=8*M.byteLength()-this.n.bitLength();return k>0&&(M=M.ushrn(k)),!I&&M.cmp(this.n)>=0?M.sub(this.n):M},d.prototype.sign=function(M,I,k,z){"object"==typeof k&&(z=k,k=null),z||(z={}),I=this.keyFromPrivate(I,k),M=this._truncateToN(new e(M,16));for(var B=this.n.byteLength(),W=I.getPrivate().toArray("be",B),j=M.toArray("be",B),K=new t({hash:this.hash,entropy:W,nonce:j,pers:z.pers,persEnc:z.persEnc||"utf8"}),X=this.n.sub(new e(1)),ie=0;;ie++){var se=z.k?z.k(ie):new e(K.generate(this.n.byteLength()));if(!((se=this._truncateToN(se,!0)).cmpn(1)<=0||se.cmp(X)>=0)){var ue=this.g.mul(se);if(!ue.isInfinity()){var ae=ue.getX(),Me=ae.umod(this.n);if(0!==Me.cmpn(0)){var J=se.invm(this.n).mul(Me.mul(I.getPrivate()).iadd(M));if(0!==(J=J.umod(this.n)).cmpn(0)){var he=(ue.getY().isOdd()?1:0)|(0!==ae.cmp(Me)?2:0);return z.canonical&&J.cmp(this.nh)>0&&(J=this.n.sub(J),he^=1),new P({r:Me,s:J,recoveryParam:he})}}}}}},d.prototype.verify=function(M,I,k,z){M=this._truncateToN(new e(M,16)),k=this.keyFromPublic(k,z);var B=(I=new P(I,"hex")).r,W=I.s;if(B.cmpn(1)<0||B.cmp(this.n)>=0||W.cmpn(1)<0||W.cmp(this.n)>=0)return!1;var ie,j=W.invm(this.n),K=j.mul(M).umod(this.n),X=j.mul(B).umod(this.n);return this.curve._maxwellTrick?!(ie=this.g.jmulAdd(K,k.getPublic(),X)).isInfinity()&&ie.eqXToP(B):!(ie=this.g.mulAdd(K,k.getPublic(),X)).isInfinity()&&0===ie.getX().umod(this.n).cmp(B)},d.prototype.recoverPubKey=function(E,M,I,k){w((3&I)===I,"The recovery param is more than two bits"),M=new P(M,k);var z=this.n,B=new e(E),W=M.r,j=M.s,K=1&I,X=I>>1;if(W.cmp(this.curve.p.umod(this.curve.n))>=0&&X)throw new Error("Unable to find sencond key candinate");W=this.curve.pointFromX(X?W.add(this.curve.n):W,K);var ie=M.r.invm(z),se=z.sub(B).mul(ie).umod(z),ue=j.mul(ie).umod(z);return this.g.mulAdd(se,W,ue)},d.prototype.getKeyRecoveryParam=function(E,M,I,k){if(null!==(M=new P(M,k)).recoveryParam)return M.recoveryParam;for(var z=0;z<4;z++){var B;try{B=this.recoverPubKey(E,M,z)}catch{continue}if(B.eq(I))return z}throw new Error("Unable to find valid recovery factor")}},1373:(Fe,q,p)=>{"use strict";var e=p(1387),y=p(6767).assert;function A(l,w){this.ec=l,this.priv=null,this.pub=null,w.priv&&this._importPrivate(w.priv,w.privEnc),w.pub&&this._importPublic(w.pub,w.pubEnc)}Fe.exports=A,A.fromPublic=function(w,m,P){return m instanceof A?m:new A(w,{pub:m,pubEnc:P})},A.fromPrivate=function(w,m,P){return m instanceof A?m:new A(w,{priv:m,privEnc:P})},A.prototype.validate=function(){var w=this.getPublic();return w.isInfinity()?{result:!1,reason:"Invalid public key"}:w.validate()?w.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"}},A.prototype.getPublic=function(w,m){return"string"==typeof w&&(m=w,w=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),m?this.pub.encode(m,w):this.pub},A.prototype.getPrivate=function(w){return"hex"===w?this.priv.toString(16,2):this.priv},A.prototype._importPrivate=function(w,m){this.priv=new e(w,m||16),this.priv=this.priv.umod(this.ec.curve.n)},A.prototype._importPublic=function(w,m){if(w.x||w.y)return"mont"===this.ec.curve.type?y(w.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&y(w.x&&w.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(w.x,w.y));this.pub=this.ec.curve.decodePoint(w,m)},A.prototype.derive=function(w){return w.validate()||y(w.validate(),"public point not validated"),w.mul(this.priv).getX()},A.prototype.sign=function(w,m,P){return this.ec.sign(w,this,m,P)},A.prototype.verify=function(w,m){return this.ec.verify(w,m,this)},A.prototype.inspect=function(){return""}},7746:(Fe,q,p)=>{"use strict";var e=p(1387),t=p(6767),y=t.assert;function A(d,E){if(d instanceof A)return d;this._importDER(d,E)||(y(d.r&&d.s,"Signature without r or s"),this.r=new e(d.r,16),this.s=new e(d.s,16),this.recoveryParam=void 0===d.recoveryParam?null:d.recoveryParam)}function l(){this.place=0}function w(d,E){var M=d[E.place++];if(!(128&M))return M;var I=15&M;if(0===I||I>4)return!1;for(var k=0,z=0,B=E.place;z>>=0;return!(k<=127)&&(E.place=B,k)}function m(d){for(var E=0,M=d.length-1;!d[E]&&!(128&d[E+1])&&E>>3);for(d.push(128|M);--M;)d.push(E>>>(M<<3)&255);d.push(E)}}Fe.exports=A,A.prototype._importDER=function(E,M){E=t.toArray(E,M);var I=new l;if(48!==E[I.place++])return!1;var k=w(E,I);if(!1===k||k+I.place!==E.length||2!==E[I.place++])return!1;var z=w(E,I);if(!1===z)return!1;var B=E.slice(I.place,z+I.place);if(I.place+=z,2!==E[I.place++])return!1;var W=w(E,I);if(!1===W||E.length!==W+I.place)return!1;var j=E.slice(I.place,W+I.place);if(0===B[0]){if(!(128&B[1]))return!1;B=B.slice(1)}if(0===j[0]){if(!(128&j[1]))return!1;j=j.slice(1)}return this.r=new e(B),this.s=new e(j),this.recoveryParam=null,!0},A.prototype.toDER=function(E){var M=this.r.toArray(),I=this.s.toArray();for(128&M[0]&&(M=[0].concat(M)),128&I[0]&&(I=[0].concat(I)),M=m(M),I=m(I);!(I[0]||128&I[1]);)I=I.slice(1);var k=[2];P(k,M.length),(k=k.concat(M)).push(2),P(k,I.length);var z=k.concat(I),B=[48];return P(B,z.length),B=B.concat(z),t.encode(B,E)}},9577:(Fe,q,p)=>{"use strict";var e=p(1076),t=p(8049),y=p(6767),A=y.assert,l=y.parseBytes,w=p(7012),m=p(8062);function P(d){if(A("ed25519"===d,"only tested with ed25519 so far"),!(this instanceof P))return new P(d);this.curve=d=t[d].curve,this.g=d.g,this.g.precompute(d.n.bitLength()+1),this.pointClass=d.point().constructor,this.encodingLength=Math.ceil(d.n.bitLength()/8),this.hash=e.sha512}Fe.exports=P,P.prototype.sign=function(E,M){E=l(E);var I=this.keyFromSecret(M),k=this.hashInt(I.messagePrefix(),E),z=this.g.mul(k),B=this.encodePoint(z),W=this.hashInt(B,I.pubBytes(),E).mul(I.priv()),j=k.add(W).umod(this.curve.n);return this.makeSignature({R:z,S:j,Rencoded:B})},P.prototype.verify=function(E,M,I){E=l(E),M=this.makeSignature(M);var k=this.keyFromPublic(I),z=this.hashInt(M.Rencoded(),k.pubBytes(),E),B=this.g.mul(M.S());return M.R().add(k.pub().mul(z)).eq(B)},P.prototype.hashInt=function(){for(var E=this.hash(),M=0;M{"use strict";var e=p(6767),t=e.assert,y=e.parseBytes,A=e.cachedProperty;function l(w,m){this.eddsa=w,this._secret=y(m.secret),w.isPoint(m.pub)?this._pub=m.pub:this._pubBytes=y(m.pub)}l.fromPublic=function(m,P){return P instanceof l?P:new l(m,{pub:P})},l.fromSecret=function(m,P){return P instanceof l?P:new l(m,{secret:P})},l.prototype.secret=function(){return this._secret},A(l,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),A(l,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),A(l,"privBytes",function(){var m=this.eddsa,P=this.hash(),d=m.encodingLength-1,E=P.slice(0,m.encodingLength);return E[0]&=248,E[d]&=127,E[d]|=64,E}),A(l,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),A(l,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),A(l,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),l.prototype.sign=function(m){return t(this._secret,"KeyPair can only verify"),this.eddsa.sign(m,this)},l.prototype.verify=function(m,P){return this.eddsa.verify(m,P,this)},l.prototype.getSecret=function(m){return t(this._secret,"KeyPair is public only"),e.encode(this.secret(),m)},l.prototype.getPublic=function(m){return e.encode(this.pubBytes(),m)},Fe.exports=l},8062:(Fe,q,p)=>{"use strict";var e=p(1387),t=p(6767),y=t.assert,A=t.cachedProperty,l=t.parseBytes;function w(m,P){this.eddsa=m,"object"!=typeof P&&(P=l(P)),Array.isArray(P)&&(P={R:P.slice(0,m.encodingLength),S:P.slice(m.encodingLength)}),y(P.R&&P.S,"Signature without R or S"),m.isPoint(P.R)&&(this._R=P.R),P.S instanceof e&&(this._S=P.S),this._Rencoded=Array.isArray(P.R)?P.R:P.Rencoded,this._Sencoded=Array.isArray(P.S)?P.S:P.Sencoded}A(w,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),A(w,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),A(w,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),A(w,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),w.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},w.prototype.toHex=function(){return t.encode(this.toBytes(),"hex").toUpperCase()},Fe.exports=w},7274:Fe=>{Fe.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"]]}}},6767:(Fe,q,p)=>{"use strict";var e=q,t=p(1387),y=p(7798),A=p(8247);e.assert=y,e.toArray=A.toArray,e.zero2=A.zero2,e.toHex=A.toHex,e.encode=A.encode,e.getNAF=function l(E,M,I){var k=new Array(Math.max(E.bitLength(),I)+1);k.fill(0);for(var z=1<(z>>1)-1?(z>>1)-K:K):j=0,k[W]=j,B.iushrn(1)}return k},e.getJSF=function w(E,M){var I=[[],[]];E=E.clone(),M=M.clone();for(var B,k=0,z=0;E.cmpn(-k)>0||M.cmpn(-z)>0;){var K,X,W=E.andln(3)+k&3,j=M.andln(3)+z&3;3===W&&(W=-1),3===j&&(j=-1),K=1&W?3!=(B=E.andln(7)+k&7)&&5!==B||2!==j?W:-W:0,I[0].push(K),X=1&j?3!=(B=M.andln(7)+z&7)&&5!==B||2!==W?j:-j:0,I[1].push(X),2*k===K+1&&(k=1-k),2*z===X+1&&(z=1-z),E.iushrn(1),M.iushrn(1)}return I},e.cachedProperty=function m(E,M,I){var k="_"+M;E.prototype[M]=function(){return void 0!==this[k]?this[k]:this[k]=I.call(this)}},e.parseBytes=function P(E){return"string"==typeof E?e.toArray(E,"hex"):E},e.intFromLE=function d(E){return new t(E,"hex","le")}},1387:function(Fe,q,p){!function(e,t){"use strict";function y(S,n){if(!S)throw new Error(n||"Assertion failed")}function A(S,n){S.super_=n;var s=function(){};s.prototype=n.prototype,S.prototype=new s,S.prototype.constructor=S}function l(S,n,s){if(l.isBN(S))return S;this.negative=0,this.words=null,this.length=0,this.red=null,null!==S&&(("le"===n||"be"===n)&&(s=n,n=10),this._init(S||0,n||10,s||"be"))}var w;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{w=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:p(5568).Buffer}catch{}function m(S,n){var s=S.charCodeAt(n);return s>=65&&s<=70?s-55:s>=97&&s<=102?s-87:s-48&15}function P(S,n,s){var f=m(S,s);return s-1>=n&&(f|=m(S,s-1)<<4),f}function d(S,n,s,f){for(var h=0,C=Math.min(S.length,s),D=n;D=49?O-49+10:O>=17?O-17+10:O}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,s){return n.cmp(s)>0?n:s},l.min=function(n,s){return n.cmp(s)<0?n:s},l.prototype._init=function(n,s,f){if("number"==typeof n)return this._initNumber(n,s,f);if("object"==typeof n)return this._initArray(n,s,f);"hex"===s&&(s=16),y(s===(0|s)&&s>=2&&s<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(D=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);else if("le"===f)for(h=0,C=0;h>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);return this.strip()},l.prototype._parseHex=function(n,s,f){this.length=Math.ceil((n.length-s)/6),this.words=new Array(this.length);for(var h=0;h=s;h-=2)O=P(n,s,h)<=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;else for(h=(n.length-s)%2==0?s+1:s;h=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,s,f){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=s)h++;h--,C=C/s|0;for(var D=n.length-f,O=D%h,v=Math.min(D,D-O)+f,r=0,g=f;g1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var E=["","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"],M=[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],I=[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(S,n,s){s.negative=n.negative^S.negative;var f=S.length+n.length|0;s.length=f,f=f-1|0;var h=0|S.words[0],C=0|n.words[0],D=h*C,v=D/67108864|0;s.words[0]=67108863&D;for(var r=1;r>>26,H=67108863&v,R=Math.min(r,n.length-1),ee=Math.max(0,r-S.length+1);ee<=R;ee++)g+=(D=(h=0|S.words[r-ee|0])*(C=0|n.words[ee])+H)/67108864|0,H=67108863&D;s.words[r]=0|H,v=0|g}return 0!==v?s.words[r]=0|v:s.length--,s.strip()}l.prototype.toString=function(n,s){var f;if(s=0|s||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,C=0,D=0;D>>24-h&16777215)||D!==this.length-1?E[6-v.length]+v+f:v+f,(h+=2)>=26&&(h-=26,D--)}for(0!==C&&(f=C.toString(16)+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=M[n],g=I[n];f="";var H=this.clone();for(H.negative=0;!H.isZero();){var R=H.modn(g).toString(n);f=(H=H.idivn(g)).isZero()?R+f:E[r-R.length]+R+f}for(this.isZero()&&(f="0"+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,s){return y(typeof w<"u"),this.toArrayLike(w,n,s)},l.prototype.toArray=function(n,s){return this.toArrayLike(Array,n,s)},l.prototype.toArrayLike=function(n,s,f){var h=this.byteLength(),C=f||Math.max(1,h);y(h<=C,"byte array longer than desired length"),y(C>0,"Requested array length <= 0"),this.strip();var v,r,D="le"===s,O=new n(C),g=this.clone();if(D){for(r=0;!g.isZero();r++)v=g.andln(255),g.iushrn(8),O[r]=v;for(;r=4096&&(f+=13,s>>>=13),s>=64&&(f+=7,s>>>=7),s>=8&&(f+=4,s>>>=4),s>=2&&(f+=2,s>>>=2),f+s},l.prototype._zeroBits=function(n){if(0===n)return 26;var s=n,f=0;return 8191&s||(f+=13,s>>>=13),127&s||(f+=7,s>>>=7),15&s||(f+=4,s>>>=4),3&s||(f+=2,s>>>=2),1&s||f++,f},l.prototype.bitLength=function(){var s=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+s},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,s=0;sn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var s;s=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var s,f;this.length>n.length?(s=this,f=n):(s=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){y("number"==typeof n&&n>=0);var s=0|Math.ceil(n/26),f=n%26;this._expand(s),f>0&&s--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,s){y("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=s?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var C=0,D=0;D>>26;for(;0!==C&&D>>26;if(this.length=f.length,0!==C)this.words[this.length]=C,this.length++;else if(f!==this)for(;Dn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var s=this.iadd(n);return n.negative=1,s._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,C=n):(h=n,C=this);for(var D=0,O=0;O>26,this.words[O]=67108863&s;for(;0!==D&&O>26,this.words[O]=67108863&s;if(0===D&&O>>13,De=0|h[1],ct=8191&De,Ke=De>>>13,Je=0|h[2],ye=8191&Je,fe=Je>>>13,de=0|h[3],xe=8191&de,le=de>>>13,pe=0|h[4],qe=8191&pe,re=pe>>>13,ve=0|h[5],ce=8191&ve,Ze=ve>>>13,We=0|h[6],Ct=8191&We,ut=We>>>13,It=0|h[7],Ae=8191&It,Be=It>>>13,rt=0|h[8],$e=8191&rt,Ie=rt>>>13,lt=0|h[9],Qe=8191<,St=lt>>>13,dt=0|C[0],te=8191&dt,Ue=dt>>>13,Bt=0|C[1],Ye=8191&Bt,je=Bt>>>13,Ft=0|C[2],xt=8191&Ft,Ot=Ft>>>13,yt=0|C[3],at=8191&yt,Ee=yt>>>13,nt=0|C[4],Ge=8191&nt,Xe=nt>>>13,gt=0|C[5],Le=8191>,be=gt>>>13,$=0|C[6],ne=8191&$,ke=$>>>13,Nt=0|C[7],At=8191&Nt,Wt=Nt>>>13,gi=0|C[8],ei=8191&gi,$t=gi>>>13,Fi=0|C[9],li=8191&Fi,ui=Fi>>>13;f.negative=n.negative^s.negative,f.length=19;var un=(O+(v=Math.imul(R,te))|0)+((8191&(r=(r=Math.imul(R,Ue))+Math.imul(ee,te)|0))<<13)|0;O=((g=Math.imul(ee,Ue))+(r>>>13)|0)+(un>>>26)|0,un&=67108863,v=Math.imul(ct,te),r=(r=Math.imul(ct,Ue))+Math.imul(Ke,te)|0,g=Math.imul(Ke,Ue);var Ki=(O+(v=v+Math.imul(R,Ye)|0)|0)+((8191&(r=(r=r+Math.imul(R,je)|0)+Math.imul(ee,Ye)|0))<<13)|0;O=((g=g+Math.imul(ee,je)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,v=Math.imul(ye,te),r=(r=Math.imul(ye,Ue))+Math.imul(fe,te)|0,g=Math.imul(fe,Ue),v=v+Math.imul(ct,Ye)|0,r=(r=r+Math.imul(ct,je)|0)+Math.imul(Ke,Ye)|0,g=g+Math.imul(Ke,je)|0;var Mi=(O+(v=v+Math.imul(R,xt)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ot)|0)+Math.imul(ee,xt)|0))<<13)|0;O=((g=g+Math.imul(ee,Ot)|0)+(r>>>13)|0)+(Mi>>>26)|0,Mi&=67108863,v=Math.imul(xe,te),r=(r=Math.imul(xe,Ue))+Math.imul(le,te)|0,g=Math.imul(le,Ue),v=v+Math.imul(ye,Ye)|0,r=(r=r+Math.imul(ye,je)|0)+Math.imul(fe,Ye)|0,g=g+Math.imul(fe,je)|0,v=v+Math.imul(ct,xt)|0,r=(r=r+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0,g=g+Math.imul(Ke,Ot)|0;var on=(O+(v=v+Math.imul(R,at)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ee)|0)+Math.imul(ee,at)|0))<<13)|0;O=((g=g+Math.imul(ee,Ee)|0)+(r>>>13)|0)+(on>>>26)|0,on&=67108863,v=Math.imul(qe,te),r=(r=Math.imul(qe,Ue))+Math.imul(re,te)|0,g=Math.imul(re,Ue),v=v+Math.imul(xe,Ye)|0,r=(r=r+Math.imul(xe,je)|0)+Math.imul(le,Ye)|0,g=g+Math.imul(le,je)|0,v=v+Math.imul(ye,xt)|0,r=(r=r+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,g=g+Math.imul(fe,Ot)|0,v=v+Math.imul(ct,at)|0,r=(r=r+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0,g=g+Math.imul(Ke,Ee)|0;var st=(O+(v=v+Math.imul(R,Ge)|0)|0)+((8191&(r=(r=r+Math.imul(R,Xe)|0)+Math.imul(ee,Ge)|0))<<13)|0;O=((g=g+Math.imul(ee,Xe)|0)+(r>>>13)|0)+(st>>>26)|0,st&=67108863,v=Math.imul(ce,te),r=(r=Math.imul(ce,Ue))+Math.imul(Ze,te)|0,g=Math.imul(Ze,Ue),v=v+Math.imul(qe,Ye)|0,r=(r=r+Math.imul(qe,je)|0)+Math.imul(re,Ye)|0,g=g+Math.imul(re,je)|0,v=v+Math.imul(xe,xt)|0,r=(r=r+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,g=g+Math.imul(le,Ot)|0,v=v+Math.imul(ye,at)|0,r=(r=r+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,g=g+Math.imul(fe,Ee)|0,v=v+Math.imul(ct,Ge)|0,r=(r=r+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0,g=g+Math.imul(Ke,Xe)|0;var si=(O+(v=v+Math.imul(R,Le)|0)|0)+((8191&(r=(r=r+Math.imul(R,be)|0)+Math.imul(ee,Le)|0))<<13)|0;O=((g=g+Math.imul(ee,be)|0)+(r>>>13)|0)+(si>>>26)|0,si&=67108863,v=Math.imul(Ct,te),r=(r=Math.imul(Ct,Ue))+Math.imul(ut,te)|0,g=Math.imul(ut,Ue),v=v+Math.imul(ce,Ye)|0,r=(r=r+Math.imul(ce,je)|0)+Math.imul(Ze,Ye)|0,g=g+Math.imul(Ze,je)|0,v=v+Math.imul(qe,xt)|0,r=(r=r+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,g=g+Math.imul(re,Ot)|0,v=v+Math.imul(xe,at)|0,r=(r=r+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,g=g+Math.imul(le,Ee)|0,v=v+Math.imul(ye,Ge)|0,r=(r=r+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,g=g+Math.imul(fe,Xe)|0,v=v+Math.imul(ct,Le)|0,r=(r=r+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0,g=g+Math.imul(Ke,be)|0;var Ce=(O+(v=v+Math.imul(R,ne)|0)|0)+((8191&(r=(r=r+Math.imul(R,ke)|0)+Math.imul(ee,ne)|0))<<13)|0;O=((g=g+Math.imul(ee,ke)|0)+(r>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,v=Math.imul(Ae,te),r=(r=Math.imul(Ae,Ue))+Math.imul(Be,te)|0,g=Math.imul(Be,Ue),v=v+Math.imul(Ct,Ye)|0,r=(r=r+Math.imul(Ct,je)|0)+Math.imul(ut,Ye)|0,g=g+Math.imul(ut,je)|0,v=v+Math.imul(ce,xt)|0,r=(r=r+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,g=g+Math.imul(Ze,Ot)|0,v=v+Math.imul(qe,at)|0,r=(r=r+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,g=g+Math.imul(re,Ee)|0,v=v+Math.imul(xe,Ge)|0,r=(r=r+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,g=g+Math.imul(le,Xe)|0,v=v+Math.imul(ye,Le)|0,r=(r=r+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,g=g+Math.imul(fe,be)|0,v=v+Math.imul(ct,ne)|0,r=(r=r+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0,g=g+Math.imul(Ke,ke)|0;var Mt=(O+(v=v+Math.imul(R,At)|0)|0)+((8191&(r=(r=r+Math.imul(R,Wt)|0)+Math.imul(ee,At)|0))<<13)|0;O=((g=g+Math.imul(ee,Wt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul($e,te),r=(r=Math.imul($e,Ue))+Math.imul(Ie,te)|0,g=Math.imul(Ie,Ue),v=v+Math.imul(Ae,Ye)|0,r=(r=r+Math.imul(Ae,je)|0)+Math.imul(Be,Ye)|0,g=g+Math.imul(Be,je)|0,v=v+Math.imul(Ct,xt)|0,r=(r=r+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,g=g+Math.imul(ut,Ot)|0,v=v+Math.imul(ce,at)|0,r=(r=r+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,g=g+Math.imul(Ze,Ee)|0,v=v+Math.imul(qe,Ge)|0,r=(r=r+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,g=g+Math.imul(re,Xe)|0,v=v+Math.imul(xe,Le)|0,r=(r=r+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,g=g+Math.imul(le,be)|0,v=v+Math.imul(ye,ne)|0,r=(r=r+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,g=g+Math.imul(fe,ke)|0,v=v+Math.imul(ct,At)|0,r=(r=r+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0,g=g+Math.imul(Ke,Wt)|0;var Ht=(O+(v=v+Math.imul(R,ei)|0)|0)+((8191&(r=(r=r+Math.imul(R,$t)|0)+Math.imul(ee,ei)|0))<<13)|0;O=((g=g+Math.imul(ee,$t)|0)+(r>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,v=Math.imul(Qe,te),r=(r=Math.imul(Qe,Ue))+Math.imul(St,te)|0,g=Math.imul(St,Ue),v=v+Math.imul($e,Ye)|0,r=(r=r+Math.imul($e,je)|0)+Math.imul(Ie,Ye)|0,g=g+Math.imul(Ie,je)|0,v=v+Math.imul(Ae,xt)|0,r=(r=r+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,g=g+Math.imul(Be,Ot)|0,v=v+Math.imul(Ct,at)|0,r=(r=r+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,g=g+Math.imul(ut,Ee)|0,v=v+Math.imul(ce,Ge)|0,r=(r=r+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,g=g+Math.imul(Ze,Xe)|0,v=v+Math.imul(qe,Le)|0,r=(r=r+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,g=g+Math.imul(re,be)|0,v=v+Math.imul(xe,ne)|0,r=(r=r+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,g=g+Math.imul(le,ke)|0,v=v+Math.imul(ye,At)|0,r=(r=r+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,g=g+Math.imul(fe,Wt)|0,v=v+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0,g=g+Math.imul(Ke,$t)|0;var Dt=(O+(v=v+Math.imul(R,li)|0)|0)+((8191&(r=(r=r+Math.imul(R,ui)|0)+Math.imul(ee,li)|0))<<13)|0;O=((g=g+Math.imul(ee,ui)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,v=Math.imul(Qe,Ye),r=(r=Math.imul(Qe,je))+Math.imul(St,Ye)|0,g=Math.imul(St,je),v=v+Math.imul($e,xt)|0,r=(r=r+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,g=g+Math.imul(Ie,Ot)|0,v=v+Math.imul(Ae,at)|0,r=(r=r+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,g=g+Math.imul(Be,Ee)|0,v=v+Math.imul(Ct,Ge)|0,r=(r=r+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,g=g+Math.imul(ut,Xe)|0,v=v+Math.imul(ce,Le)|0,r=(r=r+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,g=g+Math.imul(Ze,be)|0,v=v+Math.imul(qe,ne)|0,r=(r=r+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,g=g+Math.imul(re,ke)|0,v=v+Math.imul(xe,At)|0,r=(r=r+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,g=g+Math.imul(le,Wt)|0,v=v+Math.imul(ye,ei)|0,r=(r=r+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,g=g+Math.imul(fe,$t)|0;var kt=(O+(v=v+Math.imul(ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;O=((g=g+Math.imul(Ke,ui)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,v=Math.imul(Qe,xt),r=(r=Math.imul(Qe,Ot))+Math.imul(St,xt)|0,g=Math.imul(St,Ot),v=v+Math.imul($e,at)|0,r=(r=r+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,g=g+Math.imul(Ie,Ee)|0,v=v+Math.imul(Ae,Ge)|0,r=(r=r+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,g=g+Math.imul(Be,Xe)|0,v=v+Math.imul(Ct,Le)|0,r=(r=r+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,g=g+Math.imul(ut,be)|0,v=v+Math.imul(ce,ne)|0,r=(r=r+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,g=g+Math.imul(Ze,ke)|0,v=v+Math.imul(qe,At)|0,r=(r=r+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,g=g+Math.imul(re,Wt)|0,v=v+Math.imul(xe,ei)|0,r=(r=r+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,g=g+Math.imul(le,$t)|0;var Gt=(O+(v=v+Math.imul(ye,li)|0)|0)+((8191&(r=(r=r+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0))<<13)|0;O=((g=g+Math.imul(fe,ui)|0)+(r>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,v=Math.imul(Qe,at),r=(r=Math.imul(Qe,Ee))+Math.imul(St,at)|0,g=Math.imul(St,Ee),v=v+Math.imul($e,Ge)|0,r=(r=r+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,g=g+Math.imul(Ie,Xe)|0,v=v+Math.imul(Ae,Le)|0,r=(r=r+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,g=g+Math.imul(Be,be)|0,v=v+Math.imul(Ct,ne)|0,r=(r=r+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,g=g+Math.imul(ut,ke)|0,v=v+Math.imul(ce,At)|0,r=(r=r+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,g=g+Math.imul(Ze,Wt)|0,v=v+Math.imul(qe,ei)|0,r=(r=r+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,g=g+Math.imul(re,$t)|0;var oi=(O+(v=v+Math.imul(xe,li)|0)|0)+((8191&(r=(r=r+Math.imul(xe,ui)|0)+Math.imul(le,li)|0))<<13)|0;O=((g=g+Math.imul(le,ui)|0)+(r>>>13)|0)+(oi>>>26)|0,oi&=67108863,v=Math.imul(Qe,Ge),r=(r=Math.imul(Qe,Xe))+Math.imul(St,Ge)|0,g=Math.imul(St,Xe),v=v+Math.imul($e,Le)|0,r=(r=r+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,g=g+Math.imul(Ie,be)|0,v=v+Math.imul(Ae,ne)|0,r=(r=r+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,g=g+Math.imul(Be,ke)|0,v=v+Math.imul(Ct,At)|0,r=(r=r+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,g=g+Math.imul(ut,Wt)|0,v=v+Math.imul(ce,ei)|0,r=(r=r+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,g=g+Math.imul(Ze,$t)|0;var bi=(O+(v=v+Math.imul(qe,li)|0)|0)+((8191&(r=(r=r+Math.imul(qe,ui)|0)+Math.imul(re,li)|0))<<13)|0;O=((g=g+Math.imul(re,ui)|0)+(r>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Qe,Le),r=(r=Math.imul(Qe,be))+Math.imul(St,Le)|0,g=Math.imul(St,be),v=v+Math.imul($e,ne)|0,r=(r=r+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,g=g+Math.imul(Ie,ke)|0,v=v+Math.imul(Ae,At)|0,r=(r=r+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,g=g+Math.imul(Be,Wt)|0,v=v+Math.imul(Ct,ei)|0,r=(r=r+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,g=g+Math.imul(ut,$t)|0;var yi=(O+(v=v+Math.imul(ce,li)|0)|0)+((8191&(r=(r=r+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0))<<13)|0;O=((g=g+Math.imul(Ze,ui)|0)+(r>>>13)|0)+(yi>>>26)|0,yi&=67108863,v=Math.imul(Qe,ne),r=(r=Math.imul(Qe,ke))+Math.imul(St,ne)|0,g=Math.imul(St,ke),v=v+Math.imul($e,At)|0,r=(r=r+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,g=g+Math.imul(Ie,Wt)|0,v=v+Math.imul(Ae,ei)|0,r=(r=r+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,g=g+Math.imul(Be,$t)|0;var Oi=(O+(v=v+Math.imul(Ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0))<<13)|0;O=((g=g+Math.imul(ut,ui)|0)+(r>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,v=Math.imul(Qe,At),r=(r=Math.imul(Qe,Wt))+Math.imul(St,At)|0,g=Math.imul(St,Wt),v=v+Math.imul($e,ei)|0,r=(r=r+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,g=g+Math.imul(Ie,$t)|0;var Ui=(O+(v=v+Math.imul(Ae,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0))<<13)|0;O=((g=g+Math.imul(Be,ui)|0)+(r>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(Qe,ei),r=(r=Math.imul(Qe,$t))+Math.imul(St,ei)|0,g=Math.imul(St,$t);var Bi=(O+(v=v+Math.imul($e,li)|0)|0)+((8191&(r=(r=r+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0))<<13)|0;O=((g=g+Math.imul(Ie,ui)|0)+(r>>>13)|0)+(Bi>>>26)|0,Bi&=67108863;var qt=(O+(v=Math.imul(Qe,li))|0)+((8191&(r=(r=Math.imul(Qe,ui))+Math.imul(St,li)|0))<<13)|0;return O=((g=Math.imul(St,ui))+(r>>>13)|0)+(qt>>>26)|0,qt&=67108863,D[0]=un,D[1]=Ki,D[2]=Mi,D[3]=on,D[4]=st,D[5]=si,D[6]=Ce,D[7]=Mt,D[8]=Ht,D[9]=Dt,D[10]=kt,D[11]=Gt,D[12]=oi,D[13]=bi,D[14]=yi,D[15]=Oi,D[16]=Ui,D[17]=Bi,D[18]=qt,0!==O&&(D[19]=O,f.length++),f};function j(S,n,s){return(new K).mulp(S,n,s)}function K(S,n){this.x=S,this.y=n}Math.imul||(B=z),l.prototype.mulTo=function(n,s){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?B(this,n,s):h<63?z(this,n,s):h<1024?function W(S,n,s){s.negative=n.negative^S.negative,s.length=S.length+n.length;for(var f=0,h=0,C=0;C>>26)|0)>>>26,D&=67108863}s.words[C]=O,f=D,D=h}return 0!==f?s.words[C]=f:s.length--,s.strip()}(this,n,s):j(this,n,s),f},K.prototype.makeRBT=function(n){for(var s=new Array(n),f=l.prototype._countBits(n)-1,h=0;h>=1;return h},K.prototype.permute=function(n,s,f,h,C,D){for(var O=0;O>>=1)C++;return 1<>>=13),C>>>=13;for(D=2*s;D>=26,s+=h/67108864|0,s+=C>>>26,this.words[f]=67108863&C}return 0!==s&&(this.words[f]=s,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var s=function k(S){for(var n=new Array(S.bitLength()),s=0;s>>h}return n}(n);if(0===s.length)return new l(1);for(var f=this,h=0;h=0);var C,s=n%26,f=(n-s)/26,h=67108863>>>26-s<<26-s;if(0!==s){var D=0;for(C=0;C>>26-s}D&&(this.words[C]=D,this.length++)}if(0!==f){for(C=this.length-1;C>=0;C--)this.words[C+f]=this.words[C];for(C=0;C=0),h=s?(s-s%26)/26:0;var C=n%26,D=Math.min((n-C)/26,this.length),O=67108863^67108863>>>C<D)for(this.length-=D,r=0;r=0&&(0!==g||r>=h);r--){var H=0|this.words[r];this.words[r]=g<<26-C|H>>>C,g=H&O}return v&&0!==g&&(v.words[v.length++]=g),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,s,f){return y(0===this.negative),this.iushrn(n,s,f)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){y("number"==typeof n&&n>=0);var s=n%26,f=(n-s)/26;return!(this.length<=f||!(this.words[f]&1<=0);var s=n%26,f=(n-s)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==s&&f++,this.length=Math.min(f,this.length),0!==s&&(this.words[this.length-1]&=67108863^67108863>>>s<=67108864;s++)this.words[s]-=67108864,s===this.length-1?this.words[s+1]=1:this.words[s+1]++;return this.length=Math.max(this.length,s+1),this},l.prototype.isubn=function(n){if(y("number"==typeof n),y(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var s=0;s>26)-(v/67108864|0),this.words[C+f]=67108863&D}for(;C>26,this.words[C+f]=67108863&D;if(0===O)return this.strip();for(y(-1===O),O=0,C=0;C>26,this.words[C]=67108863&D;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,s){var f,h=this.clone(),C=n,D=0|C.words[C.length-1];0!=(f=26-this._countBits(D))&&(C=C.ushln(f),h.iushln(f),D=0|C.words[C.length-1]);var r,v=h.length-C.length;if("mod"!==s){(r=new l(null)).length=v+1,r.words=new Array(r.length);for(var g=0;g=0;R--){var ee=67108864*(0|h.words[C.length+R])+(0|h.words[C.length+R-1]);for(ee=Math.min(ee/D|0,67108863),h._ishlnsubmul(C,ee,R);0!==h.negative;)ee--,h.negative=0,h._ishlnsubmul(C,1,R),h.isZero()||(h.negative^=1);r&&(r.words[R]=ee)}return r&&r.strip(),h.strip(),"div"!==s&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},l.prototype.divmod=function(n,s,f){return y(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(D=this.neg().divmod(n,s),"mod"!==s&&(h=D.div.neg()),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(D=this.divmod(n.neg(),s),"mod"!==s&&(h=D.div.neg()),{div:h,mod:D.mod}):this.negative&n.negative?(D=this.neg().divmod(n.neg(),s),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.isub(n)),{div:D.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===s?{div:this.divn(n.words[0]),mod:null}:"mod"===s?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,s);var h,C,D},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var s=this.divmod(n);if(s.mod.isZero())return s.div;var f=0!==s.div.negative?s.mod.isub(n):s.mod,h=n.ushrn(1),C=n.andln(1),D=f.cmp(h);return D<0||1===C&&0===D?s.div:0!==s.div.negative?s.div.isubn(1):s.div.iaddn(1)},l.prototype.modn=function(n){y(n<=67108863);for(var s=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(s*f+(0|this.words[h]))%n;return f},l.prototype.idivn=function(n){y(n<=67108863);for(var s=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*s;this.words[f]=h/n|0,s=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){y(0===n.negative),y(!n.isZero());var s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=new l(0),O=new l(1),v=0;s.isEven()&&f.isEven();)s.iushrn(1),f.iushrn(1),++v;for(var r=f.clone(),g=s.clone();!s.isZero();){for(var H=0,R=1;!(s.words[0]&R)&&H<26;++H,R<<=1);if(H>0)for(s.iushrn(H);H-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(g)),h.iushrn(1),C.iushrn(1);for(var ee=0,De=1;!(f.words[0]&De)&&ee<26;++ee,De<<=1);if(ee>0)for(f.iushrn(ee);ee-- >0;)(D.isOdd()||O.isOdd())&&(D.iadd(r),O.isub(g)),D.iushrn(1),O.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(D),C.isub(O)):(f.isub(s),D.isub(h),O.isub(C))}return{a:D,b:O,gcd:f.iushln(v)}},l.prototype._invmp=function(n){y(0===n.negative),y(!n.isZero());var H,s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=f.clone();s.cmpn(1)>0&&f.cmpn(1)>0;){for(var O=0,v=1;!(s.words[0]&v)&&O<26;++O,v<<=1);if(O>0)for(s.iushrn(O);O-- >0;)h.isOdd()&&h.iadd(D),h.iushrn(1);for(var r=0,g=1;!(f.words[0]&g)&&r<26;++r,g<<=1);if(r>0)for(f.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(D),C.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(C)):(f.isub(s),C.isub(h))}return(H=0===s.cmpn(1)?h:C).cmpn(0)<0&&H.iadd(n),H},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var s=this.clone(),f=n.clone();s.negative=0,f.negative=0;for(var h=0;s.isEven()&&f.isEven();h++)s.iushrn(1),f.iushrn(1);for(;;){for(;s.isEven();)s.iushrn(1);for(;f.isEven();)f.iushrn(1);var C=s.cmp(f);if(C<0){var D=s;s=f,f=D}else if(0===C||0===f.cmpn(1))break;s.isub(f)}return f.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){y("number"==typeof n);var s=n%26,f=(n-s)/26,h=1<>>26,this.words[D]=O&=67108863}return 0!==C&&(this.words[D]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var f,s=n<0;if(0!==this.negative&&!s)return-1;if(0===this.negative&&s)return 1;if(this.strip(),this.length>1)f=1;else{s&&(n=-n),y(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],C=0|n.words[f];if(h!==C){hC&&(s=1);break}}return s},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new J(n)},l.prototype.toRed=function(n){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return y(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return y(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var X={k256:null,p224:null,p192:null,p25519:null};function ie(S,n){this.name=S,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function se(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function J(S){if("string"==typeof S){var n=l._prime(S);this.m=n.p,this.prime=n}else y(S.gtn(1),"modulus must be greater than 1"),this.m=S,this.prime=null}function he(S){J.call(this,S),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var f,s=n;do{this.split(s,this.tmp),f=(s=(s=this.imulK(s)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?s.isub(this.p):void 0!==s.strip?s.strip():s._strip(),s},ie.prototype.split=function(n,s){n.iushrn(this.n,0,s)},ie.prototype.imulK=function(n){return n.imul(this.k)},A(se,ie),se.prototype.split=function(n,s){for(var f=4194303,h=Math.min(n.length,9),C=0;C>>22,D=O}n.words[C-10]=D>>>=22,n.length-=0===D&&n.length>10?10:9},se.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var s=0,f=0;f>>=26,n.words[f]=C,s=h}return 0!==s&&(n.words[n.length++]=s),n},l._prime=function(n){if(X[n])return X[n];var s;if("k256"===n)s=new se;else if("p224"===n)s=new ue;else if("p192"===n)s=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);s=new Me}return X[n]=s,s},J.prototype._verify1=function(n){y(0===n.negative,"red works only with positives"),y(n.red,"red works only with red numbers")},J.prototype._verify2=function(n,s){y(0==(n.negative|s.negative),"red works only with positives"),y(n.red&&n.red===s.red,"red works only with red numbers")},J.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},J.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},J.prototype.add=function(n,s){this._verify2(n,s);var f=n.add(s);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},J.prototype.iadd=function(n,s){this._verify2(n,s);var f=n.iadd(s);return f.cmp(this.m)>=0&&f.isub(this.m),f},J.prototype.sub=function(n,s){this._verify2(n,s);var f=n.sub(s);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},J.prototype.isub=function(n,s){this._verify2(n,s);var f=n.isub(s);return f.cmpn(0)<0&&f.iadd(this.m),f},J.prototype.shl=function(n,s){return this._verify1(n),this.imod(n.ushln(s))},J.prototype.imul=function(n,s){return this._verify2(n,s),this.imod(n.imul(s))},J.prototype.mul=function(n,s){return this._verify2(n,s),this.imod(n.mul(s))},J.prototype.isqr=function(n){return this.imul(n,n.clone())},J.prototype.sqr=function(n){return this.mul(n,n)},J.prototype.sqrt=function(n){if(n.isZero())return n.clone();var s=this.m.andln(3);if(y(s%2==1),3===s){var f=this.m.add(new l(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);y(!h.isZero());var D=new l(1).toRed(this),O=D.redNeg(),v=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,v).cmp(O);)r.redIAdd(O);for(var g=this.pow(r,h),H=this.pow(n,h.addn(1).iushrn(1)),R=this.pow(n,h),ee=C;0!==R.cmp(D);){for(var De=R,ct=0;0!==De.cmp(D);ct++)De=De.redSqr();y(ct=0;C--){for(var g=s.words[C],H=r-1;H>=0;H--){var R=g>>H&1;D!==h[0]&&(D=this.sqr(D)),0!==R||0!==O?(O<<=1,O|=R,(4==++v||0===C&&0===H)&&(D=this.mul(D,h[O]),v=0,O=0)):v=0}r=26}return D},J.prototype.convertTo=function(n){var s=n.umod(this.m);return s===n?s.clone():s},J.prototype.convertFrom=function(n){var s=n.clone();return s.red=null,s},l.mont=function(n){return new he(n)},A(he,J),he.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},he.prototype.convertFrom=function(n){var s=this.imod(n.mul(this.rinv));return s.red=null,s},he.prototype.imul=function(n,s){if(n.isZero()||s.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.mul=function(n,s){if(n.isZero()||s.isZero())return new l(0)._forceRed(this);var f=n.mul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},6119:Fe=>{"use strict";Fe.exports=function(p){for(var e=[],t=p.length,y=0;y=55296&&A<=56319&&t>y+1){var l=p.charCodeAt(y+1);l>=56320&&l<=57343&&(A=1024*(A-55296)+l-56320+65536,y+=1)}A<128?e.push(A):A<2048?(e.push(A>>6|192),e.push(63&A|128)):A<55296||A>=57344&&A<65536?(e.push(A>>12|224),e.push(A>>6&63|128),e.push(63&A|128)):A>=65536&&A<=1114111?(e.push(A>>18|240),e.push(A>>12&63|128),e.push(A>>6&63|128),e.push(63&A|128)):e.push(239,191,189)}return new Uint8Array(e).buffer}},2016:Fe=>{"use strict";var e,q="object"==typeof Reflect?Reflect:null,p=q&&"function"==typeof q.apply?q.apply:function(ie,se,ue){return Function.prototype.apply.call(ie,se,ue)};e=q&&"function"==typeof q.ownKeys?q.ownKeys:Object.getOwnPropertySymbols?function(ie){return Object.getOwnPropertyNames(ie).concat(Object.getOwnPropertySymbols(ie))}:function(ie){return Object.getOwnPropertyNames(ie)};var y=Number.isNaN||function(ie){return ie!=ie};function A(){A.init.call(this)}Fe.exports=A,Fe.exports.once=function W(X,ie){return new Promise(function(se,ue){function ae(J){X.removeListener(ie,Me),ue(J)}function Me(){"function"==typeof X.removeListener&&X.removeListener("error",ae),se([].slice.call(arguments))}K(X,ie,Me,{once:!0}),"error"!==ie&&function j(X,ie,se){"function"==typeof X.on&&K(X,"error",ie,se)}(X,ae,{once:!0})})},A.EventEmitter=A,A.prototype._events=void 0,A.prototype._eventsCount=0,A.prototype._maxListeners=void 0;var l=10;function w(X){if("function"!=typeof X)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof X)}function m(X){return void 0===X._maxListeners?A.defaultMaxListeners:X._maxListeners}function P(X,ie,se,ue){var ae,Me,J;if(w(se),void 0===(Me=X._events)?(Me=X._events=Object.create(null),X._eventsCount=0):(void 0!==Me.newListener&&(X.emit("newListener",ie,se.listener?se.listener:se),Me=X._events),J=Me[ie]),void 0===J)J=Me[ie]=se,++X._eventsCount;else if("function"==typeof J?J=Me[ie]=ue?[se,J]:[J,se]:ue?J.unshift(se):J.push(se),(ae=m(X))>0&&J.length>ae&&!J.warned){J.warned=!0;var he=new Error("Possible EventEmitter memory leak detected. "+J.length+" "+String(ie)+" listeners added. Use emitter.setMaxListeners() to increase limit");he.name="MaxListenersExceededWarning",he.emitter=X,he.type=ie,he.count=J.length,function t(X){console&&console.warn&&console.warn(X)}(he)}return X}function d(){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 E(X,ie,se){var ue={fired:!1,wrapFn:void 0,target:X,type:ie,listener:se},ae=d.bind(ue);return ae.listener=se,ue.wrapFn=ae,ae}function M(X,ie,se){var ue=X._events;if(void 0===ue)return[];var ae=ue[ie];return void 0===ae?[]:"function"==typeof ae?se?[ae.listener||ae]:[ae]:se?function B(X){for(var ie=new Array(X.length),se=0;se0&&(J=se[0]),J instanceof Error)throw J;var he=new Error("Unhandled error."+(J?" ("+J.message+")":""));throw he.context=J,he}var S=Me[ie];if(void 0===S)return!1;if("function"==typeof S)p(S,this,se);else{var n=S.length,s=k(S,n);for(ue=0;ue=0;J--)if(ue[J]===se||ue[J].listener===se){he=ue[J].listener,Me=J;break}if(Me<0)return this;0===Me?ue.shift():function z(X,ie){for(;ie+1=0;ae--)this.removeListener(ie,se[ae]);return this},A.prototype.listeners=function(ie){return M(this,ie,!0)},A.prototype.rawListeners=function(ie){return M(this,ie,!1)},A.listenerCount=function(X,ie){return"function"==typeof X.listenerCount?X.listenerCount(ie):I.call(X,ie)},A.prototype.listenerCount=I,A.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},6505:(Fe,q,p)=>{var e=p(843).Buffer,t=p(5829);Fe.exports=function y(A,l,w,m){if(e.isBuffer(A)||(A=e.from(A,"binary")),l&&(e.isBuffer(l)||(l=e.from(l,"binary")),8!==l.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var P=w/8,d=e.alloc(P),E=e.alloc(m||0),M=e.alloc(0);P>0||m>0;){var I=new t;I.update(M),I.update(A),l&&I.update(l),M=I.digest();var k=0;if(P>0){var z=d.length-P;k=Math.min(P,M.length),M.copy(d,z,0,k),P-=k}if(k0){var B=E.length-m,W=Math.min(m,M.length-k);M.copy(E,B,k,k+W),m-=W}}return M.fill(0),{key:d,iv:E}}},380:(Fe,q,p)=>{"use strict";var e=p(843).Buffer,t=p(6745).Transform;function l(w){t.call(this),this._block=e.allocUnsafe(w),this._blockSize=w,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}p(6698)(l,t),l.prototype._transform=function(w,m,P){var d=null;try{this.update(w,m)}catch(E){d=E}P(d)},l.prototype._flush=function(w){var m=null;try{this.push(this.digest())}catch(P){m=P}w(m)},l.prototype.update=function(w,m){if(function A(w,m){if(!e.isBuffer(w)&&"string"!=typeof w)throw new TypeError(m+" must be a string or a buffer")}(w,"Data"),this._finalized)throw new Error("Digest already called");e.isBuffer(w)||(w=e.from(w,m));for(var P=this._block,d=0;this._blockOffset+w.length-d>=this._blockSize;){for(var E=this._blockOffset;E0;++M)this._length[M]+=I,(I=this._length[M]/4294967296|0)>0&&(this._length[M]-=4294967296*I);return this},l.prototype._update=function(){throw new Error("_update is not implemented")},l.prototype.digest=function(w){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var m=this._digest();void 0!==w&&(m=m.toString(w)),this._block.fill(0),this._blockOffset=0;for(var P=0;P<4;++P)this._length[P]=0;return m},l.prototype._digest=function(){throw new Error("_digest is not implemented")},Fe.exports=l},1076:(Fe,q,p)=>{var e=q;e.utils=p(9875),e.common=p(2085),e.sha=p(7658),e.ripemd=p(8344),e.hmac=p(6192),e.sha1=e.sha.sha1,e.sha256=e.sha.sha256,e.sha224=e.sha.sha224,e.sha384=e.sha.sha384,e.sha512=e.sha.sha512,e.ripemd160=e.ripemd.ripemd160},2085:(Fe,q,p)=>{"use strict";var e=p(9875),t=p(7798);function y(){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}q.BlockHash=y,y.prototype.update=function(l,w){if(l=e.toArray(l,w),this.pending=this.pending?this.pending.concat(l):l,this.pendingTotal+=l.length,this.pending.length>=this._delta8){var m=(l=this.pending).length%this._delta8;this.pending=l.slice(l.length-m,l.length),0===this.pending.length&&(this.pending=null),l=e.join32(l,0,l.length-m,this.endian);for(var P=0;P>>24&255,P[d++]=l>>>16&255,P[d++]=l>>>8&255,P[d++]=255&l}else for(P[d++]=255&l,P[d++]=l>>>8&255,P[d++]=l>>>16&255,P[d++]=l>>>24&255,P[d++]=0,P[d++]=0,P[d++]=0,P[d++]=0,E=8;E{"use strict";var e=p(9875),t=p(7798);function y(A,l,w){if(!(this instanceof y))return new y(A,l,w);this.Hash=A,this.blockSize=A.blockSize/8,this.outSize=A.outSize/8,this.inner=null,this.outer=null,this._init(e.toArray(l,w))}Fe.exports=y,y.prototype._init=function(l){l.length>this.blockSize&&(l=(new this.Hash).update(l).digest()),t(l.length<=this.blockSize);for(var w=l.length;w{"use strict";var e=p(9875),t=p(2085),y=e.rotl32,A=e.sum32,l=e.sum32_3,w=e.sum32_4,m=t.BlockHash;function P(){if(!(this instanceof P))return new P;m.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function d(W,j,K,X){return W<=15?j^K^X:W<=31?j&K|~j&X:W<=47?(j|~K)^X:W<=63?j&X|K&~X:j^(K|~X)}function M(W){return W<=15?1352829926:W<=31?1548603684:W<=47?1836072691:W<=63?2053994217:0}e.inherits(P,m),q.ripemd160=P,P.blockSize=512,P.outSize=160,P.hmacStrength=192,P.padLength=64,P.prototype._update=function(j,K){for(var X=this.h[0],ie=this.h[1],se=this.h[2],ue=this.h[3],ae=this.h[4],Me=X,J=ie,he=se,S=ue,n=ae,s=0;s<80;s++){var f=A(y(w(X,d(s,ie,se,ue),j[I[s]+K],(W=s)<=15?0:W<=31?1518500249:W<=47?1859775393:W<=63?2400959708:2840853838),z[s]),ae);X=ae,ae=ue,ue=y(se,10),se=ie,ie=f,f=A(y(w(Me,d(79-s,J,he,S),j[k[s]+K],M(s)),B[s]),n),Me=n,n=S,S=y(he,10),he=J,J=f}var W;f=l(this.h[1],se,S),this.h[1]=l(this.h[2],ue,n),this.h[2]=l(this.h[3],ae,Me),this.h[3]=l(this.h[4],X,J),this.h[4]=l(this.h[0],ie,he),this.h[0]=f},P.prototype._digest=function(j){return"hex"===j?e.toHex32(this.h,"little"):e.split32(this.h,"little")};var I=[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],k=[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],z=[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],B=[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]},7658:(Fe,q,p)=>{"use strict";q.sha1=p(5010),q.sha224=p(3578),q.sha256=p(7857),q.sha384=p(8723),q.sha512=p(5304)},5010:(Fe,q,p)=>{"use strict";var e=p(9875),t=p(2085),y=p(7221),A=e.rotl32,l=e.sum32,w=e.sum32_5,m=y.ft_1,P=t.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function E(){if(!(this instanceof E))return new E;P.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}e.inherits(E,P),Fe.exports=E,E.blockSize=512,E.outSize=160,E.hmacStrength=80,E.padLength=64,E.prototype._update=function(I,k){for(var z=this.W,B=0;B<16;B++)z[B]=I[k+B];for(;B{"use strict";var e=p(9875),t=p(7857);function y(){if(!(this instanceof y))return new y;t.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}e.inherits(y,t),Fe.exports=y,y.blockSize=512,y.outSize=224,y.hmacStrength=192,y.padLength=64,y.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,7),"big"):e.split32(this.h.slice(0,7),"big")}},7857:(Fe,q,p)=>{"use strict";var e=p(9875),t=p(2085),y=p(7221),A=p(7798),l=e.sum32,w=e.sum32_4,m=e.sum32_5,P=y.ch32,d=y.maj32,E=y.s0_256,M=y.s1_256,I=y.g0_256,k=y.g1_256,z=t.BlockHash,B=[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 W(){if(!(this instanceof W))return new W;z.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=B,this.W=new Array(64)}e.inherits(W,z),Fe.exports=W,W.blockSize=512,W.outSize=256,W.hmacStrength=192,W.padLength=64,W.prototype._update=function(K,X){for(var ie=this.W,se=0;se<16;se++)ie[se]=K[X+se];for(;se{"use strict";var e=p(9875),t=p(5304);function y(){if(!(this instanceof y))return new y;t.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}e.inherits(y,t),Fe.exports=y,y.blockSize=1024,y.outSize=384,y.hmacStrength=192,y.padLength=128,y.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,12),"big"):e.split32(this.h.slice(0,12),"big")}},5304:(Fe,q,p)=>{"use strict";var e=p(9875),t=p(2085),y=p(7798),A=e.rotr64_hi,l=e.rotr64_lo,w=e.shr64_hi,m=e.shr64_lo,P=e.sum64,d=e.sum64_hi,E=e.sum64_lo,M=e.sum64_4_hi,I=e.sum64_4_lo,k=e.sum64_5_hi,z=e.sum64_5_lo,B=t.BlockHash,W=[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 j(){if(!(this instanceof j))return new j;B.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=W,this.W=new Array(160)}function K(f,h,C,D,O){var v=f&C^~f&O;return v<0&&(v+=4294967296),v}function X(f,h,C,D,O,v){var r=h&D^~h&v;return r<0&&(r+=4294967296),r}function ie(f,h,C,D,O){var v=f&C^f&O^C&O;return v<0&&(v+=4294967296),v}function se(f,h,C,D,O,v){var r=h&D^h&v^D&v;return r<0&&(r+=4294967296),r}function ue(f,h){var v=A(f,h,28)^A(h,f,2)^A(h,f,7);return v<0&&(v+=4294967296),v}function ae(f,h){var v=l(f,h,28)^l(h,f,2)^l(h,f,7);return v<0&&(v+=4294967296),v}function Me(f,h){var v=A(f,h,14)^A(f,h,18)^A(h,f,9);return v<0&&(v+=4294967296),v}function J(f,h){var v=l(f,h,14)^l(f,h,18)^l(h,f,9);return v<0&&(v+=4294967296),v}function he(f,h){var v=A(f,h,1)^A(f,h,8)^w(f,h,7);return v<0&&(v+=4294967296),v}function S(f,h){var v=l(f,h,1)^l(f,h,8)^m(f,h,7);return v<0&&(v+=4294967296),v}function n(f,h){var v=A(f,h,19)^A(h,f,29)^w(f,h,6);return v<0&&(v+=4294967296),v}function s(f,h){var v=l(f,h,19)^l(h,f,29)^m(f,h,6);return v<0&&(v+=4294967296),v}e.inherits(j,B),Fe.exports=j,j.blockSize=1024,j.outSize=512,j.hmacStrength=192,j.padLength=128,j.prototype._prepareBlock=function(h,C){for(var D=this.W,O=0;O<32;O++)D[O]=h[C+O];for(;O{"use strict";var t=p(9875).rotr32;function A(M,I,k){return M&I^~M&k}function l(M,I,k){return M&I^M&k^I&k}function w(M,I,k){return M^I^k}q.ft_1=function y(M,I,k,z){return 0===M?A(I,k,z):1===M||3===M?w(I,k,z):2===M?l(I,k,z):void 0},q.ch32=A,q.maj32=l,q.p32=w,q.s0_256=function m(M){return t(M,2)^t(M,13)^t(M,22)},q.s1_256=function P(M){return t(M,6)^t(M,11)^t(M,25)},q.g0_256=function d(M){return t(M,7)^t(M,18)^M>>>3},q.g1_256=function E(M){return t(M,17)^t(M,19)^M>>>10}},9875:(Fe,q,p)=>{"use strict";var e=p(7798),t=p(6698);function y(s,f){return!(55296!=(64512&s.charCodeAt(f))||f<0||f+1>=s.length)&&56320==(64512&s.charCodeAt(f+1))}function w(s){return(s>>>24|s>>>8&65280|s<<8&16711680|(255&s)<<24)>>>0}function P(s){return 1===s.length?"0"+s:s}function d(s){return 7===s.length?"0"+s:6===s.length?"00"+s:5===s.length?"000"+s:4===s.length?"0000"+s:3===s.length?"00000"+s:2===s.length?"000000"+s:1===s.length?"0000000"+s:s}q.inherits=t,q.toArray=function A(s,f){if(Array.isArray(s))return s.slice();if(!s)return[];var h=[];if("string"==typeof s)if(f){if("hex"===f)for((s=s.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(s="0"+s),D=0;D>6|192,h[C++]=63&O|128):y(s,D)?(O=65536+((1023&O)<<10)+(1023&s.charCodeAt(++D)),h[C++]=O>>18|240,h[C++]=O>>12&63|128,h[C++]=O>>6&63|128,h[C++]=63&O|128):(h[C++]=O>>12|224,h[C++]=O>>6&63|128,h[C++]=63&O|128)}else for(D=0;D>>0;return O},q.split32=function M(s,f){for(var h=new Array(4*s.length),C=0,D=0;C>>24,h[D+1]=O>>>16&255,h[D+2]=O>>>8&255,h[D+3]=255&O):(h[D+3]=O>>>24,h[D+2]=O>>>16&255,h[D+1]=O>>>8&255,h[D]=255&O)}return h},q.rotr32=function I(s,f){return s>>>f|s<<32-f},q.rotl32=function k(s,f){return s<>>32-f},q.sum32=function z(s,f){return s+f>>>0},q.sum32_3=function B(s,f,h){return s+f+h>>>0},q.sum32_4=function W(s,f,h,C){return s+f+h+C>>>0},q.sum32_5=function j(s,f,h,C,D){return s+f+h+C+D>>>0},q.sum64=function K(s,f,h,C){var v=C+s[f+1]>>>0;s[f]=(v>>0,s[f+1]=v},q.sum64_hi=function X(s,f,h,C){return(f+C>>>0>>0},q.sum64_lo=function ie(s,f,h,C){return f+C>>>0},q.sum64_4_hi=function se(s,f,h,C,D,O,v,r){var g=0,H=f;return g+=(H=H+C>>>0)>>0)>>0)>>0},q.sum64_4_lo=function ue(s,f,h,C,D,O,v,r){return f+C+O+r>>>0},q.sum64_5_hi=function ae(s,f,h,C,D,O,v,r,g,H){var R=0,ee=f;return R+=(ee=ee+C>>>0)>>0)>>0)>>0)>>0},q.sum64_5_lo=function Me(s,f,h,C,D,O,v,r,g,H){return f+C+O+r+H>>>0},q.rotr64_hi=function J(s,f,h){return(f<<32-h|s>>>h)>>>0},q.rotr64_lo=function he(s,f,h){return(s<<32-h|f>>>h)>>>0},q.shr64_hi=function S(s,f,h){return s>>>h},q.shr64_lo=function n(s,f,h){return(s<<32-h|f>>>h)>>>0}},2447:(Fe,q,p)=>{"use strict";var e=p(1076),t=p(8247),y=p(7798);function A(l){if(!(this instanceof A))return new A(l);this.hash=l.hash,this.predResist=!!l.predResist,this.outLen=this.hash.outSize,this.minEntropy=l.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var w=t.toArray(l.entropy,l.entropyEnc||"hex"),m=t.toArray(l.nonce,l.nonceEnc||"hex"),P=t.toArray(l.pers,l.persEnc||"hex");y(w.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(w,m,P)}Fe.exports=A,A.prototype._init=function(w,m,P){var d=w.concat(m).concat(P);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var E=0;E=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(w.concat(P||[])),this._reseed=1},A.prototype.generate=function(w,m,P,d){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof m&&(d=P,P=m,m=null),P&&(P=t.toArray(P,d||"hex"),this._update(P));for(var E=[];E.length{q.read=function(p,e,t,y,A){var l,w,m=8*A-y-1,P=(1<>1,E=-7,M=t?A-1:0,I=t?-1:1,k=p[e+M];for(M+=I,l=k&(1<<-E)-1,k>>=-E,E+=m;E>0;l=256*l+p[e+M],M+=I,E-=8);for(w=l&(1<<-E)-1,l>>=-E,E+=y;E>0;w=256*w+p[e+M],M+=I,E-=8);if(0===l)l=1-d;else{if(l===P)return w?NaN:1/0*(k?-1:1);w+=Math.pow(2,y),l-=d}return(k?-1:1)*w*Math.pow(2,l-y)},q.write=function(p,e,t,y,A,l){var w,m,P,d=8*l-A-1,E=(1<>1,I=23===A?Math.pow(2,-24)-Math.pow(2,-77):0,k=y?0:l-1,z=y?1:-1,B=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(m=isNaN(e)?1:0,w=E):(w=Math.floor(Math.log(e)/Math.LN2),e*(P=Math.pow(2,-w))<1&&(w--,P*=2),(e+=w+M>=1?I/P:I*Math.pow(2,1-M))*P>=2&&(w++,P/=2),w+M>=E?(m=0,w=E):w+M>=1?(m=(e*P-1)*Math.pow(2,A),w+=M):(m=e*Math.pow(2,M-1)*Math.pow(2,A),w=0));A>=8;p[t+k]=255&m,k+=z,m/=256,A-=8);for(w=w<0;p[t+k]=255&w,k+=z,w/=256,d-=8);p[t+k-z]|=128*B}},6698:Fe=>{Fe.exports="function"==typeof Object.create?function(p,e){e&&(p.super_=e,p.prototype=Object.create(e.prototype,{constructor:{value:p,enumerable:!1,writable:!0,configurable:!0}}))}:function(p,e){if(e){p.super_=e;var t=function(){};t.prototype=e.prototype,p.prototype=new t,p.prototype.constructor=p}}},5829:(Fe,q,p)=>{"use strict";var e=p(6698),t=p(380),y=p(843).Buffer,A=new Array(16);function l(){t.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function w(M,I){return M<>>32-I}function m(M,I,k,z,B,W,j){return w(M+(I&k|~I&z)+B+W|0,j)+I|0}function P(M,I,k,z,B,W,j){return w(M+(I&z|k&~z)+B+W|0,j)+I|0}function d(M,I,k,z,B,W,j){return w(M+(I^k^z)+B+W|0,j)+I|0}function E(M,I,k,z,B,W,j){return w(M+(k^(I|~z))+B+W|0,j)+I|0}e(l,t),l.prototype._update=function(){for(var M=A,I=0;I<16;++I)M[I]=this._block.readInt32LE(4*I);var k=this._a,z=this._b,B=this._c,W=this._d;k=m(k,z,B,W,M[0],3614090360,7),W=m(W,k,z,B,M[1],3905402710,12),B=m(B,W,k,z,M[2],606105819,17),z=m(z,B,W,k,M[3],3250441966,22),k=m(k,z,B,W,M[4],4118548399,7),W=m(W,k,z,B,M[5],1200080426,12),B=m(B,W,k,z,M[6],2821735955,17),z=m(z,B,W,k,M[7],4249261313,22),k=m(k,z,B,W,M[8],1770035416,7),W=m(W,k,z,B,M[9],2336552879,12),B=m(B,W,k,z,M[10],4294925233,17),z=m(z,B,W,k,M[11],2304563134,22),k=m(k,z,B,W,M[12],1804603682,7),W=m(W,k,z,B,M[13],4254626195,12),B=m(B,W,k,z,M[14],2792965006,17),k=P(k,z=m(z,B,W,k,M[15],1236535329,22),B,W,M[1],4129170786,5),W=P(W,k,z,B,M[6],3225465664,9),B=P(B,W,k,z,M[11],643717713,14),z=P(z,B,W,k,M[0],3921069994,20),k=P(k,z,B,W,M[5],3593408605,5),W=P(W,k,z,B,M[10],38016083,9),B=P(B,W,k,z,M[15],3634488961,14),z=P(z,B,W,k,M[4],3889429448,20),k=P(k,z,B,W,M[9],568446438,5),W=P(W,k,z,B,M[14],3275163606,9),B=P(B,W,k,z,M[3],4107603335,14),z=P(z,B,W,k,M[8],1163531501,20),k=P(k,z,B,W,M[13],2850285829,5),W=P(W,k,z,B,M[2],4243563512,9),B=P(B,W,k,z,M[7],1735328473,14),k=d(k,z=P(z,B,W,k,M[12],2368359562,20),B,W,M[5],4294588738,4),W=d(W,k,z,B,M[8],2272392833,11),B=d(B,W,k,z,M[11],1839030562,16),z=d(z,B,W,k,M[14],4259657740,23),k=d(k,z,B,W,M[1],2763975236,4),W=d(W,k,z,B,M[4],1272893353,11),B=d(B,W,k,z,M[7],4139469664,16),z=d(z,B,W,k,M[10],3200236656,23),k=d(k,z,B,W,M[13],681279174,4),W=d(W,k,z,B,M[0],3936430074,11),B=d(B,W,k,z,M[3],3572445317,16),z=d(z,B,W,k,M[6],76029189,23),k=d(k,z,B,W,M[9],3654602809,4),W=d(W,k,z,B,M[12],3873151461,11),B=d(B,W,k,z,M[15],530742520,16),k=E(k,z=d(z,B,W,k,M[2],3299628645,23),B,W,M[0],4096336452,6),W=E(W,k,z,B,M[7],1126891415,10),B=E(B,W,k,z,M[14],2878612391,15),z=E(z,B,W,k,M[5],4237533241,21),k=E(k,z,B,W,M[12],1700485571,6),W=E(W,k,z,B,M[3],2399980690,10),B=E(B,W,k,z,M[10],4293915773,15),z=E(z,B,W,k,M[1],2240044497,21),k=E(k,z,B,W,M[8],1873313359,6),W=E(W,k,z,B,M[15],4264355552,10),B=E(B,W,k,z,M[6],2734768916,15),z=E(z,B,W,k,M[13],1309151649,21),k=E(k,z,B,W,M[4],4149444226,6),W=E(W,k,z,B,M[11],3174756917,10),B=E(B,W,k,z,M[2],718787259,15),z=E(z,B,W,k,M[9],3951481745,21),this._a=this._a+k|0,this._b=this._b+z|0,this._c=this._c+B|0,this._d=this._d+W|0},l.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 M=y.allocUnsafe(16);return M.writeInt32LE(this._a,0),M.writeInt32LE(this._b,4),M.writeInt32LE(this._c,8),M.writeInt32LE(this._d,12),M},Fe.exports=l},8606:(Fe,q,p)=>{var e=p(303),t=p(82);function y(A){this.rand=A||new t.Rand}Fe.exports=y,y.create=function(l){return new y(l)},y.prototype._randbelow=function(l){var w=l.bitLength(),m=Math.ceil(w/8);do{var P=new e(this.rand.generate(m))}while(P.cmp(l)>=0);return P},y.prototype._randrange=function(l,w){var m=w.sub(l);return l.add(this._randbelow(m))},y.prototype.test=function(l,w,m){var P=l.bitLength(),d=e.mont(l),E=new e(1).toRed(d);w||(w=Math.max(1,P/48|0));for(var M=l.subn(1),I=0;!M.testn(I);I++);for(var k=l.shrn(I),z=M.toRed(d);w>0;w--){var W=this._randrange(new e(2),M);m&&m(W);var j=W.toRed(d).redPow(k);if(0!==j.cmp(E)&&0!==j.cmp(z)){for(var K=1;K0;w--){var z=this._randrange(new e(2),E),B=l.gcd(z);if(0!==B.cmpn(1))return B;var W=z.toRed(P).redPow(I);if(0!==W.cmp(d)&&0!==W.cmp(k)){for(var j=1;j=65&&s<=70?s-55:s>=97&&s<=102?s-87:s-48&15}function P(S,n,s){var f=m(S,s);return s-1>=n&&(f|=m(S,s-1)<<4),f}function d(S,n,s,f){for(var h=0,C=Math.min(S.length,s),D=n;D=49?O-49+10:O>=17?O-17+10:O}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,s){return n.cmp(s)>0?n:s},l.min=function(n,s){return n.cmp(s)<0?n:s},l.prototype._init=function(n,s,f){if("number"==typeof n)return this._initNumber(n,s,f);if("object"==typeof n)return this._initArray(n,s,f);"hex"===s&&(s=16),y(s===(0|s)&&s>=2&&s<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(D=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);else if("le"===f)for(h=0,C=0;h>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);return this.strip()},l.prototype._parseHex=function(n,s,f){this.length=Math.ceil((n.length-s)/6),this.words=new Array(this.length);for(var h=0;h=s;h-=2)O=P(n,s,h)<=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;else for(h=(n.length-s)%2==0?s+1:s;h=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,s,f){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=s)h++;h--,C=C/s|0;for(var D=n.length-f,O=D%h,v=Math.min(D,D-O)+f,r=0,g=f;g1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var E=["","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"],M=[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],I=[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(S,n,s){s.negative=n.negative^S.negative;var f=S.length+n.length|0;s.length=f,f=f-1|0;var h=0|S.words[0],C=0|n.words[0],D=h*C,v=D/67108864|0;s.words[0]=67108863&D;for(var r=1;r>>26,H=67108863&v,R=Math.min(r,n.length-1),ee=Math.max(0,r-S.length+1);ee<=R;ee++)g+=(D=(h=0|S.words[r-ee|0])*(C=0|n.words[ee])+H)/67108864|0,H=67108863&D;s.words[r]=0|H,v=0|g}return 0!==v?s.words[r]=0|v:s.length--,s.strip()}l.prototype.toString=function(n,s){var f;if(s=0|s||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,C=0,D=0;D>>24-h&16777215)||D!==this.length-1?E[6-v.length]+v+f:v+f,(h+=2)>=26&&(h-=26,D--)}for(0!==C&&(f=C.toString(16)+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=M[n],g=I[n];f="";var H=this.clone();for(H.negative=0;!H.isZero();){var R=H.modn(g).toString(n);f=(H=H.idivn(g)).isZero()?R+f:E[r-R.length]+R+f}for(this.isZero()&&(f="0"+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,s){return y(typeof w<"u"),this.toArrayLike(w,n,s)},l.prototype.toArray=function(n,s){return this.toArrayLike(Array,n,s)},l.prototype.toArrayLike=function(n,s,f){var h=this.byteLength(),C=f||Math.max(1,h);y(h<=C,"byte array longer than desired length"),y(C>0,"Requested array length <= 0"),this.strip();var v,r,D="le"===s,O=new n(C),g=this.clone();if(D){for(r=0;!g.isZero();r++)v=g.andln(255),g.iushrn(8),O[r]=v;for(;r=4096&&(f+=13,s>>>=13),s>=64&&(f+=7,s>>>=7),s>=8&&(f+=4,s>>>=4),s>=2&&(f+=2,s>>>=2),f+s},l.prototype._zeroBits=function(n){if(0===n)return 26;var s=n,f=0;return 8191&s||(f+=13,s>>>=13),127&s||(f+=7,s>>>=7),15&s||(f+=4,s>>>=4),3&s||(f+=2,s>>>=2),1&s||f++,f},l.prototype.bitLength=function(){var s=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+s},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,s=0;sn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var s;s=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var s,f;this.length>n.length?(s=this,f=n):(s=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){y("number"==typeof n&&n>=0);var s=0|Math.ceil(n/26),f=n%26;this._expand(s),f>0&&s--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,s){y("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=s?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var C=0,D=0;D>>26;for(;0!==C&&D>>26;if(this.length=f.length,0!==C)this.words[this.length]=C,this.length++;else if(f!==this)for(;Dn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var s=this.iadd(n);return n.negative=1,s._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,C=n):(h=n,C=this);for(var D=0,O=0;O>26,this.words[O]=67108863&s;for(;0!==D&&O>26,this.words[O]=67108863&s;if(0===D&&O>>13,De=0|h[1],ct=8191&De,Ke=De>>>13,Je=0|h[2],ye=8191&Je,fe=Je>>>13,de=0|h[3],xe=8191&de,le=de>>>13,pe=0|h[4],qe=8191&pe,re=pe>>>13,ve=0|h[5],ce=8191&ve,Ze=ve>>>13,We=0|h[6],Ct=8191&We,ut=We>>>13,It=0|h[7],Ae=8191&It,Be=It>>>13,rt=0|h[8],$e=8191&rt,Ie=rt>>>13,lt=0|h[9],Qe=8191<,St=lt>>>13,dt=0|C[0],te=8191&dt,Ue=dt>>>13,Bt=0|C[1],Ye=8191&Bt,je=Bt>>>13,Ft=0|C[2],xt=8191&Ft,Ot=Ft>>>13,yt=0|C[3],at=8191&yt,Ee=yt>>>13,nt=0|C[4],Ge=8191&nt,Xe=nt>>>13,gt=0|C[5],Le=8191>,be=gt>>>13,$=0|C[6],ne=8191&$,ke=$>>>13,Nt=0|C[7],At=8191&Nt,Wt=Nt>>>13,gi=0|C[8],ei=8191&gi,$t=gi>>>13,Fi=0|C[9],li=8191&Fi,ui=Fi>>>13;f.negative=n.negative^s.negative,f.length=19;var un=(O+(v=Math.imul(R,te))|0)+((8191&(r=(r=Math.imul(R,Ue))+Math.imul(ee,te)|0))<<13)|0;O=((g=Math.imul(ee,Ue))+(r>>>13)|0)+(un>>>26)|0,un&=67108863,v=Math.imul(ct,te),r=(r=Math.imul(ct,Ue))+Math.imul(Ke,te)|0,g=Math.imul(Ke,Ue);var Ki=(O+(v=v+Math.imul(R,Ye)|0)|0)+((8191&(r=(r=r+Math.imul(R,je)|0)+Math.imul(ee,Ye)|0))<<13)|0;O=((g=g+Math.imul(ee,je)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,v=Math.imul(ye,te),r=(r=Math.imul(ye,Ue))+Math.imul(fe,te)|0,g=Math.imul(fe,Ue),v=v+Math.imul(ct,Ye)|0,r=(r=r+Math.imul(ct,je)|0)+Math.imul(Ke,Ye)|0,g=g+Math.imul(Ke,je)|0;var Mi=(O+(v=v+Math.imul(R,xt)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ot)|0)+Math.imul(ee,xt)|0))<<13)|0;O=((g=g+Math.imul(ee,Ot)|0)+(r>>>13)|0)+(Mi>>>26)|0,Mi&=67108863,v=Math.imul(xe,te),r=(r=Math.imul(xe,Ue))+Math.imul(le,te)|0,g=Math.imul(le,Ue),v=v+Math.imul(ye,Ye)|0,r=(r=r+Math.imul(ye,je)|0)+Math.imul(fe,Ye)|0,g=g+Math.imul(fe,je)|0,v=v+Math.imul(ct,xt)|0,r=(r=r+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0,g=g+Math.imul(Ke,Ot)|0;var on=(O+(v=v+Math.imul(R,at)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ee)|0)+Math.imul(ee,at)|0))<<13)|0;O=((g=g+Math.imul(ee,Ee)|0)+(r>>>13)|0)+(on>>>26)|0,on&=67108863,v=Math.imul(qe,te),r=(r=Math.imul(qe,Ue))+Math.imul(re,te)|0,g=Math.imul(re,Ue),v=v+Math.imul(xe,Ye)|0,r=(r=r+Math.imul(xe,je)|0)+Math.imul(le,Ye)|0,g=g+Math.imul(le,je)|0,v=v+Math.imul(ye,xt)|0,r=(r=r+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,g=g+Math.imul(fe,Ot)|0,v=v+Math.imul(ct,at)|0,r=(r=r+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0,g=g+Math.imul(Ke,Ee)|0;var st=(O+(v=v+Math.imul(R,Ge)|0)|0)+((8191&(r=(r=r+Math.imul(R,Xe)|0)+Math.imul(ee,Ge)|0))<<13)|0;O=((g=g+Math.imul(ee,Xe)|0)+(r>>>13)|0)+(st>>>26)|0,st&=67108863,v=Math.imul(ce,te),r=(r=Math.imul(ce,Ue))+Math.imul(Ze,te)|0,g=Math.imul(Ze,Ue),v=v+Math.imul(qe,Ye)|0,r=(r=r+Math.imul(qe,je)|0)+Math.imul(re,Ye)|0,g=g+Math.imul(re,je)|0,v=v+Math.imul(xe,xt)|0,r=(r=r+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,g=g+Math.imul(le,Ot)|0,v=v+Math.imul(ye,at)|0,r=(r=r+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,g=g+Math.imul(fe,Ee)|0,v=v+Math.imul(ct,Ge)|0,r=(r=r+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0,g=g+Math.imul(Ke,Xe)|0;var si=(O+(v=v+Math.imul(R,Le)|0)|0)+((8191&(r=(r=r+Math.imul(R,be)|0)+Math.imul(ee,Le)|0))<<13)|0;O=((g=g+Math.imul(ee,be)|0)+(r>>>13)|0)+(si>>>26)|0,si&=67108863,v=Math.imul(Ct,te),r=(r=Math.imul(Ct,Ue))+Math.imul(ut,te)|0,g=Math.imul(ut,Ue),v=v+Math.imul(ce,Ye)|0,r=(r=r+Math.imul(ce,je)|0)+Math.imul(Ze,Ye)|0,g=g+Math.imul(Ze,je)|0,v=v+Math.imul(qe,xt)|0,r=(r=r+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,g=g+Math.imul(re,Ot)|0,v=v+Math.imul(xe,at)|0,r=(r=r+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,g=g+Math.imul(le,Ee)|0,v=v+Math.imul(ye,Ge)|0,r=(r=r+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,g=g+Math.imul(fe,Xe)|0,v=v+Math.imul(ct,Le)|0,r=(r=r+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0,g=g+Math.imul(Ke,be)|0;var Ce=(O+(v=v+Math.imul(R,ne)|0)|0)+((8191&(r=(r=r+Math.imul(R,ke)|0)+Math.imul(ee,ne)|0))<<13)|0;O=((g=g+Math.imul(ee,ke)|0)+(r>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,v=Math.imul(Ae,te),r=(r=Math.imul(Ae,Ue))+Math.imul(Be,te)|0,g=Math.imul(Be,Ue),v=v+Math.imul(Ct,Ye)|0,r=(r=r+Math.imul(Ct,je)|0)+Math.imul(ut,Ye)|0,g=g+Math.imul(ut,je)|0,v=v+Math.imul(ce,xt)|0,r=(r=r+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,g=g+Math.imul(Ze,Ot)|0,v=v+Math.imul(qe,at)|0,r=(r=r+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,g=g+Math.imul(re,Ee)|0,v=v+Math.imul(xe,Ge)|0,r=(r=r+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,g=g+Math.imul(le,Xe)|0,v=v+Math.imul(ye,Le)|0,r=(r=r+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,g=g+Math.imul(fe,be)|0,v=v+Math.imul(ct,ne)|0,r=(r=r+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0,g=g+Math.imul(Ke,ke)|0;var Mt=(O+(v=v+Math.imul(R,At)|0)|0)+((8191&(r=(r=r+Math.imul(R,Wt)|0)+Math.imul(ee,At)|0))<<13)|0;O=((g=g+Math.imul(ee,Wt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul($e,te),r=(r=Math.imul($e,Ue))+Math.imul(Ie,te)|0,g=Math.imul(Ie,Ue),v=v+Math.imul(Ae,Ye)|0,r=(r=r+Math.imul(Ae,je)|0)+Math.imul(Be,Ye)|0,g=g+Math.imul(Be,je)|0,v=v+Math.imul(Ct,xt)|0,r=(r=r+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,g=g+Math.imul(ut,Ot)|0,v=v+Math.imul(ce,at)|0,r=(r=r+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,g=g+Math.imul(Ze,Ee)|0,v=v+Math.imul(qe,Ge)|0,r=(r=r+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,g=g+Math.imul(re,Xe)|0,v=v+Math.imul(xe,Le)|0,r=(r=r+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,g=g+Math.imul(le,be)|0,v=v+Math.imul(ye,ne)|0,r=(r=r+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,g=g+Math.imul(fe,ke)|0,v=v+Math.imul(ct,At)|0,r=(r=r+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0,g=g+Math.imul(Ke,Wt)|0;var Ht=(O+(v=v+Math.imul(R,ei)|0)|0)+((8191&(r=(r=r+Math.imul(R,$t)|0)+Math.imul(ee,ei)|0))<<13)|0;O=((g=g+Math.imul(ee,$t)|0)+(r>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,v=Math.imul(Qe,te),r=(r=Math.imul(Qe,Ue))+Math.imul(St,te)|0,g=Math.imul(St,Ue),v=v+Math.imul($e,Ye)|0,r=(r=r+Math.imul($e,je)|0)+Math.imul(Ie,Ye)|0,g=g+Math.imul(Ie,je)|0,v=v+Math.imul(Ae,xt)|0,r=(r=r+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,g=g+Math.imul(Be,Ot)|0,v=v+Math.imul(Ct,at)|0,r=(r=r+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,g=g+Math.imul(ut,Ee)|0,v=v+Math.imul(ce,Ge)|0,r=(r=r+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,g=g+Math.imul(Ze,Xe)|0,v=v+Math.imul(qe,Le)|0,r=(r=r+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,g=g+Math.imul(re,be)|0,v=v+Math.imul(xe,ne)|0,r=(r=r+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,g=g+Math.imul(le,ke)|0,v=v+Math.imul(ye,At)|0,r=(r=r+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,g=g+Math.imul(fe,Wt)|0,v=v+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0,g=g+Math.imul(Ke,$t)|0;var Dt=(O+(v=v+Math.imul(R,li)|0)|0)+((8191&(r=(r=r+Math.imul(R,ui)|0)+Math.imul(ee,li)|0))<<13)|0;O=((g=g+Math.imul(ee,ui)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,v=Math.imul(Qe,Ye),r=(r=Math.imul(Qe,je))+Math.imul(St,Ye)|0,g=Math.imul(St,je),v=v+Math.imul($e,xt)|0,r=(r=r+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,g=g+Math.imul(Ie,Ot)|0,v=v+Math.imul(Ae,at)|0,r=(r=r+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,g=g+Math.imul(Be,Ee)|0,v=v+Math.imul(Ct,Ge)|0,r=(r=r+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,g=g+Math.imul(ut,Xe)|0,v=v+Math.imul(ce,Le)|0,r=(r=r+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,g=g+Math.imul(Ze,be)|0,v=v+Math.imul(qe,ne)|0,r=(r=r+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,g=g+Math.imul(re,ke)|0,v=v+Math.imul(xe,At)|0,r=(r=r+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,g=g+Math.imul(le,Wt)|0,v=v+Math.imul(ye,ei)|0,r=(r=r+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,g=g+Math.imul(fe,$t)|0;var kt=(O+(v=v+Math.imul(ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;O=((g=g+Math.imul(Ke,ui)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,v=Math.imul(Qe,xt),r=(r=Math.imul(Qe,Ot))+Math.imul(St,xt)|0,g=Math.imul(St,Ot),v=v+Math.imul($e,at)|0,r=(r=r+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,g=g+Math.imul(Ie,Ee)|0,v=v+Math.imul(Ae,Ge)|0,r=(r=r+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,g=g+Math.imul(Be,Xe)|0,v=v+Math.imul(Ct,Le)|0,r=(r=r+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,g=g+Math.imul(ut,be)|0,v=v+Math.imul(ce,ne)|0,r=(r=r+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,g=g+Math.imul(Ze,ke)|0,v=v+Math.imul(qe,At)|0,r=(r=r+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,g=g+Math.imul(re,Wt)|0,v=v+Math.imul(xe,ei)|0,r=(r=r+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,g=g+Math.imul(le,$t)|0;var Gt=(O+(v=v+Math.imul(ye,li)|0)|0)+((8191&(r=(r=r+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0))<<13)|0;O=((g=g+Math.imul(fe,ui)|0)+(r>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,v=Math.imul(Qe,at),r=(r=Math.imul(Qe,Ee))+Math.imul(St,at)|0,g=Math.imul(St,Ee),v=v+Math.imul($e,Ge)|0,r=(r=r+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,g=g+Math.imul(Ie,Xe)|0,v=v+Math.imul(Ae,Le)|0,r=(r=r+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,g=g+Math.imul(Be,be)|0,v=v+Math.imul(Ct,ne)|0,r=(r=r+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,g=g+Math.imul(ut,ke)|0,v=v+Math.imul(ce,At)|0,r=(r=r+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,g=g+Math.imul(Ze,Wt)|0,v=v+Math.imul(qe,ei)|0,r=(r=r+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,g=g+Math.imul(re,$t)|0;var oi=(O+(v=v+Math.imul(xe,li)|0)|0)+((8191&(r=(r=r+Math.imul(xe,ui)|0)+Math.imul(le,li)|0))<<13)|0;O=((g=g+Math.imul(le,ui)|0)+(r>>>13)|0)+(oi>>>26)|0,oi&=67108863,v=Math.imul(Qe,Ge),r=(r=Math.imul(Qe,Xe))+Math.imul(St,Ge)|0,g=Math.imul(St,Xe),v=v+Math.imul($e,Le)|0,r=(r=r+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,g=g+Math.imul(Ie,be)|0,v=v+Math.imul(Ae,ne)|0,r=(r=r+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,g=g+Math.imul(Be,ke)|0,v=v+Math.imul(Ct,At)|0,r=(r=r+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,g=g+Math.imul(ut,Wt)|0,v=v+Math.imul(ce,ei)|0,r=(r=r+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,g=g+Math.imul(Ze,$t)|0;var bi=(O+(v=v+Math.imul(qe,li)|0)|0)+((8191&(r=(r=r+Math.imul(qe,ui)|0)+Math.imul(re,li)|0))<<13)|0;O=((g=g+Math.imul(re,ui)|0)+(r>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Qe,Le),r=(r=Math.imul(Qe,be))+Math.imul(St,Le)|0,g=Math.imul(St,be),v=v+Math.imul($e,ne)|0,r=(r=r+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,g=g+Math.imul(Ie,ke)|0,v=v+Math.imul(Ae,At)|0,r=(r=r+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,g=g+Math.imul(Be,Wt)|0,v=v+Math.imul(Ct,ei)|0,r=(r=r+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,g=g+Math.imul(ut,$t)|0;var yi=(O+(v=v+Math.imul(ce,li)|0)|0)+((8191&(r=(r=r+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0))<<13)|0;O=((g=g+Math.imul(Ze,ui)|0)+(r>>>13)|0)+(yi>>>26)|0,yi&=67108863,v=Math.imul(Qe,ne),r=(r=Math.imul(Qe,ke))+Math.imul(St,ne)|0,g=Math.imul(St,ke),v=v+Math.imul($e,At)|0,r=(r=r+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,g=g+Math.imul(Ie,Wt)|0,v=v+Math.imul(Ae,ei)|0,r=(r=r+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,g=g+Math.imul(Be,$t)|0;var Oi=(O+(v=v+Math.imul(Ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0))<<13)|0;O=((g=g+Math.imul(ut,ui)|0)+(r>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,v=Math.imul(Qe,At),r=(r=Math.imul(Qe,Wt))+Math.imul(St,At)|0,g=Math.imul(St,Wt),v=v+Math.imul($e,ei)|0,r=(r=r+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,g=g+Math.imul(Ie,$t)|0;var Ui=(O+(v=v+Math.imul(Ae,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0))<<13)|0;O=((g=g+Math.imul(Be,ui)|0)+(r>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(Qe,ei),r=(r=Math.imul(Qe,$t))+Math.imul(St,ei)|0,g=Math.imul(St,$t);var Bi=(O+(v=v+Math.imul($e,li)|0)|0)+((8191&(r=(r=r+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0))<<13)|0;O=((g=g+Math.imul(Ie,ui)|0)+(r>>>13)|0)+(Bi>>>26)|0,Bi&=67108863;var qt=(O+(v=Math.imul(Qe,li))|0)+((8191&(r=(r=Math.imul(Qe,ui))+Math.imul(St,li)|0))<<13)|0;return O=((g=Math.imul(St,ui))+(r>>>13)|0)+(qt>>>26)|0,qt&=67108863,D[0]=un,D[1]=Ki,D[2]=Mi,D[3]=on,D[4]=st,D[5]=si,D[6]=Ce,D[7]=Mt,D[8]=Ht,D[9]=Dt,D[10]=kt,D[11]=Gt,D[12]=oi,D[13]=bi,D[14]=yi,D[15]=Oi,D[16]=Ui,D[17]=Bi,D[18]=qt,0!==O&&(D[19]=O,f.length++),f};function j(S,n,s){return(new K).mulp(S,n,s)}function K(S,n){this.x=S,this.y=n}Math.imul||(B=z),l.prototype.mulTo=function(n,s){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?B(this,n,s):h<63?z(this,n,s):h<1024?function W(S,n,s){s.negative=n.negative^S.negative,s.length=S.length+n.length;for(var f=0,h=0,C=0;C>>26)|0)>>>26,D&=67108863}s.words[C]=O,f=D,D=h}return 0!==f?s.words[C]=f:s.length--,s.strip()}(this,n,s):j(this,n,s),f},K.prototype.makeRBT=function(n){for(var s=new Array(n),f=l.prototype._countBits(n)-1,h=0;h>=1;return h},K.prototype.permute=function(n,s,f,h,C,D){for(var O=0;O>>=1)C++;return 1<>>=13),C>>>=13;for(D=2*s;D>=26,s+=h/67108864|0,s+=C>>>26,this.words[f]=67108863&C}return 0!==s&&(this.words[f]=s,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var s=function k(S){for(var n=new Array(S.bitLength()),s=0;s>>h}return n}(n);if(0===s.length)return new l(1);for(var f=this,h=0;h=0);var C,s=n%26,f=(n-s)/26,h=67108863>>>26-s<<26-s;if(0!==s){var D=0;for(C=0;C>>26-s}D&&(this.words[C]=D,this.length++)}if(0!==f){for(C=this.length-1;C>=0;C--)this.words[C+f]=this.words[C];for(C=0;C=0),h=s?(s-s%26)/26:0;var C=n%26,D=Math.min((n-C)/26,this.length),O=67108863^67108863>>>C<D)for(this.length-=D,r=0;r=0&&(0!==g||r>=h);r--){var H=0|this.words[r];this.words[r]=g<<26-C|H>>>C,g=H&O}return v&&0!==g&&(v.words[v.length++]=g),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,s,f){return y(0===this.negative),this.iushrn(n,s,f)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){y("number"==typeof n&&n>=0);var s=n%26,f=(n-s)/26;return!(this.length<=f||!(this.words[f]&1<=0);var s=n%26,f=(n-s)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==s&&f++,this.length=Math.min(f,this.length),0!==s&&(this.words[this.length-1]&=67108863^67108863>>>s<=67108864;s++)this.words[s]-=67108864,s===this.length-1?this.words[s+1]=1:this.words[s+1]++;return this.length=Math.max(this.length,s+1),this},l.prototype.isubn=function(n){if(y("number"==typeof n),y(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var s=0;s>26)-(v/67108864|0),this.words[C+f]=67108863&D}for(;C>26,this.words[C+f]=67108863&D;if(0===O)return this.strip();for(y(-1===O),O=0,C=0;C>26,this.words[C]=67108863&D;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,s){var f,h=this.clone(),C=n,D=0|C.words[C.length-1];0!=(f=26-this._countBits(D))&&(C=C.ushln(f),h.iushln(f),D=0|C.words[C.length-1]);var r,v=h.length-C.length;if("mod"!==s){(r=new l(null)).length=v+1,r.words=new Array(r.length);for(var g=0;g=0;R--){var ee=67108864*(0|h.words[C.length+R])+(0|h.words[C.length+R-1]);for(ee=Math.min(ee/D|0,67108863),h._ishlnsubmul(C,ee,R);0!==h.negative;)ee--,h.negative=0,h._ishlnsubmul(C,1,R),h.isZero()||(h.negative^=1);r&&(r.words[R]=ee)}return r&&r.strip(),h.strip(),"div"!==s&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},l.prototype.divmod=function(n,s,f){return y(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(D=this.neg().divmod(n,s),"mod"!==s&&(h=D.div.neg()),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(D=this.divmod(n.neg(),s),"mod"!==s&&(h=D.div.neg()),{div:h,mod:D.mod}):this.negative&n.negative?(D=this.neg().divmod(n.neg(),s),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.isub(n)),{div:D.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===s?{div:this.divn(n.words[0]),mod:null}:"mod"===s?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,s);var h,C,D},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var s=this.divmod(n);if(s.mod.isZero())return s.div;var f=0!==s.div.negative?s.mod.isub(n):s.mod,h=n.ushrn(1),C=n.andln(1),D=f.cmp(h);return D<0||1===C&&0===D?s.div:0!==s.div.negative?s.div.isubn(1):s.div.iaddn(1)},l.prototype.modn=function(n){y(n<=67108863);for(var s=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(s*f+(0|this.words[h]))%n;return f},l.prototype.idivn=function(n){y(n<=67108863);for(var s=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*s;this.words[f]=h/n|0,s=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){y(0===n.negative),y(!n.isZero());var s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=new l(0),O=new l(1),v=0;s.isEven()&&f.isEven();)s.iushrn(1),f.iushrn(1),++v;for(var r=f.clone(),g=s.clone();!s.isZero();){for(var H=0,R=1;!(s.words[0]&R)&&H<26;++H,R<<=1);if(H>0)for(s.iushrn(H);H-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(g)),h.iushrn(1),C.iushrn(1);for(var ee=0,De=1;!(f.words[0]&De)&&ee<26;++ee,De<<=1);if(ee>0)for(f.iushrn(ee);ee-- >0;)(D.isOdd()||O.isOdd())&&(D.iadd(r),O.isub(g)),D.iushrn(1),O.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(D),C.isub(O)):(f.isub(s),D.isub(h),O.isub(C))}return{a:D,b:O,gcd:f.iushln(v)}},l.prototype._invmp=function(n){y(0===n.negative),y(!n.isZero());var H,s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=f.clone();s.cmpn(1)>0&&f.cmpn(1)>0;){for(var O=0,v=1;!(s.words[0]&v)&&O<26;++O,v<<=1);if(O>0)for(s.iushrn(O);O-- >0;)h.isOdd()&&h.iadd(D),h.iushrn(1);for(var r=0,g=1;!(f.words[0]&g)&&r<26;++r,g<<=1);if(r>0)for(f.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(D),C.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(C)):(f.isub(s),C.isub(h))}return(H=0===s.cmpn(1)?h:C).cmpn(0)<0&&H.iadd(n),H},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var s=this.clone(),f=n.clone();s.negative=0,f.negative=0;for(var h=0;s.isEven()&&f.isEven();h++)s.iushrn(1),f.iushrn(1);for(;;){for(;s.isEven();)s.iushrn(1);for(;f.isEven();)f.iushrn(1);var C=s.cmp(f);if(C<0){var D=s;s=f,f=D}else if(0===C||0===f.cmpn(1))break;s.isub(f)}return f.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){y("number"==typeof n);var s=n%26,f=(n-s)/26,h=1<>>26,this.words[D]=O&=67108863}return 0!==C&&(this.words[D]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var f,s=n<0;if(0!==this.negative&&!s)return-1;if(0===this.negative&&s)return 1;if(this.strip(),this.length>1)f=1;else{s&&(n=-n),y(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],C=0|n.words[f];if(h!==C){hC&&(s=1);break}}return s},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new J(n)},l.prototype.toRed=function(n){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return y(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return y(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var X={k256:null,p224:null,p192:null,p25519:null};function ie(S,n){this.name=S,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function se(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function J(S){if("string"==typeof S){var n=l._prime(S);this.m=n.p,this.prime=n}else y(S.gtn(1),"modulus must be greater than 1"),this.m=S,this.prime=null}function he(S){J.call(this,S),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var f,s=n;do{this.split(s,this.tmp),f=(s=(s=this.imulK(s)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?s.isub(this.p):void 0!==s.strip?s.strip():s._strip(),s},ie.prototype.split=function(n,s){n.iushrn(this.n,0,s)},ie.prototype.imulK=function(n){return n.imul(this.k)},A(se,ie),se.prototype.split=function(n,s){for(var f=4194303,h=Math.min(n.length,9),C=0;C>>22,D=O}n.words[C-10]=D>>>=22,n.length-=0===D&&n.length>10?10:9},se.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var s=0,f=0;f>>=26,n.words[f]=C,s=h}return 0!==s&&(n.words[n.length++]=s),n},l._prime=function(n){if(X[n])return X[n];var s;if("k256"===n)s=new se;else if("p224"===n)s=new ue;else if("p192"===n)s=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);s=new Me}return X[n]=s,s},J.prototype._verify1=function(n){y(0===n.negative,"red works only with positives"),y(n.red,"red works only with red numbers")},J.prototype._verify2=function(n,s){y(0==(n.negative|s.negative),"red works only with positives"),y(n.red&&n.red===s.red,"red works only with red numbers")},J.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},J.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},J.prototype.add=function(n,s){this._verify2(n,s);var f=n.add(s);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},J.prototype.iadd=function(n,s){this._verify2(n,s);var f=n.iadd(s);return f.cmp(this.m)>=0&&f.isub(this.m),f},J.prototype.sub=function(n,s){this._verify2(n,s);var f=n.sub(s);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},J.prototype.isub=function(n,s){this._verify2(n,s);var f=n.isub(s);return f.cmpn(0)<0&&f.iadd(this.m),f},J.prototype.shl=function(n,s){return this._verify1(n),this.imod(n.ushln(s))},J.prototype.imul=function(n,s){return this._verify2(n,s),this.imod(n.imul(s))},J.prototype.mul=function(n,s){return this._verify2(n,s),this.imod(n.mul(s))},J.prototype.isqr=function(n){return this.imul(n,n.clone())},J.prototype.sqr=function(n){return this.mul(n,n)},J.prototype.sqrt=function(n){if(n.isZero())return n.clone();var s=this.m.andln(3);if(y(s%2==1),3===s){var f=this.m.add(new l(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);y(!h.isZero());var D=new l(1).toRed(this),O=D.redNeg(),v=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,v).cmp(O);)r.redIAdd(O);for(var g=this.pow(r,h),H=this.pow(n,h.addn(1).iushrn(1)),R=this.pow(n,h),ee=C;0!==R.cmp(D);){for(var De=R,ct=0;0!==De.cmp(D);ct++)De=De.redSqr();y(ct=0;C--){for(var g=s.words[C],H=r-1;H>=0;H--){var R=g>>H&1;D!==h[0]&&(D=this.sqr(D)),0!==R||0!==O?(O<<=1,O|=R,(4==++v||0===C&&0===H)&&(D=this.mul(D,h[O]),v=0,O=0)):v=0}r=26}return D},J.prototype.convertTo=function(n){var s=n.umod(this.m);return s===n?s.clone():s},J.prototype.convertFrom=function(n){var s=n.clone();return s.red=null,s},l.mont=function(n){return new he(n)},A(he,J),he.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},he.prototype.convertFrom=function(n){var s=this.imod(n.mul(this.rinv));return s.red=null,s},he.prototype.imul=function(n,s){if(n.isZero()||s.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.mul=function(n,s){if(n.isZero()||s.isZero())return new l(0)._forceRed(this);var f=n.mul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},7798:Fe=>{function q(p,e){if(!p)throw new Error(e||"Assertion failed")}Fe.exports=q,q.equal=function(e,t,y){if(e!=t)throw new Error(y||"Assertion failed: "+e+" != "+t)}},8247:(Fe,q)=>{"use strict";var p=q;function t(A){return 1===A.length?"0"+A:A}function y(A){for(var l="",w=0;w>8,E=255&P;d?w.push(d,E):w.push(E)}return w},p.zero2=t,p.toHex=y,p.encode=function(l,w){return"hex"===w?y(l):l}},3439:(Fe,q,p)=>{"use strict";Object.defineProperty(q,"__esModule",{value:!0});var e=p(6981);Object.keys(e).forEach(function(t){"default"!==t&&Object.defineProperty(q,t,{enumerable:!0,get:function(){return e[t]}})})},1322:(Fe,q,p)=>{"use strict";var e=p(7414);q.certificate=p(7290);var t=e.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())});q.RSAPrivateKey=t;var y=e.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});q.RSAPublicKey=y;var A=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(l),this.key("subjectPublicKey").bitstr())});q.PublicKey=A;var l=e.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())}),w=e.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(l),this.key("subjectPrivateKey").octstr())});q.PrivateKey=w;var m=e.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())});q.EncryptedPrivateKey=m;var P=e.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())});q.DSAPrivateKey=P,q.DSAparam=e.define("DSAparam",function(){this.int()});var d=e.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(E),this.key("publicKey").optional().explicit(1).bitstr())});q.ECPrivateKey=d;var E=e.define("ECParameters",function(){this.choice({namedCurve:this.objid()})});q.signature=e.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},7290:(Fe,q,p)=>{"use strict";var e=p(7414),t=e.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),y=e.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),A=e.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(A),this.key("subjectPublicKey").bitstr())}),w=e.define("RelativeDistinguishedName",function(){this.setof(y)}),m=e.define("RDNSequence",function(){this.seqof(w)}),P=e.define("Name",function(){this.choice({rdnSequence:this.use(m)})}),d=e.define("Validity",function(){this.seq().obj(this.key("notBefore").use(t),this.key("notAfter").use(t))}),E=e.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),M=e.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(A),this.key("issuer").use(P),this.key("validity").use(d),this.key("subject").use(P),this.key("subjectPublicKeyInfo").use(l),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(E).optional())}),I=e.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(M),this.key("signatureAlgorithm").use(A),this.key("signatureValue").bitstr())});Fe.exports=I},7520:(Fe,q,p)=>{var e=/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,t=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,y=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,A=p(6505),l=p(2489),w=p(843).Buffer;Fe.exports=function(m,P){var M,d=m.toString(),E=d.match(e);if(E){var k="aes"+E[1],z=w.from(E[2],"hex"),B=w.from(E[3].replace(/[\r\n]/g,""),"base64"),W=A(P,z.slice(0,8),parseInt(E[1],10)).key,j=[],K=l.createDecipheriv(k,W,z);j.push(K.update(B)),j.push(K.final()),M=w.concat(j)}else{var I=d.match(y);M=w.from(I[2].replace(/[\r\n]/g,""),"base64")}return{tag:d.match(t)[1],data:M}}},7983:(Fe,q,p)=>{var e=p(1322),t=p(2562),y=p(7520),A=p(2489),l=p(7100),w=p(843).Buffer;function m(d){var E;"object"==typeof d&&!w.isBuffer(d)&&(E=d.passphrase,d=d.key),"string"==typeof d&&(d=w.from(d));var z,B,M=y(d,E),I=M.tag,k=M.data;switch(I){case"CERTIFICATE":B=e.certificate.decode(k,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(B||(B=e.PublicKey.decode(k,"der")),z=B.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPublicKey.decode(B.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return B.subjectPrivateKey=B.subjectPublicKey,{type:"ec",data:B};case"1.2.840.10040.4.1":return B.algorithm.params.pub_key=e.DSAparam.decode(B.subjectPublicKey.data,"der"),{type:"dsa",data:B.algorithm.params};default:throw new Error("unknown key id "+z)}case"ENCRYPTED PRIVATE KEY":k=function P(d,E){var M=d.algorithm.decrypt.kde.kdeparams.salt,I=parseInt(d.algorithm.decrypt.kde.kdeparams.iters.toString(),10),k=t[d.algorithm.decrypt.cipher.algo.join(".")],z=d.algorithm.decrypt.cipher.iv,B=d.subjectPrivateKey,W=parseInt(k.split("-")[1],10)/8,j=l.pbkdf2Sync(E,M,I,W,"sha1"),K=A.createDecipheriv(k,j,z),X=[];return X.push(K.update(B)),X.push(K.final()),w.concat(X)}(k=e.EncryptedPrivateKey.decode(k,"der"),E);case"PRIVATE KEY":switch(z=(B=e.PrivateKey.decode(k,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPrivateKey.decode(B.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:B.algorithm.curve,privateKey:e.ECPrivateKey.decode(B.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return B.algorithm.params.priv_key=e.DSAparam.decode(B.subjectPrivateKey,"der"),{type:"dsa",params:B.algorithm.params};default:throw new Error("unknown key id "+z)}case"RSA PUBLIC KEY":return e.RSAPublicKey.decode(k,"der");case"RSA PRIVATE KEY":return e.RSAPrivateKey.decode(k,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:e.DSAPrivateKey.decode(k,"der")};case"EC PRIVATE KEY":return{curve:(k=e.ECPrivateKey.decode(k,"der")).parameters.value,privateKey:k.privateKey};default:throw new Error("unknown key type "+I)}}Fe.exports=m,m.signature=e.signature},7100:(Fe,q,p)=>{q.pbkdf2=p(8781),q.pbkdf2Sync=p(8047)},8781:(Fe,q,p)=>{var w,M,e=p(843).Buffer,t=p(4881),y=p(7107),A=p(8047),l=p(7306),m=global.crypto&&global.crypto.subtle,P={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"},d=[];function I(){return M||(M=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function k(B,W,j,K,X){return m.importKey("raw",B,{name:"PBKDF2"},!1,["deriveBits"]).then(function(ie){return m.deriveBits({name:"PBKDF2",salt:W,iterations:j,hash:{name:X}},ie,K<<3)}).then(function(ie){return e.from(ie)})}Fe.exports=function(B,W,j,K,X,ie){"function"==typeof X&&(ie=X,X=void 0);var se=P[(X=X||"sha1").toLowerCase()];if(se&&"function"==typeof global.Promise){if(t(j,K),B=l(B,y,"Password"),W=l(W,y,"Salt"),"function"!=typeof ie)throw new Error("No callback provided to pbkdf2");!function z(B,W){B.then(function(j){I()(function(){W(null,j)})},function(j){I()(function(){W(j)})})}(function E(B){if(global.process&&!global.process.browser||!m||!m.importKey||!m.deriveBits)return Promise.resolve(!1);if(void 0!==d[B])return d[B];var W=k(w=w||e.alloc(8),w,10,128,B).then(function(){return!0}).catch(function(){return!1});return d[B]=W,W}(se).then(function(ue){return ue?k(B,W,j,K,se):A(B,W,j,K,X)}),ie)}else I()(function(){var ue;try{ue=A(B,W,j,K,X)}catch(ae){return ie(ae)}ie(null,ue)})}},7107:Fe=>{var q;q=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",Fe.exports=q},4881:Fe=>{var q=Math.pow(2,30)-1;Fe.exports=function(p,e){if("number"!=typeof p)throw new TypeError("Iterations not a number");if(p<0)throw new TypeError("Bad iterations");if("number"!=typeof e)throw new TypeError("Key length not a number");if(e<0||e>q||e!=e)throw new TypeError("Bad key length")}},8047:(Fe,q,p)=>{var e=p(7588),t=p(9706),y=p(7965),A=p(843).Buffer,l=p(4881),w=p(7107),m=p(7306),P=A.alloc(128),d={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function E(k,z,B){var W=function M(k){return"rmd160"===k||"ripemd160"===k?function B(W){return(new t).update(W).digest()}:"md5"===k?e:function z(W){return y(k).update(W).digest()}}(k),j="sha512"===k||"sha384"===k?128:64;z.length>j?z=W(z):z.length{var e=p(843).Buffer;Fe.exports=function(t,y,A){if(e.isBuffer(t))return t;if("string"==typeof t)return e.from(t,y);if(ArrayBuffer.isView(t))return e.from(t.buffer);throw new TypeError(A+" must be a string, a Buffer, a typed array or a DataView")}},7050:(Fe,q,p)=>{q.publicEncrypt=p(5737),q.privateDecrypt=p(5252),q.privateEncrypt=function(t,y){return q.publicEncrypt(t,y,!0)},q.publicDecrypt=function(t,y){return q.privateDecrypt(t,y,!0)}},6517:(Fe,q,p)=>{var e=p(6362),t=p(843).Buffer;function y(A){var l=t.allocUnsafe(4);return l.writeUInt32BE(A,0),l}Fe.exports=function(A,l){for(var P,w=t.alloc(0),m=0;w.length=65&&s<=70?s-55:s>=97&&s<=102?s-87:s-48&15}function P(S,n,s){var f=m(S,s);return s-1>=n&&(f|=m(S,s-1)<<4),f}function d(S,n,s,f){for(var h=0,C=Math.min(S.length,s),D=n;D=49?O-49+10:O>=17?O-17+10:O}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,s){return n.cmp(s)>0?n:s},l.min=function(n,s){return n.cmp(s)<0?n:s},l.prototype._init=function(n,s,f){if("number"==typeof n)return this._initNumber(n,s,f);if("object"==typeof n)return this._initArray(n,s,f);"hex"===s&&(s=16),y(s===(0|s)&&s>=2&&s<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(D=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);else if("le"===f)for(h=0,C=0;h>>26-O&67108863,(O+=24)>=26&&(O-=26,C++);return this.strip()},l.prototype._parseHex=function(n,s,f){this.length=Math.ceil((n.length-s)/6),this.words=new Array(this.length);for(var h=0;h=s;h-=2)O=P(n,s,h)<=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;else for(h=(n.length-s)%2==0?s+1:s;h=18?(C-=18,this.words[D+=1]|=O>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,s,f){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=s)h++;h--,C=C/s|0;for(var D=n.length-f,O=D%h,v=Math.min(D,D-O)+f,r=0,g=f;g1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var E=["","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"],M=[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],I=[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(S,n,s){s.negative=n.negative^S.negative;var f=S.length+n.length|0;s.length=f,f=f-1|0;var h=0|S.words[0],C=0|n.words[0],D=h*C,v=D/67108864|0;s.words[0]=67108863&D;for(var r=1;r>>26,H=67108863&v,R=Math.min(r,n.length-1),ee=Math.max(0,r-S.length+1);ee<=R;ee++)g+=(D=(h=0|S.words[r-ee|0])*(C=0|n.words[ee])+H)/67108864|0,H=67108863&D;s.words[r]=0|H,v=0|g}return 0!==v?s.words[r]=0|v:s.length--,s.strip()}l.prototype.toString=function(n,s){var f;if(s=0|s||1,16===(n=n||10)||"hex"===n){f="";for(var h=0,C=0,D=0;D>>24-h&16777215)||D!==this.length-1?E[6-v.length]+v+f:v+f,(h+=2)>=26&&(h-=26,D--)}for(0!==C&&(f=C.toString(16)+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}if(n===(0|n)&&n>=2&&n<=36){var r=M[n],g=I[n];f="";var H=this.clone();for(H.negative=0;!H.isZero();){var R=H.modn(g).toString(n);f=(H=H.idivn(g)).isZero()?R+f:E[r-R.length]+R+f}for(this.isZero()&&(f="0"+f);f.length%s!=0;)f="0"+f;return 0!==this.negative&&(f="-"+f),f}y(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&y(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,s){return y(typeof w<"u"),this.toArrayLike(w,n,s)},l.prototype.toArray=function(n,s){return this.toArrayLike(Array,n,s)},l.prototype.toArrayLike=function(n,s,f){var h=this.byteLength(),C=f||Math.max(1,h);y(h<=C,"byte array longer than desired length"),y(C>0,"Requested array length <= 0"),this.strip();var v,r,D="le"===s,O=new n(C),g=this.clone();if(D){for(r=0;!g.isZero();r++)v=g.andln(255),g.iushrn(8),O[r]=v;for(;r=4096&&(f+=13,s>>>=13),s>=64&&(f+=7,s>>>=7),s>=8&&(f+=4,s>>>=4),s>=2&&(f+=2,s>>>=2),f+s},l.prototype._zeroBits=function(n){if(0===n)return 26;var s=n,f=0;return 8191&s||(f+=13,s>>>=13),127&s||(f+=7,s>>>=7),15&s||(f+=4,s>>>=4),3&s||(f+=2,s>>>=2),1&s||f++,f},l.prototype.bitLength=function(){var s=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+s},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,s=0;sn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var s;s=this.length>n.length?n:this;for(var f=0;fn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var s,f;this.length>n.length?(s=this,f=n):(s=n,f=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){y("number"==typeof n&&n>=0);var s=0|Math.ceil(n/26),f=n%26;this._expand(s),f>0&&s--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-f),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,s){y("number"==typeof n&&n>=0);var f=n/26|0,h=n%26;return this._expand(f+1),this.words[f]=s?this.words[f]|1<n.length?(f=this,h=n):(f=n,h=this);for(var C=0,D=0;D>>26;for(;0!==C&&D>>26;if(this.length=f.length,0!==C)this.words[this.length]=C,this.length++;else if(f!==this)for(;Dn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var s=this.iadd(n);return n.negative=1,s._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,f=this.cmp(n);if(0===f)return this.negative=0,this.length=1,this.words[0]=0,this;f>0?(h=this,C=n):(h=n,C=this);for(var D=0,O=0;O>26,this.words[O]=67108863&s;for(;0!==D&&O>26,this.words[O]=67108863&s;if(0===D&&O>>13,De=0|h[1],ct=8191&De,Ke=De>>>13,Je=0|h[2],ye=8191&Je,fe=Je>>>13,de=0|h[3],xe=8191&de,le=de>>>13,pe=0|h[4],qe=8191&pe,re=pe>>>13,ve=0|h[5],ce=8191&ve,Ze=ve>>>13,We=0|h[6],Ct=8191&We,ut=We>>>13,It=0|h[7],Ae=8191&It,Be=It>>>13,rt=0|h[8],$e=8191&rt,Ie=rt>>>13,lt=0|h[9],Qe=8191<,St=lt>>>13,dt=0|C[0],te=8191&dt,Ue=dt>>>13,Bt=0|C[1],Ye=8191&Bt,je=Bt>>>13,Ft=0|C[2],xt=8191&Ft,Ot=Ft>>>13,yt=0|C[3],at=8191&yt,Ee=yt>>>13,nt=0|C[4],Ge=8191&nt,Xe=nt>>>13,gt=0|C[5],Le=8191>,be=gt>>>13,$=0|C[6],ne=8191&$,ke=$>>>13,Nt=0|C[7],At=8191&Nt,Wt=Nt>>>13,gi=0|C[8],ei=8191&gi,$t=gi>>>13,Fi=0|C[9],li=8191&Fi,ui=Fi>>>13;f.negative=n.negative^s.negative,f.length=19;var un=(O+(v=Math.imul(R,te))|0)+((8191&(r=(r=Math.imul(R,Ue))+Math.imul(ee,te)|0))<<13)|0;O=((g=Math.imul(ee,Ue))+(r>>>13)|0)+(un>>>26)|0,un&=67108863,v=Math.imul(ct,te),r=(r=Math.imul(ct,Ue))+Math.imul(Ke,te)|0,g=Math.imul(Ke,Ue);var Ki=(O+(v=v+Math.imul(R,Ye)|0)|0)+((8191&(r=(r=r+Math.imul(R,je)|0)+Math.imul(ee,Ye)|0))<<13)|0;O=((g=g+Math.imul(ee,je)|0)+(r>>>13)|0)+(Ki>>>26)|0,Ki&=67108863,v=Math.imul(ye,te),r=(r=Math.imul(ye,Ue))+Math.imul(fe,te)|0,g=Math.imul(fe,Ue),v=v+Math.imul(ct,Ye)|0,r=(r=r+Math.imul(ct,je)|0)+Math.imul(Ke,Ye)|0,g=g+Math.imul(Ke,je)|0;var Mi=(O+(v=v+Math.imul(R,xt)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ot)|0)+Math.imul(ee,xt)|0))<<13)|0;O=((g=g+Math.imul(ee,Ot)|0)+(r>>>13)|0)+(Mi>>>26)|0,Mi&=67108863,v=Math.imul(xe,te),r=(r=Math.imul(xe,Ue))+Math.imul(le,te)|0,g=Math.imul(le,Ue),v=v+Math.imul(ye,Ye)|0,r=(r=r+Math.imul(ye,je)|0)+Math.imul(fe,Ye)|0,g=g+Math.imul(fe,je)|0,v=v+Math.imul(ct,xt)|0,r=(r=r+Math.imul(ct,Ot)|0)+Math.imul(Ke,xt)|0,g=g+Math.imul(Ke,Ot)|0;var on=(O+(v=v+Math.imul(R,at)|0)|0)+((8191&(r=(r=r+Math.imul(R,Ee)|0)+Math.imul(ee,at)|0))<<13)|0;O=((g=g+Math.imul(ee,Ee)|0)+(r>>>13)|0)+(on>>>26)|0,on&=67108863,v=Math.imul(qe,te),r=(r=Math.imul(qe,Ue))+Math.imul(re,te)|0,g=Math.imul(re,Ue),v=v+Math.imul(xe,Ye)|0,r=(r=r+Math.imul(xe,je)|0)+Math.imul(le,Ye)|0,g=g+Math.imul(le,je)|0,v=v+Math.imul(ye,xt)|0,r=(r=r+Math.imul(ye,Ot)|0)+Math.imul(fe,xt)|0,g=g+Math.imul(fe,Ot)|0,v=v+Math.imul(ct,at)|0,r=(r=r+Math.imul(ct,Ee)|0)+Math.imul(Ke,at)|0,g=g+Math.imul(Ke,Ee)|0;var st=(O+(v=v+Math.imul(R,Ge)|0)|0)+((8191&(r=(r=r+Math.imul(R,Xe)|0)+Math.imul(ee,Ge)|0))<<13)|0;O=((g=g+Math.imul(ee,Xe)|0)+(r>>>13)|0)+(st>>>26)|0,st&=67108863,v=Math.imul(ce,te),r=(r=Math.imul(ce,Ue))+Math.imul(Ze,te)|0,g=Math.imul(Ze,Ue),v=v+Math.imul(qe,Ye)|0,r=(r=r+Math.imul(qe,je)|0)+Math.imul(re,Ye)|0,g=g+Math.imul(re,je)|0,v=v+Math.imul(xe,xt)|0,r=(r=r+Math.imul(xe,Ot)|0)+Math.imul(le,xt)|0,g=g+Math.imul(le,Ot)|0,v=v+Math.imul(ye,at)|0,r=(r=r+Math.imul(ye,Ee)|0)+Math.imul(fe,at)|0,g=g+Math.imul(fe,Ee)|0,v=v+Math.imul(ct,Ge)|0,r=(r=r+Math.imul(ct,Xe)|0)+Math.imul(Ke,Ge)|0,g=g+Math.imul(Ke,Xe)|0;var si=(O+(v=v+Math.imul(R,Le)|0)|0)+((8191&(r=(r=r+Math.imul(R,be)|0)+Math.imul(ee,Le)|0))<<13)|0;O=((g=g+Math.imul(ee,be)|0)+(r>>>13)|0)+(si>>>26)|0,si&=67108863,v=Math.imul(Ct,te),r=(r=Math.imul(Ct,Ue))+Math.imul(ut,te)|0,g=Math.imul(ut,Ue),v=v+Math.imul(ce,Ye)|0,r=(r=r+Math.imul(ce,je)|0)+Math.imul(Ze,Ye)|0,g=g+Math.imul(Ze,je)|0,v=v+Math.imul(qe,xt)|0,r=(r=r+Math.imul(qe,Ot)|0)+Math.imul(re,xt)|0,g=g+Math.imul(re,Ot)|0,v=v+Math.imul(xe,at)|0,r=(r=r+Math.imul(xe,Ee)|0)+Math.imul(le,at)|0,g=g+Math.imul(le,Ee)|0,v=v+Math.imul(ye,Ge)|0,r=(r=r+Math.imul(ye,Xe)|0)+Math.imul(fe,Ge)|0,g=g+Math.imul(fe,Xe)|0,v=v+Math.imul(ct,Le)|0,r=(r=r+Math.imul(ct,be)|0)+Math.imul(Ke,Le)|0,g=g+Math.imul(Ke,be)|0;var Ce=(O+(v=v+Math.imul(R,ne)|0)|0)+((8191&(r=(r=r+Math.imul(R,ke)|0)+Math.imul(ee,ne)|0))<<13)|0;O=((g=g+Math.imul(ee,ke)|0)+(r>>>13)|0)+(Ce>>>26)|0,Ce&=67108863,v=Math.imul(Ae,te),r=(r=Math.imul(Ae,Ue))+Math.imul(Be,te)|0,g=Math.imul(Be,Ue),v=v+Math.imul(Ct,Ye)|0,r=(r=r+Math.imul(Ct,je)|0)+Math.imul(ut,Ye)|0,g=g+Math.imul(ut,je)|0,v=v+Math.imul(ce,xt)|0,r=(r=r+Math.imul(ce,Ot)|0)+Math.imul(Ze,xt)|0,g=g+Math.imul(Ze,Ot)|0,v=v+Math.imul(qe,at)|0,r=(r=r+Math.imul(qe,Ee)|0)+Math.imul(re,at)|0,g=g+Math.imul(re,Ee)|0,v=v+Math.imul(xe,Ge)|0,r=(r=r+Math.imul(xe,Xe)|0)+Math.imul(le,Ge)|0,g=g+Math.imul(le,Xe)|0,v=v+Math.imul(ye,Le)|0,r=(r=r+Math.imul(ye,be)|0)+Math.imul(fe,Le)|0,g=g+Math.imul(fe,be)|0,v=v+Math.imul(ct,ne)|0,r=(r=r+Math.imul(ct,ke)|0)+Math.imul(Ke,ne)|0,g=g+Math.imul(Ke,ke)|0;var Mt=(O+(v=v+Math.imul(R,At)|0)|0)+((8191&(r=(r=r+Math.imul(R,Wt)|0)+Math.imul(ee,At)|0))<<13)|0;O=((g=g+Math.imul(ee,Wt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,v=Math.imul($e,te),r=(r=Math.imul($e,Ue))+Math.imul(Ie,te)|0,g=Math.imul(Ie,Ue),v=v+Math.imul(Ae,Ye)|0,r=(r=r+Math.imul(Ae,je)|0)+Math.imul(Be,Ye)|0,g=g+Math.imul(Be,je)|0,v=v+Math.imul(Ct,xt)|0,r=(r=r+Math.imul(Ct,Ot)|0)+Math.imul(ut,xt)|0,g=g+Math.imul(ut,Ot)|0,v=v+Math.imul(ce,at)|0,r=(r=r+Math.imul(ce,Ee)|0)+Math.imul(Ze,at)|0,g=g+Math.imul(Ze,Ee)|0,v=v+Math.imul(qe,Ge)|0,r=(r=r+Math.imul(qe,Xe)|0)+Math.imul(re,Ge)|0,g=g+Math.imul(re,Xe)|0,v=v+Math.imul(xe,Le)|0,r=(r=r+Math.imul(xe,be)|0)+Math.imul(le,Le)|0,g=g+Math.imul(le,be)|0,v=v+Math.imul(ye,ne)|0,r=(r=r+Math.imul(ye,ke)|0)+Math.imul(fe,ne)|0,g=g+Math.imul(fe,ke)|0,v=v+Math.imul(ct,At)|0,r=(r=r+Math.imul(ct,Wt)|0)+Math.imul(Ke,At)|0,g=g+Math.imul(Ke,Wt)|0;var Ht=(O+(v=v+Math.imul(R,ei)|0)|0)+((8191&(r=(r=r+Math.imul(R,$t)|0)+Math.imul(ee,ei)|0))<<13)|0;O=((g=g+Math.imul(ee,$t)|0)+(r>>>13)|0)+(Ht>>>26)|0,Ht&=67108863,v=Math.imul(Qe,te),r=(r=Math.imul(Qe,Ue))+Math.imul(St,te)|0,g=Math.imul(St,Ue),v=v+Math.imul($e,Ye)|0,r=(r=r+Math.imul($e,je)|0)+Math.imul(Ie,Ye)|0,g=g+Math.imul(Ie,je)|0,v=v+Math.imul(Ae,xt)|0,r=(r=r+Math.imul(Ae,Ot)|0)+Math.imul(Be,xt)|0,g=g+Math.imul(Be,Ot)|0,v=v+Math.imul(Ct,at)|0,r=(r=r+Math.imul(Ct,Ee)|0)+Math.imul(ut,at)|0,g=g+Math.imul(ut,Ee)|0,v=v+Math.imul(ce,Ge)|0,r=(r=r+Math.imul(ce,Xe)|0)+Math.imul(Ze,Ge)|0,g=g+Math.imul(Ze,Xe)|0,v=v+Math.imul(qe,Le)|0,r=(r=r+Math.imul(qe,be)|0)+Math.imul(re,Le)|0,g=g+Math.imul(re,be)|0,v=v+Math.imul(xe,ne)|0,r=(r=r+Math.imul(xe,ke)|0)+Math.imul(le,ne)|0,g=g+Math.imul(le,ke)|0,v=v+Math.imul(ye,At)|0,r=(r=r+Math.imul(ye,Wt)|0)+Math.imul(fe,At)|0,g=g+Math.imul(fe,Wt)|0,v=v+Math.imul(ct,ei)|0,r=(r=r+Math.imul(ct,$t)|0)+Math.imul(Ke,ei)|0,g=g+Math.imul(Ke,$t)|0;var Dt=(O+(v=v+Math.imul(R,li)|0)|0)+((8191&(r=(r=r+Math.imul(R,ui)|0)+Math.imul(ee,li)|0))<<13)|0;O=((g=g+Math.imul(ee,ui)|0)+(r>>>13)|0)+(Dt>>>26)|0,Dt&=67108863,v=Math.imul(Qe,Ye),r=(r=Math.imul(Qe,je))+Math.imul(St,Ye)|0,g=Math.imul(St,je),v=v+Math.imul($e,xt)|0,r=(r=r+Math.imul($e,Ot)|0)+Math.imul(Ie,xt)|0,g=g+Math.imul(Ie,Ot)|0,v=v+Math.imul(Ae,at)|0,r=(r=r+Math.imul(Ae,Ee)|0)+Math.imul(Be,at)|0,g=g+Math.imul(Be,Ee)|0,v=v+Math.imul(Ct,Ge)|0,r=(r=r+Math.imul(Ct,Xe)|0)+Math.imul(ut,Ge)|0,g=g+Math.imul(ut,Xe)|0,v=v+Math.imul(ce,Le)|0,r=(r=r+Math.imul(ce,be)|0)+Math.imul(Ze,Le)|0,g=g+Math.imul(Ze,be)|0,v=v+Math.imul(qe,ne)|0,r=(r=r+Math.imul(qe,ke)|0)+Math.imul(re,ne)|0,g=g+Math.imul(re,ke)|0,v=v+Math.imul(xe,At)|0,r=(r=r+Math.imul(xe,Wt)|0)+Math.imul(le,At)|0,g=g+Math.imul(le,Wt)|0,v=v+Math.imul(ye,ei)|0,r=(r=r+Math.imul(ye,$t)|0)+Math.imul(fe,ei)|0,g=g+Math.imul(fe,$t)|0;var kt=(O+(v=v+Math.imul(ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(ct,ui)|0)+Math.imul(Ke,li)|0))<<13)|0;O=((g=g+Math.imul(Ke,ui)|0)+(r>>>13)|0)+(kt>>>26)|0,kt&=67108863,v=Math.imul(Qe,xt),r=(r=Math.imul(Qe,Ot))+Math.imul(St,xt)|0,g=Math.imul(St,Ot),v=v+Math.imul($e,at)|0,r=(r=r+Math.imul($e,Ee)|0)+Math.imul(Ie,at)|0,g=g+Math.imul(Ie,Ee)|0,v=v+Math.imul(Ae,Ge)|0,r=(r=r+Math.imul(Ae,Xe)|0)+Math.imul(Be,Ge)|0,g=g+Math.imul(Be,Xe)|0,v=v+Math.imul(Ct,Le)|0,r=(r=r+Math.imul(Ct,be)|0)+Math.imul(ut,Le)|0,g=g+Math.imul(ut,be)|0,v=v+Math.imul(ce,ne)|0,r=(r=r+Math.imul(ce,ke)|0)+Math.imul(Ze,ne)|0,g=g+Math.imul(Ze,ke)|0,v=v+Math.imul(qe,At)|0,r=(r=r+Math.imul(qe,Wt)|0)+Math.imul(re,At)|0,g=g+Math.imul(re,Wt)|0,v=v+Math.imul(xe,ei)|0,r=(r=r+Math.imul(xe,$t)|0)+Math.imul(le,ei)|0,g=g+Math.imul(le,$t)|0;var Gt=(O+(v=v+Math.imul(ye,li)|0)|0)+((8191&(r=(r=r+Math.imul(ye,ui)|0)+Math.imul(fe,li)|0))<<13)|0;O=((g=g+Math.imul(fe,ui)|0)+(r>>>13)|0)+(Gt>>>26)|0,Gt&=67108863,v=Math.imul(Qe,at),r=(r=Math.imul(Qe,Ee))+Math.imul(St,at)|0,g=Math.imul(St,Ee),v=v+Math.imul($e,Ge)|0,r=(r=r+Math.imul($e,Xe)|0)+Math.imul(Ie,Ge)|0,g=g+Math.imul(Ie,Xe)|0,v=v+Math.imul(Ae,Le)|0,r=(r=r+Math.imul(Ae,be)|0)+Math.imul(Be,Le)|0,g=g+Math.imul(Be,be)|0,v=v+Math.imul(Ct,ne)|0,r=(r=r+Math.imul(Ct,ke)|0)+Math.imul(ut,ne)|0,g=g+Math.imul(ut,ke)|0,v=v+Math.imul(ce,At)|0,r=(r=r+Math.imul(ce,Wt)|0)+Math.imul(Ze,At)|0,g=g+Math.imul(Ze,Wt)|0,v=v+Math.imul(qe,ei)|0,r=(r=r+Math.imul(qe,$t)|0)+Math.imul(re,ei)|0,g=g+Math.imul(re,$t)|0;var oi=(O+(v=v+Math.imul(xe,li)|0)|0)+((8191&(r=(r=r+Math.imul(xe,ui)|0)+Math.imul(le,li)|0))<<13)|0;O=((g=g+Math.imul(le,ui)|0)+(r>>>13)|0)+(oi>>>26)|0,oi&=67108863,v=Math.imul(Qe,Ge),r=(r=Math.imul(Qe,Xe))+Math.imul(St,Ge)|0,g=Math.imul(St,Xe),v=v+Math.imul($e,Le)|0,r=(r=r+Math.imul($e,be)|0)+Math.imul(Ie,Le)|0,g=g+Math.imul(Ie,be)|0,v=v+Math.imul(Ae,ne)|0,r=(r=r+Math.imul(Ae,ke)|0)+Math.imul(Be,ne)|0,g=g+Math.imul(Be,ke)|0,v=v+Math.imul(Ct,At)|0,r=(r=r+Math.imul(Ct,Wt)|0)+Math.imul(ut,At)|0,g=g+Math.imul(ut,Wt)|0,v=v+Math.imul(ce,ei)|0,r=(r=r+Math.imul(ce,$t)|0)+Math.imul(Ze,ei)|0,g=g+Math.imul(Ze,$t)|0;var bi=(O+(v=v+Math.imul(qe,li)|0)|0)+((8191&(r=(r=r+Math.imul(qe,ui)|0)+Math.imul(re,li)|0))<<13)|0;O=((g=g+Math.imul(re,ui)|0)+(r>>>13)|0)+(bi>>>26)|0,bi&=67108863,v=Math.imul(Qe,Le),r=(r=Math.imul(Qe,be))+Math.imul(St,Le)|0,g=Math.imul(St,be),v=v+Math.imul($e,ne)|0,r=(r=r+Math.imul($e,ke)|0)+Math.imul(Ie,ne)|0,g=g+Math.imul(Ie,ke)|0,v=v+Math.imul(Ae,At)|0,r=(r=r+Math.imul(Ae,Wt)|0)+Math.imul(Be,At)|0,g=g+Math.imul(Be,Wt)|0,v=v+Math.imul(Ct,ei)|0,r=(r=r+Math.imul(Ct,$t)|0)+Math.imul(ut,ei)|0,g=g+Math.imul(ut,$t)|0;var yi=(O+(v=v+Math.imul(ce,li)|0)|0)+((8191&(r=(r=r+Math.imul(ce,ui)|0)+Math.imul(Ze,li)|0))<<13)|0;O=((g=g+Math.imul(Ze,ui)|0)+(r>>>13)|0)+(yi>>>26)|0,yi&=67108863,v=Math.imul(Qe,ne),r=(r=Math.imul(Qe,ke))+Math.imul(St,ne)|0,g=Math.imul(St,ke),v=v+Math.imul($e,At)|0,r=(r=r+Math.imul($e,Wt)|0)+Math.imul(Ie,At)|0,g=g+Math.imul(Ie,Wt)|0,v=v+Math.imul(Ae,ei)|0,r=(r=r+Math.imul(Ae,$t)|0)+Math.imul(Be,ei)|0,g=g+Math.imul(Be,$t)|0;var Oi=(O+(v=v+Math.imul(Ct,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ct,ui)|0)+Math.imul(ut,li)|0))<<13)|0;O=((g=g+Math.imul(ut,ui)|0)+(r>>>13)|0)+(Oi>>>26)|0,Oi&=67108863,v=Math.imul(Qe,At),r=(r=Math.imul(Qe,Wt))+Math.imul(St,At)|0,g=Math.imul(St,Wt),v=v+Math.imul($e,ei)|0,r=(r=r+Math.imul($e,$t)|0)+Math.imul(Ie,ei)|0,g=g+Math.imul(Ie,$t)|0;var Ui=(O+(v=v+Math.imul(Ae,li)|0)|0)+((8191&(r=(r=r+Math.imul(Ae,ui)|0)+Math.imul(Be,li)|0))<<13)|0;O=((g=g+Math.imul(Be,ui)|0)+(r>>>13)|0)+(Ui>>>26)|0,Ui&=67108863,v=Math.imul(Qe,ei),r=(r=Math.imul(Qe,$t))+Math.imul(St,ei)|0,g=Math.imul(St,$t);var Bi=(O+(v=v+Math.imul($e,li)|0)|0)+((8191&(r=(r=r+Math.imul($e,ui)|0)+Math.imul(Ie,li)|0))<<13)|0;O=((g=g+Math.imul(Ie,ui)|0)+(r>>>13)|0)+(Bi>>>26)|0,Bi&=67108863;var qt=(O+(v=Math.imul(Qe,li))|0)+((8191&(r=(r=Math.imul(Qe,ui))+Math.imul(St,li)|0))<<13)|0;return O=((g=Math.imul(St,ui))+(r>>>13)|0)+(qt>>>26)|0,qt&=67108863,D[0]=un,D[1]=Ki,D[2]=Mi,D[3]=on,D[4]=st,D[5]=si,D[6]=Ce,D[7]=Mt,D[8]=Ht,D[9]=Dt,D[10]=kt,D[11]=Gt,D[12]=oi,D[13]=bi,D[14]=yi,D[15]=Oi,D[16]=Ui,D[17]=Bi,D[18]=qt,0!==O&&(D[19]=O,f.length++),f};function j(S,n,s){return(new K).mulp(S,n,s)}function K(S,n){this.x=S,this.y=n}Math.imul||(B=z),l.prototype.mulTo=function(n,s){var f,h=this.length+n.length;return f=10===this.length&&10===n.length?B(this,n,s):h<63?z(this,n,s):h<1024?function W(S,n,s){s.negative=n.negative^S.negative,s.length=S.length+n.length;for(var f=0,h=0,C=0;C>>26)|0)>>>26,D&=67108863}s.words[C]=O,f=D,D=h}return 0!==f?s.words[C]=f:s.length--,s.strip()}(this,n,s):j(this,n,s),f},K.prototype.makeRBT=function(n){for(var s=new Array(n),f=l.prototype._countBits(n)-1,h=0;h>=1;return h},K.prototype.permute=function(n,s,f,h,C,D){for(var O=0;O>>=1)C++;return 1<>>=13),C>>>=13;for(D=2*s;D>=26,s+=h/67108864|0,s+=C>>>26,this.words[f]=67108863&C}return 0!==s&&(this.words[f]=s,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var s=function k(S){for(var n=new Array(S.bitLength()),s=0;s>>h}return n}(n);if(0===s.length)return new l(1);for(var f=this,h=0;h=0);var C,s=n%26,f=(n-s)/26,h=67108863>>>26-s<<26-s;if(0!==s){var D=0;for(C=0;C>>26-s}D&&(this.words[C]=D,this.length++)}if(0!==f){for(C=this.length-1;C>=0;C--)this.words[C+f]=this.words[C];for(C=0;C=0),h=s?(s-s%26)/26:0;var C=n%26,D=Math.min((n-C)/26,this.length),O=67108863^67108863>>>C<D)for(this.length-=D,r=0;r=0&&(0!==g||r>=h);r--){var H=0|this.words[r];this.words[r]=g<<26-C|H>>>C,g=H&O}return v&&0!==g&&(v.words[v.length++]=g),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,s,f){return y(0===this.negative),this.iushrn(n,s,f)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){y("number"==typeof n&&n>=0);var s=n%26,f=(n-s)/26;return!(this.length<=f||!(this.words[f]&1<=0);var s=n%26,f=(n-s)/26;return y(0===this.negative,"imaskn works only with positive numbers"),this.length<=f?this:(0!==s&&f++,this.length=Math.min(f,this.length),0!==s&&(this.words[this.length-1]&=67108863^67108863>>>s<=67108864;s++)this.words[s]-=67108864,s===this.length-1?this.words[s+1]=1:this.words[s+1]++;return this.length=Math.max(this.length,s+1),this},l.prototype.isubn=function(n){if(y("number"==typeof n),y(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var s=0;s>26)-(v/67108864|0),this.words[C+f]=67108863&D}for(;C>26,this.words[C+f]=67108863&D;if(0===O)return this.strip();for(y(-1===O),O=0,C=0;C>26,this.words[C]=67108863&D;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,s){var f,h=this.clone(),C=n,D=0|C.words[C.length-1];0!=(f=26-this._countBits(D))&&(C=C.ushln(f),h.iushln(f),D=0|C.words[C.length-1]);var r,v=h.length-C.length;if("mod"!==s){(r=new l(null)).length=v+1,r.words=new Array(r.length);for(var g=0;g=0;R--){var ee=67108864*(0|h.words[C.length+R])+(0|h.words[C.length+R-1]);for(ee=Math.min(ee/D|0,67108863),h._ishlnsubmul(C,ee,R);0!==h.negative;)ee--,h.negative=0,h._ishlnsubmul(C,1,R),h.isZero()||(h.negative^=1);r&&(r.words[R]=ee)}return r&&r.strip(),h.strip(),"div"!==s&&0!==f&&h.iushrn(f),{div:r||null,mod:h}},l.prototype.divmod=function(n,s,f){return y(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(D=this.neg().divmod(n,s),"mod"!==s&&(h=D.div.neg()),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(D=this.divmod(n.neg(),s),"mod"!==s&&(h=D.div.neg()),{div:h,mod:D.mod}):this.negative&n.negative?(D=this.neg().divmod(n.neg(),s),"div"!==s&&(C=D.mod.neg(),f&&0!==C.negative&&C.isub(n)),{div:D.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===s?{div:this.divn(n.words[0]),mod:null}:"mod"===s?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,s);var h,C,D},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var s=this.divmod(n);if(s.mod.isZero())return s.div;var f=0!==s.div.negative?s.mod.isub(n):s.mod,h=n.ushrn(1),C=n.andln(1),D=f.cmp(h);return D<0||1===C&&0===D?s.div:0!==s.div.negative?s.div.isubn(1):s.div.iaddn(1)},l.prototype.modn=function(n){y(n<=67108863);for(var s=(1<<26)%n,f=0,h=this.length-1;h>=0;h--)f=(s*f+(0|this.words[h]))%n;return f},l.prototype.idivn=function(n){y(n<=67108863);for(var s=0,f=this.length-1;f>=0;f--){var h=(0|this.words[f])+67108864*s;this.words[f]=h/n|0,s=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){y(0===n.negative),y(!n.isZero());var s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=new l(0),O=new l(1),v=0;s.isEven()&&f.isEven();)s.iushrn(1),f.iushrn(1),++v;for(var r=f.clone(),g=s.clone();!s.isZero();){for(var H=0,R=1;!(s.words[0]&R)&&H<26;++H,R<<=1);if(H>0)for(s.iushrn(H);H-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(g)),h.iushrn(1),C.iushrn(1);for(var ee=0,De=1;!(f.words[0]&De)&&ee<26;++ee,De<<=1);if(ee>0)for(f.iushrn(ee);ee-- >0;)(D.isOdd()||O.isOdd())&&(D.iadd(r),O.isub(g)),D.iushrn(1),O.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(D),C.isub(O)):(f.isub(s),D.isub(h),O.isub(C))}return{a:D,b:O,gcd:f.iushln(v)}},l.prototype._invmp=function(n){y(0===n.negative),y(!n.isZero());var H,s=this,f=n.clone();s=0!==s.negative?s.umod(n):s.clone();for(var h=new l(1),C=new l(0),D=f.clone();s.cmpn(1)>0&&f.cmpn(1)>0;){for(var O=0,v=1;!(s.words[0]&v)&&O<26;++O,v<<=1);if(O>0)for(s.iushrn(O);O-- >0;)h.isOdd()&&h.iadd(D),h.iushrn(1);for(var r=0,g=1;!(f.words[0]&g)&&r<26;++r,g<<=1);if(r>0)for(f.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(D),C.iushrn(1);s.cmp(f)>=0?(s.isub(f),h.isub(C)):(f.isub(s),C.isub(h))}return(H=0===s.cmpn(1)?h:C).cmpn(0)<0&&H.iadd(n),H},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var s=this.clone(),f=n.clone();s.negative=0,f.negative=0;for(var h=0;s.isEven()&&f.isEven();h++)s.iushrn(1),f.iushrn(1);for(;;){for(;s.isEven();)s.iushrn(1);for(;f.isEven();)f.iushrn(1);var C=s.cmp(f);if(C<0){var D=s;s=f,f=D}else if(0===C||0===f.cmpn(1))break;s.isub(f)}return f.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return 0==(1&this.words[0])},l.prototype.isOdd=function(){return 1==(1&this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){y("number"==typeof n);var s=n%26,f=(n-s)/26,h=1<>>26,this.words[D]=O&=67108863}return 0!==C&&(this.words[D]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var f,s=n<0;if(0!==this.negative&&!s)return-1;if(0===this.negative&&s)return 1;if(this.strip(),this.length>1)f=1;else{s&&(n=-n),y(n<=67108863,"Number is too big");var h=0|this.words[0];f=h===n?0:hn.length)return 1;if(this.length=0;f--){var h=0|this.words[f],C=0|n.words[f];if(h!==C){hC&&(s=1);break}}return s},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new J(n)},l.prototype.toRed=function(n){return y(!this.red,"Already a number in reduction context"),y(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return y(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return y(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return y(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return y(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return y(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return y(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return y(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return y(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return y(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return y(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return y(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return y(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return y(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return y(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var X={k256:null,p224:null,p192:null,p25519:null};function ie(S,n){this.name=S,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function se(){ie.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ue(){ie.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ie.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ie.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function J(S){if("string"==typeof S){var n=l._prime(S);this.m=n.p,this.prime=n}else y(S.gtn(1),"modulus must be greater than 1"),this.m=S,this.prime=null}function he(S){J.call(this,S),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(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 n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ie.prototype.ireduce=function(n){var f,s=n;do{this.split(s,this.tmp),f=(s=(s=this.imulK(s)).iadd(this.tmp)).bitLength()}while(f>this.n);var h=f0?s.isub(this.p):void 0!==s.strip?s.strip():s._strip(),s},ie.prototype.split=function(n,s){n.iushrn(this.n,0,s)},ie.prototype.imulK=function(n){return n.imul(this.k)},A(se,ie),se.prototype.split=function(n,s){for(var f=4194303,h=Math.min(n.length,9),C=0;C>>22,D=O}n.words[C-10]=D>>>=22,n.length-=0===D&&n.length>10?10:9},se.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var s=0,f=0;f>>=26,n.words[f]=C,s=h}return 0!==s&&(n.words[n.length++]=s),n},l._prime=function(n){if(X[n])return X[n];var s;if("k256"===n)s=new se;else if("p224"===n)s=new ue;else if("p192"===n)s=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);s=new Me}return X[n]=s,s},J.prototype._verify1=function(n){y(0===n.negative,"red works only with positives"),y(n.red,"red works only with red numbers")},J.prototype._verify2=function(n,s){y(0==(n.negative|s.negative),"red works only with positives"),y(n.red&&n.red===s.red,"red works only with red numbers")},J.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},J.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},J.prototype.add=function(n,s){this._verify2(n,s);var f=n.add(s);return f.cmp(this.m)>=0&&f.isub(this.m),f._forceRed(this)},J.prototype.iadd=function(n,s){this._verify2(n,s);var f=n.iadd(s);return f.cmp(this.m)>=0&&f.isub(this.m),f},J.prototype.sub=function(n,s){this._verify2(n,s);var f=n.sub(s);return f.cmpn(0)<0&&f.iadd(this.m),f._forceRed(this)},J.prototype.isub=function(n,s){this._verify2(n,s);var f=n.isub(s);return f.cmpn(0)<0&&f.iadd(this.m),f},J.prototype.shl=function(n,s){return this._verify1(n),this.imod(n.ushln(s))},J.prototype.imul=function(n,s){return this._verify2(n,s),this.imod(n.imul(s))},J.prototype.mul=function(n,s){return this._verify2(n,s),this.imod(n.mul(s))},J.prototype.isqr=function(n){return this.imul(n,n.clone())},J.prototype.sqr=function(n){return this.mul(n,n)},J.prototype.sqrt=function(n){if(n.isZero())return n.clone();var s=this.m.andln(3);if(y(s%2==1),3===s){var f=this.m.add(new l(1)).iushrn(2);return this.pow(n,f)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);y(!h.isZero());var D=new l(1).toRed(this),O=D.redNeg(),v=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,v).cmp(O);)r.redIAdd(O);for(var g=this.pow(r,h),H=this.pow(n,h.addn(1).iushrn(1)),R=this.pow(n,h),ee=C;0!==R.cmp(D);){for(var De=R,ct=0;0!==De.cmp(D);ct++)De=De.redSqr();y(ct=0;C--){for(var g=s.words[C],H=r-1;H>=0;H--){var R=g>>H&1;D!==h[0]&&(D=this.sqr(D)),0!==R||0!==O?(O<<=1,O|=R,(4==++v||0===C&&0===H)&&(D=this.mul(D,h[O]),v=0,O=0)):v=0}r=26}return D},J.prototype.convertTo=function(n){var s=n.umod(this.m);return s===n?s.clone():s},J.prototype.convertFrom=function(n){var s=n.clone();return s.red=null,s},l.mont=function(n){return new he(n)},A(he,J),he.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},he.prototype.convertFrom=function(n){var s=this.imod(n.mul(this.rinv));return s.red=null,s},he.prototype.imul=function(n,s){if(n.isZero()||s.isZero())return n.words[0]=0,n.length=1,n;var f=n.imul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.mul=function(n,s){if(n.isZero()||s.isZero())return new l(0)._forceRed(this);var f=n.mul(s),h=f.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=f.isub(h).iushrn(this.shift),D=C;return C.cmp(this.m)>=0?D=C.isub(this.m):C.cmpn(0)<0&&(D=C.iadd(this.m)),D._forceRed(this)},he.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Fe=p.nmd(Fe),this)},5252:(Fe,q,p)=>{var e=p(7983),t=p(6517),y=p(1817),A=p(8211),l=p(1946),w=p(6362),m=p(735),P=p(843).Buffer;Fe.exports=function(k,z,B){var W;W=k.padding?k.padding:B?1:4;var X,j=e(k),K=j.modulus.byteLength();if(z.length>K||new A(z).cmp(j.modulus)>=0)throw new Error("decryption error");X=B?m(new A(z),j):l(z,j);var ie=P.alloc(K-X.length);if(X=P.concat([ie,X],K),4===W)return function d(I,k){var z=I.modulus.byteLength(),B=w("sha1").update(P.alloc(0)).digest(),W=B.length;if(0!==k[0])throw new Error("decryption error");var j=k.slice(1,W+1),K=k.slice(W+1),X=y(j,t(K,W)),ie=y(K,t(X,z-W-1));if(function M(I,k){I=P.from(I),k=P.from(k);var z=0,B=I.length;I.length!==k.length&&(z++,B=Math.min(I.length,k.length));for(var W=-1;++W=k.length){j++;break}var K=k.slice(2,W-1);if(("0002"!==B.toString("hex")&&!z||"0001"!==B.toString("hex")&&z)&&j++,K.length<8&&j++,j)throw new Error("decryption error");return k.slice(W)}(0,X,B);if(3===W)return X;throw new Error("unknown padding")}},5737:(Fe,q,p)=>{var e=p(7983),t=p(4019),y=p(6362),A=p(6517),l=p(1817),w=p(8211),m=p(735),P=p(1946),d=p(843).Buffer;Fe.exports=function(z,B,W){var j;j=z.padding?z.padding:W?1:4;var X,K=e(z);if(4===j)X=function E(k,z){var B=k.modulus.byteLength(),W=z.length,j=y("sha1").update(d.alloc(0)).digest(),K=j.length,X=2*K;if(W>B-X-2)throw new Error("message too long");var ie=d.alloc(B-W-X-2),se=B-K-1,ue=t(K),ae=l(d.concat([j,ie,d.alloc(1,1),z],se),A(ue,se)),Me=l(ue,A(ae,K));return new w(d.concat([d.alloc(1),Me,ae],B))}(K,B);else if(1===j)X=function M(k,z,B){var K,W=z.length,j=k.modulus.byteLength();if(W>j-11)throw new Error("message too long");return K=B?d.alloc(j-W-3,255):function I(k){for(var K,z=d.allocUnsafe(k),B=0,W=t(2*k),j=0;B=0)throw new Error("data too long for modulus")}return W?P(X,K):m(X,K)}},735:(Fe,q,p)=>{var e=p(8211),t=p(843).Buffer;Fe.exports=function y(A,l){return t.from(A.toRed(e.mont(l.modulus)).redPow(new e(l.publicExponent)).fromRed().toArray())}},1817:Fe=>{Fe.exports=function(p,e){for(var t=p.length,y=-1;++y{const e=p(8310),t=p(6208),y=p(6422),A=p(7772);function l(w,m,P,d,E){const M=[].slice.call(arguments,1),I=M.length,k="function"==typeof M[I-1];if(!k&&!e())throw new Error("Callback required as last argument");if(!k){if(I<1)throw new Error("Too few arguments provided");return 1===I?(P=m,m=d=void 0):2===I&&!m.getContext&&(d=P,P=m,m=void 0),new Promise(function(z,B){try{const W=t.create(P,d);z(w(W,m,d))}catch(W){B(W)}})}if(I<2)throw new Error("Too few arguments provided");2===I?(E=P,P=m,m=d=void 0):3===I&&(m.getContext&&typeof E>"u"?(E=d,d=void 0):(E=d,d=P,P=m,m=void 0));try{const z=t.create(P,d);E(null,w(z,m,d))}catch(z){E(z)}}q.create=t.create,q.toCanvas=l.bind(null,y.render),q.toDataURL=l.bind(null,y.renderToDataURL),q.toString=l.bind(null,function(w,m,P){return A.render(w,P)})},8310:Fe=>{Fe.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},5281:(Fe,q,p)=>{const e=p(8922).getSymbolSize;q.getRowColCoords=function(y){if(1===y)return[];const A=Math.floor(y/7)+2,l=e(y),w=145===l?26:2*Math.ceil((l-13)/(2*A-2)),m=[l-7];for(let P=1;P{const e=p(3298),t=["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 y(A){this.mode=e.ALPHANUMERIC,this.data=A}y.getBitsLength=function(l){return 11*Math.floor(l/2)+l%2*6},y.prototype.getLength=function(){return this.data.length},y.prototype.getBitsLength=function(){return y.getBitsLength(this.data.length)},y.prototype.write=function(l){let w;for(w=0;w+2<=this.data.length;w+=2){let m=45*t.indexOf(this.data[w]);m+=t.indexOf(this.data[w+1]),l.put(m,11)}this.data.length%2&&l.put(t.indexOf(this.data[w]),6)},Fe.exports=y},6509:Fe=>{function q(){this.buffer=[],this.length=0}q.prototype={get:function(p){const e=Math.floor(p/8);return 1==(this.buffer[e]>>>7-p%8&1)},put:function(p,e){for(let t=0;t>>e-t-1&1))},getLengthInBits:function(){return this.length},putBit:function(p){const e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),p&&(this.buffer[e]|=128>>>this.length%8),this.length++}},Fe.exports=q},5147:Fe=>{function q(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)}q.prototype.set=function(p,e,t,y){const A=p*this.size+e;this.data[A]=t,y&&(this.reservedBit[A]=!0)},q.prototype.get=function(p,e){return this.data[p*this.size+e]},q.prototype.xor=function(p,e,t){this.data[p*this.size+e]^=t},q.prototype.isReserved=function(p,e){return this.reservedBit[p*this.size+e]},Fe.exports=q},277:(Fe,q,p)=>{const e=p(6119),t=p(3298);function y(A){this.mode=t.BYTE,"string"==typeof A&&(A=e(A)),this.data=new Uint8Array(A)}y.getBitsLength=function(l){return 8*l},y.prototype.getLength=function(){return this.data.length},y.prototype.getBitsLength=function(){return y.getBitsLength(this.data.length)},y.prototype.write=function(A){for(let l=0,w=this.data.length;l{const e=p(4505),t=[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],y=[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];q.getBlocksCount=function(l,w){switch(w){case e.L:return t[4*(l-1)+0];case e.M:return t[4*(l-1)+1];case e.Q:return t[4*(l-1)+2];case e.H:return t[4*(l-1)+3];default:return}},q.getTotalCodewordsCount=function(l,w){switch(w){case e.L:return y[4*(l-1)+0];case e.M:return y[4*(l-1)+1];case e.Q:return y[4*(l-1)+2];case e.H:return y[4*(l-1)+3];default:return}}},4505:(Fe,q)=>{q.L={bit:1},q.M={bit:0},q.Q={bit:3},q.H={bit:2},q.isValid=function(t){return t&&typeof t.bit<"u"&&t.bit>=0&&t.bit<4},q.from=function(t,y){if(q.isValid(t))return t;try{return function p(e){if("string"!=typeof e)throw new Error("Param is not a string");switch(e.toLowerCase()){case"l":case"low":return q.L;case"m":case"medium":return q.M;case"q":case"quartile":return q.Q;case"h":case"high":return q.H;default:throw new Error("Unknown EC Level: "+e)}}(t)}catch{return y}}},5232:(Fe,q,p)=>{const e=p(8922).getSymbolSize;q.getPositions=function(A){const l=e(A);return[[0,0],[l-7,0],[0,l-7]]}},8508:(Fe,q,p)=>{const e=p(8922),A=e.getBCHDigit(1335);q.getEncodedBits=function(w,m){const P=w.bit<<3|m;let d=P<<10;for(;e.getBCHDigit(d)-A>=0;)d^=1335<{const p=new Uint8Array(512),e=new Uint8Array(256);(function(){let y=1;for(let A=0;A<255;A++)p[A]=y,e[y]=A,y<<=1,256&y&&(y^=285);for(let A=255;A<512;A++)p[A]=p[A-255]})(),q.log=function(y){if(y<1)throw new Error("log("+y+")");return e[y]},q.exp=function(y){return p[y]},q.mul=function(y,A){return 0===y||0===A?0:p[e[y]+e[A]]}},9995:(Fe,q,p)=>{const e=p(3298),t=p(8922);function y(A){this.mode=e.KANJI,this.data=A}y.getBitsLength=function(l){return 13*l},y.prototype.getLength=function(){return this.data.length},y.prototype.getBitsLength=function(){return y.getBitsLength(this.data.length)},y.prototype.write=function(A){let l;for(l=0;l=33088&&w<=40956)w-=33088;else{if(!(w>=57408&&w<=60351))throw new Error("Invalid SJIS character: "+this.data[l]+"\nMake sure your charset is UTF-8");w-=49472}w=192*(w>>>8&255)+(255&w),A.put(w,13)}},Fe.exports=y},9023:(Fe,q)=>{q.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function e(t,y,A){switch(t){case q.Patterns.PATTERN000:return(y+A)%2==0;case q.Patterns.PATTERN001:return y%2==0;case q.Patterns.PATTERN010:return A%3==0;case q.Patterns.PATTERN011:return(y+A)%3==0;case q.Patterns.PATTERN100:return(Math.floor(y/2)+Math.floor(A/3))%2==0;case q.Patterns.PATTERN101:return y*A%2+y*A%3==0;case q.Patterns.PATTERN110:return(y*A%2+y*A%3)%2==0;case q.Patterns.PATTERN111:return(y*A%3+(y+A)%2)%2==0;default:throw new Error("bad maskPattern:"+t)}}q.isValid=function(y){return null!=y&&""!==y&&!isNaN(y)&&y>=0&&y<=7},q.from=function(y){return q.isValid(y)?parseInt(y,10):void 0},q.getPenaltyN1=function(y){const A=y.size;let l=0,w=0,m=0,P=null,d=null;for(let E=0;E=5&&(l+=w-5+3),P=I,w=1),I=y.get(M,E),I===d?m++:(m>=5&&(l+=m-5+3),d=I,m=1)}w>=5&&(l+=w-5+3),m>=5&&(l+=m-5+3)}return l},q.getPenaltyN2=function(y){const A=y.size;let l=0;for(let w=0;w=10&&(1488===w||93===w)&&l++,m=m<<1&2047|y.get(d,P),d>=10&&(1488===m||93===m)&&l++}return 40*l},q.getPenaltyN4=function(y){let A=0;const l=y.data.length;for(let m=0;m{const e=p(6161),t=p(2427);q.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},q.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},q.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},q.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},q.MIXED={bit:-1},q.getCharCountIndicator=function(l,w){if(!l.ccBits)throw new Error("Invalid mode: "+l);if(!e.isValid(w))throw new Error("Invalid version: "+w);return w>=1&&w<10?l.ccBits[0]:w<27?l.ccBits[1]:l.ccBits[2]},q.getBestModeForData=function(l){return t.testNumeric(l)?q.NUMERIC:t.testAlphanumeric(l)?q.ALPHANUMERIC:t.testKanji(l)?q.KANJI:q.BYTE},q.toString=function(l){if(l&&l.id)return l.id;throw new Error("Invalid mode")},q.isValid=function(l){return l&&l.bit&&l.ccBits},q.from=function(l,w){if(q.isValid(l))return l;try{return function y(A){if("string"!=typeof A)throw new Error("Param is not a string");switch(A.toLowerCase()){case"numeric":return q.NUMERIC;case"alphanumeric":return q.ALPHANUMERIC;case"kanji":return q.KANJI;case"byte":return q.BYTE;default:throw new Error("Unknown mode: "+A)}}(l)}catch{return w}}},8722:(Fe,q,p)=>{const e=p(3298);function t(y){this.mode=e.NUMERIC,this.data=y.toString()}t.getBitsLength=function(A){return 10*Math.floor(A/3)+(A%3?A%3*3+1:0)},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(A){let l,w,m;for(l=0;l+3<=this.data.length;l+=3)w=this.data.substr(l,3),m=parseInt(w,10),A.put(m,10);const P=this.data.length-l;P>0&&(w=this.data.substr(l),m=parseInt(w,10),A.put(m,3*P+1))},Fe.exports=t},2376:(Fe,q,p)=>{const e=p(1674);q.mul=function(y,A){const l=new Uint8Array(y.length+A.length-1);for(let w=0;w=0;){const w=l[0];for(let P=0;P{const e=p(8922),t=p(4505),y=p(6509),A=p(5147),l=p(5281),w=p(5232),m=p(9023),P=p(7191),d=p(1297),E=p(9467),M=p(8508),I=p(3298),k=p(1799);function K(ae,Me,J){const he=ae.size,S=M.getEncodedBits(Me,J);let n,s;for(n=0;n<15;n++)s=1==(S>>n&1),ae.set(n<6?n:n<8?n+1:he-15+n,8,s,!0),ae.set(8,n<8?he-n-1:n<9?15-n-1+1:15-n-1,s,!0);ae.set(he-8,8,1,!0)}function ue(ae,Me,J,he){let S;if(Array.isArray(ae))S=k.fromArray(ae);else{if("string"!=typeof ae)throw new Error("Invalid data");{let C=Me;if(!C){const D=k.rawSplit(ae);C=E.getBestVersionForData(D,J)}S=k.fromString(ae,C||40)}}const n=E.getBestVersionForData(S,J);if(!n)throw new Error("The amount of data is too big to be stored in a QR Code");if(Me){if(Me=0&&f<=6&&(0===h||6===h)||h>=0&&h<=6&&(0===f||6===f)||f>=2&&f<=4&&h>=2&&h<=4,!0)}}(h,Me),function B(ae){const Me=ae.size;for(let J=8;J=7&&function j(ae,Me){const J=ae.size,he=E.getEncodedBits(Me);let S,n,s;for(let f=0;f<18;f++)S=Math.floor(f/3),n=f%3+J-8-3,s=1==(he>>f&1),ae.set(S,n,s,!0),ae.set(n,S,s,!0)}(h,Me),function X(ae,Me){const J=ae.size;let he=-1,S=J-1,n=7,s=0;for(let f=J-1;f>0;f-=2)for(6===f&&f--;;){for(let h=0;h<2;h++)if(!ae.isReserved(S,f-h)){let C=!1;s>>n&1)),ae.set(S,f-h,C),n--,-1===n&&(s++,n=7)}if(S+=he,S<0||J<=S){S-=he,he=-he;break}}}(h,s),isNaN(he)&&(he=m.getBestMask(h,K.bind(null,h,J))),m.applyMask(he,h),K(h,J,he),{modules:h,version:Me,errorCorrectionLevel:J,maskPattern:he,segments:S}}q.create=function(Me,J){if(typeof Me>"u"||""===Me)throw new Error("No input text");let S,n,he=t.M;return typeof J<"u"&&(he=t.from(J.errorCorrectionLevel,t.M),S=E.from(J.version),n=m.from(J.maskPattern),J.toSJISFunc&&e.setToSJISFunction(J.toSJISFunc)),ue(Me,S,he,n)}},1297:(Fe,q,p)=>{const e=p(2376);function t(y){this.genPoly=void 0,this.degree=y,this.degree&&this.initialize(this.degree)}t.prototype.initialize=function(A){this.degree=A,this.genPoly=e.generateECPolynomial(this.degree)},t.prototype.encode=function(A){if(!this.genPoly)throw new Error("Encoder not initialized");const l=new Uint8Array(A.length+this.degree);l.set(A);const w=e.mod(l,this.genPoly),m=this.degree-w.length;if(m>0){const P=new Uint8Array(this.degree);return P.set(w,m),P}return w},Fe.exports=t},2427:(Fe,q)=>{const p="[0-9]+";let t="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";t=t.replace(/u/g,"\\u");const y="(?:(?![A-Z0-9 $%*+\\-./:]|"+t+")(?:.|[\r\n]))+";q.KANJI=new RegExp(t,"g"),q.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),q.BYTE=new RegExp(y,"g"),q.NUMERIC=new RegExp(p,"g"),q.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const A=new RegExp("^"+t+"$"),l=new RegExp("^"+p+"$"),w=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");q.testKanji=function(P){return A.test(P)},q.testNumeric=function(P){return l.test(P)},q.testAlphanumeric=function(P){return w.test(P)}},1799:(Fe,q,p)=>{const e=p(3298),t=p(8722),y=p(120),A=p(277),l=p(9995),w=p(2427),m=p(8922),P=p(7206);function d(j){return unescape(encodeURIComponent(j)).length}function E(j,K,X){const ie=[];let se;for(;null!==(se=j.exec(X));)ie.push({data:se[0],index:se.index,mode:K,length:se[0].length});return ie}function M(j){const K=E(w.NUMERIC,e.NUMERIC,j),X=E(w.ALPHANUMERIC,e.ALPHANUMERIC,j);let ie,se;return m.isKanjiModeEnabled()?(ie=E(w.BYTE,e.BYTE,j),se=E(w.KANJI,e.KANJI,j)):(ie=E(w.BYTE_KANJI,e.BYTE,j),se=[]),K.concat(X,ie,se).sort(function(ae,Me){return ae.index-Me.index}).map(function(ae){return{data:ae.data,mode:ae.mode,length:ae.length}})}function I(j,K){switch(K){case e.NUMERIC:return t.getBitsLength(j);case e.ALPHANUMERIC:return y.getBitsLength(j);case e.KANJI:return l.getBitsLength(j);case e.BYTE:return A.getBitsLength(j)}}function W(j,K){let X;const ie=e.getBestModeForData(j);if(X=e.from(K,ie),X!==e.BYTE&&X.bit=0?K[K.length-1]:null;return ie&&ie.mode===X.mode?(K[K.length-1].data+=X.data,K):(K.push(X),K)},[])}(Me))},q.rawSplit=function(K){return q.fromArray(M(K,m.isKanjiModeEnabled()))}},8922:(Fe,q)=>{let p;const e=[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];q.getSymbolSize=function(y){if(!y)throw new Error('"version" cannot be null or undefined');if(y<1||y>40)throw new Error('"version" should be in range from 1 to 40');return 4*y+17},q.getSymbolTotalCodewords=function(y){return e[y]},q.getBCHDigit=function(t){let y=0;for(;0!==t;)y++,t>>>=1;return y},q.setToSJISFunction=function(y){if("function"!=typeof y)throw new Error('"toSJISFunc" is not a valid function.');p=y},q.isKanjiModeEnabled=function(){return typeof p<"u"},q.toSJIS=function(y){return p(y)}},6161:(Fe,q)=>{q.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}},9467:(Fe,q,p)=>{const e=p(8922),t=p(7191),y=p(4505),A=p(3298),l=p(6161),m=e.getBCHDigit(7973);function d(I,k){return A.getCharCountIndicator(I,k)+4}function E(I,k){let z=0;return I.forEach(function(B){const W=d(B.mode,k);z+=W+B.getBitsLength()}),z}q.from=function(k,z){return l.isValid(k)?parseInt(k,10):z},q.getCapacity=function(k,z,B){if(!l.isValid(k))throw new Error("Invalid QR Code version");typeof B>"u"&&(B=A.BYTE);const K=8*(e.getSymbolTotalCodewords(k)-t.getTotalCodewordsCount(k,z));if(B===A.MIXED)return K;const X=K-d(B,k);switch(B){case A.NUMERIC:return Math.floor(X/10*3);case A.ALPHANUMERIC:return Math.floor(X/11*2);case A.KANJI:return Math.floor(X/13);default:return Math.floor(X/8)}},q.getBestVersionForData=function(k,z){let B;const W=y.from(z,y.M);if(Array.isArray(k)){if(k.length>1)return function M(I,k){for(let z=1;z<=40;z++)if(E(I,z)<=q.getCapacity(z,k,A.MIXED))return z}(k,W);if(0===k.length)return 1;B=k[0]}else B=k;return function P(I,k,z){for(let B=1;B<=40;B++)if(k<=q.getCapacity(B,z,I))return B}(B.mode,B.getLength(),W)},q.getEncodedBits=function(k){if(!l.isValid(k)||k<7)throw new Error("Invalid QR Code version");let z=k<<12;for(;e.getBCHDigit(z)-m>=0;)z^=7973<{const e=p(1101);q.render=function(l,w,m){let P=m,d=w;typeof P>"u"&&(!w||!w.getContext)&&(P=w,w=void 0),w||(d=function y(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),P=e.getOptions(P);const E=e.getImageWidth(l.modules.size,P),M=d.getContext("2d"),I=M.createImageData(E,E);return e.qrToImageData(I.data,l,P),function t(A,l,w){A.clearRect(0,0,l.width,l.height),l.style||(l.style={}),l.height=w,l.width=w,l.style.height=w+"px",l.style.width=w+"px"}(M,d,E),M.putImageData(I,0,0),d},q.renderToDataURL=function(l,w,m){let P=m;return typeof P>"u"&&(!w||!w.getContext)&&(P=w,w=void 0),P||(P={}),q.render(l,w,P).toDataURL(P.type||"image/png",(P.rendererOpts||{}).quality)}},7772:(Fe,q,p)=>{const e=p(1101);function t(l,w){const m=l.a/255,P=w+'="'+l.hex+'"';return m<1?P+" "+w+'-opacity="'+m.toFixed(2).slice(1)+'"':P}function y(l,w,m){let P=l+w;return typeof m<"u"&&(P+=" "+m),P}q.render=function(w,m,P){const d=e.getOptions(m),E=w.modules.size,M=w.modules.data,I=E+2*d.margin,k=d.color.light.a?"':"",z="0&&k>0&&l[I-1]||(P+=E?y("M",k+m,.5+z+m):y("m",d,0),d=0,E=!1),k+1',j=''+k+z+"\n";return"function"==typeof P&&P(null,j),j}},1101:(Fe,q)=>{function p(e){if("number"==typeof e&&(e=e.toString()),"string"!=typeof e)throw new Error("Color should be defined as hex string");let t=e.slice().replace("#","").split("");if(t.length<3||5===t.length||t.length>8)throw new Error("Invalid hex color: "+e);(3===t.length||4===t.length)&&(t=Array.prototype.concat.apply([],t.map(function(A){return[A,A]}))),6===t.length&&t.push("F","F");const y=parseInt(t.join(""),16);return{r:y>>24&255,g:y>>16&255,b:y>>8&255,a:255&y,hex:"#"+t.slice(0,6).join("")}}q.getOptions=function(t){t||(t={}),t.color||(t.color={});const A=t.width&&t.width>=21?t.width:void 0;return{width:A,scale:A?4:t.scale||4,margin:typeof t.margin>"u"||null===t.margin||t.margin<0?4:t.margin,color:{dark:p(t.color.dark||"#000000ff"),light:p(t.color.light||"#ffffffff")},type:t.type,rendererOpts:t.rendererOpts||{}}},q.getScale=function(t,y){return y.width&&y.width>=t+2*y.margin?y.width/(t+2*y.margin):y.scale},q.getImageWidth=function(t,y){const A=q.getScale(t,y);return Math.floor((t+2*y.margin)*A)},q.qrToImageData=function(t,y,A){const l=y.modules.size,w=y.modules.data,m=q.getScale(l,A),P=Math.floor((l+2*A.margin)*m),d=A.margin*m,E=[A.color.light,A.color.dark];for(let M=0;M=d&&I>=d&&M{"use strict";var e=65536,A=p(843).Buffer,l=global.crypto||global.msCrypto;Fe.exports=l&&l.getRandomValues?function w(m,P){if(m>4294967295)throw new RangeError("requested too many random bytes");var d=A.allocUnsafe(m);if(m>0)if(m>e)for(var E=0;E{"use strict";function e(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var t=p(843),y=p(4019),A=t.Buffer,l=t.kMaxLength,w=global.crypto||global.msCrypto,m=Math.pow(2,32)-1;function P(k,z){if("number"!=typeof k||k!=k)throw new TypeError("offset must be a number");if(k>m||k<0)throw new TypeError("offset must be a uint32");if(k>l||k>z)throw new RangeError("offset out of range")}function d(k,z,B){if("number"!=typeof k||k!=k)throw new TypeError("size must be a number");if(k>m||k<0)throw new TypeError("size must be a uint32");if(k+z>B||k>l)throw new RangeError("buffer too small")}function M(k,z,B,W){if(process.browser){var K=new Uint8Array(k.buffer,z,B);return w.getRandomValues(K),W?void process.nextTick(function(){W(null,k)}):k}if(!W)return y(B).copy(k,z),k;y(B,function(ie,se){if(ie)return W(ie);se.copy(k,z),W(null,k)})}w&&w.getRandomValues||!process.browser?(q.randomFill=function E(k,z,B,W){if(!(A.isBuffer(k)||k instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof z)W=z,z=0,B=k.length;else if("function"==typeof B)W=B,B=k.length-z;else if("function"!=typeof W)throw new TypeError('"cb" argument must be a function');return P(z,k.length),d(B,z,k.length),M(k,z,B,W)},q.randomFillSync=function I(k,z,B){if(typeof z>"u"&&(z=0),!(A.isBuffer(k)||k instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return P(z,k.length),void 0===B&&(B=k.length-z),d(B,z,k.length),M(k,z,B)}):(q.randomFill=e,q.randomFillSync=e)},7218:Fe=>{"use strict";var p={};function e(w,m,P){P||(P=Error);var E=function(M){function I(k,z,B){return M.call(this,function d(M,I,k){return"string"==typeof m?m:m(M,I,k)}(k,z,B))||this}return function q(w,m){w.prototype=Object.create(m.prototype),w.prototype.constructor=w,w.__proto__=m}(I,M),I}(P);E.prototype.name=P.name,E.prototype.code=w,p[w]=E}function t(w,m){if(Array.isArray(w)){var P=w.length;return w=w.map(function(d){return String(d)}),P>2?"one of ".concat(m," ").concat(w.slice(0,P-1).join(", "),", or ")+w[P-1]:2===P?"one of ".concat(m," ").concat(w[0]," or ").concat(w[1]):"of ".concat(m," ").concat(w[0])}return"of ".concat(m," ").concat(String(w))}e("ERR_INVALID_OPT_VALUE",function(w,m){return'The value "'+m+'" is invalid for option "'+w+'"'},TypeError),e("ERR_INVALID_ARG_TYPE",function(w,m,P){var d,E;if("string"==typeof m&&function y(w,m,P){return w.substr(!P||P<0?0:+P,m.length)===m}(m,"not ")?(d="must not be",m=m.replace(/^not /,"")):d="must be",function A(w,m,P){return(void 0===P||P>w.length)&&(P=w.length),w.substring(P-m.length,P)===m}(w," argument"))E="The ".concat(w," ").concat(d," ").concat(t(m,"type"));else{var M=function l(w,m,P){return"number"!=typeof P&&(P=0),!(P+m.length>w.length)&&-1!==w.indexOf(m,P)}(w,".")?"property":"argument";E='The "'.concat(w,'" ').concat(M," ").concat(d," ").concat(t(m,"type"))}return E+". Received type ".concat(typeof P)},TypeError),e("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),e("ERR_METHOD_NOT_IMPLEMENTED",function(w){return"The "+w+" method is not implemented"}),e("ERR_STREAM_PREMATURE_CLOSE","Premature close"),e("ERR_STREAM_DESTROYED",function(w){return"Cannot call "+w+" after a stream was destroyed"}),e("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),e("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),e("ERR_STREAM_WRITE_AFTER_END","write after end"),e("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),e("ERR_UNKNOWN_ENCODING",function(w){return"Unknown encoding: "+w},TypeError),e("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Fe.exports.q=p},247:(Fe,q,p)=>{"use strict";var e=Object.keys||function(E){var M=[];for(var I in E)M.push(I);return M};Fe.exports=m;var t=p(309),y=p(6563);p(6698)(m,t);for(var A=e(y.prototype),l=0;l{"use strict";Fe.exports=t;var e=p(6307);function t(y){if(!(this instanceof t))return new t(y);e.call(this,y)}p(6698)(t,e),t.prototype._transform=function(y,A,l){l(null,y)}},309:(Fe,q,p)=>{"use strict";var e;Fe.exports=S,S.ReadableState=he,p(2016);var E,y=function(pe,qe){return pe.listeners(qe).length},A=p(8240),l=p(9007).Buffer,w=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},d=p(4616);E=d&&d.debuglog?d.debuglog("stream"):function(){};var ie,se,ue,M=p(2960),I=p(5601),z=p(8782).getHighWaterMark,B=p(7218).q,W=B.ERR_INVALID_ARG_TYPE,j=B.ERR_STREAM_PUSH_AFTER_EOF,K=B.ERR_METHOD_NOT_IMPLEMENTED,X=B.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;p(6698)(S,A);var ae=I.errorOrDestroy,Me=["error","close","destroy","pause","resume"];function he(le,pe,qe){e=e||p(247),"boolean"!=typeof qe&&(qe=pe instanceof e),this.objectMode=!!(le=le||{}).objectMode,qe&&(this.objectMode=this.objectMode||!!le.readableObjectMode),this.highWaterMark=z(this,le,"readableHighWaterMark",qe),this.buffer=new M,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!==le.emitClose,this.autoDestroy=!!le.autoDestroy,this.destroyed=!1,this.defaultEncoding=le.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,le.encoding&&(ie||(ie=p(2024).s),this.decoder=new ie(le.encoding),this.encoding=le.encoding)}function S(le){if(e=e||p(247),!(this instanceof S))return new S(le);this._readableState=new he(le,this,this instanceof e),this.readable=!0,le&&("function"==typeof le.read&&(this._read=le.read),"function"==typeof le.destroy&&(this._destroy=le.destroy)),A.call(this)}function n(le,pe,qe,re,ve){E("readableAddChunk",pe);var Ze,ce=le._readableState;if(null===pe)ce.reading=!1,function O(le,pe){if(E("onEofChunk"),!pe.ended){if(pe.decoder){var qe=pe.decoder.end();qe&&qe.length&&(pe.buffer.push(qe),pe.length+=pe.objectMode?1:qe.length)}pe.ended=!0,pe.sync?v(le):(pe.needReadable=!1,pe.emittedReadable||(pe.emittedReadable=!0,r(le)))}}(le,ce);else if(ve||(Ze=function f(le,pe){var qe;return!function P(le){return l.isBuffer(le)||le instanceof w}(pe)&&"string"!=typeof pe&&void 0!==pe&&!le.objectMode&&(qe=new W("chunk",["string","Buffer","Uint8Array"],pe)),qe}(ce,pe)),Ze)ae(le,Ze);else if(ce.objectMode||pe&&pe.length>0)if("string"!=typeof pe&&!ce.objectMode&&Object.getPrototypeOf(pe)!==l.prototype&&(pe=function m(le){return l.from(le)}(pe)),re)ce.endEmitted?ae(le,new X):s(le,ce,pe,!0);else if(ce.ended)ae(le,new j);else{if(ce.destroyed)return!1;ce.reading=!1,ce.decoder&&!qe?(pe=ce.decoder.write(pe),ce.objectMode||0!==pe.length?s(le,ce,pe,!1):g(le,ce)):s(le,ce,pe,!1)}else re||(ce.reading=!1,g(le,ce));return!ce.ended&&(ce.lengthpe.highWaterMark&&(pe.highWaterMark=function C(le){return le>=h?le=h:(le--,le|=le>>>1,le|=le>>>2,le|=le>>>4,le|=le>>>8,le|=le>>>16,le++),le}(le)),le<=pe.length?le:pe.ended?pe.length:(pe.needReadable=!0,0))}function v(le){var pe=le._readableState;E("emitReadable",pe.needReadable,pe.emittedReadable),pe.needReadable=!1,pe.emittedReadable||(E("emitReadable",pe.flowing),pe.emittedReadable=!0,process.nextTick(r,le))}function r(le){var pe=le._readableState;E("emitReadable_",pe.destroyed,pe.length,pe.ended),!pe.destroyed&&(pe.length||pe.ended)&&(le.emit("readable"),pe.emittedReadable=!1),pe.needReadable=!pe.flowing&&!pe.ended&&pe.length<=pe.highWaterMark,Je(le)}function g(le,pe){pe.readingMore||(pe.readingMore=!0,process.nextTick(H,le,pe))}function H(le,pe){for(;!pe.reading&&!pe.ended&&(pe.length0,pe.resumeScheduled&&!pe.paused?pe.flowing=!0:le.listenerCount("data")>0&&le.resume()}function De(le){E("readable nexttick read 0"),le.read(0)}function Ke(le,pe){E("resume",pe.reading),pe.reading||le.read(0),pe.resumeScheduled=!1,le.emit("resume"),Je(le),pe.flowing&&!pe.reading&&le.read(0)}function Je(le){var pe=le._readableState;for(E("flow",pe.flowing);pe.flowing&&null!==le.read(););}function ye(le,pe){return 0===pe.length?null:(pe.objectMode?qe=pe.buffer.shift():!le||le>=pe.length?(qe=pe.decoder?pe.buffer.join(""):1===pe.buffer.length?pe.buffer.first():pe.buffer.concat(pe.length),pe.buffer.clear()):qe=pe.buffer.consume(le,pe.decoder),qe);var qe}function fe(le){var pe=le._readableState;E("endReadable",pe.endEmitted),pe.endEmitted||(pe.ended=!0,process.nextTick(de,pe,le))}function de(le,pe){if(E("endReadableNT",le.endEmitted,le.length),!le.endEmitted&&0===le.length&&(le.endEmitted=!0,pe.readable=!1,pe.emit("end"),le.autoDestroy)){var qe=pe._writableState;(!qe||qe.autoDestroy&&qe.finished)&&pe.destroy()}}function xe(le,pe){for(var qe=0,re=le.length;qe=pe.highWaterMark:pe.length>0)||pe.ended))return E("read: emitReadable",pe.length,pe.ended),0===pe.length&&pe.ended?fe(this):v(this),null;if(0===(le=D(le,pe))&&pe.ended)return 0===pe.length&&fe(this),null;var ve,re=pe.needReadable;return E("need readable",re),(0===pe.length||pe.length-le0?ye(le,pe):null)?(pe.needReadable=pe.length<=pe.highWaterMark,le=0):(pe.length-=le,pe.awaitDrain=0),0===pe.length&&(pe.ended||(pe.needReadable=!0),qe!==le&&pe.ended&&fe(this)),null!==ve&&this.emit("data",ve),ve},S.prototype._read=function(le){ae(this,new K("_read()"))},S.prototype.pipe=function(le,pe){var qe=this,re=this._readableState;switch(re.pipesCount){case 0:re.pipes=le;break;case 1:re.pipes=[re.pipes,le];break;default:re.pipes.push(le)}re.pipesCount+=1,E("pipe count=%d opts=%j",re.pipesCount,pe);var ce=pe&&!1===pe.end||le===process.stdout||le===process.stderr?Ie:We;function We(){E("onend"),le.end()}re.endEmitted?process.nextTick(ce):qe.once("end",ce),le.on("unpipe",function Ze(lt,Qe){E("onunpipe"),lt===qe&&Qe&&!1===Qe.hasUnpiped&&(Qe.hasUnpiped=!0,function It(){E("cleanup"),le.removeListener("close",rt),le.removeListener("finish",$e),le.removeListener("drain",Ct),le.removeListener("error",Be),le.removeListener("unpipe",Ze),qe.removeListener("end",We),qe.removeListener("end",Ie),qe.removeListener("data",Ae),ut=!0,re.awaitDrain&&(!le._writableState||le._writableState.needDrain)&&Ct()}())});var Ct=function R(le){return function(){var qe=le._readableState;E("pipeOnDrain",qe.awaitDrain),qe.awaitDrain&&qe.awaitDrain--,0===qe.awaitDrain&&y(le,"data")&&(qe.flowing=!0,Je(le))}}(qe);le.on("drain",Ct);var ut=!1;function Ae(lt){E("ondata");var Qe=le.write(lt);E("dest.write",Qe),!1===Qe&&((1===re.pipesCount&&re.pipes===le||re.pipesCount>1&&-1!==xe(re.pipes,le))&&!ut&&(E("false write response, pause",re.awaitDrain),re.awaitDrain++),qe.pause())}function Be(lt){E("onerror",lt),Ie(),le.removeListener("error",Be),0===y(le,"error")&&ae(le,lt)}function rt(){le.removeListener("finish",$e),Ie()}function $e(){E("onfinish"),le.removeListener("close",rt),Ie()}function Ie(){E("unpipe"),qe.unpipe(le)}return qe.on("data",Ae),function J(le,pe,qe){if("function"==typeof le.prependListener)return le.prependListener(pe,qe);le._events&&le._events[pe]?Array.isArray(le._events[pe])?le._events[pe].unshift(qe):le._events[pe]=[qe,le._events[pe]]:le.on(pe,qe)}(le,"error",Be),le.once("close",rt),le.once("finish",$e),le.emit("pipe",qe),re.flowing||(E("pipe resume"),qe.resume()),le},S.prototype.unpipe=function(le){var pe=this._readableState,qe={hasUnpiped:!1};if(0===pe.pipesCount)return this;if(1===pe.pipesCount)return le&&le!==pe.pipes||(le||(le=pe.pipes),pe.pipes=null,pe.pipesCount=0,pe.flowing=!1,le&&le.emit("unpipe",this,qe)),this;if(!le){var re=pe.pipes,ve=pe.pipesCount;pe.pipes=null,pe.pipesCount=0,pe.flowing=!1;for(var ce=0;ce0,!1!==re.flowing&&this.resume()):"readable"===le&&!re.endEmitted&&!re.readableListening&&(re.readableListening=re.needReadable=!0,re.flowing=!1,re.emittedReadable=!1,E("on readable",re.length,re.reading),re.length?v(this):re.reading||process.nextTick(De,this)),qe},S.prototype.removeListener=function(le,pe){var qe=A.prototype.removeListener.call(this,le,pe);return"readable"===le&&process.nextTick(ee,this),qe},S.prototype.removeAllListeners=function(le){var pe=A.prototype.removeAllListeners.apply(this,arguments);return("readable"===le||void 0===le)&&process.nextTick(ee,this),pe},S.prototype.resume=function(){var le=this._readableState;return le.flowing||(E("resume"),le.flowing=!le.readableListening,function ct(le,pe){pe.resumeScheduled||(pe.resumeScheduled=!0,process.nextTick(Ke,le,pe))}(this,le)),le.paused=!1,this},S.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},S.prototype.wrap=function(le){var pe=this,qe=this._readableState,re=!1;for(var ve in le.on("end",function(){if(E("wrapped end"),qe.decoder&&!qe.ended){var Ze=qe.decoder.end();Ze&&Ze.length&&pe.push(Ze)}pe.push(null)}),le.on("data",function(Ze){E("wrapped data"),qe.decoder&&(Ze=qe.decoder.write(Ze)),qe.objectMode&&null==Ze||!(qe.objectMode||Ze&&Ze.length)||pe.push(Ze)||(re=!0,le.pause())}),le)void 0===this[ve]&&"function"==typeof le[ve]&&(this[ve]=function(We){return function(){return le[We].apply(le,arguments)}}(ve));for(var ce=0;ce{"use strict";Fe.exports=P;var e=p(7218).q,t=e.ERR_METHOD_NOT_IMPLEMENTED,y=e.ERR_MULTIPLE_CALLBACK,A=e.ERR_TRANSFORM_ALREADY_TRANSFORMING,l=e.ERR_TRANSFORM_WITH_LENGTH_0,w=p(247);function m(M,I){var k=this._transformState;k.transforming=!1;var z=k.writecb;if(null===z)return this.emit("error",new y);k.writechunk=null,k.writecb=null,null!=I&&this.push(I),z(M);var B=this._readableState;B.reading=!1,(B.needReadable||B.length{"use strict";function t(Je){var ye=this;this.next=null,this.entry=null,this.finish=function(){!function Ke(Je,ye,fe){var de=Je.entry;for(Je.entry=null;de;){var xe=de.callback;ye.pendingcb--,xe(fe),de=de.next}ye.corkedRequestsFree.next=Je}(ye,Je)}}var y;Fe.exports=he,he.WritableState=Me;var J,A={deprecate:p(496)},l=p(8240),w=p(9007).Buffer,m=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},E=p(5601),I=p(8782).getHighWaterMark,k=p(7218).q,z=k.ERR_INVALID_ARG_TYPE,B=k.ERR_METHOD_NOT_IMPLEMENTED,W=k.ERR_MULTIPLE_CALLBACK,j=k.ERR_STREAM_CANNOT_PIPE,K=k.ERR_STREAM_DESTROYED,X=k.ERR_STREAM_NULL_VALUES,ie=k.ERR_STREAM_WRITE_AFTER_END,se=k.ERR_UNKNOWN_ENCODING,ue=E.errorOrDestroy;function ae(){}function Me(Je,ye,fe){y=y||p(247),"boolean"!=typeof fe&&(fe=ye instanceof y),this.objectMode=!!(Je=Je||{}).objectMode,fe&&(this.objectMode=this.objectMode||!!Je.writableObjectMode),this.highWaterMark=I(this,Je,"writableHighWaterMark",fe),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Je.decodeStrings),this.defaultEncoding=Je.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(xe){!function O(Je,ye){var fe=Je._writableState,de=fe.sync,xe=fe.writecb;if("function"!=typeof xe)throw new W;if(function D(Je){Je.writing=!1,Je.writecb=null,Je.length-=Je.writelen,Je.writelen=0}(fe),ye)!function C(Je,ye,fe,de,xe){--ye.pendingcb,fe?(process.nextTick(xe,de),process.nextTick(De,Je,ye),Je._writableState.errorEmitted=!0,ue(Je,de)):(xe(de),Je._writableState.errorEmitted=!0,ue(Je,de),De(Je,ye))}(Je,fe,de,ye,xe);else{var le=H(fe)||Je.destroyed;!le&&!fe.corked&&!fe.bufferProcessing&&fe.bufferedRequest&&g(Je,fe),de?process.nextTick(v,Je,fe,le,xe):v(Je,fe,le,xe)}}(ye,xe)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Je.emitClose,this.autoDestroy=!!Je.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new t(this)}function he(Je){var ye=this instanceof(y=y||p(247));if(!ye&&!J.call(he,this))return new he(Je);this._writableState=new Me(Je,this,ye),this.writable=!0,Je&&("function"==typeof Je.write&&(this._write=Je.write),"function"==typeof Je.writev&&(this._writev=Je.writev),"function"==typeof Je.destroy&&(this._destroy=Je.destroy),"function"==typeof Je.final&&(this._final=Je.final)),l.call(this)}function h(Je,ye,fe,de,xe,le,pe){ye.writelen=de,ye.writecb=pe,ye.writing=!0,ye.sync=!0,ye.destroyed?ye.onwrite(new K("write")):fe?Je._writev(xe,ye.onwrite):Je._write(xe,le,ye.onwrite),ye.sync=!1}function v(Je,ye,fe,de){fe||function r(Je,ye){0===ye.length&&ye.needDrain&&(ye.needDrain=!1,Je.emit("drain"))}(Je,ye),ye.pendingcb--,de(),De(Je,ye)}function g(Je,ye){ye.bufferProcessing=!0;var fe=ye.bufferedRequest;if(Je._writev&&fe&&fe.next){var xe=new Array(ye.bufferedRequestCount),le=ye.corkedRequestsFree;le.entry=fe;for(var pe=0,qe=!0;fe;)xe[pe]=fe,fe.isBuf||(qe=!1),fe=fe.next,pe+=1;xe.allBuffers=qe,h(Je,ye,!0,ye.length,xe,"",le.finish),ye.pendingcb++,ye.lastBufferedRequest=null,le.next?(ye.corkedRequestsFree=le.next,le.next=null):ye.corkedRequestsFree=new t(ye),ye.bufferedRequestCount=0}else{for(;fe;){var re=fe.chunk;if(h(Je,ye,!1,ye.objectMode?1:re.length,re,fe.encoding,fe.callback),fe=fe.next,ye.bufferedRequestCount--,ye.writing)break}null===fe&&(ye.lastBufferedRequest=null)}ye.bufferedRequest=fe,ye.bufferProcessing=!1}function H(Je){return Je.ending&&0===Je.length&&null===Je.bufferedRequest&&!Je.finished&&!Je.writing}function R(Je,ye){Je._final(function(fe){ye.pendingcb--,fe&&ue(Je,fe),ye.prefinished=!0,Je.emit("prefinish"),De(Je,ye)})}function De(Je,ye){var fe=H(ye);if(fe&&(function ee(Je,ye){!ye.prefinished&&!ye.finalCalled&&("function"!=typeof Je._final||ye.destroyed?(ye.prefinished=!0,Je.emit("prefinish")):(ye.pendingcb++,ye.finalCalled=!0,process.nextTick(R,Je,ye)))}(Je,ye),0===ye.pendingcb&&(ye.finished=!0,Je.emit("finish"),ye.autoDestroy))){var de=Je._readableState;(!de||de.autoDestroy&&de.endEmitted)&&Je.destroy()}return fe}p(6698)(he,l),Me.prototype.getBuffer=function(){for(var ye=this.bufferedRequest,fe=[];ye;)fe.push(ye),ye=ye.next;return fe},function(){try{Object.defineProperty(Me.prototype,"buffer",{get:A.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(J=Function.prototype[Symbol.hasInstance],Object.defineProperty(he,Symbol.hasInstance,{value:function(ye){return!!J.call(this,ye)||this===he&&ye&&ye._writableState instanceof Me}})):J=function(ye){return ye instanceof this},he.prototype.pipe=function(){ue(this,new j)},he.prototype.write=function(Je,ye,fe){var de=this._writableState,xe=!1,le=!de.objectMode&&function d(Je){return w.isBuffer(Je)||Je instanceof m}(Je);return le&&!w.isBuffer(Je)&&(Je=function P(Je){return w.from(Je)}(Je)),"function"==typeof ye&&(fe=ye,ye=null),le?ye="buffer":ye||(ye=de.defaultEncoding),"function"!=typeof fe&&(fe=ae),de.ending?function S(Je,ye){var fe=new ie;ue(Je,fe),process.nextTick(ye,fe)}(this,fe):(le||function n(Je,ye,fe,de){var xe;return null===fe?xe=new X:"string"!=typeof fe&&!ye.objectMode&&(xe=new z("chunk",["string","Buffer"],fe)),!xe||(ue(Je,xe),process.nextTick(de,xe),!1)}(this,de,Je,fe))&&(de.pendingcb++,xe=function f(Je,ye,fe,de,xe,le){if(!fe){var pe=function s(Je,ye,fe){return!Je.objectMode&&!1!==Je.decodeStrings&&"string"==typeof ye&&(ye=w.from(ye,fe)),ye}(ye,de,xe);de!==pe&&(fe=!0,xe="buffer",de=pe)}var qe=ye.objectMode?1:de.length;ye.length+=qe;var re=ye.length-1))throw new se(ye);return this._writableState.defaultEncoding=ye,this},Object.defineProperty(he.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(he.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),he.prototype._write=function(Je,ye,fe){fe(new B("_write()"))},he.prototype._writev=null,he.prototype.end=function(Je,ye,fe){var de=this._writableState;return"function"==typeof Je?(fe=Je,Je=null,ye=null):"function"==typeof ye&&(fe=ye,ye=null),null!=Je&&this.write(Je,ye),de.corked&&(de.corked=1,this.uncork()),de.ending||function ct(Je,ye,fe){ye.ending=!0,De(Je,ye),fe&&(ye.finished?process.nextTick(fe):Je.once("finish",fe)),ye.ended=!0,Je.writable=!1}(this,de,fe),this},Object.defineProperty(he.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(he.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(ye){this._writableState&&(this._writableState.destroyed=ye)}}),he.prototype.destroy=E.destroy,he.prototype._undestroy=E.undestroy,he.prototype._destroy=function(Je,ye){ye(Je)}},457:(Fe,q,p)=>{"use strict";var e;function t(ie,se,ue){return se=function y(ie){var se=function A(ie,se){if("object"!=typeof ie||null===ie)return ie;var ue=ie[Symbol.toPrimitive];if(void 0!==ue){var ae=ue.call(ie,se||"default");if("object"!=typeof ae)return ae;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===se?String:Number)(ie)}(ie,"string");return"symbol"==typeof se?se:String(se)}(se),se in ie?Object.defineProperty(ie,se,{value:ue,enumerable:!0,configurable:!0,writable:!0}):ie[se]=ue,ie}var l=p(4618),w=Symbol("lastResolve"),m=Symbol("lastReject"),P=Symbol("error"),d=Symbol("ended"),E=Symbol("lastPromise"),M=Symbol("handlePromise"),I=Symbol("stream");function k(ie,se){return{value:ie,done:se}}function z(ie){var se=ie[w];if(null!==se){var ue=ie[I].read();null!==ue&&(ie[E]=null,ie[w]=null,ie[m]=null,se(k(ue,!1)))}}function B(ie){process.nextTick(z,ie)}var j=Object.getPrototypeOf(function(){}),K=Object.setPrototypeOf((t(e={get stream(){return this[I]},next:function(){var se=this,ue=this[P];if(null!==ue)return Promise.reject(ue);if(this[d])return Promise.resolve(k(void 0,!0));if(this[I].destroyed)return new Promise(function(he,S){process.nextTick(function(){se[P]?S(se[P]):he(k(void 0,!0))})});var Me,ae=this[E];if(ae)Me=new Promise(function W(ie,se){return function(ue,ae){ie.then(function(){se[d]?ue(k(void 0,!0)):se[M](ue,ae)},ae)}}(ae,this));else{var J=this[I].read();if(null!==J)return Promise.resolve(k(J,!1));Me=new Promise(this[M])}return this[E]=Me,Me}},Symbol.asyncIterator,function(){return this}),t(e,"return",function(){var se=this;return new Promise(function(ue,ae){se[I].destroy(null,function(Me){Me?ae(Me):ue(k(void 0,!0))})})}),e),j);Fe.exports=function(se){var ue,ae=Object.create(K,(t(ue={},I,{value:se,writable:!0}),t(ue,w,{value:null,writable:!0}),t(ue,m,{value:null,writable:!0}),t(ue,P,{value:null,writable:!0}),t(ue,d,{value:se._readableState.endEmitted,writable:!0}),t(ue,M,{value:function(J,he){var S=ae[I].read();S?(ae[E]=null,ae[w]=null,ae[m]=null,J(k(S,!1))):(ae[w]=J,ae[m]=he)},writable:!0}),ue));return ae[E]=null,l(se,function(Me){if(Me&&"ERR_STREAM_PREMATURE_CLOSE"!==Me.code){var J=ae[m];return null!==J&&(ae[E]=null,ae[w]=null,ae[m]=null,J(Me)),void(ae[P]=Me)}var he=ae[w];null!==he&&(ae[E]=null,ae[w]=null,ae[m]=null,he(k(void 0,!0))),ae[d]=!0}),se.on("readable",B.bind(null,ae)),ae}},2960:(Fe,q,p)=>{"use strict";function e(B,W){var j=Object.keys(B);if(Object.getOwnPropertySymbols){var K=Object.getOwnPropertySymbols(B);W&&(K=K.filter(function(X){return Object.getOwnPropertyDescriptor(B,X).enumerable})),j.push.apply(j,K)}return j}function t(B){for(var W=1;W0?this.tail.next=K:this.head=K,this.tail=K,++this.length}},{key:"unshift",value:function(j){var K={data:j,next:this.head};0===this.length&&(this.tail=K),this.head=K,++this.length}},{key:"shift",value:function(){if(0!==this.length){var j=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,j}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(j){if(0===this.length)return"";for(var K=this.head,X=""+K.data;K=K.next;)X+=j+K.data;return X}},{key:"concat",value:function(j){if(0===this.length)return E.alloc(0);for(var K=E.allocUnsafe(j>>>0),X=this.head,ie=0;X;)z(X.data,K,ie),ie+=X.data.length,X=X.next;return K}},{key:"consume",value:function(j,K){var X;return jse.length?se.length:j;if(ie+=ue===se.length?se:se.slice(0,j),0==(j-=ue)){ue===se.length?(++X,this.head=K.next?K.next:this.tail=null):(this.head=K,K.data=se.slice(ue));break}++X}return this.length-=X,ie}},{key:"_getBuffer",value:function(j){var K=E.allocUnsafe(j),X=this.head,ie=1;for(X.data.copy(K),j-=X.data.length;X=X.next;){var se=X.data,ue=j>se.length?se.length:j;if(se.copy(K,K.length-j,0,ue),0==(j-=ue)){ue===se.length?(++ie,this.head=X.next?X.next:this.tail=null):(this.head=X,X.data=se.slice(ue));break}++ie}return this.length-=ie,K}},{key:k,value:function(j,K){return I(this,t(t({},K),{},{depth:0,customInspect:!1}))}}]),B}()},5601:Fe=>{"use strict";function p(l,w){y(l,w),e(l)}function e(l){l._writableState&&!l._writableState.emitClose||l._readableState&&!l._readableState.emitClose||l.emit("close")}function y(l,w){l.emit("error",w)}Fe.exports={destroy:function q(l,w){var m=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(w?w(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(y,this,l)):process.nextTick(y,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(E){!w&&E?m._writableState?m._writableState.errorEmitted?process.nextTick(e,m):(m._writableState.errorEmitted=!0,process.nextTick(p,m,E)):process.nextTick(p,m,E):w?(process.nextTick(e,m),w(E)):process.nextTick(e,m)}),this)},undestroy:function t(){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 A(l,w){var m=l._readableState,P=l._writableState;m&&m.autoDestroy||P&&P.autoDestroy?l.destroy(w):l.emit("error",w)}}},4618:(Fe,q,p)=>{"use strict";var e=p(7218).q.ERR_STREAM_PREMATURE_CLOSE;function y(){}Fe.exports=function l(w,m,P){if("function"==typeof m)return l(w,null,m);m||(m={}),P=function t(w){var m=!1;return function(){if(!m){m=!0;for(var P=arguments.length,d=new Array(P),E=0;E{Fe.exports=function(){throw new Error("Readable.from is not available in the browser")}},4514:(Fe,q,p)=>{"use strict";var e,y=p(7218).q,A=y.ERR_MISSING_ARGS,l=y.ERR_STREAM_DESTROYED;function w(k){if(k)throw k}function d(k){k()}function E(k,z){return k.pipe(z)}Fe.exports=function I(){for(var k=arguments.length,z=new Array(k),B=0;B0,function(ae){j||(j=ae),ae&&K.forEach(d),!se&&(K.forEach(d),W(j))})});return z.reduce(E)}},8782:(Fe,q,p)=>{"use strict";var e=p(7218).q.ERR_INVALID_OPT_VALUE;Fe.exports={getHighWaterMark:function y(A,l,w,m){var P=function t(A,l,w){return null!=A.highWaterMark?A.highWaterMark:l?A[w]:null}(l,m,w);if(null!=P){if(!isFinite(P)||Math.floor(P)!==P||P<0)throw new e(m?w:"highWaterMark",P);return Math.floor(P)}return A.objectMode?16:16384}}},8240:(Fe,q,p)=>{Fe.exports=p(2016).EventEmitter},6745:(Fe,q,p)=>{(q=Fe.exports=p(309)).Stream=q,q.Readable=q,q.Writable=p(6563),q.Duplex=p(247),q.Transform=p(6307),q.PassThrough=p(5096),q.finished=p(4618),q.pipeline=p(4514)},2178:Fe=>{"use strict";function q(t){return t instanceof Buffer?Buffer.from(t):new t.constructor(t.buffer.slice(),t.byteOffset,t.length)}Fe.exports=function p(t){return(t=t||{}).circles?function e(t){var y=[],A=[];return t.proto?function m(P){if("object"!=typeof P||null===P)return P;if(P instanceof Date)return new Date(P);if(Array.isArray(P))return l(P,m);if(P instanceof Map)return new Map(l(Array.from(P),m));if(P instanceof Set)return new Set(l(Array.from(P),m));var d={};for(var E in y.push(P),A.push(d),P){var M=P[E];if("object"!=typeof M||null===M)d[E]=M;else if(M instanceof Date)d[E]=new Date(M);else if(M instanceof Map)d[E]=new Map(l(Array.from(M),m));else if(M instanceof Set)d[E]=new Set(l(Array.from(M),m));else if(ArrayBuffer.isView(M))d[E]=q(M);else{var I=y.indexOf(M);d[E]=-1!==I?A[I]:m(M)}}return y.pop(),A.pop(),d}:function w(P){if("object"!=typeof P||null===P)return P;if(P instanceof Date)return new Date(P);if(Array.isArray(P))return l(P,w);if(P instanceof Map)return new Map(l(Array.from(P),w));if(P instanceof Set)return new Set(l(Array.from(P),w));var d={};for(var E in y.push(P),A.push(d),P)if(!1!==Object.hasOwnProperty.call(P,E)){var M=P[E];if("object"!=typeof M||null===M)d[E]=M;else if(M instanceof Date)d[E]=new Date(M);else if(M instanceof Map)d[E]=new Map(l(Array.from(M),w));else if(M instanceof Set)d[E]=new Set(l(Array.from(M),w));else if(ArrayBuffer.isView(M))d[E]=q(M);else{var I=y.indexOf(M);d[E]=-1!==I?A[I]:w(M)}}return y.pop(),A.pop(),d};function l(P,d){for(var E=Object.keys(P),M=new Array(E.length),I=0;I{"use strict";var e=p(9007).Buffer,t=p(6698),y=p(380),A=new Array(16),l=[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],w=[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],m=[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],P=[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],d=[0,1518500249,1859775393,2400959708,2840853838],E=[1352829926,1548603684,1836072691,2053994217,0];function M(){y.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function I(K,X){return K<>>32-X}function k(K,X,ie,se,ue,ae,Me,J){return I(K+(X^ie^se)+ae+Me|0,J)+ue|0}function z(K,X,ie,se,ue,ae,Me,J){return I(K+(X&ie|~X&se)+ae+Me|0,J)+ue|0}function B(K,X,ie,se,ue,ae,Me,J){return I(K+((X|~ie)^se)+ae+Me|0,J)+ue|0}function W(K,X,ie,se,ue,ae,Me,J){return I(K+(X&se|ie&~se)+ae+Me|0,J)+ue|0}function j(K,X,ie,se,ue,ae,Me,J){return I(K+(X^(ie|~se))+ae+Me|0,J)+ue|0}t(M,y),M.prototype._update=function(){for(var K=A,X=0;X<16;++X)K[X]=this._block.readInt32LE(4*X);for(var ie=0|this._a,se=0|this._b,ue=0|this._c,ae=0|this._d,Me=0|this._e,J=0|this._a,he=0|this._b,S=0|this._c,n=0|this._d,s=0|this._e,f=0;f<80;f+=1){var h,C;f<16?(h=k(ie,se,ue,ae,Me,K[l[f]],d[0],m[f]),C=j(J,he,S,n,s,K[w[f]],E[0],P[f])):f<32?(h=z(ie,se,ue,ae,Me,K[l[f]],d[1],m[f]),C=W(J,he,S,n,s,K[w[f]],E[1],P[f])):f<48?(h=B(ie,se,ue,ae,Me,K[l[f]],d[2],m[f]),C=B(J,he,S,n,s,K[w[f]],E[2],P[f])):f<64?(h=W(ie,se,ue,ae,Me,K[l[f]],d[3],m[f]),C=z(J,he,S,n,s,K[w[f]],E[3],P[f])):(h=j(ie,se,ue,ae,Me,K[l[f]],d[4],m[f]),C=k(J,he,S,n,s,K[w[f]],E[4],P[f])),ie=Me,Me=ae,ae=I(ue,10),ue=se,se=h,J=s,s=n,n=I(S,10),S=he,he=C}var D=this._b+ue+n|0;this._b=this._c+ae+s|0,this._c=this._d+Me+J|0,this._d=this._e+ie+he|0,this._e=this._a+se+S|0,this._a=D},M.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 K=e.alloc?e.alloc(20):new e(20);return K.writeInt32LE(this._a,0),K.writeInt32LE(this._b,4),K.writeInt32LE(this._c,8),K.writeInt32LE(this._d,12),K.writeInt32LE(this._e,16),K},Fe.exports=M},5619:(Fe,q,p)=>{"use strict";p.d(q,{X:()=>t});var e=p(8645);class t extends e.x{constructor(A){super(),this._value=A}get value(){return this.getValue()}_subscribe(A){const l=super._subscribe(A);return!l.closed&&A.next(this._value),l}getValue(){const{hasError:A,thrownError:l,_value:w}=this;if(A)throw l;return this._throwIfClosed(),w}next(A){super.next(this._value=A)}}},5592:(Fe,q,p)=>{"use strict";p.d(q,{y:()=>P});var e=p(305),t=p(7394),y=p(4850),A=p(8407),l=p(2653),w=p(4674),m=p(1441);let P=(()=>{class I{constructor(z){z&&(this._subscribe=z)}lift(z){const B=new I;return B.source=this,B.operator=z,B}subscribe(z,B,W){const j=function M(I){return I&&I instanceof e.Lv||function E(I){return I&&(0,w.m)(I.next)&&(0,w.m)(I.error)&&(0,w.m)(I.complete)}(I)&&(0,t.Nn)(I)}(z)?z:new e.Hp(z,B,W);return(0,m.x)(()=>{const{operator:K,source:X}=this;j.add(K?K.call(j,X):X?this._subscribe(j):this._trySubscribe(j))}),j}_trySubscribe(z){try{return this._subscribe(z)}catch(B){z.error(B)}}forEach(z,B){return new(B=d(B))((W,j)=>{const K=new e.Hp({next:X=>{try{z(X)}catch(ie){j(ie),K.unsubscribe()}},error:j,complete:W});this.subscribe(K)})}_subscribe(z){var B;return null===(B=this.source)||void 0===B?void 0:B.subscribe(z)}[y.L](){return this}pipe(...z){return(0,A.U)(z)(this)}toPromise(z){return new(z=d(z))((B,W)=>{let j;this.subscribe(K=>j=K,K=>W(K),()=>B(j))})}}return I.create=k=>new I(k),I})();function d(I){var k;return null!==(k=I??l.config.Promise)&&void 0!==k?k:Promise}},7328:(Fe,q,p)=>{"use strict";p.d(q,{t:()=>y});var e=p(8645),t=p(4552);class y extends e.x{constructor(l=1/0,w=1/0,m=t.l){super(),this._bufferSize=l,this._windowTime=w,this._timestampProvider=m,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=w===1/0,this._bufferSize=Math.max(1,l),this._windowTime=Math.max(1,w)}next(l){const{isStopped:w,_buffer:m,_infiniteTimeWindow:P,_timestampProvider:d,_windowTime:E}=this;w||(m.push(l),!P&&m.push(d.now()+E)),this._trimBuffer(),super.next(l)}_subscribe(l){this._throwIfClosed(),this._trimBuffer();const w=this._innerSubscribe(l),{_infiniteTimeWindow:m,_buffer:P}=this,d=P.slice();for(let E=0;E{"use strict";p.d(q,{u:()=>P,x:()=>m});var e=p(5592),t=p(7394);const A=(0,p(2306).d)(d=>function(){d(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var l=p(9039),w=p(1441);let m=(()=>{class d extends e.y{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(M){const I=new P(this,this);return I.operator=M,I}_throwIfClosed(){if(this.closed)throw new A}next(M){(0,w.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const I of this.currentObservers)I.next(M)}})}error(M){(0,w.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=M;const{observers:I}=this;for(;I.length;)I.shift().error(M)}})}complete(){(0,w.x)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:M}=this;for(;M.length;)M.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var M;return(null===(M=this.observers)||void 0===M?void 0:M.length)>0}_trySubscribe(M){return this._throwIfClosed(),super._trySubscribe(M)}_subscribe(M){return this._throwIfClosed(),this._checkFinalizedStatuses(M),this._innerSubscribe(M)}_innerSubscribe(M){const{hasError:I,isStopped:k,observers:z}=this;return I||k?t.Lc:(this.currentObservers=null,z.push(M),new t.w0(()=>{this.currentObservers=null,(0,l.P)(z,M)}))}_checkFinalizedStatuses(M){const{hasError:I,thrownError:k,isStopped:z}=this;I?M.error(k):z&&M.complete()}asObservable(){const M=new e.y;return M.source=this,M}}return d.create=(E,M)=>new P(E,M),d})();class P extends m{constructor(E,M){super(),this.destination=E,this.source=M}next(E){var M,I;null===(I=null===(M=this.destination)||void 0===M?void 0:M.next)||void 0===I||I.call(M,E)}error(E){var M,I;null===(I=null===(M=this.destination)||void 0===M?void 0:M.error)||void 0===I||I.call(M,E)}complete(){var E,M;null===(M=null===(E=this.destination)||void 0===E?void 0:E.complete)||void 0===M||M.call(E)}_subscribe(E){var M,I;return null!==(I=null===(M=this.source)||void 0===M?void 0:M.subscribe(E))&&void 0!==I?I:t.Lc}}},305:(Fe,q,p)=>{"use strict";p.d(q,{Hp:()=>W,Lv:()=>I});var e=p(4674),t=p(7394),y=p(2653),A=p(3894),l=p(2420);const w=d("C",void 0,void 0);function d(se,ue,ae){return{kind:se,value:ue,error:ae}}var E=p(7599),M=p(1441);class I extends t.w0{constructor(ue){super(),this.isStopped=!1,ue?(this.destination=ue,(0,t.Nn)(ue)&&ue.add(this)):this.destination=ie}static create(ue,ae,Me){return new W(ue,ae,Me)}next(ue){this.isStopped?X(function P(se){return d("N",se,void 0)}(ue),this):this._next(ue)}error(ue){this.isStopped?X(function m(se){return d("E",void 0,se)}(ue),this):(this.isStopped=!0,this._error(ue))}complete(){this.isStopped?X(w,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(ue){this.destination.next(ue)}_error(ue){try{this.destination.error(ue)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const k=Function.prototype.bind;function z(se,ue){return k.call(se,ue)}class B{constructor(ue){this.partialObserver=ue}next(ue){const{partialObserver:ae}=this;if(ae.next)try{ae.next(ue)}catch(Me){j(Me)}}error(ue){const{partialObserver:ae}=this;if(ae.error)try{ae.error(ue)}catch(Me){j(Me)}else j(ue)}complete(){const{partialObserver:ue}=this;if(ue.complete)try{ue.complete()}catch(ae){j(ae)}}}class W extends I{constructor(ue,ae,Me){let J;if(super(),(0,e.m)(ue)||!ue)J={next:ue??void 0,error:ae??void 0,complete:Me??void 0};else{let he;this&&y.config.useDeprecatedNextContext?(he=Object.create(ue),he.unsubscribe=()=>this.unsubscribe(),J={next:ue.next&&z(ue.next,he),error:ue.error&&z(ue.error,he),complete:ue.complete&&z(ue.complete,he)}):J=ue}this.destination=new B(J)}}function j(se){y.config.useDeprecatedSynchronousErrorHandling?(0,M.O)(se):(0,A.h)(se)}function X(se,ue){const{onStoppedNotification:ae}=y.config;ae&&E.z.setTimeout(()=>ae(se,ue))}const ie={closed:!0,next:l.Z,error:function K(se){throw se},complete:l.Z}},7394:(Fe,q,p)=>{"use strict";p.d(q,{Lc:()=>w,w0:()=>l,Nn:()=>m});var e=p(4674);const y=(0,p(2306).d)(d=>function(M){d(this),this.message=M?`${M.length} errors occurred during unsubscription:\n${M.map((I,k)=>`${k+1}) ${I.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=M});var A=p(9039);class l{constructor(E){this.initialTeardown=E,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let E;if(!this.closed){this.closed=!0;const{_parentage:M}=this;if(M)if(this._parentage=null,Array.isArray(M))for(const z of M)z.remove(this);else M.remove(this);const{initialTeardown:I}=this;if((0,e.m)(I))try{I()}catch(z){E=z instanceof y?z.errors:[z]}const{_finalizers:k}=this;if(k){this._finalizers=null;for(const z of k)try{P(z)}catch(B){E=E??[],B instanceof y?E=[...E,...B.errors]:E.push(B)}}if(E)throw new y(E)}}add(E){var M;if(E&&E!==this)if(this.closed)P(E);else{if(E instanceof l){if(E.closed||E._hasParent(this))return;E._addParent(this)}(this._finalizers=null!==(M=this._finalizers)&&void 0!==M?M:[]).push(E)}}_hasParent(E){const{_parentage:M}=this;return M===E||Array.isArray(M)&&M.includes(E)}_addParent(E){const{_parentage:M}=this;this._parentage=Array.isArray(M)?(M.push(E),M):M?[M,E]:E}_removeParent(E){const{_parentage:M}=this;M===E?this._parentage=null:Array.isArray(M)&&(0,A.P)(M,E)}remove(E){const{_finalizers:M}=this;M&&(0,A.P)(M,E),E instanceof l&&E._removeParent(this)}}l.EMPTY=(()=>{const d=new l;return d.closed=!0,d})();const w=l.EMPTY;function m(d){return d instanceof l||d&&"closed"in d&&(0,e.m)(d.remove)&&(0,e.m)(d.add)&&(0,e.m)(d.unsubscribe)}function P(d){(0,e.m)(d)?d():d.unsubscribe()}},2653:(Fe,q,p)=>{"use strict";p.d(q,{config:()=>e});const e={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},3168:(Fe,q,p)=>{"use strict";p.d(q,{c:()=>w});var e=p(5592),t=p(7394),y=p(6196),A=p(8251),l=p(9360);class w extends e.y{constructor(P,d){super(),this.source=P,this.subjectFactory=d,this._subject=null,this._refCount=0,this._connection=null,(0,l.A)(P)&&(this.lift=P.lift)}_subscribe(P){return this.getSubject().subscribe(P)}getSubject(){const P=this._subject;return(!P||P.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:P}=this;this._subject=this._connection=null,P?.unsubscribe()}connect(){let P=this._connection;if(!P){P=this._connection=new t.w0;const d=this.getSubject();P.add(this.source.subscribe((0,A.x)(d,void 0,()=>{this._teardown(),d.complete()},E=>{this._teardown(),d.error(E)},()=>this._teardown()))),P.closed&&(this._connection=null,P=t.w0.EMPTY)}return P}refCount(){return(0,y.x)()(this)}}},2572:(Fe,q,p)=>{"use strict";p.d(q,{a:()=>E});var e=p(5592),t=p(7453),y=p(9666),A=p(2737),l=p(7400),w=p(9940),m=p(2714),P=p(8251),d=p(7103);function E(...k){const z=(0,w.yG)(k),B=(0,w.jO)(k),{args:W,keys:j}=(0,t.D)(k);if(0===W.length)return(0,y.D)([],z);const K=new e.y(function M(k,z,B=A.y){return W=>{I(z,()=>{const{length:j}=k,K=new Array(j);let X=j,ie=j;for(let se=0;se{const ue=(0,y.D)(k[se],z);let ae=!1;ue.subscribe((0,P.x)(W,Me=>{K[se]=Me,ae||(ae=!0,ie--),ie||W.next(B(K.slice()))},()=>{--X||W.complete()}))},W)},W)}}(W,z,j?X=>(0,m.n)(j,X):A.y));return B?K.pipe((0,l.Z)(B)):K}function I(k,z,B){k?(0,d.f)(B,k,z):z()}},5211:(Fe,q,p)=>{"use strict";p.d(q,{z:()=>l});var e=p(7537),y=p(9940),A=p(9666);function l(...w){return function t(){return(0,e.J)(1)}()((0,A.D)(w,(0,y.yG)(w)))}},4911:(Fe,q,p)=>{"use strict";p.d(q,{P:()=>y});var e=p(5592),t=p(4829);function y(A){return new e.y(l=>{(0,t.Xf)(A()).subscribe(l)})}},6232:(Fe,q,p)=>{"use strict";p.d(q,{E:()=>t});const t=new(p(5592).y)(l=>l.complete())},9315:(Fe,q,p)=>{"use strict";p.d(q,{D:()=>P});var e=p(5592),t=p(7453),y=p(4829),A=p(9940),l=p(8251),w=p(7400),m=p(2714);function P(...d){const E=(0,A.jO)(d),{args:M,keys:I}=(0,t.D)(d),k=new e.y(z=>{const{length:B}=M;if(!B)return void z.complete();const W=new Array(B);let j=B,K=B;for(let X=0;X{ie||(ie=!0,K--),W[X]=se},()=>j--,void 0,()=>{(!j||!ie)&&(K||z.next(I?(0,m.n)(I,W):W),z.complete())}))}});return E?k.pipe((0,w.Z)(E)):k}},9666:(Fe,q,p)=>{"use strict";p.d(q,{D:()=>ae});var e=p(4829),t=p(3093),y=p(9360);function A(Me,J=0){return(0,y.e)((he,S)=>{S.add(Me.schedule(()=>he.subscribe(S),J))})}var m=p(5592),d=p(4971),E=p(4674),M=p(7103);function k(Me,J){if(!Me)throw new Error("Iterable cannot be null");return new m.y(he=>{(0,M.f)(he,J,()=>{const S=Me[Symbol.asyncIterator]();(0,M.f)(he,J,()=>{S.next().then(n=>{n.done?he.complete():he.next(n.value)})},0,!0)})})}var z=p(8382),B=p(4026),W=p(4266),j=p(3664),K=p(5726),X=p(9853),ie=p(541);function ae(Me,J){return J?function ue(Me,J){if(null!=Me){if((0,z.c)(Me))return function l(Me,J){return(0,e.Xf)(Me).pipe(A(J),(0,t.Q)(J))}(Me,J);if((0,W.z)(Me))return function P(Me,J){return new m.y(he=>{let S=0;return J.schedule(function(){S===Me.length?he.complete():(he.next(Me[S++]),he.closed||this.schedule())})})}(Me,J);if((0,B.t)(Me))return function w(Me,J){return(0,e.Xf)(Me).pipe(A(J),(0,t.Q)(J))}(Me,J);if((0,K.D)(Me))return k(Me,J);if((0,j.T)(Me))return function I(Me,J){return new m.y(he=>{let S;return(0,M.f)(he,J,()=>{S=Me[d.h](),(0,M.f)(he,J,()=>{let n,s;try{({value:n,done:s}=S.next())}catch(f){return void he.error(f)}s?he.complete():he.next(n)},0,!0)}),()=>(0,E.m)(S?.return)&&S.return()})}(Me,J);if((0,ie.L)(Me))return function se(Me,J){return k((0,ie.Q)(Me),J)}(Me,J)}throw(0,X.z)(Me)}(Me,J):(0,e.Xf)(Me)}},2438:(Fe,q,p)=>{"use strict";p.d(q,{R:()=>E});var e=p(4829),t=p(5592),y=p(1631),A=p(4266),l=p(4674),w=p(7400);const m=["addListener","removeListener"],P=["addEventListener","removeEventListener"],d=["on","off"];function E(B,W,j,K){if((0,l.m)(j)&&(K=j,j=void 0),K)return E(B,W,j).pipe((0,w.Z)(K));const[X,ie]=function z(B){return(0,l.m)(B.addEventListener)&&(0,l.m)(B.removeEventListener)}(B)?P.map(se=>ue=>B[se](W,ue,j)):function I(B){return(0,l.m)(B.addListener)&&(0,l.m)(B.removeListener)}(B)?m.map(M(B,W)):function k(B){return(0,l.m)(B.on)&&(0,l.m)(B.off)}(B)?d.map(M(B,W)):[];if(!X&&(0,A.z)(B))return(0,y.z)(se=>E(se,W,j))((0,e.Xf)(B));if(!X)throw new TypeError("Invalid event target");return new t.y(se=>{const ue=(...ae)=>se.next(1ie(ue)})}function M(B,W){return j=>K=>B[j](W,K)}},4829:(Fe,q,p)=>{"use strict";p.d(q,{Xf:()=>k});var e=p(7582),t=p(4266),y=p(4026),A=p(5592),l=p(8382),w=p(5726),m=p(9853),P=p(3664),d=p(541),E=p(4674),M=p(3894),I=p(4850);function k(se){if(se instanceof A.y)return se;if(null!=se){if((0,l.c)(se))return function z(se){return new A.y(ue=>{const ae=se[I.L]();if((0,E.m)(ae.subscribe))return ae.subscribe(ue);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(se);if((0,t.z)(se))return function B(se){return new A.y(ue=>{for(let ae=0;ae{se.then(ae=>{ue.closed||(ue.next(ae),ue.complete())},ae=>ue.error(ae)).then(null,M.h)})}(se);if((0,w.D)(se))return K(se);if((0,P.T)(se))return function j(se){return new A.y(ue=>{for(const ae of se)if(ue.next(ae),ue.closed)return;ue.complete()})}(se);if((0,d.L)(se))return function X(se){return K((0,d.Q)(se))}(se)}throw(0,m.z)(se)}function K(se){return new A.y(ue=>{(function ie(se,ue){var ae,Me,J,he;return(0,e.mG)(this,void 0,void 0,function*(){try{for(ae=(0,e.KL)(se);!(Me=yield ae.next()).done;)if(ue.next(Me.value),ue.closed)return}catch(S){J={error:S}}finally{try{Me&&!Me.done&&(he=ae.return)&&(yield he.call(ae))}finally{if(J)throw J.error}}ue.complete()})})(se,ue).catch(ae=>ue.error(ae))})}},3019:(Fe,q,p)=>{"use strict";p.d(q,{T:()=>w});var e=p(7537),t=p(4829),y=p(6232),A=p(9940),l=p(9666);function w(...m){const P=(0,A.yG)(m),d=(0,A._6)(m,1/0),E=m;return E.length?1===E.length?(0,t.Xf)(E[0]):(0,e.J)(d)((0,l.D)(E,P)):y.E}},2096:(Fe,q,p)=>{"use strict";p.d(q,{of:()=>y});var e=p(9940),t=p(9666);function y(...A){const l=(0,e.yG)(A);return(0,t.D)(A,l)}},8504:(Fe,q,p)=>{"use strict";p.d(q,{_:()=>y});var e=p(5592),t=p(4674);function y(A,l){const w=(0,t.m)(A)?A:()=>A,m=P=>P.error(w());return new e.y(l?P=>l.schedule(m,0,P):m)}},9080:(Fe,q,p)=>{"use strict";p.d(q,{H:()=>l});var e=p(5592),t=p(6321),y=p(671),A=p(93);function l(w=0,m,P=t.P){let d=-1;return null!=m&&((0,y.K)(m)?P=m:d=m),new e.y(E=>{let M=(0,A.q)(w)?+w-P.now():w;M<0&&(M=0);let I=0;return P.schedule(function(){E.closed||(E.next(I++),0<=d?this.schedule(void 0,d):E.complete())},M)})}},8251:(Fe,q,p)=>{"use strict";p.d(q,{Q:()=>y,x:()=>t});var e=p(305);function t(A,l,w,m,P){return new y(A,l,w,m,P)}class y extends e.Lv{constructor(l,w,m,P,d,E){super(l),this.onFinalize=d,this.shouldUnsubscribe=E,this._next=w?function(M){try{w(M)}catch(I){l.error(I)}}:super._next,this._error=P?function(M){try{P(M)}catch(I){l.error(I)}finally{this.unsubscribe()}}:super._error,this._complete=m?function(){try{m()}catch(M){l.error(M)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var l;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:w}=this;super.unsubscribe(),!w&&(null===(l=this.onFinalize)||void 0===l||l.call(this))}}}},9028:(Fe,q,p)=>{"use strict";p.d(q,{e:()=>m});var e=p(6321),t=p(9360),y=p(4829),A=p(8251),w=p(9080);function m(P,d=e.z){return function l(P){return(0,t.e)((d,E)=>{let M=!1,I=null,k=null,z=!1;const B=()=>{if(k?.unsubscribe(),k=null,M){M=!1;const j=I;I=null,E.next(j)}z&&E.complete()},W=()=>{k=null,z&&E.complete()};d.subscribe((0,A.x)(E,j=>{M=!0,I=j,k||(0,y.Xf)(P(j)).subscribe(k=(0,A.x)(E,B,W))},()=>{z=!0,(!M||!k||k.closed)&&E.complete()}))})}(()=>(0,w.H)(P,d))}},6306:(Fe,q,p)=>{"use strict";p.d(q,{K:()=>A});var e=p(4829),t=p(8251),y=p(9360);function A(l){return(0,y.e)((w,m)=>{let E,P=null,d=!1;P=w.subscribe((0,t.x)(m,void 0,void 0,M=>{E=(0,e.Xf)(l(M,A(l)(w))),P?(P.unsubscribe(),P=null,E.subscribe(m)):d=!0})),d&&(P.unsubscribe(),P=null,E.subscribe(m))})}},6328:(Fe,q,p)=>{"use strict";p.d(q,{b:()=>y});var e=p(1631),t=p(4674);function y(A,l){return(0,t.m)(l)?(0,e.z)(A,l,1):(0,e.z)(A,1)}},3620:(Fe,q,p)=>{"use strict";p.d(q,{b:()=>A});var e=p(6321),t=p(9360),y=p(8251);function A(l,w=e.z){return(0,t.e)((m,P)=>{let d=null,E=null,M=null;const I=()=>{if(d){d.unsubscribe(),d=null;const z=E;E=null,P.next(z)}};function k(){const z=M+l,B=w.now();if(B{E=z,M=w.now(),d||(d=w.schedule(k,l),P.add(d))},()=>{I(),P.complete()},void 0,()=>{E=d=null}))})}},3572:(Fe,q,p)=>{"use strict";p.d(q,{d:()=>y});var e=p(9360),t=p(8251);function y(A){return(0,e.e)((l,w)=>{let m=!1;l.subscribe((0,t.x)(w,P=>{m=!0,w.next(P)},()=>{m||w.next(A),w.complete()}))})}},932:(Fe,q,p)=>{"use strict";p.d(q,{g:()=>E});var e=p(6321),t=p(5211),y=p(8180),A=p(7538),l=p(975),w=p(1631),m=p(4829);function P(M,I){return I?k=>(0,t.z)(I.pipe((0,y.q)(1),(0,A.l)()),k.pipe(P(M))):(0,w.z)((k,z)=>(0,m.Xf)(M(k,z)).pipe((0,y.q)(1),(0,l.h)(k)))}var d=p(9080);function E(M,I=e.z){const k=(0,d.H)(M,I);return P(()=>k)}},3997:(Fe,q,p)=>{"use strict";p.d(q,{x:()=>A});var e=p(2737),t=p(9360),y=p(8251);function A(w,m=e.y){return w=w??l,(0,t.e)((P,d)=>{let E,M=!0;P.subscribe((0,y.x)(d,I=>{const k=m(I);(M||!w(E,k))&&(M=!1,E=k,d.next(I))}))})}function l(w,m){return w===m}},2181:(Fe,q,p)=>{"use strict";p.d(q,{h:()=>y});var e=p(9360),t=p(8251);function y(A,l){return(0,e.e)((w,m)=>{let P=0;w.subscribe((0,t.x)(m,d=>A.call(l,d,P++)&&m.next(d)))})}},4716:(Fe,q,p)=>{"use strict";p.d(q,{x:()=>t});var e=p(9360);function t(y){return(0,e.e)((A,l)=>{try{A.subscribe(l)}finally{l.add(y)}})}},1374:(Fe,q,p)=>{"use strict";p.d(q,{P:()=>m});var e=p(6973),t=p(2181),y=p(8180),A=p(3572),l=p(3026),w=p(2737);function m(P,d){const E=arguments.length>=2;return M=>M.pipe(P?(0,t.h)((I,k)=>P(I,k,M)):w.y,(0,y.q)(1),E?(0,A.d)(d):(0,l.T)(()=>new e.K))}},7538:(Fe,q,p)=>{"use strict";p.d(q,{l:()=>A});var e=p(9360),t=p(8251),y=p(2420);function A(){return(0,e.e)((l,w)=>{l.subscribe((0,t.x)(w,y.Z))})}},7398:(Fe,q,p)=>{"use strict";p.d(q,{U:()=>y});var e=p(9360),t=p(8251);function y(A,l){return(0,e.e)((w,m)=>{let P=0;w.subscribe((0,t.x)(m,d=>{m.next(A.call(l,d,P++))}))})}},975:(Fe,q,p)=>{"use strict";p.d(q,{h:()=>t});var e=p(7398);function t(y){return(0,e.U)(()=>y)}},7537:(Fe,q,p)=>{"use strict";p.d(q,{J:()=>y});var e=p(1631),t=p(2737);function y(A=1/0){return(0,e.z)(t.y,A)}},1631:(Fe,q,p)=>{"use strict";p.d(q,{z:()=>P});var e=p(7398),t=p(4829),y=p(9360),A=p(7103),l=p(8251),m=p(4674);function P(d,E,M=1/0){return(0,m.m)(E)?P((I,k)=>(0,e.U)((z,B)=>E(I,z,k,B))((0,t.Xf)(d(I,k))),M):("number"==typeof E&&(M=E),(0,y.e)((I,k)=>function w(d,E,M,I,k,z,B,W){const j=[];let K=0,X=0,ie=!1;const se=()=>{ie&&!j.length&&!K&&E.complete()},ue=Me=>K{z&&E.next(Me),K++;let J=!1;(0,t.Xf)(M(Me,X++)).subscribe((0,l.x)(E,he=>{k?.(he),z?ue(he):E.next(he)},()=>{J=!0},void 0,()=>{if(J)try{for(K--;j.length&&Kae(he)):ae(he)}se()}catch(he){E.error(he)}}))};return d.subscribe((0,l.x)(E,ue,()=>{ie=!0,se()})),()=>{W?.()}}(I,k,d,M)))}},3093:(Fe,q,p)=>{"use strict";p.d(q,{Q:()=>A});var e=p(7103),t=p(9360),y=p(8251);function A(l,w=0){return(0,t.e)((m,P)=>{m.subscribe((0,y.x)(P,d=>(0,e.f)(P,l,()=>P.next(d),w),()=>(0,e.f)(P,l,()=>P.complete(),w),d=>(0,e.f)(P,l,()=>P.error(d),w)))})}},6196:(Fe,q,p)=>{"use strict";p.d(q,{x:()=>y});var e=p(9360),t=p(8251);function y(){return(0,e.e)((A,l)=>{let w=null;A._refCount++;const m=(0,t.x)(l,void 0,void 0,void 0,()=>{if(!A||A._refCount<=0||0<--A._refCount)return void(w=null);const P=A._connection,d=w;w=null,P&&(!d||P===d)&&P.unsubscribe(),l.unsubscribe()});A.subscribe(m),m.closed||(w=A.connect())})}},6699:(Fe,q,p)=>{"use strict";p.d(q,{R:()=>A});var e=p(9360),t=p(8251);function A(l,w){return(0,e.e)(function y(l,w,m,P,d){return(E,M)=>{let I=m,k=w,z=0;E.subscribe((0,t.x)(M,B=>{const W=z++;k=I?l(k,B,W):(I=!0,B),P&&M.next(k)},d&&(()=>{I&&M.next(k),M.complete()})))}}(l,w,arguments.length>=2,!0))}},3020:(Fe,q,p)=>{"use strict";p.d(q,{B:()=>l});var e=p(4829),t=p(8645),y=p(305),A=p(9360);function l(m={}){const{connector:P=(()=>new t.x),resetOnError:d=!0,resetOnComplete:E=!0,resetOnRefCountZero:M=!0}=m;return I=>{let k,z,B,W=0,j=!1,K=!1;const X=()=>{z?.unsubscribe(),z=void 0},ie=()=>{X(),k=B=void 0,j=K=!1},se=()=>{const ue=k;ie(),ue?.unsubscribe()};return(0,A.e)((ue,ae)=>{W++,!K&&!j&&X();const Me=B=B??P();ae.add(()=>{W--,0===W&&!K&&!j&&(z=w(se,M))}),Me.subscribe(ae),!k&&W>0&&(k=new y.Hp({next:J=>Me.next(J),error:J=>{K=!0,X(),z=w(ie,d,J),Me.error(J)},complete:()=>{j=!0,X(),z=w(ie,E),Me.complete()}}),(0,e.Xf)(ue).subscribe(k))})(I)}}function w(m,P,...d){if(!0===P)return void m();if(!1===P)return;const E=new y.Hp({next:()=>{E.unsubscribe(),m()}});return(0,e.Xf)(P(...d)).subscribe(E)}},836:(Fe,q,p)=>{"use strict";p.d(q,{T:()=>t});var e=p(2181);function t(y){return(0,e.h)((A,l)=>y<=l)}},7921:(Fe,q,p)=>{"use strict";p.d(q,{O:()=>A});var e=p(5211),t=p(9940),y=p(9360);function A(...l){const w=(0,t.yG)(l);return(0,y.e)((m,P)=>{(w?(0,e.z)(l,m,w):(0,e.z)(l,m)).subscribe(P)})}},4664:(Fe,q,p)=>{"use strict";p.d(q,{w:()=>A});var e=p(4829),t=p(9360),y=p(8251);function A(l,w){return(0,t.e)((m,P)=>{let d=null,E=0,M=!1;const I=()=>M&&!d&&P.complete();m.subscribe((0,y.x)(P,k=>{d?.unsubscribe();let z=0;const B=E++;(0,e.Xf)(l(k,B)).subscribe(d=(0,y.x)(P,W=>P.next(w?w(k,W,B,z++):W),()=>{d=null,I()}))},()=>{M=!0,I()}))})}},8180:(Fe,q,p)=>{"use strict";p.d(q,{q:()=>A});var e=p(6232),t=p(9360),y=p(8251);function A(l){return l<=0?()=>e.E:(0,t.e)((w,m)=>{let P=0;w.subscribe((0,y.x)(m,d=>{++P<=l&&(m.next(d),l<=P&&m.complete())}))})}},9773:(Fe,q,p)=>{"use strict";p.d(q,{R:()=>l});var e=p(9360),t=p(8251),y=p(4829),A=p(2420);function l(w){return(0,e.e)((m,P)=>{(0,y.Xf)(w).subscribe((0,t.x)(P,()=>P.complete(),A.Z)),!P.closed&&m.subscribe(P)})}},9397:(Fe,q,p)=>{"use strict";p.d(q,{b:()=>l});var e=p(4674),t=p(9360),y=p(8251),A=p(2737);function l(w,m,P){const d=(0,e.m)(w)||m||P?{next:w,error:m,complete:P}:w;return d?(0,t.e)((E,M)=>{var I;null===(I=d.subscribe)||void 0===I||I.call(d);let k=!0;E.subscribe((0,y.x)(M,z=>{var B;null===(B=d.next)||void 0===B||B.call(d,z),M.next(z)},()=>{var z;k=!1,null===(z=d.complete)||void 0===z||z.call(d),M.complete()},z=>{var B;k=!1,null===(B=d.error)||void 0===B||B.call(d,z),M.error(z)},()=>{var z,B;k&&(null===(z=d.unsubscribe)||void 0===z||z.call(d)),null===(B=d.finalize)||void 0===B||B.call(d)}))}):A.y}},3026:(Fe,q,p)=>{"use strict";p.d(q,{T:()=>A});var e=p(6973),t=p(9360),y=p(8251);function A(w=l){return(0,t.e)((m,P)=>{let d=!1;m.subscribe((0,y.x)(P,E=>{d=!0,P.next(E)},()=>d?P.complete():P.error(w())))})}function l(){return new e.K}},5178:(Fe,q,p)=>{"use strict";p.d(q,{V:()=>d});var e=p(6321),t=p(93),y=p(9360),A=p(4829),l=p(2306),w=p(8251),m=p(7103);const P=(0,l.d)(M=>function(k=null){M(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=k});function d(M,I){const{first:k,each:z,with:B=E,scheduler:W=I??e.z,meta:j=null}=(0,t.q)(M)?{first:M}:"number"==typeof M?{each:M}:M;if(null==k&&null==z)throw new TypeError("No timeout provided.");return(0,y.e)((K,X)=>{let ie,se,ue=null,ae=0;const Me=J=>{se=(0,m.f)(X,W,()=>{try{ie.unsubscribe(),(0,A.Xf)(B({meta:j,lastValue:ue,seen:ae})).subscribe(X)}catch(he){X.error(he)}},J)};ie=K.subscribe((0,w.x)(X,J=>{se?.unsubscribe(),ae++,X.next(ue=J),z>0&&Me(z)},void 0,void 0,()=>{se?.closed||se?.unsubscribe(),ue=null})),!ae&&Me(null!=k?"number"==typeof k?k:+k-W.now():z)})}function E(M){throw new P(M)}},2460:(Fe,q,p)=>{"use strict";p.d(q,{M:()=>m});var e=p(9360),t=p(8251),y=p(4829),A=p(2737),l=p(2420),w=p(9940);function m(...P){const d=(0,w.jO)(P);return(0,e.e)((E,M)=>{const I=P.length,k=new Array(I);let z=P.map(()=>!1),B=!1;for(let W=0;W{k[W]=j,!B&&!z[W]&&(z[W]=!0,(B=z.every(A.y))&&(z=null))},l.Z));E.subscribe((0,t.x)(M,W=>{if(B){const j=[W,...k];M.next(d?d(...j):j)}}))})}},1954:(Fe,q,p)=>{"use strict";p.d(q,{o:()=>l});var e=p(7394);class t extends e.w0{constructor(m,P){super()}schedule(m,P=0){return this}}const y={setInterval(w,m,...P){const{delegate:d}=y;return d?.setInterval?d.setInterval(w,m,...P):setInterval(w,m,...P)},clearInterval(w){const{delegate:m}=y;return(m?.clearInterval||clearInterval)(w)},delegate:void 0};var A=p(9039);class l extends t{constructor(m,P){super(m,P),this.scheduler=m,this.work=P,this.pending=!1}schedule(m,P=0){var d;if(this.closed)return this;this.state=m;const E=this.id,M=this.scheduler;return null!=E&&(this.id=this.recycleAsyncId(M,E,P)),this.pending=!0,this.delay=P,this.id=null!==(d=this.id)&&void 0!==d?d:this.requestAsyncId(M,this.id,P),this}requestAsyncId(m,P,d=0){return y.setInterval(m.flush.bind(m,this),d)}recycleAsyncId(m,P,d=0){if(null!=d&&this.delay===d&&!1===this.pending)return P;null!=P&&y.clearInterval(P)}execute(m,P){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const d=this._execute(m,P);if(d)return d;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(m,P){let E,d=!1;try{this.work(m)}catch(M){d=!0,E=M||new Error("Scheduled action threw falsy error")}if(d)return this.unsubscribe(),E}unsubscribe(){if(!this.closed){const{id:m,scheduler:P}=this,{actions:d}=P;this.work=this.state=this.scheduler=null,this.pending=!1,(0,A.P)(d,this),null!=m&&(this.id=this.recycleAsyncId(P,m,null)),this.delay=null,super.unsubscribe()}}}},2631:(Fe,q,p)=>{"use strict";p.d(q,{v:()=>y});var e=p(4552);class t{constructor(l,w=t.now){this.schedulerActionCtor=l,this.now=w}schedule(l,w=0,m){return new this.schedulerActionCtor(this,l).schedule(m,w)}}t.now=e.l.now;class y extends t{constructor(l,w=t.now){super(l,w),this.actions=[],this._active=!1}flush(l){const{actions:w}=this;if(this._active)return void w.push(l);let m;this._active=!0;do{if(m=l.execute(l.state,l.delay))break}while(l=w.shift());if(this._active=!1,m){for(;l=w.shift();)l.unsubscribe();throw m}}}},6410:(Fe,q,p)=>{"use strict";p.d(q,{E:()=>z});var e=p(1954);let y,t=1;const A={};function l(W){return W in A&&(delete A[W],!0)}const w={setImmediate(W){const j=t++;return A[j]=!0,y||(y=Promise.resolve()),y.then(()=>l(j)&&W()),j},clearImmediate(W){l(W)}},{setImmediate:P,clearImmediate:d}=w,E={setImmediate(...W){const{delegate:j}=E;return(j?.setImmediate||P)(...W)},clearImmediate(W){const{delegate:j}=E;return(j?.clearImmediate||d)(W)},delegate:void 0};var I=p(2631);const z=new class k extends I.v{flush(j){this._active=!0;const K=this._scheduled;this._scheduled=void 0;const{actions:X}=this;let ie;j=j||X.shift();do{if(ie=j.execute(j.state,j.delay))break}while((j=X[0])&&j.id===K&&X.shift());if(this._active=!1,ie){for(;(j=X[0])&&j.id===K&&X.shift();)j.unsubscribe();throw ie}}}(class M extends e.o{constructor(j,K){super(j,K),this.scheduler=j,this.work=K}requestAsyncId(j,K,X=0){return null!==X&&X>0?super.requestAsyncId(j,K,X):(j.actions.push(this),j._scheduled||(j._scheduled=E.setImmediate(j.flush.bind(j,void 0))))}recycleAsyncId(j,K,X=0){var ie;if(null!=X?X>0:this.delay>0)return super.recycleAsyncId(j,K,X);const{actions:se}=j;null!=K&&(null===(ie=se[se.length-1])||void 0===ie?void 0:ie.id)!==K&&(E.clearImmediate(K),j._scheduled===K&&(j._scheduled=void 0))}})},6321:(Fe,q,p)=>{"use strict";p.d(q,{P:()=>A,z:()=>y});var e=p(1954);const y=new(p(2631).v)(e.o),A=y},4552:(Fe,q,p)=>{"use strict";p.d(q,{l:()=>e});const e={now:()=>(e.delegate||Date).now(),delegate:void 0}},2381:(Fe,q,p)=>{"use strict";p.d(q,{N:()=>l});var e=p(1954),y=p(2631);const l=new class A extends y.v{}(class t extends e.o{constructor(P,d){super(P,d),this.scheduler=P,this.work=d}schedule(P,d=0){return d>0?super.schedule(P,d):(this.delay=d,this.state=P,this.scheduler.flush(this),this)}execute(P,d){return d>0||this.closed?super.execute(P,d):this._execute(P,d)}requestAsyncId(P,d,E=0){return null!=E&&E>0||null==E&&this.delay>0?super.requestAsyncId(P,d,E):(P.flush(this),0)}})},7599:(Fe,q,p)=>{"use strict";p.d(q,{z:()=>e});const e={setTimeout(t,y,...A){const{delegate:l}=e;return l?.setTimeout?l.setTimeout(t,y,...A):setTimeout(t,y,...A)},clearTimeout(t){const{delegate:y}=e;return(y?.clearTimeout||clearTimeout)(t)},delegate:void 0}},4971:(Fe,q,p)=>{"use strict";p.d(q,{h:()=>t});const t=function e(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},4850:(Fe,q,p)=>{"use strict";p.d(q,{L:()=>e});const e="function"==typeof Symbol&&Symbol.observable||"@@observable"},6973:(Fe,q,p)=>{"use strict";p.d(q,{K:()=>t});const t=(0,p(2306).d)(y=>function(){y(this),this.name="EmptyError",this.message="no elements in sequence"})},9940:(Fe,q,p)=>{"use strict";p.d(q,{_6:()=>w,jO:()=>A,yG:()=>l});var e=p(4674),t=p(671);function y(m){return m[m.length-1]}function A(m){return(0,e.m)(y(m))?m.pop():void 0}function l(m){return(0,t.K)(y(m))?m.pop():void 0}function w(m,P){return"number"==typeof y(m)?m.pop():P}},7453:(Fe,q,p)=>{"use strict";p.d(q,{D:()=>l});const{isArray:e}=Array,{getPrototypeOf:t,prototype:y,keys:A}=Object;function l(m){if(1===m.length){const P=m[0];if(e(P))return{args:P,keys:null};if(function w(m){return m&&"object"==typeof m&&t(m)===y}(P)){const d=A(P);return{args:d.map(E=>P[E]),keys:d}}}return{args:m,keys:null}}},9039:(Fe,q,p)=>{"use strict";function e(t,y){if(t){const A=t.indexOf(y);0<=A&&t.splice(A,1)}}p.d(q,{P:()=>e})},2306:(Fe,q,p)=>{"use strict";function e(t){const A=t(l=>{Error.call(l),l.stack=(new Error).stack});return A.prototype=Object.create(Error.prototype),A.prototype.constructor=A,A}p.d(q,{d:()=>e})},2714:(Fe,q,p)=>{"use strict";function e(t,y){return t.reduce((A,l,w)=>(A[l]=y[w],A),{})}p.d(q,{n:()=>e})},1441:(Fe,q,p)=>{"use strict";p.d(q,{O:()=>A,x:()=>y});var e=p(2653);let t=null;function y(l){if(e.config.useDeprecatedSynchronousErrorHandling){const w=!t;if(w&&(t={errorThrown:!1,error:null}),l(),w){const{errorThrown:m,error:P}=t;if(t=null,m)throw P}}else l()}function A(l){e.config.useDeprecatedSynchronousErrorHandling&&t&&(t.errorThrown=!0,t.error=l)}},7103:(Fe,q,p)=>{"use strict";function e(t,y,A,l=0,w=!1){const m=y.schedule(function(){A(),w?t.add(this.schedule(null,l)):this.unsubscribe()},l);if(t.add(m),!w)return m}p.d(q,{f:()=>e})},2737:(Fe,q,p)=>{"use strict";function e(t){return t}p.d(q,{y:()=>e})},4266:(Fe,q,p)=>{"use strict";p.d(q,{z:()=>e});const e=t=>t&&"number"==typeof t.length&&"function"!=typeof t},5726:(Fe,q,p)=>{"use strict";p.d(q,{D:()=>t});var e=p(4674);function t(y){return Symbol.asyncIterator&&(0,e.m)(y?.[Symbol.asyncIterator])}},93:(Fe,q,p)=>{"use strict";function e(t){return t instanceof Date&&!isNaN(t)}p.d(q,{q:()=>e})},4674:(Fe,q,p)=>{"use strict";function e(t){return"function"==typeof t}p.d(q,{m:()=>e})},8382:(Fe,q,p)=>{"use strict";p.d(q,{c:()=>y});var e=p(4850),t=p(4674);function y(A){return(0,t.m)(A[e.L])}},3664:(Fe,q,p)=>{"use strict";p.d(q,{T:()=>y});var e=p(4971),t=p(4674);function y(A){return(0,t.m)(A?.[e.h])}},2664:(Fe,q,p)=>{"use strict";p.d(q,{b:()=>y});var e=p(5592),t=p(4674);function y(A){return!!A&&(A instanceof e.y||(0,t.m)(A.lift)&&(0,t.m)(A.subscribe))}},4026:(Fe,q,p)=>{"use strict";p.d(q,{t:()=>t});var e=p(4674);function t(y){return(0,e.m)(y?.then)}},541:(Fe,q,p)=>{"use strict";p.d(q,{L:()=>A,Q:()=>y});var e=p(7582),t=p(4674);function y(l){return(0,e.FC)(this,arguments,function*(){const m=l.getReader();try{for(;;){const{value:P,done:d}=yield(0,e.qq)(m.read());if(d)return yield(0,e.qq)(void 0);yield yield(0,e.qq)(P)}}finally{m.releaseLock()}})}function A(l){return(0,t.m)(l?.getReader)}},671:(Fe,q,p)=>{"use strict";p.d(q,{K:()=>t});var e=p(4674);function t(y){return y&&(0,e.m)(y.schedule)}},9360:(Fe,q,p)=>{"use strict";p.d(q,{A:()=>t,e:()=>y});var e=p(4674);function t(A){return(0,e.m)(A?.lift)}function y(A){return l=>{if(t(l))return l.lift(function(w){try{return A(w,this)}catch(m){this.error(m)}});throw new TypeError("Unable to lift unknown Observable type")}}},7400:(Fe,q,p)=>{"use strict";p.d(q,{Z:()=>A});var e=p(7398);const{isArray:t}=Array;function A(l){return(0,e.U)(w=>function y(l,w){return t(w)?l(...w):l(w)}(l,w))}},2420:(Fe,q,p)=>{"use strict";function e(){}p.d(q,{Z:()=>e})},8407:(Fe,q,p)=>{"use strict";p.d(q,{U:()=>y,z:()=>t});var e=p(2737);function t(...A){return y(A)}function y(A){return 0===A.length?e.y:1===A.length?A[0]:function(w){return A.reduce((m,P)=>P(m),w)}}},3894:(Fe,q,p)=>{"use strict";p.d(q,{h:()=>y});var e=p(2653),t=p(7599);function y(A){t.z.setTimeout(()=>{const{onUnhandledError:l}=e.config;if(!l)throw A;l(A)})}},9853:(Fe,q,p)=>{"use strict";function e(t){return new TypeError(`You provided ${null!==t&&"object"==typeof t?"an invalid object":`'${t}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}p.d(q,{z:()=>e})},843:(Fe,q,p)=>{var e=p(9007),t=e.Buffer;function y(l,w){for(var m in l)w[m]=l[m]}function A(l,w,m){return t(l,w,m)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Fe.exports=e:(y(e,q),q.Buffer=A),A.prototype=Object.create(t.prototype),y(t,A),A.from=function(l,w,m){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,w,m)},A.alloc=function(l,w,m){if("number"!=typeof l)throw new TypeError("Argument must be a number");var P=t(l);return void 0!==w?"string"==typeof m?P.fill(w,m):P.fill(w):P.fill(0),P},A.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},A.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},4179:(Fe,q,p)=>{"use strict";var A,e=p(9007),t=e.Buffer,y={};for(A in e)e.hasOwnProperty(A)&&("SlowBuffer"===A||"Buffer"===A||(y[A]=e[A]));var l=y.Buffer={};for(A in t)t.hasOwnProperty(A)&&("allocUnsafe"===A||"allocUnsafeSlow"===A||(l[A]=t[A]));if(y.Buffer.prototype=t.prototype,(!l.from||l.from===Uint8Array.from)&&(l.from=function(w,m,P){if("number"==typeof w)throw new TypeError('The "value" argument must not be of type number. Received type '+typeof w);if(w&&typeof w.length>"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof w);return t(w,m,P)}),l.alloc||(l.alloc=function(w,m,P){if("number"!=typeof w)throw new TypeError('The "size" argument must be of type number. Received type '+typeof w);if(w<0||w>=2*(1<<30))throw new RangeError('The value "'+w+'" is invalid for option "size"');var d=t(w);return m&&0!==m.length?"string"==typeof P?d.fill(m,P):d.fill(m):d.fill(0),d}),!y.kStringMaxLength)try{y.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch{}y.constants||(y.constants={MAX_LENGTH:y.kMaxLength},y.kStringMaxLength&&(y.constants.MAX_STRING_LENGTH=y.kStringMaxLength)),Fe.exports=y},3581:(Fe,q,p)=>{var e=p(843).Buffer;function t(y,A){this._block=e.alloc(y),this._finalSize=A,this._blockSize=y,this._len=0}t.prototype.update=function(y,A){"string"==typeof y&&(y=e.from(y,A=A||"utf8"));for(var l=this._block,w=this._blockSize,m=y.length,P=this._len,d=0;d=this._finalSize&&(this._update(this._block),this._block.fill(0));var l=8*this._len;if(l<=4294967295)this._block.writeUInt32BE(l,this._blockSize-4);else{var w=(4294967295&l)>>>0;this._block.writeUInt32BE((l-w)/4294967296,this._blockSize-8),this._block.writeUInt32BE(w,this._blockSize-4)}this._update(this._block);var P=this._hash();return y?P.toString(y):P},t.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Fe.exports=t},7965:(Fe,q,p)=>{var e=Fe.exports=function(y){y=y.toLowerCase();var A=e[y];if(!A)throw new Error(y+" is not supported (we accept pull requests)");return new A};e.sha=p(7915),e.sha1=p(1229),e.sha224=p(2959),e.sha256=p(450),e.sha384=p(1723),e.sha512=p(7914)},7915:(Fe,q,p)=>{var e=p(6698),t=p(3581),y=p(843).Buffer,A=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function w(){this.init(),this._w=l,t.call(this,64,56)}function m(E){return E<<5|E>>>27}function P(E){return E<<30|E>>>2}function d(E,M,I,k){return 0===E?M&I|~M&k:2===E?M&I|M&k|I&k:M^I^k}e(w,t),w.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},w.prototype._update=function(E){for(var M=this._w,I=0|this._a,k=0|this._b,z=0|this._c,B=0|this._d,W=0|this._e,j=0;j<16;++j)M[j]=E.readInt32BE(4*j);for(;j<80;++j)M[j]=M[j-3]^M[j-8]^M[j-14]^M[j-16];for(var K=0;K<80;++K){var X=~~(K/20),ie=m(I)+d(X,k,z,B)+W+M[K]+A[X]|0;W=B,B=z,z=P(k),k=I,I=ie}this._a=I+this._a|0,this._b=k+this._b|0,this._c=z+this._c|0,this._d=B+this._d|0,this._e=W+this._e|0},w.prototype._hash=function(){var E=y.allocUnsafe(20);return E.writeInt32BE(0|this._a,0),E.writeInt32BE(0|this._b,4),E.writeInt32BE(0|this._c,8),E.writeInt32BE(0|this._d,12),E.writeInt32BE(0|this._e,16),E},Fe.exports=w},1229:(Fe,q,p)=>{var e=p(6698),t=p(3581),y=p(843).Buffer,A=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function w(){this.init(),this._w=l,t.call(this,64,56)}function m(M){return M<<1|M>>>31}function P(M){return M<<5|M>>>27}function d(M){return M<<30|M>>>2}function E(M,I,k,z){return 0===M?I&k|~I&z:2===M?I&k|I&z|k&z:I^k^z}e(w,t),w.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},w.prototype._update=function(M){for(var I=this._w,k=0|this._a,z=0|this._b,B=0|this._c,W=0|this._d,j=0|this._e,K=0;K<16;++K)I[K]=M.readInt32BE(4*K);for(;K<80;++K)I[K]=m(I[K-3]^I[K-8]^I[K-14]^I[K-16]);for(var X=0;X<80;++X){var ie=~~(X/20),se=P(k)+E(ie,z,B,W)+j+I[X]+A[ie]|0;j=W,W=B,B=d(z),z=k,k=se}this._a=k+this._a|0,this._b=z+this._b|0,this._c=B+this._c|0,this._d=W+this._d|0,this._e=j+this._e|0},w.prototype._hash=function(){var M=y.allocUnsafe(20);return M.writeInt32BE(0|this._a,0),M.writeInt32BE(0|this._b,4),M.writeInt32BE(0|this._c,8),M.writeInt32BE(0|this._d,12),M.writeInt32BE(0|this._e,16),M},Fe.exports=w},2959:(Fe,q,p)=>{var e=p(6698),t=p(450),y=p(3581),A=p(843).Buffer,l=new Array(64);function w(){this.init(),this._w=l,y.call(this,64,56)}e(w,t),w.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},w.prototype._hash=function(){var m=A.allocUnsafe(28);return m.writeInt32BE(this._a,0),m.writeInt32BE(this._b,4),m.writeInt32BE(this._c,8),m.writeInt32BE(this._d,12),m.writeInt32BE(this._e,16),m.writeInt32BE(this._f,20),m.writeInt32BE(this._g,24),m},Fe.exports=w},450:(Fe,q,p)=>{var e=p(6698),t=p(3581),y=p(843).Buffer,A=[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],l=new Array(64);function w(){this.init(),this._w=l,t.call(this,64,56)}function m(k,z,B){return B^k&(z^B)}function P(k,z,B){return k&z|B&(k|z)}function d(k){return(k>>>2|k<<30)^(k>>>13|k<<19)^(k>>>22|k<<10)}function E(k){return(k>>>6|k<<26)^(k>>>11|k<<21)^(k>>>25|k<<7)}function M(k){return(k>>>7|k<<25)^(k>>>18|k<<14)^k>>>3}function I(k){return(k>>>17|k<<15)^(k>>>19|k<<13)^k>>>10}e(w,t),w.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},w.prototype._update=function(k){for(var z=this._w,B=0|this._a,W=0|this._b,j=0|this._c,K=0|this._d,X=0|this._e,ie=0|this._f,se=0|this._g,ue=0|this._h,ae=0;ae<16;++ae)z[ae]=k.readInt32BE(4*ae);for(;ae<64;++ae)z[ae]=I(z[ae-2])+z[ae-7]+M(z[ae-15])+z[ae-16]|0;for(var Me=0;Me<64;++Me){var J=ue+E(X)+m(X,ie,se)+A[Me]+z[Me]|0,he=d(B)+P(B,W,j)|0;ue=se,se=ie,ie=X,X=K+J|0,K=j,j=W,W=B,B=J+he|0}this._a=B+this._a|0,this._b=W+this._b|0,this._c=j+this._c|0,this._d=K+this._d|0,this._e=X+this._e|0,this._f=ie+this._f|0,this._g=se+this._g|0,this._h=ue+this._h|0},w.prototype._hash=function(){var k=y.allocUnsafe(32);return k.writeInt32BE(this._a,0),k.writeInt32BE(this._b,4),k.writeInt32BE(this._c,8),k.writeInt32BE(this._d,12),k.writeInt32BE(this._e,16),k.writeInt32BE(this._f,20),k.writeInt32BE(this._g,24),k.writeInt32BE(this._h,28),k},Fe.exports=w},1723:(Fe,q,p)=>{var e=p(6698),t=p(7914),y=p(3581),A=p(843).Buffer,l=new Array(160);function w(){this.init(),this._w=l,y.call(this,128,112)}e(w,t),w.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},w.prototype._hash=function(){var m=A.allocUnsafe(48);function P(d,E,M){m.writeInt32BE(d,M),m.writeInt32BE(E,M+4)}return P(this._ah,this._al,0),P(this._bh,this._bl,8),P(this._ch,this._cl,16),P(this._dh,this._dl,24),P(this._eh,this._el,32),P(this._fh,this._fl,40),m},Fe.exports=w},7914:(Fe,q,p)=>{var e=p(6698),t=p(3581),y=p(843).Buffer,A=[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],l=new Array(160);function w(){this.init(),this._w=l,t.call(this,128,112)}function m(W,j,K){return K^W&(j^K)}function P(W,j,K){return W&j|K&(W|j)}function d(W,j){return(W>>>28|j<<4)^(j>>>2|W<<30)^(j>>>7|W<<25)}function E(W,j){return(W>>>14|j<<18)^(W>>>18|j<<14)^(j>>>9|W<<23)}function M(W,j){return(W>>>1|j<<31)^(W>>>8|j<<24)^W>>>7}function I(W,j){return(W>>>1|j<<31)^(W>>>8|j<<24)^(W>>>7|j<<25)}function k(W,j){return(W>>>19|j<<13)^(j>>>29|W<<3)^W>>>6}function z(W,j){return(W>>>19|j<<13)^(j>>>29|W<<3)^(W>>>6|j<<26)}function B(W,j){return W>>>0>>0?1:0}e(w,t),w.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},w.prototype._update=function(W){for(var j=this._w,K=0|this._ah,X=0|this._bh,ie=0|this._ch,se=0|this._dh,ue=0|this._eh,ae=0|this._fh,Me=0|this._gh,J=0|this._hh,he=0|this._al,S=0|this._bl,n=0|this._cl,s=0|this._dl,f=0|this._el,h=0|this._fl,C=0|this._gl,D=0|this._hl,O=0;O<32;O+=2)j[O]=W.readInt32BE(4*O),j[O+1]=W.readInt32BE(4*O+4);for(;O<160;O+=2){var v=j[O-30],r=j[O-30+1],g=M(v,r),H=I(r,v),R=k(v=j[O-4],r=j[O-4+1]),ee=z(r,v),Ke=j[O-32],Je=j[O-32+1],ye=H+j[O-14+1]|0,fe=g+j[O-14]+B(ye,H)|0;fe=(fe=fe+R+B(ye=ye+ee|0,ee)|0)+Ke+B(ye=ye+Je|0,Je)|0,j[O]=fe,j[O+1]=ye}for(var de=0;de<160;de+=2){fe=j[de],ye=j[de+1];var xe=P(K,X,ie),le=P(he,S,n),pe=d(K,he),qe=d(he,K),re=E(ue,f),ve=E(f,ue),ce=A[de],Ze=A[de+1],We=m(ue,ae,Me),Ct=m(f,h,C),ut=D+ve|0,It=J+re+B(ut,D)|0;It=(It=(It=It+We+B(ut=ut+Ct|0,Ct)|0)+ce+B(ut=ut+Ze|0,Ze)|0)+fe+B(ut=ut+ye|0,ye)|0;var Ae=qe+le|0,Be=pe+xe+B(Ae,qe)|0;J=Me,D=C,Me=ae,C=h,ae=ue,h=f,ue=se+It+B(f=s+ut|0,s)|0,se=ie,s=n,ie=X,n=S,X=K,S=he,K=It+Be+B(he=ut+Ae|0,ut)|0}this._al=this._al+he|0,this._bl=this._bl+S|0,this._cl=this._cl+n|0,this._dl=this._dl+s|0,this._el=this._el+f|0,this._fl=this._fl+h|0,this._gl=this._gl+C|0,this._hl=this._hl+D|0,this._ah=this._ah+K+B(this._al,he)|0,this._bh=this._bh+X+B(this._bl,S)|0,this._ch=this._ch+ie+B(this._cl,n)|0,this._dh=this._dh+se+B(this._dl,s)|0,this._eh=this._eh+ue+B(this._el,f)|0,this._fh=this._fh+ae+B(this._fl,h)|0,this._gh=this._gh+Me+B(this._gl,C)|0,this._hh=this._hh+J+B(this._hl,D)|0},w.prototype._hash=function(){var W=y.allocUnsafe(64);function j(K,X,ie){W.writeInt32BE(K,ie),W.writeInt32BE(X,ie+4)}return j(this._ah,this._al,0),j(this._bh,this._bl,8),j(this._ch,this._cl,16),j(this._dh,this._dl,24),j(this._eh,this._el,32),j(this._fh,this._fl,40),j(this._gh,this._gl,48),j(this._hh,this._hl,56),W},Fe.exports=w},8927:function(Fe,q,p){!function(e){"use strict";var t={};Fe.exports?(t.bytesToHex=p(188).bytesToHex,t.convertString=p(5486),Fe.exports=P):(t.bytesToHex=e.convertHex.bytesToHex,t.convertString=e.convertString,e.sha256=P);var y=[];!function(){function d(k){for(var z=Math.sqrt(k),B=2;B<=z;B++)if(!(k%B))return!1;return!0}for(var M=2,I=0;I<64;)d(M)&&(y[I]=4294967296*((k=Math.pow(M,1/3))-(0|k))|0,I++),M++;var k}();var A=function(d){for(var E=[],M=0,I=0;M>>5]|=d[M]<<24-I%32;return E},l=function(d){for(var E=[],M=0;M<32*d.length;M+=8)E.push(d[M>>>5]>>>24-M%32&255);return E},w=[],m=function(d,E,M){for(var I=d[0],k=d[1],z=d[2],B=d[3],W=d[4],j=d[5],K=d[6],X=d[7],ie=0;ie<64;ie++){if(ie<16)w[ie]=0|E[M+ie];else{var se=w[ie-15],ae=w[ie-2];w[ie]=((se<<25|se>>>7)^(se<<14|se>>>18)^se>>>3)+w[ie-7]+((ae<<15|ae>>>17)^(ae<<13|ae>>>19)^ae>>>10)+w[ie-16]}var he=I&k^I&z^k&z,s=X+((W<<26|W>>>6)^(W<<21|W>>>11)^(W<<7|W>>>25))+(W&j^~W&K)+y[ie]+w[ie];X=K,K=j,j=W,W=B+s|0,B=z,z=k,k=I,I=s+(((I<<30|I>>>2)^(I<<19|I>>>13)^(I<<10|I>>>22))+he)|0}d[0]=d[0]+I|0,d[1]=d[1]+k|0,d[2]=d[2]+z|0,d[3]=d[3]+B|0,d[4]=d[4]+W|0,d[5]=d[5]+j|0,d[6]=d[6]+K|0,d[7]=d[7]+X|0};function P(d,E){d.constructor===String&&(d=t.convertString.UTF8.stringToBytes(d));var M=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],I=A(d),k=8*d.length;I[k>>5]|=128<<24-k%32,I[15+(k+64>>9<<4)]=k;for(var z=0;z{Fe.exports=y;var e=p(2016).EventEmitter;function y(){e.call(this)}p(6698)(y,e),y.Readable=p(309),y.Writable=p(6563),y.Duplex=p(247),y.Transform=p(6307),y.PassThrough=p(5096),y.finished=p(4618),y.pipeline=p(4514),y.Stream=y,y.prototype.pipe=function(A,l){var w=this;function m(z){A.writable&&!1===A.write(z)&&w.pause&&w.pause()}function P(){w.readable&&w.resume&&w.resume()}w.on("data",m),A.on("drain",P),!A._isStdio&&(!l||!1!==l.end)&&(w.on("end",E),w.on("close",M));var d=!1;function E(){d||(d=!0,A.end())}function M(){d||(d=!0,"function"==typeof A.destroy&&A.destroy())}function I(z){if(k(),0===e.listenerCount(this,"error"))throw z}function k(){w.removeListener("data",m),A.removeListener("drain",P),w.removeListener("end",E),w.removeListener("close",M),w.removeListener("error",I),A.removeListener("error",I),w.removeListener("end",k),w.removeListener("close",k),A.removeListener("close",k)}return w.on("error",I),A.on("error",I),w.on("end",k),w.on("close",k),A.on("close",k),A.emit("pipe",w),A}},2024:(Fe,q,p)=>{"use strict";var e=p(843).Buffer,t=e.isEncoding||function(K){switch((K=""+K)&&K.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 l(K){var X;switch(this.encoding=function A(K){var X=function y(K){if(!K)return"utf8";for(var X;;)switch(K){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 K;default:if(X)return;K=(""+K).toLowerCase(),X=!0}}(K);if("string"!=typeof X&&(e.isEncoding===t||!t(K)))throw new Error("Unknown encoding: "+K);return X||K}(K),this.encoding){case"utf16le":this.text=I,this.end=k,X=4;break;case"utf8":this.fillLast=d,X=4;break;case"base64":this.text=z,this.end=B,X=3;break;default:return this.write=W,void(this.end=j)}this.lastNeed=0,this.lastTotal=0,this.lastChar=e.allocUnsafe(X)}function w(K){return K<=127?0:K>>5==6?2:K>>4==14?3:K>>3==30?4:K>>6==2?-1:-2}function d(K){var X=this.lastTotal-this.lastNeed,ie=function P(K,X,ie){if(128!=(192&X[0]))return K.lastNeed=0,"\ufffd";if(K.lastNeed>1&&X.length>1){if(128!=(192&X[1]))return K.lastNeed=1,"\ufffd";if(K.lastNeed>2&&X.length>2&&128!=(192&X[2]))return K.lastNeed=2,"\ufffd"}}(this,K);return void 0!==ie?ie:this.lastNeed<=K.length?(K.copy(this.lastChar,X,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(K.copy(this.lastChar,X,0,K.length),void(this.lastNeed-=K.length))}function I(K,X){if((K.length-X)%2==0){var ie=K.toString("utf16le",X);if(ie){var se=ie.charCodeAt(ie.length-1);if(se>=55296&&se<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=K[K.length-2],this.lastChar[1]=K[K.length-1],ie.slice(0,-1)}return ie}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=K[K.length-1],K.toString("utf16le",X,K.length-1)}function k(K){var X=K&&K.length?this.write(K):"";return this.lastNeed?X+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):X}function z(K,X){var ie=(K.length-X)%3;return 0===ie?K.toString("base64",X):(this.lastNeed=3-ie,this.lastTotal=3,1===ie?this.lastChar[0]=K[K.length-1]:(this.lastChar[0]=K[K.length-2],this.lastChar[1]=K[K.length-1]),K.toString("base64",X,K.length-ie))}function B(K){var X=K&&K.length?this.write(K):"";return this.lastNeed?X+this.lastChar.toString("base64",0,3-this.lastNeed):X}function W(K){return K.toString(this.encoding)}function j(K){return K&&K.length?this.write(K):""}q.s=l,l.prototype.write=function(K){if(0===K.length)return"";var X,ie;if(this.lastNeed){if(void 0===(X=this.fillLast(K)))return"";ie=this.lastNeed,this.lastNeed=0}else ie=0;return ie=0?(ue>0&&(K.lastNeed=ue-1),ue):--se=0?(ue>0&&(K.lastNeed=ue-2),ue):--se=0?(ue>0&&(2===ue?ue=0:K.lastNeed=ue-3),ue):0}(this,K,X);if(!this.lastNeed)return K.toString("utf8",X);this.lastTotal=ie;var se=K.length-(ie-this.lastNeed);return K.copy(this.lastChar,0,se),K.toString("utf8",X,se)},l.prototype.fillLast=function(K){if(this.lastNeed<=K.length)return K.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);K.copy(this.lastChar,this.lastTotal-this.lastNeed,0,K.length),this.lastNeed-=K.length}},5852:(Fe,q,p)=>{var e=p(1156);q.encode=e.encode,q.decode=e.decode},1156:(Fe,q)=>{"use strict";var e=[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];q.encode=function(y){Buffer.isBuffer(y)||(y=new Buffer(y));for(var A=0,l=0,w=0,m=0,P=new Buffer(8*function t(y){var A=Math.floor(y.length/5);return y.length%5==0?A:A+1}(y));A3?(m=(m=d&255>>w)<<(w=(w+5)%8)|(A+1>8-w,A++):(m=d>>8-(w+5)&31,0==(w=(w+5)%8)&&A++),P[l]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(m),l++}for(A=l;A>>(A=(A+5)%8),m++,w=255&l<<8-A)}return P.slice(0,m)}},496:Fe=>{function p(e){try{if(!global.localStorage)return!1}catch{return!1}var t=global.localStorage[e];return null!=t&&"true"===String(t).toLowerCase()}Fe.exports=function q(e,t){if(p("noDeprecation"))return e;var y=!1;return function A(){if(!y){if(p("throwDeprecation"))throw new Error(t);p("traceDeprecation")?console.trace(t):console.warn(t),y=!0}return e.apply(this,arguments)}}},950:()=>{},6601:()=>{},8623:()=>{},7748:()=>{},5568:()=>{},6619:()=>{},7108:()=>{},2361:()=>{},4616:()=>{},6825:(Fe,q,p)=>{"use strict";p.d(q,{F4:()=>P,IO:()=>k,SB:()=>m,X$:()=>t,ZE:()=>Me,ZN:()=>ae,eR:()=>d,jt:()=>y,k1:()=>J,l3:()=>e,oB:()=>w,pV:()=>M,ru:()=>A,vP:()=>l});const e="*";function t(he,S){return{type:7,name:he,definitions:S,options:{}}}function y(he,S=null){return{type:4,styles:S,timings:he}}function A(he,S=null){return{type:3,steps:he,options:S}}function l(he,S=null){return{type:2,steps:he,options:S}}function w(he){return{type:6,styles:he,offset:null}}function m(he,S,n){return{type:0,name:he,styles:S,options:n}}function P(he){return{type:5,steps:he}}function d(he,S,n=null){return{type:1,expr:he,animation:S,options:n}}function M(he=null){return{type:9,options:he}}function k(he,S,n=null){return{type:11,selector:he,animation:S,options:n}}class ae{constructor(S=0,n=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=S+n}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(S=>S()),this._onDoneFns=[])}onStart(S){this._originalOnStartFns.push(S),this._onStartFns.push(S)}onDone(S){this._originalOnDoneFns.push(S),this._onDoneFns.push(S)}onDestroy(S){this._onDestroyFns.push(S)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(S=>S()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(S=>S()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(S){this._position=this.totalTime?S*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(S){const n="start"==S?this._onStartFns:this._onDoneFns;n.forEach(s=>s()),n.length=0}}class Me{constructor(S){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=S;let n=0,s=0,f=0;const h=this.players.length;0==h?queueMicrotask(()=>this._onFinish()):this.players.forEach(C=>{C.onDone(()=>{++n==h&&this._onFinish()}),C.onDestroy(()=>{++s==h&&this._onDestroy()}),C.onStart(()=>{++f==h&&this._onStart()})}),this.totalTime=this.players.reduce((C,D)=>Math.max(C,D.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(S=>S()),this._onDoneFns=[])}init(){this.players.forEach(S=>S.init())}onStart(S){this._onStartFns.push(S)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(S=>S()),this._onStartFns=[])}onDone(S){this._onDoneFns.push(S)}onDestroy(S){this._onDestroyFns.push(S)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(S=>S.play())}pause(){this.players.forEach(S=>S.pause())}restart(){this.players.forEach(S=>S.restart())}finish(){this._onFinish(),this.players.forEach(S=>S.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(S=>S.destroy()),this._onDestroyFns.forEach(S=>S()),this._onDestroyFns=[])}reset(){this.players.forEach(S=>S.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(S){const n=S*this.totalTime;this.players.forEach(s=>{const f=s.totalTime?Math.min(1,n/s.totalTime):1;s.setPosition(f)})}getPosition(){const S=this.players.reduce((n,s)=>null===n||s.totalTime>n.totalTime?s:n,null);return null!=S?S.getPosition():0}beforeDestroy(){this.players.forEach(S=>{S.beforeDestroy&&S.beforeDestroy()})}triggerCallback(S){const n="start"==S?this._onStartFns:this._onDoneFns;n.forEach(s=>s()),n.length=0}}const J="!"},4300:(Fe,q,p)=>{"use strict";p.d(q,{$s:()=>n,Em:()=>D,Kd:()=>St,X6:()=>We,Zf:()=>se,iD:()=>ue,ic:()=>v,kH:()=>Ye,mK:()=>pe,qV:()=>le,qm:()=>Ot,rt:()=>yt,s1:()=>C,tE:()=>Bt,yG:()=>Ct});var e=p(6814),t=p(9212),y=p(2831),A=p(8645),l=p(7394),w=p(5619),m=p(2096),P=p(6028),d=p(9397),E=p(3620),M=p(2181),I=p(7398),k=p(8180),z=p(836),B=p(3997),W=p(9773),j=p(7131),K=p(2495),X=p(1088);const ie=" ";function se(at,Ee,nt){const Ge=ae(at,Ee);Ge.some(Xe=>Xe.trim()==nt.trim())||(Ge.push(nt.trim()),at.setAttribute(Ee,Ge.join(ie)))}function ue(at,Ee,nt){const Xe=ae(at,Ee).filter(gt=>gt!=nt.trim());Xe.length?at.setAttribute(Ee,Xe.join(ie)):at.removeAttribute(Ee)}function ae(at,Ee){return(at.getAttribute(Ee)||"").match(/\S+/g)||[]}const J="cdk-describedby-message",he="cdk-describedby-host";let S=0,n=(()=>{class at{constructor(nt,Ge){this._platform=Ge,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+S++,this._document=nt,this._id=(0,t.f3M)(t.AFp)+"-"+S++}describe(nt,Ge,Xe){if(!this._canBeDescribed(nt,Ge))return;const gt=s(Ge,Xe);"string"!=typeof Ge?(f(Ge,this._id),this._messageRegistry.set(gt,{messageElement:Ge,referenceCount:0})):this._messageRegistry.has(gt)||this._createMessageElement(Ge,Xe),this._isElementDescribedByMessage(nt,gt)||this._addMessageReference(nt,gt)}removeDescription(nt,Ge,Xe){if(!Ge||!this._isElementNode(nt))return;const gt=s(Ge,Xe);if(this._isElementDescribedByMessage(nt,gt)&&this._removeMessageReference(nt,gt),"string"==typeof Ge){const Le=this._messageRegistry.get(gt);Le&&0===Le.referenceCount&&this._deleteMessageElement(gt)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const nt=this._document.querySelectorAll(`[${he}="${this._id}"]`);for(let Ge=0;Ge0!=Xe.indexOf(J));nt.setAttribute("aria-describedby",Ge.join(" "))}_addMessageReference(nt,Ge){const Xe=this._messageRegistry.get(Ge);se(nt,"aria-describedby",Xe.messageElement.id),nt.setAttribute(he,this._id),Xe.referenceCount++}_removeMessageReference(nt,Ge){const Xe=this._messageRegistry.get(Ge);Xe.referenceCount--,ue(nt,"aria-describedby",Xe.messageElement.id),nt.removeAttribute(he)}_isElementDescribedByMessage(nt,Ge){const Xe=ae(nt,"aria-describedby"),gt=this._messageRegistry.get(Ge),Le=gt&>.messageElement.id;return!!Le&&-1!=Xe.indexOf(Le)}_canBeDescribed(nt,Ge){if(!this._isElementNode(nt))return!1;if(Ge&&"object"==typeof Ge)return!0;const Xe=null==Ge?"":`${Ge}`.trim(),gt=nt.getAttribute("aria-label");return!(!Xe||gt&>.trim()===Xe)}_isElementNode(nt){return nt.nodeType===this._document.ELEMENT_NODE}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.LFG(e.K0),t.LFG(y.t4))};static#t=this.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})();function s(at,Ee){return"string"==typeof at?`${Ee||""}/${at}`:at}function f(at,Ee){at.id||(at.id=`${J}-${Ee}-${S++}`)}class h{constructor(Ee){this._items=Ee,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new A.x,this._typeaheadSubscription=l.w0.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._pageUpAndDown={enabled:!1,delta:10},this._skipPredicateFn=nt=>nt.disabled,this._pressedLetters=[],this.tabOut=new A.x,this.change=new A.x,Ee instanceof t.n_E&&(this._itemChangesSubscription=Ee.changes.subscribe(nt=>{if(this._activeItem){const Xe=nt.toArray().indexOf(this._activeItem);Xe>-1&&Xe!==this._activeItemIndex&&(this._activeItemIndex=Xe)}}))}skipPredicate(Ee){return this._skipPredicateFn=Ee,this}withWrap(Ee=!0){return this._wrap=Ee,this}withVerticalOrientation(Ee=!0){return this._vertical=Ee,this}withHorizontalOrientation(Ee){return this._horizontal=Ee,this}withAllowedModifierKeys(Ee){return this._allowedModifierKeys=Ee,this}withTypeAhead(Ee=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,d.b)(nt=>this._pressedLetters.push(nt)),(0,E.b)(Ee),(0,M.h)(()=>this._pressedLetters.length>0),(0,I.U)(()=>this._pressedLetters.join(""))).subscribe(nt=>{const Ge=this._getItemsArray();for(let Xe=1;Xe!Ee[gt]||this._allowedModifierKeys.indexOf(gt)>-1);switch(nt){case P.Mf:return void this.tabOut.next();case P.JH:if(this._vertical&&Xe){this.setNextItemActive();break}return;case P.LH:if(this._vertical&&Xe){this.setPreviousItemActive();break}return;case P.SV:if(this._horizontal&&Xe){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case P.oh:if(this._horizontal&&Xe){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case P.Sd:if(this._homeAndEnd&&Xe){this.setFirstItemActive();break}return;case P.uR:if(this._homeAndEnd&&Xe){this.setLastItemActive();break}return;case P.Ku:if(this._pageUpAndDown.enabled&&Xe){const gt=this._activeItemIndex-this._pageUpAndDown.delta;this._setActiveItemByIndex(gt>0?gt:0,1);break}return;case P.VM:if(this._pageUpAndDown.enabled&&Xe){const gt=this._activeItemIndex+this._pageUpAndDown.delta,Le=this._getItemsArray().length;this._setActiveItemByIndex(gt=P.A&&nt<=P.Z||nt>=P.xE&&nt<=P.aO)&&this._letterKeyStream.next(String.fromCharCode(nt))))}this._pressedLetters=[],Ee.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(Ee){const nt=this._getItemsArray(),Ge="number"==typeof Ee?Ee:nt.indexOf(Ee);this._activeItem=nt[Ge]??null,this._activeItemIndex=Ge}destroy(){this._typeaheadSubscription.unsubscribe(),this._itemChangesSubscription?.unsubscribe(),this._letterKeyStream.complete(),this.tabOut.complete(),this.change.complete(),this._pressedLetters=[]}_setActiveItemByDelta(Ee){this._wrap?this._setActiveInWrapMode(Ee):this._setActiveInDefaultMode(Ee)}_setActiveInWrapMode(Ee){const nt=this._getItemsArray();for(let Ge=1;Ge<=nt.length;Ge++){const Xe=(this._activeItemIndex+Ee*Ge+nt.length)%nt.length;if(!this._skipPredicateFn(nt[Xe]))return void this.setActiveItem(Xe)}}_setActiveInDefaultMode(Ee){this._setActiveItemByIndex(this._activeItemIndex+Ee,Ee)}_setActiveItemByIndex(Ee,nt){const Ge=this._getItemsArray();if(Ge[Ee]){for(;this._skipPredicateFn(Ge[Ee]);)if(!Ge[Ee+=nt])return;this.setActiveItem(Ee)}}_getItemsArray(){return this._items instanceof t.n_E?this._items.toArray():this._items}}class C extends h{setActiveItem(Ee){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(Ee),this.activeItem&&this.activeItem.setActiveStyles()}}class D extends h{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(Ee){return this._origin=Ee,this}setActiveItem(Ee){super.setActiveItem(Ee),this.activeItem&&this.activeItem.focus(this._origin)}}let v=(()=>{class at{constructor(nt){this._platform=nt}isDisabled(nt){return nt.hasAttribute("disabled")}isVisible(nt){return function g(at){return!!(at.offsetWidth||at.offsetHeight||"function"==typeof at.getClientRects&&at.getClientRects().length)}(nt)&&"visible"===getComputedStyle(nt).visibility}isTabbable(nt){if(!this._platform.isBrowser)return!1;const Ge=function r(at){try{return at.frameElement}catch{return null}}(function de(at){return at.ownerDocument&&at.ownerDocument.defaultView||window}(nt));if(Ge&&(-1===Je(Ge)||!this.isVisible(Ge)))return!1;let Xe=nt.nodeName.toLowerCase(),gt=Je(nt);return nt.hasAttribute("contenteditable")?-1!==gt:!("iframe"===Xe||"object"===Xe||this._platform.WEBKIT&&this._platform.IOS&&!function ye(at){let Ee=at.nodeName.toLowerCase(),nt="input"===Ee&&at.type;return"text"===nt||"password"===nt||"select"===Ee||"textarea"===Ee}(nt))&&("audio"===Xe?!!nt.hasAttribute("controls")&&-1!==gt:"video"===Xe?-1!==gt&&(null!==gt||this._platform.FIREFOX||nt.hasAttribute("controls")):nt.tabIndex>=0)}isFocusable(nt,Ge){return function fe(at){return!function R(at){return function De(at){return"input"==at.nodeName.toLowerCase()}(at)&&"hidden"==at.type}(at)&&(function H(at){let Ee=at.nodeName.toLowerCase();return"input"===Ee||"select"===Ee||"button"===Ee||"textarea"===Ee}(at)||function ee(at){return function ct(at){return"a"==at.nodeName.toLowerCase()}(at)&&at.hasAttribute("href")}(at)||at.hasAttribute("contenteditable")||Ke(at))}(nt)&&!this.isDisabled(nt)&&(Ge?.ignoreVisibility||this.isVisible(nt))}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.LFG(y.t4))};static#t=this.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})();function Ke(at){if(!at.hasAttribute("tabindex")||void 0===at.tabIndex)return!1;let Ee=at.getAttribute("tabindex");return!(!Ee||isNaN(parseInt(Ee,10)))}function Je(at){if(!Ke(at))return null;const Ee=parseInt(at.getAttribute("tabindex")||"",10);return isNaN(Ee)?-1:Ee}class xe{get enabled(){return this._enabled}set enabled(Ee){this._enabled=Ee,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(Ee,this._startAnchor),this._toggleAnchorTabIndex(Ee,this._endAnchor))}constructor(Ee,nt,Ge,Xe,gt=!1){this._element=Ee,this._checker=nt,this._ngZone=Ge,this._document=Xe,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,gt||this.attachAnchors()}destroy(){const Ee=this._startAnchor,nt=this._endAnchor;Ee&&(Ee.removeEventListener("focus",this.startAnchorListener),Ee.remove()),nt&&(nt.removeEventListener("focus",this.endAnchorListener),nt.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(Ee){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusInitialElement(Ee)))})}focusFirstTabbableElementWhenReady(Ee){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusFirstTabbableElement(Ee)))})}focusLastTabbableElementWhenReady(Ee){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusLastTabbableElement(Ee)))})}_getRegionBoundary(Ee){const nt=this._element.querySelectorAll(`[cdk-focus-region-${Ee}], [cdkFocusRegion${Ee}], [cdk-focus-${Ee}]`);return"start"==Ee?nt.length?nt[0]:this._getFirstTabbableElement(this._element):nt.length?nt[nt.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(Ee){const nt=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(nt){if(!this._checker.isFocusable(nt)){const Ge=this._getFirstTabbableElement(nt);return Ge?.focus(Ee),!!Ge}return nt.focus(Ee),!0}return this.focusFirstTabbableElement(Ee)}focusFirstTabbableElement(Ee){const nt=this._getRegionBoundary("start");return nt&&nt.focus(Ee),!!nt}focusLastTabbableElement(Ee){const nt=this._getRegionBoundary("end");return nt&&nt.focus(Ee),!!nt}hasAttached(){return this._hasAttached}_getFirstTabbableElement(Ee){if(this._checker.isFocusable(Ee)&&this._checker.isTabbable(Ee))return Ee;const nt=Ee.children;for(let Ge=0;Ge=0;Ge--){const Xe=nt[Ge].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(nt[Ge]):null;if(Xe)return Xe}return null}_createAnchor(){const Ee=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,Ee),Ee.classList.add("cdk-visually-hidden"),Ee.classList.add("cdk-focus-trap-anchor"),Ee.setAttribute("aria-hidden","true"),Ee}_toggleAnchorTabIndex(Ee,nt){Ee?nt.setAttribute("tabindex","0"):nt.removeAttribute("tabindex")}toggleAnchors(Ee){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(Ee,this._startAnchor),this._toggleAnchorTabIndex(Ee,this._endAnchor))}_executeOnStable(Ee){this._ngZone.isStable?Ee():this._ngZone.onStable.pipe((0,k.q)(1)).subscribe(Ee)}}let le=(()=>{class at{constructor(nt,Ge,Xe){this._checker=nt,this._ngZone=Ge,this._document=Xe}create(nt,Ge=!1){return new xe(nt,this._checker,this._ngZone,this._document,Ge)}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.LFG(v),t.LFG(t.R0b),t.LFG(e.K0))};static#t=this.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})(),pe=(()=>{class at{get enabled(){return this.focusTrap.enabled}set enabled(nt){this.focusTrap.enabled=nt}constructor(nt,Ge,Xe){this._elementRef=nt,this._focusTrapFactory=Ge,this._previouslyFocusedElement=null,this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0)}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(nt){const Ge=nt.autoCapture;Ge&&!Ge.firstChange&&this.autoCapture&&this.focusTrap.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,y.ht)(),this.focusTrap.focusInitialElementWhenReady()}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.Y36(t.SBq),t.Y36(le),t.Y36(e.K0))};static#t=this.\u0275dir=t.lG2({type:at,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:["cdkTrapFocus","enabled",t.VuI],autoCapture:["cdkTrapFocusAutoCapture","autoCapture",t.VuI]},exportAs:["cdkTrapFocus"],features:[t.Xq5,t.TTD]})}return at})();function We(at){return 0===at.buttons||0===at.detail}function Ct(at){const Ee=at.touches&&at.touches[0]||at.changedTouches&&at.changedTouches[0];return!(!Ee||-1!==Ee.identifier||null!=Ee.radiusX&&1!==Ee.radiusX||null!=Ee.radiusY&&1!==Ee.radiusY)}const ut=new t.OlP("cdk-input-modality-detector-options"),It={ignoreKeys:[P.zL,P.jx,P.b2,P.MW,P.JU]},Be=(0,y.i$)({passive:!0,capture:!0});let rt=(()=>{class at{get mostRecentModality(){return this._modality.value}constructor(nt,Ge,Xe,gt){this._platform=nt,this._mostRecentTarget=null,this._modality=new w.X(null),this._lastTouchMs=0,this._onKeydown=Le=>{this._options?.ignoreKeys?.some(be=>be===Le.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,y.sA)(Le))},this._onMousedown=Le=>{Date.now()-this._lastTouchMs<650||(this._modality.next(We(Le)?"keyboard":"mouse"),this._mostRecentTarget=(0,y.sA)(Le))},this._onTouchstart=Le=>{Ct(Le)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,y.sA)(Le))},this._options={...It,...gt},this.modalityDetected=this._modality.pipe((0,z.T)(1)),this.modalityChanged=this.modalityDetected.pipe((0,B.x)()),nt.isBrowser&&Ge.runOutsideAngular(()=>{Xe.addEventListener("keydown",this._onKeydown,Be),Xe.addEventListener("mousedown",this._onMousedown,Be),Xe.addEventListener("touchstart",this._onTouchstart,Be)})}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,Be),document.removeEventListener("mousedown",this._onMousedown,Be),document.removeEventListener("touchstart",this._onTouchstart,Be))}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.LFG(y.t4),t.LFG(t.R0b),t.LFG(e.K0),t.LFG(ut,8))};static#t=this.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})();const $e=new t.OlP("liveAnnouncerElement",{providedIn:"root",factory:function Ie(){return null}}),lt=new t.OlP("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let Qe=0,St=(()=>{class at{constructor(nt,Ge,Xe,gt){this._ngZone=Ge,this._defaultOptions=gt,this._document=Xe,this._liveElement=nt||this._createLiveElement()}announce(nt,...Ge){const Xe=this._defaultOptions;let gt,Le;return 1===Ge.length&&"number"==typeof Ge[0]?Le=Ge[0]:[gt,Le]=Ge,this.clear(),clearTimeout(this._previousTimeout),gt||(gt=Xe&&Xe.politeness?Xe.politeness:"polite"),null==Le&&Xe&&(Le=Xe.duration),this._liveElement.setAttribute("aria-live",gt),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(be=>this._currentResolve=be)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=nt,"number"==typeof Le&&(this._previousTimeout=setTimeout(()=>this.clear(),Le)),this._currentResolve(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const nt="cdk-live-announcer-element",Ge=this._document.getElementsByClassName(nt),Xe=this._document.createElement("div");for(let gt=0;gt .cdk-overlay-container [aria-modal="true"]');for(let Xe=0;Xe{class at{constructor(nt,Ge,Xe,gt,Le){this._ngZone=nt,this._platform=Ge,this._inputModalityDetector=Xe,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 A.x,this._rootNodeFocusAndBlurListener=be=>{for(let ne=(0,y.sA)(be);ne;ne=ne.parentElement)"focus"===be.type?this._onFocus(be,ne):this._onBlur(be,ne)},this._document=gt,this._detectionMode=Le?.detectionMode||0}monitor(nt,Ge=!1){const Xe=(0,K.fI)(nt);if(!this._platform.isBrowser||1!==Xe.nodeType)return(0,m.of)();const gt=(0,y.kV)(Xe)||this._getDocument(),Le=this._elementInfo.get(Xe);if(Le)return Ge&&(Le.checkChildren=!0),Le.subject;const be={checkChildren:Ge,subject:new A.x,rootNode:gt};return this._elementInfo.set(Xe,be),this._registerGlobalListeners(be),be.subject}stopMonitoring(nt){const Ge=(0,K.fI)(nt),Xe=this._elementInfo.get(Ge);Xe&&(Xe.subject.complete(),this._setClasses(Ge),this._elementInfo.delete(Ge),this._removeGlobalListeners(Xe))}focusVia(nt,Ge,Xe){const gt=(0,K.fI)(nt);gt===this._getDocument().activeElement?this._getClosestElementsInfo(gt).forEach(([be,$])=>this._originChanged(be,Ge,$)):(this._setOrigin(Ge),"function"==typeof gt.focus&>.focus(Xe))}ngOnDestroy(){this._elementInfo.forEach((nt,Ge)=>this.stopMonitoring(Ge))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(nt){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(nt)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:nt&&this._isLastInteractionFromInputLabel(nt)?"mouse":"program"}_shouldBeAttributedToTouch(nt){return 1===this._detectionMode||!!nt?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(nt,Ge){nt.classList.toggle("cdk-focused",!!Ge),nt.classList.toggle("cdk-touch-focused","touch"===Ge),nt.classList.toggle("cdk-keyboard-focused","keyboard"===Ge),nt.classList.toggle("cdk-mouse-focused","mouse"===Ge),nt.classList.toggle("cdk-program-focused","program"===Ge)}_setOrigin(nt,Ge=!1){this._ngZone.runOutsideAngular(()=>{this._origin=nt,this._originFromTouchInteraction="touch"===nt&&Ge,0===this._detectionMode&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(nt,Ge){const Xe=this._elementInfo.get(Ge),gt=(0,y.sA)(nt);!Xe||!Xe.checkChildren&&Ge!==gt||this._originChanged(Ge,this._getFocusOrigin(gt),Xe)}_onBlur(nt,Ge){const Xe=this._elementInfo.get(Ge);!Xe||Xe.checkChildren&&nt.relatedTarget instanceof Node&&Ge.contains(nt.relatedTarget)||(this._setClasses(Ge),this._emitOrigin(Xe,null))}_emitOrigin(nt,Ge){nt.subject.observers.length&&this._ngZone.run(()=>nt.subject.next(Ge))}_registerGlobalListeners(nt){if(!this._platform.isBrowser)return;const Ge=nt.rootNode,Xe=this._rootNodeFocusListenerCount.get(Ge)||0;Xe||this._ngZone.runOutsideAngular(()=>{Ge.addEventListener("focus",this._rootNodeFocusAndBlurListener,Ue),Ge.addEventListener("blur",this._rootNodeFocusAndBlurListener,Ue)}),this._rootNodeFocusListenerCount.set(Ge,Xe+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,W.R)(this._stopInputModalityDetector)).subscribe(gt=>{this._setOrigin(gt,!0)}))}_removeGlobalListeners(nt){const Ge=nt.rootNode;if(this._rootNodeFocusListenerCount.has(Ge)){const Xe=this._rootNodeFocusListenerCount.get(Ge);Xe>1?this._rootNodeFocusListenerCount.set(Ge,Xe-1):(Ge.removeEventListener("focus",this._rootNodeFocusAndBlurListener,Ue),Ge.removeEventListener("blur",this._rootNodeFocusAndBlurListener,Ue),this._rootNodeFocusListenerCount.delete(Ge))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(nt,Ge,Xe){this._setClasses(nt,Ge),this._emitOrigin(Xe,Ge),this._lastFocusOrigin=Ge}_getClosestElementsInfo(nt){const Ge=[];return this._elementInfo.forEach((Xe,gt)=>{(gt===nt||Xe.checkChildren&>.contains(nt))&&Ge.push([gt,Xe])}),Ge}_isLastInteractionFromInputLabel(nt){const{_mostRecentTarget:Ge,mostRecentModality:Xe}=this._inputModalityDetector;if("mouse"!==Xe||!Ge||Ge===nt||"INPUT"!==nt.nodeName&&"TEXTAREA"!==nt.nodeName||nt.disabled)return!1;const gt=nt.labels;if(gt)for(let Le=0;Le{class at{constructor(nt,Ge){this._elementRef=nt,this._focusMonitor=Ge,this._focusOrigin=null,this.cdkFocusChange=new t.vpe}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const nt=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(nt,1===nt.nodeType&&nt.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(Ge=>{this._focusOrigin=Ge,this.cdkFocusChange.emit(Ge)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.Y36(t.SBq),t.Y36(Bt))};static#t=this.\u0275dir=t.lG2({type:at,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"]})}return at})();const je="cdk-high-contrast-black-on-white",Ft="cdk-high-contrast-white-on-black",xt="cdk-high-contrast-active";let Ot=(()=>{class at{constructor(nt,Ge){this._platform=nt,this._document=Ge,this._breakpointSubscription=(0,t.f3M)(X.Yg).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return 0;const nt=this._document.createElement("div");nt.style.backgroundColor="rgb(1,2,3)",nt.style.position="absolute",this._document.body.appendChild(nt);const Ge=this._document.defaultView||window,Xe=Ge&&Ge.getComputedStyle?Ge.getComputedStyle(nt):null,gt=(Xe&&Xe.backgroundColor||"").replace(/ /g,"");switch(nt.remove(),gt){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return 2;case"rgb(255,255,255)":case"rgb(255,250,239)":return 1}return 0}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const nt=this._document.body.classList;nt.remove(xt,je,Ft),this._hasCheckedHighContrastMode=!0;const Ge=this.getHighContrastMode();1===Ge?nt.add(xt,je):2===Ge&&nt.add(xt,Ft)}}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.LFG(y.t4),t.LFG(e.K0))};static#t=this.\u0275prov=t.Yz7({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})(),yt=(()=>{class at{constructor(nt){nt._applyBodyHighContrastModeCssClasses()}static#e=this.\u0275fac=function(Ge){return new(Ge||at)(t.LFG(Ot))};static#t=this.\u0275mod=t.oAB({type:at});static#i=this.\u0275inj=t.cJS({imports:[j.Q8]})}return at})()},9388:(Fe,q,p)=>{"use strict";p.d(q,{Is:()=>m,vT:()=>d});var e=p(9212),t=p(6814);const y=new e.OlP("cdk-dir-doc",{providedIn:"root",factory:function A(){return(0,e.f3M)(t.K0)}}),l=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let m=(()=>{class E{constructor(I){this.value="ltr",this.change=new e.vpe,I&&(this.value=function w(E){const M=E?.toLowerCase()||"";return"auto"===M&&typeof navigator<"u"&&navigator?.language?l.test(navigator.language)?"rtl":"ltr":"rtl"===M?"rtl":"ltr"}((I.body?I.body.dir:null)||(I.documentElement?I.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static#e=this.\u0275fac=function(k){return new(k||E)(e.LFG(y,8))};static#t=this.\u0275prov=e.Yz7({token:E,factory:E.\u0275fac,providedIn:"root"})}return E})(),d=(()=>{class E{static#e=this.\u0275fac=function(k){return new(k||E)};static#t=this.\u0275mod=e.oAB({type:E});static#i=this.\u0275inj=e.cJS({})}return E})()},2495:(Fe,q,p)=>{"use strict";p.d(q,{Eq:()=>l,HM:()=>w,Ig:()=>t,du:()=>P,fI:()=>m,su:()=>y,t6:()=>A});var e=p(9212);function t(d){return null!=d&&"false"!=`${d}`}function y(d,E=0){return A(d)?Number(d):E}function A(d){return!isNaN(parseFloat(d))&&!isNaN(Number(d))}function l(d){return Array.isArray(d)?d:[d]}function w(d){return null==d?"":"string"==typeof d?d:`${d}px`}function m(d){return d instanceof e.SBq?d.nativeElement:d}function P(d,E=/\s+/){const M=[];if(null!=d){const I=Array.isArray(d)?d:`${d}`.split(E);for(const k of I){const z=`${k}`.trim();z&&M.push(z)}}return M}},8337:(Fe,q,p)=>{"use strict";p.d(q,{A8:()=>M,Ov:()=>d,Z9:()=>l,eX:()=>P,k:()=>I,o2:()=>A,yy:()=>m});var e=p(3168),t=p(8645),y=p(9212);class A{}function l(k){return k&&"function"==typeof k.connect&&!(k instanceof e.c)}class m{applyChanges(z,B,W,j,K){z.forEachOperation((X,ie,se)=>{let ue,ae;if(null==X.previousIndex){const Me=W(X,ie,se);ue=B.createEmbeddedView(Me.templateRef,Me.context,Me.index),ae=1}else null==se?(B.remove(ie),ae=3):(ue=B.get(ie),B.move(ue,se),ae=2);K&&K({context:ue?.context,operation:ae,record:X})})}detach(){}}class P{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(z,B,W,j,K){z.forEachOperation((X,ie,se)=>{let ue,ae;null==X.previousIndex?(ue=this._insertView(()=>W(X,ie,se),se,B,j(X)),ae=ue?1:0):null==se?(this._detachAndCacheView(ie,B),ae=3):(ue=this._moveView(ie,se,B,j(X)),ae=2),K&&K({context:ue?.context,operation:ae,record:X})})}detach(){for(const z of this._viewCache)z.destroy();this._viewCache=[]}_insertView(z,B,W,j){const K=this._insertViewFromCache(B,W);if(K)return void(K.context.$implicit=j);const X=z();return W.createEmbeddedView(X.templateRef,X.context,X.index)}_detachAndCacheView(z,B){const W=B.detach(z);this._maybeCacheView(W,B)}_moveView(z,B,W,j){const K=W.get(z);return W.move(K,B),K.context.$implicit=j,K}_maybeCacheView(z,B){if(this._viewCache.lengththis._markSelected(K)):this._markSelected(B[0]),this._selectedToEmit.length=0)}select(...z){this._verifyValueAssignment(z),z.forEach(W=>this._markSelected(W));const B=this._hasQueuedChanges();return this._emitChangeEvent(),B}deselect(...z){this._verifyValueAssignment(z),z.forEach(W=>this._unmarkSelected(W));const B=this._hasQueuedChanges();return this._emitChangeEvent(),B}setSelection(...z){this._verifyValueAssignment(z);const B=this.selected,W=new Set(z);z.forEach(K=>this._markSelected(K)),B.filter(K=>!W.has(K)).forEach(K=>this._unmarkSelected(K));const j=this._hasQueuedChanges();return this._emitChangeEvent(),j}toggle(z){return this.isSelected(z)?this.deselect(z):this.select(z)}clear(z=!0){this._unmarkAll();const B=this._hasQueuedChanges();return z&&this._emitChangeEvent(),B}isSelected(z){return this._selection.has(this._getConcreteValue(z))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(z){this._multiple&&this.selected&&this._selected.sort(z)}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(z){z=this._getConcreteValue(z),this.isSelected(z)||(this._multiple||this._unmarkAll(),this.isSelected(z)||this._selection.add(z),this._emitChanges&&this._selectedToEmit.push(z))}_unmarkSelected(z){z=this._getConcreteValue(z),this.isSelected(z)&&(this._selection.delete(z),this._emitChanges&&this._deselectedToEmit.push(z))}_unmarkAll(){this.isEmpty()||this._selection.forEach(z=>this._unmarkSelected(z))}_verifyValueAssignment(z){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(z){if(this.compareWith){for(let B of this._selection)if(this.compareWith(z,B))return B;return z}return z}}let M=(()=>{class k{constructor(){this._listeners=[]}notify(B,W){for(let j of this._listeners)j(B,W)}listen(B){return this._listeners.push(B),()=>{this._listeners=this._listeners.filter(W=>B!==W)}}ngOnDestroy(){this._listeners=[]}static#e=this.\u0275fac=function(W){return new(W||k)};static#t=this.\u0275prov=y.Yz7({token:k,factory:k.\u0275fac,providedIn:"root"})}return k})();const I=new y.OlP("_ViewRepeater")},6028:(Fe,q,p)=>{"use strict";p.d(q,{A:()=>R,JH:()=>ie,JU:()=>w,K5:()=>l,Ku:()=>k,LH:()=>K,L_:()=>I,MW:()=>lt,Mf:()=>y,SV:()=>X,Sd:()=>W,VM:()=>z,Vb:()=>et,Z:()=>Ie,ZH:()=>t,aO:()=>O,b2:()=>Ve,hY:()=>M,jx:()=>m,oh:()=>j,uR:()=>B,xE:()=>J,yY:()=>Me,zL:()=>P});const t=8,y=9,l=13,w=16,m=17,P=18,M=27,I=32,k=33,z=34,B=35,W=36,j=37,K=38,X=39,ie=40,Me=46,J=48,O=57,R=65,Ie=90,lt=91,Ve=224;function et(tt,...Yt){return Yt.length?Yt.some(ri=>tt[ri]):tt.altKey||tt.shiftKey||tt.ctrlKey||tt.metaKey}},1088:(Fe,q,p)=>{"use strict";p.d(q,{Yg:()=>ie,u3:()=>ue,xu:()=>z});var e=p(9212),t=p(2495),y=p(8645),A=p(2572),l=p(5211),w=p(5592),m=p(8180),P=p(836),d=p(3620),E=p(7398),M=p(7921),I=p(9773),k=p(2831);let z=(()=>{class ae{static#e=this.\u0275fac=function(he){return new(he||ae)};static#t=this.\u0275mod=e.oAB({type:ae});static#i=this.\u0275inj=e.cJS({})}return ae})();const B=new Set;let W,j=(()=>{class ae{constructor(J,he){this._platform=J,this._nonce=he,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):X}matchMedia(J){return(this._platform.WEBKIT||this._platform.BLINK)&&function K(ae,Me){if(!B.has(ae))try{W||(W=document.createElement("style"),Me&&(W.nonce=Me),W.setAttribute("type","text/css"),document.head.appendChild(W)),W.sheet&&(W.sheet.insertRule(`@media ${ae} {body{ }}`,0),B.add(ae))}catch(J){console.error(J)}}(J,this._nonce),this._matchMedia(J)}static#e=this.\u0275fac=function(he){return new(he||ae)(e.LFG(k.t4),e.LFG(e.Ojb,8))};static#t=this.\u0275prov=e.Yz7({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function X(ae){return{matches:"all"===ae||""===ae,media:ae,addListener:()=>{},removeListener:()=>{}}}let ie=(()=>{class ae{constructor(J,he){this._mediaMatcher=J,this._zone=he,this._queries=new Map,this._destroySubject=new y.x}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(J){return se((0,t.Eq)(J)).some(S=>this._registerQuery(S).mql.matches)}observe(J){const S=se((0,t.Eq)(J)).map(s=>this._registerQuery(s).observable);let n=(0,A.a)(S);return n=(0,l.z)(n.pipe((0,m.q)(1)),n.pipe((0,P.T)(1),(0,d.b)(0))),n.pipe((0,E.U)(s=>{const f={matches:!1,breakpoints:{}};return s.forEach(({matches:h,query:C})=>{f.matches=f.matches||h,f.breakpoints[C]=h}),f}))}_registerQuery(J){if(this._queries.has(J))return this._queries.get(J);const he=this._mediaMatcher.matchMedia(J),n={observable:new w.y(s=>{const f=h=>this._zone.run(()=>s.next(h));return he.addListener(f),()=>{he.removeListener(f)}}).pipe((0,M.O)(he),(0,E.U)(({matches:s})=>({query:J,matches:s})),(0,I.R)(this._destroySubject)),mql:he};return this._queries.set(J,n),n}static#e=this.\u0275fac=function(he){return new(he||ae)(e.LFG(j),e.LFG(e.R0b))};static#t=this.\u0275prov=e.Yz7({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function se(ae){return ae.map(Me=>Me.split(",")).reduce((Me,J)=>Me.concat(J)).map(Me=>Me.trim())}const ue={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)"}},7131:(Fe,q,p)=>{"use strict";p.d(q,{Q8:()=>d,wD:()=>P});var e=p(2495),t=p(9212),y=p(5592),A=p(8645),l=p(3620);let w=(()=>{class E{create(I){return typeof MutationObserver>"u"?null:new MutationObserver(I)}static#e=this.\u0275fac=function(k){return new(k||E)};static#t=this.\u0275prov=t.Yz7({token:E,factory:E.\u0275fac,providedIn:"root"})}return E})(),m=(()=>{class E{constructor(I){this._mutationObserverFactory=I,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((I,k)=>this._cleanupObserver(k))}observe(I){const k=(0,e.fI)(I);return new y.y(z=>{const W=this._observeElement(k).subscribe(z);return()=>{W.unsubscribe(),this._unobserveElement(k)}})}_observeElement(I){if(this._observedElements.has(I))this._observedElements.get(I).count++;else{const k=new A.x,z=this._mutationObserverFactory.create(B=>k.next(B));z&&z.observe(I,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(I,{observer:z,stream:k,count:1})}return this._observedElements.get(I).stream}_unobserveElement(I){this._observedElements.has(I)&&(this._observedElements.get(I).count--,this._observedElements.get(I).count||this._cleanupObserver(I))}_cleanupObserver(I){if(this._observedElements.has(I)){const{observer:k,stream:z}=this._observedElements.get(I);k&&k.disconnect(),z.complete(),this._observedElements.delete(I)}}static#e=this.\u0275fac=function(k){return new(k||E)(t.LFG(w))};static#t=this.\u0275prov=t.Yz7({token:E,factory:E.\u0275fac,providedIn:"root"})}return E})(),P=(()=>{class E{get disabled(){return this._disabled}set disabled(I){this._disabled=I,this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(I){this._debounce=(0,e.su)(I),this._subscribe()}constructor(I,k,z){this._contentObserver=I,this._elementRef=k,this._ngZone=z,this.event=new t.vpe,this._disabled=!1,this._currentSubscription=null}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const I=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?I.pipe((0,l.b)(this.debounce)):I).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}static#e=this.\u0275fac=function(k){return new(k||E)(t.Y36(m),t.Y36(t.SBq),t.Y36(t.R0b))};static#t=this.\u0275dir=t.lG2({type:E,selectors:[["","cdkObserveContent",""]],inputs:{disabled:["cdkObserveContentDisabled","disabled",t.VuI],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"],features:[t.Xq5]})}return E})(),d=(()=>{class E{static#e=this.\u0275fac=function(k){return new(k||E)};static#t=this.\u0275mod=t.oAB({type:E});static#i=this.\u0275inj=t.cJS({providers:[w]})}return E})()},3651:(Fe,q,p)=>{"use strict";p.d(q,{pI:()=>ce,xu:()=>ve,_G:()=>ee,aV:()=>pe,X_:()=>S,Xj:()=>r,U8:()=>Ct,Iu:()=>g});var e=p(5407),t=p(6814),y=p(9212),A=p(2495),l=p(2831),w=p(2181),m=p(8180),P=p(9773),d=p(9360),E=p(8251),I=p(9388),k=p(8484),z=p(8645),B=p(7394),W=p(3019),j=p(6028);const K=(0,l.Mq)();class X{constructor(Ae,Be){this._viewportRuler=Ae,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=Be}attach(){}enable(){if(this._canBeEnabled()){const Ae=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=Ae.style.left||"",this._previousHTMLStyles.top=Ae.style.top||"",Ae.style.left=(0,A.HM)(-this._previousScrollPosition.left),Ae.style.top=(0,A.HM)(-this._previousScrollPosition.top),Ae.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const Ae=this._document.documentElement,rt=Ae.style,$e=this._document.body.style,Ie=rt.scrollBehavior||"",lt=$e.scrollBehavior||"";this._isEnabled=!1,rt.left=this._previousHTMLStyles.left,rt.top=this._previousHTMLStyles.top,Ae.classList.remove("cdk-global-scrollblock"),K&&(rt.scrollBehavior=$e.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),K&&(rt.scrollBehavior=Ie,$e.scrollBehavior=lt)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Be=this._document.body,rt=this._viewportRuler.getViewportSize();return Be.scrollHeight>rt.height||Be.scrollWidth>rt.width}}class se{constructor(Ae,Be,rt,$e){this._scrollDispatcher=Ae,this._ngZone=Be,this._viewportRuler=rt,this._config=$e,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(Ae){this._overlayRef=Ae}enable(){if(this._scrollSubscription)return;const Ae=this._scrollDispatcher.scrolled(0).pipe((0,w.h)(Be=>!Be||!this._overlayRef.overlayElement.contains(Be.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=Ae.subscribe(()=>{const Be=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Be-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=Ae.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class ue{enable(){}disable(){}attach(){}}function ae(It,Ae){return Ae.some(Be=>It.bottomBe.bottom||It.rightBe.right)}function Me(It,Ae){return Ae.some(Be=>It.topBe.bottom||It.leftBe.right)}class J{constructor(Ae,Be,rt,$e){this._scrollDispatcher=Ae,this._viewportRuler=Be,this._ngZone=rt,this._config=$e,this._scrollSubscription=null}attach(Ae){this._overlayRef=Ae}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 Be=this._overlayRef.overlayElement.getBoundingClientRect(),{width:rt,height:$e}=this._viewportRuler.getViewportSize();ae(Be,[{width:rt,height:$e,bottom:$e,right:rt,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 he=(()=>{class It{constructor(Be,rt,$e,Ie){this._scrollDispatcher=Be,this._viewportRuler=rt,this._ngZone=$e,this.noop=()=>new ue,this.close=lt=>new se(this._scrollDispatcher,this._ngZone,this._viewportRuler,lt),this.block=()=>new X(this._viewportRuler,this._document),this.reposition=lt=>new J(this._scrollDispatcher,this._viewportRuler,this._ngZone,lt),this._document=Ie}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(e.mF),y.LFG(e.rL),y.LFG(y.R0b),y.LFG(t.K0))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})();class S{constructor(Ae){if(this.scrollStrategy=new ue,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,Ae){const Be=Object.keys(Ae);for(const rt of Be)void 0!==Ae[rt]&&(this[rt]=Ae[rt])}}}class f{constructor(Ae,Be){this.connectionPair=Ae,this.scrollableViewProperties=Be}}let D=(()=>{class It{constructor(Be){this._attachedOverlays=[],this._document=Be}ngOnDestroy(){this.detach()}add(Be){this.remove(Be),this._attachedOverlays.push(Be)}remove(Be){const rt=this._attachedOverlays.indexOf(Be);rt>-1&&this._attachedOverlays.splice(rt,1),0===this._attachedOverlays.length&&this.detach()}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(t.K0))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})(),O=(()=>{class It extends D{constructor(Be,rt){super(Be),this._ngZone=rt,this._keydownListener=$e=>{const Ie=this._attachedOverlays;for(let lt=Ie.length-1;lt>-1;lt--)if(Ie[lt]._keydownEvents.observers.length>0){const Qe=Ie[lt]._keydownEvents;this._ngZone?this._ngZone.run(()=>Qe.next($e)):Qe.next($e);break}}}add(Be){super.add(Be),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)}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(t.K0),y.LFG(y.R0b,8))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})(),v=(()=>{class It extends D{constructor(Be,rt,$e){super(Be),this._platform=rt,this._ngZone=$e,this._cursorStyleIsSet=!1,this._pointerDownListener=Ie=>{this._pointerDownEventTarget=(0,l.sA)(Ie)},this._clickListener=Ie=>{const lt=(0,l.sA)(Ie),Qe="click"===Ie.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:lt;this._pointerDownEventTarget=null;const St=this._attachedOverlays.slice();for(let dt=St.length-1;dt>-1;dt--){const te=St[dt];if(te._outsidePointerEvents.observers.length<1||!te.hasAttached())continue;if(te.overlayElement.contains(lt)||te.overlayElement.contains(Qe))break;const Ue=te._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Ue.next(Ie)):Ue.next(Ie)}}}add(Be){if(super.add(Be),!this._isAttached){const rt=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(rt)):this._addEventListeners(rt),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=rt.style.cursor,rt.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const Be=this._document.body;Be.removeEventListener("pointerdown",this._pointerDownListener,!0),Be.removeEventListener("click",this._clickListener,!0),Be.removeEventListener("auxclick",this._clickListener,!0),Be.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(Be.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(Be){Be.addEventListener("pointerdown",this._pointerDownListener,!0),Be.addEventListener("click",this._clickListener,!0),Be.addEventListener("auxclick",this._clickListener,!0),Be.addEventListener("contextmenu",this._clickListener,!0)}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(t.K0),y.LFG(l.t4),y.LFG(y.R0b,8))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})(),r=(()=>{class It{constructor(Be,rt){this._platform=rt,this._document=Be}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Be="cdk-overlay-container";if(this._platform.isBrowser||(0,l.Oy)()){const $e=this._document.querySelectorAll(`.${Be}[platform="server"], .${Be}[platform="test"]`);for(let Ie=0;Ie<$e.length;Ie++)$e[Ie].remove()}const rt=this._document.createElement("div");rt.classList.add(Be),(0,l.Oy)()?rt.setAttribute("platform","test"):this._platform.isBrowser||rt.setAttribute("platform","server"),this._document.body.appendChild(rt),this._containerElement=rt}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(t.K0),y.LFG(l.t4))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})();class g{constructor(Ae,Be,rt,$e,Ie,lt,Qe,St,dt,te=!1){this._portalOutlet=Ae,this._host=Be,this._pane=rt,this._config=$e,this._ngZone=Ie,this._keyboardDispatcher=lt,this._document=Qe,this._location=St,this._outsideClickDispatcher=dt,this._animationsDisabled=te,this._backdropElement=null,this._backdropClick=new z.x,this._attachments=new z.x,this._detachments=new z.x,this._locationChanges=B.w0.EMPTY,this._backdropClickHandler=Ue=>this._backdropClick.next(Ue),this._backdropTransitionendHandler=Ue=>{this._disposeBackdrop(Ue.target)},this._keydownEvents=new z.x,this._outsidePointerEvents=new z.x,$e.scrollStrategy&&(this._scrollStrategy=$e.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=$e.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(Ae){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Be=this._portalOutlet.attach(Ae);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,m.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),"function"==typeof Be?.onDestroy&&Be.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Be}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const Ae=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),Ae}dispose(){const Ae=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),this._host?.remove(),this._previousHostParent=this._pane=this._host=null,Ae&&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(Ae){Ae!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=Ae,this.hasAttached()&&(Ae.attach(this),this.updatePosition()))}updateSize(Ae){this._config={...this._config,...Ae},this._updateElementSize()}setDirection(Ae){this._config={...this._config,direction:Ae},this._updateElementDirection()}addPanelClass(Ae){this._pane&&this._toggleClasses(this._pane,Ae,!0)}removePanelClass(Ae){this._pane&&this._toggleClasses(this._pane,Ae,!1)}getDirection(){const Ae=this._config.direction;return Ae?"string"==typeof Ae?Ae:Ae.value:"ltr"}updateScrollStrategy(Ae){Ae!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=Ae,this.hasAttached()&&(Ae.attach(this),Ae.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const Ae=this._pane.style;Ae.width=(0,A.HM)(this._config.width),Ae.height=(0,A.HM)(this._config.height),Ae.minWidth=(0,A.HM)(this._config.minWidth),Ae.minHeight=(0,A.HM)(this._config.minHeight),Ae.maxWidth=(0,A.HM)(this._config.maxWidth),Ae.maxHeight=(0,A.HM)(this._config.maxHeight)}_togglePointerEvents(Ae){this._pane.style.pointerEvents=Ae?"":"none"}_attachBackdrop(){const Ae="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),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),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(Ae)})}):this._backdropElement.classList.add(Ae)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const Ae=this._backdropElement;if(Ae){if(this._animationsDisabled)return void this._disposeBackdrop(Ae);Ae.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{Ae.addEventListener("transitionend",this._backdropTransitionendHandler)}),Ae.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(Ae)},500))}}_toggleClasses(Ae,Be,rt){const $e=(0,A.Eq)(Be||[]).filter(Ie=>!!Ie);$e.length&&(rt?Ae.classList.add(...$e):Ae.classList.remove(...$e))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const Ae=this._ngZone.onStable.pipe((0,P.R)((0,W.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()),Ae.unsubscribe())})})}_disposeScrollStrategy(){const Ae=this._scrollStrategy;Ae&&(Ae.disable(),Ae.detach&&Ae.detach())}_disposeBackdrop(Ae){Ae&&(Ae.removeEventListener("click",this._backdropClickHandler),Ae.removeEventListener("transitionend",this._backdropTransitionendHandler),Ae.remove(),this._backdropElement===Ae&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const H="cdk-overlay-connected-position-bounding-box",R=/([A-Za-z%]+)$/;class ee{get positions(){return this._preferredPositions}constructor(Ae,Be,rt,$e,Ie){this._viewportRuler=Be,this._document=rt,this._platform=$e,this._overlayContainer=Ie,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new z.x,this._resizeSubscription=B.w0.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(Ae)}attach(Ae){this._validatePositions(),Ae.hostElement.classList.add(H),this._overlayRef=Ae,this._boundingBox=Ae.hostElement,this._pane=Ae.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{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 Ae=this._originRect,Be=this._overlayRect,rt=this._viewportRect,$e=this._containerRect,Ie=[];let lt;for(let Qe of this._preferredPositions){let St=this._getOriginPoint(Ae,$e,Qe),dt=this._getOverlayPoint(St,Be,Qe),te=this._getOverlayFit(dt,Be,rt,Qe);if(te.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(Qe,St);this._canFitWithFlexibleDimensions(te,dt,rt)?Ie.push({position:Qe,origin:St,overlayRect:Be,boundingBoxRect:this._calculateBoundingBoxRect(St,Qe)}):(!lt||lt.overlayFit.visibleAreaSt&&(St=te,Qe=dt)}return this._isPushed=!1,void this._applyPosition(Qe.position,Qe.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(lt.position,lt.originPoint);this._applyPosition(lt.position,lt.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&De(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(H),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const Ae=this._lastPosition;if(Ae){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Be=this._getOriginPoint(this._originRect,this._containerRect,Ae);this._applyPosition(Ae,Be)}else this.apply()}withScrollableContainers(Ae){return this._scrollables=Ae,this}withPositions(Ae){return this._preferredPositions=Ae,-1===Ae.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(Ae){return this._viewportMargin=Ae,this}withFlexibleDimensions(Ae=!0){return this._hasFlexibleDimensions=Ae,this}withGrowAfterOpen(Ae=!0){return this._growAfterOpen=Ae,this}withPush(Ae=!0){return this._canPush=Ae,this}withLockedPosition(Ae=!0){return this._positionLocked=Ae,this}setOrigin(Ae){return this._origin=Ae,this}withDefaultOffsetX(Ae){return this._offsetX=Ae,this}withDefaultOffsetY(Ae){return this._offsetY=Ae,this}withTransformOriginOn(Ae){return this._transformOriginSelector=Ae,this}_getOriginPoint(Ae,Be,rt){let $e,Ie;if("center"==rt.originX)$e=Ae.left+Ae.width/2;else{const lt=this._isRtl()?Ae.right:Ae.left,Qe=this._isRtl()?Ae.left:Ae.right;$e="start"==rt.originX?lt:Qe}return Be.left<0&&($e-=Be.left),Ie="center"==rt.originY?Ae.top+Ae.height/2:"top"==rt.originY?Ae.top:Ae.bottom,Be.top<0&&(Ie-=Be.top),{x:$e,y:Ie}}_getOverlayPoint(Ae,Be,rt){let $e,Ie;return $e="center"==rt.overlayX?-Be.width/2:"start"===rt.overlayX?this._isRtl()?-Be.width:0:this._isRtl()?0:-Be.width,Ie="center"==rt.overlayY?-Be.height/2:"top"==rt.overlayY?0:-Be.height,{x:Ae.x+$e,y:Ae.y+Ie}}_getOverlayFit(Ae,Be,rt,$e){const Ie=Ke(Be);let{x:lt,y:Qe}=Ae,St=this._getOffset($e,"x"),dt=this._getOffset($e,"y");St&&(lt+=St),dt&&(Qe+=dt);let Bt=0-Qe,Ye=Qe+Ie.height-rt.height,je=this._subtractOverflows(Ie.width,0-lt,lt+Ie.width-rt.width),Ft=this._subtractOverflows(Ie.height,Bt,Ye),xt=je*Ft;return{visibleArea:xt,isCompletelyWithinViewport:Ie.width*Ie.height===xt,fitsInViewportVertically:Ft===Ie.height,fitsInViewportHorizontally:je==Ie.width}}_canFitWithFlexibleDimensions(Ae,Be,rt){if(this._hasFlexibleDimensions){const $e=rt.bottom-Be.y,Ie=rt.right-Be.x,lt=ct(this._overlayRef.getConfig().minHeight),Qe=ct(this._overlayRef.getConfig().minWidth);return(Ae.fitsInViewportVertically||null!=lt&<<=$e)&&(Ae.fitsInViewportHorizontally||null!=Qe&&Qe<=Ie)}return!1}_pushOverlayOnScreen(Ae,Be,rt){if(this._previousPushAmount&&this._positionLocked)return{x:Ae.x+this._previousPushAmount.x,y:Ae.y+this._previousPushAmount.y};const $e=Ke(Be),Ie=this._viewportRect,lt=Math.max(Ae.x+$e.width-Ie.width,0),Qe=Math.max(Ae.y+$e.height-Ie.height,0),St=Math.max(Ie.top-rt.top-Ae.y,0),dt=Math.max(Ie.left-rt.left-Ae.x,0);let te=0,Ue=0;return te=$e.width<=Ie.width?dt||-lt:Ae.xje&&!this._isInitialRender&&!this._growAfterOpen&&(lt=Ae.y-je/2)}if("end"===Be.overlayX&&!$e||"start"===Be.overlayX&&$e)Bt=rt.width-Ae.x+this._viewportMargin,te=Ae.x-this._viewportMargin;else if("start"===Be.overlayX&&!$e||"end"===Be.overlayX&&$e)Ue=Ae.x,te=rt.right-Ae.x;else{const Ye=Math.min(rt.right-Ae.x+rt.left,Ae.x),je=this._lastBoundingBoxSize.width;te=2*Ye,Ue=Ae.x-Ye,te>je&&!this._isInitialRender&&!this._growAfterOpen&&(Ue=Ae.x-je/2)}return{top:lt,left:Ue,bottom:Qe,right:Bt,width:te,height:Ie}}_setBoundingBoxStyles(Ae,Be){const rt=this._calculateBoundingBoxRect(Ae,Be);!this._isInitialRender&&!this._growAfterOpen&&(rt.height=Math.min(rt.height,this._lastBoundingBoxSize.height),rt.width=Math.min(rt.width,this._lastBoundingBoxSize.width));const $e={};if(this._hasExactPosition())$e.top=$e.left="0",$e.bottom=$e.right=$e.maxHeight=$e.maxWidth="",$e.width=$e.height="100%";else{const Ie=this._overlayRef.getConfig().maxHeight,lt=this._overlayRef.getConfig().maxWidth;$e.height=(0,A.HM)(rt.height),$e.top=(0,A.HM)(rt.top),$e.bottom=(0,A.HM)(rt.bottom),$e.width=(0,A.HM)(rt.width),$e.left=(0,A.HM)(rt.left),$e.right=(0,A.HM)(rt.right),$e.alignItems="center"===Be.overlayX?"center":"end"===Be.overlayX?"flex-end":"flex-start",$e.justifyContent="center"===Be.overlayY?"center":"bottom"===Be.overlayY?"flex-end":"flex-start",Ie&&($e.maxHeight=(0,A.HM)(Ie)),lt&&($e.maxWidth=(0,A.HM)(lt))}this._lastBoundingBoxSize=rt,De(this._boundingBox.style,$e)}_resetBoundingBoxStyles(){De(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){De(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(Ae,Be){const rt={},$e=this._hasExactPosition(),Ie=this._hasFlexibleDimensions,lt=this._overlayRef.getConfig();if($e){const te=this._viewportRuler.getViewportScrollPosition();De(rt,this._getExactOverlayY(Be,Ae,te)),De(rt,this._getExactOverlayX(Be,Ae,te))}else rt.position="static";let Qe="",St=this._getOffset(Be,"x"),dt=this._getOffset(Be,"y");St&&(Qe+=`translateX(${St}px) `),dt&&(Qe+=`translateY(${dt}px)`),rt.transform=Qe.trim(),lt.maxHeight&&($e?rt.maxHeight=(0,A.HM)(lt.maxHeight):Ie&&(rt.maxHeight="")),lt.maxWidth&&($e?rt.maxWidth=(0,A.HM)(lt.maxWidth):Ie&&(rt.maxWidth="")),De(this._pane.style,rt)}_getExactOverlayY(Ae,Be,rt){let $e={top:"",bottom:""},Ie=this._getOverlayPoint(Be,this._overlayRect,Ae);return this._isPushed&&(Ie=this._pushOverlayOnScreen(Ie,this._overlayRect,rt)),"bottom"===Ae.overlayY?$e.bottom=this._document.documentElement.clientHeight-(Ie.y+this._overlayRect.height)+"px":$e.top=(0,A.HM)(Ie.y),$e}_getExactOverlayX(Ae,Be,rt){let lt,$e={left:"",right:""},Ie=this._getOverlayPoint(Be,this._overlayRect,Ae);return this._isPushed&&(Ie=this._pushOverlayOnScreen(Ie,this._overlayRect,rt)),lt=this._isRtl()?"end"===Ae.overlayX?"left":"right":"end"===Ae.overlayX?"right":"left","right"===lt?$e.right=this._document.documentElement.clientWidth-(Ie.x+this._overlayRect.width)+"px":$e.left=(0,A.HM)(Ie.x),$e}_getScrollVisibility(){const Ae=this._getOriginRect(),Be=this._pane.getBoundingClientRect(),rt=this._scrollables.map($e=>$e.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Me(Ae,rt),isOriginOutsideView:ae(Ae,rt),isOverlayClipped:Me(Be,rt),isOverlayOutsideView:ae(Be,rt)}}_subtractOverflows(Ae,...Be){return Be.reduce((rt,$e)=>rt-Math.max($e,0),Ae)}_getNarrowedViewportRect(){const Ae=this._document.documentElement.clientWidth,Be=this._document.documentElement.clientHeight,rt=this._viewportRuler.getViewportScrollPosition();return{top:rt.top+this._viewportMargin,left:rt.left+this._viewportMargin,right:rt.left+Ae-this._viewportMargin,bottom:rt.top+Be-this._viewportMargin,width:Ae-2*this._viewportMargin,height:Be-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(Ae,Be){return"x"===Be?null==Ae.offsetX?this._offsetX:Ae.offsetX:null==Ae.offsetY?this._offsetY:Ae.offsetY}_validatePositions(){}_addPanelClasses(Ae){this._pane&&(0,A.Eq)(Ae).forEach(Be=>{""!==Be&&-1===this._appliedPanelClasses.indexOf(Be)&&(this._appliedPanelClasses.push(Be),this._pane.classList.add(Be))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(Ae=>{this._pane.classList.remove(Ae)}),this._appliedPanelClasses=[])}_getOriginRect(){const Ae=this._origin;if(Ae instanceof y.SBq)return Ae.nativeElement.getBoundingClientRect();if(Ae instanceof Element)return Ae.getBoundingClientRect();const Be=Ae.width||0,rt=Ae.height||0;return{top:Ae.y,bottom:Ae.y+rt,left:Ae.x,right:Ae.x+Be,height:rt,width:Be}}}function De(It,Ae){for(let Be in Ae)Ae.hasOwnProperty(Be)&&(It[Be]=Ae[Be]);return It}function ct(It){if("number"!=typeof It&&null!=It){const[Ae,Be]=It.split(R);return Be&&"px"!==Be?null:parseFloat(Ae)}return It||null}function Ke(It){return{top:Math.floor(It.top),right:Math.floor(It.right),bottom:Math.floor(It.bottom),left:Math.floor(It.left),width:Math.floor(It.width),height:Math.floor(It.height)}}const fe="cdk-global-overlay-wrapper";class de{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(Ae){const Be=Ae.getConfig();this._overlayRef=Ae,this._width&&!Be.width&&Ae.updateSize({width:this._width}),this._height&&!Be.height&&Ae.updateSize({height:this._height}),Ae.hostElement.classList.add(fe),this._isDisposed=!1}top(Ae=""){return this._bottomOffset="",this._topOffset=Ae,this._alignItems="flex-start",this}left(Ae=""){return this._xOffset=Ae,this._xPosition="left",this}bottom(Ae=""){return this._topOffset="",this._bottomOffset=Ae,this._alignItems="flex-end",this}right(Ae=""){return this._xOffset=Ae,this._xPosition="right",this}start(Ae=""){return this._xOffset=Ae,this._xPosition="start",this}end(Ae=""){return this._xOffset=Ae,this._xPosition="end",this}width(Ae=""){return this._overlayRef?this._overlayRef.updateSize({width:Ae}):this._width=Ae,this}height(Ae=""){return this._overlayRef?this._overlayRef.updateSize({height:Ae}):this._height=Ae,this}centerHorizontally(Ae=""){return this.left(Ae),this._xPosition="center",this}centerVertically(Ae=""){return this.top(Ae),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const Ae=this._overlayRef.overlayElement.style,Be=this._overlayRef.hostElement.style,rt=this._overlayRef.getConfig(),{width:$e,height:Ie,maxWidth:lt,maxHeight:Qe}=rt,St=!("100%"!==$e&&"100vw"!==$e||lt&&"100%"!==lt&&"100vw"!==lt),dt=!("100%"!==Ie&&"100vh"!==Ie||Qe&&"100%"!==Qe&&"100vh"!==Qe),te=this._xPosition,Ue=this._xOffset,Bt="rtl"===this._overlayRef.getConfig().direction;let Ye="",je="",Ft="";St?Ft="flex-start":"center"===te?(Ft="center",Bt?je=Ue:Ye=Ue):Bt?"left"===te||"end"===te?(Ft="flex-end",Ye=Ue):("right"===te||"start"===te)&&(Ft="flex-start",je=Ue):"left"===te||"start"===te?(Ft="flex-start",Ye=Ue):("right"===te||"end"===te)&&(Ft="flex-end",je=Ue),Ae.position=this._cssPosition,Ae.marginLeft=St?"0":Ye,Ae.marginTop=dt?"0":this._topOffset,Ae.marginBottom=this._bottomOffset,Ae.marginRight=St?"0":je,Be.justifyContent=Ft,Be.alignItems=dt?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const Ae=this._overlayRef.overlayElement.style,Be=this._overlayRef.hostElement,rt=Be.style;Be.classList.remove(fe),rt.justifyContent=rt.alignItems=Ae.marginTop=Ae.marginBottom=Ae.marginLeft=Ae.marginRight=Ae.position="",this._overlayRef=null,this._isDisposed=!0}}let xe=(()=>{class It{constructor(Be,rt,$e,Ie){this._viewportRuler=Be,this._document=rt,this._platform=$e,this._overlayContainer=Ie}global(){return new de}flexibleConnectedTo(Be){return new ee(Be,this._viewportRuler,this._document,this._platform,this._overlayContainer)}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(e.rL),y.LFG(t.K0),y.LFG(l.t4),y.LFG(r))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})(),le=0,pe=(()=>{class It{constructor(Be,rt,$e,Ie,lt,Qe,St,dt,te,Ue,Bt,Ye){this.scrollStrategies=Be,this._overlayContainer=rt,this._componentFactoryResolver=$e,this._positionBuilder=Ie,this._keyboardDispatcher=lt,this._injector=Qe,this._ngZone=St,this._document=dt,this._directionality=te,this._location=Ue,this._outsideClickDispatcher=Bt,this._animationsModuleType=Ye}create(Be){const rt=this._createHostElement(),$e=this._createPaneElement(rt),Ie=this._createPortalOutlet($e),lt=new S(Be);return lt.direction=lt.direction||this._directionality.value,new g(Ie,rt,$e,lt,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(Be){const rt=this._document.createElement("div");return rt.id="cdk-overlay-"+le++,rt.classList.add("cdk-overlay-pane"),Be.appendChild(rt),rt}_createHostElement(){const Be=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(Be),Be}_createPortalOutlet(Be){return this._appRef||(this._appRef=this._injector.get(y.z2F)),new k.u0(Be,this._componentFactoryResolver,this._appRef,this._injector,this._document)}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.LFG(he),y.LFG(r),y.LFG(y._Vd),y.LFG(xe),y.LFG(O),y.LFG(y.zs3),y.LFG(y.R0b),y.LFG(t.K0),y.LFG(I.Is),y.LFG(t.Ye),y.LFG(v),y.LFG(y.QbO,8))};static#t=this.\u0275prov=y.Yz7({token:It,factory:It.\u0275fac,providedIn:"root"})}return It})();const qe=[{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"}],re=new y.OlP("cdk-connected-overlay-scroll-strategy");let ve=(()=>{class It{constructor(Be){this.elementRef=Be}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.Y36(y.SBq))};static#t=this.\u0275dir=y.lG2({type:It,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"],standalone:!0})}return It})(),ce=(()=>{class It{get offsetX(){return this._offsetX}set offsetX(Be){this._offsetX=Be,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Be){this._offsetY=Be,this._position&&this._updatePositionStrategy(this._position)}get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(Be){this._disposeOnNavigation=Be}constructor(Be,rt,$e,Ie,lt){this._overlay=Be,this._dir=lt,this._backdropSubscription=B.w0.EMPTY,this._attachSubscription=B.w0.EMPTY,this._detachSubscription=B.w0.EMPTY,this._positionSubscription=B.w0.EMPTY,this._disposeOnNavigation=!1,this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.hasBackdrop=!1,this.lockPosition=!1,this.flexibleDimensions=!1,this.growAfterOpen=!1,this.push=!1,this.backdropClick=new y.vpe,this.positionChange=new y.vpe,this.attach=new y.vpe,this.detach=new y.vpe,this.overlayKeydown=new y.vpe,this.overlayOutsideClick=new y.vpe,this._templatePortal=new k.UE(rt,$e),this._scrollStrategyFactory=Ie,this.scrollStrategy=this._scrollStrategyFactory()}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(Be){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Be.origin&&this.open&&this._position.apply()),Be.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=qe);const Be=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=Be.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Be.detachments().subscribe(()=>this.detach.emit()),Be.keydownEvents().subscribe(rt=>{this.overlayKeydown.next(rt),rt.keyCode===j.hY&&!this.disableClose&&!(0,j.Vb)(rt)&&(rt.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(rt=>{this.overlayOutsideClick.next(rt)})}_buildConfig(){const Be=this._position=this.positionStrategy||this._createPositionStrategy(),rt=new S({direction:this._dir,positionStrategy:Be,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(rt.width=this.width),(this.height||0===this.height)&&(rt.height=this.height),(this.minWidth||0===this.minWidth)&&(rt.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(rt.minHeight=this.minHeight),this.backdropClass&&(rt.backdropClass=this.backdropClass),this.panelClass&&(rt.panelClass=this.panelClass),rt}_updatePositionStrategy(Be){const rt=this.positions.map($e=>({originX:$e.originX,originY:$e.originY,overlayX:$e.overlayX,overlayY:$e.overlayY,offsetX:$e.offsetX||this.offsetX,offsetY:$e.offsetY||this.offsetY,panelClass:$e.panelClass||void 0}));return Be.setOrigin(this._getFlexibleConnectedPositionStrategyOrigin()).withPositions(rt).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Be=this._overlay.position().flexibleConnectedTo(this._getFlexibleConnectedPositionStrategyOrigin());return this._updatePositionStrategy(Be),Be}_getFlexibleConnectedPositionStrategyOrigin(){return this.origin instanceof ve?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(Be=>{this.backdropClick.emit(Be)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function M(It,Ae=!1){return(0,d.e)((Be,rt)=>{let $e=0;Be.subscribe((0,E.x)(rt,Ie=>{const lt=It(Ie,$e++);(lt||Ae)&&rt.next(Ie),!lt&&rt.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Be=>{this.positionChange.emit(Be),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}static#e=this.\u0275fac=function(rt){return new(rt||It)(y.Y36(pe),y.Y36(y.Rgc),y.Y36(y.s_b),y.Y36(re),y.Y36(I.Is,8))};static#t=this.\u0275dir=y.lG2({type:It,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",y.VuI],lockPosition:["cdkConnectedOverlayLockPosition","lockPosition",y.VuI],flexibleDimensions:["cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",y.VuI],growAfterOpen:["cdkConnectedOverlayGrowAfterOpen","growAfterOpen",y.VuI],push:["cdkConnectedOverlayPush","push",y.VuI],disposeOnNavigation:["cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",y.VuI]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],standalone:!0,features:[y.Xq5,y.TTD]})}return It})();const We={provide:re,deps:[pe],useFactory:function Ze(It){return()=>It.scrollStrategies.reposition()}};let Ct=(()=>{class It{static#e=this.\u0275fac=function(rt){return new(rt||It)};static#t=this.\u0275mod=y.oAB({type:It});static#i=this.\u0275inj=y.cJS({providers:[pe,We],imports:[I.vT,k.eL,e.Cl,e.Cl]})}return It})()},2831:(Fe,q,p)=>{"use strict";p.d(q,{Mq:()=>z,Oy:()=>se,_i:()=>B,ht:()=>X,i$:()=>M,kV:()=>K,qK:()=>P,sA:()=>ie,t4:()=>A});var e=p(9212),t=p(6814);let y;try{y=typeof Intl<"u"&&Intl.v8BreakIterator}catch{y=!1}let w,A=(()=>{class ue{constructor(Me){this._platformId=Me,this.isBrowser=this._platformId?(0,t.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&&!y)&&typeof CSS<"u"&&!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}static#e=this.\u0275fac=function(J){return new(J||ue)(e.LFG(e.Lbi))};static#t=this.\u0275prov=e.Yz7({token:ue,factory:ue.\u0275fac,providedIn:"root"})}return ue})();const m=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function P(){if(w)return w;if("object"!=typeof document||!document)return w=new Set(m),w;let ue=document.createElement("input");return w=new Set(m.filter(ae=>(ue.setAttribute("type",ae),ue.type===ae))),w}let d,I,k,W;function M(ue){return function E(){if(null==d&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>d=!0}))}finally{d=d||!1}return d}()?ue:!!ue.capture}function z(){if(null==k){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return k=!1,k;if("scrollBehavior"in document.documentElement.style)k=!0;else{const ue=Element.prototype.scrollTo;k=!!ue&&!/\{\s*\[native code\]\s*\}/.test(ue.toString())}}return k}function B(){if("object"!=typeof document||!document)return 0;if(null==I){const ue=document.createElement("div"),ae=ue.style;ue.dir="rtl",ae.width="1px",ae.overflow="auto",ae.visibility="hidden",ae.pointerEvents="none",ae.position="absolute";const Me=document.createElement("div"),J=Me.style;J.width="2px",J.height="1px",ue.appendChild(Me),document.body.appendChild(ue),I=0,0===ue.scrollLeft&&(ue.scrollLeft=1,I=0===ue.scrollLeft?1:2),ue.remove()}return I}function K(ue){if(function j(){if(null==W){const ue=typeof document<"u"?document.head:null;W=!(!ue||!ue.createShadowRoot&&!ue.attachShadow)}return W}()){const ae=ue.getRootNode?ue.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&ae instanceof ShadowRoot)return ae}return null}function X(){let ue=typeof document<"u"&&document?document.activeElement:null;for(;ue&&ue.shadowRoot;){const ae=ue.shadowRoot.activeElement;if(ae===ue)break;ue=ae}return ue}function ie(ue){return ue.composedPath?ue.composedPath()[0]:ue.target}function se(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}},8484:(Fe,q,p)=>{"use strict";p.d(q,{C5:()=>E,Pl:()=>X,UE:()=>M,eL:()=>se,en:()=>k,ig:()=>j,u0:()=>B});var e=p(9212),t=p(6814);class d{attach(Me){return this._attachedHost=Me,Me.attach(this)}detach(){let Me=this._attachedHost;null!=Me&&(this._attachedHost=null,Me.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Me){this._attachedHost=Me}}class E extends d{constructor(Me,J,he,S,n){super(),this.component=Me,this.viewContainerRef=J,this.injector=he,this.componentFactoryResolver=S,this.projectableNodes=n}}class M extends d{constructor(Me,J,he,S){super(),this.templateRef=Me,this.viewContainerRef=J,this.context=he,this.injector=S}get origin(){return this.templateRef.elementRef}attach(Me,J=this.context){return this.context=J,super.attach(Me)}detach(){return this.context=void 0,super.detach()}}class I extends d{constructor(Me){super(),this.element=Me instanceof e.SBq?Me.nativeElement:Me}}class k{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(Me){return Me instanceof E?(this._attachedPortal=Me,this.attachComponentPortal(Me)):Me instanceof M?(this._attachedPortal=Me,this.attachTemplatePortal(Me)):this.attachDomPortal&&Me instanceof I?(this._attachedPortal=Me,this.attachDomPortal(Me)):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(Me){this._disposeFn=Me}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class B extends k{constructor(Me,J,he,S,n){super(),this.outletElement=Me,this._componentFactoryResolver=J,this._appRef=he,this._defaultInjector=S,this.attachDomPortal=s=>{const f=s.element,h=this._document.createComment("dom-portal");f.parentNode.insertBefore(h,f),this.outletElement.appendChild(f),this._attachedPortal=s,super.setDisposeFn(()=>{h.parentNode&&h.parentNode.replaceChild(f,h)})},this._document=n}attachComponentPortal(Me){const he=(Me.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Me.component);let S;return Me.viewContainerRef?(S=Me.viewContainerRef.createComponent(he,Me.viewContainerRef.length,Me.injector||Me.viewContainerRef.injector,Me.projectableNodes||void 0),this.setDisposeFn(()=>S.destroy())):(S=he.create(Me.injector||this._defaultInjector||e.zs3.NULL),this._appRef.attachView(S.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(S.hostView),S.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(S)),this._attachedPortal=Me,S}attachTemplatePortal(Me){let J=Me.viewContainerRef,he=J.createEmbeddedView(Me.templateRef,Me.context,{injector:Me.injector});return he.rootNodes.forEach(S=>this.outletElement.appendChild(S)),he.detectChanges(),this.setDisposeFn(()=>{let S=J.indexOf(he);-1!==S&&J.remove(S)}),this._attachedPortal=Me,he}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Me){return Me.hostView.rootNodes[0]}}let j=(()=>{class ae extends M{constructor(J,he){super(J,he)}static#e=this.\u0275fac=function(he){return new(he||ae)(e.Y36(e.Rgc),e.Y36(e.s_b))};static#t=this.\u0275dir=e.lG2({type:ae,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[e.qOj]})}return ae})(),X=(()=>{class ae extends k{constructor(J,he,S){super(),this._componentFactoryResolver=J,this._viewContainerRef=he,this._isInitialized=!1,this.attached=new e.vpe,this.attachDomPortal=n=>{const s=n.element,f=this._document.createComment("dom-portal");n.setAttachedHost(this),s.parentNode.insertBefore(f,s),this._getRootNode().appendChild(s),this._attachedPortal=n,super.setDisposeFn(()=>{f.parentNode&&f.parentNode.replaceChild(s,f)})},this._document=S}get portal(){return this._attachedPortal}set portal(J){this.hasAttached()&&!J&&!this._isInitialized||(this.hasAttached()&&super.detach(),J&&super.attach(J),this._attachedPortal=J||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(J){J.setAttachedHost(this);const he=null!=J.viewContainerRef?J.viewContainerRef:this._viewContainerRef,n=(J.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(J.component),s=he.createComponent(n,he.length,J.injector||he.injector,J.projectableNodes||void 0);return he!==this._viewContainerRef&&this._getRootNode().appendChild(s.hostView.rootNodes[0]),super.setDisposeFn(()=>s.destroy()),this._attachedPortal=J,this._attachedRef=s,this.attached.emit(s),s}attachTemplatePortal(J){J.setAttachedHost(this);const he=this._viewContainerRef.createEmbeddedView(J.templateRef,J.context,{injector:J.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=J,this._attachedRef=he,this.attached.emit(he),he}_getRootNode(){const J=this._viewContainerRef.element.nativeElement;return J.nodeType===J.ELEMENT_NODE?J:J.parentNode}static#e=this.\u0275fac=function(he){return new(he||ae)(e.Y36(e._Vd),e.Y36(e.s_b),e.Y36(t.K0))};static#t=this.\u0275dir=e.lG2({type:ae,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:["cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[e.qOj]})}return ae})(),se=(()=>{class ae{static#e=this.\u0275fac=function(he){return new(he||ae)};static#t=this.\u0275mod=e.oAB({type:ae});static#i=this.\u0275inj=e.cJS({})}return ae})()},5407:(Fe,q,p)=>{"use strict";p.d(q,{PQ:()=>f,ZD:()=>ct,mF:()=>s,Cl:()=>Ke,rL:()=>C});var e=p(2495),t=p(9212),y=p(8645),A=p(2096),l=p(5592),w=p(2438),m=p(1954),P=p(7394);const d={schedule(Je){let ye=requestAnimationFrame,fe=cancelAnimationFrame;const{delegate:de}=d;de&&(ye=de.requestAnimationFrame,fe=de.cancelAnimationFrame);const xe=ye(le=>{fe=void 0,Je(le)});return new P.w0(()=>fe?.(xe))},requestAnimationFrame(...Je){const{delegate:ye}=d;return(ye?.requestAnimationFrame||requestAnimationFrame)(...Je)},cancelAnimationFrame(...Je){const{delegate:ye}=d;return(ye?.cancelAnimationFrame||cancelAnimationFrame)(...Je)},delegate:void 0};var M=p(2631);new class I extends M.v{flush(ye){this._active=!0;const fe=this._scheduled;this._scheduled=void 0;const{actions:de}=this;let xe;ye=ye||de.shift();do{if(xe=ye.execute(ye.state,ye.delay))break}while((ye=de[0])&&ye.id===fe&&de.shift());if(this._active=!1,xe){for(;(ye=de[0])&&ye.id===fe&&de.shift();)ye.unsubscribe();throw xe}}}(class E extends m.o{constructor(ye,fe){super(ye,fe),this.scheduler=ye,this.work=fe}requestAsyncId(ye,fe,de=0){return null!==de&&de>0?super.requestAsyncId(ye,fe,de):(ye.actions.push(this),ye._scheduled||(ye._scheduled=d.requestAnimationFrame(()=>ye.flush(void 0))))}recycleAsyncId(ye,fe,de=0){var xe;if(null!=de?de>0:this.delay>0)return super.recycleAsyncId(ye,fe,de);const{actions:le}=ye;null!=fe&&(null===(xe=le[le.length-1])||void 0===xe?void 0:xe.id)!==fe&&(d.cancelAnimationFrame(fe),ye._scheduled=void 0)}});p(6410);var W=p(9028),j=p(2181),K=p(9773),X=p(2831),ie=p(6814),se=p(9388);let s=(()=>{class Je{constructor(fe,de,xe){this._ngZone=fe,this._platform=de,this._scrolled=new y.x,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=xe}register(fe){this.scrollContainers.has(fe)||this.scrollContainers.set(fe,fe.elementScrolled().subscribe(()=>this._scrolled.next(fe)))}deregister(fe){const de=this.scrollContainers.get(fe);de&&(de.unsubscribe(),this.scrollContainers.delete(fe))}scrolled(fe=20){return this._platform.isBrowser?new l.y(de=>{this._globalSubscription||this._addGlobalListener();const xe=fe>0?this._scrolled.pipe((0,W.e)(fe)).subscribe(de):this._scrolled.subscribe(de);return this._scrolledCount++,()=>{xe.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,A.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((fe,de)=>this.deregister(de)),this._scrolled.complete()}ancestorScrolled(fe,de){const xe=this.getAncestorScrollContainers(fe);return this.scrolled(de).pipe((0,j.h)(le=>!le||xe.indexOf(le)>-1))}getAncestorScrollContainers(fe){const de=[];return this.scrollContainers.forEach((xe,le)=>{this._scrollableContainsElement(le,fe)&&de.push(le)}),de}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(fe,de){let xe=(0,e.fI)(de),le=fe.getElementRef().nativeElement;do{if(xe==le)return!0}while(xe=xe.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const fe=this._getWindow();return(0,w.R)(fe.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}static#e=this.\u0275fac=function(de){return new(de||Je)(t.LFG(t.R0b),t.LFG(X.t4),t.LFG(ie.K0,8))};static#t=this.\u0275prov=t.Yz7({token:Je,factory:Je.\u0275fac,providedIn:"root"})}return Je})(),f=(()=>{class Je{constructor(fe,de,xe,le){this.elementRef=fe,this.scrollDispatcher=de,this.ngZone=xe,this.dir=le,this._destroyed=new y.x,this._elementScrolled=new l.y(pe=>this.ngZone.runOutsideAngular(()=>(0,w.R)(this.elementRef.nativeElement,"scroll").pipe((0,K.R)(this._destroyed)).subscribe(pe)))}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(fe){const de=this.elementRef.nativeElement,xe=this.dir&&"rtl"==this.dir.value;null==fe.left&&(fe.left=xe?fe.end:fe.start),null==fe.right&&(fe.right=xe?fe.start:fe.end),null!=fe.bottom&&(fe.top=de.scrollHeight-de.clientHeight-fe.bottom),xe&&0!=(0,X._i)()?(null!=fe.left&&(fe.right=de.scrollWidth-de.clientWidth-fe.left),2==(0,X._i)()?fe.left=fe.right:1==(0,X._i)()&&(fe.left=fe.right?-fe.right:fe.right)):null!=fe.right&&(fe.left=de.scrollWidth-de.clientWidth-fe.right),this._applyScrollToOptions(fe)}_applyScrollToOptions(fe){const de=this.elementRef.nativeElement;(0,X.Mq)()?de.scrollTo(fe):(null!=fe.top&&(de.scrollTop=fe.top),null!=fe.left&&(de.scrollLeft=fe.left))}measureScrollOffset(fe){const de="left",le=this.elementRef.nativeElement;if("top"==fe)return le.scrollTop;if("bottom"==fe)return le.scrollHeight-le.clientHeight-le.scrollTop;const pe=this.dir&&"rtl"==this.dir.value;return"start"==fe?fe=pe?"right":de:"end"==fe&&(fe=pe?de:"right"),pe&&2==(0,X._i)()?fe==de?le.scrollWidth-le.clientWidth-le.scrollLeft:le.scrollLeft:pe&&1==(0,X._i)()?fe==de?le.scrollLeft+le.scrollWidth-le.clientWidth:-le.scrollLeft:fe==de?le.scrollLeft:le.scrollWidth-le.clientWidth-le.scrollLeft}static#e=this.\u0275fac=function(de){return new(de||Je)(t.Y36(t.SBq),t.Y36(s),t.Y36(t.R0b),t.Y36(se.Is,8))};static#t=this.\u0275dir=t.lG2({type:Je,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]],standalone:!0})}return Je})(),C=(()=>{class Je{constructor(fe,de,xe){this._platform=fe,this._change=new y.x,this._changeListener=le=>{this._change.next(le)},this._document=xe,de.runOutsideAngular(()=>{if(fe.isBrowser){const le=this._getWindow();le.addEventListener("resize",this._changeListener),le.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const fe=this._getWindow();fe.removeEventListener("resize",this._changeListener),fe.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const fe={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),fe}getViewportRect(){const fe=this.getViewportScrollPosition(),{width:de,height:xe}=this.getViewportSize();return{top:fe.top,left:fe.left,bottom:fe.top+xe,right:fe.left+de,height:xe,width:de}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const fe=this._document,de=this._getWindow(),xe=fe.documentElement,le=xe.getBoundingClientRect();return{top:-le.top||fe.body.scrollTop||de.scrollY||xe.scrollTop||0,left:-le.left||fe.body.scrollLeft||de.scrollX||xe.scrollLeft||0}}change(fe=20){return fe>0?this._change.pipe((0,W.e)(fe)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const fe=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:fe.innerWidth,height:fe.innerHeight}:{width:0,height:0}}static#e=this.\u0275fac=function(de){return new(de||Je)(t.LFG(X.t4),t.LFG(t.R0b),t.LFG(ie.K0,8))};static#t=this.\u0275prov=t.Yz7({token:Je,factory:Je.\u0275fac,providedIn:"root"})}return Je})(),ct=(()=>{class Je{static#e=this.\u0275fac=function(de){return new(de||Je)};static#t=this.\u0275mod=t.oAB({type:Je});static#i=this.\u0275inj=t.cJS({})}return Je})(),Ke=(()=>{class Je{static#e=this.\u0275fac=function(de){return new(de||Je)};static#t=this.\u0275mod=t.oAB({type:Je});static#i=this.\u0275inj=t.cJS({imports:[se.vT,ct,se.vT,ct]})}return Je})()},1657:(Fe,q,p)=>{"use strict";p.d(q,{B8:()=>X,KL:()=>I,U5:()=>ue,be:()=>K,gx:()=>j,po:()=>se,st:()=>ie,u6:()=>k});var e=p(4300),t=p(9388),y=p(6028),A=p(9212),l=p(2831),w=p(8645),m=p(2096),P=p(7921),d=p(9773);function E(ae,Me){1&ae&&A.Hsn(0)}const M=["*"];let I=(()=>{class ae{constructor(J){this._elementRef=J}focus(){this._elementRef.nativeElement.focus()}static#e=this.\u0275fac=function(he){return new(he||ae)(A.Y36(A.SBq))};static#t=this.\u0275dir=A.lG2({type:ae,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"]})}return ae})(),k=(()=>{class ae{constructor(J){this.template=J}static#e=this.\u0275fac=function(he){return new(he||ae)(A.Y36(A.Rgc))};static#t=this.\u0275dir=A.lG2({type:ae,selectors:[["","cdkStepLabel",""]]})}return ae})(),z=0;const j=new A.OlP("STEPPER_GLOBAL_OPTIONS");let K=(()=>{class ae{get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(J){this._completedOverride=J}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(J){this._customError=J}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}constructor(J,he){this._stepper=J,this.interacted=!1,this.interactedStream=new A.vpe,this.editable=!0,this.optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=he||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}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(){return this._stepperOptions.showError??null!=this._customError}static#e=this.\u0275fac=function(he){return new(he||ae)(A.Y36((0,A.Gpc)(()=>X)),A.Y36(j,8))};static#t=this.\u0275cmp=A.Xpm({type:ae,selectors:[["cdk-step"]],contentQueries:function(he,S,n){if(1&he&&A.Suo(n,k,5),2&he){let s;A.iGM(s=A.CRH())&&(S.stepLabel=s.first)}},viewQuery:function(he,S){if(1&he&&A.Gf(A.Rgc,7),2&he){let n;A.iGM(n=A.CRH())&&(S.content=n.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],state:"state",editable:["editable","editable",A.VuI],optional:["optional","optional",A.VuI],completed:["completed","completed",A.VuI],hasError:["hasError","hasError",A.VuI]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],features:[A.Xq5,A.TTD],ngContentSelectors:M,decls:1,vars:0,template:function(he,S){1&he&&(A.F$t(),A.YNc(0,E,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return ae})(),X=(()=>{class ae{get selectedIndex(){return this._selectedIndex}set selectedIndex(J){this.steps&&this._steps?(this._isValidIndex(J),this.selected?._markAsInteracted(),this._selectedIndex!==J&&!this._anyControlsInvalidOrPending(J)&&(J>=this._selectedIndex||this.steps.toArray()[J].editable)&&this._updateSelectedItemIndex(J)):this._selectedIndex=J}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(J){this.selectedIndex=J&&this.steps?this.steps.toArray().indexOf(J):-1}get orientation(){return this._orientation}set orientation(J){this._orientation=J,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===J)}constructor(J,he,S){this._dir=J,this._changeDetectorRef=he,this._elementRef=S,this._destroyed=new w.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.selectedIndexChange=new A.vpe,this._orientation="horizontal",this._groupId=z++}ngAfterContentInit(){this._steps.changes.pipe((0,P.O)(this._steps),(0,d.R)(this._destroyed)).subscribe(J=>{this.steps.reset(J.filter(he=>he._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,P.O)(this._stepHeader),(0,d.R)(this._destroyed)).subscribe(J=>{this._sortedHeaders.reset(J.toArray().sort((he,S)=>he._elementRef.nativeElement.compareDocumentPosition(S._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new e.Em(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,m.of)()).pipe((0,P.O)(this._layoutDirection()),(0,d.R)(this._destroyed)).subscribe(J=>this._keyManager.withHorizontalOrientation(J)),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._keyManager?.destroy(),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(J=>J.reset()),this._stateChanged()}_getStepLabelId(J){return`cdk-step-label-${this._groupId}-${J}`}_getStepContentId(J){return`cdk-step-content-${this._groupId}-${J}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(J){const he=J-this._selectedIndex;return he<0?"rtl"===this._layoutDirection()?"next":"previous":he>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(J,he="number"){const S=this.steps.toArray()[J],n=this._isCurrentStep(J);return S._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(S,n):this._getGuidelineLogic(S,n,he)}_getDefaultIndicatorLogic(J,he){return J._showError()&&J.hasError&&!he?"error":!J.completed||he?"number":J.editable?"edit":"done"}_getGuidelineLogic(J,he,S="number"){return J._showError()&&J.hasError&&!he?"error":J.completed&&!he?"done":J.completed&&he?S:J.editable&&he?"edit":S}_isCurrentStep(J){return this._selectedIndex===J}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(J){const he=this.steps.toArray();this.selectionChange.emit({selectedIndex:J,previouslySelectedIndex:this._selectedIndex,selectedStep:he[J],previouslySelectedStep:he[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(J):this._keyManager.updateActiveItem(J),this._selectedIndex=J,this.selectedIndexChange.emit(this._selectedIndex),this._stateChanged()}_onKeydown(J){const he=(0,y.Vb)(J),S=J.keyCode,n=this._keyManager;null==n.activeItemIndex||he||S!==y.L_&&S!==y.K5?n.setFocusOrigin("keyboard").onKeydown(J):(this.selectedIndex=n.activeItemIndex,J.preventDefault())}_anyControlsInvalidOrPending(J){return!!(this.linear&&J>=0)&&this.steps.toArray().slice(0,J).some(he=>{const S=he.stepControl;return(S?S.invalid||S.pending||!he.interacted:!he.completed)&&!he.optional&&!he._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const J=this._elementRef.nativeElement,he=(0,l.ht)();return J===he||J.contains(he)}_isValidIndex(J){return J>-1&&(!this.steps||J{class ae{constructor(J){this._stepper=J,this.type="submit"}static#e=this.\u0275fac=function(he){return new(he||ae)(A.Y36(X))};static#t=this.\u0275dir=A.lG2({type:ae,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(he,S){1&he&&A.NdJ("click",function(){return S._stepper.next()}),2&he&&A.Ikx("type",S.type)},inputs:{type:"type"}})}return ae})(),se=(()=>{class ae{constructor(J){this._stepper=J,this.type="button"}static#e=this.\u0275fac=function(he){return new(he||ae)(A.Y36(X))};static#t=this.\u0275dir=A.lG2({type:ae,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(he,S){1&he&&A.NdJ("click",function(){return S._stepper.previous()}),2&he&&A.Ikx("type",S.type)},inputs:{type:"type"}})}return ae})(),ue=(()=>{class ae{static#e=this.\u0275fac=function(he){return new(he||ae)};static#t=this.\u0275mod=A.oAB({type:ae});static#i=this.\u0275inj=A.cJS({imports:[t.vT]})}return ae})()},1894:(Fe,q,p)=>{"use strict";p.d(q,{HI:()=>B,Hs:()=>J,Ud:()=>h,VY:()=>z,XJ:()=>f,Xx:()=>n,_0:()=>Me,cu:()=>W,nZ:()=>D,rO:()=>K});var e=p(8337),t=p(2664),y=p(8645),A=p(5619),l=p(2096),w=p(8180),m=p(2181),P=p(9773),d=p(9212),E=p(2495),M=p(9388);class I{constructor(){this.expansionModel=new e.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 r=[v];r.push(...this.getDescendants(v)),this.expansionModel.select(...r.map(g=>this._trackByValue(g)))}collapseDescendants(v){let r=[v];r.push(...this.getDescendants(v)),this.expansionModel.deselect(...r.map(g=>this._trackByValue(g)))}_trackByValue(v){return this.trackBy?this.trackBy(v):v}}class z extends I{constructor(v,r){super(),this.getChildren=v,this.options=r,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const v=this.dataNodes.reduce((r,g)=>[...r,...this.getDescendants(g),g],[]);this.expansionModel.select(...v.map(r=>this._trackByValue(r)))}getDescendants(v){const r=[];return this._getDescendants(r,v),r.splice(1)}_getDescendants(v,r){v.push(r);const g=this.getChildren(r);Array.isArray(g)?g.forEach(H=>this._getDescendants(v,H)):(0,t.b)(g)&&g.pipe((0,w.q)(1),(0,m.h)(Boolean)).subscribe(H=>{for(const R of H)this._getDescendants(v,R)})}}const B=new d.OlP("CDK_TREE_NODE_OUTLET_NODE");let W=(()=>{class O{constructor(r,g){this.viewContainer=r,this._node=g}static#e=this.\u0275fac=function(g){return new(g||O)(d.Y36(d.s_b),d.Y36(B,8))};static#t=this.\u0275dir=d.lG2({type:O,selectors:[["","cdkTreeNodeOutlet",""]]})}return O})();class j{constructor(v){this.$implicit=v}}let K=(()=>{class O{constructor(r){this.template=r}static#e=this.\u0275fac=function(g){return new(g||O)(d.Y36(d.Rgc))};static#t=this.\u0275dir=d.lG2({type:O,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:["cdkTreeNodeDefWhen","when"]}})}return O})(),Me=(()=>{class O{get dataSource(){return this._dataSource}set dataSource(r){this._dataSource!==r&&this._switchDataSource(r)}constructor(r,g){this._differs=r,this._changeDetectorRef=g,this._onDestroy=new y.x,this._levels=new Map,this.viewChange=new A.X({start:0,end:Number.MAX_VALUE})}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 r=this._nodeDefs.filter(g=>!g.when);this._defaultNodeDef=r[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(r){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),r||this._nodeOutlet.viewContainer.clear(),this._dataSource=r,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let r;(0,e.Z9)(this._dataSource)?r=this._dataSource.connect(this):(0,t.b)(this._dataSource)?r=this._dataSource:Array.isArray(this._dataSource)&&(r=(0,l.of)(this._dataSource)),r&&(this._dataSubscription=r.pipe((0,P.R)(this._onDestroy)).subscribe(g=>this.renderNodeChanges(g)))}renderNodeChanges(r,g=this._dataDiffer,H=this._nodeOutlet.viewContainer,R){const ee=g.diff(r);ee&&(ee.forEachOperation((De,ct,Ke)=>{if(null==De.previousIndex)this.insertNode(r[Ke],Ke,H,R);else if(null==Ke)H.remove(ct),this._levels.delete(De.item);else{const Je=H.get(ct);H.move(Je,Ke)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(r,g){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(R=>R.when&&R.when(g,r))||this._defaultNodeDef}insertNode(r,g,H,R){const ee=this._getNodeDef(r,g),De=new j(r);De.level=this.treeControl.getLevel?this.treeControl.getLevel(r):typeof R<"u"&&this._levels.has(R)?this._levels.get(R)+1:0,this._levels.set(r,De.level),(H||this._nodeOutlet.viewContainer).createEmbeddedView(ee.template,De,g),J.mostRecentTreeNode&&(J.mostRecentTreeNode.data=r)}static#e=this.\u0275fac=function(g){return new(g||O)(d.Y36(d.ZZ4),d.Y36(d.sBO))};static#t=this.\u0275cmp=d.Xpm({type:O,selectors:[["cdk-tree"]],contentQueries:function(g,H,R){if(1&g&&d.Suo(R,K,5),2&g){let ee;d.iGM(ee=d.CRH())&&(H._nodeDefs=ee)}},viewQuery:function(g,H){if(1&g&&d.Gf(W,7),2&g){let R;d.iGM(R=d.CRH())&&(H._nodeOutlet=R.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(g,H){1&g&&d.GkF(0,0)},dependencies:[W],encapsulation:2})}return O})(),J=(()=>{class O{get role(){return"treeitem"}set role(r){this._elementRef.nativeElement.setAttribute("role",r)}static#e=this.mostRecentTreeNode=null;get data(){return this._data}set data(r){r!==this._data&&(this._data=r,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}constructor(r,g){this._elementRef=r,this._tree=g,this._destroyed=new y.x,this._dataChanges=new y.x,O.mostRecentTreeNode=this,this.role="treeitem"}ngOnInit(){this._parentNodeAriaLevel=function he(O){let v=O.parentElement;for(;v&&!S(v);)v=v.parentElement;return v?v.classList.contains("cdk-nested-tree-node")?(0,E.su)(v.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){O.mostRecentTreeNode===this&&(O.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}static#t=this.\u0275fac=function(g){return new(g||O)(d.Y36(d.SBq),d.Y36(Me))};static#i=this.\u0275dir=d.lG2({type:O,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(g,H){2&g&&d.uIk("aria-expanded",H.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"]})}return O})();function S(O){const v=O.classList;return!(!v?.contains("cdk-nested-tree-node")&&!v?.contains("cdk-tree"))}let n=(()=>{class O extends J{constructor(r,g,H){super(r,g),this._differs=H}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const r=this._tree.treeControl.getChildren(this.data);Array.isArray(r)?this.updateChildrenNodes(r):(0,t.b)(r)&&r.pipe((0,P.R)(this._destroyed)).subscribe(g=>this.updateChildrenNodes(g)),this.nodeOutlet.changes.pipe((0,P.R)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(r){const g=this._getNodeOutlet();r&&(this._children=r),g&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,g.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const r=this._getNodeOutlet();r&&(r.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const r=this.nodeOutlet;return r&&r.find(g=>!g._node||g._node===this)}static#e=this.\u0275fac=function(g){return new(g||O)(d.Y36(d.SBq),d.Y36(Me),d.Y36(d.ZZ4))};static#t=this.\u0275dir=d.lG2({type:O,selectors:[["cdk-nested-tree-node"]],contentQueries:function(g,H,R){if(1&g&&d.Suo(R,W,5),2&g){let ee;d.iGM(ee=d.CRH())&&(H.nodeOutlet=ee)}},hostAttrs:[1,"cdk-nested-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex"},exportAs:["cdkNestedTreeNode"],features:[d._Bn([{provide:J,useExisting:O},{provide:B,useExisting:O}]),d.qOj]})}return O})();const s=/([A-Za-z%]+)$/;let f=(()=>{class O{get level(){return this._level}set level(r){this._setLevelInput(r)}get indent(){return this._indent}set indent(r){this._setIndentInput(r)}constructor(r,g,H,R){this._treeNode=r,this._tree=g,this._element=H,this._dir=R,this._destroyed=new y.x,this.indentUnits="px",this._indent=40,this._setPadding(),R&&R.change.pipe((0,P.R)(this._destroyed)).subscribe(()=>this._setPadding(!0)),r._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const r=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,g=null==this._level?r:this._level;return"number"==typeof g?`${g*this._indent}${this.indentUnits}`:null}_setPadding(r=!1){const g=this._paddingIndent();if(g!==this._currentPadding||r){const H=this._element.nativeElement,R=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",ee="paddingLeft"===R?"paddingRight":"paddingLeft";H.style[R]=g||"",H.style[ee]="",this._currentPadding=g}}_setLevelInput(r){this._level=(0,E.su)(r,null),this._setPadding()}_setIndentInput(r){let g=r,H="px";if("string"==typeof r){const R=r.split(s);g=R[0],H=R[1]||H}this.indentUnits=H,this._indent=(0,E.su)(g),this._setPadding()}static#e=this.\u0275fac=function(g){return new(g||O)(d.Y36(J),d.Y36(Me),d.Y36(d.SBq),d.Y36(M.Is,8))};static#t=this.\u0275dir=d.lG2({type:O,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:["cdkTreeNodePadding","level"],indent:["cdkTreeNodePaddingIndent","indent"]}})}return O})(),h=(()=>{class O{get recursive(){return this._recursive}set recursive(r){this._recursive=(0,E.Ig)(r)}constructor(r,g){this._tree=r,this._treeNode=g,this._recursive=!1}_toggle(r){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),r.stopPropagation()}static#e=this.\u0275fac=function(g){return new(g||O)(d.Y36(Me),d.Y36(J))};static#t=this.\u0275dir=d.lG2({type:O,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(g,H){1&g&&d.NdJ("click",function(ee){return H._toggle(ee)})},inputs:{recursive:["cdkTreeNodeToggleRecursive","recursive"]}})}return O})(),D=(()=>{class O{static#e=this.\u0275fac=function(g){return new(g||O)};static#t=this.\u0275mod=d.oAB({type:O});static#i=this.\u0275inj=d.cJS({})}return O})()},6814:(Fe,q,p)=>{"use strict";p.d(q,{Do:()=>W,ED:()=>an,EM:()=>Eo,HT:()=>A,JF:()=>_a,JJ:()=>Lr,K0:()=>w,Mx:()=>Gt,NF:()=>ea,Nd:()=>za,O5:()=>Ve,OU:()=>kr,Ov:()=>yn,PC:()=>$r,PM:()=>Ia,RF:()=>fn,S$:()=>k,Ts:()=>Kn,V_:()=>P,Ye:()=>j,b0:()=>B,bD:()=>wa,ez:()=>Bn,gd:()=>er,i8:()=>jn,mk:()=>yi,n9:()=>Sn,q:()=>y,rS:()=>Er,sg:()=>qt,tP:()=>Ni,uU:()=>oa,w_:()=>l});var e=p(9212);let t=null;function y(){return t}function A(_e){t||(t=_e)}class l{}const w=new e.OlP("DocumentToken");let m=(()=>{class _e{historyGo(Pe){throw new Error("Not implemented")}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275prov=e.Yz7({token:_e,factory:()=>(0,e.f3M)(d),providedIn:"platform"})}return _e})();const P=new e.OlP("Location Initialized");let d=(()=>{class _e extends m{constructor(){super(),this._doc=(0,e.f3M)(w),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return y().getBaseHref(this._doc)}onPopState(Pe){const pt=y().getGlobalEventTarget(this._doc,"window");return pt.addEventListener("popstate",Pe,!1),()=>pt.removeEventListener("popstate",Pe)}onHashChange(Pe){const pt=y().getGlobalEventTarget(this._doc,"window");return pt.addEventListener("hashchange",Pe,!1),()=>pt.removeEventListener("hashchange",Pe)}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(Pe){this._location.pathname=Pe}pushState(Pe,pt,Qt){this._history.pushState(Pe,pt,Qt)}replaceState(Pe,pt,Qt){this._history.replaceState(Pe,pt,Qt)}forward(){this._history.forward()}back(){this._history.back()}historyGo(Pe=0){this._history.go(Pe)}getState(){return this._history.state}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275prov=e.Yz7({token:_e,factory:()=>new _e,providedIn:"platform"})}return _e})();function E(_e,Tt){if(0==_e.length)return Tt;if(0==Tt.length)return _e;let Pe=0;return _e.endsWith("/")&&Pe++,Tt.startsWith("/")&&Pe++,2==Pe?_e+Tt.substring(1):1==Pe?_e+Tt:_e+"/"+Tt}function M(_e){const Tt=_e.match(/#|\?|$/),Pe=Tt&&Tt.index||_e.length;return _e.slice(0,Pe-("/"===_e[Pe-1]?1:0))+_e.slice(Pe)}function I(_e){return _e&&"?"!==_e[0]?"?"+_e:_e}let k=(()=>{class _e{historyGo(Pe){throw new Error("Not implemented")}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275prov=e.Yz7({token:_e,factory:()=>(0,e.f3M)(B),providedIn:"root"})}return _e})();const z=new e.OlP("appBaseHref");let B=(()=>{class _e extends k{constructor(Pe,pt){super(),this._platformLocation=Pe,this._removeListenerFns=[],this._baseHref=pt??this._platformLocation.getBaseHrefFromDOM()??(0,e.f3M)(w).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Pe){this._removeListenerFns.push(this._platformLocation.onPopState(Pe),this._platformLocation.onHashChange(Pe))}getBaseHref(){return this._baseHref}prepareExternalUrl(Pe){return E(this._baseHref,Pe)}path(Pe=!1){const pt=this._platformLocation.pathname+I(this._platformLocation.search),Qt=this._platformLocation.hash;return Qt&&Pe?`${pt}${Qt}`:pt}pushState(Pe,pt,Qt,Re){const ft=this.prepareExternalUrl(Qt+I(Re));this._platformLocation.pushState(Pe,pt,ft)}replaceState(Pe,pt,Qt,Re){const ft=this.prepareExternalUrl(Qt+I(Re));this._platformLocation.replaceState(Pe,pt,ft)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Pe=0){this._platformLocation.historyGo?.(Pe)}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.LFG(m),e.LFG(z,8))};static#t=this.\u0275prov=e.Yz7({token:_e,factory:_e.\u0275fac,providedIn:"root"})}return _e})(),W=(()=>{class _e extends k{constructor(Pe,pt){super(),this._platformLocation=Pe,this._baseHref="",this._removeListenerFns=[],null!=pt&&(this._baseHref=pt)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Pe){this._removeListenerFns.push(this._platformLocation.onPopState(Pe),this._platformLocation.onHashChange(Pe))}getBaseHref(){return this._baseHref}path(Pe=!1){let pt=this._platformLocation.hash;return null==pt&&(pt="#"),pt.length>0?pt.substring(1):pt}prepareExternalUrl(Pe){const pt=E(this._baseHref,Pe);return pt.length>0?"#"+pt:pt}pushState(Pe,pt,Qt,Re){let ft=this.prepareExternalUrl(Qt+I(Re));0==ft.length&&(ft=this._platformLocation.pathname),this._platformLocation.pushState(Pe,pt,ft)}replaceState(Pe,pt,Qt,Re){let ft=this.prepareExternalUrl(Qt+I(Re));0==ft.length&&(ft=this._platformLocation.pathname),this._platformLocation.replaceState(Pe,pt,ft)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Pe=0){this._platformLocation.historyGo?.(Pe)}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.LFG(m),e.LFG(z,8))};static#t=this.\u0275prov=e.Yz7({token:_e,factory:_e.\u0275fac})}return _e})(),j=(()=>{class _e{constructor(Pe){this._subject=new e.vpe,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=Pe;const pt=this._locationStrategy.getBaseHref();this._basePath=function se(_e){if(new RegExp("^(https?:)?//").test(_e)){const[,Pe]=_e.split(/\/\/[^\/]+/);return Pe}return _e}(M(ie(pt))),this._locationStrategy.onPopState(Qt=>{this._subject.emit({url:this.path(!0),pop:!0,state:Qt.state,type:Qt.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(Pe=!1){return this.normalize(this._locationStrategy.path(Pe))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(Pe,pt=""){return this.path()==this.normalize(Pe+I(pt))}normalize(Pe){return _e.stripTrailingSlash(function X(_e,Tt){if(!_e||!Tt.startsWith(_e))return Tt;const Pe=Tt.substring(_e.length);return""===Pe||["/",";","?","#"].includes(Pe[0])?Pe:Tt}(this._basePath,ie(Pe)))}prepareExternalUrl(Pe){return Pe&&"/"!==Pe[0]&&(Pe="/"+Pe),this._locationStrategy.prepareExternalUrl(Pe)}go(Pe,pt="",Qt=null){this._locationStrategy.pushState(Qt,"",Pe,pt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Pe+I(pt)),Qt)}replaceState(Pe,pt="",Qt=null){this._locationStrategy.replaceState(Qt,"",Pe,pt),this._notifyUrlChangeListeners(this.prepareExternalUrl(Pe+I(pt)),Qt)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(Pe=0){this._locationStrategy.historyGo?.(Pe)}onUrlChange(Pe){return this._urlChangeListeners.push(Pe),this._urlChangeSubscription||(this._urlChangeSubscription=this.subscribe(pt=>{this._notifyUrlChangeListeners(pt.url,pt.state)})),()=>{const pt=this._urlChangeListeners.indexOf(Pe);this._urlChangeListeners.splice(pt,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(Pe="",pt){this._urlChangeListeners.forEach(Qt=>Qt(Pe,pt))}subscribe(Pe,pt,Qt){return this._subject.subscribe({next:Pe,error:pt,complete:Qt})}static#e=this.normalizeQueryParams=I;static#t=this.joinWithSlash=E;static#i=this.stripTrailingSlash=M;static#n=this.\u0275fac=function(pt){return new(pt||_e)(e.LFG(k))};static#r=this.\u0275prov=e.Yz7({token:_e,factory:()=>function K(){return new j((0,e.LFG)(k))}(),providedIn:"root"})}return _e})();function ie(_e){return _e.replace(/\/index.html$/,"")}var ae=function(_e){return _e[_e.Decimal=0]="Decimal",_e[_e.Percent=1]="Percent",_e[_e.Currency=2]="Currency",_e[_e.Scientific=3]="Scientific",_e}(ae||{}),J=function(_e){return _e[_e.Format=0]="Format",_e[_e.Standalone=1]="Standalone",_e}(J||{}),he=function(_e){return _e[_e.Narrow=0]="Narrow",_e[_e.Abbreviated=1]="Abbreviated",_e[_e.Wide=2]="Wide",_e[_e.Short=3]="Short",_e}(he||{}),S=function(_e){return _e[_e.Short=0]="Short",_e[_e.Medium=1]="Medium",_e[_e.Long=2]="Long",_e[_e.Full=3]="Full",_e}(S||{}),n=function(_e){return _e[_e.Decimal=0]="Decimal",_e[_e.Group=1]="Group",_e[_e.List=2]="List",_e[_e.PercentSign=3]="PercentSign",_e[_e.PlusSign=4]="PlusSign",_e[_e.MinusSign=5]="MinusSign",_e[_e.Exponential=6]="Exponential",_e[_e.SuperscriptingExponent=7]="SuperscriptingExponent",_e[_e.PerMille=8]="PerMille",_e[_e.Infinity=9]="Infinity",_e[_e.NaN=10]="NaN",_e[_e.TimeSeparator=11]="TimeSeparator",_e[_e.CurrencyDecimal=12]="CurrencyDecimal",_e[_e.CurrencyGroup=13]="CurrencyGroup",_e}(n||{});function g(_e,Tt){return qe((0,e.cg1)(_e)[e.wAp.DateFormat],Tt)}function H(_e,Tt){return qe((0,e.cg1)(_e)[e.wAp.TimeFormat],Tt)}function R(_e,Tt){return qe((0,e.cg1)(_e)[e.wAp.DateTimeFormat],Tt)}function ee(_e,Tt){const Pe=(0,e.cg1)(_e),pt=Pe[e.wAp.NumberSymbols][Tt];if(typeof pt>"u"){if(Tt===n.CurrencyDecimal)return Pe[e.wAp.NumberSymbols][n.Decimal];if(Tt===n.CurrencyGroup)return Pe[e.wAp.NumberSymbols][n.Group]}return pt}function de(_e){if(!_e[e.wAp.ExtraData])throw new Error(`Missing extra locale data for the locale "${_e[e.wAp.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function qe(_e,Tt){for(let Pe=Tt;Pe>-1;Pe--)if(typeof _e[Pe]<"u")return _e[Pe];throw new Error("Locale data API: locale data undefined")}function re(_e){const[Tt,Pe]=_e.split(":");return{hours:+Tt,minutes:+Pe}}const We=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Ct={},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 It=function(_e){return _e[_e.Short=0]="Short",_e[_e.ShortGMT=1]="ShortGMT",_e[_e.Long=2]="Long",_e[_e.Extended=3]="Extended",_e}(It||{}),Ae=function(_e){return _e[_e.FullYear=0]="FullYear",_e[_e.Month=1]="Month",_e[_e.Date=2]="Date",_e[_e.Hours=3]="Hours",_e[_e.Minutes=4]="Minutes",_e[_e.Seconds=5]="Seconds",_e[_e.FractionalSeconds=6]="FractionalSeconds",_e[_e.Day=7]="Day",_e}(Ae||{}),Be=function(_e){return _e[_e.DayPeriods=0]="DayPeriods",_e[_e.Days=1]="Days",_e[_e.Months=2]="Months",_e[_e.Eras=3]="Eras",_e}(Be||{});function rt(_e,Tt,Pe,pt){let Qt=function Le(_e){if($(_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[Qt,Re=1,ft=1]=_e.split("-").map(_t=>+_t);return $e(Qt,Re-1,ft)}const Pe=parseFloat(_e);if(!isNaN(_e-Pe))return new Date(Pe);let pt;if(pt=_e.match(We))return function be(_e){const Tt=new Date(0);let Pe=0,pt=0;const Qt=_e[8]?Tt.setUTCFullYear:Tt.setFullYear,Re=_e[8]?Tt.setUTCHours:Tt.setHours;_e[9]&&(Pe=Number(_e[9]+_e[10]),pt=Number(_e[9]+_e[11])),Qt.call(Tt,Number(_e[1]),Number(_e[2])-1,Number(_e[3]));const ft=Number(_e[4]||0)-Pe,_t=Number(_e[5]||0)-pt,Lt=Number(_e[6]||0),Xt=Math.floor(1e3*parseFloat("0."+(_e[7]||0)));return Re.call(Tt,ft,_t,Lt,Xt),Tt}(pt)}const Tt=new Date(_e);if(!$(Tt))throw new Error(`Unable to convert "${_e}" into a date`);return Tt}(_e);Tt=Ie(Pe,Tt)||Tt;let _t,ft=[];for(;Tt;){if(_t=ut.exec(Tt),!_t){ft.push(Tt);break}{ft=ft.concat(_t.slice(1));const hi=ft.pop();if(!hi)break;Tt=hi}}let Lt=Qt.getTimezoneOffset();pt&&(Lt=Ge(pt,Lt),Qt=function gt(_e,Tt,Pe){const pt=Pe?-1:1,Qt=_e.getTimezoneOffset();return function Xe(_e,Tt){return(_e=new Date(_e.getTime())).setMinutes(_e.getMinutes()+Tt),_e}(_e,pt*(Ge(Tt,Qt)-Qt))}(Qt,pt,!0));let Xt="";return ft.forEach(hi=>{const di=function nt(_e){if(Ee[_e])return Ee[_e];let Tt;switch(_e){case"G":case"GG":case"GGG":Tt=Ue(Be.Eras,he.Abbreviated);break;case"GGGG":Tt=Ue(Be.Eras,he.Wide);break;case"GGGGG":Tt=Ue(Be.Eras,he.Narrow);break;case"y":Tt=dt(Ae.FullYear,1,0,!1,!0);break;case"yy":Tt=dt(Ae.FullYear,2,0,!0,!0);break;case"yyy":Tt=dt(Ae.FullYear,3,0,!1,!0);break;case"yyyy":Tt=dt(Ae.FullYear,4,0,!1,!0);break;case"Y":Tt=at(1);break;case"YY":Tt=at(2,!0);break;case"YYY":Tt=at(3);break;case"YYYY":Tt=at(4);break;case"M":case"L":Tt=dt(Ae.Month,1,1);break;case"MM":case"LL":Tt=dt(Ae.Month,2,1);break;case"MMM":Tt=Ue(Be.Months,he.Abbreviated);break;case"MMMM":Tt=Ue(Be.Months,he.Wide);break;case"MMMMM":Tt=Ue(Be.Months,he.Narrow);break;case"LLL":Tt=Ue(Be.Months,he.Abbreviated,J.Standalone);break;case"LLLL":Tt=Ue(Be.Months,he.Wide,J.Standalone);break;case"LLLLL":Tt=Ue(Be.Months,he.Narrow,J.Standalone);break;case"w":Tt=yt(1);break;case"ww":Tt=yt(2);break;case"W":Tt=yt(1,!0);break;case"d":Tt=dt(Ae.Date,1);break;case"dd":Tt=dt(Ae.Date,2);break;case"c":case"cc":Tt=dt(Ae.Day,1);break;case"ccc":Tt=Ue(Be.Days,he.Abbreviated,J.Standalone);break;case"cccc":Tt=Ue(Be.Days,he.Wide,J.Standalone);break;case"ccccc":Tt=Ue(Be.Days,he.Narrow,J.Standalone);break;case"cccccc":Tt=Ue(Be.Days,he.Short,J.Standalone);break;case"E":case"EE":case"EEE":Tt=Ue(Be.Days,he.Abbreviated);break;case"EEEE":Tt=Ue(Be.Days,he.Wide);break;case"EEEEE":Tt=Ue(Be.Days,he.Narrow);break;case"EEEEEE":Tt=Ue(Be.Days,he.Short);break;case"a":case"aa":case"aaa":Tt=Ue(Be.DayPeriods,he.Abbreviated);break;case"aaaa":Tt=Ue(Be.DayPeriods,he.Wide);break;case"aaaaa":Tt=Ue(Be.DayPeriods,he.Narrow);break;case"b":case"bb":case"bbb":Tt=Ue(Be.DayPeriods,he.Abbreviated,J.Standalone,!0);break;case"bbbb":Tt=Ue(Be.DayPeriods,he.Wide,J.Standalone,!0);break;case"bbbbb":Tt=Ue(Be.DayPeriods,he.Narrow,J.Standalone,!0);break;case"B":case"BB":case"BBB":Tt=Ue(Be.DayPeriods,he.Abbreviated,J.Format,!0);break;case"BBBB":Tt=Ue(Be.DayPeriods,he.Wide,J.Format,!0);break;case"BBBBB":Tt=Ue(Be.DayPeriods,he.Narrow,J.Format,!0);break;case"h":Tt=dt(Ae.Hours,1,-12);break;case"hh":Tt=dt(Ae.Hours,2,-12);break;case"H":Tt=dt(Ae.Hours,1);break;case"HH":Tt=dt(Ae.Hours,2);break;case"m":Tt=dt(Ae.Minutes,1);break;case"mm":Tt=dt(Ae.Minutes,2);break;case"s":Tt=dt(Ae.Seconds,1);break;case"ss":Tt=dt(Ae.Seconds,2);break;case"S":Tt=dt(Ae.FractionalSeconds,1);break;case"SS":Tt=dt(Ae.FractionalSeconds,2);break;case"SSS":Tt=dt(Ae.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":Tt=Ye(It.Short);break;case"ZZZZZ":Tt=Ye(It.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Tt=Ye(It.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":Tt=Ye(It.Long);break;default:return null}return Ee[_e]=Tt,Tt}(hi);Xt+=di?di(Qt,Pe,Lt):"''"===hi?"'":hi.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),Xt}function $e(_e,Tt,Pe){const pt=new Date(0);return pt.setFullYear(_e,Tt,Pe),pt.setHours(0,0,0),pt}function Ie(_e,Tt){const Pe=function f(_e){return(0,e.cg1)(_e)[e.wAp.LocaleId]}(_e);if(Ct[Pe]=Ct[Pe]||{},Ct[Pe][Tt])return Ct[Pe][Tt];let pt="";switch(Tt){case"shortDate":pt=g(_e,S.Short);break;case"mediumDate":pt=g(_e,S.Medium);break;case"longDate":pt=g(_e,S.Long);break;case"fullDate":pt=g(_e,S.Full);break;case"shortTime":pt=H(_e,S.Short);break;case"mediumTime":pt=H(_e,S.Medium);break;case"longTime":pt=H(_e,S.Long);break;case"fullTime":pt=H(_e,S.Full);break;case"short":const Qt=Ie(_e,"shortTime"),Re=Ie(_e,"shortDate");pt=lt(R(_e,S.Short),[Qt,Re]);break;case"medium":const ft=Ie(_e,"mediumTime"),_t=Ie(_e,"mediumDate");pt=lt(R(_e,S.Medium),[ft,_t]);break;case"long":const Lt=Ie(_e,"longTime"),Xt=Ie(_e,"longDate");pt=lt(R(_e,S.Long),[Lt,Xt]);break;case"full":const hi=Ie(_e,"fullTime"),di=Ie(_e,"fullDate");pt=lt(R(_e,S.Full),[hi,di])}return pt&&(Ct[Pe][Tt]=pt),pt}function lt(_e,Tt){return Tt&&(_e=_e.replace(/\{([^}]+)}/g,function(Pe,pt){return null!=Tt&&pt in Tt?Tt[pt]:Pe})),_e}function Qe(_e,Tt,Pe="-",pt,Qt){let Re="";(_e<0||Qt&&_e<=0)&&(Qt?_e=1-_e:(_e=-_e,Re=Pe));let ft=String(_e);for(;ft.length0||_t>-Pe)&&(_t+=Pe),_e===Ae.Hours)0===_t&&-12===Pe&&(_t=12);else if(_e===Ae.FractionalSeconds)return function St(_e,Tt){return Qe(_e,3).substring(0,Tt)}(_t,Tt);const Lt=ee(ft,n.MinusSign);return Qe(_t,Tt,Lt,pt,Qt)}}function Ue(_e,Tt,Pe=J.Format,pt=!1){return function(Qt,Re){return function Bt(_e,Tt,Pe,pt,Qt,Re){switch(Pe){case Be.Months:return function D(_e,Tt,Pe){const pt=(0,e.cg1)(_e),Re=qe([pt[e.wAp.MonthsFormat],pt[e.wAp.MonthsStandalone]],Tt);return qe(Re,Pe)}(Tt,Qt,pt)[_e.getMonth()];case Be.Days:return function C(_e,Tt,Pe){const pt=(0,e.cg1)(_e),Re=qe([pt[e.wAp.DaysFormat],pt[e.wAp.DaysStandalone]],Tt);return qe(Re,Pe)}(Tt,Qt,pt)[_e.getDay()];case Be.DayPeriods:const ft=_e.getHours(),_t=_e.getMinutes();if(Re){const Xt=function xe(_e){const Tt=(0,e.cg1)(_e);return de(Tt),(Tt[e.wAp.ExtraData][2]||[]).map(pt=>"string"==typeof pt?re(pt):[re(pt[0]),re(pt[1])])}(Tt),hi=function le(_e,Tt,Pe){const pt=(0,e.cg1)(_e);de(pt);const Re=qe([pt[e.wAp.ExtraData][0],pt[e.wAp.ExtraData][1]],Tt)||[];return qe(Re,Pe)||[]}(Tt,Qt,pt),di=Xt.findIndex(Si=>{if(Array.isArray(Si)){const[Ii,Xi]=Si,en=ft>=Ii.hours&&_t>=Ii.minutes,cn=ft0?Math.floor(Qt/60):Math.ceil(Qt/60);switch(_e){case It.Short:return(Qt>=0?"+":"")+Qe(ft,2,Re)+Qe(Math.abs(Qt%60),2,Re);case It.ShortGMT:return"GMT"+(Qt>=0?"+":"")+Qe(ft,1,Re);case It.Long:return"GMT"+(Qt>=0?"+":"")+Qe(ft,2,Re)+":"+Qe(Math.abs(Qt%60),2,Re);case It.Extended:return 0===pt?"Z":(Qt>=0?"+":"")+Qe(ft,2,Re)+":"+Qe(Math.abs(Qt%60),2,Re);default:throw new Error(`Unknown zone width "${_e}"`)}}}const je=0,Ft=4;function Ot(_e){return $e(_e.getFullYear(),_e.getMonth(),_e.getDate()+(Ft-_e.getDay()))}function yt(_e,Tt=!1){return function(Pe,pt){let Qt;if(Tt){const Re=new Date(Pe.getFullYear(),Pe.getMonth(),1).getDay()-1,ft=Pe.getDate();Qt=1+Math.floor((ft+Re)/7)}else{const Re=Ot(Pe),ft=function xt(_e){const Tt=$e(_e,je,1).getDay();return $e(_e,0,1+(Tt<=Ft?Ft:Ft+7)-Tt)}(Re.getFullYear()),_t=Re.getTime()-ft.getTime();Qt=1+Math.round(_t/6048e5)}return Qe(Qt,_e,ee(pt,n.MinusSign))}}function at(_e,Tt=!1){return function(Pe,pt){return Qe(Ot(Pe).getFullYear(),_e,ee(pt,n.MinusSign),Tt)}}const Ee={};function Ge(_e,Tt){_e=_e.replace(/:/g,"");const Pe=Date.parse("Jan 01, 1970 00:00:00 "+_e)/6e4;return isNaN(Pe)?Tt:Pe}function $(_e){return _e instanceof Date&&!isNaN(_e.valueOf())}const ne=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function Ce(_e){const Tt=parseInt(_e);if(isNaN(Tt))throw new Error("Invalid integer literal when parsing "+_e);return Tt}function Gt(_e,Tt){Tt=encodeURIComponent(Tt);for(const Pe of _e.split(";")){const pt=Pe.indexOf("="),[Qt,Re]=-1==pt?[Pe,""]:[Pe.slice(0,pt),Pe.slice(pt+1)];if(Qt.trim()===Tt)return decodeURIComponent(Re)}return null}const oi=/\s+/,bi=[];let yi=(()=>{class _e{constructor(Pe,pt,Qt,Re){this._iterableDiffers=Pe,this._keyValueDiffers=pt,this._ngEl=Qt,this._renderer=Re,this.initialClasses=bi,this.stateMap=new Map}set klass(Pe){this.initialClasses=null!=Pe?Pe.trim().split(oi):bi}set ngClass(Pe){this.rawClass="string"==typeof Pe?Pe.trim().split(oi):Pe}ngDoCheck(){for(const pt of this.initialClasses)this._updateState(pt,!0);const Pe=this.rawClass;if(Array.isArray(Pe)||Pe instanceof Set)for(const pt of Pe)this._updateState(pt,!0);else if(null!=Pe)for(const pt of Object.keys(Pe))this._updateState(pt,!!Pe[pt]);this._applyStateDiff()}_updateState(Pe,pt){const Qt=this.stateMap.get(Pe);void 0!==Qt?(Qt.enabled!==pt&&(Qt.changed=!0,Qt.enabled=pt),Qt.touched=!0):this.stateMap.set(Pe,{enabled:pt,changed:!0,touched:!0})}_applyStateDiff(){for(const Pe of this.stateMap){const pt=Pe[0],Qt=Pe[1];Qt.changed?(this._toggleClass(pt,Qt.enabled),Qt.changed=!1):Qt.touched||(Qt.enabled&&this._toggleClass(pt,!1),this.stateMap.delete(pt)),Qt.touched=!1}}_toggleClass(Pe,pt){(Pe=Pe.trim()).length>0&&Pe.split(oi).forEach(Qt=>{pt?this._renderer.addClass(this._ngEl.nativeElement,Qt):this._renderer.removeClass(this._ngEl.nativeElement,Qt)})}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.ZZ4),e.Y36(e.aQg),e.Y36(e.SBq),e.Y36(e.Qsj))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngClass",""]],inputs:{klass:["class","klass"],ngClass:"ngClass"},standalone:!0})}return _e})();class Bi{constructor(Tt,Pe,pt,Qt){this.$implicit=Tt,this.ngForOf=Pe,this.index=pt,this.count=Qt}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 qt=(()=>{class _e{set ngForOf(Pe){this._ngForOf=Pe,this._ngForOfDirty=!0}set ngForTrackBy(Pe){this._trackByFn=Pe}get ngForTrackBy(){return this._trackByFn}constructor(Pe,pt,Qt){this._viewContainer=Pe,this._template=pt,this._differs=Qt,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForTemplate(Pe){Pe&&(this._template=Pe)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const Pe=this._ngForOf;!this._differ&&Pe&&(this._differ=this._differs.find(Pe).create(this.ngForTrackBy))}if(this._differ){const Pe=this._differ.diff(this._ngForOf);Pe&&this._applyChanges(Pe)}}_applyChanges(Pe){const pt=this._viewContainer;Pe.forEachOperation((Qt,Re,ft)=>{if(null==Qt.previousIndex)pt.createEmbeddedView(this._template,new Bi(Qt.item,this._ngForOf,-1,-1),null===ft?void 0:ft);else if(null==ft)pt.remove(null===Re?void 0:Re);else if(null!==Re){const _t=pt.get(Re);pt.move(_t,ft),xi(_t,Qt)}});for(let Qt=0,Re=pt.length;Qt{xi(pt.get(Qt.currentIndex),Qt)})}static ngTemplateContextGuard(Pe,pt){return!0}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.s_b),e.Y36(e.Rgc),e.Y36(e.ZZ4))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0})}return _e})();function xi(_e,Tt){_e.context.$implicit=Tt.item}let Ve=(()=>{class _e{constructor(Pe,pt){this._viewContainer=Pe,this._context=new et,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=pt}set ngIf(Pe){this._context.$implicit=this._context.ngIf=Pe,this._updateView()}set ngIfThen(Pe){tt("ngIfThen",Pe),this._thenTemplateRef=Pe,this._thenViewRef=null,this._updateView()}set ngIfElse(Pe){tt("ngIfElse",Pe),this._elseTemplateRef=Pe,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(Pe,pt){return!0}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.s_b),e.Y36(e.Rgc))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0})}return _e})();class et{constructor(){this.$implicit=null,this.ngIf=null}}function tt(_e,Tt){if(Tt&&!Tt.createEmbeddedView)throw new Error(`${_e} must be a TemplateRef, but received '${(0,e.AaK)(Tt)}'.`)}class ri{constructor(Tt,Pe){this._viewContainerRef=Tt,this._templateRef=Pe,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Tt){Tt&&!this._created?this.create():!Tt&&this._created&&this.destroy()}}let fn=(()=>{class _e{constructor(){this._defaultViews=[],this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(Pe){this._ngSwitch=Pe,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(Pe){this._defaultViews.push(Pe)}_matchCase(Pe){const pt=Pe===this._ngSwitch;return this._lastCasesMatched=this._lastCasesMatched||pt,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),pt}_updateDefaultCases(Pe){if(this._defaultViews.length>0&&Pe!==this._defaultUsed){this._defaultUsed=Pe;for(const pt of this._defaultViews)pt.enforceState(Pe)}}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0})}return _e})(),Sn=(()=>{class _e{constructor(Pe,pt,Qt){this.ngSwitch=Qt,Qt._addCase(),this._view=new ri(Pe,pt)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.s_b),e.Y36(e.Rgc),e.Y36(fn,9))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0})}return _e})(),an=(()=>{class _e{constructor(Pe,pt,Qt){Qt._addDefault(new ri(Pe,pt))}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.s_b),e.Y36(e.Rgc),e.Y36(fn,9))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngSwitchDefault",""]],standalone:!0})}return _e})(),$r=(()=>{class _e{constructor(Pe,pt,Qt){this._ngEl=Pe,this._differs=pt,this._renderer=Qt,this._ngStyle=null,this._differ=null}set ngStyle(Pe){this._ngStyle=Pe,!this._differ&&Pe&&(this._differ=this._differs.find(Pe).create())}ngDoCheck(){if(this._differ){const Pe=this._differ.diff(this._ngStyle);Pe&&this._applyChanges(Pe)}}_setStyle(Pe,pt){const[Qt,Re]=Pe.split("."),ft=-1===Qt.indexOf("-")?void 0:e.JOm.DashCase;null!=pt?this._renderer.setStyle(this._ngEl.nativeElement,Qt,Re?`${pt}${Re}`:pt,ft):this._renderer.removeStyle(this._ngEl.nativeElement,Qt,ft)}_applyChanges(Pe){Pe.forEachRemovedItem(pt=>this._setStyle(pt.key,null)),Pe.forEachAddedItem(pt=>this._setStyle(pt.key,pt.currentValue)),Pe.forEachChangedItem(pt=>this._setStyle(pt.key,pt.currentValue))}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.SBq),e.Y36(e.aQg),e.Y36(e.Qsj))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0})}return _e})(),Ni=(()=>{class _e{constructor(Pe){this._viewContainerRef=Pe,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(Pe){if(this._shouldRecreateView(Pe)){const pt=this._viewContainerRef;if(this._viewRef&&pt.remove(pt.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Qt=this._createContextForwardProxy();this._viewRef=pt.createEmbeddedView(this.ngTemplateOutlet,Qt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(Pe){return!!Pe.ngTemplateOutlet||!!Pe.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(Pe,pt,Qt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,pt,Qt),get:(Pe,pt,Qt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,pt,Qt)}})}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.s_b))};static#t=this.\u0275dir=e.lG2({type:_e,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[e.TTD]})}return _e})();function pi(_e,Tt){return new e.vHH(2100,!1)}class _i{createSubscription(Tt,Pe){return(0,e.rg0)(()=>Tt.subscribe({next:Pe,error:pt=>{throw pt}}))}dispose(Tt){(0,e.rg0)(()=>Tt.unsubscribe())}}class Ci{createSubscription(Tt,Pe){return Tt.then(Pe,pt=>{throw pt})}dispose(Tt){}}const Gi=new Ci,Ji=new _i;let yn=(()=>{class _e{constructor(Pe){this._latestValue=null,this._subscription=null,this._obj=null,this._strategy=null,this._ref=Pe}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(Pe){return this._obj?Pe!==this._obj?(this._dispose(),this.transform(Pe)):this._latestValue:(Pe&&this._subscribe(Pe),this._latestValue)}_subscribe(Pe){this._obj=Pe,this._strategy=this._selectStrategy(Pe),this._subscription=this._strategy.createSubscription(Pe,pt=>this._updateLatestValue(Pe,pt))}_selectStrategy(Pe){if((0,e.QGY)(Pe))return Gi;if((0,e.F4k)(Pe))return Ji;throw pi()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(Pe,pt){Pe===this._obj&&(this._latestValue=pt,this._ref.markForCheck())}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.sBO,16))};static#t=this.\u0275pipe=e.Yjl({name:"async",type:_e,pure:!1,standalone:!0})}return _e})(),jn=(()=>{class _e{transform(Pe){if(null==Pe)return null;if("string"!=typeof Pe)throw pi();return Pe.toLowerCase()}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275pipe=e.Yjl({name:"lowercase",type:_e,pure:!0,standalone:!0})}return _e})();const Rn=/(?:[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 Er=(()=>{class _e{transform(Pe){if(null==Pe)return null;if("string"!=typeof Pe)throw pi();return Pe.replace(Rn,pt=>pt[0].toUpperCase()+pt.slice(1).toLowerCase())}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275pipe=e.Yjl({name:"titlecase",type:_e,pure:!0,standalone:!0})}return _e})(),er=(()=>{class _e{transform(Pe){if(null==Pe)return null;if("string"!=typeof Pe)throw pi();return Pe.toUpperCase()}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275pipe=e.Yjl({name:"uppercase",type:_e,pure:!0,standalone:!0})}return _e})();const aa=new e.OlP("DATE_PIPE_DEFAULT_TIMEZONE"),ma=new e.OlP("DATE_PIPE_DEFAULT_OPTIONS");let oa=(()=>{class _e{constructor(Pe,pt,Qt){this.locale=Pe,this.defaultTimezone=pt,this.defaultOptions=Qt}transform(Pe,pt,Qt,Re){if(null==Pe||""===Pe||Pe!=Pe)return null;try{return rt(Pe,pt??this.defaultOptions?.dateFormat??"mediumDate",Re||this.locale,Qt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(ft){throw pi()}}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.soG,16),e.Y36(aa,24),e.Y36(ma,24))};static#t=this.\u0275pipe=e.Yjl({name:"date",type:_e,pure:!0,standalone:!0})}return _e})(),Kn=(()=>{class _e{transform(Pe){return JSON.stringify(Pe,null,2)}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275pipe=e.Yjl({name:"json",type:_e,pure:!1,standalone:!0})}return _e})(),za=(()=>{class _e{constructor(Pe){this.differs=Pe,this.keyValues=[],this.compareFn=ga}transform(Pe,pt=ga){if(!Pe||!(Pe instanceof Map)&&"object"!=typeof Pe)return null;this.differ||(this.differ=this.differs.find(Pe).create());const Qt=this.differ.diff(Pe),Re=pt!==this.compareFn;return Qt&&(this.keyValues=[],Qt.forEachItem(ft=>{this.keyValues.push(function pa(_e,Tt){return{key:_e,value:Tt}}(ft.key,ft.currentValue))})),(Qt||Re)&&(this.keyValues.sort(pt),this.compareFn=pt),this.keyValues}static#e=this.\u0275fac=function(pt){return new(pt||_e)(e.Y36(e.aQg,16))};static#t=this.\u0275pipe=e.Yjl({name:"keyvalue",type:_e,pure:!1,standalone:!0})}return _e})();function ga(_e,Tt){const Pe=_e.key,pt=Tt.key;if(Pe===pt)return 0;if(void 0===Pe)return 1;if(void 0===pt)return-1;if(null===Pe)return 1;if(null===pt)return-1;if("string"==typeof Pe&&"string"==typeof pt)return Pe{class _e{constructor(Pe){this._locale=Pe}transform(Pe,pt,Qt){if(!function jr(_e){return!(null==_e||""===_e||_e!=_e)}(Pe))return null;Qt=Qt||this._locale;try{return function Ki(_e,Tt,Pe){return function li(_e,Tt,Pe,pt,Qt,Re,ft=!1){let _t="",Lt=!1;if(isFinite(_e)){let Xt=function st(_e){let pt,Qt,Re,ft,_t,Tt=Math.abs(_e)+"",Pe=0;for((Qt=Tt.indexOf("."))>-1&&(Tt=Tt.replace(".","")),(Re=Tt.search(/e/i))>0?(Qt<0&&(Qt=Re),Qt+=+Tt.slice(Re+1),Tt=Tt.substring(0,Re)):Qt<0&&(Qt=Tt.length),Re=0;"0"===Tt.charAt(Re);Re++);if(Re===(_t=Tt.length))pt=[0],Qt=1;else{for(_t--;"0"===Tt.charAt(_t);)_t--;for(Qt-=Re,pt=[],ft=0;Re<=_t;Re++,ft++)pt[ft]=Number(Tt.charAt(Re))}return Qt>22&&(pt=pt.splice(0,21),Pe=Qt-1,Qt=1),{digits:pt,exponent:Pe,integerLen:Qt}}(_e);ft&&(Xt=function on(_e){if(0===_e.digits[0])return _e;const Tt=_e.digits.length-_e.integerLen;return _e.exponent?_e.exponent+=2:(0===Tt?_e.digits.push(0,0):1===Tt&&_e.digits.push(0),_e.integerLen+=2),_e}(Xt));let hi=Tt.minInt,di=Tt.minFrac,Si=Tt.maxFrac;if(Re){const Ln=Re.match(ne);if(null===Ln)throw new Error(`${Re} is not a valid digit info`);const hr=Ln[1],Hr=Ln[3],da=Ln[5];null!=hr&&(hi=Ce(hr)),null!=Hr&&(di=Ce(Hr)),null!=da?Si=Ce(da):null!=Hr&&di>Si&&(Si=di)}!function si(_e,Tt,Pe){if(Tt>Pe)throw new Error(`The minimum number of digits after fraction (${Tt}) is higher than the maximum (${Pe}).`);let pt=_e.digits,Qt=pt.length-_e.integerLen;const Re=Math.min(Math.max(Tt,Qt),Pe);let ft=Re+_e.integerLen,_t=pt[ft];if(ft>0){pt.splice(Math.max(_e.integerLen,ft));for(let di=ft;di=5)if(ft-1<0){for(let di=0;di>ft;di--)pt.unshift(0),_e.integerLen++;pt.unshift(1),_e.integerLen++}else pt[ft-1]++;for(;Qt=Xt?Xi.pop():Lt=!1),Si>=10?1:0},0);hi&&(pt.unshift(hi),_e.integerLen++)}(Xt,di,Si);let Ii=Xt.digits,Xi=Xt.integerLen;const en=Xt.exponent;let cn=[];for(Lt=Ii.every(Ln=>!Ln);Xi0?cn=Ii.splice(Xi,Ii.length):(cn=Ii,Ii=[0]);const Un=[];for(Ii.length>=Tt.lgSize&&Un.unshift(Ii.splice(-Tt.lgSize,Ii.length).join(""));Ii.length>Tt.gSize;)Un.unshift(Ii.splice(-Tt.gSize,Ii.length).join(""));Ii.length&&Un.unshift(Ii.join("")),_t=Un.join(ee(Pe,pt)),cn.length&&(_t+=ee(Pe,Qt)+cn.join("")),en&&(_t+=ee(Pe,n.Exponential)+"+"+en)}else _t=ee(Pe,n.Infinity);return _t=_e<0&&!Lt?Tt.negPre+_t+Tt.negSuf:Tt.posPre+_t+Tt.posSuf,_t}(_e,function Mi(_e,Tt="-"){const Pe={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},pt=_e.split(";"),Qt=pt[0],Re=pt[1],ft=-1!==Qt.indexOf(".")?Qt.split("."):[Qt.substring(0,Qt.lastIndexOf("0")+1),Qt.substring(Qt.lastIndexOf("0")+1)],_t=ft[0],Lt=ft[1]||"";Pe.posPre=_t.substring(0,_t.indexOf("#"));for(let hi=0;hi{class _e{transform(Pe,pt,Qt){if(null==Pe)return null;if(!this.supports(Pe))throw pi();return Pe.slice(pt,Qt)}supports(Pe){return"string"==typeof Pe||Array.isArray(Pe)}static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275pipe=e.Yjl({name:"slice",type:_e,pure:!1,standalone:!0})}return _e})(),Bn=(()=>{class _e{static#e=this.\u0275fac=function(pt){return new(pt||_e)};static#t=this.\u0275mod=e.oAB({type:_e});static#i=this.\u0275inj=e.cJS({})}return _e})();const wa="browser",ao="server";function ea(_e){return _e===wa}function Ia(_e){return _e===ao}let Eo=(()=>{class _e{static#e=this.\u0275prov=(0,e.Yz7)({token:_e,providedIn:"root",factory:()=>new vo((0,e.LFG)(w),window)})}return _e})();class vo{constructor(Tt,Pe){this.document=Tt,this.window=Pe,this.offset=()=>[0,0]}setOffset(Tt){this.offset=Array.isArray(Tt)?()=>Tt:Tt}getScrollPosition(){return this.supportsScrolling()?[this.window.pageXOffset,this.window.pageYOffset]:[0,0]}scrollToPosition(Tt){this.supportsScrolling()&&this.window.scrollTo(Tt[0],Tt[1])}scrollToAnchor(Tt){if(!this.supportsScrolling())return;const Pe=function Kr(_e,Tt){const Pe=_e.getElementById(Tt)||_e.getElementsByName(Tt)[0];if(Pe)return Pe;if("function"==typeof _e.createTreeWalker&&_e.body&&"function"==typeof _e.body.attachShadow){const pt=_e.createTreeWalker(_e.body,NodeFilter.SHOW_ELEMENT);let Qt=pt.currentNode;for(;Qt;){const Re=Qt.shadowRoot;if(Re){const ft=Re.getElementById(Tt)||Re.querySelector(`[name="${Tt}"]`);if(ft)return ft}Qt=pt.nextNode()}}return null}(this.document,Tt);Pe&&(this.scrollToElement(Pe),Pe.focus())}setHistoryScrollRestoration(Tt){this.supportsScrolling()&&(this.window.history.scrollRestoration=Tt)}scrollToElement(Tt){const Pe=Tt.getBoundingClientRect(),pt=Pe.left+this.window.pageXOffset,Qt=Pe.top+this.window.pageYOffset,Re=this.offset();this.window.scrollTo(pt-Re[0],Qt-Re[1])}supportsScrolling(){try{return!!this.window&&!!this.window.scrollTo&&"pageXOffset"in this.window}catch{return!1}}}class _a{}},9862:(Fe,q,p)=>{"use strict";p.d(q,{JF:()=>Wt,LE:()=>ue,TP:()=>xe,eN:()=>g}),p(5861);var t=p(9212),y=p(2096),A=p(5592),l=p(9666),w=p(6328),m=p(2181),P=p(7398),d=p(4716),E=p(4664),M=p(6814);class I{}class k{}class z{constructor(kt){this.normalizedNames=new Map,this.lazyUpdate=null,kt?"string"==typeof kt?this.lazyInit=()=>{this.headers=new Map,kt.split("\n").forEach(Gt=>{const oi=Gt.indexOf(":");if(oi>0){const bi=Gt.slice(0,oi),yi=bi.toLowerCase(),Oi=Gt.slice(oi+1).trim();this.maybeSetNormalizedName(bi,yi),this.headers.has(yi)?this.headers.get(yi).push(Oi):this.headers.set(yi,[Oi])}})}:typeof Headers<"u"&&kt instanceof Headers?(this.headers=new Map,kt.forEach((Gt,oi)=>{this.setHeaderEntries(oi,Gt)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(kt).forEach(([Gt,oi])=>{this.setHeaderEntries(Gt,oi)})}:this.headers=new Map}has(kt){return this.init(),this.headers.has(kt.toLowerCase())}get(kt){this.init();const Gt=this.headers.get(kt.toLowerCase());return Gt&&Gt.length>0?Gt[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(kt){return this.init(),this.headers.get(kt.toLowerCase())||null}append(kt,Gt){return this.clone({name:kt,value:Gt,op:"a"})}set(kt,Gt){return this.clone({name:kt,value:Gt,op:"s"})}delete(kt,Gt){return this.clone({name:kt,value:Gt,op:"d"})}maybeSetNormalizedName(kt,Gt){this.normalizedNames.has(Gt)||this.normalizedNames.set(Gt,kt)}init(){this.lazyInit&&(this.lazyInit instanceof z?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(kt=>this.applyUpdate(kt)),this.lazyUpdate=null))}copyFrom(kt){kt.init(),Array.from(kt.headers.keys()).forEach(Gt=>{this.headers.set(Gt,kt.headers.get(Gt)),this.normalizedNames.set(Gt,kt.normalizedNames.get(Gt))})}clone(kt){const Gt=new z;return Gt.lazyInit=this.lazyInit&&this.lazyInit instanceof z?this.lazyInit:this,Gt.lazyUpdate=(this.lazyUpdate||[]).concat([kt]),Gt}applyUpdate(kt){const Gt=kt.name.toLowerCase();switch(kt.op){case"a":case"s":let oi=kt.value;if("string"==typeof oi&&(oi=[oi]),0===oi.length)return;this.maybeSetNormalizedName(kt.name,Gt);const bi=("a"===kt.op?this.headers.get(Gt):void 0)||[];bi.push(...oi),this.headers.set(Gt,bi);break;case"d":const yi=kt.value;if(yi){let Oi=this.headers.get(Gt);if(!Oi)return;Oi=Oi.filter(Ui=>-1===yi.indexOf(Ui)),0===Oi.length?(this.headers.delete(Gt),this.normalizedNames.delete(Gt)):this.headers.set(Gt,Oi)}else this.headers.delete(Gt),this.normalizedNames.delete(Gt)}}setHeaderEntries(kt,Gt){const oi=(Array.isArray(Gt)?Gt:[Gt]).map(yi=>yi.toString()),bi=kt.toLowerCase();this.headers.set(bi,oi),this.maybeSetNormalizedName(kt,bi)}forEach(kt){this.init(),Array.from(this.normalizedNames.keys()).forEach(Gt=>kt(this.normalizedNames.get(Gt),this.headers.get(Gt)))}}class W{encodeKey(kt){return ie(kt)}encodeValue(kt){return ie(kt)}decodeKey(kt){return decodeURIComponent(kt)}decodeValue(kt){return decodeURIComponent(kt)}}const K=/%(\d[a-f0-9])/gi,X={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ie(Dt){return encodeURIComponent(Dt).replace(K,(kt,Gt)=>X[Gt]??kt)}function se(Dt){return`${Dt}`}class ue{constructor(kt={}){if(this.updates=null,this.cloneFrom=null,this.encoder=kt.encoder||new W,kt.fromString){if(kt.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function j(Dt,kt){const Gt=new Map;return Dt.length>0&&Dt.replace(/^\?/,"").split("&").forEach(bi=>{const yi=bi.indexOf("="),[Oi,Ui]=-1==yi?[kt.decodeKey(bi),""]:[kt.decodeKey(bi.slice(0,yi)),kt.decodeValue(bi.slice(yi+1))],Bi=Gt.get(Oi)||[];Bi.push(Ui),Gt.set(Oi,Bi)}),Gt}(kt.fromString,this.encoder)}else kt.fromObject?(this.map=new Map,Object.keys(kt.fromObject).forEach(Gt=>{const oi=kt.fromObject[Gt],bi=Array.isArray(oi)?oi.map(se):[se(oi)];this.map.set(Gt,bi)})):this.map=null}has(kt){return this.init(),this.map.has(kt)}get(kt){this.init();const Gt=this.map.get(kt);return Gt?Gt[0]:null}getAll(kt){return this.init(),this.map.get(kt)||null}keys(){return this.init(),Array.from(this.map.keys())}append(kt,Gt){return this.clone({param:kt,value:Gt,op:"a"})}appendAll(kt){const Gt=[];return Object.keys(kt).forEach(oi=>{const bi=kt[oi];Array.isArray(bi)?bi.forEach(yi=>{Gt.push({param:oi,value:yi,op:"a"})}):Gt.push({param:oi,value:bi,op:"a"})}),this.clone(Gt)}set(kt,Gt){return this.clone({param:kt,value:Gt,op:"s"})}delete(kt,Gt){return this.clone({param:kt,value:Gt,op:"d"})}toString(){return this.init(),this.keys().map(kt=>{const Gt=this.encoder.encodeKey(kt);return this.map.get(kt).map(oi=>Gt+"="+this.encoder.encodeValue(oi)).join("&")}).filter(kt=>""!==kt).join("&")}clone(kt){const Gt=new ue({encoder:this.encoder});return Gt.cloneFrom=this.cloneFrom||this,Gt.updates=(this.updates||[]).concat(kt),Gt}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(kt=>this.map.set(kt,this.cloneFrom.map.get(kt))),this.updates.forEach(kt=>{switch(kt.op){case"a":case"s":const Gt=("a"===kt.op?this.map.get(kt.param):void 0)||[];Gt.push(se(kt.value)),this.map.set(kt.param,Gt);break;case"d":if(void 0===kt.value){this.map.delete(kt.param);break}{let oi=this.map.get(kt.param)||[];const bi=oi.indexOf(se(kt.value));-1!==bi&&oi.splice(bi,1),oi.length>0?this.map.set(kt.param,oi):this.map.delete(kt.param)}}}),this.cloneFrom=this.updates=null)}}class Me{constructor(){this.map=new Map}set(kt,Gt){return this.map.set(kt,Gt),this}get(kt){return this.map.has(kt)||this.map.set(kt,kt.defaultValue()),this.map.get(kt)}delete(kt){return this.map.delete(kt),this}has(kt){return this.map.has(kt)}keys(){return this.map.keys()}}function he(Dt){return typeof ArrayBuffer<"u"&&Dt instanceof ArrayBuffer}function S(Dt){return typeof Blob<"u"&&Dt instanceof Blob}function n(Dt){return typeof FormData<"u"&&Dt instanceof FormData}class f{constructor(kt,Gt,oi,bi){let yi;if(this.url=Gt,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=kt.toUpperCase(),function J(Dt){switch(Dt){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||bi?(this.body=void 0!==oi?oi:null,yi=bi):yi=oi,yi&&(this.reportProgress=!!yi.reportProgress,this.withCredentials=!!yi.withCredentials,yi.responseType&&(this.responseType=yi.responseType),yi.headers&&(this.headers=yi.headers),yi.context&&(this.context=yi.context),yi.params&&(this.params=yi.params),this.transferCache=yi.transferCache),this.headers||(this.headers=new z),this.context||(this.context=new Me),this.params){const Oi=this.params.toString();if(0===Oi.length)this.urlWithParams=Gt;else{const Ui=Gt.indexOf("?");this.urlWithParams=Gt+(-1===Ui?"?":UiSe.set(Ve,kt.setHeaders[Ve]),Bi)),kt.setParams&&(qt=Object.keys(kt.setParams).reduce((Se,Ve)=>Se.set(Ve,kt.setParams[Ve]),qt)),new f(Gt,oi,yi,{params:qt,headers:Bi,context:xi,reportProgress:Ui,responseType:bi,withCredentials:Oi})}}var h=function(Dt){return Dt[Dt.Sent=0]="Sent",Dt[Dt.UploadProgress=1]="UploadProgress",Dt[Dt.ResponseHeader=2]="ResponseHeader",Dt[Dt.DownloadProgress=3]="DownloadProgress",Dt[Dt.Response=4]="Response",Dt[Dt.User=5]="User",Dt}(h||{});class C{constructor(kt,Gt=200,oi="OK"){this.headers=kt.headers||new z,this.status=void 0!==kt.status?kt.status:Gt,this.statusText=kt.statusText||oi,this.url=kt.url||null,this.ok=this.status>=200&&this.status<300}}class D extends C{constructor(kt={}){super(kt),this.type=h.ResponseHeader}clone(kt={}){return new D({headers:kt.headers||this.headers,status:void 0!==kt.status?kt.status:this.status,statusText:kt.statusText||this.statusText,url:kt.url||this.url||void 0})}}class O extends C{constructor(kt={}){super(kt),this.type=h.Response,this.body=void 0!==kt.body?kt.body:null}clone(kt={}){return new O({body:void 0!==kt.body?kt.body:this.body,headers:kt.headers||this.headers,status:void 0!==kt.status?kt.status:this.status,statusText:kt.statusText||this.statusText,url:kt.url||this.url||void 0})}}class v extends C{constructor(kt){super(kt,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${kt.url||"(unknown url)"}`:`Http failure response for ${kt.url||"(unknown url)"}: ${kt.status} ${kt.statusText}`,this.error=kt.error||null}}function r(Dt,kt){return{body:kt,headers:Dt.headers,context:Dt.context,observe:Dt.observe,params:Dt.params,reportProgress:Dt.reportProgress,responseType:Dt.responseType,withCredentials:Dt.withCredentials,transferCache:Dt.transferCache}}let g=(()=>{class Dt{constructor(Gt){this.handler=Gt}request(Gt,oi,bi={}){let yi;if(Gt instanceof f)yi=Gt;else{let Bi,qt;Bi=bi.headers instanceof z?bi.headers:new z(bi.headers),bi.params&&(qt=bi.params instanceof ue?bi.params:new ue({fromObject:bi.params})),yi=new f(Gt,oi,void 0!==bi.body?bi.body:null,{headers:Bi,context:bi.context,params:qt,reportProgress:bi.reportProgress,responseType:bi.responseType||"json",withCredentials:bi.withCredentials,transferCache:bi.transferCache})}const Oi=(0,y.of)(yi).pipe((0,w.b)(Bi=>this.handler.handle(Bi)));if(Gt instanceof f||"events"===bi.observe)return Oi;const Ui=Oi.pipe((0,m.h)(Bi=>Bi instanceof O));switch(bi.observe||"body"){case"body":switch(yi.responseType){case"arraybuffer":return Ui.pipe((0,P.U)(Bi=>{if(null!==Bi.body&&!(Bi.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Bi.body}));case"blob":return Ui.pipe((0,P.U)(Bi=>{if(null!==Bi.body&&!(Bi.body instanceof Blob))throw new Error("Response is not a Blob.");return Bi.body}));case"text":return Ui.pipe((0,P.U)(Bi=>{if(null!==Bi.body&&"string"!=typeof Bi.body)throw new Error("Response is not a string.");return Bi.body}));default:return Ui.pipe((0,P.U)(Bi=>Bi.body))}case"response":return Ui;default:throw new Error(`Unreachable: unhandled observe type ${bi.observe}}`)}}delete(Gt,oi={}){return this.request("DELETE",Gt,oi)}get(Gt,oi={}){return this.request("GET",Gt,oi)}head(Gt,oi={}){return this.request("HEAD",Gt,oi)}jsonp(Gt,oi){return this.request("JSONP",Gt,{params:(new ue).append(oi,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(Gt,oi={}){return this.request("OPTIONS",Gt,oi)}patch(Gt,oi,bi={}){return this.request("PATCH",Gt,r(bi,oi))}post(Gt,oi,bi={}){return this.request("POST",Gt,r(bi,oi))}put(Gt,oi,bi={}){return this.request("PUT",Gt,r(bi,oi))}static#e=this.\u0275fac=function(oi){return new(oi||Dt)(t.LFG(I))};static#t=this.\u0275prov=t.Yz7({token:Dt,factory:Dt.\u0275fac})}return Dt})();function ye(Dt,kt){return kt(Dt)}function fe(Dt,kt){return(Gt,oi)=>kt.intercept(Gt,{handle:bi=>Dt(bi,oi)})}const xe=new t.OlP(""),le=new t.OlP(""),pe=new t.OlP(""),qe=new t.OlP("");function re(){let Dt=null;return(kt,Gt)=>{null===Dt&&(Dt=((0,t.f3M)(xe,{optional:!0})??[]).reduceRight(fe,ye));const oi=(0,t.f3M)(t.HDt),bi=oi.add();return Dt(kt,Gt).pipe((0,d.x)(()=>oi.remove(bi)))}}let Ze=(()=>{class Dt extends I{constructor(Gt,oi){super(),this.backend=Gt,this.injector=oi,this.chain=null,this.pendingTasks=(0,t.f3M)(t.HDt);const bi=(0,t.f3M)(qe,{optional:!0});this.backend=bi??Gt}handle(Gt){if(null===this.chain){const bi=Array.from(new Set([...this.injector.get(le),...this.injector.get(pe,[])]));this.chain=bi.reduceRight((yi,Oi)=>function de(Dt,kt,Gt){return(oi,bi)=>Gt.runInContext(()=>kt(oi,yi=>Dt(yi,bi)))}(yi,Oi,this.injector),ye)}const oi=this.pendingTasks.add();return this.chain(Gt,bi=>this.backend.handle(bi)).pipe((0,d.x)(()=>this.pendingTasks.remove(oi)))}static#e=this.\u0275fac=function(oi){return new(oi||Dt)(t.LFG(k),t.LFG(t.lqb))};static#t=this.\u0275prov=t.Yz7({token:Dt,factory:Dt.\u0275fac})}return Dt})();const St=/^\)\]\}',?\n/;let te=(()=>{class Dt{constructor(Gt){this.xhrFactory=Gt}handle(Gt){if("JSONP"===Gt.method)throw new t.vHH(-2800,!1);const oi=this.xhrFactory;return(oi.\u0275loadImpl?(0,l.D)(oi.\u0275loadImpl()):(0,y.of)(null)).pipe((0,E.w)(()=>new A.y(yi=>{const Oi=oi.build();if(Oi.open(Gt.method,Gt.urlWithParams),Gt.withCredentials&&(Oi.withCredentials=!0),Gt.headers.forEach((Yt,ri)=>Oi.setRequestHeader(Yt,ri.join(","))),Gt.headers.has("Accept")||Oi.setRequestHeader("Accept","application/json, text/plain, */*"),!Gt.headers.has("Content-Type")){const Yt=Gt.detectContentTypeHeader();null!==Yt&&Oi.setRequestHeader("Content-Type",Yt)}if(Gt.responseType){const Yt=Gt.responseType.toLowerCase();Oi.responseType="json"!==Yt?Yt:"text"}const Ui=Gt.serializeBody();let Bi=null;const qt=()=>{if(null!==Bi)return Bi;const Yt=Oi.statusText||"OK",ri=new z(Oi.getAllResponseHeaders()),fn=function dt(Dt){return"responseURL"in Dt&&Dt.responseURL?Dt.responseURL:/^X-Request-URL:/m.test(Dt.getAllResponseHeaders())?Dt.getResponseHeader("X-Request-URL"):null}(Oi)||Gt.url;return Bi=new D({headers:ri,status:Oi.status,statusText:Yt,url:fn}),Bi},xi=()=>{let{headers:Yt,status:ri,statusText:fn,url:Sn}=qt(),an=null;204!==ri&&(an=typeof Oi.response>"u"?Oi.responseText:Oi.response),0===ri&&(ri=an?200:0);let sr=ri>=200&&ri<300;if("json"===Gt.responseType&&"string"==typeof an){const Jr=an;an=an.replace(St,"");try{an=""!==an?JSON.parse(an):null}catch(Ar){an=Jr,sr&&(sr=!1,an={error:Ar,text:an})}}sr?(yi.next(new O({body:an,headers:Yt,status:ri,statusText:fn,url:Sn||void 0})),yi.complete()):yi.error(new v({error:an,headers:Yt,status:ri,statusText:fn,url:Sn||void 0}))},Se=Yt=>{const{url:ri}=qt(),fn=new v({error:Yt,status:Oi.status||0,statusText:Oi.statusText||"Unknown Error",url:ri||void 0});yi.error(fn)};let Ve=!1;const et=Yt=>{Ve||(yi.next(qt()),Ve=!0);let ri={type:h.DownloadProgress,loaded:Yt.loaded};Yt.lengthComputable&&(ri.total=Yt.total),"text"===Gt.responseType&&Oi.responseText&&(ri.partialText=Oi.responseText),yi.next(ri)},tt=Yt=>{let ri={type:h.UploadProgress,loaded:Yt.loaded};Yt.lengthComputable&&(ri.total=Yt.total),yi.next(ri)};return Oi.addEventListener("load",xi),Oi.addEventListener("error",Se),Oi.addEventListener("timeout",Se),Oi.addEventListener("abort",Se),Gt.reportProgress&&(Oi.addEventListener("progress",et),null!==Ui&&Oi.upload&&Oi.upload.addEventListener("progress",tt)),Oi.send(Ui),yi.next({type:h.Sent}),()=>{Oi.removeEventListener("error",Se),Oi.removeEventListener("abort",Se),Oi.removeEventListener("load",xi),Oi.removeEventListener("timeout",Se),Gt.reportProgress&&(Oi.removeEventListener("progress",et),null!==Ui&&Oi.upload&&Oi.upload.removeEventListener("progress",tt)),Oi.readyState!==Oi.DONE&&Oi.abort()}})))}static#e=this.\u0275fac=function(oi){return new(oi||Dt)(t.LFG(M.JF))};static#t=this.\u0275prov=t.Yz7({token:Dt,factory:Dt.\u0275fac})}return Dt})();const Ue=new t.OlP("XSRF_ENABLED"),Ye=new t.OlP("XSRF_COOKIE_NAME",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),Ft=new t.OlP("XSRF_HEADER_NAME",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class xt{}let Ot=(()=>{class Dt{constructor(Gt,oi,bi){this.doc=Gt,this.platform=oi,this.cookieName=bi,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const Gt=this.doc.cookie||"";return Gt!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,M.Mx)(Gt,this.cookieName),this.lastCookieString=Gt),this.lastToken}static#e=this.\u0275fac=function(oi){return new(oi||Dt)(t.LFG(M.K0),t.LFG(t.Lbi),t.LFG(Ye))};static#t=this.\u0275prov=t.Yz7({token:Dt,factory:Dt.\u0275fac})}return Dt})();function yt(Dt,kt){const Gt=Dt.url.toLowerCase();if(!(0,t.f3M)(Ue)||"GET"===Dt.method||"HEAD"===Dt.method||Gt.startsWith("http://")||Gt.startsWith("https://"))return kt(Dt);const oi=(0,t.f3M)(xt).getToken(),bi=(0,t.f3M)(Ft);return null!=oi&&!Dt.headers.has(bi)&&(Dt=Dt.clone({headers:Dt.headers.set(bi,oi)})),kt(Dt)}var Ee=function(Dt){return Dt[Dt.Interceptors=0]="Interceptors",Dt[Dt.LegacyInterceptors=1]="LegacyInterceptors",Dt[Dt.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",Dt[Dt.NoXsrfProtection=3]="NoXsrfProtection",Dt[Dt.JsonpSupport=4]="JsonpSupport",Dt[Dt.RequestsMadeViaParent=5]="RequestsMadeViaParent",Dt[Dt.Fetch=6]="Fetch",Dt}(Ee||{});function Ge(...Dt){const kt=[g,te,Ze,{provide:I,useExisting:Ze},{provide:k,useExisting:te},{provide:le,useValue:yt,multi:!0},{provide:Ue,useValue:!0},{provide:xt,useClass:Ot}];for(const Gt of Dt)kt.push(...Gt.\u0275providers);return(0,t.MR2)(kt)}const gt=new t.OlP("LEGACY_INTERCEPTOR_FN");function Le(){return function nt(Dt,kt){return{\u0275kind:Dt,\u0275providers:kt}}(Ee.LegacyInterceptors,[{provide:gt,useFactory:re},{provide:le,useExisting:gt,multi:!0}])}let Wt=(()=>{class Dt{static#e=this.\u0275fac=function(oi){return new(oi||Dt)};static#t=this.\u0275mod=t.oAB({type:Dt});static#i=this.\u0275inj=t.cJS({providers:[Ge(Le())]})}return Dt})()},9212:(Fe,q,p)=>{"use strict";function e(i,a){return Object.is(i,a)}p.d(q,{QbO:()=>qh,tb:()=>bg,AFp:()=>a0,ip1:()=>ug,hGG:()=>K7,z2F:()=>Ch,Ojb:()=>Za,sBO:()=>Q0,Sil:()=>Ey,_Vd:()=>G0,EJc:()=>xy,ktI:()=>ba,Xts:()=>ec,SBq:()=>n2,lqb:()=>us,qLn:()=>a1,vpe:()=>Hs,tBr:()=>Sd,XFs:()=>xi,OlP:()=>an,zs3:()=>fs,ZZ4:()=>m3,aQg:()=>Tu,soG:()=>Q4,YKP:()=>O_,h0i:()=>C2,R0b:()=>mo,FiY:()=>E1,Lbi:()=>o0,g9A:()=>Qh,n_E:()=>vf,Qsj:()=>Nm,FYo:()=>d3,JOm:()=>ts,q3G:()=>q1,tp0:()=>T1,Rgc:()=>w2,dDg:()=>Qy,eoX:()=>R7,GfV:()=>Fm,s_b:()=>c4,ifc:()=>kr,T8G:()=>U3,gHi:()=>P1,dUe:()=>X0,VuI:()=>pv,Flj:()=>zm,MMx:()=>Y6,Lck:()=>F4,eFA:()=>N7,Gpc:()=>$e,f3M:()=>Kn,X6Q:()=>cx,$WT:()=>nr,MR2:()=>L1,Cb_:()=>gv,_c5:()=>mx,qFp:()=>Nx,r_H:()=>Zh,tdS:()=>Eu,rg0:()=>Xg,c2e:()=>M7,zSh:()=>Ps,HDt:()=>T7,wAp:()=>mh,vHH:()=>te,lri:()=>P7,rWj:()=>gg,JZr:()=>dt,EiD:()=>bm,mCW:()=>Qd,qzn:()=>Qa,JVY:()=>ua,pB0:()=>kc,eBb:()=>pu,L6k:()=>P0,LAX:()=>no,cg1:()=>w4,kuF:()=>Ue,kL8:()=>k5,dqk:()=>ri,Z0I:()=>Gt,eJc:()=>ic,QGY:()=>A6,F4k:()=>D6,RDi:()=>Kh,AaK:()=>It,z3N:()=>io,qOj:()=>Y3,Xq5:()=>zp,TTD:()=>en,_Bn:()=>G6,jDz:()=>R_,xp6:()=>ap,uIk:()=>Ju,Tol:()=>ra,Gre:()=>br,ekj:()=>zr,um2:()=>e5,Suo:()=>n7,Xpm:()=>Gr,lG2:()=>Ai,Yz7:()=>Mt,cJS:()=>Dt,oAB:()=>Ao,Yjl:()=>wt,Y36:()=>$1,_UZ:()=>g6,GkF:()=>_6,BQk:()=>x4,ynx:()=>hf,qZA:()=>y4,TgZ:()=>df,EpF:()=>L5,n5z:()=>Ih,Ikx:()=>v6,LFG:()=>fr,$8M:()=>Ol,$Z:()=>x3,NdJ:()=>L6,CRH:()=>r7,kcU:()=>_1,O4$:()=>D2,oxw:()=>a_,ALo:()=>Q_,lcZ:()=>$6,xi3:()=>q_,Dn7:()=>X_,Hsn:()=>s_,F$t:()=>o_,Q6J:()=>Yn,s9C:()=>k6,MGl:()=>P4,hYB:()=>R4,DdM:()=>G_,VKq:()=>Z_,WLB:()=>B4,kEZ:()=>W_,iGM:()=>t7,MAs:()=>u_,wJu:()=>a5,SjG:()=>n5,x6l:()=>t5,KtG:()=>vc,Jf7:()=>c0,CHM:()=>Ml,oJD:()=>ym,P3R:()=>i3,Udp:()=>Cn,WFA:()=>I4,d8E:()=>C4,YNc:()=>oh,W1O:()=>o7,_uU:()=>M_,Oqu:()=>_h,hij:()=>N4,AsE:()=>H6,lnq:()=>F6,HOy:()=>z6,Gf:()=>i7});let t=null,y=!1,A=1;const l=Symbol("SIGNAL");function w(i){const a=t;return t=i,a}const E={version:0,lastCleanEpoch:0,dirty:!1,producerNode:void 0,producerLastReadVersion:void 0,producerIndexOfThis:void 0,nextProducerIndex:0,liveConsumerNode:void 0,liveConsumerIndexOfThis:void 0,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function M(i){if(y)throw new Error("");if(null===t)return;t.consumerOnSignalRead(i);const a=t.nextProducerIndex++;Me(t),ai.nextProducerIndex;)i.producerNode.pop(),i.producerLastReadVersion.pop(),i.producerIndexOfThis.pop()}}function X(i){Me(i);for(let a=0;a0}function Me(i){i.producerNode??=[],i.producerIndexOfThis??=[],i.producerLastReadVersion??=[]}function J(i){i.liveConsumerNode??=[],i.liveConsumerIndexOfThis??=[]}const S=Symbol("UNSET"),n=Symbol("COMPUTING"),s=Symbol("ERRORED"),f=(()=>({...E,value:S,dirty:!0,error:null,equal:e,producerMustRecompute:i=>i.value===S||i.value===n,producerRecomputeValue(i){if(i.value===n)throw new Error("Detected cycle in computations.");const a=i.value;i.value=n;const c=j(i);let _;try{_=i.computation()}catch(T){_=s,i.error=T}finally{K(i,c)}a!==S&&a!==s&&_!==s&&i.equal(a,_)?i.value=a:(i.value=_,i.version++)}}))();let C=function h(){throw new Error};function D(){C()}let v=null;function R(i,a){B()||D();const c=i.value;Object.is(c,a)||i.equal(c,a)||(i.value=a,function Ke(i){i.version++,function I(){A++}(),z(i),v?.()}(i))}const ct=(()=>({...E,equal:e,value:void 0}))();var xe=p(8645),le=p(7394),pe=p(5592),qe=p(3019),re=p(5619),ve=p(2096),ce=p(3020),Ze=p(4664),We=p(3997);function Ct(i){for(let a in i)if(i[a]===Ct)return a;throw Error("Could not find renamed property on target object.")}function ut(i,a){for(const c in a)a.hasOwnProperty(c)&&!i.hasOwnProperty(c)&&(i[c]=a[c])}function It(i){if("string"==typeof i)return i;if(Array.isArray(i))return"["+i.map(It).join(", ")+"]";if(null==i)return""+i;if(i.overriddenName)return`${i.overriddenName}`;if(i.name)return`${i.name}`;const a=i.toString();if(null==a)return""+a;const c=a.indexOf("\n");return-1===c?a:a.substring(0,c)}function Ae(i,a){return null==i||""===i?null===a?"":a:null==a||""===a?i:i+" "+a}const rt=Ct({__forward_ref__:Ct});function $e(i){return i.__forward_ref__=$e,i.toString=function(){return It(this())},i}function Ie(i){return lt(i)?i():i}function lt(i){return"function"==typeof i&&i.hasOwnProperty(rt)&&i.__forward_ref__===$e}function Qe(i){return i&&!!i.\u0275providers}const dt="https://g.co/ng/security#xss";class te extends Error{constructor(a,c){super(Ue(a,c)),this.code=a}}function Ue(i,a){return`NG0${Math.abs(i)}${a?": "+a:""}`}const Bt=Ct({\u0275cmp:Ct}),Ye=Ct({\u0275dir:Ct}),je=Ct({\u0275pipe:Ct}),Ft=Ct({\u0275mod:Ct}),xt=Ct({\u0275fac:Ct}),Ot=Ct({__NG_ELEMENT_ID__:Ct}),yt=Ct({__NG_ENV_ID__:Ct});function at(i){return"string"==typeof i?i:null==i?"":String(i)}function be(i,a){throw new te(-201,!1)}function Ki(i,a){null==i&&function Mi(i,a,c,_){throw new Error(`ASSERTION ERROR: ${i}`+(null==_?"":` [Expected=> ${c} ${_} ${a} <=Actual]`))}(a,i,null,"!=")}function Mt(i){return{token:i.token,providedIn:i.providedIn||null,factory:i.factory,value:void 0}}function Dt(i){return{providers:i.providers||[],imports:i.imports||[]}}function kt(i){return oi(i,Oi)||oi(i,Bi)}function Gt(i){return null!==kt(i)}function oi(i,a){return i.hasOwnProperty(a)?i[a]:null}function yi(i){return i&&(i.hasOwnProperty(Ui)||i.hasOwnProperty(qt))?i[Ui]:null}const Oi=Ct({\u0275prov:Ct}),Ui=Ct({\u0275inj:Ct}),Bi=Ct({ngInjectableDef:Ct}),qt=Ct({ngInjectorDef:Ct});var xi=function(i){return i[i.Default=0]="Default",i[i.Host=1]="Host",i[i.Self=2]="Self",i[i.SkipSelf=4]="SkipSelf",i[i.Optional=8]="Optional",i}(xi||{});let Se;function Ve(){return Se}function et(i){const a=Se;return Se=i,a}function tt(i,a,c){const _=kt(i);return _&&"root"==_.providedIn?void 0===_.value?_.value=_.factory():_.value:c&xi.Optional?null:void 0!==a?a:void be(It(i))}const ri=globalThis;class an{constructor(a,c){this._desc=a,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof c?this.__NG_ELEMENT_ID__=c:void 0!==c&&(this.\u0275prov=Mt({token:this,providedIn:c.providedIn||"root",factory:c.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}const Ji={},yn="__NG_DI_FLAG__",jn="ngTempTokenPath",Er=/\n/gm,yr="__source";let aa;function oa(i){const a=aa;return aa=i,a}function Fa(i,a=xi.Default){if(void 0===aa)throw new te(-203,!1);return null===aa?tt(i,void 0,a):aa.get(i,a&xi.Optional?null:void 0,a)}function fr(i,a=xi.Default){return(Ve()||Fa)(Ie(i),a)}function Kn(i,a=xi.Default){return fr(i,pa(a))}function pa(i){return typeof i>"u"||"number"==typeof i?i:0|(i.optional&&8)|(i.host&&1)|(i.self&&2)|(i.skipSelf&&4)}function za(i){const a=[];for(let c=0;ca){Q=F-1;break}}}for(;FF?"":T[Ut+1].toLowerCase();const mi=8&_?ai:null;if(mi&&-1!==wa(mi,ot,0)||2&_&&ot!==ai){if(Kr(_))return!1;Q=!0}}}}else{if(!Q&&!Kr(_)&&!Kr(we))return!1;if(Q&&Kr(we))continue;Q=!1,_=we|1&_}}return Kr(_)||Q}function Kr(i){return 0==(1&i)}function ca(i,a,c,_){if(null===a)return-1;let T=0;if(_||!c){let F=!1;for(;T-1)for(c++;c0?'="'+oe+'"':"")+"]"}else 8&_?T+="."+Q:4&_&&(T+=" "+Q);else""!==T&&!Kr(Q)&&(a+=so(F,T),T=""),_=Q,F=F||!Kr(_);c++}return""!==T&&(a+=so(F,T)),a}function Gr(i){return jr(()=>{const a=Zr(i),c={...a,decls:i.decls,vars:i.vars,template:i.template,consts:i.consts||null,ngContentSelectors:i.ngContentSelectors,onPush:i.changeDetection===Ca.OnPush,directiveDefs:null,pipeDefs:null,dependencies:a.standalone&&i.dependencies||null,getStandaloneInjector:null,signals:i.signals??!1,data:i.data||{},encapsulation:i.encapsulation||kr.Emulated,styles:i.styles||Bn,_:null,schemas:i.schemas||null,tView:null,id:""};sn(c);const _=i.dependencies;return c.directiveDefs=Ba(_,!1),c.pipeDefs=Ba(_,!0),c.id=function bt(i){let a=0;const c=[i.selectors,i.ngContentSelectors,i.hostVars,i.hostAttrs,i.consts,i.vars,i.decls,i.encapsulation,i.standalone,i.signals,i.exportAs,JSON.stringify(i.inputs),JSON.stringify(i.outputs),Object.getOwnPropertyNames(i.type.prototype),!!i.contentQueries,!!i.viewQuery].join("|");for(const T of c)a=Math.imul(31,a)+T.charCodeAt(0)<<0;return a+=2147483648,"c"+a}(c),c})}function zo(i){return ii(i)||Ti(i)}function bo(i){return null!==i}function Ao(i){return jr(()=>({type:i.type,bootstrap:i.bootstrap||Bn,declarations:i.declarations||Bn,imports:i.imports||Bn,exports:i.exports||Bn,transitiveCompileScopes:null,schemas:i.schemas||null,id:i.id||null}))}function Vt(i,a){if(null==i)return dr;const c={};for(const _ in i)if(i.hasOwnProperty(_)){let T=i[_],F=T;Array.isArray(T)&&(F=T[1],T=T[0]),c[T]=_,a&&(a[T]=F)}return c}function Ai(i){return jr(()=>{const a=Zr(i);return sn(a),a})}function wt(i){return{type:i.type,name:i.name,factory:null,pure:!1!==i.pure,standalone:!0===i.standalone,onDestroy:i.type.prototype.ngOnDestroy||null}}function ii(i){return i[Bt]||null}function Ti(i){return i[Ye]||null}function Zi(i){return i[je]||null}function nr(i){const a=ii(i)||Ti(i)||Zi(i);return null!==a&&a.standalone}function ar(i,a){const c=i[Ft]||null;if(!c&&!0===a)throw new Error(`Type ${It(i)} does not have '\u0275mod' property.`);return c}function Zr(i){const a={};return{type:i.type,providersResolver:null,factory:null,hostBindings:i.hostBindings||null,hostVars:i.hostVars||0,hostAttrs:i.hostAttrs||null,contentQueries:i.contentQueries||null,declaredInputs:a,inputTransforms:null,inputConfig:i.inputs||dr,exportAs:i.exportAs||null,standalone:!0===i.standalone,signals:!0===i.signals,selectors:i.selectors||Bn,viewQuery:i.viewQuery||null,features:i.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:Vt(i.inputs,a),outputs:Vt(i.outputs),debugInfo:null}}function sn(i){i.features?.forEach(a=>a(i))}function Ba(i,a){if(!i)return null;const c=a?Zi:zo;return()=>("function"==typeof i?i():i).map(_=>c(_)).filter(bo)}const ze=0,vt=1,Jt=2,zi=3,xn=4,Mr=5,Ma=6,yo=7,Hn=8,Vi=9,lo=10,An=11,Yi=12,Ms=13,xo=14,gr=15,Do=16,Ua=17,Sa=18,va=19,Ss=20,ho=21,Vo=22,Co=23,En=25,Xo=1,cr=7,os=9,qi=10;var Es=function(i){return i[i.None=0]="None",i[i.HasTransplantedViews=2]="HasTransplantedViews",i[i.HasChildViewsToRefresh=4]="HasChildViewsToRefresh",i}(Es||{});function la(i){return Array.isArray(i)&&"object"==typeof i[Xo]}function Ir(i){return Array.isArray(i)&&!0===i[Xo]}function Ts(i){return 0!=(4&i.flags)}function Bo(i){return i.componentOffset>-1}function Vs(i){return 1==(1&i.flags)}function uo(i){return!!i.template}function Xn(i){return 0!=(512&i[Jt])}function Ii(i,a){return i.hasOwnProperty(xt)?i[xt]:null}class Xi{constructor(a,c,_){this.previousValue=a,this.currentValue=c,this.firstChange=_}isFirstChange(){return this.firstChange}}function en(){return cn}function cn(i){return i.type.prototype.ngOnChanges&&(i.setInput=Ln),Un}function Un(){const i=Hr(this),a=i?.current;if(a){const c=i.previous;if(c===dr)i.previous=a;else for(let _ in a)c[_]=a[_];i.current=null,this.ngOnChanges(a)}}function Ln(i,a,c,_){const T=this.declaredInputs[c],F=Hr(i)||function da(i,a){return i[hr]=a}(i,{previous:dr,current:null}),Q=F.current||(F.current={}),oe=F.previous,we=oe[T];Q[T]=new Xi(we&&we.currentValue,a,oe===dr),i[_]=a}en.ngInherit=!0;const hr="__ngSimpleChanges__";function Hr(i){return i[hr]||null}const Or=function(i,a,c){},Lo="svg";function Fn(i){for(;Array.isArray(i);)i=i[ze];return i}function vs(i,a){return Fn(a[i])}function Sr(i,a){return Fn(a[i.index])}function _c(i,a){return i.data[a]}function Ds(i,a){return i[a]}function Uo(i,a){const c=a[i];return la(c)?c:c[ze]}function bl(i){return 128==(128&i[Jt])}function $o(i,a){return null==a?null:i[a]}function yl(i){i[Ua]=0}function Ls(i){1024&i[Jt]||(i[Jt]|=1024,bl(i)&&xl(i))}function m1(i){9216&i[Jt]&&xl(i)}function xl(i){let a=i[zi];for(;null!==a&&!(Ir(a)&&a[Jt]&Es.HasChildViewsToRefresh||la(a)&&8192&a[Jt]);){if(Ir(a))a[Jt]|=Es.HasChildViewsToRefresh;else if(a[Jt]|=8192,!bl(a))break;a=a[zi]}}function Bc(i,a){if(256==(256&i[Jt]))throw new te(911,!1);null===i[ho]&&(i[ho]=[]),i[ho].push(a)}const In={lFrame:ko(null),bindingsEnabled:!0,skipHydrationRootTNode:null};function g1(){return In.bindingsEnabled}function Qs(){return null!==In.skipHydrationRootTNode}function Hi(){return In.lFrame.lView}function rr(){return In.lFrame.tView}function Ml(i){return In.lFrame.contextLView=i,i[Hn]}function vc(i){return In.lFrame.contextLView=null,i}function mr(){let i=ss();for(;null!==i&&64===i.type;)i=i.parent;return i}function ss(){return In.lFrame.currentTNode}function Fr(i,a){const c=In.lFrame;c.currentTNode=i,c.isParent=a}function Ra(){return In.lFrame.isParent}function bc(){In.lFrame.isParent=!1}function qn(){const i=In.lFrame;let a=i.bindingRootIndex;return-1===a&&(a=i.bindingRootIndex=i.tView.bindingStartIndex),a}function Wn(){return In.lFrame.bindingIndex}function na(){return In.lFrame.bindingIndex++}function me(i){const a=In.lFrame,c=a.bindingIndex;return a.bindingIndex=a.bindingIndex+i,c}function Ne(i,a){const c=In.lFrame;c.bindingIndex=c.bindingRootIndex=i,Rt(a)}function Rt(i){In.lFrame.currentDirectiveIndex=i}function ni(i){const a=In.lFrame.currentDirectiveIndex;return-1===a?null:i[a]}function Li(){return In.lFrame.currentQueryIndex}function Di(i){In.lFrame.currentQueryIndex=i}function ln(i){const a=i[vt];return 2===a.type?a.declTNode:1===a.type?i[Mr]:null}function Qn(i,a,c){if(c&xi.SkipSelf){let T=a,F=i;for(;!(T=T.parent,null!==T||c&xi.Host||(T=ln(F),null===T||(F=F[xo],10&T.type))););if(null===T)return!1;a=T,i=F}const _=In.lFrame=Pr();return _.currentTNode=a,_.lView=i,!0}function Jn(i){const a=Pr(),c=i[vt];In.lFrame=a,a.currentTNode=c.firstChild,a.lView=i,a.tView=c,a.contextLView=i,a.bindingIndex=c.bindingStartIndex,a.inI18n=!1}function Pr(){const i=In.lFrame,a=null===i?null:i.child;return null===a?ko(i):a}function ko(i){const a={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:i,child:null,inI18n:!1};return null!==i&&(i.child=a),a}function Us(){const i=In.lFrame;return In.lFrame=i.parent,i.currentTNode=null,i.lView=null,i}const wo=Us;function Gs(){const i=Us();i.isParent=!0,i.tView=null,i.selectedIndex=-1,i.contextLView=null,i.elementDepthCount=0,i.currentDirectiveIndex=-1,i.currentNamespace=null,i.bindingRootIndex=-1,i.bindingIndex=-1,i.currentQueryIndex=0}function fo(){return In.lFrame.selectedIndex}function yc(i){In.lFrame.selectedIndex=i}function Rr(){const i=In.lFrame;return _c(i.tView,i.selectedIndex)}function D2(){In.lFrame.currentNamespace=Lo}function _1(){!function Zs(){In.lFrame.currentNamespace=null}()}let ks=!0;function ls(){return ks}function Is(i){ks=i}function Gc(i,a){for(let c=a.directiveStart,_=a.directiveEnd;c<_;c++){const F=i.data[c].type.prototype,{ngAfterContentInit:Q,ngAfterContentChecked:oe,ngAfterViewInit:we,ngAfterViewChecked:ot,ngOnDestroy:Et}=F;Q&&(i.contentHooks??=[]).push(-c,Q),oe&&((i.contentHooks??=[]).push(c,oe),(i.contentCheckHooks??=[]).push(c,oe)),we&&(i.viewHooks??=[]).push(-c,we),ot&&((i.viewHooks??=[]).push(c,ot),(i.viewCheckHooks??=[]).push(c,ot)),null!=Et&&(i.destroyHooks??=[]).push(c,Et)}}function Zc(i,a,c){Al(i,a,3,c)}function Wc(i,a,c,_){(3&i[Jt])===c&&Al(i,a,c,_)}function Aa(i,a){let c=i[Jt];(3&c)===a&&(c&=16383,c+=1,i[Jt]=c)}function Al(i,a,c,_){const F=_??-1,Q=a.length-1;let oe=0;for(let we=void 0!==_?65535&i[Ua]:0;we=_)break}else a[we]<0&&(i[Ua]+=65536),(oe>14>16&&(3&i[Jt])===a&&(i[Jt]+=16384,L2(oe,F)):L2(oe,F)}const jc=-1;class xc{constructor(a,c,_){this.factory=a,this.resolving=!1,this.canSeeViewProviders=c,this.injectImpl=_}}function Dl(i){return i!==jc}function b1(i){return 32767&i}function Ll(i,a){let c=function kf(i){return i>>16}(i),_=a;for(;c>0;)_=_[xo],c--;return _}let y1=!0;function x1(i){const a=y1;return y1=i,a}const kl=255,C1=5;let Qc=0;const Io={};function qc(i,a){const c=Th(i,a);if(-1!==c)return c;const _=a[vt];_.firstCreatePass&&(i.injectorIndex=a.length,bd(_.data,i),bd(a,null),bd(_.blueprint,null));const T=w1(i,a),F=i.injectorIndex;if(Dl(T)){const Q=b1(T),oe=Ll(T,a),we=oe[vt].data;for(let ot=0;ot<8;ot++)a[F+ot]=oe[Q+ot]|we[Q+ot]}return a[F+8]=T,F}function bd(i,a){i.push(0,0,0,0,0,0,0,0,a)}function Th(i,a){return-1===i.injectorIndex||i.parent&&i.parent.injectorIndex===i.injectorIndex||null===a[i.injectorIndex+8]?-1:i.injectorIndex}function w1(i,a){if(i.parent&&-1!==i.parent.injectorIndex)return i.parent.injectorIndex;let c=0,_=null,T=a;for(;null!==T;){if(_=Oh(T),null===_)return jc;if(c++,T=T[xo],-1!==_.injectorIndex)return _.injectorIndex|c<<16}return jc}function k2(i,a,c){!function ur(i,a,c){let _;"string"==typeof c?_=c.charCodeAt(0)||0:c.hasOwnProperty(Ot)&&(_=c[Ot]),null==_&&(_=c[Ot]=Qc++);const T=_&kl;a.data[i+(T>>C1)]|=1<=0?a&kl:kh:a}(c);if("function"==typeof F){if(!Qn(a,i,_))return _&xi.Host?I2(T,0,_):Ah(a,c,_,T);try{let Q;if(Q=F(_),null!=Q||_&xi.Optional)return Q;be()}finally{wo()}}else if("number"==typeof F){let Q=null,oe=Th(i,a),we=jc,ot=_&xi.Host?a[gr][Mr]:null;for((-1===oe||_&xi.SkipSelf)&&(we=-1===oe?w1(i,a):a[oe+8],we!==jc&&yd(_,!1)?(Q=a[vt],oe=b1(we),a=Ll(we,a)):oe=-1);-1!==oe;){const Et=a[vt];if(P2(F,oe,Et.data)){const Ut=O2(oe,a,c,Q,_,ot);if(Ut!==Io)return Ut}we=a[oe+8],we!==jc&&yd(_,a[vt].data[oe+8]===ot)&&P2(F,oe,a)?(Q=Et,oe=b1(we),a=Ll(we,a)):oe=-1}}return T}function O2(i,a,c,_,T,F){const Q=a[vt],oe=Q.data[i+8],Et=M1(oe,Q,c,null==_?Bo(oe)&&y1:_!=Q&&0!=(3&oe.type),T&xi.Host&&F===oe);return null!==Et?Js(a,Q,Et,oe):Io}function M1(i,a,c,_,T){const F=i.providerIndexes,Q=a.data,oe=1048575&F,we=i.directiveStart,Et=F>>20,ai=T?oe+Et:i.directiveEnd;for(let mi=_?oe:oe+Et;mi=we&&Ri.type===c)return mi}if(T){const mi=Q[we];if(mi&&uo(mi)&&mi.type===c)return we}return null}function Js(i,a,c,_){let T=i[c];const F=a.data;if(function Af(i){return i instanceof xc}(T)){const Q=T;Q.resolving&&function Xe(i,a){const c=a?`. Dependency path: ${a.join(" > ")} > ${i}`:"";throw new te(-200,`Circular dependency in DI detected for ${i}${c}`)}(function Ee(i){return"function"==typeof i?i.name||i.toString():"object"==typeof i&&null!=i&&"function"==typeof i.type?i.type.name||i.type.toString():at(i)}(F[c]));const oe=x1(Q.canSeeViewProviders);Q.resolving=!0;const ot=Q.injectImpl?et(Q.injectImpl):null;Qn(i,_,xi.Default);try{T=i[c]=Q.factory(void 0,F,i,_),a.firstCreatePass&&c>=_.directiveStart&&function Tl(i,a,c){const{ngOnChanges:_,ngOnInit:T,ngDoCheck:F}=a.type.prototype;if(_){const Q=cn(a);(c.preOrderHooks??=[]).push(i,Q),(c.preOrderCheckHooks??=[]).push(i,Q)}T&&(c.preOrderHooks??=[]).push(0-i,T),F&&((c.preOrderHooks??=[]).push(i,F),(c.preOrderCheckHooks??=[]).push(i,F))}(c,F[c],a)}finally{null!==ot&&et(ot),x1(oe),Q.resolving=!1,wo()}}return T}function P2(i,a,c){return!!(c[a+(i>>C1)]&1<{const a=i.prototype.constructor,c=a[xt]||R2(a),_=Object.prototype;let T=Object.getPrototypeOf(i.prototype).constructor;for(;T&&T!==_;){const F=T[xt]||R2(T);if(F&&F!==c)return F;T=Object.getPrototypeOf(T)}return F=>new F})}function R2(i){return lt(i)?()=>{const a=R2(Ie(i));return a&&a()}:Ii(i)}function Oh(i){const a=i[vt],c=a.type;return 2===c?a.declTNode:1===c?i[Mr]:null}function Ol(i){return function If(i,a){if("class"===a)return i.classes;if("style"===a)return i.styles;const c=i.attrs;if(c){const _=c.length;let T=0;for(;T<_;){const F=c[T];if(Tr(F))break;if(0===F)T+=2;else if("number"==typeof F)for(T++;T<_&&"string"==typeof c[T];)T++;else{if(F===a)return c[T+1];T+=2}}}return null}(mr(),i)}const Cc="__parameters__";function Ws(i,a,c){return jr(()=>{const _=function xd(i){return function(...c){if(i){const _=i(...c);for(const T in _)this[T]=_[T]}}}(a);function T(...F){if(this instanceof T)return _.apply(this,F),this;const Q=new T(...F);return oe.annotation=Q,oe;function oe(we,ot,Et){const Ut=we.hasOwnProperty(Cc)?we[Cc]:Object.defineProperty(we,Cc,{value:[]})[Cc];for(;Ut.length<=Et;)Ut.push(null);return(Ut[Et]=Ut[Et]||[]).push(Q),we}}return c&&(T.prototype=Object.create(c.prototype)),T.prototype.ngMetadataName=i,T.annotationCls=T,T})}function ds(i,a){i.forEach(c=>Array.isArray(c)?ds(c,a):a(c))}function Md(i,a,c){a>=i.length?i.push(c):i.splice(a,0,c)}function $s(i,a){return a>=i.length-1?i.pop():i.splice(a,1)[0]}function Hl(i,a){const c=[];for(let _=0;_=0?i[1|_]=c:(_=~_,function Mc(i,a,c,_){let T=i.length;if(T==a)i.push(c,_);else if(1===T)i.push(_,i[0]),i[0]=c;else{for(T--,i.push(i[T-1],i[T]);T>a;)i[T]=i[T-2],T--;i[a]=c,i[a+1]=_}}(i,_,a,c)),_}function F2(i,a){const c=Vl(i,a);if(c>=0)return i[1|c]}function Vl(i,a){return function Ph(i,a,c){let _=0,T=i.length>>c;for(;T!==_;){const F=_+(T-_>>1),Q=i[F<a?T=F:_=F+1}return~(T<({token:i})),-1),E1=ga(Ws("Optional"),8),T1=ga(Ws("SkipSelf"),4),ec=new an("ENVIRONMENT_INITIALIZER"),D1=new an("INJECTOR",-1),Ac=new an("INJECTOR_DEF_TYPES");class Zl{get(a,c=Ji){if(c===Ji){const _=new Error(`NullInjectorError: No provider for ${It(a)}!`);throw _.name="NullInjectorError",_}return c}}function L1(i){return{\u0275providers:i}}function Ga(...i){return{\u0275providers:Z2(0,i),\u0275fromNgModule:!0}}function Z2(i,...a){const c=[],_=new Set;let T;const F=Q=>{c.push(Q)};return ds(a,Q=>{const oe=Q;pr(oe,F,[],_)&&(T||=[],T.push(oe))}),void 0!==T&&Ad(T,F),c}function Ad(i,a){for(let c=0;c{a(F,_)})}}function pr(i,a,c,_){if(!(i=Ie(i)))return!1;let T=null,F=yi(i);const Q=!F&&ii(i);if(F||Q){if(Q&&!Q.standalone)return!1;T=i}else{const we=i.ngModule;if(F=yi(we),!F)return!1;T=we}const oe=_.has(T);if(Q){if(oe)return!1;if(_.add(T),Q.dependencies){const we="function"==typeof Q.dependencies?Q.dependencies():Q.dependencies;for(const ot of we)pr(ot,a,c,_)}}else{if(!F)return!1;{if(null!=F.imports&&!oe){let ot;_.add(T);try{ds(F.imports,Et=>{pr(Et,a,c,_)&&(ot||=[],ot.push(Et))})}finally{}void 0!==ot&&Ad(ot,a)}if(!oe){const ot=Ii(T)||(()=>new T);a({provide:T,useFactory:ot,deps:Bn},T),a({provide:Ac,useValue:T,multi:!0},T),a({provide:ec,useValue:()=>fr(T),multi:!0},T)}const we=F.providers;if(null!=we&&!oe){const ot=i;tc(we,Et=>{a(Et,ot)})}}}return T!==i&&void 0!==i.providers}function tc(i,a){for(let c of i)Qe(c)&&(c=c.\u0275providers),Array.isArray(c)?tc(c,a):a(c)}const Wl=Ct({provide:String,useValue:Ct});function Dd(i){return null!==i&&"object"==typeof i&&Wl in i}function Dc(i){return"function"==typeof i}const Ps=new an("Set Injector scope."),Yl={},zh={};let k1;function I1(){return void 0===k1&&(k1=new Zl),k1}class us{}class el extends us{get destroyed(){return this._destroyed}constructor(a,c,_,T){super(),this.parent=c,this.source=_,this.scopes=T,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,O1(a,Q=>this.processProvider(Q)),this.records.set(D1,tl(void 0,this)),T.has("environment")&&this.records.set(us,tl(void 0,this));const F=this.records.get(Ps);null!=F&&"string"==typeof F.value&&this.scopes.add(F.value),this.injectorDefTypes=new Set(this.get(Ac,Bn,xi.Self))}destroy(){this.assertNotDestroyed(),this._destroyed=!0;try{for(const c of this._ngOnDestroyHooks)c.ngOnDestroy();const a=this._onDestroyHooks;this._onDestroyHooks=[];for(const c of a)c()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear()}}onDestroy(a){return this.assertNotDestroyed(),this._onDestroyHooks.push(a),()=>this.removeOnDestroy(a)}runInContext(a){this.assertNotDestroyed();const c=oa(this),_=et(void 0);try{return a()}finally{oa(c),et(_)}}get(a,c=Ji,_=xi.Default){if(this.assertNotDestroyed(),a.hasOwnProperty(yt))return a[yt](this);_=pa(_);const F=oa(this),Q=et(void 0);try{if(!(_&xi.SkipSelf)){let we=this.records.get(a);if(void 0===we){const ot=function Gh(i){return"function"==typeof i||"object"==typeof i&&i instanceof an}(a)&&kt(a);we=ot&&this.injectableDefInScope(ot)?tl(jl(a),Yl):null,this.records.set(a,we)}if(null!=we)return this.hydrate(a,we)}return(_&xi.Self?I1():this.parent).get(a,c=_&xi.Optional&&c===Ji?null:c)}catch(oe){if("NullInjectorError"===oe.name){if((oe[jn]=oe[jn]||[]).unshift(It(a)),F)throw oe;return function sa(i,a,c,_){const T=i[jn];throw a[yr]&&T.unshift(a[yr]),i.message=function So(i,a,c,_=null){i=i&&"\n"===i.charAt(0)&&"\u0275"==i.charAt(1)?i.slice(2):i;let T=It(a);if(Array.isArray(a))T=a.map(It).join(" -> ");else if("object"==typeof a){let F=[];for(let Q in a)if(a.hasOwnProperty(Q)){let oe=a[Q];F.push(Q+":"+("string"==typeof oe?JSON.stringify(oe):It(oe)))}T=`{${F.join(", ")}}`}return`${c}${_?"("+_+")":""}[${T}]: ${i.replace(Er,"\n ")}`}("\n"+i.message,T,c,_),i.ngTokenPath=T,i[jn]=null,i}(oe,a,"R3InjectorError",this.source)}throw oe}finally{et(Q),oa(F)}}resolveInjectorInitializers(){const a=oa(this),c=et(void 0);try{const T=this.get(ec,Bn,xi.Self);for(const F of T)F()}finally{oa(a),et(c)}}toString(){const a=[],c=this.records;for(const _ of c.keys())a.push(It(_));return`R3Injector[${a.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new te(205,!1)}processProvider(a){let c=Dc(a=Ie(a))?a:Ie(a&&a.provide);const _=function Bh(i){return Dd(i)?tl(void 0,i.useValue):tl(j2(i),Yl)}(a);if(Dc(a)||!0!==a.multi)this.records.get(c);else{let T=this.records.get(c);T||(T=tl(void 0,Yl,!0),T.factory=()=>za(T.multi),this.records.set(c,T)),c=a,T.multi.push(a)}this.records.set(c,_)}hydrate(a,c){return c.value===Yl&&(c.value=zh,c.value=c.factory()),"object"==typeof c.value&&c.value&&function K2(i){return null!==i&&"object"==typeof i&&"function"==typeof i.ngOnDestroy}(c.value)&&this._ngOnDestroyHooks.add(c.value),c.value}injectableDefInScope(a){if(!a.providedIn)return!1;const c=Ie(a.providedIn);return"string"==typeof c?"any"===c||this.scopes.has(c):this.injectorDefTypes.has(c)}removeOnDestroy(a){const c=this._onDestroyHooks.indexOf(a);-1!==c&&this._onDestroyHooks.splice(c,1)}}function jl(i){const a=kt(i),c=null!==a?a.factory:Ii(i);if(null!==c)return c;if(i instanceof an)throw new te(204,!1);if(i instanceof Function)return function Vh(i){const a=i.length;if(a>0)throw Hl(a,"?"),new te(204,!1);const c=function bi(i){return i&&(i[Oi]||i[Bi])||null}(i);return null!==c?()=>c.factory(i):()=>new i}(i);throw new te(204,!1)}function j2(i,a,c){let _;if(Dc(i)){const T=Ie(i);return Ii(T)||jl(T)}if(Dd(i))_=()=>Ie(i.useValue);else if(function W2(i){return!(!i||!i.useFactory)}(i))_=()=>i.useFactory(...za(i.deps||[]));else if(function Ld(i){return!(!i||!i.useExisting)}(i))_=()=>fr(Ie(i.useExisting));else{const T=Ie(i&&(i.useClass||i.provide));if(!function Uh(i){return!!i.deps}(i))return Ii(T)||jl(T);_=()=>new T(...za(i.deps))}return _}function tl(i,a,c=!1){return{factory:i,value:a,multi:c?[]:void 0}}function O1(i,a){for(const c of i)Array.isArray(c)?O1(c,a):c&&Qe(c)?O1(c.\u0275providers,a):a(c)}function Zh(i,a){i instanceof el&&i.assertNotDestroyed();const _=oa(i),T=et(void 0);try{return a()}finally{oa(_),et(T)}}function P1(i){if(!Ve()&&!function ma(){return aa}())throw new te(-203,!1)}function t0(i,a=null,c=null,_){const T=kd(i,a,c,_);return T.resolveInjectorInitializers(),T}function kd(i,a=null,c=null,_,T=new Set){const F=[c||Bn,Ga(i)];return _=_||("object"==typeof i?void 0:It(i)),new el(F,a||I1(),_||null,T)}let Od,fs=(()=>{class i{static#e=this.THROW_IF_NOT_FOUND=Ji;static#t=this.NULL=new Zl;static create(c,_){if(Array.isArray(c))return t0({name:""},_,c,"");{const T=c.name??"";return t0({name:T},c.parent,c.providers,T)}}static#i=this.\u0275prov=Mt({token:i,providedIn:"any",factory:()=>fr(D1)});static#n=this.__NG_ELEMENT_ID__=-1}return i})();function ic(i){return!!ar(i)}function Kh(i){Od=i}function Ys(){if(void 0!==Od)return Od;if(typeof document<"u")return document;throw new te(210,!1)}const a0=new an("AppId",{providedIn:"root",factory:()=>Wf}),Wf="ng",Qh=new an("Platform Initializer"),o0=new an("Platform ID",{providedIn:"platform",factory:()=>"unknown"}),qh=new an("AnimationModuleType"),Za=new an("CSP nonce",{providedIn:"root",factory:()=>Ys().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null});function c0(i){return i.ownerDocument.defaultView}function Yo(i){return i instanceof Function?i():i}function Xl(i){return 128==(128&i.flags)}var ts=function(i){return i[i.Important=1]="Important",i[i.DashCase=2]="DashCase",i}(ts||{});const zd=/^>|^->||--!>|)/g,rc="\u200b$1\u200b";const ac=new Map;let V1=0;const U1="__ngContext__";function eo(i,a){la(a)?(i[U1]=a[va],function su(i){ac.set(i[va],i)}(a)):i[U1]=a}let W1;function C0(i,a){return W1(i,a)}function cl(i){const a=i[zi];return Ir(a)?a[zi]:a}function Y1(i){return sc(i[Yi])}function j1(i){return sc(i[xn])}function sc(i){for(;null!==i&&!Ir(i);)i=i[xn];return i}function Lc(i,a,c,_,T){if(null!=_){let F,Q=!1;Ir(_)?F=_:la(_)&&(Q=!0,_=_[ze]);const oe=Fn(_);0===i&&null!==c?null==T?D0(a,c,oe):cc(a,c,oe,T||null,!0):1===i&&null!==c?cc(a,c,oe,T||null,!0):2===i?function fi(i,a,c){const _=dl(i,a);_&&function k0(i,a,c,_){i.removeChild(a,c,_)}(i,_,a,c)}(a,oe,Q):3===i&&a.destroyNode(oe),null!=F&&function pn(i,a,c,_,T){const F=c[cr];F!==Fn(c)&&Lc(a,i,_,F,T);for(let oe=qi;oea.replace(_0,rc))}(a))}function Zd(i,a,c){return i.createElement(a,c)}function Wd(i,a){const c=i[os],_=c.indexOf(a);c.splice(_,1)}function ll(i,a){if(i.length<=qi)return;const c=qi+a,_=i[c];if(_){const T=_[Do];null!==T&&T!==i&&Wd(T,_),a>0&&(i[c-1][xn]=_[xn]);const F=$s(i,qi+a);!function S0(i,a){Qi(i,a,a[An],2,null,null),a[ze]=null,a[Mr]=null}(_[vt],_);const Q=F[Sa];null!==Q&&Q.detachView(F[vt]),_[zi]=null,_[xn]=null,_[Jt]&=-129}return _}function n1(i,a){if(!(256&a[Jt])){const c=a[An];a[Co]&&function ie(i){if(Me(i),ae(i))for(let a=0;a=0?_[Q]():_[-Q].unsubscribe(),F+=2}else c[F].call(_[c[F+1]]);null!==_&&(a[yo]=null);const T=a[ho];if(null!==T){a[ho]=null;for(let F=0;F-1){const{encapsulation:F}=i.data[_.directiveStart+T];if(F===kr.None||F===kr.Emulated)return null}return Sr(_,c)}}(i,a.parent,c)}function cc(i,a,c,_,T){i.insertBefore(a,c,_,T)}function D0(i,a,c){i.appendChild(a,c)}function L0(i,a,c,_,T){null!==_?cc(i,a,c,_,T):D0(i,a,c)}function dl(i,a){return i.parentNode(a)}function O0(i,a,c){return V(i,a,c)}let b,to,ms,V=function N(i,a,c){return 40&i.type?Sr(i,c):null};function Z(i,a,c,_){const T=jd(i,_,a),F=a[An],oe=O0(_.parent||a[Mr],_,a);if(null!=T)if(Array.isArray(c))for(let we=0;wei,createScript:i=>i,createScriptURL:i=>i})}catch{}return to}()?.createHTML(i)||i}function hl(){if(void 0===ms&&(ms=null,ri.trustedTypes))try{ms=ri.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return ms}function ul(i){return hl()?.createHTML(i)||i}function Q1(i){return hl()?.createScriptURL(i)||i}class hc{constructor(a){this.changingThisBreaksApplicationSecurity=a}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${dt})`}}class vn extends hc{getTypeName(){return"HTML"}}class Tn extends hc{getTypeName(){return"Style"}}class Nn extends hc{getTypeName(){return"Script"}}class _r extends hc{getTypeName(){return"URL"}}class Ka extends hc{getTypeName(){return"ResourceURL"}}function io(i){return i instanceof hc?i.changingThisBreaksApplicationSecurity:i}function Qa(i,a){const c=function uc(i){return i instanceof hc&&i.getTypeName()||null}(i);if(null!=c&&c!==a){if("ResourceURL"===c&&"URL"===a)return!0;throw new Error(`Required a safe ${a}, got a ${c} (see ${dt})`)}return c===a}function ua(i){return new vn(i)}function P0(i){return new Tn(i)}function pu(i){return new Nn(i)}function no(i){return new _r(i)}function kc(i){return new Ka(i)}class fl{constructor(a){this.inertDocumentHelper=a}getInertBodyElement(a){a=""+a;try{const c=(new window.DOMParser).parseFromString(jo(a),"text/html").body;return null===c?this.inertDocumentHelper.getInertBodyElement(a):(c.removeChild(c.firstChild),c)}catch{return null}}}class Kd{constructor(a){this.defaultDoc=a,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(a){const c=this.inertDocument.createElement("template");return c.innerHTML=jo(a),c}}const mm=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function Qd(i){return(i=String(i)).match(mm)?i:"unsafe:"+i}function Ic(i){const a={};for(const c of i.split(","))a[c]=!0;return a}function qd(...i){const a={};for(const c of i)for(const _ in c)c.hasOwnProperty(_)&&(a[_]=!0);return a}const pm=Ic("area,br,col,hr,img,wbr"),R0=Ic("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),gm=Ic("rp,rt"),N0=qd(pm,qd(R0,Ic("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),qd(gm,Ic("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),qd(gm,R0)),qf=Ic("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),_m=qd(qf,Ic("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),Ic("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),Xf=Ic("script,style,template");class Vg{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(a){let c=a.firstChild,_=!0;for(;c;)if(c.nodeType===Node.ELEMENT_NODE?_=this.startElement(c):c.nodeType===Node.TEXT_NODE?this.chars(c.nodeValue):this.sanitizedSomething=!0,_&&c.firstChild)c=c.firstChild;else for(;c;){c.nodeType===Node.ELEMENT_NODE&&this.endElement(c);let T=this.checkClobberedElement(c,c.nextSibling);if(T){c=T;break}c=this.checkClobberedElement(c,c.parentNode)}return this.buf.join("")}startElement(a){const c=a.nodeName.toLowerCase();if(!N0.hasOwnProperty(c))return this.sanitizedSomething=!0,!Xf.hasOwnProperty(c);this.buf.push("<"),this.buf.push(c);const _=a.attributes;for(let T=0;T<_.length;T++){const F=_.item(T),Q=F.name,oe=Q.toLowerCase();if(!_m.hasOwnProperty(oe)){this.sanitizedSomething=!0;continue}let we=F.value;qf[oe]&&(we=Qd(we)),this.buf.push(" ",Q,'="',vm(we),'"')}return this.buf.push(">"),!0}endElement(a){const c=a.nodeName.toLowerCase();N0.hasOwnProperty(c)&&!pm.hasOwnProperty(c)&&(this.buf.push(""))}chars(a){this.buf.push(vm(a))}checkClobberedElement(a,c){if(c&&(a.compareDocumentPosition(c)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error(`Failed to sanitize html because the element is clobbered: ${a.outerHTML}`);return c}}const Bg=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Jf=/([^\#-~ |!])/g;function vm(i){return i.replace(/&/g,"&").replace(Bg,function(a){return"&#"+(1024*(a.charCodeAt(0)-55296)+(a.charCodeAt(1)-56320)+65536)+";"}).replace(Jf,function(a){return"&#"+a.charCodeAt(0)+";"}).replace(//g,">")}let Jd;function bm(i,a){let c=null;try{Jd=Jd||function is(i){const a=new Kd(i);return function fm(){try{return!!(new window.DOMParser).parseFromString(jo(""),"text/html")}catch{return!1}}()?new fl(a):a}(i);let _=a?String(a):"";c=Jd.getInertBodyElement(_);let T=5,F=_;do{if(0===T)throw new Error("Failed to sanitize html because the input is unstable");T--,_=F,F=c.innerHTML,c=Jd.getInertBodyElement(_)}while(_!==F);return jo((new Vg).sanitizeChildren($d(c)||c))}finally{if(c){const _=$d(c)||c;for(;_.firstChild;)_.removeChild(_.firstChild)}}}function $d(i){return"content"in i&&function Ug(i){return i.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===i.nodeName}(i)?i.content:null}var q1=function(i){return i[i.NONE=0]="NONE",i[i.HTML=1]="HTML",i[i.STYLE=2]="STYLE",i[i.SCRIPT=3]="SCRIPT",i[i.URL=4]="URL",i[i.RESOURCE_URL=5]="RESOURCE_URL",i}(q1||{});function ym(i){const a=H0();return a?ul(a.sanitize(q1.HTML,i)||""):Qa(i,"HTML")?ul(io(i)):bm(Ys(),at(i))}function xm(i){const a=H0();return a?a.sanitize(q1.URL,i)||"":Qa(i,"URL")?io(i):Qd(at(i))}function e3(i){const a=H0();if(a)return Q1(a.sanitize(q1.RESOURCE_URL,i)||"");if(Qa(i,"ResourceURL"))return Q1(io(i));throw new te(904,!1)}function i3(i,a,c){return function Mm(i,a){return"src"===a&&("embed"===i||"frame"===i||"iframe"===i||"media"===i||"script"===i)||"href"===a&&("base"===i||"link"===i)?e3:xm}(a,c)(i)}function H0(){const i=Hi();return i&&i[lo].sanitizer}let Tm=(i,a,c)=>null;function Cu(i,a,c=!1){return Tm(i,a,c)}class Pm{}class s3{}class l3{resolveComponentFactory(a){throw function Wg(i){const a=Error(`No component factory found for ${It(i)}.`);return a.ngComponent=i,a}(a)}}let G0=(()=>{class i{static#e=this.NULL=new l3}return i})();function Rm(){return t2(mr(),Hi())}function t2(i,a){return new n2(Sr(i,a))}let n2=(()=>{class i{constructor(c){this.nativeElement=c}static#e=this.__NG_ELEMENT_ID__=Rm}return i})();function Yg(i){return i instanceof n2?i.nativeElement:i}class d3{}let Nm=(()=>{class i{constructor(){this.destroyNode=null}static#e=this.__NG_ELEMENT_ID__=()=>function jg(){const i=Hi(),c=Uo(mr().index,i);return(la(c)?c:i)[An]}()}return i})(),Hm=(()=>{class i{static#e=this.\u0275prov=Mt({token:i,providedIn:"root",factory:()=>null})}return i})();class Fm{constructor(a){this.full=a,this.major=a.split(".")[0],this.minor=a.split(".")[1],this.patch=a.split(".").slice(2).join(".")}}const Kg=new Fm("17.0.4"),h3={};function zm(i,a){const c=function he(i){const a=Object.create(f);a.computation=i;const c=()=>{if(k(a),M(a),a.value===s)throw a.error;return a.value};return c[l]=a,c}(i);return a?.equal&&(c[l].equal=a.equal),c}function Eu(i,a){const c=function r(i){const a=Object.create(ct);a.value=i;const c=()=>(M(a),a.value);return c[l]=a,c}(i),_=c[l];return a?.equal&&(_.equal=a.equal),c.set=T=>R(_,T),c.update=T=>function ee(i,a){B()||D(),R(i,a(i.value))}(_,T),c.asReadonly=qg.bind(c),c}function qg(){const i=this[l];if(void 0===i.readonlyFn){const a=()=>this();a[l]=i,i.readonlyFn=a}return i.readonlyFn}function Xg(i){const a=w(null);try{return i()}finally{w(a)}}function r2(i){return!!u3(i)&&(Array.isArray(i)||!(i instanceof Map)&&Symbol.iterator in i)}function u3(i){return null!==i&&("function"==typeof i||"object"==typeof i)}class Bm{constructor(){}supports(a){return r2(a)}create(a){return new $g(a)}}const Um=(i,a)=>a;class $g{constructor(a){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=a||Um}forEachItem(a){let c;for(c=this._itHead;null!==c;c=c._next)a(c)}forEachOperation(a){let c=this._itHead,_=this._removalsHead,T=0,F=null;for(;c||_;){const Q=!_||c&&c.currentIndex{Q=this._trackByFn(T,oe),null!==c&&Object.is(c.trackById,Q)?(_&&(c=this._verifyReinsertion(c,oe,Q,T)),Object.is(c.item,oe)||this._addIdentityChange(c,oe)):(c=this._mismatch(c,oe,Q,T),_=!0),c=c._next,T++}),this.length=T;return this._truncate(c),this.collection=a,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let a;for(a=this._previousItHead=this._itHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._additionsHead;null!==a;a=a._nextAdded)a.previousIndex=a.currentIndex;for(this._additionsHead=this._additionsTail=null,a=this._movesHead;null!==a;a=a._nextMoved)a.previousIndex=a.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(a,c,_,T){let F;return null===a?F=this._itTail:(F=a._prev,this._remove(a)),null!==(a=null===this._unlinkedRecords?null:this._unlinkedRecords.get(_,null))?(Object.is(a.item,c)||this._addIdentityChange(a,c),this._reinsertAfter(a,F,T)):null!==(a=null===this._linkedRecords?null:this._linkedRecords.get(_,T))?(Object.is(a.item,c)||this._addIdentityChange(a,c),this._moveAfter(a,F,T)):a=this._addAfter(new Gm(c,_),F,T),a}_verifyReinsertion(a,c,_,T){let F=null===this._unlinkedRecords?null:this._unlinkedRecords.get(_,null);return null!==F?a=this._reinsertAfter(F,a._prev,T):a.currentIndex!=T&&(a.currentIndex=T,this._addToMoves(a,T)),a}_truncate(a){for(;null!==a;){const c=a._next;this._addToRemovals(this._unlink(a)),a=c}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(a,c,_){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(a);const T=a._prevRemoved,F=a._nextRemoved;return null===T?this._removalsHead=F:T._nextRemoved=F,null===F?this._removalsTail=T:F._prevRemoved=T,this._insertAfter(a,c,_),this._addToMoves(a,_),a}_moveAfter(a,c,_){return this._unlink(a),this._insertAfter(a,c,_),this._addToMoves(a,_),a}_addAfter(a,c,_){return this._insertAfter(a,c,_),this._additionsTail=null===this._additionsTail?this._additionsHead=a:this._additionsTail._nextAdded=a,a}_insertAfter(a,c,_){const T=null===c?this._itHead:c._next;return a._next=T,a._prev=c,null===T?this._itTail=a:T._prev=a,null===c?this._itHead=a:c._next=a,null===this._linkedRecords&&(this._linkedRecords=new Wm),this._linkedRecords.put(a),a.currentIndex=_,a}_remove(a){return this._addToRemovals(this._unlink(a))}_unlink(a){null!==this._linkedRecords&&this._linkedRecords.remove(a);const c=a._prev,_=a._next;return null===c?this._itHead=_:c._next=_,null===_?this._itTail=c:_._prev=c,a}_addToMoves(a,c){return a.previousIndex===c||(this._movesTail=null===this._movesTail?this._movesHead=a:this._movesTail._nextMoved=a),a}_addToRemovals(a){return null===this._unlinkedRecords&&(this._unlinkedRecords=new Wm),this._unlinkedRecords.put(a),a.currentIndex=null,a._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=a,a._prevRemoved=null):(a._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=a),a}_addIdentityChange(a,c){return a.item=c,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=a:this._identityChangesTail._nextIdentityChange=a,a}}class Gm{constructor(a,c){this.item=a,this.trackById=c,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 Zm{constructor(){this._head=null,this._tail=null}add(a){null===this._head?(this._head=this._tail=a,a._nextDup=null,a._prevDup=null):(this._tail._nextDup=a,a._prevDup=this._tail,a._nextDup=null,this._tail=a)}get(a,c){let _;for(_=this._head;null!==_;_=_._nextDup)if((null===c||c<=_.currentIndex)&&Object.is(_.trackById,a))return _;return null}remove(a){const c=a._prevDup,_=a._nextDup;return null===c?this._head=_:c._nextDup=_,null===_?this._tail=c:_._prevDup=c,null===this._head}}class Wm{constructor(){this.map=new Map}put(a){const c=a.trackById;let _=this.map.get(c);_||(_=new Zm,this.map.set(c,_)),_.add(a)}get(a,c){const T=this.map.get(a);return T?T.get(a,c):null}remove(a){const c=a.trackById;return this.map.get(c).remove(a)&&this.map.delete(c),a}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function f3(i,a,c){const _=i.previousIndex;if(null===_)return _;let T=0;return c&&_{if(c&&c.key===T)this._maybeAddToChanges(c,_),this._appendAfter=c,c=c._next;else{const F=this._getOrCreateRecordForKey(T,_);c=this._insertBeforeOrAppend(c,F)}}),c){c._prev&&(c._prev._next=null),this._removalsHead=c;for(let _=c;null!==_;_=_._nextRemoved)_===this._mapHead&&(this._mapHead=null),this._records.delete(_.key),_._nextRemoved=_._next,_.previousValue=_.currentValue,_.currentValue=null,_._prev=null,_._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(a,c){if(a){const _=a._prev;return c._next=a,c._prev=_,a._prev=c,_&&(_._next=c),a===this._mapHead&&(this._mapHead=c),this._appendAfter=a,a}return this._appendAfter?(this._appendAfter._next=c,c._prev=this._appendAfter):this._mapHead=c,this._appendAfter=c,null}_getOrCreateRecordForKey(a,c){if(this._records.has(a)){const T=this._records.get(a);this._maybeAddToChanges(T,c);const F=T._prev,Q=T._next;return F&&(F._next=Q),Q&&(Q._prev=F),T._next=null,T._prev=null,T}const _=new t8(a);return this._records.set(a,_),_.currentValue=c,this._addToAdditions(_),_}_reset(){if(this.isDirty){let a;for(this._previousMapHead=this._mapHead,a=this._previousMapHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._changesHead;null!==a;a=a._nextChanged)a.previousValue=a.currentValue;for(a=this._additionsHead;null!=a;a=a._nextAdded)a.previousValue=a.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(a,c){Object.is(c,a.currentValue)||(a.previousValue=a.currentValue,a.currentValue=c,this._addToChanges(a))}_addToAdditions(a){null===this._additionsHead?this._additionsHead=this._additionsTail=a:(this._additionsTail._nextAdded=a,this._additionsTail=a)}_addToChanges(a){null===this._changesHead?this._changesHead=this._changesTail=a:(this._changesTail._nextChanged=a,this._changesTail=a)}_forEach(a,c){a instanceof Map?a.forEach(c):Object.keys(a).forEach(_=>c(a[_],_))}}class t8{constructor(a){this.key=a,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 jm(){return new m3([new Bm])}let m3=(()=>{class i{static#e=this.\u0275prov=Mt({token:i,providedIn:"root",factory:jm});constructor(c){this.factories=c}static create(c,_){if(null!=_){const T=_.factories.slice();c=c.concat(T)}return new i(c)}static extend(c){return{provide:i,useFactory:_=>i.create(c,_||jm()),deps:[[i,new T1,new E1]]}}find(c){const _=this.factories.find(T=>T.supports(c));if(null!=_)return _;throw new te(901,!1)}}return i})();function Km(){return new Tu([new Ym])}let Tu=(()=>{class i{static#e=this.\u0275prov=Mt({token:i,providedIn:"root",factory:Km});constructor(c){this.factories=c}static create(c,_){if(_){const T=_.factories.slice();c=c.concat(T)}return new i(c)}static extend(c){return{provide:i,useFactory:_=>i.create(c,_||Km()),deps:[[i,new T1,new E1]]}}find(c){const _=this.factories.find(T=>T.supports(c));if(_)return _;throw new te(901,!1)}}return i})();function a2(i,a,c,_,T=!1){for(;null!==c;){const F=a[c.index];null!==F&&_.push(Fn(F)),Ir(F)&&qm(F,_);const Q=c.type;if(8&Q)a2(i,a,c.child,_);else if(32&Q){const oe=C0(c,a);let we;for(;we=oe();)_.push(we)}else if(16&Q){const oe=Pt(a,c);if(Array.isArray(oe))_.push(...oe);else{const we=cl(a[gr]);a2(we[vt],we,oe,_,!0)}}c=T?c.projectionNext:c.next}return _}function qm(i,a){for(let c=qi;c{xl(i.lView)},consumerOnSignalRead(){this.lView[Co]=this}};function g3(i){return i.ngOriginalError}class a1{constructor(){this._console=console}handleError(a){const c=this._findOriginalError(a);this._console.error("ERROR",a),c&&this._console.error("ORIGINAL ERROR",c)}_findOriginalError(a){let c=a&&g3(a);for(;c&&g3(c);)c=g3(c);return c||null}}const ep=new an("",{providedIn:"root",factory:()=>!1}),tr={};function ap(i){op(rr(),Hi(),fo()+i,!1)}function op(i,a,c,_){if(!_)if(3==(3&a[Jt])){const F=i.preOrderCheckHooks;null!==F&&Zc(a,F,c)}else{const F=i.preOrderHooks;null!==F&&Wc(a,F,0,c)}yc(c)}function $1(i,a=xi.Default){const c=Hi();return null===c?fr(i,a):Dh(mr(),c,Ie(i),a)}function x3(){throw new Error("invalid")}function Z0(i,a,c,_,T,F,Q,oe,we,ot,Et){const Ut=a.blueprint.slice();return Ut[ze]=T,Ut[Jt]=140|_,(null!==ot||i&&2048&i[Jt])&&(Ut[Jt]|=2048),yl(Ut),Ut[zi]=Ut[xo]=i,Ut[Hn]=c,Ut[lo]=Q||i&&i[lo],Ut[An]=oe||i&&i[An],Ut[Vi]=we||i&&i[Vi]||null,Ut[Mr]=F,Ut[va]=function ou(){return V1++}(),Ut[Ma]=Et,Ut[Ss]=ot,Ut[gr]=2==a.type?i[gr]:Ut,Ut}function ml(i,a,c,_,T){let F=i.data[a];if(null===F)F=function Lu(i,a,c,_,T){const F=ss(),Q=Ra(),we=i.data[a]=function c8(i,a,c,_,T,F){let Q=a?a.injectorIndex:-1,oe=0;return Qs()&&(oe|=128),{type:c,index:_,insertBeforeIndex:null,injectorIndex:Q,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,componentOffset:-1,propertyBindings:null,flags:oe,providerIndexes:0,value:T,attrs:F,mergedAttrs:null,localNames:null,initialInputs:void 0,inputs:null,outputs:null,tView:null,next:null,prev:null,projectionNext:null,child:null,parent:a,projection:null,styles:null,stylesWithoutHost:null,residualStyles:void 0,classes:null,classesWithoutHost:null,residualClasses:void 0,classBindings:0,styleBindings:0}}(0,Q?F:F&&F.parent,c,a,_,T);return null===i.firstChild&&(i.firstChild=we),null!==F&&(Q?null==F.child&&null!==we.parent&&(F.child=we):null===F.next&&(F.next=we,we.prev=F)),we}(i,a,c,_,T),function Oe(){return In.lFrame.inI18n}()&&(F.flags|=32);else if(64&F.type){F.type=c,F.value=_,F.attrs=T;const Q=function qs(){const i=In.lFrame,a=i.currentTNode;return i.isParent?a:a.parent}();F.injectorIndex=null===Q?-1:Q.injectorIndex}return Fr(F,!0),F}function W0(i,a,c,_){if(0===c)return-1;const T=a.length;for(let F=0;FEn&&op(i,a,En,!1),Or(Q?2:0,T),c(_,T)}finally{yc(F),Or(Q?3:1,T)}}function ku(i,a,c){if(Ts(a)){const _=w(null);try{const F=a.directiveEnd;for(let Q=a.directiveStart;Qnull;function up(i,a,c,_){for(let T in i)if(i.hasOwnProperty(T)){c=null===c?{}:c;const F=i[T];null===_?fp(c,a,T,F):_.hasOwnProperty(T)&&fp(c,a,_[T],F)}return c}function fp(i,a,c,_){i.hasOwnProperty(c)?i[c].push(a,_):i[c]=[a,_]}function ys(i,a,c,_,T,F,Q,oe){const we=Sr(a,c);let Et,ot=a.inputs;!oe&&null!=ot&&(Et=ot[_])?(c2(i,c,Et,_,T),Bo(a)&&function d8(i,a){const c=Uo(a,i);16&c[Jt]||(c[Jt]|=64)}(c,a.index)):3&a.type&&(_=function mp(i){return"class"===i?"className":"for"===i?"htmlFor":"formaction"===i?"formAction":"innerHtml"===i?"innerHTML":"readonly"===i?"readOnly":"tabindex"===i?"tabIndex":i}(_),T=null!=Q?Q(T,a.value||"",_):T,F.setProperty(we,_,T))}function A3(i,a,c,_){if(g1()){const T=null===_?null:{"":-1},F=function gp(i,a){const c=i.directiveRegistry;let _=null,T=null;if(c)for(let F=0;F0;){const c=i[--a];if("number"==typeof c&&c<0)return c}return 0})(Q)!=oe&&Q.push(oe),Q.push(c,_,F)}}(i,a,_,W0(i,c,T.hostVars,tr),T)}function Ha(i,a,c,_,T,F){const Q=Sr(i,a);!function Pu(i,a,c,_,T,F,Q){if(null==F)i.removeAttribute(a,T,c);else{const oe=null==Q?at(F):Q(F,_||"",T);i.setAttribute(a,T,oe,c)}}(a[An],Q,F,i.value,c,_,T)}function vp(i,a,c,_,T,F){const Q=F[a];if(null!==Q)for(let oe=0;oe-1&&(ll(a,_),$s(c,_))}this._attachedToViewContainer=!1}n1(this._lView[vt],this._lView)}onDestroy(a){Bc(this._lView,a)}markForCheck(){o1(this._cdRefInjectingView||this._lView)}detach(){this._lView[Jt]&=-129}reattach(){m1(this._lView),this._lView[Jt]|=128}detectChanges(){!function O3(i,a=!0){const c=i[lo],_=c.rendererFactory,T=c.afterRenderEventManager;_.begin?.(),T?.begin();try{const Q=i[vt];Fu(Q,i,Q.template,i[Hn]),function Hu(i){let a=0;for(;9216&i[Jt]||i[Co]?.dirty;){if(100===a)throw new te(103,!1);a++,Bu(i,1)}}(i)}catch(Q){throw a&&s2(i,Q),Q}finally{_.end?.(),c.inlineEffectRunner?.flush(),T?.end()}}(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new te(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null,function fu(i,a){Qi(i,a,a[An],2,null,null)}(this._lView[vt],this._lView)}attachToAppRef(a){if(this._attachedToViewContainer)throw new te(902,!1);this._appRef=a}}let Q0=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=l2}return i})();function l2(i){return function s1(i,a,c){if(Bo(i)&&!c){const _=Uo(i.index,a);return new td(_,_)}return 47&i.type?new td(a[gr],a):null}(mr(),Hi(),16==(16&i))}let ba=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=H3;static#t=this.__NG_ENV_ID__=c=>c}return i})();class d2 extends ba{constructor(a){super(),this._lView=a}onDestroy(a){return Bc(this._lView,a),()=>function Cl(i,a){if(null===i[ho])return;const c=i[ho].indexOf(a);-1!==c&&i[ho].splice(c,1)}(this._lView,a)}}function H3(){return new d2(Hi())}function X0(i,a){if(null!==function m(){return t}())throw new te(-602,!1)}const Zu=new Set;function c1(i){Zu.has(i)||(Zu.add(i),performance?.mark?.("mark_use_counter",{detail:{feature:i}}))}function h2(i){return a=>{setTimeout(i,void 0,a)}}const Hs=class Cp extends xe.x{constructor(a=!1){super(),this.__isAsync=a}emit(a){super.next(a)}subscribe(a,c,_){let T=a,F=c||(()=>null),Q=_;if(a&&"object"==typeof a){const we=a;T=we.next?.bind(we),F=we.error?.bind(we),Q=we.complete?.bind(we)}this.__isAsync&&(F=h2(F),T&&(T=h2(T)),Q&&(Q=h2(Q)));const oe=super.subscribe({next:T,error:F,complete:Q});return a instanceof le.w0&&a.add(oe),oe}};function Wu(...i){}class mo{constructor({enableLongStackTrace:a=!1,shouldCoalesceEventChangeDetection:c=!1,shouldCoalesceRunChangeDetection:_=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Hs(!1),this.onMicrotaskEmpty=new Hs(!1),this.onStable=new Hs(!1),this.onError=new Hs(!1),typeof Zone>"u")throw new te(908,!1);Zone.assertZonePatched();const T=this;T._nesting=0,T._outer=T._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(T._inner=T._inner.fork(new Zone.TaskTrackingZoneSpec)),a&&Zone.longStackTraceZoneSpec&&(T._inner=T._inner.fork(Zone.longStackTraceZoneSpec)),T.shouldCoalesceEventChangeDetection=!_&&c,T.shouldCoalesceRunChangeDetection=_,T.lastRequestAnimationFrameId=-1,T.nativeRequestAnimationFrame=function $0(){const i="function"==typeof ri.requestAnimationFrame;let a=ri[i?"requestAnimationFrame":"setTimeout"],c=ri[i?"cancelAnimationFrame":"clearTimeout"];if(typeof Zone<"u"&&a&&c){const _=a[Zone.__symbol__("OriginalDelegate")];_&&(a=_);const T=c[Zone.__symbol__("OriginalDelegate")];T&&(c=T)}return{nativeRequestAnimationFrame:a,nativeCancelAnimationFrame:c}}().nativeRequestAnimationFrame,function Yu(i){const a=()=>{!function xs(i){i.isCheckStableRunning||-1!==i.lastRequestAnimationFrameId||(i.lastRequestAnimationFrameId=i.nativeRequestAnimationFrame.call(ri,()=>{i.fakeTopEventTask||(i.fakeTopEventTask=Zone.root.scheduleEventTask("fakeTopEventTask",()=>{i.lastRequestAnimationFrameId=-1,eh(i),i.isCheckStableRunning=!0,V3(i),i.isCheckStableRunning=!1},void 0,()=>{},()=>{})),i.fakeTopEventTask.invoke()}),eh(i))}(i)};i._inner=i._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(c,_,T,F,Q,oe)=>{if(function g8(i){return!(!Array.isArray(i)||1!==i.length)&&!0===i[0].data?.__ignore_ng_zone__}(oe))return c.invokeTask(T,F,Q,oe);try{return ju(i),c.invokeTask(T,F,Q,oe)}finally{(i.shouldCoalesceEventChangeDetection&&"eventTask"===F.type||i.shouldCoalesceRunChangeDetection)&&a(),wp(i)}},onInvoke:(c,_,T,F,Q,oe,we)=>{try{return ju(i),c.invoke(T,F,Q,oe,we)}finally{i.shouldCoalesceRunChangeDetection&&a(),wp(i)}},onHasTask:(c,_,T,F)=>{c.hasTask(T,F),_===T&&("microTask"==F.change?(i._hasPendingMicrotasks=F.microTask,eh(i),V3(i)):"macroTask"==F.change&&(i.hasPendingMacrotasks=F.macroTask))},onHandleError:(c,_,T,F)=>(c.handleError(T,F),i.runOutsideAngular(()=>i.onError.emit(F)),!1)})}(T)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!mo.isInAngularZone())throw new te(909,!1)}static assertNotInAngularZone(){if(mo.isInAngularZone())throw new te(909,!1)}run(a,c,_){return this._inner.run(a,c,_)}runTask(a,c,_,T){const F=this._inner,Q=F.scheduleEventTask("NgZoneEvent: "+T,a,p8,Wu,Wu);try{return F.runTask(Q,c,_)}finally{F.cancelTask(Q)}}runGuarded(a,c,_){return this._inner.runGuarded(a,c,_)}runOutsideAngular(a){return this._outer.run(a)}}const p8={};function V3(i){if(0==i._nesting&&!i.hasPendingMicrotasks&&!i.isStable)try{i._nesting++,i.onMicrotaskEmpty.emit(null)}finally{if(i._nesting--,!i.hasPendingMicrotasks)try{i.runOutsideAngular(()=>i.onStable.emit(null))}finally{i.isStable=!0}}}function eh(i){i.hasPendingMicrotasks=!!(i._hasPendingMicrotasks||(i.shouldCoalesceEventChangeDetection||i.shouldCoalesceRunChangeDetection)&&-1!==i.lastRequestAnimationFrameId)}function ju(i){i._nesting++,i.isStable&&(i.isStable=!1,i.onUnstable.emit(null))}function wp(i){i._nesting--,V3(i)}class Mp{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Hs,this.onMicrotaskEmpty=new Hs,this.onStable=new Hs,this.onError=new Hs}run(a,c,_){return a.apply(c,_)}runGuarded(a,c,_){return a.apply(c,_)}runOutsideAngular(a){return a()}runTask(a,c,_,T){return a.apply(c,_)}}const Sp=new an("",{providedIn:"root",factory:Ep});function Ep(){const i=Kn(mo);let a=!0;const c=new pe.y(T=>{a=i.isStable&&!i.hasPendingMacrotasks&&!i.hasPendingMicrotasks,i.runOutsideAngular(()=>{T.next(a),T.complete()})}),_=new pe.y(T=>{let F;i.runOutsideAngular(()=>{F=i.onStable.subscribe(()=>{mo.assertNotInAngularZone(),queueMicrotask(()=>{!a&&!i.hasPendingMacrotasks&&!i.hasPendingMicrotasks&&(a=!0,T.next(!0))})})});const Q=i.onUnstable.subscribe(()=>{mo.assertInAngularZone(),a&&(a=!1,i.runOutsideAngular(()=>{T.next(!1)}))});return()=>{F.unsubscribe(),Q.unsubscribe()}});return(0,qe.T)(c,_.pipe((0,ce.B)()))}var l1=function(i){return i[i.EarlyRead=0]="EarlyRead",i[i.Write=1]="Write",i[i.MixedReadWrite=2]="MixedReadWrite",i[i.Read=3]="Read",i}(l1||{});const Tp={destroy(){}};function U3(i,a){!a&&P1();const c=a?.injector??Kn(fs);if(!function nc(i){return"browser"===(i??Kn(fs)).get(o0)}(c))return Tp;c1("NgAfterNextRender");const _=c.get(Fs),T=_.handler??=new Z3,F=a?.phase??l1.MixedReadWrite,Q=()=>{T.unregister(we),oe()},oe=c.get(ba).onDestroy(Q),we=new G3(c,F,()=>{Q(),i()});return T.register(we),{destroy:Q}}class G3{constructor(a,c,_){this.phase=c,this.callbackFn=_,this.zone=a.get(mo),this.errorHandler=a.get(a1,null,{optional:!0})}invoke(){try{this.zone.runOutsideAngular(this.callbackFn)}catch(a){this.errorHandler?.handleError(a)}}}class Z3{constructor(){this.executingCallbacks=!1,this.buckets={[l1.EarlyRead]:new Set,[l1.Write]:new Set,[l1.MixedReadWrite]:new Set,[l1.Read]:new Set},this.deferredCallbacks=new Set}validateBegin(){if(this.executingCallbacks)throw new te(102,!1)}register(a){(this.executingCallbacks?this.deferredCallbacks:this.buckets[a.phase]).add(a)}unregister(a){this.buckets[a.phase].delete(a),this.deferredCallbacks.delete(a)}execute(){this.executingCallbacks=!0;for(const a of Object.values(this.buckets))for(const c of a)c.invoke();this.executingCallbacks=!1;for(const a of this.deferredCallbacks)this.buckets[a.phase].add(a);this.deferredCallbacks.clear()}destroy(){for(const a of Object.values(this.buckets))a.clear();this.deferredCallbacks.clear()}}let Fs=(()=>{class i{constructor(){this.renderDepth=0,this.handler=null,this.internalCallbacks=[]}begin(){this.handler?.validateBegin(),this.renderDepth++}end(){if(this.renderDepth--,0===this.renderDepth){for(const c of this.internalCallbacks)c();this.internalCallbacks.length=0,this.handler?.execute()}}ngOnDestroy(){this.handler?.destroy(),this.handler=null,this.internalCallbacks.length=0}static#e=this.\u0275prov=Mt({token:i,providedIn:"root",factory:()=>new i})}return i})();function id(i,a){const c=Uo(a,i),_=c[vt];!function Ap(i,a){for(let c=a.length;c0&&ha(i,c,F.join(" "))}}(Ut,go,mi,_),void 0!==c&&function C8(i,a,c){const _=i.projection=[];for(let T=0;T=0;_--){const T=i[_];T.hostVars=a+=T.hostVars,T.hostAttrs=ea(T.hostAttrs,c=ea(c,T.hostAttrs))}}(_)}function qu(i){return i===dr?{}:i===Bn?[]:i}function Np(i,a){const c=i.viewQuery;i.viewQuery=c?(_,T)=>{a(_,T),c(_,T)}:a}function M8(i,a){const c=i.contentQueries;i.contentQueries=c?(_,T,F)=>{a(_,T,F),c(_,T,F)}:a}function j3(i,a){const c=i.hostBindings;i.hostBindings=c?(_,T)=>{a(_,T),c(_,T)}:a}function zp(i){const a=i.inputConfig,c={};for(const _ in a)if(a.hasOwnProperty(_)){const T=a[_];Array.isArray(T)&&T[2]&&(c[_]=T[2])}i.inputTransforms=c}function fc(i,a,c){return i[a]=c}function ro(i,a,c){return!Object.is(i[a],c)&&(i[a]=c,!0)}function rd(i,a,c,_){const T=ro(i,a,c);return ro(i,a+1,_)||T}function nh(i,a,c,_,T){const F=rd(i,a,c,_);return ro(i,a+2,T)||F}function Ju(i,a,c,_){const T=Hi();return ro(T,na(),a)&&(rr(),Ha(Rr(),T,i,a,c,_)),Ju}function u2(i,a,c,_){return ro(i,na(),c)?a+at(c)+_:tr}function Hc(i,a,c,_,T,F){const oe=rd(i,Wn(),c,T);return me(2),oe?a+at(c)+_+at(T)+F:tr}function f2(i,a,c,_,T,F,Q,oe,we,ot){const Ut=function zs(i,a,c,_,T,F){const Q=rd(i,a,c,_);return rd(i,a+2,T,F)||Q}(i,Wn(),c,T,Q,we);return me(4),Ut?a+at(c)+_+at(T)+F+at(Q)+oe+at(we)+ot:tr}function $u(i,a){return i<<17|a<<2}function d1(i){return i>>17&32767}function ef(i){return 2|i}function h1(i){return(131068&i)>>2}function $3(i,a){return-131069&i|a<<2}function tf(i){return 1|i}function x(i,a,c,_,T){const F=i[c+1],Q=null===a;let oe=_?d1(F):h1(F),we=!1;for(;0!==oe&&(!1===we||Q);){const Et=i[oe+1];U(i[oe],a)&&(we=!0,i[oe+1]=_?tf(Et):ef(Et)),oe=_?d1(Et):h1(Et)}we&&(i[c+1]=_?ef(F):tf(F))}function U(i,a){return null===i||null==a||(Array.isArray(i)?i[1]:i)===a||!(!Array.isArray(i)||"string"!=typeof a)&&Vl(i,a)>=0}const Y={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function Te(i){return i.substring(Y.key,Y.keyEnd)}function Zt(i,a){const c=Y.textEnd;return c===a?-1:(a=Y.keyEnd=function rn(i,a,c){for(;a32;)a++;return a}(i,Y.key=a,c),ki(i,a,c))}function ki(i,a,c){for(;a=0;c=Zt(a,c))hs(i,Te(a),!0)}function Wr(i,a,c,_){const T=Hi(),F=rr(),Q=me(2);F.firstUpdatePass&&ps(F,i,Q,_),a!==tr&&ro(T,Q,a)&&u1(F,F.data[fo()],T,T[An],i,T[Q+1]=function _n(i,a){return null==i||""===i||("string"==typeof a?i+=a:"object"==typeof i&&(i=It(io(i)))),i}(a,c),_,Q)}function $n(i,a,c,_){const T=rr(),F=me(2);T.firstUpdatePass&&ps(T,null,F,_);const Q=Hi();if(c!==tr&&ro(Q,F,c)){const oe=T.data[fo()];if(ir(oe,_)&&!Xr(T,F)){let we=_?oe.classesWithoutHost:oe.stylesWithoutHost;null!==we&&(c=Ae(we,c||"")),Vn(T,oe,Q,c,_)}else!function hd(i,a,c,_,T,F,Q,oe){T===tr&&(T=Bn);let we=0,ot=0,Et=0=i.expandoStartIndex}function ps(i,a,c,_){const T=i.data;if(null===T[c+1]){const F=T[fo()],Q=Xr(i,c);ir(F,_)&&null===a&&!Q&&(a=!1),a=function ya(i,a,c,_){const T=ni(i);let F=_?a.residualClasses:a.residualStyles;if(null===T)0===(_?a.classBindings:a.styleBindings)&&(c=fa(c=qa(null,i,a,c,_),a.attrs,_),F=null);else{const Q=a.directiveStylingLast;if(-1===Q||i[Q]!==T)if(c=qa(T,i,a,c,_),null===F){let we=function xa(i,a,c){const _=c?a.classBindings:a.styleBindings;if(0!==h1(_))return i[d1(_)]}(i,a,_);void 0!==we&&Array.isArray(we)&&(we=qa(null,i,a,we[1],_),we=fa(we,a.attrs,_),function Ko(i,a,c,_){i[d1(c?a.classBindings:a.styleBindings)]=_}(i,a,_,we))}else F=function Vr(i,a,c){let _;const T=a.directiveEnd;for(let F=1+a.directiveStylingLast;F0)&&(ot=!0)):Et=c,T)if(0!==we){const ai=d1(i[oe+1]);i[_+1]=$u(ai,oe),0!==ai&&(i[ai+1]=$3(i[ai+1],_)),i[oe+1]=function Zp(i,a){return 131071&i|a<<17}(i[oe+1],_)}else i[_+1]=$u(oe,0),0!==oe&&(i[oe+1]=$3(i[oe+1],_)),oe=_;else i[_+1]=$u(we,0),0===oe?oe=_:i[we+1]=$3(i[we+1],_),we=_;ot&&(i[_+1]=ef(i[_+1])),x(i,Et,_,!0),x(i,Et,_,!1),function o(i,a,c,_,T){const F=T?i.residualClasses:i.residualStyles;null!=F&&"string"==typeof a&&Vl(F,a)>=0&&(c[_+1]=tf(c[_+1]))}(a,Et,i,_,F),Q=$u(oe,we),F?a.classBindings=Q:a.styleBindings=Q}(T,F,a,c,Q,_)}}function qa(i,a,c,_,T){let F=null;const Q=c.directiveEnd;let oe=c.directiveStylingLast;for(-1===oe?oe=c.directiveStart:oe++;oe0;){const we=i[T],ot=Array.isArray(we),Et=ot?we[1]:we,Ut=null===Et;let ai=c[T+1];ai===tr&&(ai=Ut?Bn:void 0);let mi=Ut?F2(ai,_):Et===_?ai:void 0;if(ot&&!mc(mi)&&(mi=F2(we,_)),mc(mi)&&(oe=mi,Q))return oe;const Ri=i[T+1];T=Q?d1(Ri):h1(Ri)}if(null!==a){let we=F?a.residualClasses:a.residualStyles;null!=we&&(oe=F2(we,_))}return oe}function mc(i){return void 0!==i}function ir(i,a){return 0!=(i.flags&(a?8:16))}function br(i,a,c){$n(hs,wn,u2(Hi(),i,a,c),!0)}let qp=(i,a)=>null;function v2(i,a){return qp(i,a)}class Kv{destroy(a){}updateValue(a,c){}swap(a,c){const _=Math.min(a,c),T=Math.max(a,c),F=this.detach(T);if(T-_>1){const Q=this.detach(_);this.attach(_,F),this.attach(T,Q)}else this.attach(_,F)}move(a,c){this.attach(c,this.detach(a))}}function s4(i,a,c,_,T){return i===c&&Object.is(a,_)?1:Object.is(T(i,a),T(c,_))?-1:0}function Xp(i,a,c,_){return!(void 0===a||!a.has(_)||(i.attach(c,a.get(_)),a.delete(_),0))}function Jp(i,a,c,_,T){if(Xp(i,a,_,c(_,T)))i.updateValue(_,T);else{const F=i.create(_,T);i.attach(_,F)}}function G8(i,a,c,_){const T=new Set;for(let F=a;F<=c;F++)T.add(_(F,i.at(F)));return T}class Z8{constructor(){this.map=new Map}has(a){const c=this.map.get(a);return void 0!==c&&c.length>0}delete(a){const c=this.map.get(a);return void 0!==c&&(c.shift(),!0)}get(a){const c=this.map.get(a);return void 0!==c&&c.length>0?c[0]:void 0}set(a,c){this.map.has(a)?this.map.get(a)?.push(c):this.map.set(a,[c])}forEach(a){for(const[c,_]of this.map)for(const T of _)a(T,c)}}function af(i,a,c,_){const T=a.tView,oe=Z0(i,T,c,4096&i[Jt]?4096:16,null,a,null,null,null,_?.injector??null,_?.dehydratedView??null);oe[Do]=i[a.index];const ot=i[Sa];return null!==ot&&(oe[Sa]=ot.createEmbeddedView(T)),Ku(T,oe,c),oe}function W8(i,a){const c=qi+a;if(c0&&(c[T-1][xn]=a),_{class i{static#e=this.__NG_ELEMENT_ID__=Y8}return i})();function Y8(){return t6(mr(),Hi())}const Qv=c4,j8=class extends Qv{constructor(a,c,_){super(),this._lContainer=a,this._hostTNode=c,this._hostLView=_}get element(){return t2(this._hostTNode,this._hostLView)}get injector(){return new Na(this._hostTNode,this._hostLView)}get parentInjector(){const a=w1(this._hostTNode,this._hostLView);if(Dl(a)){const c=Ll(a,this._hostLView),_=b1(a);return new Na(c[vt].data[_+8],c)}return new Na(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(a){const c=K8(this._lContainer);return null!==c&&c[a]||null}get length(){return this._lContainer.length-qi}createEmbeddedView(a,c,_){let T,F;"number"==typeof _?T=_:null!=_&&(T=_.index,F=_.injector);const Q=v2(this._lContainer,a.ssrId),oe=a.createEmbeddedViewImpl(c||{},F,Q);return this.insertImpl(oe,T,ah(this._hostTNode,Q)),oe}createComponent(a,c,_,T,F){const Q=a&&!function Os(i){return"function"==typeof i}(a);let oe;if(Q)oe=c;else{const Ri=c||{};oe=Ri.index,_=Ri.injector,T=Ri.projectableNodes,F=Ri.environmentInjector||Ri.ngModuleRef}const we=Q?a:new nd(ii(a)),ot=_||this.parentInjector;if(!F&&null==we.ngModule){const ji=(Q?ot:this.parentInjector).get(us,null);ji&&(F=ji)}const Et=ii(we.componentType??{}),Ut=v2(this._lContainer,Et?.id??null),mi=we.create(ot,T,Ut?.firstChild??null,F);return this.insertImpl(mi.hostView,oe,ah(this._hostTNode,Ut)),mi}insert(a,c){return this.insertImpl(a,c,!0)}insertImpl(a,c,_){const T=a._lView;if(function Vc(i){return Ir(i[zi])}(T)){const oe=this.indexOf(a);if(-1!==oe)this.detach(oe);else{const we=T[zi],ot=new j8(we,we[Mr],we[zi]);ot.detach(ot.indexOf(a))}}const F=this._adjustIndex(c),Q=this._lContainer;return b2(Q,T,F,_),a.attachToViewContainerRef(),Md(e6(Q),F,a),a}move(a,c){return this.insert(a,c)}indexOf(a){const c=K8(this._lContainer);return null!==c?c.indexOf(a):-1}remove(a){const c=this._adjustIndex(a,-1),_=ll(this._lContainer,c);_&&($s(e6(this._lContainer),c),n1(_[vt],_))}detach(a){const c=this._adjustIndex(a,-1),_=ll(this._lContainer,c);return _&&null!=$s(e6(this._lContainer),c)?new td(_):null}_adjustIndex(a,c=0){return a??this.length+c}};function K8(i){return i[8]}function e6(i){return i[8]||(i[8]=[])}function t6(i,a){let c;const _=a[i.index];return Ir(_)?c=_:(c=Y0(_,a,null,i),a[i.index]=c,gl(a,c)),Q8(c,a,i,_),new j8(c,i,a)}let Q8=function X8(i,a,c,_){if(i[cr])return;let T;T=8&c.type?Fn(_):function qv(i,a){const c=i[An],_=c.createComment(""),T=Sr(a,i);return cc(c,dl(c,T),_,function I0(i,a){return i.nextSibling(a)}(c,T),!1),_}(a,c),i[cr]=T},i6=(i,a,c)=>!1;function oh(i,a,c,_,T,F,Q,oe){const we=Hi(),ot=rr(),Et=i+En,Ut=ot.firstCreatePass?function n6(i,a,c,_,T,F,Q,oe,we){const ot=a.consts,Et=ml(a,i,4,Q||null,$o(ot,oe));A3(a,c,Et,$o(ot,we)),Gc(a,Et);const Ut=Et.tView=E3(2,Et,_,T,F,a.directiveRegistry,a.pipeRegistry,null,a.schemas,ot,null);return null!==a.queries&&(a.queries.template(a,Et),Ut.queries=a.queries.embeddedTView(Et)),Et}(Et,ot,we,a,c,_,T,F,Q):ot.data[Et];Fr(Ut,!1);const ai=J8(ot,we,Ut,i);ls()&&Z(ot,we,ai,Ut),eo(ai,we);const mi=Y0(ai,we,ai,Ut);return we[Et]=mi,gl(we,mi),function q8(i,a,c){return i6(i,a,c)}(mi,Ut,we),Vs(Ut)&&w3(ot,we,Ut),null!=Q&&M3(we,Ut,oe),oh}let J8=function $8(i,a,c,_){return Is(!0),a[An].createComment("")};function e5(i,a,c){c1("NgControlFlow");const _=Hi(),T=na(),F=l4(_,En+i);if(ro(_,T,a)){const oe=w(null);try{if($p(F,0),-1!==a){const we=r6(_[vt],En+a),ot=v2(F,we.tView.ssrId);b2(F,af(_,we,c,{dehydratedView:ot}),0,ah(we,ot))}}finally{w(oe)}}else{const oe=W8(F,0);void 0!==oe&&(oe[Hn]=c)}}class t9{constructor(a,c,_){this.lContainer=a,this.$implicit=c,this.$index=_}get $count(){return this.lContainer.length-qi}}function t5(i,a){return a}class i5{constructor(a,c,_){this.hasEmptyBlock=a,this.trackByFn=c,this.liveCollection=_}}function n5(i,a,c,_,T,F,Q,oe,we,ot,Et){c1("NgControlFlow");const Ut=void 0!==we,ai=Hi(),mi=oe?Q.bind(ai[gr][Hn]):Q,Ri=new i5(Ut,mi);ai[En+i]=Ri,oh(i+1,a,c,_,T,F),Ut&&oh(i+2,we,ot,Et)}class r5 extends Kv{constructor(a,c,_){super(),this.lContainer=a,this.hostLView=c,this.templateTNode=_,this.needsIndexUpdate=!1}get length(){return this.lContainer.length-qi}at(a){return this.getLView(a)[Hn].$implicit}attach(a,c){const _=c[Ma];this.needsIndexUpdate||=a!==this.length,b2(this.lContainer,c,a,ah(this.templateTNode,_))}detach(a){return this.needsIndexUpdate||=a!==this.length-1,function o5(i,a){return ll(i,a)}(this.lContainer,a)}create(a,c){const _=v2(this.lContainer,this.templateTNode.tView.ssrId);return af(this.hostLView,this.templateTNode,new t9(this.lContainer,c,a),{dehydratedView:_})}destroy(a){n1(a[vt],a)}updateValue(a,c){this.getLView(a)[Hn].$implicit=c}reset(){this.needsIndexUpdate=!1}updateIndexes(){if(this.needsIndexUpdate)for(let a=0;a{i.destroy(oe)})}(Q,i,F.trackByFn),Q.updateIndexes(),F.hasEmptyBlock){const oe=na(),we=0===Q.length;if(ro(_,oe,we)){const ot=c+2,Et=l4(_,ot);if(we){const Ut=r6(T,ot),ai=v2(Et,Ut.tView.ssrId);b2(Et,af(_,Ut,void 0,{dehydratedView:ai}),0,ah(Ut,ai))}else $p(Et,0)}}}finally{w(a)}}function l4(i,a){return i[a]}function r6(i,a){return _c(i,a)}function df(i,a,c,_){const T=Hi(),F=rr(),Q=En+i,oe=T[An],we=F.firstCreatePass?function T9(i,a,c,_,T,F){const Q=a.consts,we=ml(a,i,2,_,$o(Q,T));return A3(a,c,we,$o(Q,F)),null!==we.attrs&&th(we,we.attrs,!1),null!==we.mergedAttrs&&th(we,we.mergedAttrs,!0),null!==a.queries&&a.queries.elementStart(a,we),we}(Q,F,T,a,c,_):F.data[Q],ot=T5(F,T,we,oe,a,i);T[Q]=ot;const Et=Vs(we);return Fr(we,!0),Ya(oe,ot,we),32!=(32&we.flags)&&ls()&&Z(F,T,ot,we),0===function p1(){return In.lFrame.elementDepthCount}()&&eo(ot,T),function bs(){In.lFrame.elementDepthCount++}(),Et&&(w3(F,T,we),ku(F,we,T)),null!==_&&M3(T,we),df}function y4(){let i=mr();Ra()?bc():(i=i.parent,Fr(i,!1));const a=i;(function T2(i){return In.skipHydrationRootTNode===i})(a)&&function gd(){In.skipHydrationRootTNode=null}(),function Sh(){In.lFrame.elementDepthCount--}();const c=rr();return c.firstCreatePass&&(Gc(c,i),Ts(i)&&c.queries.elementEnd(i)),null!=a.classesWithoutHost&&function vd(i){return 0!=(8&i.flags)}(a)&&Vn(c,a,Hi(),a.classesWithoutHost,!0),null!=a.stylesWithoutHost&&function Lf(i){return 0!=(16&i.flags)}(a)&&Vn(c,a,Hi(),a.stylesWithoutHost,!1),y4}function g6(i,a,c,_){return df(i,a,c,_),y4(),g6}let T5=(i,a,c,_,T,F)=>(Is(!0),Zd(_,T,function es(){return In.lFrame.currentNamespace}()));function hf(i,a,c){const _=Hi(),T=rr(),F=i+En,Q=T.firstCreatePass?function L9(i,a,c,_,T){const F=a.consts,Q=$o(F,_),oe=ml(a,i,8,"ng-container",Q);return null!==Q&&th(oe,Q,!0),A3(a,c,oe,$o(F,T)),null!==a.queries&&a.queries.elementStart(a,oe),oe}(F,T,_,a,c):T.data[F];Fr(Q,!0);const oe=A5(T,_,Q,i);return _[F]=oe,ls()&&Z(T,_,oe,Q),eo(oe,_),Vs(Q)&&(w3(T,_,Q),ku(T,Q,_)),null!=c&&M3(_,Q),hf}function x4(){let i=mr();const a=rr();return Ra()?bc():(i=i.parent,Fr(i,!1)),a.firstCreatePass&&(Gc(a,i),Ts(i)&&a.queries.elementEnd(i)),x4}function _6(i,a,c){return hf(i,a,c),x4(),_6}let A5=(i,a,c,_)=>(Is(!0),Gd(a[An],""));function L5(){return Hi()}function v6(i,a,c){const _=Hi();return ro(_,na(),a)&&ys(rr(),Rr(),_,i,a,_[An],c,!0),v6}function C4(i,a,c){const _=Hi();if(ro(_,na(),a)){const F=rr(),Q=Rr();ys(F,Q,_,i,a,Ru(ni(F.data),Q,_),c,!0)}return C4}const x2=void 0;var O9=["en",[["a","p"],["AM","PM"],x2],[["AM","PM"],x2,x2],[["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"]],x2,[["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"]],x2,[["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}",x2,"{1} 'at' {0}",x2],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function I9(i){const c=Math.floor(Math.abs(i)),_=i.toString().replace(/^[^.]*\.?/,"").length;return 1===c&&0===_?1:5}];let fh={};function w4(i){const a=function P9(i){return i.toLowerCase().replace(/_/g,"-")}(i);let c=I5(a);if(c)return c;const _=a.split("-")[0];if(c=I5(_),c)return c;if("en"===_)return O9;throw new te(701,!1)}function k5(i){return w4(i)[mh.PluralCase]}function I5(i){return i in fh||(fh[i]=ri.ng&&ri.ng.common&&ri.ng.common.locales&&ri.ng.common.locales[i]),fh[i]}var mh=function(i){return i[i.LocaleId=0]="LocaleId",i[i.DayPeriodsFormat=1]="DayPeriodsFormat",i[i.DayPeriodsStandalone=2]="DayPeriodsStandalone",i[i.DaysFormat=3]="DaysFormat",i[i.DaysStandalone=4]="DaysStandalone",i[i.MonthsFormat=5]="MonthsFormat",i[i.MonthsStandalone=6]="MonthsStandalone",i[i.Eras=7]="Eras",i[i.FirstDayOfWeek=8]="FirstDayOfWeek",i[i.WeekendRange=9]="WeekendRange",i[i.DateFormat=10]="DateFormat",i[i.TimeFormat=11]="TimeFormat",i[i.DateTimeFormat=12]="DateTimeFormat",i[i.NumberSymbols=13]="NumberSymbols",i[i.NumberFormats=14]="NumberFormats",i[i.CurrencyCode=15]="CurrencyCode",i[i.CurrencySymbol=16]="CurrencySymbol",i[i.CurrencyName=17]="CurrencyName",i[i.Currencies=18]="Currencies",i[i.Directionality=19]="Directionality",i[i.PluralCase=20]="PluralCase",i[i.ExtraData=21]="ExtraData",i}(mh||{});const ph="en-US";let b6=ph;function A6(i){return!!i&&"function"==typeof i.then}function D6(i){return!!i&&"function"==typeof i.subscribe}function L6(i,a,c,_){const T=Hi(),F=rr(),Q=mr();return O4(F,T,T[An],Q,i,a,_),L6}function I4(i,a){const c=mr(),_=Hi(),T=rr();return O4(T,_,Ru(ni(T.data),c,_),c,i,a),I4}function O4(i,a,c,_,T,F,Q){const oe=Vs(_),ot=i.firstCreatePass&&j0(i),Et=a[Hn],Ut=ed(a);let ai=!0;if(3&_.type||Q){const ji=Sr(_,a),hn=Q?Q(ji):ji,bn=Ut.length,Wi=Q?wr=>Q(Fn(wr[_.index])):_.index;let Zn=null;if(!Q&&oe&&(Zn=function bb(i,a,c,_){const T=i.cleanup;if(null!=T)for(let F=0;Fwe?oe[we]:null}"string"==typeof Q&&(F+=2)}return null}(i,a,T,_.index)),null!==Zn)(Zn.__ngLastListenerFn__||Zn).__ngNextListenerFn__=F,Zn.__ngLastListenerFn__=F,ai=!1;else{F=r_(_,a,Et,F,!1);const wr=c.listen(hn,T,F);Ut.push(F,wr),ot&&ot.push(T,Wi,bn,bn+1)}}else F=r_(_,a,Et,F,!1);const mi=_.outputs;let Ri;if(ai&&null!==mi&&(Ri=mi[T])){const ji=Ri.length;if(ji)for(let hn=0;hn-1?Uo(i.index,a):a);let we=n_(a,c,_,Q),ot=F.__ngNextListenerFn__;for(;ot;)we=n_(a,c,ot,Q)&&we,ot=ot.__ngNextListenerFn__;return T&&!1===we&&Q.preventDefault(),we}}function a_(i=1){return function cs(i){return(In.lFrame.contextLView=function Pa(i,a){for(;i>0;)a=a[xo],i--;return a}(i,In.lFrame.contextLView))[Hn]}(i)}function yb(i,a){let c=null;const _=function Fo(i){const a=i.attrs;if(null!=a){const c=a.indexOf(5);if(!(1&c))return a[c+1]}return null}(i);for(let T=0;T(Is(!0),function t1(i,a){return i.createText(a)}(a[An],_));function _h(i){return N4("",i,""),_h}function N4(i,a,c){const _=Hi(),T=u2(_,i,a,c);return T!==tr&&Pc(_,fo(),T),N4}function H6(i,a,c,_,T){const F=Hi(),Q=Hc(F,i,a,c,_,T);return Q!==tr&&Pc(F,fo(),Q),H6}function F6(i,a,c,_,T,F,Q){const oe=Hi(),we=function od(i,a,c,_,T,F,Q,oe){const ot=nh(i,Wn(),c,T,Q);return me(3),ot?a+at(c)+_+at(T)+F+at(Q)+oe:tr}(oe,i,a,c,_,T,F,Q);return we!==tr&&Pc(oe,fo(),we),F6}function z6(i,a,c,_,T,F,Q,oe,we){const ot=Hi(),Et=f2(ot,i,a,c,_,T,F,Q,oe,we);return Et!==tr&&Pc(ot,fo(),Et),z6}function V6(i,a,c,_,T){if(i=Ie(i),Array.isArray(i))for(let F=0;F>20;if(Dc(i)||!i.multi){const mi=new xc(ot,T,$1),Ri=B6(we,a,T?Et:Et+ai,Ut);-1===Ri?(k2(qc(oe,Q),F,we),H4(F,i,a.length),a.push(we),oe.directiveStart++,oe.directiveEnd++,T&&(oe.providerIndexes+=1048576),c.push(mi),Q.push(mi)):(c[Ri]=mi,Q[Ri]=mi)}else{const mi=B6(we,a,Et+ai,Ut),Ri=B6(we,a,Et,Et+ai),hn=Ri>=0&&c[Ri];if(T&&!hn||!T&&!(mi>=0&&c[mi])){k2(qc(oe,Q),F,we);const bn=function kb(i,a,c,_,T){const F=new xc(i,c,$1);return F.multi=[],F.index=a,F.componentProviders=0,k_(F,T,_&&!c),F}(T?I_:Lb,c.length,T,_,ot);!T&&hn&&(c[Ri].providerFactory=bn),H4(F,i,a.length,0),a.push(we),oe.directiveStart++,oe.directiveEnd++,T&&(oe.providerIndexes+=1048576),c.push(bn),Q.push(bn)}else H4(F,i,mi>-1?mi:Ri,k_(c[T?Ri:mi],ot,!T&&_));!T&&_&&hn&&c[Ri].componentProviders++}}}function H4(i,a,c,_){const T=Dc(a),F=function Y2(i){return!!i.useClass}(a);if(T||F){const we=(F?Ie(a.useClass):a).prototype.ngOnDestroy;if(we){const ot=i.destroyHooks||(i.destroyHooks=[]);if(!T&&a.multi){const Et=ot.indexOf(c);-1===Et?ot.push(c,[_,we]):ot[Et+1].push(_,we)}else ot.push(c,we)}}}function k_(i,a,c){return c&&i.componentProviders++,i.multi.push(a)-1}function B6(i,a,c,_){for(let T=c;T<_;T++)if(a[T]===i)return T;return-1}function Lb(i,a,c,_){return U6(this.multi,[])}function I_(i,a,c,_){const T=this.multi;let F;if(this.providerFactory){const Q=this.providerFactory.componentProviders,oe=Js(c,c[vt],this.providerFactory.index,_);F=oe.slice(0,Q),U6(T,F);for(let we=Q;we{c.providersResolver=(_,T)=>function L_(i,a,c){const _=rr();if(_.firstCreatePass){const T=uo(i);V6(c,_.data,_.blueprint,T,!0),V6(a,_.data,_.blueprint,T,!1)}}(_,T?T(i):i,a)}}class C2{}class O_{}function F4(i,a){return new Z6(i,a??null,[])}class Z6 extends C2{constructor(a,c,_){super(),this._parent=c,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new Dp(this);const T=ar(a);this._bootstrapComponents=Yo(T.bootstrap),this._r3Injector=kd(a,c,[{provide:C2,useValue:this},{provide:G0,useValue:this.componentFactoryResolver},..._],It(a),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(a)}get injector(){return this._r3Injector}destroy(){const a=this._r3Injector;!a.destroyed&&a.destroy(),this.destroyCbs.forEach(c=>c()),this.destroyCbs=null}onDestroy(a){this.destroyCbs.push(a)}}class W6 extends O_{constructor(a){super(),this.moduleType=a}create(a){return new Z6(this.moduleType,a,[])}}class P_ extends C2{constructor(a){super(),this.componentFactoryResolver=new Dp(this),this.instance=null;const c=new el([...a.providers,{provide:C2,useValue:this},{provide:G0,useValue:this.componentFactoryResolver}],a.parent||I1(),a.debugName,new Set(["environment"]));this.injector=c,a.runEnvironmentInitializers&&c.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(a){this.injector.onDestroy(a)}}function Y6(i,a,c=null){return new P_({providers:i,parent:a,debugName:c,runEnvironmentInitializers:!0}).injector}let Ob=(()=>{class i{constructor(c){this._injector=c,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(c){if(!c.standalone)return null;if(!this.cachedInjectors.has(c)){const _=Z2(0,c.type),T=_.length>0?Y6([_],this._injector,`Standalone[${c.type.name}]`):null;this.cachedInjectors.set(c,T)}return this.cachedInjectors.get(c)}ngOnDestroy(){try{for(const c of this.cachedInjectors.values())null!==c&&c.destroy()}finally{this.cachedInjectors.clear()}}static#e=this.\u0275prov=Mt({token:i,providedIn:"environment",factory:()=>new i(fr(us))})}return i})();function R_(i){c1("NgStandalone"),i.getStandaloneInjector=a=>a.get(Ob).getOrCreateStandaloneInjector(i)}function G_(i,a,c){const _=qn()+i,T=Hi();return T[_]===tr?fc(T,_,c?a.call(c):a()):function ih(i,a){return i[a]}(T,_)}function Z_(i,a,c,_){return j_(Hi(),qn(),i,a,c,_)}function B4(i,a,c,_,T){return K_(Hi(),qn(),i,a,c,_,T)}function W_(i,a,c,_,T,F){return X6(Hi(),qn(),i,a,c,_,T,F)}function _f(i,a){const c=i[a];return c===tr?void 0:c}function j_(i,a,c,_,T,F){const Q=a+c;return ro(i,Q,T)?fc(i,Q+1,F?_.call(F,T):_(T)):_f(i,Q+1)}function K_(i,a,c,_,T,F,Q){const oe=a+c;return rd(i,oe,T,F)?fc(i,oe+2,Q?_.call(Q,T,F):_(T,F)):_f(i,oe+2)}function X6(i,a,c,_,T,F,Q,oe){const we=a+c;return nh(i,we,T,F,Q)?fc(i,we+3,oe?_.call(oe,T,F,Q):_(T,F,Q)):_f(i,we+3)}function Q_(i,a){const c=rr();let _;const T=i+En;c.firstCreatePass?(_=function Wb(i,a){if(a)for(let c=a.length-1;c>=0;c--){const _=a[c];if(i===_.name)return _}}(a,c.pipeRegistry),c.data[T]=_,_.onDestroy&&(c.destroyHooks??=[]).push(T,_.onDestroy)):_=c.data[T];const F=_.factory||(_.factory=Ii(_.type)),oe=et($1);try{const we=x1(!1),ot=F();return x1(we),function xb(i,a,c,_){c>=i.data.length&&(i.data[c]=null,i.blueprint[c]=null),a[c]=_}(c,Hi(),T,ot),ot}finally{et(oe)}}function $6(i,a,c){const _=i+En,T=Hi(),F=Ds(T,_);return bh(T,_)?j_(T,qn(),a,F.transform,c,F):F.transform(c)}function q_(i,a,c,_){const T=i+En,F=Hi(),Q=Ds(F,T);return bh(F,T)?K_(F,qn(),a,Q.transform,c,_,Q):Q.transform(c,_)}function X_(i,a,c,_,T){const F=i+En,Q=Hi(),oe=Ds(Q,F);return bh(Q,F)?X6(Q,qn(),a,oe.transform,c,_,T,oe):oe.transform(c,_,T)}function bh(i,a){return i[vt].data[a].pure}function Qb(){return this._results[Symbol.iterator]()}class vf{static#e=Symbol.iterator;get changes(){return this._changes||(this._changes=new Hs)}constructor(a=!1){this._emitDistinctChangesOnly=a,this.dirty=!0,this._results=[],this._changesDetected=!1,this._changes=null,this.length=0,this.first=void 0,this.last=void 0;const c=vf.prototype;c[Symbol.iterator]||(c[Symbol.iterator]=Qb)}get(a){return this._results[a]}map(a){return this._results.map(a)}filter(a){return this._results.filter(a)}find(a){return this._results.find(a)}reduce(a,c){return this._results.reduce(a,c)}forEach(a){this._results.forEach(a)}some(a){return this._results.some(a)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(a,c){this.dirty=!1;const _=function Wo(i){return i.flat(Number.POSITIVE_INFINITY)}(a);(this._changesDetected=!function Ff(i,a,c){if(i.length!==a.length)return!1;for(let _=0;_{class i{static#e=this.__NG_ELEMENT_ID__=Jb}return i})();const qb=w2,Xb=class extends qb{constructor(a,c,_){super(),this._declarationLView=a,this._declarationTContainer=c,this.elementRef=_}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(a,c){return this.createEmbeddedViewImpl(a,c)}createEmbeddedViewImpl(a,c,_){const T=af(this._declarationLView,this._declarationTContainer,a,{injector:c,dehydratedView:_});return new td(T)}};function Jb(){return G4(mr(),Hi())}function G4(i,a){return 4&i.type?new Xb(a,i,t2(i,a)):null}class eg{constructor(a){this.queryList=a,this.matches=null}clone(){return new eg(this.queryList)}setDirty(){this.queryList.setDirty()}}class bf{constructor(a=[]){this.queries=a}createEmbeddedView(a){const c=a.queries;if(null!==c){const _=null!==a.contentQueries?a.contentQueries[0]:c.length,T=[];for(let F=0;F<_;F++){const Q=c.getByIndex(F);T.push(this.queries[Q.indexInDeclarationView].clone())}return new bf(T)}return null}insertView(a){this.dirtyQueriesWithMatches(a)}detachView(a){this.dirtyQueriesWithMatches(a)}dirtyQueriesWithMatches(a){for(let c=0;c0)_.push(Q[oe/2]);else{const ot=F[oe+1],Et=a[-we];for(let Ut=qi;Ut{class i{constructor(){this.initialized=!1,this.done=!1,this.donePromise=new Promise((c,_)=>{this.resolve=c,this.reject=_}),this.appInits=Kn(ug,{optional:!0})??[]}runInitializers(){if(this.initialized)return;const c=[];for(const T of this.appInits){const F=T();if(A6(F))c.push(F);else if(D6(F)){const Q=new Promise((oe,we)=>{F.subscribe({complete:oe,error:we})});c.push(Q)}}const _=()=>{this.done=!0,this.resolve()};Promise.all(c).then(()=>{_()}).catch(T=>{this.reject(T)}),0===c.length&&_(),this.initialized=!0}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),M7=(()=>{class i{log(c){console.log(c)}warn(c){console.warn(c)}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();const Q4=new an("LocaleId",{providedIn:"root",factory:()=>Kn(Q4,xi.Optional|xi.SkipSelf)||function S7(){return typeof $localize<"u"&&$localize.locale||ph}()}),xy=new an("DefaultCurrencyCode",{providedIn:"root",factory:()=>"USD"});let T7=(()=>{class i{constructor(){this.taskId=0,this.pendingTasks=new Set,this.hasPendingTasks=new re.X(!1)}add(){this.hasPendingTasks.next(!0);const c=this.taskId++;return this.pendingTasks.add(c),c}remove(c){this.pendingTasks.delete(c),0===this.pendingTasks.size&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks.next(!1)}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();class Sy{constructor(a,c){this.ngModuleFactory=a,this.componentFactories=c}}let Ey=(()=>{class i{compileModuleSync(c){return new W6(c)}compileModuleAsync(c){return Promise.resolve(this.compileModuleSync(c))}compileModuleAndAllComponentsSync(c){const _=this.compileModuleSync(c),F=Yo(ar(c).declarations).reduce((Q,oe)=>{const we=ii(oe);return we&&Q.push(new nd(we)),Q},[]);return new Sy(_,F)}compileModuleAndAllComponentsAsync(c){return Promise.resolve(this.compileModuleAndAllComponentsSync(c))}clearCache(){}clearCacheFor(c){}getModuleId(c){}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const P7=new an(""),gg=new an("");let _g,Qy=(()=>{class i{constructor(c,_,T){this._ngZone=c,this.registry=_,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,_g||(function qy(i){_g=i}(T),T.addToWindow(_)),this._watchAngularEvents(),c.run(()=>{this.taskTrackingZone=typeof Zone>"u"?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:()=>{mo.assertNotInAngularZone(),queueMicrotask(()=>{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())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let c=this._callbacks.pop();clearTimeout(c.timeoutId),c.doneCb(this._didWork)}this._didWork=!1});else{let c=this.getPendingTasks();this._callbacks=this._callbacks.filter(_=>!_.updateCb||!_.updateCb(c)||(clearTimeout(_.timeoutId),!1)),this._didWork=!0}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(c=>({source:c.source,creationLocation:c.creationLocation,data:c.data})):[]}addCallback(c,_,T){let F=-1;_&&_>0&&(F=setTimeout(()=>{this._callbacks=this._callbacks.filter(Q=>Q.timeoutId!==F),c(this._didWork,this.getPendingTasks())},_)),this._callbacks.push({doneCb:c,timeoutId:F,updateCb:T})}whenStable(c,_,T){if(T&&!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(c,_,T),this._runCallbacksIfReady()}getPendingRequestCount(){return this._pendingCount}registerApplication(c){this.registry.registerApplication(c,this)}unregisterApplication(c){this.registry.unregisterApplication(c)}findProviders(c,_,T){return[]}static#e=this.\u0275fac=function(_){return new(_||i)(fr(mo),fr(R7),fr(gg))};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac})}return i})(),R7=(()=>{class i{constructor(){this._applications=new Map}registerApplication(c,_){this._applications.set(c,_)}unregisterApplication(c){this._applications.delete(c)}unregisterAllApplications(){this._applications.clear()}getTestability(c){return this._applications.get(c)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(c,_=!0){return _g?.findTestabilityInTree(this,c,_)??null}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})(),md=null;const vg=new an("AllowMultipleToken"),X4=new an("PlatformDestroyListeners"),bg=new an("appBootstrapListener");function N7(i,a,c=[]){const _=`Platform: ${a}`,T=new an(_);return(F=[])=>{let Q=wg();if(!Q||Q.injector.get(vg,!1)){const oe=[...c,...F,{provide:T,useValue:!0}];i?i(oe):function ex(i){if(md&&!md.get(vg,!1))throw new te(400,!1);(function yg(){!function O(i){C=i}(()=>{throw new te(600,!1)})})(),md=i;const a=i.get(H7);(function xg(i){i.get(Qh,null)?.forEach(c=>c())})(i)}(function Cg(i=[],a){return fs.create({name:a,providers:[{provide:Ps,useValue:"platform"},{provide:X4,useValue:new Set([()=>md=null])},...i]})}(oe,_))}return function ix(i){const a=wg();if(!a)throw new te(401,!1);return a}()}}function wg(){return md?.get(H7)??null}let H7=(()=>{class i{constructor(c){this._injector=c,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(c,_){const T=function z7(i="zone.js",a){return"noop"===i?new Mp:"zone.js"===i?new mo(a):i}(_?.ngZone,function F7(i){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:i?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:i?.runCoalescing??!1}}({eventCoalescing:_?.ngZoneEventCoalescing,runCoalescing:_?.ngZoneRunCoalescing}));return T.run(()=>{const F=function Ib(i,a,c){return new Z6(i,a,c)}(c.moduleType,this.injector,function G7(i){return[{provide:mo,useFactory:i},{provide:ec,multi:!0,useFactory:()=>{const a=Kn(rx,{optional:!0});return()=>a.initialize()}},{provide:U7,useFactory:nx},{provide:Sp,useFactory:Ep}]}(()=>T)),Q=F.injector.get(a1,null);return T.runOutsideAngular(()=>{const oe=T.onError.subscribe({next:we=>{Q.handleError(we)}});F.onDestroy(()=>{J4(this._modules,F),oe.unsubscribe()})}),function V7(i,a,c){try{const _=c();return A6(_)?_.catch(T=>{throw a.runOutsideAngular(()=>i.handleError(T)),T}):_}catch(_){throw a.runOutsideAngular(()=>i.handleError(_)),_}}(Q,T,()=>{const oe=F.injector.get(fg);return oe.runInitializers(),oe.donePromise.then(()=>(function P5(i){Ki(i,"Expected localeId to be defined"),"string"==typeof i&&(b6=i.toLowerCase().replace(/_/g,"-"))}(F.injector.get(Q4,ph)||ph),this._moduleDoBootstrap(F),F))})})}bootstrapModule(c,_=[]){const T=B7({},_);return function Xy(i,a,c){const _=new W6(c);return Promise.resolve(_)}(0,0,c).then(F=>this.bootstrapModuleFactory(F,T))}_moduleDoBootstrap(c){const _=c.injector.get(Ch);if(c._bootstrapComponents.length>0)c._bootstrapComponents.forEach(T=>_.bootstrap(T));else{if(!c.instance.ngDoBootstrap)throw new te(-403,!1);c.instance.ngDoBootstrap(_)}this._modules.push(c)}onDestroy(c){this._destroyListeners.push(c)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new te(404,!1);this._modules.slice().forEach(_=>_.destroy()),this._destroyListeners.forEach(_=>_());const c=this._injector.get(X4,null);c&&(c.forEach(_=>_()),c.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static#e=this.\u0275fac=function(_){return new(_||i)(fr(fs))};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();function B7(i,a){return Array.isArray(a)?a.reduce(B7,i):{...i,...a}}let Ch=(()=>{class i{constructor(){this._bootstrapListeners=[],this._runningTick=!1,this._destroyed=!1,this._destroyListeners=[],this._views=[],this.internalErrorHandler=Kn(U7),this.zoneIsStable=Kn(Sp),this.componentTypes=[],this.components=[],this.isStable=Kn(T7).hasPendingTasks.pipe((0,Ze.w)(c=>c?(0,ve.of)(!1):this.zoneIsStable),(0,We.x)(),(0,ce.B)()),this._injector=Kn(us)}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(c,_){const T=c instanceof s3;if(!this._injector.get(fg).done)throw!T&&nr(c),new te(405,!1);let Q;Q=T?c:this._injector.get(G0).resolveComponentFactory(c),this.componentTypes.push(Q.componentType);const oe=function Jy(i){return i.isBoundToModule}(Q)?void 0:this._injector.get(C2),ot=Q.create(fs.NULL,[],_||Q.selector,oe),Et=ot.location.nativeElement,Ut=ot.injector.get(P7,null);return Ut?.registerApplication(Et),ot.onDestroy(()=>{this.detachView(ot.hostView),J4(this.components,ot),Ut?.unregisterApplication(Et)}),this._loadComponent(ot),ot}tick(){if(this._runningTick)throw new te(101,!1);try{this._runningTick=!0;for(let c of this._views)c.detectChanges()}catch(c){this.internalErrorHandler(c)}finally{this._runningTick=!1}}attachView(c){const _=c;this._views.push(_),_.attachToAppRef(this)}detachView(c){const _=c;J4(this._views,_),_.detachFromAppRef()}_loadComponent(c){this.attachView(c.hostView),this.tick(),this.components.push(c);const _=this._injector.get(bg,[]);[...this._bootstrapListeners,..._].forEach(T=>T(c))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(c=>c()),this._views.slice().forEach(c=>c.destroy())}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(c){return this._destroyListeners.push(c),()=>J4(this._destroyListeners,c)}destroy(){if(this._destroyed)throw new te(406,!1);const c=this._injector;c.destroy&&!c.destroyed&&c.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function J4(i,a){const c=i.indexOf(a);c>-1&&i.splice(c,1)}const U7=new an("",{providedIn:"root",factory:()=>Kn(a1).handleError.bind(void 0)});function nx(){const i=Kn(mo),a=Kn(a1);return c=>i.runOutsideAngular(()=>a.handleError(c))}let rx=(()=>{class i{constructor(){this.zone=Kn(mo),this.applicationRef=Kn(Ch)}initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static#e=this.\u0275fac=function(_){return new(_||i)};static#t=this.\u0275prov=Mt({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function cx(){return!1}const mx=N7(null,"core",[]);let K7=(()=>{class i{constructor(c){}static#e=this.\u0275fac=function(_){return new(_||i)(fr(Ch))};static#t=this.\u0275mod=Ao({type:i});static#i=this.\u0275inj=Dt({})}return i})();function pv(i){return"boolean"==typeof i?i:null!=i&&"false"!==i}function gv(i,a=NaN){return isNaN(parseFloat(i))||isNaN(Number(i))?a:Number(i)}function Nx(i){const a=ii(i);if(!a)return null;const c=new nd(a);return{get selector(){return c.selector},get type(){return c.componentType},get inputs(){return c.inputs},get outputs(){return c.outputs},get ngContentSelectors(){return c.ngContentSelectors},get isStandalone(){return a.standalone},get isSignal(){return a.signals}}}},1993:(Fe,q,p)=>{"use strict";p.d(q,{O4:()=>A});var e=p(9212);function A(l,w){const m=!w?.manualCleanup;m&&!w?.injector&&(0,e.gHi)(A);const P=m?w?.injector?.get(e.ktI)??(0,e.f3M)(e.ktI):null;let d;d=(0,e.tdS)(w?.requireSync?{kind:0}:{kind:1,value:w?.initialValue});const E=l.subscribe({next:M=>d.set({kind:1,value:M}),error:M=>{if(w?.rejectErrors)throw M;d.set({kind:2,error:M})}});return P?.onDestroy(E.unsubscribe.bind(E)),(0,e.Flj)(()=>{const M=d();switch(M.kind){case 1:return M.value;case 2:throw M.error;case 0:throw new e.vHH(601,"`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.")}})}},5766:(Fe,q,p)=>{"use strict";function e(E){for(let M in E){let I=E[M]??"";switch(M){case"display":E.display="flex"===I?["-webkit-flex","flex"]:"inline-flex"===I?["-webkit-inline-flex","inline-flex"]:I;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":E["-webkit-"+M]=I;break;case"flex-direction":E["-webkit-flex-direction"]=I,E["flex-direction"]=I;break;case"order":E.order=E["-webkit-"+M]=isNaN(+I)?"0":I}}return E}p.d(q,{Ar:()=>A,GK:()=>e,iQ:()=>y,kt:()=>d,tj:()=>w});const t="inline",y=["row","column","row-reverse","column-reverse"];function A(E){let[M,I,k]=l(E);return function P(E,M=null,I=!1){return{display:I?"inline-flex":"flex","box-sizing":"border-box","flex-direction":E,"flex-wrap":M||null}}(M,I,k)}function l(E){E=E?.toLowerCase()??"";let[M,I,k]=E.split(" ");return y.find(z=>z===M)||(M=y[0]),I===t&&(I=k!==t?k:"",k=t),[M,m(I),!!k]}function w(E){let[M]=l(E);return M.indexOf("row")>-1}function m(E){if(E)switch(E.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":E="wrap-reverse";break;case"no":case"none":case"nowrap":E="nowrap";break;default:E="wrap"}return E}function d(E,...M){if(null==E)throw TypeError("Cannot convert undefined or null to object");for(let I of M)if(null!=I)for(let k in I)I.hasOwnProperty(k)&&(E[k]=I[k]);return E}},1462:(Fe,q,p)=>{"use strict";p.d(q,{Bs:()=>X,FL:()=>te,IR:()=>k,Ot:()=>Qe,QI:()=>se,RK:()=>ue,WU:()=>j,g5:()=>W,iR:()=>Ct,wY:()=>K,yB:()=>Ze});var e=p(9212),t=p(6814),y=p(5619),A=p(5592),l=p(3019),w=p(8645),m=p(5766),P=p(2181),d=p(9397);const M={provide:e.tb,useFactory:function E(Ue,Bt){return()=>{if((0,t.NF)(Bt)){const Ye=Array.from(Ue.querySelectorAll(`[class*=${I}]`)),je=/\bflex-layout-.+?\b/g;Ye.forEach(Ft=>{Ft.classList.contains(`${I}ssr`)&&Ft.parentNode?Ft.parentNode.removeChild(Ft):Ft.className.replace(je,"")})}}},deps:[t.K0,e.Lbi],multi:!0},I="flex-layout-";let k=(()=>{class Ue{}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)},Ue.\u0275mod=e.oAB({type:Ue}),Ue.\u0275inj=e.cJS({providers:[M]}),Ue})();class z{constructor(Bt=!1,Ye="all",je="",Ft="",xt=0){this.matches=Bt,this.mediaQuery=Ye,this.mqAlias=je,this.suffix=Ft,this.priority=xt,this.property=""}clone(){return new z(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let B=(()=>{class Ue{constructor(){this.stylesheet=new Map}addStyleToElement(Ye,je,Ft){const xt=this.stylesheet.get(Ye);xt?xt.set(je,Ft):this.stylesheet.set(Ye,new Map([[je,Ft]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(Ye,je){const Ft=this.stylesheet.get(Ye);let xt="";if(Ft){const Ot=Ft.get(je);("number"==typeof Ot||"string"==typeof Ot)&&(xt=Ot+"")}return xt}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)},Ue.\u0275prov=e.Yz7({token:Ue,factory:Ue.\u0275fac,providedIn:"root"}),Ue})();const W={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},j=new e.OlP("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>W}),K=new e.OlP("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),X=new e.OlP("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ie(Ue,Bt){return Ue=Ue?.clone()??new z,Bt&&(Ue.mqAlias=Bt.alias,Ue.mediaQuery=Bt.mediaQuery,Ue.suffix=Bt.suffix,Ue.priority=Bt.priority),Ue}class se{constructor(){this.shouldCache=!0}sideEffect(Bt,Ye,je){}}let ue=(()=>{class Ue{constructor(Ye,je,Ft,xt){this._serverStylesheet=Ye,this._serverModuleLoaded=je,this._platformId=Ft,this.layoutConfig=xt}applyStyleToElement(Ye,je,Ft=null){let xt={};"string"==typeof je&&(xt[je]=Ft,je=xt),xt=this.layoutConfig.disableVendorPrefixes?je:(0,m.GK)(je),this._applyMultiValueStyleToElement(xt,Ye)}applyStyleToElements(Ye,je=[]){const Ft=this.layoutConfig.disableVendorPrefixes?Ye:(0,m.GK)(Ye);je.forEach(xt=>{this._applyMultiValueStyleToElement(Ft,xt)})}getFlowDirection(Ye){const je="flex-direction";let Ft=this.lookupStyle(Ye,je);return[Ft||"row",this.lookupInlineStyle(Ye,je)||(0,t.PM)(this._platformId)&&this._serverModuleLoaded?Ft:""]}hasWrap(Ye){return"wrap"===this.lookupStyle(Ye,"flex-wrap")}lookupAttributeValue(Ye,je){return Ye.getAttribute(je)??""}lookupInlineStyle(Ye,je){return(0,t.NF)(this._platformId)?Ye.style.getPropertyValue(je):function ae(Ue,Bt){return he(Ue)[Bt]??""}(Ye,je)}lookupStyle(Ye,je,Ft=!1){let xt="";return Ye&&((xt=this.lookupInlineStyle(Ye,je))||((0,t.NF)(this._platformId)?Ft||(xt=getComputedStyle(Ye).getPropertyValue(je)):this._serverModuleLoaded&&(xt=this._serverStylesheet.getStyleForElement(Ye,je)))),xt?xt.trim():""}_applyMultiValueStyleToElement(Ye,je){Object.keys(Ye).sort().forEach(Ft=>{const xt=Ye[Ft],Ot=Array.isArray(xt)?xt:[xt];Ot.sort();for(let yt of Ot)yt=yt?yt+"":"",(0,t.NF)(this._platformId)||!this._serverModuleLoaded?(0,t.NF)(this._platformId)?je.style.setProperty(Ft,yt):Me(je,Ft,yt):this._serverStylesheet.addStyleToElement(je,Ft,yt)})}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)(e.LFG(B),e.LFG(K),e.LFG(e.Lbi),e.LFG(j))},Ue.\u0275prov=e.Yz7({token:Ue,factory:Ue.\u0275fac,providedIn:"root"}),Ue})();function Me(Ue,Bt,Ye){Bt=Bt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const je=he(Ue);je[Bt]=Ye??"",function J(Ue,Bt){let Ye="";for(const je in Bt)Bt[je]&&(Ye+=`${je}:${Bt[je]};`);Ue.setAttribute("style",Ye)}(Ue,je)}function he(Ue){const Bt={},Ye=Ue.getAttribute("style");if(Ye){const je=Ye.split(/;+/g);for(let Ft=0;Ft0){const Ot=xt.indexOf(":");if(-1===Ot)throw new Error(`Invalid CSS style: ${xt}`);Bt[xt.substr(0,Ot).trim()]=xt.substr(Ot+1).trim()}}}return Bt}function S(Ue,Bt){return(Bt&&Bt.priority||0)-(Ue&&Ue.priority||0)}function n(Ue,Bt){return(Ue.priority||0)-(Bt.priority||0)}let s=(()=>{class Ue{constructor(Ye,je,Ft){this._zone=Ye,this._platformId=je,this._document=Ft,this.source=new y.X(new z(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const Ye=[];return this.registry.forEach((je,Ft)=>{je.matches&&Ye.push(Ft)}),Ye}isActive(Ye){return this.registry.get(Ye)?.matches??this.registerQuery(Ye).some(Ft=>Ft.matches)}observe(Ye,je=!1){if(Ye&&Ye.length){const Ft=this._observable$.pipe((0,P.h)(Ot=>!je||Ye.indexOf(Ot.mediaQuery)>-1)),xt=new A.y(Ot=>{const yt=this.registerQuery(Ye);if(yt.length){const at=yt.pop();yt.forEach(Ee=>{Ot.next(Ee)}),this.source.next(at)}Ot.complete()});return(0,l.T)(xt,Ft)}return this._observable$}registerQuery(Ye){const je=Array.isArray(Ye)?Ye:[Ye],Ft=[];return function h(Ue,Bt){const Ye=Ue.filter(je=>!f[je]);if(Ye.length>0){const je=Ye.join(", ");try{const Ft=Bt.createElement("style");Ft.setAttribute("type","text/css"),Ft.styleSheet||Ft.appendChild(Bt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${je} {.fx-query-test{ }}\n`)),Bt.head.appendChild(Ft),Ye.forEach(xt=>f[xt]=Ft)}catch(Ft){console.error(Ft)}}}(je,this._document),je.forEach(xt=>{const Ot=at=>{this._zone.run(()=>this.source.next(new z(at.matches,xt)))};let yt=this.registry.get(xt);yt||(yt=this.buildMQL(xt),yt.addListener(Ot),this.pendingRemoveListenerFns.push(()=>yt.removeListener(Ot)),this.registry.set(xt,yt)),yt.matches&&Ft.push(new z(!0,xt))}),Ft}ngOnDestroy(){let Ye;for(;Ye=this.pendingRemoveListenerFns.pop();)Ye()}buildMQL(Ye){return function D(Ue,Bt){return Bt&&window.matchMedia("all").addListener?window.matchMedia(Ue):function C(Ue){const Bt=new EventTarget;return Bt.matches="all"===Ue||""===Ue,Bt.media=Ue,Bt.addListener=()=>{},Bt.removeListener=()=>{},Bt.addEventListener=()=>{},Bt.dispatchEvent=()=>!1,Bt.onchange=null,Bt}(Ue)}(Ye,(0,t.NF)(this._platformId))}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)(e.LFG(e.R0b),e.LFG(e.Lbi),e.LFG(t.K0))},Ue.\u0275prov=e.Yz7({token:Ue,factory:Ue.\u0275fac,providedIn:"root"}),Ue})();const f={},O=[{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}],v="(orientation: portrait) and (max-width: 599.98px)",r="(orientation: landscape) and (max-width: 959.98px)",g="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",H="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",R="(orientation: portrait) and (min-width: 840px)",ee="(orientation: landscape) and (min-width: 1280px)",De={HANDSET:`${v}, ${r}`,TABLET:`${g} , ${H}`,WEB:`${R}, ${ee} `,HANDSET_PORTRAIT:`${v}`,TABLET_PORTRAIT:`${g} `,WEB_PORTRAIT:`${R}`,HANDSET_LANDSCAPE:`${r}`,TABLET_LANDSCAPE:`${H}`,WEB_LANDSCAPE:`${ee}`},ct=[{alias:"handset",priority:2e3,mediaQuery:De.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:De.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:De.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:De.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:De.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:De.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:De.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:De.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:De.WEB_PORTRAIT,overlapping:!0}],Ke=/(\.|-|_)/g;function Je(Ue){let Bt=Ue.length>0?Ue.charAt(0):"",Ye=Ue.length>1?Ue.slice(1):"";return Bt.toUpperCase()+Ye}const xe=new e.OlP("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Ue=(0,e.f3M)(X),Bt=(0,e.f3M)(j),Ye=[].concat.apply([],(Ue||[]).map(Ft=>Array.isArray(Ft)?Ft:[Ft]));return function de(Ue,Bt=[]){const Ye={};return Ue.forEach(je=>{Ye[je.alias]=je}),Bt.forEach(je=>{Ye[je.alias]?(0,m.kt)(Ye[je.alias],je):Ye[je.alias]=je}),function fe(Ue){return Ue.forEach(Bt=>{Bt.suffix||(Bt.suffix=function ye(Ue){return Ue.replace(Ke,"|").split("|").map(Je).join("")}(Bt.alias),Bt.overlapping=!!Bt.overlapping)}),Ue}(Object.keys(Ye).map(je=>Ye[je]))}((Bt.disableDefaultBps?[]:O).concat(Bt.addOrientationBps?ct:[]),Ye)}});let le=(()=>{class Ue{constructor(Ye){this.findByMap=new Map,this.items=[...Ye].sort(n)}findByAlias(Ye){return Ye?this.findWithPredicate(Ye,je=>je.alias===Ye):null}findByQuery(Ye){return this.findWithPredicate(Ye,je=>je.mediaQuery===Ye)}get overlappings(){return this.items.filter(Ye=>Ye.overlapping)}get aliases(){return this.items.map(Ye=>Ye.alias)}get suffixes(){return this.items.map(Ye=>Ye?.suffix??"")}findWithPredicate(Ye,je){let Ft=this.findByMap.get(Ye);return Ft||(Ft=this.items.find(je)??null,this.findByMap.set(Ye,Ft)),Ft??null}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)(e.LFG(xe))},Ue.\u0275prov=e.Yz7({token:Ue,factory:Ue.\u0275fac,providedIn:"root"}),Ue})();const pe="print",qe={alias:pe,mediaQuery:pe,priority:1e3};let re=(()=>{class Ue{constructor(Ye,je,Ft){this.breakpoints=Ye,this.layoutConfig=je,this._document=Ft,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new ve,this.deactivations=[]}withPrintQuery(Ye){return[...Ye,pe]}isPrintEvent(Ye){return Ye.mediaQuery.startsWith(pe)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(Ye=>this.breakpoints.findByAlias(Ye)).filter(Ye=>null!==Ye)}getEventBreakpoints({mediaQuery:Ye}){const je=this.breakpoints.findByQuery(Ye);return(je?[...this.printBreakPoints,je]:this.printBreakPoints).sort(S)}updateEvent(Ye){let je=this.breakpoints.findByQuery(Ye.mediaQuery);return this.isPrintEvent(Ye)&&(je=this.getEventBreakpoints(Ye)[0],Ye.mediaQuery=je?.mediaQuery??""),ie(Ye,je)}registerBeforeAfterPrintHooks(Ye){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const je=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(Ye,this.getEventBreakpoints(new z(!0,pe))),Ye.updateStyles())},Ft=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(Ye),Ye.updateStyles())};this._document.defaultView.addEventListener("beforeprint",je),this._document.defaultView.addEventListener("afterprint",Ft),this.beforePrintEventListeners.push(je),this.afterPrintEventListeners.push(Ft)}interceptEvents(Ye){return je=>{this.isPrintEvent(je)?je.matches&&!this.isPrinting?(this.startPrinting(Ye,this.getEventBreakpoints(je)),Ye.updateStyles()):!je.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(Ye),Ye.updateStyles()):this.collectActivations(Ye,je)}}blockPropagation(){return Ye=>!(this.isPrinting||this.isPrintEvent(Ye))}startPrinting(Ye,je){this.isPrinting=!0,this.formerActivations=Ye.activatedBreakpoints,Ye.activatedBreakpoints=this.queue.addPrintBreakpoints(je)}stopPrinting(Ye){Ye.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(Ye,je){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!je.matches){const Ft=this.breakpoints.findByQuery(je.mediaQuery);if(Ft){const xt=this.formerActivations&&this.formerActivations.includes(Ft),Ot=!this.formerActivations&&Ye.activatedBreakpoints.includes(Ft);(xt||Ot)&&(this.deactivations.push(Ft),this.deactivations.sort(S))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(Ye=>this._document.defaultView.removeEventListener("beforeprint",Ye)),this.afterPrintEventListeners.forEach(Ye=>this._document.defaultView.removeEventListener("afterprint",Ye)))}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)(e.LFG(le),e.LFG(j),e.LFG(t.K0))},Ue.\u0275prov=e.Yz7({token:Ue,factory:Ue.\u0275fac,providedIn:"root"}),Ue})();class ve{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Bt){return Bt.push(qe),Bt.sort(S),Bt.forEach(Ye=>this.addBreakpoint(Ye)),this.printBreakpoints}addBreakpoint(Bt){Bt&&void 0===this.printBreakpoints.find(je=>je.mediaQuery===Bt.mediaQuery)&&(this.printBreakpoints=function ce(Ue){return Ue?.mediaQuery.startsWith(pe)??!1}(Bt)?[Bt,...this.printBreakpoints]:[...this.printBreakpoints,Bt])}clear(){this.printBreakpoints=[]}}let Ze=(()=>{class Ue{constructor(Ye,je,Ft){this.matchMedia=Ye,this.breakpoints=je,this.hook=Ft,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 w.x,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(Ye){this._activatedBreakpoints=[...Ye]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(Ye){this._useFallbacks=Ye}onMediaChange(Ye){const je=this.findByQuery(Ye.mediaQuery);if(je){Ye=ie(Ye,je);const Ft=this.activatedBreakpoints.indexOf(je);Ye.matches&&-1===Ft?(this._activatedBreakpoints.push(je),this._activatedBreakpoints.sort(S),this.updateStyles()):!Ye.matches&&-1!==Ft&&(this._activatedBreakpoints.splice(Ft,1),this._activatedBreakpoints.sort(S),this.updateStyles())}}init(Ye,je,Ft,xt,Ot=[]){We(this.updateMap,Ye,je,Ft),We(this.clearMap,Ye,je,xt),this.buildElementKeyMap(Ye,je),this.watchExtraTriggers(Ye,je,Ot)}getValue(Ye,je,Ft){const xt=this.elementMap.get(Ye);if(xt){const Ot=void 0!==Ft?xt.get(Ft):this.getActivatedValues(xt,je);if(Ot)return Ot.get(je)}}hasValue(Ye,je){const Ft=this.elementMap.get(Ye);if(Ft){const xt=this.getActivatedValues(Ft,je);if(xt)return void 0!==xt.get(je)||!1}return!1}setValue(Ye,je,Ft,xt){let Ot=this.elementMap.get(Ye);if(Ot){const at=(Ot.get(xt)??new Map).set(je,Ft);Ot.set(xt,at),this.elementMap.set(Ye,Ot)}else Ot=(new Map).set(xt,(new Map).set(je,Ft)),this.elementMap.set(Ye,Ot);const yt=this.getValue(Ye,je);void 0!==yt&&this.updateElement(Ye,je,yt)}trackValue(Ye,je){return this.subject.asObservable().pipe((0,P.h)(Ft=>Ft.element===Ye&&Ft.key===je))}updateStyles(){this.elementMap.forEach((Ye,je)=>{const Ft=new Set(this.elementKeyMap.get(je));let xt=this.getActivatedValues(Ye);xt&&xt.forEach((Ot,yt)=>{this.updateElement(je,yt,Ot),Ft.delete(yt)}),Ft.forEach(Ot=>{if(xt=this.getActivatedValues(Ye,Ot),xt){const yt=xt.get(Ot);this.updateElement(je,Ot,yt)}else this.clearElement(je,Ot)})})}clearElement(Ye,je){const Ft=this.clearMap.get(Ye);if(Ft){const xt=Ft.get(je);xt&&(xt(),this.subject.next({element:Ye,key:je,value:""}))}}updateElement(Ye,je,Ft){const xt=this.updateMap.get(Ye);if(xt){const Ot=xt.get(je);Ot&&(Ot(Ft),this.subject.next({element:Ye,key:je,value:Ft}))}}releaseElement(Ye){const je=this.watcherMap.get(Ye);je&&(je.forEach(xt=>xt.unsubscribe()),this.watcherMap.delete(Ye));const Ft=this.elementMap.get(Ye);Ft&&(Ft.forEach((xt,Ot)=>Ft.delete(Ot)),this.elementMap.delete(Ye))}triggerUpdate(Ye,je){const Ft=this.elementMap.get(Ye);if(Ft){const xt=this.getActivatedValues(Ft,je);xt&&(je?this.updateElement(Ye,je,xt.get(je)):xt.forEach((Ot,yt)=>this.updateElement(Ye,yt,Ot)))}}buildElementKeyMap(Ye,je){let Ft=this.elementKeyMap.get(Ye);Ft||(Ft=new Set,this.elementKeyMap.set(Ye,Ft)),Ft.add(je)}watchExtraTriggers(Ye,je,Ft){if(Ft&&Ft.length){let xt=this.watcherMap.get(Ye);if(xt||(xt=new Map,this.watcherMap.set(Ye,xt)),!xt.get(je)){const yt=(0,l.T)(...Ft).subscribe(()=>{const at=this.getValue(Ye,je);this.updateElement(Ye,je,at)});xt.set(je,yt)}}}findByQuery(Ye){return this.breakpoints.findByQuery(Ye)}getActivatedValues(Ye,je){for(let xt=0;xtje.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(Ye)).pipe((0,d.b)(this.hook.interceptEvents(this)),(0,P.h)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)(e.LFG(s),e.LFG(le),e.LFG(re))},Ue.\u0275prov=e.Yz7({token:Ue,factory:Ue.\u0275fac,providedIn:"root"}),Ue})();function We(Ue,Bt,Ye,je){if(void 0!==je){const Ft=Ue.get(Bt)??new Map;Ft.set(Ye,je),Ue.set(Bt,Ft)}}let Ct=(()=>{class Ue{constructor(Ye,je,Ft,xt){this.elementRef=Ye,this.styleBuilder=je,this.styler=Ft,this.marshal=xt,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new w.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(Ye){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ye,this.marshal.activatedAlias)}ngOnChanges(Ye){Object.keys(Ye).forEach(je=>{if(-1!==this.inputs.indexOf(je)){const Ft=je.split(".").slice(1).join(".");this.setValue(Ye[je].currentValue,Ft)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(Ye=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),Ye)}addStyles(Ye,je){const Ft=this.styleBuilder,xt=Ft.shouldCache;let Ot=this.styleCache.get(Ye);(!Ot||!xt)&&(Ot=Ft.buildStyles(Ye,je),xt&&this.styleCache.set(Ye,Ot)),this.mru={...Ot},this.applyStyleToElement(Ot),Ft.sideEffect(Ye,Ot,je)}clearStyles(){Object.keys(this.mru).forEach(Ye=>{this.mru[Ye]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(Ye,je=!1){if(Ye){const[Ft,xt]=this.styler.getFlowDirection(Ye);if(!xt&&je){const Ot=(0,m.Ar)(Ft);this.styler.applyStyleToElements(Ot,[Ye])}return Ft.trim()}return"row"}hasWrap(Ye){return this.styler.hasWrap(Ye)}applyStyleToElement(Ye,je,Ft=this.nativeElement){this.styler.applyStyleToElement(Ft,Ye,je)}setValue(Ye,je){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ye,je)}updateWithValue(Ye){this.currentValue!==Ye&&(this.addStyles(Ye),this.currentValue=Ye)}}return Ue.\u0275fac=function(Ye){return new(Ye||Ue)(e.Y36(e.SBq),e.Y36(se),e.Y36(ue),e.Y36(Ze))},Ue.\u0275dir=e.lG2({type:Ue,features:[e.TTD]}),Ue})();function Qe(Ue,Bt="1",Ye="1"){let je=[Bt,Ye,Ue],Ft=Ue.indexOf("calc");if(Ft>0){je[2]=St(Ue.substring(Ft).trim());let xt=Ue.substr(0,Ft).trim().split(" ");2==xt.length&&(je[0]=xt[0],je[1]=xt[1])}else if(0==Ft)je[2]=St(Ue.trim());else{let xt=Ue.split(" ");je=3===xt.length?xt:[Bt,Ye,Ue]}return je}function St(Ue){return Ue.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const dt="x";function te(Ue,Bt){if(void 0===Bt)return Ue;const Ye=je=>{const Ft=+je.slice(0,-dt.length);return Ue.endsWith(dt)&&!isNaN(Ft)?`${Ft*Bt.value}${Bt.unit}`:Ue};return Ue.includes(" ")?Ue.split(" ").map(Ye).join(" "):Ye(Ue)}},7509:(Fe,q,p)=>{"use strict";p.d(q,{Zl:()=>D,aT:()=>r,oO:()=>W});var e=p(9212),t=p(1462),y=p(6814),w=(p(2495),p(9773),p(6593));let k=(()=>{class g extends t.iR{constructor(R,ee,De,ct,Ke,Je,ye){super(R,null,ee,De),this.ngClassInstance=ye,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new y.mk(ct,Ke,R,Je)),this.init(),this.setValue("","")}set klass(R){this.ngClassInstance.klass=R,this.setValue(R,"")}updateWithValue(R){this.ngClassInstance.ngClass=R,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return g.\u0275fac=function(R){return new(R||g)(e.Y36(e.SBq),e.Y36(t.RK),e.Y36(t.yB),e.Y36(e.ZZ4),e.Y36(e.aQg),e.Y36(e.Qsj),e.Y36(y.mk,10))},g.\u0275dir=e.lG2({type:g,inputs:{klass:["class","klass"]},features:[e.qOj]}),g})();const z=["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 W=(()=>{class g extends k{constructor(){super(...arguments),this.inputs=z}}return g.\u0275fac=(()=>{let H;return function(ee){return(H||(H=e.n5z(g)))(ee||g)}})(),g.\u0275dir=e.lG2({type:g,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:[e.qOj]}),g})();class ae{constructor(H,R,ee=!0){this.key=H,this.value=R,this.key=ee?H.replace(/['"]/g,"").trim():H.trim(),this.value=ee?R.replace(/['"]/g,"").trim():R.trim(),this.value=this.value.replace(/;/,"")}}function Me(g){let H=typeof g;return"object"===H?g.constructor===Array?"array":g.constructor===Set?"set":"object":H}function n(g){const[H,...R]=g.split(":");return new ae(H,R.join(":"))}function s(g,H){return H.key&&(g[H.key]=H.value),g}let f=(()=>{class g extends t.iR{constructor(R,ee,De,ct,Ke,Je,ye,fe,de){super(R,null,ee,De),this.sanitizer=ct,this.ngStyleInstance=ye,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new y.PC(R,Ke,Je)),this.init();const xe=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(xe),this.isServer=fe&&(0,y.PM)(de)}updateWithValue(R){const ee=this.buildStyleMap(R);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...ee},this.isServer&&this.applyStyleToElement(ee),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(R){const ee=De=>this.sanitizer.sanitize(e.q3G.STYLE,De)??"";if(R)switch(Me(R)){case"string":return O(function J(g,H=";"){return String(g).trim().split(H).map(R=>R.trim()).filter(R=>""!==R)}(R),ee);case"array":return O(R,ee);default:return function S(g,H){let R=[];return"set"===Me(g)?g.forEach(ee=>R.push(ee)):Object.keys(g).forEach(ee=>{R.push(`${ee}:${g[ee]}`)}),function he(g,H){return g.map(n).filter(ee=>!!ee).map(ee=>(H&&(ee.value=H(ee.value)),ee)).reduce(s,{})}(R,H)}(R,ee)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return g.\u0275fac=function(R){return new(R||g)(e.Y36(e.SBq),e.Y36(t.RK),e.Y36(t.yB),e.Y36(w.H7),e.Y36(e.aQg),e.Y36(e.Qsj),e.Y36(y.PC,10),e.Y36(t.wY),e.Y36(e.Lbi))},g.\u0275dir=e.lG2({type:g,features:[e.qOj]}),g})();const h=["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 D=(()=>{class g extends f{constructor(){super(...arguments),this.inputs=h}}return g.\u0275fac=(()=>{let H;return function(ee){return(H||(H=e.n5z(g)))(ee||g)}})(),g.\u0275dir=e.lG2({type:g,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:[e.qOj]}),g})();function O(g,H){return g.map(n).filter(ee=>!!ee).map(ee=>(H&&(ee.value=H(ee.value)),ee)).reduce(s,{})}let r=(()=>{class g{}return g.\u0275fac=function(R){return new(R||g)},g.\u0275mod=e.oAB({type:g}),g.\u0275inj=e.cJS({imports:[t.IR]}),g})()},3814:(Fe,q,p)=>{"use strict";p.d(q,{Wh:()=>Qe,ae:()=>Ot,xw:()=>M,yH:()=>C});var e=p(9212),t=p(9388),y=p(1462),A=p(5766),w=(p(8645),p(9773));let m=(()=>{class yt extends y.QI{buildStyles(Ee,{display:nt}){const Ge=(0,A.Ar)(Ee);return{...Ge,display:"none"===nt?nt:Ge.display}}}return yt.\u0275fac=(()=>{let at;return function(nt){return(at||(at=e.n5z(yt)))(nt||yt)}})(),yt.\u0275prov=e.Yz7({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();const P=["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 E=(()=>{class yt extends y.iR{constructor(Ee,nt,Ge,Xe,gt){super(Ee,Ge,nt,Xe),this._config=gt,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Ee){const Ge=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=I.get(Ge)??new Map,I.set(Ge,this.styleCache),this.currentValue!==Ee&&(this.addStyles(Ee,{display:Ge}),this.currentValue=Ee)}}return yt.\u0275fac=function(Ee){return new(Ee||yt)(e.Y36(e.SBq),e.Y36(y.RK),e.Y36(m),e.Y36(y.yB),e.Y36(y.WU))},yt.\u0275dir=e.lG2({type:yt,features:[e.qOj]}),yt})(),M=(()=>{class yt extends E{constructor(){super(...arguments),this.inputs=P}}return yt.\u0275fac=(()=>{let at;return function(nt){return(at||(at=e.n5z(yt)))(nt||yt)}})(),yt.\u0275dir=e.lG2({type:yt,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:[e.qOj]}),yt})();const I=new Map;let n=(()=>{class yt extends y.QI{constructor(Ee){super(),this.layoutConfig=Ee}buildStyles(Ee,nt){let[Ge,Xe,...gt]=Ee.split(" "),Le=gt.join(" ");const be=nt.direction.indexOf("column")>-1?"column":"row",$=(0,A.tj)(be)?"max-width":"max-height",ne=(0,A.tj)(be)?"min-width":"min-height",ke=String(Le).indexOf("calc")>-1,Nt=ke||"auto"===Le,At=String(Le).indexOf("%")>-1&&!ke,Wt=String(Le).indexOf("px")>-1||String(Le).indexOf("rem")>-1||String(Le).indexOf("em")>-1||String(Le).indexOf("vw")>-1||String(Le).indexOf("vh")>-1;let gi=ke||Wt;Ge="0"==Ge?0:Ge,Xe="0"==Xe?0:Xe;const ei=!Ge&&!Xe;let $t={};const Fi={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Le||""){case"":Le="row"===be?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":Ge=0,Le="auto";break;case"grow":Le="100%";break;case"noshrink":Xe=0,Le="auto";break;case"auto":break;case"none":Ge=0,Xe=0,Le="auto";break;default:!gi&&!At&&!isNaN(Le)&&(Le+="%"),"0%"===Le&&(gi=!0),"0px"===Le&&(Le="0%"),$t=(0,A.kt)(Fi,ke?{"flex-grow":Ge,"flex-shrink":Xe,"flex-basis":gi?Le:"100%"}:{flex:`${Ge} ${Xe} ${gi?Le:"100%"}`})}return $t.flex||$t["flex-grow"]||($t=(0,A.kt)(Fi,ke?{"flex-grow":Ge,"flex-shrink":Xe,"flex-basis":Le}:{flex:`${Ge} ${Xe} ${Le}`})),"0%"!==Le&&"0px"!==Le&&"0.000000001px"!==Le&&"auto"!==Le&&($t[ne]=ei||gi&&Ge?Le:null,$t[$]=ei||!Nt&&Xe?Le:null),$t[ne]||$t[$]?nt.hasWrap&&($t[ke?"flex-basis":"flex"]=$t[$]?ke?$t[$]:`${Ge} ${Xe} ${$t[$]}`:ke?$t[ne]:`${Ge} ${Xe} ${$t[ne]}`):$t=(0,A.kt)(Fi,ke?{"flex-grow":Ge,"flex-shrink":Xe,"flex-basis":Le}:{flex:`${Ge} ${Xe} ${Le}`}),(0,A.kt)($t,{"box-sizing":"border-box"})}}return yt.\u0275fac=function(Ee){return new(Ee||yt)(e.LFG(y.WU))},yt.\u0275prov=e.Yz7({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();const s=["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 h=(()=>{class yt extends y.iR{constructor(Ee,nt,Ge,Xe,gt){super(Ee,Xe,nt,gt),this.layoutConfig=Ge,this.marshal=gt,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(Ee){this.flexShrink=Ee||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Ee){this.flexGrow=Ee||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,w.R)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,w.R)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Ee){const Ge=Ee.value.split(" ");this.direction=Ge[0],this.wrap=void 0!==Ge[1]&&"wrap"===Ge[1],this.triggerUpdate()}updateWithValue(Ee){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 Ge=this.direction,Xe=Ge.startsWith("row"),gt=this.wrap;Xe&>?this.styleCache=v:Xe&&!gt?this.styleCache=D:!Xe&>?this.styleCache=r:!Xe&&!gt&&(this.styleCache=O);const Le=String(Ee).replace(";",""),be=(0,y.Ot)(Le,this.flexGrow,this.flexShrink);this.addStyles(be.join(" "),{direction:Ge,hasWrap:gt})}triggerReflow(){const Ee=this.activatedValue;if(void 0!==Ee){const nt=(0,y.Ot)(Ee+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,nt.join(" "))}}}return yt.\u0275fac=function(Ee){return new(Ee||yt)(e.Y36(e.SBq),e.Y36(y.RK),e.Y36(y.WU),e.Y36(n),e.Y36(y.yB))},yt.\u0275dir=e.lG2({type:yt,inputs:{shrink:["fxShrink","shrink"],grow:["fxGrow","grow"]},features:[e.qOj]}),yt})(),C=(()=>{class yt extends h{constructor(){super(...arguments),this.inputs=s}}return yt.\u0275fac=(()=>{let at;return function(nt){return(at||(at=e.n5z(yt)))(nt||yt)}})(),yt.\u0275dir=e.lG2({type:yt,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:[e.qOj]}),yt})();const D=new Map,O=new Map,v=new Map,r=new Map;let rt=(()=>{class yt extends y.QI{buildStyles(Ee,nt){const Ge={},[Xe,gt]=Ee.split(" ");switch(Xe){case"center":Ge["justify-content"]="center";break;case"space-around":Ge["justify-content"]="space-around";break;case"space-between":Ge["justify-content"]="space-between";break;case"space-evenly":Ge["justify-content"]="space-evenly";break;case"end":case"flex-end":Ge["justify-content"]="flex-end";break;default:Ge["justify-content"]="flex-start"}switch(gt){case"start":case"flex-start":Ge["align-items"]=Ge["align-content"]="flex-start";break;case"center":Ge["align-items"]=Ge["align-content"]="center";break;case"end":case"flex-end":Ge["align-items"]=Ge["align-content"]="flex-end";break;case"space-between":Ge["align-content"]="space-between",Ge["align-items"]="stretch";break;case"space-around":Ge["align-content"]="space-around",Ge["align-items"]="stretch";break;case"baseline":Ge["align-content"]="stretch",Ge["align-items"]="baseline";break;default:Ge["align-items"]=Ge["align-content"]="stretch"}return(0,A.kt)(Ge,{display:nt.inline?"inline-flex":"flex","flex-direction":nt.layout,"box-sizing":"border-box","max-width":"stretch"===gt?(0,A.tj)(nt.layout)?null:"100%":null,"max-height":"stretch"===gt&&(0,A.tj)(nt.layout)?"100%":null})}}return yt.\u0275fac=(()=>{let at;return function(nt){return(at||(at=e.n5z(yt)))(nt||yt)}})(),yt.\u0275prov=e.Yz7({token:yt,factory:yt.\u0275fac,providedIn:"root"}),yt})();const $e=["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 lt=(()=>{class yt extends y.iR{constructor(Ee,nt,Ge,Xe){super(Ee,Ge,nt,Xe),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,w.R)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Ee){const nt=this.layout||"row",Ge=this.inline;"row"===nt&&Ge?this.styleCache=Bt:"row"!==nt||Ge?"row-reverse"===nt&&Ge?this.styleCache=je:"row-reverse"!==nt||Ge?"column"===nt&&Ge?this.styleCache=Ye:"column"!==nt||Ge?"column-reverse"===nt&&Ge?this.styleCache=Ft:"column-reverse"===nt&&!Ge&&(this.styleCache=Ue):this.styleCache=dt:this.styleCache=te:this.styleCache=St,this.addStyles(Ee,{layout:nt,inline:Ge})}onLayoutChange(Ee){const nt=Ee.value.split(" ");this.layout=nt[0],this.inline=Ee.value.includes("inline"),A.iQ.find(Ge=>Ge===this.layout)||(this.layout="row"),this.triggerUpdate()}}return yt.\u0275fac=function(Ee){return new(Ee||yt)(e.Y36(e.SBq),e.Y36(y.RK),e.Y36(rt),e.Y36(y.yB))},yt.\u0275dir=e.lG2({type:yt,features:[e.qOj]}),yt})(),Qe=(()=>{class yt extends lt{constructor(){super(...arguments),this.inputs=$e}}return yt.\u0275fac=(()=>{let at;return function(nt){return(at||(at=e.n5z(yt)))(nt||yt)}})(),yt.\u0275dir=e.lG2({type:yt,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:[e.qOj]}),yt})();const St=new Map,dt=new Map,te=new Map,Ue=new Map,Bt=new Map,Ye=new Map,je=new Map,Ft=new Map;let Ot=(()=>{class yt{}return yt.\u0275fac=function(Ee){return new(Ee||yt)},yt.\u0275mod=e.oAB({type:yt}),yt.\u0275inj=e.cJS({imports:[y.IR,t.vT]}),yt})()},6223:(Fe,q,p)=>{"use strict";p.d(q,{Cf:()=>j,F:()=>Se,Fd:()=>oo,Fj:()=>z,JJ:()=>ve,JL:()=>ce,JU:()=>P,On:()=>zt,Q7:()=>_a,QS:()=>ar,UX:()=>Ba,Zs:()=>Fo,_Y:()=>pi,a5:()=>le,kI:()=>ie,oH:()=>ma,p4:()=>Yt,qQ:()=>vo,qu:()=>Zi,sg:()=>Fa,u:()=>Lr,u5:()=>sn,wV:()=>Ci});var e=p(9212),t=p(6814),y=p(9666),A=p(9315),l=p(7398);let w=(()=>{class ht{constructor(ze,vt){this._renderer=ze,this._elementRef=vt,this.onChange=Jt=>{},this.onTouched=()=>{}}setProperty(ze,vt){this._renderer.setProperty(this._elementRef.nativeElement,ze,vt)}registerOnTouched(ze){this.onTouched=ze}registerOnChange(ze){this.onChange=ze}setDisabledState(ze){this.setProperty("disabled",ze)}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(e.Qsj),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:ht})}return ht})(),m=(()=>{class ht extends w{static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275dir=e.lG2({type:ht,features:[e.qOj]})}return ht})();const P=new e.OlP("NgValueAccessor"),M={provide:P,useExisting:(0,e.Gpc)(()=>z),multi:!0},k=new e.OlP("CompositionEventMode");let z=(()=>{class ht extends w{constructor(ze,vt,Jt){super(ze,vt),this._compositionMode=Jt,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function I(){const ht=(0,t.q)()?(0,t.q)().getUserAgent():"";return/android (\d+)/.test(ht.toLowerCase())}())}writeValue(ze){this.setProperty("value",ze??"")}_handleInput(ze){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(ze)}_compositionStart(){this._composing=!0}_compositionEnd(ze){this._composing=!1,this._compositionMode&&this.onChange(ze)}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(e.Qsj),e.Y36(e.SBq),e.Y36(k,8))};static#t=this.\u0275dir=e.lG2({type:ht,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(vt,Jt){1&vt&&e.NdJ("input",function(xn){return Jt._handleInput(xn.target.value)})("blur",function(){return Jt.onTouched()})("compositionstart",function(){return Jt._compositionStart()})("compositionend",function(xn){return Jt._compositionEnd(xn.target.value)})},features:[e._Bn([M]),e.qOj]})}return ht})();function B(ht){return null==ht||("string"==typeof ht||Array.isArray(ht))&&0===ht.length}function W(ht){return null!=ht&&"number"==typeof ht.length}const j=new e.OlP("NgValidators"),K=new e.OlP("NgAsyncValidators"),X=/^(?=.{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 ie{static min(bt){return se(bt)}static max(bt){return ue(bt)}static required(bt){return ae(bt)}static requiredTrue(bt){return Me(bt)}static email(bt){return function J(ht){return B(ht.value)||X.test(ht.value)?null:{email:!0}}(bt)}static minLength(bt){return function he(ht){return bt=>B(bt.value)||!W(bt.value)?null:bt.value.lengthW(bt.value)&&bt.value.length>ht?{maxlength:{requiredLength:ht,actualLength:bt.value.length}}:null}(bt)}static pattern(bt){return function n(ht){if(!ht)return s;let bt,ze;return"string"==typeof ht?(ze="","^"!==ht.charAt(0)&&(ze+="^"),ze+=ht,"$"!==ht.charAt(ht.length-1)&&(ze+="$"),bt=new RegExp(ze)):(ze=ht.toString(),bt=ht),vt=>{if(B(vt.value))return null;const Jt=vt.value;return bt.test(Jt)?null:{pattern:{requiredPattern:ze,actualValue:Jt}}}}(bt)}static nullValidator(bt){return null}static compose(bt){return r(bt)}static composeAsync(bt){return H(bt)}}function se(ht){return bt=>{if(B(bt.value)||B(ht))return null;const ze=parseFloat(bt.value);return!isNaN(ze)&&ze{if(B(bt.value)||B(ht))return null;const ze=parseFloat(bt.value);return!isNaN(ze)&&ze>ht?{max:{max:ht,actual:bt.value}}:null}}function ae(ht){return B(ht.value)?{required:!0}:null}function Me(ht){return!0===ht.value?null:{required:!0}}function s(ht){return null}function f(ht){return null!=ht}function h(ht){return(0,e.QGY)(ht)?(0,y.D)(ht):ht}function C(ht){let bt={};return ht.forEach(ze=>{bt=null!=ze?{...bt,...ze}:bt}),0===Object.keys(bt).length?null:bt}function D(ht,bt){return bt.map(ze=>ze(ht))}function v(ht){return ht.map(bt=>function O(ht){return!ht.validate}(bt)?bt:ze=>bt.validate(ze))}function r(ht){if(!ht)return null;const bt=ht.filter(f);return 0==bt.length?null:function(ze){return C(D(ze,bt))}}function g(ht){return null!=ht?r(v(ht)):null}function H(ht){if(!ht)return null;const bt=ht.filter(f);return 0==bt.length?null:function(ze){const vt=D(ze,bt).map(h);return(0,A.D)(vt).pipe((0,l.U)(C))}}function R(ht){return null!=ht?H(v(ht)):null}function ee(ht,bt){return null===ht?[bt]:Array.isArray(ht)?[...ht,bt]:[ht,bt]}function De(ht){return ht._rawValidators}function ct(ht){return ht._rawAsyncValidators}function Ke(ht){return ht?Array.isArray(ht)?ht:[ht]:[]}function Je(ht,bt){return Array.isArray(ht)?ht.includes(bt):ht===bt}function ye(ht,bt){const ze=Ke(bt);return Ke(ht).forEach(Jt=>{Je(ze,Jt)||ze.push(Jt)}),ze}function fe(ht,bt){return Ke(bt).filter(ze=>!Je(ht,ze))}class de{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(bt){this._rawValidators=bt||[],this._composedValidatorFn=g(this._rawValidators)}_setAsyncValidators(bt){this._rawAsyncValidators=bt||[],this._composedAsyncValidatorFn=R(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(bt){this._onDestroyCallbacks.push(bt)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(bt=>bt()),this._onDestroyCallbacks=[]}reset(bt=void 0){this.control&&this.control.reset(bt)}hasError(bt,ze){return!!this.control&&this.control.hasError(bt,ze)}getError(bt,ze){return this.control?this.control.getError(bt,ze):null}}class xe extends de{get formDirective(){return null}get path(){return null}}class le extends de{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class pe{constructor(bt){this._cd=bt}get isTouched(){return!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return!!this._cd?.submitted}}let ve=(()=>{class ht extends pe{constructor(ze){super(ze)}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(le,2))};static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(vt,Jt){2&vt&&e.ekj("ng-untouched",Jt.isUntouched)("ng-touched",Jt.isTouched)("ng-pristine",Jt.isPristine)("ng-dirty",Jt.isDirty)("ng-valid",Jt.isValid)("ng-invalid",Jt.isInvalid)("ng-pending",Jt.isPending)},features:[e.qOj]})}return ht})(),ce=(()=>{class ht extends pe{constructor(ze){super(ze)}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(xe,10))};static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(vt,Jt){2&vt&&e.ekj("ng-untouched",Jt.isUntouched)("ng-touched",Jt.isTouched)("ng-pristine",Jt.isPristine)("ng-dirty",Jt.isDirty)("ng-valid",Jt.isValid)("ng-invalid",Jt.isInvalid)("ng-pending",Jt.isPending)("ng-submitted",Jt.isSubmitted)},features:[e.qOj]})}return ht})();const Ye="VALID",je="INVALID",Ft="PENDING",xt="DISABLED";function Ot(ht){return(nt(ht)?ht.validators:ht)||null}function at(ht,bt){return(nt(bt)?bt.asyncValidators:ht)||null}function nt(ht){return null!=ht&&!Array.isArray(ht)&&"object"==typeof ht}function Ge(ht,bt,ze){const vt=ht.controls;if(!(bt?Object.keys(vt):vt).length)throw new e.vHH(1e3,"");if(!vt[ze])throw new e.vHH(1001,"")}function Xe(ht,bt,ze){ht._forEachChild((vt,Jt)=>{if(void 0===ze[Jt])throw new e.vHH(1002,"")})}class gt{constructor(bt,ze){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=!1,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._onDisabledChange=[],this._assignValidators(bt),this._assignAsyncValidators(ze)}get validator(){return this._composedValidatorFn}set validator(bt){this._rawValidators=this._composedValidatorFn=bt}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(bt){this._rawAsyncValidators=this._composedAsyncValidatorFn=bt}get parent(){return this._parent}get valid(){return this.status===Ye}get invalid(){return this.status===je}get pending(){return this.status==Ft}get disabled(){return this.status===xt}get enabled(){return this.status!==xt}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(bt){this._assignValidators(bt)}setAsyncValidators(bt){this._assignAsyncValidators(bt)}addValidators(bt){this.setValidators(ye(bt,this._rawValidators))}addAsyncValidators(bt){this.setAsyncValidators(ye(bt,this._rawAsyncValidators))}removeValidators(bt){this.setValidators(fe(bt,this._rawValidators))}removeAsyncValidators(bt){this.setAsyncValidators(fe(bt,this._rawAsyncValidators))}hasValidator(bt){return Je(this._rawValidators,bt)}hasAsyncValidator(bt){return Je(this._rawAsyncValidators,bt)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(bt={}){this.touched=!0,this._parent&&!bt.onlySelf&&this._parent.markAsTouched(bt)}markAllAsTouched(){this.markAsTouched({onlySelf:!0}),this._forEachChild(bt=>bt.markAllAsTouched())}markAsUntouched(bt={}){this.touched=!1,this._pendingTouched=!1,this._forEachChild(ze=>{ze.markAsUntouched({onlySelf:!0})}),this._parent&&!bt.onlySelf&&this._parent._updateTouched(bt)}markAsDirty(bt={}){this.pristine=!1,this._parent&&!bt.onlySelf&&this._parent.markAsDirty(bt)}markAsPristine(bt={}){this.pristine=!0,this._pendingDirty=!1,this._forEachChild(ze=>{ze.markAsPristine({onlySelf:!0})}),this._parent&&!bt.onlySelf&&this._parent._updatePristine(bt)}markAsPending(bt={}){this.status=Ft,!1!==bt.emitEvent&&this.statusChanges.emit(this.status),this._parent&&!bt.onlySelf&&this._parent.markAsPending(bt)}disable(bt={}){const ze=this._parentMarkedDirty(bt.onlySelf);this.status=xt,this.errors=null,this._forEachChild(vt=>{vt.disable({...bt,onlySelf:!0})}),this._updateValue(),!1!==bt.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...bt,skipPristineCheck:ze}),this._onDisabledChange.forEach(vt=>vt(!0))}enable(bt={}){const ze=this._parentMarkedDirty(bt.onlySelf);this.status=Ye,this._forEachChild(vt=>{vt.enable({...bt,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:bt.emitEvent}),this._updateAncestors({...bt,skipPristineCheck:ze}),this._onDisabledChange.forEach(vt=>vt(!1))}_updateAncestors(bt){this._parent&&!bt.onlySelf&&(this._parent.updateValueAndValidity(bt),bt.skipPristineCheck||this._parent._updatePristine(),this._parent._updateTouched())}setParent(bt){this._parent=bt}getRawValue(){return this.value}updateValueAndValidity(bt={}){this._setInitialStatus(),this._updateValue(),this.enabled&&(this._cancelExistingSubscription(),this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===Ye||this.status===Ft)&&this._runAsyncValidator(bt.emitEvent)),!1!==bt.emitEvent&&(this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!bt.onlySelf&&this._parent.updateValueAndValidity(bt)}_updateTreeValidity(bt={emitEvent:!0}){this._forEachChild(ze=>ze._updateTreeValidity(bt)),this.updateValueAndValidity({onlySelf:!0,emitEvent:bt.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?xt:Ye}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(bt){if(this.asyncValidator){this.status=Ft,this._hasOwnPendingAsyncValidator=!0;const ze=h(this.asyncValidator(this));this._asyncValidationSubscription=ze.subscribe(vt=>{this._hasOwnPendingAsyncValidator=!1,this.setErrors(vt,{emitEvent:bt})})}}_cancelExistingSubscription(){this._asyncValidationSubscription&&(this._asyncValidationSubscription.unsubscribe(),this._hasOwnPendingAsyncValidator=!1)}setErrors(bt,ze={}){this.errors=bt,this._updateControlsErrors(!1!==ze.emitEvent)}get(bt){let ze=bt;return null==ze||(Array.isArray(ze)||(ze=ze.split(".")),0===ze.length)?null:ze.reduce((vt,Jt)=>vt&&vt._find(Jt),this)}getError(bt,ze){const vt=ze?this.get(ze):this;return vt&&vt.errors?vt.errors[bt]:null}hasError(bt,ze){return!!this.getError(bt,ze)}get root(){let bt=this;for(;bt._parent;)bt=bt._parent;return bt}_updateControlsErrors(bt){this.status=this._calculateStatus(),bt&&this.statusChanges.emit(this.status),this._parent&&this._parent._updateControlsErrors(bt)}_initObservables(){this.valueChanges=new e.vpe,this.statusChanges=new e.vpe}_calculateStatus(){return this._allControlsDisabled()?xt:this.errors?je:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Ft)?Ft:this._anyControlsHaveStatus(je)?je:Ye}_anyControlsHaveStatus(bt){return this._anyControls(ze=>ze.status===bt)}_anyControlsDirty(){return this._anyControls(bt=>bt.dirty)}_anyControlsTouched(){return this._anyControls(bt=>bt.touched)}_updatePristine(bt={}){this.pristine=!this._anyControlsDirty(),this._parent&&!bt.onlySelf&&this._parent._updatePristine(bt)}_updateTouched(bt={}){this.touched=this._anyControlsTouched(),this._parent&&!bt.onlySelf&&this._parent._updateTouched(bt)}_registerOnCollectionChange(bt){this._onCollectionChange=bt}_setUpdateStrategy(bt){nt(bt)&&null!=bt.updateOn&&(this._updateOn=bt.updateOn)}_parentMarkedDirty(bt){return!bt&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(bt){return null}_assignValidators(bt){this._rawValidators=Array.isArray(bt)?bt.slice():bt,this._composedValidatorFn=function yt(ht){return Array.isArray(ht)?g(ht):ht||null}(this._rawValidators)}_assignAsyncValidators(bt){this._rawAsyncValidators=Array.isArray(bt)?bt.slice():bt,this._composedAsyncValidatorFn=function Ee(ht){return Array.isArray(ht)?R(ht):ht||null}(this._rawAsyncValidators)}}class Le extends gt{constructor(bt,ze,vt){super(Ot(ze),at(vt,ze)),this.controls=bt,this._initObservables(),this._setUpdateStrategy(ze),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(bt,ze){return this.controls[bt]?this.controls[bt]:(this.controls[bt]=ze,ze.setParent(this),ze._registerOnCollectionChange(this._onCollectionChange),ze)}addControl(bt,ze,vt={}){this.registerControl(bt,ze),this.updateValueAndValidity({emitEvent:vt.emitEvent}),this._onCollectionChange()}removeControl(bt,ze={}){this.controls[bt]&&this.controls[bt]._registerOnCollectionChange(()=>{}),delete this.controls[bt],this.updateValueAndValidity({emitEvent:ze.emitEvent}),this._onCollectionChange()}setControl(bt,ze,vt={}){this.controls[bt]&&this.controls[bt]._registerOnCollectionChange(()=>{}),delete this.controls[bt],ze&&this.registerControl(bt,ze),this.updateValueAndValidity({emitEvent:vt.emitEvent}),this._onCollectionChange()}contains(bt){return this.controls.hasOwnProperty(bt)&&this.controls[bt].enabled}setValue(bt,ze={}){Xe(this,0,bt),Object.keys(bt).forEach(vt=>{Ge(this,!0,vt),this.controls[vt].setValue(bt[vt],{onlySelf:!0,emitEvent:ze.emitEvent})}),this.updateValueAndValidity(ze)}patchValue(bt,ze={}){null!=bt&&(Object.keys(bt).forEach(vt=>{const Jt=this.controls[vt];Jt&&Jt.patchValue(bt[vt],{onlySelf:!0,emitEvent:ze.emitEvent})}),this.updateValueAndValidity(ze))}reset(bt={},ze={}){this._forEachChild((vt,Jt)=>{vt.reset(bt?bt[Jt]:null,{onlySelf:!0,emitEvent:ze.emitEvent})}),this._updatePristine(ze),this._updateTouched(ze),this.updateValueAndValidity(ze)}getRawValue(){return this._reduceChildren({},(bt,ze,vt)=>(bt[vt]=ze.getRawValue(),bt))}_syncPendingControls(){let bt=this._reduceChildren(!1,(ze,vt)=>!!vt._syncPendingControls()||ze);return bt&&this.updateValueAndValidity({onlySelf:!0}),bt}_forEachChild(bt){Object.keys(this.controls).forEach(ze=>{const vt=this.controls[ze];vt&&bt(vt,ze)})}_setUpControls(){this._forEachChild(bt=>{bt.setParent(this),bt._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(bt){for(const[ze,vt]of Object.entries(this.controls))if(this.contains(ze)&&bt(vt))return!0;return!1}_reduceValue(){return this._reduceChildren({},(ze,vt,Jt)=>((vt.enabled||this.disabled)&&(ze[Jt]=vt.value),ze))}_reduceChildren(bt,ze){let vt=bt;return this._forEachChild((Jt,zi)=>{vt=ze(vt,Jt,zi)}),vt}_allControlsDisabled(){for(const bt of Object.keys(this.controls))if(this.controls[bt].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(bt){return this.controls.hasOwnProperty(bt)?this.controls[bt]:null}}class ke extends Le{}const At=new e.OlP("CallSetDisabledState",{providedIn:"root",factory:()=>Wt}),Wt="always";function gi(ht,bt){return[...bt.path,ht]}function ei(ht,bt,ze=Wt){ui(ht,bt),bt.valueAccessor.writeValue(ht.value),(ht.disabled||"always"===ze)&&bt.valueAccessor.setDisabledState?.(ht.disabled),function Ki(ht,bt){bt.valueAccessor.registerOnChange(ze=>{ht._pendingValue=ze,ht._pendingChange=!0,ht._pendingDirty=!0,"change"===ht.updateOn&&on(ht,bt)})}(ht,bt),function st(ht,bt){const ze=(vt,Jt)=>{bt.valueAccessor.writeValue(vt),Jt&&bt.viewToModelUpdate(vt)};ht.registerOnChange(ze),bt._registerOnDestroy(()=>{ht._unregisterOnChange(ze)})}(ht,bt),function Mi(ht,bt){bt.valueAccessor.registerOnTouched(()=>{ht._pendingTouched=!0,"blur"===ht.updateOn&&ht._pendingChange&&on(ht,bt),"submit"!==ht.updateOn&&ht.markAsTouched()})}(ht,bt),function li(ht,bt){if(bt.valueAccessor.setDisabledState){const ze=vt=>{bt.valueAccessor.setDisabledState(vt)};ht.registerOnDisabledChange(ze),bt._registerOnDestroy(()=>{ht._unregisterOnDisabledChange(ze)})}}(ht,bt)}function $t(ht,bt,ze=!0){const vt=()=>{};bt.valueAccessor&&(bt.valueAccessor.registerOnChange(vt),bt.valueAccessor.registerOnTouched(vt)),un(ht,bt),ht&&(bt._invokeOnDestroyCallbacks(),ht._registerOnCollectionChange(()=>{}))}function Fi(ht,bt){ht.forEach(ze=>{ze.registerOnValidatorChange&&ze.registerOnValidatorChange(bt)})}function ui(ht,bt){const ze=De(ht);null!==bt.validator?ht.setValidators(ee(ze,bt.validator)):"function"==typeof ze&&ht.setValidators([ze]);const vt=ct(ht);null!==bt.asyncValidator?ht.setAsyncValidators(ee(vt,bt.asyncValidator)):"function"==typeof vt&&ht.setAsyncValidators([vt]);const Jt=()=>ht.updateValueAndValidity();Fi(bt._rawValidators,Jt),Fi(bt._rawAsyncValidators,Jt)}function un(ht,bt){let ze=!1;if(null!==ht){if(null!==bt.validator){const Jt=De(ht);if(Array.isArray(Jt)&&Jt.length>0){const zi=Jt.filter(xn=>xn!==bt.validator);zi.length!==Jt.length&&(ze=!0,ht.setValidators(zi))}}if(null!==bt.asyncValidator){const Jt=ct(ht);if(Array.isArray(Jt)&&Jt.length>0){const zi=Jt.filter(xn=>xn!==bt.asyncValidator);zi.length!==Jt.length&&(ze=!0,ht.setAsyncValidators(zi))}}}const vt=()=>{};return Fi(bt._rawValidators,vt),Fi(bt._rawAsyncValidators,vt),ze}function on(ht,bt){ht._pendingDirty&&ht.markAsDirty(),ht.setValue(ht._pendingValue,{emitModelToViewChange:!1}),bt.viewToModelUpdate(ht._pendingValue),ht._pendingChange=!1}function si(ht,bt){ui(ht,bt)}function oi(ht,bt){if(!ht.hasOwnProperty("model"))return!1;const ze=ht.model;return!!ze.isFirstChange()||!Object.is(bt,ze.currentValue)}function yi(ht,bt){ht._syncPendingControls(),bt.forEach(ze=>{const vt=ze.control;"submit"===vt.updateOn&&vt._pendingChange&&(ze.viewToModelUpdate(vt._pendingValue),vt._pendingChange=!1)})}function Oi(ht,bt){if(!bt)return null;let ze,vt,Jt;return Array.isArray(bt),bt.forEach(zi=>{zi.constructor===z?ze=zi:function bi(ht){return Object.getPrototypeOf(ht.constructor)===m}(zi)?vt=zi:Jt=zi}),Jt||vt||ze||null}const qt={provide:xe,useExisting:(0,e.Gpc)(()=>Se)},xi=(()=>Promise.resolve())();let Se=(()=>{class ht extends xe{constructor(ze,vt,Jt){super(),this.callSetDisabledState=Jt,this.submitted=!1,this._directives=new Set,this.ngSubmit=new e.vpe,this.form=new Le({},g(ze),R(vt))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(ze){xi.then(()=>{const vt=this._findContainer(ze.path);ze.control=vt.registerControl(ze.name,ze.control),ei(ze.control,ze,this.callSetDisabledState),ze.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(ze)})}getControl(ze){return this.form.get(ze.path)}removeControl(ze){xi.then(()=>{const vt=this._findContainer(ze.path);vt&&vt.removeControl(ze.name),this._directives.delete(ze)})}addFormGroup(ze){xi.then(()=>{const vt=this._findContainer(ze.path),Jt=new Le({});si(Jt,ze),vt.registerControl(ze.name,Jt),Jt.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(ze){xi.then(()=>{const vt=this._findContainer(ze.path);vt&&vt.removeControl(ze.name)})}getFormGroup(ze){return this.form.get(ze.path)}updateModel(ze,vt){xi.then(()=>{this.form.get(ze.path).setValue(vt)})}setValue(ze){this.control.setValue(ze)}onSubmit(ze){return this.submitted=!0,yi(this.form,this._directives),this.ngSubmit.emit(ze),"dialog"===ze?.target?.method}onReset(){this.resetForm()}resetForm(ze=void 0){this.form.reset(ze),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(ze){return ze.pop(),ze.length?this.form.get(ze):this.form}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(j,10),e.Y36(K,10),e.Y36(At,8))};static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(vt,Jt){1&vt&&e.NdJ("submit",function(xn){return Jt.onSubmit(xn)})("reset",function(){return Jt.onReset()})},inputs:{options:["ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e._Bn([qt]),e.qOj]})}return ht})();function Ve(ht,bt){const ze=ht.indexOf(bt);ze>-1&&ht.splice(ze,1)}function et(ht){return"object"==typeof ht&&null!==ht&&2===Object.keys(ht).length&&"value"in ht&&"disabled"in ht}const tt=class extends gt{constructor(bt=null,ze,vt){super(Ot(ze),at(vt,ze)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(bt),this._setUpdateStrategy(ze),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),nt(ze)&&(ze.nonNullable||ze.initialValueIsDefault)&&(this.defaultValue=et(bt)?bt.value:bt)}setValue(bt,ze={}){this.value=this._pendingValue=bt,this._onChange.length&&!1!==ze.emitModelToViewChange&&this._onChange.forEach(vt=>vt(this.value,!1!==ze.emitViewToModelChange)),this.updateValueAndValidity(ze)}patchValue(bt,ze={}){this.setValue(bt,ze)}reset(bt=this.defaultValue,ze={}){this._applyFormState(bt),this.markAsPristine(ze),this.markAsUntouched(ze),this.setValue(this.value,ze),this._pendingChange=!1}_updateValue(){}_anyControls(bt){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(bt){this._onChange.push(bt)}_unregisterOnChange(bt){Ve(this._onChange,bt)}registerOnDisabledChange(bt){this._onDisabledChange.push(bt)}_unregisterOnDisabledChange(bt){Ve(this._onDisabledChange,bt)}_forEachChild(bt){}_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(bt){et(bt)?(this.value=this._pendingValue=bt.value,bt.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=bt}},Yt=tt,$r={provide:le,useExisting:(0,e.Gpc)(()=>zt)},Ni=(()=>Promise.resolve())();let zt=(()=>{class ht extends le{constructor(ze,vt,Jt,zi,xn,Mr){super(),this._changeDetectorRef=xn,this.callSetDisabledState=Mr,this.control=new tt,this._registered=!1,this.name="",this.update=new e.vpe,this._parent=ze,this._setValidators(vt),this._setAsyncValidators(Jt),this.valueAccessor=Oi(0,zi)}ngOnChanges(ze){if(this._checkForErrors(),!this._registered||"name"in ze){if(this._registered&&(this._checkName(),this.formDirective)){const vt=ze.name.previousValue;this.formDirective.removeControl({name:vt,path:this._getPath(vt)})}this._setUpControl()}"isDisabled"in ze&&this._updateDisabled(ze),oi(ze,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(ze){this.viewModel=ze,this.update.emit(ze)}_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(){ei(this.control,this,this.callSetDisabledState),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(ze){Ni.then(()=>{this.control.setValue(ze,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(ze){const vt=ze.isDisabled.currentValue,Jt=0!==vt&&(0,e.VuI)(vt);Ni.then(()=>{Jt&&!this.control.disabled?this.control.disable():!Jt&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(ze){return this._parent?gi(ze,this._parent):[ze]}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(xe,9),e.Y36(j,10),e.Y36(K,10),e.Y36(P,10),e.Y36(e.sBO,8),e.Y36(At,8))};static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:["disabled","isDisabled"],model:["ngModel","model"],options:["ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[e._Bn([$r]),e.qOj,e.TTD]})}return ht})(),pi=(()=>{class ht{static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]})}return ht})();const _i={provide:P,useExisting:(0,e.Gpc)(()=>Ci),multi:!0};let Ci=(()=>{class ht extends m{writeValue(ze){this.setProperty("value",ze??"")}registerOnChange(ze){this.onChange=vt=>{ze(""==vt?null:parseFloat(vt))}}static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(vt,Jt){1&vt&&e.NdJ("input",function(xn){return Jt.onChange(xn.target.value)})("blur",function(){return Jt.onTouched()})},features:[e._Bn([_i]),e.qOj]})}return ht})(),yn=(()=>{class ht{static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275mod=e.oAB({type:ht});static#i=this.\u0275inj=e.cJS({})}return ht})();const yr=new e.OlP("NgModelWithFormControlWarning"),aa={provide:le,useExisting:(0,e.Gpc)(()=>ma)};let ma=(()=>{class ht extends le{set isDisabled(ze){}static#e=this._ngModelWarningSentOnce=!1;constructor(ze,vt,Jt,zi,xn){super(),this._ngModelWarningConfig=zi,this.callSetDisabledState=xn,this.update=new e.vpe,this._ngModelWarningSent=!1,this._setValidators(ze),this._setAsyncValidators(vt),this.valueAccessor=Oi(0,Jt)}ngOnChanges(ze){if(this._isControlChanged(ze)){const vt=ze.form.previousValue;vt&&$t(vt,this,!1),ei(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}oi(ze,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&$t(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(ze){this.viewModel=ze,this.update.emit(ze)}_isControlChanged(ze){return ze.hasOwnProperty("form")}static#t=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(j,10),e.Y36(K,10),e.Y36(P,10),e.Y36(yr,8),e.Y36(At,8))};static#i=this.\u0275dir=e.lG2({type:ht,selectors:[["","formControl",""]],inputs:{form:["formControl","form"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[e._Bn([aa]),e.qOj,e.TTD]})}return ht})();const oa={provide:xe,useExisting:(0,e.Gpc)(()=>Fa)};let Fa=(()=>{class ht extends xe{constructor(ze,vt,Jt){super(),this.callSetDisabledState=Jt,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new e.vpe,this._setValidators(ze),this._setAsyncValidators(vt)}ngOnChanges(ze){this._checkFormPresent(),ze.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(un(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(ze){const vt=this.form.get(ze.path);return ei(vt,ze,this.callSetDisabledState),vt.updateValueAndValidity({emitEvent:!1}),this.directives.push(ze),vt}getControl(ze){return this.form.get(ze.path)}removeControl(ze){$t(ze.control||null,ze,!1),function Ui(ht,bt){const ze=ht.indexOf(bt);ze>-1&&ht.splice(ze,1)}(this.directives,ze)}addFormGroup(ze){this._setUpFormContainer(ze)}removeFormGroup(ze){this._cleanUpFormContainer(ze)}getFormGroup(ze){return this.form.get(ze.path)}addFormArray(ze){this._setUpFormContainer(ze)}removeFormArray(ze){this._cleanUpFormContainer(ze)}getFormArray(ze){return this.form.get(ze.path)}updateModel(ze,vt){this.form.get(ze.path).setValue(vt)}onSubmit(ze){return this.submitted=!0,yi(this.form,this.directives),this.ngSubmit.emit(ze),"dialog"===ze?.target?.method}onReset(){this.resetForm()}resetForm(ze=void 0){this.form.reset(ze),this.submitted=!1}_updateDomValue(){this.directives.forEach(ze=>{const vt=ze.control,Jt=this.form.get(ze.path);vt!==Jt&&($t(vt||null,ze),(ht=>ht instanceof tt)(Jt)&&(ei(Jt,ze,this.callSetDisabledState),ze.control=Jt))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(ze){const vt=this.form.get(ze.path);si(vt,ze),vt.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(ze){if(this.form){const vt=this.form.get(ze.path);vt&&function Ce(ht,bt){return un(ht,bt)}(vt,ze)&&vt.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){ui(this.form,this),this._oldForm&&un(this._oldForm,this)}_checkFormPresent(){}static#e=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(j,10),e.Y36(K,10),e.Y36(At,8))};static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["","formGroup",""]],hostBindings:function(vt,Jt){1&vt&&e.NdJ("submit",function(xn){return Jt.onSubmit(xn)})("reset",function(){return Jt.onReset()})},inputs:{form:["formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e._Bn([oa]),e.qOj,e.TTD]})}return ht})();const ga={provide:le,useExisting:(0,e.Gpc)(()=>Lr)};let Lr=(()=>{class ht extends le{set isDisabled(ze){}static#e=this._ngModelWarningSentOnce=!1;constructor(ze,vt,Jt,zi,xn){super(),this._ngModelWarningConfig=xn,this._added=!1,this.name=null,this.update=new e.vpe,this._ngModelWarningSent=!1,this._parent=ze,this._setValidators(vt),this._setAsyncValidators(Jt),this.valueAccessor=Oi(0,zi)}ngOnChanges(ze){this._added||this._setUpControl(),oi(ze,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(ze){this.viewModel=ze,this.update.emit(ze)}get path(){return gi(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._added=!0}static#t=this.\u0275fac=function(vt){return new(vt||ht)(e.Y36(xe,13),e.Y36(j,10),e.Y36(K,10),e.Y36(P,10),e.Y36(yr,8))};static#i=this.\u0275dir=e.lG2({type:ht,selectors:[["","formControlName",""]],inputs:{name:["formControlName","name"],isDisabled:["disabled","isDisabled"],model:["ngModel","model"]},outputs:{update:"ngModelChange"},features:[e._Bn([ga]),e.qOj,e.TTD]})}return ht})();function Ia(ht){return"number"==typeof ht?ht:parseFloat(ht)}let Oa=(()=>{class ht{constructor(){this._validator=s}ngOnChanges(ze){if(this.inputName in ze){const vt=this.normalizeInput(ze[this.inputName].currentValue);this._enabled=this.enabled(vt),this._validator=this._enabled?this.createValidator(vt):s,this._onChange&&this._onChange()}}validate(ze){return this._validator(ze)}registerOnValidatorChange(ze){this._onChange=ze}enabled(ze){return null!=ze}static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275dir=e.lG2({type:ht,features:[e.TTD]})}return ht})();const _o={provide:j,useExisting:(0,e.Gpc)(()=>oo),multi:!0};let oo=(()=>{class ht extends Oa{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=ze=>Ia(ze),this.createValidator=ze=>ue(ze)}static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(vt,Jt){2&vt&&e.uIk("max",Jt._enabled?Jt.max:null)},inputs:{max:"max"},features:[e._Bn([_o]),e.qOj]})}return ht})();const Eo={provide:j,useExisting:(0,e.Gpc)(()=>vo),multi:!0};let vo=(()=>{class ht extends Oa{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=ze=>Ia(ze),this.createValidator=ze=>se(ze)}static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(vt,Jt){2&vt&&e.uIk("min",Jt._enabled?Jt.min:null)},inputs:{min:"min"},features:[e._Bn([Eo]),e.qOj]})}return ht})();const Kr={provide:j,useExisting:(0,e.Gpc)(()=>_a),multi:!0},ca={provide:j,useExisting:(0,e.Gpc)(()=>Fo),multi:!0};let _a=(()=>{class ht extends Oa{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=e.VuI,this.createValidator=ze=>ae}enabled(ze){return ze}static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(vt,Jt){2&vt&&e.uIk("required",Jt._enabled?"":null)},inputs:{required:"required"},features:[e._Bn([Kr]),e.qOj]})}return ht})(),Fo=(()=>{class ht extends _a{constructor(){super(...arguments),this.createValidator=ze=>Me}static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275dir=e.lG2({type:ht,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(vt,Jt){2&vt&&e.uIk("required",Jt._enabled?"":null)},features:[e._Bn([ca]),e.qOj]})}return ht})(),Vt=(()=>{class ht{static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275mod=e.oAB({type:ht});static#i=this.\u0275inj=e.cJS({imports:[yn]})}return ht})();class Ai extends gt{constructor(bt,ze,vt){super(Ot(ze),at(vt,ze)),this.controls=bt,this._initObservables(),this._setUpdateStrategy(ze),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(bt){return this.controls[this._adjustIndex(bt)]}push(bt,ze={}){this.controls.push(bt),this._registerControl(bt),this.updateValueAndValidity({emitEvent:ze.emitEvent}),this._onCollectionChange()}insert(bt,ze,vt={}){this.controls.splice(bt,0,ze),this._registerControl(ze),this.updateValueAndValidity({emitEvent:vt.emitEvent})}removeAt(bt,ze={}){let vt=this._adjustIndex(bt);vt<0&&(vt=0),this.controls[vt]&&this.controls[vt]._registerOnCollectionChange(()=>{}),this.controls.splice(vt,1),this.updateValueAndValidity({emitEvent:ze.emitEvent})}setControl(bt,ze,vt={}){let Jt=this._adjustIndex(bt);Jt<0&&(Jt=0),this.controls[Jt]&&this.controls[Jt]._registerOnCollectionChange(()=>{}),this.controls.splice(Jt,1),ze&&(this.controls.splice(Jt,0,ze),this._registerControl(ze)),this.updateValueAndValidity({emitEvent:vt.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(bt,ze={}){Xe(this,0,bt),bt.forEach((vt,Jt)=>{Ge(this,!1,Jt),this.at(Jt).setValue(vt,{onlySelf:!0,emitEvent:ze.emitEvent})}),this.updateValueAndValidity(ze)}patchValue(bt,ze={}){null!=bt&&(bt.forEach((vt,Jt)=>{this.at(Jt)&&this.at(Jt).patchValue(vt,{onlySelf:!0,emitEvent:ze.emitEvent})}),this.updateValueAndValidity(ze))}reset(bt=[],ze={}){this._forEachChild((vt,Jt)=>{vt.reset(bt[Jt],{onlySelf:!0,emitEvent:ze.emitEvent})}),this._updatePristine(ze),this._updateTouched(ze),this.updateValueAndValidity(ze)}getRawValue(){return this.controls.map(bt=>bt.getRawValue())}clear(bt={}){this.controls.length<1||(this._forEachChild(ze=>ze._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:bt.emitEvent}))}_adjustIndex(bt){return bt<0?bt+this.length:bt}_syncPendingControls(){let bt=this.controls.reduce((ze,vt)=>!!vt._syncPendingControls()||ze,!1);return bt&&this.updateValueAndValidity({onlySelf:!0}),bt}_forEachChild(bt){this.controls.forEach((ze,vt)=>{bt(ze,vt)})}_updateValue(){this.value=this.controls.filter(bt=>bt.enabled||this.disabled).map(bt=>bt.value)}_anyControls(bt){return this.controls.some(ze=>ze.enabled&&bt(ze))}_setUpControls(){this._forEachChild(bt=>this._registerControl(bt))}_allControlsDisabled(){for(const bt of this.controls)if(bt.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(bt){bt.setParent(this),bt._registerOnCollectionChange(this._onCollectionChange)}_find(bt){return this.at(bt)??null}}function Ti(ht){return!!ht&&(void 0!==ht.asyncValidators||void 0!==ht.validators||void 0!==ht.updateOn)}let Zi=(()=>{class ht{constructor(){this.useNonNullable=!1}get nonNullable(){const ze=new ht;return ze.useNonNullable=!0,ze}group(ze,vt=null){const Jt=this._reduceControls(ze);let zi={};return Ti(vt)?zi=vt:null!==vt&&(zi.validators=vt.validator,zi.asyncValidators=vt.asyncValidator),new Le(Jt,zi)}record(ze,vt=null){const Jt=this._reduceControls(ze);return new ke(Jt,vt)}control(ze,vt,Jt){let zi={};return this.useNonNullable?(Ti(vt)?zi=vt:(zi.validators=vt,zi.asyncValidators=Jt),new tt(ze,{...zi,nonNullable:!0})):new tt(ze,vt,Jt)}array(ze,vt,Jt){const zi=ze.map(xn=>this._createControl(xn));return new Ai(zi,vt,Jt)}_reduceControls(ze){const vt={};return Object.keys(ze).forEach(Jt=>{vt[Jt]=this._createControl(ze[Jt])}),vt}_createControl(ze){return ze instanceof tt||ze instanceof gt?ze:Array.isArray(ze)?this.control(ze[0],ze.length>1?ze[1]:null,ze.length>2?ze[2]:null):this.control(ze)}static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275prov=e.Yz7({token:ht,factory:ht.\u0275fac,providedIn:"root"})}return ht})(),ar=(()=>{class ht extends Zi{group(ze,vt=null){return super.group(ze,vt)}control(ze,vt,Jt){return super.control(ze,vt,Jt)}array(ze,vt,Jt){return super.array(ze,vt,Jt)}static#e=this.\u0275fac=(()=>{let ze;return function(Jt){return(ze||(ze=e.n5z(ht)))(Jt||ht)}})();static#t=this.\u0275prov=e.Yz7({token:ht,factory:ht.\u0275fac,providedIn:"root"})}return ht})(),sn=(()=>{class ht{static withConfig(ze){return{ngModule:ht,providers:[{provide:At,useValue:ze.callSetDisabledState??Wt}]}}static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275mod=e.oAB({type:ht});static#i=this.\u0275inj=e.cJS({imports:[Vt]})}return ht})(),Ba=(()=>{class ht{static withConfig(ze){return{ngModule:ht,providers:[{provide:yr,useValue:ze.warnOnNgModelWithFormControl??"always"},{provide:At,useValue:ze.callSetDisabledState??Wt}]}}static#e=this.\u0275fac=function(vt){return new(vt||ht)};static#t=this.\u0275mod=e.oAB({type:ht});static#i=this.\u0275inj=e.cJS({imports:[Vt]})}return ht})()},4630:(Fe,q,p)=>{"use strict";p.d(q,{Bb:()=>Je,XC:()=>r,ZL:()=>Ke});var e=p(9212),t=p(3680),y=p(6814),A=p(5407),l=p(3651),w=p(4300),m=p(2495),P=p(2831),d=p(6825),E=p(7394),M=p(8645),I=p(4911),k=p(3019),z=p(2096),B=p(2438),W=p(6028),j=p(8484),K=p(6223),X=p(5683),ie=p(7921),se=p(4664),ue=p(8180),ae=p(2181),Me=p(7398),J=p(9397),he=p(932),S=p(9388);const n=["panel"];function s(ye,fe){if(1&ye){const de=e.EpF();e.TgZ(0,"div",0,1),e.NdJ("@panelAnimation.done",function(le){e.CHM(de);const pe=e.oxw();return e.KtG(pe._animationDone.next(le))}),e.Hsn(2),e.qZA()}if(2&ye){const de=fe.id,xe=e.oxw();e.Q6J("id",xe.id)("ngClass",xe._classList)("@panelAnimation",xe.isOpen?"visible":"hidden"),e.uIk("aria-label",xe.ariaLabel||null)("aria-labelledby",xe._getPanelAriaLabelledby(de))}}const f=["*"],h=(0,d.X$)("panelAnimation",[(0,d.SB)("void, hidden",(0,d.oB)({opacity:0,transform:"scaleY(0.8)"})),(0,d.eR)(":enter, hidden => visible",[(0,d.ru)([(0,d.jt)("0.03s linear",(0,d.oB)({opacity:1})),(0,d.jt)("0.12s cubic-bezier(0, 0, 0.2, 1)",(0,d.oB)({transform:"scaleY(1)"}))])]),(0,d.eR)(":leave, visible => hidden",[(0,d.jt)("0.075s linear",(0,d.oB)({opacity:0}))])]);let C=0;class D{constructor(fe,de){this.source=fe,this.option=de}}const O=new e.OlP("mat-autocomplete-default-options",{providedIn:"root",factory:function v(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1}}});let r=(()=>{class ye{get isOpen(){return this._isOpen&&this.showPanel}_setColor(de){this._color=de,this._setThemeClasses(this._classList)}set classList(de){this._classList=de&&de.length?(0,m.du)(de).reduce((xe,le)=>(xe[le]=!0,xe),{}):{},this._setVisibilityClasses(this._classList),this._setThemeClasses(this._classList),this._elementRef.nativeElement.className=""}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(de){this._hideSingleSelectionIndicator=de,this._syncParentProperties()}_syncParentProperties(){if(this.options)for(const de of this.options)de._changeDetectorRef.markForCheck()}constructor(de,xe,le,pe){this._changeDetectorRef=de,this._elementRef=xe,this._defaults=le,this._activeOptionChanges=E.w0.EMPTY,this._visibleClass="mat-mdc-autocomplete-visible",this._hiddenClass="mat-mdc-autocomplete-hidden",this._animationDone=new e.vpe,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new e.vpe,this.opened=new e.vpe,this.closed=new e.vpe,this.optionActivated=new e.vpe,this._classList={},this.id="mat-autocomplete-"+C++,this.inertGroups=pe?.SAFARI||!1,this.autoActiveFirstOption=!!le.autoActiveFirstOption,this.autoSelectActiveOption=!!le.autoSelectActiveOption,this.requireSelection=!!le.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new w.s1(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(de=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[de]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe(),this._animationDone.complete()}_setScrollTop(de){this.panel&&(this.panel.nativeElement.scrollTop=de)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._setVisibilityClasses(this._classList),this._changeDetectorRef.markForCheck()}_emitSelectEvent(de){const xe=new D(this,de);this.optionSelected.emit(xe)}_getPanelAriaLabelledby(de){return this.ariaLabel?null:this.ariaLabelledby?(de?de+" ":"")+this.ariaLabelledby:de}_setVisibilityClasses(de){de[this._visibleClass]=this.showPanel,de[this._hiddenClass]=!this.showPanel}_setThemeClasses(de){de["mat-primary"]="primary"===this._color,de["mat-warn"]="warn"===this._color,de["mat-accent"]="accent"===this._color}_skipPredicate(){return!1}static#e=this.\u0275fac=function(xe){return new(xe||ye)(e.Y36(e.sBO),e.Y36(e.SBq),e.Y36(O),e.Y36(P.t4))};static#t=this.\u0275cmp=e.Xpm({type:ye,selectors:[["mat-autocomplete"]],contentQueries:function(xe,le,pe){if(1&xe&&(e.Suo(pe,t.ey,5),e.Suo(pe,t.K7,5)),2&xe){let qe;e.iGM(qe=e.CRH())&&(le.options=qe),e.iGM(qe=e.CRH())&&(le.optionGroups=qe)}},viewQuery:function(xe,le){if(1&xe&&(e.Gf(e.Rgc,7),e.Gf(n,5)),2&xe){let pe;e.iGM(pe=e.CRH())&&(le.template=pe.first),e.iGM(pe=e.CRH())&&(le.panel=pe.first)}},hostAttrs:["ngSkipHydration","",1,"mat-mdc-autocomplete"],inputs:{ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:["autoActiveFirstOption","autoActiveFirstOption",e.VuI],autoSelectActiveOption:["autoSelectActiveOption","autoSelectActiveOption",e.VuI],requireSelection:["requireSelection","requireSelection",e.VuI],panelWidth:"panelWidth",disableRipple:["disableRipple","disableRipple",e.VuI],classList:["class","classList"],hideSingleSelectionIndicator:["hideSingleSelectionIndicator","hideSingleSelectionIndicator",e.VuI]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],features:[e._Bn([{provide:t.HF,useExisting:ye}]),e.Xq5],ngContentSelectors:f,decls:1,vars:0,consts:[["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id","ngClass"],["panel",""]],template:function(xe,le){1&xe&&(e.F$t(),e.YNc(0,s,3,5,"ng-template"))},dependencies:[y.mk],styles:["div.mat-mdc-autocomplete-panel{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);width:100%;max-height:256px;visibility:hidden;transform-origin:center top;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:static;background-color:var(--mat-autocomplete-background-color)}.cdk-high-contrast-active div.mat-mdc-autocomplete-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel{border-top-left-radius:0;border-top-right-radius:0}.mat-mdc-autocomplete-panel-above div.mat-mdc-autocomplete-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:center bottom}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-visible{visibility:visible}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-hidden{visibility:hidden}mat-autocomplete{display:none}"],encapsulation:2,data:{animation:[h]},changeDetection:0})}return ye})();const H={provide:K.JU,useExisting:(0,e.Gpc)(()=>Ke),multi:!0},ee=new e.OlP("mat-autocomplete-scroll-strategy"),ct={provide:ee,deps:[l.aV],useFactory:function De(ye){return()=>ye.scrollStrategies.reposition()}};let Ke=(()=>{class ye{constructor(de,xe,le,pe,qe,re,ve,ce,Ze,We,Ct){this._element=de,this._overlay=xe,this._viewContainerRef=le,this._zone=pe,this._changeDetectorRef=qe,this._dir=ve,this._formField=ce,this._document=Ze,this._viewportRuler=We,this._defaults=Ct,this._componentDestroyed=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=E.w0.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new M.x,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._aboveClass="mat-mdc-autocomplete-panel-above",this._overlayAttached=!1,this.optionSelections=(0,I.P)(()=>{const ut=this.autocomplete?this.autocomplete.options:null;return ut?ut.changes.pipe((0,ie.O)(ut),(0,se.w)(()=>(0,k.T)(...ut.map(It=>It.onSelectionChange)))):this._zone.onStable.pipe((0,ue.q)(1),(0,se.w)(()=>this.optionSelections))}),this._handlePanelKeydown=ut=>{(ut.keyCode===W.hY&&!(0,W.Vb)(ut)||ut.keyCode===W.LH&&(0,W.Vb)(ut,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),ut.stopPropagation(),ut.preventDefault())},this._trackedModal=null,this._scrollStrategy=re}ngAfterViewInit(){const de=this._getWindow();typeof de<"u"&&this._zone.runOutsideAngular(()=>de.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(de){de.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const de=this._getWindow();typeof de<"u"&&de.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}openPanel(){this._attachOverlay(),this._floatLabel(),this._trackedModal&&(0,w.Zf)(this._trackedModal,"aria-owns",this.autocomplete.id)}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._isOpen=this._overlayAttached=!1,this._pendingAutoselectedOption=null,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._updatePanelState(),this._componentDestroyed||this._changeDetectorRef.detectChanges(),this._trackedModal)&&(0,w.iD)(this._trackedModal,"aria-owns",this.autocomplete.id)}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,k.T)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ae.h)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ae.h)(()=>this._overlayAttached)):(0,z.of)()).pipe((0,Me.U)(de=>de instanceof t.rN?de:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,k.T)((0,B.R)(this._document,"click"),(0,B.R)(this._document,"auxclick"),(0,B.R)(this._document,"touchend")).pipe((0,ae.h)(de=>{const xe=(0,P.sA)(de),le=this._formField?this._formField._elementRef.nativeElement:null,pe=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&xe!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!le||!le.contains(xe))&&(!pe||!pe.contains(xe))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(xe)}))}writeValue(de){Promise.resolve(null).then(()=>this._assignOptionValue(de))}registerOnChange(de){this._onChange=de}registerOnTouched(de){this._onTouched=de}setDisabledState(de){this._element.nativeElement.disabled=de}_handleKeydown(de){const xe=de.keyCode,le=(0,W.Vb)(de);if(xe===W.hY&&!le&&de.preventDefault(),this.activeOption&&xe===W.K5&&this.panelOpen&&!le)this.activeOption._selectViaInteraction(),this._resetActiveItem(),de.preventDefault();else if(this.autocomplete){const pe=this.autocomplete._keyManager.activeItem,qe=xe===W.LH||xe===W.JH;xe===W.Mf||qe&&!le&&this.panelOpen?this.autocomplete._keyManager.onKeydown(de):qe&&this._canOpen()&&this.openPanel(),(qe||this.autocomplete._keyManager.activeItem!==pe)&&(this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0),this.autocomplete.autoSelectActiveOption&&this.activeOption&&(this._pendingAutoselectedOption||(this._valueBeforeAutoSelection=this._element.nativeElement.value),this._pendingAutoselectedOption=this.activeOption,this._assignOptionValue(this.activeOption.value)))}}_handleInput(de){let xe=de.target,le=xe.value;"number"===xe.type&&(le=""==le?null:parseFloat(le)),this._previousValue!==le&&(this._previousValue=le,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(le),le||this._clearPreviousSelectedOption(null,!1),this._canOpen()&&this._document.activeElement===de.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(de=!1){this._formField&&"auto"===this._formField.floatLabel&&(de?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const de=this._zone.onStable.pipe((0,ue.q)(1)),xe=this.autocomplete.options.changes.pipe((0,J.b)(()=>this._positionStrategy.reapplyLastPosition()),(0,he.g)(0));return(0,k.T)(de,xe).pipe((0,se.w)(()=>(this._zone.run(()=>{const le=this.panelOpen;this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),le!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit())}),this.panelClosingActions)),(0,ue.q)(1)).subscribe(le=>this._setValueAndClose(le))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_assignOptionValue(de){const xe=this.autocomplete&&this.autocomplete.displayWith?this.autocomplete.displayWith(de):de;this._updateNativeInputValue(xe??"")}_updateNativeInputValue(de){de||this._clearPreviousSelectedOption(null,!1),this._formField?this._formField._control.value=de:this._element.nativeElement.value=de,this._previousValue=de}_setValueAndClose(de){const xe=this.autocomplete,le=de?de.source:this._pendingAutoselectedOption;le?(this._clearPreviousSelectedOption(le),this._assignOptionValue(le.value),this._onChange(le.value),xe._emitSelectEvent(le),this._element.nativeElement.focus()):xe.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),xe._animationDone?xe._animationDone.pipe((0,ue.q)(1)).subscribe(()=>this._onChange(null)):this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(de,xe){this.autocomplete?.options?.forEach(le=>{le!==de&&le.selected&&le.deselect(xe)})}_attachOverlay(){let de=this._overlayRef;de?(this._positionStrategy.setOrigin(this._getConnectedElement()),de.updateSize({width:this._getPanelWidth()})):(this._portal=new j.UE(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),de=this._overlay.create(this._getOverlayConfig()),this._overlayRef=de,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&de&&de.updateSize({width:this._getPanelWidth()})})),de&&!de.hasAttached()&&(de.attach(this._portal),this._valueOnAttach=this._element.nativeElement.value,this._closingActionsSubscription=this._subscribeToClosingActions());const xe=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&xe!==this.panelOpen&&this._emitOpened()}_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const de=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=de.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=de.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new l.X_({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,panelClass:this._defaults?.overlayPanelClass})}_getOverlayPosition(){const de=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(de),this._positionStrategy=de,de}_setStrategyPositions(de){const xe=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],le=this._aboveClass,pe=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:le},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:le}];let qe;qe="above"===this.position?pe:"below"===this.position?xe:[...xe,...pe],de.withPositions(qe)}_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 de=this.autocomplete;if(de.autoActiveFirstOption){let xe=-1;for(let le=0;le .cdk-overlay-container [aria-modal="true"]');if(!de)return;const xe=this.autocomplete.id;this._trackedModal&&(0,w.iD)(this._trackedModal,"aria-owns",xe),(0,w.Zf)(de,"aria-owns",xe),this._trackedModal=de}_clearFromModal(){this._trackedModal&&((0,w.iD)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static#e=this.\u0275fac=function(xe){return new(xe||ye)(e.Y36(e.SBq),e.Y36(l.aV),e.Y36(e.s_b),e.Y36(e.R0b),e.Y36(e.sBO),e.Y36(ee),e.Y36(S.Is,8),e.Y36(X.G_,9),e.Y36(y.K0,8),e.Y36(A.rL),e.Y36(O,8))};static#t=this.\u0275dir=e.lG2({type:ye,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(xe,le){1&xe&&e.NdJ("focusin",function(){return le._handleFocus()})("blur",function(){return le._onTouched()})("input",function(qe){return le._handleInput(qe)})("keydown",function(qe){return le._handleKeydown(qe)})("click",function(){return le._handleClick()}),2&xe&&e.uIk("autocomplete",le.autocompleteAttribute)("role",le.autocompleteDisabled?null:"combobox")("aria-autocomplete",le.autocompleteDisabled?null:"list")("aria-activedescendant",le.panelOpen&&le.activeOption?le.activeOption.id:null)("aria-expanded",le.autocompleteDisabled?null:le.panelOpen.toString())("aria-controls",le.autocompleteDisabled||!le.panelOpen||null==le.autocomplete?null:le.autocomplete.id)("aria-haspopup",le.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:["matAutocomplete","autocomplete"],position:["matAutocompletePosition","position"],connectedTo:["matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:["autocomplete","autocompleteAttribute"],autocompleteDisabled:["matAutocompleteDisabled","autocompleteDisabled",e.VuI]},exportAs:["matAutocompleteTrigger"],features:[e._Bn([H]),e.Xq5,e.TTD]})}return ye})(),Je=(()=>{class ye{static#e=this.\u0275fac=function(xe){return new(xe||ye)};static#t=this.\u0275mod=e.oAB({type:ye});static#i=this.\u0275inj=e.cJS({providers:[ct],imports:[l.U8,t.Ng,t.BQ,y.ez,A.ZD,t.Ng,t.BQ]})}return ye})()},9014:(Fe,q,p)=>{"use strict";p.d(q,{g:()=>P,k:()=>m});var e=p(9212),t=p(3680),y=p(4300),A=p(6814);let l=0;const w="mat-badge-content";let m=(()=>{class d{get color(){return this._color}set color(M){this._setColor(M),this._color=M}get content(){return this._content}set content(M){this._updateRenderedContent(M)}get description(){return this._description}set description(M){this._updateDescription(M)}constructor(M,I,k,z,B){this._ngZone=M,this._elementRef=I,this._ariaDescriber=k,this._renderer=z,this._animationMode=B,this._color="primary",this.overlap=!0,this.position="above after",this.size="medium",this._id=l++,this._isInitialized=!1,this._interactivityChecker=(0,e.f3M)(y.ic),this._document=(0,e.f3M)(A.K0)}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._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const M=this._renderer.createElement("span"),I="mat-badge-active";return M.setAttribute("id",`mat-badge-content-${this._id}`),M.setAttribute("aria-hidden","true"),M.classList.add(w),"NoopAnimations"===this._animationMode&&M.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(M),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{M.classList.add(I)})}):M.classList.add(I),M}_updateRenderedContent(M){const I=`${M??""}`.trim();this._isInitialized&&I&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=I),this._content=I}_updateDescription(M){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!M||this._isHostInteractive())&&this._removeInlineDescription(),this._description=M,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,M):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(M){const I=this._elementRef.nativeElement.classList;I.remove(`mat-badge-${this._color}`),M&&I.add(`mat-badge-${M}`)}_clearExistingBadges(){const M=this._elementRef.nativeElement.querySelectorAll(`:scope > .${w}`);for(const I of Array.from(M))I!==this._badgeElement&&I.remove()}static#e=this.\u0275fac=function(I){return new(I||d)(e.Y36(e.R0b),e.Y36(e.SBq),e.Y36(y.$s),e.Y36(e.Qsj),e.Y36(e.QbO,8))};static#t=this.\u0275dir=e.lG2({type:d,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(I,k){2&I&&e.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:{color:["matBadgeColor","color"],overlap:["matBadgeOverlap","overlap",e.VuI],disabled:["matBadgeDisabled","disabled",e.VuI],position:["matBadgePosition","position"],content:["matBadge","content"],description:["matBadgeDescription","description"],size:["matBadgeSize","size"],hidden:["matBadgeHidden","hidden",e.VuI]},features:[e.Xq5]})}return d})(),P=(()=>{class d{static#e=this.\u0275fac=function(I){return new(I||d)};static#t=this.\u0275mod=e.oAB({type:d});static#i=this.\u0275inj=e.cJS({imports:[y.rt,t.BQ,t.BQ]})}return d})()},2296:(Fe,q,p)=>{"use strict";p.d(q,{RK:()=>f,lW:()=>se,nh:()=>S,ot:()=>C});var e=p(2831),t=p(9212),y=p(4300),A=p(3680);const l=["mat-button",""],w=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],m=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],M=["mat-mini-fab",""],k=["mat-icon-button",""],z=["*"],j=[{attribute:"mat-button",mdcClasses:["mdc-button","mat-mdc-button"]},{attribute:"mat-flat-button",mdcClasses:["mdc-button","mdc-button--unelevated","mat-mdc-unelevated-button"]},{attribute:"mat-raised-button",mdcClasses:["mdc-button","mdc-button--raised","mat-mdc-raised-button"]},{attribute:"mat-stroked-button",mdcClasses:["mdc-button","mdc-button--outlined","mat-mdc-outlined-button"]},{attribute:"mat-fab",mdcClasses:["mdc-fab","mat-mdc-fab"]},{attribute:"mat-mini-fab",mdcClasses:["mdc-fab","mdc-fab--mini","mat-mdc-mini-fab"]},{attribute:"mat-icon-button",mdcClasses:["mdc-icon-button","mat-mdc-icon-button"]}];let K=(()=>{class D{get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(v){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,v)}get disableRipple(){return this._disableRipple}set disableRipple(v){this._disableRipple=v,this._updateRippleDisabled()}get disabled(){return this._disabled}set disabled(v){this._disabled=v,this._updateRippleDisabled()}constructor(v,r,g,H){this._elementRef=v,this._platform=r,this._ngZone=g,this._animationMode=H,this._focusMonitor=(0,t.f3M)(y.tE),this._rippleLoader=(0,t.f3M)(A.Fq),this._isFab=!1,this._disableRipple=!1,this._disabled=!1,this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-button-ripple"});const R=this._elementRef.nativeElement,ee=R.classList;for(const{attribute:De,mdcClasses:ct}of j)R.hasAttribute(De)&&ee.add(...ct)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}focus(v="program",r){v?this._focusMonitor.focusVia(this._elementRef.nativeElement,v,r):this._elementRef.nativeElement.focus(r)}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}static#e=this.\u0275fac=function(r){t.$Z()};static#t=this.\u0275dir=t.lG2({type:D,inputs:{color:"color",disableRipple:["disableRipple","disableRipple",t.VuI],disabled:["disabled","disabled",t.VuI]},features:[t.Xq5]})}return D})(),se=(()=>{class D extends K{constructor(v,r,g,H){super(v,r,g,H)}static#e=this.\u0275fac=function(r){return new(r||D)(t.Y36(t.SBq),t.Y36(e.t4),t.Y36(t.R0b),t.Y36(t.QbO,8))};static#t=this.\u0275cmp=t.Xpm({type:D,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""]],hostVars:9,hostBindings:function(r,g){2&r&&(t.uIk("disabled",g.disabled||null),t.Tol(g.color?"mat-"+g.color:""),t.ekj("_mat-animation-noopable","NoopAnimations"===g._animationMode)("mat-unthemed",!g.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],features:[t.qOj],attrs:l,ngContentSelectors:m,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(r,g){1&r&&(t.F$t(w),t._UZ(0,"span",0),t.Hsn(1),t.TgZ(2,"span",1),t.Hsn(3,1),t.qZA(),t.Hsn(4,2),t._UZ(5,"span",2)(6,"span",3)),2&r&&t.ekj("mdc-button__ripple",!g._isFab)("mdc-fab__ripple",g._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button{position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;user-select:none;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0)}.mdc-button .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top}[dir=rtl] .mdc-button .mdc-button__icon,.mdc-button .mdc-button__icon[dir=rtl]{margin-left:8px;margin-right:0}.mdc-button .mdc-button__progress-indicator{font-size:0;position:absolute;transform:translate(-50%, -50%);top:50%;left:50%;line-height:initial}.mdc-button .mdc-button__label{position:relative}.mdc-button .mdc-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px);display:none}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring{border-color:CanvasText}}.mdc-button .mdc-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring::after{border-color:CanvasText}}@media screen and (forced-colors: active){.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__focus-ring,.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__focus-ring{display:block}}.mdc-button .mdc-button__touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-button__label+.mdc-button__icon{margin-left:8px;margin-right:0}[dir=rtl] .mdc-button__label+.mdc-button__icon,.mdc-button__label+.mdc-button__icon[dir=rtl]{margin-left:0;margin-right:8px}svg.mdc-button__icon{fill:currentColor}.mdc-button--touch{margin-top:6px;margin-bottom:6px}.mdc-button{padding:0 8px 0 8px}.mdc-button--unelevated{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--unelevated.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--unelevated.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--raised{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--raised.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--raised.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--outlined{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button--outlined .mdc-button__ripple{border-style:solid;border-color:rgba(0,0,0,0)}.mat-mdc-button{height:var(--mdc-text-button-container-height);border-radius:var(--mdc-text-button-container-shape);--mdc-text-button-container-shape:4px;--mdc-text-button-container-height:36px;--mdc-text-button-keep-touch-target:false}.mat-mdc-button:not(:disabled){color:var(--mdc-text-button-label-text-color)}.mat-mdc-button:disabled{color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button .mdc-button__ripple{border-radius:var(--mdc-text-button-container-shape)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-text-button-ripple-color)}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-state-layer-color)}.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-hover-state-layer-opacity)}.mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-focus-state-layer-opacity)}.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-pressed-state-layer-opacity)}.mat-mdc-button[disabled]{cursor:default;pointer-events:none;color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-unelevated-button{height:var(--mdc-filled-button-container-height);border-radius:var(--mdc-filled-button-container-shape);--mdc-filled-button-container-shape:4px;--mdc-filled-button-container-elevation:0;--mdc-filled-button-disabled-container-elevation:0;--mdc-filled-button-focus-container-elevation:0;--mdc-filled-button-hover-container-elevation:0;--mdc-filled-button-keep-touch-target:false;--mdc-filled-button-pressed-container-elevation:0}.mat-mdc-unelevated-button:not(:disabled){background-color:var(--mdc-filled-button-container-color)}.mat-mdc-unelevated-button:disabled{background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mdc-filled-button-label-text-color)}.mat-mdc-unelevated-button:disabled{color:var(--mdc-filled-button-disabled-label-text-color)}.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mdc-filled-button-container-shape)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-filled-button-ripple-color)}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-state-layer-color)}.mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-hover-state-layer-opacity)}.mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-focus-state-layer-opacity)}.mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-pressed-state-layer-opacity)}.mat-mdc-unelevated-button[disabled]{cursor:default;pointer-events:none;color:var(--mdc-filled-button-disabled-label-text-color);background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-raised-button{height:var(--mdc-protected-button-container-height);border-radius:var(--mdc-protected-button-container-shape);--mdc-protected-button-container-shape:4px;--mdc-protected-button-keep-touch-target:false}.mat-mdc-raised-button:not(:disabled){background-color:var(--mdc-protected-button-container-color)}.mat-mdc-raised-button:disabled{background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button:not(:disabled){color:var(--mdc-protected-button-label-text-color)}.mat-mdc-raised-button:disabled{color:var(--mdc-protected-button-disabled-label-text-color)}.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mdc-protected-button-container-shape)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-protected-button-ripple-color)}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-state-layer-color)}.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-hover-state-layer-opacity)}.mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-focus-state-layer-opacity)}.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-pressed-state-layer-opacity)}.mat-mdc-raised-button[disabled]{cursor:default;pointer-events:none;color:var(--mdc-protected-button-disabled-label-text-color);background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button[disabled][disabled]{box-shadow:none}.mat-mdc-outlined-button{height:var(--mdc-outlined-button-container-height);border-radius:var(--mdc-outlined-button-container-shape);padding:0 15px 0 15px;border-width:var(--mdc-outlined-button-outline-width);--mdc-outlined-button-keep-touch-target:false;--mdc-outlined-button-outline-width:1px;--mdc-outlined-button-container-shape:4px}.mat-mdc-outlined-button:not(:disabled){color:var(--mdc-outlined-button-label-text-color)}.mat-mdc-outlined-button:disabled{color:var(--mdc-outlined-button-disabled-label-text-color)}.mat-mdc-outlined-button .mdc-button__ripple{border-radius:var(--mdc-outlined-button-container-shape)}.mat-mdc-outlined-button:not(:disabled){border-color:var(--mdc-outlined-button-outline-color)}.mat-mdc-outlined-button:disabled{border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mdc-button--icon-trailing{padding:0 11px 0 15px}.mat-mdc-outlined-button.mdc-button--icon-leading{padding:0 15px 0 11px}.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:var(--mdc-outlined-button-outline-width)}.mat-mdc-outlined-button .mdc-button__touch{left:calc(-1 * var(--mdc-outlined-button-outline-width));width:calc(100% + 2 * var(--mdc-outlined-button-outline-width))}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-outlined-button-ripple-color)}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-state-layer-color)}.mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-hover-state-layer-opacity)}.mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-focus-state-layer-opacity)}.mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-pressed-state-layer-opacity)}.mat-mdc-outlined-button[disabled]{cursor:default;pointer-events:none;color:var(--mdc-outlined-button-disabled-label-text-color);border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-outlined-button .mdc-button__label{z-index:1}.mat-mdc-button .mat-mdc-focus-indicator,.mat-mdc-unelevated-button .mat-mdc-focus-indicator,.mat-mdc-raised-button .mat-mdc-focus-indicator,.mat-mdc-outlined-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-unelevated-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-raised-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-outlined-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-button .mat-mdc-button-touch-target,.mat-mdc-unelevated-button .mat-mdc-button-touch-target,.mat-mdc-raised-button .mat-mdc-button-touch-target,.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}[dir=rtl] .mat-mdc-button>.mat-icon,.mat-mdc-button>.mat-icon[dir=rtl]{margin-left:8px;margin-right:0}.mat-mdc-button .mdc-button__label+.mat-icon{margin-left:8px;margin-right:0}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon,.mat-mdc-button .mdc-button__label+.mat-icon[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem;margin-left:-4px;margin-right:8px}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon,[dir=rtl] .mat-mdc-raised-button>.mat-icon,[dir=rtl] .mat-mdc-outlined-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon[dir=rtl],.mat-mdc-raised-button>.mat-icon[dir=rtl],.mat-mdc-outlined-button>.mat-icon[dir=rtl]{margin-left:8px;margin-right:0}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon,[dir=rtl] .mat-mdc-raised-button>.mat-icon,[dir=rtl] .mat-mdc-outlined-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon[dir=rtl],.mat-mdc-raised-button>.mat-icon[dir=rtl],.mat-mdc-outlined-button>.mat-icon[dir=rtl]{margin-left:8px;margin-right:-4px}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon,.mat-mdc-raised-button .mdc-button__label+.mat-icon,.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-left:8px;margin-right:-4px}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon,.mat-mdc-unelevated-button .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-raised-button .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-outlined-button .mdc-button__label+.mat-icon[dir=rtl]{margin-left:-4px;margin-right:8px}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:-1px}.mat-mdc-unelevated-button .mat-mdc-focus-indicator::before,.mat-mdc-raised-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 3px)*-1)}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return D})();const ae=new t.OlP("mat-mdc-fab-default-options",{providedIn:"root",factory:Me});function Me(){return{color:"accent"}}const J=Me();let S=(()=>{class D extends K{constructor(v,r,g,H,R){super(v,r,g,H),this._options=R,this._isFab=!0,this._options=this._options||J,this.color=this._options.color||J.color}static#e=this.\u0275fac=function(r){return new(r||D)(t.Y36(t.SBq),t.Y36(e.t4),t.Y36(t.R0b),t.Y36(t.QbO,8),t.Y36(ae,8))};static#t=this.\u0275cmp=t.Xpm({type:D,selectors:[["button","mat-mini-fab",""]],hostVars:9,hostBindings:function(r,g){2&r&&(t.uIk("disabled",g.disabled||null),t.Tol(g.color?"mat-"+g.color:""),t.ekj("_mat-animation-noopable","NoopAnimations"===g._animationMode)("mat-unthemed",!g.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],features:[t.qOj],attrs:M,ngContentSelectors:m,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(r,g){1&r&&(t.F$t(w),t._UZ(0,"span",0),t.Hsn(1),t.TgZ(2,"span",1),t.Hsn(3,1),t.qZA(),t.Hsn(4,2),t._UZ(5,"span",2)(6,"span",3)),2&r&&t.ekj("mdc-button__ripple",!g._isFab)("mdc-fab__ripple",g._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.mdc-fab{position:relative;display:inline-flex;position:relative;align-items:center;justify-content:center;box-sizing:border-box;width:56px;height:56px;padding:0;border:none;fill:currentColor;text-decoration:none;cursor:pointer;user-select:none;-moz-appearance:none;-webkit-appearance:none;overflow:visible;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-fab .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-fab[hidden]{display:none}.mdc-fab::-moz-focus-inner{padding:0;border:0}.mdc-fab:hover{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mdc-fab.mdc-ripple-upgraded--background-focused,.mdc-fab:not(.mdc-ripple-upgraded):focus{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mdc-fab .mdc-fab__focus-ring{position:absolute}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{border-color:CanvasText}}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{border-color:CanvasText}}.mdc-fab:active,.mdc-fab:focus:active{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mdc-fab:active,.mdc-fab:focus{outline:none}.mdc-fab:hover{cursor:pointer}.mdc-fab>svg{width:100%}.mdc-fab--mini{width:40px;height:40px}.mdc-fab--extended{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-button-font-family);font-size:var(--mdc-typography-button-font-size);line-height:var(--mdc-typography-button-line-height);font-weight:var(--mdc-typography-button-font-weight);letter-spacing:var(--mdc-typography-button-letter-spacing);text-decoration:var(--mdc-typography-button-text-decoration);text-transform:var(--mdc-typography-button-text-transform);border-radius:24px;padding-left:20px;padding-right:20px;width:auto;max-width:100%;height:48px;line-height:normal}.mdc-fab--extended .mdc-fab__ripple{border-radius:24px}.mdc-fab--extended .mdc-fab__icon{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mdc-fab--extended .mdc-fab__icon,.mdc-fab--extended .mdc-fab__icon[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mdc-fab--extended .mdc-fab__label+.mdc-fab__icon,.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}.mdc-fab--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-fab--touch .mdc-fab__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-fab::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-fab::before{border-color:CanvasText}}.mdc-fab__label{justify-content:flex-start;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden;overflow-y:visible}.mdc-fab__icon{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mdc-fab .mdc-fab__icon{display:inline-flex;align-items:center;justify-content:center}.mdc-fab--exited{transform:scale(0);opacity:0;transition:opacity 15ms linear 150ms,transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-fab--exited .mdc-fab__icon{transform:scale(0);transition:transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-fab,.mat-mdc-mini-fab{background-color:var(--mdc-fab-container-color)}.mat-mdc-fab .mdc-fab__icon,.mat-mdc-mini-fab .mdc-fab__icon{width:var(--mdc-fab-icon-size);height:var(--mdc-fab-icon-size);font-size:var(--mdc-fab-icon-size)}.mat-mdc-fab:not(.mdc-fab--extended),.mat-mdc-mini-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-container-shape)}.mat-mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple,.mat-mdc-mini-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-container-shape)}.mat-mdc-extended-fab{font-family:var(--mdc-extended-fab-label-text-font);font-size:var(--mdc-extended-fab-label-text-size);font-weight:var(--mdc-extended-fab-label-text-weight);letter-spacing:var(--mdc-extended-fab-label-text-tracking)}.mat-mdc-fab,.mat-mdc-mini-fab{-webkit-tap-highlight-color:rgba(0,0,0,0);box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);flex-shrink:0;color:var(--mat-fab-foreground-color, inherit)}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab .mdc-button__label,.mat-mdc-mini-fab .mdc-button__label{z-index:1}.mat-mdc-fab .mat-mdc-focus-indicator,.mat-mdc-mini-fab .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab:focus .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-fab .mat-mdc-button-touch-target,.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-fab .mat-ripple-element,.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color)}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color)}.mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-hover-state-layer-opacity)}.mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-focus-state-layer-opacity)}.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity)}.mat-mdc-fab._mat-animation-noopable,.mat-mdc-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab:hover,.mat-mdc-fab:focus,.mat-mdc-mini-fab:hover,.mat-mdc-mini-fab:focus{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-mdc-fab:active,.mat-mdc-fab:focus:active,.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-mdc-fab[disabled],.mat-mdc-mini-fab[disabled]{cursor:default;pointer-events:none;box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);color:var(--mat-fab-disabled-state-foreground-color);background-color:var(--mat-fab-disabled-state-container-color)}.mat-mdc-fab:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-mini-fab:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}.mat-mdc-fab .mat-icon,.mat-mdc-fab .material-icons,.mat-mdc-mini-fab .mat-icon,.mat-mdc-mini-fab .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons,.mat-mdc-extended-fab>.mat-icon[dir=rtl],.mat-mdc-extended-fab>.material-icons[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.material-icons,.mat-mdc-extended-fab .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-extended-fab .mdc-button__label+.material-icons[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}'],encapsulation:2,changeDetection:0})}return D})(),f=(()=>{class D extends K{constructor(v,r,g,H){super(v,r,g,H),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static#e=this.\u0275fac=function(r){return new(r||D)(t.Y36(t.SBq),t.Y36(e.t4),t.Y36(t.R0b),t.Y36(t.QbO,8))};static#t=this.\u0275cmp=t.Xpm({type:D,selectors:[["button","mat-icon-button",""]],hostVars:9,hostBindings:function(r,g){2&r&&(t.uIk("disabled",g.disabled||null),t.Tol(g.color?"mat-"+g.color:""),t.ekj("_mat-animation-noopable","NoopAnimations"===g._animationMode)("mat-unthemed",!g.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],features:[t.qOj],attrs:k,ngContentSelectors:z,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(r,g){1&r&&(t.F$t(),t._UZ(0,"span",0),t.Hsn(1),t._UZ(2,"span",1)(3,"span",2))},styles:['.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}@media screen and (forced-colors: active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block}}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button[hidden]{display:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;display:none}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring{border-color:CanvasText}}.mdc-icon-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.mat-mdc-icon-button{height:var(--mdc-icon-button-state-layer-size);width:var(--mdc-icon-button-state-layer-size);color:var(--mdc-icon-button-icon-color);--mdc-icon-button-state-layer-size:48px;--mdc-icon-button-icon-size:24px}.mat-mdc-icon-button .mdc-button__icon{font-size:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button svg,.mat-mdc-icon-button img{width:var(--mdc-icon-button-icon-size);height:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button:disabled{color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button{padding:12px;border-radius:50%;flex-shrink:0;text-align:center;font-size:var(--mdc-icon-button-icon-size);-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button svg{vertical-align:baseline}.mat-mdc-icon-button[disabled]{cursor:default;pointer-events:none;color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-icon-button .mdc-button__label{z-index:1}.mat-mdc-icon-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-icon-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color)}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color)}.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-hover-state-layer-opacity)}.mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-focus-state-layer-opacity)}.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity)}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:50%}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return D})(),C=(()=>{class D{static#e=this.\u0275fac=function(r){return new(r||D)};static#t=this.\u0275mod=t.oAB({type:D});static#i=this.\u0275inj=t.cJS({imports:[A.BQ,A.si,A.BQ]})}return D})()},5195:(Fe,q,p)=>{"use strict";p.d(q,{$j:()=>z,QW:()=>J,a8:()=>E,dk:()=>W,dn:()=>k,n5:()=>M});var e=p(9212),t=p(6814),y=p(3680);const A=["*"],m=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],P=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],d=new e.OlP("MAT_CARD_CONFIG");let E=(()=>{class he{constructor(n){this.appearance=n?.appearance||"raised"}static#e=this.\u0275fac=function(s){return new(s||he)(e.Y36(d,8))};static#t=this.\u0275cmp=e.Xpm({type:he,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:4,hostBindings:function(s,f){2&s&&e.ekj("mat-mdc-card-outlined","outlined"===f.appearance)("mdc-card--outlined","outlined"===f.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],ngContentSelectors:A,decls:1,vars:0,template:function(s,f){1&s&&(e.F$t(),e.Hsn(0))},styles:['.mdc-card{display:flex;flex-direction:column;box-sizing:border-box}.mdc-card::after{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none;pointer-events:none}@media screen and (forced-colors: active){.mdc-card::after{border-color:CanvasText}}.mdc-card--outlined::after{border:none}.mdc-card__content{border-radius:inherit;height:100%}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__media--square::before{margin-top:100%}.mdc-card__media--16-9::before{margin-top:56.25%}.mdc-card__media-content{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box}.mdc-card__primary-action{display:flex;flex-direction:column;box-sizing:border-box;position:relative;outline:none;color:inherit;text-decoration:none;cursor:pointer;overflow:hidden}.mdc-card__primary-action:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__primary-action:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mdc-card__actions--full-bleed{padding:0}.mdc-card__action-buttons,.mdc-card__action-icons{display:flex;flex-direction:row;align-items:center;box-sizing:border-box}.mdc-card__action-icons{color:rgba(0, 0, 0, 0.6);flex-grow:1;justify-content:flex-end}.mdc-card__action-buttons+.mdc-card__action-icons{margin-left:16px;margin-right:0}[dir=rtl] .mdc-card__action-buttons+.mdc-card__action-icons,.mdc-card__action-buttons+.mdc-card__action-icons[dir=rtl]{margin-left:0;margin-right:16px}.mdc-card__action{display:inline-flex;flex-direction:row;align-items:center;box-sizing:border-box;justify-content:center;cursor:pointer;user-select:none}.mdc-card__action:focus{outline:none}.mdc-card__action--button{margin-left:0;margin-right:8px;padding:0 8px}[dir=rtl] .mdc-card__action--button,.mdc-card__action--button[dir=rtl]{margin-left:8px;margin-right:0}.mdc-card__action--button:last-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-card__action--button:last-child,.mdc-card__action--button:last-child[dir=rtl]{margin-left:0;margin-right:0}.mdc-card__actions--full-bleed .mdc-card__action--button{justify-content:space-between;width:100%;height:auto;max-height:none;margin:0;padding:8px 16px;text-align:left}[dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button,.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl]{text-align:right}.mdc-card__action--icon{margin:-6px 0;padding:12px}.mdc-card__action--icon:not(:disabled){color:rgba(0, 0, 0, 0.6)}.mat-mdc-card{border-radius:var(--mdc-elevated-card-container-shape);background-color:var(--mdc-elevated-card-container-color);border-width:0;border-style:solid;border-color:var(--mdc-elevated-card-container-color);box-shadow:var(--mdc-elevated-card-container-elevation)}.mat-mdc-card .mdc-card::after{border-radius:var(--mdc-elevated-card-container-shape)}.mat-mdc-card-outlined{border-width:var(--mdc-outlined-card-outline-width);border-style:solid;border-color:var(--mdc-outlined-card-outline-color);border-radius:var(--mdc-outlined-card-container-shape);background-color:var(--mdc-outlined-card-container-color);box-shadow:var(--mdc-outlined-card-container-elevation)}.mat-mdc-card-outlined .mdc-card::after{border-radius:var(--mdc-outlined-card-container-shape)}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font);line-height:var(--mat-card-title-text-line-height);font-size:var(--mat-card-title-text-size);letter-spacing:var(--mat-card-title-text-tracking);font-weight:var(--mat-card-title-text-weight)}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color);font-family:var(--mat-card-subtitle-text-font);line-height:var(--mat-card-subtitle-text-line-height);font-size:var(--mat-card-subtitle-text-size);letter-spacing:var(--mat-card-subtitle-text-tracking);font-weight:var(--mat-card-subtitle-text-weight)}.mat-mdc-card{position:relative}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}'],encapsulation:2,changeDetection:0})}return he})(),M=(()=>{class he{static#e=this.\u0275fac=function(s){return new(s||he)};static#t=this.\u0275dir=e.lG2({type:he,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"]})}return he})(),k=(()=>{class he{static#e=this.\u0275fac=function(s){return new(s||he)};static#t=this.\u0275dir=e.lG2({type:he,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"]})}return he})(),z=(()=>{class he{static#e=this.\u0275fac=function(s){return new(s||he)};static#t=this.\u0275dir=e.lG2({type:he,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"]})}return he})(),W=(()=>{class he{static#e=this.\u0275fac=function(s){return new(s||he)};static#t=this.\u0275cmp=e.Xpm({type:he,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],ngContentSelectors:P,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(s,f){1&s&&(e.F$t(m),e.Hsn(0),e.TgZ(1,"div",0),e.Hsn(2,1),e.qZA(),e.Hsn(3,2))},encapsulation:2,changeDetection:0})}return he})(),J=(()=>{class he{static#e=this.\u0275fac=function(s){return new(s||he)};static#t=this.\u0275mod=e.oAB({type:he});static#i=this.\u0275inj=e.cJS({imports:[y.BQ,t.ez,y.BQ]})}return he})()},5986:(Fe,q,p)=>{"use strict";p.d(q,{oG:()=>k,p9:()=>j});var e=p(9212),t=p(6223),y=p(3680);const A=["input"],l=["label"],w=["*"],m=new e.OlP("mat-checkbox-default-options",{providedIn:"root",factory:P});function P(){return{color:"accent",clickAction:"check-indeterminate"}}const d={provide:t.JU,useExisting:(0,e.Gpc)(()=>k),multi:!0};class E{}let M=0;const I=P();let k=(()=>{class K{focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(ie){const se=new E;return se.source=this,se.checked=ie,se}_getAnimationTargetElement(){return this._inputElement?.nativeElement}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,se,ue,ae,Me,J){this._elementRef=ie,this._changeDetectorRef=se,this._ngZone=ue,this._animationMode=Me,this._options=J,this._animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"},this.ariaLabel="",this.ariaLabelledby=null,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||I,this.color=this._options.color||I.color,this.tabIndex=parseInt(ae)||0,this.id=this._uniqueId="mat-mdc-checkbox-"+ ++M}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(ie){ie!=this.checked&&(this._checked=ie,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(ie){ie!==this.disabled&&(this._disabled=ie,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(ie){const se=ie!=this._indeterminate;this._indeterminate=ie,se&&(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(ie){this.checked=!!ie}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this._onTouched=ie}setDisabledState(ie){this.disabled=ie}_transitionCheckState(ie){let se=this._currentCheckState,ue=this._getAnimationTargetElement();if(se!==ie&&ue&&(this._currentAnimationClass&&ue.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(se,ie),this._currentCheckState=ie,this._currentAnimationClass.length>0)){ue.classList.add(this._currentAnimationClass);const ae=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{ue.classList.remove(ae)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const ie=this._options?.clickAction;this.disabled||"noop"===ie?!this.disabled&&"noop"===ie&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==ie&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?1:2),this._emitChangeEvent())}_onInteractionEvent(ie){ie.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(ie,se){if("NoopAnimations"===this._animationMode)return"";switch(ie){case 0:if(1===se)return this._animationClasses.uncheckedToChecked;if(3==se)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case 2:return 1===se?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case 1:return 2===se?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case 3:return 1===se?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(ie){const se=this._inputElement;se&&(se.nativeElement.indeterminate=ie)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(ie){ie.target&&this._labelElement.nativeElement.contains(ie.target)&&ie.stopPropagation()}static#e=this.\u0275fac=function(se){return new(se||K)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(e.R0b),e.$8M("tabindex"),e.Y36(e.QbO,8),e.Y36(m,8))};static#t=this.\u0275cmp=e.Xpm({type:K,selectors:[["mat-checkbox"]],viewQuery:function(se,ue){if(1&se&&(e.Gf(A,5),e.Gf(l,5),e.Gf(y.wG,5)),2&se){let ae;e.iGM(ae=e.CRH())&&(ue._inputElement=ae.first),e.iGM(ae=e.CRH())&&(ue._labelElement=ae.first),e.iGM(ae=e.CRH())&&(ue.ripple=ae.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:14,hostBindings:function(se,ue){2&se&&(e.Ikx("id",ue.id),e.uIk("tabindex",null)("aria-label",null)("aria-labelledby",null),e.Tol(ue.color?"mat-"+ue.color:"mat-accent"),e.ekj("_mat-animation-noopable","NoopAnimations"===ue._animationMode)("mdc-checkbox--disabled",ue.disabled)("mat-mdc-checkbox-disabled",ue.disabled)("mat-mdc-checkbox-checked",ue.checked))},inputs:{ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],id:"id",required:["required","required",e.VuI],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:["disableRipple","disableRipple",e.VuI],tabIndex:["tabIndex","tabIndex",ie=>null==ie?void 0:(0,e.Cb_)(ie)],color:"color",checked:["checked","checked",e.VuI],disabled:["disabled","disabled",e.VuI],indeterminate:["indeterminate","indeterminate",e.VuI]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],features:[e._Bn([d]),e.Xq5],ngContentSelectors:w,decls:15,vars:20,consts:[[1,"mdc-form-field",3,"click"],[1,"mdc-checkbox"],["checkbox",""],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"checked","indeterminate","disabled","id","required","tabIndex","blur","click","change"],["input",""],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"],["label",""]],template:function(se,ue){if(1&se&&(e.F$t(),e.TgZ(0,"div",0),e.NdJ("click",function(Me){return ue._preventBubblingFromLabel(Me)}),e.TgZ(1,"div",1,2)(3,"div",3),e.NdJ("click",function(){return ue._onTouchTargetClick()}),e.qZA(),e.TgZ(4,"input",4,5),e.NdJ("blur",function(){return ue._onBlur()})("click",function(){return ue._onInputClick()})("change",function(Me){return ue._onInteractionEvent(Me)}),e.qZA(),e._UZ(6,"div",6),e.TgZ(7,"div",7),e.O4$(),e.TgZ(8,"svg",8),e._UZ(9,"path",9),e.qZA(),e.kcU(),e._UZ(10,"div",10),e.qZA(),e._UZ(11,"div",11),e.qZA(),e.TgZ(12,"label",12,13),e.Hsn(14),e.qZA()()),2&se){const ae=e.MAs(2);e.ekj("mdc-form-field--align-end","before"==ue.labelPosition),e.xp6(4),e.ekj("mdc-checkbox--selected",ue.checked),e.Q6J("checked",ue.checked)("indeterminate",ue.indeterminate)("disabled",ue.disabled)("id",ue.inputId)("required",ue.required)("tabIndex",ue.disabled?-1:ue.tabIndex),e.uIk("aria-label",ue.ariaLabel||null)("aria-labelledby",ue.ariaLabelledby)("aria-describedby",ue.ariaDescribedby)("aria-checked",ue.indeterminate?"mixed":null)("name",ue.name)("value",ue.value),e.xp6(7),e.Q6J("matRippleTrigger",ae)("matRippleDisabled",ue.disableRipple||ue.disabled)("matRippleCentered",!0),e.xp6(1),e.Q6J("for",ue.inputId)}},dependencies:[y.wG],styles:['.mdc-touch-target-wrapper{display:inline}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-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 mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:mdc-animation-deceleration-curve-timing-function;transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}}.mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}@keyframes mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}}@keyframes mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}}.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2)}.mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:focus:not(:checked):not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color);background-color:var(--mdc-checkbox-selected-focus-icon-color)}.mdc-checkbox:hover .mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox:hover .mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default}.mat-mdc-checkbox label:empty{display:none}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return K})(),W=(()=>{class K{static#e=this.\u0275fac=function(se){return new(se||K)};static#t=this.\u0275mod=e.oAB({type:K});static#i=this.\u0275inj=e.cJS({})}return K})(),j=(()=>{class K{static#e=this.\u0275fac=function(se){return new(se||K)};static#t=this.\u0275mod=e.oAB({type:K});static#i=this.\u0275inj=e.cJS({imports:[y.BQ,y.si,W,y.BQ,W]})}return K})()},2557:(Fe,q,p)=>{"use strict";p.d(q,{HS:()=>de,Hi:()=>lt});var e=p(2495),t=p(9212),y=p(6814),A=p(3680),l=p(4300),w=p(8645),m=p(3019),P=p(8180),I=(p(9773),p(7921),p(4664),p(6028));function W(Qe,St){1&Qe&&(t.TgZ(0,"span",7),t.Hsn(1,1),t.qZA())}function j(Qe,St){1&Qe&&(t.TgZ(0,"span",8),t.Hsn(1,2),t.qZA())}p(9388),p(6223),p(5683);const K=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],X=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"],O=new t.OlP("mat-chips-default-options"),v=new t.OlP("MatChipAvatar"),r=new t.OlP("MatChipTrailingIcon"),g=new t.OlP("MatChipRemove"),H=new t.OlP("MatChip");class R{}const ee=(0,A.sb)(R,-1);let De=(()=>{class Qe extends ee{get disabled(){return this._disabled||this._parentChip.disabled}set disabled(dt){this._disabled=(0,e.Ig)(dt)}_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(dt,te){super(),this._elementRef=dt,this._parentChip=te,this.isInteractive=!0,this._isPrimary=!0,this._disabled=!1,this._allowFocusWhenDisabled=!1,"BUTTON"===dt.nativeElement.nodeName&&dt.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(dt){!this.disabled&&this.isInteractive&&this._isPrimary&&(dt.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(dt){(dt.keyCode===I.K5||dt.keyCode===I.L_)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(dt.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static#e=this.\u0275fac=function(te){return new(te||Qe)(t.Y36(t.SBq),t.Y36(H))};static#t=this.\u0275dir=t.lG2({type:Qe,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:9,hostBindings:function(te,Ue){1&te&&t.NdJ("click",function(Ye){return Ue._handleClick(Ye)})("keydown",function(Ye){return Ue._handleKeydown(Ye)}),2&te&&(t.uIk("tabindex",Ue._getTabindex())("disabled",Ue._getDisabledAttribute())("aria-disabled",Ue.disabled),t.ekj("mdc-evolution-chip__action--primary",Ue._isPrimary)("mdc-evolution-chip__action--presentational",!Ue.isInteractive)("mdc-evolution-chip__action--trailing",!Ue._isPrimary))},inputs:{disabled:"disabled",tabIndex:"tabIndex",isInteractive:"isInteractive",_allowFocusWhenDisabled:"_allowFocusWhenDisabled"},features:[t.qOj]})}return Qe})(),ye=0;const fe=(0,A.sb)((0,A.pj)((0,A.Kr)((0,A.Id)(class{constructor(Qe){this._elementRef=Qe}})),"primary"),-1);let de=(()=>{class Qe extends fe{_hasFocus(){return this._hasFocusInternal}get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(dt){this._value=dt}get removable(){return this._removable}set removable(dt){this._removable=(0,e.Ig)(dt)}get highlighted(){return this._highlighted}set highlighted(dt){this._highlighted=(0,e.Ig)(dt)}get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(dt){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,dt)}constructor(dt,te,Ue,Bt,Ye,je,Ft,xt){super(te),this._changeDetectorRef=dt,this._ngZone=Ue,this._focusMonitor=Bt,this._globalRippleOptions=Ft,this._onFocus=new w.x,this._onBlur=new w.x,this.role=null,this._hasFocusInternal=!1,this.id="mat-mdc-chip-"+ye++,this.ariaLabel=null,this.ariaDescription=null,this._ariaDescriptionId=`${this.id}-aria-description`,this._removable=!0,this._highlighted=!1,this.removed=new t.vpe,this.destroyed=new t.vpe,this.basicChipAttrName="mat-basic-chip",this._rippleLoader=(0,t.f3M)(A.Fq),this._document=Ye,this._animationsDisabled="NoopAnimations"===je,null!=xt&&(this.tabIndex=parseInt(xt)??this.defaultTabIndex),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){const dt=this._elementRef.nativeElement;this._isBasicChip=dt.hasAttribute(this.basicChipAttrName)||dt.tagName.toLowerCase()===this.basicChipAttrName}ngAfterViewInit(){this._textElement=this._elementRef.nativeElement.querySelector(".mat-mdc-chip-action-label"),this._pendingFocus&&(this._pendingFocus=!1,this.focus())}ngAfterContentInit(){this._actionChanges=(0,m.T)(this._allLeadingIcons.changes,this._allTrailingIcons.changes,this._allRemoveIcons.changes).subscribe(()=>this._changeDetectorRef.markForCheck())}ngDoCheck(){this._rippleLoader.setDisabled(this._elementRef.nativeElement,this._isRippleDisabled())}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._actionChanges?.unsubscribe(),this.destroyed.emit({chip:this}),this.destroyed.complete()}remove(){this.removable&&this.removed.emit({chip:this})}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(dt){(dt.keyCode===I.ZH||dt.keyCode===I.yY)&&(dt.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(dt){return this._getActions().find(te=>{const Ue=te._elementRef.nativeElement;return Ue===dt||Ue.contains(dt)})}_getActions(){const dt=[];return this.primaryAction&&dt.push(this.primaryAction),this.removeIcon&&dt.push(this.removeIcon),this.trailingIcon&&dt.push(this.trailingIcon),dt}_handlePrimaryActionInteraction(){}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(dt=>{const te=null!==dt;te!==this._hasFocusInternal&&(this._hasFocusInternal=te,te?this._onFocus.next({chip:this}):this._ngZone.onStable.pipe((0,P.q)(1)).subscribe(()=>this._ngZone.run(()=>this._onBlur.next({chip:this}))))})}static#e=this.\u0275fac=function(te){return new(te||Qe)(t.Y36(t.sBO),t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(l.tE),t.Y36(y.K0),t.Y36(t.QbO,8),t.Y36(A.Y2,8),t.$8M("tabindex"))};static#t=this.\u0275cmp=t.Xpm({type:Qe,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(te,Ue,Bt){if(1&te&&(t.Suo(Bt,v,5),t.Suo(Bt,r,5),t.Suo(Bt,g,5),t.Suo(Bt,v,5),t.Suo(Bt,r,5),t.Suo(Bt,g,5)),2&te){let Ye;t.iGM(Ye=t.CRH())&&(Ue.leadingIcon=Ye.first),t.iGM(Ye=t.CRH())&&(Ue.trailingIcon=Ye.first),t.iGM(Ye=t.CRH())&&(Ue.removeIcon=Ye.first),t.iGM(Ye=t.CRH())&&(Ue._allLeadingIcons=Ye),t.iGM(Ye=t.CRH())&&(Ue._allTrailingIcons=Ye),t.iGM(Ye=t.CRH())&&(Ue._allRemoveIcons=Ye)}},viewQuery:function(te,Ue){if(1&te&&t.Gf(De,5),2&te){let Bt;t.iGM(Bt=t.CRH())&&(Ue.primaryAction=Bt.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:30,hostBindings:function(te,Ue){1&te&&t.NdJ("keydown",function(Ye){return Ue._handleKeydown(Ye)}),2&te&&(t.Ikx("id",Ue.id),t.uIk("role",Ue.role)("tabindex",Ue.role?Ue.tabIndex:null)("aria-label",Ue.ariaLabel),t.ekj("mdc-evolution-chip",!Ue._isBasicChip)("mdc-evolution-chip--disabled",Ue.disabled)("mdc-evolution-chip--with-trailing-action",Ue._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",Ue.leadingIcon)("mdc-evolution-chip--with-primary-icon",Ue.leadingIcon)("mdc-evolution-chip--with-avatar",Ue.leadingIcon)("mat-mdc-chip-with-avatar",Ue.leadingIcon)("mat-mdc-chip-highlighted",Ue.highlighted)("mat-mdc-chip-disabled",Ue.disabled)("mat-mdc-basic-chip",Ue._isBasicChip)("mat-mdc-standard-chip",!Ue._isBasicChip)("mat-mdc-chip-with-trailing-icon",Ue._hasTrailingIcon())("_mat-animation-noopable",Ue._animationsDisabled))},inputs:{color:"color",disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex",role:"role",id:"id",ariaLabel:["aria-label","ariaLabel"],ariaDescription:["aria-description","ariaDescription"],value:"value",removable:"removable",highlighted:"highlighted"},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],features:[t._Bn([{provide:H,useExisting:Qe}]),t.qOj],ngContentSelectors:X,decls:8,vars:3,consts:[[1,"mat-mdc-chip-focus-overlay"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--primary"],["matChipAction","",3,"isInteractive"],["class","mdc-evolution-chip__graphic mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__text-label","mat-mdc-chip-action-label"],[1,"mat-mdc-chip-primary-focus-indicator","mat-mdc-focus-indicator"],["class","mdc-evolution-chip__cell mdc-evolution-chip__cell--trailing"],[1,"mdc-evolution-chip__graphic","mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(te,Ue){1&te&&(t.F$t(K),t._UZ(0,"span",0),t.TgZ(1,"span",1)(2,"span",2),t.YNc(3,W,2,0,"span",3),t.TgZ(4,"span",4),t.Hsn(5),t._UZ(6,"span",5),t.qZA()()(),t.YNc(7,j,2,0,"span",6)),2&te&&(t.xp6(2),t.Q6J("isInteractive",!1),t.xp6(1),t.um2(3,Ue.leadingIcon?3:-1),t.xp6(4),t.um2(7,Ue._hasTrailingIcon()?7:-1))},dependencies:[De],styles:['.mdc-evolution-chip,.mdc-evolution-chip__cell,.mdc-evolution-chip__action{display:inline-flex;align-items:center}.mdc-evolution-chip{position:relative;max-width:100%}.mdc-evolution-chip .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{overflow-x:hidden}.mdc-evolution-chip__cell--trailing{flex:1 0 auto}.mdc-evolution-chip__action{align-items:center;background:none;border:none;box-sizing:content-box;cursor:pointer;display:inline-flex;justify-content:center;outline:none;padding:0;text-decoration:none;color:inherit}.mdc-evolution-chip__action--presentational{cursor:auto}.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{pointer-events:none}.mdc-evolution-chip__action--primary{overflow-x:hidden}.mdc-evolution-chip__action--trailing{position:relative;overflow:visible}.mdc-evolution-chip__action--primary:before{box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1}.mdc-evolution-chip--touch{margin-top:8px;margin-bottom:8px}.mdc-evolution-chip__action-touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-evolution-chip__text-label{white-space:nowrap;user-select:none;text-overflow:ellipsis;overflow:hidden}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mdc-evolution-chip__checkmark-background{opacity:0}.mdc-evolution-chip__checkmark-svg{display:block}.mdc-evolution-chip__checkmark-path{stroke-width:2px;stroke-dasharray:29.7833385;stroke-dashoffset:29.7833385;stroke:currentColor}.mdc-evolution-chip--selecting .mdc-evolution-chip__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark{transition:transform 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__graphic{transition:width 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark{transition:opacity 50ms 0ms linear,transform 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-50%, -50%)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@keyframes mdc-evolution-chip-enter{from{transform:scale(0.8);opacity:.4}to{transform:scale(1);opacity:1}}.mdc-evolution-chip--enter{animation:mdc-evolution-chip-enter 100ms 0ms cubic-bezier(0, 0, 0.2, 1)}@keyframes mdc-evolution-chip-exit{from{opacity:1}to{opacity:0}}.mdc-evolution-chip--exit{animation:mdc-evolution-chip-exit 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-evolution-chip--hidden{opacity:0;pointer-events:none;transition:width 150ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-standard-chip{border-radius:var(--mdc-chip-container-shape-radius);height:var(--mdc-chip-container-height)}.mat-mdc-standard-chip .mdc-evolution-chip__ripple{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mdc-chip-with-avatar-avatar-shape-radius)}.mat-mdc-standard-chip.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--with-primary-icon){--mdc-chip-graphic-selected-width:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{height:var(--mdc-chip-with-avatar-avatar-size);width:var(--mdc-chip-with-avatar-avatar-size);font-size:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mdc-chip-label-text-font);line-height:var(--mdc-chip-label-text-line-height);font-size:var(--mdc-chip-label-text-size);font-weight:var(--mdc-chip-label-text-weight);letter-spacing:var(--mdc-chip-label-text-tracking)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{height:var(--mdc-chip-with-icon-icon-size);width:var(--mdc-chip-with-icon-icon-size);font-size:var(--mdc-chip-with-icon-icon-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-selected-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color);opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-standard-chip .mdc-evolution-chip__checkmark{height:20px;width:20px}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-selected-icon-color, currentColor)}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-mdc-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-mdc-standard-chip .mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:.4}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mat-mdc-chip-action-label{overflow:visible}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary{flex-basis:100%}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit}.mat-mdc-standard-chip .mat-mdc-chip-graphic,.mat-mdc-standard-chip .mat-mdc-chip-trailing-icon{box-sizing:content-box}.mat-mdc-standard-chip._mat-animation-noopable,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__graphic,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark-path{transition-duration:1ms;animation-duration:1ms}.mat-mdc-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.mat-mdc-chip-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;opacity:0;border-radius:inherit;transition:opacity 150ms linear}._mat-animation-noopable .mat-mdc-chip-focus-overlay{transition:none}.mat-mdc-basic-chip .mat-mdc-chip-focus-overlay{display:none}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{opacity:.04}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{opacity:.12}.mat-mdc-chip .mat-ripple.mat-mdc-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-chip-avatar{text-align:center;line-height:1;color:var(--mdc-chip-with-icon-icon-color, currentColor)}.mat-mdc-chip{position:relative;z-index:0}.mat-mdc-chip-action-label{text-align:left;z-index:1}[dir=rtl] .mat-mdc-chip-action-label{text-align:right}.mat-mdc-chip.mdc-evolution-chip--with-trailing-action .mat-mdc-chip-action-label{position:relative}.mat-mdc-chip-action-label .mat-mdc-chip-primary-focus-indicator{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.mat-mdc-chip-action-label .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-remove{opacity:.54}.mat-mdc-chip-remove:focus{opacity:1}.mat-mdc-chip-remove::before{margin:calc(var(--mat-mdc-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-remove .mat-icon{width:inherit;height:inherit;font-size:inherit;box-sizing:content-box}.mat-chip-edit-input{cursor:text;display:inline-block;color:inherit;outline:0}.cdk-high-contrast-active .mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}.mat-mdc-chip-action:focus .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Qe})(),lt=(()=>{class Qe{static#e=this.\u0275fac=function(te){return new(te||Qe)};static#t=this.\u0275mod=t.oAB({type:Qe});static#i=this.\u0275inj=t.cJS({providers:[A.rD,{provide:O,useValue:{separatorKeyCodes:[I.K5]}}],imports:[A.BQ,A.si,A.BQ]})}return Qe})()},3680:(Fe,q,p)=>{"use strict";p.d(q,{yN:()=>ie,mZ:()=>se,_A:()=>r,rD:()=>ye,sG:()=>g,Ad:()=>O,K7:()=>St,HF:()=>lt,Y2:()=>Ae,BQ:()=>Me,uc:()=>le,XK:()=>Ke,ey:()=>Bt,Ng:()=>Ft,rN:()=>Ue,us:()=>Ie,wG:()=>Be,Fq:()=>Ge,si:()=>rt,LF:()=>ee,IR:()=>ut,CB:()=>Ye,jH:()=>je,pj:()=>s,Kr:()=>f,Id:()=>n,FD:()=>C,dB:()=>D,sb:()=>h});var e=p(9212),t=p(4300),y=p(9388),l=p(6814),w=p(2831),m=p(2495),P=p(5592),d=p(8645),E=p(6028);const k=["text"];function z(Xe,gt){if(1&Xe&&e._UZ(0,"mat-pseudo-checkbox",6),2&Xe){const Le=e.oxw();e.Q6J("disabled",Le.disabled)("state",Le.selected?"checked":"unchecked")}}function B(Xe,gt){if(1&Xe&&e._UZ(0,"mat-pseudo-checkbox",7),2&Xe){const Le=e.oxw();e.Q6J("disabled",Le.disabled)}}function W(Xe,gt){if(1&Xe&&(e.TgZ(0,"span",8),e._uU(1),e.qZA()),2&Xe){const Le=e.oxw();e.xp6(1),e.hij("(",Le.group.label,")")}}const j=[[["mat-icon"]],"*"],K=["mat-icon","*"];let ie=(()=>{class Xe{static#e=this.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)";static#t=this.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)";static#i=this.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)";static#n=this.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)"}return Xe})(),se=(()=>{class Xe{static#e=this.COMPLEX="375ms";static#t=this.ENTERING="225ms";static#i=this.EXITING="195ms"}return Xe})();const ae=new e.OlP("mat-sanity-checks",{providedIn:"root",factory:function ue(){return!0}});let Me=(()=>{class Xe{constructor(Le,be,$){this._sanityChecks=be,this._document=$,this._hasDoneGlobalChecks=!1,Le._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(Le){return!(0,w.Oy)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[Le])}static#e=this.\u0275fac=function(be){return new(be||Xe)(e.LFG(t.qm),e.LFG(ae,8),e.LFG(l.K0))};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({imports:[y.vT,y.vT]})}return Xe})();function n(Xe){return class extends Xe{get disabled(){return this._disabled}set disabled(gt){this._disabled=(0,m.Ig)(gt)}constructor(...gt){super(...gt),this._disabled=!1}}}function s(Xe,gt){return class extends Xe{get color(){return this._color}set color(Le){const be=Le||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)}constructor(...Le){super(...Le),this.defaultColor=gt,this.color=gt}}}function f(Xe){return class extends Xe{get disableRipple(){return this._disableRipple}set disableRipple(gt){this._disableRipple=(0,m.Ig)(gt)}constructor(...gt){super(...gt),this._disableRipple=!1}}}function h(Xe,gt=0){return class extends Xe{get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(Le){this._tabIndex=null!=Le?(0,m.su)(Le):this.defaultTabIndex}constructor(...Le){super(...Le),this._tabIndex=gt,this.defaultTabIndex=gt}}}function C(Xe){return class extends Xe{updateErrorState(){const gt=this.errorState,ne=(this.errorStateMatcher||this._defaultErrorStateMatcher).isErrorState(this.ngControl?this.ngControl.control:null,this._parentFormGroup||this._parentForm);ne!==gt&&(this.errorState=ne,this.stateChanges.next())}constructor(...gt){super(...gt),this.errorState=!1}}}function D(Xe){return class extends Xe{constructor(...gt){super(...gt),this._isInitialized=!1,this._pendingSubscribers=[],this.initialized=new P.y(Le=>{this._isInitialized?this._notifySubscriber(Le):this._pendingSubscribers.push(Le)})}_markInitialized(){this._isInitialized=!0,this._pendingSubscribers.forEach(this._notifySubscriber),this._pendingSubscribers=null}_notifySubscriber(gt){gt.next(),gt.complete()}}}const O=new e.OlP("MAT_DATE_LOCALE",{providedIn:"root",factory:function v(){return(0,e.f3M)(e.soG)}});class r{constructor(){this._localeChanges=new d.x,this.localeChanges=this._localeChanges}getValidDateOrNull(gt){return this.isDateInstance(gt)&&this.isValid(gt)?gt:null}deserialize(gt){return null==gt||this.isDateInstance(gt)&&this.isValid(gt)?gt:this.invalid()}setLocale(gt){this.locale=gt,this._localeChanges.next()}compareDate(gt,Le){return this.getYear(gt)-this.getYear(Le)||this.getMonth(gt)-this.getMonth(Le)||this.getDate(gt)-this.getDate(Le)}sameDate(gt,Le){if(gt&&Le){let be=this.isValid(gt),$=this.isValid(Le);return be&&$?!this.compareDate(gt,Le):be==$}return gt==Le}clampDate(gt,Le,be){return Le&&this.compareDate(gt,Le)<0?Le:be&&this.compareDate(gt,be)>0?be:gt}}const g=new e.OlP("mat-date-formats"),H=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function R(Xe,gt){const Le=Array(Xe);for(let be=0;be{class Xe extends r{constructor(Le){super(),this.useUtcForDisplay=!1,this._matDateLocale=(0,e.f3M)(O,{optional:!0}),void 0!==Le&&(this._matDateLocale=Le),super.setLocale(this._matDateLocale)}getYear(Le){return Le.getFullYear()}getMonth(Le){return Le.getMonth()}getDate(Le){return Le.getDate()}getDayOfWeek(Le){return Le.getDay()}getMonthNames(Le){const be=new Intl.DateTimeFormat(this.locale,{month:Le,timeZone:"utc"});return R(12,$=>this._format(be,new Date(2017,$,1)))}getDateNames(){const Le=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return R(31,be=>this._format(Le,new Date(2017,0,be+1)))}getDayOfWeekNames(Le){const be=new Intl.DateTimeFormat(this.locale,{weekday:Le,timeZone:"utc"});return R(7,$=>this._format(be,new Date(2017,0,$+1)))}getYearName(Le){const be=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(be,Le)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(Le){return this.getDate(this._createDateWithOverflow(this.getYear(Le),this.getMonth(Le)+1,0))}clone(Le){return new Date(Le.getTime())}createDate(Le,be,$){let ne=this._createDateWithOverflow(Le,be,$);return ne.getMonth(),ne}today(){return new Date}parse(Le,be){return"number"==typeof Le?new Date(Le):Le?new Date(Date.parse(Le)):null}format(Le,be){if(!this.isValid(Le))throw Error("NativeDateAdapter: Cannot format invalid date.");const $=new Intl.DateTimeFormat(this.locale,{...be,timeZone:"utc"});return this._format($,Le)}addCalendarYears(Le,be){return this.addCalendarMonths(Le,12*be)}addCalendarMonths(Le,be){let $=this._createDateWithOverflow(this.getYear(Le),this.getMonth(Le)+be,this.getDate(Le));return this.getMonth($)!=((this.getMonth(Le)+be)%12+12)%12&&($=this._createDateWithOverflow(this.getYear($),this.getMonth($),0)),$}addCalendarDays(Le,be){return this._createDateWithOverflow(this.getYear(Le),this.getMonth(Le),this.getDate(Le)+be)}toIso8601(Le){return[Le.getUTCFullYear(),this._2digit(Le.getUTCMonth()+1),this._2digit(Le.getUTCDate())].join("-")}deserialize(Le){if("string"==typeof Le){if(!Le)return null;if(H.test(Le)){let be=new Date(Le);if(this.isValid(be))return be}}return super.deserialize(Le)}isDateInstance(Le){return Le instanceof Date}isValid(Le){return!isNaN(Le.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(Le,be,$){const ne=new Date;return ne.setFullYear(Le,be,$),ne.setHours(0,0,0,0),ne}_2digit(Le){return("00"+Le).slice(-2)}_format(Le,be){const $=new Date;return $.setUTCFullYear(be.getFullYear(),be.getMonth(),be.getDate()),$.setUTCHours(be.getHours(),be.getMinutes(),be.getSeconds(),be.getMilliseconds()),Le.format($)}static#e=this.\u0275fac=function(be){return new(be||Xe)(e.LFG(O,8))};static#t=this.\u0275prov=e.Yz7({token:Xe,factory:Xe.\u0275fac})}return Xe})();const De={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 ct=(()=>{class Xe{static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({providers:[{provide:r,useClass:ee}]})}return Xe})(),Ke=(()=>{class Xe{static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({providers:[{provide:g,useValue:De}],imports:[ct]})}return Xe})(),ye=(()=>{class Xe{isErrorState(Le,be){return!!(Le&&Le.invalid&&(Le.touched||be&&be.submitted))}static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275prov=e.Yz7({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})(),le=(()=>{class Xe{static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({imports:[Me,Me]})}return Xe})();class pe{constructor(gt,Le,be,$=!1){this._renderer=gt,this.element=Le,this.config=be,this._animationForciblyDisabledThroughCss=$,this.state=3}fadeOut(){this._renderer.fadeOutRipple(this)}}const qe=(0,w.i$)({passive:!0,capture:!0});class re{constructor(){this._events=new Map,this._delegateEventHandler=gt=>{const Le=(0,w.sA)(gt);Le&&this._events.get(gt.type)?.forEach((be,$)=>{($===Le||$.contains(Le))&&be.forEach(ne=>ne.handleEvent(gt))})}}addHandler(gt,Le,be,$){const ne=this._events.get(Le);if(ne){const ke=ne.get(be);ke?ke.add($):ne.set(be,new Set([$]))}else this._events.set(Le,new Map([[be,new Set([$])]])),gt.runOutsideAngular(()=>{document.addEventListener(Le,this._delegateEventHandler,qe)})}removeHandler(gt,Le,be){const $=this._events.get(gt);if(!$)return;const ne=$.get(Le);ne&&(ne.delete(be),0===ne.size&&$.delete(Le),0===$.size&&(this._events.delete(gt),document.removeEventListener(gt,this._delegateEventHandler,qe)))}}const ve={enterDuration:225,exitDuration:150},Ze=(0,w.i$)({passive:!0,capture:!0}),We=["mousedown","touchstart"],Ct=["mouseup","mouseleave","touchend","touchcancel"];class ut{static#e=this._eventManager=new re;constructor(gt,Le,be,$){this._target=gt,this._ngZone=Le,this._platform=$,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,$.isBrowser&&(this._containerElement=(0,m.fI)(be))}fadeInRipple(gt,Le,be={}){const $=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),ne={...ve,...be.animation};be.centered&&(gt=$.left+$.width/2,Le=$.top+$.height/2);const ke=be.radius||function It(Xe,gt,Le){const be=Math.max(Math.abs(Xe-Le.left),Math.abs(Xe-Le.right)),$=Math.max(Math.abs(gt-Le.top),Math.abs(gt-Le.bottom));return Math.sqrt(be*be+$*$)}(gt,Le,$),Nt=gt-$.left,At=Le-$.top,Wt=ne.enterDuration,gi=document.createElement("div");gi.classList.add("mat-ripple-element"),gi.style.left=Nt-ke+"px",gi.style.top=At-ke+"px",gi.style.height=2*ke+"px",gi.style.width=2*ke+"px",null!=be.color&&(gi.style.backgroundColor=be.color),gi.style.transitionDuration=`${Wt}ms`,this._containerElement.appendChild(gi);const ei=window.getComputedStyle(gi),Fi=ei.transitionDuration,li="none"===ei.transitionProperty||"0s"===Fi||"0s, 0s"===Fi||0===$.width&&0===$.height,ui=new pe(this,gi,be,li);gi.style.transform="scale3d(1, 1, 1)",ui.state=0,be.persistent||(this._mostRecentTransientRipple=ui);let un=null;return!li&&(Wt||ne.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const Ki=()=>this._finishRippleTransition(ui),Mi=()=>this._destroyRipple(ui);gi.addEventListener("transitionend",Ki),gi.addEventListener("transitioncancel",Mi),un={onTransitionEnd:Ki,onTransitionCancel:Mi}}),this._activeRipples.set(ui,un),(li||!Wt)&&this._finishRippleTransition(ui),ui}fadeOutRipple(gt){if(2===gt.state||3===gt.state)return;const Le=gt.element,be={...ve,...gt.config.animation};Le.style.transitionDuration=`${be.exitDuration}ms`,Le.style.opacity="0",gt.state=2,(gt._animationForciblyDisabledThroughCss||!be.exitDuration)&&this._finishRippleTransition(gt)}fadeOutAll(){this._getActiveRipples().forEach(gt=>gt.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(gt=>{gt.config.persistent||gt.fadeOut()})}setupTriggerEvents(gt){const Le=(0,m.fI)(gt);!this._platform.isBrowser||!Le||Le===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=Le,We.forEach(be=>{ut._eventManager.addHandler(this._ngZone,be,Le,this)}))}handleEvent(gt){"mousedown"===gt.type?this._onMousedown(gt):"touchstart"===gt.type?this._onTouchStart(gt):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{Ct.forEach(Le=>{this._triggerElement.addEventListener(Le,this,Ze)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(gt){0===gt.state?this._startFadeOutTransition(gt):2===gt.state&&this._destroyRipple(gt)}_startFadeOutTransition(gt){const Le=gt===this._mostRecentTransientRipple,{persistent:be}=gt.config;gt.state=1,!be&&(!Le||!this._isPointerDown)&>.fadeOut()}_destroyRipple(gt){const Le=this._activeRipples.get(gt)??null;this._activeRipples.delete(gt),this._activeRipples.size||(this._containerRect=null),gt===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),gt.state=3,null!==Le&&(gt.element.removeEventListener("transitionend",Le.onTransitionEnd),gt.element.removeEventListener("transitioncancel",Le.onTransitionCancel)),gt.element.remove()}_onMousedown(gt){const Le=(0,t.X6)(gt),be=this._lastTouchStartEvent&&Date.now(){!gt.config.persistent&&(1===gt.state||gt.config.terminateOnPointerUp&&0===gt.state)&>.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const gt=this._triggerElement;gt&&(We.forEach(Le=>ut._eventManager.removeHandler(Le,gt,this)),this._pointerUpEventsRegistered&&Ct.forEach(Le=>gt.removeEventListener(Le,this,Ze)))}}const Ae=new e.OlP("mat-ripple-global-options");let Be=(()=>{class Xe{get disabled(){return this._disabled}set disabled(Le){Le&&this.fadeOutAllNonPersistent(),this._disabled=Le,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(Le){this._trigger=Le,this._setupTriggerEventsIfEnabled()}constructor(Le,be,$,ne,ke){this._elementRef=Le,this._animationMode=ke,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=ne||{},this._rippleRenderer=new ut(this,be,Le,$)}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:{...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(Le,be=0,$){return"number"==typeof Le?this._rippleRenderer.fadeInRipple(Le,be,{...this.rippleConfig,...$}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...Le})}static#e=this.\u0275fac=function(be){return new(be||Xe)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(w.t4),e.Y36(Ae,8),e.Y36(e.QbO,8))};static#t=this.\u0275dir=e.lG2({type:Xe,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(be,$){2&be&&e.ekj("mat-ripple-unbounded",$.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"]})}return Xe})(),rt=(()=>{class Xe{static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({imports:[Me,Me]})}return Xe})(),$e=(()=>{class Xe{constructor(Le){this._animationMode=Le,this.state="unchecked",this.disabled=!1,this.appearance="full"}static#e=this.\u0275fac=function(be){return new(be||Xe)(e.Y36(e.QbO,8))};static#t=this.\u0275cmp=e.Xpm({type:Xe,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(be,$){2&be&&e.ekj("mat-pseudo-checkbox-indeterminate","indeterminate"===$.state)("mat-pseudo-checkbox-checked","checked"===$.state)("mat-pseudo-checkbox-disabled",$.disabled)("mat-pseudo-checkbox-minimal","minimal"===$.appearance)("mat-pseudo-checkbox-full","full"===$.appearance)("_mat-animation-noopable","NoopAnimations"===$._animationMode)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},decls:0,vars:0,template:function(be,$){},styles:['.mat-pseudo-checkbox{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-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-full{border:2px solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}'],encapsulation:2,changeDetection:0})}return Xe})(),Ie=(()=>{class Xe{static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({imports:[Me]})}return Xe})();const lt=new e.OlP("MAT_OPTION_PARENT_COMPONENT"),St=new e.OlP("MatOptgroup");let te=0;class Ue{constructor(gt,Le=!1){this.source=gt,this.isUserInput=Le}}let Bt=(()=>{class Xe{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(Le){this._disabled=Le}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}constructor(Le,be,$,ne){this._element=Le,this._changeDetectorRef=be,this._parent=$,this.group=ne,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+te++,this.onSelectionChange=new e.vpe,this._stateChanges=new d.x}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(Le=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),Le&&this._emitSelectionChangeEvent())}deselect(Le=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),Le&&this._emitSelectionChangeEvent())}focus(Le,be){const $=this._getHostElement();"function"==typeof $.focus&&$.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(Le){(Le.keyCode===E.K5||Le.keyCode===E.L_)&&!(0,E.Vb)(Le)&&(this._selectViaInteraction(),Le.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const Le=this.viewValue;Le!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=Le)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(Le=!1){this.onSelectionChange.emit(new Ue(this,Le))}static#e=this.\u0275fac=function(be){return new(be||Xe)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(lt,8),e.Y36(St,8))};static#t=this.\u0275cmp=e.Xpm({type:Xe,selectors:[["mat-option"]],viewQuery:function(be,$){if(1&be&&e.Gf(k,7),2&be){let ne;e.iGM(ne=e.CRH())&&($._text=ne.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(be,$){1&be&&e.NdJ("click",function(){return $._selectViaInteraction()})("keydown",function(ke){return $._handleKeydown(ke)}),2&be&&(e.Ikx("id",$.id),e.uIk("aria-selected",$.selected)("aria-disabled",$.disabled.toString()),e.ekj("mdc-list-item--selected",$.selected)("mat-mdc-option-multiple",$.multiple)("mat-mdc-option-active",$.active)("mdc-list-item--disabled",$.disabled))},inputs:{value:"value",id:"id",disabled:["disabled","disabled",e.VuI]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],features:[e.Xq5],ngContentSelectors:K,decls:8,vars:5,consts:[["class","mat-mdc-option-pseudo-checkbox","aria-hidden","true",3,"disabled","state"],[1,"mdc-list-item__primary-text"],["text",""],["class","mat-mdc-option-pseudo-checkbox","state","checked","aria-hidden","true","appearance","minimal",3,"disabled"],["class","cdk-visually-hidden"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"]],template:function(be,$){1&be&&(e.F$t(j),e.YNc(0,z,1,2,"mat-pseudo-checkbox",0),e.Hsn(1),e.TgZ(2,"span",1,2),e.Hsn(4,1),e.qZA(),e.YNc(5,B,1,1,"mat-pseudo-checkbox",3)(6,W,2,1,"span",4),e._UZ(7,"div",5)),2&be&&(e.um2(0,$.multiple?0:-1),e.xp6(5),e.um2(5,$.multiple||!$.selected||$.hideSingleSelectionIndicator?-1:5),e.xp6(1),e.um2(6,$.group&&$.group._inert?6:-1),e.xp6(1),e.Q6J("matRippleTrigger",$._getHostElement())("matRippleDisabled",$.disabled||$.disableRipple))},dependencies:[Be,$e],styles:['.mat-mdc-option{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color);font-family:var(--mat-option-label-text-font);line-height:var(--mat-option-label-text-line-height);font-size:var(--mat-option-label-text-size);letter-spacing:var(--mat-option-label-text-tracking);font-weight:var(--mat-option-label-text-weight);min-height:48px}.mat-mdc-option:focus{outline:none}[dir=rtl] .mat-mdc-option,.mat-mdc-option[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color)}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color)}.mat-mdc-option.mdc-list-item{align-items:center}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}.cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{right:auto;left:16px}.mat-mdc-option-active .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Xe})();function Ye(Xe,gt,Le){if(Le.length){let be=gt.toArray(),$=Le.toArray(),ne=0;for(let ke=0;keLe+be?Math.max(0,Xe-be+gt):Le}let Ft=(()=>{class Xe{static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275mod=e.oAB({type:Xe});static#i=this.\u0275inj=e.cJS({imports:[rt,Me,Ie]})}return Xe})();const xt={capture:!0},Ot=["focus","click","mouseenter","touchstart"],yt="mat-ripple-loader-uninitialized",at="mat-ripple-loader-class-name",Ee="mat-ripple-loader-centered",nt="mat-ripple-loader-disabled";let Ge=(()=>{class Xe{constructor(){this._document=(0,e.f3M)(l.K0,{optional:!0}),this._animationMode=(0,e.f3M)(e.QbO,{optional:!0}),this._globalRippleOptions=(0,e.f3M)(Ae,{optional:!0}),this._platform=(0,e.f3M)(w.t4),this._ngZone=(0,e.f3M)(e.R0b),this._onInteraction=Le=>{if(!(Le.target instanceof HTMLElement))return;const $=Le.target.closest(`[${yt}]`);$&&this.createRipple($)},this._ngZone.runOutsideAngular(()=>{for(const Le of Ot)this._document?.addEventListener(Le,this._onInteraction,xt)})}ngOnDestroy(){for(const Le of Ot)this._document?.removeEventListener(Le,this._onInteraction,xt)}configureRipple(Le,be){Le.setAttribute(yt,""),(be.className||!Le.hasAttribute(at))&&Le.setAttribute(at,be.className||""),be.centered&&Le.setAttribute(Ee,""),be.disabled&&Le.setAttribute(nt,"")}getRipple(Le){return Le.matRipple?Le.matRipple:this.createRipple(Le)}setDisabled(Le,be){const $=Le.matRipple;$?$.disabled=be:be?Le.setAttribute(nt,""):Le.removeAttribute(nt)}createRipple(Le){if(!this._document)return;Le.querySelector(".mat-ripple")?.remove();const be=this._document.createElement("span");be.classList.add("mat-ripple",Le.getAttribute(at)),Le.append(be);const $=new Be(new e.SBq(be),this._ngZone,this._platform,this._globalRippleOptions?this._globalRippleOptions:void 0,this._animationMode?this._animationMode:void 0);return $._isInitialized=!0,$.trigger=Le,$.centered=Le.hasAttribute(Ee),$.disabled=Le.hasAttribute(nt),this.attachRipple(Le,$),$}attachRipple(Le,be){Le.removeAttribute(yt),Le.matRipple=be}static#e=this.\u0275fac=function(be){return new(be||Xe)};static#t=this.\u0275prov=e.Yz7({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})()},8034:(Fe,q,p)=>{"use strict";p.d(q,{FA:()=>Bi,Mq:()=>At,hl:()=>li,nW:()=>un});var e=p(4300),t=p(3651),y=p(8484),A=p(6814),l=p(9212),w=p(2296),m=p(5407),P=p(3680),d=p(8645),E=p(7394),M=p(3019),I=p(2096),k=p(6028),z=p(9388),B=p(2831),W=p(8180),j=p(7921),K=p(2181),X=p(2495),ie=p(6825),se=p(6223),ue=p(5683),ae=p(2032);const Me=["mat-calendar-body",""];function J(qt,xi){if(1&qt&&(l.TgZ(0,"tr",0)(1,"td",2),l._uU(2),l.qZA()()),2&qt){const Se=l.oxw();l.xp6(1),l.Udp("padding-top",Se._cellPadding)("padding-bottom",Se._cellPadding),l.uIk("colspan",Se.numCols),l.xp6(1),l.hij(" ",Se.label," ")}}function he(qt,xi){if(1&qt&&(l.TgZ(0,"td",2),l._uU(1),l.qZA()),2&qt){const Se=l.oxw(2);l.Udp("padding-top",Se._cellPadding)("padding-bottom",Se._cellPadding),l.uIk("colspan",Se._firstRowOffset),l.xp6(1),l.hij(" ",Se._firstRowOffset>=Se.labelMinRequiredCells?Se.label:""," ")}}function S(qt,xi){if(1&qt){const Se=l.EpF();l.TgZ(0,"td",5)(1,"button",6),l.NdJ("click",function(et){const Yt=l.CHM(Se).$implicit,ri=l.oxw(2);return l.KtG(ri._cellClicked(Yt,et))})("focus",function(et){const Yt=l.CHM(Se).$implicit,ri=l.oxw(2);return l.KtG(ri._emitActiveDateChange(Yt,et))}),l.TgZ(2,"span",7),l._uU(3),l.qZA(),l._UZ(4,"span",8),l.qZA()()}if(2&qt){const Se=xi.$implicit,Ve=xi.$index,et=l.oxw().$index,tt=l.oxw();l.Udp("width",tt._cellWidth)("padding-top",tt._cellPadding)("padding-bottom",tt._cellPadding),l.uIk("data-mat-row",et)("data-mat-col",Ve),l.xp6(1),l.ekj("mat-calendar-body-disabled",!Se.enabled)("mat-calendar-body-active",tt._isActiveCell(et,Ve))("mat-calendar-body-range-start",tt._isRangeStart(Se.compareValue))("mat-calendar-body-range-end",tt._isRangeEnd(Se.compareValue))("mat-calendar-body-in-range",tt._isInRange(Se.compareValue))("mat-calendar-body-comparison-bridge-start",tt._isComparisonBridgeStart(Se.compareValue,et,Ve))("mat-calendar-body-comparison-bridge-end",tt._isComparisonBridgeEnd(Se.compareValue,et,Ve))("mat-calendar-body-comparison-start",tt._isComparisonStart(Se.compareValue))("mat-calendar-body-comparison-end",tt._isComparisonEnd(Se.compareValue))("mat-calendar-body-in-comparison-range",tt._isInComparisonRange(Se.compareValue))("mat-calendar-body-preview-start",tt._isPreviewStart(Se.compareValue))("mat-calendar-body-preview-end",tt._isPreviewEnd(Se.compareValue))("mat-calendar-body-in-preview",tt._isInPreview(Se.compareValue)),l.Q6J("ngClass",Se.cssClasses)("tabindex",tt._isActiveCell(et,Ve)?0:-1),l.uIk("aria-label",Se.ariaLabel)("aria-disabled",!Se.enabled||null)("aria-pressed",tt._isSelected(Se.compareValue))("aria-current",tt.todayValue===Se.compareValue?"date":null)("aria-describedby",tt._getDescribedby(Se.compareValue)),l.xp6(1),l.ekj("mat-calendar-body-selected",tt._isSelected(Se.compareValue))("mat-calendar-body-comparison-identical",tt._isComparisonIdentical(Se.compareValue))("mat-calendar-body-today",tt.todayValue===Se.compareValue),l.xp6(1),l.hij(" ",Se.displayValue," ")}}function n(qt,xi){if(1&qt&&(l.TgZ(0,"tr",3),l.YNc(1,he,2,6,"td",4),l.SjG(2,S,5,48,"td",9,l.x6l),l.qZA()),2&qt){const Se=xi.$implicit,Ve=xi.$index,et=l.oxw();l.xp6(1),l.um2(1,0===Ve&&et._firstRowOffset?1:-1),l.xp6(1),l.wJu(Se)}}function s(qt,xi){if(1&qt&&(l.TgZ(0,"th",4)(1,"span",5),l._uU(2),l.qZA(),l.TgZ(3,"span",6),l._uU(4),l.qZA()()),2&qt){const Se=xi.$implicit;l.xp6(2),l.Oqu(Se.long),l.xp6(2),l.Oqu(Se.narrow)}}const f=["*"];function h(qt,xi){}function C(qt,xi){if(1&qt){const Se=l.EpF();l.TgZ(0,"mat-month-view",2),l.NdJ("activeDateChange",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt.activeDate=et)})("_userSelection",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._dateSelected(et))})("dragStarted",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._dragStarted(et))})("dragEnded",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._dragEnded(et))}),l.qZA()}if(2&qt){const Se=l.oxw();l.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)("startDateAccessibleName",Se.startDateAccessibleName)("endDateAccessibleName",Se.endDateAccessibleName)("activeDrag",Se._activeDrag)}}function D(qt,xi){if(1&qt){const Se=l.EpF();l.TgZ(0,"mat-year-view",3),l.NdJ("activeDateChange",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt.activeDate=et)})("monthSelected",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._monthSelectedInYearView(et))})("selectedChange",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._goToDateInView(et,"month"))}),l.qZA()}if(2&qt){const Se=l.oxw();l.Q6J("activeDate",Se.activeDate)("selected",Se.selected)("dateFilter",Se.dateFilter)("maxDate",Se.maxDate)("minDate",Se.minDate)("dateClass",Se.dateClass)}}function O(qt,xi){if(1&qt){const Se=l.EpF();l.TgZ(0,"mat-multi-year-view",4),l.NdJ("activeDateChange",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt.activeDate=et)})("yearSelected",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._yearSelectedInMultiYearView(et))})("selectedChange",function(et){l.CHM(Se);const tt=l.oxw();return l.KtG(tt._goToDateInView(et,"year"))}),l.qZA()}if(2&qt){const Se=l.oxw();l.Q6J("activeDate",Se.activeDate)("selected",Se.selected)("dateFilter",Se.dateFilter)("maxDate",Se.maxDate)("minDate",Se.minDate)("dateClass",Se.dateClass)}}function v(qt,xi){}const r=["button"];function g(qt,xi){1&qt&&(l.O4$(),l.TgZ(0,"svg",3),l._UZ(1,"path",4),l.qZA())}const H=[[["","matDatepickerToggleIcon",""]]],R=["[matDatepickerToggleIcon]"];let Je=(()=>{class qt{constructor(){this.changes=new d.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",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(Se,Ve){return`${Se} \u2013 ${Ve}`}formatYearRangeLabel(Se,Ve){return`${Se} to ${Ve}`}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)};static#t=this.\u0275prov=l.Yz7({token:qt,factory:qt.\u0275fac,providedIn:"root"})}return qt})();class ye{constructor(xi,Se,Ve,et,tt={},Yt=xi,ri){this.value=xi,this.displayValue=Se,this.ariaLabel=Ve,this.enabled=et,this.cssClasses=tt,this.compareValue=Yt,this.rawValue=ri}}let fe=1;const de=(0,B.i$)({passive:!1,capture:!0}),xe=(0,B.i$)({passive:!0,capture:!0}),le=(0,B.i$)({passive:!0});let pe=(()=>{class qt{ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}constructor(Se,Ve){this._elementRef=Se,this._ngZone=Ve,this._platform=(0,l.f3M)(B.t4),this._focusActiveCellAfterViewChecked=!1,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new l.vpe,this.previewChange=new l.vpe,this.activeDateChange=new l.vpe,this.dragStarted=new l.vpe,this.dragEnded=new l.vpe,this._didDragSinceMouseDown=!1,this._enterHandler=et=>{if(this._skipNextFocus&&"focus"===et.type)this._skipNextFocus=!1;else if(et.target&&this.isRange){const tt=this._getCellFromElement(et.target);tt&&this._ngZone.run(()=>this.previewChange.emit({value:tt.enabled?tt:null,event:et}))}},this._touchmoveHandler=et=>{if(!this.isRange)return;const tt=We(et),Yt=tt?this._getCellFromElement(tt):null;tt!==et.target&&(this._didDragSinceMouseDown=!0),re(et.target)&&et.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:Yt?.enabled?Yt:null,event:et}))},this._leaveHandler=et=>{null!==this.previewEnd&&this.isRange&&("blur"!==et.type&&(this._didDragSinceMouseDown=!0),et.target&&this._getCellFromElement(et.target)&&(!et.relatedTarget||!this._getCellFromElement(et.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:et})))},this._mousedownHandler=et=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const tt=et.target&&this._getCellFromElement(et.target);!tt||!this._isInRange(tt.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:tt.rawValue,event:et})})},this._mouseupHandler=et=>{if(!this.isRange)return;const tt=re(et.target);tt?tt.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const Yt=this._getCellFromElement(tt);this.dragEnded.emit({value:Yt?.rawValue??null,event:et})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:et})})},this._touchendHandler=et=>{const tt=We(et);tt&&this._mouseupHandler({target:tt})},this._id="mat-calendar-body-"+fe++,this._startDateLabelId=`${this._id}-start-date`,this._endDateLabelId=`${this._id}-end-date`,Ve.runOutsideAngular(()=>{const et=Se.nativeElement;et.addEventListener("touchmove",this._touchmoveHandler,de),et.addEventListener("mouseenter",this._enterHandler,xe),et.addEventListener("focus",this._enterHandler,xe),et.addEventListener("mouseleave",this._leaveHandler,xe),et.addEventListener("blur",this._leaveHandler,xe),et.addEventListener("mousedown",this._mousedownHandler,le),et.addEventListener("touchstart",this._mousedownHandler,le),this._platform.isBrowser&&(window.addEventListener("mouseup",this._mouseupHandler),window.addEventListener("touchend",this._touchendHandler))})}_cellClicked(Se,Ve){this._didDragSinceMouseDown||Se.enabled&&this.selectedValueChange.emit({value:Se.value,event:Ve})}_emitActiveDateChange(Se,Ve){Se.enabled&&this.activeDateChange.emit({value:Se.value,event:Ve})}_isSelected(Se){return this.startValue===Se||this.endValue===Se}ngOnChanges(Se){const Ve=Se.numCols,{rows:et,numCols:tt}=this;(Se.rows||Ve)&&(this._firstRowOffset=et&&et.length&&et[0].length?tt-et[0].length:0),(Se.cellAspectRatio||Ve||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/tt+"%"),(Ve||!this._cellWidth)&&(this._cellWidth=100/tt+"%")}ngOnDestroy(){const Se=this._elementRef.nativeElement;Se.removeEventListener("touchmove",this._touchmoveHandler,de),Se.removeEventListener("mouseenter",this._enterHandler,xe),Se.removeEventListener("focus",this._enterHandler,xe),Se.removeEventListener("mouseleave",this._leaveHandler,xe),Se.removeEventListener("blur",this._leaveHandler,xe),Se.removeEventListener("mousedown",this._mousedownHandler,le),Se.removeEventListener("touchstart",this._mousedownHandler,le),this._platform.isBrowser&&(window.removeEventListener("mouseup",this._mouseupHandler),window.removeEventListener("touchend",this._touchendHandler))}_isActiveCell(Se,Ve){let et=Se*this.numCols+Ve;return Se&&(et-=this._firstRowOffset),et==this.activeCell}_focusActiveCell(Se=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,W.q)(1)).subscribe(()=>{setTimeout(()=>{const Ve=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");Ve&&(Se||(this._skipNextFocus=!0),Ve.focus())})})})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(Se){return ve(Se,this.startValue,this.endValue)}_isRangeEnd(Se){return ce(Se,this.startValue,this.endValue)}_isInRange(Se){return Ze(Se,this.startValue,this.endValue,this.isRange)}_isComparisonStart(Se){return ve(Se,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(Se,Ve,et){if(!this._isComparisonStart(Se)||this._isRangeStart(Se)||!this._isInRange(Se))return!1;let tt=this.rows[Ve][et-1];if(!tt){const Yt=this.rows[Ve-1];tt=Yt&&Yt[Yt.length-1]}return tt&&!this._isRangeEnd(tt.compareValue)}_isComparisonBridgeEnd(Se,Ve,et){if(!this._isComparisonEnd(Se)||this._isRangeEnd(Se)||!this._isInRange(Se))return!1;let tt=this.rows[Ve][et+1];if(!tt){const Yt=this.rows[Ve+1];tt=Yt&&Yt[0]}return tt&&!this._isRangeStart(tt.compareValue)}_isComparisonEnd(Se){return ce(Se,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(Se){return Ze(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 ce(Se,this.previewStart,this.previewEnd)}_isInPreview(Se){return Ze(Se,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(Se){return this.isRange?this.startValue===Se&&this.endValue===Se?`${this._startDateLabelId} ${this._endDateLabelId}`:this.startValue===Se?this._startDateLabelId:this.endValue===Se?this._endDateLabelId:null:null}_getCellFromElement(Se){const Ve=re(Se);if(Ve){const et=Ve.getAttribute("data-mat-row"),tt=Ve.getAttribute("data-mat-col");if(et&&tt)return this.rows[parseInt(et)][parseInt(tt)]}return null}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(l.SBq),l.Y36(l.R0b))};static#t=this.\u0275cmp=l.Xpm({type:qt,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",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],features:[l.TTD],attrs:Me,decls:7,vars:5,consts:[["aria-hidden","true"],[1,"mat-calendar-body-hidden-label",3,"id"],[1,"mat-calendar-body-label"],["role","row"],["class","mat-calendar-body-label",3,"paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"ngClass","tabindex","click","focus"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"],["role","gridcell","class","mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom"]],template:function(Ve,et){1&Ve&&(l.YNc(0,J,3,6,"tr",0),l.SjG(1,n,4,1,"tr",3,l.x6l),l.TgZ(3,"label",1),l._uU(4),l.qZA(),l.TgZ(5,"label",1),l._uU(6),l.qZA()),2&Ve&&(l.um2(0,et._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color)}.cdk-high-contrast-active .mat-calendar-body-disabled{opacity:.5}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color);border-color:var(--mat-datepicker-calendar-date-outline-color)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}.cdk-high-contrast-active .mat-calendar-body-cell-content{border:none}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.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:var(--mat-datepicker-calendar-date-focus-state-background-color)}@media(hover: hover){.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:var(--mat-datepicker-calendar-date-hover-state-background-color)}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color);color:var(--mat-datepicker-calendar-date-selected-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color)}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color)}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color)}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color)}.cdk-high-contrast-active .mat-datepicker-popup:not(:empty),.cdk-high-contrast-active .mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.cdk-high-contrast-active .mat-calendar-body-today{outline:dotted 1px}.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}'],encapsulation:2,changeDetection:0})}return qt})();function qe(qt){return"TD"===qt?.nodeName}function re(qt){let xi;return qe(qt)?xi=qt:qe(qt.parentNode)?xi=qt.parentNode:qe(qt.parentNode?.parentNode)&&(xi=qt.parentNode.parentNode),null!=xi?.getAttribute("data-mat-row")?xi:null}function ve(qt,xi,Se){return null!==Se&&xi!==Se&&qt=xi&&qt===Se}function Ze(qt,xi,Se,Ve){return Ve&&null!==xi&&null!==Se&&xi!==Se&&qt>=xi&&qt<=Se}function We(qt){const xi=qt.changedTouches[0];return document.elementFromPoint(xi.clientX,xi.clientY)}class Ct{constructor(xi,Se){this.start=xi,this.end=Se}}let ut=(()=>{class qt{constructor(Se,Ve){this.selection=Se,this._adapter=Ve,this._selectionChanged=new d.x,this.selectionChanged=this._selectionChanged,this.selection=Se}updateSelection(Se,Ve){const et=this.selection;this.selection=Se,this._selectionChanged.next({selection:Se,source:Ve,oldValue:et})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(Se){return this._adapter.isDateInstance(Se)&&this._adapter.isValid(Se)}static#e=this.\u0275fac=function(Ve){l.$Z()};static#t=this.\u0275prov=l.Yz7({token:qt,factory:qt.\u0275fac})}return qt})(),It=(()=>{class qt 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 qt(this._adapter);return Se.updateSelection(this.selection,this),Se}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.LFG(P._A))};static#t=this.\u0275prov=l.Yz7({token:qt,factory:qt.\u0275fac})}return qt})();const rt={provide:ut,deps:[[new l.FiY,new l.tp0,ut],P._A],useFactory:function Be(qt,xi){return qt||new It(xi)}},lt=new l.OlP("MAT_DATE_RANGE_SELECTION_STRATEGY");let Ue=(()=>{class qt{get activeDate(){return this._activeDate}set activeDate(Se){const Ve=this._activeDate,et=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Se))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(et,this.minDate,this.maxDate),this._hasSameMonthAndYear(Ve,this._activeDate)||this._init()}get selected(){return this._selected}set selected(Se){this._selected=Se instanceof Ct?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))}constructor(Se,Ve,et,tt,Yt){this._changeDetectorRef=Se,this._dateFormats=Ve,this._dateAdapter=et,this._dir=tt,this._rangeStrategy=Yt,this._rerenderSubscription=E.w0.EMPTY,this.activeDrag=null,this.selectedChange=new l.vpe,this._userSelection=new l.vpe,this.dragStarted=new l.vpe,this.dragEnded=new l.vpe,this.activeDateChange=new l.vpe,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.O)(null)).subscribe(()=>this._init())}ngOnChanges(Se){const Ve=Se.comparisonStart||Se.comparisonEnd;Ve&&!Ve.firstChange&&this._setRanges(this.selected),Se.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(Se){const Ve=Se.value,et=this._getDateFromDayOfMonth(Ve);let tt,Yt;this._selected instanceof Ct?(tt=this._getDateInCurrentMonth(this._selected.start),Yt=this._getDateInCurrentMonth(this._selected.end)):tt=Yt=this._getDateInCurrentMonth(this._selected),(tt!==Ve||Yt!==Ve)&&this.selectedChange.emit(et),this._userSelection.emit({value:et,event:Se.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(Se){const et=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(Se.value),this._dateAdapter.compareDate(et,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(Se){const Ve=this._activeDate,et=this._isRtl();switch(Se.keyCode){case k.oh:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,et?1:-1);break;case k.SV:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,et?-1:1);break;case k.LH:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case k.JH:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case k.Sd:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case k.uR:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case k.Ku:this.activeDate=Se.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case k.VM:this.activeDate=Se.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case k.K5:case k.L_:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&Se.preventDefault());case k.hY:return void(null!=this._previewEnd&&!(0,k.Vb)(Se)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:Se}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:Se})),Se.preventDefault(),Se.stopPropagation()));default:return}this._dateAdapter.compareDate(Ve,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),Se.preventDefault()}_handleCalendarBodyKeyup(Se){(Se.keyCode===k.L_||Se.keyCode===k.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)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:Se,value:Ve}){if(this._rangeStrategy){const et=Ve?Ve.rawValue:null,tt=this._rangeStrategy.createPreview(et,this.selected,Se);if(this._previewStart=this._getCellCompareValue(tt.start),this._previewEnd=this._getCellCompareValue(tt.end),this.activeDrag&&et){const Yt=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,et,Se);Yt&&(this._previewStart=this._getCellCompareValue(Yt.start),this._previewEnd=this._getCellCompareValue(Yt.end))}this._changeDetectorRef.detectChanges()}}_dragEnded(Se){if(this.activeDrag)if(Se.value){const Ve=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,Se.value,Se.event);this.dragEnded.emit({value:Ve??null,event:Se.event})}else this.dragEnded.emit({value:null,event:Se.event})}_getDateFromDayOfMonth(Se){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),Se)}_initWeekdays(){const Se=this._dateAdapter.getFirstDayOfWeek(),Ve=this._dateAdapter.getDayOfWeekNames("narrow");let tt=this._dateAdapter.getDayOfWeekNames("long").map((Yt,ri)=>({long:Yt,narrow:Ve[ri]}));this._weekdays=tt.slice(Se).concat(tt.slice(0,Se))}_createWeekCells(){const Se=this._dateAdapter.getNumDaysInMonth(this.activeDate),Ve=this._dateAdapter.getDateNames();this._weeks=[[]];for(let et=0,tt=this._firstWeekOffset;et=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,Ve){return!(!Se||!Ve||this._dateAdapter.getMonth(Se)!=this._dateAdapter.getMonth(Ve)||this._dateAdapter.getYear(Se)!=this._dateAdapter.getYear(Ve))}_getCellCompareValue(Se){if(Se){const Ve=this._dateAdapter.getYear(Se),et=this._dateAdapter.getMonth(Se),tt=this._dateAdapter.getDate(Se);return new Date(Ve,et,tt).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(Se){Se instanceof Ct?(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)}_clearPreview(){this._previewStart=this._previewEnd=null}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(l.sBO),l.Y36(P.sG,8),l.Y36(P._A,8),l.Y36(z.Is,8),l.Y36(lt,8))};static#t=this.\u0275cmp=l.Xpm({type:qt,selectors:[["mat-month-view"]],viewQuery:function(Ve,et){if(1&Ve&&l.Gf(pe,5),2&Ve){let tt;l.iGM(tt=l.CRH())&&(et._matCalendarBody=tt.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[l.TTD],decls:8,vars:14,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["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","startDateAccessibleName","endDateAccessibleName","selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown"],["scope","col"],[1,"cdk-visually-hidden"],["aria-hidden","true"]],template:function(Ve,et){1&Ve&&(l.TgZ(0,"table",0)(1,"thead",1)(2,"tr"),l.SjG(3,s,5,2,"th",4,l.x6l),l.qZA(),l.TgZ(5,"tr"),l._UZ(6,"th",2),l.qZA()(),l.TgZ(7,"tbody",3),l.NdJ("selectedValueChange",function(Yt){return et._dateSelected(Yt)})("activeDateChange",function(Yt){return et._updateActiveDate(Yt)})("previewChange",function(Yt){return et._previewChanged(Yt)})("dragStarted",function(Yt){return et.dragStarted.emit(Yt)})("dragEnded",function(Yt){return et._dragEnded(Yt)})("keyup",function(Yt){return et._handleCalendarBodyKeyup(Yt)})("keydown",function(Yt){return et._handleCalendarBodyKeydown(Yt)}),l.qZA()()),2&Ve&&(l.xp6(3),l.wJu(et._weekdays),l.xp6(4),l.Q6J("label",et._monthLabel)("rows",et._weeks)("todayValue",et._todayDate)("startValue",et._rangeStart)("endValue",et._rangeEnd)("comparisonStart",et._comparisonRangeStart)("comparisonEnd",et._comparisonRangeEnd)("previewStart",et._previewStart)("previewEnd",et._previewEnd)("isRange",et._isRange)("labelMinRequiredCells",3)("activeCell",et._dateAdapter.getDate(et.activeDate)-1)("startDateAccessibleName",et.startDateAccessibleName)("endDateAccessibleName",et.endDateAccessibleName))},dependencies:[pe],encapsulation:2,changeDetection:0})}return qt})();const Bt=24;let je=(()=>{class qt{get activeDate(){return this._activeDate}set activeDate(Se){let Ve=this._activeDate;const et=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Se))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(et,this.minDate,this.maxDate),Ft(this._dateAdapter,Ve,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(Se){this._selected=Se instanceof Ct?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))}constructor(Se,Ve,et){this._changeDetectorRef=Se,this._dateAdapter=Ve,this._dir=et,this._rerenderSubscription=E.w0.EMPTY,this.selectedChange=new l.vpe,this.yearSelected=new l.vpe,this.activeDateChange=new l.vpe,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.O)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const Ve=this._dateAdapter.getYear(this._activeDate)-xt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let et=0,tt=[];etthis._createCellForYear(Yt))),tt=[]);this._changeDetectorRef.markForCheck()}_yearSelected(Se){const Ve=Se.value,et=this._dateAdapter.createDate(Ve,0,1),tt=this._getDateFromYear(Ve);this.yearSelected.emit(et),this.selectedChange.emit(tt)}_updateActiveDate(Se){const et=this._activeDate;this.activeDate=this._getDateFromYear(Se.value),this._dateAdapter.compareDate(et,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(Se){const Ve=this._activeDate,et=this._isRtl();switch(Se.keyCode){case k.oh:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,et?1:-1);break;case k.SV:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,et?-1:1);break;case k.LH:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case k.JH:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case k.Sd:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-xt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case k.uR:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Bt-xt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case k.Ku:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Se.altKey?10*-Bt:-Bt);break;case k.VM:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Se.altKey?10*Bt:Bt);break;case k.K5:case k.L_:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(Ve,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),Se.preventDefault()}_handleCalendarBodyKeyup(Se){(Se.keyCode===k.L_||Se.keyCode===k.K5)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:Se}),this._selectionKeyPressed=!1)}_getActiveCell(){return xt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(Se){const Ve=this._dateAdapter.getMonth(this.activeDate),et=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(Se,Ve,1));return this._dateAdapter.createDate(Se,Ve,Math.min(this._dateAdapter.getDate(this.activeDate),et))}_createCellForYear(Se){const Ve=this._dateAdapter.createDate(Se,0,1),et=this._dateAdapter.getYearName(Ve),tt=this.dateClass?this.dateClass(Ve,"multi-year"):void 0;return new ye(Se,et,et,this._shouldEnableYear(Se),tt)}_shouldEnableYear(Se){if(null==Se||this.maxDate&&Se>this._dateAdapter.getYear(this.maxDate)||this.minDate&&Se{class qt{get activeDate(){return this._activeDate}set activeDate(Se){let Ve=this._activeDate;const et=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Se))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(et,this.minDate,this.maxDate),this._dateAdapter.getYear(Ve)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(Se){this._selected=Se instanceof Ct?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))}constructor(Se,Ve,et,tt){this._changeDetectorRef=Se,this._dateFormats=Ve,this._dateAdapter=et,this._dir=tt,this._rerenderSubscription=E.w0.EMPTY,this.selectedChange=new l.vpe,this.monthSelected=new l.vpe,this.activeDateChange=new l.vpe,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.O)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(Se){const Ve=Se.value,et=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Ve,1);this.monthSelected.emit(et);const tt=this._getDateFromMonth(Ve);this.selectedChange.emit(tt)}_updateActiveDate(Se){const et=this._activeDate;this.activeDate=this._getDateFromMonth(Se.value),this._dateAdapter.compareDate(et,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(Se){const Ve=this._activeDate,et=this._isRtl();switch(Se.keyCode){case k.oh:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,et?1:-1);break;case k.SV:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,et?-1:1);break;case k.LH:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case k.JH:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case k.Sd:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case k.uR:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case k.Ku:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Se.altKey?-10:-1);break;case k.VM:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Se.altKey?10:1);break;case k.K5:case k.L_:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(Ve,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),Se.preventDefault()}_handleCalendarBodyKeyup(Se){(Se.keyCode===k.L_||Se.keyCode===k.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(Ve=>Ve.map(et=>this._createCellForMonth(et,Se[et]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(Se){return Se&&this._dateAdapter.getYear(Se)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(Se):null}_getDateFromMonth(Se){const Ve=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Se,1),et=this._dateAdapter.getNumDaysInMonth(Ve);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Se,Math.min(this._dateAdapter.getDate(this.activeDate),et))}_createCellForMonth(Se,Ve){const et=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),Se,1),tt=this._dateAdapter.format(et,this._dateFormats.display.monthYearA11yLabel),Yt=this.dateClass?this.dateClass(et,"year"):void 0;return new ye(Se,Ve.toLocaleUpperCase(),tt,this._shouldEnableMonth(Se),Yt)}_shouldEnableMonth(Se){const Ve=this._dateAdapter.getYear(this.activeDate);if(null==Se||this._isYearAndMonthAfterMaxDate(Ve,Se)||this._isYearAndMonthBeforeMinDate(Ve,Se))return!1;if(!this.dateFilter)return!0;for(let tt=this._dateAdapter.createDate(Ve,Se,1);this._dateAdapter.getMonth(tt)==Se;tt=this._dateAdapter.addCalendarDays(tt,1))if(this.dateFilter(tt))return!0;return!1}_isYearAndMonthAfterMaxDate(Se,Ve){if(this.maxDate){const et=this._dateAdapter.getYear(this.maxDate),tt=this._dateAdapter.getMonth(this.maxDate);return Se>et||Se===et&&Ve>tt}return!1}_isYearAndMonthBeforeMinDate(Se,Ve){if(this.minDate){const et=this._dateAdapter.getYear(this.minDate),tt=this._dateAdapter.getMonth(this.minDate);return Se{class qt{constructor(Se,Ve,et,tt,Yt){this._intl=Se,this.calendar=Ve,this._dateAdapter=et,this._dateFormats=tt,this._id="mat-calendar-header-"+Ee++,this._periodButtonLabelId=`${this._id}-period-label`,this.calendar.stateChanges.subscribe(()=>Yt.markForCheck())}get periodButtonText(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRange(...this._formatMinAndMaxYearLabels())}get periodButtonDescription(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRangeLabel(...this._formatMinAndMaxYearLabels())}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:-Bt)}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:Bt)}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,Ve){return"month"==this.calendar.currentView?this._dateAdapter.getYear(Se)==this._dateAdapter.getYear(Ve)&&this._dateAdapter.getMonth(Se)==this._dateAdapter.getMonth(Ve):"year"==this.calendar.currentView?this._dateAdapter.getYear(Se)==this._dateAdapter.getYear(Ve):Ft(this._dateAdapter,Se,Ve,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const Ve=this._dateAdapter.getYear(this.calendar.activeDate)-xt(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),et=Ve+Bt-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(Ve,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(et,0,1))]}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(Je),l.Y36((0,l.Gpc)(()=>Ge)),l.Y36(P._A,8),l.Y36(P.sG,8),l.Y36(l.sBO))};static#t=this.\u0275cmp=l.Xpm({type:qt,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:f,decls:13,vars:11,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["mat-button","","type","button","aria-live","polite",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",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"],[1,"mat-calendar-hidden-label",3,"id"]],template:function(Ve,et){1&Ve&&(l.F$t(),l.TgZ(0,"div",0)(1,"div",1)(2,"button",2),l.NdJ("click",function(){return et.currentPeriodClicked()}),l.TgZ(3,"span",3),l._uU(4),l.qZA(),l.O4$(),l.TgZ(5,"svg",4),l._UZ(6,"polygon",5),l.qZA()(),l.kcU(),l._UZ(7,"div",6),l.Hsn(8),l.TgZ(9,"button",7),l.NdJ("click",function(){return et.previousClicked()}),l.qZA(),l.TgZ(10,"button",8),l.NdJ("click",function(){return et.nextClicked()}),l.qZA()()(),l.TgZ(11,"label",9),l._uU(12),l.qZA()),2&Ve&&(l.xp6(2),l.uIk("aria-label",et.periodButtonLabel)("aria-describedby",et._periodButtonLabelId),l.xp6(2),l.Oqu(et.periodButtonText),l.xp6(1),l.ekj("mat-calendar-invert","month"!==et.calendar.currentView),l.xp6(4),l.Q6J("disabled",!et.previousEnabled()),l.uIk("aria-label",et.prevButtonLabel),l.xp6(1),l.Q6J("disabled",!et.nextEnabled()),l.uIk("aria-label",et.nextButtonLabel),l.xp6(1),l.Q6J("id",et._periodButtonLabelId),l.xp6(1),l.Oqu(et.periodButtonDescription))},dependencies:[w.lW,w.RK],encapsulation:2,changeDetection:0})}return qt})(),Ge=(()=>{class qt{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 Ct?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 Ve=this._currentView!==Se?Se:null;this._currentView=Se,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),Ve&&this.viewChanged.emit(Ve)}constructor(Se,Ve,et,tt){this._dateAdapter=Ve,this._dateFormats=et,this._changeDetectorRef=tt,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new l.vpe,this.yearSelected=new l.vpe,this.monthSelected=new l.vpe,this.viewChanged=new l.vpe(!0),this._userSelection=new l.vpe,this._userDragDrop=new l.vpe,this._activeDrag=null,this.stateChanges=new d.x,this._intlChanges=Se.changes.subscribe(()=>{tt.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new y.C5(this.headerComponent||nt),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 Ve=Se.minDate&&!this._dateAdapter.sameDate(Se.minDate.previousValue,Se.minDate.currentValue)?Se.minDate:void 0,et=Se.maxDate&&!this._dateAdapter.sameDate(Se.maxDate.previousValue,Se.maxDate.currentValue)?Se.maxDate:void 0,tt=Ve||et||Se.dateFilter;if(tt&&!tt.firstChange){const Yt=this._getCurrentViewComponent();Yt&&(this._changeDetectorRef.detectChanges(),Yt._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(Se){const Ve=Se.value;(this.selected instanceof Ct||Ve&&!this._dateAdapter.sameDate(Ve,this.selected))&&this.selectedChange.emit(Ve),this._userSelection.emit(Se)}_yearSelectedInMultiYearView(Se){this.yearSelected.emit(Se)}_monthSelectedInYearView(Se){this.monthSelected.emit(Se)}_goToDateInView(Se,Ve){this.activeDate=Se,this.currentView=Ve}_dragStarted(Se){this._activeDrag=Se}_dragEnded(Se){this._activeDrag&&(Se.value&&this._userDragDrop.emit(Se),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(Je),l.Y36(P._A,8),l.Y36(P.sG,8),l.Y36(l.sBO))};static#t=this.\u0275cmp=l.Xpm({type:qt,selectors:[["mat-calendar"]],viewQuery:function(Ve,et){if(1&Ve&&(l.Gf(Ue,5),l.Gf(at,5),l.Gf(je,5)),2&Ve){let tt;l.iGM(tt=l.CRH())&&(et.monthView=tt.first),l.iGM(tt=l.CRH())&&(et.yearView=tt.first),l.iGM(tt=l.CRH())&&(et.multiYearView=tt.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",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],features:[l._Bn([rt]),l.TTD],decls:5,vars:2,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag","activeDateChange","_userSelection","dragStarted","dragEnded"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","monthSelected","selectedChange"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","activeDateChange","yearSelected","selectedChange"]],template:function(Ve,et){if(1&Ve&&(l.YNc(0,h,0,0,"ng-template",0),l.TgZ(1,"div",1),l.YNc(2,C,1,11)(3,D,1,6)(4,O,1,6),l.qZA()),2&Ve){let tt;l.Q6J("cdkPortalOutlet",et._calendarHeaderPortal),l.xp6(2),l.um2(2,"month"===(tt=et.currentView)?2:"year"===tt?3:"multi-year"===tt?4:-1)}},dependencies:[e.kH,y.Pl,Ue,at,je],styles:['.mat-calendar{display:block;font-family:var(--mat-datepicker-calendar-text-font);font-size:var(--mat-datepicker-calendar-text-size)}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size);font-weight:var(--mat-datepicker-calendar-period-button-text-weight)}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color)}.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-datepicker-content .mat-calendar-previous-button,.mat-datepicker-content .mat-calendar-next-button{color:var(--mat-datepicker-calendar-navigation-button-icon-color)}.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;color:var(--mat-datepicker-calendar-header-text-color);font-size:var(--mat-datepicker-calendar-header-text-size);font-weight:var(--mat-datepicker-calendar-header-text-weight)}.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;background:var(--mat-datepicker-calendar-header-divider-color)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}.mat-calendar-hidden-label{display:none}'],encapsulation:2,changeDetection:0})}return qt})();const Xe={transformPanel:(0,ie.X$)("transformPanel",[(0,ie.eR)("void => enter-dropdown",(0,ie.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ie.F4)([(0,ie.oB)({opacity:0,transform:"scale(1, 0.8)"}),(0,ie.oB)({opacity:1,transform:"scale(1, 1)"})]))),(0,ie.eR)("void => enter-dialog",(0,ie.jt)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,ie.F4)([(0,ie.oB)({opacity:0,transform:"scale(0.7)"}),(0,ie.oB)({transform:"none",opacity:1})]))),(0,ie.eR)("* => void",(0,ie.jt)("100ms linear",(0,ie.oB)({opacity:0})))]),fadeInCalendar:(0,ie.X$)("fadeInCalendar",[(0,ie.SB)("void",(0,ie.oB)({opacity:0})),(0,ie.SB)("enter",(0,ie.oB)({opacity:1})),(0,ie.eR)("void => *",(0,ie.jt)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let gt=0;const Le=new l.OlP("mat-datepicker-scroll-strategy"),$={provide:Le,deps:[t.aV],useFactory:function be(qt){return()=>qt.scrollStrategies.reposition()}},ne=(0,P.pj)(class{constructor(qt){this._elementRef=qt}});let ke=(()=>{class qt extends ne{constructor(Se,Ve,et,tt,Yt,ri){super(Se),this._changeDetectorRef=Ve,this._globalModel=et,this._dateAdapter=tt,this._rangeSelectionStrategy=Yt,this._subscriptions=new E.w0,this._animationDone=new d.x,this._isAnimating=!1,this._actionsPortal=null,this._closeButtonText=ri.closeCalendarLabel}ngOnInit(){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 Ve=this._model.selection,et=Se.value,tt=Ve instanceof Ct;if(tt&&this._rangeSelectionStrategy){const Yt=this._rangeSelectionStrategy.selectionFinished(et,Ve,Se.event);this._model.updateSelection(Yt,this)}else et&&(tt||!this._dateAdapter.sameDate(et,Ve))&&this._model.add(et);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(Se){this._model.updateSelection(Se.value,this)}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_handleAnimationEvent(Se){this._isAnimating="start"===Se.phaseName,this._isAnimating||this._animationDone.next()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(Se,Ve){this._model=Se?this._globalModel.clone():this._globalModel,this._actionsPortal=Se,Ve&&this._changeDetectorRef.detectChanges()}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(l.SBq),l.Y36(l.sBO),l.Y36(ut),l.Y36(P._A),l.Y36(lt,8),l.Y36(Je))};static#t=this.\u0275cmp=l.Xpm({type:qt,selectors:[["mat-datepicker-content"]],viewQuery:function(Ve,et){if(1&Ve&&l.Gf(Ge,5),2&Ve){let tt;l.iGM(tt=l.CRH())&&(et._calendar=tt.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:3,hostBindings:function(Ve,et){1&Ve&&l.WFA("@transformPanel.start",function(Yt){return et._handleAnimationEvent(Yt)})("@transformPanel.done",function(Yt){return et._handleAnimationEvent(Yt)}),2&Ve&&(l.d8E("@transformPanel",et._animationState),l.ekj("mat-datepicker-content-touch",et.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],features:[l.qOj],decls:5,vars:26,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"id","ngClass","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop"],[3,"cdkPortalOutlet"],["type","button","mat-raised-button","",1,"mat-datepicker-close-button",3,"color","focus","blur","click"]],template:function(Ve,et){if(1&Ve&&(l.TgZ(0,"div",0)(1,"mat-calendar",1),l.NdJ("yearSelected",function(Yt){return et.datepicker._selectYear(Yt)})("monthSelected",function(Yt){return et.datepicker._selectMonth(Yt)})("viewChanged",function(Yt){return et.datepicker._viewChanged(Yt)})("_userSelection",function(Yt){return et._handleUserSelection(Yt)})("_userDragDrop",function(Yt){return et._handleUserDragDrop(Yt)}),l.qZA(),l.YNc(2,v,0,0,"ng-template",2),l.TgZ(3,"button",3),l.NdJ("focus",function(){return et._closeButtonFocused=!0})("blur",function(){return et._closeButtonFocused=!1})("click",function(){return et.datepicker.close()}),l._uU(4),l.qZA()()),2&Ve){let tt;l.ekj("mat-datepicker-content-container-with-custom-header",et.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",et._actionsPortal),l.uIk("aria-modal",!0)("aria-labelledby",null!==(tt=et._dialogLabelId)&&void 0!==tt?tt:void 0),l.xp6(1),l.Q6J("id",et.datepicker.id)("ngClass",et.datepicker.panelClass)("startAt",et.datepicker.startAt)("startView",et.datepicker.startView)("minDate",et.datepicker._getMinDate())("maxDate",et.datepicker._getMaxDate())("dateFilter",et.datepicker._getDateFilter())("headerComponent",et.datepicker.calendarHeaderComponent)("selected",et._getSelected())("dateClass",et.datepicker.dateClass)("comparisonStart",et.comparisonStart)("comparisonEnd",et.comparisonEnd)("@fadeInCalendar","enter")("startDateAccessibleName",et.startDateAccessibleName)("endDateAccessibleName",et.endDateAccessibleName),l.xp6(1),l.Q6J("cdkPortalOutlet",et._actionsPortal),l.xp6(1),l.ekj("cdk-visually-hidden",!et._closeButtonFocused),l.Q6J("color",et.color||"primary"),l.xp6(1),l.Oqu(et._closeButtonText)}},dependencies:[A.mk,w.lW,e.mK,y.Pl,Ge],styles:[".mat-datepicker-content{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);display:block;border-radius:4px;background-color:var(--mat-datepicker-calendar-container-background-color);color:var(--mat-datepicker-calendar-container-text-color)}.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{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);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}}"],encapsulation:2,data:{animation:[Xe.transformPanel,Xe.fadeInCalendar]},changeDetection:0})}return qt})(),Nt=(()=>{class qt{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,X.Ig)(Se)}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(Se){const Ve=(0,X.Ig)(Se);Ve!==this._disabled&&(this._disabled=Ve,this.stateChanges.next(void 0))}get restoreFocus(){return this._restoreFocus}set restoreFocus(Se){this._restoreFocus=(0,X.Ig)(Se)}get panelClass(){return this._panelClass}set panelClass(Se){this._panelClass=(0,X.du)(Se)}get opened(){return this._opened}set opened(Se){(0,X.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}constructor(Se,Ve,et,tt,Yt,ri,fn){this._overlay=Se,this._ngZone=Ve,this._viewContainerRef=et,this._dateAdapter=Yt,this._dir=ri,this._model=fn,this._inputStateChanges=E.w0.EMPTY,this._document=(0,l.f3M)(A.K0),this.startView="month",this._touchUi=!1,this.xPosition="start",this.yPosition="below",this._restoreFocus=!0,this.yearSelected=new l.vpe,this.monthSelected=new l.vpe,this.viewChanged=new l.vpe(!0),this.openedStream=new l.vpe,this.closedStream=new l.vpe,this._opened=!1,this.id="mat-datepicker-"+gt++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new d.x,this._scrollStrategy=tt}ngOnChanges(Se){const Ve=Se.xPosition||Se.yPosition;if(Ve&&!Ve.firstChange&&this._overlayRef){const et=this._overlayRef.getConfig().positionStrategy;et instanceof t._G&&(this._setConnectedPositions(et),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,this._componentRef?.instance._assignActions(Se,!0)}removeActions(Se){Se===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,B.ht)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const Se=this._restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,Ve=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:et,location:tt}=this._componentRef;et._startExitAnimation(),et._animationDone.pipe((0,W.q)(1)).subscribe(()=>{const Yt=this._document.activeElement;Se&&(!Yt||Yt===this._document.activeElement||tt.nativeElement.contains(Yt))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()})}Se?setTimeout(Ve):Ve()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(Se){Se.datepicker=this,Se.color=this.color,Se._dialogLabelId=this.datepickerInput.getOverlayLabelId(),Se._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const Se=this.touchUi,Ve=new y.C5(ke,this._viewContainerRef),et=this._overlayRef=this._overlay.create(new t.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(et).subscribe(tt=>{tt&&tt.preventDefault(),this.close()}),et.keydownEvents().subscribe(tt=>{const Yt=tt.keyCode;(Yt===k.LH||Yt===k.JH||Yt===k.oh||Yt===k.SV||Yt===k.Ku||Yt===k.VM)&&tt.preventDefault()}),this._componentRef=et.attach(Ve),this._forwardContentValues(this._componentRef.instance),Se||this._ngZone.onStable.pipe((0,W.q)(1)).subscribe(()=>et.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 Ve="end"===this.xPosition?"end":"start",et="start"===Ve?"end":"start",tt="above"===this.yPosition?"bottom":"top",Yt="top"===tt?"bottom":"top";return Se.withPositions([{originX:Ve,originY:Yt,overlayX:Ve,overlayY:tt},{originX:Ve,originY:tt,overlayX:Ve,overlayY:Yt},{originX:et,originY:Yt,overlayX:et,overlayY:tt},{originX:et,originY:tt,overlayX:et,overlayY:Yt}])}_getCloseStream(Se){const Ve=["ctrlKey","shiftKey","metaKey"];return(0,M.T)(Se.backdropClick(),Se.detachments(),Se.keydownEvents().pipe((0,K.h)(et=>et.keyCode===k.hY&&!(0,k.Vb)(et)||this.datepickerInput&&(0,k.Vb)(et,"altKey")&&et.keyCode===k.LH&&Ve.every(tt=>!(0,k.Vb)(et,tt)))))}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(t.aV),l.Y36(l.R0b),l.Y36(l.s_b),l.Y36(Le),l.Y36(P._A,8),l.Y36(z.Is,8),l.Y36(ut))};static#t=this.\u0275dir=l.lG2({type:qt,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:[l.TTD]})}return qt})(),At=(()=>{class qt extends Nt{static#e=this.\u0275fac=(()=>{let Se;return function(et){return(Se||(Se=l.n5z(qt)))(et||qt)}})();static#t=this.\u0275cmp=l.Xpm({type:qt,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[l._Bn([rt,{provide:Nt,useExisting:qt}]),l.qOj],decls:0,vars:0,template:function(Ve,et){},encapsulation:2,changeDetection:0})}return qt})();class Wt{constructor(xi,Se){this.target=xi,this.targetElement=Se,this.value=this.target.value}}let gi=(()=>{class qt{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 Ve=(0,X.Ig)(Se),et=this._elementRef.nativeElement;this._disabled!==Ve&&(this._disabled=Ve,this.stateChanges.next(void 0)),Ve&&this._isInitialized&&et.blur&&et.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(Ve=>{if(this._shouldHandleChangeEvent(Ve)){const et=this._getValueFromModel(Ve.selection);this._lastValueValid=this._isValidValue(et),this._cvaOnChange(et),this._onTouched(),this._formatValue(et),this.dateInput.emit(new Wt(this,this._elementRef.nativeElement)),this.dateChange.emit(new Wt(this,this._elementRef.nativeElement))}})}constructor(Se,Ve,et){this._elementRef=Se,this._dateAdapter=Ve,this._dateFormats=et,this.dateChange=new l.vpe,this.dateInput=new l.vpe,this.stateChanges=new d.x,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=E.w0.EMPTY,this._localeSubscription=E.w0.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=tt=>{const Yt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(tt.value));return!Yt||this._matchesFilter(Yt)?null:{matDatepickerFilter:!0}},this._minValidator=tt=>{const Yt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(tt.value)),ri=this._getMinDate();return!ri||!Yt||this._dateAdapter.compareDate(ri,Yt)<=0?null:{matDatepickerMin:{min:ri,actual:Yt}}},this._maxValidator=tt=>{const Yt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(tt.value)),ri=this._getMaxDate();return!ri||!Yt||this._dateAdapter.compareDate(ri,Yt)>=0?null:{matDatepickerMax:{max:ri,actual:Yt}}},this._lastValueValid=!1,this._localeSubscription=Ve.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(Se){(function ei(qt,xi){const Se=Object.keys(qt);for(let Ve of Se){const{previousValue:et,currentValue:tt}=qt[Ve];if(!xi.isDateInstance(et)||!xi.isDateInstance(tt))return!0;if(!xi.sameDate(et,tt))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){(0,k.Vb)(Se,"altKey")&&Se.keyCode===k.JH&&["ctrlKey","shiftKey","metaKey"].every(tt=>!(0,k.Vb)(Se,tt))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),Se.preventDefault())}_onInput(Se){const Ve=this._lastValueValid;let et=this._dateAdapter.parse(Se,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(et),et=this._dateAdapter.getValidDateOrNull(et);const tt=!this._dateAdapter.sameDate(et,this.value);!et||tt?this._cvaOnChange(et):(Se&&!this.value&&this._cvaOnChange(et),Ve!==this._lastValueValid&&this._validatorOnChange()),tt&&(this._assignValue(et),this.dateInput.emit(new Wt(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new Wt(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 Ve=this._getDateFilter();return!Ve||Ve(Se)}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(l.SBq),l.Y36(P._A,8),l.Y36(P.sG,8))};static#t=this.\u0275dir=l.lG2({type:qt,inputs:{value:"value",disabled:"disabled"},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[l.TTD]})}return qt})();const $t={provide:se.JU,useExisting:(0,l.Gpc)(()=>li),multi:!0},Fi={provide:se.Cf,useExisting:(0,l.Gpc)(()=>li),multi:!0};let li=(()=>{class qt extends gi{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 Ve=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Se));this._dateAdapter.sameDate(Ve,this._min)||(this._min=Ve,this._validatorOnChange())}get max(){return this._max}set max(Se){const Ve=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(Se));this._dateAdapter.sameDate(Ve,this._max)||(this._max=Ve,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(Se){const Ve=this._matchesFilter(this.value);this._dateFilter=Se,this._matchesFilter(this.value)!==Ve&&this._validatorOnChange()}constructor(Se,Ve,et,tt){super(Se,Ve,et),this._formField=tt,this._closedSubscription=E.w0.EMPTY,this._validator=se.kI.compose(super._getValidators())}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}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(l.SBq),l.Y36(P._A,8),l.Y36(P.sG,8),l.Y36(ue.G_,8))};static#t=this.\u0275dir=l.lG2({type:qt,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(Ve,et){1&Ve&&l.NdJ("input",function(Yt){return et._onInput(Yt.target.value)})("change",function(){return et._onChange()})("blur",function(){return et._onBlur()})("keydown",function(Yt){return et._onKeydown(Yt)}),2&Ve&&(l.Ikx("disabled",et.disabled),l.uIk("aria-haspopup",et._datepicker?"dialog":null)("aria-owns",(null==et._datepicker?null:et._datepicker.opened)&&et._datepicker.id||null)("min",et.min?et._dateAdapter.toIso8601(et.min):null)("max",et.max?et._dateAdapter.toIso8601(et.max):null)("data-mat-calendar",et._datepicker?et._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:["matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[l._Bn([$t,Fi,{provide:ae.Jk,useExisting:qt}]),l.qOj]})}return qt})(),ui=(()=>{class qt{static#e=this.\u0275fac=function(Ve){return new(Ve||qt)};static#t=this.\u0275dir=l.lG2({type:qt,selectors:[["","matDatepickerToggleIcon",""]]})}return qt})(),un=(()=>{class qt{get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(Se){this._disabled=(0,X.Ig)(Se)}constructor(Se,Ve,et){this._intl=Se,this._changeDetectorRef=Ve,this._stateChanges=E.w0.EMPTY;const tt=Number(et);this.tabIndex=tt||0===tt?tt:null}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,I.of)(),Ve=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,I.of)(),et=this.datepicker?(0,M.T)(this.datepicker.openedStream,this.datepicker.closedStream):(0,I.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,M.T)(this._intl.changes,Se,Ve,et).subscribe(()=>this._changeDetectorRef.markForCheck())}static#e=this.\u0275fac=function(Ve){return new(Ve||qt)(l.Y36(Je),l.Y36(l.sBO),l.$8M("tabindex"))};static#t=this.\u0275cmp=l.Xpm({type:qt,selectors:[["mat-datepicker-toggle"]],contentQueries:function(Ve,et,tt){if(1&Ve&&l.Suo(tt,ui,5),2&Ve){let Yt;l.iGM(Yt=l.CRH())&&(et._customIcon=Yt.first)}},viewQuery:function(Ve,et){if(1&Ve&&l.Gf(r,5),2&Ve){let tt;l.iGM(tt=l.CRH())&&(et._button=tt.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(Ve,et){1&Ve&&l.NdJ("click",function(Yt){return et._open(Yt)}),2&Ve&&(l.uIk("tabindex",null)("data-mat-calendar",et.datepicker?et.datepicker.id:null),l.ekj("mat-datepicker-toggle-active",et.datepicker&&et.datepicker.opened)("mat-accent",et.datepicker&&"accent"===et.datepicker.color)("mat-warn",et.datepicker&&"warn"===et.datepicker.color))},inputs:{datepicker:["for","datepicker"],tabIndex:"tabIndex",ariaLabel:["aria-label","ariaLabel"],disabled:"disabled",disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[l.TTD],ngContentSelectors:R,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","aria-hidden","true"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",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(Ve,et){1&Ve&&(l.F$t(H),l.TgZ(0,"button",0,1),l.YNc(2,g,2,0,":svg:svg",2),l.Hsn(3),l.qZA()),2&Ve&&(l.Q6J("disabled",et.disabled)("disableRipple",et.disableRipple),l.uIk("aria-haspopup",et.datepicker?"dialog":null)("aria-label",et.ariaLabel||et._intl.openCalendarLabel)("tabindex",et.disabled?-1:et.tabIndex),l.xp6(2),l.um2(2,et._customIcon?-1:2))},dependencies:[w.RK],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color)}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color)}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}"],encapsulation:2,changeDetection:0})}return qt})(),Bi=(()=>{class qt{static#e=this.\u0275fac=function(Ve){return new(Ve||qt)};static#t=this.\u0275mod=l.oAB({type:qt});static#i=this.\u0275inj=l.cJS({providers:[Je,$],imports:[A.ez,w.ot,t.U8,e.rt,y.eL,P.BQ,m.ZD]})}return qt})()},7700:(Fe,q,p)=>{"use strict";p.d(q,{WI:()=>ye,Bq:()=>fe,uw:()=>qe,ZT:()=>ve,Is:()=>It,so:()=>Ke});var e=p(3651),t=p(6814),y=p(9212),A=p(4300),l=p(2831),w=p(8484),m=p(6028),P=p(8645),d=p(4911),E=p(2096),M=p(9388),I=p(7921);function k(rt,$e){}class z{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0,this.closeOnOverlayDetachments=!0}}let W=(()=>{class rt extends w.en{constructor(Ie,lt,Qe,St,dt,te,Ue,Bt){super(),this._elementRef=Ie,this._focusTrapFactory=lt,this._config=St,this._interactivityChecker=dt,this._ngZone=te,this._overlayRef=Ue,this._focusMonitor=Bt,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this._ariaLabelledByQueue=[],this.attachDomPortal=Ye=>{this._portalOutlet.hasAttached();const je=this._portalOutlet.attachDomPortal(Ye);return this._contentAttached(),je},this._document=Qe,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal(Ie){this._portalOutlet.hasAttached();const lt=this._portalOutlet.attachComponentPortal(Ie);return this._contentAttached(),lt}attachTemplatePortal(Ie){this._portalOutlet.hasAttached();const lt=this._portalOutlet.attachTemplatePortal(Ie);return this._contentAttached(),lt}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ie,lt){this._interactivityChecker.isFocusable(Ie)||(Ie.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Qe=()=>{Ie.removeEventListener("blur",Qe),Ie.removeEventListener("mousedown",Qe),Ie.removeAttribute("tabindex")};Ie.addEventListener("blur",Qe),Ie.addEventListener("mousedown",Qe)})),Ie.focus(lt)}_focusByCssSelector(Ie,lt){let Qe=this._elementRef.nativeElement.querySelector(Ie);Qe&&this._forceFocus(Qe,lt)}_trapFocus(){const Ie=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||Ie.focus();break;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(lt=>{lt||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 Ie=this._config.restoreFocus;let lt=null;if("string"==typeof Ie?lt=this._document.querySelector(Ie):"boolean"==typeof Ie?lt=Ie?this._elementFocusedBeforeDialogWasOpened:null:Ie&&(lt=Ie),this._config.restoreFocus&<&&"function"==typeof lt.focus){const Qe=(0,l.ht)(),St=this._elementRef.nativeElement;(!Qe||Qe===this._document.body||Qe===St||St.contains(Qe))&&(this._focusMonitor?(this._focusMonitor.focusVia(lt,this._closeInteractionType),this._closeInteractionType=null):lt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const Ie=this._elementRef.nativeElement,lt=(0,l.ht)();return Ie===lt||Ie.contains(lt)}_initializeFocusTrap(){this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,l.ht)())}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}static#e=this.\u0275fac=function(lt){return new(lt||rt)(y.Y36(y.SBq),y.Y36(A.qV),y.Y36(t.K0,8),y.Y36(z),y.Y36(A.ic),y.Y36(y.R0b),y.Y36(e.Iu),y.Y36(A.tE))};static#t=this.\u0275cmp=y.Xpm({type:rt,selectors:[["cdk-dialog-container"]],viewQuery:function(lt,Qe){if(1<&&y.Gf(w.Pl,7),2<){let St;y.iGM(St=y.CRH())&&(Qe._portalOutlet=St.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(lt,Qe){2<&&y.uIk("id",Qe._config.id||null)("role",Qe._config.role)("aria-modal",Qe._config.ariaModal)("aria-labelledby",Qe._config.ariaLabel?null:Qe._ariaLabelledByQueue[0])("aria-label",Qe._config.ariaLabel)("aria-describedby",Qe._config.ariaDescribedBy||null)},standalone:!0,features:[y.qOj,y.jDz],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(lt,Qe){1<&&y.YNc(0,k,0,0,"ng-template",0)},dependencies:[w.eL,w.Pl],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2})}return rt})();class j{constructor($e,Ie){this.overlayRef=$e,this.config=Ie,this.closed=new P.x,this.disableClose=Ie.disableClose,this.backdropClick=$e.backdropClick(),this.keydownEvents=$e.keydownEvents(),this.outsidePointerEvents=$e.outsidePointerEvents(),this.id=Ie.id,this.keydownEvents.subscribe(lt=>{lt.keyCode===m.hY&&!this.disableClose&&!(0,m.Vb)(lt)&&(lt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})}),this._detachSubscription=$e.detachments().subscribe(()=>{!1!==Ie.closeOnOverlayDetachments&&this.close()})}close($e,Ie){if(this.containerInstance){const lt=this.closed;this.containerInstance._closeInteractionType=Ie?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),lt.next($e),lt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize($e="",Ie=""){return this.overlayRef.updateSize({width:$e,height:Ie}),this}addPanelClass($e){return this.overlayRef.addPanelClass($e),this}removePanelClass($e){return this.overlayRef.removePanelClass($e),this}}const K=new y.OlP("DialogScrollStrategy",{providedIn:"root",factory:()=>{const rt=(0,y.f3M)(e.aV);return()=>rt.scrollStrategies.block()}}),X=new y.OlP("DialogData"),ie=new y.OlP("DefaultDialogConfig");let ae=0,Me=(()=>{class rt{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}constructor(Ie,lt,Qe,St,dt,te){this._overlay=Ie,this._injector=lt,this._defaultOptions=Qe,this._parentDialog=St,this._overlayContainer=dt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new P.x,this._afterOpenedAtThisLevel=new P.x,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,d.P)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,I.O)(void 0))),this._scrollStrategy=te}open(Ie,lt){(lt={...this._defaultOptions||new z,...lt}).id=lt.id||"cdk-dialog-"+ae++,lt.id&&this.getDialogById(lt.id);const St=this._getOverlayConfig(lt),dt=this._overlay.create(St),te=new j(dt,lt),Ue=this._attachContainer(dt,te,lt);return te.containerInstance=Ue,this._attachDialogContent(Ie,te,Ue,lt),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(te),te.closed.subscribe(()=>this._removeOpenDialog(te,!0)),this.afterOpened.next(te),te}closeAll(){J(this.openDialogs,Ie=>Ie.close())}getDialogById(Ie){return this.openDialogs.find(lt=>lt.id===Ie)}ngOnDestroy(){J(this._openDialogsAtThisLevel,Ie=>{!1===Ie.config.closeOnDestroy&&this._removeOpenDialog(Ie,!1)}),J(this._openDialogsAtThisLevel,Ie=>Ie.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Ie){const lt=new e.X_({positionStrategy:Ie.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:Ie.scrollStrategy||this._scrollStrategy(),panelClass:Ie.panelClass,hasBackdrop:Ie.hasBackdrop,direction:Ie.direction,minWidth:Ie.minWidth,minHeight:Ie.minHeight,maxWidth:Ie.maxWidth,maxHeight:Ie.maxHeight,width:Ie.width,height:Ie.height,disposeOnNavigation:Ie.closeOnNavigation});return Ie.backdropClass&&(lt.backdropClass=Ie.backdropClass),lt}_attachContainer(Ie,lt,Qe){const St=Qe.injector||Qe.viewContainerRef?.injector,dt=[{provide:z,useValue:Qe},{provide:j,useValue:lt},{provide:e.Iu,useValue:Ie}];let te;Qe.container?"function"==typeof Qe.container?te=Qe.container:(te=Qe.container.type,dt.push(...Qe.container.providers(Qe))):te=W;const Ue=new w.C5(te,Qe.viewContainerRef,y.zs3.create({parent:St||this._injector,providers:dt}),Qe.componentFactoryResolver);return Ie.attach(Ue).instance}_attachDialogContent(Ie,lt,Qe,St){if(Ie instanceof y.Rgc){const dt=this._createInjector(St,lt,Qe,void 0);let te={$implicit:St.data,dialogRef:lt};St.templateContext&&(te={...te,..."function"==typeof St.templateContext?St.templateContext():St.templateContext}),Qe.attachTemplatePortal(new w.UE(Ie,null,te,dt))}else{const dt=this._createInjector(St,lt,Qe,this._injector),te=Qe.attachComponentPortal(new w.C5(Ie,St.viewContainerRef,dt,St.componentFactoryResolver));lt.componentRef=te,lt.componentInstance=te.instance}}_createInjector(Ie,lt,Qe,St){const dt=Ie.injector||Ie.viewContainerRef?.injector,te=[{provide:X,useValue:Ie.data},{provide:j,useValue:lt}];return Ie.providers&&("function"==typeof Ie.providers?te.push(...Ie.providers(lt,Ie,Qe)):te.push(...Ie.providers)),Ie.direction&&(!dt||!dt.get(M.Is,null,{optional:!0}))&&te.push({provide:M.Is,useValue:{value:Ie.direction,change:(0,E.of)()}}),y.zs3.create({parent:dt||St,providers:te})}_removeOpenDialog(Ie,lt){const Qe=this.openDialogs.indexOf(Ie);Qe>-1&&(this.openDialogs.splice(Qe,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((St,dt)=>{St?dt.setAttribute("aria-hidden",St):dt.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),lt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const Ie=this._overlayContainer.getContainerElement();if(Ie.parentElement){const lt=Ie.parentElement.children;for(let Qe=lt.length-1;Qe>-1;Qe--){const St=lt[Qe];St!==Ie&&"SCRIPT"!==St.nodeName&&"STYLE"!==St.nodeName&&!St.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(St,St.getAttribute("aria-hidden")),St.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Ie=this._parentDialog;return Ie?Ie._getAfterAllClosed():this._afterAllClosedAtThisLevel}static#e=this.\u0275fac=function(lt){return new(lt||rt)(y.LFG(e.aV),y.LFG(y.zs3),y.LFG(ie,8),y.LFG(rt,12),y.LFG(e.Xj),y.LFG(K))};static#t=this.\u0275prov=y.Yz7({token:rt,factory:rt.\u0275fac,providedIn:"root"})}return rt})();function J(rt,$e){let Ie=rt.length;for(;Ie--;)$e(rt[Ie])}let he=(()=>{class rt{static#e=this.\u0275fac=function(lt){return new(lt||rt)};static#t=this.\u0275mod=y.oAB({type:rt});static#i=this.\u0275inj=y.cJS({providers:[Me],imports:[e.U8,w.eL,A.rt,W,w.eL]})}return rt})();var S=p(2495),n=p(3019),s=p(2181),f=p(8180),h=p(3680);function D(rt,$e){}p(6825);class O{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.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const v="mdc-dialog--open",r="mdc-dialog--opening",g="mdc-dialog--closing";let ee=(()=>{class rt extends W{constructor(Ie,lt,Qe,St,dt,te,Ue,Bt,Ye){super(Ie,lt,Qe,St,dt,te,Ue,Ye),this._animationMode=Bt,this._animationStateChanged=new y.vpe,this._animationsEnabled="NoopAnimations"!==this._animationMode,this._hostElement=this._elementRef.nativeElement,this._enterAnimationDuration=this._animationsEnabled?ct(this._config.enterAnimationDuration)??150:0,this._exitAnimationDuration=this._animationsEnabled?ct(this._config.exitAnimationDuration)??75:0,this._animationTimer=null,this._finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)},this._finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})}}_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(De,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(r,v)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(v),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(v),this._animationsEnabled?(this._hostElement.style.setProperty(De,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(g)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_clearAnimationClasses(){this._hostElement.classList.remove(r,g)}_waitForAnimationToComplete(Ie,lt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(lt,Ie)}_requestAnimationFrame(Ie){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Ie):Ie()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Ie){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Ie})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Ie){const lt=super.attachComponentPortal(Ie);return lt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),lt}static#e=this.\u0275fac=function(lt){return new(lt||rt)(y.Y36(y.SBq),y.Y36(A.qV),y.Y36(t.K0,8),y.Y36(O),y.Y36(A.ic),y.Y36(y.R0b),y.Y36(e.Iu),y.Y36(y.QbO,8),y.Y36(A.tE))};static#t=this.\u0275cmp=y.Xpm({type:rt,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:8,hostBindings:function(lt,Qe){2<&&(y.Ikx("id",Qe._config.id),y.uIk("aria-modal",Qe._config.ariaModal)("role",Qe._config.role)("aria-labelledby",Qe._config.ariaLabel?null:Qe._ariaLabelledByQueue[0])("aria-label",Qe._config.ariaLabel)("aria-describedby",Qe._config.ariaDescribedBy||null),y.ekj("_mat-animation-noopable",!Qe._animationsEnabled))},standalone:!0,features:[y.qOj,y.jDz],decls:3,vars:0,consts:[[1,"mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(lt,Qe){1<&&(y.TgZ(0,"div",0)(1,"div",1),y.YNc(2,D,0,0,"ng-template",2),y.qZA()())},dependencies:[w.eL,w.Pl],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-dialog,.mdc-dialog__scrim{position:fixed;top:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.mdc-dialog{display:none;z-index:var(--mdc-dialog-z-index, 7)}.mdc-dialog .mdc-dialog__content{padding:20px 24px 20px 24px}.mdc-dialog .mdc-dialog__surface{min-width:280px}@media(max-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:calc(100vw - 32px)}}@media(min-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:560px}}.mdc-dialog .mdc-dialog__surface{max-height:calc(100% - 32px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-width:none}@media(max-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px;width:560px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 112px)}}@media(max-width: 720px)and (min-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:560px}}@media(max-width: 720px)and (max-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:calc(100vh - 160px)}}@media(max-width: 720px)and (min-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px}}@media(max-width: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-height: 400px),(max-width: 600px),(min-width: 720px)and (max-height: 400px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{height:100%;max-height:100vh;max-width:100vw;width:100vw;border-radius:0}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{order:-1;left:-12px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__header{padding:0 16px 9px;justify-content:flex-start}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__title{margin-left:calc(16px - 2 * 12px)}}@media(min-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 400px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}.mdc-dialog.mdc-dialog__scrim--hidden .mdc-dialog__scrim{opacity:0}.mdc-dialog__scrim{opacity:0;z-index:-1}.mdc-dialog__container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;transform:scale(0.8);opacity:0;pointer-events:none}.mdc-dialog__surface{position:relative;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;max-width:100%;max-height:100%;pointer-events:auto;overflow-y:auto;outline:0}.mdc-dialog__surface .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}[dir=rtl] .mdc-dialog__surface,.mdc-dialog__surface[dir=rtl]{text-align:right}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-dialog__surface{outline:2px solid windowText}}.mdc-dialog__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-dialog__surface::before{border-color:CanvasText}}@media screen and (-ms-high-contrast: active),screen and (-ms-high-contrast: none){.mdc-dialog__surface::before{content:none}}.mdc-dialog__title{display:block;margin-top:0;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:0 24px 9px}.mdc-dialog__title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mdc-dialog__title,.mdc-dialog__title[dir=rtl]{text-align:right}.mdc-dialog--scrollable .mdc-dialog__title{margin-bottom:1px;padding-bottom:15px}.mdc-dialog--fullscreen .mdc-dialog__header{align-items:baseline;border-bottom:1px solid rgba(0,0,0,0);display:inline-flex;justify-content:space-between;padding:0 24px 9px;z-index:1}@media screen and (forced-colors: active){.mdc-dialog--fullscreen .mdc-dialog__header{border-bottom-color:CanvasText}}.mdc-dialog--fullscreen .mdc-dialog__header .mdc-dialog__close{right:-12px}.mdc-dialog--fullscreen .mdc-dialog__title{margin-bottom:0;padding:0;border-bottom:0}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__title{border-bottom:0;margin-bottom:0}.mdc-dialog--fullscreen .mdc-dialog__close{top:5px}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--fullscreen--titleless .mdc-dialog__close{margin-top:4px}.mdc-dialog--fullscreen--titleless.mdc-dialog--scrollable .mdc-dialog__close{margin-top:0}.mdc-dialog__content{flex-grow:1;box-sizing:border-box;margin:0;overflow:auto}.mdc-dialog__content>:first-child{margin-top:0}.mdc-dialog__content>:last-child{margin-bottom:0}.mdc-dialog__title+.mdc-dialog__content,.mdc-dialog__header+.mdc-dialog__content{padding-top:0}.mdc-dialog--scrollable .mdc-dialog__title+.mdc-dialog__content{padding-top:8px;padding-bottom:8px}.mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:6px 0 0}.mdc-dialog--scrollable .mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:0}.mdc-dialog__actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--stacked .mdc-dialog__actions{flex-direction:column;align-items:flex-end}.mdc-dialog__button{margin-left:8px;margin-right:0;max-width:100%;text-align:right}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{margin-left:0;margin-right:8px}.mdc-dialog__button:first-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button:first-child,.mdc-dialog__button:first-child[dir=rtl]{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{text-align:left}.mdc-dialog--stacked .mdc-dialog__button:not(:first-child){margin-top:12px}.mdc-dialog--open,.mdc-dialog--opening,.mdc-dialog--closing{display:flex}.mdc-dialog--opening .mdc-dialog__scrim{transition:opacity 150ms linear}.mdc-dialog--opening .mdc-dialog__container{transition:opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-dialog--closing .mdc-dialog__scrim,.mdc-dialog--closing .mdc-dialog__container{transition:opacity 75ms linear}.mdc-dialog--closing .mdc-dialog__container{transform:none}.mdc-dialog--open .mdc-dialog__scrim{opacity:1}.mdc-dialog--open .mdc-dialog__container{transform:none;opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim{opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{transition:opacity 75ms linear}.mdc-dialog--open.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim{transition:opacity 150ms linear}.mdc-dialog__surface-scrim{display:none;opacity:0;position:absolute;width:100%;height:100%;z-index:1}.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{display:block}.mdc-dialog-scroll-lock{overflow:hidden}.mdc-dialog--no-content-padding .mdc-dialog__content{padding:0}.mdc-dialog--sheet .mdc-dialog__container .mdc-dialog__close{right:12px;top:9px;position:absolute;z-index:1}.mdc-dialog__scrim--removed{pointer-events:none}.mdc-dialog__scrim--removed .mdc-dialog__scrim,.mdc-dialog__scrim--removed .mdc-dialog__surface-scrim{display:none}.mat-mdc-dialog-content{max-height:65vh}.mat-mdc-dialog-container{position:static;display:block}.mat-mdc-dialog-container,.mat-mdc-dialog-container .mdc-dialog__container,.mat-mdc-dialog-container .mdc-dialog__surface{max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mat-mdc-dialog-container .mdc-dialog__surface{width:100%;height:100%}.mat-mdc-dialog-component-host{display:contents}.mat-mdc-dialog-container{--mdc-dialog-container-elevation: var(--mdc-dialog-container-elevation-shadow);outline:0}.mat-mdc-dialog-container .mdc-dialog__surface{background-color:var(--mdc-dialog-container-color, white)}.mat-mdc-dialog-container .mdc-dialog__surface{box-shadow:var(--mdc-dialog-container-elevation, 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12))}.mat-mdc-dialog-container .mdc-dialog__surface{border-radius:var(--mdc-dialog-container-shape, 4px)}.mat-mdc-dialog-container .mdc-dialog__title{font-family:var(--mdc-dialog-subhead-font, Roboto, sans-serif);line-height:var(--mdc-dialog-subhead-line-height, 1.5rem);font-size:var(--mdc-dialog-subhead-size, 1rem);font-weight:var(--mdc-dialog-subhead-weight, 400);letter-spacing:var(--mdc-dialog-subhead-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__title{color:var(--mdc-dialog-subhead-color, rgba(0, 0, 0, 0.87))}.mat-mdc-dialog-container .mdc-dialog__content{font-family:var(--mdc-dialog-supporting-text-font, Roboto, sans-serif);line-height:var(--mdc-dialog-supporting-text-line-height, 1.5rem);font-size:var(--mdc-dialog-supporting-text-size, 1rem);font-weight:var(--mdc-dialog-supporting-text-weight, 400);letter-spacing:var(--mdc-dialog-supporting-text-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__content{color:var(--mdc-dialog-supporting-text-color, rgba(0, 0, 0, 0.6))}.mat-mdc-dialog-container .mdc-dialog__container{transition-duration:var(--mat-dialog-transition-duration, 0ms)}.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__container{transition:none}.mat-mdc-dialog-content{display:block}.mat-mdc-dialog-actions{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}'],encapsulation:2})}return rt})();const De="--mat-dialog-transition-duration";function ct(rt){return null==rt?null:"number"==typeof rt?rt:rt.endsWith("ms")?(0,S.su)(rt.substring(0,rt.length-2)):rt.endsWith("s")?1e3*(0,S.su)(rt.substring(0,rt.length-1)):"0"===rt?0:null}class Ke{constructor($e,Ie,lt){this._ref=$e,this._containerInstance=lt,this._afterOpened=new P.x,this._beforeClosed=new P.x,this._state=0,this.disableClose=Ie.disableClose,this.id=$e.id,lt._animationStateChanged.pipe((0,s.h)(Qe=>"opened"===Qe.state),(0,f.q)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),lt._animationStateChanged.pipe((0,s.h)(Qe=>"closed"===Qe.state),(0,f.q)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),$e.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,n.T)(this.backdropClick(),this.keydownEvents().pipe((0,s.h)(Qe=>Qe.keyCode===m.hY&&!this.disableClose&&!(0,m.Vb)(Qe)))).subscribe(Qe=>{this.disableClose||(Qe.preventDefault(),Je(this,"keydown"===Qe.type?"keyboard":"mouse"))})}close($e){this._result=$e,this._containerInstance._animationStateChanged.pipe((0,s.h)(Ie=>"closing"===Ie.state),(0,f.q)(1)).subscribe(Ie=>{this._beforeClosed.next($e),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),Ie.totalTime+100)}),this._state=1,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition($e){let Ie=this._ref.config.positionStrategy;return $e&&($e.left||$e.right)?$e.left?Ie.left($e.left):Ie.right($e.right):Ie.centerHorizontally(),$e&&($e.top||$e.bottom)?$e.top?Ie.top($e.top):Ie.bottom($e.bottom):Ie.centerVertically(),this._ref.updatePosition(),this}updateSize($e="",Ie=""){return this._ref.updateSize($e,Ie),this}addPanelClass($e){return this._ref.addPanelClass($e),this}removePanelClass($e){return this._ref.removePanelClass($e),this}getState(){return this._state}_finishDialogClose(){this._state=2,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function Je(rt,$e,Ie){return rt._closeInteractionType=$e,rt.close(Ie)}const ye=new y.OlP("MatMdcDialogData"),fe=new y.OlP("mat-mdc-dialog-default-options"),de=new y.OlP("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const rt=(0,y.f3M)(e.aV);return()=>rt.scrollStrategies.block()}});let pe=0,qe=(()=>{class rt{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ie=this._parentDialog;return Ie?Ie._getAfterAllClosed():this._afterAllClosedAtThisLevel}constructor(Ie,lt,Qe,St,dt,te,Ue,Bt){this._overlay=Ie,this._defaultOptions=St,this._scrollStrategy=dt,this._parentDialog=te,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new P.x,this._afterOpenedAtThisLevel=new P.x,this.dialogConfigClass=O,this.afterAllClosed=(0,d.P)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,I.O)(void 0))),this._dialog=lt.get(Me),this._dialogRefConstructor=Ke,this._dialogContainerType=ee,this._dialogDataToken=ye}open(Ie,lt){let Qe;(lt={...this._defaultOptions||new O,...lt}).id=lt.id||"mat-mdc-dialog-"+pe++,lt.scrollStrategy=lt.scrollStrategy||this._scrollStrategy();const St=this._dialog.open(Ie,{...lt,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:lt},{provide:z,useValue:lt}]},templateContext:()=>({dialogRef:Qe}),providers:(dt,te,Ue)=>(Qe=new this._dialogRefConstructor(dt,lt,Ue),Qe.updatePosition(lt?.position),[{provide:this._dialogContainerType,useValue:Ue},{provide:this._dialogDataToken,useValue:te.data},{provide:this._dialogRefConstructor,useValue:Qe}])});return Qe.componentRef=St.componentRef,Qe.componentInstance=St.componentInstance,this.openDialogs.push(Qe),this.afterOpened.next(Qe),Qe.afterClosed().subscribe(()=>{const dt=this.openDialogs.indexOf(Qe);dt>-1&&(this.openDialogs.splice(dt,1),this.openDialogs.length||this._getAfterAllClosed().next())}),Qe}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ie){return this.openDialogs.find(lt=>lt.id===Ie)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Ie){let lt=Ie.length;for(;lt--;)Ie[lt].close()}static#e=this.\u0275fac=function(lt){return new(lt||rt)(y.LFG(e.aV),y.LFG(y.zs3),y.LFG(t.Ye,8),y.LFG(fe,8),y.LFG(de),y.LFG(rt,12),y.LFG(e.Xj),y.LFG(y.QbO,8))};static#t=this.\u0275prov=y.Yz7({token:rt,factory:rt.\u0275fac,providedIn:"root"})}return rt})(),ve=(()=>{class rt{constructor(Ie,lt,Qe){this.dialogRef=Ie,this._elementRef=lt,this._dialog=Qe,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function Ct(rt,$e){let Ie=rt.nativeElement.parentElement;for(;Ie&&!Ie.classList.contains("mat-mdc-dialog-container");)Ie=Ie.parentElement;return Ie?$e.find(lt=>lt.id===Ie.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ie){const lt=Ie._matDialogClose||Ie._matDialogCloseResult;lt&&(this.dialogResult=lt.currentValue)}_onButtonClick(Ie){Je(this.dialogRef,0===Ie.screenX&&0===Ie.screenY?"keyboard":"mouse",this.dialogResult)}static#e=this.\u0275fac=function(lt){return new(lt||rt)(y.Y36(Ke,8),y.Y36(y.SBq),y.Y36(qe))};static#t=this.\u0275dir=y.lG2({type:rt,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(lt,Qe){1<&&y.NdJ("click",function(dt){return Qe._onButtonClick(dt)}),2<&&y.uIk("aria-label",Qe.ariaLabel||null)("type",Qe.type)},inputs:{ariaLabel:["aria-label","ariaLabel"],type:"type",dialogResult:["mat-dialog-close","dialogResult"],_matDialogClose:["matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],standalone:!0,features:[y.TTD]})}return rt})();let It=(()=>{class rt{static#e=this.\u0275fac=function(lt){return new(lt||rt)};static#t=this.\u0275mod=y.oAB({type:rt});static#i=this.\u0275inj=y.cJS({providers:[qe],imports:[he,e.U8,w.eL,h.BQ,ee,h.BQ]})}return rt})()},6385:(Fe,q,p)=>{"use strict";p.d(q,{d:()=>A,t:()=>l});var e=p(9212),t=p(2495),y=p(3680);let A=(()=>{class w{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(P){this._vertical=(0,t.Ig)(P)}get inset(){return this._inset}set inset(P){this._inset=(0,t.Ig)(P)}static#e=this.\u0275fac=function(d){return new(d||w)};static#t=this.\u0275cmp=e.Xpm({type:w,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(d,E){2&d&&(e.uIk("aria-orientation",E.vertical?"vertical":"horizontal"),e.ekj("mat-divider-vertical",E.vertical)("mat-divider-horizontal",!E.vertical)("mat-divider-inset",E.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(d,E){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color);border-top-width:var(--mat-divider-width)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color);border-right-width:var(--mat-divider-width)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],encapsulation:2,changeDetection:0})}return w})(),l=(()=>{class w{static#e=this.\u0275fac=function(d){return new(d||w)};static#t=this.\u0275mod=e.oAB({type:w});static#i=this.\u0275inj=e.cJS({imports:[y.BQ,y.BQ]})}return w})()},3305:(Fe,q,p)=>{"use strict";p.d(q,{pp:()=>ye,To:()=>fe,ib:()=>H,u4:()=>Ke,yz:()=>ct,yK:()=>Je});var e=p(9212),t=p(8337),y=p(8645),A=p(7394);let l=0;const w=new e.OlP("CdkAccordion");let m=(()=>{class de{constructor(){this._stateChanges=new y.x,this._openCloseAllActions=new y.x,this.id="cdk-accordion-"+l++,this.multi=!1}openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(le){this._stateChanges.next(le)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static#e=this.\u0275fac=function(pe){return new(pe||de)};static#t=this.\u0275dir=e.lG2({type:de,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:["multi","multi",e.VuI]},exportAs:["cdkAccordion"],features:[e._Bn([{provide:w,useExisting:de}]),e.Xq5,e.TTD]})}return de})(),P=0,d=(()=>{class de{get expanded(){return this._expanded}set expanded(le){this._expanded!==le&&(this._expanded=le,this.expandedChange.emit(le),le?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}constructor(le,pe,qe){this.accordion=le,this._changeDetectorRef=pe,this._expansionDispatcher=qe,this._openCloseAllSubscription=A.w0.EMPTY,this.closed=new e.vpe,this.opened=new e.vpe,this.destroyed=new e.vpe,this.expandedChange=new e.vpe,this.id="cdk-accordion-child-"+P++,this._expanded=!1,this.disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=qe.listen((re,ve)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===ve&&this.id!==re&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}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(le=>{this.disabled||(this.expanded=le)})}static#e=this.\u0275fac=function(pe){return new(pe||de)(e.Y36(w,12),e.Y36(e.sBO),e.Y36(t.A8))};static#t=this.\u0275dir=e.lG2({type:de,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:["expanded","expanded",e.VuI],disabled:["disabled","disabled",e.VuI]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],features:[e._Bn([{provide:w,useValue:void 0}]),e.Xq5]})}return de})(),E=(()=>{class de{static#e=this.\u0275fac=function(pe){return new(pe||de)};static#t=this.\u0275mod=e.oAB({type:de});static#i=this.\u0275inj=e.cJS({})}return de})();var M=p(8484),I=p(3680),k=p(2495),z=p(4300),B=p(3997),W=p(7921),j=p(2181),K=p(8180),X=p(6028),ie=p(6232),se=p(3019),ue=p(6825),ae=p(6814);const Me=["body"];function J(de,xe){}const he=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],S=["mat-expansion-panel-header","*","mat-action-row"];function n(de,xe){if(1&de&&e._UZ(0,"span",2),2&de){const le=e.oxw();e.Q6J("@indicatorRotate",le._getExpandedState())}}const s=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],f=["mat-panel-title","mat-panel-description","*"],h=new e.OlP("MAT_ACCORDION"),C="225ms cubic-bezier(0.4,0.0,0.2,1)",D={indicatorRotate:(0,ue.X$)("indicatorRotate",[(0,ue.SB)("collapsed, void",(0,ue.oB)({transform:"rotate(0deg)"})),(0,ue.SB)("expanded",(0,ue.oB)({transform:"rotate(180deg)"})),(0,ue.eR)("expanded <=> collapsed, void => collapsed",(0,ue.jt)(C))]),bodyExpansion:(0,ue.X$)("bodyExpansion",[(0,ue.SB)("collapsed, void",(0,ue.oB)({height:"0px",visibility:"hidden"})),(0,ue.SB)("expanded",(0,ue.oB)({height:"*",visibility:""})),(0,ue.eR)("expanded <=> collapsed, void => collapsed",(0,ue.jt)(C))])},O=new e.OlP("MAT_EXPANSION_PANEL");let v=(()=>{class de{constructor(le,pe){this._template=le,this._expansionPanel=pe}static#e=this.\u0275fac=function(pe){return new(pe||de)(e.Y36(e.Rgc),e.Y36(O,8))};static#t=this.\u0275dir=e.lG2({type:de,selectors:[["ng-template","matExpansionPanelContent",""]]})}return de})(),r=0;const g=new e.OlP("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let H=(()=>{class de extends d{get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(le){this._hideToggle=(0,k.Ig)(le)}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(le){this._togglePosition=le}constructor(le,pe,qe,re,ve,ce,Ze){super(le,pe,qe),this._viewContainerRef=re,this._animationMode=ce,this._hideToggle=!1,this.afterExpand=new e.vpe,this.afterCollapse=new e.vpe,this._inputChanges=new y.x,this._headerId="mat-expansion-panel-header-"+r++,this._bodyAnimationDone=new y.x,this.accordion=le,this._document=ve,this._bodyAnimationDone.pipe((0,B.x)((We,Ct)=>We.fromState===Ct.fromState&&We.toState===Ct.toState)).subscribe(We=>{"void"!==We.fromState&&("expanded"===We.toState?this.afterExpand.emit():"collapsed"===We.toState&&this.afterCollapse.emit())}),Ze&&(this.hideToggle=Ze.hideToggle)}_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._lazyContent._expansionPanel===this&&this.opened.pipe((0,W.O)(null),(0,j.h)(()=>this.expanded&&!this._portal),(0,K.q)(1)).subscribe(()=>{this._portal=new M.UE(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(le){this._inputChanges.next(le)}ngOnDestroy(){super.ngOnDestroy(),this._bodyAnimationDone.complete(),this._inputChanges.complete()}_containsFocus(){if(this._body){const le=this._document.activeElement,pe=this._body.nativeElement;return le===pe||pe.contains(le)}return!1}static#e=this.\u0275fac=function(pe){return new(pe||de)(e.Y36(h,12),e.Y36(e.sBO),e.Y36(t.A8),e.Y36(e.s_b),e.Y36(ae.K0),e.Y36(e.QbO,8),e.Y36(g,8))};static#t=this.\u0275cmp=e.Xpm({type:de,selectors:[["mat-expansion-panel"]],contentQueries:function(pe,qe,re){if(1&pe&&e.Suo(re,v,5),2&pe){let ve;e.iGM(ve=e.CRH())&&(qe._lazyContent=ve.first)}},viewQuery:function(pe,qe){if(1&pe&&e.Gf(Me,5),2&pe){let re;e.iGM(re=e.CRH())&&(qe._body=re.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(pe,qe){2&pe&&e.ekj("mat-expanded",qe.expanded)("_mat-animation-noopable","NoopAnimations"===qe._animationMode)("mat-expansion-panel-spacing",qe._hasSpacing())},inputs:{disabled:"disabled",expanded:"expanded",hideToggle:"hideToggle",togglePosition:"togglePosition"},outputs:{opened:"opened",closed:"closed",expandedChange:"expandedChange",afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],features:[e._Bn([{provide:h,useValue:void 0},{provide:O,useExisting:de}]),e.qOj,e.TTD],ngContentSelectors:S,decls:7,vars:4,consts:[["role","region",1,"mat-expansion-panel-content",3,"id"],["body",""],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(pe,qe){1&pe&&(e.F$t(he),e.Hsn(0),e.TgZ(1,"div",0,1),e.NdJ("@bodyExpansion.done",function(ve){return qe._bodyAnimationDone.next(ve)}),e.TgZ(3,"div",2),e.Hsn(4,1),e.YNc(5,J,0,0,"ng-template",3),e.qZA(),e.Hsn(6,2),e.qZA()),2&pe&&(e.xp6(1),e.Q6J("@bodyExpansion",qe._getExpandedState())("id",qe.id),e.uIk("aria-labelledby",qe._headerId),e.xp6(4),e.Q6J("cdkPortalOutlet",qe._portal))},dependencies:[M.Pl],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;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;background:var(--mat-expansion-container-background-color);color:var(--mat-expansion-container-text-color);border-radius:var(--mat-expansion-container-shape)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.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:var(--mat-expansion-container-shape);border-top-left-radius:var(--mat-expansion-container-shape)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape);border-bottom-left-radius:var(--mat-expansion-container-shape)}.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;font-family:var(--mat-expansion-container-text-font);font-size:var(--mat-expansion-container-text-size);font-weight:var(--mat-expansion-container-text-weight);line-height:var(--mat-expansion-container-text-line-height);letter-spacing:var(--mat-expansion-container-text-tracking)}.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;border-top-color:var(--mat-expansion-actions-divider-color)}.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}'],encapsulation:2,data:{animation:[D.bodyExpansion]},changeDetection:0})}return de})();class ee{}const De=(0,I.sb)(ee);let ct=(()=>{class de extends De{constructor(le,pe,qe,re,ve,ce,Ze){super(),this.panel=le,this._element=pe,this._focusMonitor=qe,this._changeDetectorRef=re,this._animationMode=ce,this._parentChangeSubscription=A.w0.EMPTY;const We=le.accordion?le.accordion._stateChanges.pipe((0,j.h)(Ct=>!(!Ct.hideToggle&&!Ct.togglePosition))):ie.E;this.tabIndex=parseInt(Ze||"")||0,this._parentChangeSubscription=(0,se.T)(le.opened,le.closed,We,le._inputChanges.pipe((0,j.h)(Ct=>!!(Ct.hideToggle||Ct.disabled||Ct.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),le.closed.pipe((0,j.h)(()=>le._containsFocus())).subscribe(()=>qe.focusVia(pe,"program")),ve&&(this.expandedHeight=ve.expandedHeight,this.collapsedHeight=ve.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 le=this._isExpanded();return le&&this.expandedHeight?this.expandedHeight:!le&&this.collapsedHeight?this.collapsedHeight:null}_keydown(le){switch(le.keyCode){case X.L_:case X.K5:(0,X.Vb)(le)||(le.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(le))}}focus(le,pe){le?this._focusMonitor.focusVia(this._element,le,pe):this._element.nativeElement.focus(pe)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(le=>{le&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static#e=this.\u0275fac=function(pe){return new(pe||de)(e.Y36(H,1),e.Y36(e.SBq),e.Y36(z.tE),e.Y36(e.sBO),e.Y36(g,8),e.Y36(e.QbO,8),e.$8M("tabindex"))};static#t=this.\u0275cmp=e.Xpm({type:de,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(pe,qe){1&pe&&e.NdJ("click",function(){return qe._toggle()})("keydown",function(ve){return qe._keydown(ve)}),2&pe&&(e.uIk("id",qe.panel._headerId)("tabindex",qe.tabIndex)("aria-controls",qe._getPanelId())("aria-expanded",qe._isExpanded())("aria-disabled",qe.panel.disabled),e.Udp("height",qe._getHeaderHeight()),e.ekj("mat-expanded",qe._isExpanded())("mat-expansion-toggle-indicator-after","after"===qe._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===qe._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===qe._animationMode))},inputs:{tabIndex:"tabIndex",expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight"},features:[e.qOj],ngContentSelectors:f,decls:5,vars:3,consts:[[1,"mat-content"],["class","mat-expansion-indicator"],[1,"mat-expansion-indicator"]],template:function(pe,qe){1&pe&&(e.F$t(s),e.TgZ(0,"span",0),e.Hsn(1),e.Hsn(2,1),e.Hsn(3,2),e.qZA(),e.YNc(4,n,1,1,"span",1)),2&pe&&(e.ekj("mat-content-hide-toggle",!qe._showToggle()),e.xp6(4),e.um2(4,qe._showToggle()?4:-1))},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);height:var(--mat-expansion-header-collapsed-state-height);font-family:var(--mat-expansion-header-text-font);font-size:var(--mat-expansion-header-text-size);font-weight:var(--mat-expansion-header-text-weight);line-height:var(--mat-expansion-header-text-line-height);letter-spacing:var(--mat-expansion-header-text-tracking)}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color)}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-header-hover-state-layer-color)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-container-background-color)}}.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused{background:var(--mat-expansion-header-focus-state-layer-color)}.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.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-content.mat-content-hide-toggle{margin-right:8px}[dir=rtl] .mat-content.mat-content-hide-toggle{margin-right:0;margin-left:8px}.mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-left:24px;margin-right:0}[dir=rtl] .mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-right:24px;margin-left:0}.mat-expansion-panel-header-title{color:var(--mat-expansion-header-text-color)}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;flex-basis:0;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[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header-description{flex-grow:2;color:var(--mat-expansion-header-description-color)}.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;color:var(--mat-expansion-header-indicator-color)}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}'],encapsulation:2,data:{animation:[D.indicatorRotate]},changeDetection:0})}return de})(),Ke=(()=>{class de{static#e=this.\u0275fac=function(pe){return new(pe||de)};static#t=this.\u0275dir=e.lG2({type:de,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"]})}return de})(),Je=(()=>{class de{static#e=this.\u0275fac=function(pe){return new(pe||de)};static#t=this.\u0275dir=e.lG2({type:de,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"]})}return de})(),ye=(()=>{class de extends m{constructor(){super(...arguments),this._ownHeaders=new e.n_E,this._hideToggle=!1,this.displayMode="default",this.togglePosition="after"}get hideToggle(){return this._hideToggle}set hideToggle(le){this._hideToggle=(0,k.Ig)(le)}ngAfterContentInit(){this._headers.changes.pipe((0,W.O)(this._headers)).subscribe(le=>{this._ownHeaders.reset(le.filter(pe=>pe.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new z.Em(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(le){this._keyManager.onKeydown(le)}_handleHeaderFocus(le){this._keyManager.updateActiveItem(le)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static#e=this.\u0275fac=(()=>{let le;return function(qe){return(le||(le=e.n5z(de)))(qe||de)}})();static#t=this.\u0275dir=e.lG2({type:de,selectors:[["mat-accordion"]],contentQueries:function(pe,qe,re){if(1&pe&&e.Suo(re,ct,5),2&pe){let ve;e.iGM(ve=e.CRH())&&(qe._headers=ve)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(pe,qe){2&pe&&e.ekj("mat-accordion-multi",qe.multi)},inputs:{multi:"multi",hideToggle:"hideToggle",displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],features:[e._Bn([{provide:h,useExisting:de}]),e.qOj]})}return de})(),fe=(()=>{class de{static#e=this.\u0275fac=function(pe){return new(pe||de)};static#t=this.\u0275mod=e.oAB({type:de});static#i=this.\u0275inj=e.cJS({imports:[I.BQ,E,M.eL]})}return de})()},5683:(Fe,q,p)=>{"use strict";p.d(q,{G_:()=>dt,TO:()=>le,KE:()=>xt,Eo:()=>Ie,lN:()=>Ot,bx:()=>qe,hX:()=>fe,R9:()=>Ze});var e=p(9212),t=p(9388),y=p(2831),A=p(7394),l=p(8645),w=p(3019),m=p(9773),P=p(5592),d=p(2181),E=p(7328),M=p(3020);class z{constructor(at){this._box=at,this._destroyed=new l.x,this._resizeSubject=new l.x,this._elementObservables=new Map,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(Ee=>this._resizeSubject.next(Ee)))}observe(at){return this._elementObservables.has(at)||this._elementObservables.set(at,new P.y(Ee=>{const nt=this._resizeSubject.subscribe(Ee);return this._resizeObserver?.observe(at,{box:this._box}),()=>{this._resizeObserver?.unobserve(at),nt.unsubscribe(),this._elementObservables.delete(at)}}).pipe((0,d.h)(Ee=>Ee.some(nt=>nt.target===at)),function I(yt,at,Ee){let nt,Ge=!1;return yt&&"object"==typeof yt?({bufferSize:nt=1/0,windowTime:at=1/0,refCount:Ge=!1,scheduler:Ee}=yt):nt=yt??1/0,(0,M.B)({connector:()=>new E.t(nt,at,Ee),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:Ge})}({bufferSize:1,refCount:!0}),(0,m.R)(this._destroyed))),this._elementObservables.get(at)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let B=(()=>{class yt{constructor(){this._observers=new Map,this._ngZone=(0,e.f3M)(e.R0b)}ngOnDestroy(){for(const[,Ee]of this._observers)Ee.destroy();this._observers.clear()}observe(Ee,nt){const Ge=nt?.box||"content-box";return this._observers.has(Ge)||this._observers.set(Ge,new z(Ge)),this._observers.get(Ge).observe(Ee)}static#e=this.\u0275fac=function(nt){return new(nt||yt)};static#t=this.\u0275prov=e.Yz7({token:yt,factory:yt.\u0275fac,providedIn:"root"})}return yt})();var W=p(2495),j=p(6825),K=p(6814),X=p(7131),ie=p(3680);const se=["notch"],ue=["matFormFieldNotchedOutline",""],ae=["*"],Me=["textField"],J=["iconPrefixContainer"],he=["textPrefixContainer"];function S(yt,at){1&yt&&e._UZ(0,"span",16)}function n(yt,at){if(1&yt&&(e.TgZ(0,"label",14),e.Hsn(1,1),e.YNc(2,S,1,0,"span",15),e.qZA()),2&yt){const Ee=e.oxw(2);e.Q6J("floating",Ee._shouldLabelFloat())("monitorResize",Ee._hasOutline())("id",Ee._labelId),e.uIk("for",Ee._control.id),e.xp6(2),e.um2(2,!Ee.hideRequiredMarker&&Ee._control.required?2:-1)}}function s(yt,at){if(1&yt&&e.YNc(0,n,3,5,"label",14),2&yt){const Ee=e.oxw();e.um2(0,Ee._hasFloatingLabel()?0:-1)}}function f(yt,at){1&yt&&e._UZ(0,"div",17)}function h(yt,at){}function C(yt,at){if(1&yt&&e.YNc(0,h,0,0,"ng-template",9),2&yt){e.oxw(2);const Ee=e.MAs(1);e.Q6J("ngTemplateOutlet",Ee)}}function D(yt,at){if(1&yt&&(e.TgZ(0,"div",5),e.YNc(1,C,1,1,null,9),e.qZA()),2&yt){const Ee=e.oxw();e.Q6J("matFormFieldNotchedOutlineOpen",Ee._shouldLabelFloat()),e.xp6(1),e.um2(1,Ee._forceDisplayInfixLabel()?-1:1)}}function O(yt,at){1&yt&&(e.TgZ(0,"div",18,19),e.Hsn(2,2),e.qZA())}function v(yt,at){1&yt&&(e.TgZ(0,"div",20,21),e.Hsn(2,3),e.qZA())}function r(yt,at){}function g(yt,at){if(1&yt&&e.YNc(0,r,0,0,"ng-template",9),2&yt){e.oxw();const Ee=e.MAs(1);e.Q6J("ngTemplateOutlet",Ee)}}function H(yt,at){1&yt&&(e.TgZ(0,"div",22),e.Hsn(1,4),e.qZA())}function R(yt,at){1&yt&&(e.TgZ(0,"div",23),e.Hsn(1,5),e.qZA())}function ee(yt,at){1&yt&&e._UZ(0,"div",12)}function De(yt,at){if(1&yt&&(e.TgZ(0,"div",24),e.Hsn(1,6),e.qZA()),2&yt){const Ee=e.oxw();e.Q6J("@transitionMessages",Ee._subscriptAnimationState)}}function ct(yt,at){if(1&yt&&(e.TgZ(0,"mat-hint",26),e._uU(1),e.qZA()),2&yt){const Ee=e.oxw(2);e.Q6J("id",Ee._hintLabelId),e.xp6(1),e.Oqu(Ee.hintLabel)}}function Ke(yt,at){if(1&yt&&(e.TgZ(0,"div",25),e.YNc(1,ct,2,2,"mat-hint",26),e.Hsn(2,7),e._UZ(3,"div",27),e.Hsn(4,8),e.qZA()),2&yt){const Ee=e.oxw();e.Q6J("@transitionMessages",Ee._subscriptAnimationState),e.xp6(1),e.um2(1,Ee.hintLabel?1:-1)}}const Je=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],ye=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];let fe=(()=>{class yt{static#e=this.\u0275fac=function(nt){return new(nt||yt)};static#t=this.\u0275dir=e.lG2({type:yt,selectors:[["mat-label"]]})}return yt})(),de=0;const xe=new e.OlP("MatError");let le=(()=>{class yt{constructor(Ee,nt){this.id="mat-mdc-error-"+de++,Ee||nt.nativeElement.setAttribute("aria-live","polite")}static#e=this.\u0275fac=function(nt){return new(nt||yt)(e.$8M("aria-live"),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:yt,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(nt,Ge){2&nt&&e.Ikx("id",Ge.id)},inputs:{id:"id"},features:[e._Bn([{provide:xe,useExisting:yt}])]})}return yt})(),pe=0,qe=(()=>{class yt{constructor(){this.align="start",this.id="mat-mdc-hint-"+pe++}static#e=this.\u0275fac=function(nt){return new(nt||yt)};static#t=this.\u0275dir=e.lG2({type:yt,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(nt,Ge){2&nt&&(e.Ikx("id",Ge.id),e.uIk("align",null),e.ekj("mat-mdc-form-field-hint-end","end"===Ge.align))},inputs:{align:"align",id:"id"}})}return yt})();const re=new e.OlP("MatPrefix"),ce=new e.OlP("MatSuffix");let Ze=(()=>{class yt{constructor(){this._isText=!1}set _isTextSelector(Ee){this._isText=!0}static#e=this.\u0275fac=function(nt){return new(nt||yt)};static#t=this.\u0275dir=e.lG2({type:yt,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:["matTextSuffix","_isTextSelector"]},features:[e._Bn([{provide:ce,useExisting:yt}])]})}return yt})();const We=new e.OlP("FloatingLabelParent");let Ct=(()=>{class yt{get floating(){return this._floating}set floating(Ee){this._floating=Ee,this.monitorResize&&this._handleResize()}get monitorResize(){return this._monitorResize}set monitorResize(Ee){this._monitorResize=Ee,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}constructor(Ee){this._elementRef=Ee,this._floating=!1,this._monitorResize=!1,this._resizeObserver=(0,e.f3M)(B),this._ngZone=(0,e.f3M)(e.R0b),this._parent=(0,e.f3M)(We),this._resizeSubscription=new A.w0}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function ut(yt){if(null!==yt.offsetParent)return yt.scrollWidth;const Ee=yt.cloneNode(!0);Ee.style.setProperty("position","absolute"),Ee.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(Ee);const nt=Ee.scrollWidth;return Ee.remove(),nt}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static#e=this.\u0275fac=function(nt){return new(nt||yt)(e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:yt,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(nt,Ge){2&nt&&e.ekj("mdc-floating-label--float-above",Ge.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"}})}return yt})();const It="mdc-line-ripple--active",Ae="mdc-line-ripple--deactivating";let Be=(()=>{class yt{constructor(Ee,nt){this._elementRef=Ee,this._handleTransitionEnd=Ge=>{const Xe=this._elementRef.nativeElement.classList,gt=Xe.contains(Ae);"opacity"===Ge.propertyName&>&&Xe.remove(It,Ae)},nt.runOutsideAngular(()=>{Ee.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const Ee=this._elementRef.nativeElement.classList;Ee.remove(Ae),Ee.add(It)}deactivate(){this._elementRef.nativeElement.classList.add(Ae)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}static#e=this.\u0275fac=function(nt){return new(nt||yt)(e.Y36(e.SBq),e.Y36(e.R0b))};static#t=this.\u0275dir=e.lG2({type:yt,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]})}return yt})(),rt=(()=>{class yt{constructor(Ee,nt){this._elementRef=Ee,this._ngZone=nt,this.open=!1}ngAfterViewInit(){const Ee=this._elementRef.nativeElement.querySelector(".mdc-floating-label");Ee?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(Ee.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>Ee.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(Ee){this._notch.nativeElement.style.width=this.open&&Ee?`calc(${Ee}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}static#e=this.\u0275fac=function(nt){return new(nt||yt)(e.Y36(e.SBq),e.Y36(e.R0b))};static#t=this.\u0275cmp=e.Xpm({type:yt,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(nt,Ge){if(1&nt&&e.Gf(se,5),2&nt){let Xe;e.iGM(Xe=e.CRH())&&(Ge._notch=Xe.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(nt,Ge){2&nt&&e.ekj("mdc-notched-outline--notched",Ge.open)},inputs:{open:["matFormFieldNotchedOutlineOpen","open"]},attrs:ue,ngContentSelectors:ae,decls:5,vars:0,consts:[[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],["notch",""],[1,"mdc-notched-outline__trailing"]],template:function(nt,Ge){1&nt&&(e.F$t(),e._UZ(0,"div",0),e.TgZ(1,"div",1,2),e.Hsn(3),e.qZA(),e._UZ(4,"div",3))},encapsulation:2,changeDetection:0})}return yt})();const $e={transitionMessages:(0,j.X$)("transitionMessages",[(0,j.SB)("enter",(0,j.oB)({opacity:1,transform:"translateY(0%)"})),(0,j.eR)("void => enter",[(0,j.oB)({opacity:0,transform:"translateY(-5px)"}),(0,j.jt)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let Ie=(()=>{class yt{static#e=this.\u0275fac=function(nt){return new(nt||yt)};static#t=this.\u0275dir=e.lG2({type:yt})}return yt})();const dt=new e.OlP("MatFormField"),te=new e.OlP("MAT_FORM_FIELD_DEFAULT_OPTIONS");let Ue=0,xt=(()=>{class yt{get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(Ee){this._hideRequiredMarker=(0,W.Ig)(Ee)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(Ee){Ee!==this._floatLabel&&(this._floatLabel=Ee,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(Ee){const nt=this._appearance;this._appearance=Ee||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==nt&&(this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(Ee){this._subscriptSizing=Ee||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(Ee){this._hintLabel=Ee,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(Ee){this._explicitFormFieldControl=Ee}constructor(Ee,nt,Ge,Xe,gt,Le,be,$){this._elementRef=Ee,this._changeDetectorRef=nt,this._ngZone=Ge,this._dir=Xe,this._platform=gt,this._defaults=Le,this._animationMode=be,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+Ue++,this._hintLabelId="mat-mdc-hint-"+Ue++,this._subscriptAnimationState="",this._destroyed=new l.x,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,Le&&(Le.appearance&&(this.appearance=Le.appearance),this._hideRequiredMarker=!!Le?.hideRequiredMarker,Le.color&&(this.color=Le.color))}ngAfterViewInit(){this._updateFocusState(),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const Ee=this._control;Ee.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${Ee.controlType}`),Ee.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),Ee.ngControl&&Ee.ngControl.valueChanges&&Ee.ngControl.valueChanges.pipe((0,m.R)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(Ee=>!Ee._isText),this._hasTextPrefix=!!this._prefixChildren.find(Ee=>Ee._isText),this._hasIconSuffix=!!this._suffixChildren.find(Ee=>!Ee._isText),this._hasTextSuffix=!!this._suffixChildren.find(Ee=>Ee._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,w.T)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,m.R)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,m.R)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(Ee){const nt=this._control?this._control.ngControl:null;return nt&&nt[Ee]}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let Ee=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&Ee.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const nt=this._hintChildren?this._hintChildren.find(Xe=>"start"===Xe.align):null,Ge=this._hintChildren?this._hintChildren.find(Xe=>"end"===Xe.align):null;nt?Ee.push(nt.id):this._hintLabel&&Ee.push(this._hintLabelId),Ge&&Ee.push(Ge.id)}else this._errorChildren&&Ee.push(...this._errorChildren.map(nt=>nt.id));this._control.setDescribedByIds(Ee)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const Ee=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(Ee.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const nt=this._iconPrefixContainer?.nativeElement,Ge=this._textPrefixContainer?.nativeElement,Xe=nt?.getBoundingClientRect().width??0,gt=Ge?.getBoundingClientRect().width??0;Ee.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${Xe+gt}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const Ee=this._elementRef.nativeElement;if(Ee.getRootNode){const nt=Ee.getRootNode();return nt&&nt!==Ee}return document.documentElement.contains(Ee)}static#e=this.\u0275fac=function(nt){return new(nt||yt)(e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(e.R0b),e.Y36(t.Is),e.Y36(y.t4),e.Y36(te,8),e.Y36(e.QbO,8),e.Y36(K.K0))};static#t=this.\u0275cmp=e.Xpm({type:yt,selectors:[["mat-form-field"]],contentQueries:function(nt,Ge,Xe){if(1&nt&&(e.Suo(Xe,fe,5),e.Suo(Xe,fe,7),e.Suo(Xe,Ie,5),e.Suo(Xe,re,5),e.Suo(Xe,ce,5),e.Suo(Xe,xe,5),e.Suo(Xe,qe,5)),2&nt){let gt;e.iGM(gt=e.CRH())&&(Ge._labelChildNonStatic=gt.first),e.iGM(gt=e.CRH())&&(Ge._labelChildStatic=gt.first),e.iGM(gt=e.CRH())&&(Ge._formFieldControl=gt.first),e.iGM(gt=e.CRH())&&(Ge._prefixChildren=gt),e.iGM(gt=e.CRH())&&(Ge._suffixChildren=gt),e.iGM(gt=e.CRH())&&(Ge._errorChildren=gt),e.iGM(gt=e.CRH())&&(Ge._hintChildren=gt)}},viewQuery:function(nt,Ge){if(1&nt&&(e.Gf(Me,5),e.Gf(J,5),e.Gf(he,5),e.Gf(Ct,5),e.Gf(rt,5),e.Gf(Be,5)),2&nt){let Xe;e.iGM(Xe=e.CRH())&&(Ge._textField=Xe.first),e.iGM(Xe=e.CRH())&&(Ge._iconPrefixContainer=Xe.first),e.iGM(Xe=e.CRH())&&(Ge._textPrefixContainer=Xe.first),e.iGM(Xe=e.CRH())&&(Ge._floatingLabel=Xe.first),e.iGM(Xe=e.CRH())&&(Ge._notchedOutline=Xe.first),e.iGM(Xe=e.CRH())&&(Ge._lineRipple=Xe.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(nt,Ge){2&nt&&e.ekj("mat-mdc-form-field-label-always-float",Ge._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",Ge._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",Ge._hasIconSuffix)("mat-form-field-invalid",Ge._control.errorState)("mat-form-field-disabled",Ge._control.disabled)("mat-form-field-autofilled",Ge._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===Ge._animationMode)("mat-form-field-appearance-fill","fill"==Ge.appearance)("mat-form-field-appearance-outline","outline"==Ge.appearance)("mat-form-field-hide-placeholder",Ge._hasFloatingLabel()&&!Ge._shouldLabelFloat())("mat-focused",Ge._control.focused)("mat-primary","accent"!==Ge.color&&"warn"!==Ge.color)("mat-accent","accent"===Ge.color)("mat-warn","warn"===Ge.color)("ng-untouched",Ge._shouldForward("untouched"))("ng-touched",Ge._shouldForward("touched"))("ng-pristine",Ge._shouldForward("pristine"))("ng-dirty",Ge._shouldForward("dirty"))("ng-valid",Ge._shouldForward("valid"))("ng-invalid",Ge._shouldForward("invalid"))("ng-pending",Ge._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e._Bn([{provide:dt,useExisting:yt},{provide:We,useExisting:yt}])],ngContentSelectors:ye,decls:18,vars:21,consts:[["labelTemplate",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],["textField",""],["class","mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],["class","mat-mdc-form-field-icon-prefix"],["class","mat-mdc-form-field-text-prefix"],[1,"mat-mdc-form-field-infix"],[3,"ngTemplateOutlet"],["class","mat-mdc-form-field-text-suffix"],["class","mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],[1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true","class","mat-mdc-form-field-required-marker mdc-floating-label--required"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[1,"mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-icon-prefix"],["iconPrefixContainer",""],[1,"mat-mdc-form-field-text-prefix"],["textPrefixContainer",""],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],[3,"id"],[1,"mat-mdc-form-field-hint-spacer"]],template:function(nt,Ge){if(1&nt&&(e.F$t(Je),e.YNc(0,s,1,1,"ng-template",null,0,e.W1O),e.TgZ(2,"div",1,2),e.NdJ("click",function(gt){return Ge._control.onContainerClick(gt)}),e.YNc(4,f,1,0,"div",3),e.TgZ(5,"div",4),e.YNc(6,D,2,2,"div",5)(7,O,3,0,"div",6)(8,v,3,0,"div",7),e.TgZ(9,"div",8),e.YNc(10,g,1,1,null,9),e.Hsn(11),e.qZA(),e.YNc(12,H,2,0,"div",10)(13,R,2,0,"div",11),e.qZA(),e.YNc(14,ee,1,0,"div",12),e.qZA(),e.TgZ(15,"div",13),e.YNc(16,De,2,1)(17,Ke,5,2),e.qZA()),2&nt){let Xe;e.xp6(2),e.ekj("mdc-text-field--filled",!Ge._hasOutline())("mdc-text-field--outlined",Ge._hasOutline())("mdc-text-field--no-label",!Ge._hasFloatingLabel())("mdc-text-field--disabled",Ge._control.disabled)("mdc-text-field--invalid",Ge._control.errorState),e.xp6(2),e.um2(4,Ge._hasOutline()||Ge._control.disabled?-1:4),e.xp6(2),e.um2(6,Ge._hasOutline()?6:-1),e.xp6(1),e.um2(7,Ge._hasIconPrefix?7:-1),e.xp6(1),e.um2(8,Ge._hasTextPrefix?8:-1),e.xp6(2),e.um2(10,!Ge._hasOutline()||Ge._forceDisplayInfixLabel()?10:-1),e.xp6(2),e.um2(12,Ge._hasTextSuffix?12:-1),e.xp6(1),e.um2(13,Ge._hasIconSuffix?13:-1),e.xp6(1),e.um2(14,Ge._hasOutline()?-1:14),e.xp6(1),e.ekj("mat-mdc-form-field-subscript-dynamic-size","dynamic"===Ge.subscriptSizing),e.xp6(1),e.um2(16,"error"===(Xe=Ge._getDisplayedMessages())?16:"hint"===Xe?17:-1)}},dependencies:[K.tP,qe,Ct,rt,Be],styles:['.mdc-text-field{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}}.mdc-text-field__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 96px/0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after,.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)[dir=rtl]::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;pointer-events:none}.mdc-notched-outline__trailing{flex-grow:1}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{border-top:1px solid;border-bottom:1px solid}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{max-width:calc(100% - 12px*2)}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::after{border-bottom-width:2px}.mdc-text-field--filled{border-top-left-radius:var(--mdc-filled-text-field-container-shape);border-top-right-radius:var(--mdc-filled-text-field-container-shape);border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-caret-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-error-caret-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-filled-text-field-input-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-filled-text-field-disabled-input-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-focus-label-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-disabled-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-focus-label-text-color)}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mdc-filled-text-field-label-text-font);font-size:var(--mdc-filled-text-field-label-text-size);font-weight:var(--mdc-filled-text-field-label-text-weight);letter-spacing:var(--mdc-filled-text-field-label-text-tracking)}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mdc-filled-text-field-container-color)}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mdc-filled-text-field-disabled-container-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-hover-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-focus-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-disabled-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-hover-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-error-focus-active-indicator-color)}.mdc-text-field--filled .mdc-line-ripple::before{border-bottom-width:var(--mdc-filled-text-field-active-indicator-height)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mdc-filled-text-field-focus-active-indicator-height)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-caret-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-error-caret-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-outlined-text-field-input-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-outlined-text-field-disabled-input-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-focus-label-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-disabled-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-focus-label-text-color)}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mdc-outlined-text-field-label-text-font);font-size:var(--mdc-outlined-text-field-label-text-size);font-weight:var(--mdc-outlined-text-field-label-text-weight);letter-spacing:var(--mdc-outlined-text-field-label-text-tracking)}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-outlined-text-field-container-shape))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-hover-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-focus-outline-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-disabled-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-hover-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-focus-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-outline-width)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-focus-outline-width)}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-text-field-wrapper::before{content:none}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block;color:var(--mat-form-field-error-text-color)}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-subscript-text-font);line-height:var(--mat-form-field-subscript-text-line-height);font-size:var(--mat-form-field-subscript-text-size);letter-spacing:var(--mat-form-field-subscript-text-tracking);font-weight:var(--mat-form-field-subscript-text-weight)}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none;background-color:var(--mat-form-field-state-layer-color)}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-hover-state-layer-opacity)}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-focus-state-layer-opacity)}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option{color:var(--mat-form-field-select-option-text-color)}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled{color:var(--mat-form-field-select-disabled-option-text-color)}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none;color:var(--mat-form-field-enabled-select-arrow-color)}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select.mat-focused .mat-mdc-form-field-infix::after{color:var(--mat-form-field-focus-select-arrow-color)}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:var(--mat-form-field-disabled-select-arrow-color)}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-active .mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font);line-height:var(--mat-form-field-container-text-line-height);font-size:var(--mat-form-field-container-text-size);letter-spacing:var(--mat-form-field-container-text-tracking);font-weight:var(--mat-form-field-container-text-weight)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size)*var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:12px;box-sizing:content-box}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}'],encapsulation:2,data:{animation:[$e.transitionMessages]},changeDetection:0})}return yt})(),Ot=(()=>{class yt{static#e=this.\u0275fac=function(nt){return new(nt||yt)};static#t=this.\u0275mod=e.oAB({type:yt});static#i=this.\u0275inj=e.cJS({imports:[ie.BQ,K.ez,X.Q8,ie.BQ]})}return yt})()},3176:(Fe,q,p)=>{"use strict";p.d(q,{DX:()=>I,Il:()=>J,N6:()=>he});var e=p(9212),t=p(3680),y=p(2495),A=p(9388);const l=["*"];class d{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const s=Math.max(...this.tracker);return s>1?this.rowCount+s-1:this.rowCount}update(s,f){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(s),this.tracker.fill(0,0,this.tracker.length),this.positions=f.map(h=>this._trackTile(h))}_trackTile(s){const f=this._findMatchingGap(s.colspan);return this._markTilePosition(f,s),this.columnIndex=f+s.colspan,new E(this.rowIndex,f)}_findMatchingGap(s){let f=-1,h=-1;do{this.columnIndex+s>this.tracker.length?(this._nextRow(),f=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(f)):(f=this.tracker.indexOf(0,this.columnIndex),-1!=f?(h=this._findGapEndIndex(f),this.columnIndex=f+1):(this._nextRow(),f=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(f)))}while(h-f{class n{constructor(f,h){this._element=f,this._gridList=h,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(f){this._rowspan=Math.round((0,y.su)(f))}get colspan(){return this._colspan}set colspan(f){this._colspan=Math.round((0,y.su)(f))}_setStyle(f,h){this._element.nativeElement.style[f]=h}static#e=this.\u0275fac=function(h){return new(h||n)(e.Y36(e.SBq),e.Y36(M,8))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(h,C){2&h&&e.uIk("rowspan",C.rowspan)("colspan",C.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:l,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(h,C){1&h&&(e.F$t(),e.TgZ(0,"div",0),e.Hsn(1),e.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-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.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}"],encapsulation:2,changeDetection:0})}return n})();const j=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class K{constructor(){this._rows=0,this._rowspan=0}init(s,f,h,C){this._gutterSize=ae(s),this._rows=f.rowCount,this._rowspan=f.rowspan,this._cols=h,this._direction=C}getBaseTileSize(s,f){return`(${s}% - (${this._gutterSize} * ${f}))`}getTilePosition(s,f){return 0===f?"0":ue(`(${s} + ${this._gutterSize}) * ${f}`)}getTileSize(s,f){return`(${s} * ${f}) + (${f-1} * ${this._gutterSize})`}setStyle(s,f,h){let C=100/this._cols,D=(this._cols-1)/this._cols;this.setColStyles(s,h,C,D),this.setRowStyles(s,f,C,D)}setColStyles(s,f,h,C){let D=this.getBaseTileSize(h,C);s._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(D,f)),s._setStyle("width",ue(this.getTileSize(D,s.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(s){return`${this._rowspan} * ${this.getTileSize(s,1)}`}getComputedHeight(){return null}}class X extends K{constructor(s){super(),this.fixedRowHeight=s}init(s,f,h,C){super.init(s,f,h,C),this.fixedRowHeight=ae(this.fixedRowHeight),j.test(this.fixedRowHeight)}setRowStyles(s,f){s._setStyle("top",this.getTilePosition(this.fixedRowHeight,f)),s._setStyle("height",ue(this.getTileSize(this.fixedRowHeight,s.rowspan)))}getComputedHeight(){return["height",ue(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(s){s._setListStyle(["height",null]),s._tiles&&s._tiles.forEach(f=>{f._setStyle("top",null),f._setStyle("height",null)})}}class ie extends K{constructor(s){super(),this._parseRatio(s)}setRowStyles(s,f,h,C){this.baseTileHeight=this.getBaseTileSize(h/this.rowHeightRatio,C),s._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,f)),s._setStyle("paddingTop",ue(this.getTileSize(this.baseTileHeight,s.rowspan)))}getComputedHeight(){return["paddingBottom",ue(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(s){s._setListStyle(["paddingBottom",null]),s._tiles.forEach(f=>{f._setStyle("marginTop",null),f._setStyle("paddingTop",null)})}_parseRatio(s){const f=s.split(":");this.rowHeightRatio=parseFloat(f[0])/parseFloat(f[1])}}class se extends K{setRowStyles(s,f){let D=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);s._setStyle("top",this.getTilePosition(D,f)),s._setStyle("height",ue(this.getTileSize(D,s.rowspan)))}reset(s){s._tiles&&s._tiles.forEach(f=>{f._setStyle("top",null),f._setStyle("height",null)})}}function ue(n){return`calc(${n})`}function ae(n){return n.match(/([A-Za-z%]+)$/)?n:`${n}px`}let J=(()=>{class n{constructor(f,h){this._element=f,this._dir=h,this._gutter="1px"}get cols(){return this._cols}set cols(f){this._cols=Math.max(1,Math.round((0,y.su)(f)))}get gutterSize(){return this._gutter}set gutterSize(f){this._gutter=`${f??""}`}get rowHeight(){return this._rowHeight}set rowHeight(f){const h=`${f??""}`;h!==this._rowHeight&&(this._rowHeight=h,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(f){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===f?new se:f&&f.indexOf(":")>-1?new ie(f):new X(f)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new d);const f=this._tileCoordinator,h=this._tiles.filter(D=>!D._gridList||D._gridList===this),C=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,h),this._tileStyler.init(this.gutterSize,f,this.cols,C),h.forEach((D,O)=>{const v=f.positions[O];this._tileStyler.setStyle(D,v.row,v.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(f){f&&(this._element.nativeElement.style[f[0]]=f[1])}static#e=this.\u0275fac=function(h){return new(h||n)(e.Y36(e.SBq),e.Y36(A.Is,8))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["mat-grid-list"]],contentQueries:function(h,C,D){if(1&h&&e.Suo(D,I,5),2&h){let O;e.iGM(O=e.CRH())&&(C._tiles=O)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(h,C){2&h&&e.uIk("cols",C.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[e._Bn([{provide:M,useExisting:n}])],ngContentSelectors:l,decls:2,vars:0,template:function(h,C){1&h&&(e.F$t(),e.TgZ(0,"div"),e.Hsn(1),e.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-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.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}"],encapsulation:2,changeDetection:0})}return n})(),he=(()=>{class n{static#e=this.\u0275fac=function(h){return new(h||n)};static#t=this.\u0275mod=e.oAB({type:n});static#i=this.\u0275inj=e.cJS({imports:[t.uc,t.BQ,t.uc,t.BQ]})}return n})()},617:(Fe,q,p)=>{"use strict";p.d(q,{Hw:()=>R,Ps:()=>ee});var e=p(9212),t=p(3680),y=p(2495),A=p(6814),l=p(2096),w=p(8504),m=p(9315),P=p(7394),d=p(9397),E=p(7398),M=p(6306),I=p(4716),k=p(3020),z=p(8180),B=p(9862),W=p(6593);const j=["*"];let K;function ie(De){return function X(){if(void 0===K&&(K=null,typeof window<"u")){const De=window;void 0!==De.trustedTypes&&(K=De.trustedTypes.createPolicy("angular#components",{createHTML:ct=>ct}))}return K}()?.createHTML(De)||De}function se(De){return Error(`Unable to find icon with the name "${De}"`)}function ae(De){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${De}".`)}function Me(De){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${De}".`)}class J{constructor(ct,Ke,Je){this.url=ct,this.svgText=Ke,this.options=Je}}let he=(()=>{class De{constructor(Ke,Je,ye,fe){this._httpClient=Ke,this._sanitizer=Je,this._errorHandler=fe,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","mat-ligature-font"],this._document=ye}addSvgIcon(Ke,Je,ye){return this.addSvgIconInNamespace("",Ke,Je,ye)}addSvgIconLiteral(Ke,Je,ye){return this.addSvgIconLiteralInNamespace("",Ke,Je,ye)}addSvgIconInNamespace(Ke,Je,ye,fe){return this._addSvgIconConfig(Ke,Je,new J(ye,null,fe))}addSvgIconResolver(Ke){return this._resolvers.push(Ke),this}addSvgIconLiteralInNamespace(Ke,Je,ye,fe){const de=this._sanitizer.sanitize(e.q3G.HTML,ye);if(!de)throw Me(ye);const xe=ie(de);return this._addSvgIconConfig(Ke,Je,new J("",xe,fe))}addSvgIconSet(Ke,Je){return this.addSvgIconSetInNamespace("",Ke,Je)}addSvgIconSetLiteral(Ke,Je){return this.addSvgIconSetLiteralInNamespace("",Ke,Je)}addSvgIconSetInNamespace(Ke,Je,ye){return this._addSvgIconSetConfig(Ke,new J(Je,null,ye))}addSvgIconSetLiteralInNamespace(Ke,Je,ye){const fe=this._sanitizer.sanitize(e.q3G.HTML,Je);if(!fe)throw Me(Je);const de=ie(fe);return this._addSvgIconSetConfig(Ke,new J("",de,ye))}registerFontClassAlias(Ke,Je=Ke){return this._fontCssClassesByAlias.set(Ke,Je),this}classNameForFontAlias(Ke){return this._fontCssClassesByAlias.get(Ke)||Ke}setDefaultFontSetClass(...Ke){return this._defaultFontSetClass=Ke,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(Ke){const Je=this._sanitizer.sanitize(e.q3G.RESOURCE_URL,Ke);if(!Je)throw ae(Ke);const ye=this._cachedIconsByUrl.get(Je);return ye?(0,l.of)(s(ye)):this._loadSvgIconFromConfig(new J(Ke,null)).pipe((0,d.b)(fe=>this._cachedIconsByUrl.set(Je,fe)),(0,E.U)(fe=>s(fe)))}getNamedSvgIcon(Ke,Je=""){const ye=f(Je,Ke);let fe=this._svgIconConfigs.get(ye);if(fe)return this._getSvgFromConfig(fe);if(fe=this._getIconConfigFromResolvers(Je,Ke),fe)return this._svgIconConfigs.set(ye,fe),this._getSvgFromConfig(fe);const de=this._iconSetConfigs.get(Je);return de?this._getSvgFromIconSetConfigs(Ke,de):(0,w._)(se(ye))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(Ke){return Ke.svgText?(0,l.of)(s(this._svgElementFromConfig(Ke))):this._loadSvgIconFromConfig(Ke).pipe((0,E.U)(Je=>s(Je)))}_getSvgFromIconSetConfigs(Ke,Je){const ye=this._extractIconWithNameFromAnySet(Ke,Je);if(ye)return(0,l.of)(ye);const fe=Je.filter(de=>!de.svgText).map(de=>this._loadSvgIconSetFromConfig(de).pipe((0,M.K)(xe=>{const pe=`Loading icon set URL: ${this._sanitizer.sanitize(e.q3G.RESOURCE_URL,de.url)} failed: ${xe.message}`;return this._errorHandler.handleError(new Error(pe)),(0,l.of)(null)})));return(0,m.D)(fe).pipe((0,E.U)(()=>{const de=this._extractIconWithNameFromAnySet(Ke,Je);if(!de)throw se(Ke);return de}))}_extractIconWithNameFromAnySet(Ke,Je){for(let ye=Je.length-1;ye>=0;ye--){const fe=Je[ye];if(fe.svgText&&fe.svgText.toString().indexOf(Ke)>-1){const de=this._svgElementFromConfig(fe),xe=this._extractSvgIconFromSet(de,Ke,fe.options);if(xe)return xe}}return null}_loadSvgIconFromConfig(Ke){return this._fetchIcon(Ke).pipe((0,d.b)(Je=>Ke.svgText=Je),(0,E.U)(()=>this._svgElementFromConfig(Ke)))}_loadSvgIconSetFromConfig(Ke){return Ke.svgText?(0,l.of)(null):this._fetchIcon(Ke).pipe((0,d.b)(Je=>Ke.svgText=Je))}_extractSvgIconFromSet(Ke,Je,ye){const fe=Ke.querySelector(`[id="${Je}"]`);if(!fe)return null;const de=fe.cloneNode(!0);if(de.removeAttribute("id"),"svg"===de.nodeName.toLowerCase())return this._setSvgAttributes(de,ye);if("symbol"===de.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(de),ye);const xe=this._svgElementFromString(ie(""));return xe.appendChild(de),this._setSvgAttributes(xe,ye)}_svgElementFromString(Ke){const Je=this._document.createElement("DIV");Je.innerHTML=Ke;const ye=Je.querySelector("svg");if(!ye)throw Error(" tag not found");return ye}_toSvgElement(Ke){const Je=this._svgElementFromString(ie("")),ye=Ke.attributes;for(let fe=0;feie(pe)),(0,I.x)(()=>this._inProgressUrlFetches.delete(de)),(0,k.B)());return this._inProgressUrlFetches.set(de,le),le}_addSvgIconConfig(Ke,Je,ye){return this._svgIconConfigs.set(f(Ke,Je),ye),this}_addSvgIconSetConfig(Ke,Je){const ye=this._iconSetConfigs.get(Ke);return ye?ye.push(Je):this._iconSetConfigs.set(Ke,[Je]),this}_svgElementFromConfig(Ke){if(!Ke.svgElement){const Je=this._svgElementFromString(Ke.svgText);this._setSvgAttributes(Je,Ke.options),Ke.svgElement=Je}return Ke.svgElement}_getIconConfigFromResolvers(Ke,Je){for(let ye=0;yect?ct.pathname+ct.search:""}}}),r=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],g=r.map(De=>`[${De}]`).join(", "),H=/^url\(['"]?#(.*?)['"]?\)$/;let R=(()=>{class De extends C{get inline(){return this._inline}set inline(Ke){this._inline=(0,y.Ig)(Ke)}get svgIcon(){return this._svgIcon}set svgIcon(Ke){Ke!==this._svgIcon&&(Ke?this._updateSvgIcon(Ke):this._svgIcon&&this._clearSvgElement(),this._svgIcon=Ke)}get fontSet(){return this._fontSet}set fontSet(Ke){const Je=this._cleanupFontValue(Ke);Je!==this._fontSet&&(this._fontSet=Je,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(Ke){const Je=this._cleanupFontValue(Ke);Je!==this._fontIcon&&(this._fontIcon=Je,this._updateFontIconClasses())}constructor(Ke,Je,ye,fe,de,xe){super(Ke),this._iconRegistry=Je,this._location=fe,this._errorHandler=de,this._inline=!1,this._previousFontSetClass=[],this._currentIconFetch=P.w0.EMPTY,xe&&(xe.color&&(this.color=this.defaultColor=xe.color),xe.fontSet&&(this.fontSet=xe.fontSet)),ye||Ke.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(Ke){if(!Ke)return["",""];const Je=Ke.split(":");switch(Je.length){case 1:return["",Je[0]];case 2:return Je;default:throw Error(`Invalid icon name: "${Ke}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const Ke=this._elementsWithExternalReferences;if(Ke&&Ke.size){const Je=this._location.getPathname();Je!==this._previousPath&&(this._previousPath=Je,this._prependPathToReferences(Je))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(Ke){this._clearSvgElement();const Je=this._location.getPathname();this._previousPath=Je,this._cacheChildrenWithExternalReferences(Ke),this._prependPathToReferences(Je),this._elementRef.nativeElement.appendChild(Ke)}_clearSvgElement(){const Ke=this._elementRef.nativeElement;let Je=Ke.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();Je--;){const ye=Ke.childNodes[Je];(1!==ye.nodeType||"svg"===ye.nodeName.toLowerCase())&&ye.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const Ke=this._elementRef.nativeElement,Je=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(ye=>ye.length>0);this._previousFontSetClass.forEach(ye=>Ke.classList.remove(ye)),Je.forEach(ye=>Ke.classList.add(ye)),this._previousFontSetClass=Je,this.fontIcon!==this._previousFontIconClass&&!Je.includes("mat-ligature-font")&&(this._previousFontIconClass&&Ke.classList.remove(this._previousFontIconClass),this.fontIcon&&Ke.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(Ke){return"string"==typeof Ke?Ke.trim().split(" ")[0]:Ke}_prependPathToReferences(Ke){const Je=this._elementsWithExternalReferences;Je&&Je.forEach((ye,fe)=>{ye.forEach(de=>{fe.setAttribute(de.name,`url('${Ke}#${de.value}')`)})})}_cacheChildrenWithExternalReferences(Ke){const Je=Ke.querySelectorAll(g),ye=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let fe=0;fe{const xe=Je[fe],le=xe.getAttribute(de),pe=le?le.match(H):null;if(pe){let qe=ye.get(xe);qe||(qe=[],ye.set(xe,qe)),qe.push({name:de,value:pe[1]})}})}_updateSvgIcon(Ke){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),Ke){const[Je,ye]=this._splitIconName(Ke);Je&&(this._svgNamespace=Je),ye&&(this._svgName=ye),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(ye,Je).pipe((0,z.q)(1)).subscribe(fe=>this._setSvgElement(fe),fe=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${Je}:${ye}! ${fe.message}`))})}}static#e=this.\u0275fac=function(Je){return new(Je||De)(e.Y36(e.SBq),e.Y36(he),e.$8M("aria-hidden"),e.Y36(O),e.Y36(e.qLn),e.Y36(D,8))};static#t=this.\u0275cmp=e.Xpm({type:De,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:8,hostBindings:function(Je,ye){2&Je&&(e.uIk("data-mat-icon-type",ye._usingFontIcon()?"font":"svg")("data-mat-icon-name",ye._svgName||ye.fontIcon)("data-mat-icon-namespace",ye._svgNamespace||ye.fontSet)("fontIcon",ye._usingFontIcon()?ye.fontIcon:null),e.ekj("mat-icon-inline",ye.inline)("mat-icon-no-color","primary"!==ye.color&&"accent"!==ye.color&&"warn"!==ye.color))},inputs:{color:"color",inline:"inline",svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],features:[e.qOj],ngContentSelectors:j,decls:1,vars:0,template:function(Je,ye){1&Je&&(e.F$t(),e.Hsn(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[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}"],encapsulation:2,changeDetection:0})}return De})(),ee=(()=>{class De{static#e=this.\u0275fac=function(Je){return new(Je||De)};static#t=this.\u0275mod=e.oAB({type:De});static#i=this.\u0275inj=e.cJS({imports:[t.BQ,t.BQ]})}return De})()},2032:(Fe,q,p)=>{"use strict";p.d(q,{Jk:()=>B,Nt:()=>X,c:()=>ie});var e=p(2495),t=p(2831),y=p(9212),A=p(6232),l=p(8645);const w=(0,t.i$)({passive:!0});let m=(()=>{class se{constructor(ae,Me){this._platform=ae,this._ngZone=Me,this._monitoredElements=new Map}monitor(ae){if(!this._platform.isBrowser)return A.E;const Me=(0,e.fI)(ae),J=this._monitoredElements.get(Me);if(J)return J.subject;const he=new l.x,S="cdk-text-field-autofilled",n=s=>{"cdk-text-field-autofill-start"!==s.animationName||Me.classList.contains(S)?"cdk-text-field-autofill-end"===s.animationName&&Me.classList.contains(S)&&(Me.classList.remove(S),this._ngZone.run(()=>he.next({target:s.target,isAutofilled:!1}))):(Me.classList.add(S),this._ngZone.run(()=>he.next({target:s.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{Me.addEventListener("animationstart",n,w),Me.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(Me,{subject:he,unlisten:()=>{Me.removeEventListener("animationstart",n,w)}}),he}stopMonitoring(ae){const Me=(0,e.fI)(ae),J=this._monitoredElements.get(Me);J&&(J.unlisten(),J.subject.complete(),Me.classList.remove("cdk-text-field-autofill-monitored"),Me.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(Me))}ngOnDestroy(){this._monitoredElements.forEach((ae,Me)=>this.stopMonitoring(Me))}static#e=this.\u0275fac=function(Me){return new(Me||se)(y.LFG(t.t4),y.LFG(y.R0b))};static#t=this.\u0275prov=y.Yz7({token:se,factory:se.\u0275fac,providedIn:"root"})}return se})(),E=(()=>{class se{static#e=this.\u0275fac=function(Me){return new(Me||se)};static#t=this.\u0275mod=y.oAB({type:se});static#i=this.\u0275inj=y.cJS({})}return se})();var M=p(6223),I=p(3680),k=p(5683);const B=new y.OlP("MAT_INPUT_VALUE_ACCESSOR"),W=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let j=0;const K=(0,I.FD)(class{constructor(se,ue,ae,Me){this._defaultErrorStateMatcher=se,this._parentForm=ue,this._parentFormGroup=ae,this.ngControl=Me,this.stateChanges=new l.x}});let X=(()=>{class se extends K{get disabled(){return this._disabled}set disabled(ae){this._disabled=(0,e.Ig)(ae),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(ae){this._id=ae||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(M.kI.required)??!1}set required(ae){this._required=(0,e.Ig)(ae)}get type(){return this._type}set type(ae){this._type=ae||"text",this._validateType(),!this._isTextarea&&(0,t.qK)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get value(){return this._inputValueAccessor.value}set value(ae){ae!==this.value&&(this._inputValueAccessor.value=ae,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(ae){this._readonly=(0,e.Ig)(ae)}constructor(ae,Me,J,he,S,n,s,f,h,C){super(n,he,S,J),this._elementRef=ae,this._platform=Me,this._autofillMonitor=f,this._formField=C,this._uid="mat-input-"+j++,this.focused=!1,this.stateChanges=new l.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,t.qK)().has(v)),this._iOSKeyupListener=v=>{const r=v.target;!r.value&&0===r.selectionStart&&0===r.selectionEnd&&(r.setSelectionRange(1,1),r.setSelectionRange(0,0))};const D=this._elementRef.nativeElement,O=D.nodeName.toLowerCase();this._inputValueAccessor=s||D,this._previousNativeValue=this.value,this.id=this.id,Me.IOS&&h.runOutsideAngular(()=>{ae.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===O,this._isTextarea="textarea"===O,this._isInFormField=!!C,this._isNativeSelect&&(this.controlType=D.multiple?"mat-native-select-multiple":"mat-native-select")}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(ae=>{this.autofilled=ae.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(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(ae){this._elementRef.nativeElement.focus(ae)}_focusChanged(ae){ae!==this.focused&&(this.focused=ae,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const ae=this._elementRef.nativeElement.value;this._previousNativeValue!==ae&&(this._previousNativeValue=ae,this.stateChanges.next())}_dirtyCheckPlaceholder(){const ae=this._getPlaceholder();if(ae!==this._previousPlaceholder){const Me=this._elementRef.nativeElement;this._previousPlaceholder=ae,ae?Me.setAttribute("placeholder",ae):Me.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){W.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let ae=this._elementRef.nativeElement.validity;return ae&&ae.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const ae=this._elementRef.nativeElement,Me=ae.options[0];return this.focused||ae.multiple||!this.empty||!!(ae.selectedIndex>-1&&Me&&Me.label)}return this.focused||!this.empty}setDescribedByIds(ae){ae.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ae.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const ae=this._elementRef.nativeElement;return this._isNativeSelect&&(ae.multiple||ae.size>1)}static#e=this.\u0275fac=function(Me){return new(Me||se)(y.Y36(y.SBq),y.Y36(t.t4),y.Y36(M.a5,10),y.Y36(M.F,8),y.Y36(M.sg,8),y.Y36(I.rD),y.Y36(B,10),y.Y36(m),y.Y36(y.R0b),y.Y36(k.G_,8))};static#t=this.\u0275dir=y.lG2({type:se,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(Me,J){1&Me&&y.NdJ("focus",function(){return J._focusChanged(!0)})("blur",function(){return J._focusChanged(!1)})("input",function(){return J._onInput()}),2&Me&&(y.Ikx("id",J.id)("disabled",J.disabled)("required",J.required),y.uIk("name",J.name||null)("readonly",J.readonly&&!J._isNativeSelect||null)("aria-invalid",J.empty&&J.required?null:J.errorState)("aria-required",J.required)("id",J.id),y.ekj("mat-input-server",J._isServer)("mat-mdc-form-field-textarea-control",J._isInFormField&&J._isTextarea)("mat-mdc-form-field-input-control",J._isInFormField)("mdc-text-field__input",J._isInFormField)("mat-mdc-native-select-inline",J._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:[y._Bn([{provide:k.Eo,useExisting:se}]),y.qOj,y.TTD]})}return se})(),ie=(()=>{class se{static#e=this.\u0275fac=function(Me){return new(Me||se)};static#t=this.\u0275mod=y.oAB({type:se});static#i=this.\u0275inj=y.cJS({imports:[I.BQ,k.lN,k.lN,E,I.BQ]})}return se})()},9038:(Fe,q,p)=>{"use strict";p.d(q,{Tg:()=>ve,i$:()=>re,ie:()=>rt});var e=p(9212),t=p(2495),y=p(2831),A=p(3680),l=p(7394),w=p(3019),P=(p(8645),p(7131)),d=p(6814),E=p(6385);p(4300),p(8337),p(6028),p(6223),p(9773);const W=["*"],K=["unscopedContent"],X=["text"],ie=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],se=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],R=new e.OlP("ListOption");let ee=(()=>{class $e{constructor(lt){this._elementRef=lt}static#e=this.\u0275fac=function(Qe){return new(Qe||$e)(e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:$e,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"]})}return $e})(),De=(()=>{class $e{constructor(lt){this._elementRef=lt}static#e=this.\u0275fac=function(Qe){return new(Qe||$e)(e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:$e,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"]})}return $e})(),ct=(()=>{class $e{static#e=this.\u0275fac=function(Qe){return new(Qe||$e)};static#t=this.\u0275dir=e.lG2({type:$e,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"]})}return $e})(),Ke=(()=>{class $e{constructor(lt){this._listOption=lt}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static#e=this.\u0275fac=function(Qe){return new(Qe||$e)(e.Y36(R,8))};static#t=this.\u0275dir=e.lG2({type:$e,hostVars:4,hostBindings:function(Qe,St){2&Qe&&e.ekj("mdc-list-item__start",St._isAlignedAtStart())("mdc-list-item__end",!St._isAlignedAtStart())}})}return $e})(),Je=(()=>{class $e extends Ke{static#e=this.\u0275fac=(()=>{let lt;return function(St){return(lt||(lt=e.n5z($e)))(St||$e)}})();static#t=this.\u0275dir=e.lG2({type:$e,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],features:[e.qOj]})}return $e})(),ye=(()=>{class $e extends Ke{static#e=this.\u0275fac=(()=>{let lt;return function(St){return(lt||(lt=e.n5z($e)))(St||$e)}})();static#t=this.\u0275dir=e.lG2({type:$e,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],features:[e.qOj]})}return $e})();const fe=new e.OlP("MAT_LIST_CONFIG");let de=(()=>{class $e{constructor(){this._isNonInteractive=!0,this._disableRipple=!1,this._disabled=!1,this._defaultOptions=(0,e.f3M)(fe,{optional:!0})}get disableRipple(){return this._disableRipple}set disableRipple(lt){this._disableRipple=(0,t.Ig)(lt)}get disabled(){return this._disabled}set disabled(lt){this._disabled=(0,t.Ig)(lt)}static#e=this.\u0275fac=function(Qe){return new(Qe||$e)};static#t=this.\u0275dir=e.lG2({type:$e,hostVars:1,hostBindings:function(Qe,St){2&Qe&&e.uIk("aria-disabled",St.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"}})}return $e})(),xe=(()=>{class $e{set lines(lt){this._explicitLines=(0,t.su)(lt,null),this._updateItemLines(!1)}get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(lt){this._disableRipple=(0,t.Ig)(lt)}get disabled(){return this._disabled||!!this._listBase?.disabled}set disabled(lt){this._disabled=(0,t.Ig)(lt)}get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(lt,Qe,St,dt,te,Ue){this._elementRef=lt,this._ngZone=Qe,this._listBase=St,this._platform=dt,this._explicitLines=null,this._disableRipple=!1,this._disabled=!1,this._subscriptions=new l.w0,this._rippleRenderer=null,this._hasUnscopedTextContent=!1,this.rippleConfig=te||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._noopAnimations="NoopAnimations"===Ue,St&&!St._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new A.IR(this,this._ngZone,this._hostElement,this._platform),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,w.T)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(lt){if(!this._lines||!this._titles||!this._unscopedContent)return;lt&&this._checkDomForUnscopedTextContent();const Qe=this._explicitLines??this._inferLinesFromContent(),St=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",Qe<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",Qe<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===Qe),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===Qe),this._hasUnscopedTextContent){const dt=0===this._titles.length&&1===Qe;St.classList.toggle("mdc-list-item__primary-text",dt),St.classList.toggle("mdc-list-item__secondary-text",!dt)}else St.classList.remove("mdc-list-item__primary-text"),St.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let lt=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(lt+=1),lt}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(lt=>lt.nodeType!==lt.COMMENT_NODE).some(lt=>!(!lt.textContent||!lt.textContent.trim()))}static#e=this.\u0275fac=function(Qe){return new(Qe||$e)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(de,8),e.Y36(y.t4),e.Y36(A.Y2,8),e.Y36(e.QbO,8))};static#t=this.\u0275dir=e.lG2({type:$e,contentQueries:function(Qe,St,dt){if(1&Qe&&(e.Suo(dt,Je,4),e.Suo(dt,ye,4)),2&Qe){let te;e.iGM(te=e.CRH())&&(St._avatars=te),e.iGM(te=e.CRH())&&(St._icons=te)}},hostVars:4,hostBindings:function(Qe,St){2&Qe&&(e.uIk("aria-disabled",St.disabled)("disabled",St._isButtonElement&&St.disabled||null),e.ekj("mdc-list-item--disabled",St.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"}})}return $e})(),re=(()=>{class $e extends de{static#e=this.\u0275fac=(()=>{let lt;return function(St){return(lt||(lt=e.n5z($e)))(St||$e)}})();static#t=this.\u0275cmp=e.Xpm({type:$e,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],features:[e._Bn([{provide:de,useExisting:$e}]),e.qOj],ngContentSelectors:W,decls:1,vars:0,template:function(Qe,St){1&Qe&&(e.F$t(),e.Hsn(0))},styles:['@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-list-divider::after{content:"";display:block;border-bottom-width:1px;border-bottom-style:solid}}.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item__wrapper{display:block}.mdc-list-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer}.mdc-list-item:focus{outline:none}.mdc-list-item.mdc-list-item--with-one-line{height:48px}.mdc-list-item.mdc-list-item--with-two-lines{height:64px}.mdc-list-item.mdc-list-item--with-three-lines{height:88px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--disabled,.mdc-list-item.mdc-list-item--non-interactive{cursor:auto}.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px double rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected:focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected:focus::before{border-color:CanvasText}}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__content[for]{pointer-events:none}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;line-height:normal}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item__overline-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:24px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start,.mdc-list-item--with-leading-avatar .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-avatar .mdc-list-item__start{border-radius:50%}.mdc-list-item--with-leading-icon.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-leading-icon .mdc-list-item__start[dir=rtl]{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-thumbnail.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-thumbnail.mdc-list-item,.mdc-list-item--with-leading-thumbnail.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-thumbnail .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-thumbnail .mdc-list-item__start,.mdc-list-item--with-leading-thumbnail .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-image.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-image.mdc-list-item,.mdc-list-item--with-leading-image.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-image .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-image .mdc-list-item__start,.mdc-list-item--with-leading-image .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-video.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-video.mdc-list-item,.mdc-list-item--with-leading-video.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-video .mdc-list-item__start{margin-left:0;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-video .mdc-list-item__start,.mdc-list-item--with-leading-video .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-checkbox.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-radio.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-radio.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-radio .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-radio .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-switch.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-switch.mdc-list-item,.mdc-list-item--with-leading-switch.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-switch .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-switch .mdc-list-item__start,.mdc-list-item--with-leading-switch .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item,.mdc-list-item--with-trailing-icon.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-icon .mdc-list-item__end,.mdc-list-item--with-trailing-icon .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item,.mdc-list-item--with-trailing-meta.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-trailing-meta .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);line-height:var(--mdc-typography-caption-line-height);font-weight:var(--mdc-typography-caption-font-weight);letter-spacing:var(--mdc-typography-caption-letter-spacing);text-decoration:var(--mdc-typography-caption-text-decoration);text-transform:var(--mdc-typography-caption-text-transform)}.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-radio.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-radio .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-radio .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-switch.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-switch.mdc-list-item,.mdc-list-item--with-trailing-switch.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-switch .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-switch .mdc-list-item__end,.mdc-list-item--with-trailing-switch .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-switch.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item{padding-left:16px;padding-right:16px}[dir=rtl] .mdc-list-item,.mdc-list-item[dir=rtl]{padding-left:16px;padding-right:16px}.mdc-list-group .mdc-deprecated-list{padding:0}.mdc-list-group__subheader{margin:calc((3rem - 1.5rem)/2) 16px}.mdc-list-divider{padding:0;background-clip:content-box}.mdc-list-divider.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset{padding-left:16px;padding-right:auto}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset,.mdc-list-divider.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:16px}.mdc-list-divider.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset{padding-left:auto;padding-right:16px}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset,.mdc-list-divider.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset[dir=rtl]{padding-left:16px;padding-right:auto}.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset{padding-left:0px;padding-right:auto}[dir=rtl] .mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:0px}[dir=rtl] .mdc-list-divider,.mdc-list-divider[dir=rtl]{padding:0}.mdc-list-item{background-color:var(--mdc-list-list-item-container-color)}.mdc-list-item.mdc-list-item--selected{background-color:var(--mdc-list-list-item-selected-container-color)}.mdc-list-item--with-one-line{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-avatar,.mdc-list-item--with-one-line.mdc-list-item--with-leading-icon,.mdc-list-item--with-one-line.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-one-line.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-one-line.mdc-list-item--with-leading-radio,.mdc-list-item--with-one-line.mdc-list-item--with-leading-switch{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-image,.mdc-list-item--with-one-line.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines.mdc-list-item--with-leading-avatar,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-icon,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-radio,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-switch,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-image,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-three-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mdc-list-list-item-one-line-container-height)}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mdc-list-list-item-two-line-container-height)}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mdc-list-list-item-three-line-container-height)}.mdc-list-item__primary-text{color:var(--mdc-list-list-item-label-text-color)}.mdc-list-item__primary-text{font-family:var(--mdc-list-list-item-label-text-font);line-height:var(--mdc-list-list-item-label-text-line-height);font-size:var(--mdc-list-list-item-label-text-size);font-weight:var(--mdc-list-list-item-label-text-weight);letter-spacing:var(--mdc-list-list-item-label-text-tracking)}.mdc-list-item__secondary-text{color:var(--mdc-list-list-item-supporting-text-color)}.mdc-list-item__secondary-text{font-family:var(--mdc-list-list-item-supporting-text-font);line-height:var(--mdc-list-list-item-supporting-text-line-height);font-size:var(--mdc-list-list-item-supporting-text-size);font-weight:var(--mdc-list-list-item-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-supporting-text-tracking)}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-leading-icon-color)}.mdc-list-item--with-leading-icon .mdc-list-item__start{width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start>i{font-size:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon{font-size:var(--mdc-list-list-item-leading-icon-size);width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon,.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mdc-list-list-item-leading-avatar-size);height:var(--mdc-list-list-item-leading-avatar-size)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-supporting-text-color)}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mdc-list-list-item-trailing-supporting-text-font);line-height:var(--mdc-list-list-item-trailing-supporting-text-line-height);font-size:var(--mdc-list-list-item-trailing-supporting-text-size);font-weight:var(--mdc-list-list-item-trailing-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-trailing-supporting-text-tracking)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-icon-color)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end>i{font-size:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon{font-size:var(--mdc-list-list-item-trailing-icon-size);width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon,.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-selected-trailing-icon-color)}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text,.mdc-list-item--disabled .mdc-list-item__overline-text{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-disabled-leading-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{opacity:var(--mdc-list-list-item-disabled-leading-icon-opacity)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-disabled-trailing-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{opacity:var(--mdc-list-list-item-disabled-trailing-icon-opacity)}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mdc-list-list-item-hover-label-text-color)}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mdc-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mdc-list-list-item-hover-trailing-icon-color)}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mdc-list-list-item-focus-label-text-color)}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-list-list-item-disabled-label-text-color)}.mdc-list-item:hover::before{background-color:var(--mdc-list-list-item-hover-state-layer-color);opacity:var(--mdc-list-list-item-hover-state-layer-opacity)}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mdc-list-list-item-disabled-state-layer-color);opacity:var(--mdc-list-list-item-disabled-state-layer-opacity)}.mdc-list-item:focus::before{background-color:var(--mdc-list-list-item-focus-state-layer-color);opacity:var(--mdc-list-list-item-focus-state-layer-opacity)}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mdc-list-list-item-leading-avatar-shape);background-color:var(--mdc-list-list-item-leading-avatar-color)}.cdk-high-contrast-active a.mdc-list-item--activated::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 a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none}.mat-mdc-list-item>.mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-mdc-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:left}[dir=rtl] mat-action-list button{text-align:right}mat-action-list button::-moz-focus-inner{border:0}'],encapsulation:2,changeDetection:0})}return $e})(),ve=(()=>{class $e extends xe{get activated(){return this._activated}set activated(lt){this._activated=(0,t.Ig)(lt)}constructor(lt,Qe,St,dt,te,Ue){super(lt,Qe,St,dt,te,Ue),this._activated=!1}_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}static#e=this.\u0275fac=function(Qe){return new(Qe||$e)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(de,8),e.Y36(y.t4),e.Y36(A.Y2,8),e.Y36(e.QbO,8))};static#t=this.\u0275cmp=e.Xpm({type:$e,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(Qe,St,dt){if(1&Qe&&(e.Suo(dt,De,5),e.Suo(dt,ee,5),e.Suo(dt,ct,5)),2&Qe){let te;e.iGM(te=e.CRH())&&(St._lines=te),e.iGM(te=e.CRH())&&(St._titles=te),e.iGM(te=e.CRH())&&(St._meta=te)}},viewQuery:function(Qe,St){if(1&Qe&&(e.Gf(K,5),e.Gf(X,5)),2&Qe){let dt;e.iGM(dt=e.CRH())&&(St._unscopedContent=dt.first),e.iGM(dt=e.CRH())&&(St._itemText=dt.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:11,hostBindings:function(Qe,St){2&Qe&&(e.uIk("aria-current",St._getAriaCurrent()),e.ekj("mdc-list-item--activated",St.activated)("mdc-list-item--with-leading-avatar",0!==St._avatars.length)("mdc-list-item--with-leading-icon",0!==St._icons.length)("mdc-list-item--with-trailing-meta",0!==St._meta.length)("_mat-animation-noopable",St._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],features:[e.qOj],ngContentSelectors:se,decls:10,vars:0,consts:[[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],["unscopedContent",""],[1,"mat-mdc-focus-indicator"]],template:function(Qe,St){1&Qe&&(e.F$t(ie),e.Hsn(0),e.TgZ(1,"span",0),e.Hsn(2,1),e.Hsn(3,2),e.TgZ(4,"span",1,2),e.NdJ("cdkObserveContent",function(){return St._updateItemLines(!0)}),e.Hsn(6,3),e.qZA()(),e.Hsn(7,4),e.Hsn(8,5),e._UZ(9,"div",3))},dependencies:[P.wD],encapsulation:2,changeDetection:0})}return $e})(),rt=(()=>{class $e{static#e=this.\u0275fac=function(Qe){return new(Qe||$e)};static#t=this.\u0275mod=e.oAB({type:$e});static#i=this.\u0275inj=e.cJS({imports:[P.Q8,d.ez,A.BQ,A.si,A.us,E.t]})}return $e})()},7988:(Fe,q,p)=>{"use strict";p.d(q,{OP:()=>f,Tx:()=>le,VK:()=>ct,p6:()=>xe});var e=p(9212),t=p(4300),y=p(6028),A=p(8645),l=p(3019),w=p(7394),m=p(2096),P=p(6410),d=p(7921),E=p(4664),M=p(8180),I=p(9773),k=p(2181),z=p(932),B=p(6814),W=p(3680),j=p(8484),K=p(6825),X=p(9388),ie=p(3651),se=p(2831),ue=p(5407);const ae=["mat-menu-item",""];function Me(pe,qe){1&pe&&(e.O4$(),e.TgZ(0,"svg",3),e._UZ(1,"polygon",4),e.qZA())}const J=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],he=["mat-icon, [matMenuItemIcon]","*"];function S(pe,qe){if(1&pe){const re=e.EpF();e.TgZ(0,"div",0),e.NdJ("keydown",function(ce){e.CHM(re);const Ze=e.oxw();return e.KtG(Ze._handleKeydown(ce))})("click",function(){e.CHM(re);const ce=e.oxw();return e.KtG(ce.closed.emit("click"))})("@transformMenu.start",function(ce){e.CHM(re);const Ze=e.oxw();return e.KtG(Ze._onAnimationStart(ce))})("@transformMenu.done",function(ce){e.CHM(re);const Ze=e.oxw();return e.KtG(Ze._onAnimationDone(ce))}),e.TgZ(1,"div",1),e.Hsn(2),e.qZA()()}if(2&pe){const re=e.oxw();e.Q6J("id",re.panelId)("ngClass",re._classList)("@transformMenu",re._panelAnimationState),e.uIk("aria-label",re.ariaLabel||null)("aria-labelledby",re.ariaLabelledby||null)("aria-describedby",re.ariaDescribedby||null)}}const n=["*"],s=new e.OlP("MAT_MENU_PANEL");let f=(()=>{class pe{constructor(re,ve,ce,Ze,We){this._elementRef=re,this._document=ve,this._focusMonitor=ce,this._parentMenu=Ze,this._changeDetectorRef=We,this.role="menuitem",this.disabled=!1,this.disableRipple=!1,this._hovered=new A.x,this._focused=new A.x,this._highlighted=!1,this._triggersSubmenu=!1,Ze?.addItem?.(this)}focus(re,ve){this._focusMonitor&&re?this._focusMonitor.focusVia(this._getHostElement(),re,ve):this._getHostElement().focus(ve),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(re){this.disabled&&(re.preventDefault(),re.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const re=this._elementRef.nativeElement.cloneNode(!0),ve=re.querySelectorAll("mat-icon, .material-icons");for(let ce=0;ce enter",(0,K.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,K.oB)({opacity:1,transform:"scale(1)"}))),(0,K.eR)("* => void",(0,K.jt)("100ms 25ms linear",(0,K.oB)({opacity:0})))]),fadeInItems:(0,K.X$)("fadeInItems",[(0,K.SB)("showing",(0,K.oB)({opacity:1})),(0,K.eR)("void => *",[(0,K.oB)({opacity:0}),(0,K.jt)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let R=0;const ee=new e.OlP("mat-menu-default-options",{providedIn:"root",factory:function De(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let ct=(()=>{class pe{get xPosition(){return this._xPosition}set xPosition(re){this._xPosition=re,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(re){this._yPosition=re,this.setPositionClasses()}set panelClass(re){const ve=this._previousPanelClass;ve&&ve.length&&ve.split(" ").forEach(ce=>{this._classList[ce]=!1}),this._previousPanelClass=re,re&&re.length&&(re.split(" ").forEach(ce=>{this._classList[ce]=!0}),this._elementRef.nativeElement.className="")}get classList(){return this.panelClass}set classList(re){this.panelClass=re}constructor(re,ve,ce,Ze){this._elementRef=re,this._ngZone=ve,this._changeDetectorRef=Ze,this._elevationPrefix="mat-elevation-z",this._baseElevation=8,this._directDescendantItems=new e.n_E,this._classList={},this._panelAnimationState="void",this._animationDone=new A.x,this.closed=new e.vpe,this.close=this.closed,this.panelId="mat-menu-panel-"+R++,this.overlayPanelClass=ce.overlayPanelClass||"",this._xPosition=ce.xPosition,this._yPosition=ce.yPosition,this.backdropClass=ce.backdropClass,this.overlapTrigger=ce.overlapTrigger,this.hasBackdrop=ce.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Em(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,d.O)(this._directDescendantItems),(0,E.w)(re=>(0,l.T)(...re.map(ve=>ve._focused)))).subscribe(re=>this._keyManager.updateActiveItem(re)),this._directDescendantItems.changes.subscribe(re=>{const ve=this._keyManager;if("enter"===this._panelAnimationState&&ve.activeItem?._hasFocus()){const ce=re.toArray(),Ze=Math.max(0,Math.min(ce.length-1,ve.activeItemIndex||0));ce[Ze]&&!ce[Ze].disabled?ve.setActiveItem(Ze):ve.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusSubscription?.unsubscribe()}_hovered(){return this._directDescendantItems.changes.pipe((0,d.O)(this._directDescendantItems),(0,E.w)(ve=>(0,l.T)(...ve.map(ce=>ce._hovered))))}addItem(re){}removeItem(re){}_handleKeydown(re){const ve=re.keyCode,ce=this._keyManager;switch(ve){case y.hY:(0,y.Vb)(re)||(re.preventDefault(),this.closed.emit("keydown"));break;case y.oh:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case y.SV:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(ve===y.LH||ve===y.JH)&&ce.setFocusOrigin("keyboard"),void ce.onKeydown(re)}re.stopPropagation()}focusFirstItem(re="program"){this._firstItemFocusSubscription?.unsubscribe(),this._firstItemFocusSubscription=this._ngZone.onStable.pipe((0,M.q)(1)).subscribe(()=>{let ve=null;if(this._directDescendantItems.length&&(ve=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!ve||!ve.contains(document.activeElement)){const ce=this._keyManager;ce.setFocusOrigin(re).setFirstItemActive(),!ce.activeItem&&ve&&ve.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(re){const ve=Math.min(this._baseElevation+re,24),ce=`${this._elevationPrefix}${ve}`,Ze=Object.keys(this._classList).find(We=>We.startsWith(this._elevationPrefix));(!Ze||Ze===this._previousElevation)&&(this._previousElevation&&(this._classList[this._previousElevation]=!1),this._classList[ce]=!0,this._previousElevation=ce)}setPositionClasses(re=this.xPosition,ve=this.yPosition){const ce=this._classList;ce["mat-menu-before"]="before"===re,ce["mat-menu-after"]="after"===re,ce["mat-menu-above"]="above"===ve,ce["mat-menu-below"]="below"===ve,this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(re){this._animationDone.next(re),this._isAnimating=!1}_onAnimationStart(re){this._isAnimating=!0,"enter"===re.toState&&0===this._keyManager.activeItemIndex&&(re.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,d.O)(this._allItems)).subscribe(re=>{this._directDescendantItems.reset(re.filter(ve=>ve._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}static#e=this.\u0275fac=function(ve){return new(ve||pe)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(ee),e.Y36(e.sBO))};static#t=this.\u0275cmp=e.Xpm({type:pe,selectors:[["mat-menu"]],contentQueries:function(ve,ce,Ze){if(1&ve&&(e.Suo(Ze,O,5),e.Suo(Ze,f,5),e.Suo(Ze,f,4)),2&ve){let We;e.iGM(We=e.CRH())&&(ce.lazyContent=We.first),e.iGM(We=e.CRH())&&(ce._allItems=We),e.iGM(We=e.CRH())&&(ce.items=We)}},viewQuery:function(ve,ce){if(1&ve&&e.Gf(e.Rgc,5),2&ve){let Ze;e.iGM(Ze=e.CRH())&&(ce.templateRef=Ze.first)}},hostAttrs:["ngSkipHydration",""],hostVars:3,hostBindings:function(ve,ce){2&ve&&e.uIk("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},inputs:{backdropClass:"backdropClass",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:["overlapTrigger","overlapTrigger",e.VuI],hasBackdrop:["hasBackdrop","hasBackdrop",re=>null==re?null:(0,e.VuI)(re)],panelClass:["class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],features:[e._Bn([{provide:s,useExisting:pe}]),e.Xq5],ngContentSelectors:n,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel","mat-mdc-elevation-specific",3,"id","ngClass","keydown","click"],[1,"mat-mdc-menu-content"]],template:function(ve,ce){1&ve&&(e.F$t(),e.YNc(0,S,3,6,"ng-template"))},dependencies:[B.mk],styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;list-style-type:none}.mat-mdc-menu-content:focus{outline:none}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;white-space:normal;font-family:var(--mat-menu-item-label-text-font);line-height:var(--mat-menu-item-label-text-line-height);font-size:var(--mat-menu-item-label-text-size);letter-spacing:var(--mat-menu-item-label-text-tracking);font-weight:var(--mat-menu-item-label-text-weight)}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;outline:0;border-radius:var(--mat-menu-container-shape);background-color:var(--mat-menu-container-color);will-change:transform,opacity}.mat-mdc-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-mdc-menu-panel{outline:solid 1px}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;align-items:center;min-height:48px}.mat-mdc-menu-item:focus{outline:none}[dir=rtl] .mat-mdc-menu-item,.mat-mdc-menu-item[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-menu-item::-moz-focus-inner{border:0}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color)}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color)}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item .mat-icon{margin-right:16px}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:16px}.mat-mdc-menu-item.mat-mdc-menu-item-submenu-trigger{padding-right:32px}[dir=rtl] .mat-mdc-menu-item.mat-mdc-menu-item-submenu-trigger{padding-right:16px;padding-left:32px}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color)}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color)}.cdk-high-contrast-active .mat-mdc-menu-item{margin-top:1px}.mat-mdc-menu-submenu-icon{position:absolute;top:50%;right:16px;transform:translateY(-50%);width:5px;height:10px;fill:currentColor}[dir=rtl] .mat-mdc-menu-submenu-icon{right:auto;left:16px;transform:translateY(-50%) scaleX(-1)}.cdk-high-contrast-active .mat-mdc-menu-submenu-icon{fill:CanvasText}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}'],encapsulation:2,data:{animation:[r.transformMenu,r.fadeInItems]},changeDetection:0})}return pe})();const Ke=new e.OlP("mat-menu-scroll-strategy"),ye={provide:Ke,deps:[ie.aV],useFactory:function Je(pe){return()=>pe.scrollStrategies.reposition()}},fe=(0,se.i$)({passive:!0});let xe=(()=>{class pe{get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(re){this.menu=re}get menu(){return this._menu}set menu(re){re!==this._menu&&(this._menu=re,this._menuCloseSubscription.unsubscribe(),re&&(this._menuCloseSubscription=re.close.subscribe(ve=>{this._destroyMenu(ve),("click"===ve||"tab"===ve)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(ve)})),this._menuItemInstance?._setTriggersSubmenu(this.triggersSubmenu()))}constructor(re,ve,ce,Ze,We,Ct,ut,It,Ae){this._overlay=re,this._element=ve,this._viewContainerRef=ce,this._menuItemInstance=Ct,this._dir=ut,this._focusMonitor=It,this._ngZone=Ae,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=w.w0.EMPTY,this._hoverSubscription=w.w0.EMPTY,this._menuCloseSubscription=w.w0.EMPTY,this._changeDetectorRef=(0,e.f3M)(e.sBO),this._handleTouchStart=Be=>{(0,t.yG)(Be)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new e.vpe,this.onMenuOpen=this.menuOpened,this.menuClosed=new e.vpe,this.onMenuClose=this.menuClosed,this._scrollStrategy=Ze,this._parentMaterialMenu=We instanceof ct?We:void 0,ve.nativeElement.addEventListener("touchstart",this._handleTouchStart,fe)}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,fe),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&&this.menu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const re=this.menu;if(this._menuOpen||!re)return;const ve=this._createOverlay(re),ce=ve.getConfig(),Ze=ce.positionStrategy;this._setPosition(re,Ze),ce.hasBackdrop=null==re.hasBackdrop?!this.triggersSubmenu():re.hasBackdrop,ve.attach(this._getPortal(re)),re.lazyContent&&re.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(re),re instanceof ct&&(re._startAnimation(),re._directDescendantItems.changes.pipe((0,I.R)(re.close)).subscribe(()=>{Ze.withLockedPosition(!1).reapplyLastPosition(),Ze.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(re,ve){this._focusMonitor&&re?this._focusMonitor.focusVia(this._element,re,ve):this._element.nativeElement.focus(ve)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(re){if(!this._overlayRef||!this.menuOpen)return;const ve=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===re||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,ve instanceof ct?(ve._resetAnimation(),ve.lazyContent?ve._animationDone.pipe((0,k.h)(ce=>"void"===ce.toState),(0,M.q)(1),(0,I.R)(ve.lazyContent._attached)).subscribe({next:()=>ve.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),ve?.lazyContent?.detach())}_initMenu(re){re.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,re.direction=this.dir,this._setMenuElevation(re),re.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(re){if(re.setElevation){let ve=0,ce=re.parentMenu;for(;ce;)ve++,ce=ce.parentMenu;re.setElevation(ve)}}_setIsMenuOpen(re){re!==this._menuOpen&&(this._menuOpen=re,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(re),this._changeDetectorRef.markForCheck())}_createOverlay(re){if(!this._overlayRef){const ve=this._getOverlayConfig(re);this._subscribeToPositions(re,ve.positionStrategy),this._overlayRef=this._overlay.create(ve),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(re){return new ie.X_({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:re.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:re.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(re,ve){re.setPositionClasses&&ve.positionChanges.subscribe(ce=>{const Ze="start"===ce.connectionPair.overlayX?"after":"before",We="top"===ce.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>re.setPositionClasses(Ze,We)):re.setPositionClasses(Ze,We)})}_setPosition(re,ve){let[ce,Ze]="before"===re.xPosition?["end","start"]:["start","end"],[We,Ct]="above"===re.yPosition?["bottom","top"]:["top","bottom"],[ut,It]=[We,Ct],[Ae,Be]=[ce,Ze],rt=0;if(this.triggersSubmenu()){if(Be=ce="before"===re.xPosition?"start":"end",Ze=Ae="end"===ce?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const $e=this._parentMaterialMenu.items.first;this._parentInnerPadding=$e?$e._getHostElement().offsetTop:0}rt="bottom"===We?this._parentInnerPadding:-this._parentInnerPadding}}else re.overlapTrigger||(ut="top"===We?"bottom":"top",It="top"===Ct?"bottom":"top");ve.withPositions([{originX:ce,originY:ut,overlayX:Ae,overlayY:We,offsetY:rt},{originX:Ze,originY:ut,overlayX:Be,overlayY:We,offsetY:rt},{originX:ce,originY:It,overlayX:Ae,overlayY:Ct,offsetY:-rt},{originX:Ze,originY:It,overlayX:Be,overlayY:Ct,offsetY:-rt}])}_menuClosingActions(){const re=this._overlayRef.backdropClick(),ve=this._overlayRef.detachments(),ce=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,m.of)(),Ze=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,k.h)(We=>We!==this._menuItemInstance),(0,k.h)(()=>this._menuOpen)):(0,m.of)();return(0,l.T)(re,ce,Ze,ve)}_handleMousedown(re){(0,t.X6)(re)||(this._openedBy=0===re.button?"mouse":void 0,this.triggersSubmenu()&&re.preventDefault())}_handleKeydown(re){const ve=re.keyCode;(ve===y.K5||ve===y.L_)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(ve===y.SV&&"ltr"===this.dir||ve===y.oh&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(re){this.triggersSubmenu()?(re.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,k.h)(re=>re===this._menuItemInstance&&!re.disabled),(0,z.g)(0,P.E)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof ct&&this.menu._isAnimating?this.menu._animationDone.pipe((0,M.q)(1),(0,z.g)(0,P.E),(0,I.R)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(re){return(!this._portal||this._portal.templateRef!==re.templateRef)&&(this._portal=new j.UE(re.templateRef,this._viewContainerRef)),this._portal}static#e=this.\u0275fac=function(ve){return new(ve||pe)(e.Y36(ie.aV),e.Y36(e.SBq),e.Y36(e.s_b),e.Y36(Ke),e.Y36(s,8),e.Y36(f,10),e.Y36(X.Is,8),e.Y36(t.tE),e.Y36(e.R0b))};static#t=this.\u0275dir=e.lG2({type:pe,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(ve,ce){1&ve&&e.NdJ("click",function(We){return ce._handleClick(We)})("mousedown",function(We){return ce._handleMousedown(We)})("keydown",function(We){return ce._handleKeydown(We)}),2&ve&&e.uIk("aria-haspopup",ce.menu?"menu":null)("aria-expanded",ce.menuOpen)("aria-controls",ce.menuOpen?ce.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"},exportAs:["matMenuTrigger"]})}return pe})(),le=(()=>{class pe{static#e=this.\u0275fac=function(ve){return new(ve||pe)};static#t=this.\u0275mod=e.oAB({type:pe});static#i=this.\u0275inj=e.cJS({providers:[ye],imports:[B.ez,W.si,W.BQ,ie.U8,ue.ZD,W.BQ]})}return pe})()},1476:(Fe,q,p)=>{"use strict";p.d(q,{NW:()=>ae,TU:()=>Me,ye:()=>B});var e=p(9212),t=p(8645),y=p(2296),A=p(8525),l=p(2596),w=p(3680),m=p(2495),P=p(5683);function d(J,he){if(1&J&&(e.TgZ(0,"mat-option",18),e._uU(1),e.qZA()),2&J){const S=he.$implicit;e.Q6J("value",S),e.xp6(1),e.hij(" ",S," ")}}function E(J,he){if(1&J){const S=e.EpF();e.TgZ(0,"mat-form-field",16)(1,"mat-select",17),e.NdJ("selectionChange",function(s){e.CHM(S);const f=e.oxw(2);return e.KtG(f._changePageSize(s.value))}),e.SjG(2,d,2,2,"mat-option",18,e.x6l),e.qZA()()}if(2&J){const S=e.oxw(2);e.Q6J("appearance",S._formFieldAppearance)("color",S.color),e.xp6(1),e.Q6J("value",S.pageSize)("disabled",S.disabled)("aria-labelledby",S._pageSizeLabelId)("panelClass",S.selectConfig.panelClass||"")("disableOptionCentering",S.selectConfig.disableOptionCentering),e.xp6(1),e.wJu(S._displayedPageSizeOptions)}}function M(J,he){if(1&J&&(e.TgZ(0,"div",19),e._uU(1),e.qZA()),2&J){const S=e.oxw(2);e.xp6(1),e.Oqu(S.pageSize)}}function I(J,he){if(1&J&&(e.TgZ(0,"div",12)(1,"div",13),e._uU(2),e.qZA(),e.YNc(3,E,4,7,"mat-form-field",14)(4,M,2,1,"div",15),e.qZA()),2&J){const S=e.oxw();e.xp6(1),e.uIk("id",S._pageSizeLabelId),e.xp6(1),e.hij(" ",S._intl.itemsPerPageLabel," "),e.xp6(1),e.um2(3,S._displayedPageSizeOptions.length>1?3:-1),e.xp6(1),e.um2(4,S._displayedPageSizeOptions.length<=1?4:-1)}}function k(J,he){if(1&J){const S=e.EpF();e.TgZ(0,"button",20),e.NdJ("click",function(){e.CHM(S);const s=e.oxw();return e.KtG(s.firstPage())}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",21),e.qZA()()}if(2&J){const S=e.oxw();e.Q6J("matTooltip",S._intl.firstPageLabel)("matTooltipDisabled",S._previousButtonsDisabled())("matTooltipPosition","above")("disabled",S._previousButtonsDisabled()),e.uIk("aria-label",S._intl.firstPageLabel)}}function z(J,he){if(1&J){const S=e.EpF();e.O4$(),e.kcU(),e.TgZ(0,"button",22),e.NdJ("click",function(){e.CHM(S);const s=e.oxw();return e.KtG(s.lastPage())}),e.O4$(),e.TgZ(1,"svg",7),e._UZ(2,"path",23),e.qZA()()}if(2&J){const S=e.oxw();e.Q6J("matTooltip",S._intl.lastPageLabel)("matTooltipDisabled",S._nextButtonsDisabled())("matTooltipPosition","above")("disabled",S._nextButtonsDisabled()),e.uIk("aria-label",S._intl.lastPageLabel)}}let B=(()=>{class J{constructor(){this.changes=new t.x,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(S,n,s)=>{if(0==s||0==n)return`0 of ${s}`;const f=S*n;return`${f+1} \u2013 ${f<(s=Math.max(s,0))?Math.min(f+n,s):f+n} of ${s}`}}static#e=this.\u0275fac=function(n){return new(n||J)};static#t=this.\u0275prov=e.Yz7({token:J,factory:J.\u0275fac,providedIn:"root"})}return J})();const j={provide:B,deps:[[new e.FiY,new e.tp0,B]],useFactory:function W(J){return J||new B}},ie=new e.OlP("MAT_PAGINATOR_DEFAULT_OPTIONS"),se=(0,w.Id)((0,w.dB)(class{}));let ue=0,ae=(()=>{class J extends se{get pageIndex(){return this._pageIndex}set pageIndex(S){this._pageIndex=Math.max((0,m.su)(S),0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(S){this._length=(0,m.su)(S),this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(S){this._pageSize=Math.max((0,m.su)(S),0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(S){this._pageSizeOptions=(S||[]).map(n=>(0,m.su)(n)),this._updateDisplayedPageSizeOptions()}get hidePageSize(){return this._hidePageSize}set hidePageSize(S){this._hidePageSize=(0,m.Ig)(S)}get showFirstLastButtons(){return this._showFirstLastButtons}set showFirstLastButtons(S){this._showFirstLastButtons=(0,m.Ig)(S)}constructor(S,n,s){if(super(),this._intl=S,this._changeDetectorRef=n,this._pageSizeLabelId="mat-paginator-page-size-label-"+ue++,this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this._hidePageSize=!1,this._showFirstLastButtons=!1,this.selectConfig={},this.page=new e.vpe,this._intlChanges=S.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),s){const{pageSize:f,pageSizeOptions:h,hidePageSize:C,showFirstLastButtons:D}=s;null!=f&&(this._pageSize=f),null!=h&&(this._pageSizeOptions=h),null!=C&&(this._hidePageSize=C),null!=D&&(this._showFirstLastButtons=D)}this._formFieldAppearance=s?.formFieldAppearance||"outline"}ngOnInit(){this._initialized=!0,this._updateDisplayedPageSizeOptions(),this._markInitialized()}ngOnDestroy(){this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const S=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(S)}previousPage(){if(!this.hasPreviousPage())return;const S=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(S)}firstPage(){if(!this.hasPreviousPage())return;const S=this.pageIndex;this.pageIndex=0,this._emitPageEvent(S)}lastPage(){if(!this.hasNextPage())return;const S=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(S)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const S=this.getNumberOfPages()-1;return this.pageIndexS-n),this._changeDetectorRef.markForCheck())}_emitPageEvent(S){this.page.emit({previousPageIndex:S,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}static#e=this.\u0275fac=function(n){return new(n||J)(e.Y36(B),e.Y36(e.sBO),e.Y36(ie,8))};static#t=this.\u0275cmp=e.Xpm({type:J,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{disabled:"disabled",color:"color",pageIndex:"pageIndex",length:"length",pageSize:"pageSize",pageSizeOptions:"pageSizeOptions",hidePageSize:"hidePageSize",showFirstLastButtons:"showFirstLastButtons",selectConfig:"selectConfig"},outputs:{page:"page"},exportAs:["matPaginator"],features:[e.qOj],decls:14,vars:14,consts:[[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],["class","mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["mat-icon-button","","type","button","class","mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-previous",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled","click"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-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-mdc-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-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-page-size-label"],["class","mat-mdc-paginator-page-size-select",3,"appearance","color"],["class","mat-mdc-paginator-page-size-value"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],["hideSingleSelectionIndicator","",3,"value","disabled","aria-labelledby","panelClass","disableOptionCentering","selectionChange"],[3,"value"],[1,"mat-mdc-paginator-page-size-value"],["mat-icon-button","","type","button",1,"mat-mdc-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-mdc-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(n,s){1&n&&(e.TgZ(0,"div",0)(1,"div",1),e.YNc(2,I,5,4,"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 s.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 s.nextPage()}),e.O4$(),e.TgZ(11,"svg",7),e._UZ(12,"path",10),e.qZA()(),e.YNc(13,z,3,5,"button",11),e.qZA()()()),2&n&&(e.xp6(2),e.um2(2,s.hidePageSize?-1:2),e.xp6(3),e.hij(" ",s._intl.getRangeLabel(s.pageIndex,s.pageSize,s.length)," "),e.xp6(1),e.um2(6,s.showFirstLastButtons?6:-1),e.xp6(1),e.Q6J("matTooltip",s._intl.previousPageLabel)("matTooltipDisabled",s._previousButtonsDisabled())("matTooltipPosition","above")("disabled",s._previousButtonsDisabled()),e.uIk("aria-label",s._intl.previousPageLabel),e.xp6(3),e.Q6J("matTooltip",s._intl.nextPageLabel)("matTooltipDisabled",s._nextButtonsDisabled())("matTooltipPosition","above")("disabled",s._nextButtonsDisabled()),e.uIk("aria-label",s._intl.nextPageLabel),e.xp6(3),e.um2(13,s.showFirstLastButtons?13:-1))},dependencies:[y.RK,P.KE,A.gD,w.ey,l.gM],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color);background-color:var(--mat-paginator-container-background-color);font-family:var(--mat-paginator-container-text-font);line-height:var(--mat-paginator-container-text-line-height);font-size:var(--mat-paginator-container-text-size);font-weight:var(--mat-paginator-container-text-weight);letter-spacing:var(--mat-paginator-container-text-tracking)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size)}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap-reverse;width:100%;min-height:var(--mat-paginator-container-size)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:84px}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color)}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,.cdk-high-contrast-active .mat-mdc-paginator-icon{fill:currentColor;fill:CanvasText}.cdk-high-contrast-active .mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return J})(),Me=(()=>{class J{static#e=this.\u0275fac=function(n){return new(n||J)};static#t=this.\u0275mod=e.oAB({type:J});static#i=this.\u0275inj=e.cJS({providers:[j],imports:[y.ot,A.LD,l.AV]})}return J})()},6007:(Fe,q,p)=>{"use strict";p.d(q,{Cv:()=>M,pW:()=>d});var e=p(9212),y=(p(6814),p(3680)),A=p(2495);const l=new e.OlP("MAT_PROGRESS_BAR_DEFAULT_OPTIONS"),P=(0,y.pj)(class{constructor(I){this._elementRef=I}},"primary");let d=(()=>{class I extends P{constructor(z,B,W,j,K){super(z),this._ngZone=B,this._changeDetectorRef=W,this._animationMode=j,this._isNoopAnimation=!1,this._value=0,this._bufferValue=0,this.animationEnd=new e.vpe,this._mode="determinate",this._transitionendHandler=X=>{0===this.animationEnd.observers.length||!X.target||!X.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))},this._isNoopAnimation="NoopAnimations"===j,K&&(K.color&&(this.color=this.defaultColor=K.color),this.mode=K.mode||this.mode)}get value(){return this._value}set value(z){this._value=E((0,A.su)(z)),this._changeDetectorRef.markForCheck()}get bufferValue(){return this._bufferValue||0}set bufferValue(z){this._bufferValue=E((0,A.su)(z)),this._changeDetectorRef.markForCheck()}get mode(){return this._mode}set mode(z){this._mode=z,this._changeDetectorRef.markForCheck()}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("transitionend",this._transitionendHandler)})}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._transitionendHandler)}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}static#e=this.\u0275fac=function(B){return new(B||I)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(e.sBO),e.Y36(e.QbO,8),e.Y36(l,8))};static#t=this.\u0275cmp=e.Xpm({type:I,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:8,hostBindings:function(B,W){2&B&&(e.uIk("aria-valuenow",W._isIndeterminate()?null:W.value)("mode",W.mode),e.ekj("_mat-animation-noopable",W._isNoopAnimation)("mdc-linear-progress--animation-ready",!W._isNoopAnimation)("mdc-linear-progress--indeterminate",W._isIndeterminate()))},inputs:{color:"color",value:"value",bufferValue:"bufferValue",mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],features:[e.qOj],decls:7,vars:4,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(B,W){1&B&&(e.TgZ(0,"div",0),e._UZ(1,"div",1)(2,"div",2),e.qZA(),e.TgZ(3,"div",3),e._UZ(4,"span",4),e.qZA(),e.TgZ(5,"div",5),e._UZ(6,"span",4),e.qZA()),2&B&&(e.xp6(1),e.Udp("flex-basis",W._getBufferBarFlexBasis()),e.xp6(2),e.Udp("transform",W._getPrimaryBarTransform()))},styles:["@keyframes mdc-linear-progress-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(var(--mdc-linear-progress-primary-half))}100%{transform:translateX(var(--mdc-linear-progress-primary-full))}}@keyframes mdc-linear-progress-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 mdc-linear-progress-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(var(--mdc-linear-progress-secondary-quarter))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full))}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{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(var(--mdc-linear-progress-primary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-primary-full-neg))}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{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(var(--mdc-linear-progress-secondary-quarter-neg))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full-neg))}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}@media screen and (forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden}.mdc-linear-progress__buffer-dots{background-repeat:repeat-x;flex:auto;transform:rotate(180deg);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");animation:mdc-linear-progress-buffering 250ms infinite linear}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale 2s infinite linear}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar{right:0;-webkit-transform-origin:center right;transform-origin:center right}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse 250ms infinite linear;transform:rotate(0)}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}.mdc-linear-progress--closed{opacity:0}.mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots{animation:none}.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner{animation:none}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height) * -2.5))}}.mdc-linear-progress__bar-inner{border-color:var(--mdc-linear-progress-active-indicator-color)}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill=''/%3E%3C/svg%3E\")}}.mdc-linear-progress{height:max(var(--mdc-linear-progress-track-height), var(--mdc-linear-progress-active-indicator-height))}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress{height:4px}}.mdc-linear-progress__bar{height:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__bar-inner{border-top-width:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__buffer{height:var(--mdc-linear-progress-track-height)}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-size:10px var(--mdc-linear-progress-track-height)}}.mdc-linear-progress__buffer{border-radius:var(--mdc-linear-progress-track-shape)}.mat-mdc-progress-bar{display:block;text-align:left;--mdc-linear-progress-primary-half: 83.67142%;--mdc-linear-progress-primary-full: 200.611057%;--mdc-linear-progress-secondary-quarter: 37.651913%;--mdc-linear-progress-secondary-half: 84.386165%;--mdc-linear-progress-secondary-full: 160.277782%;--mdc-linear-progress-primary-half-neg: -83.67142%;--mdc-linear-progress-primary-full-neg: -200.611057%;--mdc-linear-progress-secondary-quarter-neg: -37.651913%;--mdc-linear-progress-secondary-half-neg: -84.386165%;--mdc-linear-progress-secondary-full-neg: -160.277782%}[dir=rtl] .mat-mdc-progress-bar{text-align:right}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}"],encapsulation:2,changeDetection:0})}return I})();function E(I,k=0,z=100){return Math.max(k,Math.min(z,I))}let M=(()=>{class I{static#e=this.\u0275fac=function(B){return new(B||I)};static#t=this.\u0275mod=e.oAB({type:I});static#i=this.\u0275inj=e.cJS({imports:[y.BQ]})}return I})()},5940:(Fe,q,p)=>{"use strict";p.d(q,{Cq:()=>z,Ou:()=>I});var e=p(9212),t=p(3680),y=p(2495),A=p(6814);const l=["determinateSpinner"];function w(B,W){if(1&B&&(e.O4$(),e.TgZ(0,"svg",11),e._UZ(1,"circle",12),e.qZA()),2&B){const j=e.oxw();e.uIk("viewBox",j._viewBox()),e.xp6(1),e.Udp("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeCircumference()/2,"px")("stroke-width",j._circleStrokeWidth(),"%"),e.uIk("r",j._circleRadius())}}const m=(0,t.pj)(class{constructor(B){this._elementRef=B}},"primary"),P=new e.OlP("mat-progress-spinner-default-options",{providedIn:"root",factory:function d(){return{diameter:E}}}),E=100;let I=(()=>{class B extends m{constructor(j,K,X){super(j),this.mode="mat-spinner"===this._elementRef.nativeElement.nodeName.toLowerCase()?"indeterminate":"determinate",this._value=0,this._diameter=E,this._noopAnimations="NoopAnimations"===K&&!!X&&!X._forceAnimations,X&&(X.color&&(this.color=this.defaultColor=X.color),X.diameter&&(this.diameter=X.diameter),X.strokeWidth&&(this.strokeWidth=X.strokeWidth))}get value(){return"determinate"===this.mode?this._value:0}set value(j){this._value=Math.max(0,Math.min(100,(0,y.su)(j)))}get diameter(){return this._diameter}set diameter(j){this._diameter=(0,y.su)(j)}get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(j){this._strokeWidth=(0,y.su)(j)}_circleRadius(){return(this.diameter-10)/2}_viewBox(){const j=2*this._circleRadius()+this.strokeWidth;return`0 0 ${j} ${j}`}_strokeCircumference(){return 2*Math.PI*this._circleRadius()}_strokeDashOffset(){return"determinate"===this.mode?this._strokeCircumference()*(100-this._value)/100:null}_circleStrokeWidth(){return this.strokeWidth/this.diameter*100}static#e=this.\u0275fac=function(K){return new(K||B)(e.Y36(e.SBq),e.Y36(e.QbO,8),e.Y36(P))};static#t=this.\u0275cmp=e.Xpm({type:B,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function(K,X){if(1&K&&e.Gf(l,5),2&K){let ie;e.iGM(ie=e.CRH())&&(X._determinateCircle=ie.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:16,hostBindings:function(K,X){2&K&&(e.uIk("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===X.mode?X.value:null)("mode",X.mode),e.Udp("width",X.diameter,"px")("height",X.diameter,"px")("--mdc-circular-progress-size",X.diameter+"px")("--mdc-circular-progress-active-indicator-width",X.diameter+"px"),e.ekj("_mat-animation-noopable",X._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===X.mode))},inputs:{color:"color",mode:"mode",value:"value",diameter:"diameter",strokeWidth:"strokeWidth"},exportAs:["matProgressSpinner"],features:[e.qOj],decls:14,vars:11,consts:[["circle",""],["aria-hidden","true",1,"mdc-circular-progress__determinate-container"],["determinateSpinner",""],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__determinate-circle-graphic"],["cx","50%","cy","50%",1,"mdc-circular-progress__determinate-circle"],["aria-hidden","true",1,"mdc-circular-progress__indeterminate-container"],[1,"mdc-circular-progress__spinner-layer"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-left"],[3,"ngTemplateOutlet"],[1,"mdc-circular-progress__gap-patch"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-right"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__indeterminate-circle-graphic"],["cx","50%","cy","50%"]],template:function(K,X){if(1&K&&(e.YNc(0,w,2,8,"ng-template",null,0,e.W1O),e.TgZ(2,"div",1,2),e.O4$(),e.TgZ(4,"svg",3),e._UZ(5,"circle",4),e.qZA()(),e.kcU(),e.TgZ(6,"div",5)(7,"div",6)(8,"div",7),e.GkF(9,8),e.qZA(),e.TgZ(10,"div",9),e.GkF(11,8),e.qZA(),e.TgZ(12,"div",10),e.GkF(13,8),e.qZA()()()),2&K){const ie=e.MAs(1);e.xp6(4),e.uIk("viewBox",X._viewBox()),e.xp6(1),e.Udp("stroke-dasharray",X._strokeCircumference(),"px")("stroke-dashoffset",X._strokeDashOffset(),"px")("stroke-width",X._circleStrokeWidth(),"%"),e.uIk("r",X._circleRadius()),e.xp6(4),e.Q6J("ngTemplateOutlet",ie),e.xp6(2),e.Q6J("ngTemplateOutlet",ie),e.xp6(2),e.Q6J("ngTemplateOutlet",ie)}},dependencies:[A.tP],styles:["@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-color-1-fade-in-out{from{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes mdc-circular-progress-color-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}.mdc-circular-progress{display:inline-flex;position:relative;direction:ltr;line-height:0;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{animation:mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-1{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-2{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-3{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-4{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--closed{opacity:0}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mdc-circular-progress-active-indicator-color)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner circle{stroke-width:var(--mdc-circular-progress-active-indicator-width)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-1 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-2 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-3 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-4 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner .mdc-circular-progress{width:var(--mdc-circular-progress-size) !important;height:var(--mdc-circular-progress-size) !important}.mat-mdc-progress-spinner{display:block;overflow:hidden;line-height:0}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}"],encapsulation:2,changeDetection:0})}return B})(),z=(()=>{class B{static#e=this.\u0275fac=function(K){return new(K||B)};static#t=this.\u0275mod=e.oAB({type:B});static#i=this.\u0275inj=e.cJS({imports:[A.ez,t.BQ]})}return B})()},7466:(Fe,q,p)=>{"use strict";p.d(q,{Fk:()=>ie,U0:()=>X,VQ:()=>W});var e=p(9212),t=p(3680),y=p(4300),A=p(2495),l=p(8337),w=p(6223),m=p(6814);const P=["input"],d=["*"];let E=0;class M{constructor(ue,ae){this.source=ue,this.value=ae}}const I={provide:w.JU,useExisting:(0,e.Gpc)(()=>W),multi:!0},k=new e.OlP("MatRadioGroup"),z=new e.OlP("mat-radio-default-options",{providedIn:"root",factory:function B(){return{color:"accent"}}});let W=(()=>{class se{get name(){return this._name}set name(ae){this._name=ae,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(ae){this._labelPosition="before"===ae?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(ae){this._value!==ae&&(this._value=ae,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(ae){this._selected=ae,this.value=ae?ae.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(ae){this._disabled=(0,A.Ig)(ae),this._markRadiosForCheck()}get required(){return this._required}set required(ae){this._required=(0,A.Ig)(ae),this._markRadiosForCheck()}constructor(ae){this._changeDetector=ae,this._value=null,this._name="mat-radio-group-"+E++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new e.vpe}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(ae=>ae===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(ae=>{ae.name=this.name,ae._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(Me=>{Me.checked=this.value===Me.value,Me.checked&&(this._selected=Me)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new M(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(ae=>ae._markForCheck())}writeValue(ae){this.value=ae,this._changeDetector.markForCheck()}registerOnChange(ae){this._controlValueAccessorChangeFn=ae}registerOnTouched(ae){this.onTouched=ae}setDisabledState(ae){this.disabled=ae,this._changeDetector.markForCheck()}static#e=this.\u0275fac=function(Me){return new(Me||se)(e.Y36(e.sBO))};static#t=this.\u0275dir=e.lG2({type:se,selectors:[["mat-radio-group"]],contentQueries:function(Me,J,he){if(1&Me&&e.Suo(he,X,5),2&Me){let S;e.iGM(S=e.CRH())&&(J._radios=S)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:"disabled",required:"required"},outputs:{change:"change"},exportAs:["matRadioGroup"],features:[e._Bn([I,{provide:k,useExisting:se}])]})}return se})();class j{constructor(ue){this._elementRef=ue}}const K=(0,t.Kr)((0,t.sb)(j));let X=(()=>{class se extends K{get checked(){return this._checked}set checked(ae){const Me=(0,A.Ig)(ae);this._checked!==Me&&(this._checked=Me,Me&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!Me&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),Me&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(ae){this._value!==ae&&(this._value=ae,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===ae),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(ae){this._labelPosition=ae}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(ae){this._setDisabled((0,A.Ig)(ae))}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(ae){this._required=(0,A.Ig)(ae)}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(ae){this._color=ae}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ae,Me,J,he,S,n,s,f){super(Me),this._changeDetector=J,this._focusMonitor=he,this._radioDispatcher=S,this._providerOverride=s,this._uniqueId="mat-radio-"+ ++E,this.id=this._uniqueId,this.change=new e.vpe,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=ae,this._noopAnimations="NoopAnimations"===n,f&&(this.tabIndex=(0,A.su)(f,0))}focus(ae,Me){Me?this._focusMonitor.focusVia(this._inputElement,Me,ae):this._inputElement.nativeElement.focus(ae)}_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),this._removeUniqueSelectionListener=this._radioDispatcher.listen((ae,Me)=>{ae!==this.id&&Me===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(ae=>{!ae&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new M(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(ae){ae.stopPropagation()}_onInputInteraction(ae){if(ae.stopPropagation(),!this.checked&&!this.disabled){const Me=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),Me&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(ae){this._onInputInteraction(ae),this.disabled||this._inputElement.nativeElement.focus()}_setDisabled(ae){this._disabled!==ae&&(this._disabled=ae,this._changeDetector.markForCheck())}_updateTabIndex(){const ae=this.radioGroup;let Me;if(Me=ae&&ae.selected&&!this.disabled?ae.selected===this?this.tabIndex:-1:this.tabIndex,Me!==this._previousTabIndex){const J=this._inputElement?.nativeElement;J&&(J.setAttribute("tabindex",Me+""),this._previousTabIndex=Me)}}static#e=this.\u0275fac=function(Me){return new(Me||se)(e.Y36(k,8),e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(y.tE),e.Y36(l.A8),e.Y36(e.QbO,8),e.Y36(z,8),e.$8M("tabindex"))};static#t=this.\u0275cmp=e.Xpm({type:se,selectors:[["mat-radio-button"]],viewQuery:function(Me,J){if(1&Me&&e.Gf(P,5),2&Me){let he;e.iGM(he=e.CRH())&&(J._inputElement=he.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:15,hostBindings:function(Me,J){1&Me&&e.NdJ("focus",function(){return J._inputElement.nativeElement.focus()}),2&Me&&(e.uIk("id",J.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),e.ekj("mat-primary","primary"===J.color)("mat-accent","accent"===J.color)("mat-warn","warn"===J.color)("mat-mdc-radio-checked",J.checked)("_mat-animation-noopable",J._noopAnimations))},inputs:{disableRipple:"disableRipple",tabIndex:"tabIndex",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"},exportAs:["matRadioButton"],features:[e.qOj],ngContentSelectors:d,decls:13,vars:17,consts:[[1,"mdc-form-field"],["formField",""],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio",1,"mdc-radio__native-control",3,"id","checked","disabled","required","change"],["input",""],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(Me,J){if(1&Me&&(e.F$t(),e.TgZ(0,"div",0,1)(2,"div",2)(3,"div",3),e.NdJ("click",function(S){return J._onTouchTargetClick(S)}),e.qZA(),e.TgZ(4,"input",4,5),e.NdJ("change",function(S){return J._onInputInteraction(S)}),e.qZA(),e.TgZ(6,"div",6),e._UZ(7,"div",7)(8,"div",8),e.qZA(),e.TgZ(9,"div",9),e._UZ(10,"div",10),e.qZA()(),e.TgZ(11,"label",11),e.Hsn(12),e.qZA()()),2&Me){const he=e.MAs(1);e.ekj("mdc-form-field--align-end","before"==J.labelPosition),e.xp6(2),e.ekj("mdc-radio--disabled",J.disabled),e.xp6(2),e.Q6J("id",J.inputId)("checked",J.checked)("disabled",J.disabled)("required",J.required),e.uIk("name",J.name)("value",J.value)("aria-label",J.ariaLabel)("aria-labelledby",J.ariaLabelledby)("aria-describedby",J.ariaDescribedby),e.xp6(5),e.Q6J("matRippleTrigger",he)("matRippleDisabled",J._isRippleDisabled())("matRippleCentered",!0),e.xp6(2),e.Q6J("for",J.inputId)}},dependencies:[t.wG],styles:['.mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color}.mdc-radio[hidden]{display:none}.mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1}.mdc-radio--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-radio--touch .mdc-radio__native-control{top:calc((40px - 48px) / 2);right:calc((40px - 48px) / 2);left:calc((40px - 48px) / 2);width:48px;height:48px}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{border-color:CanvasText}}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{border-color:CanvasText}}.mdc-radio__native-control:checked+.mdc-radio__background,.mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__outer-circle{transition:border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio--disabled{cursor:default;pointer-events:none}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle{transform:scale(0.5);transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:disabled+.mdc-radio__background,[aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background{cursor:default}.mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{padding:calc((var(--mdc-radio-state-layer-size) - 20px) / 2)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-unselected-icon-opacity)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);left:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);right:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);left:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color)}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple .mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, black)}.mat-mdc-radio-button.cdk-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-radio-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}[dir=rtl] .mat-mdc-radio-touch-target{left:0;right:50%;transform:translate(50%, -50%)}'],encapsulation:2,changeDetection:0})}return se})(),ie=(()=>{class se{static#e=this.\u0275fac=function(Me){return new(Me||se)};static#t=this.\u0275mod=e.oAB({type:se});static#i=this.\u0275inj=e.cJS({imports:[t.BQ,m.ez,t.si,t.BQ]})}return se})()},8525:(Fe,q,p)=>{"use strict";p.d(q,{$L:()=>fe,LD:()=>de,PG:()=>ee,gD:()=>ye});var e=p(3651),t=p(6814),y=p(9212),A=p(3680),l=p(5683),w=p(5407),m=p(4300),P=p(9388),d=p(2495),E=p(8337),M=p(6028),I=p(6223),k=p(8645),z=p(4911),B=p(3019),W=p(7921),j=p(4664),K=p(8180),X=p(2181),ie=p(7398),se=p(3997),ue=p(9773),ae=p(6825);const Me=["trigger"],J=["panel"];function he(xe,le){if(1&xe&&(y.TgZ(0,"span",9),y._uU(1),y.qZA()),2&xe){const pe=y.oxw();y.xp6(1),y.Oqu(pe.placeholder)}}function S(xe,le){1&xe&&y.Hsn(0)}function n(xe,le){if(1&xe&&(y.TgZ(0,"span",11),y._uU(1),y.qZA()),2&xe){const pe=y.oxw(2);y.xp6(1),y.Oqu(pe.triggerValue)}}function s(xe,le){if(1&xe&&(y.TgZ(0,"span",10),y.YNc(1,S,1,0)(2,n,2,1),y.qZA()),2&xe){const pe=y.oxw();y.xp6(1),y.um2(1,pe.customTrigger?1:2)}}function f(xe,le){if(1&xe){const pe=y.EpF();y.O4$(),y.kcU(),y.TgZ(0,"div",12,13),y.NdJ("@transformPanel.done",function(re){y.CHM(pe);const ve=y.oxw();return y.KtG(ve._panelDoneAnimatingStream.next(re.toState))})("keydown",function(re){y.CHM(pe);const ve=y.oxw();return y.KtG(ve._handleKeydown(re))}),y.Hsn(2,1),y.qZA()}if(2&xe){const pe=y.oxw();y.Gre("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",pe._getPanelTheme(),""),y.Q6J("ngClass",pe.panelClass)("@transformPanel","showing"),y.uIk("id",pe.id+"-panel")("aria-multiselectable",pe.multiple)("aria-label",pe.ariaLabel||null)("aria-labelledby",pe._getPanelAriaLabelledby())}}const h=[[["mat-select-trigger"]],"*"],C=["mat-select-trigger","*"],D={transformPanelWrap:(0,ae.X$)("transformPanelWrap",[(0,ae.eR)("* => void",(0,ae.IO)("@transformPanel",[(0,ae.pV)()],{optional:!0}))]),transformPanel:(0,ae.X$)("transformPanel",[(0,ae.SB)("void",(0,ae.oB)({opacity:0,transform:"scale(1, 0.8)"})),(0,ae.eR)("void => showing",(0,ae.jt)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ae.oB)({opacity:1,transform:"scale(1, 1)"}))),(0,ae.eR)("* => void",(0,ae.jt)("100ms linear",(0,ae.oB)({opacity:0})))])};let g=0;const H=new y.OlP("mat-select-scroll-strategy"),ee=new y.OlP("MAT_SELECT_CONFIG"),De={provide:H,deps:[e.aV],useFactory:function R(xe){return()=>xe.scrollStrategies.reposition()}},ct=new y.OlP("MatSelectTrigger");class Ke{constructor(le,pe){this.source=le,this.value=pe}}const Je=(0,A.Kr)((0,A.sb)((0,A.Id)((0,A.FD)(class{constructor(xe,le,pe,qe,re){this._elementRef=xe,this._defaultErrorStateMatcher=le,this._parentForm=pe,this._parentFormGroup=qe,this.ngControl=re,this.stateChanges=new k.x}}))));let ye=(()=>{class xe extends Je{_scrollOptionIntoView(pe){const qe=this.options.toArray()[pe];if(qe){const re=this.panel.nativeElement,ve=(0,A.CB)(pe,this.options,this.optionGroups),ce=qe._getHostElement();re.scrollTop=0===pe&&1===ve?0:(0,A.jH)(ce.offsetTop,ce.offsetHeight,re.scrollTop,re.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(pe){return new Ke(this,pe)}get focused(){return this._focused||this._panelOpen}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(pe){this._hideSingleSelectionIndicator=(0,d.Ig)(pe),this._syncParentProperties()}get placeholder(){return this._placeholder}set placeholder(pe){this._placeholder=pe,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(I.kI.required)??!1}set required(pe){this._required=(0,d.Ig)(pe),this.stateChanges.next()}get multiple(){return this._multiple}set multiple(pe){this._multiple=(0,d.Ig)(pe)}get disableOptionCentering(){return this._disableOptionCentering}set disableOptionCentering(pe){this._disableOptionCentering=(0,d.Ig)(pe)}get compareWith(){return this._compareWith}set compareWith(pe){this._compareWith=pe,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(pe){this._assignValue(pe)&&this._onChange(pe)}get typeaheadDebounceInterval(){return this._typeaheadDebounceInterval}set typeaheadDebounceInterval(pe){this._typeaheadDebounceInterval=(0,d.su)(pe)}get id(){return this._id}set id(pe){this._id=pe||this._uid,this.stateChanges.next()}constructor(pe,qe,re,ve,ce,Ze,We,Ct,ut,It,Ae,Be,rt,$e){super(ce,ve,We,Ct,It),this._viewportRuler=pe,this._changeDetectorRef=qe,this._ngZone=re,this._dir=Ze,this._parentFormField=ut,this._liveAnnouncer=rt,this._defaultOptions=$e,this._positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}],this._panelOpen=!1,this._compareWith=(Ie,lt)=>Ie===lt,this._uid="mat-select-"+g++,this._triggerAriaLabelledBy=null,this._destroy=new k.x,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+g++,this._panelDoneAnimatingStream=new k.x,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this._hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1,this._multiple=!1,this._disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto",this.optionSelectionChanges=(0,z.P)(()=>{const Ie=this.options;return Ie?Ie.changes.pipe((0,W.O)(Ie),(0,j.w)(()=>(0,B.T)(...Ie.map(lt=>lt.onSelectionChange)))):this._ngZone.onStable.pipe((0,K.q)(1),(0,j.w)(()=>this.optionSelectionChanges))}),this.openedChange=new y.vpe,this._openedStream=this.openedChange.pipe((0,X.h)(Ie=>Ie),(0,ie.U)(()=>{})),this._closedStream=this.openedChange.pipe((0,X.h)(Ie=>!Ie),(0,ie.U)(()=>{})),this.selectionChange=new y.vpe,this.valueChange=new y.vpe,this._trackedModal=null,this._skipPredicate=Ie=>!this.panelOpen&&Ie.disabled,this.ngControl&&(this.ngControl.valueAccessor=this),null!=$e?.typeaheadDebounceInterval&&(this._typeaheadDebounceInterval=$e.typeaheadDebounceInterval),this._scrollStrategyFactory=Be,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(Ae)||0,this.id=this.id}ngOnInit(){this._selectionModel=new E.Ov(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,se.x)(),(0,ue.R)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen)),this._viewportRuler.change().pipe((0,ue.R)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}ngAfterContentInit(){this._initKeyManager(),this._selectionModel.changed.pipe((0,ue.R)(this._destroy)).subscribe(pe=>{pe.added.forEach(qe=>qe.select()),pe.removed.forEach(qe=>qe.deselect())}),this.options.changes.pipe((0,W.O)(null),(0,ue.R)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const pe=this._getTriggerAriaLabelledby(),qe=this.ngControl;if(pe!==this._triggerAriaLabelledBy){const re=this._elementRef.nativeElement;this._triggerAriaLabelledBy=pe,pe?re.setAttribute("aria-labelledby",pe):re.removeAttribute("aria-labelledby")}qe&&(this._previousControl!==qe.control&&(void 0!==this._previousControl&&null!==qe.disabled&&qe.disabled!==this.disabled&&(this.disabled=qe.disabled),this._previousControl=qe.control),this.updateErrorState())}ngOnChanges(pe){(pe.disabled||pe.userAriaDescribedBy)&&this.stateChanges.next(),pe.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this._typeaheadDebounceInterval)}ngOnDestroy(){this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._canOpen()&&(this._applyModalPanelOwnership(),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck()),this.stateChanges.next()}_applyModalPanelOwnership(){const pe=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!pe)return;const qe=`${this.id}-panel`;this._trackedModal&&(0,m.iD)(this._trackedModal,"aria-owns",qe),(0,m.Zf)(pe,"aria-owns",qe),this._trackedModal=pe}_clearFromModal(){this._trackedModal&&((0,m.iD)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched()),this.stateChanges.next()}writeValue(pe){this._assignValue(pe)}registerOnChange(pe){this._onChange=pe}registerOnTouched(pe){this._onTouched=pe}setDisabledState(pe){this.disabled=pe,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const pe=this._selectionModel.selected.map(qe=>qe.viewValue);return this._isRtl()&&pe.reverse(),pe.join(", ")}return this._selectionModel.selected[0].viewValue}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(pe){this.disabled||(this.panelOpen?this._handleOpenKeydown(pe):this._handleClosedKeydown(pe))}_handleClosedKeydown(pe){const qe=pe.keyCode,re=qe===M.JH||qe===M.LH||qe===M.oh||qe===M.SV,ve=qe===M.K5||qe===M.L_,ce=this._keyManager;if(!ce.isTyping()&&ve&&!(0,M.Vb)(pe)||(this.multiple||pe.altKey)&&re)pe.preventDefault(),this.open();else if(!this.multiple){const Ze=this.selected;ce.onKeydown(pe);const We=this.selected;We&&Ze!==We&&this._liveAnnouncer.announce(We.viewValue,1e4)}}_handleOpenKeydown(pe){const qe=this._keyManager,re=pe.keyCode,ve=re===M.JH||re===M.LH,ce=qe.isTyping();if(ve&&pe.altKey)pe.preventDefault(),this.close();else if(ce||re!==M.K5&&re!==M.L_||!qe.activeItem||(0,M.Vb)(pe))if(!ce&&this._multiple&&re===M.A&&pe.ctrlKey){pe.preventDefault();const Ze=this.options.some(We=>!We.disabled&&!We.selected);this.options.forEach(We=>{We.disabled||(Ze?We.select():We.deselect())})}else{const Ze=qe.activeItemIndex;qe.onKeydown(pe),this._multiple&&ve&&pe.shiftKey&&qe.activeItem&&qe.activeItemIndex!==Ze&&qe.activeItem._selectViaInteraction()}else pe.preventDefault(),qe.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,K.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(pe){if(this.options.forEach(qe=>qe.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&pe)Array.isArray(pe),pe.forEach(qe=>this._selectOptionByValue(qe)),this._sortValues();else{const qe=this._selectOptionByValue(pe);qe?this._keyManager.updateActiveItem(qe):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(pe){const qe=this.options.find(re=>{if(this._selectionModel.isSelected(re))return!1;try{return null!=re.value&&this._compareWith(re.value,pe)}catch{return!1}});return qe&&this._selectionModel.select(qe),qe}_assignValue(pe){return!!(pe!==this._value||this._multiple&&Array.isArray(pe))&&(this.options&&this._setSelectionByValue(pe),this._value=pe,!0)}_getOverlayWidth(pe){return"auto"===this.panelWidth?(pe instanceof e.xu?pe.elementRef:pe||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const pe of this.options)pe._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new m.s1(this.options).withTypeAhead(this._typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const pe=(0,B.T)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,ue.R)(pe)).subscribe(qe=>{this._onSelect(qe.source,qe.isUserInput),qe.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,B.T)(...this.options.map(qe=>qe._stateChanges)).pipe((0,ue.R)(pe)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(pe,qe){const re=this._selectionModel.isSelected(pe);null!=pe.value||this._multiple?(re!==pe.selected&&(pe.selected?this._selectionModel.select(pe):this._selectionModel.deselect(pe)),qe&&this._keyManager.setActiveItem(pe),this.multiple&&(this._sortValues(),qe&&this.focus())):(pe.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(pe.value)),re!==this._selectionModel.isSelected(pe)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const pe=this.options.toArray();this._selectionModel.sort((qe,re)=>this.sortComparator?this.sortComparator(qe,re,pe):pe.indexOf(qe)-pe.indexOf(re)),this.stateChanges.next()}}_propagateChanges(pe){let qe;qe=this.multiple?this.selected.map(re=>re.value):this.selected?this.selected.value:pe,this._value=qe,this.valueChange.emit(qe),this._onChange(qe),this.selectionChange.emit(this._getChangeEvent(qe)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let pe=-1;for(let qe=0;qe0}focus(pe){this._elementRef.nativeElement.focus(pe)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const pe=this._parentFormField?.getLabelId();return this.ariaLabelledby?(pe?pe+" ":"")+this.ariaLabelledby:pe}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const pe=this._parentFormField?.getLabelId();let qe=(pe?pe+" ":"")+this._valueId;return this.ariaLabelledby&&(qe+=" "+this.ariaLabelledby),qe}_panelDoneAnimating(pe){this.openedChange.emit(pe)}setDescribedByIds(pe){pe.length?this._elementRef.nativeElement.setAttribute("aria-describedby",pe.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static#e=this.\u0275fac=function(qe){return new(qe||xe)(y.Y36(w.rL),y.Y36(y.sBO),y.Y36(y.R0b),y.Y36(A.rD),y.Y36(y.SBq),y.Y36(P.Is,8),y.Y36(I.F,8),y.Y36(I.sg,8),y.Y36(l.G_,8),y.Y36(I.a5,10),y.$8M("tabindex"),y.Y36(H),y.Y36(m.Kd),y.Y36(ee,8))};static#t=this.\u0275cmp=y.Xpm({type:xe,selectors:[["mat-select"]],contentQueries:function(qe,re,ve){if(1&qe&&(y.Suo(ve,ct,5),y.Suo(ve,A.ey,5),y.Suo(ve,A.K7,5)),2&qe){let ce;y.iGM(ce=y.CRH())&&(re.customTrigger=ce.first),y.iGM(ce=y.CRH())&&(re.options=ce),y.iGM(ce=y.CRH())&&(re.optionGroups=ce)}},viewQuery:function(qe,re){if(1&qe&&(y.Gf(Me,5),y.Gf(J,5),y.Gf(e.pI,5)),2&qe){let ve;y.iGM(ve=y.CRH())&&(re.trigger=ve.first),y.iGM(ve=y.CRH())&&(re.panel=ve.first),y.iGM(ve=y.CRH())&&(re._overlayDir=ve.first)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox","ngSkipHydration","",1,"mat-mdc-select"],hostVars:19,hostBindings:function(qe,re){1&qe&&y.NdJ("keydown",function(ce){return re._handleKeydown(ce)})("focus",function(){return re._onFocus()})("blur",function(){return re._onBlur()}),2&qe&&(y.uIk("id",re.id)("tabindex",re.tabIndex)("aria-controls",re.panelOpen?re.id+"-panel":null)("aria-expanded",re.panelOpen)("aria-label",re.ariaLabel||null)("aria-required",re.required.toString())("aria-disabled",re.disabled.toString())("aria-invalid",re.errorState)("aria-activedescendant",re._getAriaActiveDescendant()),y.ekj("mat-mdc-select-disabled",re.disabled)("mat-mdc-select-invalid",re.errorState)("mat-mdc-select-required",re.required)("mat-mdc-select-empty",re.empty)("mat-mdc-select-multiple",re.multiple))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex",userAriaDescribedBy:["aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",hideSingleSelectionIndicator:"hideSingleSelectionIndicator",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",panelWidth:"panelWidth"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],features:[y._Bn([{provide:l.Eo,useExisting:xe},{provide:A.HF,useExisting:xe}]),y.qOj,y.TTD],ngContentSelectors:C,decls:11,vars:8,consts:[["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],[1,"mat-mdc-select-value"],["class","mat-mdc-select-placeholder mat-mdc-select-min-line"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","backdropClick","attach","detach"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"ngClass","keydown"],["panel",""]],template:function(qe,re){if(1&qe&&(y.F$t(h),y.TgZ(0,"div",0,1),y.NdJ("click",function(){return re.toggle()}),y.TgZ(3,"div",2),y.YNc(4,he,2,1,"span",3)(5,s,3,1),y.qZA(),y.TgZ(6,"div",4)(7,"div",5),y.O4$(),y.TgZ(8,"svg",6),y._UZ(9,"path",7),y.qZA()()()(),y.YNc(10,f,3,9,"ng-template",8),y.NdJ("backdropClick",function(){return re.close()})("attach",function(){return re._onAttached()})("detach",function(){return re.close()})),2&qe){const ve=y.MAs(1);y.xp6(3),y.uIk("id",re._valueId),y.xp6(1),y.um2(4,re.empty?4:5),y.xp6(6),y.Q6J("cdkConnectedOverlayPanelClass",re._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",re._scrollStrategy)("cdkConnectedOverlayOrigin",re._preferredOverlayOrigin||ve)("cdkConnectedOverlayOpen",re.panelOpen)("cdkConnectedOverlayPositions",re._positions)("cdkConnectedOverlayWidth",re._overlayWidth)}},dependencies:[t.mk,e.pI,e.xu],styles:['.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color);font-family:var(--mat-select-trigger-text-font);line-height:var(--mat-select-trigger-text-line-height);font-size:var(--mat-select-trigger-text-size);font-weight:var(--mat-select-trigger-text-weight);letter-spacing:var(--mat-select-trigger-text-tracking)}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color)}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:translateY(-8px)}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color)}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow{color:var(--mat-select-invalid-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color)}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:GrayText}div.mat-mdc-select-panel{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:static;background-color:var(--mat-select-panel-background-color)}.cdk-high-contrast-active div.mat-mdc-select-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color)}._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}'],encapsulation:2,data:{animation:[D.transformPanel]},changeDetection:0})}return xe})(),fe=(()=>{class xe{static#e=this.\u0275fac=function(qe){return new(qe||xe)};static#t=this.\u0275dir=y.lG2({type:xe,selectors:[["mat-select-trigger"]],features:[y._Bn([{provide:ct,useExisting:xe}])]})}return xe})(),de=(()=>{class xe{static#e=this.\u0275fac=function(qe){return new(qe||xe)};static#t=this.\u0275mod=y.oAB({type:xe});static#i=this.\u0275inj=y.cJS({providers:[De],imports:[t.ez,e.U8,A.Ng,A.BQ,w.ZD,l.lN,A.Ng,A.BQ]})}return xe})()},2651:(Fe,q,p)=>{"use strict";p.d(q,{JX:()=>ct,Rh:()=>De,SJ:()=>Je,TM:()=>Ke});var e=p(5407),t=p(9212),y=p(3680),A=p(4300),l=p(9388),w=p(2495),m=p(6028),P=p(2831),d=p(6814),E=p(8645),M=p(2438),I=p(3019),k=p(2181),z=p(7398),B=p(975),W=p(9773),j=p(3997),K=p(8180),X=p(7921),ie=p(3620),se=p(6825);const ue=["*"],ae=["content"];function Me(ye,fe){if(1&ye){const de=t.EpF();t.TgZ(0,"div",1),t.NdJ("click",function(){t.CHM(de);const le=t.oxw();return t.KtG(le._onBackdropClicked())}),t.qZA()}if(2&ye){const de=t.oxw();t.ekj("mat-drawer-shown",de._isShowingBackdrop())}}function J(ye,fe){1&ye&&(t.TgZ(0,"mat-drawer-content"),t.Hsn(1,2),t.qZA())}const he=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],S=["mat-drawer","mat-drawer-content","*"];function n(ye,fe){if(1&ye){const de=t.EpF();t.TgZ(0,"div",1),t.NdJ("click",function(){t.CHM(de);const le=t.oxw();return t.KtG(le._onBackdropClicked())}),t.qZA()}if(2&ye){const de=t.oxw();t.ekj("mat-drawer-shown",de._isShowingBackdrop())}}function s(ye,fe){1&ye&&(t.TgZ(0,"mat-sidenav-content"),t.Hsn(1,2),t.qZA())}const f=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],h=["mat-sidenav","mat-sidenav-content","*"],D={transformDrawer:(0,se.X$)("transform",[(0,se.SB)("open, open-instant",(0,se.oB)({transform:"none",visibility:"visible"})),(0,se.SB)("void",(0,se.oB)({"box-shadow":"none",visibility:"hidden"})),(0,se.eR)("void => open-instant",(0,se.jt)("0ms")),(0,se.eR)("void <=> open, open-instant => void",(0,se.jt)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},v=new t.OlP("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function g(){return!1}}),r=new t.OlP("MAT_DRAWER_CONTAINER");let H=(()=>{class ye extends e.PQ{constructor(de,xe,le,pe,qe){super(le,pe,qe),this._changeDetectorRef=de,this._container=xe}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(xe){return new(xe||ye)(t.Y36(t.sBO),t.Y36((0,t.Gpc)(()=>ee)),t.Y36(t.SBq),t.Y36(e.mF),t.Y36(t.R0b))};static#t=this.\u0275cmp=t.Xpm({type:ye,selectors:[["mat-drawer-content"]],hostAttrs:["ngSkipHydration","",1,"mat-drawer-content"],hostVars:4,hostBindings:function(xe,le){2&xe&&t.Udp("margin-left",le._container._contentMargins.left,"px")("margin-right",le._container._contentMargins.right,"px")},features:[t._Bn([{provide:e.PQ,useExisting:ye}]),t.qOj],ngContentSelectors:ue,decls:1,vars:0,template:function(xe,le){1&xe&&(t.F$t(),t.Hsn(0))},encapsulation:2,changeDetection:0})}return ye})(),R=(()=>{class ye{get position(){return this._position}set position(de){(de="end"===de?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(de),this._position=de,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(de){this._mode=de,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(de){this._disableClose=(0,w.Ig)(de)}get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(de){("true"===de||"false"===de||null==de)&&(de=(0,w.Ig)(de)),this._autoFocus=de}get opened(){return this._opened}set opened(de){this.toggle((0,w.Ig)(de))}constructor(de,xe,le,pe,qe,re,ve,ce){this._elementRef=de,this._focusTrapFactory=xe,this._focusMonitor=le,this._platform=pe,this._ngZone=qe,this._interactivityChecker=re,this._doc=ve,this._container=ce,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new E.x,this._animationEnd=new E.x,this._animationState="void",this.openedChange=new t.vpe(!0),this._openedStream=this.openedChange.pipe((0,k.h)(Ze=>Ze),(0,z.U)(()=>{})),this.openedStart=this._animationStarted.pipe((0,k.h)(Ze=>Ze.fromState!==Ze.toState&&0===Ze.toState.indexOf("open")),(0,B.h)(void 0)),this._closedStream=this.openedChange.pipe((0,k.h)(Ze=>!Ze),(0,z.U)(()=>{})),this.closedStart=this._animationStarted.pipe((0,k.h)(Ze=>Ze.fromState!==Ze.toState&&"void"===Ze.toState),(0,B.h)(void 0)),this._destroyed=new E.x,this.onPositionChanged=new t.vpe,this._modeChanged=new E.x,this.openedChange.subscribe(Ze=>{Ze?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,M.R)(this._elementRef.nativeElement,"keydown").pipe((0,k.h)(Ze=>Ze.keyCode===m.hY&&!this.disableClose&&!(0,m.Vb)(Ze)),(0,W.R)(this._destroyed)).subscribe(Ze=>this._ngZone.run(()=>{this.close(),Ze.stopPropagation(),Ze.preventDefault()}))}),this._animationEnd.pipe((0,j.x)((Ze,We)=>Ze.fromState===We.fromState&&Ze.toState===We.toState)).subscribe(Ze=>{const{fromState:We,toState:Ct}=Ze;(0===Ct.indexOf("open")&&"void"===We||"void"===Ct&&0===We.indexOf("open"))&&this.openedChange.emit(this._opened)})}_forceFocus(de,xe){this._interactivityChecker.isFocusable(de)||(de.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const le=()=>{de.removeEventListener("blur",le),de.removeEventListener("mousedown",le),de.removeAttribute("tabindex")};de.addEventListener("blur",le),de.addEventListener("mousedown",le)})),de.focus(xe)}_focusByCssSelector(de,xe){let le=this._elementRef.nativeElement.querySelector(de);le&&this._forceFocus(le,xe)}_takeFocus(){if(!this._focusTrap)return;const de=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(xe=>{!xe&&"function"==typeof this._elementRef.nativeElement.focus&&de.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(de){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,de):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const de=this._doc.activeElement;return!!de&&this._elementRef.nativeElement.contains(de)}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(){this._focusTrap&&this._focusTrap.destroy(),this._anchor?.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(de){return this.toggle(!0,de)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(de=!this.opened,xe){de&&xe&&(this._openedVia=xe);const le=this._setOpen(de,!de&&this._isFocusWithinDrawer(),this._openedVia||"program");return de||(this._openedVia=null),le}_setOpen(de,xe,le){return this._opened=de,de?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",xe&&this._restoreFocus(le)),this._updateFocusTrapState(),new Promise(pe=>{this.openedChange.pipe((0,K.q)(1)).subscribe(qe=>pe(qe?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop)}_updatePositionInParent(de){const xe=this._elementRef.nativeElement,le=xe.parentNode;"end"===de?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),le.insertBefore(this._anchor,xe)),le.appendChild(xe)):this._anchor&&this._anchor.parentNode.insertBefore(xe,this._anchor)}static#e=this.\u0275fac=function(xe){return new(xe||ye)(t.Y36(t.SBq),t.Y36(A.qV),t.Y36(A.tE),t.Y36(P.t4),t.Y36(t.R0b),t.Y36(A.ic),t.Y36(d.K0,8),t.Y36(r,8))};static#t=this.\u0275cmp=t.Xpm({type:ye,selectors:[["mat-drawer"]],viewQuery:function(xe,le){if(1&xe&&t.Gf(ae,5),2&xe){let pe;t.iGM(pe=t.CRH())&&(le._content=pe.first)}},hostAttrs:["tabIndex","-1","ngSkipHydration","",1,"mat-drawer"],hostVars:12,hostBindings:function(xe,le){1&xe&&t.WFA("@transform.start",function(qe){return le._animationStarted.next(qe)})("@transform.done",function(qe){return le._animationEnd.next(qe)}),2&xe&&(t.uIk("align",null),t.d8E("@transform",le._animationState),t.ekj("mat-drawer-end","end"===le.position)("mat-drawer-over","over"===le.mode)("mat-drawer-push","push"===le.mode)("mat-drawer-side","side"===le.mode)("mat-drawer-opened",le.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:ue,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(xe,le){1&xe&&(t.F$t(),t.TgZ(0,"div",0,1),t.Hsn(2),t.qZA())},dependencies:[e.PQ],encapsulation:2,data:{animation:[D.transformDrawer]},changeDetection:0})}return ye})(),ee=(()=>{class ye{get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(de){this._autosize=(0,w.Ig)(de)}get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(de){this._backdropOverride=null==de?null:(0,w.Ig)(de)}get scrollable(){return this._userContent||this._content}constructor(de,xe,le,pe,qe,re=!1,ve){this._dir=de,this._element=xe,this._ngZone=le,this._changeDetectorRef=pe,this._animationMode=ve,this._drawers=new t.n_E,this.backdropClick=new t.vpe,this._destroyed=new E.x,this._doCheckSubject=new E.x,this._contentMargins={left:null,right:null},this._contentMarginChanges=new E.x,de&&de.change.pipe((0,W.R)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),qe.change().pipe((0,W.R)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=re}ngAfterContentInit(){this._allDrawers.changes.pipe((0,X.O)(this._allDrawers),(0,W.R)(this._destroyed)).subscribe(de=>{this._drawers.reset(de.filter(xe=>!xe._container||xe._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,X.O)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(de=>{this._watchDrawerToggle(de),this._watchDrawerPosition(de),this._watchDrawerMode(de)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,ie.b)(10),(0,W.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(de=>de.open())}close(){this._drawers.forEach(de=>de.close())}updateContentMargins(){let de=0,xe=0;if(this._left&&this._left.opened)if("side"==this._left.mode)de+=this._left._getWidth();else if("push"==this._left.mode){const le=this._left._getWidth();de+=le,xe-=le}if(this._right&&this._right.opened)if("side"==this._right.mode)xe+=this._right._getWidth();else if("push"==this._right.mode){const le=this._right._getWidth();xe+=le,de-=le}de=de||null,xe=xe||null,(de!==this._contentMargins.left||xe!==this._contentMargins.right)&&(this._contentMargins={left:de,right:xe},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(de){de._animationStarted.pipe((0,k.h)(xe=>xe.fromState!==xe.toState),(0,W.R)(this._drawers.changes)).subscribe(xe=>{"open-instant"!==xe.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==de.mode&&de.openedChange.pipe((0,W.R)(this._drawers.changes)).subscribe(()=>this._setContainerClass(de.opened))}_watchDrawerPosition(de){de&&de.onPositionChanged.pipe((0,W.R)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,K.q)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(de){de&&de._modeChanged.pipe((0,W.R)((0,I.T)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(de){const xe=this._element.nativeElement.classList,le="mat-drawer-container-has-open";de?xe.add(le):xe.remove(le)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(de=>{"end"==de.position?this._end=de:this._start=de}),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(de=>de&&!de.disableClose&&this._drawerHasBackdrop(de)).forEach(de=>de._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(de){return null!=de&&de.opened}_drawerHasBackdrop(de){return null==this._backdropOverride?!!de&&"side"!==de.mode:this._backdropOverride}static#e=this.\u0275fac=function(xe){return new(xe||ye)(t.Y36(l.Is,8),t.Y36(t.SBq),t.Y36(t.R0b),t.Y36(t.sBO),t.Y36(e.rL),t.Y36(v),t.Y36(t.QbO,8))};static#t=this.\u0275cmp=t.Xpm({type:ye,selectors:[["mat-drawer-container"]],contentQueries:function(xe,le,pe){if(1&xe&&(t.Suo(pe,H,5),t.Suo(pe,R,5)),2&xe){let qe;t.iGM(qe=t.CRH())&&(le._content=qe.first),t.iGM(qe=t.CRH())&&(le._allDrawers=qe)}},viewQuery:function(xe,le){if(1&xe&&t.Gf(H,5),2&xe){let pe;t.iGM(pe=t.CRH())&&(le._userContent=pe.first)}},hostAttrs:["ngSkipHydration","",1,"mat-drawer-container"],hostVars:2,hostBindings:function(xe,le){2&xe&&t.ekj("mat-drawer-container-explicit-backdrop",le._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[t._Bn([{provide:r,useExisting:ye}])],ngContentSelectors:S,decls:4,vars:2,consts:[["class","mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(xe,le){1&xe&&(t.F$t(he),t.YNc(0,Me,1,2,"div",0),t.Hsn(1),t.Hsn(2,1),t.YNc(3,J,2,0,"mat-drawer-content")),2&xe&&(t.um2(0,le.hasBackdrop?0:-1),t.xp6(3),t.um2(3,le._content?-1:3))},dependencies:[H],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);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;background-color:var(--mat-sidenav-scrim-color)}.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{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);position:relative;z-index:4;color:var(--mat-sidenav-container-text-color);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);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);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return ye})(),De=(()=>{class ye extends H{constructor(de,xe,le,pe,qe){super(de,xe,le,pe,qe)}static#e=this.\u0275fac=function(xe){return new(xe||ye)(t.Y36(t.sBO),t.Y36((0,t.Gpc)(()=>Ke)),t.Y36(t.SBq),t.Y36(e.mF),t.Y36(t.R0b))};static#t=this.\u0275cmp=t.Xpm({type:ye,selectors:[["mat-sidenav-content"]],hostAttrs:["ngSkipHydration","",1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(xe,le){2&xe&&t.Udp("margin-left",le._container._contentMargins.left,"px")("margin-right",le._container._contentMargins.right,"px")},features:[t._Bn([{provide:e.PQ,useExisting:ye}]),t.qOj],ngContentSelectors:ue,decls:1,vars:0,template:function(xe,le){1&xe&&(t.F$t(),t.Hsn(0))},encapsulation:2,changeDetection:0})}return ye})(),ct=(()=>{class ye extends R{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(de){this._fixedInViewport=(0,w.Ig)(de)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(de){this._fixedTopGap=(0,w.su)(de)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(de){this._fixedBottomGap=(0,w.su)(de)}static#e=this.\u0275fac=(()=>{let de;return function(le){return(de||(de=t.n5z(ye)))(le||ye)}})();static#t=this.\u0275cmp=t.Xpm({type:ye,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1","ngSkipHydration","",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(xe,le){2&xe&&(t.uIk("align",null),t.Udp("top",le.fixedInViewport?le.fixedTopGap:null,"px")("bottom",le.fixedInViewport?le.fixedBottomGap:null,"px"),t.ekj("mat-drawer-end","end"===le.position)("mat-drawer-over","over"===le.mode)("mat-drawer-push","push"===le.mode)("mat-drawer-side","side"===le.mode)("mat-drawer-opened",le.opened)("mat-sidenav-fixed",le.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[t.qOj],ngContentSelectors:ue,decls:3,vars:0,consts:[["cdkScrollable","",1,"mat-drawer-inner-container"],["content",""]],template:function(xe,le){1&xe&&(t.F$t(),t.TgZ(0,"div",0,1),t.Hsn(2),t.qZA())},dependencies:[e.PQ],encapsulation:2,data:{animation:[D.transformDrawer]},changeDetection:0})}return ye})(),Ke=(()=>{class ye extends ee{constructor(){super(...arguments),this._allDrawers=void 0,this._content=void 0}static#e=this.\u0275fac=(()=>{let de;return function(le){return(de||(de=t.n5z(ye)))(le||ye)}})();static#t=this.\u0275cmp=t.Xpm({type:ye,selectors:[["mat-sidenav-container"]],contentQueries:function(xe,le,pe){if(1&xe&&(t.Suo(pe,De,5),t.Suo(pe,ct,5)),2&xe){let qe;t.iGM(qe=t.CRH())&&(le._content=qe.first),t.iGM(qe=t.CRH())&&(le._allDrawers=qe)}},hostAttrs:["ngSkipHydration","",1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(xe,le){2&xe&&t.ekj("mat-drawer-container-explicit-backdrop",le._backdropOverride)},exportAs:["matSidenavContainer"],features:[t._Bn([{provide:r,useExisting:ye}]),t.qOj],ngContentSelectors:h,decls:4,vars:2,consts:[["class","mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(xe,le){1&xe&&(t.F$t(f),t.YNc(0,n,1,2,"div",0),t.Hsn(1),t.Hsn(2,1),t.YNc(3,s,2,0,"mat-sidenav-content")),2&xe&&(t.um2(0,le.hasBackdrop?0:-1),t.xp6(3),t.um2(3,le._content?-1:3))},dependencies:[De],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);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;background-color:var(--mat-sidenav-scrim-color)}.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{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);position:relative;z-index:4;color:var(--mat-sidenav-container-text-color);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);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);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return ye})(),Je=(()=>{class ye{static#e=this.\u0275fac=function(xe){return new(xe||ye)};static#t=this.\u0275mod=t.oAB({type:ye});static#i=this.\u0275inj=t.cJS({imports:[y.BQ,e.ZD,e.ZD,y.BQ]})}return ye})()},2599:(Fe,q,p)=>{"use strict";p.d(q,{Rr:()=>I,rP:()=>W});var e=p(9212),t=p(6223),y=p(4300),A=p(3680);const l=["switch"];function w(j,K){1&j&&(e.TgZ(0,"div",12),e.O4$(),e.TgZ(1,"svg",13),e._UZ(2,"path",14),e.qZA(),e.TgZ(3,"svg",15),e._UZ(4,"path",16),e.qZA()())}const m=["*"],P=new e.OlP("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1})}),d={provide:t.JU,useExisting:(0,e.Gpc)(()=>I),multi:!0};class E{constructor(K,X){this.source=K,this.checked=X}}let M=0,I=(()=>{class j{_createChangeEvent(X){return new E(this,X)}get buttonId(){return`${this.id||this._uniqueId}-button`}focus(){this._switchElement.nativeElement.focus()}get checked(){return this._checked}set checked(X){this._checked=X,this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(X,ie,se,ue,ae,Me){this._elementRef=X,this._focusMonitor=ie,this._changeDetectorRef=se,this.defaults=ae,this._onChange=J=>{},this._onTouched=()=>{},this._checked=!1,this.name=null,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.change=new e.vpe,this.toggleChange=new e.vpe,this.tabIndex=parseInt(ue)||0,this.color=ae.color||"accent",this._noopAnimations="NoopAnimations"===Me,this.id=this._uniqueId="mat-mdc-slide-toggle-"+ ++M,this.hideIcon=ae.hideIcon??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(X=>{"keyboard"===X||"program"===X?(this._focused=!0,this._changeDetectorRef.markForCheck()):X||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(X){this.checked=!!X}registerOnChange(X){this._onChange=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this.disabled=X,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}_handleClick(){this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new E(this,this.checked)))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static#e=this.\u0275fac=function(ie){return new(ie||j)(e.Y36(e.SBq),e.Y36(y.tE),e.Y36(e.sBO),e.$8M("tabindex"),e.Y36(P),e.Y36(e.QbO,8))};static#t=this.\u0275cmp=e.Xpm({type:j,selectors:[["mat-slide-toggle"]],viewQuery:function(ie,se){if(1&ie&&e.Gf(l,5),2&ie){let ue;e.iGM(ue=e.CRH())&&(se._switchElement=ue.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(ie,se){2&ie&&(e.Ikx("id",se.id),e.uIk("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),e.Tol(se.color?"mat-"+se.color:""),e.ekj("mat-mdc-slide-toggle-focused",se._focused)("mat-mdc-slide-toggle-checked",se.checked)("_mat-animation-noopable",se._noopAnimations))},inputs:{disabled:["disabled","disabled",e.VuI],disableRipple:["disableRipple","disableRipple",e.VuI],color:"color",tabIndex:["tabIndex","tabIndex",X=>null==X?0:(0,e.Cb_)(X)],name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],ariaDescribedby:["aria-describedby","ariaDescribedby"],required:["required","required",e.VuI],checked:["checked","checked",e.VuI],hideIcon:["hideIcon","hideIcon",e.VuI]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],features:[e._Bn([d]),e.Xq5],ngContentSelectors:m,decls:13,vars:25,consts:[[1,"mdc-form-field"],["role","switch","type","button",1,"mdc-switch",3,"tabIndex","disabled","click"],["switch",""],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],["class","mdc-switch__icons"],[1,"mdc-label",3,"for","click"],[1,"mdc-switch__icons"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(ie,se){if(1&ie&&(e.F$t(),e.TgZ(0,"div",0)(1,"button",1,2),e.NdJ("click",function(){return se._handleClick()}),e._UZ(3,"div",3),e.TgZ(4,"div",4)(5,"div",5)(6,"div",6),e._UZ(7,"div",7),e.qZA(),e.TgZ(8,"div",8),e._UZ(9,"div",9),e.qZA(),e.YNc(10,w,5,0,"div",10),e.qZA()()(),e.TgZ(11,"label",11),e.NdJ("click",function(ae){return ae.stopPropagation()}),e.Hsn(12),e.qZA()()),2&ie){const ue=e.MAs(2);e.ekj("mdc-form-field--align-end","before"==se.labelPosition),e.xp6(1),e.ekj("mdc-switch--selected",se.checked)("mdc-switch--unselected",!se.checked)("mdc-switch--checked",se.checked)("mdc-switch--disabled",se.disabled),e.Q6J("tabIndex",se.disabled?-1:se.tabIndex)("disabled",se.disabled),e.uIk("id",se.buttonId)("name",se.name)("aria-label",se.ariaLabel)("aria-labelledby",se._getAriaLabelledBy())("aria-describedby",se.ariaDescribedby)("aria-required",se.required||null)("aria-checked",se.checked),e.xp6(8),e.Q6J("matRippleTrigger",ue)("matRippleDisabled",se.disableRipple||se.disabled)("matRippleCentered",!0),e.xp6(1),e.um2(10,se.hideIcon?-1:10),e.xp6(1),e.Q6J("for",se.buttonId),e.uIk("id",se._labelId)}},dependencies:[A.wG],styles:['.mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative}.mdc-switch[hidden]{display:none}.mdc-switch:disabled{cursor:default;pointer-events:none}.mdc-switch__track{overflow:hidden;position:relative;width:100%}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%}@media screen and (forced-colors: active){.mdc-switch__track::before,.mdc-switch__track::after{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(-100%)}[dir=rtl] .mdc-switch__track::after,.mdc-switch__track[dir=rtl]::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track[dir=rtl]::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0)}[dir=rtl] .mdc-switch__handle-track,.mdc-switch__handle-track[dir=rtl]{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track,.mdc-switch--selected .mdc-switch__handle-track[dir=rtl]{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto}[dir=rtl] .mdc-switch__handle,.mdc-switch__handle[dir=rtl]{left:auto;right:0}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media screen and (forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-elevation-overlay{bottom:0;left:0;right:0;top:0}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1}.mdc-switch:disabled .mdc-switch__ripple{display:none}.mdc-switch__icons{height:100%;position:relative;width:100%;z-index:1}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mdc-switch{width:var(--mdc-switch-track-width)}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-selected-handle-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-hover-handle-color)}.mdc-switch.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-focus-handle-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-selected-pressed-handle-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-selected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-unselected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-hover-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-focus-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-unselected-pressed-handle-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-unselected-handle-color)}.mdc-switch .mdc-switch__handle::before{background:var(--mdc-switch-handle-surface-color)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation)}.mdc-switch .mdc-switch__focus-ring-wrapper,.mdc-switch .mdc-switch__handle{height:var(--mdc-switch-handle-height)}.mdc-switch:disabled .mdc-switch__handle::after{opacity:var(--mdc-switch-disabled-handle-opacity)}.mdc-switch .mdc-switch__handle{border-radius:var(--mdc-switch-handle-shape)}.mdc-switch .mdc-switch__handle{width:var(--mdc-switch-handle-width)}.mdc-switch .mdc-switch__handle-track{width:calc(100% - var(--mdc-switch-handle-width))}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__icon{fill:var(--mdc-switch-selected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-selected-icon-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__icon{fill:var(--mdc-switch-unselected-icon-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-unselected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-selected-icon-opacity)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-unselected-icon-opacity)}.mdc-switch.mdc-switch--selected .mdc-switch__icon{width:var(--mdc-switch-selected-icon-size);height:var(--mdc-switch-selected-icon-size)}.mdc-switch.mdc-switch--unselected .mdc-switch__icon{width:var(--mdc-switch-unselected-icon-size);height:var(--mdc-switch-unselected-icon-size)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-hover-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-focus-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-pressed-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-hover-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-focus-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-pressed-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-selected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-selected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-unselected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-unselected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch .mdc-switch__ripple{height:var(--mdc-switch-state-layer-size);width:var(--mdc-switch-state-layer-size)}.mdc-switch .mdc-switch__track{height:var(--mdc-switch-track-height)}.mdc-switch:disabled .mdc-switch__track{opacity:var(--mdc-switch-disabled-track-opacity)}.mdc-switch:enabled .mdc-switch__track::after{background:var(--mdc-switch-selected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mdc-switch-selected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::after{background:var(--mdc-switch-disabled-selected-track-color)}.mdc-switch:enabled .mdc-switch__track::before{background:var(--mdc-switch-unselected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mdc-switch-unselected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::before{background:var(--mdc-switch-disabled-unselected-track-color)}.mdc-switch .mdc-switch__track{border-radius:var(--mdc-switch-track-shape)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation-shadow)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation-shadow)}.mat-mdc-slide-toggle .mdc-label{font-family:var(--mat-slide-toggle-label-text-font);font-size:var(--mat-slide-toggle-label-text-size);letter-spacing:var(--mat-slide-toggle-label-text-tracking);line-height:var(--mat-slide-toggle-label-text-line-height);font-weight:var(--mat-slide-toggle-label-text-weight)}.mat-mdc-slide-toggle{display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle .mdc-switch__ripple::after{content:"";opacity:0}.mat-mdc-slide-toggle .mdc-switch:hover .mdc-switch__ripple::after{opacity:.04;transition:opacity 75ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after{opacity:.12}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-mdc-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-elevation-overlay,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}'],encapsulation:2,changeDetection:0})}return j})(),B=(()=>{class j{static#e=this.\u0275fac=function(ie){return new(ie||j)};static#t=this.\u0275mod=e.oAB({type:j});static#i=this.\u0275inj=e.cJS({})}return j})(),W=(()=>{class j{static#e=this.\u0275fac=function(ie){return new(ie||j)};static#t=this.\u0275mod=e.oAB({type:j});static#i=this.\u0275inj=e.cJS({imports:[B,A.BQ,A.si,B,A.BQ]})}return j})()},2939:(Fe,q,p)=>{"use strict";p.d(q,{Ve:()=>s,ZX:()=>C,ux:()=>f});var e=p(9212),t=p(6814),y=p(2296),A=p(8645),l=p(6825),w=p(8484),m=p(2831),P=p(8180),d=p(9773),E=p(4300),M=p(1088),I=p(3651),k=p(3680);function z(D,O){if(1&D){const v=e.EpF();e.TgZ(0,"div",1)(1,"button",2),e.NdJ("click",function(){e.CHM(v);const g=e.oxw();return e.KtG(g.action())}),e._uU(2),e.qZA()()}if(2&D){const v=e.oxw();e.xp6(2),e.hij(" ",v.data.action," ")}}const B=["label"];function W(D,O){}const j=Math.pow(2,31)-1;class K{constructor(O,v){this._overlayRef=v,this._afterDismissed=new A.x,this._afterOpened=new A.x,this._onAction=new A.x,this._dismissedByAction=!1,this.containerInstance=O,O._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(O){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(O,j))}_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}}const X=new e.OlP("MatSnackBarData");class ie{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}let se=(()=>{class D{static#e=this.\u0275fac=function(r){return new(r||D)};static#t=this.\u0275dir=e.lG2({type:D,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"],standalone:!0})}return D})(),ue=(()=>{class D{static#e=this.\u0275fac=function(r){return new(r||D)};static#t=this.\u0275dir=e.lG2({type:D,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"],standalone:!0})}return D})(),ae=(()=>{class D{static#e=this.\u0275fac=function(r){return new(r||D)};static#t=this.\u0275dir=e.lG2({type:D,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"],standalone:!0})}return D})(),Me=(()=>{class D{constructor(v,r){this.snackBarRef=v,this.data=r}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static#e=this.\u0275fac=function(r){return new(r||D)(e.Y36(K),e.Y36(X))};static#t=this.\u0275cmp=e.Xpm({type:D,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],standalone:!0,features:[e.jDz],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(r,g){1&r&&(e.TgZ(0,"div",0),e._uU(1),e.qZA(),e.YNc(2,z,3,1,"div",1)),2&r&&(e.xp6(1),e.hij(" ",g.data.message,"\n"),e.xp6(1),e.um2(2,g.hasAction?2:-1))},dependencies:[y.ot,y.lW,se,ue,ae,t.ez],styles:[".mat-mdc-simple-snack-bar{display:flex}"],encapsulation:2,changeDetection:0})}return D})();const J={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 he=0,S=(()=>{class D extends w.en{constructor(v,r,g,H,R){super(),this._ngZone=v,this._elementRef=r,this._changeDetectorRef=g,this._platform=H,this.snackBarConfig=R,this._document=(0,e.f3M)(t.K0),this._trackedModals=new Set,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new A.x,this._onExit=new A.x,this._onEnter=new A.x,this._animationState="void",this._liveElementId="mat-snack-bar-container-live-"+he++,this.attachDomPortal=ee=>{this._assertNotAttached();const De=this._portalOutlet.attachDomPortal(ee);return this._afterPortalAttached(),De},this._live="assertive"!==R.politeness||R.announcementMessage?"off"===R.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(v){this._assertNotAttached();const r=this._portalOutlet.attachComponentPortal(v);return this._afterPortalAttached(),r}attachTemplatePortal(v){this._assertNotAttached();const r=this._portalOutlet.attachTemplatePortal(v);return this._afterPortalAttached(),r}onAnimationEnd(v){const{fromState:r,toState:g}=v;if(("void"===g&&"void"!==r||"hidden"===g)&&this._completeExit(),"visible"===g){const H=this._onEnter;this._ngZone.run(()=>{H.next(),H.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._clearFromModals(),this._completeExit()}_completeExit(){this._ngZone.onMicrotaskEmpty.pipe((0,P.q)(1)).subscribe(()=>{this._ngZone.run(()=>{this._onExit.next(),this._onExit.complete()})})}_afterPortalAttached(){const v=this._elementRef.nativeElement,r=this.snackBarConfig.panelClass;r&&(Array.isArray(r)?r.forEach(R=>v.classList.add(R)):v.classList.add(r)),this._exposeToModals();const g=this._label.nativeElement,H="mdc-snackbar__label";g.classList.toggle(H,!g.querySelector(`.${H}`))}_exposeToModals(){const v=this._liveElementId,r=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let g=0;g{const r=v.getAttribute("aria-owns");if(r){const g=r.replace(this._liveElementId,"").trim();g.length>0?v.setAttribute("aria-owns",g):v.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const v=this._elementRef.nativeElement.querySelector("[aria-hidden]"),r=this._elementRef.nativeElement.querySelector("[aria-live]");if(v&&r){let g=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&v.contains(document.activeElement)&&(g=document.activeElement),v.removeAttribute("aria-hidden"),r.appendChild(v),g?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static#e=this.\u0275fac=function(r){return new(r||D)(e.Y36(e.R0b),e.Y36(e.SBq),e.Y36(e.sBO),e.Y36(m.t4),e.Y36(ie))};static#t=this.\u0275cmp=e.Xpm({type:D,selectors:[["mat-snack-bar-container"]],viewQuery:function(r,g){if(1&r&&(e.Gf(w.Pl,7),e.Gf(B,7)),2&r){let H;e.iGM(H=e.CRH())&&(g._portalOutlet=H.first),e.iGM(H=e.CRH())&&(g._label=H.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container","mdc-snackbar--open"],hostVars:1,hostBindings:function(r,g){1&r&&e.WFA("@state.done",function(R){return g.onAnimationEnd(R)}),2&r&&e.d8E("@state",g._animationState)},standalone:!0,features:[e.qOj,e.jDz],decls:6,vars:3,consts:[[1,"mdc-snackbar__surface"],[1,"mat-mdc-snack-bar-label"],["label",""],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(r,g){1&r&&(e.TgZ(0,"div",0)(1,"div",1,2)(3,"div",3),e.YNc(4,W,0,0,"ng-template",4),e.qZA(),e._UZ(5,"div"),e.qZA()()),2&r&&(e.xp6(5),e.uIk("aria-live",g._live)("role",g._role)("id",g._liveElementId))},dependencies:[w.eL,w.Pl],styles:['.mdc-snackbar{display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-snackbar__surface::before{border-color:CanvasText}}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1)}.mdc-snackbar__label{padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-snack-bar-container{margin:8px;position:static}.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:100%}}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container{width:100vw}}.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:672px}.mat-mdc-snack-bar-container .mdc-snackbar__surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{background-color:var(--mdc-snackbar-container-color)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{border-radius:var(--mdc-snackbar-container-shape)}.mat-mdc-snack-bar-container .mdc-snackbar__label{color:var(--mdc-snackbar-supporting-text-color)}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-size:var(--mdc-snackbar-supporting-text-size);font-family:var(--mdc-snackbar-supporting-text-font);font-weight:var(--mdc-snackbar-supporting-text-weight);line-height:var(--mdc-snackbar-supporting-text-line-height)}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){color:var(--mat-snack-bar-button-color);--mat-text-button-state-layer-color:currentColor;--mat-text-button-ripple-color:currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}.mat-mdc-snack-bar-container .mdc-snackbar__label::before{display:none}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-handset .mdc-snackbar__surface{width:100%}'],encapsulation:2,data:{animation:[J.snackBarState]}})}return D})();const s=new e.OlP("mat-snack-bar-default-options",{providedIn:"root",factory:function n(){return new ie}});let f=(()=>{class D{get _openedSnackBarRef(){const v=this._parentSnackBar;return v?v._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(v){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=v:this._snackBarRefAtThisLevel=v}constructor(v,r,g,H,R,ee){this._overlay=v,this._live=r,this._injector=g,this._breakpointObserver=H,this._parentSnackBar=R,this._defaultConfig=ee,this._snackBarRefAtThisLevel=null,this.simpleSnackBarComponent=Me,this.snackBarContainerComponent=S,this.handsetCssClass="mat-mdc-snack-bar-handset"}openFromComponent(v,r){return this._attach(v,r)}openFromTemplate(v,r){return this._attach(v,r)}open(v,r="",g){const H={...this._defaultConfig,...g};return H.data={message:v,action:r},H.announcementMessage===v&&(H.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,H)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(v,r){const H=e.zs3.create({parent:r&&r.viewContainerRef&&r.viewContainerRef.injector||this._injector,providers:[{provide:ie,useValue:r}]}),R=new w.C5(this.snackBarContainerComponent,r.viewContainerRef,H),ee=v.attach(R);return ee.instance.snackBarConfig=r,ee.instance}_attach(v,r){const g={...new ie,...this._defaultConfig,...r},H=this._createOverlay(g),R=this._attachSnackBarContainer(H,g),ee=new K(R,H);if(v instanceof e.Rgc){const De=new w.UE(v,null,{$implicit:g.data,snackBarRef:ee});ee.instance=R.attachTemplatePortal(De)}else{const De=this._createInjector(g,ee),ct=new w.C5(v,void 0,De),Ke=R.attachComponentPortal(ct);ee.instance=Ke.instance}return this._breakpointObserver.observe(M.u3.HandsetPortrait).pipe((0,d.R)(H.detachments())).subscribe(De=>{H.overlayElement.classList.toggle(this.handsetCssClass,De.matches)}),g.announcementMessage&&R._onAnnounce.subscribe(()=>{this._live.announce(g.announcementMessage,g.politeness)}),this._animateSnackBar(ee,g),this._openedSnackBarRef=ee,this._openedSnackBarRef}_animateSnackBar(v,r){v.afterDismissed().subscribe(()=>{this._openedSnackBarRef==v&&(this._openedSnackBarRef=null),r.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{v.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):v.containerInstance.enter(),r.duration&&r.duration>0&&v.afterOpened().subscribe(()=>v._dismissAfter(r.duration))}_createOverlay(v){const r=new I.X_;r.direction=v.direction;let g=this._overlay.position().global();const H="rtl"===v.direction,R="left"===v.horizontalPosition||"start"===v.horizontalPosition&&!H||"end"===v.horizontalPosition&&H,ee=!R&&"center"!==v.horizontalPosition;return R?g.left("0"):ee?g.right("0"):g.centerHorizontally(),"top"===v.verticalPosition?g.top("0"):g.bottom("0"),r.positionStrategy=g,this._overlay.create(r)}_createInjector(v,r){return e.zs3.create({parent:v&&v.viewContainerRef&&v.viewContainerRef.injector||this._injector,providers:[{provide:K,useValue:r},{provide:X,useValue:v.data}]})}static#e=this.\u0275fac=function(r){return new(r||D)(e.LFG(I.aV),e.LFG(E.Kd),e.LFG(e.zs3),e.LFG(M.Yg),e.LFG(D,12),e.LFG(s))};static#t=this.\u0275prov=e.Yz7({token:D,factory:D.\u0275fac,providedIn:"root"})}return D})(),C=(()=>{class D{static#e=this.\u0275fac=function(r){return new(r||D)};static#t=this.\u0275mod=e.oAB({type:D});static#i=this.\u0275inj=e.cJS({providers:[f],imports:[I.U8,w.eL,y.ot,k.BQ,Me,S,k.BQ]})}return D})()},3566:(Fe,q,p)=>{"use strict";p.d(q,{JX:()=>S,YE:()=>K,nU:()=>he});var e=p(9212),t=p(4300),y=p(2495),A=p(6028),l=p(3680),w=p(8645),m=p(3019),P=p(6825);const d=["mat-sort-header",""];function E(n,s){if(1&n){const f=e.EpF();e.TgZ(0,"div",3),e.NdJ("@arrowPosition.start",function(){e.CHM(f);const C=e.oxw();return e.KtG(C._disableViewStateAnimation=!0)})("@arrowPosition.done",function(){e.CHM(f);const C=e.oxw();return e.KtG(C._disableViewStateAnimation=!1)}),e._UZ(1,"div",4),e.TgZ(2,"div",5),e._UZ(3,"div",6)(4,"div",7)(5,"div",8),e.qZA()()}if(2&n){const f=e.oxw();e.Q6J("@arrowOpacity",f._getArrowViewState())("@arrowPosition",f._getArrowViewState())("@allowChildren",f._getArrowDirectionState()),e.xp6(2),e.Q6J("@indicator",f._getArrowDirectionState()),e.xp6(1),e.Q6J("@leftPointer",f._getArrowDirectionState()),e.xp6(1),e.Q6J("@rightPointer",f._getArrowDirectionState())}}const M=["*"],W=new e.OlP("MAT_SORT_DEFAULT_OPTIONS"),j=(0,l.dB)((0,l.Id)(class{}));let K=(()=>{class n extends j{get direction(){return this._direction}set direction(f){this._direction=f}get disableClear(){return this._disableClear}set disableClear(f){this._disableClear=(0,y.Ig)(f)}constructor(f){super(),this._defaultOptions=f,this.sortables=new Map,this._stateChanges=new w.x,this.start="asc",this._direction="",this.sortChange=new e.vpe}register(f){this.sortables.set(f.id,f)}deregister(f){this.sortables.delete(f.id)}sort(f){this.active!=f.id?(this.active=f.id,this.direction=f.start?f.start:this.start):this.direction=this.getNextSortDirection(f),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(f){if(!f)return"";let C=function X(n,s){let f=["asc","desc"];return"desc"==n&&f.reverse(),s||f.push(""),f}(f.start||this.start,f?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),D=C.indexOf(this.direction)+1;return D>=C.length&&(D=0),C[D]}ngOnInit(){this._markInitialized()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}static#e=this.\u0275fac=function(h){return new(h||n)(e.Y36(W,8))};static#t=this.\u0275dir=e.lG2({type:n,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:[e.qOj,e.TTD]})}return n})();const ie=l.mZ.ENTERING+" "+l.yN.STANDARD_CURVE,se={indicator:(0,P.X$)("indicator",[(0,P.SB)("active-asc, asc",(0,P.oB)({transform:"translateY(0px)"})),(0,P.SB)("active-desc, desc",(0,P.oB)({transform:"translateY(10px)"})),(0,P.eR)("active-asc <=> active-desc",(0,P.jt)(ie))]),leftPointer:(0,P.X$)("leftPointer",[(0,P.SB)("active-asc, asc",(0,P.oB)({transform:"rotate(-45deg)"})),(0,P.SB)("active-desc, desc",(0,P.oB)({transform:"rotate(45deg)"})),(0,P.eR)("active-asc <=> active-desc",(0,P.jt)(ie))]),rightPointer:(0,P.X$)("rightPointer",[(0,P.SB)("active-asc, asc",(0,P.oB)({transform:"rotate(45deg)"})),(0,P.SB)("active-desc, desc",(0,P.oB)({transform:"rotate(-45deg)"})),(0,P.eR)("active-asc <=> active-desc",(0,P.jt)(ie))]),arrowOpacity:(0,P.X$)("arrowOpacity",[(0,P.SB)("desc-to-active, asc-to-active, active",(0,P.oB)({opacity:1})),(0,P.SB)("desc-to-hint, asc-to-hint, hint",(0,P.oB)({opacity:.54})),(0,P.SB)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,P.oB)({opacity:0})),(0,P.eR)("* => asc, * => desc, * => active, * => hint, * => void",(0,P.jt)("0ms")),(0,P.eR)("* <=> *",(0,P.jt)(ie))]),arrowPosition:(0,P.X$)("arrowPosition",[(0,P.eR)("* => desc-to-hint, * => desc-to-active",(0,P.jt)(ie,(0,P.F4)([(0,P.oB)({transform:"translateY(-25%)"}),(0,P.oB)({transform:"translateY(0)"})]))),(0,P.eR)("* => hint-to-desc, * => active-to-desc",(0,P.jt)(ie,(0,P.F4)([(0,P.oB)({transform:"translateY(0)"}),(0,P.oB)({transform:"translateY(25%)"})]))),(0,P.eR)("* => asc-to-hint, * => asc-to-active",(0,P.jt)(ie,(0,P.F4)([(0,P.oB)({transform:"translateY(25%)"}),(0,P.oB)({transform:"translateY(0)"})]))),(0,P.eR)("* => hint-to-asc, * => active-to-asc",(0,P.jt)(ie,(0,P.F4)([(0,P.oB)({transform:"translateY(0)"}),(0,P.oB)({transform:"translateY(-25%)"})]))),(0,P.SB)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,P.oB)({transform:"translateY(0)"})),(0,P.SB)("hint-to-desc, active-to-desc, desc",(0,P.oB)({transform:"translateY(-25%)"})),(0,P.SB)("hint-to-asc, active-to-asc, asc",(0,P.oB)({transform:"translateY(25%)"}))]),allowChildren:(0,P.X$)("allowChildren",[(0,P.eR)("* <=> *",[(0,P.IO)("@*",(0,P.pV)(),{optional:!0})])])};let ue=(()=>{class n{constructor(){this.changes=new w.x}static#e=this.\u0275fac=function(h){return new(h||n)};static#t=this.\u0275prov=e.Yz7({token:n,factory:n.\u0275fac,providedIn:"root"})}return n})();const Me={provide:ue,deps:[[new e.FiY,new e.tp0,ue]],useFactory:function ae(n){return n||new ue}},J=(0,l.Id)(class{});let he=(()=>{class n extends J{get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(f){this._updateSortActionDescription(f)}get disableClear(){return this._disableClear}set disableClear(f){this._disableClear=(0,y.Ig)(f)}constructor(f,h,C,D,O,v,r,g){super(),this._intl=f,this._changeDetectorRef=h,this._sort=C,this._columnDef=D,this._focusMonitor=O,this._elementRef=v,this._ariaDescriber=r,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this._sortActionDescription="Sort",g?.arrowPosition&&(this.arrowPosition=g?.arrowPosition),this._handleStateChanges()}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(f=>{const h=!!f;h!==this._showIndicatorHint&&(this._setIndicatorHintVisible(h),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe()}_setIndicatorHintVisible(f){this._isDisabled()&&f||(this._showIndicatorHint=f,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(f){this._viewState=f||{},this._disableViewStateAnimation&&(this._viewState={toState:f.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(f){!this._isDisabled()&&(f.keyCode===A.L_||f.keyCode===A.K5)&&(f.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 f=this._viewState.fromState;return(f?`${f}-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(f){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,f)),this._sortActionDescription=f}_handleStateChanges(){this._rerenderSubscription=(0,m.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()})}static#e=this.\u0275fac=function(h){return new(h||n)(e.Y36(ue),e.Y36(e.sBO),e.Y36(K,8),e.Y36("MAT_SORT_HEADER_COLUMN_DEF",8),e.Y36(t.tE),e.Y36(e.SBq),e.Y36(t.$s,8),e.Y36(W,8))};static#t=this.\u0275cmp=e.Xpm({type:n,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(h,C){1&h&&e.NdJ("click",function(){return C._handleClick()})("keydown",function(O){return C._handleKeydown(O)})("mouseenter",function(){return C._setIndicatorHintVisible(!0)})("mouseleave",function(){return C._setIndicatorHintVisible(!1)}),2&h&&(e.uIk("aria-sort",C._getAriaSortAttribute()),e.ekj("mat-sort-header-disabled",C._isDisabled()))},inputs:{disabled:"disabled",id:["mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",sortActionDescription:"sortActionDescription",disableClear:"disableClear"},exportAs:["matSortHeader"],features:[e.qOj],attrs:d,ngContentSelectors:M,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],["class","mat-sort-header-arrow"],[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(h,C){1&h&&(e.F$t(),e.TgZ(0,"div",0)(1,"div",1),e.Hsn(2),e.qZA(),e.YNc(3,E,6,6,"div",2),e.qZA()),2&h&&(e.ekj("mat-sort-header-sorted",C._isSorted())("mat-sort-header-position-before","before"===C.arrowPosition),e.uIk("tabindex",C._isDisabled()?null:0)("role",C._isDisabled()?null:"button"),e.xp6(3),e.um2(3,C._renderArrow()?3:-1))},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-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.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;color:var(--mat-sort-arrow-color);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}"],encapsulation:2,data:{animation:[se.indicator,se.leftPointer,se.rightPointer,se.arrowOpacity,se.arrowPosition,se.allowChildren]},changeDetection:0})}return n})(),S=(()=>{class n{static#e=this.\u0275fac=function(h){return new(h||n)};static#t=this.\u0275mod=e.oAB({type:n});static#i=this.\u0275inj=e.cJS({providers:[Me],imports:[l.BQ]})}return n})()},8257:(Fe,q,p)=>{"use strict";p.d(q,{C0:()=>qe,Ic:()=>ve,T5:()=>Ze,VY:()=>ee,Vq:()=>re,fd:()=>ce,z9:()=>le});var e=p(8484),t=p(1657),y=p(6814),A=p(9212),l=p(3680),w=p(617),m=p(4300),P=p(8645),d=p(7394),E=p(9388),M=p(4664),I=p(7398),k=p(7921),z=p(9773),B=p(3997),W=p(6825);function j(We,Ct){if(1&We&&A.GkF(0,2),2&We){const ut=A.oxw();A.Q6J("ngTemplateOutlet",ut.iconOverrides[ut.state])("ngTemplateOutletContext",ut._getIconContext())}}function K(We,Ct){if(1&We&&(A.TgZ(0,"span",7),A._uU(1),A.qZA()),2&We){const ut=A.oxw(2);A.xp6(1),A.Oqu(ut._getDefaultTextForState(ut.state))}}function X(We,Ct){if(1&We&&(A.TgZ(0,"span",9),A._uU(1),A.qZA()),2&We){const ut=A.oxw(3);A.xp6(1),A.Oqu(ut._intl.completedLabel)}}function ie(We,Ct){if(1&We&&(A.TgZ(0,"span",9),A._uU(1),A.qZA()),2&We){const ut=A.oxw(3);A.xp6(1),A.Oqu(ut._intl.editableLabel)}}function se(We,Ct){if(1&We&&(A.YNc(0,X,2,1,"span",8)(1,ie,2,1),A.TgZ(2,"mat-icon",7),A._uU(3),A.qZA()),2&We){const ut=A.oxw(2);A.um2(0,"done"===ut.state?0:"edit"===ut.state?1:-1),A.xp6(3),A.Oqu(ut._getDefaultTextForState(ut.state))}}function ue(We,Ct){if(1&We&&A.YNc(0,K,2,1)(1,se,4,2),2&We){const ut=A.oxw();let It;A.um2(0,"number"===(It=ut.state)?0:1)}}function ae(We,Ct){1&We&&(A.TgZ(0,"div",10),A.GkF(1,11),A.qZA()),2&We&&(A.xp6(1),A.Q6J("ngTemplateOutlet",Ct.template))}function Me(We,Ct){if(1&We&&(A.TgZ(0,"div",10),A._uU(1),A.qZA()),2&We){const ut=A.oxw();A.xp6(1),A.Oqu(ut.label)}}function J(We,Ct){if(1&We&&(A.TgZ(0,"div",12),A._uU(1),A.qZA()),2&We){const ut=A.oxw();A.xp6(1),A.Oqu(ut._intl.optionalLabel)}}function he(We,Ct){if(1&We&&(A.TgZ(0,"div",13),A._uU(1),A.qZA()),2&We){const ut=A.oxw();A.xp6(1),A.Oqu(ut.errorMessage)}}function S(We,Ct){}function n(We,Ct){if(1&We&&(A.Hsn(0),A.YNc(1,S,0,0,"ng-template",0)),2&We){const ut=A.oxw();A.xp6(1),A.Q6J("cdkPortalOutlet",ut._portal)}}const s=["*"];function f(We,Ct){1&We&&A._UZ(0,"div",6)}const h=(We,Ct)=>({step:We,i:Ct});function C(We,Ct){if(1&We&&(A.GkF(0,4),A.YNc(1,f,1,0,"div",5)),2&We){const ut=Ct.$implicit,It=Ct.$index,Ae=Ct.$count;A.oxw(2);const Be=A.MAs(3);A.Q6J("ngTemplateOutlet",Be)("ngTemplateOutletContext",A.WLB(3,h,ut,It)),A.xp6(1),A.um2(1,It!==Ae-1?1:-1)}}const D=We=>({animationDuration:We}),O=(We,Ct)=>({value:We,params:Ct});function v(We,Ct){if(1&We){const ut=A.EpF();A.TgZ(0,"div",7),A.NdJ("@horizontalStepTransition.done",function(Ae){A.CHM(ut);const Be=A.oxw(2);return A.KtG(Be._animationDone.next(Ae))}),A.GkF(1,8),A.qZA()}if(2&We){const ut=Ct.$implicit,It=Ct.$index,Ae=A.oxw(2);A.ekj("mat-horizontal-stepper-content-inactive",Ae.selectedIndex!==It),A.Q6J("@horizontalStepTransition",A.WLB(8,O,Ae._getAnimationDirection(It),A.VKq(6,D,Ae._getAnimationDuration())))("id",Ae._getStepContentId(It)),A.uIk("aria-labelledby",Ae._getStepLabelId(It)),A.xp6(1),A.Q6J("ngTemplateOutlet",ut.content)}}function r(We,Ct){if(1&We&&(A.TgZ(0,"div",1)(1,"div",2),A.SjG(2,C,2,6,null,null,A.x6l),A.qZA(),A.TgZ(4,"div",3),A.SjG(5,v,2,11,"div",9,A.x6l),A.qZA()()),2&We){const ut=A.oxw();A.xp6(2),A.wJu(ut.steps),A.xp6(3),A.wJu(ut.steps)}}function g(We,Ct){if(1&We){const ut=A.EpF();A.TgZ(0,"div",10),A.GkF(1,4),A.TgZ(2,"div",11)(3,"div",12),A.NdJ("@verticalStepTransition.done",function(Ae){A.CHM(ut);const Be=A.oxw(2);return A.KtG(Be._animationDone.next(Ae))}),A.TgZ(4,"div",13),A.GkF(5,8),A.qZA()()()()}if(2&We){const ut=Ct.$implicit,It=Ct.$index,Ae=Ct.$count,Be=A.oxw(2),rt=A.MAs(3);A.xp6(1),A.Q6J("ngTemplateOutlet",rt)("ngTemplateOutletContext",A.WLB(10,h,ut,It)),A.xp6(1),A.ekj("mat-stepper-vertical-line",It!==Ae-1),A.xp6(1),A.ekj("mat-vertical-stepper-content-inactive",Be.selectedIndex!==It),A.Q6J("@verticalStepTransition",A.WLB(15,O,Be._getAnimationDirection(It),A.VKq(13,D,Be._getAnimationDuration())))("id",Be._getStepContentId(It)),A.uIk("aria-labelledby",Be._getStepLabelId(It)),A.xp6(2),A.Q6J("ngTemplateOutlet",ut.content)}}function H(We,Ct){if(1&We&&A.SjG(0,g,6,18,"div",14,A.x6l),2&We){const ut=A.oxw();A.wJu(ut.steps)}}function R(We,Ct){if(1&We){const ut=A.EpF();A.TgZ(0,"mat-step-header",15),A.NdJ("click",function(){const Be=A.CHM(ut).step;return A.KtG(Be.select())})("keydown",function(Ae){A.CHM(ut);const Be=A.oxw();return A.KtG(Be._onKeydown(Ae))}),A.qZA()}if(2&We){const ut=Ct.step,It=Ct.i,Ae=A.oxw();A.ekj("mat-horizontal-stepper-header","horizontal"===Ae.orientation)("mat-vertical-stepper-header","vertical"===Ae.orientation),A.Q6J("tabIndex",Ae._getFocusIndex()===It?0:-1)("id",Ae._getStepLabelId(It))("index",It)("state",Ae._getIndicatorType(It,ut.state))("label",ut.stepLabel||ut.label)("selected",Ae.selectedIndex===It)("active",Ae._stepIsNavigable(It,ut))("optional",ut.optional)("errorMessage",ut.errorMessage)("iconOverrides",Ae._iconOverrides)("disableRipple",Ae.disableRipple||!Ae._stepIsNavigable(It,ut))("color",ut.color||Ae.color),A.uIk("aria-posinset",It+1)("aria-setsize",Ae.steps.length)("aria-controls",Ae._getStepContentId(It))("aria-selected",Ae.selectedIndex==It)("aria-label",ut.ariaLabel||null)("aria-labelledby",!ut.ariaLabel&&ut.ariaLabelledby?ut.ariaLabelledby:null)("aria-disabled",!Ae._stepIsNavigable(It,ut)||null)}}let ee=(()=>{class We extends t.u6{static#e=this.\u0275fac=(()=>{let ut;return function(Ae){return(ut||(ut=A.n5z(We)))(Ae||We)}})();static#t=this.\u0275dir=A.lG2({type:We,selectors:[["","matStepLabel",""]],features:[A.qOj]})}return We})(),De=(()=>{class We{constructor(){this.changes=new P.x,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}static#e=this.\u0275fac=function(It){return new(It||We)};static#t=this.\u0275prov=A.Yz7({token:We,factory:We.\u0275fac,providedIn:"root"})}return We})();const Ke={provide:De,deps:[[new A.FiY,new A.tp0,De]],useFactory:function ct(We){return We||new De}},Je=(0,l.pj)(class extends t.KL{constructor(Ct){super(Ct)}},"primary");let ye=(()=>{class We extends Je{constructor(ut,It,Ae,Be){super(Ae),this._intl=ut,this._focusMonitor=It,this._intlSubscription=ut.changes.subscribe(()=>Be.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(ut,It){ut?this._focusMonitor.focusVia(this._elementRef,ut,It):this._elementRef.nativeElement.focus(It)}_stringLabel(){return this.label instanceof ee?null:this.label}_templateLabel(){return this.label instanceof ee?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(ut){return"number"==ut?`${this.index+1}`:"edit"==ut?"create":"error"==ut?"warning":ut}static#e=this.\u0275fac=function(It){return new(It||We)(A.Y36(De),A.Y36(m.tE),A.Y36(A.SBq),A.Y36(A.sBO))};static#t=this.\u0275cmp=A.Xpm({type:We,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:[A.qOj],decls:10,vars:17,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-step-label"],["class","mat-step-text-label"],["class","mat-step-optional"],["class","mat-step-sub-label-error"],["aria-hidden","true"],["class","cdk-visually-hidden"],[1,"cdk-visually-hidden"],[1,"mat-step-text-label"],[3,"ngTemplateOutlet"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"]],template:function(It,Ae){if(1&It&&(A._UZ(0,"div",0),A.TgZ(1,"div")(2,"div",1),A.YNc(3,j,1,2,"ng-container",2)(4,ue,2,1),A.qZA()(),A.TgZ(5,"div",3),A.YNc(6,ae,2,1,"div",4)(7,Me,2,1)(8,J,2,1,"div",5)(9,he,2,1,"div",6),A.qZA()),2&It){let Be;A.Q6J("matRippleTrigger",Ae._getHostElement())("matRippleDisabled",Ae.disableRipple),A.xp6(1),A.Gre("mat-step-icon-state-",Ae.state," mat-step-icon"),A.ekj("mat-step-icon-selected",Ae.selected),A.xp6(2),A.um2(3,Ae.iconOverrides&&Ae.iconOverrides[Ae.state]?3:4),A.xp6(2),A.ekj("mat-step-label-active",Ae.active)("mat-step-label-selected",Ae.selected)("mat-step-label-error","error"==Ae.state),A.xp6(1),A.um2(6,(Be=Ae._templateLabel())?6:Ae._stringLabel()?7:-1,Be),A.xp6(2),A.um2(8,Ae.optional&&"error"!=Ae.state?8:-1),A.xp6(1),A.um2(9,"error"===Ae.state?9:-1)}},dependencies:[y.tP,w.Hw,l.wG],styles:['.mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-step-header:focus .mat-focus-indicator::before{content:""}.mat-step-header:hover[aria-disabled=true]{cursor:default}.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:var(--mat-stepper-header-hover-state-layer-color)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color)}@media(hover: none){.mat-step-header:hover{background:none}}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.cdk-high-contrast-active .mat-step-header[aria-disabled=true]{outline-color:GrayText}.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-label,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-icon,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-optional{color:GrayText}.mat-step-optional{font-size:12px;color:var(--mat-stepper-header-optional-label-text-color)}.mat-step-sub-label-error{font-size:12px;font-weight:normal}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative;color:var(--mat-stepper-header-icon-foreground-color);background-color:var(--mat-stepper-header-icon-background-color)}.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{background-color:var(--mat-stepper-header-error-state-icon-background-color);color:var(--mat-stepper-header-error-state-icon-foreground-color)}.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;font-family:var(--mat-stepper-header-label-text-font);font-size:var(--mat-stepper-header-label-text-size);font-weight:var(--mat-stepper-header-label-text-weight);color:var(--mat-stepper-header-label-text-color)}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color)}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color);font-size:var(--mat-stepper-header-error-state-label-text-size)}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size);font-weight:var(--mat-stepper-header-selected-state-label-text-weight)}.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}.mat-step-icon-selected{background-color:var(--mat-stepper-header-selected-state-icon-background-color);color:var(--mat-stepper-header-selected-state-icon-foreground-color)}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color);color:var(--mat-stepper-header-done-state-icon-foreground-color)}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color);color:var(--mat-stepper-header-edit-state-icon-foreground-color)}'],encapsulation:2,changeDetection:0})}return We})();const xe={horizontalStepTransition:(0,W.X$)("horizontalStepTransition",[(0,W.SB)("previous",(0,W.oB)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,W.SB)("current",(0,W.oB)({transform:"none",visibility:"inherit"})),(0,W.SB)("next",(0,W.oB)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,W.eR)("* => *",(0,W.ru)([(0,W.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)"),(0,W.IO)("@*",(0,W.pV)(),{optional:!0})]),{params:{animationDuration:"500ms"}})]),verticalStepTransition:(0,W.X$)("verticalStepTransition",[(0,W.SB)("previous",(0,W.oB)({height:"0px",visibility:"hidden"})),(0,W.SB)("next",(0,W.oB)({height:"0px",visibility:"hidden"})),(0,W.SB)("current",(0,W.oB)({height:"*",visibility:"inherit"})),(0,W.eR)("* <=> current",(0,W.ru)([(0,W.jt)("{{animationDuration}} cubic-bezier(0.4, 0.0, 0.2, 1)"),(0,W.IO)("@*",(0,W.pV)(),{optional:!0})]),{params:{animationDuration:"225ms"}})])};let le=(()=>{class We{constructor(ut){this.templateRef=ut}static#e=this.\u0275fac=function(It){return new(It||We)(A.Y36(A.Rgc))};static#t=this.\u0275dir=A.lG2({type:We,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:["matStepperIcon","name"]}})}return We})(),pe=(()=>{class We{constructor(ut){this._template=ut}static#e=this.\u0275fac=function(It){return new(It||We)(A.Y36(A.Rgc))};static#t=this.\u0275dir=A.lG2({type:We,selectors:[["ng-template","matStepContent",""]]})}return We})(),qe=(()=>{class We extends t.be{constructor(ut,It,Ae,Be){super(ut,Be),this._errorStateMatcher=It,this._viewContainerRef=Ae,this._isSelected=d.w0.EMPTY,this.stepLabel=void 0}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,M.w)(()=>this._stepper.selectionChange.pipe((0,I.U)(ut=>ut.selectedStep===this),(0,k.O)(this._stepper.selected===this)))).subscribe(ut=>{ut&&this._lazyContent&&!this._portal&&(this._portal=new e.UE(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(ut,It){return this._errorStateMatcher.isErrorState(ut,It)||!!(ut&&ut.invalid&&this.interacted)}static#e=this.\u0275fac=function(It){return new(It||We)(A.Y36((0,A.Gpc)(()=>re)),A.Y36(l.rD,4),A.Y36(A.s_b),A.Y36(t.gx,8))};static#t=this.\u0275cmp=A.Xpm({type:We,selectors:[["mat-step"]],contentQueries:function(It,Ae,Be){if(1&It&&(A.Suo(Be,ee,5),A.Suo(Be,pe,5)),2&It){let rt;A.iGM(rt=A.CRH())&&(Ae.stepLabel=rt.first),A.iGM(rt=A.CRH())&&(Ae._lazyContent=rt.first)}},inputs:{color:"color"},exportAs:["matStep"],features:[A._Bn([{provide:l.rD,useExisting:We},{provide:t.be,useExisting:We}]),A.qOj],ngContentSelectors:s,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(It,Ae){1&It&&(A.F$t(),A.YNc(0,n,2,1,"ng-template"))},dependencies:[e.Pl],encapsulation:2,changeDetection:0})}return We})(),re=(()=>{class We extends t.B8{get animationDuration(){return this._animationDuration}set animationDuration(ut){this._animationDuration=/^\d+$/.test(ut)?ut+"ms":ut}constructor(ut,It,Ae){super(ut,It,Ae),this._stepHeader=void 0,this._steps=void 0,this.steps=new A.n_E,this.animationDone=new A.vpe,this.labelPosition="end",this.headerPosition="top",this._iconOverrides={},this._animationDone=new P.x,this._animationDuration="";const Be=Ae.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===Be?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:ut,templateRef:It})=>this._iconOverrides[ut]=It),this.steps.changes.pipe((0,z.R)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,B.x)((ut,It)=>ut.fromState===It.fromState&&ut.toState===It.toState),(0,z.R)(this._destroyed)).subscribe(ut=>{"current"===ut.toState&&this.animationDone.emit()})}_stepIsNavigable(ut,It){return It.completed||this.selectedIndex===ut||!this.linear}_getAnimationDuration(){return this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}static#e=this.\u0275fac=function(It){return new(It||We)(A.Y36(E.Is,8),A.Y36(A.sBO),A.Y36(A.SBq))};static#t=this.\u0275cmp=A.Xpm({type:We,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(It,Ae,Be){if(1&It&&(A.Suo(Be,qe,5),A.Suo(Be,le,5)),2&It){let rt;A.iGM(rt=A.CRH())&&(Ae._steps=rt),A.iGM(rt=A.CRH())&&(Ae._icons=rt)}},viewQuery:function(It,Ae){if(1&It&&A.Gf(ye,5),2&It){let Be;A.iGM(Be=A.CRH())&&(Ae._stepHeader=Be)}},hostAttrs:["role","tablist","ngSkipHydration",""],hostVars:11,hostBindings:function(It,Ae){2&It&&(A.uIk("aria-orientation",Ae.orientation),A.ekj("mat-stepper-horizontal","horizontal"===Ae.orientation)("mat-stepper-vertical","vertical"===Ae.orientation)("mat-stepper-label-position-end","horizontal"===Ae.orientation&&"end"==Ae.labelPosition)("mat-stepper-label-position-bottom","horizontal"===Ae.orientation&&"bottom"==Ae.labelPosition)("mat-stepper-header-position-bottom","bottom"===Ae.headerPosition))},inputs:{selectedIndex:"selectedIndex",disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],features:[A._Bn([{provide:t.B8,useExisting:We}]),A.qOj],decls:4,vars:1,consts:[["stepTemplate",""],[1,"mat-horizontal-stepper-wrapper"],[1,"mat-horizontal-stepper-header-container"],[1,"mat-horizontal-content-container"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["class","mat-stepper-horizontal-line"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],["class","mat-horizontal-stepper-content","role","tabpanel",3,"id","mat-horizontal-stepper-content-inactive"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],["class","mat-step"],[3,"tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color","click","keydown"]],template:function(It,Ae){if(1&It&&A.YNc(0,r,7,0)(1,H,2,0)(2,R,1,23,"ng-template",null,0,A.W1O),2&It){let Be;A.um2(0,"horizontal"===(Be=Ae.orientation)?0:"vertical"===Be?1:-1)}},dependencies:[y.tP,ye],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font);background:var(--mat-stepper-container-color)}.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-header-position-bottom .mat-horizontal-stepper-header-container{order:1}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px;border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height) - 24px) / 2) + 12px)}.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;height:var(--mat-stepper-header-height)}.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-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height) - 24px) / 2) 24px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after{top:calc(calc((var(--mat-stepper-header-height) - 24px) / 2) + 12px)}.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;padding:calc((var(--mat-stepper-header-height) - 24px) / 2) 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-wrapper{display:flex;flex-direction:column}.mat-horizontal-stepper-content{outline:0}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-inactive{height:0;overflow:hidden}.mat-horizontal-stepper-content:not(.mat-horizontal-stepper-content-inactive){visibility:inherit !important}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-active .mat-horizontal-content-container{outline:solid 1px}.mat-stepper-header-position-bottom .mat-horizontal-content-container{padding:24px 24px 0 24px}.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;border-left-color:var(--mat-stepper-line-color);top:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-stepper-content:not(.mat-vertical-stepper-content-inactive){visibility:inherit !important}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}'],encapsulation:2,data:{animation:[xe.horizontalStepTransition,xe.verticalStepTransition]},changeDetection:0})}return We})(),ve=(()=>{class We extends t.st{static#e=this.\u0275fac=(()=>{let ut;return function(Ae){return(ut||(ut=A.n5z(We)))(Ae||We)}})();static#t=this.\u0275dir=A.lG2({type:We,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(It,Ae){2&It&&A.Ikx("type",Ae.type)},inputs:{type:"type"},features:[A.qOj]})}return We})(),ce=(()=>{class We extends t.po{static#e=this.\u0275fac=(()=>{let ut;return function(Ae){return(ut||(ut=A.n5z(We)))(Ae||We)}})();static#t=this.\u0275dir=A.lG2({type:We,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(It,Ae){2&It&&A.Ikx("type",Ae.type)},inputs:{type:"type"},features:[A.qOj]})}return We})(),Ze=(()=>{class We{static#e=this.\u0275fac=function(It){return new(It||We)};static#t=this.\u0275mod=A.oAB({type:We});static#i=this.\u0275inj=A.cJS({providers:[Ke,l.rD],imports:[l.BQ,y.ez,e.eL,t.U5,w.Ps,l.si,l.BQ]})}return We})()},5313:(Fe,q,p)=>{"use strict";p.d(q,{ev:()=>ke,Dz:()=>Xe,w1:()=>be,yh:()=>ne,mD:()=>Le,Q2:()=>$t,Ke:()=>Wt,ge:()=>$,fO:()=>gt,XQ:()=>ei,as:()=>At,Gk:()=>Fi,nj:()=>gi,BZ:()=>Ge,by:()=>on,p0:()=>Ki});var e=p(9212),t=p(9388),y=p(8337),A=p(2831),l=p(5407),w=p(6814),m=p(8645),P=p(9666),d=p(5619),E=p(2664),M=p(2096),I=p(9773),k=p(8180),z=p(2495);const B=[[["caption"]],[["colgroup"],["col"]]],W=["caption","colgroup, col"];function X(st){return class extends st{get sticky(){return this._sticky}set sticky(si){const Ce=this._sticky;this._sticky=(0,z.Ig)(si),this._hasStickyChanged=Ce!==this._sticky}hasStickyChanged(){const si=this._hasStickyChanged;return this._hasStickyChanged=!1,si}resetStickyChanged(){this._hasStickyChanged=!1}constructor(...si){super(...si),this._sticky=!1,this._hasStickyChanged=!1}}}const ie=new e.OlP("CDK_TABLE");let ue=(()=>{class st{constructor(Ce){this.template=Ce}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkCellDef",""]]})}return st})(),ae=(()=>{class st{constructor(Ce){this.template=Ce}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkHeaderCellDef",""]]})}return st})(),Me=(()=>{class st{constructor(Ce){this.template=Ce}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkFooterCellDef",""]]})}return st})();class J{}const he=X(J);let S=(()=>{class st extends he{get name(){return this._name}set name(Ce){this._setNameInput(Ce)}get stickyEnd(){return this._stickyEnd}set stickyEnd(Ce){Ce!==this._stickyEnd&&(this._stickyEnd=Ce,this._hasStickyChanged=!0)}constructor(Ce){super(),this._table=Ce,this._stickyEnd=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(Ce){Ce&&(this._name=Ce,this.cssClassFriendlyName=Ce.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(ie,8))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkColumnDef",""]],contentQueries:function(Mt,Ht,Dt){if(1&Mt&&(e.Suo(Dt,ue,5),e.Suo(Dt,ae,5),e.Suo(Dt,Me,5)),2&Mt){let kt;e.iGM(kt=e.CRH())&&(Ht.cell=kt.first),e.iGM(kt=e.CRH())&&(Ht.headerCell=kt.first),e.iGM(kt=e.CRH())&&(Ht.footerCell=kt.first)}},inputs:{sticky:"sticky",name:["cdkColumnDef","name"],stickyEnd:["stickyEnd","stickyEnd",e.VuI]},features:[e._Bn([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:st}]),e.Xq5,e.qOj]})}return st})();class n{constructor(si,Ce){Ce.nativeElement.classList.add(...si._columnCssClassName)}}let s=(()=>{class st extends n{constructor(Ce,Mt){super(Ce,Mt)}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(S),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[e.qOj]})}return st})(),f=(()=>{class st extends n{constructor(Ce,Mt){if(super(Ce,Mt),1===Ce._table?._elementRef.nativeElement.nodeType){const Ht=Ce._table._elementRef.nativeElement.getAttribute("role");Mt.nativeElement.setAttribute("role","grid"===Ht||"treegrid"===Ht?"gridcell":"cell")}}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(S),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],features:[e.qOj]})}return st})(),h=(()=>{class st extends n{constructor(Ce,Mt){if(super(Ce,Mt),1===Ce._table?._elementRef.nativeElement.nodeType){const Ht=Ce._table._elementRef.nativeElement.getAttribute("role");Mt.nativeElement.setAttribute("role","grid"===Ht||"treegrid"===Ht?"gridcell":"cell")}}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(S),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[e.qOj]})}return st})();class C{constructor(){this.tasks=[],this.endTasks=[]}}const D=new e.OlP("_COALESCED_STYLE_SCHEDULER");let O=(()=>{class st{constructor(Ce){this._ngZone=Ce,this._currentSchedule=null,this._destroyed=new m.x}schedule(Ce){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(Ce)}scheduleEnd(Ce){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(Ce)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new C,this._getScheduleObservable().pipe((0,I.R)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const Ce=this._currentSchedule;this._currentSchedule=new C;for(const Mt of Ce.tasks)Mt();for(const Mt of Ce.endTasks)Mt()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,P.D)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,k.q)(1))}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.LFG(e.R0b))};static#t=this.\u0275prov=e.Yz7({token:st,factory:st.\u0275fac})}return st})(),r=(()=>{class st{constructor(Ce,Mt){this.template=Ce,this._differs=Mt}ngOnChanges(Ce){if(!this._columnsDiffer){const Mt=Ce.columns&&Ce.columns.currentValue||[];this._columnsDiffer=this._differs.find(Mt).create(),this._columnsDiffer.diff(Mt)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(Ce){return this instanceof R?Ce.headerCell.template:this instanceof ct?Ce.footerCell.template:Ce.cell.template}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc),e.Y36(e.ZZ4))};static#t=this.\u0275dir=e.lG2({type:st,features:[e.TTD]})}return st})();class g extends r{}const H=X(g);let R=(()=>{class st extends H{constructor(Ce,Mt,Ht){super(Ce,Mt),this._table=Ht}ngOnChanges(Ce){super.ngOnChanges(Ce)}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc),e.Y36(e.ZZ4),e.Y36(ie,8))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:["cdkHeaderRowDef","columns"],sticky:["cdkHeaderRowDefSticky","sticky"]},features:[e.qOj,e.TTD]})}return st})();class ee extends r{}const De=X(ee);let ct=(()=>{class st extends De{constructor(Ce,Mt,Ht){super(Ce,Mt),this._table=Ht}ngOnChanges(Ce){super.ngOnChanges(Ce)}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc),e.Y36(e.ZZ4),e.Y36(ie,8))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:["cdkFooterRowDef","columns"],sticky:["cdkFooterRowDefSticky","sticky"]},features:[e.qOj,e.TTD]})}return st})(),Ke=(()=>{class st extends r{constructor(Ce,Mt,Ht){super(Ce,Mt),this._table=Ht}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc),e.Y36(e.ZZ4),e.Y36(ie,8))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkRowDef",""]],inputs:{columns:["cdkRowDefColumns","columns"],when:["cdkRowDefWhen","when"]},features:[e.qOj]})}return st})(),Je=(()=>{class st{static#e=this.mostRecentCellOutlet=null;constructor(Ce){this._viewContainer=Ce,st.mostRecentCellOutlet=this}ngOnDestroy(){st.mostRecentCellOutlet===this&&(st.mostRecentCellOutlet=null)}static#t=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.s_b))};static#i=this.\u0275dir=e.lG2({type:st,selectors:[["","cdkCellOutlet",""]]})}return st})(),ye=(()=>{class st{static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Ht){1&Mt&&e.GkF(0,0)},dependencies:[Je],encapsulation:2})}return st})(),fe=(()=>{class st{static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Ht){1&Mt&&e.GkF(0,0)},dependencies:[Je],encapsulation:2})}return st})(),de=(()=>{class st{static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Ht){1&Mt&&e.GkF(0,0)},dependencies:[Je],encapsulation:2})}return st})(),xe=(()=>{class st{constructor(Ce){this.templateRef=Ce,this._contentClassName="cdk-no-data-row"}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.Rgc))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["ng-template","cdkNoDataRow",""]]})}return st})();const le=["top","bottom","left","right"];class pe{constructor(si,Ce,Mt,Ht,Dt=!0,kt=!0,Gt){this._isNativeHtmlTable=si,this._stickCellCss=Ce,this.direction=Mt,this._coalescedStyleScheduler=Ht,this._isBrowser=Dt,this._needsPositionStickyOnElement=kt,this._positionListener=Gt,this._cachedCellWidths=[],this._borderCellCss={top:`${Ce}-border-elem-top`,bottom:`${Ce}-border-elem-bottom`,left:`${Ce}-border-elem-left`,right:`${Ce}-border-elem-right`}}clearStickyPositioning(si,Ce){const Mt=[];for(const Ht of si)if(Ht.nodeType===Ht.ELEMENT_NODE){Mt.push(Ht);for(let Dt=0;Dt{for(const Ht of Mt)this._removeStickyStyle(Ht,Ce)})}updateStickyColumns(si,Ce,Mt,Ht=!0){if(!si.length||!this._isBrowser||!Ce.some(Ui=>Ui)&&!Mt.some(Ui=>Ui))return void(this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]})));const Dt=si[0],kt=Dt.children.length,Gt=this._getCellWidths(Dt,Ht),oi=this._getStickyStartColumnPositions(Gt,Ce),bi=this._getStickyEndColumnPositions(Gt,Mt),yi=Ce.lastIndexOf(!0),Oi=Mt.indexOf(!0);this._coalescedStyleScheduler.schedule(()=>{const Ui="rtl"===this.direction,Bi=Ui?"right":"left",qt=Ui?"left":"right";for(const xi of si)for(let Se=0;SeCe[Se]?xi:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Oi?[]:Gt.slice(Oi).map((xi,Se)=>Mt[Se+Oi]?xi:null).reverse()}))})}stickRows(si,Ce,Mt){if(!this._isBrowser)return;const Ht="bottom"===Mt?si.slice().reverse():si,Dt="bottom"===Mt?Ce.slice().reverse():Ce,kt=[],Gt=[],oi=[];for(let yi=0,Oi=0;yi{for(let yi=0;yi{Ce.some(Ht=>!Ht)?this._removeStickyStyle(Mt,["bottom"]):this._addStickyStyle(Mt,"bottom",0,!1)})}_removeStickyStyle(si,Ce){for(const Ht of Ce)si.style[Ht]="",si.classList.remove(this._borderCellCss[Ht]);le.some(Ht=>-1===Ce.indexOf(Ht)&&si.style[Ht])?si.style.zIndex=this._getCalculatedZIndex(si):(si.style.zIndex="",this._needsPositionStickyOnElement&&(si.style.position=""),si.classList.remove(this._stickCellCss))}_addStickyStyle(si,Ce,Mt,Ht){si.classList.add(this._stickCellCss),Ht&&si.classList.add(this._borderCellCss[Ce]),si.style[Ce]=`${Mt}px`,si.style.zIndex=this._getCalculatedZIndex(si),this._needsPositionStickyOnElement&&(si.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(si){const Ce={top:100,bottom:10,left:1,right:1};let Mt=0;for(const Ht of le)si.style[Ht]&&(Mt+=Ce[Ht]);return Mt?`${Mt}`:""}_getCellWidths(si,Ce=!0){if(!Ce&&this._cachedCellWidths.length)return this._cachedCellWidths;const Mt=[],Ht=si.children;for(let Dt=0;Dt0;Dt--)Ce[Dt]&&(Mt[Dt]=Ht,Ht+=si[Dt]);return Mt}}const It=new e.OlP("CDK_SPL");let Be=(()=>{class st{constructor(Ce,Mt){this.viewContainer=Ce,this.elementRef=Mt}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.s_b),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","rowOutlet",""]]})}return st})(),rt=(()=>{class st{constructor(Ce,Mt){this.viewContainer=Ce,this.elementRef=Mt}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.s_b),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","headerRowOutlet",""]]})}return st})(),$e=(()=>{class st{constructor(Ce,Mt){this.viewContainer=Ce,this.elementRef=Mt}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.s_b),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","footerRowOutlet",""]]})}return st})(),Ie=(()=>{class st{constructor(Ce,Mt){this.viewContainer=Ce,this.elementRef=Mt}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.s_b),e.Y36(e.SBq))};static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","noDataRowOutlet",""]]})}return st})(),St=(()=>{class st{get trackBy(){return this._trackByFn}set trackBy(Ce){this._trackByFn=Ce}get dataSource(){return this._dataSource}set dataSource(Ce){this._dataSource!==Ce&&this._switchDataSource(Ce)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(Ce){this._multiTemplateDataRows=Ce,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(Ce){this._fixedLayout=Ce,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}constructor(Ce,Mt,Ht,Dt,kt,Gt,oi,bi,yi,Oi,Ui,Bi){this._differs=Ce,this._changeDetectorRef=Mt,this._elementRef=Ht,this._dir=kt,this._platform=oi,this._viewRepeater=bi,this._coalescedStyleScheduler=yi,this._viewportRuler=Oi,this._stickyPositioningListener=Ui,this._ngZone=Bi,this._onDestroy=new m.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 e.vpe,this.viewChange=new d.X({start:0,end:Number.MAX_VALUE}),Dt||this._elementRef.nativeElement.setAttribute("role","table"),this._document=Gt,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName}ngOnInit(){this._setupStickyStyler(),this._isNativeHtmlTable&&this._applyNativeTableSections(),this._dataDiffer=this._differs.find([]).create((Ce,Mt)=>this.trackBy?this.trackBy(Mt.dataIndex,Mt.data):Mt),this._viewportRuler.change().pipe((0,I.R)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentChecked(){this._cacheRowDefs(),this._cacheColumnDefs();const Mt=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||Mt,this._forceRecalculateCellWidths=Mt,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(Ce=>{Ce.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,y.Z9)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const Ce=this._dataDiffer.diff(this._renderRows);if(!Ce)return this._updateNoDataRow(),void this.contentChanged.next();const Mt=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(Ce,Mt,(Ht,Dt,kt)=>this._getEmbeddedViewArgs(Ht.item,kt),Ht=>Ht.item.data,Ht=>{1===Ht.operation&&Ht.context&&this._renderCellTemplateForItem(Ht.record.item.rowDef,Ht.context)}),this._updateRowIndexContext(),Ce.forEachIdentityChange(Ht=>{Mt.get(Ht.currentIndex).context.$implicit=Ht.item.data}),this._updateNoDataRow(),this._ngZone&&e.R0b.isInAngularZone()?this._ngZone.onStable.pipe((0,k.q)(1),(0,I.R)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(Ce){this._customColumnDefs.add(Ce)}removeColumnDef(Ce){this._customColumnDefs.delete(Ce)}addRowDef(Ce){this._customRowDefs.add(Ce)}removeRowDef(Ce){this._customRowDefs.delete(Ce)}addHeaderRowDef(Ce){this._customHeaderRowDefs.add(Ce),this._headerRowDefChanged=!0}removeHeaderRowDef(Ce){this._customHeaderRowDefs.delete(Ce),this._headerRowDefChanged=!0}addFooterRowDef(Ce){this._customFooterRowDefs.add(Ce),this._footerRowDefChanged=!0}removeFooterRowDef(Ce){this._customFooterRowDefs.delete(Ce),this._footerRowDefChanged=!0}setNoDataRow(Ce){this._customNoDataRow=Ce}updateStickyHeaderRowStyles(){const Ce=this._getRenderedRows(this._headerRowOutlet),Ht=this._elementRef.nativeElement.querySelector("thead");Ht&&(Ht.style.display=Ce.length?"":"none");const Dt=this._headerRowDefs.map(kt=>kt.sticky);this._stickyStyler.clearStickyPositioning(Ce,["top"]),this._stickyStyler.stickRows(Ce,Dt,"top"),this._headerRowDefs.forEach(kt=>kt.resetStickyChanged())}updateStickyFooterRowStyles(){const Ce=this._getRenderedRows(this._footerRowOutlet),Ht=this._elementRef.nativeElement.querySelector("tfoot");Ht&&(Ht.style.display=Ce.length?"":"none");const Dt=this._footerRowDefs.map(kt=>kt.sticky);this._stickyStyler.clearStickyPositioning(Ce,["bottom"]),this._stickyStyler.stickRows(Ce,Dt,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,Dt),this._footerRowDefs.forEach(kt=>kt.resetStickyChanged())}updateStickyColumnStyles(){const Ce=this._getRenderedRows(this._headerRowOutlet),Mt=this._getRenderedRows(this._rowOutlet),Ht=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...Ce,...Mt,...Ht],["left","right"]),this._stickyColumnStylesNeedReset=!1),Ce.forEach((Dt,kt)=>{this._addStickyColumnStyles([Dt],this._headerRowDefs[kt])}),this._rowDefs.forEach(Dt=>{const kt=[];for(let Gt=0;Gt{this._addStickyColumnStyles([Dt],this._footerRowDefs[kt])}),Array.from(this._columnDefsByName.values()).forEach(Dt=>Dt.resetStickyChanged())}_getAllRenderRows(){const Ce=[],Mt=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let Ht=0;Ht{const Gt=Ht&&Ht.has(kt)?Ht.get(kt):[];if(Gt.length){const oi=Gt.shift();return oi.dataIndex=Mt,oi}return{data:Ce,rowDef:kt,dataIndex:Mt}})}_cacheColumnDefs(){this._columnDefsByName.clear(),dt(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(Mt=>{this._columnDefsByName.has(Mt.name),this._columnDefsByName.set(Mt.name,Mt)})}_cacheRowDefs(){this._headerRowDefs=dt(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=dt(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=dt(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const Ce=this._rowDefs.filter(Mt=>!Mt.when);this._defaultRowDef=Ce[0]}_renderUpdatedColumns(){const Ce=(kt,Gt)=>kt||!!Gt.getColumnsDiff(),Mt=this._rowDefs.reduce(Ce,!1);Mt&&this._forceRenderDataRows();const Ht=this._headerRowDefs.reduce(Ce,!1);Ht&&this._forceRenderHeaderRows();const Dt=this._footerRowDefs.reduce(Ce,!1);return Dt&&this._forceRenderFooterRows(),Mt||Ht||Dt}_switchDataSource(Ce){this._data=[],(0,y.Z9)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),Ce||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear()),this._dataSource=Ce}_observeRenderChanges(){if(!this.dataSource)return;let Ce;(0,y.Z9)(this.dataSource)?Ce=this.dataSource.connect(this):(0,E.b)(this.dataSource)?Ce=this.dataSource:Array.isArray(this.dataSource)&&(Ce=(0,M.of)(this.dataSource)),this._renderChangeSubscription=Ce.pipe((0,I.R)(this._onDestroy)).subscribe(Mt=>{this._data=Mt||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((Ce,Mt)=>this._renderRow(this._headerRowOutlet,Ce,Mt)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((Ce,Mt)=>this._renderRow(this._footerRowOutlet,Ce,Mt)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(Ce,Mt){const Ht=Array.from(Mt.columns||[]).map(Gt=>this._columnDefsByName.get(Gt)),Dt=Ht.map(Gt=>Gt.sticky),kt=Ht.map(Gt=>Gt.stickyEnd);this._stickyStyler.updateStickyColumns(Ce,Dt,kt,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(Ce){const Mt=[];for(let Ht=0;Ht!Dt.when||Dt.when(Mt,Ce));else{let Dt=this._rowDefs.find(kt=>kt.when&&kt.when(Mt,Ce))||this._defaultRowDef;Dt&&Ht.push(Dt)}return Ht}_getEmbeddedViewArgs(Ce,Mt){return{templateRef:Ce.rowDef.template,context:{$implicit:Ce.data},index:Mt}}_renderRow(Ce,Mt,Ht,Dt={}){const kt=Ce.viewContainer.createEmbeddedView(Mt.template,Dt,Ht);return this._renderCellTemplateForItem(Mt,Dt),kt}_renderCellTemplateForItem(Ce,Mt){for(let Ht of this._getCellTemplates(Ce))Je.mostRecentCellOutlet&&Je.mostRecentCellOutlet._viewContainer.createEmbeddedView(Ht,Mt);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const Ce=this._rowOutlet.viewContainer;for(let Mt=0,Ht=Ce.length;Mt{const Ht=this._columnDefsByName.get(Mt);return Ce.extractCellTemplate(Ht)}):[]}_applyNativeTableSections(){const Ce=this._document.createDocumentFragment(),Mt=[{tag:"thead",outlets:[this._headerRowOutlet]},{tag:"tbody",outlets:[this._rowOutlet,this._noDataRowOutlet]},{tag:"tfoot",outlets:[this._footerRowOutlet]}];for(const Ht of Mt){const Dt=this._document.createElement(Ht.tag);Dt.setAttribute("role","rowgroup");for(const kt of Ht.outlets)Dt.appendChild(kt.elementRef.nativeElement);Ce.appendChild(Dt)}this._elementRef.nativeElement.appendChild(Ce)}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const Ce=(Mt,Ht)=>Mt||Ht.hasStickyChanged();this._headerRowDefs.reduce(Ce,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(Ce,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(Ce,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new pe(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,M.of)()).pipe((0,I.R)(this._onDestroy)).subscribe(Mt=>{this._stickyStyler.direction=Mt,this.updateStickyColumnStyles()})}_getOwnDefs(Ce){return Ce.filter(Mt=>!Mt._table||Mt._table===this)}_updateNoDataRow(){const Ce=this._customNoDataRow||this._noDataRow;if(!Ce)return;const Mt=0===this._rowOutlet.viewContainer.length;if(Mt===this._isShowingNoDataRow)return;const Ht=this._noDataRowOutlet.viewContainer;if(Mt){const Dt=Ht.createEmbeddedView(Ce.templateRef),kt=Dt.rootNodes[0];1===Dt.rootNodes.length&&kt?.nodeType===this._document.ELEMENT_NODE&&(kt.setAttribute("role","row"),kt.classList.add(Ce._contentClassName))}else Ht.clear();this._isShowingNoDataRow=Mt,this._changeDetectorRef.markForCheck()}static#e=this.\u0275fac=function(Mt){return new(Mt||st)(e.Y36(e.ZZ4),e.Y36(e.sBO),e.Y36(e.SBq),e.$8M("role"),e.Y36(t.Is,8),e.Y36(w.K0),e.Y36(A.t4),e.Y36(y.k),e.Y36(D),e.Y36(l.rL),e.Y36(It,12),e.Y36(e.R0b,8))};static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(Mt,Ht,Dt){if(1&Mt&&(e.Suo(Dt,xe,5),e.Suo(Dt,S,5),e.Suo(Dt,Ke,5),e.Suo(Dt,R,5),e.Suo(Dt,ct,5)),2&Mt){let kt;e.iGM(kt=e.CRH())&&(Ht._noDataRow=kt.first),e.iGM(kt=e.CRH())&&(Ht._contentColumnDefs=kt),e.iGM(kt=e.CRH())&&(Ht._contentRowDefs=kt),e.iGM(kt=e.CRH())&&(Ht._contentHeaderRowDefs=kt),e.iGM(kt=e.CRH())&&(Ht._contentFooterRowDefs=kt)}},viewQuery:function(Mt,Ht){if(1&Mt&&(e.Gf(Be,7),e.Gf(rt,7),e.Gf($e,7),e.Gf(Ie,7)),2&Mt){let Dt;e.iGM(Dt=e.CRH())&&(Ht._rowOutlet=Dt.first),e.iGM(Dt=e.CRH())&&(Ht._headerRowOutlet=Dt.first),e.iGM(Dt=e.CRH())&&(Ht._footerRowOutlet=Dt.first),e.iGM(Dt=e.CRH())&&(Ht._noDataRowOutlet=Dt.first)}},hostAttrs:["ngSkipHydration","",1,"cdk-table"],hostVars:2,hostBindings:function(Mt,Ht){2&Mt&&e.ekj("cdk-table-fixed-layout",Ht.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:["multiTemplateDataRows","multiTemplateDataRows",e.VuI],fixedLayout:["fixedLayout","fixedLayout",e.VuI]},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],features:[e._Bn([{provide:ie,useExisting:st},{provide:y.k,useClass:y.yy},{provide:D,useClass:O},{provide:It,useValue:null}]),e.Xq5],ngContentSelectors:W,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(Mt,Ht){1&Mt&&(e.F$t(B),e.Hsn(0),e.Hsn(1,1),e.GkF(2,0)(3,1)(4,2)(5,3))},dependencies:[Be,rt,$e,Ie],styles:[".cdk-table-fixed-layout{table-layout:fixed}"],encapsulation:2})}return st})();function dt(st,si){return st.concat(Array.from(si))}let Bt=(()=>{class st{static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275mod=e.oAB({type:st});static#i=this.\u0275inj=e.cJS({imports:[l.Cl]})}return st})();var Ye=p(3680),je=p(3019),Ft=p(2572),xt=p(7398);const Ot=[[["caption"]],[["colgroup"],["col"]]],yt=["caption","colgroup, col"];let Ge=(()=>{class st extends St{constructor(){super(...arguments),this.stickyCssClass="mat-mdc-table-sticky",this.needsPositionStickyOnElement=!1}ngOnInit(){super.ngOnInit(),this._isNativeHtmlTable&&this._elementRef.nativeElement.querySelector("tbody").classList.add("mdc-data-table__content")}static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:["ngSkipHydration","",1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(Mt,Ht){2&Mt&&e.ekj("mdc-table-fixed-layout",Ht.fixedLayout)},exportAs:["matTable"],features:[e._Bn([{provide:St,useExisting:st},{provide:ie,useExisting:st},{provide:D,useClass:O},{provide:y.k,useClass:y.yy},{provide:It,useValue:null}]),e.qOj],ngContentSelectors:yt,decls:6,vars:0,consts:[["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(Mt,Ht){1&Mt&&(e.F$t(Ot),e.Hsn(0),e.Hsn(1,1),e.GkF(2,0)(3,1)(4,2)(5,3))},dependencies:[Be,rt,$e,Ie],styles:[".mat-mdc-table-sticky{position:sticky !important}.mdc-data-table{-webkit-overflow-scrolling:touch;display:inline-flex;flex-direction:column;box-sizing:border-box;position:relative}.mdc-data-table__table-container{-webkit-overflow-scrolling:touch;overflow-x:auto;width:100%}.mdc-data-table__table{min-width:100%;border:0;white-space:nowrap;border-spacing:0;table-layout:fixed}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell,.mdc-data-table__cell[dir=rtl]{text-align:right}.mdc-data-table__cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__cell--numeric,.mdc-data-table__cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell{box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mdc-data-table__header-cell,.mdc-data-table__header-cell[dir=rtl]{text-align:right}.mdc-data-table__header-cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__header-cell--numeric,.mdc-data-table__header-cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell-wrapper{align-items:center;display:inline-flex;vertical-align:middle}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px 0 16px}.mdc-data-table__header-cell--checkbox,.mdc-data-table__cell--checkbox{padding-left:4px;padding-right:0}[dir=rtl] .mdc-data-table__header-cell--checkbox,[dir=rtl] .mdc-data-table__cell--checkbox,.mdc-data-table__header-cell--checkbox[dir=rtl],.mdc-data-table__cell--checkbox[dir=rtl]{padding-left:0;padding-right:4px}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}.mat-mdc-table{table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color)}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-header-headline-font, Roboto, sans-serif);line-height:var(--mat-table-header-headline-line-height);font-size:var(--mat-table-header-headline-size, 14px);font-weight:var(--mat-table-header-headline-weight, 500)}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, Roboto, sans-serif);line-height:var(--mat-table-row-item-label-text-line-height);font-size:var(--mat-table-row-item-label-text-size, 14px);font-weight:var(--mat-table-row-item-label-text-weight)}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-footer-supporting-text-font, Roboto, sans-serif);line-height:var(--mat-table-footer-supporting-text-line-height);font-size:var(--mat-table-footer-supporting-text-size, 14px);font-weight:var(--mat-table-footer-supporting-text-weight);letter-spacing:var(--mat-table-footer-supporting-text-tracking)}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking);font-weight:inherit;line-height:inherit}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking);line-height:inherit}.mdc-data-table__row:last-child .mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking)}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}"],encapsulation:2})}return st})(),Xe=(()=>{class st extends ue{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matCellDef",""]],features:[e._Bn([{provide:ue,useExisting:st}]),e.qOj]})}return st})(),gt=(()=>{class st extends ae{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matHeaderCellDef",""]],features:[e._Bn([{provide:ae,useExisting:st}]),e.qOj]})}return st})(),Le=(()=>{class st extends Me{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matFooterCellDef",""]],features:[e._Bn([{provide:Me,useExisting:st}]),e.qOj]})}return st})(),be=(()=>{class st extends S{get name(){return this._name}set name(Ce){this._setNameInput(Ce)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matColumnDef",""]],inputs:{sticky:"sticky",name:["matColumnDef","name"]},features:[e._Bn([{provide:S,useExisting:st},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:st}]),e.qOj]})}return st})(),$=(()=>{class st extends s{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],features:[e.qOj]})}return st})(),ne=(()=>{class st extends f{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],features:[e.qOj]})}return st})(),ke=(()=>{class st extends h{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],features:[e.qOj]})}return st})(),At=(()=>{class st extends R{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matHeaderRowDef",""]],inputs:{columns:["matHeaderRowDef","columns"],sticky:["matHeaderRowDefSticky","sticky"]},features:[e._Bn([{provide:R,useExisting:st}]),e.qOj]})}return st})(),Wt=(()=>{class st extends ct{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matFooterRowDef",""]],inputs:{columns:["matFooterRowDef","columns"],sticky:["matFooterRowDefSticky","sticky"]},features:[e._Bn([{provide:ct,useExisting:st}]),e.qOj]})}return st})(),gi=(()=>{class st extends Ke{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275dir=e.lG2({type:st,selectors:[["","matRowDef",""]],inputs:{columns:["matRowDefColumns","columns"],when:["matRowDefWhen","when"]},features:[e._Bn([{provide:Ke,useExisting:st}]),e.qOj]})}return st})(),ei=(()=>{class st extends ye{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],features:[e._Bn([{provide:ye,useExisting:st}]),e.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Ht){1&Mt&&e.GkF(0,0)},dependencies:[Je],encapsulation:2})}return st})(),$t=(()=>{class st extends fe{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],features:[e._Bn([{provide:fe,useExisting:st}]),e.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Ht){1&Mt&&e.GkF(0,0)},dependencies:[Je],encapsulation:2})}return st})(),Fi=(()=>{class st extends de{static#e=this.\u0275fac=(()=>{let Ce;return function(Ht){return(Ce||(Ce=e.n5z(st)))(Ht||st)}})();static#t=this.\u0275cmp=e.Xpm({type:st,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],features:[e._Bn([{provide:de,useExisting:st}]),e.qOj],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(Mt,Ht){1&Mt&&e.GkF(0,0)},dependencies:[Je],encapsulation:2})}return st})(),Ki=(()=>{class st{static#e=this.\u0275fac=function(Mt){return new(Mt||st)};static#t=this.\u0275mod=e.oAB({type:st});static#i=this.\u0275inj=e.cJS({imports:[Ye.BQ,Bt,Ye.BQ]})}return st})();class on extends y.o2{get data(){return this._data.value}set data(si){si=Array.isArray(si)?si:[],this._data.next(si),this._renderChangesSubscription||this._filterData(si)}get filter(){return this._filter.value}set filter(si){this._filter.next(si),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(si){this._sort=si,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(si){this._paginator=si,this._updateChangeSubscription()}constructor(si=[]){super(),this._renderData=new d.X([]),this._filter=new d.X(""),this._internalPageChanges=new m.x,this._renderChangesSubscription=null,this.sortingDataAccessor=(Ce,Mt)=>{const Ht=Ce[Mt];if((0,z.t6)(Ht)){const Dt=Number(Ht);return Dt<9007199254740991?Dt:Ht}return Ht},this.sortData=(Ce,Mt)=>{const Ht=Mt.active,Dt=Mt.direction;return Ht&&""!=Dt?Ce.sort((kt,Gt)=>{let oi=this.sortingDataAccessor(kt,Ht),bi=this.sortingDataAccessor(Gt,Ht);const yi=typeof oi,Oi=typeof bi;yi!==Oi&&("number"===yi&&(oi+=""),"number"===Oi&&(bi+=""));let Ui=0;return null!=oi&&null!=bi?oi>bi?Ui=1:oi{const Ht=Object.keys(Ce).reduce((kt,Gt)=>kt+Ce[Gt]+"\u25ec","").toLowerCase(),Dt=Mt.trim().toLowerCase();return-1!=Ht.indexOf(Dt)},this._data=new d.X(si),this._updateChangeSubscription()}_updateChangeSubscription(){const si=this._sort?(0,je.T)(this._sort.sortChange,this._sort.initialized):(0,M.of)(null),Ce=this._paginator?(0,je.T)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,M.of)(null),Ht=(0,Ft.a)([this._data,this._filter]).pipe((0,xt.U)(([Gt])=>this._filterData(Gt))),Dt=(0,Ft.a)([Ht,si]).pipe((0,xt.U)(([Gt])=>this._orderData(Gt))),kt=(0,Ft.a)([Dt,Ce]).pipe((0,xt.U)(([Gt])=>this._pageData(Gt)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=kt.subscribe(Gt=>this._renderData.next(Gt))}_filterData(si){return this.filteredData=null==this.filter||""===this.filter?si:si.filter(Ce=>this.filterPredicate(Ce,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(si){return this.sort?this.sortData(si.slice(),this.sort):si}_pageData(si){if(!this.paginator)return si;const Ce=this.paginator.pageIndex*this.paginator.pageSize;return si.slice(Ce,Ce+this.paginator.pageSize)}_updatePaginator(si){Promise.resolve().then(()=>{const Ce=this.paginator;if(Ce&&(Ce.length=si,Ce.pageIndex>0)){const Mt=Math.ceil(Ce.length/Ce.pageSize)-1||0,Ht=Math.min(Ce.pageIndex,Mt);Ht!==Ce.pageIndex&&(Ce.pageIndex=Ht,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},4104:(Fe,q,p)=>{"use strict";p.d(q,{BU:()=>at,Nh:()=>Xe,Nj:()=>nt,SP:()=>xt,sW:()=>Ge,uD:()=>Ze,uX:()=>Qe});var e=p(6814),t=p(9212),y=p(3680),A=p(8484),l=p(7131),w=p(4300),m=p(9388),P=p(7394),d=p(8645),E=p(2438),M=p(2096),I=p(3019),k=p(6232),z=p(5592),B=p(9080),W=p(5619),j=p(7921),K=p(3997),X=p(9773),ie=p(8180),se=p(4664),ue=p(836),ae=p(2181),Me=p(6825),J=p(2495),he=p(5407),S=p(2831),n=p(6028);function s(gt,Le){}const f=gt=>({animationDuration:gt}),h=(gt,Le)=>({value:gt,params:Le});function C(gt,Le){1>&&t.Hsn(0)}const D=["*"],O=["tabListContainer"],v=["tabList"],r=["tabListInner"],g=["nextPaginator"],H=["previousPaginator"],R=["tabBodyWrapper"],ee=["tabHeader"];function De(gt,Le){}function ct(gt,Le){if(1>&&t.YNc(0,De,0,0,"ng-template",10),2>){const be=t.oxw().$implicit;t.Q6J("cdkPortalOutlet",be.templateLabel)}}function Ke(gt,Le){if(1>&&t._uU(0),2>){const be=t.oxw().$implicit;t.Oqu(be.textLabel)}}function Je(gt,Le){if(1>){const be=t.EpF();t.TgZ(0,"div",4,5),t.NdJ("click",function(){const ne=t.CHM(be),ke=ne.$implicit,Nt=ne.$index,At=t.oxw(),Wt=t.MAs(1);return t.KtG(At._handleClick(ke,Wt,Nt))})("cdkFocusChange",function(ne){const Nt=t.CHM(be).$index,At=t.oxw();return t.KtG(At._tabFocusChanged(ne,Nt))}),t._UZ(2,"span",6)(3,"div",7),t.TgZ(4,"span",8)(5,"span",9),t.YNc(6,ct,1,1,null,10)(7,Ke,1,1),t.qZA()()()}if(2>){const be=Le.$implicit,$=Le.$index,ne=t.MAs(1),ke=t.oxw();t.ekj("mdc-tab--active",ke.selectedIndex===$),t.Q6J("id",ke._getTabLabelId($))("ngClass",be.labelClass)("disabled",be.disabled)("fitInkBarToContent",ke.fitInkBarToContent),t.uIk("tabIndex",ke._getTabIndex($))("aria-posinset",$+1)("aria-setsize",ke._tabs.length)("aria-controls",ke._getTabContentId($))("aria-selected",ke.selectedIndex===$)("aria-label",be.ariaLabel||null)("aria-labelledby",!be.ariaLabel&&be.ariaLabelledby?be.ariaLabelledby:null),t.xp6(3),t.Q6J("matRippleTrigger",ne)("matRippleDisabled",be.disabled||ke.disableRipple),t.xp6(3),t.um2(6,be.templateLabel?6:7)}}function ye(gt,Le){if(1>){const be=t.EpF();t.TgZ(0,"mat-tab-body",11),t.NdJ("_onCentered",function(){t.CHM(be);const ne=t.oxw();return t.KtG(ne._removeTabBodyWrapperHeight())})("_onCentering",function(ne){t.CHM(be);const ke=t.oxw();return t.KtG(ke._setTabBodyWrapperHeight(ne))}),t.qZA()}if(2>){const be=Le.$implicit,$=Le.$index,ne=t.oxw();t.ekj("mat-mdc-tab-body-active",ne.selectedIndex===$),t.Q6J("id",ne._getTabContentId($))("ngClass",be.bodyClass)("content",be.content)("position",be.position)("origin",be.origin)("animationDuration",ne.animationDuration)("preserveContent",ne.preserveContent),t.uIk("tabindex",null!=ne.contentTabIndex&&ne.selectedIndex===$?ne.contentTabIndex:null)("aria-labelledby",ne._getTabLabelId($))("aria-hidden",ne.selectedIndex!==$)}}const fe=["mat-tab-nav-bar",""],de=["mat-tab-link",""],xe={translateTab:(0,Me.X$)("translateTab",[(0,Me.SB)("center, void, left-origin-center, right-origin-center",(0,Me.oB)({transform:"none"})),(0,Me.SB)("left",(0,Me.oB)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,Me.SB)("right",(0,Me.oB)({transform:"translate3d(100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,Me.eR)("* => left, * => right, left => center, right => center",(0,Me.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,Me.eR)("void => left-origin-center",[(0,Me.oB)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"}),(0,Me.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,Me.eR)("void => right-origin-center",[(0,Me.oB)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"}),(0,Me.jt)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let le=(()=>{class gt extends A.Pl{constructor(be,$,ne,ke){super(be,$,ke),this._host=ne,this._centeringSub=P.w0.EMPTY,this._leavingSub=P.w0.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,j.O)(this._host._isCenterPosition(this._host._position))).subscribe(be=>{be&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t._Vd),t.Y36(t.s_b),t.Y36((0,t.Gpc)(()=>pe)),t.Y36(e.K0))};static#t=this.\u0275dir=t.lG2({type:gt,selectors:[["","matTabBodyHost",""]],features:[t.qOj]})}return gt})(),pe=(()=>{class gt{set position(be){this._positionIndex=be,this._computePositionAnimationState()}constructor(be,$,ne){this._elementRef=be,this._dir=$,this._dirChangeSubscription=P.w0.EMPTY,this._translateTabComplete=new d.x,this._onCentering=new t.vpe,this._beforeCentering=new t.vpe,this._afterLeavingCenter=new t.vpe,this._onCentered=new t.vpe(!0),this.animationDuration="500ms",this.preserveContent=!1,$&&(this._dirChangeSubscription=$.change.subscribe(ke=>{this._computePositionAnimationState(ke),ne.markForCheck()})),this._translateTabComplete.pipe((0,K.x)((ke,Nt)=>ke.fromState===Nt.fromState&&ke.toState===Nt.toState)).subscribe(ke=>{this._isCenterPosition(ke.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(ke.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(be){const $=this._isCenterPosition(be.toState);this._beforeCentering.emit($),$&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(be){return"center"==be||"left-origin-center"==be||"right-origin-center"==be}_computePositionAnimationState(be=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==be?"left":"right":this._positionIndex>0?"ltr"==be?"right":"left":"center"}_computePositionFromOrigin(be){const $=this._getLayoutDirection();return"ltr"==$&&be<=0||"rtl"==$&&be>0?"left-origin-center":"right-origin-center"}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.SBq),t.Y36(m.Is,8),t.Y36(t.sBO))};static#t=this.\u0275cmp=t.Xpm({type:gt,selectors:[["mat-tab-body"]],viewQuery:function($,ne){if(1&$&&t.Gf(A.Pl,5),2&$){let ke;t.iGM(ke=t.CRH())&&(ne._portalHost=ke.first)}},hostAttrs:[1,"mat-mdc-tab-body"],inputs:{_content:["content","_content"],origin:"origin",animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"},decls:3,vars:6,consts:[["cdkScrollable","",1,"mat-mdc-tab-body-content"],["content",""],["matTabBodyHost",""]],template:function($,ne){1&$&&(t.TgZ(0,"div",0,1),t.NdJ("@translateTab.start",function(Nt){return ne._onTranslateTabStarted(Nt)})("@translateTab.done",function(Nt){return ne._translateTabComplete.next(Nt)}),t.YNc(2,s,0,0,"ng-template",2),t.qZA()),2&$&&t.Q6J("@translateTab",t.WLB(3,h,ne._position,t.VKq(1,f,ne.animationDuration)))},dependencies:[le],styles:['.mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-mdc-tab-body-content[style*="visibility: hidden"]{display:none}'],encapsulation:2,data:{animation:[xe.translateTab]}})}return gt})();const qe=new t.OlP("MatTabContent");let re=(()=>{class gt{constructor(be){this.template=be}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.Rgc))};static#t=this.\u0275dir=t.lG2({type:gt,selectors:[["","matTabContent",""]],features:[t._Bn([{provide:qe,useExisting:gt}])]})}return gt})();const ve=new t.OlP("MatTabLabel"),ce=new t.OlP("MAT_TAB");let Ze=(()=>{class gt extends A.ig{constructor(be,$,ne){super(be,$),this._closestTab=ne}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.Rgc),t.Y36(t.s_b),t.Y36(ce,8))};static#t=this.\u0275dir=t.lG2({type:gt,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[t._Bn([{provide:ve,useExisting:gt}]),t.qOj]})}return gt})();const We="mdc-tab-indicator--active",Ct="mdc-tab-indicator--no-transition";class ut{constructor(Le){this._items=Le}hide(){this._items.forEach(Le=>Le.deactivateInkBar())}alignToElement(Le){const be=this._items.find(ne=>ne.elementRef.nativeElement===Le),$=this._currentItem;if(be!==$&&($?.deactivateInkBar(),be)){const ne=$?.elementRef.nativeElement.getBoundingClientRect?.();be.activateInkBar(ne),this._currentItem=be}}}function It(gt){return class extends gt{constructor(...Le){super(...Le),this._fitToContent=!1}get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(Le){const be=(0,J.Ig)(Le);this._fitToContent!==be&&(this._fitToContent=be,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(Le){const be=this.elementRef.nativeElement;if(!Le||!be.getBoundingClientRect||!this._inkBarContentElement)return void be.classList.add(We);const $=be.getBoundingClientRect(),ne=Le.width/$.width,ke=Le.left-$.left;be.classList.add(Ct),this._inkBarContentElement.style.setProperty("transform",`translateX(${ke}px) scaleX(${ne})`),be.getBoundingClientRect(),be.classList.remove(Ct),be.classList.add(We),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this.elementRef.nativeElement.classList.remove(We)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const Le=this.elementRef.nativeElement.ownerDocument||document;this._inkBarElement=Le.createElement("span"),this._inkBarContentElement=Le.createElement("span"),this._inkBarElement.className="mdc-tab-indicator",this._inkBarContentElement.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",this._inkBarElement.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this.elementRef.nativeElement.querySelector(".mdc-tab__content"):this.elementRef.nativeElement).appendChild(this._inkBarElement)}}}const rt=It((0,y.Id)(class{}));let $e=(()=>{class gt extends rt{constructor(be){super(),this.elementRef=be}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.SBq))};static#t=this.\u0275dir=t.lG2({type:gt,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function($,ne){2&$&&(t.uIk("aria-disabled",!!ne.disabled),t.ekj("mat-mdc-tab-disabled",ne.disabled))},inputs:{disabled:"disabled",fitInkBarToContent:"fitInkBarToContent"},features:[t.qOj]})}return gt})();const Ie=(0,y.Id)(class{}),lt=new t.OlP("MAT_TAB_GROUP");let Qe=(()=>{class gt extends Ie{get templateLabel(){return this._templateLabel}set templateLabel(be){this._setTemplateLabelInput(be)}get content(){return this._contentPortal}constructor(be,$){super(),this._viewContainerRef=be,this._closestTabGroup=$,this._explicitContent=void 0,this.textLabel="",this._contentPortal=null,this._stateChanges=new d.x,this.position=null,this.origin=null,this.isActive=!1}ngOnChanges(be){(be.hasOwnProperty("textLabel")||be.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new A.UE(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(be){be&&be._closestTab===this&&(this._templateLabel=be)}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.s_b),t.Y36(lt,8))};static#t=this.\u0275cmp=t.Xpm({type:gt,selectors:[["mat-tab"]],contentQueries:function($,ne,ke){if(1&$&&(t.Suo(ke,Ze,5),t.Suo(ke,re,7,t.Rgc)),2&$){let Nt;t.iGM(Nt=t.CRH())&&(ne.templateLabel=Nt.first),t.iGM(Nt=t.CRH())&&(ne._explicitContent=Nt.first)}},viewQuery:function($,ne){if(1&$&&t.Gf(t.Rgc,7),2&$){let ke;t.iGM(ke=t.CRH())&&(ne._implicitContent=ke.first)}},inputs:{disabled:"disabled",textLabel:["label","textLabel"],ariaLabel:["aria-label","ariaLabel"],ariaLabelledby:["aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],features:[t._Bn([{provide:ce,useExisting:gt}]),t.qOj,t.TTD],ngContentSelectors:D,decls:1,vars:0,template:function($,ne){1&$&&(t.F$t(),t.YNc(0,C,1,0,"ng-template"))},encapsulation:2})}return gt})();const St=(0,S.i$)({passive:!0});let Ue=(()=>{class gt{get disablePagination(){return this._disablePagination}set disablePagination(be){this._disablePagination=(0,J.Ig)(be)}get selectedIndex(){return this._selectedIndex}set selectedIndex(be){be=(0,J.su)(be),this._selectedIndex!=be&&(this._selectedIndexChanged=!0,this._selectedIndex=be,this._keyManager&&this._keyManager.updateActiveItem(be))}constructor(be,$,ne,ke,Nt,At,Wt){this._elementRef=be,this._changeDetectorRef=$,this._viewportRuler=ne,this._dir=ke,this._ngZone=Nt,this._platform=At,this._animationMode=Wt,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new d.x,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new d.x,this._disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new t.vpe,this.indexFocused=new t.vpe,Nt.runOutsideAngular(()=>{(0,E.R)(be.nativeElement,"mouseleave").pipe((0,X.R)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}ngAfterViewInit(){(0,E.R)(this._previousPaginator.nativeElement,"touchstart",St).pipe((0,X.R)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,E.R)(this._nextPaginator.nativeElement,"touchstart",St).pipe((0,X.R)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const be=this._dir?this._dir.change:(0,M.of)("ltr"),$=this._viewportRuler.change(150),ne=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new w.Em(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,ie.q)(1)).subscribe(ne),(0,I.T)(be,$,this._items.changes,this._itemsResized()).pipe((0,X.R)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),ne()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(ke=>{this.indexFocused.emit(ke),this._setTabFocus(ke)})}_itemsResized(){return"function"!=typeof ResizeObserver?k.E:this._items.changes.pipe((0,j.O)(this._items),(0,se.w)(be=>new z.y($=>this._ngZone.runOutsideAngular(()=>{const ne=new ResizeObserver(ke=>$.next(ke));return be.forEach(ke=>ne.observe(ke.elementRef.nativeElement)),()=>{ne.disconnect()}}))),(0,ue.T)(1),(0,ae.h)(be=>be.some($=>$.contentRect.width>0&&$.contentRect.height>0)))}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._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(be){if(!(0,n.Vb)(be))switch(be.keyCode){case n.K5:case n.L_:if(this.focusIndex!==this.selectedIndex){const $=this._items.get(this.focusIndex);$&&!$.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(be))}break;default:this._keyManager.onKeydown(be)}}_onContentChanges(){const be=this._elementRef.nativeElement.textContent;be!==this._currentTextContent&&(this._currentTextContent=be||"",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(be){!this._isValidIndex(be)||this.focusIndex===be||!this._keyManager||this._keyManager.setActiveItem(be)}_isValidIndex(be){return!this._items||!!this._items.toArray()[be]}_setTabFocus(be){if(this._showPaginationControls&&this._scrollToLabel(be),this._items&&this._items.length){this._items.toArray()[be].focus();const $=this._tabListContainer.nativeElement;$.scrollLeft="ltr"==this._getLayoutDirection()?0:$.scrollWidth-$.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const be=this.scrollDistance,$="ltr"===this._getLayoutDirection()?-be:be;this._tabList.nativeElement.style.transform=`translateX(${Math.round($)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(be){this._scrollTo(be)}_scrollHeader(be){return this._scrollTo(this._scrollDistance+("before"==be?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(be){this._stopInterval(),this._scrollHeader(be)}_scrollToLabel(be){if(this.disablePagination)return;const $=this._items?this._items.toArray()[be]:null;if(!$)return;const ne=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:ke,offsetWidth:Nt}=$.elementRef.nativeElement;let At,Wt;"ltr"==this._getLayoutDirection()?(At=ke,Wt=At+Nt):(Wt=this._tabListInner.nativeElement.offsetWidth-ke,At=Wt-Nt);const gi=this.scrollDistance,ei=this.scrollDistance+ne;Atei&&(this.scrollDistance+=Math.min(Wt-ei,At-gi))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const be=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;be||(this.scrollDistance=0),be!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=be}}_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 be=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,$=be?be.elementRef.nativeElement:null;$?this._inkBar.alignToElement($):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(be,$){$&&null!=$.button&&0!==$.button||(this._stopInterval(),(0,B.H)(650,100).pipe((0,X.R)((0,I.T)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:ne,distance:ke}=this._scrollHeader(be);(0===ke||ke>=ne)&&this._stopInterval()}))}_scrollTo(be){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const $=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min($,be)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:$,distance:this._scrollDistance}}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(he.rL),t.Y36(m.Is,8),t.Y36(t.R0b),t.Y36(S.t4),t.Y36(t.QbO,8))};static#t=this.\u0275dir=t.lG2({type:gt,inputs:{disablePagination:"disablePagination"}})}return gt})(),Bt=(()=>{class gt extends Ue{get disableRipple(){return this._disableRipple}set disableRipple(be){this._disableRipple=(0,J.Ig)(be)}constructor(be,$,ne,ke,Nt,At,Wt){super(be,$,ne,ke,Nt,At,Wt),this._disableRipple=!1}ngAfterContentInit(){this._inkBar=new ut(this._items),super.ngAfterContentInit()}_itemSelected(be){be.preventDefault()}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(he.rL),t.Y36(m.Is,8),t.Y36(t.R0b),t.Y36(S.t4),t.Y36(t.QbO,8))};static#t=this.\u0275cmp=t.Xpm({type:gt,selectors:[["mat-tab-header"]],contentQueries:function($,ne,ke){if(1&$&&t.Suo(ke,$e,4),2&$){let Nt;t.iGM(Nt=t.CRH())&&(ne._items=Nt)}},viewQuery:function($,ne){if(1&$&&(t.Gf(O,7),t.Gf(v,7),t.Gf(r,7),t.Gf(g,5),t.Gf(H,5)),2&$){let ke;t.iGM(ke=t.CRH())&&(ne._tabListContainer=ke.first),t.iGM(ke=t.CRH())&&(ne._tabList=ke.first),t.iGM(ke=t.CRH())&&(ne._tabListInner=ke.first),t.iGM(ke=t.CRH())&&(ne._nextPaginator=ke.first),t.iGM(ke=t.CRH())&&(ne._previousPaginator=ke.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function($,ne){2&$&&t.ekj("mat-mdc-tab-header-pagination-controls-enabled",ne._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==ne._getLayoutDirection())},inputs:{selectedIndex:"selectedIndex",disableRipple:"disableRipple"},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[t.qOj],ngContentSelectors:D,decls:13,vars:10,consts:[["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"matRippleDisabled","disabled","click","mousedown","touchend"],["previousPaginator",""],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["tabListContainer",""],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],["tabList",""],[1,"mat-mdc-tab-labels"],["tabListInner",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"matRippleDisabled","disabled","mousedown","click","touchend"],["nextPaginator",""]],template:function($,ne){1&$&&(t.F$t(),t.TgZ(0,"button",0,1),t.NdJ("click",function(){return ne._handlePaginatorClick("before")})("mousedown",function(Nt){return ne._handlePaginatorPress("before",Nt)})("touchend",function(){return ne._stopInterval()}),t._UZ(2,"div",2),t.qZA(),t.TgZ(3,"div",3,4),t.NdJ("keydown",function(Nt){return ne._handleKeydown(Nt)}),t.TgZ(5,"div",5,6),t.NdJ("cdkObserveContent",function(){return ne._onContentChanges()}),t.TgZ(7,"div",7,8),t.Hsn(9),t.qZA()()(),t.TgZ(10,"button",9,10),t.NdJ("mousedown",function(Nt){return ne._handlePaginatorPress("after",Nt)})("click",function(){return ne._handlePaginatorClick("after")})("touchend",function(){return ne._stopInterval()}),t._UZ(12,"div",2),t.qZA()),2&$&&(t.ekj("mat-mdc-tab-header-pagination-disabled",ne._disableScrollBefore),t.Q6J("matRippleDisabled",ne._disableScrollBefore||ne.disableRipple)("disabled",ne._disableScrollBefore||null),t.xp6(3),t.ekj("_mat-animation-noopable","NoopAnimations"===ne._animationMode),t.xp6(7),t.ekj("mat-mdc-tab-header-pagination-disabled",ne._disableScrollAfter),t.Q6J("matRippleDisabled",ne._disableScrollAfter||ne.disableRipple)("disabled",ne._disableScrollAfter||null))},dependencies:[y.wG,l.wD],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-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:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-header-pagination-icon-color)}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}._mat-animation-noopable span.mdc-tab-indicator__content,._mat-animation-noopable span.mdc-tab__text-label{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.mat-mdc-tab::before{margin:5px}.cdk-high-contrast-active .mat-mdc-tab[aria-disabled=true]{color:GrayText}"],encapsulation:2})}return gt})();const Ye=new t.OlP("MAT_TABS_CONFIG");let je=0;const Ft=(0,y.pj)((0,y.Kr)(class{constructor(gt){this._elementRef=gt}}),"primary");let xt=(()=>{class gt extends Ft{get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(be){this._fitInkBarToContent=(0,J.Ig)(be),this._changeDetectorRef.markForCheck()}get stretchTabs(){return this._stretchTabs}set stretchTabs(be){this._stretchTabs=(0,J.Ig)(be)}get dynamicHeight(){return this._dynamicHeight}set dynamicHeight(be){this._dynamicHeight=(0,J.Ig)(be)}get selectedIndex(){return this._selectedIndex}set selectedIndex(be){this._indexToSelect=(0,J.su)(be,null)}get animationDuration(){return this._animationDuration}set animationDuration(be){this._animationDuration=/^\d+$/.test(be+"")?be+"ms":be}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(be){this._contentTabIndex=(0,J.su)(be,null)}get disablePagination(){return this._disablePagination}set disablePagination(be){this._disablePagination=(0,J.Ig)(be)}get preserveContent(){return this._preserveContent}set preserveContent(be){this._preserveContent=(0,J.Ig)(be)}get backgroundColor(){return this._backgroundColor}set backgroundColor(be){const $=this._elementRef.nativeElement.classList;$.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),be&&$.add("mat-tabs-with-background",`mat-background-${be}`),this._backgroundColor=be}constructor(be,$,ne,ke){super(be),this._changeDetectorRef=$,this._animationMode=ke,this._tabs=new t.n_E,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=P.w0.EMPTY,this._tabLabelSubscription=P.w0.EMPTY,this._fitInkBarToContent=!1,this._stretchTabs=!0,this._dynamicHeight=!1,this._selectedIndex=null,this.headerPosition="above",this._disablePagination=!1,this._preserveContent=!1,this.selectedIndexChange=new t.vpe,this.focusChange=new t.vpe,this.animationDone=new t.vpe,this.selectedTabChange=new t.vpe(!0),this._groupId=je++,this.animationDuration=ne&&ne.animationDuration?ne.animationDuration:"500ms",this.disablePagination=!(!ne||null==ne.disablePagination)&&ne.disablePagination,this.dynamicHeight=!(!ne||null==ne.dynamicHeight)&&ne.dynamicHeight,this.contentTabIndex=ne?.contentTabIndex??null,this.preserveContent=!!ne?.preserveContent,this.fitInkBarToContent=!(!ne||null==ne.fitInkBarToContent)&&ne.fitInkBarToContent,this.stretchTabs=!ne||null==ne.stretchTabs||ne.stretchTabs}ngAfterContentChecked(){const be=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=be){const $=null==this._selectedIndex;if(!$){this.selectedTabChange.emit(this._createChangeEvent(be));const ne=this._tabBodyWrapper.nativeElement;ne.style.minHeight=ne.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((ne,ke)=>ne.isActive=ke===be),$||(this.selectedIndexChange.emit(be),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach(($,ne)=>{$.position=ne-be,null!=this._selectedIndex&&0==$.position&&!$.origin&&($.origin=be-this._selectedIndex)}),this._selectedIndex!==be&&(this._selectedIndex=be,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const be=this._clampTabIndex(this._indexToSelect);if(be===this._selectedIndex){const $=this._tabs.toArray();let ne;for(let ke=0;ke<$.length;ke++)if($[ke].isActive){this._indexToSelect=this._selectedIndex=ke,this._lastFocusedTabIndex=null,ne=$[ke];break}!ne&&$[be]&&Promise.resolve().then(()=>{$[be].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(be))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,j.O)(this._allTabs)).subscribe(be=>{this._tabs.reset(be.filter($=>$._closestTabGroup===this||!$._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(be){const $=this._tabHeader;$&&($.focusIndex=be)}_focusChanged(be){this._lastFocusedTabIndex=be,this.focusChange.emit(this._createChangeEvent(be))}_createChangeEvent(be){const $=new Ot;return $.index=be,this._tabs&&this._tabs.length&&($.tab=this._tabs.toArray()[be]),$}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,I.T)(...this._tabs.map(be=>be._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(be){return Math.min(this._tabs.length-1,Math.max(be||0,0))}_getTabLabelId(be){return`mat-tab-label-${this._groupId}-${be}`}_getTabContentId(be){return`mat-tab-content-${this._groupId}-${be}`}_setTabBodyWrapperHeight(be){if(!this._dynamicHeight||!this._tabBodyWrapperHeight)return;const $=this._tabBodyWrapper.nativeElement;$.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&($.style.height=be+"px")}_removeTabBodyWrapperHeight(){const be=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=be.clientHeight,be.style.height="",this.animationDone.emit()}_handleClick(be,$,ne){$.focusIndex=ne,be.disabled||(this.selectedIndex=ne)}_getTabIndex(be){return be===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(be,$){be&&"mouse"!==be&&"touch"!==be&&(this._tabHeader.focusIndex=$)}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(t.SBq),t.Y36(t.sBO),t.Y36(Ye,8),t.Y36(t.QbO,8))};static#t=this.\u0275cmp=t.Xpm({type:gt,selectors:[["mat-tab-group"]],contentQueries:function($,ne,ke){if(1&$&&t.Suo(ke,Qe,5),2&$){let Nt;t.iGM(Nt=t.CRH())&&(ne._allTabs=Nt)}},viewQuery:function($,ne){if(1&$&&(t.Gf(R,5),t.Gf(ee,5)),2&$){let ke;t.iGM(ke=t.CRH())&&(ne._tabBodyWrapper=ke.first),t.iGM(ke=t.CRH())&&(ne._tabHeader=ke.first)}},hostAttrs:["ngSkipHydration","",1,"mat-mdc-tab-group"],hostVars:8,hostBindings:function($,ne){2&$&&(t.Udp("--mat-tab-animation-duration",ne.animationDuration),t.ekj("mat-mdc-tab-group-dynamic-height",ne.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===ne.headerPosition)("mat-mdc-tab-group-stretch-tabs",ne.stretchTabs))},inputs:{color:"color",disableRipple:"disableRipple",fitInkBarToContent:"fitInkBarToContent",stretchTabs:["mat-stretch-tabs","stretchTabs"],dynamicHeight:"dynamicHeight",selectedIndex:"selectedIndex",headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:"contentTabIndex",disablePagination:"disablePagination",preserveContent:"preserveContent",backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],features:[t._Bn([{provide:lt,useExisting:gt}]),t.qOj],decls:8,vars:5,consts:[[3,"selectedIndex","disableRipple","disablePagination","indexFocused","selectFocusedIndex"],["tabHeader",""],[1,"mat-mdc-tab-body-wrapper"],["tabBodyWrapper",""],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"id","ngClass","disabled","fitInkBarToContent","click","cdkFocusChange"],["tabNode",""],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"cdkPortalOutlet"],["role","tabpanel",3,"id","ngClass","content","position","origin","animationDuration","preserveContent","_onCentered","_onCentering"],["class","mdc-tab mat-mdc-tab mat-mdc-focus-indicator","role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",3,"id","mdc-tab--active","ngClass","disabled","fitInkBarToContent"],["role","tabpanel",3,"id","mat-mdc-tab-body-active","ngClass","content","position","origin","animationDuration","preserveContent"]],template:function($,ne){1&$&&(t.TgZ(0,"mat-tab-header",0,1),t.NdJ("indexFocused",function(Nt){return ne._focusChanged(Nt)})("selectFocusedIndex",function(Nt){return ne.selectedIndex=Nt}),t.SjG(2,Je,8,16,"div",12,t.x6l),t.qZA(),t.TgZ(4,"div",2,3),t.SjG(6,ye,1,12,"mat-tab-body",13,t.x6l),t.qZA()),2&$&&(t.Q6J("selectedIndex",ne.selectedIndex||0)("disableRipple",ne.disableRipple)("disablePagination",ne.disablePagination),t.xp6(2),t.wJu(ne._tabs),t.xp6(2),t.ekj("_mat-animation-noopable","NoopAnimations"===ne._animationMode),t.xp6(2),t.wJu(ne._tabs))},dependencies:[e.mk,A.Pl,y.wG,w.kH,pe,$e,Bt],styles:['.mdc-tab{min-width:90px;padding-right:24px;padding-left:24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;margin:0;padding-top:0;padding-bottom:0;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;-webkit-appearance:none;z-index:1}.mdc-tab::-moz-focus-inner{padding:0;border:0}.mdc-tab[hidden]{display:none}.mdc-tab--min-width{flex:0 1 auto}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab__icon{transition:150ms color linear;z-index:2}.mdc-tab--stacked .mdc-tab__content{flex-direction:column;align-items:center;justify-content:center}.mdc-tab--stacked .mdc-tab__text-label{padding-top:6px;padding-bottom:4px}.mdc-tab--active .mdc-tab__text-label,.mdc-tab--active .mdc-tab__icon{transition-delay:100ms}.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label{padding-left:8px;padding-right:0}[dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label,.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label[dir=rtl]{padding-left:0;padding-right:8px}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator__content--icon{align-self:center;margin:0 auto}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}.mdc-tab-indicator .mdc-tab-indicator__content{transition:250ms transform cubic-bezier(0.4, 0, 0.2, 1)}.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition:150ms opacity linear}.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition-delay:100ms}.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}'],encapsulation:2})}return gt})();class Ot{}let yt=0,at=(()=>{class gt extends Ue{get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(be){this._fitInkBarToContent.next((0,J.Ig)(be)),this._changeDetectorRef.markForCheck()}get stretchTabs(){return this._stretchTabs}set stretchTabs(be){this._stretchTabs=(0,J.Ig)(be)}get animationDuration(){return this._animationDuration}set animationDuration(be){this._animationDuration=/^\d+$/.test(be+"")?be+"ms":be}get backgroundColor(){return this._backgroundColor}set backgroundColor(be){const $=this._elementRef.nativeElement.classList;$.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),be&&$.add("mat-tabs-with-background",`mat-background-${be}`),this._backgroundColor=be}get disableRipple(){return this._disableRipple}set disableRipple(be){this._disableRipple=(0,J.Ig)(be)}constructor(be,$,ne,ke,Nt,At,Wt,gi){super(be,ke,Nt,$,ne,At,Wt),this._fitInkBarToContent=new W.X(!1),this._stretchTabs=!0,this._disableRipple=!1,this.color="primary",this.disablePagination=!(!gi||null==gi.disablePagination)&&gi.disablePagination,this.fitInkBarToContent=!(!gi||null==gi.fitInkBarToContent)&&gi.fitInkBarToContent,this.stretchTabs=!gi||null==gi.stretchTabs||gi.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new ut(this._items),this._items.changes.pipe((0,j.O)(null),(0,X.R)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const be=this._items.toArray();for(let $=0;$.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:flex-end}.mat-mdc-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-focus-indicator::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}"],encapsulation:2})}return gt})();const Ee=It((0,y.sb)((0,y.Kr)((0,y.Id)(class{}))));let nt=(()=>{class gt extends Ee{get active(){return this._isActive}set active(be){const $=(0,J.Ig)(be);$!==this._isActive&&(this._isActive=$,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}constructor(be,$,ne,ke,Nt,At){super(),this._tabNavBar=be,this.elementRef=$,this._focusMonitor=Nt,this._destroyed=new d.x,this._isActive=!1,this.id="mat-tab-link-"+yt++,this.rippleConfig=ne||{},this.tabIndex=parseInt(ke)||0,"NoopAnimations"===At&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),be._fitInkBarToContent.pipe((0,X.R)(this._destroyed)).subscribe(Wt=>{this.fitInkBarToContent=Wt})}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),super.ngOnDestroy(),this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(be){(be.keyCode===n.L_||be.keyCode===n.K5)&&(this.disabled?be.preventDefault():this._tabNavBar.tabPanel&&this.elementRef.nativeElement.click())}_getAriaControls(){return this._tabNavBar.tabPanel?this._tabNavBar.tabPanel?.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&&!this.disabled?0:-1:this.tabIndex}static#e=this.\u0275fac=function($){return new($||gt)(t.Y36(at),t.Y36(t.SBq),t.Y36(y.Y2,8),t.$8M("tabindex"),t.Y36(w.tE),t.Y36(t.QbO,8))};static#t=this.\u0275cmp=t.Xpm({type:gt,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-mdc-focus-indicator"],hostVars:11,hostBindings:function($,ne){1&$&&t.NdJ("focus",function(){return ne._handleFocus()})("keydown",function(Nt){return ne._handleKeydown(Nt)}),2&$&&(t.uIk("aria-controls",ne._getAriaControls())("aria-current",ne._getAriaCurrent())("aria-disabled",ne.disabled)("aria-selected",ne._getAriaSelected())("id",ne.id)("tabIndex",ne._getTabIndex())("role",ne._getRole()),t.ekj("mat-mdc-tab-disabled",ne.disabled)("mdc-tab--active",ne.active))},inputs:{disabled:"disabled",disableRipple:"disableRipple",tabIndex:"tabIndex",active:"active",id:"id"},exportAs:["matTabLink"],features:[t.qOj],attrs:de,ngContentSelectors:D,decls:5,vars:2,consts:[[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"]],template:function($,ne){1&$&&(t.F$t(),t._UZ(0,"span",0)(1,"div",1),t.TgZ(2,"span",2)(3,"span",3),t.Hsn(4),t.qZA()()),2&$&&(t.xp6(1),t.Q6J("matRippleTrigger",ne.elementRef.nativeElement)("matRippleDisabled",ne.rippleDisabled))},dependencies:[y.wG],styles:['.mat-mdc-tab-link{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab-link:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab-link:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab-link.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab-link.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab-link .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab-link .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab-link:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab-link.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab-link.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab-link .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link{flex-grow:1}.mat-mdc-tab-link::before{margin:5px}@media(max-width: 599px){.mat-mdc-tab-link{min-width:72px}}'],encapsulation:2,changeDetection:0})}return gt})(),Ge=(()=>{class gt{constructor(){this.id="mat-tab-nav-panel-"+yt++}static#e=this.\u0275fac=function($){return new($||gt)};static#t=this.\u0275cmp=t.Xpm({type:gt,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function($,ne){2&$&&t.uIk("aria-labelledby",ne._activeTabId)("id",ne.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],ngContentSelectors:D,decls:1,vars:0,template:function($,ne){1&$&&(t.F$t(),t.Hsn(0))},encapsulation:2,changeDetection:0})}return gt})(),Xe=(()=>{class gt{static#e=this.\u0275fac=function($){return new($||gt)};static#t=this.\u0275mod=t.oAB({type:gt});static#i=this.\u0275inj=t.cJS({imports:[e.ez,y.BQ,A.eL,y.si,l.Q8,w.rt,y.BQ]})}return gt})()},1274:(Fe,q,p)=>{"use strict";p.d(q,{Ye:()=>d,g0:()=>M});var e=p(9212),t=p(3680),y=p(2831),A=p(6814);const l=["*",[["mat-toolbar-row"]]],w=["*","mat-toolbar-row"],m=(0,t.pj)(class{constructor(I){this._elementRef=I}});let P=(()=>{class I{static#e=this.\u0275fac=function(B){return new(B||I)};static#t=this.\u0275dir=e.lG2({type:I,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]})}return I})(),d=(()=>{class I extends m{constructor(z,B,W){super(z),this._platform=B,this._document=W}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static#e=this.\u0275fac=function(B){return new(B||I)(e.Y36(e.SBq),e.Y36(y.t4),e.Y36(A.K0))};static#t=this.\u0275cmp=e.Xpm({type:I,selectors:[["mat-toolbar"]],contentQueries:function(B,W,j){if(1&B&&e.Suo(j,P,5),2&B){let K;e.iGM(K=e.CRH())&&(W._toolbarRows=K)}},hostAttrs:[1,"mat-toolbar"],hostVars:4,hostBindings:function(B,W){2&B&&e.ekj("mat-toolbar-multiple-rows",W._toolbarRows.length>0)("mat-toolbar-single-row",0===W._toolbarRows.length)},inputs:{color:"color"},exportAs:["matToolbar"],features:[e.qOj],ngContentSelectors:w,decls:2,vars:0,template:function(B,W){1&B&&(e.F$t(l),e.Hsn(0),e.Hsn(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color);color:var(--mat-toolbar-container-text-color)}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font);font-size:var(--mat-toolbar-title-text-size);line-height:var(--mat-toolbar-title-text-line-height);font-weight:var(--mat-toolbar-title-text-weight);letter-spacing:var(--mat-toolbar-title-text-tracking);margin:0}.cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mdc-text-button-label-text-color: inherit;--mdc-outlined-button-label-text-color: inherit}.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;height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height)}}"],encapsulation:2,changeDetection:0})}return I})(),M=(()=>{class I{static#e=this.\u0275fac=function(B){return new(B||I)};static#t=this.\u0275mod=e.oAB({type:I});static#i=this.\u0275inj=e.cJS({imports:[t.BQ,t.BQ]})}return I})()},2596:(Fe,q,p)=>{"use strict";p.d(q,{AV:()=>v,gM:()=>C});var e=p(9773),t=p(8180),y=p(2495),A=p(6028),l=p(9212),w=p(6814),m=p(2831),P=p(4300),d=p(9388),E=p(3651),M=p(5407),I=p(8484),k=p(8645),B=(p(6825),p(3680));const W=["tooltip"],X=new l.OlP("mat-tooltip-scroll-strategy"),se={provide:X,deps:[E.aV],useFactory:function ie(r){return()=>r.scrollStrategies.reposition({scrollThrottle:20})}},ae=new l.OlP("mat-tooltip-default-options",{providedIn:"root",factory:function ue(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),J="tooltip-panel",he=(0,m.i$)({passive:!0});let C=(()=>{class r{get position(){return this._position}set position(H){H!==this._position&&(this._position=H,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(H){this._positionAtOrigin=(0,y.Ig)(H),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(H){this._disabled=(0,y.Ig)(H),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(H){this._showDelay=(0,y.su)(H)}get hideDelay(){return this._hideDelay}set hideDelay(H){this._hideDelay=(0,y.su)(H),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(H){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=H?String(H).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(H){this._tooltipClass=H,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}constructor(H,R,ee,De,ct,Ke,Je,ye,fe,de,xe,le){this._overlay=H,this._elementRef=R,this._scrollDispatcher=ee,this._viewContainerRef=De,this._ngZone=ct,this._platform=Ke,this._ariaDescriber=Je,this._focusMonitor=ye,this._dir=de,this._defaultOptions=xe,this._position="below",this._positionAtOrigin=!1,this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._tooltipComponent=D,this._viewportMargin=8,this._cssClassPrefix="mat-mdc",this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new k.x,this._scrollStrategy=fe,this._document=le,xe&&(this._showDelay=xe.showDelay,this._hideDelay=xe.hideDelay,xe.position&&(this.position=xe.position),xe.positionAtOrigin&&(this.positionAtOrigin=xe.positionAtOrigin),xe.touchGestures&&(this.touchGestures=xe.touchGestures)),de.change.pipe((0,e.R)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)}),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,e.R)(this._destroyed)).subscribe(H=>{H?"keyboard"===H&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const H=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([R,ee])=>{H.removeEventListener(R,ee,he)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(H,this.message,"tooltip"),this._focusMonitor.stopMonitoring(H)}show(H=this.showDelay,R){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const ee=this._createOverlay(R);this._detach(),this._portal=this._portal||new I.C5(this._tooltipComponent,this._viewContainerRef);const De=this._tooltipInstance=ee.attach(this._portal).instance;De._triggerElement=this._elementRef.nativeElement,De._mouseLeaveHideDelay=this._hideDelay,De.afterHidden().pipe((0,e.R)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),De.show(H)}hide(H=this.hideDelay){const R=this._tooltipInstance;R&&(R.isVisible()?R.hide(H):(R._cancelPendingAnimations(),this._detach()))}toggle(H){this._isTooltipVisible()?this.hide():this.show(void 0,H)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(H){if(this._overlayRef){const De=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!H)&&De._origin instanceof l.SBq)return this._overlayRef;this._detach()}const R=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),ee=this._overlay.position().flexibleConnectedTo(this.positionAtOrigin&&H||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(R);return ee.positionChanges.pipe((0,e.R)(this._destroyed)).subscribe(De=>{this._updateCurrentPositionClass(De.connectionPair),this._tooltipInstance&&De.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:ee,panelClass:`${this._cssClassPrefix}-${J}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,e.R)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,e.R)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,e.R)(this._destroyed)).subscribe(De=>{this._isTooltipVisible()&&De.keyCode===A.hY&&!(0,A.Vb)(De)&&(De.preventDefault(),De.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.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(H){const R=H.getConfig().positionStrategy,ee=this._getOrigin(),De=this._getOverlayPosition();R.withPositions([this._addOffset({...ee.main,...De.main}),this._addOffset({...ee.fallback,...De.fallback})])}_addOffset(H){const ee=!this._dir||"ltr"==this._dir.value;return"top"===H.originY?H.offsetY=-8:"bottom"===H.originY?H.offsetY=8:"start"===H.originX?H.offsetX=ee?-8:8:"end"===H.originX&&(H.offsetX=ee?8:-8),H}_getOrigin(){const H=!this._dir||"ltr"==this._dir.value,R=this.position;let ee;"above"==R||"below"==R?ee={originX:"center",originY:"above"==R?"top":"bottom"}:"before"==R||"left"==R&&H||"right"==R&&!H?ee={originX:"start",originY:"center"}:("after"==R||"right"==R&&H||"left"==R&&!H)&&(ee={originX:"end",originY:"center"});const{x:De,y:ct}=this._invertPosition(ee.originX,ee.originY);return{main:ee,fallback:{originX:De,originY:ct}}}_getOverlayPosition(){const H=!this._dir||"ltr"==this._dir.value,R=this.position;let ee;"above"==R?ee={overlayX:"center",overlayY:"bottom"}:"below"==R?ee={overlayX:"center",overlayY:"top"}:"before"==R||"left"==R&&H||"right"==R&&!H?ee={overlayX:"end",overlayY:"center"}:("after"==R||"right"==R&&H||"left"==R&&!H)&&(ee={overlayX:"start",overlayY:"center"});const{x:De,y:ct}=this._invertPosition(ee.overlayX,ee.overlayY);return{main:ee,fallback:{overlayX:De,overlayY:ct}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,t.q)(1),(0,e.R)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(H){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=H,this._tooltipInstance._markForCheck())}_invertPosition(H,R){return"above"===this.position||"below"===this.position?"top"===R?R="bottom":"bottom"===R&&(R="top"):"end"===H?H="start":"start"===H&&(H="end"),{x:H,y:R}}_updateCurrentPositionClass(H){const{overlayY:R,originX:ee,originY:De}=H;let ct;if(ct="center"===R?this._dir&&"rtl"===this._dir.value?"end"===ee?"left":"right":"start"===ee?"left":"right":"bottom"===R&&"top"===De?"above":"below",ct!==this._currentPosition){const Ke=this._overlayRef;if(Ke){const Je=`${this._cssClassPrefix}-${J}-`;Ke.removePanelClass(Je+this._currentPosition),Ke.addPanelClass(Je+ct)}this._currentPosition=ct}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",H=>{let R;this._setupPointerExitEventsIfNeeded(),void 0!==H.x&&void 0!==H.y&&(R=H),this.show(void 0,R)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",H=>{const R=H.targetTouches?.[0],ee=R?{x:R.clientX,y:R.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(void 0,ee),500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const H=[];if(this._platformSupportsMouseEvents())H.push(["mouseleave",R=>{const ee=R.relatedTarget;(!ee||!this._overlayRef?.overlayElement.contains(ee))&&this.hide()}],["wheel",R=>this._wheelListener(R)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const R=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};H.push(["touchend",R],["touchcancel",R])}this._addListeners(H),this._passiveListeners.push(...H)}_addListeners(H){H.forEach(([R,ee])=>{this._elementRef.nativeElement.addEventListener(R,ee,he)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(H){if(this._isTooltipVisible()){const R=this._document.elementFromPoint(H.clientX,H.clientY),ee=this._elementRef.nativeElement;R!==ee&&!ee.contains(R)&&this.hide()}}_disableNativeGesturesIfNecessary(){const H=this.touchGestures;if("off"!==H){const R=this._elementRef.nativeElement,ee=R.style;("on"===H||"INPUT"!==R.nodeName&&"TEXTAREA"!==R.nodeName)&&(ee.userSelect=ee.msUserSelect=ee.webkitUserSelect=ee.MozUserSelect="none"),("on"===H||!R.draggable)&&(ee.webkitUserDrag="none"),ee.touchAction="none",ee.webkitTapHighlightColor="transparent"}}static#e=this.\u0275fac=function(R){return new(R||r)(l.Y36(E.aV),l.Y36(l.SBq),l.Y36(M.mF),l.Y36(l.s_b),l.Y36(l.R0b),l.Y36(m.t4),l.Y36(P.$s),l.Y36(P.tE),l.Y36(X),l.Y36(d.Is),l.Y36(ae,8),l.Y36(w.K0))};static#t=this.\u0275dir=l.lG2({type:r,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(R,ee){2&R&&l.ekj("mat-mdc-tooltip-disabled",ee.disabled)},inputs:{position:["matTooltipPosition","position"],positionAtOrigin:["matTooltipPositionAtOrigin","positionAtOrigin"],disabled:["matTooltipDisabled","disabled"],showDelay:["matTooltipShowDelay","showDelay"],hideDelay:["matTooltipHideDelay","hideDelay"],touchGestures:["matTooltipTouchGestures","touchGestures"],message:["matTooltip","message"],tooltipClass:["matTooltipClass","tooltipClass"]},exportAs:["matTooltip"]})}return r})(),D=(()=>{class r{constructor(H,R,ee){this._changeDetectorRef=H,this._elementRef=R,this._isMultiline=!1,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new k.x,this._showAnimation="mat-mdc-tooltip-show",this._hideAnimation="mat-mdc-tooltip-hide",this._animationsDisabled="NoopAnimations"===ee}show(H){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},H)}hide(H){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},H)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:H}){(!H||!this._triggerElement.contains(H))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const H=this._elementRef.nativeElement.getBoundingClientRect();return H.height>24&&H.width>=200}_handleAnimationEnd({animationName:H}){(H===this._showAnimation||H===this._hideAnimation)&&this._finalizeAnimation(H===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(H){H?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(H){const R=this._tooltip.nativeElement,ee=this._showAnimation,De=this._hideAnimation;if(R.classList.remove(H?De:ee),R.classList.add(H?ee:De),this._isVisible=H,H&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const ct=getComputedStyle(R);("0s"===ct.getPropertyValue("animation-duration")||"none"===ct.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}H&&this._onShow(),this._animationsDisabled&&(R.classList.add("_mat-animation-noopable"),this._finalizeAnimation(H))}static#e=this.\u0275fac=function(R){return new(R||r)(l.Y36(l.sBO),l.Y36(l.SBq),l.Y36(l.QbO,8))};static#t=this.\u0275cmp=l.Xpm({type:r,selectors:[["mat-tooltip-component"]],viewQuery:function(R,ee){if(1&R&&l.Gf(W,7),2&R){let De;l.iGM(De=l.CRH())&&(ee._tooltip=De.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(R,ee){1&R&&l.NdJ("mouseleave",function(ct){return ee._handleMouseLeave(ct)}),2&R&&l.Udp("zoom",ee.isVisible()?1:null)},decls:4,vars:4,consts:[[1,"mdc-tooltip","mdc-tooltip--shown","mat-mdc-tooltip",3,"ngClass","animationend"],["tooltip",""],[1,"mdc-tooltip__surface","mdc-tooltip__surface-animation"]],template:function(R,ee){1&R&&(l.TgZ(0,"div",0,1),l.NdJ("animationend",function(ct){return ee._handleAnimationEnd(ct)}),l.TgZ(2,"div",2),l._uU(3),l.qZA()()),2&R&&(l.ekj("mdc-tooltip--multiline",ee._isMultiline),l.Q6J("ngClass",ee.tooltipClass),l.xp6(3),l.Oqu(ee.message))},dependencies:[w.mk],styles:['.mdc-tooltip__surface{word-break:break-all;word-break:var(--mdc-tooltip-word-break, normal);overflow-wrap:anywhere}.mdc-tooltip--showing-transition .mdc-tooltip__surface-animation{transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-tooltip--hide-transition .mdc-tooltip__surface-animation{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-tooltip{position:fixed;display:none;z-index:9}.mdc-tooltip-wrapper--rich{position:relative}.mdc-tooltip--shown,.mdc-tooltip--showing,.mdc-tooltip--hide{display:inline-flex}.mdc-tooltip--shown.mdc-tooltip--rich,.mdc-tooltip--showing.mdc-tooltip--rich,.mdc-tooltip--hide.mdc-tooltip--rich{display:inline-block;left:-320px;position:absolute}.mdc-tooltip__surface{line-height:16px;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center}.mdc-tooltip__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-tooltip__surface::before{border-color:CanvasText}}.mdc-tooltip--rich .mdc-tooltip__surface{align-items:flex-start;display:flex;flex-direction:column;min-height:24px;min-width:40px;max-width:320px;position:relative}.mdc-tooltip--multiline .mdc-tooltip__surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface,.mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl]{text-align:right}.mdc-tooltip__surface .mdc-tooltip__title{margin:0 8px}.mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(200px - 2*8px);margin:8px;text-align:left}[dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content,.mdc-tooltip__surface .mdc-tooltip__content[dir=rtl]{text-align:right}.mdc-tooltip--rich .mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(320px - 2*8px);align-self:stretch}.mdc-tooltip__surface .mdc-tooltip__content-link{text-decoration:none}.mdc-tooltip--rich-actions,.mdc-tooltip__content,.mdc-tooltip__title{z-index:1}.mdc-tooltip__surface-animation{opacity:0;transform:scale(0.8);will-change:transform,opacity}.mdc-tooltip--shown .mdc-tooltip__surface-animation{transform:scale(1);opacity:1}.mdc-tooltip--hide .mdc-tooltip__surface-animation{transform:scale(1)}.mdc-tooltip__caret-surface-top,.mdc-tooltip__caret-surface-bottom{position:absolute;height:24px;width:24px;transform:rotate(35deg) skewY(20deg) scaleX(0.9396926208)}.mdc-tooltip__caret-surface-top .mdc-elevation-overlay,.mdc-tooltip__caret-surface-bottom .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-tooltip__caret-surface-bottom{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);outline:1px solid rgba(0,0,0,0);z-index:-1}@media screen and (forced-colors: active){.mdc-tooltip__caret-surface-bottom{outline-color:CanvasText}}.mat-mdc-tooltip .mdc-tooltip__surface{background-color:var(--mdc-plain-tooltip-container-color)}.mat-mdc-tooltip .mdc-tooltip__surface{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__caret-surface-top,.mat-mdc-tooltip .mdc-tooltip__caret-surface-bottom{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__surface{color:var(--mdc-plain-tooltip-supporting-text-color)}.mat-mdc-tooltip .mdc-tooltip__surface{font-family:var(--mdc-plain-tooltip-supporting-text-font);line-height:var(--mdc-plain-tooltip-supporting-text-line-height);font-size:var(--mdc-plain-tooltip-supporting-text-size);font-weight:var(--mdc-plain-tooltip-supporting-text-weight);letter-spacing:var(--mdc-plain-tooltip-supporting-text-tracking)}.mat-mdc-tooltip{position:relative;transform:scale(0)}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}'],encapsulation:2,changeDetection:0})}return r})(),v=(()=>{class r{static#e=this.\u0275fac=function(R){return new(R||r)};static#t=this.\u0275mod=l.oAB({type:r});static#i=this.\u0275inj=l.cJS({providers:[se],imports:[P.rt,w.ez,E.U8,B.BQ,B.BQ,M.ZD]})}return r})()},8445:(Fe,q,p)=>{"use strict";p.d(q,{Ar:()=>z,GZ:()=>I,WX:()=>se,dp:()=>K,eu:()=>W,fQ:()=>M,gi:()=>B,uo:()=>E});var e=p(1894),t=p(9212),y=p(3680),A=p(2495),l=p(8337),w=p(5619),m=p(3019),P=p(7398);const d=(0,y.sb)((0,y.Id)(e.Hs));let E=(()=>{class ue extends d{constructor(Me,J,he){super(Me,J),this.tabIndex=Number(he)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(J){return new(J||ue)(t.Y36(t.SBq),t.Y36(e._0),t.$8M("tabindex"))};static#t=this.\u0275dir=t.lG2({type:ue,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex"},exportAs:["matTreeNode"],features:[t._Bn([{provide:e.Hs,useExisting:ue}]),t.qOj]})}return ue})(),M=(()=>{class ue extends e.rO{static#e=this.\u0275fac=(()=>{let Me;return function(he){return(Me||(Me=t.n5z(ue)))(he||ue)}})();static#t=this.\u0275dir=t.lG2({type:ue,selectors:[["","matTreeNodeDef",""]],inputs:{when:["matTreeNodeDefWhen","when"],data:["matTreeNode","data"]},features:[t._Bn([{provide:e.rO,useExisting:ue}]),t.qOj]})}return ue})(),I=(()=>{class ue extends e.Xx{get disabled(){return this._disabled}set disabled(Me){this._disabled=(0,A.Ig)(Me)}get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(Me){this._tabIndex=Me??0}constructor(Me,J,he,S){super(Me,J,he),this._disabled=!1,this.tabIndex=Number(S)||0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(J){return new(J||ue)(t.Y36(t.SBq),t.Y36(e._0),t.Y36(t.ZZ4),t.$8M("tabindex"))};static#t=this.\u0275dir=t.lG2({type:ue,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{role:"role",disabled:"disabled",tabIndex:"tabIndex",node:["matNestedTreeNode","node"]},exportAs:["matNestedTreeNode"],features:[t._Bn([{provide:e.Xx,useExisting:ue},{provide:e.Hs,useExisting:ue},{provide:e.HI,useExisting:ue}]),t.qOj]})}return ue})(),z=(()=>{class ue{constructor(Me,J){this.viewContainer=Me,this._node=J}static#e=this.\u0275fac=function(J){return new(J||ue)(t.Y36(t.s_b),t.Y36(e.HI,8))};static#t=this.\u0275dir=t.lG2({type:ue,selectors:[["","matTreeNodeOutlet",""]],features:[t._Bn([{provide:e.cu,useExisting:ue}])]})}return ue})(),B=(()=>{class ue extends e._0{constructor(){super(...arguments),this._nodeOutlet=void 0}static#e=this.\u0275fac=(()=>{let Me;return function(he){return(Me||(Me=t.n5z(ue)))(he||ue)}})();static#t=this.\u0275cmp=t.Xpm({type:ue,selectors:[["mat-tree"]],viewQuery:function(J,he){if(1&J&&t.Gf(z,7),2&J){let S;t.iGM(S=t.CRH())&&(he._nodeOutlet=S.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],features:[t._Bn([{provide:e._0,useExisting:ue}]),t.qOj],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(J,he){1&J&&t.GkF(0,0)},dependencies:[z],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color)}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color);font-family:var(--mat-tree-node-text-font);font-size:var(--mat-tree-node-text-size);font-weight:var(--mat-tree-node-text-weight)}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height)}.mat-nested-tree-node{border-bottom-width:0}"],encapsulation:2})}return ue})(),W=(()=>{class ue extends e.Ud{static#e=this.\u0275fac=(()=>{let Me;return function(he){return(Me||(Me=t.n5z(ue)))(he||ue)}})();static#t=this.\u0275dir=t.lG2({type:ue,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:["matTreeNodeToggleRecursive","recursive"]},features:[t._Bn([{provide:e.Ud,useExisting:ue}]),t.qOj]})}return ue})(),K=(()=>{class ue{static#e=this.\u0275fac=function(J){return new(J||ue)};static#t=this.\u0275mod=t.oAB({type:ue});static#i=this.\u0275inj=t.cJS({imports:[e.nZ,y.BQ,y.BQ]})}return ue})();class se extends l.o2{constructor(){super(...arguments),this._data=new w.X([])}get data(){return this._data.value}set data(ae){this._data.next(ae)}connect(ae){return(0,m.T)(ae.viewChange,this._data).pipe((0,P.U)(()=>this.data))}disconnect(){}}},6593:(Fe,q,p)=>{"use strict";p.d(q,{Dx:()=>We,H7:()=>je,b2:()=>qe,q6:()=>de,se:()=>he,t6:()=>Ye});var e=p(9212),t=p(6814);class y extends t.w_{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class A extends y{static makeCurrent(){(0,t.HT)(new A)}onAndCancel(be,$,ne){return be.addEventListener($,ne),()=>{be.removeEventListener($,ne)}}dispatchEvent(be,$){be.dispatchEvent($)}remove(be){be.parentNode&&be.parentNode.removeChild(be)}createElement(be,$){return($=$||this.getDefaultDocument()).createElement(be)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(be){return be.nodeType===Node.ELEMENT_NODE}isShadowRoot(be){return be instanceof DocumentFragment}getGlobalEventTarget(be,$){return"window"===$?window:"document"===$?be:"body"===$?be.body:null}getBaseHref(be){const $=function w(){return l=l||document.querySelector("base"),l?l.getAttribute("href"):null}();return null==$?null:function P(Le){m=m||document.createElement("a"),m.setAttribute("href",Le);const be=m.pathname;return"/"===be.charAt(0)?be:`/${be}`}($)}resetBaseElement(){l=null}getUserAgent(){return window.navigator.userAgent}getCookie(be){return(0,t.Mx)(document.cookie,be)}}let m,l=null,E=(()=>{class Le{build(){return new XMLHttpRequest}static#e=this.\u0275fac=function(ne){return new(ne||Le)};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})();const M=new e.OlP("EventManagerPlugins");let I=(()=>{class Le{constructor($,ne){this._zone=ne,this._eventNameToPlugin=new Map,$.forEach(ke=>{ke.manager=this}),this._plugins=$.slice().reverse()}addEventListener($,ne,ke){return this._findPluginFor(ne).addEventListener($,ne,ke)}getZone(){return this._zone}_findPluginFor($){let ne=this._eventNameToPlugin.get($);if(ne)return ne;if(ne=this._plugins.find(Nt=>Nt.supports($)),!ne)throw new e.vHH(5101,!1);return this._eventNameToPlugin.set($,ne),ne}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(M),e.LFG(e.R0b))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})();class k{constructor(be){this._doc=be}}const z="ng-app-id";let B=(()=>{class Le{constructor($,ne,ke,Nt={}){this.doc=$,this.appId=ne,this.nonce=ke,this.platformId=Nt,this.styleRef=new Map,this.hostNodes=new Set,this.styleNodesInDOM=this.collectServerRenderedStyles(),this.platformIsServer=(0,t.PM)(Nt),this.resetHostNodes()}addStyles($){for(const ne of $)1===this.changeUsageCount(ne,1)&&this.onStyleAdded(ne)}removeStyles($){for(const ne of $)this.changeUsageCount(ne,-1)<=0&&this.onStyleRemoved(ne)}ngOnDestroy(){const $=this.styleNodesInDOM;$&&($.forEach(ne=>ne.remove()),$.clear());for(const ne of this.getAllStyles())this.onStyleRemoved(ne);this.resetHostNodes()}addHost($){this.hostNodes.add($);for(const ne of this.getAllStyles())this.addStyleToHost($,ne)}removeHost($){this.hostNodes.delete($)}getAllStyles(){return this.styleRef.keys()}onStyleAdded($){for(const ne of this.hostNodes)this.addStyleToHost(ne,$)}onStyleRemoved($){const ne=this.styleRef;ne.get($)?.elements?.forEach(ke=>ke.remove()),ne.delete($)}collectServerRenderedStyles(){const $=this.doc.head?.querySelectorAll(`style[${z}="${this.appId}"]`);if($?.length){const ne=new Map;return $.forEach(ke=>{null!=ke.textContent&&ne.set(ke.textContent,ke)}),ne}return null}changeUsageCount($,ne){const ke=this.styleRef;if(ke.has($)){const Nt=ke.get($);return Nt.usage+=ne,Nt.usage}return ke.set($,{usage:ne,elements:[]}),ne}getStyleElement($,ne){const ke=this.styleNodesInDOM,Nt=ke?.get(ne);if(Nt?.parentNode===$)return ke.delete(ne),Nt.removeAttribute(z),Nt;{const At=this.doc.createElement("style");return this.nonce&&At.setAttribute("nonce",this.nonce),At.textContent=ne,this.platformIsServer&&At.setAttribute(z,this.appId),$.appendChild(At),At}}addStyleToHost($,ne){const ke=this.getStyleElement($,ne),Nt=this.styleRef,At=Nt.get(ne)?.elements;At?At.push(ke):Nt.set(ne,{elements:[ke],usage:1})}resetHostNodes(){const $=this.hostNodes;$.clear(),$.add(this.doc.head)}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(t.K0),e.LFG(e.AFp),e.LFG(e.Ojb,8),e.LFG(e.Lbi))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})();const W={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/"},j=/%COMP%/g,K="%COMP%",X=`_nghost-${K}`,ie=`_ngcontent-${K}`,ue=new e.OlP("RemoveStylesOnCompDestroy",{providedIn:"root",factory:()=>!0});function J(Le,be){return be.map($=>$.replace(j,Le))}let he=(()=>{class Le{constructor($,ne,ke,Nt,At,Wt,gi,ei=null){this.eventManager=$,this.sharedStylesHost=ne,this.appId=ke,this.removeStylesOnCompDestroy=Nt,this.doc=At,this.platformId=Wt,this.ngZone=gi,this.nonce=ei,this.rendererByCompId=new Map,this.platformIsServer=(0,t.PM)(Wt),this.defaultRenderer=new S($,At,gi,this.platformIsServer)}createRenderer($,ne){if(!$||!ne)return this.defaultRenderer;this.platformIsServer&&ne.encapsulation===e.ifc.ShadowDom&&(ne={...ne,encapsulation:e.ifc.Emulated});const ke=this.getOrCreateRenderer($,ne);return ke instanceof D?ke.applyToHost($):ke instanceof C&&ke.applyStyles(),ke}getOrCreateRenderer($,ne){const ke=this.rendererByCompId;let Nt=ke.get(ne.id);if(!Nt){const At=this.doc,Wt=this.ngZone,gi=this.eventManager,ei=this.sharedStylesHost,$t=this.removeStylesOnCompDestroy,Fi=this.platformIsServer;switch(ne.encapsulation){case e.ifc.Emulated:Nt=new D(gi,ei,ne,this.appId,$t,At,Wt,Fi);break;case e.ifc.ShadowDom:return new h(gi,ei,$,ne,At,Wt,this.nonce,Fi);default:Nt=new C(gi,ei,ne,$t,At,Wt,Fi)}ke.set(ne.id,Nt)}return Nt}ngOnDestroy(){this.rendererByCompId.clear()}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(I),e.LFG(B),e.LFG(e.AFp),e.LFG(ue),e.LFG(t.K0),e.LFG(e.Lbi),e.LFG(e.R0b),e.LFG(e.Ojb))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})();class S{constructor(be,$,ne,ke){this.eventManager=be,this.doc=$,this.ngZone=ne,this.platformIsServer=ke,this.data=Object.create(null),this.throwOnSyntheticProps=!0,this.destroyNode=null}destroy(){}createElement(be,$){return $?this.doc.createElementNS(W[$]||$,be):this.doc.createElement(be)}createComment(be){return this.doc.createComment(be)}createText(be){return this.doc.createTextNode(be)}appendChild(be,$){(f(be)?be.content:be).appendChild($)}insertBefore(be,$,ne){be&&(f(be)?be.content:be).insertBefore($,ne)}removeChild(be,$){be&&be.removeChild($)}selectRootElement(be,$){let ne="string"==typeof be?this.doc.querySelector(be):be;if(!ne)throw new e.vHH(-5104,!1);return $||(ne.textContent=""),ne}parentNode(be){return be.parentNode}nextSibling(be){return be.nextSibling}setAttribute(be,$,ne,ke){if(ke){$=ke+":"+$;const Nt=W[ke];Nt?be.setAttributeNS(Nt,$,ne):be.setAttribute($,ne)}else be.setAttribute($,ne)}removeAttribute(be,$,ne){if(ne){const ke=W[ne];ke?be.removeAttributeNS(ke,$):be.removeAttribute(`${ne}:${$}`)}else be.removeAttribute($)}addClass(be,$){be.classList.add($)}removeClass(be,$){be.classList.remove($)}setStyle(be,$,ne,ke){ke&(e.JOm.DashCase|e.JOm.Important)?be.style.setProperty($,ne,ke&e.JOm.Important?"important":""):be.style[$]=ne}removeStyle(be,$,ne){ne&e.JOm.DashCase?be.style.removeProperty($):be.style[$]=""}setProperty(be,$,ne){null!=be&&(be[$]=ne)}setValue(be,$){be.nodeValue=$}listen(be,$,ne){if("string"==typeof be&&!(be=(0,t.q)().getGlobalEventTarget(this.doc,be)))throw new Error(`Unsupported event target ${be} for event ${$}`);return this.eventManager.addEventListener(be,$,this.decoratePreventDefault(ne))}decoratePreventDefault(be){return $=>{if("__ngUnwrap__"===$)return be;!1===(this.platformIsServer?this.ngZone.runGuarded(()=>be($)):be($))&&$.preventDefault()}}}function f(Le){return"TEMPLATE"===Le.tagName&&void 0!==Le.content}class h extends S{constructor(be,$,ne,ke,Nt,At,Wt,gi){super(be,Nt,At,gi),this.sharedStylesHost=$,this.hostEl=ne,this.shadowRoot=ne.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const ei=J(ke.id,ke.styles);for(const $t of ei){const Fi=document.createElement("style");Wt&&Fi.setAttribute("nonce",Wt),Fi.textContent=$t,this.shadowRoot.appendChild(Fi)}}nodeOrShadowRoot(be){return be===this.hostEl?this.shadowRoot:be}appendChild(be,$){return super.appendChild(this.nodeOrShadowRoot(be),$)}insertBefore(be,$,ne){return super.insertBefore(this.nodeOrShadowRoot(be),$,ne)}removeChild(be,$){return super.removeChild(this.nodeOrShadowRoot(be),$)}parentNode(be){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(be)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class C extends S{constructor(be,$,ne,ke,Nt,At,Wt,gi){super(be,Nt,At,Wt),this.sharedStylesHost=$,this.removeStylesOnCompDestroy=ke,this.styles=gi?J(gi,ne.styles):ne.styles}applyStyles(){this.sharedStylesHost.addStyles(this.styles)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles)}}class D extends C{constructor(be,$,ne,ke,Nt,At,Wt,gi){const ei=ke+"-"+ne.id;super(be,$,ne,Nt,At,Wt,gi,ei),this.contentAttr=function ae(Le){return ie.replace(j,Le)}(ei),this.hostAttr=function Me(Le){return X.replace(j,Le)}(ei)}applyToHost(be){this.applyStyles(),this.setAttribute(be,this.hostAttr,"")}createElement(be,$){const ne=super.createElement(be,$);return super.setAttribute(ne,this.contentAttr,""),ne}}let O=(()=>{class Le extends k{constructor($){super($)}supports($){return!0}addEventListener($,ne,ke){return $.addEventListener(ne,ke,!1),()=>this.removeEventListener($,ne,ke)}removeEventListener($,ne,ke){return $.removeEventListener(ne,ke)}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(t.K0))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})();const v=["alt","control","meta","shift"],r={"\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"},g={alt:Le=>Le.altKey,control:Le=>Le.ctrlKey,meta:Le=>Le.metaKey,shift:Le=>Le.shiftKey};let H=(()=>{class Le extends k{constructor($){super($)}supports($){return null!=Le.parseEventName($)}addEventListener($,ne,ke){const Nt=Le.parseEventName(ne),At=Le.eventCallback(Nt.fullKey,ke,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,t.q)().onAndCancel($,Nt.domEventName,At))}static parseEventName($){const ne=$.toLowerCase().split("."),ke=ne.shift();if(0===ne.length||"keydown"!==ke&&"keyup"!==ke)return null;const Nt=Le._normalizeKey(ne.pop());let At="",Wt=ne.indexOf("code");if(Wt>-1&&(ne.splice(Wt,1),At="code."),v.forEach(ei=>{const $t=ne.indexOf(ei);$t>-1&&(ne.splice($t,1),At+=ei+".")}),At+=Nt,0!=ne.length||0===Nt.length)return null;const gi={};return gi.domEventName=ke,gi.fullKey=At,gi}static matchEventFullKeyCode($,ne){let ke=r[$.key]||$.key,Nt="";return ne.indexOf("code.")>-1&&(ke=$.code,Nt="code."),!(null==ke||!ke)&&(ke=ke.toLowerCase()," "===ke?ke="space":"."===ke&&(ke="dot"),v.forEach(At=>{At!==ke&&(0,g[At])($)&&(Nt+=At+".")}),Nt+=ke,Nt===ne)}static eventCallback($,ne,ke){return Nt=>{Le.matchEventFullKeyCode(Nt,$)&&ke.runGuarded(()=>ne(Nt))}}static _normalizeKey($){return"esc"===$?"escape":$}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(t.K0))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})();const de=(0,e.eFA)(e._c5,"browser",[{provide:e.Lbi,useValue:t.bD},{provide:e.g9A,useValue:function Ke(){A.makeCurrent()},multi:!0},{provide:t.K0,useFactory:function ye(){return(0,e.RDi)(document),document},deps:[]}]),xe=new e.OlP(""),le=[{provide:e.rWj,useClass:class d{addToWindow(be){e.dqk.getAngularTestability=(ne,ke=!0)=>{const Nt=be.findTestabilityInTree(ne,ke);if(null==Nt)throw new e.vHH(5103,!1);return Nt},e.dqk.getAllAngularTestabilities=()=>be.getAllTestabilities(),e.dqk.getAllAngularRootElements=()=>be.getAllRootElements(),e.dqk.frameworkStabilizers||(e.dqk.frameworkStabilizers=[]),e.dqk.frameworkStabilizers.push(ne=>{const ke=e.dqk.getAllAngularTestabilities();let Nt=ke.length,At=!1;const Wt=function(gi){At=At||gi,Nt--,0==Nt&&ne(At)};ke.forEach(gi=>{gi.whenStable(Wt)})})}findTestabilityInTree(be,$,ne){return null==$?null:be.getTestability($)??(ne?(0,t.q)().isShadowRoot($)?this.findTestabilityInTree(be,$.host,!0):this.findTestabilityInTree(be,$.parentElement,!0):null)}},deps:[]},{provide:e.lri,useClass:e.dDg,deps:[e.R0b,e.eoX,e.rWj]},{provide:e.dDg,useClass:e.dDg,deps:[e.R0b,e.eoX,e.rWj]}],pe=[{provide:e.zSh,useValue:"root"},{provide:e.qLn,useFactory:function Je(){return new e.qLn},deps:[]},{provide:M,useClass:O,multi:!0,deps:[t.K0,e.R0b,e.Lbi]},{provide:M,useClass:H,multi:!0,deps:[t.K0]},he,B,I,{provide:e.FYo,useExisting:he},{provide:t.JF,useClass:E,deps:[]},[]];let qe=(()=>{class Le{constructor($){}static withServerTransition($){return{ngModule:Le,providers:[{provide:e.AFp,useValue:$.appId}]}}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(xe,12))};static#t=this.\u0275mod=e.oAB({type:Le});static#i=this.\u0275inj=e.cJS({providers:[...pe,...le],imports:[t.ez,e.hGG]})}return Le})(),We=(()=>{class Le{constructor($){this._doc=$}getTitle(){return this._doc.title}setTitle($){this._doc.title=$||""}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(t.K0))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:function(ne){let ke=null;return ke=ne?new ne:function Ze(){return new We((0,e.LFG)(t.K0))}(),ke},providedIn:"root"})}return Le})();typeof window<"u"&&window;const St={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},dt=new e.OlP("HammerGestureConfig"),te=new e.OlP("HammerLoader");let Ue=(()=>{class Le{constructor(){this.events=[],this.overrides={}}buildHammer($){const ne=new Hammer($,this.options);ne.get("pinch").set({enable:!0}),ne.get("rotate").set({enable:!0});for(const ke in this.overrides)ne.get(ke).set(this.overrides[ke]);return ne}static#e=this.\u0275fac=function(ne){return new(ne||Le)};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})(),Bt=(()=>{class Le extends k{constructor($,ne,ke,Nt){super($),this._config=ne,this.console=ke,this.loader=Nt,this._loaderPromise=null}supports($){return!(!St.hasOwnProperty($.toLowerCase())&&!this.isCustomEvent($)||!window.Hammer&&!this.loader)}addEventListener($,ne,ke){const Nt=this.manager.getZone();if(ne=ne.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Nt.runOutsideAngular(()=>this.loader());let At=!1,Wt=()=>{At=!0};return Nt.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?At||(Wt=this.addEventListener($,ne,ke)):Wt=()=>{}}).catch(()=>{Wt=()=>{}})),()=>{Wt()}}return Nt.runOutsideAngular(()=>{const At=this._config.buildHammer($),Wt=function(gi){Nt.runGuarded(function(){ke(gi)})};return At.on(ne,Wt),()=>{At.off(ne,Wt),"function"==typeof At.destroy&&At.destroy()}})}isCustomEvent($){return this._config.events.indexOf($)>-1}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(t.K0),e.LFG(dt),e.LFG(e.c2e),e.LFG(te,8))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:Le.\u0275fac})}return Le})(),Ye=(()=>{class Le{static#e=this.\u0275fac=function(ne){return new(ne||Le)};static#t=this.\u0275mod=e.oAB({type:Le});static#i=this.\u0275inj=e.cJS({providers:[{provide:M,useClass:Bt,multi:!0,deps:[t.K0,dt,e.c2e,[new e.FiY,te]]},{provide:dt,useClass:Ue,deps:[]}]})}return Le})(),je=(()=>{class Le{static#e=this.\u0275fac=function(ne){return new(ne||Le)};static#t=this.\u0275prov=e.Yz7({token:Le,factory:function(ne){let ke=null;return ke=ne?new(ne||Le):e.LFG(xt),ke},providedIn:"root"})}return Le})(),xt=(()=>{class Le extends je{constructor($){super(),this._doc=$}sanitize($,ne){if(null==ne)return null;switch($){case e.q3G.NONE:return ne;case e.q3G.HTML:return(0,e.qzn)(ne,"HTML")?(0,e.z3N)(ne):(0,e.EiD)(this._doc,String(ne)).toString();case e.q3G.STYLE:return(0,e.qzn)(ne,"Style")?(0,e.z3N)(ne):ne;case e.q3G.SCRIPT:if((0,e.qzn)(ne,"Script"))return(0,e.z3N)(ne);throw new e.vHH(5200,!1);case e.q3G.URL:return(0,e.qzn)(ne,"URL")?(0,e.z3N)(ne):(0,e.mCW)(String(ne));case e.q3G.RESOURCE_URL:if((0,e.qzn)(ne,"ResourceURL"))return(0,e.z3N)(ne);throw new e.vHH(5201,!1);default:throw new e.vHH(5202,!1)}}bypassSecurityTrustHtml($){return(0,e.JVY)($)}bypassSecurityTrustStyle($){return(0,e.L6k)($)}bypassSecurityTrustScript($){return(0,e.eBb)($)}bypassSecurityTrustUrl($){return(0,e.LAX)($)}bypassSecurityTrustResourceUrl($){return(0,e.pB0)($)}static#e=this.\u0275fac=function(ne){return new(ne||Le)(e.LFG(t.K0))};static#t=this.\u0275prov=e.Yz7({token:Le,factory:function(ne){let ke=null;return ke=ne?new ne:function Ft(Le){return new xt(Le.get(t.K0))}(e.LFG(e.zs3)),ke},providedIn:"root"})}return Le})()},4190:(Fe,q,p)=>{"use strict";p.d(q,{gz:()=>ma,gk:()=>Se,m2:()=>xi,Q3:()=>et,OD:()=>qt,Av:()=>Sn,F0:()=>Fn,rH:()=>Sr,Od:()=>zc,Bz:()=>vc,lC:()=>Lr});var e=p(9212),t=p(2664),y=p(9666),A=p(2096),l=p(5619),w=p(2572),m=p(6973),P=p(5211),d=p(4911),E=p(8407),M=p(8504),I=p(6232),k=p(3168),z=p(8645),B=p(7394),W=p(6814),j=p(7398),K=p(4664),X=p(8180),ie=p(7921),se=p(2181),ue=p(1631),ae=p(1374),Me=p(6328),J=p(9397),he=p(6306),S=p(6699),n=p(3572),s=p(9360),f=p(8251);function h(me){return me<=0?()=>I.E:(0,s.e)((Oe,ge)=>{let Ne=[];Oe.subscribe((0,f.x)(ge,mt=>{Ne.push(mt),me{for(const mt of Ne)ge.next(mt);ge.complete()},void 0,()=>{Ne=null}))})}var C=p(3026),D=p(2737),v=p(975),r=p(4716),g=p(6196),H=p(9773),R=p(7537),ee=p(6593);const De="primary",ct=Symbol("RouteTitle");class Ke{constructor(Oe){this.params=Oe||{}}has(Oe){return Object.prototype.hasOwnProperty.call(this.params,Oe)}get(Oe){if(this.has(Oe)){const ge=this.params[Oe];return Array.isArray(ge)?ge[0]:ge}return null}getAll(Oe){if(this.has(Oe)){const ge=this.params[Oe];return Array.isArray(ge)?ge:[ge]}return[]}get keys(){return Object.keys(this.params)}}function Je(me){return new Ke(me)}function ye(me,Oe,ge){const Ne=ge.path.split("/");if(Ne.length>me.length||"full"===ge.pathMatch&&(Oe.hasChildren()||Ne.lengthNe[Rt]===mt)}return me===Oe}function pe(me){return me.length>0?me[me.length-1]:null}function qe(me){return(0,t.b)(me)?me:(0,e.QGY)(me)?(0,y.D)(Promise.resolve(me)):(0,A.of)(me)}const re={exact:function We(me,Oe,ge){if(!lt(me.segments,Oe.segments)||!Ae(me.segments,Oe.segments,ge)||me.numberOfChildren!==Oe.numberOfChildren)return!1;for(const Ne in Oe.children)if(!me.children[Ne]||!We(me.children[Ne],Oe.children[Ne],ge))return!1;return!0},subset:ut},ve={exact:function Ze(me,Oe){return de(me,Oe)},subset:function Ct(me,Oe){return Object.keys(Oe).length<=Object.keys(me).length&&Object.keys(Oe).every(ge=>le(me[ge],Oe[ge]))},ignored:()=>!0};function ce(me,Oe,ge){return re[ge.paths](me.root,Oe.root,ge.matrixParams)&&ve[ge.queryParams](me.queryParams,Oe.queryParams)&&!("exact"===ge.fragment&&me.fragment!==Oe.fragment)}function ut(me,Oe,ge){return It(me,Oe,Oe.segments,ge)}function It(me,Oe,ge,Ne){if(me.segments.length>ge.length){const mt=me.segments.slice(0,ge.length);return!(!lt(mt,ge)||Oe.hasChildren()||!Ae(mt,ge,Ne))}if(me.segments.length===ge.length){if(!lt(me.segments,ge)||!Ae(me.segments,ge,Ne))return!1;for(const mt in Oe.children)if(!me.children[mt]||!ut(me.children[mt],Oe.children[mt],Ne))return!1;return!0}{const mt=ge.slice(0,me.segments.length),Rt=ge.slice(me.segments.length);return!!(lt(me.segments,mt)&&Ae(me.segments,mt,Ne)&&me.children[De])&&It(me.children[De],Oe,Rt,Ne)}}function Ae(me,Oe,ge){return Oe.every((Ne,mt)=>ve[ge](me[mt].parameters,Ne.parameters))}class Be{constructor(Oe=new rt([],{}),ge={},Ne=null){this.root=Oe,this.queryParams=ge,this.fragment=Ne}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=Je(this.queryParams)),this._queryParamMap}toString(){return te.serialize(this)}}class rt{constructor(Oe,ge){this.segments=Oe,this.children=ge,this.parent=null,Object.values(ge).forEach(Ne=>Ne.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ue(this)}}class $e{constructor(Oe,ge){this.path=Oe,this.parameters=ge}get parameterMap(){return this._parameterMap||(this._parameterMap=Je(this.parameters)),this._parameterMap}toString(){return at(this)}}function lt(me,Oe){return me.length===Oe.length&&me.every((ge,Ne)=>ge.path===Oe[Ne].path)}let St=(()=>{class me{static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:()=>new dt,providedIn:"root"})}return me})();class dt{parse(Oe){const ge=new Nt(Oe);return new Be(ge.parseRootSegment(),ge.parseQueryParams(),ge.parseFragment())}serialize(Oe){const ge=`/${Bt(Oe.root,!0)}`,Ne=function nt(me){const Oe=Object.keys(me).map(ge=>{const Ne=me[ge];return Array.isArray(Ne)?Ne.map(mt=>`${je(ge)}=${je(mt)}`).join("&"):`${je(ge)}=${je(Ne)}`}).filter(ge=>!!ge);return Oe.length?`?${Oe.join("&")}`:""}(Oe.queryParams);return`${ge}${Ne}${"string"==typeof Oe.fragment?`#${function Ft(me){return encodeURI(me)}(Oe.fragment)}`:""}`}}const te=new dt;function Ue(me){return me.segments.map(Oe=>at(Oe)).join("/")}function Bt(me,Oe){if(!me.hasChildren())return Ue(me);if(Oe){const ge=me.children[De]?Bt(me.children[De],!1):"",Ne=[];return Object.entries(me.children).forEach(([mt,Rt])=>{mt!==De&&Ne.push(`${mt}:${Bt(Rt,!1)}`)}),Ne.length>0?`${ge}(${Ne.join("//")})`:ge}{const ge=function Qe(me,Oe){let ge=[];return Object.entries(me.children).forEach(([Ne,mt])=>{Ne===De&&(ge=ge.concat(Oe(mt,Ne)))}),Object.entries(me.children).forEach(([Ne,mt])=>{Ne!==De&&(ge=ge.concat(Oe(mt,Ne)))}),ge}(me,(Ne,mt)=>mt===De?[Bt(me.children[De],!1)]:[`${mt}:${Bt(Ne,!1)}`]);return 1===Object.keys(me.children).length&&null!=me.children[De]?`${Ue(me)}/${ge[0]}`:`${Ue(me)}/(${ge.join("//")})`}}function Ye(me){return encodeURIComponent(me).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function je(me){return Ye(me).replace(/%3B/gi,";")}function xt(me){return Ye(me).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function Ot(me){return decodeURIComponent(me)}function yt(me){return Ot(me.replace(/\+/g,"%20"))}function at(me){return`${xt(me.path)}${function Ee(me){return Object.keys(me).map(Oe=>`;${xt(Oe)}=${xt(me[Oe])}`).join("")}(me.parameters)}`}const Ge=/^[^\/()?;#]+/;function Xe(me){const Oe=me.match(Ge);return Oe?Oe[0]:""}const gt=/^[^\/()?;=#]+/,be=/^[^=?&#]+/,ne=/^[^&#]+/;class Nt{constructor(Oe){this.url=Oe,this.remaining=Oe}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new rt([],{}):new rt([],this.parseChildren())}parseQueryParams(){const Oe={};if(this.consumeOptional("?"))do{this.parseQueryParam(Oe)}while(this.consumeOptional("&"));return Oe}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const Oe=[];for(this.peekStartsWith("(")||Oe.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),Oe.push(this.parseSegment());let ge={};this.peekStartsWith("/(")&&(this.capture("/"),ge=this.parseParens(!0));let Ne={};return this.peekStartsWith("(")&&(Ne=this.parseParens(!1)),(Oe.length>0||Object.keys(ge).length>0)&&(Ne[De]=new rt(Oe,ge)),Ne}parseSegment(){const Oe=Xe(this.remaining);if(""===Oe&&this.peekStartsWith(";"))throw new e.vHH(4009,!1);return this.capture(Oe),new $e(Ot(Oe),this.parseMatrixParams())}parseMatrixParams(){const Oe={};for(;this.consumeOptional(";");)this.parseParam(Oe);return Oe}parseParam(Oe){const ge=function Le(me){const Oe=me.match(gt);return Oe?Oe[0]:""}(this.remaining);if(!ge)return;this.capture(ge);let Ne="";if(this.consumeOptional("=")){const mt=Xe(this.remaining);mt&&(Ne=mt,this.capture(Ne))}Oe[Ot(ge)]=Ot(Ne)}parseQueryParam(Oe){const ge=function $(me){const Oe=me.match(be);return Oe?Oe[0]:""}(this.remaining);if(!ge)return;this.capture(ge);let Ne="";if(this.consumeOptional("=")){const ni=function ke(me){const Oe=me.match(ne);return Oe?Oe[0]:""}(this.remaining);ni&&(Ne=ni,this.capture(Ne))}const mt=yt(ge),Rt=yt(Ne);if(Oe.hasOwnProperty(mt)){let ni=Oe[mt];Array.isArray(ni)||(ni=[ni],Oe[mt]=ni),ni.push(Rt)}else Oe[mt]=Rt}parseParens(Oe){const ge={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const Ne=Xe(this.remaining),mt=this.remaining[Ne.length];if("/"!==mt&&")"!==mt&&";"!==mt)throw new e.vHH(4010,!1);let Rt;Ne.indexOf(":")>-1?(Rt=Ne.slice(0,Ne.indexOf(":")),this.capture(Rt),this.capture(":")):Oe&&(Rt=De);const ni=this.parseChildren();ge[Rt]=1===Object.keys(ni).length?ni[De]:new rt([],ni),this.consumeOptional("//")}return ge}peekStartsWith(Oe){return this.remaining.startsWith(Oe)}consumeOptional(Oe){return!!this.peekStartsWith(Oe)&&(this.remaining=this.remaining.substring(Oe.length),!0)}capture(Oe){if(!this.consumeOptional(Oe))throw new e.vHH(4011,!1)}}function At(me){return me.segments.length>0?new rt([],{[De]:me}):me}function Wt(me){const Oe={};for(const Ne of Object.keys(me.children)){const Rt=Wt(me.children[Ne]);if(Ne===De&&0===Rt.segments.length&&Rt.hasChildren())for(const[ni,Li]of Object.entries(Rt.children))Oe[ni]=Li;else(Rt.segments.length>0||Rt.hasChildren())&&(Oe[Ne]=Rt)}return function gi(me){if(1===me.numberOfChildren&&me.children[De]){const Oe=me.children[De];return new rt(me.segments.concat(Oe.segments),Oe.children)}return me}(new rt(me.segments,Oe))}function ei(me){return me instanceof Be}function Fi(me){let Oe;const mt=At(function ge(Rt){const ni={};for(const Di of Rt.children){const ln=ge(Di);ni[Di.outlet]=ln}const Li=new rt(Rt.url,ni);return Rt===me&&(Oe=Li),Li}(me.root));return Oe??mt}function li(me,Oe,ge,Ne){let mt=me;for(;mt.parent;)mt=mt.parent;if(0===Oe.length)return Ki(mt,mt,mt,ge,Ne);const Rt=function st(me){if("string"==typeof me[0]&&1===me.length&&"/"===me[0])return new on(!0,0,me);let Oe=0,ge=!1;const Ne=me.reduce((mt,Rt,ni)=>{if("object"==typeof Rt&&null!=Rt){if(Rt.outlets){const Li={};return Object.entries(Rt.outlets).forEach(([Di,ln])=>{Li[Di]="string"==typeof ln?ln.split("/"):ln}),[...mt,{outlets:Li}]}if(Rt.segmentPath)return[...mt,Rt.segmentPath]}return"string"!=typeof Rt?[...mt,Rt]:0===ni?(Rt.split("/").forEach((Li,Di)=>{0==Di&&"."===Li||(0==Di&&""===Li?ge=!0:".."===Li?Oe++:""!=Li&&mt.push(Li))}),mt):[...mt,Rt]},[]);return new on(ge,Oe,Ne)}(Oe);if(Rt.toRoot())return Ki(mt,mt,new rt([],{}),ge,Ne);const ni=function Ce(me,Oe,ge){if(me.isAbsolute)return new si(Oe,!0,0);if(!ge)return new si(Oe,!1,NaN);if(null===ge.parent)return new si(ge,!0,0);const Ne=ui(me.commands[0])?0:1;return function Mt(me,Oe,ge){let Ne=me,mt=Oe,Rt=ge;for(;Rt>mt;){if(Rt-=mt,Ne=Ne.parent,!Ne)throw new e.vHH(4005,!1);mt=Ne.segments.length}return new si(Ne,!1,mt-Rt)}(ge,ge.segments.length-1+Ne,me.numberOfDoubleDots)}(Rt,mt,me),Li=ni.processChildren?kt(ni.segmentGroup,ni.index,Rt.commands):Dt(ni.segmentGroup,ni.index,Rt.commands);return Ki(mt,ni.segmentGroup,Li,ge,Ne)}function ui(me){return"object"==typeof me&&null!=me&&!me.outlets&&!me.segmentPath}function un(me){return"object"==typeof me&&null!=me&&me.outlets}function Ki(me,Oe,ge,Ne,mt){let ni,Rt={};Ne&&Object.entries(Ne).forEach(([Di,ln])=>{Rt[Di]=Array.isArray(ln)?ln.map(Qn=>`${Qn}`):`${ln}`}),ni=me===Oe?ge:Mi(me,Oe,ge);const Li=At(Wt(ni));return new Be(Li,Rt,mt)}function Mi(me,Oe,ge){const Ne={};return Object.entries(me.children).forEach(([mt,Rt])=>{Ne[mt]=Rt===Oe?ge:Mi(Rt,Oe,ge)}),new rt(me.segments,Ne)}class on{constructor(Oe,ge,Ne){if(this.isAbsolute=Oe,this.numberOfDoubleDots=ge,this.commands=Ne,Oe&&Ne.length>0&&ui(Ne[0]))throw new e.vHH(4003,!1);const mt=Ne.find(un);if(mt&&mt!==pe(Ne))throw new e.vHH(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class si{constructor(Oe,ge,Ne){this.segmentGroup=Oe,this.processChildren=ge,this.index=Ne}}function Dt(me,Oe,ge){if(me||(me=new rt([],{})),0===me.segments.length&&me.hasChildren())return kt(me,Oe,ge);const Ne=function Gt(me,Oe,ge){let Ne=0,mt=Oe;const Rt={match:!1,pathIndex:0,commandIndex:0};for(;mt=ge.length)return Rt;const ni=me.segments[mt],Li=ge[Ne];if(un(Li))break;const Di=`${Li}`,ln=Ne0&&void 0===Di)break;if(Di&&ln&&"object"==typeof ln&&void 0===ln.outlets){if(!Oi(Di,ln,ni))return Rt;Ne+=2}else{if(!Oi(Di,{},ni))return Rt;Ne++}mt++}return{match:!0,pathIndex:mt,commandIndex:Ne}}(me,Oe,ge),mt=ge.slice(Ne.commandIndex);if(Ne.match&&Ne.pathIndexRt!==De)&&me.children[De]&&1===me.numberOfChildren&&0===me.children[De].segments.length){const Rt=kt(me.children[De],Oe,ge);return new rt(me.segments,Rt.children)}return Object.entries(Ne).forEach(([Rt,ni])=>{"string"==typeof ni&&(ni=[ni]),null!==ni&&(mt[Rt]=Dt(me.children[Rt],Oe,ni))}),Object.entries(me.children).forEach(([Rt,ni])=>{void 0===Ne[Rt]&&(mt[Rt]=ni)}),new rt(me.segments,mt)}}function oi(me,Oe,ge){const Ne=me.segments.slice(0,Oe);let mt=0;for(;mt{"string"==typeof Ne&&(Ne=[Ne]),null!==Ne&&(Oe[ge]=oi(new rt([],{}),0,Ne))}),Oe}function yi(me){const Oe={};return Object.entries(me).forEach(([ge,Ne])=>Oe[ge]=`${Ne}`),Oe}function Oi(me,Oe,ge){return me==ge.path&&de(Oe,ge.parameters)}const Ui="imperative";class Bi{constructor(Oe,ge){this.id=Oe,this.url=ge}}class qt extends Bi{constructor(Oe,ge,Ne="imperative",mt=null){super(Oe,ge),this.type=0,this.navigationTrigger=Ne,this.restoredState=mt}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class xi extends Bi{constructor(Oe,ge,Ne){super(Oe,ge),this.urlAfterRedirects=Ne,this.type=1}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}class Se extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.reason=Ne,this.code=mt,this.type=2}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class Ve extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.reason=Ne,this.code=mt,this.type=16}}class et extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.error=Ne,this.target=mt,this.type=3}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class tt extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.urlAfterRedirects=Ne,this.state=mt,this.type=4}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Yt extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.urlAfterRedirects=Ne,this.state=mt,this.type=7}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ri extends Bi{constructor(Oe,ge,Ne,mt,Rt){super(Oe,ge),this.urlAfterRedirects=Ne,this.state=mt,this.shouldActivate=Rt,this.type=8}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class fn extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.urlAfterRedirects=Ne,this.state=mt,this.type=5}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Sn extends Bi{constructor(Oe,ge,Ne,mt){super(Oe,ge),this.urlAfterRedirects=Ne,this.state=mt,this.type=6}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class an{constructor(Oe){this.route=Oe,this.type=9}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class sr{constructor(Oe){this.route=Oe,this.type=10}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class Jr{constructor(Oe){this.snapshot=Oe,this.type=11}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ar{constructor(Oe){this.snapshot=Oe,this.type=12}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Yr{constructor(Oe){this.snapshot=Oe,this.type=13}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class $r{constructor(Oe){this.snapshot=Oe,this.type=14}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ni{constructor(Oe,ge,Ne){this.routerEvent=Oe,this.position=ge,this.anchor=Ne,this.type=15}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class zt{}class pi{constructor(Oe){this.url=Oe}}class Ci{constructor(){this.outlet=null,this.route=null,this.injector=null,this.children=new Gi,this.attachRef=null}}let Gi=(()=>{class me{constructor(){this.contexts=new Map}onChildOutletCreated(ge,Ne){const mt=this.getOrCreateContext(ge);mt.outlet=Ne,this.contexts.set(ge,mt)}onChildOutletDestroyed(ge){const Ne=this.getContext(ge);Ne&&(Ne.outlet=null,Ne.attachRef=null)}onOutletDeactivated(){const ge=this.contexts;return this.contexts=new Map,ge}onOutletReAttached(ge){this.contexts=ge}getOrCreateContext(ge){let Ne=this.getContext(ge);return Ne||(Ne=new Ci,this.contexts.set(ge,Ne)),Ne}getContext(ge){return this.contexts.get(ge)||null}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();class Ji{constructor(Oe){this._root=Oe}get root(){return this._root.value}parent(Oe){const ge=this.pathFromRoot(Oe);return ge.length>1?ge[ge.length-2]:null}children(Oe){const ge=yn(Oe,this._root);return ge?ge.children.map(Ne=>Ne.value):[]}firstChild(Oe){const ge=yn(Oe,this._root);return ge&&ge.children.length>0?ge.children[0].value:null}siblings(Oe){const ge=jn(Oe,this._root);return ge.length<2?[]:ge[ge.length-2].children.map(mt=>mt.value).filter(mt=>mt!==Oe)}pathFromRoot(Oe){return jn(Oe,this._root).map(ge=>ge.value)}}function yn(me,Oe){if(me===Oe.value)return Oe;for(const ge of Oe.children){const Ne=yn(me,ge);if(Ne)return Ne}return null}function jn(me,Oe){if(me===Oe.value)return[Oe];for(const ge of Oe.children){const Ne=jn(me,ge);if(Ne.length)return Ne.unshift(Oe),Ne}return[]}class Rn{constructor(Oe,ge){this.value=Oe,this.children=ge}toString(){return`TreeNode(${this.value})`}}function Er(me){const Oe={};return me&&me.children.forEach(ge=>Oe[ge.value.outlet]=ge),Oe}class er extends Ji{constructor(Oe,ge){super(Oe),this.snapshot=ge,Dr(this,Oe)}toString(){return this.snapshot.toString()}}function yr(me,Oe){const ge=function aa(me,Oe){const ni=new Fa([],{},{},"",{},De,Oe,null,{});return new fr("",new Rn(ni,[]))}(0,Oe),Ne=new l.X([new $e("",{})]),mt=new l.X({}),Rt=new l.X({}),ni=new l.X({}),Li=new l.X(""),Di=new ma(Ne,mt,ni,Li,Rt,De,Oe,ge.root);return Di.snapshot=ge.root,new er(new Rn(Di,[]),ge)}class ma{constructor(Oe,ge,Ne,mt,Rt,ni,Li,Di){this.urlSubject=Oe,this.paramsSubject=ge,this.queryParamsSubject=Ne,this.fragmentSubject=mt,this.dataSubject=Rt,this.outlet=ni,this.component=Li,this._futureSnapshot=Di,this.title=this.dataSubject?.pipe((0,j.U)(ln=>ln[ct]))??(0,A.of)(void 0),this.url=Oe,this.params=ge,this.queryParams=Ne,this.fragment=mt,this.data=Rt}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,j.U)(Oe=>Je(Oe)))),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=this.queryParams.pipe((0,j.U)(Oe=>Je(Oe)))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function oa(me,Oe,ge="emptyOnly"){let Ne;const{routeConfig:mt}=me;return Ne=null===Oe||"always"!==ge&&""!==mt?.path&&(Oe.component||Oe.routeConfig?.loadComponent)?{params:me.params,data:me.data,resolve:{...me.data,...me._resolvedData??{}}}:{params:{...Oe.params,...me.params},data:{...Oe.data,...me.data},resolve:{...me.data,...Oe.data,...mt?.data,...me._resolvedData}},mt&&ga(mt)&&(Ne.resolve[ct]=mt.title),Ne}class Fa{get title(){return this.data?.[ct]}constructor(Oe,ge,Ne,mt,Rt,ni,Li,Di,ln){this.url=Oe,this.params=ge,this.queryParams=Ne,this.fragment=mt,this.data=Rt,this.outlet=ni,this.component=Li,this.routeConfig=Di,this._resolve=ln}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=Je(this.params)),this._paramMap}get queryParamMap(){return this._queryParamMap||(this._queryParamMap=Je(this.queryParams)),this._queryParamMap}toString(){return`Route(url:'${this.url.map(Ne=>Ne.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class fr extends Ji{constructor(Oe,ge){super(ge),this.url=Oe,Dr(this,ge)}toString(){return Kn(this._root)}}function Dr(me,Oe){Oe.value._routerState=me,Oe.children.forEach(ge=>Dr(me,ge))}function Kn(me){const Oe=me.children.length>0?` { ${me.children.map(Kn).join(", ")} } `:"";return`${me.value}${Oe}`}function pa(me){if(me.snapshot){const Oe=me.snapshot,ge=me._futureSnapshot;me.snapshot=ge,de(Oe.queryParams,ge.queryParams)||me.queryParamsSubject.next(ge.queryParams),Oe.fragment!==ge.fragment&&me.fragmentSubject.next(ge.fragment),de(Oe.params,ge.params)||me.paramsSubject.next(ge.params),function fe(me,Oe){if(me.length!==Oe.length)return!1;for(let ge=0;gede(ge.parameters,Oe[Ne].parameters))}(me.url,Oe.url);return ge&&!(!me.parent!=!Oe.parent)&&(!me.parent||za(me.parent,Oe.parent))}function ga(me){return"string"==typeof me.title||null===me.title}let Lr=(()=>{class me{constructor(){this.activated=null,this._activatedRoute=null,this.name=De,this.activateEvents=new e.vpe,this.deactivateEvents=new e.vpe,this.attachEvents=new e.vpe,this.detachEvents=new e.vpe,this.parentContexts=(0,e.f3M)(Gi),this.location=(0,e.f3M)(e.s_b),this.changeDetector=(0,e.f3M)(e.sBO),this.environmentInjector=(0,e.f3M)(e.lqb),this.inputBinder=(0,e.f3M)(So,{optional:!0}),this.supportsBindingToComponentInputs=!0}get activatedComponentRef(){return this.activated}ngOnChanges(ge){if(ge.name){const{firstChange:Ne,previousValue:mt}=ge.name;if(Ne)return;this.isTrackedInParentContexts(mt)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(mt)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(ge){return this.parentContexts.getContext(ge)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const ge=this.parentContexts.getContext(this.name);ge?.route&&(ge.attachRef?this.attach(ge.attachRef,ge.route):this.activateWith(ge.route,ge.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new e.vHH(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new e.vHH(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new e.vHH(4012,!1);this.location.detach();const ge=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(ge.instance),ge}attach(ge,Ne){this.activated=ge,this._activatedRoute=Ne,this.location.insert(ge.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),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,Ne){if(this.isActivated)throw new e.vHH(4013,!1);this._activatedRoute=ge;const mt=this.location,ni=ge.snapshot.component,Li=this.parentContexts.getOrCreateContext(this.name).children,Di=new sa(ge,Li,mt.injector);this.activated=mt.createComponent(ni,{index:mt.length,injector:Di,environmentInjector:Ne??this.environmentInjector}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275dir=e.lG2({type:me,selectors:[["router-outlet"]],inputs:{name:"name"},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0,features:[e.TTD]})}return me})();class sa{constructor(Oe,ge,Ne){this.route=Oe,this.childContexts=ge,this.parent=Ne}get(Oe,ge){return Oe===ma?this.route:Oe===Gi?this.childContexts:this.parent.get(Oe,ge)}}const So=new e.OlP("");let jr=(()=>{class me{constructor(){this.outletDataSubscriptions=new Map}bindActivatedRouteToOutletComponent(ge){this.unsubscribeFromRouteData(ge),this.subscribeToRouteData(ge)}unsubscribeFromRouteData(ge){this.outletDataSubscriptions.get(ge)?.unsubscribe(),this.outletDataSubscriptions.delete(ge)}subscribeToRouteData(ge){const{activatedRoute:Ne}=ge,mt=(0,w.a)([Ne.queryParams,Ne.params,Ne.data]).pipe((0,K.w)(([Rt,ni,Li],Di)=>(Li={...Rt,...ni,...Li},0===Di?(0,A.of)(Li):Promise.resolve(Li)))).subscribe(Rt=>{if(!ge.isActivated||!ge.activatedComponentRef||ge.activatedRoute!==Ne||null===Ne.component)return void this.unsubscribeFromRouteData(ge);const ni=(0,e.qFp)(Ne.component);if(ni)for(const{templateName:Li}of ni.inputs)ge.activatedComponentRef.setInput(Li,Rt[Li]);else this.unsubscribeFromRouteData(ge)});this.outletDataSubscriptions.set(ge,mt)}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac})}return me})();function kr(me,Oe,ge){if(ge&&me.shouldReuseRoute(Oe.value,ge.value.snapshot)){const Ne=ge.value;Ne._futureSnapshot=Oe.value;const mt=function dr(me,Oe,ge){return Oe.children.map(Ne=>{for(const mt of ge.children)if(me.shouldReuseRoute(Ne.value,mt.value.snapshot))return kr(me,Ne,mt);return kr(me,Ne)})}(me,Oe,ge);return new Rn(Ne,mt)}{if(me.shouldAttach(Oe.value)){const Rt=me.retrieve(Oe.value);if(null!==Rt){const ni=Rt.route;return ni.value._futureSnapshot=Oe.value,ni.children=Oe.children.map(Li=>kr(me,Li)),ni}}const Ne=function Bn(me){return new ma(new l.X(me.url),new l.X(me.params),new l.X(me.queryParams),new l.X(me.fragment),new l.X(me.data),me.outlet,me.component,me)}(Oe.value),mt=Oe.children.map(Rt=>kr(me,Rt));return new Rn(Ne,mt)}}const wa="ngNavigationCancelingError";function ao(me,Oe){const{redirectTo:ge,navigationBehaviorOptions:Ne}=ei(Oe)?{redirectTo:Oe,navigationBehaviorOptions:void 0}:Oe,mt=Tr(!1,0,Oe);return mt.url=ge,mt.navigationBehaviorOptions=Ne,mt}function Tr(me,Oe,ge){const Ne=new Error("NavigationCancelingError: "+(me||""));return Ne[wa]=!0,Ne.cancellationCode=Oe,ge&&(Ne.url=ge),Ne}function ea(me){return me&&me[wa]}let Ia=(()=>{class me{static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275cmp=e.Xpm({type:me,selectors:[["ng-component"]],standalone:!0,features:[e.jDz],decls:1,vars:0,template:function(Ne,mt){1&Ne&&e._UZ(0,"router-outlet")},dependencies:[Lr],encapsulation:2})}return me})();function Va(me){const Oe=me.children&&me.children.map(Va),ge=Oe?{...me,children:Oe}:{...me};return!ge.component&&!ge.loadComponent&&(Oe||ge.loadChildren)&&ge.outlet&&ge.outlet!==De&&(ge.component=Ia),ge}function Qr(me){return me.outlet||De}function so(me){if(!me)return null;if(me.routeConfig?._injector)return me.routeConfig._injector;for(let Oe=me.parent;Oe;Oe=Oe.parent){const ge=Oe.routeConfig;if(ge?._loadedInjector)return ge._loadedInjector;if(ge?._injector)return ge._injector}return null}class co{constructor(Oe,ge,Ne,mt,Rt){this.routeReuseStrategy=Oe,this.futureState=ge,this.currState=Ne,this.forwardEvent=mt,this.inputBindingEnabled=Rt}activate(Oe){const ge=this.futureState._root,Ne=this.currState?this.currState._root:null;this.deactivateChildRoutes(ge,Ne,Oe),pa(this.futureState.root),this.activateChildRoutes(ge,Ne,Oe)}deactivateChildRoutes(Oe,ge,Ne){const mt=Er(ge);Oe.children.forEach(Rt=>{const ni=Rt.value.outlet;this.deactivateRoutes(Rt,mt[ni],Ne),delete mt[ni]}),Object.values(mt).forEach(Rt=>{this.deactivateRouteAndItsChildren(Rt,Ne)})}deactivateRoutes(Oe,ge,Ne){const mt=Oe.value,Rt=ge?ge.value:null;if(mt===Rt)if(mt.component){const ni=Ne.getContext(mt.outlet);ni&&this.deactivateChildRoutes(Oe,ge,ni.children)}else this.deactivateChildRoutes(Oe,ge,Ne);else Rt&&this.deactivateRouteAndItsChildren(ge,Ne)}deactivateRouteAndItsChildren(Oe,ge){Oe.value.component&&this.routeReuseStrategy.shouldDetach(Oe.value.snapshot)?this.detachAndStoreRouteSubtree(Oe,ge):this.deactivateRouteAndOutlet(Oe,ge)}detachAndStoreRouteSubtree(Oe,ge){const Ne=ge.getContext(Oe.value.outlet),mt=Ne&&Oe.value.component?Ne.children:ge,Rt=Er(Oe);for(const ni of Object.keys(Rt))this.deactivateRouteAndItsChildren(Rt[ni],mt);if(Ne&&Ne.outlet){const ni=Ne.outlet.detach(),Li=Ne.children.onOutletDeactivated();this.routeReuseStrategy.store(Oe.value.snapshot,{componentRef:ni,route:Oe,contexts:Li})}}deactivateRouteAndOutlet(Oe,ge){const Ne=ge.getContext(Oe.value.outlet),mt=Ne&&Oe.value.component?Ne.children:ge,Rt=Er(Oe);for(const ni of Object.keys(Rt))this.deactivateRouteAndItsChildren(Rt[ni],mt);Ne&&(Ne.outlet&&(Ne.outlet.deactivate(),Ne.children.onOutletDeactivated()),Ne.attachRef=null,Ne.route=null)}activateChildRoutes(Oe,ge,Ne){const mt=Er(ge);Oe.children.forEach(Rt=>{this.activateRoutes(Rt,mt[Rt.value.outlet],Ne),this.forwardEvent(new $r(Rt.value.snapshot))}),Oe.children.length&&this.forwardEvent(new Ar(Oe.value.snapshot))}activateRoutes(Oe,ge,Ne){const mt=Oe.value,Rt=ge?ge.value:null;if(pa(mt),mt===Rt)if(mt.component){const ni=Ne.getOrCreateContext(mt.outlet);this.activateChildRoutes(Oe,ge,ni.children)}else this.activateChildRoutes(Oe,ge,Ne);else if(mt.component){const ni=Ne.getOrCreateContext(mt.outlet);if(this.routeReuseStrategy.shouldAttach(mt.snapshot)){const Li=this.routeReuseStrategy.retrieve(mt.snapshot);this.routeReuseStrategy.store(mt.snapshot,null),ni.children.onOutletReAttached(Li.contexts),ni.attachRef=Li.componentRef,ni.route=Li.route.value,ni.outlet&&ni.outlet.attach(Li.componentRef,Li.route.value),pa(Li.route.value),this.activateChildRoutes(Oe,null,ni.children)}else{const Li=so(mt.snapshot);ni.attachRef=null,ni.route=mt,ni.injector=Li,ni.outlet&&ni.outlet.activateWith(mt,ni.injector),this.activateChildRoutes(Oe,null,ni.children)}}else this.activateChildRoutes(Oe,null,Ne)}}class Gr{constructor(Oe){this.path=Oe,this.route=this.path[this.path.length-1]}}class zo{constructor(Oe,ge){this.component=Oe,this.route=ge}}function bo(me,Oe,ge){const Ne=me._root;return Ai(Ne,Oe?Oe._root:null,ge,[Ne.value])}function Vt(me,Oe){const ge=Symbol(),Ne=Oe.get(me,ge);return Ne===ge?"function"!=typeof me||(0,e.Z0I)(me)?Oe.get(me):me:Ne}function Ai(me,Oe,ge,Ne,mt={canDeactivateChecks:[],canActivateChecks:[]}){const Rt=Er(Oe);return me.children.forEach(ni=>{(function wt(me,Oe,ge,Ne,mt={canDeactivateChecks:[],canActivateChecks:[]}){const Rt=me.value,ni=Oe?Oe.value:null,Li=ge?ge.getContext(me.value.outlet):null;if(ni&&Rt.routeConfig===ni.routeConfig){const Di=function ii(me,Oe,ge){if("function"==typeof ge)return ge(me,Oe);switch(ge){case"pathParamsChange":return!lt(me.url,Oe.url);case"pathParamsOrQueryParamsChange":return!lt(me.url,Oe.url)||!de(me.queryParams,Oe.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!za(me,Oe)||!de(me.queryParams,Oe.queryParams);default:return!za(me,Oe)}}(ni,Rt,Rt.routeConfig.runGuardsAndResolvers);Di?mt.canActivateChecks.push(new Gr(Ne)):(Rt.data=ni.data,Rt._resolvedData=ni._resolvedData),Ai(me,Oe,Rt.component?Li?Li.children:null:ge,Ne,mt),Di&&Li&&Li.outlet&&Li.outlet.isActivated&&mt.canDeactivateChecks.push(new zo(Li.outlet.component,ni))}else ni&&Ti(Oe,Li,mt),mt.canActivateChecks.push(new Gr(Ne)),Ai(me,null,Rt.component?Li?Li.children:null:ge,Ne,mt)})(ni,Rt[ni.value.outlet],ge,Ne.concat([ni.value]),mt),delete Rt[ni.value.outlet]}),Object.entries(Rt).forEach(([ni,Li])=>Ti(Li,ge.getContext(ni),mt)),mt}function Ti(me,Oe,ge){const Ne=Er(me),mt=me.value;Object.entries(Ne).forEach(([Rt,ni])=>{Ti(ni,mt.component?Oe?Oe.children.getContext(Rt):null:Oe,ge)}),ge.canDeactivateChecks.push(new zo(mt.component&&Oe&&Oe.outlet&&Oe.outlet.isActivated?Oe.outlet.component:null,mt))}function Zi(me){return"function"==typeof me}function vt(me){return me instanceof m.K||"EmptyError"===me?.name}const Jt=Symbol("INITIAL_VALUE");function zi(){return(0,K.w)(me=>(0,w.a)(me.map(Oe=>Oe.pipe((0,X.q)(1),(0,ie.O)(Jt)))).pipe((0,j.U)(Oe=>{for(const ge of Oe)if(!0!==ge){if(ge===Jt)return Jt;if(!1===ge||ge instanceof Be)return ge}return!0}),(0,se.h)(Oe=>Oe!==Jt),(0,X.q)(1)))}function Ms(me){return(0,E.z)((0,J.b)(Oe=>{if(ei(Oe))throw ao(0,Oe)}),(0,j.U)(Oe=>!0===Oe))}class gr{constructor(Oe){this.segmentGroup=Oe||null}}class Do extends Error{constructor(Oe){super(),this.urlTree=Oe}}function Ua(me){return(0,M._)(new gr(me))}class ho{constructor(Oe,ge){this.urlSerializer=Oe,this.urlTree=ge}noMatchError(Oe){return new e.vHH(4002,!1)}lineralizeSegments(Oe,ge){let Ne=[],mt=ge.root;for(;;){if(Ne=Ne.concat(mt.segments),0===mt.numberOfChildren)return(0,A.of)(Ne);if(mt.numberOfChildren>1||!mt.children[De])return(0,M._)(new e.vHH(4e3,!1));mt=mt.children[De]}}applyRedirectCommands(Oe,ge,Ne){const mt=this.applyRedirectCreateUrlTree(ge,this.urlSerializer.parse(ge),Oe,Ne);if(ge.startsWith("/"))throw new Do(mt);return mt}applyRedirectCreateUrlTree(Oe,ge,Ne,mt){const Rt=this.createSegmentGroup(Oe,ge.root,Ne,mt);return new Be(Rt,this.createQueryParams(ge.queryParams,this.urlTree.queryParams),ge.fragment)}createQueryParams(Oe,ge){const Ne={};return Object.entries(Oe).forEach(([mt,Rt])=>{if("string"==typeof Rt&&Rt.startsWith(":")){const Li=Rt.substring(1);Ne[mt]=ge[Li]}else Ne[mt]=Rt}),Ne}createSegmentGroup(Oe,ge,Ne,mt){const Rt=this.createSegments(Oe,ge.segments,Ne,mt);let ni={};return Object.entries(ge.children).forEach(([Li,Di])=>{ni[Li]=this.createSegmentGroup(Oe,Di,Ne,mt)}),new rt(Rt,ni)}createSegments(Oe,ge,Ne,mt){return ge.map(Rt=>Rt.path.startsWith(":")?this.findPosParam(Oe,Rt,mt):this.findOrReturn(Rt,Ne))}findPosParam(Oe,ge,Ne){const mt=Ne[ge.path.substring(1)];if(!mt)throw new e.vHH(4001,!1);return mt}findOrReturn(Oe,ge){let Ne=0;for(const mt of ge){if(mt.path===Oe.path)return ge.splice(Ne),mt;Ne++}return Oe}}const Vo={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Co(me,Oe,ge,Ne,mt){const Rt=En(me,Oe,ge);return Rt.matched?(Ne=function Oa(me,Oe){return me.providers&&!me._injector&&(me._injector=(0,e.MMx)(me.providers,Oe,`Route: ${me.path}`)),me._injector??Oe}(Oe,Ne),function xo(me,Oe,ge,Ne){const mt=Oe.canMatch;if(!mt||0===mt.length)return(0,A.of)(!0);const Rt=mt.map(ni=>{const Li=Vt(ni,me);return qe(function ht(me){return me&&Zi(me.canMatch)}(Li)?Li.canMatch(Oe,ge):me.runInContext(()=>Li(Oe,ge)))});return(0,A.of)(Rt).pipe(zi(),Ms())}(Ne,Oe,ge).pipe((0,j.U)(ni=>!0===ni?Rt:{...Vo}))):(0,A.of)(Rt)}function En(me,Oe,ge){if(""===Oe.path)return"full"===Oe.pathMatch&&(me.hasChildren()||ge.length>0)?{...Vo}:{matched:!0,consumedSegments:[],remainingSegments:ge,parameters:{},positionalParamSegments:{}};const mt=(Oe.matcher||ye)(ge,me,Oe);if(!mt)return{...Vo};const Rt={};Object.entries(mt.posParams??{}).forEach(([Li,Di])=>{Rt[Li]=Di.path});const ni=mt.consumed.length>0?{...Rt,...mt.consumed[mt.consumed.length-1].parameters}:Rt;return{matched:!0,consumedSegments:mt.consumed,remainingSegments:ge.slice(mt.consumed.length),parameters:ni,positionalParamSegments:mt.posParams??{}}}function Xo(me,Oe,ge,Ne){return ge.length>0&&function Ea(me,Oe,ge){return ge.some(Ne=>qi(me,Oe,Ne)&&Qr(Ne)!==De)}(me,ge,Ne)?{segmentGroup:new rt(Oe,cr(Ne,new rt(ge,me.children))),slicedSegments:[]}:0===ge.length&&function os(me,Oe,ge){return ge.some(Ne=>qi(me,Oe,Ne))}(me,ge,Ne)?{segmentGroup:new rt(me.segments,as(me,0,ge,Ne,me.children)),slicedSegments:ge}:{segmentGroup:new rt(me.segments,me.children),slicedSegments:ge}}function as(me,Oe,ge,Ne,mt){const Rt={};for(const ni of Ne)if(qi(me,ge,ni)&&!mt[Qr(ni)]){const Li=new rt([],{});Rt[Qr(ni)]=Li}return{...mt,...Rt}}function cr(me,Oe){const ge={};ge[De]=Oe;for(const Ne of me)if(""===Ne.path&&Qr(Ne)!==De){const mt=new rt([],{});ge[Qr(Ne)]=mt}return ge}function qi(me,Oe,ge){return(!(me.hasChildren()||Oe.length>0)||"full"!==ge.pathMatch)&&""===ge.path}class Ir{}class Vs{constructor(Oe,ge,Ne,mt,Rt,ni,Li){this.injector=Oe,this.configLoader=ge,this.rootComponentType=Ne,this.config=mt,this.urlTree=Rt,this.paramsInheritanceStrategy=ni,this.urlSerializer=Li,this.applyRedirects=new ho(this.urlSerializer,this.urlTree),this.absoluteRedirectCount=0,this.allowRedirects=!0}noMatchError(Oe){return new e.vHH(4002,!1)}recognize(){const Oe=Xo(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(Oe).pipe((0,j.U)(ge=>{const Ne=new Fa([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,{},De,this.rootComponentType,null,{}),mt=new Rn(Ne,ge),Rt=new fr("",mt),ni=function $t(me,Oe,ge=null,Ne=null){return li(Fi(me),Oe,ge,Ne)}(Ne,[],this.urlTree.queryParams,this.urlTree.fragment);return ni.queryParams=this.urlTree.queryParams,Rt.url=this.urlSerializer.serialize(ni),this.inheritParamsAndData(Rt._root,null),{state:Rt,tree:ni}}))}match(Oe){return this.processSegmentGroup(this.injector,this.config,Oe,De).pipe((0,he.K)(Ne=>{if(Ne instanceof Do)return this.urlTree=Ne.urlTree,this.match(Ne.urlTree.root);throw Ne instanceof gr?this.noMatchError(Ne):Ne}))}inheritParamsAndData(Oe,ge){const Ne=Oe.value,mt=oa(Ne,ge,this.paramsInheritanceStrategy);Ne.params=Object.freeze(mt.params),Ne.data=Object.freeze(mt.data),Oe.children.forEach(Rt=>this.inheritParamsAndData(Rt,Ne))}processSegmentGroup(Oe,ge,Ne,mt){return 0===Ne.segments.length&&Ne.hasChildren()?this.processChildren(Oe,ge,Ne):this.processSegment(Oe,ge,Ne,Ne.segments,mt,!0).pipe((0,j.U)(Rt=>Rt instanceof Rn?[Rt]:[]))}processChildren(Oe,ge,Ne){const mt=[];for(const Rt of Object.keys(Ne.children))"primary"===Rt?mt.unshift(Rt):mt.push(Rt);return(0,y.D)(mt).pipe((0,Me.b)(Rt=>{const ni=Ne.children[Rt],Li=function _s(me,Oe){const ge=me.filter(Ne=>Qr(Ne)===Oe);return ge.push(...me.filter(Ne=>Qr(Ne)!==Oe)),ge}(ge,Rt);return this.processSegmentGroup(Oe,Li,ni,Rt)}),(0,S.R)((Rt,ni)=>(Rt.push(...ni),Rt)),(0,n.d)(null),function O(me,Oe){const ge=arguments.length>=2;return Ne=>Ne.pipe(me?(0,se.h)((mt,Rt)=>me(mt,Rt,Ne)):D.y,h(1),ge?(0,n.d)(Oe):(0,C.T)(()=>new m.K))}(),(0,ue.z)(Rt=>{if(null===Rt)return Ua(Ne);const ni=nn(Rt);return function uo(me){me.sort((Oe,ge)=>Oe.value.outlet===De?-1:ge.value.outlet===De?1:Oe.value.outlet.localeCompare(ge.value.outlet))}(ni),(0,A.of)(ni)}))}processSegment(Oe,ge,Ne,mt,Rt,ni){return(0,y.D)(ge).pipe((0,Me.b)(Li=>this.processSegmentAgainstRoute(Li._injector??Oe,ge,Li,Ne,mt,Rt,ni).pipe((0,he.K)(Di=>{if(Di instanceof gr)return(0,A.of)(null);throw Di}))),(0,ae.P)(Li=>!!Li),(0,he.K)(Li=>{if(vt(Li))return function la(me,Oe,ge){return 0===Oe.length&&!me.children[ge]}(Ne,mt,Rt)?(0,A.of)(new Ir):Ua(Ne);throw Li}))}processSegmentAgainstRoute(Oe,ge,Ne,mt,Rt,ni,Li){return function Es(me,Oe,ge,Ne){return!!(Qr(me)===Ne||Ne!==De&&qi(Oe,ge,me))&&("**"===me.path||En(Oe,me,ge).matched)}(Ne,mt,Rt,ni)?void 0===Ne.redirectTo?this.matchSegmentAgainstRoute(Oe,mt,Ne,Rt,ni):this.allowRedirects&&Li?this.expandSegmentAgainstRouteUsingRedirect(Oe,mt,ge,Ne,Rt,ni):Ua(mt):Ua(mt)}expandSegmentAgainstRouteUsingRedirect(Oe,ge,Ne,mt,Rt,ni){const{matched:Li,consumedSegments:Di,positionalParamSegments:ln,remainingSegments:Qn}="**"===mt.path?or(Rt):En(ge,mt,Rt);if(!Li)return Ua(ge);mt.redirectTo.startsWith("/")&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const Jn=this.applyRedirects.applyRedirectCommands(Di,mt.redirectTo,ln);return this.applyRedirects.lineralizeSegments(mt,Jn).pipe((0,ue.z)(Pr=>this.processSegment(Oe,Ne,ge,Pr.concat(Qn),ni,!1)))}matchSegmentAgainstRoute(Oe,ge,Ne,mt,Rt){let ni;return"**"===Ne.path?(ni=(0,A.of)(or(mt)),ge.children={}):ni=Co(ge,Ne,mt,Oe),ni.pipe((0,K.w)(Li=>Li.matched?this.getChildConfig(Oe=Ne._injector??Oe,Ne,mt).pipe((0,K.w)(({routes:Di})=>{const ln=Ne._loadedInjector??Oe,{consumedSegments:Qn,remainingSegments:Jn,parameters:Pr}=Li,ko=new Fa(Qn,Pr,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,function qr(me){return me.data||{}}(Ne),Qr(Ne),Ne.component??Ne._loadedComponent??null,Ne,function $i(me){return me.resolve||{}}(Ne)),{segmentGroup:Us,slicedSegments:wo}=Xo(ge,Qn,Jn,Di);if(0===wo.length&&Us.hasChildren())return this.processChildren(ln,Di,Us).pipe((0,j.U)(cs=>null===cs?null:new Rn(ko,cs)));if(0===Di.length&&0===wo.length)return(0,A.of)(new Rn(ko,[]));const Gs=Qr(Ne)===Rt;return this.processSegment(ln,Di,Us,wo,Gs?De:Rt,!0).pipe((0,j.U)(cs=>new Rn(ko,cs instanceof Rn?[cs]:[])))})):Ua(ge)))}getChildConfig(Oe,ge,Ne){return ge.children?(0,A.of)({routes:ge.children,injector:Oe}):ge.loadChildren?void 0!==ge._loadedRoutes?(0,A.of)({routes:ge._loadedRoutes,injector:ge._loadedInjector}):function Yi(me,Oe,ge,Ne){const mt=Oe.canLoad;if(void 0===mt||0===mt.length)return(0,A.of)(!0);const Rt=mt.map(ni=>{const Li=Vt(ni,me);return qe(function ar(me){return me&&Zi(me.canLoad)}(Li)?Li.canLoad(Oe,ge):me.runInContext(()=>Li(Oe,ge)))});return(0,A.of)(Rt).pipe(zi(),Ms())}(Oe,ge,Ne).pipe((0,ue.z)(mt=>mt?this.configLoader.loadChildren(Oe,ge).pipe((0,J.b)(Rt=>{ge._loadedRoutes=Rt.routes,ge._loadedInjector=Rt.injector})):function Ss(me){return(0,M._)(Tr(!1,3))}())):(0,A.of)({routes:[],injector:Oe})}}function Xn(me){const Oe=me.value.routeConfig;return Oe&&""===Oe.path}function nn(me){const Oe=[],ge=new Set;for(const Ne of me){if(!Xn(Ne)){Oe.push(Ne);continue}const mt=Oe.find(Rt=>Ne.value.routeConfig===Rt.value.routeConfig);void 0!==mt?(mt.children.push(...Ne.children),ge.add(mt)):Oe.push(Ne)}for(const Ne of ge){const mt=nn(Ne.children);Oe.push(new Rn(Ne.value,mt))}return Oe.filter(Ne=>!ge.has(Ne))}function or(me){return{matched:!0,parameters:me.length>0?pe(me).parameters:{},consumedSegments:me,remainingSegments:[],positionalParamSegments:{}}}function gc(me,Oe){return(0,ue.z)(ge=>{const{targetSnapshot:Ne,guards:{canActivateChecks:mt}}=ge;if(!mt.length)return(0,A.of)(ge);const Rt=mt.map(ln=>ln.route),ni=new Set(Rt),Li=Fc(Rt[0].parent).slice(1);let Di=0;return(0,y.D)(Li).pipe((0,Me.b)(ln=>ni.has(ln)?function vl(me,Oe,ge,Ne){const mt=me.routeConfig,Rt=me._resolve;return void 0!==mt?.title&&!ga(mt)&&(Rt[ct]=mt.title),function As(me,Oe,ge,Ne){const mt=xe(me);if(0===mt.length)return(0,A.of)({});const Rt={};return(0,y.D)(mt).pipe((0,ue.z)(ni=>function Kt(me,Oe,ge,Ne){const mt=so(Oe)??Ne,Rt=Vt(me,mt);return qe(Rt.resolve?Rt.resolve(Oe,ge):mt.runInContext(()=>Rt(Oe,ge)))}(me[ni],Oe,ge,Ne).pipe((0,ae.P)(),(0,J.b)(Li=>{Rt[ni]=Li}))),h(1),(0,v.h)(Rt),(0,he.K)(ni=>vt(ni)?I.E:(0,M._)(ni)))}(Rt,me,Oe,Ne).pipe((0,j.U)(ni=>(me._resolvedData=ni,me.data=oa(me,me.parent,ge).resolve,null)))}(ln,Ne,me,Oe):(ln.data=oa(ln,ln.parent,me).resolve,(0,A.of)(void 0))),(0,J.b)(()=>Di++),h(1),(0,ue.z)(ln=>Di===Li.length?(0,A.of)(ge):I.E))})}function Fc(me){const Oe=me.children.map(ge=>Fc(ge)).flat();return[me,...Oe]}function _e(me){return(0,K.w)(Oe=>{const ge=me(Oe);return ge?(0,y.D)(ge).pipe((0,j.U)(()=>Oe)):(0,A.of)(Oe)})}let Tt=(()=>{class me{buildTitle(ge){let Ne,mt=ge.root;for(;void 0!==mt;)Ne=this.getResolvedTitleForRoute(mt)??Ne,mt=mt.children.find(Rt=>Rt.outlet===De);return Ne}getResolvedTitleForRoute(ge){return ge.data[ct]}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:()=>(0,e.f3M)(Pe),providedIn:"root"})}return me})(),Pe=(()=>{class me extends Tt{constructor(ge){super(),this.title=ge}updateTitle(ge){const Ne=this.buildTitle(ge);void 0!==Ne&&this.title.setTitle(Ne)}static#e=this.\u0275fac=function(Ne){return new(Ne||me)(e.LFG(ee.Dx))};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();const pt=new e.OlP("",{providedIn:"root",factory:()=>({})}),Qt=new e.OlP("ROUTES");let Re=(()=>{class me{constructor(){this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap,this.compiler=(0,e.f3M)(e.Sil)}loadComponent(ge){if(this.componentLoaders.get(ge))return this.componentLoaders.get(ge);if(ge._loadedComponent)return(0,A.of)(ge._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(ge);const Ne=qe(ge.loadComponent()).pipe((0,j.U)(Lt),(0,J.b)(Rt=>{this.onLoadEndListener&&this.onLoadEndListener(ge),ge._loadedComponent=Rt}),(0,r.x)(()=>{this.componentLoaders.delete(ge)})),mt=new k.c(Ne,()=>new z.x).pipe((0,g.x)());return this.componentLoaders.set(ge,mt),mt}loadChildren(ge,Ne){if(this.childrenLoaders.get(Ne))return this.childrenLoaders.get(Ne);if(Ne._loadedRoutes)return(0,A.of)({routes:Ne._loadedRoutes,injector:Ne._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(Ne);const Rt=function ft(me,Oe,ge,Ne){return qe(me.loadChildren()).pipe((0,j.U)(Lt),(0,ue.z)(mt=>mt instanceof e.YKP||Array.isArray(mt)?(0,A.of)(mt):(0,y.D)(Oe.compileModuleAsync(mt))),(0,j.U)(mt=>{Ne&&Ne(me);let Rt,ni,Li=!1;return Array.isArray(mt)?(ni=mt,!0):(Rt=mt.create(ge).injector,ni=Rt.get(Qt,[],{optional:!0,self:!0}).flat()),{routes:ni.map(Va),injector:Rt}}))}(Ne,this.compiler,ge,this.onLoadEndListener).pipe((0,r.x)(()=>{this.childrenLoaders.delete(Ne)})),ni=new k.c(Rt,()=>new z.x).pipe((0,g.x)());return this.childrenLoaders.set(Ne,ni),ni}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();function Lt(me){return function _t(me){return me&&"object"==typeof me&&"default"in me}(me)?me.default:me}let Xt=(()=>{class me{static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:()=>(0,e.f3M)(hi),providedIn:"root"})}return me})(),hi=(()=>{class me{shouldProcessUrl(ge){return!0}extract(ge){return ge}merge(ge,Ne){return ge}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();const di=new e.OlP(""),Si=new e.OlP("");function Ii(me,Oe,ge){const Ne=me.get(Si),mt=me.get(W.K0);return me.get(e.R0b).runOutsideAngular(()=>{if(!mt.startViewTransition||Ne.skipNextTransition)return Ne.skipNextTransition=!1,Promise.resolve();let Rt;const ni=new Promise(ln=>{Rt=ln}),Li=mt.startViewTransition(()=>(Rt(),function Xi(me){return new Promise(Oe=>{(0,e.T8G)(Oe,{injector:me})})}(me))),{onViewTransitionCreated:Di}=Ne;return Di&&(0,e.r_H)(me,()=>Di({transition:Li,from:Oe,to:ge})),ni})}let en=(()=>{class me{get hasRequestedNavigation(){return 0!==this.navigationId}constructor(){this.currentNavigation=null,this.currentTransition=null,this.lastSuccessfulNavigation=null,this.events=new z.x,this.transitionAbortSubject=new z.x,this.configLoader=(0,e.f3M)(Re),this.environmentInjector=(0,e.f3M)(e.lqb),this.urlSerializer=(0,e.f3M)(St),this.rootContexts=(0,e.f3M)(Gi),this.location=(0,e.f3M)(W.Ye),this.inputBindingEnabled=null!==(0,e.f3M)(So,{optional:!0}),this.titleStrategy=(0,e.f3M)(Tt),this.options=(0,e.f3M)(pt,{optional:!0})||{},this.paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly",this.urlHandlingStrategy=(0,e.f3M)(Xt),this.createViewTransition=(0,e.f3M)(di,{optional:!0}),this.navigationId=0,this.afterPreactivation=()=>(0,A.of)(void 0),this.rootComponentType=null,this.configLoader.onLoadEndListener=mt=>this.events.next(new sr(mt)),this.configLoader.onLoadStartListener=mt=>this.events.next(new an(mt))}complete(){this.transitions?.complete()}handleNavigationRequest(ge){const Ne=++this.navigationId;this.transitions?.next({...this.transitions.value,...ge,id:Ne})}setupNavigations(ge,Ne,mt){return this.transitions=new l.X({id:0,currentUrlTree:Ne,currentRawUrl:Ne,extractedUrl:this.urlHandlingStrategy.extract(Ne),urlAfterRedirects:this.urlHandlingStrategy.extract(Ne),rawUrl:Ne,extras:{},resolve:null,reject:null,promise:Promise.resolve(!0),source:Ui,restoredState:null,currentSnapshot:mt.snapshot,targetSnapshot:null,currentRouterState:mt,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.transitions.pipe((0,se.h)(Rt=>0!==Rt.id),(0,j.U)(Rt=>({...Rt,extractedUrl:this.urlHandlingStrategy.extract(Rt.rawUrl)})),(0,K.w)(Rt=>{this.currentTransition=Rt;let ni=!1,Li=!1;return(0,A.of)(Rt).pipe((0,J.b)(Di=>{this.currentNavigation={id:Di.id,initialUrl:Di.rawUrl,extractedUrl:Di.extractedUrl,trigger:Di.source,extras:Di.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null}}),(0,K.w)(Di=>{const ln=!ge.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!ln&&"reload"!==(Di.extras.onSameUrlNavigation??ge.onSameUrlNavigation)){const Jn="";return this.events.next(new Ve(Di.id,this.urlSerializer.serialize(Di.rawUrl),Jn,0)),Di.resolve(null),I.E}if(this.urlHandlingStrategy.shouldProcessUrl(Di.rawUrl))return(0,A.of)(Di).pipe((0,K.w)(Jn=>{const Pr=this.transitions?.getValue();return this.events.next(new qt(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),Jn.source,Jn.restoredState)),Pr!==this.transitions?.getValue()?I.E:Promise.resolve(Jn)}),function ta(me,Oe,ge,Ne,mt,Rt){return(0,ue.z)(ni=>function Ts(me,Oe,ge,Ne,mt,Rt,ni="emptyOnly"){return new Vs(me,Oe,ge,Ne,mt,ni,Rt).recognize()}(me,Oe,ge,Ne,ni.extractedUrl,mt,Rt).pipe((0,j.U)(({state:Li,tree:Di})=>({...ni,targetSnapshot:Li,urlAfterRedirects:Di}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,ge.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,J.b)(Jn=>{Rt.targetSnapshot=Jn.targetSnapshot,Rt.urlAfterRedirects=Jn.urlAfterRedirects,this.currentNavigation={...this.currentNavigation,finalUrl:Jn.urlAfterRedirects};const Pr=new tt(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),this.urlSerializer.serialize(Jn.urlAfterRedirects),Jn.targetSnapshot);this.events.next(Pr)}));if(ln&&this.urlHandlingStrategy.shouldProcessUrl(Di.currentRawUrl)){const{id:Jn,extractedUrl:Pr,source:ko,restoredState:Us,extras:wo}=Di,Gs=new qt(Jn,this.urlSerializer.serialize(Pr),ko,Us);this.events.next(Gs);const cs=yr(0,this.rootComponentType).snapshot;return this.currentTransition=Rt={...Di,targetSnapshot:cs,urlAfterRedirects:Pr,extras:{...wo,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.finalUrl=Pr,(0,A.of)(Rt)}{const Jn="";return this.events.next(new Ve(Di.id,this.urlSerializer.serialize(Di.extractedUrl),Jn,1)),Di.resolve(null),I.E}}),(0,J.b)(Di=>{const ln=new Yt(Di.id,this.urlSerializer.serialize(Di.extractedUrl),this.urlSerializer.serialize(Di.urlAfterRedirects),Di.targetSnapshot);this.events.next(ln)}),(0,j.U)(Di=>(this.currentTransition=Rt={...Di,guards:bo(Di.targetSnapshot,Di.currentSnapshot,this.rootContexts)},Rt)),function xn(me,Oe){return(0,ue.z)(ge=>{const{targetSnapshot:Ne,currentSnapshot:mt,guards:{canActivateChecks:Rt,canDeactivateChecks:ni}}=ge;return 0===ni.length&&0===Rt.length?(0,A.of)({...ge,guardsResult:!0}):function Mr(me,Oe,ge,Ne){return(0,y.D)(me).pipe((0,ue.z)(mt=>function An(me,Oe,ge,Ne,mt){const Rt=Oe&&Oe.routeConfig?Oe.routeConfig.canDeactivate:null;if(!Rt||0===Rt.length)return(0,A.of)(!0);const ni=Rt.map(Li=>{const Di=so(Oe)??mt,ln=Vt(Li,Di);return qe(function Ba(me){return me&&Zi(me.canDeactivate)}(ln)?ln.canDeactivate(me,Oe,ge,Ne):Di.runInContext(()=>ln(me,Oe,ge,Ne))).pipe((0,ae.P)())});return(0,A.of)(ni).pipe(zi())}(mt.component,mt.route,ge,Oe,Ne)),(0,ae.P)(mt=>!0!==mt,!0))}(ni,Ne,mt,me).pipe((0,ue.z)(Li=>Li&&function nr(me){return"boolean"==typeof me}(Li)?function Ma(me,Oe,ge,Ne){return(0,y.D)(Oe).pipe((0,Me.b)(mt=>(0,P.z)(function Hn(me,Oe){return null!==me&&Oe&&Oe(new Jr(me)),(0,A.of)(!0)}(mt.route.parent,Ne),function yo(me,Oe){return null!==me&&Oe&&Oe(new Yr(me)),(0,A.of)(!0)}(mt.route,Ne),function lo(me,Oe,ge){const Ne=Oe[Oe.length-1],Rt=Oe.slice(0,Oe.length-1).reverse().map(ni=>function Ao(me){const Oe=me.routeConfig?me.routeConfig.canActivateChild:null;return Oe&&0!==Oe.length?{node:me,guards:Oe}:null}(ni)).filter(ni=>null!==ni).map(ni=>(0,d.P)(()=>{const Li=ni.guards.map(Di=>{const ln=so(ni.node)??ge,Qn=Vt(Di,ln);return qe(function sn(me){return me&&Zi(me.canActivateChild)}(Qn)?Qn.canActivateChild(Ne,me):ln.runInContext(()=>Qn(Ne,me))).pipe((0,ae.P)())});return(0,A.of)(Li).pipe(zi())}));return(0,A.of)(Rt).pipe(zi())}(me,mt.path,ge),function Vi(me,Oe,ge){const Ne=Oe.routeConfig?Oe.routeConfig.canActivate:null;if(!Ne||0===Ne.length)return(0,A.of)(!0);const mt=Ne.map(Rt=>(0,d.P)(()=>{const ni=so(Oe)??ge,Li=Vt(Rt,ni);return qe(function Zr(me){return me&&Zi(me.canActivate)}(Li)?Li.canActivate(Oe,me):ni.runInContext(()=>Li(Oe,me))).pipe((0,ae.P)())}));return(0,A.of)(mt).pipe(zi())}(me,mt.route,ge))),(0,ae.P)(mt=>!0!==mt,!0))}(Ne,Rt,me,Oe):(0,A.of)(Li)),(0,j.U)(Li=>({...ge,guardsResult:Li})))})}(this.environmentInjector,Di=>this.events.next(Di)),(0,J.b)(Di=>{if(Rt.guardsResult=Di.guardsResult,ei(Di.guardsResult))throw ao(0,Di.guardsResult);const ln=new ri(Di.id,this.urlSerializer.serialize(Di.extractedUrl),this.urlSerializer.serialize(Di.urlAfterRedirects),Di.targetSnapshot,!!Di.guardsResult);this.events.next(ln)}),(0,se.h)(Di=>!!Di.guardsResult||(this.cancelNavigationTransition(Di,"",3),!1)),_e(Di=>{if(Di.guards.canActivateChecks.length)return(0,A.of)(Di).pipe((0,J.b)(ln=>{const Qn=new fn(ln.id,this.urlSerializer.serialize(ln.extractedUrl),this.urlSerializer.serialize(ln.urlAfterRedirects),ln.targetSnapshot);this.events.next(Qn)}),(0,K.w)(ln=>{let Qn=!1;return(0,A.of)(ln).pipe(gc(this.paramsInheritanceStrategy,this.environmentInjector),(0,J.b)({next:()=>Qn=!0,complete:()=>{Qn||this.cancelNavigationTransition(ln,"",2)}}))}),(0,J.b)(ln=>{const Qn=new Sn(ln.id,this.urlSerializer.serialize(ln.extractedUrl),this.urlSerializer.serialize(ln.urlAfterRedirects),ln.targetSnapshot);this.events.next(Qn)}))}),_e(Di=>{const ln=Qn=>{const Jn=[];Qn.routeConfig?.loadComponent&&!Qn.routeConfig._loadedComponent&&Jn.push(this.configLoader.loadComponent(Qn.routeConfig).pipe((0,J.b)(Pr=>{Qn.component=Pr}),(0,j.U)(()=>{})));for(const Pr of Qn.children)Jn.push(...ln(Pr));return Jn};return(0,w.a)(ln(Di.targetSnapshot.root)).pipe((0,n.d)(),(0,X.q)(1))}),_e(()=>this.afterPreactivation()),(0,K.w)(()=>{const{currentSnapshot:Di,targetSnapshot:ln}=Rt,Qn=this.createViewTransition?.(this.environmentInjector,Di.root,ln.root);return Qn?(0,y.D)(Qn).pipe((0,j.U)(()=>Rt)):(0,A.of)(Rt)}),(0,j.U)(Di=>{const ln=function Ca(me,Oe,ge){const Ne=kr(me,Oe._root,ge?ge._root:void 0);return new er(Ne,Oe)}(ge.routeReuseStrategy,Di.targetSnapshot,Di.currentRouterState);return this.currentTransition=Rt={...Di,targetRouterState:ln},this.currentNavigation.targetRouterState=ln,Rt}),(0,J.b)(()=>{this.events.next(new zt)}),((me,Oe,ge,Ne)=>(0,j.U)(mt=>(new co(Oe,mt.targetRouterState,mt.currentRouterState,ge,Ne).activate(me),mt)))(this.rootContexts,ge.routeReuseStrategy,Di=>this.events.next(Di),this.inputBindingEnabled),(0,X.q)(1),(0,J.b)({next:Di=>{ni=!0,this.lastSuccessfulNavigation=this.currentNavigation,this.events.next(new xi(Di.id,this.urlSerializer.serialize(Di.extractedUrl),this.urlSerializer.serialize(Di.urlAfterRedirects))),this.titleStrategy?.updateTitle(Di.targetRouterState.snapshot),Di.resolve(!0)},complete:()=>{ni=!0}}),(0,H.R)(this.transitionAbortSubject.pipe((0,J.b)(Di=>{throw Di}))),(0,r.x)(()=>{ni||Li||this.cancelNavigationTransition(Rt,"",1),this.currentNavigation?.id===Rt.id&&(this.currentNavigation=null)}),(0,he.K)(Di=>{if(Li=!0,ea(Di))this.events.next(new Se(Rt.id,this.urlSerializer.serialize(Rt.extractedUrl),Di.message,Di.cancellationCode)),function qo(me){return ea(me)&&ei(me.url)}(Di)?this.events.next(new pi(Di.url)):Rt.resolve(!1);else{this.events.next(new et(Rt.id,this.urlSerializer.serialize(Rt.extractedUrl),Di,Rt.targetSnapshot??void 0));try{Rt.resolve(ge.errorHandler(Di))}catch(ln){Rt.reject(ln)}}return I.E}))}))}cancelNavigationTransition(ge,Ne,mt){const Rt=new Se(ge.id,this.urlSerializer.serialize(ge.extractedUrl),Ne,mt);this.events.next(Rt),ge.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){return this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))).toString()!==this.currentTransition?.extractedUrl.toString()&&!this.currentTransition?.extras.skipLocationChange}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();function cn(me){return me!==Ui}let Un=(()=>{class me{static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:()=>(0,e.f3M)(hr),providedIn:"root"})}return me})();class Ln{shouldDetach(Oe){return!1}store(Oe,ge){}shouldAttach(Oe){return!1}retrieve(Oe){return null}shouldReuseRoute(Oe,ge){return Oe.routeConfig===ge.routeConfig}}let hr=(()=>{class me extends Ln{static#e=this.\u0275fac=(()=>{let ge;return function(mt){return(ge||(ge=e.n5z(me)))(mt||me)}})();static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})(),Hr=(()=>{class me{static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:()=>(0,e.f3M)(da),providedIn:"root"})}return me})(),da=(()=>{class me extends Hr{constructor(){super(...arguments),this.location=(0,e.f3M)(W.Ye),this.urlSerializer=(0,e.f3M)(St),this.options=(0,e.f3M)(pt,{optional:!0})||{},this.canceledNavigationResolution=this.options.canceledNavigationResolution||"replace",this.urlHandlingStrategy=(0,e.f3M)(Xt),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.currentUrlTree=new Be,this.rawUrlTree=this.currentUrlTree,this.currentPageId=0,this.lastSuccessfulId=-1,this.routerState=yr(0,null),this.stateMemento=this.createStateMemento()}getCurrentUrlTree(){return this.currentUrlTree}getRawUrlTree(){return this.rawUrlTree}restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}getRouterState(){return this.routerState}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}registerNonRouterCurrentEntryChangeListener(ge){return this.location.subscribe(Ne=>{"popstate"===Ne.type&&ge(Ne.url,Ne.state)})}handleRouterEvent(ge,Ne){if(ge instanceof qt)this.stateMemento=this.createStateMemento();else if(ge instanceof Ve)this.rawUrlTree=Ne.initialUrl;else if(ge instanceof tt){if("eager"===this.urlUpdateStrategy&&!Ne.extras.skipLocationChange){const mt=this.urlHandlingStrategy.merge(Ne.finalUrl,Ne.initialUrl);this.setBrowserUrl(mt,Ne)}}else ge instanceof zt?(this.currentUrlTree=Ne.finalUrl,this.rawUrlTree=this.urlHandlingStrategy.merge(Ne.finalUrl,Ne.initialUrl),this.routerState=Ne.targetRouterState,"deferred"===this.urlUpdateStrategy&&(Ne.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,Ne))):ge instanceof Se&&(3===ge.code||2===ge.code)?this.restoreHistory(Ne):ge instanceof et?this.restoreHistory(Ne,!0):ge instanceof xi&&(this.lastSuccessfulId=ge.id,this.currentPageId=this.browserPageId)}setBrowserUrl(ge,Ne){const mt=this.urlSerializer.serialize(ge);if(this.location.isCurrentPathEqualTo(mt)||Ne.extras.replaceUrl){const ni={...Ne.extras.state,...this.generateNgRouterState(Ne.id,this.browserPageId)};this.location.replaceState(mt,"",ni)}else{const Rt={...Ne.extras.state,...this.generateNgRouterState(Ne.id,this.browserPageId+1)};this.location.go(mt,"",Rt)}}restoreHistory(ge,Ne=!1){if("computed"===this.canceledNavigationResolution){const Rt=this.currentPageId-this.browserPageId;0!==Rt?this.location.historyGo(Rt):this.currentUrlTree===ge.finalUrl&&0===Rt&&(this.resetState(ge),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(Ne&&this.resetState(ge),this.resetUrlToCurrentUrlTree())}resetState(ge){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,ge.finalUrl??this.rawUrlTree)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(ge,Ne){return"computed"===this.canceledNavigationResolution?{navigationId:ge,\u0275routerPageId:Ne}:{navigationId:ge}}static#e=this.\u0275fac=(()=>{let ge;return function(mt){return(ge||(ge=e.n5z(me)))(mt||me)}})();static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();var ia=function(me){return me[me.COMPLETE=0]="COMPLETE",me[me.FAILED=1]="FAILED",me[me.REDIRECTING=2]="REDIRECTING",me}(ia||{});function Ta(me,Oe){me.events.pipe((0,se.h)(ge=>ge instanceof xi||ge instanceof Se||ge instanceof et||ge instanceof Ve),(0,j.U)(ge=>ge instanceof xi||ge instanceof Ve?ia.COMPLETE:ge instanceof Se&&(0===ge.code||1===ge.code)?ia.REDIRECTING:ia.FAILED),(0,se.h)(ge=>ge!==ia.REDIRECTING),(0,X.q)(1)).subscribe(()=>{Oe()})}function Or(me){throw me}const Lo={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},$a={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let Fn=(()=>{class me{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}constructor(){this.disposed=!1,this.isNgZoneEnabled=!1,this.console=(0,e.f3M)(e.c2e),this.stateManager=(0,e.f3M)(Hr),this.options=(0,e.f3M)(pt,{optional:!0})||{},this.pendingTasks=(0,e.f3M)(e.HDt),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.navigationTransitions=(0,e.f3M)(en),this.urlSerializer=(0,e.f3M)(St),this.location=(0,e.f3M)(W.Ye),this.urlHandlingStrategy=(0,e.f3M)(Xt),this._events=new z.x,this.errorHandler=this.options.errorHandler||Or,this.navigated=!1,this.routeReuseStrategy=(0,e.f3M)(Un),this.onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore",this.config=(0,e.f3M)(Qt,{optional:!0})?.flat()??[],this.componentInputBindingEnabled=!!(0,e.f3M)(So,{optional:!0}),this.eventsSubscription=new B.w0,this.isNgZoneEnabled=(0,e.f3M)(e.R0b)instanceof e.R0b&&e.R0b.isInAngularZone(),this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this,this.currentUrlTree,this.routerState).subscribe({error:ge=>{this.console.warn(ge)}}),this.subscribeToNavigationEvents()}subscribeToNavigationEvents(){const ge=this.navigationTransitions.events.subscribe(Ne=>{try{const mt=this.navigationTransitions.currentTransition,Rt=this.navigationTransitions.currentNavigation;if(null!==mt&&null!==Rt)if(this.stateManager.handleRouterEvent(Ne,Rt),Ne instanceof Se&&0!==Ne.code&&1!==Ne.code)this.navigated=!0;else if(Ne instanceof xi)this.navigated=!0;else if(Ne instanceof pi){const ni=this.urlHandlingStrategy.merge(Ne.url,mt.currentRawUrl),Li={skipLocationChange:mt.extras.skipLocationChange,replaceUrl:"eager"===this.urlUpdateStrategy||cn(mt.source)};this.scheduleNavigation(ni,Ui,null,Li,{resolve:mt.resolve,reject:mt.reject,promise:mt.promise})}(function vs(me){return!(me instanceof zt||me instanceof pi)})(Ne)&&this._events.next(Ne)}catch(mt){this.navigationTransitions.transitionAbortSubject.next(mt)}});this.eventsSubscription.add(ge)}resetRootComponentType(ge){this.routerState.root.component=ge,this.navigationTransitions.rootComponentType=ge}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),Ui,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription||(this.nonRouterCurrentEntryChangeSubscription=this.stateManager.registerNonRouterCurrentEntryChangeListener((ge,Ne)=>{setTimeout(()=>{this.navigateToSyncWithBrowser(ge,"popstate",Ne)},0)}))}navigateToSyncWithBrowser(ge,Ne,mt){const Rt={replaceUrl:!0},ni=mt?.navigationId?mt:null;if(mt){const Di={...mt};delete Di.navigationId,delete Di.\u0275routerPageId,0!==Object.keys(Di).length&&(Rt.state=Di)}const Li=this.parseUrl(ge);this.scheduleNavigation(Li,Ne,ni,Rt)}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.navigationTransitions.currentNavigation}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(ge){this.config=ge.map(Va),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(ge,Ne={}){const{relativeTo:mt,queryParams:Rt,fragment:ni,queryParamsHandling:Li,preserveFragment:Di}=Ne,ln=Di?this.currentUrlTree.fragment:ni;let Jn,Qn=null;switch(Li){case"merge":Qn={...this.currentUrlTree.queryParams,...Rt};break;case"preserve":Qn=this.currentUrlTree.queryParams;break;default:Qn=Rt||null}null!==Qn&&(Qn=this.removeEmptyProps(Qn));try{Jn=Fi(mt?mt.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof ge[0]||!ge[0].startsWith("/"))&&(ge=[]),Jn=this.currentUrlTree.root}return li(Jn,ge,Qn,ln??null)}navigateByUrl(ge,Ne={skipLocationChange:!1}){const mt=ei(ge)?ge:this.parseUrl(ge),Rt=this.urlHandlingStrategy.merge(mt,this.rawUrlTree);return this.scheduleNavigation(Rt,Ui,null,Ne)}navigate(ge,Ne={skipLocationChange:!1}){return function Jo(me){for(let Oe=0;Oe{const Rt=ge[mt];return null!=Rt&&(Ne[mt]=Rt),Ne},{})}scheduleNavigation(ge,Ne,mt,Rt,ni){if(this.disposed)return Promise.resolve(!1);let Li,Di,ln;ni?(Li=ni.resolve,Di=ni.reject,ln=ni.promise):ln=new Promise((Jn,Pr)=>{Li=Jn,Di=Pr});const Qn=this.pendingTasks.add();return Ta(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Qn))}),this.navigationTransitions.handleNavigationRequest({source:Ne,restoredState:mt,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:ge,extras:Rt,resolve:Li,reject:Di,promise:ln,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),ln.catch(Jn=>Promise.reject(Jn))}static#e=this.\u0275fac=function(Ne){return new(Ne||me)};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})(),Sr=(()=>{class me{constructor(ge,Ne,mt,Rt,ni,Li){this.router=ge,this.route=Ne,this.tabIndexAttribute=mt,this.renderer=Rt,this.el=ni,this.locationStrategy=Li,this.href=null,this.commands=null,this.onChanges=new z.x,this.preserveFragment=!1,this.skipLocationChange=!1,this.replaceUrl=!1;const Di=ni.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===Di||"area"===Di,this.isAnchorElement?this.subscription=ge.events.subscribe(ln=>{ln instanceof xi&&this.updateHref()}):this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(ge){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",ge)}ngOnChanges(ge){this.isAnchorElement&&this.updateHref(),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(ge,Ne,mt,Rt,ni){return!!(null===this.urlTree||this.isAnchorElement&&(0!==ge||Ne||mt||Rt||ni||"string"==typeof this.target&&"_self"!=this.target))||(this.router.navigateByUrl(this.urlTree,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state}),!this.isAnchorElement)}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){this.href=null!==this.urlTree&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(this.urlTree)):null;const ge=null===this.href?null:(0,e.P3R)(this.href,this.el.nativeElement.tagName.toLowerCase(),"href");this.applyAttributeValue("href",ge)}applyAttributeValue(ge,Ne){const mt=this.renderer,Rt=this.el.nativeElement;null!==Ne?mt.setAttribute(Rt,ge,Ne):mt.removeAttribute(Rt,ge)}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:this.preserveFragment})}static#e=this.\u0275fac=function(Ne){return new(Ne||me)(e.Y36(Fn),e.Y36(ma),e.$8M("tabindex"),e.Y36(e.Qsj),e.Y36(e.SBq),e.Y36(W.S$))};static#t=this.\u0275dir=e.lG2({type:me,selectors:[["","routerLink",""]],hostVars:1,hostBindings:function(Ne,mt){1&Ne&&e.NdJ("click",function(ni){return mt.onClick(ni.button,ni.ctrlKey,ni.shiftKey,ni.altKey,ni.metaKey)}),2&Ne&&e.uIk("target",mt.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",relativeTo:"relativeTo",preserveFragment:["preserveFragment","preserveFragment",e.VuI],skipLocationChange:["skipLocationChange","skipLocationChange",e.VuI],replaceUrl:["replaceUrl","replaceUrl",e.VuI],routerLink:"routerLink"},standalone:!0,features:[e.Xq5,e.TTD]})}return me})(),zc=(()=>{class me{get isActive(){return this._isActive}constructor(ge,Ne,mt,Rt,ni){this.router=ge,this.element=Ne,this.renderer=mt,this.cdr=Rt,this.link=ni,this.classes=[],this._isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new e.vpe,this.routerEventsSubscription=ge.events.subscribe(Li=>{Li instanceof xi&&this.update()})}ngAfterContentInit(){(0,A.of)(this.links.changes,(0,A.of)(null)).pipe((0,R.J)()).subscribe(ge=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const ge=[...this.links.toArray(),this.link].filter(Ne=>!!Ne).map(Ne=>Ne.onChanges);this.linkInputChangesSubscription=(0,y.D)(ge).pipe((0,R.J)()).subscribe(Ne=>{this._isActive!==this.isLinkActive(this.router)(Ne)&&this.update()})}set routerLinkActive(ge){const Ne=Array.isArray(ge)?ge:ge.split(" ");this.classes=Ne.filter(mt=>!!mt)}ngOnChanges(ge){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const ge=this.hasActiveLinks();this._isActive!==ge&&(this._isActive=ge,this.cdr.markForCheck(),this.classes.forEach(Ne=>{ge?this.renderer.addClass(this.element.nativeElement,Ne):this.renderer.removeClass(this.element.nativeElement,Ne)}),ge&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this.isActiveChange.emit(ge))})}isLinkActive(ge){const Ne=function _c(me){return!!me.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return mt=>!!mt.urlTree&&ge.isActive(mt.urlTree,Ne)}hasActiveLinks(){const ge=this.isLinkActive(this.router);return this.link&&ge(this.link)||this.links.some(ge)}static#e=this.\u0275fac=function(Ne){return new(Ne||me)(e.Y36(Fn),e.Y36(e.SBq),e.Y36(e.Qsj),e.Y36(e.sBO),e.Y36(Sr,8))};static#t=this.\u0275dir=e.lG2({type:me,selectors:[["","routerLinkActive",""]],contentQueries:function(Ne,mt,Rt){if(1&Ne&&e.Suo(Rt,Sr,5),2&Ne){let ni;e.iGM(ni=e.CRH())&&(mt.links=ni)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],standalone:!0,features:[e.TTD]})}return me})();class Ds{}let bl=(()=>{class me{constructor(ge,Ne,mt,Rt,ni){this.router=ge,this.injector=mt,this.preloadingStrategy=Rt,this.loader=ni}setUpPreloading(){this.subscription=this.router.events.pipe((0,se.h)(ge=>ge instanceof xi),(0,Me.b)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(ge,Ne){const mt=[];for(const Rt of Ne){Rt.providers&&!Rt._injector&&(Rt._injector=(0,e.MMx)(Rt.providers,ge,`Route: ${Rt.path}`));const ni=Rt._injector??ge,Li=Rt._loadedInjector??ni;(Rt.loadChildren&&!Rt._loadedRoutes&&void 0===Rt.canLoad||Rt.loadComponent&&!Rt._loadedComponent)&&mt.push(this.preloadConfig(ni,Rt)),(Rt.children||Rt._loadedRoutes)&&mt.push(this.processRoutes(Li,Rt.children??Rt._loadedRoutes))}return(0,y.D)(mt).pipe((0,R.J)())}preloadConfig(ge,Ne){return this.preloadingStrategy.preload(Ne,()=>{let mt;mt=Ne.loadChildren&&void 0===Ne.canLoad?this.loader.loadChildren(ge,Ne):(0,A.of)(null);const Rt=mt.pipe((0,ue.z)(ni=>null===ni?(0,A.of)(void 0):(Ne._loadedRoutes=ni.routes,Ne._loadedInjector=ni.injector,this.processRoutes(ni.injector??ge,ni.routes))));if(Ne.loadComponent&&!Ne._loadedComponent){const ni=this.loader.loadComponent(Ne);return(0,y.D)([Rt,ni]).pipe((0,R.J)())}return Rt})}static#e=this.\u0275fac=function(Ne){return new(Ne||me)(e.LFG(Fn),e.LFG(e.Sil),e.LFG(e.lqb),e.LFG(Ds),e.LFG(Re))};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac,providedIn:"root"})}return me})();const Vc=new e.OlP("");let $o=(()=>{class me{constructor(ge,Ne,mt,Rt,ni={}){this.urlSerializer=ge,this.transitions=Ne,this.viewportScroller=mt,this.zone=Rt,this.options=ni,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},ni.scrollPositionRestoration=ni.scrollPositionRestoration||"disabled",ni.anchorScrolling=ni.anchorScrolling||"disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(ge=>{ge instanceof qt?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=ge.navigationTrigger,this.restoredId=ge.restoredState?ge.restoredState.navigationId:0):ge instanceof xi?(this.lastId=ge.id,this.scheduleScrollEvent(ge,this.urlSerializer.parse(ge.urlAfterRedirects).fragment)):ge instanceof Ve&&0===ge.code&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(ge,this.urlSerializer.parse(ge.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(ge=>{ge instanceof Ni&&(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,Ne){this.zone.runOutsideAngular(()=>{setTimeout(()=>{this.zone.run(()=>{this.transitions.events.next(new Ni(ge,"popstate"===this.lastSource?this.store[this.restoredId]:null,Ne))})},0)})}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static#e=this.\u0275fac=function(Ne){e.$Z()};static#t=this.\u0275prov=e.Yz7({token:me,factory:me.\u0275fac})}return me})();function Pa(me,Oe){return{\u0275kind:me,\u0275providers:Oe}}function In(){const me=(0,e.f3M)(e.zs3);return Oe=>{const ge=me.get(e.z2F);if(Oe!==ge.components[0])return;const Ne=me.get(Fn),mt=me.get(Go);1===me.get(Bs)&&Ne.initialNavigation(),me.get(g1,null,e.XFs.Optional)?.setUpPreloading(),me.get(Vc,null,e.XFs.Optional)?.init(),Ne.resetRootComponentType(ge.componentTypes[0]),mt.closed||(mt.next(),mt.complete(),mt.unsubscribe())}}const Go=new e.OlP("",{factory:()=>new z.x}),Bs=new e.OlP("",{providedIn:"root",factory:()=>1}),g1=new e.OlP("");function Qs(me){return Pa(0,[{provide:g1,useExisting:bl},{provide:Ds,useExisting:me}])}function gd(me){return Pa(9,[{provide:di,useValue:Ii},{provide:Si,useValue:{skipNextTransition:!!me?.skipInitialTransition,...me}}])}const rr=new e.OlP("ROUTER_FORROOT_GUARD"),Ml=[W.Ye,{provide:St,useClass:dt},Fn,Gi,{provide:ma,useFactory:function Ls(me){return me.routerState.root},deps:[Fn]},Re,[]];let vc=(()=>{class me{constructor(ge){}static forRoot(ge,Ne){return{ngModule:me,providers:[Ml,[],{provide:Qt,multi:!0,useValue:ge},{provide:rr,useFactory:Fr,deps:[[Fn,new e.FiY,new e.tp0]]},{provide:pt,useValue:Ne||{}},Ne?.useHash?{provide:W.S$,useClass:W.Do}:{provide:W.S$,useClass:W.b0},{provide:Vc,useFactory:()=>{const me=(0,e.f3M)(W.EM),Oe=(0,e.f3M)(e.R0b),ge=(0,e.f3M)(pt),Ne=(0,e.f3M)(en),mt=(0,e.f3M)(St);return ge.scrollOffset&&me.setOffset(ge.scrollOffset),new $o(mt,Ne,me,Oe,ge)}},Ne?.preloadingStrategy?Qs(Ne.preloadingStrategy).\u0275providers:[],Ne?.initialNavigation?Ra(Ne):[],Ne?.bindToComponentInputs?Pa(8,[jr,{provide:So,useExisting:jr}]).\u0275providers:[],Ne?.enableViewTransitions?gd().\u0275providers:[],[{provide:bc,useFactory:In},{provide:e.tb,multi:!0,useExisting:bc}]]}}static forChild(ge){return{ngModule:me,providers:[{provide:Qt,multi:!0,useValue:ge}]}}static#e=this.\u0275fac=function(Ne){return new(Ne||me)(e.LFG(rr,8))};static#t=this.\u0275mod=e.oAB({type:me});static#i=this.\u0275inj=e.cJS({})}return me})();function Fr(me){return"guarded"}function Ra(me){return["disabled"===me.initialNavigation?Pa(3,[{provide:e.ip1,multi:!0,useFactory:()=>{const Oe=(0,e.f3M)(Fn);return()=>{Oe.setUpLocationChangeListener()}}},{provide:Bs,useValue:2}]).\u0275providers:[],"enabledBlocking"===me.initialNavigation?Pa(2,[{provide:Bs,useValue:0},{provide:e.ip1,multi:!0,deps:[e.zs3],useFactory:Oe=>{const ge=Oe.get(W.V_,Promise.resolve());return()=>ge.then(()=>new Promise(Ne=>{const mt=Oe.get(Fn),Rt=Oe.get(Go);Ta(mt,()=>{Ne(!0)}),Oe.get(en).afterPreactivation=()=>(Ne(!0),Rt.closed?(0,A.of)(void 0):Rt),mt.initialNavigation()}))}}]).\u0275providers:[]]}const bc=new e.OlP("")},5597:(Fe,q,p)=>{"use strict";p.d(q,{BN:()=>As,uH:()=>Qt});var e=p(9212);function t(Re,ft){var _t=Object.keys(Re);if(Object.getOwnPropertySymbols){var Lt=Object.getOwnPropertySymbols(Re);ft&&(Lt=Lt.filter(function(Xt){return Object.getOwnPropertyDescriptor(Re,Xt).enumerable})),_t.push.apply(_t,Lt)}return _t}function y(Re){for(var ft=1;ftRe.length)&&(ft=Re.length);for(var _t=0,Lt=new Array(ft);_t0;)ft+=be[62*Math.random()|0];return ft}function ne(Re){for(var ft=[],_t=(Re||[]).length>>>0;_t--;)ft[_t]=Re[_t];return ft}function ke(Re){return Re.classList?ne(Re.classList):(Re.getAttribute("class")||"").split(" ").filter(function(ft){return ft})}function Nt(Re){return"".concat(Re).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function Wt(Re){return Object.keys(Re||{}).reduce(function(ft,_t){return ft+"".concat(_t,": ").concat(Re[_t].trim(),";")},"")}function gi(Re){return Re.size!==gt.size||Re.x!==gt.x||Re.y!==gt.y||Re.rotate!==gt.rotate||Re.flipX||Re.flipY}var Fi=':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-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-light: normal 300 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 -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 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}';function li(){var Re=Je,ft=ye,_t=Ee.cssPrefix,Lt=Ee.replacementClass,Xt=Fi;if(_t!==Re||Lt!==ft){var hi=new RegExp("\\.".concat(Re,"\\-"),"g"),di=new RegExp("\\--".concat(Re,"\\-"),"g"),Si=new RegExp("\\.".concat(ft),"g");Xt=Xt.replace(hi,".".concat(_t,"-")).replace(di,"--".concat(_t,"-")).replace(Si,".".concat(Lt))}return Xt}var ui=!1;function un(){Ee.autoAddCss&&!ui&&(function Le(Re){if(Re&&v){var ft=h.createElement("style");ft.setAttribute("type","text/css"),ft.innerHTML=Re;for(var _t=h.head.childNodes,Lt=null,Xt=_t.length-1;Xt>-1;Xt--){var hi=_t[Xt],di=(hi.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(di)>-1&&(Lt=hi)}h.head.insertBefore(ft,Lt)}}(li()),ui=!0)}var Ki={mixout:function(){return{dom:{css:li,insertCss:un}}},hooks:function(){return{beforeDOMElementCreation:function(){un()},beforeI2svg:function(){un()}}}},Mi=f||{};Mi[ct]||(Mi[ct]={}),Mi[ct].styles||(Mi[ct].styles={}),Mi[ct].hooks||(Mi[ct].hooks={}),Mi[ct].shims||(Mi[ct].shims=[]);var on=Mi[ct],st=[],Ce=!1;function Ht(Re){var ft=Re.tag,_t=Re.attributes,Lt=void 0===_t?{}:_t,Xt=Re.children,hi=void 0===Xt?[]:Xt;return"string"==typeof Re?Nt(Re):"<".concat(ft," ").concat(function At(Re){return Object.keys(Re||{}).reduce(function(ft,_t){return ft+"".concat(_t,'="').concat(Nt(Re[_t]),'" ')},"").trim()}(Lt),">").concat(hi.map(Ht).join(""),"")}function Dt(Re,ft,_t){if(Re&&Re[ft]&&Re[ft][_t])return{prefix:ft,iconName:_t,icon:Re[ft][_t]}}v&&((Ce=(h.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(h.readyState))||h.addEventListener("DOMContentLoaded",function Re(){h.removeEventListener("DOMContentLoaded",Re),Ce=1,st.map(function(ft){return ft()})}));var Gt=function(ft,_t,Lt,Xt){var Ii,Xi,en,hi=Object.keys(ft),di=hi.length,Si=void 0!==Xt?function(ft,_t){return function(Lt,Xt,hi,di){return ft.call(_t,Lt,Xt,hi,di)}}(_t,Xt):_t;for(void 0===Lt?(Ii=1,en=ft[hi[0]]):(Ii=0,en=Lt);Ii=55296&&Xt<=56319&&_t2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,Xt=void 0!==Lt&&Lt,hi=Oi(ft);"function"!=typeof on.hooks.addPack||Xt?on.styles[Re]=y(y({},on.styles[Re]||{}),hi):on.hooks.addPack(Re,Oi(ft)),"fas"===Re&&Ui("fa",ft)}var qt,xi,Se,Ve=on.styles,et=on.shims,tt=(d(qt={},Ze,Object.values(Be[Ze])),d(qt,We,Object.values(Be[We])),qt),Yt=null,ri={},fn={},Sn={},an={},sr={},Jr=(d(xi={},Ze,Object.keys(It[Ze])),d(xi,We,Object.keys(It[We])),xi);var $r=function(){var ft=function(hi){return Gt(Ve,function(di,Si,Ii){return di[Ii]=Gt(Si,hi,{}),di},{})};ri=ft(function(Xt,hi,di){return hi[3]&&(Xt[hi[3]]=di),hi[2]&&hi[2].filter(function(Ii){return"number"==typeof Ii}).forEach(function(Ii){Xt[Ii.toString(16)]=di}),Xt}),fn=ft(function(Xt,hi,di){return Xt[di]=di,hi[2]&&hi[2].filter(function(Ii){return"string"==typeof Ii}).forEach(function(Ii){Xt[Ii]=di}),Xt}),sr=ft(function(Xt,hi,di){var Si=hi[2];return Xt[di]=di,Si.forEach(function(Ii){Xt[Ii]=di}),Xt});var _t="far"in Ve||Ee.autoFetchSvg,Lt=Gt(et,function(Xt,hi){var di=hi[0],Si=hi[1],Ii=hi[2];return"far"===Si&&!_t&&(Si="fas"),"string"==typeof di&&(Xt.names[di]={prefix:Si,iconName:Ii}),"number"==typeof di&&(Xt.unicodes[di.toString(16)]={prefix:Si,iconName:Ii}),Xt},{names:{},unicodes:{}});Sn=Lt.names,an=Lt.unicodes,Yt=yn(Ee.styleDefault,{family:Ee.familyDefault})};function Ni(Re,ft){return(ri[Re]||{})[ft]}function pi(Re,ft){return(sr[Re]||{})[ft]}function _i(Re){return Sn[Re]||{prefix:null,iconName:null}}function Gi(){return Yt}(function Ge(Re){nt.push(Re)})(function(Re){Yt=yn(Re.styleDefault,{family:Ee.familyDefault})}),$r();var Ji=function(){return{prefix:null,iconName:null,rest:[]}};function yn(Re){var _t=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,Lt=void 0===_t?Ze:_t;return Ae[Lt][Re]||Ae[Lt][It[Lt][Re]]||(Re in on.styles?Re:null)||null}var jn=(d(Se={},Ze,Object.keys(Be[Ze])),d(Se,We,Object.keys(Be[We])),Se);function Rn(Re){var ft,Lt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,Xt=void 0!==Lt&&Lt,hi=(d(ft={},Ze,"".concat(Ee.cssPrefix,"-").concat(Ze)),d(ft,We,"".concat(Ee.cssPrefix,"-").concat(We)),ft),di=null,Si=Ze;(Re.includes(hi[Ze])||Re.some(function(Xi){return jn[Ze].includes(Xi)}))&&(Si=Ze),(Re.includes(hi[We])||Re.some(function(Xi){return jn[We].includes(Xi)}))&&(Si=We);var Ii=Re.reduce(function(Xi,en){var cn=function Yr(Re,ft){var _t=ft.split("-"),Lt=_t[0],Xt=_t.slice(1).join("-");return Lt!==Re||""===Xt||function Ar(Re){return~Ye.indexOf(Re)}(Xt)?null:Xt}(Ee.cssPrefix,en);if(Ve[en]?(en=tt[Si].includes(en)?rt[Si][en]:en,di=en,Xi.prefix=en):Jr[Si].indexOf(en)>-1?(di=en,Xi.prefix=yn(en,{family:Si})):cn?Xi.iconName=cn:en!==Ee.replacementClass&&en!==hi[Ze]&&en!==hi[We]&&Xi.rest.push(en),!Xt&&Xi.prefix&&Xi.iconName){var Un="fa"===di?_i(Xi.iconName):{},Ln=pi(Xi.prefix,Xi.iconName);Un.prefix&&(di=null),Xi.iconName=Un.iconName||Ln||Xi.iconName,Xi.prefix=Un.prefix||Xi.prefix,"far"===Xi.prefix&&!Ve.far&&Ve.fas&&!Ee.autoFetchSvg&&(Xi.prefix="fas")}return Xi},Ji());return(Re.includes("fa-brands")||Re.includes("fab"))&&(Ii.prefix="fab"),(Re.includes("fa-duotone")||Re.includes("fad"))&&(Ii.prefix="fad"),!Ii.prefix&&Si===We&&(Ve.fass||Ee.autoFetchSvg)&&(Ii.prefix="fass",Ii.iconName=pi(Ii.prefix,Ii.iconName)||Ii.iconName),("fa"===Ii.prefix||"fa"===di)&&(Ii.prefix=Gi()||"fas"),Ii}var Er=function(){function Re(){(function w(Re,ft){if(!(Re instanceof ft))throw new TypeError("Cannot call a class as a function")})(this,Re),this.definitions={}}return function P(Re,ft,_t){ft&&m(Re.prototype,ft),_t&&m(Re,_t),Object.defineProperty(Re,"prototype",{writable:!1})}(Re,[{key:"add",value:function(){for(var _t=this,Lt=arguments.length,Xt=new Array(Lt),hi=0;hi0&&en.forEach(function(cn){"string"==typeof cn&&(_t[Si][cn]=Xi)}),_t[Si][Ii]=Xi}),_t}}]),Re}(),er=[],yr={},aa={},ma=Object.keys(aa);function Fa(Re,ft){for(var _t=arguments.length,Lt=new Array(_t>2?_t-2:0),Xt=2;Xt<_t;Xt++)Lt[Xt-2]=arguments[Xt];return(yr[Re]||[]).forEach(function(di){ft=di.apply(null,[ft].concat(Lt))}),ft}function fr(Re){for(var ft=arguments.length,_t=new Array(ft>1?ft-1:0),Lt=1;Lt0&&void 0!==arguments[0]?arguments[0]:{};return v?(fr("beforeI2svg",ft),Dr("pseudoElements2svg",ft),Dr("i2svg",ft)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var ft=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},_t=ft.autoReplaceSvgRoot;!1===Ee.autoReplaceSvg&&(Ee.autoReplaceSvg=!0),Ee.observeMutations=!0,function Mt(Re){v&&(Ce?setTimeout(Re,0):st.push(Re))}(function(){So({autoReplaceSvgRoot:_t}),fr("watch",ft)})}},sa={noAuto:function(){Ee.autoReplaceSvg=!1,Ee.observeMutations=!1,fr("noAuto")},config:Ee,dom:ga,parse:{icon:function(ft){if(null===ft)return null;if("object"===A(ft)&&ft.prefix&&ft.iconName)return{prefix:ft.prefix,iconName:pi(ft.prefix,ft.iconName)||ft.iconName};if(Array.isArray(ft)&&2===ft.length){var _t=0===ft[1].indexOf("fa-")?ft[1].slice(3):ft[1],Lt=yn(ft[0]);return{prefix:Lt,iconName:pi(Lt,_t)||_t}}if("string"==typeof ft&&(ft.indexOf("".concat(Ee.cssPrefix,"-"))>-1||ft.match($e))){var Xt=Rn(ft.split(" "),{skipLookups:!0});return{prefix:Xt.prefix||Gi(),iconName:pi(Xt.prefix,Xt.iconName)||Xt.iconName}}if("string"==typeof ft){var hi=Gi();return{prefix:hi,iconName:pi(hi,ft)||ft}}}},library:pa,findIconDefinition:Kn,toHtml:Ht},So=function(){var _t=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,Lt=void 0===_t?h:_t;(Object.keys(on.styles).length>0||Ee.autoFetchSvg)&&v&&Ee.autoReplaceSvg&&sa.dom.i2svg({node:Lt})};function jr(Re,ft){return Object.defineProperty(Re,"abstract",{get:ft}),Object.defineProperty(Re,"html",{get:function(){return Re.abstract.map(function(Lt){return Ht(Lt)})}}),Object.defineProperty(Re,"node",{get:function(){if(v){var Lt=h.createElement("div");return Lt.innerHTML=Re.html,Lt.children}}}),Re}function dr(Re){var ft=Re.icons,_t=ft.main,Lt=ft.mask,Xt=Re.prefix,hi=Re.iconName,di=Re.transform,Si=Re.symbol,Ii=Re.title,Xi=Re.maskId,en=Re.titleId,cn=Re.extra,Un=Re.watchable,Ln=void 0!==Un&&Un,hr=Lt.found?Lt:_t,Hr=hr.width,da=hr.height,ia="fak"===Xt,Ta=[Ee.replacementClass,hi?"".concat(Ee.cssPrefix,"-").concat(hi):""].filter(function(Sr){return-1===cn.classes.indexOf(Sr)}).filter(function(Sr){return""!==Sr||!!Sr}).concat(cn.classes).join(" "),Or={children:[],attributes:y(y({},cn.attributes),{},{"data-prefix":Xt,"data-icon":hi,class:Ta,role:cn.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(Hr," ").concat(da)})},Lo=ia&&!~cn.classes.indexOf("fa-fw")?{width:"".concat(Hr/da*16*.0625,"em")}:{};Ln&&(Or.attributes[fe]=""),Ii&&(Or.children.push({tag:"title",attributes:{id:Or.attributes["aria-labelledby"]||"title-".concat(en||$())},children:[Ii]}),delete Or.attributes.title);var $a=y(y({},Or),{},{prefix:Xt,iconName:hi,main:_t,mask:Lt,maskId:Xi,transform:di,symbol:Si,styles:y(y({},Lo),cn.styles)}),Fn=Lt.found&&_t.found?Dr("generateAbstractMask",$a)||{children:[],attributes:{}}:Dr("generateAbstractIcon",$a)||{children:[],attributes:{}},vs=Fn.attributes;return $a.children=Fn.children,$a.attributes=vs,Si?function kr(Re){var _t=Re.iconName,Lt=Re.children,Xt=Re.attributes,hi=Re.symbol,di=!0===hi?"".concat(Re.prefix,"-").concat(Ee.cssPrefix,"-").concat(_t):hi;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:y(y({},Xt),{},{id:di}),children:Lt}]}]}($a):function Ca(Re){var ft=Re.children,_t=Re.main,Lt=Re.mask,Xt=Re.attributes,hi=Re.styles,di=Re.transform;if(gi(di)&&_t.found&&!Lt.found){var Xi={x:_t.width/_t.height/2,y:.5};Xt.style=Wt(y(y({},hi),{},{"transform-origin":"".concat(Xi.x+di.x/16,"em ").concat(Xi.y+di.y/16,"em")}))}return[{tag:"svg",attributes:Xt,children:ft}]}($a)}function Bn(Re){var ft=Re.content,_t=Re.width,Lt=Re.height,Xt=Re.transform,hi=Re.title,di=Re.extra,Si=Re.watchable,Ii=void 0!==Si&&Si,Xi=y(y(y({},di.attributes),hi?{title:hi}:{}),{},{class:di.classes.join(" ")});Ii&&(Xi[fe]="");var en=y({},di.styles);gi(Xt)&&(en.transform=function $t(Re){var ft=Re.transform,_t=Re.width,Xt=Re.height,hi=void 0===Xt?16:Xt,di=Re.startCentered,Si=void 0!==di&&di,Ii="";return Ii+=Si&&r?"translate(".concat(ft.x/16-(void 0===_t?16:_t)/2,"em, ").concat(ft.y/16-hi/2,"em) "):Si?"translate(calc(-50% + ".concat(ft.x/16,"em), calc(-50% + ").concat(ft.y/16,"em)) "):"translate(".concat(ft.x/16,"em, ").concat(ft.y/16,"em) "),(Ii+="scale(".concat(ft.size/16*(ft.flipX?-1:1),", ").concat(ft.size/16*(ft.flipY?-1:1),") "))+"rotate(".concat(ft.rotate,"deg) ")}({transform:Xt,startCentered:!0,width:_t,height:Lt}),en["-webkit-transform"]=en.transform);var cn=Wt(en);cn.length>0&&(Xi.style=cn);var Un=[];return Un.push({tag:"span",attributes:Xi,children:[ft]}),hi&&Un.push({tag:"span",attributes:{class:"sr-only"},children:[hi]}),Un}var ao=on.styles;function Tr(Re){var ft=Re[0],_t=Re[1],hi=I(Re.slice(4),1)[0];return{found:!0,width:ft,height:_t,icon:Array.isArray(hi)?{tag:"g",attributes:{class:"".concat(Ee.cssPrefix,"-").concat(Ue.GROUP)},children:[{tag:"path",attributes:{class:"".concat(Ee.cssPrefix,"-").concat(Ue.SECONDARY),fill:"currentColor",d:hi[0]}},{tag:"path",attributes:{class:"".concat(Ee.cssPrefix,"-").concat(Ue.PRIMARY),fill:"currentColor",d:hi[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:hi}}}}var qo={found:!1,width:512,height:512};function Ia(Re,ft){var _t=ft;return"fa"===ft&&null!==Ee.styleDefault&&(ft=Gi()),new Promise(function(Lt,Xt){if(Dr("missingIconAbstract"),"fa"===_t){var di=_i(Re)||{};Re=di.iconName||Re,ft=di.prefix||ft}if(Re&&ft&&ao[ft]&&ao[ft][Re])return Lt(Tr(ao[ft][Re]));(function ea(Re,ft){!ce&&!Ee.showMissingIcons&&Re&&console.error('Icon with name "'.concat(Re,'" and prefix "').concat(ft,'" is missing.'))})(Re,ft),Lt(y(y({},qo),{},{icon:Ee.showMissingIcons&&Re&&Dr("missingIconAbstract")||{}}))})}var Oa=function(){},_o=Ee.measurePerformance&&D&&D.mark&&D.measure?D:{mark:Oa,measure:Oa},oo='FA "6.4.2"',vo=function(ft){_o.mark("".concat(oo," ").concat(ft," ends")),_o.measure("".concat(oo," ").concat(ft),"".concat(oo," ").concat(ft," begins"),"".concat(oo," ").concat(ft," ends"))},Kr={begin:function(ft){return _o.mark("".concat(oo," ").concat(ft," begins")),function(){return vo(ft)}},end:vo},ca=function(){};function _a(Re){return"string"==typeof(Re.getAttribute?Re.getAttribute(fe):null)}function _s(Re){return h.createElementNS("http://www.w3.org/2000/svg",Re)}function so(Re){return h.createElement(Re)}function To(Re){var _t=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,Lt=void 0===_t?"svg"===Re.tag?_s:so:_t;if("string"==typeof Re)return h.createTextNode(Re);var Xt=Lt(Re.tag);return Object.keys(Re.attributes||[]).forEach(function(di){Xt.setAttribute(di,Re.attributes[di])}),(Re.children||[]).forEach(function(di){Xt.appendChild(To(di,{ceFn:Lt}))}),Xt}var co={replace:function(ft){var _t=ft[0];if(_t.parentNode)if(ft[1].forEach(function(Xt){_t.parentNode.insertBefore(To(Xt),_t)}),null===_t.getAttribute(fe)&&Ee.keepOriginalSource){var Lt=h.createComment(function Ja(Re){var ft=" ".concat(Re.outerHTML," ");return"".concat(ft,"Font Awesome fontawesome.com ")}(_t));_t.parentNode.replaceChild(Lt,_t)}else _t.remove()},nest:function(ft){var _t=ft[0],Lt=ft[1];if(~ke(_t).indexOf(Ee.replacementClass))return co.replace(ft);var Xt=new RegExp("".concat(Ee.cssPrefix,"-.*"));if(delete Lt[0].attributes.id,Lt[0].attributes.class){var hi=Lt[0].attributes.class.split(" ").reduce(function(Si,Ii){return Ii===Ee.replacementClass||Ii.match(Xt)?Si.toSvg.push(Ii):Si.toNode.push(Ii),Si},{toNode:[],toSvg:[]});Lt[0].attributes.class=hi.toSvg.join(" "),0===hi.toNode.length?_t.removeAttribute("class"):_t.setAttribute("class",hi.toNode.join(" "))}var di=Lt.map(function(Si){return Ht(Si)}).join("\n");_t.setAttribute(fe,""),_t.innerHTML=di}};function Gr(Re){Re()}function zo(Re,ft){var _t="function"==typeof ft?ft:ca;if(0===Re.length)_t();else{var Lt=Gr;Ee.mutateApproach===re&&(Lt=f.requestAnimationFrame||Gr),Lt(function(){var Xt=function Qr(){return!0===Ee.autoReplaceSvg?co.replace:co[Ee.autoReplaceSvg]||co.replace}(),hi=Kr.begin("mutate");Re.map(Xt),hi(),_t()})}}var bo=!1;function Ao(){bo=!0}function Vt(){bo=!1}var Ai=null;function wt(Re){if(C&&Ee.observeMutations){var ft=Re.treeCallback,_t=void 0===ft?ca:ft,Lt=Re.nodeCallback,Xt=void 0===Lt?ca:Lt,hi=Re.pseudoElementsCallback,di=void 0===hi?ca:hi,Si=Re.observeMutationsRoot,Ii=void 0===Si?h:Si;Ai=new C(function(Xi){if(!bo){var en=Gi();ne(Xi).forEach(function(cn){if("childList"===cn.type&&cn.addedNodes.length>0&&!_a(cn.addedNodes[0])&&(Ee.searchPseudoElements&&di(cn.target),_t(cn.target)),"attributes"===cn.type&&cn.target.parentNode&&Ee.searchPseudoElements&&di(cn.target.parentNode),"attributes"===cn.type&&_a(cn.target)&&~te.indexOf(cn.attributeName))if("class"===cn.attributeName&&function Fo(Re){var ft=Re.getAttribute?Re.getAttribute(le):null,_t=Re.getAttribute?Re.getAttribute(pe):null;return ft&&_t}(cn.target)){var Un=Rn(ke(cn.target)),hr=Un.iconName;cn.target.setAttribute(le,Un.prefix||en),hr&&cn.target.setAttribute(pe,hr)}else(function Va(Re){return Re&&Re.classList&&Re.classList.contains&&Re.classList.contains(Ee.replacementClass)})(cn.target)&&Xt(cn.target)})}}),v&&Ai.observe(Ii,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Zr(Re){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},_t=function Zi(Re){var ft=Re.getAttribute("data-prefix"),_t=Re.getAttribute("data-icon"),Lt=void 0!==Re.innerText?Re.innerText.trim():"",Xt=Rn(ke(Re));return Xt.prefix||(Xt.prefix=Gi()),ft&&_t&&(Xt.prefix=ft,Xt.iconName=_t),Xt.iconName&&Xt.prefix||(Xt.prefix&&Lt.length>0&&(Xt.iconName=function zt(Re,ft){return(fn[Re]||{})[ft]}(Xt.prefix,Re.innerText)||Ni(Xt.prefix,bi(Re.innerText))),!Xt.iconName&&Ee.autoFetchSvg&&Re.firstChild&&Re.firstChild.nodeType===Node.TEXT_NODE&&(Xt.iconName=Re.firstChild.data)),Xt}(Re),Lt=_t.iconName,Xt=_t.prefix,hi=_t.rest,di=function nr(Re){var ft=ne(Re.attributes).reduce(function(Xt,hi){return"class"!==Xt.name&&"style"!==Xt.name&&(Xt[hi.name]=hi.value),Xt},{}),_t=Re.getAttribute("title"),Lt=Re.getAttribute("data-fa-title-id");return Ee.autoA11y&&(_t?ft["aria-labelledby"]="".concat(Ee.replacementClass,"-title-").concat(Lt||$()):(ft["aria-hidden"]="true",ft.focusable="false")),ft}(Re),Si=Fa("parseNodeAttributes",{},Re),Ii=ft.styleParser?function Ti(Re){var ft=Re.getAttribute("style"),_t=[];return ft&&(_t=ft.split(";").reduce(function(Lt,Xt){var hi=Xt.split(":"),di=hi[0],Si=hi.slice(1);return di&&Si.length>0&&(Lt[di]=Si.join(":").trim()),Lt},{})),_t}(Re):[];return y({iconName:Lt,title:Re.getAttribute("title"),titleId:Re.getAttribute("data-fa-title-id"),prefix:Xt,transform:gt,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:hi,styles:Ii,attributes:di}},Si)}var sn=on.styles;function Ba(Re){var ft="nest"===Ee.autoReplaceSvg?Zr(Re,{styleParser:!1}):Zr(Re);return~ft.extra.classes.indexOf(Ie)?Dr("generateLayersText",Re,ft):Dr("generateSvgReplacementMutation",Re,ft)}var ht=new Set;function bt(Re){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!v)return Promise.resolve();var _t=h.documentElement.classList,Lt=function(cn){return _t.add("".concat(qe,"-").concat(cn))},Xt=function(cn){return _t.remove("".concat(qe,"-").concat(cn))},hi=Ee.autoFetchSvg?ht:Ct.map(function(en){return"fa-".concat(en)}).concat(Object.keys(sn));hi.includes("fa")||hi.push("fa");var di=[".".concat(Ie,":not([").concat(fe,"])")].concat(hi.map(function(en){return".".concat(en,":not([").concat(fe,"])")})).join(", ");if(0===di.length)return Promise.resolve();var Si=[];try{Si=ne(Re.querySelectorAll(di))}catch{}if(!(Si.length>0))return Promise.resolve();Lt("pending"),Xt("complete");var Ii=Kr.begin("onTree"),Xi=Si.reduce(function(en,cn){try{var Un=Ba(cn);Un&&en.push(Un)}catch(Ln){ce||"MissingIcon"===Ln.name&&console.error(Ln)}return en},[]);return new Promise(function(en,cn){Promise.all(Xi).then(function(Un){zo(Un,function(){Lt("active"),Lt("complete"),Xt("pending"),"function"==typeof ft&&ft(),Ii(),en()})}).catch(function(Un){Ii(),cn(Un)})})}function ze(Re){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Ba(Re).then(function(_t){_t&&zo([_t],ft)})}Ct.map(function(Re){ht.add("fa-".concat(Re))}),Object.keys(It[Ze]).map(ht.add.bind(ht)),Object.keys(It[We]).map(ht.add.bind(ht)),ht=k(ht);var Jt=function(ft){var _t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Lt=_t.transform,Xt=void 0===Lt?gt:Lt,hi=_t.symbol,di=void 0!==hi&&hi,Si=_t.mask,Ii=void 0===Si?null:Si,Xi=_t.maskId,en=void 0===Xi?null:Xi,cn=_t.title,Un=void 0===cn?null:cn,Ln=_t.titleId,hr=void 0===Ln?null:Ln,Hr=_t.classes,da=void 0===Hr?[]:Hr,ia=_t.attributes,Ta=void 0===ia?{}:ia,Or=_t.styles,Lo=void 0===Or?{}:Or;if(ft){var $a=ft.prefix,Fn=ft.iconName,Jo=ft.icon;return jr(y({type:"icon"},ft),function(){return fr("beforeDOMElementCreation",{iconDefinition:ft,params:_t}),Ee.autoA11y&&(Un?Ta["aria-labelledby"]="".concat(Ee.replacementClass,"-title-").concat(hr||$()):(Ta["aria-hidden"]="true",Ta.focusable="false")),dr({icons:{main:Tr(Jo),mask:Ii?Tr(Ii.icon):{found:!1,width:null,height:null,icon:{}}},prefix:$a,iconName:Fn,transform:y(y({},gt),Xt),symbol:di,title:Un,maskId:en,titleId:hr,extra:{attributes:Ta,styles:Lo,classes:da}})})}},zi={mixout:function(){return{icon:(Re=Jt,function(ft){var _t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Lt=(ft||{}).icon?ft:Kn(ft||{}),Xt=_t.mask;return Xt&&(Xt=(Xt||{}).icon?Xt:Kn(Xt||{})),Re(Lt,y(y({},_t),{},{mask:Xt}))})};var Re},hooks:function(){return{mutationObserverCallbacks:function(_t){return _t.treeCallback=bt,_t.nodeCallback=ze,_t}}},provides:function(ft){ft.i2svg=function(_t){var Lt=_t.node,hi=_t.callback;return bt(void 0===Lt?h:Lt,void 0===hi?function(){}:hi)},ft.generateSvgReplacementMutation=function(_t,Lt){var Xt=Lt.iconName,hi=Lt.title,di=Lt.titleId,Si=Lt.prefix,Ii=Lt.transform,Xi=Lt.symbol,en=Lt.mask,cn=Lt.maskId,Un=Lt.extra;return new Promise(function(Ln,hr){Promise.all([Ia(Xt,Si),en.iconName?Ia(en.iconName,en.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(Hr){var da=I(Hr,2);Ln([_t,dr({icons:{main:da[0],mask:da[1]},prefix:Si,iconName:Xt,transform:Ii,symbol:Xi,maskId:cn,title:hi,titleId:di,extra:Un,watchable:!0})])}).catch(hr)})},ft.generateAbstractIcon=function(_t){var Xi,Lt=_t.children,Xt=_t.attributes,hi=_t.main,di=_t.transform,Ii=Wt(_t.styles);return Ii.length>0&&(Xt.style=Ii),gi(di)&&(Xi=Dr("generateAbstractTransformGrouping",{main:hi,transform:di,containerWidth:hi.width,iconWidth:hi.width})),Lt.push(Xi||hi.icon),{children:Lt,attributes:Xt}}}},xn={mixout:function(){return{layer:function(_t){var Lt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Xt=Lt.classes,hi=void 0===Xt?[]:Xt;return jr({type:"layer"},function(){fr("beforeDOMElementCreation",{assembler:_t,params:Lt});var di=[];return _t(function(Si){Array.isArray(Si)?Si.map(function(Ii){di=di.concat(Ii.abstract)}):di=di.concat(Si.abstract)}),[{tag:"span",attributes:{class:["".concat(Ee.cssPrefix,"-layers")].concat(k(hi)).join(" ")},children:di}]})}}}},Mr={mixout:function(){return{counter:function(_t){var Lt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Xt=Lt.title,hi=void 0===Xt?null:Xt,di=Lt.classes,Si=void 0===di?[]:di,Ii=Lt.attributes,Xi=void 0===Ii?{}:Ii,en=Lt.styles,cn=void 0===en?{}:en;return jr({type:"counter",content:_t},function(){return fr("beforeDOMElementCreation",{content:_t,params:Lt}),function wa(Re){var ft=Re.content,_t=Re.title,Lt=Re.extra,Xt=y(y(y({},Lt.attributes),_t?{title:_t}:{}),{},{class:Lt.classes.join(" ")}),hi=Wt(Lt.styles);hi.length>0&&(Xt.style=hi);var di=[];return di.push({tag:"span",attributes:Xt,children:[ft]}),_t&&di.push({tag:"span",attributes:{class:"sr-only"},children:[_t]}),di}({content:_t.toString(),title:hi,extra:{attributes:Xi,styles:cn,classes:["".concat(Ee.cssPrefix,"-layers-counter")].concat(k(Si))}})})}}}},Ma={mixout:function(){return{text:function(_t){var Lt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Xt=Lt.transform,hi=void 0===Xt?gt:Xt,di=Lt.title,Si=void 0===di?null:di,Ii=Lt.classes,Xi=void 0===Ii?[]:Ii,en=Lt.attributes,cn=void 0===en?{}:en,Un=Lt.styles,Ln=void 0===Un?{}:Un;return jr({type:"text",content:_t},function(){return fr("beforeDOMElementCreation",{content:_t,params:Lt}),Bn({content:_t,transform:y(y({},gt),hi),title:Si,extra:{attributes:cn,styles:Ln,classes:["".concat(Ee.cssPrefix,"-layers-text")].concat(k(Xi))}})})}}},provides:function(ft){ft.generateLayersText=function(_t,Lt){var Xt=Lt.title,hi=Lt.transform,di=Lt.extra,Si=null,Ii=null;if(r){var Xi=parseInt(getComputedStyle(_t).fontSize,10),en=_t.getBoundingClientRect();Si=en.width/Xi,Ii=en.height/Xi}return Ee.autoA11y&&!Xt&&(di.attributes["aria-hidden"]="true"),Promise.resolve([_t,Bn({content:_t.innerHTML,width:Si,height:Ii,transform:hi,title:Xt,extra:di,watchable:!0})])}}},yo=new RegExp('"',"ug"),Hn=[1105920,1112319];function lo(Re,ft){var _t="".concat(xe).concat(ft.replace(":","-"));return new Promise(function(Lt,Xt){if(null!==Re.getAttribute(_t))return Lt();var di=ne(Re.children).filter(function(Jo){return Jo.getAttribute(de)===ft})[0],Si=f.getComputedStyle(Re,ft),Ii=Si.getPropertyValue("font-family").match(lt),Xi=Si.getPropertyValue("font-weight"),en=Si.getPropertyValue("content");if(di&&!Ii)return Re.removeChild(di),Lt();if(Ii&&"none"!==en&&""!==en){var cn=Si.getPropertyValue("content"),Un=~["Sharp"].indexOf(Ii[2])?We:Ze,Ln=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(Ii[2])?Ae[Un][Ii[2].toLowerCase()]:Qe[Un][Xi],hr=function Vi(Re){var ft=Re.replace(yo,""),_t=function yi(Re,ft){var Xt,_t=Re.length,Lt=Re.charCodeAt(ft);return Lt>=55296&&Lt<=56319&&_t>ft+1&&(Xt=Re.charCodeAt(ft+1))>=56320&&Xt<=57343?1024*(Lt-55296)+Xt-56320+65536:Lt}(ft,0),Lt=_t>=Hn[0]&&_t<=Hn[1],Xt=2===ft.length&&ft[0]===ft[1];return{value:bi(Xt?ft[0]:ft),isSecondary:Lt||Xt}}(cn),Hr=hr.value,da=hr.isSecondary,ia=Ii[0].startsWith("FontAwesome"),Ta=Ni(Ln,Hr),Or=Ta;if(ia){var Lo=function Ci(Re){var ft=an[Re],_t=Ni("fas",Re);return ft||(_t?{prefix:"fas",iconName:_t}:null)||{prefix:null,iconName:null}}(Hr);Lo.iconName&&Lo.prefix&&(Ta=Lo.iconName,Ln=Lo.prefix)}if(!Ta||da||di&&di.getAttribute(le)===Ln&&di.getAttribute(pe)===Or)Lt();else{Re.setAttribute(_t,Or),di&&Re.removeChild(di);var $a=function ar(){return{iconName:null,title:null,titleId:null,prefix:null,transform:gt,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),Fn=$a.extra;Fn.attributes[de]=ft,Ia(Ta,Ln).then(function(Jo){var vs=dr(y(y({},$a),{},{icons:{main:Jo,mask:Ji()},prefix:Ln,iconName:Or,extra:Fn,watchable:!0})),Sr=h.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===ft?Re.insertBefore(Sr,Re.firstChild):Re.appendChild(Sr),Sr.outerHTML=vs.map(function(zc){return Ht(zc)}).join("\n"),Re.removeAttribute(_t),Lt()}).catch(Xt)}}else Lt()})}function An(Re){return Promise.all([lo(Re,"::before"),lo(Re,"::after")])}function Yi(Re){return!(Re.parentNode===document.head||~ve.indexOf(Re.tagName.toUpperCase())||Re.getAttribute(de)||Re.parentNode&&"svg"===Re.parentNode.tagName)}function Ms(Re){if(v)return new Promise(function(ft,_t){var Lt=ne(Re.querySelectorAll("*")).filter(Yi).map(An),Xt=Kr.begin("searchPseudoElements");Ao(),Promise.all(Lt).then(function(){Xt(),Vt(),ft()}).catch(function(){Xt(),Vt(),_t()})})}var gr=!1,Ua=function(ft){return ft.toLowerCase().split(" ").reduce(function(Lt,Xt){var hi=Xt.toLowerCase().split("-"),di=hi[0],Si=hi.slice(1).join("-");if(di&&"h"===Si)return Lt.flipX=!0,Lt;if(di&&"v"===Si)return Lt.flipY=!0,Lt;if(Si=parseFloat(Si),isNaN(Si))return Lt;switch(di){case"grow":Lt.size=Lt.size+Si;break;case"shrink":Lt.size=Lt.size-Si;break;case"left":Lt.x=Lt.x-Si;break;case"right":Lt.x=Lt.x+Si;break;case"up":Lt.y=Lt.y-Si;break;case"down":Lt.y=Lt.y+Si;break;case"rotate":Lt.rotate=Lt.rotate+Si}return Lt},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},va={x:0,y:0,width:"100%",height:"100%"};function Ss(Re){return Re.attributes&&(Re.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(Re.attributes.fill="black"),Re}!function oa(Re,ft){var _t=ft.mixoutsTo;er=Re,yr={},Object.keys(aa).forEach(function(Lt){-1===ma.indexOf(Lt)&&delete aa[Lt]}),er.forEach(function(Lt){var Xt=Lt.mixout?Lt.mixout():{};if(Object.keys(Xt).forEach(function(di){"function"==typeof Xt[di]&&(_t[di]=Xt[di]),"object"===A(Xt[di])&&Object.keys(Xt[di]).forEach(function(Si){_t[di]||(_t[di]={}),_t[di][Si]=Xt[di][Si]})}),Lt.hooks){var hi=Lt.hooks();Object.keys(hi).forEach(function(di){yr[di]||(yr[di]=[]),yr[di].push(hi[di])})}Lt.provides&&Lt.provides(aa)})}([Ki,zi,xn,Mr,Ma,{hooks:function(){return{mutationObserverCallbacks:function(_t){return _t.pseudoElementsCallback=Ms,_t}}},provides:function(ft){ft.pseudoElements2svg=function(_t){var Lt=_t.node;Ee.searchPseudoElements&&Ms(void 0===Lt?h:Lt)}}},{mixout:function(){return{dom:{unwatch:function(){Ao(),gr=!0}}}},hooks:function(){return{bootstrap:function(){wt(Fa("mutationObserverCallbacks",{}))},noAuto:function(){!function ii(){Ai&&Ai.disconnect()}()},watch:function(_t){var Lt=_t.observeMutationsRoot;gr?Vt():wt(Fa("mutationObserverCallbacks",{observeMutationsRoot:Lt}))}}}},{mixout:function(){return{parse:{transform:function(_t){return Ua(_t)}}}},hooks:function(){return{parseNodeAttributes:function(_t,Lt){var Xt=Lt.getAttribute("data-fa-transform");return Xt&&(_t.transform=Ua(Xt)),_t}}},provides:function(ft){ft.generateAbstractTransformGrouping=function(_t){var Lt=_t.main,Xt=_t.transform,di=_t.iconWidth,Si={transform:"translate(".concat(_t.containerWidth/2," 256)")},Ii="translate(".concat(32*Xt.x,", ").concat(32*Xt.y,") "),Xi="scale(".concat(Xt.size/16*(Xt.flipX?-1:1),", ").concat(Xt.size/16*(Xt.flipY?-1:1),") "),en="rotate(".concat(Xt.rotate," 0 0)"),Ln={outer:Si,inner:{transform:"".concat(Ii," ").concat(Xi," ").concat(en)},path:{transform:"translate(".concat(di/2*-1," -256)")}};return{tag:"g",attributes:y({},Ln.outer),children:[{tag:"g",attributes:y({},Ln.inner),children:[{tag:Lt.icon.tag,children:Lt.icon.children,attributes:y(y({},Lt.icon.attributes),Ln.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(_t,Lt){var Xt=Lt.getAttribute("data-fa-mask"),hi=Xt?Rn(Xt.split(" ").map(function(di){return di.trim()})):Ji();return hi.prefix||(hi.prefix=Gi()),_t.mask=hi,_t.maskId=Lt.getAttribute("data-fa-mask-id"),_t}}},provides:function(ft){ft.generateAbstractMask=function(_t){var Re,Lt=_t.children,Xt=_t.attributes,hi=_t.main,di=_t.mask,Si=_t.maskId,en=hi.icon,Un=di.icon,Ln=function ei(Re){var ft=Re.transform,Lt=Re.iconWidth,Xt={transform:"translate(".concat(Re.containerWidth/2," 256)")},hi="translate(".concat(32*ft.x,", ").concat(32*ft.y,") "),di="scale(".concat(ft.size/16*(ft.flipX?-1:1),", ").concat(ft.size/16*(ft.flipY?-1:1),") "),Si="rotate(".concat(ft.rotate," 0 0)");return{outer:Xt,inner:{transform:"".concat(hi," ").concat(di," ").concat(Si)},path:{transform:"translate(".concat(Lt/2*-1," -256)")}}}({transform:_t.transform,containerWidth:di.width,iconWidth:hi.width}),hr={tag:"rect",attributes:y(y({},va),{},{fill:"white"})},Hr=en.children?{children:en.children.map(Ss)}:{},da={tag:"g",attributes:y({},Ln.inner),children:[Ss(y({tag:en.tag,attributes:y(y({},en.attributes),Ln.path)},Hr))]},ia={tag:"g",attributes:y({},Ln.outer),children:[da]},Ta="mask-".concat(Si||$()),Or="clip-".concat(Si||$()),Lo={tag:"mask",attributes:y(y({},va),{},{id:Ta,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[hr,ia]},$a={tag:"defs",children:[{tag:"clipPath",attributes:{id:Or},children:(Re=Un,"g"===Re.tag?Re.children:[Re])},Lo]};return Lt.push($a,{tag:"rect",attributes:y({fill:"currentColor","clip-path":"url(#".concat(Or,")"),mask:"url(#".concat(Ta,")")},va)}),{children:Lt,attributes:Xt}}}},{provides:function(ft){var _t=!1;f.matchMedia&&(_t=f.matchMedia("(prefers-reduced-motion: reduce)").matches),ft.missingIconAbstract=function(){var Lt=[],Xt={fill:"currentColor"},hi={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Lt.push({tag:"path",attributes:y(y({},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 di=y(y({},hi),{},{attributeName:"opacity"}),Si={tag:"circle",attributes:y(y({},Xt),{},{cx:"256",cy:"364",r:"28"}),children:[]};return _t||Si.children.push({tag:"animate",attributes:y(y({},hi),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:y(y({},di),{},{values:"1;0;1;1;0;1;"})}),Lt.push(Si),Lt.push({tag:"path",attributes:y(y({},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:_t?[]:[{tag:"animate",attributes:y(y({},di),{},{values:"1;0;0;0;0;1;"})}]}),_t||Lt.push({tag:"path",attributes:y(y({},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:y(y({},di),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:Lt}}}},{hooks:function(){return{parseNodeAttributes:function(_t,Lt){var Xt=Lt.getAttribute("data-fa-symbol");return _t.symbol=null!==Xt&&(""===Xt||Xt),_t}}}}],{mixoutsTo:sa});var qi=sa.parse,Ir=sa.icon,uo=p(6593);const Xn=["*"],qr=Re=>{const ft={[`fa-${Re.animation}`]:null!=Re.animation&&!Re.animation.startsWith("spin"),"fa-spin":"spin"===Re.animation||"spin-reverse"===Re.animation,"fa-spin-pulse":"spin-pulse"===Re.animation||"spin-pulse-reverse"===Re.animation,"fa-spin-reverse":"spin-reverse"===Re.animation||"spin-pulse-reverse"===Re.animation,"fa-pulse":"spin-pulse"===Re.animation||"spin-pulse-reverse"===Re.animation,"fa-fw":Re.fixedWidth,"fa-border":Re.border,"fa-inverse":Re.inverse,"fa-layers-counter":Re.counter,"fa-flip-horizontal":"horizontal"===Re.flip||"both"===Re.flip,"fa-flip-vertical":"vertical"===Re.flip||"both"===Re.flip,[`fa-${Re.size}`]:null!==Re.size,[`fa-rotate-${Re.rotate}`]:null!==Re.rotate,[`fa-pull-${Re.pull}`]:null!==Re.pull,[`fa-stack-${Re.stackItemSize}`]:null!=Re.stackItemSize};return Object.keys(ft).map(_t=>ft[_t]?_t:null).filter(_t=>_t)};let ta=(()=>{class Re{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null}static#e=this.\u0275fac=function(Lt){return new(Lt||Re)};static#t=this.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"})}return Re})(),gc=(()=>{class Re{constructor(){this.definitions={}}addIcons(..._t){for(const Lt of _t){Lt.prefix in this.definitions||(this.definitions[Lt.prefix]={}),this.definitions[Lt.prefix][Lt.iconName]=Lt;for(const Xt of Lt.icon[2])"string"==typeof Xt&&(this.definitions[Lt.prefix][Xt]=Lt)}}addIconPacks(..._t){for(const Lt of _t){const Xt=Object.keys(Lt).map(hi=>Lt[hi]);this.addIcons(...Xt)}}getIconDefinition(_t,Lt){return _t in this.definitions&&Lt in this.definitions[_t]?this.definitions[_t][Lt]:null}static#e=this.\u0275fac=function(Lt){return new(Lt||Re)};static#t=this.\u0275prov=e.Yz7({token:Re,factory:Re.\u0275fac,providedIn:"root"})}return Re})(),Fc=(()=>{class Re{constructor(){this.stackItemSize="1x"}ngOnChanges(_t){if("size"in _t)throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')}static#e=this.\u0275fac=function(Lt){return new(Lt||Re)};static#t=this.\u0275dir=e.lG2({type:Re,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},standalone:!0,features:[e.TTD]})}return Re})(),vl=(()=>{class Re{constructor(_t,Lt){this.renderer=_t,this.elementRef=Lt}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(_t){"size"in _t&&(null!=_t.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${_t.size.currentValue}`),null!=_t.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${_t.size.previousValue}`))}static#e=this.\u0275fac=function(Lt){return new(Lt||Re)(e.Y36(e.Qsj),e.Y36(e.SBq))};static#t=this.\u0275cmp=e.Xpm({type:Re,selectors:[["fa-stack"]],inputs:{size:"size"},standalone:!0,features:[e.TTD,e.jDz],ngContentSelectors:Xn,decls:1,vars:0,template:function(Lt,Xt){1&Lt&&(e.F$t(),e.Hsn(0))},encapsulation:2})}return Re})(),As=(()=>{class Re{set spin(_t){this.animation=_t?"spin":void 0}set pulse(_t){this.animation=_t?"spin-pulse":void 0}constructor(_t,Lt,Xt,hi,di){this.sanitizer=_t,this.config=Lt,this.iconLibrary=Xt,this.stackItem=hi,this.classes=[],null!=di&&null==hi&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(_t){if(null!=this.icon||null!=this.config.fallbackIcon){if(_t){const Xt=this.findIconDefinition(null!=this.icon?this.icon:this.config.fallbackIcon);if(null!=Xt){const hi=this.buildParams();this.renderIcon(Xt,hi)}}}else(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})()}render(){this.ngOnChanges({})}findIconDefinition(_t){const Lt=((Re,ft)=>(Re=>void 0!==Re.prefix&&void 0!==Re.iconName)(Re)?Re:"string"==typeof Re?{prefix:ft,iconName:Re}:{prefix:Re[0],iconName:Re[1]})(_t,this.config.defaultPrefix);return"icon"in Lt?Lt:this.iconLibrary.getIconDefinition(Lt.prefix,Lt.iconName)??((Re=>{throw new Error(`Could not find icon with iconName=${Re.iconName} and prefix=${Re.prefix} in the icon library.`)})(Lt),null)}buildParams(){const _t={flip:this.flip,animation:this.animation,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},Lt="string"==typeof this.transform?qi.transform(this.transform):this.transform;return{title:this.title,transform:Lt,classes:[...qr(_t),...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(_t,Lt){const Xt=Ir(_t,Lt);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(Xt.html.join("\n"))}static#e=this.\u0275fac=function(Lt){return new(Lt||Re)(e.Y36(uo.H7),e.Y36(ta),e.Y36(gc),e.Y36(Fc,8),e.Y36(vl,8))};static#t=this.\u0275cmp=e.Xpm({type:Re,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(Lt,Xt){2&Lt&&(e.Ikx("innerHTML",Xt.renderedIconHTML,e.oJD),e.uIk("title",Xt.title))},inputs:{icon:"icon",title:"title",animation:"animation",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"},standalone:!0,features:[e.TTD,e.jDz],decls:0,vars:0,template:function(Lt,Xt){},encapsulation:2})}return Re})(),Qt=(()=>{class Re{static#e=this.\u0275fac=function(Lt){return new(Lt||Re)};static#t=this.\u0275mod=e.oAB({type:Re});static#i=this.\u0275inj=e.cJS({})}return Re})()},590:(Fe,q,p)=>{"use strict";p.d(q,{Acd:()=>kh,Aq:()=>Cl,B$L:()=>va,BDt:()=>L4,CgH:()=>ys,CvI:()=>ch,DL8:()=>gv,FJU:()=>R4,FVb:()=>Bc,FlN:()=>l4,FpQ:()=>Yu,HLz:()=>j6,KOR:()=>C3,Krp:()=>e2,Mdf:()=>Ip,N2j:()=>pi,NBC:()=>vy,OS1:()=>b3,Psp:()=>Zm,Pyt:()=>I4,Sbq:()=>Ye,SoD:()=>Tr,Ssp:()=>ow,SuH:()=>hp,TmZ:()=>cg,USL:()=>X4,Vei:()=>_r,Vfw:()=>V8,X5K:()=>N3,XsY:()=>cn,aj4:()=>xd,b7W:()=>v4,byT:()=>Un,co4:()=>ud,d63:()=>Qd,dLy:()=>vf,dT$:()=>Tu,eHv:()=>rw,gNZ:()=>it,hkK:()=>tt,hnx:()=>_w,kXW:()=>df,kZ_:()=>j4,koM:()=>H1,mh3:()=>h2,nNP:()=>q6,q7m:()=>Cs,qO$:()=>ux,r8p:()=>K4,sqG:()=>U8,vqe:()=>nv,wn1:()=>J6,wyP:()=>ql,xf3:()=>Tc});var Ye={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"]},tt={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 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"]},pi={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"]},Tr={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"]},va={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"]},cn={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},Un={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"]},Bc={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 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.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 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"]},Cl={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.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 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.5L373 389.9z"]},kh={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"]},xd={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"]},Tc={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-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 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-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},H1={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"]},ql={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"]},_r={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"]},Qd={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M297.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.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.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.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},e2={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"]},Zm={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M80 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]},Tu={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"]},b3={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"]},C3={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"]},hp={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"]},ys={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.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},N3={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 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},h2={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-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 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]},Yu={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"]},Ip={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 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]},it={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.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.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z"]},V8={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"]},U8={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 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-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},l4={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V224v64V448c0 17.7-14.3 32-32 32H128c-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-32H96V64zm448 0v64h32c17.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 32H544v64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z"]},ch={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-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 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"]},ud=ch,v4={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 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z"]},df={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"]},Cs={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 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},L4={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"]},I4={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 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z"]},R4={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-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"]},j6={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 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 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},q6={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"]},J6={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 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},vf={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.3-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.3 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"]},cg={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"]},j4={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M208 0H332.1c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48zM48 128h80v64H64V448H256V416h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48z"]},K4={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"]},vy={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"]},X4={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 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]},ux={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"]},nv={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"]},gv={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 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"]},rw={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 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},ow={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"]},_w={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.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 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-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"]}},5154:(Fe,q,p)=>{"use strict";p.d(q,{eX:()=>ee,sQ:()=>dt,GW:()=>n,l4:()=>De});var e=p(3019),t=p(5592),y=p(8645),A=p(7538),l=p(6232),w=p(2096),m=p(8504),P=p(4674);class E{constructor(Ft,xt,Ot){this.kind=Ft,this.value=xt,this.error=Ot,this.hasValue="N"===Ft}observe(Ft){return M(this,Ft)}do(Ft,xt,Ot){const{kind:yt,value:at,error:Ee}=this;return"N"===yt?Ft?.(at):"E"===yt?xt?.(Ee):Ot?.()}accept(Ft,xt,Ot){var yt;return(0,P.m)(null===(yt=Ft)||void 0===yt?void 0:yt.next)?this.observe(Ft):this.do(Ft,xt,Ot)}toObservable(){const{kind:Ft,value:xt,error:Ot}=this,yt="N"===Ft?(0,w.of)(xt):"E"===Ft?(0,m._)(()=>Ot):"C"===Ft?l.E:0;if(!yt)throw new TypeError(`Unexpected notification kind ${Ft}`);return yt}static createNext(Ft){return new E("N",Ft)}static createError(Ft){return new E("E",void 0,Ft)}static createComplete(){return E.completeNotification}}function M(je,Ft){var xt,Ot,yt;const{kind:at,value:Ee,error:nt}=je;if("string"!=typeof at)throw new TypeError('Invalid notification, missing "kind"');"N"===at?null===(xt=Ft.next)||void 0===xt||xt.call(Ft,Ee):"E"===at?null===(Ot=Ft.error)||void 0===Ot||Ot.call(Ft,nt):null===(yt=Ft.complete)||void 0===yt||yt.call(Ft)}E.completeNotification=new E("C");var I=p(9360),k=p(8251),B=p(7398),W=p(6306),j=p(2181),K=p(4829);function X(je,Ft,xt,Ot){return(0,I.e)((yt,at)=>{let Ee;Ft&&"function"!=typeof Ft?({duration:xt,element:Ee,connector:Ot}=Ft):Ee=Ft;const nt=new Map,Ge=ne=>{nt.forEach(ne),ne(at)},Xe=ne=>Ge(ke=>ke.error(ne));let gt=0,Le=!1;const be=new k.Q(at,ne=>{try{const ke=je(ne);let Nt=nt.get(ke);if(!Nt){nt.set(ke,Nt=Ot?Ot():new y.x);const At=function $(ne,ke){const Nt=new t.y(At=>{gt++;const Wt=ke.subscribe(At);return()=>{Wt.unsubscribe(),0==--gt&&Le&&be.unsubscribe()}});return Nt.key=ne,Nt}(ke,Nt);if(at.next(At),xt){const Wt=(0,k.x)(Nt,()=>{Nt.complete(),Wt?.unsubscribe()},void 0,void 0,()=>nt.delete(ke));be.add((0,K.Xf)(xt(At)).subscribe(Wt))}}Nt.next(Ee?Ee(ne):ne)}catch(ke){Xe(ke)}},()=>Ge(ne=>ne.complete()),Xe,()=>nt.clear(),()=>(Le=!0,0===gt));yt.subscribe(be)})}var ie=p(1631);function se(je,Ft){return Ft?xt=>xt.pipe(se((Ot,yt)=>(0,K.Xf)(je(Ot,yt)).pipe((0,B.U)((at,Ee)=>Ft(Ot,at,yt,Ee))))):(0,I.e)((xt,Ot)=>{let yt=0,at=null,Ee=!1;xt.subscribe((0,k.x)(Ot,nt=>{at||(at=(0,k.x)(Ot,void 0,()=>{at=null,Ee&&Ot.complete()}),(0,K.Xf)(je(nt,yt++)).subscribe(at))},()=>{Ee=!0,!at&&Ot.complete()}))})}var ae=p(8180),Me=p(9212),J=p(4221);const he={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},S="__@ngrx/effects_create__";function n(je,Ft={}){const xt=Ft.functional?je:je(),Ot={...he,...Ft};return Object.defineProperty(xt,S,{value:Ot}),xt}function C(je){return Object.getPrototypeOf(je)}function O(je){return"function"==typeof je}function v(je){return je.filter(O)}function g(je,Ft,xt){const Ot=C(je),at=Ot&&"Object"!==Ot.constructor.name?Ot.constructor.name:null,Ee=function h(je){return function s(je){return Object.getOwnPropertyNames(je).filter(Ot=>!(!je[Ot]||!je[Ot].hasOwnProperty(S))&&je[Ot][S].hasOwnProperty("dispatch")).map(Ot=>({propertyName:Ot,...je[Ot][S]}))}(je)}(je).map(({propertyName:nt,dispatch:Ge,useEffectsErrorHandler:Xe})=>{const gt="function"==typeof je[nt]?je[nt]():je[nt],Le=Xe?xt(gt,Ft):gt;return!1===Ge?Le.pipe((0,A.l)()):Le.pipe(function z(){return(0,I.e)((je,Ft)=>{je.subscribe((0,k.x)(Ft,xt=>{Ft.next(E.createNext(xt))},()=>{Ft.next(E.createComplete()),Ft.complete()},xt=>{Ft.next(E.createError(xt)),Ft.complete()}))})}()).pipe((0,B.U)($=>({effect:je[nt],notification:$,propertyName:nt,sourceName:at,sourceInstance:je})))});return(0,e.T)(...Ee)}function R(je,Ft,xt=10){return je.pipe((0,W.K)(Ot=>(Ft&&Ft.handleError(Ot),xt<=1?je:R(je,Ft,xt-1))))}let ee=(()=>{class je extends t.y{constructor(xt){super(),xt&&(this.source=xt)}lift(xt){const Ot=new je;return Ot.source=this,Ot.operator=xt,Ot}static#e=this.\u0275fac=function(Ot){return new(Ot||je)(Me.LFG(J.Y$))};static#t=this.\u0275prov=Me.Yz7({token:je,factory:je.\u0275fac,providedIn:"root"})}return je})();function De(...je){return(0,j.h)(Ft=>je.some(xt=>"string"==typeof xt?xt===Ft.type:xt.type===Ft.type))}const ct=new Me.OlP("@ngrx/effects Internal Root Guard"),Ke=new Me.OlP("@ngrx/effects User Provided Effects"),Je=new Me.OlP("@ngrx/effects Internal Root Effects"),ye=new Me.OlP("@ngrx/effects Internal Root Effects Instances"),fe=new Me.OlP("@ngrx/effects Internal Feature Effects"),de=new Me.OlP("@ngrx/effects Internal Feature Effects Instance Groups"),xe=new Me.OlP("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>R}),le="@ngrx/effects/init";(0,J.PH)(le);function Ae(je){return Be(je,"ngrxOnInitEffects")}function Be(je,Ft){return je&&Ft in je&&"function"==typeof je[Ft]}let rt=(()=>{class je extends y.x{constructor(xt,Ot){super(),this.errorHandler=xt,this.effectsErrorHandler=Ot}addEffects(xt){this.next(xt)}toActions(){return this.pipe(X(xt=>function D(je){return!!je.constructor&&"Object"!==je.constructor.name&&"Function"!==je.constructor.name}(xt)?C(xt):xt),(0,ie.z)(xt=>xt.pipe(X($e))),(0,ie.z)(xt=>{const Ot=xt.pipe(se(at=>function Ie(je,Ft){return xt=>{const Ot=g(xt,je,Ft);return function ut(je){return Be(je,"ngrxOnRunEffects")}(xt)?xt.ngrxOnRunEffects(Ot):Ot}}(this.errorHandler,this.effectsErrorHandler)(at)),(0,B.U)(at=>(function qe(je,Ft){if("N"===je.notification.kind){const xt=je.notification.value;!function re(je){return"function"!=typeof je&&je&&je.type&&"string"==typeof je.type}(xt)&&Ft.handleError(new Error(`Effect ${function ve({propertyName:je,sourceInstance:Ft,sourceName:xt}){const Ot="function"==typeof Ft[je];return xt?`"${xt}.${String(je)}${Ot?"()":""}"`:`"${String(je)}()"`}(je)} dispatched an invalid action: ${function ce(je){try{return JSON.stringify(je)}catch{return je}}(xt)}`))}}(at,this.errorHandler),at.notification)),(0,j.h)(at=>"N"===at.kind&&null!=at.value),function ue(){return(0,I.e)((je,Ft)=>{je.subscribe((0,k.x)(Ft,xt=>M(xt,Ft)))})}()),yt=xt.pipe((0,ae.q)(1),(0,j.h)(Ae),(0,B.U)(at=>at.ngrxOnInitEffects()));return(0,e.T)(Ot,yt)}))}static#e=this.\u0275fac=function(Ot){return new(Ot||je)(Me.LFG(Me.qLn),Me.LFG(xe))};static#t=this.\u0275prov=Me.Yz7({token:je,factory:je.\u0275fac,providedIn:"root"})}return je})();function $e(je){return function We(je){return Be(je,"ngrxOnIdentifyEffects")}(je)?je.ngrxOnIdentifyEffects():""}let lt=(()=>{class je{get isStarted(){return!!this.effectsSubscription}constructor(xt,Ot){this.effectSources=xt,this.store=Ot,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static#e=this.\u0275fac=function(Ot){return new(Ot||je)(Me.LFG(rt),Me.LFG(J.yh))};static#t=this.\u0275prov=Me.Yz7({token:je,factory:je.\u0275fac,providedIn:"root"})}return je})(),Qe=(()=>{class je{constructor(xt,Ot,yt,at,Ee,nt,Ge){this.sources=xt,Ot.start();for(const Xe of at)xt.addEffects(Xe);yt.dispatch({type:le})}addEffects(xt){this.sources.addEffects(xt)}static#e=this.\u0275fac=function(Ot){return new(Ot||je)(Me.LFG(rt),Me.LFG(lt),Me.LFG(J.yh),Me.LFG(ye),Me.LFG(J.cr,8),Me.LFG(J.CK,8),Me.LFG(ct,8))};static#t=this.\u0275mod=Me.oAB({type:je});static#i=this.\u0275inj=Me.cJS({})}return je})(),St=(()=>{class je{constructor(xt,Ot,yt,at){const Ee=Ot.flat();for(const nt of Ee)xt.addEffects(nt)}static#e=this.\u0275fac=function(Ot){return new(Ot||je)(Me.LFG(Qe),Me.LFG(de),Me.LFG(J.cr,8),Me.LFG(J.CK,8))};static#t=this.\u0275mod=Me.oAB({type:je});static#i=this.\u0275inj=Me.cJS({})}return je})(),dt=(()=>{class je{static forFeature(...xt){const Ot=xt.flat(),yt=v(Ot);return{ngModule:St,providers:[yt,{provide:fe,multi:!0,useValue:Ot},{provide:Ke,multi:!0,useValue:[]},{provide:de,multi:!0,useFactory:te,deps:[fe,Ke]}]}}static forRoot(...xt){const Ot=xt.flat(),yt=v(Ot);return{ngModule:Qe,providers:[yt,{provide:Je,useValue:[Ot]},{provide:ct,useFactory:Ue},{provide:Ke,multi:!0,useValue:[]},{provide:ye,useFactory:te,deps:[Je,Ke]}]}}static#e=this.\u0275fac=function(Ot){return new(Ot||je)};static#t=this.\u0275mod=Me.oAB({type:je});static#i=this.\u0275inj=Me.cJS({})}return je})();function te(je,Ft){const xt=[];for(const Ot of je)xt.push(...Ot);for(const Ot of Ft)xt.push(...Ot);return xt.map(Ot=>function r(je){return je instanceof Me.OlP||O(je)}(Ot)?(0,Me.f3M)(Ot):Ot)}function Ue(){const je=(0,Me.f3M)(lt,{optional:!0,skipSelf:!0}),Ft=(0,Me.f3M)(Je,{self:!0});if((1!==Ft.length||0!==Ft[0].length)&&je)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},7632:(__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__(9212),_ngrx_store__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(4221),rxjs__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(6232),rxjs__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(5592),rxjs__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(2096),rxjs__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(3019),rxjs__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(2381),rxjs__WEBPACK_IMPORTED_MODULE_19__=__webpack_require__(7328),rxjs_operators__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(3020),rxjs_operators__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(2181),rxjs_operators__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(7398),rxjs_operators__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(6328),rxjs_operators__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(5178),rxjs_operators__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(3620),rxjs_operators__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(6306),rxjs_operators__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(8180),rxjs_operators__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(9773),rxjs_operators__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(4664),rxjs_operators__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(836),rxjs_operators__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(3093),rxjs_operators__WEBPACK_IMPORTED_MODULE_20__=__webpack_require__(2460),rxjs_operators__WEBPACK_IMPORTED_MODULE_21__=__webpack_require__(6699),_angular_core_rxjs_interop__WEBPACK_IMPORTED_MODULE_22__=__webpack_require__(1993);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(q,p){if(this.action=q,this.timestamp=p,this.type=PERFORM_ACTION,typeof q.type>"u")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(q){this.timestamp=q,this.type=RESET}}class Rollback{constructor(q){this.timestamp=q,this.type=ROLLBACK}}class Commit{constructor(q){this.timestamp=q,this.type=COMMIT}}class Sweep{constructor(){this.type=SWEEP}}class ToggleAction{constructor(q){this.id=q,this.type=TOGGLE_ACTION}}class SetActionsActive{constructor(q,p,e=!0){this.start=q,this.end=p,this.active=e,this.type=SET_ACTIONS_ACTIVE}}class JumpToState{constructor(q){this.index=q,this.type=JUMP_TO_STATE}}class JumpToAction{constructor(q){this.actionId=q,this.type=JUMP_TO_ACTION}}class ImportState{constructor(q){this.nextLiftedState=q,this.type=IMPORT_STATE}}class LockChanges{constructor(q){this.status=q,this.type=LOCK_CHANGES}}class PauseRecording{constructor(q){this.status=q,this.type=PAUSE_RECORDING}}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(Fe){const q={maxAge:!1,monitor:noMonitor,actionSanitizer:void 0,stateSanitizer:void 0,name:DEFAULT_NAME,serialize:!1,logOnly:!1,autoPause:!1,trace:!1,traceLimit:75,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0},connectInZone:!1},p="function"==typeof Fe?Fe():Fe,t=p.features||!!p.logOnly&&{pause:!0,export:!0,test:!0}||q.features;!0===t.import&&(t.import="custom");const y=Object.assign({},q,{features:t},p);if(y.maxAge&&y.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${y.maxAge}`);return y}function difference(Fe,q){return Fe.filter(p=>q.indexOf(p)<0)}function unliftState(Fe){const{computedStates:q,currentStateIndex:p}=Fe;if(p>=q.length){const{state:t}=q[q.length-1];return t}const{state:e}=q[p];return e}function unliftAction(Fe){return Fe.actionsById[Fe.nextActionId-1]}function liftAction(Fe){return new PerformAction(Fe,+Date.now())}function sanitizeActions(Fe,q){return Object.keys(q).reduce((p,e)=>{const t=Number(e);return p[t]=sanitizeAction(Fe,q[t],t),p},{})}function sanitizeAction(Fe,q,p){return{...q,action:Fe(q.action,p)}}function sanitizeStates(Fe,q){return q.map((p,e)=>({state:sanitizeState(Fe,p.state,e),error:p.error}))}function sanitizeState(Fe,q,p){return Fe(q,p)}function shouldFilterActions(Fe){return Fe.predicate||Fe.actionsSafelist||Fe.actionsBlocklist}function filterLiftedState(Fe,q,p,e){const t=[],y={},A=[];return Fe.stagedActionIds.forEach((l,w)=>{const m=Fe.actionsById[l];m&&(w&&isActionFiltered(Fe.computedStates[w],m,q,p,e)||(y[l]=m,t.push(l),A.push(Fe.computedStates[w])))}),{...Fe,stagedActionIds:t,actionsById:y,computedStates:A}}function isActionFiltered(Fe,q,p,e,t){const y=p&&!p(Fe,q.action),A=e&&!q.action.type.match(e.map(w=>escapeRegExp(w)).join("|")),l=t&&q.action.type.match(t.map(w=>escapeRegExp(w)).join("|"));return y||A||l}function escapeRegExp(Fe){return Fe.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function injectZoneConfig(Fe){return{ngZone:Fe?(0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.f3M)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.R0b):null,connectInZone:Fe}}let DevtoolsDispatcher=(()=>{class Fe extends _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.UO{static#e=this.\u0275fac=(()=>{let p;return function(t){return(p||(p=_angular_core__WEBPACK_IMPORTED_MODULE_0__.n5z(Fe)))(t||Fe)}})();static#t=this.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:Fe,factory:Fe.\u0275fac})}return Fe})();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(Fe,q,p){this.config=q,this.dispatcher=p,this.zoneConfig=injectZoneConfig(this.config.connectInZone),this.devtoolsExtension=Fe,this.createActionStreams()}notify(Fe,q){if(this.devtoolsExtension)if(Fe.type===PERFORM_ACTION){if(q.isLocked||q.isPaused)return;const p=unliftState(q);if(shouldFilterActions(this.config)&&isActionFiltered(p,Fe,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const e=this.config.stateSanitizer?sanitizeState(this.config.stateSanitizer,p,q.currentStateIndex):p,t=this.config.actionSanitizer?sanitizeAction(this.config.actionSanitizer,Fe,q.nextActionId):Fe;this.sendToReduxDevtools(()=>this.extensionConnection.send(t,e))}else{const p={...q,stagedActionIds:q.stagedActionIds,actionsById:this.config.actionSanitizer?sanitizeActions(this.config.actionSanitizer,q.actionsById):q.actionsById,computedStates:this.config.stateSanitizer?sanitizeStates(this.config.stateSanitizer,q.computedStates):q.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,p,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new rxjs__WEBPACK_IMPORTED_MODULE_3__.y(Fe=>{const q=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=q,q.init(),q.subscribe(p=>Fe.next(p)),q.unsubscribe}):rxjs__WEBPACK_IMPORTED_MODULE_2__.E}createActionStreams(){const Fe=this.createChangesObservable().pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_4__.B)()),q=Fe.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(l=>l.type===ExtensionActionTypes.START)),p=Fe.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(l=>l.type===ExtensionActionTypes.STOP)),e=Fe.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(l=>l.type===ExtensionActionTypes.DISPATCH),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(l=>this.unwrapAction(l.payload)),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.b)(l=>l.type===IMPORT_STATE?this.dispatcher.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(w=>w.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)(()=>l),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_10__.K)(()=>(0,rxjs__WEBPACK_IMPORTED_MODULE_11__.of)(l)),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_12__.q)(1)):(0,rxjs__WEBPACK_IMPORTED_MODULE_11__.of)(l))),y=Fe.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.h)(l=>l.type===ExtensionActionTypes.ACTION),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(l=>this.unwrapAction(l.payload))).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p)),A=e.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p));this.start$=q.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.R)(p)),this.actions$=this.start$.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.w)(()=>y)),this.liftedActions$=this.start$.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.w)(()=>A))}unwrapAction(action){return"string"==typeof action?eval(`(${action})`):action}getExtensionConfig(Fe){const q={name:Fe.name,features:Fe.features,serialize:Fe.serialize,autoPause:Fe.autoPause??!1,trace:Fe.trace??!1,traceLimit:Fe.traceLimit??75};return!1!==Fe.maxAge&&(q.maxAge=Fe.maxAge),q}sendToReduxDevtools(Fe){try{Fe()}catch(q){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",q)}}static#_=this.\u0275fac=function Fe(q){return new(q||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))};static#_2=this.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:DevtoolsExtension,factory:DevtoolsExtension.\u0275fac})}return DevtoolsExtension})();const INIT_ACTION={type:_ngrx_store__WEBPACK_IMPORTED_MODULE_1__.qg},RECOMPUTE="@ngrx/store-devtools/recompute",RECOMPUTE_ACTION={type:RECOMPUTE};function computeNextEntry(Fe,q,p,e,t){if(e)return{state:p,error:"Interrupted by an error up the chain"};let A,y=p;try{y=Fe(p,q)}catch(l){A=l.toString(),t.handleError(l)}return{state:y,error:A}}function recomputeStates(Fe,q,p,e,t,y,A,l,w){if(q>=Fe.length&&Fe.length===y.length)return Fe;const m=Fe.slice(0,q),P=y.length-(w?1:0);for(let d=q;d-1?I:computeNextEntry(p,M,k,z,l);m.push(W)}return w&&m.push(Fe[Fe.length-1]),m}function liftInitialState(Fe,q){return{monitorState:q(void 0,{}),nextActionId:1,actionsById:{0:liftAction(INIT_ACTION)},stagedActionIds:[0],skippedActionIds:[],committedState:Fe,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}function liftReducerWith(Fe,q,p,e,t={}){return y=>(A,l)=>{let{monitorState:w,actionsById:m,nextActionId:P,stagedActionIds:d,skippedActionIds:E,committedState:M,currentStateIndex:I,computedStates:k,isLocked:z,isPaused:B}=A||q;function W(X){let ie=X,se=d.slice(1,ie+1);for(let ue=0;ue-1===se.indexOf(ue)),d=[0,...d.slice(ie+1)],M=k[ie].state,k=k.slice(ie),I=I>ie?I-ie:0}function j(){m={0:liftAction(INIT_ACTION)},P=1,d=[0],E=[],M=k[I].state,I=0,k=[]}A||(m=Object.create(m));let K=0;switch(l.type){case LOCK_CHANGES:z=l.status,K=1/0;break;case PAUSE_RECORDING:B=l.status,B?(d=[...d,P],m[P]=new PerformAction({type:"@ngrx/devtools/pause"},+Date.now()),P++,K=d.length-1,k=k.concat(k[k.length-1]),I===d.length-2&&I++,K=1/0):j();break;case RESET:m={0:liftAction(INIT_ACTION)},P=1,d=[0],E=[],M=Fe,I=0,k=[];break;case COMMIT:j();break;case ROLLBACK:m={0:liftAction(INIT_ACTION)},P=1,d=[0],E=[],I=0,k=[];break;case TOGGLE_ACTION:{const{id:X}=l;E=-1===E.indexOf(X)?[X,...E]:E.filter(se=>se!==X),K=d.indexOf(X);break}case SET_ACTIONS_ACTIVE:{const{start:X,end:ie,active:se}=l,ue=[];for(let ae=X;aet.maxAge&&(k=recomputeStates(k,K,y,M,m,d,E,p,B),W(d.length-t.maxAge),K=1/0);break;case _ngrx_store__WEBPACK_IMPORTED_MODULE_1__.wb:if(k.filter(ie=>ie.error).length>0)K=0,t.maxAge&&d.length>t.maxAge&&(k=recomputeStates(k,K,y,M,m,d,E,p,B),W(d.length-t.maxAge),K=1/0);else{if(!B&&!z){I===d.length-1&&I++;const ie=P++;m[ie]=new PerformAction(l,+Date.now()),d=[...d,ie],K=d.length-1,k=recomputeStates(k,K,y,M,m,d,E,p,B)}k=k.map(ie=>({...ie,state:y(ie.state,RECOMPUTE_ACTION)})),I=d.length-1,t.maxAge&&d.length>t.maxAge&&W(d.length-t.maxAge),K=1/0}break;default:K=1/0}return k=recomputeStates(k,K,y,M,m,d,E,p,B),w=e(w,l),{monitorState:w,actionsById:m,nextActionId:P,stagedActionIds:d,skippedActionIds:E,committedState:M,currentStateIndex:I,computedStates:k,isLocked:z,isPaused:B}}}let StoreDevtools=(()=>{class Fe{constructor(p,e,t,y,A,l,w,m){const P=liftInitialState(w,m.monitor),d=liftReducerWith(w,P,l,m.monitor,m),E=(0,rxjs__WEBPACK_IMPORTED_MODULE_15__.T)((0,rxjs__WEBPACK_IMPORTED_MODULE_15__.T)(e.asObservable().pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.T)(1)),y.actions$).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(liftAction)),p,y.liftedActions$).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.Q)(rxjs__WEBPACK_IMPORTED_MODULE_18__.N)),M=t.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(d)),I=injectZoneConfig(m.connectInZone),k=new rxjs__WEBPACK_IMPORTED_MODULE_19__.t(1);this.liftedStateSubscription=E.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_20__.M)(M),emitInZone(I),(0,rxjs_operators__WEBPACK_IMPORTED_MODULE_21__.R)(({state:W},[j,K])=>{let X=K(W,j);return j.type!==PERFORM_ACTION&&shouldFilterActions(m)&&(X=filterLiftedState(X,m.predicate,m.actionsSafelist,m.actionsBlocklist)),y.notify(j,X),{state:X,action:j}},{state:P,action:null})).subscribe(({state:W,action:j})=>{k.next(W),j.type===PERFORM_ACTION&&A.next(j.action)}),this.extensionStartSubscription=y.start$.pipe(emitInZone(I)).subscribe(()=>{this.refresh()});const z=k.asObservable(),B=z.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.U)(unliftState));Object.defineProperty(B,"state",{value:(0,_angular_core_rxjs_interop__WEBPACK_IMPORTED_MODULE_22__.O4)(B,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=p,this.liftedState=z,this.state=B}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}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))}static#e=this.\u0275fac=function(e){return new(e||Fe)(_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))};static#t=this.\u0275prov=_angular_core__WEBPACK_IMPORTED_MODULE_0__.Yz7({token:Fe,factory:Fe.\u0275fac})}return Fe})();function emitInZone({ngZone:Fe,connectInZone:q}){return p=>q?new rxjs__WEBPACK_IMPORTED_MODULE_3__.y(e=>p.subscribe({next:t=>Fe.run(()=>e.next(t)),error:t=>Fe.run(()=>e.error(t)),complete:()=>Fe.run(()=>e.complete())})):p}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(Fe,q){return!!Fe||q.monitor!==noMonitor}function createReduxDevtoolsExtension(){const Fe="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[Fe]<"u"?window[Fe]:null}function provideStoreDevtools(Fe={}){return(0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.MR2)([DevtoolsExtension,DevtoolsDispatcher,StoreDevtools,{provide:INITIAL_OPTIONS,useValue:Fe},{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}])}function createStateObservable(Fe){return Fe.state}let StoreDevtoolsModule=(()=>{class Fe{static instrument(p={}){return{ngModule:Fe,providers:[provideStoreDevtools(p)]}}static#e=this.\u0275fac=function(e){return new(e||Fe)};static#t=this.\u0275mod=_angular_core__WEBPACK_IMPORTED_MODULE_0__.oAB({type:Fe});static#i=this.\u0275inj=_angular_core__WEBPACK_IMPORTED_MODULE_0__.cJS({})}return Fe})()},4221:(Fe,q,p)=>{"use strict";p.d(q,{UO:()=>he,qg:()=>J,Y6:()=>f,mK:()=>Ct,n$:()=>We,Y$:()=>Be,FR:()=>$e,yh:()=>St,CK:()=>Ar,Aw:()=>Yr,cr:()=>Jr,wb:()=>ut,PH:()=>B,ZF:()=>ei,Lq:()=>Ni,P1:()=>At,on:()=>$r,Ky:()=>W});var e=p(9212),t=p(5619),y=p(5592),A=p(8645),l=p(2381),w=p(3093),m=p(2460),P=p(6699),d=p(7398),M=p(3997),I=p(1993);const k={};function B(zt,pi){if(k[zt]=(k[zt]||0)+1,"function"==typeof pi)return K(zt,(...Ci)=>({...pi(...Ci),type:zt}));switch(pi?pi._as:"empty"){case"empty":return K(zt,()=>({type:zt}));case"props":return K(zt,Ci=>({...Ci,type:zt}));default:throw new Error("Unexpected config.")}}function W(){return{_as:"props",_p:void 0}}function K(zt,pi){return Object.defineProperty(pi,"type",{value:zt,writable:!1})}const J="@ngrx/store/init";let he=(()=>{class zt extends t.X{constructor(){super({type:J})}next(_i){if("function"==typeof _i)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(typeof _i>"u")throw new TypeError("Actions must be objects");if(typeof _i.type>"u")throw new TypeError("Actions must have a type property");super.next(_i)}complete(){}ngOnDestroy(){super.complete()}static#e=this.\u0275fac=function(Ci){return new(Ci||zt)};static#t=this.\u0275prov=e.Yz7({token:zt,factory:zt.\u0275fac})}return zt})();const S=[he],n=new e.OlP("@ngrx/store Internal Root Guard"),s=new e.OlP("@ngrx/store Internal Initial State"),f=new e.OlP("@ngrx/store Initial State"),h=new e.OlP("@ngrx/store Reducer Factory"),C=new e.OlP("@ngrx/store Internal Reducer Factory Provider"),D=new e.OlP("@ngrx/store Initial Reducers"),O=new e.OlP("@ngrx/store Internal Initial Reducers"),v=new e.OlP("@ngrx/store Store Features"),r=new e.OlP("@ngrx/store Internal Store Reducers"),g=new e.OlP("@ngrx/store Internal Feature Reducers"),H=new e.OlP("@ngrx/store Internal Feature Configs"),R=new e.OlP("@ngrx/store Internal Store Features"),ee=new e.OlP("@ngrx/store Internal Feature Reducers Token"),De=new e.OlP("@ngrx/store Feature Reducers"),ct=new e.OlP("@ngrx/store User Provided Meta Reducers"),Ke=new e.OlP("@ngrx/store Meta Reducers"),Je=new e.OlP("@ngrx/store Internal Resolved Meta Reducers"),ye=new e.OlP("@ngrx/store User Runtime Checks Config"),fe=new e.OlP("@ngrx/store Internal User Runtime Checks Config"),de=new e.OlP("@ngrx/store Internal Runtime Checks"),xe=new e.OlP("@ngrx/store Check if Action types are unique");function qe(zt,pi={}){const _i=Object.keys(zt),Ci={};for(let Ji=0;Ji<_i.length;Ji++){const yn=_i[Ji];"function"==typeof zt[yn]&&(Ci[yn]=zt[yn])}const Gi=Object.keys(Ci);return function(yn,jn){yn=void 0===yn?pi:yn;let Rn=!1;const Er={};for(let er=0;erJi(Gi),_i(pi))}}function ce(zt,pi){return Array.isArray(pi)&&pi.length>0&&(zt=ve.apply(null,[...pi,zt])),(_i,Ci)=>{const Gi=zt(_i);return(Ji,yn)=>Gi(Ji=void 0===Ji?Ci:Ji,yn)}}new e.OlP("@ngrx/store Root Store Provider"),new e.OlP("@ngrx/store Feature State Provider");class We extends y.y{}class Ct extends he{}const ut="@ngrx/store/update-reducers";let It=(()=>{class zt extends t.X{get currentReducers(){return this.reducers}constructor(_i,Ci,Gi,Ji){super(Ji(Gi,Ci)),this.dispatcher=_i,this.initialState=Ci,this.reducers=Gi,this.reducerFactory=Ji}addFeature(_i){this.addFeatures([_i])}addFeatures(_i){const Ci=_i.reduce((Gi,{reducers:Ji,reducerFactory:yn,metaReducers:jn,initialState:Rn,key:Er})=>{const er="function"==typeof Ji?function Ze(zt){const pi=Array.isArray(zt)&&zt.length>0?ve(...zt):_i=>_i;return(_i,Ci)=>(_i=pi(_i),(Gi,Ji)=>_i(Gi=void 0===Gi?Ci:Gi,Ji))}(jn)(Ji,Rn):ce(yn,jn)(Ji,Rn);return Gi[Er]=er,Gi},{});this.addReducers(Ci)}removeFeature(_i){this.removeFeatures([_i])}removeFeatures(_i){this.removeReducers(_i.map(Ci=>Ci.key))}addReducer(_i,Ci){this.addReducers({[_i]:Ci})}addReducers(_i){this.reducers={...this.reducers,..._i},this.updateReducers(Object.keys(_i))}removeReducer(_i){this.removeReducers([_i])}removeReducers(_i){_i.forEach(Ci=>{this.reducers=function re(zt,pi){return Object.keys(zt).filter(_i=>_i!==pi).reduce((_i,Ci)=>Object.assign(_i,{[Ci]:zt[Ci]}),{})}(this.reducers,Ci)}),this.updateReducers(_i)}updateReducers(_i){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:ut,features:_i})}ngOnDestroy(){this.complete()}static#e=this.\u0275fac=function(Ci){return new(Ci||zt)(e.LFG(Ct),e.LFG(f),e.LFG(D),e.LFG(h))};static#t=this.\u0275prov=e.Yz7({token:zt,factory:zt.\u0275fac})}return zt})();const Ae=[It,{provide:We,useExisting:It},{provide:Ct,useExisting:he}];let Be=(()=>{class zt extends A.x{ngOnDestroy(){this.complete()}static#e=this.\u0275fac=(()=>{let _i;return function(Gi){return(_i||(_i=e.n5z(zt)))(Gi||zt)}})();static#t=this.\u0275prov=e.Yz7({token:zt,factory:zt.\u0275fac})}return zt})();const rt=[Be];class $e extends y.y{}let Ie=(()=>{class zt extends t.X{static#e=this.INIT=J;constructor(_i,Ci,Gi,Ji){super(Ji);const Er=_i.pipe((0,w.Q)(l.N)).pipe((0,m.M)(Ci)).pipe((0,P.R)(lt,{state:Ji}));this.stateSubscription=Er.subscribe(({state:er,action:yr})=>{this.next(er),Gi.next(yr)}),this.state=(0,I.O4)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#t=this.\u0275fac=function(Ci){return new(Ci||zt)(e.LFG(he),e.LFG(We),e.LFG(Be),e.LFG(f))};static#i=this.\u0275prov=e.Yz7({token:zt,factory:zt.\u0275fac})}return zt})();function lt(zt={state:void 0},[pi,_i]){const{state:Ci}=zt;return{state:_i(Ci,pi),action:pi}}const Qe=[Ie,{provide:$e,useExisting:Ie}];let St=(()=>{class zt extends y.y{constructor(_i,Ci,Gi){super(),this.actionsObserver=Ci,this.reducerManager=Gi,this.source=_i,this.state=_i.state}select(_i,...Ci){return te.call(null,_i,...Ci)(this)}selectSignal(_i,Ci){return(0,e.Flj)(()=>_i(this.state()),Ci)}lift(_i){const Ci=new zt(this,this.actionsObserver,this.reducerManager);return Ci.operator=_i,Ci}dispatch(_i){this.actionsObserver.next(_i)}next(_i){this.actionsObserver.next(_i)}error(_i){this.actionsObserver.error(_i)}complete(){this.actionsObserver.complete()}addReducer(_i,Ci){this.reducerManager.addReducer(_i,Ci)}removeReducer(_i){this.reducerManager.removeReducer(_i)}static#e=this.\u0275fac=function(Ci){return new(Ci||zt)(e.LFG($e),e.LFG(he),e.LFG(It))};static#t=this.\u0275prov=e.Yz7({token:zt,factory:zt.\u0275fac})}return zt})();const dt=[St];function te(zt,pi,..._i){return function(Gi){let Ji;if("string"==typeof zt){const yn=[pi,..._i].filter(Boolean);Ji=Gi.pipe(function E(...zt){const pi=zt.length;if(0===pi)throw new Error("list of properties cannot be empty.");return(0,d.U)(_i=>{let Ci=_i;for(let Gi=0;Gizt(yn,pi)))}return Ji.pipe((0,M.x)())}}const Ue="https://ngrx.io/guide/store/configuration/runtime-checks";function Bt(zt){return void 0===zt}function Ye(zt){return null===zt}function je(zt){return Array.isArray(zt)}function yt(zt){return"object"==typeof zt&&null!==zt}function nt(zt){return"function"==typeof zt}let gt=!1;function $(zt,pi){return zt===pi}function Nt(zt,pi=$,_i=$){let Ji,Ci=null,Gi=null;return{memoized:function Er(){if(void 0!==Ji)return Ji.result;if(!Ci)return Gi=zt.apply(null,arguments),Ci=arguments,Gi;if(!function ne(zt,pi,_i){for(let Ci=0;Ci"function"==typeof pi)}(Ci[0])&&(Ci=function Fi(zt){const pi=Object.values(zt),_i=Object.keys(zt);return[...pi,(...Gi)=>_i.reduce((Ji,yn,jn)=>({...Ji,[yn]:Gi[jn]}),{})]}(Ci[0]));const Gi=Ci.slice(0,Ci.length-1),Ji=Ci[Ci.length-1],yn=Gi.filter(er=>er.release&&"function"==typeof er.release),jn=zt(function(...er){return Ji.apply(null,er)}),Rn=Nt(function(er,yr){return pi.stateFn.apply(null,[er,Gi,yr,jn])});return Object.assign(Rn.memoized,{release:function Er(){Rn.reset(),jn.reset(),yn.forEach(er=>er.release())},projector:jn.memoized,setResult:Rn.setResult,clearResult:Rn.clearResult})}}(Nt)(...zt)}function Wt(zt,pi,_i,Ci){if(void 0===_i){const Ji=pi.map(yn=>yn(zt));return Ci.memoized.apply(null,Ji)}const Gi=pi.map(Ji=>Ji(zt,_i));return Ci.memoized.apply(null,[...Gi,_i])}function ei(zt){return At(pi=>{const _i=pi[zt];return!function be(){return gt}()&&(0,e.X6Q)()&&!(zt in pi)&&console.warn(`@ngrx/store: The feature name "${zt}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${zt}', ...) or StoreModule.forFeature('${zt}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),_i},pi=>pi)}function Ki(zt){return zt instanceof e.OlP?(0,e.f3M)(zt):zt}function Mi(zt,pi){return pi.map((_i,Ci)=>{if(zt[Ci]instanceof e.OlP){const Gi=(0,e.f3M)(zt[Ci]);return{key:_i.key,reducerFactory:Gi.reducerFactory?Gi.reducerFactory:qe,metaReducers:Gi.metaReducers?Gi.metaReducers:[],initialState:Gi.initialState}}return _i})}function on(zt){return zt.map(pi=>pi instanceof e.OlP?(0,e.f3M)(pi):pi)}function st(zt){return"function"==typeof zt?zt():zt}function si(zt,pi){return zt.concat(pi)}function Ce(){if((0,e.f3M)(St,{optional:!0,skipSelf:!0}))throw new TypeError("The root Store has been provided more than once. Feature modules should provide feature states instead.");return"guarded"}function Ht(zt){Object.freeze(zt);const pi=nt(zt);return Object.getOwnPropertyNames(zt).forEach(_i=>{if(!_i.startsWith("\u0275")&&function Xe(zt,pi){return Object.prototype.hasOwnProperty.call(zt,pi)}(zt,_i)&&(!pi||"caller"!==_i&&"callee"!==_i&&"arguments"!==_i)){const Ci=zt[_i];(yt(Ci)||nt(Ci))&&!Object.isFrozen(Ci)&&Ht(Ci)}}),zt}function kt(zt,pi=[]){return(Bt(zt)||Ye(zt))&&0===pi.length?{path:["root"],value:zt}:Object.keys(zt).reduce((Ci,Gi)=>{if(Ci)return Ci;const Ji=zt[Gi];return function Ge(zt){return nt(zt)&&zt.hasOwnProperty("\u0275cmp")}(Ji)?Ci:!(Bt(Ji)||Ye(Ji)||function Ot(zt){return"number"==typeof zt}(Ji)||function xt(zt){return"boolean"==typeof zt}(Ji)||function Ft(zt){return"string"==typeof zt}(Ji)||je(Ji))&&(function Ee(zt){if(!function at(zt){return yt(zt)&&!je(zt)}(zt))return!1;const pi=Object.getPrototypeOf(zt);return pi===Object.prototype||null===pi}(Ji)?kt(Ji,[...pi,Gi]):{path:[...pi,Gi],value:Ji})},!1)}function Gt(zt,pi){if(!1===zt)return;const _i=zt.path.join("."),Ci=new Error(`Detected unserializable ${pi} at "${_i}". ${Ue}#strict${pi}serializability`);throw Ci.value=zt.value,Ci.unserializablePath=_i,Ci}function bi(zt){return(0,e.X6Q)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...zt}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function yi({strictActionSerializability:zt,strictStateSerializability:pi}){return _i=>zt||pi?function Dt(zt,pi){return function(_i,Ci){pi.action(Ci)&&Gt(kt(Ci),"action");const Gi=zt(_i,Ci);return pi.state()&&Gt(kt(Gi),"state"),Gi}}(_i,{action:Ci=>zt&&!Ui(Ci),state:()=>pi}):_i}function Oi({strictActionImmutability:zt,strictStateImmutability:pi}){return _i=>zt||pi?function Mt(zt,pi){return function(_i,Ci){const Gi=pi.action(Ci)?Ht(Ci):Ci,Ji=zt(_i,Gi);return pi.state()?Ht(Ji):Ji}}(_i,{action:Ci=>zt&&!Ui(Ci),state:()=>pi}):_i}function Ui(zt){return zt.type.startsWith("@ngrx")}function Bi({strictActionWithinNgZone:zt}){return pi=>zt?function oi(zt,pi){return function(_i,Ci){if(pi.action(Ci)&&!e.R0b.isInAngularZone())throw new Error(`Action '${Ci.type}' running outside NgZone. ${Ue}#strictactionwithinngzone`);return zt(_i,Ci)}}(pi,{action:_i=>zt&&!Ui(_i)}):pi}function qt(zt){return[{provide:fe,useValue:zt},{provide:ye,useFactory:Se,deps:[fe]},{provide:de,deps:[ye],useFactory:bi},{provide:Ke,multi:!0,deps:[de],useFactory:Oi},{provide:Ke,multi:!0,deps:[de],useFactory:yi},{provide:Ke,multi:!0,deps:[de],useFactory:Bi}]}function xi(){return[{provide:xe,multi:!0,deps:[de],useFactory:Ve}]}function Se(zt){return zt}function Ve(zt){if(!zt.strictActionTypeUniqueness)return;const pi=Object.entries(k).filter(([,_i])=>_i>1).map(([_i])=>_i);if(pi.length)throw new Error(`Action types are registered more than once, ${pi.map(_i=>`"${_i}"`).join(", ")}. ${Ue}#strictactiontypeuniqueness`)}function tt(zt={},pi={}){return[{provide:n,useFactory:Ce},{provide:s,useValue:pi.initialState},{provide:f,useFactory:st,deps:[s]},{provide:O,useValue:zt},{provide:r,useExisting:zt instanceof e.OlP?zt:O},{provide:D,deps:[O,[new e.tBr(r)]],useFactory:Ki},{provide:ct,useValue:pi.metaReducers?pi.metaReducers:[]},{provide:Je,deps:[Ke,ct],useFactory:si},{provide:C,useValue:pi.reducerFactory?pi.reducerFactory:qe},{provide:h,deps:[C,Je],useFactory:ce},S,Ae,rt,Qe,dt,qt(pi.runtimeChecks),xi()]}function sr(zt,pi,_i={}){return[{provide:H,multi:!0,useValue:zt instanceof Object?{}:_i},{provide:v,multi:!0,useValue:{key:zt instanceof Object?zt.name:zt,reducerFactory:_i instanceof e.OlP||!_i.reducerFactory?qe:_i.reducerFactory,metaReducers:_i instanceof e.OlP||!_i.metaReducers?[]:_i.metaReducers,initialState:_i instanceof e.OlP||!_i.initialState?void 0:_i.initialState}},{provide:R,deps:[H,v],useFactory:Mi},{provide:g,multi:!0,useValue:zt instanceof Object?zt.reducer:pi},{provide:ee,multi:!0,useExisting:pi instanceof e.OlP?pi:g},{provide:De,multi:!0,deps:[g,[new e.tBr(ee)]],useFactory:on},xi()]}let Jr=(()=>{class zt{constructor(_i,Ci,Gi,Ji,yn,jn){}static#e=this.\u0275fac=function(Ci){return new(Ci||zt)(e.LFG(he),e.LFG(We),e.LFG(Be),e.LFG(St),e.LFG(n,8),e.LFG(xe,8))};static#t=this.\u0275mod=e.oAB({type:zt});static#i=this.\u0275inj=e.cJS({})}return zt})(),Ar=(()=>{class zt{constructor(_i,Ci,Gi,Ji,yn){this.features=_i,this.featureReducers=Ci,this.reducerManager=Gi;const jn=_i.map((Rn,Er)=>{const yr=Ci.shift()[Er];return{...Rn,reducers:yr,initialState:st(Rn.initialState)}});Gi.addFeatures(jn)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=this.\u0275fac=function(Ci){return new(Ci||zt)(e.LFG(R),e.LFG(De),e.LFG(It),e.LFG(Jr),e.LFG(xe,8))};static#t=this.\u0275mod=e.oAB({type:zt});static#i=this.\u0275inj=e.cJS({})}return zt})(),Yr=(()=>{class zt{static forRoot(_i,Ci){return{ngModule:Jr,providers:[...tt(_i,Ci)]}}static forFeature(_i,Ci,Gi={}){return{ngModule:Ar,providers:[...sr(_i,Ci,Gi)]}}static#e=this.\u0275fac=function(Ci){return new(Ci||zt)};static#t=this.\u0275mod=e.oAB({type:zt});static#i=this.\u0275inj=e.cJS({})}return zt})();function $r(...zt){return{reducer:zt.pop(),types:zt.map(Ci=>Ci.type)}}function Ni(zt,...pi){const _i=new Map;for(const Ci of pi)for(const Gi of Ci.types){const Ji=_i.get(Gi);_i.set(Gi,Ji?(jn,Rn)=>Ci.reducer(Ji(jn,Rn),Rn):Ci.reducer)}return function(Ci=zt,Gi){const Ji=_i.get(Gi.type);return Ji?Ji(Ci,Gi):Ci}}},25:(Fe,q,p)=>{"use strict";p.d(q,{H5:()=>nd,K$:()=>kp,a4:()=>tf});var e=p(9212),t=p(6814),y=p(7582),A=p(8484),l=p(2438),w=p(3620),m=p(6825);function P(){}function d(u){return null==u?P:function(){return this.querySelector(u)}}function I(){return[]}function k(u){return null==u?I:function(){return this.querySelectorAll(u)}}function W(u){return function(){return this.matches(u)}}function j(u){return function(L){return L.matches(u)}}var K=Array.prototype.find;function ie(){return this.firstElementChild}var ue=Array.prototype.filter;function ae(){return Array.from(this.children)}function S(u){return new Array(u.length)}function s(u,L){this.ownerDocument=u.ownerDocument,this.namespaceURI=u.namespaceURI,this._next=null,this._parent=u,this.__data__=L}function h(u,L,o,x,U,Y){for(var it,Te=0,jt=L.length,Zt=Y.length;TeL?1:u>=L?0:NaN}s.prototype={constructor:s,appendChild:function(u){return this._parent.insertBefore(u,this._next)},insertBefore:function(u,L){return this._parent.insertBefore(u,L)},querySelector:function(u){return this._parent.querySelector(u)},querySelectorAll:function(u){return this._parent.querySelectorAll(u)}};var xe="http://www.w3.org/1999/xhtml";const le={svg:"http://www.w3.org/2000/svg",xhtml:xe,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function pe(u){var L=u+="",o=L.indexOf(":");return o>=0&&"xmlns"!==(L=u.slice(0,o))&&(u=u.slice(o+1)),le.hasOwnProperty(L)?{space:le[L],local:u}:u}function qe(u){return function(){this.removeAttribute(u)}}function re(u){return function(){this.removeAttributeNS(u.space,u.local)}}function ve(u,L){return function(){this.setAttribute(u,L)}}function ce(u,L){return function(){this.setAttributeNS(u.space,u.local,L)}}function Ze(u,L){return function(){var o=L.apply(this,arguments);null==o?this.removeAttribute(u):this.setAttribute(u,o)}}function We(u,L){return function(){var o=L.apply(this,arguments);null==o?this.removeAttributeNS(u.space,u.local):this.setAttributeNS(u.space,u.local,o)}}function ut(u){return u.ownerDocument&&u.ownerDocument.defaultView||u.document&&u||u.defaultView}function It(u){return function(){this.style.removeProperty(u)}}function Ae(u,L,o){return function(){this.style.setProperty(u,L,o)}}function Be(u,L,o){return function(){var x=L.apply(this,arguments);null==x?this.style.removeProperty(u):this.style.setProperty(u,x,o)}}function $e(u,L){return u.style.getPropertyValue(L)||ut(u).getComputedStyle(u,null).getPropertyValue(L)}function Ie(u){return function(){delete this[u]}}function lt(u,L){return function(){this[u]=L}}function Qe(u,L){return function(){var o=L.apply(this,arguments);null==o?delete this[u]:this[u]=o}}function dt(u){return u.trim().split(/^|\s+/)}function te(u){return u.classList||new Ue(u)}function Ue(u){this._node=u,this._names=dt(u.getAttribute("class")||"")}function Bt(u,L){for(var o=te(u),x=-1,U=L.length;++x=0&&(this._names.splice(L,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(u){return this._names.indexOf(u)>=0}};var bi=[null];function yi(u,L){this._groups=u,this._parents=L}function Oi(){return new yi([[document.documentElement]],bi)}yi.prototype=Oi.prototype={constructor:yi,select:function E(u){"function"!=typeof u&&(u=d(u));for(var L=this._groups,o=L.length,x=new Array(o),U=0;U=mn&&(mn=Pn+1);!(Vn=Pi[mn])&&++mn=0;)(Te=x[U])&&(Y&&4^Te.compareDocumentPosition(Y)&&Y.parentNode.insertBefore(Te,Y),Y=Te);return this},sort:function ee(u){function L(vi,Ei){return vi&&Ei?u(vi.__data__,Ei.__data__):!vi-!Ei}u||(u=De);for(var o=this._groups,x=o.length,U=new Array(x),Y=0;Y1?this.each((null==L?It:"function"==typeof L?Be:Ae)(u,L,o??"")):$e(this.node(),u)},property:function St(u,L){return arguments.length>1?this.each((null==L?Ie:"function"==typeof L?Qe:lt)(u,L)):this.node()[u]},classed:function Ot(u,L){var o=dt(u+"");if(arguments.length<2){for(var x=te(this.node()),U=-1,Y=o.length;++U=0&&(o=L.slice(x+1),L=L.slice(0,x)),{type:L,name:o}})}(u+""),Y=x.length;if(!(arguments.length<2)){for(it=L?Ce:si,U=0;U{}};function Se(){for(var x,u=0,L=arguments.length,o={};u=0&&(x=o.slice(U+1),o=o.slice(0,U)),o&&!L.hasOwnProperty(o))throw new Error("unknown type: "+o);return{type:o,name:x}})}(u+"",o),Y=-1,Te=x.length;if(!(arguments.length<2)){if(null!=L&&"function"!=typeof L)throw new Error("invalid callback: "+L);for(;++Y0)for(var U,Y,o=new Array(U),x=0;x>8&15|L>>4&240,L>>4&15|240&L,(15&L)<<4|15&L,1):8===o?pa(L>>24&255,L>>16&255,L>>8&255,(255&L)/255):4===o?pa(L>>12&15|L>>8&240,L>>8&15|L>>4&240,L>>4&15|240&L,((15&L)<<4|15&L)/255):null):(L=yn.exec(u))?new Lr(L[1],L[2],L[3],1):(L=jn.exec(u))?new Lr(255*L[1]/100,255*L[2]/100,255*L[3]/100,1):(L=Rn.exec(u))?pa(L[1],L[2],L[3],L[4]):(L=Er.exec(u))?pa(255*L[1]/100,255*L[2]/100,255*L[3]/100,L[4]):(L=er.exec(u))?Bn(L[1],L[2]/100,L[3]/100,1):(L=yr.exec(u))?Bn(L[1],L[2]/100,L[3]/100,L[4]):aa.hasOwnProperty(u)?Kn(aa[u]):"transparent"===u?new Lr(NaN,NaN,NaN,0):null}function Kn(u){return new Lr(u>>16&255,u>>8&255,255&u,1)}function pa(u,L,o,x){return x<=0&&(u=L=o=NaN),new Lr(u,L,o,x)}function ga(u,L,o,x){return 1===arguments.length?function za(u){return u instanceof Ni||(u=Dr(u)),u?new Lr((u=u.rgb()).r,u.g,u.b,u.opacity):new Lr}(u):new Lr(u,L,o,x??1)}function Lr(u,L,o,x){this.r=+u,this.g=+L,this.b=+o,this.opacity=+x}function sa(){return`#${dr(this.r)}${dr(this.g)}${dr(this.b)}`}function jr(){const u=Ca(this.opacity);return`${1===u?"rgb(":"rgba("}${kr(this.r)}, ${kr(this.g)}, ${kr(this.b)}${1===u?")":`, ${u})`}`}function Ca(u){return isNaN(u)?1:Math.max(0,Math.min(1,u))}function kr(u){return Math.max(0,Math.min(255,Math.round(u)||0))}function dr(u){return((u=kr(u))<16?"0":"")+u.toString(16)}function Bn(u,L,o,x){return x<=0?u=L=o=NaN:o<=0||o>=1?u=L=NaN:L<=0&&(u=NaN),new Tr(u,L,o,x)}function wa(u){if(u instanceof Tr)return new Tr(u.h,u.s,u.l,u.opacity);if(u instanceof Ni||(u=Dr(u)),!u)return new Tr;if(u instanceof Tr)return u;var L=(u=u.rgb()).r/255,o=u.g/255,x=u.b/255,U=Math.min(L,o,x),Y=Math.max(L,o,x),Te=NaN,it=Y-U,jt=(Y+U)/2;return it?(Te=L===Y?(o-x)/it+6*(o0&&jt<1?0:Te,new Tr(Te,it,jt,u.opacity)}function Tr(u,L,o,x){this.h=+u,this.s=+L,this.l=+o,this.opacity=+x}function qo(u){return(u=(u||0)%360)<0?u+360:u}function ea(u){return Math.max(0,Math.min(1,u||0))}function Ia(u,L,o){return 255*(u<60?L+(o-L)*u/60:u<180?o:u<240?L+(o-L)*(240-u)/60:L)}function Oa(u,L,o,x,U){var Y=u*u,Te=Y*u;return((1-3*u+3*Y-Te)*L+(4-6*Y+3*Te)*o+(1+3*u+3*Y-3*Te)*x+Te*U)/6}Yr(Ni,Dr,{copy(u){return Object.assign(new this.constructor,this,u)},displayable(){return this.rgb().displayable()},hex:ma,formatHex:ma,formatHex8:function oa(){return this.rgb().formatHex8()},formatHsl:function Fa(){return wa(this).formatHsl()},formatRgb:fr,toString:fr}),Yr(Lr,ga,$r(Ni,{brighter(u){return u=null==u?pi:Math.pow(pi,u),new Lr(this.r*u,this.g*u,this.b*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new Lr(this.r*u,this.g*u,this.b*u,this.opacity)},rgb(){return this},clamp(){return new Lr(kr(this.r),kr(this.g),kr(this.b),Ca(this.opacity))},displayable(){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:sa,formatHex:sa,formatHex8:function So(){return`#${dr(this.r)}${dr(this.g)}${dr(this.b)}${dr(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:jr,toString:jr})),Yr(Tr,function ao(u,L,o,x){return 1===arguments.length?wa(u):new Tr(u,L,o,x??1)},$r(Ni,{brighter(u){return u=null==u?pi:Math.pow(pi,u),new Tr(this.h,this.s,this.l*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new Tr(this.h,this.s,this.l*u,this.opacity)},rgb(){var u=this.h%360+360*(this.h<0),L=isNaN(u)||isNaN(this.s)?0:this.s,o=this.l,x=o+(o<.5?o:1-o)*L,U=2*o-x;return new Lr(Ia(u>=240?u-240:u+120,U,x),Ia(u,U,x),Ia(u<120?u+240:u-120,U,x),this.opacity)},clamp(){return new Tr(qo(this.h),ea(this.s),ea(this.l),Ca(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const u=Ca(this.opacity);return`${1===u?"hsl(":"hsla("}${qo(this.h)}, ${100*ea(this.s)}%, ${100*ea(this.l)}%${1===u?")":`, ${u})`}`}}));const Eo=u=>()=>u;function Fo(u,L){var o=L-u;return o?function vo(u,L){return function(o){return u+o*L}}(u,o):Eo(isNaN(u)?L:u)}const Va=function u(L){var o=function _a(u){return 1==(u=+u)?Fo:function(L,o){return o-L?function Kr(u,L,o){return u=Math.pow(u,o),L=Math.pow(L,o)-u,o=1/o,function(x){return Math.pow(u+x*L,o)}}(L,o,u):Eo(isNaN(L)?o:L)}}(L);function x(U,Y){var Te=o((U=ga(U)).r,(Y=ga(Y)).r),it=o(U.g,Y.g),jt=o(U.b,Y.b),Zt=Fo(U.opacity,Y.opacity);return function(ci){return U.r=Te(ci),U.g=it(ci),U.b=jt(ci),U.opacity=Zt(ci),U+""}}return x.gamma=u,x}(1);function Qr(u){return function(L){var Te,it,o=L.length,x=new Array(o),U=new Array(o),Y=new Array(o);for(Te=0;Te=1?(o=1,L-1):Math.floor(o*L),U=u[x],Y=u[x+1];return Oa((o-x/L)*L,x>0?u[x-1]:2*U-Y,U,Y,xo&&(Y=L.slice(o,Y),it[Te]?it[Te]+=Y:it[++Te]=Y),(x=x[0])===(U=U[0])?it[Te]?it[Te]+=U:it[++Te]=U:(it[++Te]=null,jt.push({i:Te,x:Gr(x,U)})),o=Ao.lastIndex;return o=0&&u._call.call(void 0,L),u=u._next;--Zr}()}finally{Zr=0,function Ms(){for(var u,o,L=bt,x=1/0;L;)L._call?(x>L._time&&(x=L._time),u=L,L=L._next):(o=L._next,L._next=null,L=u?u._next=o:bt=o);ze=u,xo(x)}(),Jt=0}}function Yi(){var u=xn.now(),L=u-vt;L>ht&&(zi-=L,vt=u)}function xo(u){Zr||(sn&&(sn=clearTimeout(sn)),u-Jt>24?(u<1/0&&(sn=setTimeout(An,u-xn.now()-zi)),Ba&&(Ba=clearInterval(Ba))):(Ba||(vt=xn.now(),Ba=setInterval(Yi,ht)),Zr=1,Mr(An)))}function gr(u,L,o){var x=new Hn;return x.restart(U=>{x.stop(),u(U+L)},L=null==L?0:+L,o),x}Hn.prototype=Vi.prototype={constructor:Hn,restart:function(u,L,o){if("function"!=typeof u)throw new TypeError("callback is not a function");o=(null==o?Ma():+o)+(null==L?0:+L),!this._next&&ze!==this&&(ze?ze._next=this:bt=this,ze=this),this._call=u,this._time=o,xo()},stop:function(){this._call&&(this._call=null,this._time=1/0,xo())}};var Do=ri("start","end","cancel","interrupt"),Ua=[],Sa=0,ho=3;function Xo(u,L,o,x,U,Y){var Te=u.__transition;if(Te){if(o in Te)return}else u.__transition={};!function os(u,L,o){var U,x=u.__transition;function Te(Zt){var ci,vi,Ei,ki;if(1!==o.state)return jt();for(ci in x)if((ki=x[ci]).name===o.name){if(ki.state===ho)return gr(Te);4===ki.state?(ki.state=6,ki.timer.stop(),ki.on.call("interrupt",u,u.__data__,ki.index,ki.group),delete x[ci]):+ciSa)throw new Error("too late; already scheduled");return o}function cr(u,L){var o=Ea(u,L);if(o.state>ho)throw new Error("too late; already running");return o}function Ea(u,L){var o=u.__transition;if(!o||!(o=o[L]))throw new Error("transition not found");return o}var Bo,la=180/Math.PI,Ir={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Ts(u,L,o,x,U,Y){var Te,it,jt;return(Te=Math.sqrt(u*u+L*L))&&(u/=Te,L/=Te),(jt=u*o+L*x)&&(o-=u*jt,x-=L*jt),(it=Math.sqrt(o*o+x*x))&&(o/=it,x/=it,jt/=it),u*x180?ci+=360:ci-Zt>180&&(Zt+=360),Ei.push({i:vi.push(U(vi)+"rotate(",null,x)-2,x:Gr(Zt,ci)})):ci&&vi.push(U(vi)+"rotate("+ci+x)}(Zt.rotate,ci.rotate,vi,Ei),function it(Zt,ci,vi,Ei){Zt!==ci?Ei.push({i:vi.push(U(vi)+"skewX(",null,x)-2,x:Gr(Zt,ci)}):ci&&vi.push(U(vi)+"skewX("+ci+x)}(Zt.skewX,ci.skewX,vi,Ei),function jt(Zt,ci,vi,Ei,ki,rn){if(Zt!==vi||ci!==Ei){var Mn=ki.push(U(ki)+"scale(",null,",",null,")");rn.push({i:Mn-4,x:Gr(Zt,vi)},{i:Mn-2,x:Gr(ci,Ei)})}else(1!==vi||1!==Ei)&&ki.push(U(ki)+"scale("+vi+","+Ei+")")}(Zt.scaleX,Zt.scaleY,ci.scaleX,ci.scaleY,vi,Ei),Zt=ci=null,function(ki){for(var Pi,rn=-1,Mn=Ei.length;++rn=0&&(L=L.slice(0,o)),!L||"start"===L})}(L)?as:cr;return function(){var Te=Y(this,u),it=Te.on;it!==x&&(U=(x=it).copy()).on(L,o),Te.on=U}}(o,u,L))},attr:function Pe(u,L){var o=pe(u),x="transform"===o?Nr:gc;return this.attrTween(u,"function"==typeof L?(o.local?Tt:_e)(o,x,ta(this,"attr."+u,L)):null==L?(o.local?vl:Fc)(o):(o.local?Kt:As)(o,x,L))},attrTween:function _t(u,L){var o="attr."+u;if(arguments.length<2)return(o=this.tween(o))&&o._value;if(null==L)return this.tween(o,null);if("function"!=typeof L)throw new Error;var x=pe(u);return this.tween(o,(x.local?Re:ft)(x,L))},style:function Uo(u,L,o){var x="transform"==(u+="")?nn:gc;return null==L?this.styleTween(u,function vs(u,L){var o,x,U;return function(){var Y=$e(this,u),Te=(this.style.removeProperty(u),$e(this,u));return Y===Te?null:Y===o&&Te===x?U:U=L(o=Y,x=Te)}}(u,x)).on("end.style."+u,Sr(u)):"function"==typeof L?this.styleTween(u,function _c(u,L,o){var x,U,Y;return function(){var Te=$e(this,u),it=o(this),jt=it+"";return null==it&&(this.style.removeProperty(u),jt=it=$e(this,u)),Te===jt?null:Te===x&&jt===U?Y:(U=jt,Y=L(x=Te,it))}}(u,x,ta(this,"style."+u,L))).each(function Ds(u,L){var o,x,U,it,Y="style."+L,Te="end."+Y;return function(){var jt=cr(this,u),Zt=jt.on,ci=null==jt.value[Y]?it||(it=Sr(L)):void 0;(Zt!==o||U!==ci)&&(x=(o=Zt).copy()).on(Te,U=ci),jt.on=x}}(this._id,u)):this.styleTween(u,function zc(u,L,o){var x,Y,U=o+"";return function(){var Te=$e(this,u);return Te===U?null:Te===x?Y:Y=L(x=Te,o)}}(u,x,L),o).on("end.style."+u,null)},styleTween:function Vc(u,L,o){var x="style."+(u+="");if(arguments.length<2)return(x=this.tween(x))&&x._value;if(null==L)return this.tween(x,null);if("function"!=typeof L)throw new Error;return this.tween(x,function bl(u,L,o){var x,U;function Y(){var Te=L.apply(this,arguments);return Te!==U&&(x=(U=Te)&&function E2(u,L,o){return function(x){this.style.setProperty(u,L.call(this,x),o)}}(u,Te,o)),x}return Y._value=L,Y}(u,L,o??""))},text:function Ls(u){return this.tween("text","function"==typeof u?function yl(u){return function(){var L=u(this);this.textContent=L??""}}(ta(this,"text",u)):function $o(u){return function(){this.textContent=u}}(null==u?"":u+""))},textTween:function xl(u){var L="text";if(arguments.length<1)return(L=this.tween(L))&&L._value;if(null==u)return this.tween(L,null);if("function"!=typeof u)throw new Error;return this.tween(L,function m1(u){var L,o;function x(){var U=u.apply(this,arguments);return U!==o&&(L=(o=U)&&function Pa(u){return function(L){this.textContent=u.call(this,L)}}(U)),L}return x._value=u,x}(u))},remove:function Or(){return this.on("end.remove",function Ta(u){return function(){var L=this.parentNode;for(var o in this.__transition)if(+o!==u)return;L&&L.removeChild(this)}}(this._id))},tween:function or(u,L){var o=this._id;if(u+="",arguments.length<2){for(var Te,x=Ea(this.node(),o).tween,U=0,Y=x.length;U2&&x.state<5,x.state=6,x.timer.stop(),x.on.call(U?"interrupt":"cancel",u,u.__data__,x.index,x.group),delete o[Te]):Y=!1;Y&&delete u.__transition}}(this,u)})},Bi.prototype.transition=function pd(u){var L,o;u instanceof Go?(L=u._id,u=u._name):(L=p1(),(o=T2).time=Ma(),u=null==u?null:u+"");for(var x=this._groups,U=x.length,Y=0;YL?1:u>=L?0:NaN}function Us(u,L){return null==u||null==L?NaN:Lu?1:L>=u?0:NaN}function wo(u){let L,o,x;function U(it,jt,Zt=0,ci=it.length){if(Zt>>1;o(it[vi],jt)<0?Zt=vi+1:ci=vi}while(Ztko(u(it),jt),x=(it,jt)=>u(it)-jt):(L=u===ko||u===Us?u:Gs,o=u,x=u),{left:U,center:function Te(it,jt,Zt=0,ci=it.length){const vi=U(it,jt,Zt,ci-1);return vi>Zt&&x(it[vi-1],jt)>-x(it[vi],jt)?vi-1:vi},right:function Y(it,jt,Zt=0,ci=it.length){if(Zt>>1;o(it[vi],jt)<=0?Zt=vi+1:ci=vi}while(Zt=cs?10:Y>=fo?5:Y>=yc?2:1;let it,jt,Zt;return U<0?(Zt=Math.pow(10,-U)/Te,it=Math.round(u*Zt),jt=Math.round(L*Zt),it/ZtL&&--jt,Zt=-Zt):(Zt=Math.pow(10,U)*Te,it=Math.round(u/Zt),jt=Math.round(L/Zt),it*ZtL&&--jt),jt(u(Y=new Date(+Y)),Y),U.ceil=Y=>(u(Y=new Date(Y-1)),L(Y,1),u(Y),Y),U.round=Y=>{const Te=U(Y),it=U.ceil(Y);return Y-Te(L(Y=new Date(+Y),null==Te?1:Math.floor(Te)),Y),U.range=(Y,Te,it)=>{const jt=[];if(Y=U.ceil(Y),it=null==it?1:Math.floor(it),!(Y0))return jt;let Zt;do{jt.push(Zt=new Date(+Y)),L(Y,it),u(Y)}while(ZtAa(Te=>{if(Te>=Te)for(;u(Te),!Y(Te);)Te.setTime(Te-1)},(Te,it)=>{if(Te>=Te)if(it<0)for(;++it<=0;)for(;L(Te,-1),!Y(Te););else for(;--it>=0;)for(;L(Te,1),!Y(Te););}),o&&(U.count=(Y,Te)=>(Zc.setTime(+Y),Wc.setTime(+Te),u(Zc),u(Wc),Math.floor(o(Zc,Wc))),U.every=Y=>(Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?U.filter(x?Te=>x(Te)%Y==0:Te=>U.count(0,Te)%Y==0):U:null)),U}const Al=Aa(()=>{},(u,L)=>{u.setTime(+u+L)},(u,L)=>L-u);Al.every=u=>(u=Math.floor(u),isFinite(u)&&u>0?u>1?Aa(L=>{L.setTime(Math.floor(L/u)*u)},(L,o)=>{L.setTime(+L+o*u)},(L,o)=>(o-L)/u):Al:null);const Yc=Aa(u=>{u.setTime(u-u.getMilliseconds())},(u,L)=>{u.setTime(+u+L*Zs)},(u,L)=>(L-u)/Zs,u=>u.getUTCSeconds()),xc=Aa(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Zs)},(u,L)=>{u.setTime(+u+L*es)},(u,L)=>(L-u)/es,u=>u.getMinutes()),v1=Aa(u=>{u.setUTCSeconds(0,0)},(u,L)=>{u.setTime(+u+L*es)},(u,L)=>(L-u)/es,u=>u.getUTCMinutes()),vd=Aa(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Zs-u.getMinutes()*es)},(u,L)=>{u.setTime(+u+L*ks)},(u,L)=>(L-u)/ks,u=>u.getHours()),Eh=Aa(u=>{u.setUTCMinutes(0,0,0)},(u,L)=>{u.setTime(+u+L*ks)},(u,L)=>(L-u)/ks,u=>u.getUTCHours()),Dl=Aa(u=>u.setHours(0,0,0,0),(u,L)=>u.setDate(u.getDate()+L),(u,L)=>(L-u-(L.getTimezoneOffset()-u.getTimezoneOffset())*es)/ls,u=>u.getDate()-1),y1=(Aa(u=>{u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCDate(u.getUTCDate()+L)},(u,L)=>(L-u)/ls,u=>u.getUTCDate()-1),Aa(u=>{u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCDate(u.getUTCDate()+L)},(u,L)=>(L-u)/ls,u=>Math.floor(u/ls)));function Kc(u){return Aa(L=>{L.setDate(L.getDate()-(L.getDay()+7-u)%7),L.setHours(0,0,0,0)},(L,o)=>{L.setDate(L.getDate()+7*o)},(L,o)=>(o-L-(o.getTimezoneOffset()-L.getTimezoneOffset())*es)/Is)}const kl=Kc(0);function Xs(u){return Aa(L=>{L.setUTCDate(L.getUTCDate()-(L.getUTCDay()+7-u)%7),L.setUTCHours(0,0,0,0)},(L,o)=>{L.setUTCDate(L.getUTCDate()+7*o)},(L,o)=>(o-L)/Is)}Kc(1),Kc(2),Kc(3),Kc(4),Kc(5),Kc(6);const O2=Xs(0),Ol=(Xs(1),Xs(2),Xs(3),Xs(4),Xs(5),Xs(6),Aa(u=>{u.setDate(1),u.setHours(0,0,0,0)},(u,L)=>{u.setMonth(u.getMonth()+L)},(u,L)=>L.getMonth()-u.getMonth()+12*(L.getFullYear()-u.getFullYear()),u=>u.getMonth())),Cc=Aa(u=>{u.setUTCDate(1),u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCMonth(u.getUTCMonth()+L)},(u,L)=>L.getUTCMonth()-u.getUTCMonth()+12*(L.getUTCFullYear()-u.getUTCFullYear()),u=>u.getUTCMonth()),Nl=Aa(u=>{u.setMonth(0,1),u.setHours(0,0,0,0)},(u,L)=>{u.setFullYear(u.getFullYear()+L)},(u,L)=>L.getFullYear()-u.getFullYear(),u=>u.getFullYear());Nl.every=u=>isFinite(u=Math.floor(u))&&u>0?Aa(L=>{L.setFullYear(Math.floor(L.getFullYear()/u)*u),L.setMonth(0,1),L.setHours(0,0,0,0)},(L,o)=>{L.setFullYear(L.getFullYear()+o*u)}):null;const Ws=Aa(u=>{u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},(u,L)=>{u.setUTCFullYear(u.getUTCFullYear()+L)},(u,L)=>L.getUTCFullYear()-u.getUTCFullYear(),u=>u.getUTCFullYear());function N2(u,L,o,x,U,Y){const Te=[[Yc,1,Zs],[Yc,5,5e3],[Yc,15,15e3],[Yc,30,3e4],[Y,1,es],[Y,5,5*es],[Y,15,15*es],[Y,30,30*es],[U,1,ks],[U,3,3*ks],[U,6,6*ks],[U,12,12*ks],[x,1,ls],[x,2,2*ls],[o,1,Is],[L,1,Tl],[L,3,3*Tl],[u,1,Gc]];function jt(Zt,ci,vi){const Ei=Math.abs(ci-Zt)/vi,ki=wo(([,,Pi])=>Pi).right(Te,Ei);if(ki===Te.length)return u.every(_1(Zt/Gc,ci/Gc,vi));if(0===ki)return Al.every(Math.max(_1(Zt,ci,vi),1));const[rn,Mn]=Te[Ei/Te[ki-1][2]isFinite(u=Math.floor(u))&&u>0?Aa(L=>{L.setUTCFullYear(Math.floor(L.getUTCFullYear()/u)*u),L.setUTCMonth(0,1),L.setUTCHours(0,0,0,0)},(L,o)=>{L.setUTCFullYear(L.getUTCFullYear()+o*u)}):null;const[lm,Pf]=N2(Ws,Cc,O2,y1,Eh,v1),[Rf,Nf]=N2(Nl,Ol,kl,Dl,vd,xc);var Cd=new Date,H2=new Date;function Zo(u,L,o,x){function U(Y){return u(Y=0===arguments.length?new Date:new Date(+Y)),Y}return U.floor=function(Y){return u(Y=new Date(+Y)),Y},U.ceil=function(Y){return u(Y=new Date(Y-1)),L(Y,1),u(Y),Y},U.round=function(Y){var Te=U(Y),it=U.ceil(Y);return Y-Te0))return jt;do{jt.push(Zt=new Date(+Y)),L(Y,it),u(Y)}while(Zt=Te)for(;u(Te),!Y(Te);)Te.setTime(Te-1)},function(Te,it){if(Te>=Te)if(it<0)for(;++it<=0;)for(;L(Te,-1),!Y(Te););else for(;--it>=0;)for(;L(Te,1),!Y(Te););})},o&&(U.count=function(Y,Te){return Cd.setTime(+Y),H2.setTime(+Te),u(Cd),u(H2),Math.floor(o(Cd,H2))},U.every=function(Y){return Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?U.filter(x?function(Te){return x(Te)%Y==0}:function(Te){return U.count(0,Te)%Y==0}):U:null}),U}const wc=864e5,Os=7*wc;function ds(u){return Zo(function(L){L.setUTCDate(L.getUTCDate()-(L.getUTCDay()+7-u)%7),L.setUTCHours(0,0,0,0)},function(L,o){L.setUTCDate(L.getUTCDate()+7*o)},function(L,o){return(o-L)/Os})}var Md=ds(0),$s=ds(1),zl=(ds(2),ds(3),ds(4));const V2=(ds(5),ds(6),Zo(function(u){u.setUTCHours(0,0,0,0)},function(u,L){u.setUTCDate(u.getUTCDate()+L)},function(u,L){return(L-u)/wc},function(u){return u.getUTCDate()-1}));function Sc(u){return Zo(function(L){L.setDate(L.getDate()-(L.getDay()+7-u)%7),L.setHours(0,0,0,0)},function(L,o){L.setDate(L.getDate()+7*o)},function(L,o){return(o-L-6e4*(o.getTimezoneOffset()-L.getTimezoneOffset()))/Os})}var Bl=Sc(0),Ec=Sc(1),Tc=(Sc(2),Sc(3),Sc(4));const G2=(Sc(5),Sc(6),Zo(u=>u.setHours(0,0,0,0),(u,L)=>u.setDate(u.getDate()+L),(u,L)=>(L-u-6e4*(L.getTimezoneOffset()-u.getTimezoneOffset()))/wc,u=>u.getDate()-1));var A1=Zo(function(u){u.setMonth(0,1),u.setHours(0,0,0,0)},function(u,L){u.setFullYear(u.getFullYear()+L)},function(u,L){return L.getFullYear()-u.getFullYear()},function(u){return u.getFullYear()});A1.every=function(u){return isFinite(u=Math.floor(u))&&u>0?Zo(function(L){L.setFullYear(Math.floor(L.getFullYear()/u)*u),L.setMonth(0,1),L.setHours(0,0,0,0)},function(L,o){L.setFullYear(L.getFullYear()+o*u)}):null};const $c=A1;var Td=Zo(function(u){u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},function(u,L){u.setUTCFullYear(u.getUTCFullYear()+L)},function(u,L){return L.getUTCFullYear()-u.getUTCFullYear()},function(u){return u.getUTCFullYear()});Td.every=function(u){return isFinite(u=Math.floor(u))&&u>0?Zo(function(L){L.setUTCFullYear(Math.floor(L.getUTCFullYear()/u)*u),L.setUTCMonth(0,1),L.setUTCHours(0,0,0,0)},function(L,o){L.setUTCFullYear(L.getUTCFullYear()+o*u)}):null};const Gl=Td;function ec(u){if(0<=u.y&&u.y<100){var L=new Date(-1,u.m,u.d,u.H,u.M,u.S,u.L);return L.setFullYear(u.y),L}return new Date(u.y,u.m,u.d,u.H,u.M,u.S,u.L)}function D1(u){if(0<=u.y&&u.y<100){var L=new Date(Date.UTC(-1,u.m,u.d,u.H,u.M,u.S,u.L));return L.setUTCFullYear(u.y),L}return new Date(Date.UTC(u.y,u.m,u.d,u.H,u.M,u.S,u.L))}function Ac(u,L,o){return{y:u,m:L,d:o,H:0,M:0,S:0,L:0}}var L1={"-":"",_:" ",0:"0"},Ga=/^\s*\d+/,Z2=/^%/,Ad=/[\\^$*+?|[\]().{}]/g;function pr(u,L,o){var x=u<0?"-":"",U=(x?-u:u)+"",Y=U.length;return x+(Y[L.toLowerCase(),o]))}function Dd(u,L,o){var x=Ga.exec(L.slice(o,o+1));return x?(u.w=+x[0],o+x[0].length):-1}function Ld(u,L,o){var x=Ga.exec(L.slice(o,o+1));return x?(u.u=+x[0],o+x[0].length):-1}function W2(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.U=+x[0],o+x[0].length):-1}function Dc(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.V=+x[0],o+x[0].length):-1}function Y2(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.W=+x[0],o+x[0].length):-1}function Ps(u,L,o){var x=Ga.exec(L.slice(o,o+4));return x?(u.y=+x[0],o+x[0].length):-1}function Yl(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.y=+x[0]+(+x[0]>68?1900:2e3),o+x[0].length):-1}function zh(u,L,o){var x=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(L.slice(o,o+6));return x?(u.Z=x[1]?0:-(x[2]+(x[3]||"00")),o+x[0].length):-1}function k1(u,L,o){var x=Ga.exec(L.slice(o,o+1));return x?(u.q=3*x[0]-3,o+x[0].length):-1}function I1(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.m=x[0]-1,o+x[0].length):-1}function us(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.d=+x[0],o+x[0].length):-1}function el(u,L,o){var x=Ga.exec(L.slice(o,o+3));return x?(u.m=0,u.d=+x[0],o+x[0].length):-1}function jl(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.H=+x[0],o+x[0].length):-1}function Vh(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.M=+x[0],o+x[0].length):-1}function Bh(u,L,o){var x=Ga.exec(L.slice(o,o+2));return x?(u.S=+x[0],o+x[0].length):-1}function j2(u,L,o){var x=Ga.exec(L.slice(o,o+3));return x?(u.L=+x[0],o+x[0].length):-1}function tl(u,L,o){var x=Ga.exec(L.slice(o,o+6));return x?(u.L=Math.floor(x[0]/1e3),o+x[0].length):-1}function Uh(u,L,o){var x=Z2.exec(L.slice(o,o+1));return x?o+x[0].length:-1}function K2(u,L,o){var x=Ga.exec(L.slice(o));return x?(u.Q=+x[0],o+x[0].length):-1}function Gh(u,L,o){var x=Ga.exec(L.slice(o));return x?(u.s=+x[0],o+x[0].length):-1}function O1(u,L){return pr(u.getDate(),L,2)}function Zh(u,L){return pr(u.getHours(),L,2)}function P1(u,L){return pr(u.getHours()%12||12,L,2)}function Q2(u,L){return pr(1+G2.count($c(u),u),L,3)}function q2(u,L){return pr(u.getMilliseconds(),L,3)}function Wh(u,L){return q2(u,L)+"000"}function X2(u,L){return pr(u.getMonth()+1,L,2)}function J2(u,L){return pr(u.getMinutes(),L,2)}function $2(u,L){return pr(u.getSeconds(),L,2)}function e0(u){var L=u.getDay();return 0===L?7:L}function Yh(u,L){return pr(Bl.count($c(u)-1,u),L,2)}function jh(u){var L=u.getDay();return L>=4||0===L?Tc(u):Tc.ceil(u)}function t0(u,L){return u=jh(u),pr(Tc.count($c(u),u)+(4===$c(u).getDay()),L,2)}function kd(u){return u.getDay()}function fs(u,L){return pr(Ec.count($c(u)-1,u),L,2)}function Kl(u,L){return pr(u.getFullYear()%100,L,2)}function ic(u,L){return pr((u=jh(u)).getFullYear()%100,L,2)}function R1(u,L){return pr(u.getFullYear()%1e4,L,4)}function Id(u,L){var o=u.getDay();return pr((u=o>=4||0===o?Tc(u):Tc.ceil(u)).getFullYear()%1e4,L,4)}function Ql(u){var L=u.getTimezoneOffset();return(L>0?"-":(L*=-1,"+"))+pr(L/60|0,"0",2)+pr(L%60,"0",2)}function n0(u,L){return pr(u.getUTCDate(),L,2)}function r0(u,L){return pr(u.getUTCHours(),L,2)}function Od(u,L){return pr(u.getUTCHours()%12||12,L,2)}function Kh(u,L){return pr(1+V2.count(Gl(u),u),L,3)}function Ys(u,L){return pr(u.getUTCMilliseconds(),L,3)}function a0(u,L){return Ys(u,L)+"000"}function Wf(u,L){return pr(u.getUTCMonth()+1,L,2)}function Qh(u,L){return pr(u.getUTCMinutes(),L,2)}function o0(u,L){return pr(u.getUTCSeconds(),L,2)}function um(u){var L=u.getUTCDay();return 0===L?7:L}function qh(u,L){return pr(Md.count(Gl(u)-1,u),L,2)}function Za(u){var L=u.getUTCDay();return L>=4||0===L?zl(u):zl.ceil(u)}function s0(u,L){return u=Za(u),pr(zl.count(Gl(u),u)+(4===Gl(u).getUTCDay()),L,2)}function Xh(u){return u.getUTCDay()}function c0(u,L){return pr($s.count(Gl(u)-1,u),L,2)}function l0(u,L){return pr(u.getUTCFullYear()%100,L,2)}function d0(u,L){return pr((u=Za(u)).getUTCFullYear()%100,L,2)}function il(u,L){return pr(u.getUTCFullYear()%1e4,L,4)}function Yo(u,L){var o=u.getUTCDay();return pr((u=o>=4||0===o?zl(u):zl.ceil(u)).getUTCFullYear()%1e4,L,4)}function nc(){return"+0000"}function N1(){return"%"}function Pd(u){return+u}function js(u){return Math.floor(+u/1e3)}function f0(u){return null===u?NaN:+u}!function u0(u){(function Zl(u){var L=u.dateTime,o=u.date,x=u.time,U=u.periods,Y=u.days,Te=u.shortDays,it=u.months,jt=u.shortMonths,Zt=tc(U),ci=Wl(U),vi=tc(Y),Ei=Wl(Y),ki=tc(Te),rn=Wl(Te),Mn=tc(it),Pi=Wl(it),gn=tc(jt),Pn=Wl(jt),mn={a:function xa(_n){return Te[_n.getDay()]},A:function Ko(_n){return Y[_n.getDay()]},b:function Vr(_n){return jt[_n.getMonth()]},B:function qa(_n){return it[_n.getMonth()]},c:null,d:O1,e:O1,f:Wh,g:ic,G:Id,H:Zh,I:P1,j:Q2,L:q2,m:X2,M:J2,p:function fa(_n){return U[+(_n.getHours()>=12)]},q:function Xa(_n){return 1+~~(_n.getMonth()/3)},Q:Pd,s:js,S:$2,u:e0,U:Yh,V:t0,w:kd,W:fs,x:null,X:null,y:Kl,Y:R1,Z:Ql,"%":N1},Yn={a:function ld(_n){return Te[_n.getUTCDay()]},A:function dd(_n){return Y[_n.getUTCDay()]},b:function hd(_n){return jt[_n.getUTCMonth()]},B:function u1(_n){return it[_n.getUTCMonth()]},c:null,d:n0,e:n0,f:a0,g:d0,G:Yo,H:r0,I:Od,j:Kh,L:Ys,m:Wf,M:Qh,p:function No(_n){return U[+(_n.getUTCHours()>=12)]},q:function mc(_n){return 1+~~(_n.getUTCMonth()/3)},Q:Pd,s:js,S:o0,u:um,U:qh,V:s0,w:Xh,W:c0,x:null,X:null,y:l0,Y:il,Z:nc,"%":N1},Vn={a:function ra(_n,ir,br){var tn=ki.exec(ir.slice(br));return tn?(_n.w=rn.get(tn[0].toLowerCase()),br+tn[0].length):-1},A:function wn(_n,ir,br){var tn=vi.exec(ir.slice(br));return tn?(_n.w=Ei.get(tn[0].toLowerCase()),br+tn[0].length):-1},b:function Wr(_n,ir,br){var tn=gn.exec(ir.slice(br));return tn?(_n.m=Pn.get(tn[0].toLowerCase()),br+tn[0].length):-1},B:function $n(_n,ir,br){var tn=Mn.exec(ir.slice(br));return tn?(_n.m=Pi.get(tn[0].toLowerCase()),br+tn[0].length):-1},c:function Xr(_n,ir,br){return vr(_n,L,ir,br)},d:us,e:us,f:tl,g:Yl,G:Ps,H:jl,I:jl,j:el,L:j2,m:I1,M:Vh,p:function ns(_n,ir,br){var tn=Zt.exec(ir.slice(br));return tn?(_n.p=ci.get(tn[0].toLowerCase()),br+tn[0].length):-1},q:k1,Q:K2,s:Gh,S:Bh,u:Ld,U:W2,V:Dc,w:Dd,W:Y2,x:function ps(_n,ir,br){return vr(_n,o,ir,br)},X:function ya(_n,ir,br){return vr(_n,x,ir,br)},y:Yl,Y:Ps,Z:zh,"%":Uh};function Cn(_n,ir){return function(br){var rs,Gn,ka,tn=[],La=-1,Br=0,Qo=_n.length;for(br instanceof Date||(br=new Date(+br));++La53)return null;"w"in tn||(tn.w=1),"Z"in tn?(Qo=(Br=D1(Ac(tn.y,0,1))).getUTCDay(),Br=Qo>4||0===Qo?$s.ceil(Br):$s(Br),Br=V2.offset(Br,7*(tn.V-1)),tn.y=Br.getUTCFullYear(),tn.m=Br.getUTCMonth(),tn.d=Br.getUTCDate()+(tn.w+6)%7):(Qo=(Br=ec(Ac(tn.y,0,1))).getDay(),Br=Qo>4||0===Qo?Ec.ceil(Br):Ec(Br),Br=G2.offset(Br,7*(tn.V-1)),tn.y=Br.getFullYear(),tn.m=Br.getMonth(),tn.d=Br.getDate()+(tn.w+6)%7)}else("W"in tn||"U"in tn)&&("w"in tn||(tn.w="u"in tn?tn.u%7:"W"in tn?1:0),Qo="Z"in tn?D1(Ac(tn.y,0,1)).getUTCDay():ec(Ac(tn.y,0,1)).getDay(),tn.m=0,tn.d="W"in tn?(tn.w+6)%7+7*tn.W-(Qo+5)%7:tn.w+7*tn.U-(Qo+6)%7);return"Z"in tn?(tn.H+=tn.Z/100|0,tn.M+=tn.Z%100,D1(tn)):ec(tn)}}function vr(_n,ir,br,tn){for(var rs,Gn,La=0,Br=ir.length,Qo=br.length;La=Qo)return-1;if(37===(rs=ir.charCodeAt(La++))){if(rs=ir.charAt(La++),!(Gn=Vn[rs in L1?ir.charAt(La++):rs])||(tn=Gn(_n,br,tn))<0)return-1}else if(rs!=br.charCodeAt(tn++))return-1}return tn}return mn.x=Cn(o,mn),mn.X=Cn(x,mn),mn.c=Cn(L,mn),Yn.x=Cn(o,Yn),Yn.X=Cn(x,Yn),Yn.c=Cn(L,Yn),{format:function(_n){var ir=Cn(_n+="",mn);return ir.toString=function(){return _n},ir},parse:function(_n){var ir=zr(_n+="",!1);return ir.toString=function(){return _n},ir},utcFormat:function(_n){var ir=Cn(_n+="",Yn);return ir.toString=function(){return _n},ir},utcParse:function(_n){var ir=zr(_n+="",!0);return ir.toString=function(){return _n},ir}}})(u)}({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 eu=wo(ko).right,tu=(wo(f0),eu);function iu(u,L){return u=+u,L=+L,function(o){return Math.round(u*(1-o)+L*o)}}function jf(u){return+u}var nu=[0,1];function nl(u){return u}function p0(u,L){return(L-=u=+u)?function(o){return(o-u)/L}:function Nd(u){return function(){return u}}(isNaN(L)?NaN:.5)}function ru(u,L,o){var x=u[0],U=u[1],Y=L[0],Te=L[1];return UL&&(o=u,u=L,L=o),function(x){return Math.max(u,Math.min(L,x))}}(u[0],u[Ei-1])),it=Ei>2?ql:ru,jt=Zt=null,vi}function vi(Ei){return null==Ei||isNaN(Ei=+Ei)?Y:(jt||(jt=it(u.map(x),L,o)))(x(Te(Ei)))}return vi.invert=function(Ei){return Te(U((Zt||(Zt=it(L,u.map(x),Gr)))(Ei)))},vi.domain=function(Ei){return arguments.length?(u=Array.from(Ei,jf),ci()):u.slice()},vi.range=function(Ei){return arguments.length?(L=Array.from(Ei),ci()):L.slice()},vi.rangeRound=function(Ei){return L=Array.from(Ei),o=iu,ci()},vi.clamp=function(Ei){return arguments.length?(Te=!!Ei||nl,ci()):Te!==nl},vi.interpolate=function(Ei){return arguments.length?(o=Ei,ci()):o},vi.unknown=function(Ei){return arguments.length?(Y=Ei,vi):Y},function(Ei,ki){return x=Ei,U=ki,ci()}}()(nl,nl)}function al(u,L){switch(arguments.length){case 0:break;case 1:this.range(u);break;default:this.range(L).domain(u)}return this}var Vd,ts=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function zd(u){if(!(L=ts.exec(u)))throw new Error("invalid format: "+u);var L;return new _0({fill:L[1],align:L[2],sign:L[3],symbol:L[4],zero:L[5],width:L[6],comma:L[7],precision:L[8]&&L[8].slice(1),trim:L[9],type:L[10]})}function _0(u){this.fill=void 0===u.fill?" ":u.fill+"",this.align=void 0===u.align?">":u.align+"",this.sign=void 0===u.sign?"-":u.sign+"",this.symbol=void 0===u.symbol?"":u.symbol+"",this.zero=!!u.zero,this.width=void 0===u.width?void 0:+u.width,this.comma=!!u.comma,this.precision=void 0===u.precision?void 0:+u.precision,this.trim=!!u.trim,this.type=void 0===u.type?"":u.type+""}function sl(u,L){if((o=(u=L?u.toExponential(L-1):u.toExponential()).indexOf("e"))<0)return null;var o,x=u.slice(0,o);return[x.length>1?x[0]+x.slice(2):x,+u.slice(o+1)]}function ac(u){return(u=sl(Math.abs(u)))?u[1]:NaN}function Oo(u,L){var o=sl(u,L);if(!o)return u+"";var x=o[0],U=o[1];return U<0?"0."+new Array(-U).join("0")+x:x.length>U+1?x.slice(0,U+1)+"."+x.slice(U+1):x+new Array(U-x.length+2).join("0")}zd.prototype=_0.prototype,_0.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 B1={"%":(u,L)=>(100*u).toFixed(L),b:u=>Math.round(u).toString(2),c:u=>u+"",d:function rc(u){return Math.abs(u=Math.round(u))>=1e21?u.toLocaleString("en").replace(/,/g,""):u.toString(10)},e:(u,L)=>u.toExponential(L),f:(u,L)=>u.toFixed(L),g:(u,L)=>u.toPrecision(L),o:u=>Math.round(u).toString(8),p:(u,L)=>Oo(100*u,L),r:Oo,s:function cu(u,L){var o=sl(u,L);if(!o)return u+"";var x=o[0],U=o[1],Y=U-(Vd=3*Math.max(-8,Math.min(8,Math.floor(U/3))))+1,Te=x.length;return Y===Te?x:Y>Te?x+new Array(Y-Te+1).join("0"):Y>0?x.slice(0,Y)+"."+x.slice(Y):"0."+new Array(1-Y).join("0")+sl(u,Math.max(0,L+Y-1))[0]},X:u=>Math.round(u).toString(16).toUpperCase(),x:u=>Math.round(u).toString(16)};function Bd(u){return u}var $l,G1,b0,U1=Array.prototype.map,eo=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function Z1(u){var L=u.domain;return u.ticks=function(o){var x=L();return function D2(u,L,o){if(!((o=+o)>0))return[];if((u=+u)==(L=+L))return[u];const x=L=U))return[];const it=Y-U+1,jt=new Array(it);if(x)if(Te<0)for(let Zt=0;Zt0;){if((Zt=_d(Te,it,o))===jt)return x[U]=Te,x[Y]=it,L(x);if(Zt>0)Te=Math.floor(Te/Zt)*Zt,it=Math.ceil(it/Zt)*Zt;else{if(!(Zt<0))break;Te=Math.ceil(Te*Zt)/Zt,it=Math.floor(it*Zt)/Zt}jt=Zt}return u},u}function oc(){var u=Fd();return u.copy=function(){return function rl(u,L){return L.domain(u.domain()).range(u.range()).interpolate(u.interpolate()).clamp(u.clamp()).unknown(u.unknown())}(u,oc())},al.apply(u,arguments),Z1(u)}function x0(u,L,o){u=+u,L=+L,o=(U=arguments.length)<2?(L=u,u=0,1):U<3?1:+o;for(var x=-1,U=0|Math.max(0,Math.ceil((L-u)/o)),Y=new Array(U);++x0&&it>0&&(jt+it+1>x&&(it=Math.max(1,x-jt)),Y.push(o.substring(U-=it,U+it)),!((jt+=it+1)>x));)it=u[Te=(Te+1)%u.length];return Y.reverse().join(L)}}(U1.call(u.grouping,Number),u.thousands+""),o=void 0===u.currency?"":u.currency[0]+"",x=void 0===u.currency?"":u.currency[1]+"",U=void 0===u.decimal?".":u.decimal+"",Y=void 0===u.numerals?Bd:function su(u){return function(L){return L.replace(/[0-9]/g,function(o){return u[+o]})}}(U1.call(u.numerals,String)),Te=void 0===u.percent?"%":u.percent+"",it=void 0===u.minus?"\u2212":u.minus+"",jt=void 0===u.nan?"NaN":u.nan+"";function Zt(vi){var Ei=(vi=zd(vi)).fill,ki=vi.align,rn=vi.sign,Mn=vi.symbol,Pi=vi.zero,gn=vi.width,Pn=vi.comma,mn=vi.precision,Yn=vi.trim,Vn=vi.type;"n"===Vn?(Pn=!0,Vn="g"):B1[Vn]||(void 0===mn&&(mn=12),Yn=!0,Vn="g"),(Pi||"0"===Ei&&"="===ki)&&(Pi=!0,Ei="0",ki="=");var Cn="$"===Mn?o:"#"===Mn&&/[boxX]/.test(Vn)?"0"+Vn.toLowerCase():"",zr="$"===Mn?x:/[%p]/.test(Vn)?Te:"",vr=B1[Vn],ns=/[defgprs%]/.test(Vn);function ra(wn){var Xr,ps,ya,Wr=Cn,$n=zr;if("c"===Vn)$n=vr(wn)+$n,wn="";else{var xa=(wn=+wn)<0||1/wn<0;if(wn=isNaN(wn)?jt:vr(Math.abs(wn),mn),Yn&&(wn=function v0(u){e:for(var U,L=u.length,o=1,x=-1;o0&&(x=0)}return x>0?u.slice(0,x)+u.slice(U+1):u}(wn)),xa&&0==+wn&&"+"!==rn&&(xa=!1),Wr=(xa?"("===rn?rn:it:"-"===rn||"("===rn?"":rn)+Wr,$n=("s"===Vn?eo[8+Vd/3]:"")+$n+(xa&&"("===rn?")":""),ns)for(Xr=-1,ps=wn.length;++Xr(ya=wn.charCodeAt(Xr))||ya>57){$n=(46===ya?U+wn.slice(Xr+1):wn.slice(Xr))+$n,wn=wn.slice(0,Xr);break}}Pn&&!Pi&&(wn=L(wn,1/0));var Ko=Wr.length+wn.length+$n.length,Vr=Ko>1)+Wr+wn+$n+Vr.slice(Ko);break;default:wn=Vr+Wr+wn+$n}return Y(wn)}return mn=void 0===mn?6:/[gprs]/.test(Vn)?Math.max(1,Math.min(21,mn)):Math.max(0,Math.min(20,mn)),ra.toString=function(){return vi+""},ra}return{format:Zt,formatPrefix:function ci(vi,Ei){var ki=Zt(((vi=zd(vi)).type="f",vi)),rn=3*Math.max(-8,Math.min(8,Math.floor(ac(Ei)/3))),Mn=Math.pow(10,-rn),Pi=eo[8+rn/3];return function(gn){return ki(Mn*gn)+Pi}}}}(u),G1=$l.format,b0=$l.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class W1 extends Map{constructor(L,o=M0){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:o}}),null!=L)for(const[x,U]of L)this.set(x,U)}get(L){return super.get(e1(this,L))}has(L){return super.has(e1(this,L))}set(L,o){return super.set(function cl({_intern:u,_key:L},o){const x=L(o);return u.has(x)?u.get(x):(u.set(x,o),o)}(this,L),o)}delete(L){return super.delete(function w0({_intern:u,_key:L},o){const x=L(o);return u.has(x)&&(o=u.get(x),u.delete(x)),o}(this,L))}}function e1({_intern:u,_key:L},o){const x=L(o);return u.has(x)?u.get(x):o}function M0(u){return null!==u&&"object"==typeof u?u.valueOf():u}const Y1=Symbol("implicit");function j1(){var u=new W1,L=[],o=[],x=Y1;function U(Y){let Te=u.get(Y);if(void 0===Te){if(x!==Y1)return x;u.set(Y,Te=L.push(Y)-1)}return o[Te%o.length]}return U.domain=function(Y){if(!arguments.length)return L.slice();L=[],u=new W1;for(const Te of Y)u.has(Te)||u.set(Te,L.push(Te)-1);return U},U.range=function(Y){return arguments.length?(o=Array.from(Y),U):o.slice()},U.unknown=function(Y){return arguments.length?(x=Y,U):x},U.copy=function(){return j1(L,o).unknown(x)},al.apply(U,arguments),U}function sc(){var Y,Te,u=j1().unknown(void 0),L=u.domain,o=u.range,x=0,U=1,it=!1,jt=0,Zt=0,ci=.5;function vi(){var Ei=L().length,ki=U=1)return+o(u[x-1],x-1,u);var x,U=(x-1)*L,Y=Math.floor(U),Te=+o(u[Y],Y,u);return Te+(+o(u[Y+1],Y+1,u)-Te)*(U-Y)}}function S0(){var x,u=[],L=[],o=[];function U(){var Te=0,it=Math.max(1,L.length);for(o=new Array(it-1);++Te0?o[it-1]:u[0],it({model:u});function T0(u,L){if(1&u&&(e.TgZ(0,"span"),e.YNc(1,mu,0,0,"ng-template",5),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngTemplateOutlet",o.template)("ngTemplateOutletContext",e.VKq(2,E0,o.context))}}function Wd(u,L){if(1&u&&e._UZ(0,"span",6),2&u){const o=e.oxw();e.Q6J("innerHTML",o.title,e.oJD)}}function ll(u,L){if(1&u&&(e.TgZ(0,"header",4)(1,"span",5),e._uU(2),e.qZA()()),2&u){const o=e.oxw();e.xp6(2),e.Oqu(o.title)}}function n1(u,L){if(1&u){const o=e.EpF();e.TgZ(0,"li",6)(1,"ngx-charts-legend-entry",7),e.NdJ("select",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.labelClick.emit(U))})("activate",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.activate(U))})("deactivate",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.deactivate(U))}),e.qZA()()}if(2&u){const o=L.$implicit,x=e.oxw();e.xp6(1),e.Q6J("label",o.label)("formattedLabel",o.formattedLabel)("color",o.color)("isActive",x.isActive(o))}}function K1(u,L){if(1&u&&(e.O4$(),e.kcU(),e._UZ(0,"ngx-charts-scale-legend",4)),2&u){const o=e.oxw();e.Q6J("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("valueRange",o.legendOptions.domain)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)}}function A0(u,L){if(1&u){const o=e.EpF();e.O4$(),e.kcU(),e.TgZ(0,"ngx-charts-legend",5),e.NdJ("labelClick",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.legendLabelClick.emit(U))})("labelActivate",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.legendLabelActivate.emit(U))})("labelDeactivate",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.legendLabelDeactivate.emit(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("data",o.legendOptions.domain)("title",o.legendOptions.title)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)("activeEntries",o.activeEntries)}}const Yd=["*"],jd=["ngx-charts-axis-label",""],r1=["ticksel"],cc=["ngx-charts-x-axis-ticks",""];function D0(u,L){1&u&&(e.O4$(),e.GkF(0))}function L0(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"tspan",10),e._uU(1),e.qZA()),2&u){const o=L.$implicit;e.uIk("y",12*L.index),e.xp6(1),e.hij(" ",o," ")}}function k0(u,L){if(1&u&&(e.O4$(),e.ynx(0),e.YNc(1,L0,2,2,"tspan",9),e.BQk()),2&u){const o=L.ngIf;e.xp6(1),e.Q6J("ngForOf",o)}}function Qf(u,L){if(1&u&&(e.O4$(),e.YNc(0,k0,2,1,"ng-container",4)),2&u){const o=e.oxw(2).$implicit,x=e.oxw();e.Q6J("ngIf",x.tickChunks(o))}}function dl(u,L){if(1&u&&(e.O4$(),e._uU(0)),2&u){const o=e.oxw().ngIf,x=e.oxw(2);e.hij(" ",x.tickTrim(o)," ")}}function I0(u,L){if(1&u&&(e.O4$(),e.ynx(0),e.TgZ(1,"title"),e._uU(2),e.qZA(),e.TgZ(3,"text",5),e.YNc(4,D0,1,0,"ng-container",6),e.qZA(),e.YNc(5,Qf,1,1,"ng-template",null,7,e.W1O)(7,dl,1,1,"ng-template",null,8,e.W1O),e.BQk()),2&u){const o=L.ngIf,x=e.MAs(6),U=e.MAs(8),Y=e.oxw(2);e.xp6(2),e.Oqu(o),e.xp6(1),e.uIk("text-anchor",Y.textAnchor)("transform",Y.textTransform),e.xp6(1),e.Q6J("ngIf",Y.isWrapTicksSupported)("ngIfThen",x)("ngIfElse",U)}}function O0(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g",3),e.YNc(1,I0,9,6,"ng-container",4),e.qZA()),2&u){const o=L.$implicit,x=e.oxw();e.uIk("transform",x.tickTransform(o)),e.xp6(1),e.Q6J("ngIf",x.tickFormat(o))}}function N(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e._UZ(1,"line",11),e.qZA()),2&u){const o=e.oxw(2);e.uIk("transform",o.gridLineTransform()),e.xp6(1),e.uIk("y1",-o.gridLineHeight)}}function V(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,N,2,2,"g",4),e.qZA()),2&u){const o=L.$implicit,x=e.oxw();e.uIk("transform",x.tickTransform(o)),e.xp6(1),e.Q6J("ngIf",x.showGridLines)}}const b=["ngx-charts-x-axis",""];function G(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",2),e.NdJ("dimensionsChanged",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.emitTicksHeight(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("trimTicks",o.trimTicks)("rotateTicks",o.rotateTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickStroke",o.tickStroke)("scale",o.xScale)("orient",o.xOrient)("showGridLines",o.showGridLines)("gridLineHeight",o.dims.height)("width",o.dims.width)("tickValues",o.ticks)("wrapTicks",o.wrapTicks)}}function Z(u,L){if(1&u&&(e.O4$(),e._UZ(0,"g",3)),2&u){const o=e.oxw();e.Q6J("label",o.labelText)("offset",o.labelOffset)("orient",o.orientation.Bottom)("height",o.dims.height)("width",o.dims.width)}}const He=["ngx-charts-y-axis-ticks",""];function Pt(u,L){1&u&&(e.O4$(),e.GkF(0))}function ti(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"tspan",12),e._uU(1),e.qZA()),2&u){const o=L.$implicit,x=L.index,U=e.oxw(6);e.uIk("y",x*(8+U.tickSpacing)),e.xp6(1),e.hij(" ",o," ")}}function fi(u,L){if(1&u&&(e.O4$(),e.ynx(0),e.YNc(1,ti,2,2,"tspan",11),e.BQk()),2&u){const o=e.oxw().ngIf;e.xp6(1),e.Q6J("ngForOf",o)}}function wi(u,L){if(1&u&&(e.O4$(),e.ynx(0),e.YNc(1,fi,2,1,"ng-container",10),e.BQk()),2&u){const o=L.ngIf;e.oxw(2);const x=e.MAs(8);e.xp6(1),e.Q6J("ngIf",o.length>1)("ngIfElse",x)}}function dn(u,L){if(1&u&&(e.O4$(),e.YNc(0,wi,2,2,"ng-container",5)),2&u){const o=e.oxw(2).$implicit,x=e.oxw();e.Q6J("ngIf",x.tickChunks(o))}}function Qi(u,L){if(1&u&&(e.O4$(),e._uU(0)),2&u){const o=e.oxw().ngIf,x=e.oxw(2);e.hij(" ",x.tickTrim(o)," ")}}function zn(u,L){if(1&u&&(e.O4$(),e.ynx(0),e.TgZ(1,"title"),e._uU(2),e.qZA(),e.TgZ(3,"text",6),e.YNc(4,Pt,1,0,"ng-container",7),e.qZA(),e.YNc(5,dn,1,1,"ng-template",null,8,e.W1O)(7,Qi,1,1,"ng-template",null,9,e.W1O),e.BQk()),2&u){const o=L.ngIf,x=e.MAs(6),U=e.MAs(8),Y=e.oxw(2);e.xp6(2),e.Oqu(o),e.xp6(1),e.Udp("font-size","12px"),e.uIk("dy",Y.dy)("x",Y.x1)("y",Y.y1)("text-anchor",Y.textAnchor),e.xp6(1),e.Q6J("ngIf",Y.wrapTicks)("ngIfThen",x)("ngIfElse",U)}}function On(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g",4),e.YNc(1,zn,9,10,"ng-container",5),e.qZA()),2&u){const o=L.$implicit,x=e.oxw();e.uIk("transform",x.transform(o)),e.xp6(1),e.Q6J("ngIf",x.tickFormat(o))}}function pn(u,L){if(1&u&&(e.O4$(),e._UZ(0,"path",13)),2&u){const o=e.oxw();e.uIk("d",o.referenceAreaPath)("transform",o.gridLineTransform())}}function kn(u,L){if(1&u&&(e.O4$(),e._UZ(0,"line",15)),2&u){const o=e.oxw(3);e.uIk("x2",o.gridLineWidth)}}function Cr(u,L){if(1&u&&(e.O4$(),e._UZ(0,"line",15)),2&u){const o=e.oxw(3);e.uIk("x2",-o.gridLineWidth)}}function ha(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,kn,1,1,"line",14)(2,Cr,1,1,"line",14),e.qZA()),2&u){const o=e.oxw(2);e.uIk("transform",o.gridLineTransform()),e.xp6(1),e.Q6J("ngIf",o.orient===o.Orientation.Left),e.xp6(1),e.Q6J("ngIf",o.orient===o.Orientation.Right)}}function Ya(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,ha,3,3,"g",5),e.qZA()),2&u){const o=L.$implicit,x=e.oxw();e.uIk("transform",x.transform(o)),e.xp6(1),e.Q6J("ngIf",x.showGridLines)}}function to(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g")(1,"title"),e._uU(2),e.qZA(),e.TgZ(3,"text",17),e._uU(4),e.qZA()()),2&u){const o=e.oxw(2).$implicit,x=e.oxw();e.xp6(2),e.Oqu(x.tickTrim(x.tickFormat(o.value))),e.xp6(1),e.uIk("dy",x.dy)("y",-6)("x",x.gridLineWidth)("text-anchor",x.textAnchor),e.xp6(1),e.hij(" ",o.name," ")}}function ja(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e._UZ(1,"line",16),e.YNc(2,to,5,6,"g",5),e.qZA()),2&u){const o=e.oxw().$implicit,x=e.oxw();e.uIk("transform",x.transform(o.value)),e.xp6(1),e.uIk("x2",x.gridLineWidth)("transform",x.gridLineTransform()),e.xp6(1),e.Q6J("ngIf",x.showRefLabels)}}function jo(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,ja,3,4,"g",5),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngIf",o.showRefLines)}}const Ns=["ngx-charts-y-axis",""];function Po(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",2),e.NdJ("dimensionsChanged",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.emitTicksWidth(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("trimTicks",o.trimTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickValues",o.ticks)("tickStroke",o.tickStroke)("scale",o.yScale)("orient",o.yOrient)("showGridLines",o.showGridLines)("gridLineWidth",o.dims.width)("referenceLines",o.referenceLines)("showRefLines",o.showRefLines)("showRefLabels",o.showRefLabels)("height",o.dims.height)("wrapTicks",o.wrapTicks)}}function lc(u,L){if(1&u&&(e.O4$(),e._UZ(0,"g",3)),2&u){const o=e.oxw();e.Q6J("label",o.labelText)("offset",o.labelOffset)("orient",o.yOrient)("height",o.dims.height)("width",o.dims.width)}}const Ks=["ngx-charts-svg-linear-gradient",""];function ms(u,L){if(1&u&&(e.O4$(),e._UZ(0,"stop")),2&u){const o=L.$implicit;e.Udp("stop-color",o.color)("stop-opacity",o.opacity),e.uIk("offset",o.offset+"%")}}const Tn=["ngx-charts-grid-panel",""],Nn=["ngx-charts-grid-panel-series",""];function _r(u,L){if(1&u&&(e.O4$(),e._UZ(0,"g",1)),2&u){const o=L.$implicit;e.ekj("grid-panel",!0)("odd","odd"===o.class)("even","even"===o.class),e.Q6J("height",o.height)("width",o.width)("x",o.x)("y",o.y)}}const R0=["tooltipTemplate"],Xd=(u,L)=>[u,L],$d=".ngx-charts-outer{animation:chartFadeIn linear .6s}@keyframes chartFadeIn{0%{opacity:0}20%{opacity:0}to{opacity:1}}.ngx-charts{float:left;overflow:visible}.ngx-charts .circle,.ngx-charts .cell,.ngx-charts .bar,.ngx-charts .node,.ngx-charts .link,.ngx-charts .arc{cursor:pointer}.ngx-charts .bar.active,.ngx-charts .bar:hover,.ngx-charts .cell.active,.ngx-charts .cell:hover,.ngx-charts .arc.active,.ngx-charts .arc:hover,.ngx-charts .node.active,.ngx-charts .node:hover,.ngx-charts .link.active,.ngx-charts .link:hover,.ngx-charts .card.active,.ngx-charts .card:hover{opacity:.8;transition:opacity .1s ease-in-out}.ngx-charts .bar:focus,.ngx-charts .cell:focus,.ngx-charts .arc:focus,.ngx-charts .node:focus,.ngx-charts .link:focus,.ngx-charts .card:focus{outline:none}.ngx-charts .bar.hidden,.ngx-charts .cell.hidden,.ngx-charts .arc.hidden,.ngx-charts .node.hidden,.ngx-charts .link.hidden,.ngx-charts .card.hidden{display:none}.ngx-charts g:focus{outline:none}.ngx-charts .line-series.inactive,.ngx-charts .line-series-range.inactive,.ngx-charts .polar-series-path.inactive,.ngx-charts .polar-series-area.inactive,.ngx-charts .area-series.inactive{transition:opacity .1s ease-in-out;opacity:.2}.ngx-charts .line-highlight{display:none}.ngx-charts .line-highlight.active{display:block}.ngx-charts .area{opacity:.6}.ngx-charts .circle:hover{cursor:pointer}.ngx-charts .label{font-size:12px;font-weight:400}.ngx-charts .tooltip-anchor{fill:#000}.ngx-charts .gridline-path{stroke:#ddd;stroke-width:1;fill:none}.ngx-charts .refline-path{stroke:#a8b2c7;stroke-width:1;stroke-dasharray:5;stroke-dashoffset:5}.ngx-charts .refline-label{font-size:9px}.ngx-charts .reference-area{fill-opacity:.05;fill:#000}.ngx-charts .gridline-path-dotted{stroke:#ddd;stroke-width:1;fill:none;stroke-dasharray:1,20;stroke-dashoffset:3}.ngx-charts .grid-panel rect{fill:none}.ngx-charts .grid-panel.odd rect{fill:#0000000d}\n",Cm=["ngx-charts-bar",""];function wm(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"defs"),e._UZ(1,"g",2),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("orientation",o.orientation)("name",o.gradientId)("stops",o.gradientStops)}}const Mm=["ngx-charts-bar-label",""],Am=["ngx-charts-series-vertical",""];function a3(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",2),e.NdJ("select",function(U){e.CHM(o);const Y=e.oxw(2);return e.KtG(Y.onClick(U))})("activate",function(U){e.CHM(o);const Y=e.oxw(2);return e.KtG(Y.activate.emit(U))})("deactivate",function(U){e.CHM(o);const Y=e.oxw(2);return e.KtG(Y.deactivate.emit(U))}),e.qZA()}if(2&u){const o=L.$implicit,x=e.oxw(2);e.Q6J("@animationState","active")("@.disabled",!x.animations)("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",x.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",x.gradient)("ariaLabel",o.ariaLabel)("isActive",x.isActive(o.data))("tooltipDisabled",x.tooltipDisabled)("tooltipPlacement",x.tooltipPlacement)("tooltipType",x.tooltipType)("tooltipTitle",x.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",x.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",x.noBarWhenZero)("animations",x.animations)}}function Cu(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,a3,1,22,"g",1),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function wu(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",2),e.NdJ("select",function(U){e.CHM(o);const Y=e.oxw(2);return e.KtG(Y.onClick(U))})("activate",function(U){e.CHM(o);const Y=e.oxw(2);return e.KtG(Y.activate.emit(U))})("deactivate",function(U){e.CHM(o);const Y=e.oxw(2);return e.KtG(Y.deactivate.emit(U))}),e.qZA()}if(2&u){const o=L.$implicit,x=e.oxw(2);e.Q6J("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",x.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",x.gradient)("ariaLabel",o.ariaLabel)("isActive",x.isActive(o.data))("tooltipDisabled",x.tooltipDisabled)("tooltipPlacement",x.tooltipPlacement)("tooltipType",x.tooltipType)("tooltipTitle",x.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",x.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",x.noBarWhenZero)("animations",x.animations)}}function Dm(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,wu,1,20,"g",1),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function Lm(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",4),e.NdJ("dimensionsChanged",function(U){const Te=e.CHM(o).index,it=e.oxw(2);return e.KtG(it.dataLabelHeightChanged.emit({size:U,index:Te}))}),e.qZA()}if(2&u){const o=L.$implicit,x=e.oxw(2);e.Q6J("barX",o.x)("barY",o.y)("barWidth",o.width)("barHeight",o.height)("value",o.total)("valueFormatting",x.dataLabelFormatting)("orientation",x.barOrientation.Vertical)}}function km(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,Lm,1,7,"g",3),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngForOf",o.barsForDataLabels)("ngForTrackBy",o.trackDataLabelBy)}}function Im(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",5),e.NdJ("dimensionsChanged",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.updateXAxisHeight(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("xScale",o.xScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function B0(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",6),e.NdJ("dimensionsChanged",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.updateYAxisWidth(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("yScale",o.yScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function Mu(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",6),e.NdJ("dimensionsChanged",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.updateXAxisHeight(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("xScale",o.groupScale)("dims",o.dims)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function Om(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",7),e.NdJ("dimensionsChanged",function(U){e.CHM(o);const Y=e.oxw();return e.KtG(Y.updateYAxisWidth(U))}),e.qZA()}if(2&u){const o=e.oxw();e.Q6J("yScale",o.valueScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function o3(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",9),e.NdJ("select",function(U){const Te=e.CHM(o).$implicit,it=e.oxw(2);return e.KtG(it.onClick(U,Te))})("activate",function(U){const Te=e.CHM(o).$implicit,it=e.oxw(2);return e.KtG(it.onActivate(U,Te))})("deactivate",function(U){const Te=e.CHM(o).$implicit,it=e.oxw(2);return e.KtG(it.onDeactivate(U,Te))})("dataLabelHeightChanged",function(U){const Te=e.CHM(o).index,it=e.oxw(2);return e.KtG(it.onDataLabelMaxHeightChanged(U,Te))}),e.qZA()}if(2&u){const o=L.$implicit,x=e.oxw(2);e.Q6J("@animationState","active")("activeEntries",x.activeEntries)("xScale",x.innerScale)("yScale",x.valueScale)("colors",x.colors)("series",o.series)("dims",x.dims)("gradient",x.gradient)("tooltipDisabled",x.tooltipDisabled)("tooltipTemplate",x.tooltipTemplate)("showDataLabel",x.showDataLabel)("dataLabelFormatting",x.dataLabelFormatting)("seriesName",o.name)("roundEdges",x.roundEdges)("animations",x.animations)("noBarWhenZero",x.noBarWhenZero),e.uIk("transform",x.groupTransform(o))}}function Su(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,o3,1,17,"g",8),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function U0(u,L){if(1&u){const o=e.EpF();e.O4$(),e.TgZ(0,"g",9),e.NdJ("select",function(U){const Te=e.CHM(o).$implicit,it=e.oxw(2);return e.KtG(it.onClick(U,Te))})("activate",function(U){const Te=e.CHM(o).$implicit,it=e.oxw(2);return e.KtG(it.onActivate(U,Te))})("deactivate",function(U){const Te=e.CHM(o).$implicit,it=e.oxw(2);return e.KtG(it.onDeactivate(U,Te))})("dataLabelHeightChanged",function(U){const Te=e.CHM(o).index,it=e.oxw(2);return e.KtG(it.onDataLabelMaxHeightChanged(U,Te))}),e.qZA()}if(2&u){const o=L.$implicit,x=e.oxw(2);e.Q6J("activeEntries",x.activeEntries)("xScale",x.innerScale)("yScale",x.valueScale)("colors",x.colors)("series",o.series)("dims",x.dims)("gradient",x.gradient)("tooltipDisabled",x.tooltipDisabled)("tooltipTemplate",x.tooltipTemplate)("showDataLabel",x.showDataLabel)("dataLabelFormatting",x.dataLabelFormatting)("seriesName",o.name)("roundEdges",x.roundEdges)("animations",x.animations)("noBarWhenZero",x.noBarWhenZero),e.uIk("transform",x.groupTransform(o))}}function Pm(u,L){if(1&u&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,U0,1,16,"g",8),e.qZA()),2&u){const o=e.oxw();e.xp6(1),e.Q6J("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Iu(u,L,o){o=o||{};let x,U,Y,Te=null,it=0;function jt(){it=!1===o.leading?0:+new Date,Te=null,Y=u.apply(x,U)}return function(){const Zt=+new Date;!it&&!1===o.leading&&(it=Zt);const ci=L-(Zt-it);return x=this,U=arguments,ci<=0?(clearTimeout(Te),Te=null,it=Zt,Y=u.apply(x,U)):!Te&&!1!==o.trailing&&(Te=setTimeout(jt,ci)),Y}}function _p(u,L){return function(x,U,Y){return{configurable:!0,enumerable:Y.enumerable,get:function(){return Object.defineProperty(this,U,{configurable:!0,enumerable:Y.enumerable,value:Iu(Y.value,u,L)}),this[U]}}}}var lr=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u.Center="center",u}(lr||{});function k3(u,L,o){return o===lr.Top?u.top-7:o===lr.Bottom?u.top+u.height-L.height+7:o===lr.Center?u.top+u.height/2-L.height/2:void 0}function Ou(u,L,o){return o===lr.Left?u.left-7:o===lr.Right?u.left+u.width-L.width+7:o===lr.Center?u.left+u.width/2-L.width/2:void 0}class Ha{static calculateVerticalAlignment(L,o,x){let U=k3(L,o,x);return U+o.height>window.innerHeight&&(U=window.innerHeight-o.height),U}static calculateVerticalCaret(L,o,x,U){let Y;U===lr.Top&&(Y=L.height/2-x.height/2+7),U===lr.Bottom&&(Y=o.height-L.height/2-x.height/2-7),U===lr.Center&&(Y=o.height/2-x.height/2);const Te=k3(L,o,U);return Te+o.height>window.innerHeight&&(Y+=Te+o.height-window.innerHeight),Y}static calculateHorizontalAlignment(L,o,x){let U=Ou(L,o,x);return U+o.width>window.innerWidth&&(U=window.innerWidth-o.width),U}static calculateHorizontalCaret(L,o,x,U){let Y;U===lr.Left&&(Y=L.width/2-x.width/2+7),U===lr.Right&&(Y=o.width-L.width/2-x.width/2-7),U===lr.Center&&(Y=o.width/2-x.width/2);const Te=Ou(L,o,U);return Te+o.width>window.innerWidth&&(Y+=Te+o.width-window.innerWidth),Y}static shouldFlip(L,o,x,U){let Y=!1;return x===lr.Right&&L.left+L.width+o.width+U>window.innerWidth&&(Y=!0),x===lr.Left&&L.left-o.width-U<0&&(Y=!0),x===lr.Top&&L.top-o.height-U<0&&(Y=!0),x===lr.Bottom&&L.top+L.height+o.height+U>window.innerHeight&&(Y=!0),Y}static positionCaret(L,o,x,U,Y){let Te=0,it=0;return L===lr.Right?(it=-7,Te=Ha.calculateVerticalCaret(x,o,U,Y)):L===lr.Left?(it=o.width,Te=Ha.calculateVerticalCaret(x,o,U,Y)):L===lr.Top?(Te=o.height,it=Ha.calculateHorizontalCaret(x,o,U,Y)):L===lr.Bottom&&(Te=-7,it=Ha.calculateHorizontalCaret(x,o,U,Y)),{top:Te,left:it}}static positionContent(L,o,x,U,Y){let Te=0,it=0;return L===lr.Right?(it=x.left+x.width+U,Te=Ha.calculateVerticalAlignment(x,o,Y)):L===lr.Left?(it=x.left-o.width-U,Te=Ha.calculateVerticalAlignment(x,o,Y)):L===lr.Top?(Te=x.top-o.height-U,it=Ha.calculateHorizontalAlignment(x,o,Y)):L===lr.Bottom&&(Te=x.top+x.height+U,it=Ha.calculateHorizontalAlignment(x,o,Y)),{top:Te,left:it}}static determinePlacement(L,o,x,U){if(Ha.shouldFlip(x,o,L,U)){if(L===lr.Right)return lr.Left;if(L===lr.Left)return lr.Right;if(L===lr.Top)return lr.Bottom;if(L===lr.Bottom)return lr.Top}return L}}let Pu=(()=>{class u{constructor(o,x,U){this.element=o,this.renderer=x,this.platformId=U}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,t.NF)(this.platformId))return;const o=this.element.nativeElement,x=this.host.nativeElement.getBoundingClientRect();if(!x.height&&!x.width)return;const U=o.getBoundingClientRect();this.checkFlip(x,U),this.positionContent(o,x,U),this.showCaret&&this.positionCaret(x,U),setTimeout(()=>this.renderer.addClass(o,"animate"),1)}positionContent(o,x,U){const{top:Y,left:Te}=Ha.positionContent(this.placement,U,x,this.spacing,this.alignment);this.renderer.setStyle(o,"top",`${Y}px`),this.renderer.setStyle(o,"left",`${Te}px`)}positionCaret(o,x){const U=this.caretElm.nativeElement,Y=U.getBoundingClientRect(),{top:Te,left:it}=Ha.positionCaret(this.placement,x,o,Y,this.alignment);this.renderer.setStyle(U,"top",`${Te}px`),this.renderer.setStyle(U,"left",`${it}px`)}checkFlip(o,x){this.placement=Ha.determinePlacement(this.placement,x,o,this.spacing)}onWindowResize(){this.position()}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.SBq),e.Y36(e.Qsj),e.Y36(e.Lbi))},u.\u0275cmp=e.Xpm({type:u,selectors:[["ngx-tooltip-content"]],viewQuery:function(o,x){if(1&o&&e.Gf(fu,5),2&o){let U;e.iGM(U=e.CRH())&&(x.caretElm=U.first)}},hostVars:2,hostBindings:function(o,x){1&o&&e.NdJ("resize",function(){return x.onWindowResize()},!1,e.Jf7),2&o&&e.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&&(e.TgZ(0,"div"),e._UZ(1,"span",0,1),e.TgZ(3,"div",2),e.YNc(4,T0,2,4,"span",3)(5,Wd,1,1,"span",4),e.qZA()()),2&o&&(e.xp6(1),e.Gre("tooltip-caret position-",x.placement,""),e.Q6J("hidden",!x.showCaret),e.xp6(3),e.Q6J("ngIf",!x.title),e.xp6(1),e.Q6J("ngIf",x.title))},dependencies:[t.O5,t.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,y.gn)([_p(100)],u.prototype,"onWindowResize",null),u})();class vp{constructor(L){this.injectionService=L,this.defaults={},this.components=new Map}getByType(L=this.type){return this.components.get(L)}create(L){return this.createByType(this.type,L)}createByType(L,o){o=this.assignDefaults(o);const x=this.injectComponent(L,o);return this.register(L,x),x}destroy(L){const o=this.components.get(L.componentType);if(o&&o.length){const x=o.indexOf(L);x>-1&&(o[x].destroy(),o.splice(x,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(L){const o=this.components.get(L);if(o&&o.length){let x=o.length-1;for(;x>=0;)this.destroy(o[x--])}}injectComponent(L,o){return this.injectionService.appendComponent(L,o)}assignDefaults(L){const o={...this.defaults.inputs},x={...this.defaults.outputs};return!L.inputs&&!L.outputs&&(L={inputs:L}),o&&(L.inputs={...o,...L.inputs}),x&&(L.outputs={...x,...L.outputs}),L}register(L,o){this.components.has(L)||this.components.set(L,[]),this.components.get(L).push(o)}}let I3=(()=>{class u{constructor(o,x,U){this.applicationRef=o,this.componentFactoryResolver=x,this.injector=U}static setGlobalRootViewContainer(o){u.globalRootViewContainer=o}getRootViewContainer(){if(this._container)return this._container;if(u.globalRootViewContainer)return u.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 o2(u){return u.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 U=Object.getOwnPropertyNames(x.inputs);for(const Y of U)o.instance[Y]=x.inputs[Y]}if(void 0!==x.outputs){const U=Object.getOwnPropertyNames(x.outputs);for(const Y of U)o.instance[Y]=x.outputs[Y]}}return o}appendComponent(o,x={},U){U||(U=this.getRootViewContainer());const Y=this.getComponentRootNode(U),Te=new A.u0(Y,this.componentFactoryResolver,this.applicationRef,this.injector),it=new A.C5(o),jt=Te.attach(it);return this.projectComponentBindings(jt,x),jt}}return u.globalRootViewContainer=null,u.\u0275fac=function(o){return new(o||u)(e.LFG(e.z2F),e.LFG(e._Vd),e.LFG(e.zs3))},u.\u0275prov=e.Yz7({token:u,factory:u.\u0275fac}),u})(),Y0=(()=>{class u extends vp{constructor(o){super(o),this.type=Pu}}return u.\u0275fac=function(o){return new(o||u)(e.LFG(I3))},u.\u0275prov=e.Yz7({token:u,factory:u.\u0275fac}),u})();var Oc=function(u){return u.Right="right",u.Below="below",u}(Oc||{}),gl=function(u){return u.ScaleLegend="scaleLegend",u.Legend="legend",u}(gl||{}),Dn=function(u){return u.Time="time",u.Linear="linear",u.Ordinal="ordinal",u.Quantile="quantile",u}(Dn||{});let bp=(()=>{class u{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 U=[];return o.reverse().forEach((Y,Te)=>{U.push(`${Y} ${Math.round(100*x[Te])}%`)}),U.join(", ")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[e.TTD],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(o,x){1&o&&(e.TgZ(0,"div",0)(1,"div",1)(2,"span"),e._uU(3),e.qZA()(),e._UZ(4,"div",2),e.TgZ(5,"div",1)(6,"span"),e._uU(7),e.qZA()()()),2&o&&(e.Udp("height",x.horizontal?void 0:x.height,"px")("width",x.width,"px"),e.ekj("horizontal-legend",x.horizontal),e.xp6(3),e.Oqu(x.valueRange[1].toLocaleString()),e.xp6(1),e.Udp("background",x.gradient),e.xp6(3),e.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}),u})();function ed(u){return u instanceof Date?u.toLocaleDateString():u.toLocaleString()}let Ru=(()=>{class u{constructor(){this.isActive=!1,this.select=new e.vpe,this.activate=new e.vpe,this.deactivate=new e.vpe,this.toggle=new e.vpe}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(o,x){1&o&&e.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&&(e.TgZ(0,"span",0),e.NdJ("click",function(){return x.select.emit(x.formattedLabel)}),e.TgZ(1,"span",1),e.NdJ("click",function(){return x.toggle.emit(x.formattedLabel)}),e.qZA(),e.TgZ(2,"span",2),e._uU(3),e.qZA()()),2&o&&(e.ekj("active",x.isActive),e.Q6J("title",x.formattedLabel),e.xp6(1),e.Udp("background-color",x.color),e.xp6(2),e.hij(" ",x.trimmedLabel," "))},encapsulation:2,changeDetection:0}),u})(),s2=(()=>{class u{constructor(o){this.cd=o,this.horizontal=!1,this.labelClick=new e.vpe,this.labelActivate=new e.vpe,this.labelDeactivate=new e.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 U=ed(x);-1===o.findIndex(Te=>Te.label===U)&&o.push({label:x,formattedLabel:U,color:this.colors.getColor(x)})}return o}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(U=>o.label===U.name)}activate(o){this.labelActivate.emit(o)}deactivate(o){this.labelDeactivate.emit(o)}trackBy(o,x){return x.label}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.sBO))},u.\u0275cmp=e.Xpm({type:u,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:[e.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&&(e.TgZ(0,"div"),e.YNc(1,ll,3,1,"header",0),e.TgZ(2,"div",1)(3,"ul",2),e.YNc(4,n1,2,4,"li",3),e.qZA()()()),2&o&&(e.Udp("width",x.width,"px"),e.xp6(1),e.Q6J("ngIf",(null==x.title?null:x.title.length)>0),e.xp6(2),e.Udp("max-height",x.height-45,"px"),e.ekj("horizontal-legend",x.horizontal),e.xp6(1),e.Q6J("ngForOf",x.legendEntries)("ngForTrackBy",x.trackBy))},dependencies:[Ru,t.O5,t.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}),u})(),c2=(()=>{class u{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new e.vpe,this.legendLabelActivate=new e.vpe,this.legendLabelDeactivate=new e.vpe,this.LegendPosition=Oc,this.LegendType=gl}ngOnChanges(o){this.update()}update(){let o=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===Oc.Right)&&(o=this.legendType===gl.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-o)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==Oc.Right?this.chartWidth:Math.floor(this.view[0]*o/12)}getLegendType(){return this.legendOptions.scaleType===Dn.Linear?gl.ScaleLegend:gl.Legend}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,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:[e._Bn([Y0]),e.TTD],ngContentSelectors:Yd,decls:5,vars:8,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&&(e.F$t(),e.TgZ(0,"div",0),e.O4$(),e.TgZ(1,"svg",1),e.Hsn(2),e.qZA(),e.YNc(3,K1,1,5,"ngx-charts-scale-legend",2)(4,A0,1,7,"ngx-charts-legend",3),e.qZA()),2&o&&(e.Udp("width",x.view[0],"px")("height",x.view[1],"px"),e.xp6(1),e.uIk("width",x.chartWidth)("height",x.view[1]),e.xp6(2),e.Q6J("ngIf",x.showLegend&&x.legendType===x.LegendType.ScaleLegend),e.xp6(1),e.Q6J("ngIf",x.showLegend&&x.legendType===x.LegendType.Legend))},dependencies:[bp,s2,t.O5],encapsulation:2,changeDetection:0}),u})(),Pc=(()=>{class u{constructor(o,x){this.element=o,this.zone=x,this.visible=new e.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:U}=this.element.nativeElement;x&&U?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o())})}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.SBq),e.Y36(e.R0b))},u.\u0275dir=e.lG2({type:u,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),u})();function Nu(u){return"[object Date]"===toString.call(u)}let Hu=(()=>{class u{constructor(o,x,U,Y){this.chartElement=o,this.zone=x,this.cd=U,this.platformId=Y,this.scheme="cool",this.schemeType=Dn.Ordinal,this.animations=!0,this.select=new e.vpe}ngOnInit(){(0,t.PM)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new Pc(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 U=this.chartElement.nativeElement;if((0,t.NF)(this.platformId)&&null!==U.parentNode){const Y=U.parentNode.getBoundingClientRect();o=Y.width,x=Y.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 U of o){const Y={};if(void 0!==U.name&&(Y.name=U.name),void 0!==U.value&&(Y.value=U.value),void 0!==U.series){Y.series=[];for(const Te of U.series){const it=Object.assign({},Te);Y.series.push(it)}}void 0!==U.extra&&(Y.extra=JSON.parse(JSON.stringify(U.extra))),void 0!==U.source&&(Y.source=U.source),void 0!==U.target&&(Y.target=U.target),x.push(Y)}return x}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.SBq),e.Y36(e.R0b),e.Y36(e.sBO),e.Y36(e.Lbi))},u.\u0275cmp=e.Xpm({type:u,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[e.TTD],decls:1,vars:0,template:function(o,x){1&o&&e._UZ(0,"div")},encapsulation:2}),u})();var Ro=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u}(Ro||{});let Fu=(()=>{class u{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 Ro.Top:case Ro.Bottom:this.y=this.offset,this.x=this.width/2;break;case Ro.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Ro.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.SBq))},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[e.TTD],attrs:jd,decls:2,vars:6,template:function(o,x){1&o&&(e.O4$(),e.TgZ(0,"text"),e._uU(1),e.qZA()),2&o&&(e.uIk("stroke-width",x.strokeWidth)("x",x.x)("y",x.y)("text-anchor",x.textAnchor)("transform",x.transform),e.xp6(1),e.hij(" ",x.label," "))},encapsulation:2,changeDetection:0}),u})();function zu(u,L=16){return"string"!=typeof u?"number"==typeof u?u+"":"":(u=u.trim()).length<=L?u:`${u.slice(0,L)}...`}function Vu(u,L){if(u.length>L){const o=[],x=Math.floor(u.length/L);for(let U=0;U{const it=(Y.pop()||"")+" ";return it.length+Te.length>L?[...Y,it.trim(),Te.trim()]:[...Y,it+Te]},[]);else{let Y=0;for(;Yo&&(U=U.splice(0,o),U[U.length-1]+="..."),U}var Rc=function(u){return u.Start="start",u.Middle="middle",u.End="end",u}(Rc||{});let K0=(()=>{class u{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.dimensionsChanged=new e.vpe,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=Rc.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16}get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.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(U){return"Date"===U.constructor.name?U.toLocaleDateString():U.toLocaleString()};const x=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(U){return this.scale(U)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",x&&0!==x?(this.textTransform=`rotate(${x})`,this.textAnchor=Rc.End,this.verticalSpacing=10):this.textAnchor=Rc.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(o){let x=0;this.maxTicksLength=0;for(let vi=0;vithis.maxTicksLength&&(this.maxTicksLength=ki)}const Te=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let it=Te;const jt=Math.floor(this.width/o.length);for(;it>jt&&x>-90;)x-=30,it=Math.cos(x*(Math.PI/180))*Te;let Zt=14;if(this.isWrapTicksSupported){const vi=this.ticks.reduce((ki,rn)=>rn.length>ki.length?rn:ki,"");Zt=14*(this.tickChunks(vi).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(vi)}const ci=0!==x?Math.max(Math.abs(Math.sin(x*Math.PI/180))*this.maxTickLength*7,10):Zt;return this.approxHeight=Math.min(ci,200),x}getTicks(){let o;const x=this.getMaxTicks(20),U=this.getMaxTicks(100);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[U]):(o=this.scale.domain(),o=Vu(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?zu(o,this.maxTickLength):o}getMaxPossibleLengthForTick(o){if(this.scale.bandwidth){const U=Math.floor(this.scale.bandwidth()/7),Y=o.slice(0,U);return Math.max(Y.length,this.maxTickLength)}return this.maxTickLength}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){let U=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(U<=1)return[this.tickTrim(o)];let Y=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,t.NF)(this.platformId)||(Y=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),U=Math.min(U,5),P3(o,Y,U<1?1:U)}return[this.tickTrim(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.Lbi))},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(o,x){if(1&o&&e.Gf(r1,5),2&o){let U;e.iGM(U=e.CRH())&&(x.ticksElement=U.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.TTD],attrs:cc,decls:4,vars:2,consts:[["ticksel",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01","font-size","12px"],[4,"ngIf","ngIfThen","ngIfElse"],["tmplMultilineTick",""],["tmplSinglelineTick",""],["x","0",4,"ngFor","ngForOf"],["x","0"],["y2","0",1,"gridline-path","gridline-path-vertical"]],template:function(o,x){1&o&&(e.O4$(),e.TgZ(0,"g",null,0),e.YNc(2,O0,2,2,"g",1),e.qZA(),e.YNc(3,V,2,2,"g",2)),2&o&&(e.xp6(2),e.Q6J("ngForOf",x.ticks),e.xp6(1),e.Q6J("ngForOf",x.ticks))},dependencies:[t.sg,t.O5],encapsulation:2,changeDetection:0}),u})(),Bu=(()=>{class u{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Ro.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.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=Ro}ngOnChanges(o){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(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 u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(o,x){if(1&o&&e.Gf(K0,5),2&o){let U;e.iGM(U=e.CRH())&&(x.ticksComponent=U.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.TTD],attrs:b,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","wrapTicks","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","wrapTicks","dimensionsChanged"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,x){1&o&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,G,1,13,"g",0)(2,Z,1,5,"g",1),e.qZA()),2&o&&(e.uIk("class",x.xAxisClassName)("transform",x.transform),e.xp6(1),e.Q6J("ngIf",x.xScale),e.xp6(1),e.Q6J("ngIf",x.showLabel))},dependencies:[K0,Fu,t.O5],encapsulation:2,changeDetection:0}),u})();function Nc(u,L,o,x,U,[Y,Te,it,jt]){let Zt="";return Zt=`M${[u+U,L]}`,Zt+="h"+((o=0===(o=Math.floor(o))?1:o)-2*U),Zt+=Te?`a${[U,U]} 0 0 1 ${[U,U]}`:`h${U}v${U}`,Zt+="v"+((x=0===(x=Math.floor(x))?1:x)-2*U),Zt+=jt?`a${[U,U]} 0 0 1 ${[-U,U]}`:`v${U}h${-U}`,Zt+="h"+(2*U-o),Zt+=it?`a${[U,U]} 0 0 1 ${[-U,-U]}`:`h${-U}v${-U}`,Zt+="v"+(2*U-x),Zt+=Y?`a${[U,U]} 0 0 1 ${[U,-U]}`:`v${-U}h${U}`,Zt+="z",Zt}let o1=(()=>{class u{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.wrapTicks=!1,this.dimensionsChanged=new e.vpe,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=Rc.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Ro}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.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(){const o=this.scale,x=this.orient===Ro.Top||this.orient===Ro.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(U){return"Date"===U.constructor.name?U.toLocaleDateString():U.toLocaleString()},this.adjustedScale=o.bandwidth?U=>{const Y=o(U)+.5*o.bandwidth();if(this.wrapTicks&&U.toString().length>this.maxTickLength){const Te=this.tickChunks(U).length;if(1===Te)return Y;const Zt=.5*o.bandwidth()-8*Te*.5;return o(U)+Zt}return Y}:o,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Ro.Top:case Ro.Bottom:this.transform=function(U){return"translate("+this.adjustedScale(U)+",0)"},this.textAnchor=Rc.Middle,this.y2=this.innerTickSize*x,this.y1=this.tickSpacing*x,this.dy=x<0?"0em":".71em";break;case Ro.Left:this.transform=function(U){return"translate(0,"+this.adjustedScale(U)+")"},this.textAnchor=Rc.End,this.x2=this.innerTickSize*-x,this.x1=this.tickSpacing*-x,this.dy=".32em";break;case Ro.Right:this.transform=function(U){return"translate(0,"+this.adjustedScale(U)+")"},this.textAnchor=Rc.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=Nc(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let o;const x=this.getMaxTicks(20),U=this.getMaxTicks(50);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[U]):(o=this.scale.domain(),o=Vu(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?zu(o,this.maxTickLength):o}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(U=>this.tickTrim(this.tickFormat(U)).length))}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){const x=this.maxTickLength,U=Math.floor(this.scale.bandwidth()/15);return U<=1?[this.tickTrim(o)]:P3(o,x,Math.min(U,5))}return[this.tickFormat(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.Lbi))},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(o,x){if(1&o&&e.Gf(r1,5),2&o){let U;e.iGM(U=e.CRH())&&(x.ticksElement=U.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.TTD],attrs:He,decls:6,vars:4,consts:[["ticksel",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01"],[4,"ngIf","ngIfThen","ngIfElse"],["tmplMultilineTick",""],["tmplSinglelineTick",""],[4,"ngIf","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],[1,"reference-area"],["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&&(e.O4$(),e.TgZ(0,"g",null,0),e.YNc(2,On,2,2,"g",1),e.qZA(),e.YNc(3,pn,1,2,"path",2)(4,Ya,2,2,"g",3)(5,jo,2,1,"g",3)),2&o&&(e.xp6(2),e.Q6J("ngForOf",x.ticks),e.xp6(1),e.Q6J("ngIf",x.referenceLineLength>1&&x.refMax&&x.refMin&&x.showRefLines),e.xp6(1),e.Q6J("ngForOf",x.ticks),e.xp6(1),e.Q6J("ngForOf",x.referenceLines))},dependencies:[t.sg,t.O5],encapsulation:2,changeDetection:0}),u})(),td=(()=>{class u{constructor(){this.showGridLines=!1,this.yOrient=Ro.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.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===Ro.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):this.transform=`translate(${this.offset} , 0)`,void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:o}){o!==this.labelOffset&&this.yOrient===Ro.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 u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(o,x){if(1&o&&e.Gf(o1,5),2&o){let U;e.iGM(U=e.CRH())&&(x.ticksComponent=U.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",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.TTD],attrs:Ns,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","wrapTicks","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","wrapTicks","dimensionsChanged"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,x){1&o&&(e.O4$(),e.TgZ(0,"g"),e.YNc(1,Po,1,15,"g",0)(2,lc,1,5,"g",1),e.qZA()),2&o&&(e.uIk("class",x.yAxisClassName)("transform",x.transform),e.xp6(1),e.Q6J("ngIf",x.yScale),e.xp6(1),e.Q6J("ngIf",x.showLabel))},dependencies:[o1,Fu,t.O5],encapsulation:2,changeDetection:0}),u})(),Q0=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[t.ez]]}),u})();var l2=function(u){return u.popover="popover",u.tooltip="tooltip",u}(l2||{}),s1=function(u){return u[u.all="all"]="all",u[u.focus="focus"]="focus",u[u.mouseover="mouseover"]="mouseover",u}(s1||{});let Uu=(()=>{class u{constructor(o,x,U){this.tooltipService=o,this.viewContainerRef=x,this.renderer=U,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=lr.Top,this.tooltipAlignment=lr.Center,this.tooltipType=l2.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=s1.all,this.tooltipImmediateExit=!1,this.show=new e.vpe,this.hide=new e.vpe}get listensForFocus(){return this.tooltipShowEvent===s1.all||this.tooltipShowEvent===s1.focus}get listensForHover(){return this.tooltipShowEvent===s1.all||this.tooltipShowEvent===s1.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/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const U=this.createBoundOptions();this.component=this.tooltipService.create(U),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 u.\u0275fac=function(o){return new(o||u)(e.Y36(Y0),e.Y36(e.s_b),e.Y36(e.Qsj))},u.\u0275dir=e.lG2({type:u,selectors:[["","ngx-tooltip",""]],hostBindings:function(o,x){1&o&&e.NdJ("focusin",function(){return x.onFocus()})("blur",function(){return x.onBlur()})("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(Y){return x.onMouseLeave(Y.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"}}),u})(),R3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({providers:[I3,Y0],imports:[[t.ez]]}),u})();const N3={};function q0(){let u=("0000"+(Math.random()*Math.pow(36,4)<<0).toString(36)).slice(-4);return u=`a${u}`,N3[u]?q0():(N3[u]=!0,u)}var ba=function(u){return u.Vertical="vertical",u.Horizontal="horizontal",u}(ba||{});let d2=(()=>{class u{constructor(){this.orientation=ba.Vertical}ngOnChanges(o){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===ba.Horizontal?this.x2="100%":this.orientation===ba.Vertical&&(this.y1="100%")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[e.TTD],attrs:Ks,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(o,x){1&o&&(e.O4$(),e.TgZ(0,"linearGradient",0),e.YNc(1,ms,1,5,"stop",1),e.qZA()),2&o&&(e.Q6J("id",x.name),e.uIk("x1",x.x1)("y1",x.y1)("x2",x.x2)("y2",x.y2),e.xp6(1),e.Q6J("ngForOf",x.stops))},dependencies:[t.sg],encapsulation:2,changeDetection:0}),u})(),Gu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:Tn,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(o,x){1&o&&(e.O4$(),e._UZ(0,"rect",0)),2&o&&e.uIk("height",x.height)("width",x.width)("x",x.x)("y",x.y)},encapsulation:2,changeDetection:0}),u})();var J0=function(u){return u.Odd="odd",u.Even="even",u}(J0||{});let Hs,F3=(()=>{class u{ngOnChanges(o){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(o=>{let x,U,Y,Te,it,jt=J0.Odd;if(this.orient===ba.Vertical){const Zt=this.xScale(o.name);Number.parseInt((Zt/this.xScale.step()).toString(),10)%2==1&&(jt=J0.Even),x=this.xScale.bandwidth()*this.xScale.paddingInner(),U=this.xScale.bandwidth()+x,Y=this.dims.height,Te=this.xScale(o.name)-x/2,it=0}else if(this.orient===ba.Horizontal){const Zt=this.yScale(o.name);Number.parseInt((Zt/this.yScale.step()).toString(),10)%2==1&&(jt=J0.Even),x=this.yScale.bandwidth()*this.yScale.paddingInner(),U=this.dims.width,Y=this.yScale.bandwidth()+x,Te=0,it=this.yScale(o.name)-x/2}return{name:o.name,class:jt,height:Y,width:U,x:Te,y:it}})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[e.TTD],attrs:Nn,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&&e.YNc(0,_r,1,10,"g",0),2&o&&e.Q6J("ngForOf",x.gridPanels)},dependencies:[Gu,t.sg],encapsulation:2,changeDetection:0}),u})();typeof window<"u"?Hs=window:typeof global<"u"&&(Hs=global);let xs=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[t.ez,Q0,R3],t.ez,Q0,R3]}),u})();function Yu({width:u,height:L,margins:o,showXAxis:x=!1,showYAxis:U=!1,xAxisHeight:Y=0,yAxisWidth:Te=0,showXLabel:it=!1,showYLabel:jt=!1,showLegend:Zt=!1,legendType:ci=Dn.Ordinal,legendPosition:vi=Oc.Right,columns:Ei=12}){let ki=o[3],rn=u,Mn=L-o[0]-o[2];return Zt&&vi===Oc.Right&&(Ei-=ci===Dn.Ordinal?2:1),rn=rn*Ei/12,rn=rn-o[1]-o[3],x&&(Mn-=5,Mn-=Y,it&&(Mn-=30)),U&&(rn-=5,rn-=Te,ki+=Te,ki+=10,jt&&(rn-=30,ki+=30)),rn=Math.max(0,rn),Mn=Math.max(0,Mn),{width:Math.floor(rn),height:Math.floor(Mn),xOffset:Math.floor(ki)}}const eh=[{name:"vivid",selectable:!0,group:Dn.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:Dn.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:Dn.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:Dn.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:Dn.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:Dn.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:Dn.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:Dn.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:Dn.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:Dn.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:Dn.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:Dn.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:Dn.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:Dn.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:Dn.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class ju{constructor(L,o,x,U){"string"==typeof L&&(L=eh.find(Y=>Y.name===L)),this.colorDomain=L.domain,this.scaleType=o,this.domain=x,this.customColors=U,this.scale=this.generateColorScheme(L,o,this.domain)}generateColorScheme(L,o,x){let U;switch("string"==typeof L&&(L=eh.find(Y=>Y.name===L)),o){case Dn.Quantile:U=S0().range(L.domain).domain(x);break;case Dn.Ordinal:U=j1().range(L.domain).domain(x);break;case Dn.Linear:{const Y=[...L.domain];1===Y.length&&(Y.push(Y[0]),this.colorDomain=Y);const Te=x0(0,1,1/Y.length);U=oc().range(Y).domain(Te)}}return U}getColor(L){if(null==L)throw new Error("Value can not be null");if(this.scaleType===Dn.Linear){const o=oc().domain(this.domain).range([0,1]);return this.scale(o(L))}{if("function"==typeof this.customColors)return this.customColors(L);const o=L.toString();let x;return this.customColors&&this.customColors.length>0&&(x=this.customColors.find(U=>U.name.toLowerCase()===o.toLowerCase())),x?x.value:this.scale(L)}}getLinearGradientStops(L,o){void 0===o&&(o=this.domain[0]);const x=oc().domain(this.domain).range([0,1]),U=sc().domain(this.colorDomain).range([0,1]),Y=this.getColor(L),Te=x(o),it=this.getColor(o),jt=x(L);let Zt=1,ci=Te;const vi=[];for(vi.push({color:it,offset:Te,originalOffset:Te,opacity:1});ci=(jt-U.bandwidth()).toFixed(4))break;vi.push({color:Ei,offset:ki,opacity:1}),ci=ki,Zt++}}if(vi[vi.length-1].offset<100&&vi.push({color:Y,offset:jt,opacity:1}),jt===Te)vi[0].offset=0,vi[1].offset=100;else if(100!==vi[vi.length-1].offset)for(const Ei of vi)Ei.offset=(Ei.offset-Te)/(jt-Te)*100;return vi}}let G3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),Z3=(()=>{class u{constructor(o){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new e.vpe,this.activate=new e.vpe,this.deactivate=new e.vpe,this.hasGradient=!1,this.hideBar=!1,this.element=o.nativeElement}ngOnChanges(o){o.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+q0().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 qt(u){return"string"==typeof u?new yi([[document.querySelector(u)]],[document.documentElement]):new yi([[u]],bi)}(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===ba.Vertical?(o=Math.min(this.height,o),x=Nc(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===ba.Horizontal&&(o=Math.min(this.width,o),x=Nc(this.x,this.y,1,this.height,0,this.edges)):this.orientation===ba.Vertical?x=Nc(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===ba.Horizontal&&(x=Nc(this.x,this.y,1,this.height,0,this.edges)),x}getPath(){let x,o=this.getRadius();return this.roundEdges?this.orientation===ba.Vertical?(o=Math.min(this.height,o),x=Nc(this.x,this.y,this.width,this.height,o,this.edges)):this.orientation===ba.Horizontal&&(o=Math.min(this.width,o),x=Nc(this.x,this.y,this.width,this.height,o,this.edges)):x=Nc(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===ba.Vertical?o=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===ba.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===ba.Vertical&&0===this.height||this.orientation===ba.Horizontal&&0===this.width)}}return u.\u0275fac=function(o){return new(o||u)(e.Y36(e.SBq))},u.\u0275cmp=e.Xpm({type:u,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(o,x){1&o&&e.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:[e.TTD],attrs:Cm,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&&(e.YNc(0,wm,2,3,"defs",0),e.O4$(),e.TgZ(1,"path",1),e.NdJ("click",function(){return x.select.emit(x.data)}),e.qZA()),2&o&&(e.Q6J("ngIf",x.hasGradient),e.xp6(1),e.ekj("active",x.isActive)("hidden",x.hideBar),e.uIk("d",x.path)("aria-label",x.ariaLabel)("fill",x.hasGradient?x.gradientFill:x.fill))},dependencies:[d2,t.O5],encapsulation:2,changeDetection:0}),u})();var Fs=function(u){return u.Standard="standard",u.Normalized="normalized",u.Stacked="stacked",u}(Fs||{}),id=function(u){return u.positive="positive",u.negative="negative",u}(id||{});let Ap=(()=>{class u{constructor(o){this.dimensionsChanged=new e.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):ed(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 u.\u0275fac=function(o){return new(o||u)(e.Y36(e.SBq))},u.\u0275cmp=e.Xpm({type:u,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:[e.TTD],attrs:Mm,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(o,x){1&o&&(e.O4$(),e.TgZ(0,"text",0),e._uU(1),e.qZA()),2&o&&(e.uIk("text-anchor",x.textAnchor)("transform",x.transform)("x",x.x)("y",x.y),e.xp6(1),e.hij(" ",x.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),u})(),W3=(()=>{class u{constructor(o){this.platformId=o,this.type=Fs.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new e.vpe,this.activate=new e.vpe,this.deactivate=new e.vpe,this.dataLabelHeightChanged=new e.vpe,this.barsForDataLabels=[],this.barOrientation=ba,this.isSSR=!1}ngOnInit(){(0,t.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),U={[id.positive]:0,[id.negative]:0};let Te,Y=id.positive;this.type===Fs.Normalized&&(Te=this.series.map(it=>it.value).reduce((it,jt)=>it+jt,0)),this.bars=this.series.map((it,jt)=>{let Zt=it.value;const ci=this.getLabel(it),vi=ed(ci);Y=Zt>0?id.positive:id.negative;const ki={value:Zt,label:ci,roundEdges:this.roundEdges,data:it,width:o,formattedLabel:vi,height:0,x:0,y:0};if(this.type===Fs.Standard)ki.height=Math.abs(this.yScale(Zt)-this.yScale(x)),ki.x=this.xScale(ci),ki.y=this.yScale(Zt<0?0:Zt);else if(this.type===Fs.Stacked){const Mn=U[Y],Pi=Mn+Zt;U[Y]+=Zt,ki.height=this.yScale(Mn)-this.yScale(Pi),ki.x=0,ki.y=this.yScale(Pi),ki.offset0=Mn,ki.offset1=Pi}else if(this.type===Fs.Normalized){let Mn=U[Y],Pi=Mn+Zt;U[Y]+=Zt,Te>0?(Mn=100*Mn/Te,Pi=100*Pi/Te):(Mn=0,Pi=0),ki.height=this.yScale(Mn)-this.yScale(Pi),ki.x=0,ki.y=this.yScale(Pi),ki.offset0=Mn,ki.offset1=Pi,Zt=(Pi-Mn).toFixed(2)+"%"}this.colors.scaleType===Dn.Ordinal?ki.color=this.colors.getColor(ci):this.type===Fs.Standard?(ki.color=this.colors.getColor(Zt),ki.gradientStops=this.colors.getLinearGradientStops(Zt)):(ki.color=this.colors.getColor(ki.offset1),ki.gradientStops=this.colors.getLinearGradientStops(ki.offset1,ki.offset0));let rn=vi;return ki.ariaLabel=vi+" "+Zt.toLocaleString(),null!=this.seriesName&&(rn=`${this.seriesName} \u2022 ${vi}`,ki.data.series=this.seriesName,ki.ariaLabel=this.seriesName+" "+ki.ariaLabel),ki.tooltipText=this.tooltipDisabled?void 0:`\n ${function j0(u){return u.toLocaleString().replace(/[&'`"<>]/g,L=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[L]))}(rn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Zt):Zt.toLocaleString()}\n `,ki}),this.updateDataLabels()}updateDataLabels(){if(this.type===Fs.Stacked){this.barsForDataLabels=[];const o={};o.series=this.seriesName;const x=this.series.map(Y=>Y.value).reduce((Y,Te)=>Te>0?Y+Te:Y,0),U=this.series.map(Y=>Y.value).reduce((Y,Te)=>Te<0?Y+Te:Y,0);o.total=x+U,o.x=0,o.y=0,o.height=this.yScale(o.total>0?x:U),o.width=this.xScale.bandwidth(),this.barsForDataLabels.push(o)}else this.barsForDataLabels=this.series.map(o=>{const x={};return x.series=this.seriesName??o.label,x.total=o.value,x.x=this.xScale(o.label),x.y=this.yScale(0),x.height=this.yScale(x.total)-this.yScale(0),x.width=this.xScale.bandwidth(),x})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:lr.Top,this.tooltipType=this.tooltipDisabled?void 0:l2.tooltip}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(U=>o.name===U.name&&o.value===U.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 u.\u0275fac=function(o){return new(o||u)(e.Y36(e.Lbi))},u.\u0275cmp=e.Xpm({type:u,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:[e.TTD],attrs:Am,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&&e.YNc(0,Cu,2,2,"g",0)(1,Dm,2,2,"g",0)(2,km,2,2,"g",0),2&o&&(e.Q6J("ngIf",!x.isSSR),e.xp6(1),e.Q6J("ngIf",x.isSSR),e.xp6(1),e.Q6J("ngIf",x.showDataLabel))},dependencies:[Z3,Ap,t.O5,t.sg,Uu],encapsulation:2,data:{animation:[(0,m.X$)("animationState",[(0,m.eR)(":leave",[(0,m.oB)({opacity:1}),(0,m.jt)(500,(0,m.oB)({opacity:0}))])])]},changeDetection:0}),u})(),kp=(()=>{class u extends Hu{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Oc.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.wrapTicks=!1,this.activate=new e.vpe,this.deactivate=new e.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=Yu({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 sc().range([0,this.dims.width]).paddingInner(o).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const o=oc().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(Y=>Y.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 U=this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(U=Math.max(U,...this.yAxisTicks)),[x,U]}onClick(o){this.select.emit(o)}setColors(){let o;o=this.schemeType===Dn.Ordinal?this.xDomain:this.yDomain,this.colors=new ju(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===Dn.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(Y=>x?Y.label===o.name:Y.name===o.name),!(this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.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(Y=>x?Y.label===o.name:Y.name===o.name);const U=this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series);this.activeEntries.splice(U,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:o,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let L;return function(x){return(L||(L=e.n5z(u)))(x||u)}})(),u.\u0275cmp=e.Xpm({type:u,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(o,x,U){if(1&o&&e.Suo(U,R0,5),2&o){let Y;e.iGM(Y=e.CRH())&&(x.tooltipTemplate=Y.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",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.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","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","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","wrapTicks","dimensionsChanged"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged"]],template:function(o,x){1&o&&(e.TgZ(0,"ngx-charts-chart",0),e.NdJ("legendLabelClick",function(Y){return x.onClick(Y)})("legendLabelActivate",function(Y){return x.onActivate(Y,!0)})("legendLabelDeactivate",function(Y){return x.onDeactivate(Y,!0)}),e.O4$(),e.TgZ(1,"g",1),e.YNc(2,Im,1,12,"g",2)(3,B0,1,10,"g",3),e.TgZ(4,"g",4),e.NdJ("activate",function(Y){return x.onActivate(Y)})("deactivate",function(Y){return x.onDeactivate(Y)})("select",function(Y){return x.onClick(Y)})("dataLabelHeightChanged",function(Y){return x.onDataLabelMaxHeightChanged(Y)}),e.qZA()()()),2&o&&(e.Q6J("view",e.WLB(22,Xd,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),e.xp6(1),e.uIk("transform",x.transform),e.xp6(1),e.Q6J("ngIf",x.xAxis),e.xp6(1),e.Q6J("ngIf",x.yAxis),e.xp6(1),e.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))},dependencies:[c2,Bu,td,W3,t.O5],styles:[$d],encapsulation:2,changeDetection:0}),u})(),nd=(()=>{class u extends Hu{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Oc.Right,this.tooltipDisabled=!1,this.scaleType=Dn.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.wrapTicks=!1,this.activate=new e.vpe,this.deactivate=new e.vpe,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=ba,this.trackBy=(o,x)=>x.name}ngOnInit(){(0,t.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=Yu({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 sc().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 sc().rangeRound([0,o]).paddingInner(x).domain(this.innerDomain)}getValueScale(){const o=oc().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 U of x.series)o.includes(U.label)||o.push(U.label);return o}getValueDomain(){const o=[];for(const Y of this.results)for(const Te of Y.series)o.includes(Te.value)||o.push(Te.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===Dn.Ordinal?this.innerDomain:this.valueDomain,this.colors=new ju(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===Dn.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,U=!1){const Y=Object.assign({},o);x&&(Y.series=x.name);const Te=this.results.map(it=>it.series).flat().filter(it=>U?it.label===Y.name:it.name===Y.name&&it.series===Y.series);this.activeEntries=[...Te],this.activate.emit({value:Y,entries:this.activeEntries})}onDeactivate(o,x,U=!1){const Y=Object.assign({},o);x&&(Y.series=x.name),this.activeEntries=this.activeEntries.filter(Te=>U?Te.label!==Y.name:!(Te.name===Y.name&&Te.series===Y.series)),this.deactivate.emit({value:Y,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let L;return function(x){return(L||(L=e.n5z(u)))(x||u)}})(),u.\u0275cmp=e.Xpm({type:u,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(o,x,U){if(1&o&&e.Suo(U,R0,5),2&o){let Y;e.iGM(Y=e.CRH())&&(x.tooltipTemplate=Y.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",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.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","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","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&&(e.TgZ(0,"ngx-charts-chart",0),e.NdJ("legendLabelActivate",function(Y){return x.onActivate(Y,void 0,!0)})("legendLabelDeactivate",function(Y){return x.onDeactivate(Y,void 0,!0)})("legendLabelClick",function(Y){return x.onClick(Y)}),e.O4$(),e.TgZ(1,"g",1),e._UZ(2,"g",2),e.YNc(3,Mu,1,11,"g",3)(4,Om,1,10,"g",4)(5,Su,2,2,"g",5),e.qZA(),e.YNc(6,Pm,2,2,"g",5),e.qZA()),2&o&&(e.Q6J("view",e.WLB(15,Xd,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),e.xp6(1),e.uIk("transform",x.transform),e.xp6(1),e.Q6J("xScale",x.groupScale)("yScale",x.valueScale)("data",x.results)("dims",x.dims)("orient",x.barOrientation.Vertical),e.xp6(1),e.Q6J("ngIf",x.xAxis),e.xp6(1),e.Q6J("ngIf",x.yAxis),e.xp6(1),e.Q6J("ngIf",!x.isSSR),e.xp6(1),e.Q6J("ngIf",x.isSSR))},dependencies:[c2,F3,Bu,td,W3,t.O5,t.sg],styles:[$d],encapsulation:2,data:{animation:[(0,m.X$)("animationState",[(0,m.eR)(":leave",[(0,m.oB)({opacity:1,transform:"*"}),(0,m.jt)(500,(0,m.oB)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),u})(),Qu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})();uu();let Pp=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),Np=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),Hp=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),Xu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})();Math;let Hc=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),od=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs,Hc,Xu]]}),u})(),q3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),g2=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),ef=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs,Hc,Qu]]}),u})(),Wp=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[[xs]]}),u})(),tf=(()=>{class u{constructor(){!function h1(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.oAB({type:u}),u.\u0275inj=e.cJS({imports:[xs,G3,Qu,Pp,Np,Hp,Wp,Xu,od,q3,Hc,g2,ef]}),u})()},2279:(Fe,q,p)=>{"use strict";p.d(q,{OF:()=>E,uU:()=>d});var e=p(5861),t=p(9212),y=p(2839),A=p(6814);function l(M,I){if(1&M&&t._UZ(0,"canvas",0),2&M){const k=t.oxw();t.Q6J("qrCode",k.value)("qrCodeErrorCorrectionLevel",k.errorCorrectionLevel)("qrCodeCenterImageSrc",k.centerImageSrc)("qrCodeCenterImageWidth",k.centerImageSize)("qrCodeCenterImageHeight",k.centerImageSize)("qrCodeMargin",k.margin)("width",k.size)("height",k.size)("darkColor",k.darkColor)("lightColor",k.lightColor)}}const w=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let m=(()=>{class M{static#e=this.DEFAULT_ERROR_CORRECTION_LEVEL="M";static#t=this.DEFAULT_CENTER_IMAGE_SIZE=40;constructor(k){this.viewContainerRef=k,this.errorCorrectionLevel=M.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var k=this;return(0,e.Z)(function*(){if(!k.value)return;k.version&&k.version>40?(console.warn("[qrCode] max version is 40, clamping"),k.version=40):k.version&&k.version<1?(console.warn("[qrCode] min version is 1, clamping"),k.version=1):void 0!==k.version&&isNaN(k.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),k.version=void 0);const z=k.viewContainerRef.element.nativeElement;if(!z)return;const B=z.getContext("2d");B&&B.clearRect(0,0,B.canvas.width,B.canvas.height);const W=k.errorCorrectionLevel??M.DEFAULT_ERROR_CORRECTION_LEVEL,j=w.test(k.darkColor)?k.darkColor:void 0,K=w.test(k.lightColor)?k.lightColor:void 0;(0,t.X6Q)()&&(!j&&k.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!K&&k.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield y.toCanvas(z,k.value,{version:k.version,errorCorrectionLevel:W,width:k.width,margin:k.margin,color:{dark:j,light:K}});const X=k.centerImageSrc,ie=P(k.centerImageWidth,M.DEFAULT_CENTER_IMAGE_SIZE),se=P(k.centerImageHeight,M.DEFAULT_CENTER_IMAGE_SIZE);if(X&&B){k.centerImage||(k.centerImage=new Image(ie,se));const ue=k.centerImage;X!==k.centerImage.src&&(ue.src=X),ie!==k.centerImage.width&&(ue.width=ie),se!==k.centerImage.height&&(ue.height=se);const ae=()=>{B.drawImage(ue,z.width/2-ie/2,z.height/2-se/2,ie,se)};ue.onload=ae,ue.complete&&ae()}})()}static#i=this.\u0275fac=function(z){return new(z||M)(t.Y36(t.s_b))};static#n=this.\u0275dir=t.lG2({type:M,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]})}return M})();function P(M,I){return void 0===M||""===M?I:"string"==typeof M?parseInt(M,10):M}let d=(()=>{class M{static#e=this.\u0275fac=function(z){return new(z||M)};static#t=this.\u0275cmp=t.Xpm({type:M,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"]],template:function(z,B){1&z&&t.YNc(0,l,1,10,"canvas",0),2&z&&t.um2(0,B.value?0:-1)},dependencies:[m],encapsulation:2})}return M})(),E=(()=>{class M{static#e=this.\u0275fac=function(z){return new(z||M)};static#t=this.\u0275mod=t.oAB({type:M});static#i=this.\u0275inj=t.cJS({imports:[A.ez]})}return M})()},2159:(Fe,q,p)=>{"use strict";p.d(q,{op:()=>yt,Vv:()=>gt,$V:()=>Xe,Xd:()=>be});var e=p(8645),t=p(2438),y=p(3019),A=p(9028),l=p(9773),w=p(3997),m=p(975),P=p(9212),d=p(6814);function E($){return getComputedStyle($)}function M($,ne){for(var ke in ne){var Nt=ne[ke];"number"==typeof Nt&&(Nt+="px"),$.style[ke]=Nt}return $}function I($){var ne=document.createElement("div");return ne.className=$,ne}var k=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function z($,ne){if(!k)throw new Error("No element matching method supported");return k.call($,ne)}function B($){$.remove?$.remove():$.parentNode&&$.parentNode.removeChild($)}function W($,ne){return Array.prototype.filter.call($.children,function(ke){return z(ke,ne)})}var j={main:"ps",rtl:"ps__rtl",element:{thumb:function($){return"ps__thumb-"+$},rail:function($){return"ps__rail-"+$},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function($){return"ps--active-"+$},scrolling:function($){return"ps--scrolling-"+$}}},K={x:null,y:null};function X($,ne){var ke=$.element.classList,Nt=j.state.scrolling(ne);ke.contains(Nt)?clearTimeout(K[ne]):ke.add(Nt)}function ie($,ne){K[ne]=setTimeout(function(){return $.isAlive&&$.element.classList.remove(j.state.scrolling(ne))},$.settings.scrollingThreshold)}var ue=function(ne){this.element=ne,this.handlers={}},ae={isEmpty:{configurable:!0}};ue.prototype.bind=function(ne,ke){typeof this.handlers[ne]>"u"&&(this.handlers[ne]=[]),this.handlers[ne].push(ke),this.element.addEventListener(ne,ke,!1)},ue.prototype.unbind=function(ne,ke){var Nt=this;this.handlers[ne]=this.handlers[ne].filter(function(At){return!(!ke||At===ke)||(Nt.element.removeEventListener(ne,At,!1),!1)})},ue.prototype.unbindAll=function(){for(var ne in this.handlers)this.unbind(ne)},ae.isEmpty.get=function(){var $=this;return Object.keys(this.handlers).every(function(ne){return 0===$.handlers[ne].length})},Object.defineProperties(ue.prototype,ae);var Me=function(){this.eventElements=[]};function J($){if("function"==typeof window.CustomEvent)return new CustomEvent($);var ne=document.createEvent("CustomEvent");return ne.initCustomEvent($,!1,!1,void 0),ne}function he($,ne,ke,Nt,At){var Wt;if(void 0===Nt&&(Nt=!0),void 0===At&&(At=!1),"top"===ne)Wt=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==ne)throw new Error("A proper axis should be provided");Wt=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function S($,ne,ke,Nt,At){var Wt=ke[0],gi=ke[1],ei=ke[2],$t=ke[3],Fi=ke[4],li=ke[5];void 0===Nt&&(Nt=!0),void 0===At&&(At=!1);var ui=$.element;$.reach[$t]=null,ui[ei]<1&&($.reach[$t]="start"),ui[ei]>$[Wt]-$[gi]-1&&($.reach[$t]="end"),ne&&(ui.dispatchEvent(J("ps-scroll-"+$t)),ne<0?ui.dispatchEvent(J("ps-scroll-"+Fi)):ne>0&&ui.dispatchEvent(J("ps-scroll-"+li)),Nt&&function se($,ne){X($,ne),ie($,ne)}($,$t)),$.reach[$t]&&(ne||At)&&ui.dispatchEvent(J("ps-"+$t+"-reach-"+$.reach[$t]))}($,ke,Wt,Nt,At)}function n($){return parseInt($,10)||0}Me.prototype.eventElement=function(ne){var ke=this.eventElements.filter(function(Nt){return Nt.element===ne})[0];return ke||(ke=new ue(ne),this.eventElements.push(ke)),ke},Me.prototype.bind=function(ne,ke,Nt){this.eventElement(ne).bind(ke,Nt)},Me.prototype.unbind=function(ne,ke,Nt){var At=this.eventElement(ne);At.unbind(ke,Nt),At.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(At),1)},Me.prototype.unbindAll=function(){this.eventElements.forEach(function(ne){return ne.unbindAll()}),this.eventElements=[]},Me.prototype.once=function(ne,ke,Nt){var At=this.eventElement(ne),Wt=function(gi){At.unbind(ke,Wt),Nt(gi)};At.bind(ke,Wt)};var h={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function C($){var ne=$.element,ke=Math.floor(ne.scrollTop),Nt=ne.getBoundingClientRect();$.containerWidth=Math.round(Nt.width),$.containerHeight=Math.round(Nt.height),$.contentWidth=ne.scrollWidth,$.contentHeight=ne.scrollHeight,ne.contains($.scrollbarXRail)||(W(ne,j.element.rail("x")).forEach(function(At){return B(At)}),ne.appendChild($.scrollbarXRail)),ne.contains($.scrollbarYRail)||(W(ne,j.element.rail("y")).forEach(function(At){return B(At)}),ne.appendChild($.scrollbarYRail)),!$.settings.suppressScrollX&&$.containerWidth+$.settings.scrollXMarginOffset<$.contentWidth?($.scrollbarXActive=!0,$.railXWidth=$.containerWidth-$.railXMarginWidth,$.railXRatio=$.containerWidth/$.railXWidth,$.scrollbarXWidth=D($,n($.railXWidth*$.containerWidth/$.contentWidth)),$.scrollbarXLeft=n(($.negativeScrollAdjustment+ne.scrollLeft)*($.railXWidth-$.scrollbarXWidth)/($.contentWidth-$.containerWidth))):$.scrollbarXActive=!1,!$.settings.suppressScrollY&&$.containerHeight+$.settings.scrollYMarginOffset<$.contentHeight?($.scrollbarYActive=!0,$.railYHeight=$.containerHeight-$.railYMarginHeight,$.railYRatio=$.containerHeight/$.railYHeight,$.scrollbarYHeight=D($,n($.railYHeight*$.containerHeight/$.contentHeight)),$.scrollbarYTop=n(ke*($.railYHeight-$.scrollbarYHeight)/($.contentHeight-$.containerHeight))):$.scrollbarYActive=!1,$.scrollbarXLeft>=$.railXWidth-$.scrollbarXWidth&&($.scrollbarXLeft=$.railXWidth-$.scrollbarXWidth),$.scrollbarYTop>=$.railYHeight-$.scrollbarYHeight&&($.scrollbarYTop=$.railYHeight-$.scrollbarYHeight),function O($,ne){var ke={width:ne.railXWidth},Nt=Math.floor($.scrollTop);ke.left=ne.isRtl?ne.negativeScrollAdjustment+$.scrollLeft+ne.containerWidth-ne.contentWidth:$.scrollLeft,ne.isScrollbarXUsingBottom?ke.bottom=ne.scrollbarXBottom-Nt:ke.top=ne.scrollbarXTop+Nt,M(ne.scrollbarXRail,ke);var At={top:Nt,height:ne.railYHeight};ne.isScrollbarYUsingRight?At.right=ne.isRtl?ne.contentWidth-(ne.negativeScrollAdjustment+$.scrollLeft)-ne.scrollbarYRight-ne.scrollbarYOuterWidth-9:ne.scrollbarYRight-$.scrollLeft:At.left=ne.isRtl?ne.negativeScrollAdjustment+$.scrollLeft+2*ne.containerWidth-ne.contentWidth-ne.scrollbarYLeft-ne.scrollbarYOuterWidth:ne.scrollbarYLeft+$.scrollLeft,M(ne.scrollbarYRail,At),M(ne.scrollbarX,{left:ne.scrollbarXLeft,width:ne.scrollbarXWidth-ne.railBorderXWidth}),M(ne.scrollbarY,{top:ne.scrollbarYTop,height:ne.scrollbarYHeight-ne.railBorderYWidth})}(ne,$),$.scrollbarXActive?ne.classList.add(j.state.active("x")):(ne.classList.remove(j.state.active("x")),$.scrollbarXWidth=0,$.scrollbarXLeft=0,ne.scrollLeft=!0===$.isRtl?$.contentWidth:0),$.scrollbarYActive?ne.classList.add(j.state.active("y")):(ne.classList.remove(j.state.active("y")),$.scrollbarYHeight=0,$.scrollbarYTop=0,ne.scrollTop=0)}function D($,ne){return $.settings.minScrollbarLength&&(ne=Math.max(ne,$.settings.minScrollbarLength)),$.settings.maxScrollbarLength&&(ne=Math.min(ne,$.settings.maxScrollbarLength)),ne}function g($,ne){var ke=ne[0],Nt=ne[1],At=ne[2],Wt=ne[3],gi=ne[4],ei=ne[5],$t=ne[6],Fi=ne[7],li=ne[8],ui=$.element,un=null,Ki=null,Mi=null;function on(Ce){Ce.touches&&Ce.touches[0]&&(Ce[At]=Ce.touches[0].pageY),ui[$t]=un+Mi*(Ce[At]-Ki),X($,Fi),C($),Ce.stopPropagation(),Ce.type.startsWith("touch")&&Ce.changedTouches.length>1&&Ce.preventDefault()}function st(){ie($,Fi),$[li].classList.remove(j.state.clicking),$.event.unbind($.ownerDocument,"mousemove",on)}function si(Ce,Mt){un=ui[$t],Mt&&Ce.touches&&(Ce[At]=Ce.touches[0].pageY),Ki=Ce[At],Mi=($[Nt]-$[ke])/($[Wt]-$[ei]),Mt?$.event.bind($.ownerDocument,"touchmove",on):($.event.bind($.ownerDocument,"mousemove",on),$.event.once($.ownerDocument,"mouseup",st),Ce.preventDefault()),$[li].classList.add(j.state.clicking),Ce.stopPropagation()}$.event.bind($[gi],"mousedown",function(Ce){si(Ce)}),$.event.bind($[gi],"touchstart",function(Ce){si(Ce,!0)})}var ct={"click-rail":function v($){$.event.bind($.scrollbarY,"mousedown",function(ke){return ke.stopPropagation()}),$.event.bind($.scrollbarYRail,"mousedown",function(ke){var Nt=ke.pageY-window.pageYOffset-$.scrollbarYRail.getBoundingClientRect().top;$.element.scrollTop+=(Nt>$.scrollbarYTop?1:-1)*$.containerHeight,C($),ke.stopPropagation()}),$.event.bind($.scrollbarX,"mousedown",function(ke){return ke.stopPropagation()}),$.event.bind($.scrollbarXRail,"mousedown",function(ke){var Nt=ke.pageX-window.pageXOffset-$.scrollbarXRail.getBoundingClientRect().left;$.element.scrollLeft+=(Nt>$.scrollbarXLeft?1:-1)*$.containerWidth,C($),ke.stopPropagation()})},"drag-thumb":function r($){g($,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),g($,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function H($){var ne=$.element;$.event.bind($.ownerDocument,"keydown",function(Wt){if(!(Wt.isDefaultPrevented&&Wt.isDefaultPrevented()||Wt.defaultPrevented)&&(z(ne,":hover")||z($.scrollbarX,":focus")||z($.scrollbarY,":focus"))){var gi=document.activeElement?document.activeElement:$.ownerDocument.activeElement;if(gi){if("IFRAME"===gi.tagName)gi=gi.contentDocument.activeElement;else for(;gi.shadowRoot;)gi=gi.shadowRoot.activeElement;if(function s($){return z($,"input,[contenteditable]")||z($,"select,[contenteditable]")||z($,"textarea,[contenteditable]")||z($,"button,[contenteditable]")}(gi))return}var ei=0,$t=0;switch(Wt.which){case 37:ei=Wt.metaKey?-$.contentWidth:Wt.altKey?-$.containerWidth:-30;break;case 38:$t=Wt.metaKey?$.contentHeight:Wt.altKey?$.containerHeight:30;break;case 39:ei=Wt.metaKey?$.contentWidth:Wt.altKey?$.containerWidth:30;break;case 40:$t=Wt.metaKey?-$.contentHeight:Wt.altKey?-$.containerHeight:-30;break;case 32:$t=Wt.shiftKey?$.containerHeight:-$.containerHeight;break;case 33:$t=$.containerHeight;break;case 34:$t=-$.containerHeight;break;case 36:$t=$.contentHeight;break;case 35:$t=-$.contentHeight;break;default:return}$.settings.suppressScrollX&&0!==ei||$.settings.suppressScrollY&&0!==$t||(ne.scrollTop-=$t,ne.scrollLeft+=ei,C($),function At(Wt,gi){var ei=Math.floor(ne.scrollTop);if(0===Wt){if(!$.scrollbarYActive)return!1;if(0===ei&&gi>0||ei>=$.contentHeight-$.containerHeight&&gi<0)return!$.settings.wheelPropagation}var $t=ne.scrollLeft;if(0===gi){if(!$.scrollbarXActive)return!1;if(0===$t&&Wt<0||$t>=$.contentWidth-$.containerWidth&&Wt>0)return!$.settings.wheelPropagation}return!0}(ei,$t)&&Wt.preventDefault())}})},wheel:function R($){var ne=$.element;function Wt(gi){var ei=function Nt(gi){var ei=gi.deltaX,$t=-1*gi.deltaY;return(typeof ei>"u"||typeof $t>"u")&&(ei=-1*gi.wheelDeltaX/6,$t=gi.wheelDeltaY/6),gi.deltaMode&&1===gi.deltaMode&&(ei*=10,$t*=10),ei!=ei&&$t!=$t&&(ei=0,$t=gi.wheelDelta),gi.shiftKey?[-$t,-ei]:[ei,$t]}(gi),$t=ei[0],Fi=ei[1];if(!function At(gi,ei,$t){if(!h.isWebKit&&ne.querySelector("select:focus"))return!0;if(!ne.contains(gi))return!1;for(var Fi=gi;Fi&&Fi!==ne;){if(Fi.classList.contains(j.element.consuming))return!0;var li=E(Fi);if($t&&li.overflowY.match(/(scroll|auto)/)){var ui=Fi.scrollHeight-Fi.clientHeight;if(ui>0&&(Fi.scrollTop>0&&$t<0||Fi.scrollTop0))return!0}if(ei&&li.overflowX.match(/(scroll|auto)/)){var un=Fi.scrollWidth-Fi.clientWidth;if(un>0&&(Fi.scrollLeft>0&&ei<0||Fi.scrollLeft0))return!0}Fi=Fi.parentNode}return!1}(gi.target,$t,Fi)){var li=!1;$.settings.useBothWheelAxes?$.scrollbarYActive&&!$.scrollbarXActive?(Fi?ne.scrollTop-=Fi*$.settings.wheelSpeed:ne.scrollTop+=$t*$.settings.wheelSpeed,li=!0):$.scrollbarXActive&&!$.scrollbarYActive&&($t?ne.scrollLeft+=$t*$.settings.wheelSpeed:ne.scrollLeft-=Fi*$.settings.wheelSpeed,li=!0):(ne.scrollTop-=Fi*$.settings.wheelSpeed,ne.scrollLeft+=$t*$.settings.wheelSpeed),C($),li=li||function ke(gi,ei){var $t=Math.floor(ne.scrollTop),Fi=0===ne.scrollTop,li=$t+ne.offsetHeight===ne.scrollHeight,ui=0===ne.scrollLeft,un=ne.scrollLeft+ne.offsetWidth===ne.scrollWidth;return!(Math.abs(ei)>Math.abs(gi)?Fi||li:ui||un)||!$.settings.wheelPropagation}($t,Fi),li&&!gi.ctrlKey&&(gi.stopPropagation(),gi.preventDefault())}}typeof window.onwheel<"u"?$.event.bind(ne,"wheel",Wt):typeof window.onmousewheel<"u"&&$.event.bind(ne,"mousewheel",Wt)},touch:function ee($){if(h.supportsTouch||h.supportsIePointer){var ne=$.element,At={},Wt=0,gi={},ei=null;h.supportsTouch?($.event.bind(ne,"touchstart",li),$.event.bind(ne,"touchmove",un),$.event.bind(ne,"touchend",Ki)):h.supportsIePointer&&(window.PointerEvent?($.event.bind(ne,"pointerdown",li),$.event.bind(ne,"pointermove",un),$.event.bind(ne,"pointerup",Ki)):window.MSPointerEvent&&($.event.bind(ne,"MSPointerDown",li),$.event.bind(ne,"MSPointerMove",un),$.event.bind(ne,"MSPointerUp",Ki)))}function Nt(Mi,on){ne.scrollTop-=on,ne.scrollLeft-=Mi,C($)}function $t(Mi){return Mi.targetTouches?Mi.targetTouches[0]:Mi}function Fi(Mi){return!(Mi.pointerType&&"pen"===Mi.pointerType&&0===Mi.buttons||!(Mi.targetTouches&&1===Mi.targetTouches.length||Mi.pointerType&&"mouse"!==Mi.pointerType&&Mi.pointerType!==Mi.MSPOINTER_TYPE_MOUSE))}function li(Mi){if(Fi(Mi)){var on=$t(Mi);At.pageX=on.pageX,At.pageY=on.pageY,Wt=(new Date).getTime(),null!==ei&&clearInterval(ei)}}function un(Mi){if(Fi(Mi)){var on=$t(Mi),st={pageX:on.pageX,pageY:on.pageY},si=st.pageX-At.pageX,Ce=st.pageY-At.pageY;if(function ui(Mi,on,st){if(!ne.contains(Mi))return!1;for(var si=Mi;si&&si!==ne;){if(si.classList.contains(j.element.consuming))return!0;var Ce=E(si);if(st&&Ce.overflowY.match(/(scroll|auto)/)){var Mt=si.scrollHeight-si.clientHeight;if(Mt>0&&(si.scrollTop>0&&st<0||si.scrollTop0))return!0}if(on&&Ce.overflowX.match(/(scroll|auto)/)){var Ht=si.scrollWidth-si.clientWidth;if(Ht>0&&(si.scrollLeft>0&&on<0||si.scrollLeft0))return!0}si=si.parentNode}return!1}(Mi.target,si,Ce))return;Nt(si,Ce),At=st;var Mt=(new Date).getTime(),Ht=Mt-Wt;Ht>0&&(gi.x=si/Ht,gi.y=Ce/Ht,Wt=Mt),function ke(Mi,on){var st=Math.floor(ne.scrollTop),si=ne.scrollLeft,Ce=Math.abs(Mi),Mt=Math.abs(on);if(Mt>Ce){if(on<0&&st===$.contentHeight-$.containerHeight||on>0&&0===st)return 0===window.scrollY&&on>0&&h.isChrome}else if(Ce>Mt&&(Mi<0&&si===$.contentWidth-$.containerWidth||Mi>0&&0===si))return!0;return!0}(si,Ce)&&Mi.preventDefault()}}function Ki(){$.settings.swipeEasing&&(clearInterval(ei),ei=setInterval(function(){$.isInitialized?clearInterval(ei):gi.x||gi.y?Math.abs(gi.x)<.01&&Math.abs(gi.y)<.01?clearInterval(ei):$.element?(Nt(30*gi.x,30*gi.y),gi.x*=.8,gi.y*=.8):clearInterval(ei):clearInterval(ei)},10))}}},Ke=function(ne,ke){var Nt=this;if(void 0===ke&&(ke={}),"string"==typeof ne&&(ne=document.querySelector(ne)),!ne||!ne.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var At in this.element=ne,ne.classList.add(j.main),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},ke)this.settings[At]=ke[At];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var li,Fi,Wt=function(){return ne.classList.add(j.state.focus)},gi=function(){return ne.classList.remove(j.state.focus)};this.isRtl="rtl"===E(ne).direction,!0===this.isRtl&&ne.classList.add(j.rtl),this.isNegativeScroll=(Fi=ne.scrollLeft,ne.scrollLeft=-1,li=ne.scrollLeft<0,ne.scrollLeft=Fi,li),this.negativeScrollAdjustment=this.isNegativeScroll?ne.scrollWidth-ne.clientWidth:0,this.event=new Me,this.ownerDocument=ne.ownerDocument||document,this.scrollbarXRail=I(j.element.rail("x")),ne.appendChild(this.scrollbarXRail),this.scrollbarX=I(j.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Wt),this.event.bind(this.scrollbarX,"blur",gi),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var ei=E(this.scrollbarXRail);this.scrollbarXBottom=parseInt(ei.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=n(ei.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=n(ei.borderLeftWidth)+n(ei.borderRightWidth),M(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=n(ei.marginLeft)+n(ei.marginRight),M(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=I(j.element.rail("y")),ne.appendChild(this.scrollbarYRail),this.scrollbarY=I(j.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Wt),this.event.bind(this.scrollbarY,"blur",gi),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var $t=E(this.scrollbarYRail);this.scrollbarYRight=parseInt($t.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=n($t.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function f($){var ne=E($);return n(ne.width)+n(ne.paddingLeft)+n(ne.paddingRight)+n(ne.borderLeftWidth)+n(ne.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=n($t.borderTopWidth)+n($t.borderBottomWidth),M(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=n($t.marginTop)+n($t.marginBottom),M(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:ne.scrollLeft<=0?"start":ne.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:ne.scrollTop<=0?"start":ne.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Fi){return ct[Fi](Nt)}),this.lastScrollTop=Math.floor(ne.scrollTop),this.lastScrollLeft=ne.scrollLeft,this.event.bind(this.element,"scroll",function(Fi){return Nt.onScroll(Fi)}),C(this)};Ke.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,M(this.scrollbarXRail,{display:"block"}),M(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=n(E(this.scrollbarXRail).marginLeft)+n(E(this.scrollbarXRail).marginRight),this.railYMarginHeight=n(E(this.scrollbarYRail).marginTop)+n(E(this.scrollbarYRail).marginBottom),M(this.scrollbarXRail,{display:"none"}),M(this.scrollbarYRail,{display:"none"}),C(this),he(this,"top",0,!1,!0),he(this,"left",0,!1,!0),M(this.scrollbarXRail,{display:""}),M(this.scrollbarYRail,{display:""}))},Ke.prototype.onScroll=function(ne){this.isAlive&&(C(this),he(this,"top",this.element.scrollTop-this.lastScrollTop),he(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},Ke.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),B(this.scrollbarX),B(this.scrollbarY),B(this.scrollbarXRail),B(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},Ke.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(ne){return!ne.match(/^ps([-_].+|)$/)}).join(" ")};const Je=Ke;var ye=function(){if(typeof Map<"u")return Map;function $(ne,ke){var Nt=-1;return ne.some(function(At,Wt){return At[0]===ke&&(Nt=Wt,!0)}),Nt}return function(){function ne(){this.__entries__=[]}return Object.defineProperty(ne.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),ne.prototype.get=function(ke){var Nt=$(this.__entries__,ke),At=this.__entries__[Nt];return At&&At[1]},ne.prototype.set=function(ke,Nt){var At=$(this.__entries__,ke);~At?this.__entries__[At][1]=Nt:this.__entries__.push([ke,Nt])},ne.prototype.delete=function(ke){var Nt=this.__entries__,At=$(Nt,ke);~At&&Nt.splice(At,1)},ne.prototype.has=function(ke){return!!~$(this.__entries__,ke)},ne.prototype.clear=function(){this.__entries__.splice(0)},ne.prototype.forEach=function(ke,Nt){void 0===Nt&&(Nt=null);for(var At=0,Wt=this.__entries__;At0},$.prototype.connect_=function(){!fe||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),ve?(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)},$.prototype.disconnect_=function(){!fe||!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)},$.prototype.onTransitionEnd_=function(ne){var ke=ne.propertyName,Nt=void 0===ke?"":ke;re.some(function(Wt){return!!~Nt.indexOf(Wt)})&&this.refresh()},$.getInstance=function(){return this.instance_||(this.instance_=new $),this.instance_},$.instance_=null,$}(),Ze=function($,ne){for(var ke=0,Nt=Object.keys(ne);ke"u")&&Element instanceof Object){if(!(ne instanceof We(ne).Element))throw new TypeError('parameter 1 is not of type "Element".');var ke=this.observations_;ke.has(ne)||(ke.set(ne,new dt(ne)),this.controller_.addObserver(this),this.controller_.refresh())}},$.prototype.unobserve=function(ne){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(ne instanceof We(ne).Element))throw new TypeError('parameter 1 is not of type "Element".');var ke=this.observations_;ke.has(ne)&&(ke.delete(ne),ke.size||this.controller_.removeObserver(this))}},$.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},$.prototype.gatherActive=function(){var ne=this;this.clearActive(),this.observations_.forEach(function(ke){ke.isActive()&&ne.activeObservations_.push(ke)})},$.prototype.broadcastActive=function(){if(this.hasActive()){var ne=this.callbackCtx_,ke=this.activeObservations_.map(function(Nt){return new te(Nt.target,Nt.broadcastRect())});this.callback_.call(ne,ke,ne),this.clearActive()}},$.prototype.clearActive=function(){this.activeObservations_.splice(0)},$.prototype.hasActive=function(){return this.activeObservations_.length>0},$}(),Bt=typeof WeakMap<"u"?new WeakMap:new ye,Ye=function $(ne){if(!(this instanceof $))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var ke=ce.getInstance(),Nt=new Ue(ne,ke,this);Bt.set(this,Nt)};["observe","unobserve","disconnect"].forEach(function($){Ye.prototype[$]=function(){var ne;return(ne=Bt.get(this))[$].apply(ne,arguments)}});const Ft=typeof de.ResizeObserver<"u"?de.ResizeObserver:Ye;function xt($,ne){if(1&$&&(P.TgZ(0,"div",3),P._UZ(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),P.qZA()),2&$){const ke=P.oxw();P.ekj("ps-at-top",ke.states.top)("ps-at-left",ke.states.left)("ps-at-right",ke.states.right)("ps-at-bottom",ke.states.bottom),P.xp6(1),P.ekj("ps-indicator-show",ke.indicatorY&&ke.interaction),P.xp6(1),P.ekj("ps-indicator-show",ke.indicatorX&&ke.interaction),P.xp6(1),P.ekj("ps-indicator-show",ke.indicatorX&&ke.interaction),P.xp6(1),P.ekj("ps-indicator-show",ke.indicatorY&&ke.interaction)}}const Ot=["*"],yt=new P.OlP("PERFECT_SCROLLBAR_CONFIG");class at{constructor(ne,ke,Nt,At){this.x=ne,this.y=ke,this.w=Nt,this.h=At}}class Ee{constructor(ne,ke){this.x=ne,this.y=ke}}const nt=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class Ge{constructor(ne={}){this.assign(ne)}assign(ne={}){for(const ke in ne)this[ke]=ne[ke]}}let Xe=(()=>{class ${constructor(ke,Nt,At,Wt,gi){this.zone=ke,this.differs=Nt,this.elementRef=At,this.platformId=Wt,this.defaults=gi,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new e.x,this.disabled=!1,this.psScrollY=new P.vpe,this.psScrollX=new P.vpe,this.psScrollUp=new P.vpe,this.psScrollDown=new P.vpe,this.psScrollLeft=new P.vpe,this.psScrollRight=new P.vpe,this.psYReachEnd=new P.vpe,this.psYReachStart=new P.vpe,this.psXReachEnd=new P.vpe,this.psXReachStart=new P.vpe}ngOnInit(){if(!this.disabled&&(0,d.NF)(this.platformId)){const ke=new Ge(this.defaults);ke.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new Je(this.elementRef.nativeElement,ke)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new Ft(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{nt.forEach(Nt=>{const At=Nt.replace(/([A-Z])/g,Wt=>`-${Wt.toLowerCase()}`);(0,t.R)(this.elementRef.nativeElement,At).pipe((0,A.e)(20),(0,l.R)(this.ngDestroy)).subscribe(Wt=>{this[Nt].emit(Wt)})})})}}ngOnDestroy(){(0,d.NF)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&typeof window<"u"&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,d.NF)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(ke){ke.disabled&&!ke.disabled.isFirstChange()&&(0,d.NF)(this.platformId)&&ke.disabled.currentValue!==ke.disabled.previousValue&&(!0===ke.disabled.currentValue?this.ngOnDestroy():!1===ke.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){typeof window<"u"&&(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{}},0))}geometry(ke="scroll"){return new at(this.elementRef.nativeElement[ke+"Left"],this.elementRef.nativeElement[ke+"Top"],this.elementRef.nativeElement[ke+"Width"],this.elementRef.nativeElement[ke+"Height"])}position(ke=!1){return!ke&&this.instance?new Ee(this.instance.reach.x||0,this.instance.reach.y||0):new Ee(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(ke="any"){const Nt=this.elementRef.nativeElement;return"any"===ke?Nt.classList.contains("ps--active-x")||Nt.classList.contains("ps--active-y"):"both"===ke?Nt.classList.contains("ps--active-x")&&Nt.classList.contains("ps--active-y"):Nt.classList.contains("ps--active-"+ke)}scrollTo(ke,Nt,At){this.disabled||(null==Nt&&null==At?this.animateScrolling("scrollTop",ke,At):(null!=ke&&this.animateScrolling("scrollLeft",ke,At),null!=Nt&&this.animateScrolling("scrollTop",Nt,At)))}scrollToX(ke,Nt){this.animateScrolling("scrollLeft",ke,Nt)}scrollToY(ke,Nt){this.animateScrolling("scrollTop",ke,Nt)}scrollToTop(ke,Nt){this.animateScrolling("scrollTop",ke||0,Nt)}scrollToLeft(ke,Nt){this.animateScrolling("scrollLeft",ke||0,Nt)}scrollToRight(ke,Nt){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(ke||0),Nt)}scrollToBottom(ke,Nt){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(ke||0),Nt)}scrollToElement(ke,Nt,At){if("string"==typeof ke&&(ke=this.elementRef.nativeElement.querySelector(ke)),ke){const Wt=ke.getBoundingClientRect(),gi=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Wt.left-gi.left+this.elementRef.nativeElement.scrollLeft+(Nt||0),At),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Wt.top-gi.top+this.elementRef.nativeElement.scrollTop+(Nt||0),At)}}animateScrolling(ke,Nt,At){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!At||typeof window>"u")this.elementRef.nativeElement[ke]=Nt;else if(Nt!==this.elementRef.nativeElement[ke]){let Wt=0,gi=0,ei=performance.now(),$t=this.elementRef.nativeElement[ke];const Fi=($t-Nt)/2,li=ui=>{gi+=Math.PI/(At/(ui-ei)),Wt=Math.round(Nt+Fi+Fi*Math.cos(gi)),this.elementRef.nativeElement[ke]===$t&&(gi>=Math.PI?this.animateScrolling(ke,Nt,0):(this.elementRef.nativeElement[ke]=Wt,$t=this.elementRef.nativeElement[ke],ei=ui,this.animation=window.requestAnimationFrame(li)))};window.requestAnimationFrame(li)}}}return $.\u0275fac=function(ke){return new(ke||$)(P.Y36(P.R0b),P.Y36(P.aQg),P.Y36(P.SBq),P.Y36(P.Lbi),P.Y36(yt,8))},$.\u0275dir=P.lG2({type:$,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:[P.TTD]}),$})(),gt=(()=>{class ${constructor(ke,Nt,At){this.zone=ke,this.cdRef=Nt,this.platformId=At,this.states={},this.indicatorX=!1,this.indicatorY=!1,this.interaction=!1,this.scrollPositionX=0,this.scrollPositionY=0,this.scrollDirectionX=0,this.scrollDirectionY=0,this.usePropagationX=!1,this.usePropagationY=!1,this.allowPropagationX=!1,this.allowPropagationY=!1,this.stateTimeout=null,this.ngDestroy=new e.x,this.stateUpdate=new e.x,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new P.vpe,this.psScrollX=new P.vpe,this.psScrollUp=new P.vpe,this.psScrollDown=new P.vpe,this.psScrollLeft=new P.vpe,this.psScrollRight=new P.vpe,this.psYReachEnd=new P.vpe,this.psYReachStart=new P.vpe,this.psXReachEnd=new P.vpe,this.psXReachStart=new P.vpe}ngOnInit(){(0,d.NF)(this.platformId)&&(this.stateUpdate.pipe((0,l.R)(this.ngDestroy),(0,w.x)((ke,Nt)=>ke===Nt&&!this.stateTimeout)).subscribe(ke=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===ke||"y"===ke?(this.interaction=!1,"x"===ke?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===ke&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===ke||"right"===ke?(this.states.left=!1,this.states.right=!1,this.states[ke]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===ke||"bottom"===ke)&&(this.states.top=!1,this.states.bottom=!1,this.states[ke]=!0,this.autoPropagation&&this.usePropagationY&&(this.indicatorY=!0)),this.autoPropagation&&typeof window<"u"&&(this.stateTimeout=window.setTimeout(()=>{this.indicatorX=!1,this.indicatorY=!1,this.stateTimeout=null,this.interaction&&(this.states.left||this.states.right)&&(this.allowPropagationX=!0),this.interaction&&(this.states.top||this.states.bottom)&&(this.allowPropagationY=!0),this.cdRef.markForCheck()},500))),this.cdRef.markForCheck(),this.cdRef.detectChanges()}),this.zone.runOutsideAngular(()=>{if(this.directiveRef){const ke=this.directiveRef.elementRef.nativeElement;(0,t.R)(ke,"wheel").pipe((0,l.R)(this.ngDestroy)).subscribe(Nt=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(Nt,Nt.deltaX,Nt.deltaY)}),(0,t.R)(ke,"touchmove").pipe((0,l.R)(this.ngDestroy)).subscribe(Nt=>{if(!this.disabled&&this.autoPropagation){const At=Nt.touches[0].clientX,Wt=Nt.touches[0].clientY;this.checkPropagation(Nt,At-this.scrollPositionX,Wt-this.scrollPositionY),this.scrollPositionX=At,this.scrollPositionY=Wt}}),(0,y.T)((0,t.R)(ke,"ps-scroll-x").pipe((0,m.h)("x")),(0,t.R)(ke,"ps-scroll-y").pipe((0,m.h)("y")),(0,t.R)(ke,"ps-x-reach-end").pipe((0,m.h)("right")),(0,t.R)(ke,"ps-y-reach-end").pipe((0,m.h)("bottom")),(0,t.R)(ke,"ps-x-reach-start").pipe((0,m.h)("left")),(0,t.R)(ke,"ps-y-reach-start").pipe((0,m.h)("top"))).pipe((0,l.R)(this.ngDestroy)).subscribe(Nt=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(Nt)})}}),window.setTimeout(()=>{nt.forEach(ke=>{this.directiveRef&&(this.directiveRef[ke]=this[ke])})},0))}ngOnDestroy(){(0,d.NF)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,d.NF)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const ke=this.directiveRef.elementRef.nativeElement;this.usePropagationX=ke.classList.contains("ps--active-x"),this.usePropagationY=ke.classList.contains("ps--active-y")}}checkPropagation(ke,Nt,At){this.interaction=!0;const Wt=Nt<0?-1:1,gi=At<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==Wt)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==gi))&&(ke.preventDefault(),ke.stopPropagation()),Nt&&(this.scrollDirectionX=Wt),At&&(this.scrollDirectionY=gi),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return $.\u0275fac=function(ke){return new(ke||$)(P.Y36(P.R0b),P.Y36(P.sBO),P.Y36(P.Lbi))},$.\u0275cmp=P.Xpm({type:$,selectors:[["perfect-scrollbar"]],viewQuery:function(ke,Nt){if(1&ke&&P.Gf(Xe,7),2&ke){let At;P.iGM(At=P.CRH())&&(Nt.directiveRef=At.first)}},hostVars:4,hostBindings:function(ke,Nt){2&ke&&P.ekj("ps-show-limits",Nt.autoPropagation)("ps-show-active",Nt.scrollIndicators)},inputs:{disabled:"disabled",usePSClass:"usePSClass",autoPropagation:"autoPropagation",scrollIndicators:"scrollIndicators",config:"config"},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],ngContentSelectors:Ot,decls:4,vars:5,consts:[[2,"position","static",3,"perfectScrollbar","disabled"],[1,"ps-content"],["class","ps-overlay",3,"ps-at-top","ps-at-left","ps-at-right","ps-at-bottom",4,"ngIf"],[1,"ps-overlay"],[1,"ps-indicator-top"],[1,"ps-indicator-left"],[1,"ps-indicator-right"],[1,"ps-indicator-bottom"]],template:function(ke,Nt){1&ke&&(P.F$t(),P.TgZ(0,"div",0)(1,"div",1),P.Hsn(2),P.qZA(),P.YNc(3,xt,5,16,"div",2),P.qZA()),2&ke&&(P.ekj("ps",Nt.usePSClass),P.Q6J("perfectScrollbar",Nt.config)("disabled",Nt.disabled),P.xp6(3),P.Q6J("ngIf",Nt.scrollIndicators))},dependencies:[Xe,d.O5],styles:["perfect-scrollbar{position:relative;display:block;overflow:hidden;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar[hidden]{display:none}perfect-scrollbar[fxflex]{display:flex;flex-direction:column;height:auto;min-width:0;min-height:0}perfect-scrollbar[fxflex]>.ps{flex:1 1 auto;width:auto;height:auto;min-width:0;min-height:0;-webkit-box-flex:1}perfect-scrollbar[fxlayout]>.ps,perfect-scrollbar[fxlayout]>.ps>.ps-content{display:flex;flex:1 1 auto;flex-direction:inherit;align-items:inherit;align-content:inherit;justify-content:inherit;width:100%;height:100%;-webkit-box-align:inherit;-webkit-box-flex:1;-webkit-box-pack:inherit}perfect-scrollbar[fxlayout=row]>.ps,perfect-scrollbar[fxlayout=row]>.ps>.ps-content{flex-direction:row!important}perfect-scrollbar[fxlayout=column]>.ps,perfect-scrollbar[fxlayout=column]>.ps>.ps-content{flex-direction:column!important}perfect-scrollbar>.ps{position:static;display:block;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar>.ps textarea{-ms-overflow-style:scrollbar}perfect-scrollbar>.ps>.ps-overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:block;overflow:hidden;pointer-events:none}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{position:absolute;opacity:0;transition:opacity .3s ease-in-out}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{left:0;min-width:100%;min-height:24px}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{top:0;min-width:24px;min-height:100%}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top{top:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left{left:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{right:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{bottom:0}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y{top:0!important;right:0!important;left:auto!important;width:10px;cursor:default;transition:width .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y:hover,perfect-scrollbar>.ps.ps--active-y>.ps__rail-y.ps--clicking{width:15px}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x{top:auto!important;bottom:0!important;left:0!important;height:10px;cursor:default;transition:height .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x:hover,perfect-scrollbar>.ps.ps--active-x>.ps__rail-x.ps--clicking{height:15px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-y{margin:0 0 10px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-x{margin:0 10px 0 0}perfect-scrollbar>.ps.ps--scrolling-y>.ps__rail-y,perfect-scrollbar>.ps.ps--scrolling-x>.ps__rail-x{opacity:.9;background-color:#eee}perfect-scrollbar.ps-show-always>.ps.ps--active-y>.ps__rail-y,perfect-scrollbar.ps-show-always>.ps.ps--active-x>.ps__rail-x{opacity:.6}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-top) .ps-indicator-top{opacity:1;background:linear-gradient(to bottom,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom{opacity:1;background:linear-gradient(to top,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-left) .ps-indicator-left{opacity:1;background:linear-gradient(to right,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-right) .ps-indicator-right{opacity:1;background:linear-gradient(to left,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top{background:linear-gradient(to bottom,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom{background:linear-gradient(to top,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left{background:linear-gradient(to right,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right{background:linear-gradient(to left,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right.ps-indicator-show{opacity:1}\n",".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:0px;position:absolute}.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:15px;right:0;position:absolute}.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:#eee;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:6px;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:6px;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:11px}.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:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}\n"],encapsulation:2}),$})(),be=(()=>{class ${}return $.\u0275fac=function(ke){return new(ke||$)},$.\u0275mod=P.oAB({type:$}),$.\u0275inj=P.cJS({imports:[[d.ez],d.ez]}),$})()},5861:(Fe,q,p)=>{"use strict";function e(y,A,l,w,m,P,d){try{var E=y[P](d),M=E.value}catch(I){return void l(I)}E.done?A(M):Promise.resolve(M).then(w,m)}function t(y){return function(){var A=this,l=arguments;return new Promise(function(w,m){var P=y.apply(A,l);function d(M){e(P,w,m,d,E,"next",M)}function E(M){e(P,w,m,d,E,"throw",M)}d(void 0)})}}p.d(q,{Z:()=>t})},7582:(Fe,q,p)=>{"use strict";function l(r,g,H,R){var ct,ee=arguments.length,De=ee<3?g:null===R?R=Object.getOwnPropertyDescriptor(g,H):R;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)De=Reflect.decorate(r,g,H,R);else for(var Ke=r.length-1;Ke>=0;Ke--)(ct=r[Ke])&&(De=(ee<3?ct(De):ee>3?ct(g,H,De):ct(g,H))||De);return ee>3&&De&&Object.defineProperty(g,H,De),De}function I(r,g,H,R){return new(H||(H=Promise))(function(De,ct){function Ke(fe){try{ye(R.next(fe))}catch(de){ct(de)}}function Je(fe){try{ye(R.throw(fe))}catch(de){ct(de)}}function ye(fe){fe.done?De(fe.value):function ee(De){return De instanceof H?De:new H(function(ct){ct(De)})}(fe.value).then(Ke,Je)}ye((R=R.apply(r,g||[])).next())})}function se(r){return this instanceof se?(this.v=r,this):new se(r)}function ue(r,g,H){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var ee,R=H.apply(r,g||[]),De=[];return ee={},ct("next"),ct("throw"),ct("return"),ee[Symbol.asyncIterator]=function(){return this},ee;function ct(xe){R[xe]&&(ee[xe]=function(le){return new Promise(function(pe,qe){De.push([xe,le,pe,qe])>1||Ke(xe,le)})})}function Ke(xe,le){try{!function Je(xe){xe.value instanceof se?Promise.resolve(xe.value.v).then(ye,fe):de(De[0][2],xe)}(R[xe](le))}catch(pe){de(De[0][3],pe)}}function ye(xe){Ke("next",xe)}function fe(xe){Ke("throw",xe)}function de(xe,le){xe(le),De.shift(),De.length&&Ke(De[0][0],De[0][1])}}function Me(r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var H,g=r[Symbol.asyncIterator];return g?g.call(r):(r=function W(r){var g="function"==typeof Symbol&&Symbol.iterator,H=g&&r[g],R=0;if(H)return H.call(r);if(r&&"number"==typeof r.length)return{next:function(){return r&&R>=r.length&&(r=void 0),{value:r&&r[R++],done:!r}}};throw new TypeError(g?"Object is not iterable.":"Symbol.iterator is not defined.")}(r),H={},R("next"),R("throw"),R("return"),H[Symbol.asyncIterator]=function(){return this},H);function R(De){H[De]=r[De]&&function(ct){return new Promise(function(Ke,Je){!function ee(De,ct,Ke,Je){Promise.resolve(Je).then(function(ye){De({value:ye,done:Ke})},ct)}(Ke,Je,(ct=r[De](ct)).done,ct.value)})}}}p.d(q,{FC:()=>ue,KL:()=>Me,gn:()=>l,mG:()=>I,qq:()=>se}),"function"==typeof SuppressedError&&SuppressedError},4946:Fe=>{"use strict";Fe.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:Fe=>{"use strict";Fe.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:Fe=>{"use strict";Fe.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:Fe=>{"use strict";Fe.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:Fe=>{"use strict";Fe.exports={i8:"6.5.4"}},2562:Fe=>{"use strict";Fe.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"}')}},Fe=>{Fe(Fe.s=9941)}]); \ No newline at end of file diff --git a/frontend/polyfills.251f7d1d1d52e451.js b/frontend/polyfills.251f7d1d1d52e451.js deleted file mode 100644 index 3d6c1ad7..00000000 --- a/frontend/polyfills.251f7d1d1d52e451.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[429],{5321:(De,de,J)=>{window.global=window,window.global.Buffer=window.global.Buffer||J(9007).Buffer},9919:(De,de)=>{"use strict";de.byteLength=function f(I){var M=L(I),Te=M[1];return 3*(M[0]+Te)/4-Te},de.toByteArray=function we(I){var M,ne,D=L(I),Te=D[0],ye=D[1],he=new ve(function oe(I,M,D){return 3*(M+D)/4-D}(0,Te,ye)),ge=0,Le=ye>0?Te-4:Te;for(ne=0;ne>16&255,he[ge++]=M>>8&255,he[ge++]=255&M;return 2===ye&&(M=O[I.charCodeAt(ne)]<<2|O[I.charCodeAt(ne+1)]>>4,he[ge++]=255&M),1===ye&&(M=O[I.charCodeAt(ne)]<<10|O[I.charCodeAt(ne+1)]<<4|O[I.charCodeAt(ne+2)]>>2,he[ge++]=M>>8&255,he[ge++]=255&M),he},de.fromByteArray=function U(I){for(var M,D=I.length,Te=D%3,ye=[],ge=0,Le=D-Te;geLe?Le:ge+16383));return 1===Te?ye.push(J[(M=I[D-1])>>2]+J[M<<4&63]+"=="):2===Te&&ye.push(J[(M=(I[D-2]<<8)+I[D-1])>>10]+J[M>>4&63]+J[M<<2&63]+"="),ye.join("")};for(var J=[],O=[],ve=typeof Uint8Array<"u"?Uint8Array:Array,me="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",Q=0;Q<64;++Q)J[Q]=me[Q],O[me.charCodeAt(Q)]=Q;function L(I){var M=I.length;if(M%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var D=I.indexOf("=");return-1===D&&(D=M),[D,D===M?0:4-D%4]}function ae(I){return J[I>>18&63]+J[I>>12&63]+J[I>>6&63]+J[63&I]}function ce(I,M,D){for(var ye=[],he=M;he{"use strict";var O=J(9919),ve=J(2601),me="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;de.Buffer=f,de.SlowBuffer=function he(n){return+n!=n&&(n=0),f.alloc(+n)},de.INSPECT_MAX_BYTES=50;var Q=2147483647;function L(n){if(n>Q)throw new RangeError('The value "'+n+'" is invalid for option "size"');var e=new Uint8Array(n);return Object.setPrototypeOf(e,f.prototype),e}function f(n,e,t){if("number"==typeof n){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return ce(n)}return oe(n,e,t)}function oe(n,e,t){if("string"==typeof n)return function U(n,e){if(("string"!=typeof e||""===e)&&(e="utf8"),!f.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var t=0|ge(n,e),i=L(t),a=i.write(n,e);return a!==t&&(i=i.slice(0,a)),i}(n,e);if(ArrayBuffer.isView(n))return function M(n){if(Fe(n,Uint8Array)){var e=new Uint8Array(n);return D(e.buffer,e.byteOffset,e.byteLength)}return I(n)}(n);if(null==n)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof n);if(Fe(n,ArrayBuffer)||n&&Fe(n.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Fe(n,SharedArrayBuffer)||n&&Fe(n.buffer,SharedArrayBuffer)))return D(n,e,t);if("number"==typeof n)throw new TypeError('The "value" argument must not be of type number. Received type number');var i=n.valueOf&&n.valueOf();if(null!=i&&i!==n)return f.from(i,e,t);var a=function Te(n){if(f.isBuffer(n)){var e=0|ye(n.length),t=L(e);return 0===t.length||n.copy(t,0,0,e),t}return void 0!==n.length?"number"!=typeof n.length||Ge(n.length)?L(0):I(n):"Buffer"===n.type&&Array.isArray(n.data)?I(n.data):void 0}(n);if(a)return a;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof n[Symbol.toPrimitive])return f.from(n[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof n)}function we(n){if("number"!=typeof n)throw new TypeError('"size" argument must be of type number');if(n<0)throw new RangeError('The value "'+n+'" is invalid for option "size"')}function ce(n){return we(n),L(n<0?0:0|ye(n))}function I(n){for(var e=n.length<0?0:0|ye(n.length),t=L(e),i=0;i=Q)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Q.toString(16)+" bytes");return 0|n}function ge(n,e){if(f.isBuffer(n))return n.length;if(ArrayBuffer.isView(n)||Fe(n,ArrayBuffer))return n.byteLength;if("string"!=typeof n)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof n);var t=n.length,i=arguments.length>2&&!0===arguments[2];if(!i&&0===t)return 0;for(var a=!1;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return Ke(n).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return ct(n).length;default:if(a)return i?-1:Ke(n).length;e=(""+e).toLowerCase(),a=!0}}function Le(n,e,t){var i=!1;if((void 0===e||e<0)&&(e=0),e>this.length||((void 0===t||t>this.length)&&(t=this.length),t<=0)||(t>>>=0)<=(e>>>=0))return"";for(n||(n="utf8");;)switch(n){case"hex":return lt(this,e,t);case"utf8":case"utf-8":return Pe(this,e,t);case"ascii":return it(this,e,t);case"latin1":case"binary":return ze(this,e,t);case"base64":return He(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ft(this,e,t);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(n+"").toLowerCase(),i=!0}}function ne(n,e,t){var i=n[e];n[e]=n[t],n[t]=i}function We(n,e,t,i,a){if(0===n.length)return-1;if("string"==typeof t?(i=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),Ge(t=+t)&&(t=a?0:n.length-1),t<0&&(t=n.length+t),t>=n.length){if(a)return-1;t=n.length-1}else if(t<0){if(!a)return-1;t=0}if("string"==typeof e&&(e=f.from(e,i)),f.isBuffer(e))return 0===e.length?-1:Ye(n,e,t,i,a);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?a?Uint8Array.prototype.indexOf.call(n,e,t):Uint8Array.prototype.lastIndexOf.call(n,e,t):Ye(n,[e],t,i,a);throw new TypeError("val must be string, number or Buffer")}function Ye(n,e,t,i,a){var c,y=1,r=n.length,s=e.length;if(void 0!==i&&("ucs2"===(i=String(i).toLowerCase())||"ucs-2"===i||"utf16le"===i||"utf-16le"===i)){if(n.length<2||e.length<2)return-1;y=2,r/=2,s/=2,t/=2}function u(g,S){return 1===y?g[S]:g.readUInt16BE(S*y)}if(a){var h=-1;for(c=t;cr&&(t=r-s),c=t;c>=0;c--){for(var d=!0,w=0;wa&&(i=a):i=a;var y=e.length;i>y/2&&(i=y/2);for(var r=0;r>8,y.push(t%256),y.push(i);return y}(e,n.length-t),n,t,i)}function He(n,e,t){return O.fromByteArray(0===e&&t===n.length?n:n.slice(e,t))}function Pe(n,e,t){t=Math.min(n.length,t);for(var i=[],a=e;a239?4:y>223?3:y>191?2:1;if(a+s<=t)switch(s){case 1:y<128&&(r=y);break;case 2:128==(192&(u=n[a+1]))&&(d=(31&y)<<6|63&u)>127&&(r=d);break;case 3:c=n[a+2],128==(192&(u=n[a+1]))&&128==(192&c)&&(d=(15&y)<<12|(63&u)<<6|63&c)>2047&&(d<55296||d>57343)&&(r=d);break;case 4:c=n[a+2],h=n[a+3],128==(192&(u=n[a+1]))&&128==(192&c)&&128==(192&h)&&(d=(15&y)<<18|(63&u)<<12|(63&c)<<6|63&h)>65535&&d<1114112&&(r=d)}null===r?(r=65533,s=1):r>65535&&(i.push((r-=65536)>>>10&1023|55296),r=56320|1023&r),i.push(r),a+=s}return function Be(n){var e=n.length;if(e<=nt)return String.fromCharCode.apply(String,n);for(var t="",i=0;ia.length?f.from(r).copy(a,y):Uint8Array.prototype.set.call(a,r,y);else{if(!f.isBuffer(r))throw new TypeError('"list" argument must be an Array of Buffers');r.copy(a,y)}y+=r.length}return a},f.byteLength=ge,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tt&&(e+=" ... "),""},me&&(f.prototype[me]=f.prototype.inspect),f.prototype.compare=function(e,t,i,a,y){if(Fe(e,Uint8Array)&&(e=f.from(e,e.offset,e.byteLength)),!f.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===i&&(i=e?e.length:0),void 0===a&&(a=0),void 0===y&&(y=this.length),t<0||i>e.length||a<0||y>this.length)throw new RangeError("out of range index");if(a>=y&&t>=i)return 0;if(a>=y)return-1;if(t>=i)return 1;if(this===e)return 0;for(var r=(y>>>=0)-(a>>>=0),s=(i>>>=0)-(t>>>=0),u=Math.min(r,s),c=this.slice(a,y),h=e.slice(t,i),d=0;d>>=0,isFinite(i)?(i>>>=0,void 0===a&&(a="utf8")):(a=i,i=void 0)}var y=this.length-t;if((void 0===i||i>y)&&(i=y),e.length>0&&(i<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");a||(a="utf8");for(var r=!1;;)switch(a){case"hex":return Xe(this,e,t,i);case"utf8":case"utf-8":return et(this,e,t,i);case"ascii":case"latin1":case"binary":return tt(this,e,t,i);case"base64":return rt(this,e,t,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Se(this,e,t,i);default:if(r)throw new TypeError("Unknown encoding: "+a);a=(""+a).toLowerCase(),r=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var nt=4096;function it(n,e,t){var i="";t=Math.min(n.length,t);for(var a=e;ai)&&(t=i);for(var a="",y=e;yt)throw new RangeError("Trying to access beyond buffer length")}function be(n,e,t,i,a,y){if(!f.isBuffer(n))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>a||en.length)throw new RangeError("Index out of range")}function Ie(n,e,t,i,a,y){if(t+i>n.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function $e(n,e,t,i,a){return e=+e,t>>>=0,a||Ie(n,0,t,4),ve.write(n,e,t,i,23,4),t+4}function Je(n,e,t,i,a){return e=+e,t>>>=0,a||Ie(n,0,t,8),ve.write(n,e,t,i,52,8),t+8}f.prototype.slice=function(e,t){var i=this.length;(e=~~e)<0?(e+=i)<0&&(e=0):e>i&&(e=i),(t=void 0===t?i:~~t)<0?(t+=i)<0&&(t=0):t>i&&(t=i),t>>=0,t>>>=0,i||ie(e,t,this.length);for(var a=this[e],y=1,r=0;++r>>=0,t>>>=0,i||ie(e,t,this.length);for(var a=this[e+--t],y=1;t>0&&(y*=256);)a+=this[e+--t]*y;return a},f.prototype.readUint8=f.prototype.readUInt8=function(e,t){return e>>>=0,t||ie(e,1,this.length),this[e]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(e,t){return e>>>=0,t||ie(e,2,this.length),this[e]|this[e+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(e,t){return e>>>=0,t||ie(e,2,this.length),this[e]<<8|this[e+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(e,t){return e>>>=0,t||ie(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(e,t){return e>>>=0,t||ie(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},f.prototype.readIntLE=function(e,t,i){e>>>=0,t>>>=0,i||ie(e,t,this.length);for(var a=this[e],y=1,r=0;++r=(y*=128)&&(a-=Math.pow(2,8*t)),a},f.prototype.readIntBE=function(e,t,i){e>>>=0,t>>>=0,i||ie(e,t,this.length);for(var a=t,y=1,r=this[e+--a];a>0&&(y*=256);)r+=this[e+--a]*y;return r>=(y*=128)&&(r-=Math.pow(2,8*t)),r},f.prototype.readInt8=function(e,t){return e>>>=0,t||ie(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},f.prototype.readInt16LE=function(e,t){e>>>=0,t||ie(e,2,this.length);var i=this[e]|this[e+1]<<8;return 32768&i?4294901760|i:i},f.prototype.readInt16BE=function(e,t){e>>>=0,t||ie(e,2,this.length);var i=this[e+1]|this[e]<<8;return 32768&i?4294901760|i:i},f.prototype.readInt32LE=function(e,t){return e>>>=0,t||ie(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},f.prototype.readInt32BE=function(e,t){return e>>>=0,t||ie(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},f.prototype.readFloatLE=function(e,t){return e>>>=0,t||ie(e,4,this.length),ve.read(this,e,!0,23,4)},f.prototype.readFloatBE=function(e,t){return e>>>=0,t||ie(e,4,this.length),ve.read(this,e,!1,23,4)},f.prototype.readDoubleLE=function(e,t){return e>>>=0,t||ie(e,8,this.length),ve.read(this,e,!0,52,8)},f.prototype.readDoubleBE=function(e,t){return e>>>=0,t||ie(e,8,this.length),ve.read(this,e,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(e,t,i,a){e=+e,t>>>=0,i>>>=0,a||be(this,e,t,i,Math.pow(2,8*i)-1,0);var r=1,s=0;for(this[t]=255&e;++s>>=0,i>>>=0,a||be(this,e,t,i,Math.pow(2,8*i)-1,0);var r=i-1,s=1;for(this[t+r]=255&e;--r>=0&&(s*=256);)this[t+r]=e/s&255;return t+i},f.prototype.writeUint8=f.prototype.writeUInt8=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,1,255,0),this[t]=255&e,t+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},f.prototype.writeIntLE=function(e,t,i,a){if(e=+e,t>>>=0,!a){var y=Math.pow(2,8*i-1);be(this,e,t,i,y-1,-y)}var r=0,s=1,u=0;for(this[t]=255&e;++r>0)-u&255;return t+i},f.prototype.writeIntBE=function(e,t,i,a){if(e=+e,t>>>=0,!a){var y=Math.pow(2,8*i-1);be(this,e,t,i,y-1,-y)}var r=i-1,s=1,u=0;for(this[t+r]=255&e;--r>=0&&(s*=256);)e<0&&0===u&&0!==this[t+r+1]&&(u=1),this[t+r]=(e/s>>0)-u&255;return t+i},f.prototype.writeInt8=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},f.prototype.writeInt16LE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},f.prototype.writeInt16BE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},f.prototype.writeInt32LE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},f.prototype.writeInt32BE=function(e,t,i){return e=+e,t>>>=0,i||be(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},f.prototype.writeFloatLE=function(e,t,i){return $e(this,e,t,!0,i)},f.prototype.writeFloatBE=function(e,t,i){return $e(this,e,t,!1,i)},f.prototype.writeDoubleLE=function(e,t,i){return Je(this,e,t,!0,i)},f.prototype.writeDoubleBE=function(e,t,i){return Je(this,e,t,!1,i)},f.prototype.copy=function(e,t,i,a){if(!f.isBuffer(e))throw new TypeError("argument should be a Buffer");if(i||(i=0),!a&&0!==a&&(a=this.length),t>=e.length&&(t=e.length),t||(t=0),a>0&&a=this.length)throw new RangeError("Index out of range");if(a<0)throw new RangeError("sourceEnd out of bounds");a>this.length&&(a=this.length),e.length-t>>=0,i=void 0===i?this.length:i>>>0,e||(e=0),"number"==typeof e)for(r=t;r55295&&t<57344){if(!a){if(t>56319){(e-=3)>-1&&y.push(239,191,189);continue}if(r+1===i){(e-=3)>-1&&y.push(239,191,189);continue}a=t;continue}if(t<56320){(e-=3)>-1&&y.push(239,191,189),a=t;continue}t=65536+(a-55296<<10|t-56320)}else a&&(e-=3)>-1&&y.push(239,191,189);if(a=null,t<128){if((e-=1)<0)break;y.push(t)}else if(t<2048){if((e-=2)<0)break;y.push(t>>6|192,63&t|128)}else if(t<65536){if((e-=3)<0)break;y.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;y.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return y}function ct(n){return O.toByteArray(function st(n){if((n=(n=n.split("=")[0]).trim().replace(ot,"")).length<2)return"";for(;n.length%4!=0;)n+="=";return n}(n))}function je(n,e,t,i){for(var a=0;a=e.length||a>=n.length);++a)e[a+t]=n[a];return a}function Fe(n,e){return n instanceof e||null!=n&&null!=n.constructor&&null!=n.constructor.name&&n.constructor.name===e.name}function Ge(n){return n!=n}var pt=function(){for(var n="0123456789abcdef",e=new Array(256),t=0;t<16;++t)for(var i=16*t,a=0;a<16;++a)e[i+a]=n[t]+n[a];return e}()},2601:(De,de)=>{de.read=function(J,O,ve,me,Q){var ue,L,f=8*Q-me-1,oe=(1<>1,ae=-7,ce=ve?Q-1:0,U=ve?-1:1,I=J[O+ce];for(ce+=U,ue=I&(1<<-ae)-1,I>>=-ae,ae+=f;ae>0;ue=256*ue+J[O+ce],ce+=U,ae-=8);for(L=ue&(1<<-ae)-1,ue>>=-ae,ae+=me;ae>0;L=256*L+J[O+ce],ce+=U,ae-=8);if(0===ue)ue=1-we;else{if(ue===oe)return L?NaN:1/0*(I?-1:1);L+=Math.pow(2,me),ue-=we}return(I?-1:1)*L*Math.pow(2,ue-me)},de.write=function(J,O,ve,me,Q,ue){var L,f,oe,we=8*ue-Q-1,ae=(1<>1,U=23===Q?Math.pow(2,-24)-Math.pow(2,-77):0,I=me?0:ue-1,M=me?1:-1,D=O<0||0===O&&1/O<0?1:0;for(O=Math.abs(O),isNaN(O)||O===1/0?(f=isNaN(O)?1:0,L=ae):(L=Math.floor(Math.log(O)/Math.LN2),O*(oe=Math.pow(2,-L))<1&&(L--,oe*=2),(O+=L+ce>=1?U/oe:U*Math.pow(2,1-ce))*oe>=2&&(L++,oe/=2),L+ce>=ae?(f=0,L=ae):L+ce>=1?(f=(O*oe-1)*Math.pow(2,Q),L+=ce):(f=O*Math.pow(2,ce-1)*Math.pow(2,Q),L=0));Q>=8;J[ve+I]=255&f,I+=M,f/=256,Q-=8);for(L=L<0;J[ve+I]=255&L,I+=M,L/=256,we-=8);J[ve+I-M]|=128*D}},8332:()=>{"use strict";!function(r){const s=r.performance;function u(Y){s&&s.mark&&s.mark(Y)}function c(Y,x){s&&s.measure&&s.measure(Y,x)}u("Zone");const h=r.__Zone_symbol_prefix||"__zone_symbol__";function d(Y){return h+Y}const w=!0===r[d("forceDuplicateZoneCheck")];if(r.Zone){if(w||"function"!=typeof r.Zone.__symbol__)throw new Error("Zone already loaded.");return r.Zone}let g=(()=>{class Y{static#e=this.__symbol__=d;static assertZonePatched(){if(r.Promise!==Me.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let o=Y.current;for(;o.parent;)o=o.parent;return o}static get current(){return le.zone}static get currentTask(){return Ne}static __load_patch(o,l,A=!1){if(Me.hasOwnProperty(o)){if(!A&&w)throw Error("Already loaded patch: "+o)}else if(!r["__Zone_disable_"+o]){const Z="Zone:"+o;u(Z),Me[o]=l(r,Y,_e),c(Z,Z)}}get parent(){return this._parent}get name(){return this._name}constructor(o,l){this._parent=o,this._name=l?l.name||"unnamed":"",this._properties=l&&l.properties||{},this._zoneDelegate=new F(this,this._parent&&this._parent._zoneDelegate,l)}get(o){const l=this.getZoneWith(o);if(l)return l._properties[o]}getZoneWith(o){let l=this;for(;l;){if(l._properties.hasOwnProperty(o))return l;l=l._parent}return null}fork(o){if(!o)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,o)}wrap(o,l){if("function"!=typeof o)throw new Error("Expecting function got: "+o);const A=this._zoneDelegate.intercept(this,o,l),Z=this;return function(){return Z.runGuarded(A,this,arguments,l)}}run(o,l,A,Z){le={parent:le,zone:this};try{return this._zoneDelegate.invoke(this,o,l,A,Z)}finally{le=le.parent}}runGuarded(o,l=null,A,Z){le={parent:le,zone:this};try{try{return this._zoneDelegate.invoke(this,o,l,A,Z)}catch(ke){if(this._zoneDelegate.handleError(this,ke))throw ke}}finally{le=le.parent}}runTask(o,l,A){if(o.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(o.zone||xe).name+"; Execution: "+this.name+")");if(o.state===K&&(o.type===Re||o.type===P))return;const Z=o.state!=v;Z&&o._transitionTo(v,z),o.runCount++;const ke=Ne;Ne=o,le={parent:le,zone:this};try{o.type==P&&o.data&&!o.data.isPeriodic&&(o.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,o,l,A)}catch(E){if(this._zoneDelegate.handleError(this,E))throw E}}finally{o.state!==K&&o.state!==m&&(o.type==Re||o.data&&o.data.isPeriodic?Z&&o._transitionTo(z,v):(o.runCount=0,this._updateTaskCount(o,-1),Z&&o._transitionTo(K,v,K))),le=le.parent,Ne=ke}}scheduleTask(o){if(o.zone&&o.zone!==this){let A=this;for(;A;){if(A===o.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${o.zone.name}`);A=A.parent}}o._transitionTo(Ee,K);const l=[];o._zoneDelegates=l,o._zone=this;try{o=this._zoneDelegate.scheduleTask(this,o)}catch(A){throw o._transitionTo(m,Ee,K),this._zoneDelegate.handleError(this,A),A}return o._zoneDelegates===l&&this._updateTaskCount(o,1),o.state==Ee&&o._transitionTo(z,Ee),o}scheduleMicroTask(o,l,A,Z){return this.scheduleTask(new b(X,o,l,A,Z,void 0))}scheduleMacroTask(o,l,A,Z,ke){return this.scheduleTask(new b(P,o,l,A,Z,ke))}scheduleEventTask(o,l,A,Z,ke){return this.scheduleTask(new b(Re,o,l,A,Z,ke))}cancelTask(o){if(o.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(o.zone||xe).name+"; Execution: "+this.name+")");if(o.state===z||o.state===v){o._transitionTo(ee,z,v);try{this._zoneDelegate.cancelTask(this,o)}catch(l){throw o._transitionTo(m,ee),this._zoneDelegate.handleError(this,l),l}return this._updateTaskCount(o,-1),o._transitionTo(K,ee),o.runCount=0,o}}_updateTaskCount(o,l){const A=o._zoneDelegates;-1==l&&(o._zoneDelegates=null);for(let Z=0;ZY.hasTask(o,l),onScheduleTask:(Y,x,o,l)=>Y.scheduleTask(o,l),onInvokeTask:(Y,x,o,l,A,Z)=>Y.invokeTask(o,l,A,Z),onCancelTask:(Y,x,o,l)=>Y.cancelTask(o,l)};class F{constructor(x,o,l){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this.zone=x,this._parentDelegate=o,this._forkZS=l&&(l&&l.onFork?l:o._forkZS),this._forkDlgt=l&&(l.onFork?o:o._forkDlgt),this._forkCurrZone=l&&(l.onFork?this.zone:o._forkCurrZone),this._interceptZS=l&&(l.onIntercept?l:o._interceptZS),this._interceptDlgt=l&&(l.onIntercept?o:o._interceptDlgt),this._interceptCurrZone=l&&(l.onIntercept?this.zone:o._interceptCurrZone),this._invokeZS=l&&(l.onInvoke?l:o._invokeZS),this._invokeDlgt=l&&(l.onInvoke?o:o._invokeDlgt),this._invokeCurrZone=l&&(l.onInvoke?this.zone:o._invokeCurrZone),this._handleErrorZS=l&&(l.onHandleError?l:o._handleErrorZS),this._handleErrorDlgt=l&&(l.onHandleError?o:o._handleErrorDlgt),this._handleErrorCurrZone=l&&(l.onHandleError?this.zone:o._handleErrorCurrZone),this._scheduleTaskZS=l&&(l.onScheduleTask?l:o._scheduleTaskZS),this._scheduleTaskDlgt=l&&(l.onScheduleTask?o:o._scheduleTaskDlgt),this._scheduleTaskCurrZone=l&&(l.onScheduleTask?this.zone:o._scheduleTaskCurrZone),this._invokeTaskZS=l&&(l.onInvokeTask?l:o._invokeTaskZS),this._invokeTaskDlgt=l&&(l.onInvokeTask?o:o._invokeTaskDlgt),this._invokeTaskCurrZone=l&&(l.onInvokeTask?this.zone:o._invokeTaskCurrZone),this._cancelTaskZS=l&&(l.onCancelTask?l:o._cancelTaskZS),this._cancelTaskDlgt=l&&(l.onCancelTask?o:o._cancelTaskDlgt),this._cancelTaskCurrZone=l&&(l.onCancelTask?this.zone:o._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const A=l&&l.onHasTask;(A||o&&o._hasTaskZS)&&(this._hasTaskZS=A?l:S,this._hasTaskDlgt=o,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=x,l.onScheduleTask||(this._scheduleTaskZS=S,this._scheduleTaskDlgt=o,this._scheduleTaskCurrZone=this.zone),l.onInvokeTask||(this._invokeTaskZS=S,this._invokeTaskDlgt=o,this._invokeTaskCurrZone=this.zone),l.onCancelTask||(this._cancelTaskZS=S,this._cancelTaskDlgt=o,this._cancelTaskCurrZone=this.zone))}fork(x,o){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,x,o):new g(x,o)}intercept(x,o,l){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,x,o,l):o}invoke(x,o,l,A,Z){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,x,o,l,A,Z):o.apply(l,A)}handleError(x,o){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,x,o)}scheduleTask(x,o){let l=o;if(this._scheduleTaskZS)this._hasTaskZS&&l._zoneDelegates.push(this._hasTaskDlgtOwner),l=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,x,o),l||(l=o);else if(o.scheduleFn)o.scheduleFn(o);else{if(o.type!=X)throw new Error("Task is missing scheduleFn.");N(o)}return l}invokeTask(x,o,l,A){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,x,o,l,A):o.callback.apply(l,A)}cancelTask(x,o){let l;if(this._cancelTaskZS)l=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,x,o);else{if(!o.cancelFn)throw Error("Task is not cancelable");l=o.cancelFn(o)}return l}hasTask(x,o){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,x,o)}catch(l){this.handleError(x,l)}}_updateTaskCount(x,o){const l=this._taskCounts,A=l[x],Z=l[x]=A+o;if(Z<0)throw new Error("More tasks executed then were scheduled.");0!=A&&0!=Z||this.hasTask(this.zone,{microTask:l.microTask>0,macroTask:l.macroTask>0,eventTask:l.eventTask>0,change:x})}}class b{constructor(x,o,l,A,Z,ke){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=x,this.source=o,this.data=A,this.scheduleFn=Z,this.cancelFn=ke,!l)throw new Error("callback is not defined");this.callback=l;const E=this;this.invoke=x===Re&&A&&A.useG?b.invokeTask:function(){return b.invokeTask.call(r,E,this,arguments)}}static invokeTask(x,o,l){x||(x=this),Ae++;try{return x.runCount++,x.zone.runTask(x,o,l)}finally{1==Ae&&k(),Ae--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(K,Ee)}_transitionTo(x,o,l){if(this._state!==o&&this._state!==l)throw new Error(`${this.type} '${this.source}': can not transition to '${x}', expecting state '${o}'${l?" or '"+l+"'":""}, was '${this._state}'.`);this._state=x,x==K&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const q=d("setTimeout"),V=d("Promise"),W=d("then");let Ce,se=[],$=!1;function pe(Y){if(Ce||r[V]&&(Ce=r[V].resolve(0)),Ce){let x=Ce[W];x||(x=Ce.then),x.call(Ce,Y)}else r[q](Y,0)}function N(Y){0===Ae&&0===se.length&&pe(k),Y&&se.push(Y)}function k(){if(!$){for($=!0;se.length;){const Y=se;se=[];for(let x=0;xle,onUnhandledError:fe,microtaskDrainDone:fe,scheduleMicroTask:N,showUncaughtError:()=>!g[d("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:fe,patchMethod:()=>fe,bindArguments:()=>[],patchThen:()=>fe,patchMacroTask:()=>fe,patchEventPrototype:()=>fe,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>fe,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>fe,wrapWithCurrentZone:()=>fe,filterProperties:()=>[],attachOriginToPatched:()=>fe,_redefineProperty:()=>fe,patchCallbacks:()=>fe,nativeScheduleMicroTask:pe};let le={parent:null,zone:new g(null,null)},Ne=null,Ae=0;function fe(){}c("Zone","Zone"),r.Zone=g}(globalThis);const De=Object.getOwnPropertyDescriptor,de=Object.defineProperty,J=Object.getPrototypeOf,O=Object.create,ve=Array.prototype.slice,me="addEventListener",Q="removeEventListener",ue=Zone.__symbol__(me),L=Zone.__symbol__(Q),f="true",oe="false",we=Zone.__symbol__("");function ae(r,s){return Zone.current.wrap(r,s)}function ce(r,s,u,c,h){return Zone.current.scheduleMacroTask(r,s,u,c,h)}const U=Zone.__symbol__,I=typeof window<"u",M=I?window:void 0,D=I&&M||globalThis,Te="removeAttribute";function ye(r,s){for(let u=r.length-1;u>=0;u--)"function"==typeof r[u]&&(r[u]=ae(r[u],s+"_"+u));return r}function ge(r){return!r||!1!==r.writable&&!("function"==typeof r.get&&typeof r.set>"u")}const Le=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,ne=!("nw"in D)&&typeof D.process<"u"&&"[object process]"==={}.toString.call(D.process),We=!ne&&!Le&&!(!I||!M.HTMLElement),Ye=typeof D.process<"u"&&"[object process]"==={}.toString.call(D.process)&&!Le&&!(!I||!M.HTMLElement),Xe={},et=function(r){if(!(r=r||D.event))return;let s=Xe[r.type];s||(s=Xe[r.type]=U("ON_PROPERTY"+r.type));const u=this||r.target||D,c=u[s];let h;return We&&u===M&&"error"===r.type?(h=c&&c.call(this,r.message,r.filename,r.lineno,r.colno,r.error),!0===h&&r.preventDefault()):(h=c&&c.apply(this,arguments),null!=h&&!h&&r.preventDefault()),h};function tt(r,s,u){let c=De(r,s);if(!c&&u&&De(u,s)&&(c={enumerable:!0,configurable:!0}),!c||!c.configurable)return;const h=U("on"+s+"patched");if(r.hasOwnProperty(h)&&r[h])return;delete c.writable,delete c.value;const d=c.get,w=c.set,g=s.slice(2);let S=Xe[g];S||(S=Xe[g]=U("ON_PROPERTY"+g)),c.set=function(F){let b=this;!b&&r===D&&(b=D),b&&("function"==typeof b[S]&&b.removeEventListener(g,et),w&&w.call(b,null),b[S]=F,"function"==typeof F&&b.addEventListener(g,et,!1))},c.get=function(){let F=this;if(!F&&r===D&&(F=D),!F)return null;const b=F[S];if(b)return b;if(d){let q=d.call(this);if(q)return c.set.call(this,q),"function"==typeof F[Te]&&F.removeAttribute(s),q}return null},de(r,s,c),r[h]=!0}function rt(r,s,u){if(s)for(let c=0;cfunction(w,g){const S=u(w,g);return S.cbIdx>=0&&"function"==typeof g[S.cbIdx]?ce(S.name,g[S.cbIdx],S,h):d.apply(w,g)})}function Be(r,s){r[U("OriginalDelegate")]=s}let it=!1,ze=!1;function ft(){if(it)return ze;it=!0;try{const r=M.navigator.userAgent;(-1!==r.indexOf("MSIE ")||-1!==r.indexOf("Trident/")||-1!==r.indexOf("Edge/"))&&(ze=!0)}catch{}return ze}Zone.__load_patch("ZoneAwarePromise",(r,s,u)=>{const c=Object.getOwnPropertyDescriptor,h=Object.defineProperty,w=u.symbol,g=[],S=!1!==r[w("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],F=w("Promise"),b=w("then"),q="__creationTrace__";u.onUnhandledError=E=>{if(u.showUncaughtError()){const _=E&&E.rejection;_?console.error("Unhandled Promise rejection:",_ instanceof Error?_.message:_,"; Zone:",E.zone.name,"; Task:",E.task&&E.task.source,"; Value:",_,_ instanceof Error?_.stack:void 0):console.error(E)}},u.microtaskDrainDone=()=>{for(;g.length;){const E=g.shift();try{E.zone.runGuarded(()=>{throw E.throwOriginal?E.rejection:E})}catch(_){W(_)}}};const V=w("unhandledPromiseRejectionHandler");function W(E){u.onUnhandledError(E);try{const _=s[V];"function"==typeof _&&_.call(this,E)}catch{}}function se(E){return E&&E.then}function $(E){return E}function Ce(E){return o.reject(E)}const pe=w("state"),N=w("value"),k=w("finally"),xe=w("parentPromiseValue"),K=w("parentPromiseState"),Ee="Promise.then",z=null,v=!0,ee=!1,m=0;function X(E,_){return p=>{try{_e(E,_,p)}catch(T){_e(E,!1,T)}}}const P=function(){let E=!1;return function(p){return function(){E||(E=!0,p.apply(null,arguments))}}},Re="Promise resolved with itself",Me=w("currentTaskTrace");function _e(E,_,p){const T=P();if(E===p)throw new TypeError(Re);if(E[pe]===z){let R=null;try{("object"==typeof p||"function"==typeof p)&&(R=p&&p.then)}catch(B){return T(()=>{_e(E,!1,B)})(),E}if(_!==ee&&p instanceof o&&p.hasOwnProperty(pe)&&p.hasOwnProperty(N)&&p[pe]!==z)Ne(p),_e(E,p[pe],p[N]);else if(_!==ee&&"function"==typeof R)try{R.call(p,T(X(E,_)),T(X(E,!1)))}catch(B){T(()=>{_e(E,!1,B)})()}else{E[pe]=_;const B=E[N];if(E[N]=p,E[k]===k&&_===v&&(E[pe]=E[K],E[N]=E[xe]),_===ee&&p instanceof Error){const C=s.currentTask&&s.currentTask.data&&s.currentTask.data[q];C&&h(p,Me,{configurable:!0,enumerable:!1,writable:!0,value:C})}for(let C=0;C{try{const H=E[N],j=!!p&&k===p[k];j&&(p[xe]=H,p[K]=B);const G=_.run(C,void 0,j&&C!==Ce&&C!==$?[]:[H]);_e(p,!0,G)}catch(H){_e(p,!1,H)}},p)}const Y=function(){},x=r.AggregateError;class o{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(_){return _e(new this(null),v,_)}static reject(_){return _e(new this(null),ee,_)}static any(_){if(!_||"function"!=typeof _[Symbol.iterator])return Promise.reject(new x([],"All promises were rejected"));const p=[];let T=0;try{for(let C of _)T++,p.push(o.resolve(C))}catch{return Promise.reject(new x([],"All promises were rejected"))}if(0===T)return Promise.reject(new x([],"All promises were rejected"));let R=!1;const B=[];return new o((C,H)=>{for(let j=0;j{R||(R=!0,C(G))},G=>{B.push(G),T--,0===T&&(R=!0,H(new x(B,"All promises were rejected")))})})}static race(_){let p,T,R=new this((H,j)=>{p=H,T=j});function B(H){p(H)}function C(H){T(H)}for(let H of _)se(H)||(H=this.resolve(H)),H.then(B,C);return R}static all(_){return o.allWithCallback(_)}static allSettled(_){return(this&&this.prototype instanceof o?this:o).allWithCallback(_,{thenCallback:T=>({status:"fulfilled",value:T}),errorCallback:T=>({status:"rejected",reason:T})})}static allWithCallback(_,p){let T,R,B=new this((G,te)=>{T=G,R=te}),C=2,H=0;const j=[];for(let G of _){se(G)||(G=this.resolve(G));const te=H;try{G.then(re=>{j[te]=p?p.thenCallback(re):re,C--,0===C&&T(j)},re=>{p?(j[te]=p.errorCallback(re),C--,0===C&&T(j)):R(re)})}catch(re){R(re)}C++,H++}return C-=2,0===C&&T(j),B}constructor(_){const p=this;if(!(p instanceof o))throw new Error("Must be an instanceof Promise.");p[pe]=z,p[N]=[];try{const T=P();_&&_(T(X(p,v)),T(X(p,ee)))}catch(T){_e(p,!1,T)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return o}then(_,p){let T=this.constructor?.[Symbol.species];(!T||"function"!=typeof T)&&(T=this.constructor||o);const R=new T(Y),B=s.current;return this[pe]==z?this[N].push(B,R,_,p):Ae(this,B,R,_,p),R}catch(_){return this.then(null,_)}finally(_){let p=this.constructor?.[Symbol.species];(!p||"function"!=typeof p)&&(p=o);const T=new p(Y);T[k]=k;const R=s.current;return this[pe]==z?this[N].push(R,T,_,_):Ae(this,R,T,_,_),T}}o.resolve=o.resolve,o.reject=o.reject,o.race=o.race,o.all=o.all;const l=r[F]=r.Promise;r.Promise=o;const A=w("thenPatched");function Z(E){const _=E.prototype,p=c(_,"then");if(p&&(!1===p.writable||!p.configurable))return;const T=_.then;_[b]=T,E.prototype.then=function(R,B){return new o((H,j)=>{T.call(this,H,j)}).then(R,B)},E[A]=!0}return u.patchThen=Z,l&&(Z(l),Pe(r,"fetch",E=>function ke(E){return function(_,p){let T=E.apply(_,p);if(T instanceof o)return T;let R=T.constructor;return R[A]||Z(R),T}}(E))),Promise[s.__symbol__("uncaughtPromiseErrors")]=g,o}),Zone.__load_patch("toString",r=>{const s=Function.prototype.toString,u=U("OriginalDelegate"),c=U("Promise"),h=U("Error"),d=function(){if("function"==typeof this){const F=this[u];if(F)return"function"==typeof F?s.call(F):Object.prototype.toString.call(F);if(this===Promise){const b=r[c];if(b)return s.call(b)}if(this===Error){const b=r[h];if(b)return s.call(b)}}return s.call(this)};d[u]=s,Function.prototype.toString=d;const w=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":w.call(this)}});let ie=!1;if(typeof window<"u")try{const r=Object.defineProperty({},"passive",{get:function(){ie=!0}});window.addEventListener("test",r,r),window.removeEventListener("test",r,r)}catch{ie=!1}const be={useG:!0},Ie={},$e={},Je=new RegExp("^"+we+"(\\w+)(true|false)$"),ot=U("propagationStopped");function st(r,s){const u=(s?s(r):r)+oe,c=(s?s(r):r)+f,h=we+u,d=we+c;Ie[r]={},Ie[r][oe]=h,Ie[r][f]=d}function Ke(r,s,u,c){const h=c&&c.add||me,d=c&&c.rm||Q,w=c&&c.listeners||"eventListeners",g=c&&c.rmAll||"removeAllListeners",S=U(h),F="."+h+":",b="prependListener",q="."+b+":",V=function(N,k,xe){if(N.isRemoved)return;const K=N.callback;let Ee;"object"==typeof K&&K.handleEvent&&(N.callback=v=>K.handleEvent(v),N.originalDelegate=K);try{N.invoke(N,k,[xe])}catch(v){Ee=v}const z=N.options;return z&&"object"==typeof z&&z.once&&k[d].call(k,xe.type,N.originalDelegate?N.originalDelegate:N.callback,z),Ee};function W(N,k,xe){if(!(k=k||r.event))return;const K=N||k.target||r,Ee=K[Ie[k.type][xe?f:oe]];if(Ee){const z=[];if(1===Ee.length){const v=V(Ee[0],K,k);v&&z.push(v)}else{const v=Ee.slice();for(let ee=0;ee{throw ee})}}}const se=function(N){return W(this,N,!1)},$=function(N){return W(this,N,!0)};function Ce(N,k){if(!N)return!1;let xe=!0;k&&void 0!==k.useG&&(xe=k.useG);const K=k&&k.vh;let Ee=!0;k&&void 0!==k.chkDup&&(Ee=k.chkDup);let z=!1;k&&void 0!==k.rt&&(z=k.rt);let v=N;for(;v&&!v.hasOwnProperty(h);)v=J(v);if(!v&&N[h]&&(v=N),!v||v[S])return!1;const ee=k&&k.eventNameToString,m={},X=v[S]=v[h],P=v[U(d)]=v[d],Re=v[U(w)]=v[w],Me=v[U(g)]=v[g];let _e;k&&k.prepend&&(_e=v[U(k.prepend)]=v[k.prepend]);const o=xe?function(p){if(!m.isExisting)return X.call(m.target,m.eventName,m.capture?$:se,m.options)}:function(p){return X.call(m.target,m.eventName,p.invoke,m.options)},l=xe?function(p){if(!p.isRemoved){const T=Ie[p.eventName];let R;T&&(R=T[p.capture?f:oe]);const B=R&&p.target[R];if(B)for(let C=0;Cfunction(h,d){h[ot]=!0,c&&c.apply(h,d)})}function ct(r,s,u,c,h){const d=Zone.__symbol__(c);if(s[d])return;const w=s[d]=s[c];s[c]=function(g,S,F){return S&&S.prototype&&h.forEach(function(b){const q=`${u}.${c}::`+b,V=S.prototype;try{if(V.hasOwnProperty(b)){const W=r.ObjectGetOwnPropertyDescriptor(V,b);W&&W.value?(W.value=r.wrapWithCurrentZone(W.value,q),r._redefineProperty(S.prototype,b,W)):V[b]&&(V[b]=r.wrapWithCurrentZone(V[b],q))}else V[b]&&(V[b]=r.wrapWithCurrentZone(V[b],q))}catch{}}),w.call(s,g,S,F)},r.attachOriginToPatched(s[c],w)}function je(r,s,u){if(!u||0===u.length)return s;const c=u.filter(d=>d.target===r);if(!c||0===c.length)return s;const h=c[0].ignoreProperties;return s.filter(d=>-1===h.indexOf(d))}function Fe(r,s,u,c){r&&rt(r,je(r,s,u),c)}function Ge(r){return Object.getOwnPropertyNames(r).filter(s=>s.startsWith("on")&&s.length>2).map(s=>s.substring(2))}Zone.__load_patch("util",(r,s,u)=>{const c=Ge(r);u.patchOnProperties=rt,u.patchMethod=Pe,u.bindArguments=ye,u.patchMacroTask=nt;const h=s.__symbol__("BLACK_LISTED_EVENTS"),d=s.__symbol__("UNPATCHED_EVENTS");r[d]&&(r[h]=r[d]),r[h]&&(s[h]=s[d]=r[h]),u.patchEventPrototype=ht,u.patchEventTarget=Ke,u.isIEOrEdge=ft,u.ObjectDefineProperty=de,u.ObjectGetOwnPropertyDescriptor=De,u.ObjectCreate=O,u.ArraySlice=ve,u.patchClass=He,u.wrapWithCurrentZone=ae,u.filterProperties=je,u.attachOriginToPatched=Be,u._redefineProperty=Object.defineProperty,u.patchCallbacks=ct,u.getGlobalObjects=()=>({globalSources:$e,zoneSymbolEventNames:Ie,eventNames:c,isBrowser:We,isMix:Ye,isNode:ne,TRUE_STR:f,FALSE_STR:oe,ZONE_SYMBOL_PREFIX:we,ADD_EVENT_LISTENER_STR:me,REMOVE_EVENT_LISTENER_STR:Q})});const e=U("zoneTask");function t(r,s,u,c){let h=null,d=null;u+=c;const w={};function g(F){const b=F.data;return b.args[0]=function(){return F.invoke.apply(this,arguments)},b.handleId=h.apply(r,b.args),F}function S(F){return d.call(r,F.data.handleId)}h=Pe(r,s+=c,F=>function(b,q){if("function"==typeof q[0]){const V={isPeriodic:"Interval"===c,delay:"Timeout"===c||"Interval"===c?q[1]||0:void 0,args:q},W=q[0];q[0]=function(){try{return W.apply(this,arguments)}finally{V.isPeriodic||("number"==typeof V.handleId?delete w[V.handleId]:V.handleId&&(V.handleId[e]=null))}};const se=ce(s,q[0],V,g,S);if(!se)return se;const $=se.data.handleId;return"number"==typeof $?w[$]=se:$&&($[e]=se),$&&$.ref&&$.unref&&"function"==typeof $.ref&&"function"==typeof $.unref&&(se.ref=$.ref.bind($),se.unref=$.unref.bind($)),"number"==typeof $||$?$:se}return F.apply(r,q)}),d=Pe(r,u,F=>function(b,q){const V=q[0];let W;"number"==typeof V?W=w[V]:(W=V&&V[e],W||(W=V)),W&&"string"==typeof W.type?"notScheduled"!==W.state&&(W.cancelFn&&W.data.isPeriodic||0===W.runCount)&&("number"==typeof V?delete w[V]:V&&(V[e]=null),W.zone.cancelTask(W)):F.apply(r,q)})}Zone.__load_patch("legacy",r=>{const s=r[Zone.__symbol__("legacyPatch")];s&&s()}),Zone.__load_patch("timers",r=>{const s="set",u="clear";t(r,s,u,"Timeout"),t(r,s,u,"Interval"),t(r,s,u,"Immediate")}),Zone.__load_patch("requestAnimationFrame",r=>{t(r,"request","cancel","AnimationFrame"),t(r,"mozRequest","mozCancel","AnimationFrame"),t(r,"webkitRequest","webkitCancel","AnimationFrame")}),Zone.__load_patch("blocking",(r,s)=>{const u=["alert","prompt","confirm"];for(let c=0;cfunction(S,F){return s.current.run(d,r,F,g)})}),Zone.__load_patch("EventTarget",(r,s,u)=>{(function y(r,s){s.patchEventPrototype(r,s)})(r,u),function a(r,s){if(Zone[s.symbol("patchEventTarget")])return;const{eventNames:u,zoneSymbolEventNames:c,TRUE_STR:h,FALSE_STR:d,ZONE_SYMBOL_PREFIX:w}=s.getGlobalObjects();for(let S=0;S{He("MutationObserver"),He("WebKitMutationObserver")}),Zone.__load_patch("IntersectionObserver",(r,s,u)=>{He("IntersectionObserver")}),Zone.__load_patch("FileReader",(r,s,u)=>{He("FileReader")}),Zone.__load_patch("on_property",(r,s,u)=>{!function pt(r,s){if(ne&&!Ye||Zone[r.symbol("patchEvents")])return;const u=s.__Zone_ignore_on_properties;let c=[];if(We){const h=window;c=c.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const d=function lt(){try{const r=M.navigator.userAgent;if(-1!==r.indexOf("MSIE ")||-1!==r.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:h,ignoreProperties:["error"]}]:[];Fe(h,Ge(h),u&&u.concat(d),J(h))}c=c.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let h=0;h{!function i(r,s){const{isBrowser:u,isMix:c}=s.getGlobalObjects();(u||c)&&r.customElements&&"customElements"in r&&s.patchCallbacks(s,r.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback"])}(r,u)}),Zone.__load_patch("XHR",(r,s)=>{!function S(F){const b=F.XMLHttpRequest;if(!b)return;const q=b.prototype;let W=q[ue],se=q[L];if(!W){const m=F.XMLHttpRequestEventTarget;if(m){const X=m.prototype;W=X[ue],se=X[L]}}const $="readystatechange",Ce="scheduled";function pe(m){const X=m.data,P=X.target;P[d]=!1,P[g]=!1;const Re=P[h];W||(W=P[ue],se=P[L]),Re&&se.call(P,$,Re);const Me=P[h]=()=>{if(P.readyState===P.DONE)if(!X.aborted&&P[d]&&m.state===Ce){const le=P[s.__symbol__("loadfalse")];if(0!==P.status&&le&&le.length>0){const Ne=m.invoke;m.invoke=function(){const Ae=P[s.__symbol__("loadfalse")];for(let fe=0;fefunction(m,X){return m[c]=0==X[2],m[w]=X[1],xe.apply(m,X)}),Ee=U("fetchTaskAborting"),z=U("fetchTaskScheduling"),v=Pe(q,"send",()=>function(m,X){if(!0===s.current[z]||m[c])return v.apply(m,X);{const P={target:m,url:m[w],isPeriodic:!1,args:X,aborted:!1},Re=ce("XMLHttpRequest.send",N,P,pe,k);m&&!0===m[g]&&!P.aborted&&Re.state===Ce&&Re.invoke()}}),ee=Pe(q,"abort",()=>function(m,X){const P=function V(m){return m[u]}(m);if(P&&"string"==typeof P.type){if(null==P.cancelFn||P.data&&P.data.aborted)return;P.zone.cancelTask(P)}else if(!0===s.current[Ee])return ee.apply(m,X)})}(r);const u=U("xhrTask"),c=U("xhrSync"),h=U("xhrListener"),d=U("xhrScheduled"),w=U("xhrURL"),g=U("xhrErrorBeforeScheduled")}),Zone.__load_patch("geolocation",r=>{r.navigator&&r.navigator.geolocation&&function he(r,s){const u=r.constructor.name;for(let c=0;c{const S=function(){return g.apply(this,ye(arguments,u+"."+h))};return Be(S,g),S})(d)}}}(r.navigator.geolocation,["getCurrentPosition","watchPosition"])}),Zone.__load_patch("PromiseRejectionEvent",(r,s)=>{function u(c){return function(h){at(r,c).forEach(w=>{const g=r.PromiseRejectionEvent;if(g){const S=new g(c,{promise:h.promise,reason:h.rejection});w.invoke(S)}})}}r.PromiseRejectionEvent&&(s[U("unhandledPromiseRejectionHandler")]=u("unhandledrejection"),s[U("rejectionHandledHandler")]=u("rejectionhandled"))}),Zone.__load_patch("queueMicrotask",(r,s,u)=>{!function n(r,s){s.patchMethod(r,"queueMicrotask",u=>function(c,h){Zone.current.scheduleMicroTask("queueMicrotask",h[0])})}(r,u)})}},De=>{var de=O=>De(De.s=O);de(8332),de(5321)}]); \ No newline at end of file diff --git a/frontend/polyfills.277648f7b3e820e3.js b/frontend/polyfills.277648f7b3e820e3.js new file mode 100644 index 00000000..b1e72783 --- /dev/null +++ b/frontend/polyfills.277648f7b3e820e3.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{4050:(Ce,D,Y)=>{window.global=window,window.global.Buffer=window.global.Buffer||Y(3838).Buffer,window.global.process=window.global.process||Y(573)},3981:(Ce,D)=>{"use strict";D.byteLength=function l(w){var v=B(w),R=v[1];return 3*(v[0]+R)/4-R},D.toByteArray=function ke(w){var v,he,V=B(w),R=V[0],xe=V[1],ae=new ue(function se(w,v,V){return 3*(v+V)/4-V}(0,R,xe)),K=0,Ge=xe>0?R-4:R;for(he=0;he>16&255,ae[K++]=v>>8&255,ae[K++]=255&v;return 2===xe&&(v=P[w.charCodeAt(he)]<<2|P[w.charCodeAt(he+1)]>>4,ae[K++]=255&v),1===xe&&(v=P[w.charCodeAt(he)]<<10|P[w.charCodeAt(he+1)]<<4|P[w.charCodeAt(he+2)]>>2,ae[K++]=v>>8&255,ae[K++]=255&v),ae},D.fromByteArray=function me(w){for(var v,V=w.length,R=V%3,xe=[],K=0,Ge=V-R;KGe?Ge:K+16383));return 1===R?xe.push(Y[(v=w[V-1])>>2]+Y[v<<4&63]+"=="):2===R&&xe.push(Y[(v=(w[V-2]<<8)+w[V-1])>>10]+Y[v>>4&63]+Y[v<<2&63]+"="),xe.join("")};for(var Y=[],P=[],ue=typeof Uint8Array<"u"?Uint8Array:Array,Te="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ne=0;ne<64;++ne)Y[ne]=Te[ne],P[Te.charCodeAt(ne)]=ne;function B(w){var v=w.length;if(v%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var V=w.indexOf("=");return-1===V&&(V=v),[V,V===v?0:4-V%4]}function le(w){return Y[w>>18&63]+Y[w>>12&63]+Y[w>>6&63]+Y[63&w]}function te(w,v,V){for(var xe=[],ae=v;ae{"use strict";var P=Y(3981),ue=Y(2020),Te="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;D.Buffer=l,D.SlowBuffer=function ae(r){return+r!=r&&(r=0),l.alloc(+r)},D.INSPECT_MAX_BYTES=50;var ne=2147483647;function B(r){if(r>ne)throw new RangeError('The value "'+r+'" is invalid for option "size"');var e=new Uint8Array(r);return Object.setPrototypeOf(e,l.prototype),e}function l(r,e,t){if("number"==typeof r){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return te(r)}return se(r,e,t)}function se(r,e,t){if("string"==typeof r)return function me(r,e){if(("string"!=typeof e||""===e)&&(e="utf8"),!l.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var t=0|K(r,e),n=B(t),c=n.write(r,e);return c!==t&&(n=n.slice(0,c)),n}(r,e);if(ArrayBuffer.isView(r))return function v(r){if(Ne(r,Uint8Array)){var e=new Uint8Array(r);return V(e.buffer,e.byteOffset,e.byteLength)}return w(r)}(r);if(null==r)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(Ne(r,ArrayBuffer)||r&&Ne(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ne(r,SharedArrayBuffer)||r&&Ne(r.buffer,SharedArrayBuffer)))return V(r,e,t);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');var n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return l.from(n,e,t);var c=function R(r){if(l.isBuffer(r)){var e=0|xe(r.length),t=B(e);return 0===t.length||r.copy(t,0,0,e),t}return void 0!==r.length?"number"!=typeof r.length||st(r.length)?B(0):w(r):"Buffer"===r.type&&Array.isArray(r.data)?w(r.data):void 0}(r);if(c)return c;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return l.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function ke(r){if("number"!=typeof r)throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function te(r){return ke(r),B(r<0?0:0|xe(r))}function w(r){for(var e=r.length<0?0:0|xe(r.length),t=B(e),n=0;n=ne)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+ne.toString(16)+" bytes");return 0|r}function K(r,e){if(l.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||Ne(r,ArrayBuffer))return r.byteLength;if("string"!=typeof r)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);var t=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===t)return 0;for(var c=!1;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return $e(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return ot(r).length;default:if(c)return n?-1:$e(r).length;e=(""+e).toLowerCase(),c=!0}}function Ge(r,e,t){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length||((void 0===t||t>this.length)&&(t=this.length),t<=0)||(t>>>=0)<=(e>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return wt(this,e,t);case"utf8":case"utf-8":return nt(this,e,t);case"ascii":return We(this,e,t);case"latin1":case"binary":return Oe(this,e,t);case"base64":return ft(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ue(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function he(r,e,t){var n=r[e];r[e]=r[t],r[t]=n}function ct(r,e,t,n,c){if(0===r.length)return-1;if("string"==typeof t?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),st(t=+t)&&(t=c?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(c)return-1;t=r.length-1}else if(t<0){if(!c)return-1;t=0}if("string"==typeof e&&(e=l.from(e,n)),l.isBuffer(e))return 0===e.length?-1:tt(r,e,t,n,c);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?c?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):tt(r,[e],t,n,c);throw new TypeError("val must be string, number or Buffer")}function tt(r,e,t,n,c){var ce,d=1,E=r.length,J=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||e.length<2)return-1;d=2,E/=2,J/=2,t/=2}function ie(Et,mt){return 1===d?Et[mt]:Et.readUInt16BE(mt*d)}if(c){var Fe=-1;for(ce=t;ceE&&(t=E-J),ce=t;ce>=0;ce--){for(var pe=!0,Ke=0;Kec&&(n=c):n=c;var d=e.length;n>d/2&&(n=d/2);for(var E=0;E>8,d.push(t%256),d.push(n);return d}(e,r.length-t),r,t,n)}function ft(r,e,t){return P.fromByteArray(0===e&&t===r.length?r:r.slice(e,t))}function nt(r,e,t){t=Math.min(r.length,t);for(var n=[],c=e;c239?4:d>223?3:d>191?2:1;if(c+J<=t)switch(J){case 1:d<128&&(E=d);break;case 2:128==(192&(ie=r[c+1]))&&(pe=(31&d)<<6|63&ie)>127&&(E=pe);break;case 3:ce=r[c+2],128==(192&(ie=r[c+1]))&&128==(192&ce)&&(pe=(15&d)<<12|(63&ie)<<6|63&ce)>2047&&(pe<55296||pe>57343)&&(E=pe);break;case 4:ce=r[c+2],Fe=r[c+3],128==(192&(ie=r[c+1]))&&128==(192&ce)&&128==(192&Fe)&&(pe=(15&d)<<18|(63&ie)<<12|(63&ce)<<6|63&Fe)>65535&&pe<1114112&&(E=pe)}null===E?(E=65533,J=1):E>65535&&(n.push((E-=65536)>>>10&1023|55296),E=56320|1023&E),n.push(E),c+=J}return function Le(r){var e=r.length;if(e<=it)return String.fromCharCode.apply(String,r);for(var t="",n=0;nc.length?l.from(E).copy(c,d):Uint8Array.prototype.set.call(c,E,d);else{if(!l.isBuffer(E))throw new TypeError('"list" argument must be an Array of Buffers');E.copy(c,d)}d+=E.length}return c},l.byteLength=K,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tt&&(e+=" ... "),""},Te&&(l.prototype[Te]=l.prototype.inspect),l.prototype.compare=function(e,t,n,c,d){if(Ne(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===c&&(c=0),void 0===d&&(d=this.length),t<0||n>e.length||c<0||d>this.length)throw new RangeError("out of range index");if(c>=d&&t>=n)return 0;if(c>=d)return-1;if(t>=n)return 1;if(this===e)return 0;for(var E=(d>>>=0)-(c>>>=0),J=(n>>>=0)-(t>>>=0),ie=Math.min(E,J),ce=this.slice(c,d),Fe=e.slice(t,n),pe=0;pe>>=0,isFinite(n)?(n>>>=0,void 0===c&&(c="utf8")):(c=n,n=void 0)}var d=this.length-t;if((void 0===n||n>d)&&(n=d),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");c||(c="utf8");for(var E=!1;;)switch(c){case"hex":return ut(this,e,t,n);case"utf8":case"utf-8":return qe(this,e,t,n);case"ascii":case"latin1":case"binary":return rt(this,e,t,n);case"base64":return lt(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ye(this,e,t,n);default:if(E)throw new TypeError("Unknown encoding: "+c);c=(""+c).toLowerCase(),E=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var it=4096;function We(r,e,t){var n="";t=Math.min(r.length,t);for(var c=e;cn)&&(t=n);for(var c="",d=e;dt)throw new RangeError("Trying to access beyond buffer length")}function Se(r,e,t,n,c,d){if(!l.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>c||er.length)throw new RangeError("Index out of range")}function ht(r,e,t,n,c,d){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function pt(r,e,t,n,c){return e=+e,t>>>=0,c||ht(r,0,t,4),ue.write(r,e,t,n,23,4),t+4}function Ve(r,e,t,n,c){return e=+e,t>>>=0,c||ht(r,0,t,8),ue.write(r,e,t,n,52,8),t+8}l.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e],d=1,E=0;++E>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e+--t],d=1;t>0&&(d*=256);)c+=this[e+--t]*d;return c},l.prototype.readUint8=l.prototype.readUInt8=function(e,t){return e>>>=0,t||be(e,1,this.length),this[e]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(e,t){return e>>>=0,t||be(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(e,t){return e>>>=0,t||be(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(e,t){return e>>>=0,t||be(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(e,t){return e>>>=0,t||be(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e],d=1,E=0;++E=(d*=128)&&(c-=Math.pow(2,8*t)),c},l.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||be(e,t,this.length);for(var c=t,d=1,E=this[e+--c];c>0&&(d*=256);)E+=this[e+--c]*d;return E>=(d*=128)&&(E-=Math.pow(2,8*t)),E},l.prototype.readInt8=function(e,t){return e>>>=0,t||be(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){e>>>=0,t||be(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){e>>>=0,t||be(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return e>>>=0,t||be(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return e>>>=0,t||be(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return e>>>=0,t||be(e,4,this.length),ue.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return e>>>=0,t||be(e,4,this.length),ue.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return e>>>=0,t||be(e,8,this.length),ue.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return e>>>=0,t||be(e,8,this.length),ue.read(this,e,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(e,t,n,c){e=+e,t>>>=0,n>>>=0,c||Se(this,e,t,n,Math.pow(2,8*n)-1,0);var E=1,J=0;for(this[t]=255&e;++J>>=0,n>>>=0,c||Se(this,e,t,n,Math.pow(2,8*n)-1,0);var E=n-1,J=1;for(this[t+E]=255&e;--E>=0&&(J*=256);)this[t+E]=e/J&255;return t+n},l.prototype.writeUint8=l.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,1,255,0),this[t]=255&e,t+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeIntLE=function(e,t,n,c){if(e=+e,t>>>=0,!c){var d=Math.pow(2,8*n-1);Se(this,e,t,n,d-1,-d)}var E=0,J=1,ie=0;for(this[t]=255&e;++E>>=0,!c){var d=Math.pow(2,8*n-1);Se(this,e,t,n,d-1,-d)}var E=n-1,J=1,ie=0;for(this[t+E]=255&e;--E>=0&&(J*=256);)e<0&&0===ie&&0!==this[t+E+1]&&(ie=1),this[t+E]=(e/J|0)-ie&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeFloatLE=function(e,t,n){return pt(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return pt(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return Ve(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return Ve(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,c){if(!l.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!c&&0!==c&&(c=this.length),t>=e.length&&(t=e.length),t||(t=0),c>0&&c=this.length)throw new RangeError("Index out of range");if(c<0)throw new RangeError("sourceEnd out of bounds");c>this.length&&(c=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(E=t;E55295&&t<57344){if(!c){if(t>56319){(e-=3)>-1&&d.push(239,191,189);continue}if(E+1===n){(e-=3)>-1&&d.push(239,191,189);continue}c=t;continue}if(t<56320){(e-=3)>-1&&d.push(239,191,189),c=t;continue}t=65536+(c-55296<<10|t-56320)}else c&&(e-=3)>-1&&d.push(239,191,189);if(c=null,t<128){if((e-=1)<0)break;d.push(t)}else if(t<2048){if((e-=2)<0)break;d.push(t>>6|192,63&t|128)}else if(t<65536){if((e-=3)<0)break;d.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;d.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return d}function ot(r){return P.toByteArray(function Be(r){if((r=(r=r.split("=")[0]).trim().replace(vt,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function Je(r,e,t,n){for(var c=0;c=e.length||c>=r.length);++c)e[c+t]=r[c];return c}function Ne(r,e){return r instanceof e||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===e.name}function st(r){return r!=r}var kt=function(){for(var r="0123456789abcdef",e=new Array(256),t=0;t<16;++t)for(var n=16*t,c=0;c<16;++c)e[n+c]=r[t]+r[c];return e}()},2020:(Ce,D)=>{D.read=function(Y,P,ue,Te,ne){var _e,B,l=8*ne-Te-1,se=(1<>1,le=-7,te=ue?ne-1:0,me=ue?-1:1,w=Y[P+te];for(te+=me,_e=w&(1<<-le)-1,w>>=-le,le+=l;le>0;_e=256*_e+Y[P+te],te+=me,le-=8);for(B=_e&(1<<-le)-1,_e>>=-le,le+=Te;le>0;B=256*B+Y[P+te],te+=me,le-=8);if(0===_e)_e=1-ke;else{if(_e===se)return B?NaN:1/0*(w?-1:1);B+=Math.pow(2,Te),_e-=ke}return(w?-1:1)*B*Math.pow(2,_e-Te)},D.write=function(Y,P,ue,Te,ne,_e){var B,l,se,ke=8*_e-ne-1,le=(1<>1,me=23===ne?Math.pow(2,-24)-Math.pow(2,-77):0,w=Te?0:_e-1,v=Te?1:-1,V=P<0||0===P&&1/P<0?1:0;for(P=Math.abs(P),isNaN(P)||P===1/0?(l=isNaN(P)?1:0,B=le):(B=Math.floor(Math.log(P)/Math.LN2),P*(se=Math.pow(2,-B))<1&&(B--,se*=2),(P+=B+te>=1?me/se:me*Math.pow(2,1-te))*se>=2&&(B++,se/=2),B+te>=le?(l=0,B=le):B+te>=1?(l=(P*se-1)*Math.pow(2,ne),B+=te):(l=P*Math.pow(2,te-1)*Math.pow(2,ne),B=0));ne>=8;Y[ue+w]=255&l,w+=v,l/=256,ne-=8);for(B=B<0;Y[ue+w]=255&B,w+=v,B/=256,ke-=8);Y[ue+w-v]|=128*V}},573:Ce=>{var Y,P,D=Ce.exports={};function ue(){throw new Error("setTimeout has not been defined")}function Te(){throw new Error("clearTimeout has not been defined")}function ne(v){if(Y===setTimeout)return setTimeout(v,0);if((Y===ue||!Y)&&setTimeout)return Y=setTimeout,setTimeout(v,0);try{return Y(v,0)}catch{try{return Y.call(null,v,0)}catch{return Y.call(this,v,0)}}}!function(){try{Y="function"==typeof setTimeout?setTimeout:ue}catch{Y=ue}try{P="function"==typeof clearTimeout?clearTimeout:Te}catch{P=Te}}();var se,B=[],l=!1,ke=-1;function le(){!l||!se||(l=!1,se.length?B=se.concat(B):ke=-1,B.length&&te())}function te(){if(!l){var v=ne(le);l=!0;for(var V=B.length;V;){for(se=B,B=[];++ke1)for(var R=1;R{"use strict";const Ce=globalThis;function D(o){return(Ce.__Zone_symbol_prefix||"__zone_symbol__")+o}const ue=Object.getOwnPropertyDescriptor,Te=Object.defineProperty,ne=Object.getPrototypeOf,_e=Object.create,B=Array.prototype.slice,l="addEventListener",se="removeEventListener",ke=D(l),le=D(se),te="true",me="false",w=D("");function v(o,a){return Zone.current.wrap(o,a)}function V(o,a,p,s,h){return Zone.current.scheduleMacroTask(o,a,p,s,h)}const R=D,xe=typeof window<"u",ae=xe?window:void 0,K=xe&&ae||globalThis,Ge="removeAttribute";function he(o,a){for(let p=o.length-1;p>=0;p--)"function"==typeof o[p]&&(o[p]=v(o[p],a+"_"+p));return o}function tt(o){return!o||!1!==o.writable&&!("function"==typeof o.get&&typeof o.set>"u")}const ut=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,qe=!("nw"in K)&&typeof K.process<"u"&&"[object process]"===K.process.toString(),rt=!qe&&!ut&&!(!xe||!ae.HTMLElement),lt=typeof K.process<"u"&&"[object process]"===K.process.toString()&&!ut&&!(!xe||!ae.HTMLElement),Ye={},ft=function(o){if(!(o=o||K.event))return;let a=Ye[o.type];a||(a=Ye[o.type]=R("ON_PROPERTY"+o.type));const p=this||o.target||K,s=p[a];let h;return rt&&p===ae&&"error"===o.type?(h=s&&s.call(this,o.message,o.filename,o.lineno,o.colno,o.error),!0===h&&o.preventDefault()):(h=s&&s.apply(this,arguments),null!=h&&!h&&o.preventDefault()),h};function nt(o,a,p){let s=ue(o,a);if(!s&&p&&ue(p,a)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const h=R("on"+a+"patched");if(o.hasOwnProperty(h)&&o[h])return;delete s.writable,delete s.value;const m=s.get,x=s.set,b=a.slice(2);let I=Ye[b];I||(I=Ye[b]=R("ON_PROPERTY"+b)),s.set=function(H){let C=this;!C&&o===K&&(C=K),C&&("function"==typeof C[I]&&C.removeEventListener(b,ft),x&&x.call(C,null),C[I]=H,"function"==typeof H&&C.addEventListener(b,ft,!1))},s.get=function(){let H=this;if(!H&&o===K&&(H=K),!H)return null;const C=H[I];if(C)return C;if(m){let $=m.call(this);if($)return s.set.call(this,$),"function"==typeof H[Ge]&&H.removeAttribute(a),$}return null},Te(o,a,s),o[h]=!0}function it(o,a,p){if(a)for(let s=0;sfunction(x,b){const I=p(x,b);return I.cbIdx>=0&&"function"==typeof b[I.cbIdx]?V(I.name,b[I.cbIdx],I,h):m.apply(x,b)})}function Ue(o,a){o[R("OriginalDelegate")]=a}let be=!1,Se=!1;function pt(){if(be)return Se;be=!0;try{const o=ae.navigator.userAgent;(-1!==o.indexOf("MSIE ")||-1!==o.indexOf("Trident/")||-1!==o.indexOf("Edge/"))&&(Se=!0)}catch{}return Se}let Ve=!1;if(typeof window<"u")try{const o=Object.defineProperty({},"passive",{get:function(){Ve=!0}});window.addEventListener("test",o,o),window.removeEventListener("test",o,o)}catch{Ve=!1}const vt={useG:!0},Be={},$e={},dt=new RegExp("^"+w+"(\\w+)(true|false)$"),yt=R("propagationStopped");function ot(o,a){const p=(a?a(o):o)+me,s=(a?a(o):o)+te,h=w+p,m=w+s;Be[o]={},Be[o][me]=h,Be[o][te]=m}function Je(o,a,p,s){const h=s&&s.add||l,m=s&&s.rm||se,x=s&&s.listeners||"eventListeners",b=s&&s.rmAll||"removeAllListeners",I=R(h),H="."+h+":",C="prependListener",$="."+C+":",U=function(N,g,fe){if(N.isRemoved)return;const we=N.callback;let Re;"object"==typeof we&&we.handleEvent&&(N.callback=A=>we.handleEvent(A),N.originalDelegate=we);try{N.invoke(N,g,[fe])}catch(A){Re=A}const de=N.options;return de&&"object"==typeof de&&de.once&&g[m].call(g,fe.type,N.originalDelegate?N.originalDelegate:N.callback,de),Re};function re(N,g,fe){if(!(g=g||o.event))return;const we=N||g.target||o,Re=we[Be[g.type][fe?te:me]];if(Re){const de=[];if(1===Re.length){const A=U(Re[0],we,g);A&&de.push(A)}else{const A=Re.slice();for(let ye=0;ye{throw ye})}}}const ge=function(N){return re(this,N,!1)},oe=function(N){return re(this,N,!0)};function Ze(N,g){if(!N)return!1;let fe=!0;g&&void 0!==g.useG&&(fe=g.useG);const we=g&&g.vh;let Re=!0;g&&void 0!==g.chkDup&&(Re=g.chkDup);let de=!1;g&&void 0!==g.rt&&(de=g.rt);let A=N;for(;A&&!A.hasOwnProperty(h);)A=ne(A);if(!A&&N[h]&&(A=N),!A||A[I])return!1;const ye=g&&g.eventNameToString,q={},Z=A[I]=A[h],L=A[R(m)]=A[m],W=A[R(x)]=A[x],Pe=A[R(b)]=A[b];let ve;g&&g.prepend&&(ve=A[R(g.prepend)]=A[g.prepend]);const Ie=fe?function(f){if(!q.isExisting)return Z.call(q.target,q.eventName,q.capture?oe:ge,q.options)}:function(f){return Z.call(q.target,q.eventName,f.invoke,q.options)},Q=fe?function(f){if(!f.isRemoved){const y=Be[f.eventName];let _;y&&(_=y[f.capture?te:me]);const M=_&&f.target[_];if(M)for(let j=0;jHe.zone.cancelTask(He);f.call(Qe,"abort",je,{once:!0}),Xe&&(Xe.removeAbortListener=()=>Qe.removeEventListener("abort",je))}return q.target=null,Xe&&(Xe.taskData=null),At&&(Me.once=!0),!Ve&&"boolean"==typeof He.options||(He.options=Me),He.target=O,He.capture=xt,He.eventName=G,Ee&&(He.originalDelegate=ee),F?et.unshift(He):et.push(He),j?O:void 0}};return A[h]=T(Z,H,Ie,Q,de),ve&&(A[C]=T(ve,$,function(f){return ve.call(q.target,q.eventName,f.invoke,q.options)},Q,de,!0)),A[m]=function(){const f=this||o;let y=arguments[0];g&&g.transferEventName&&(y=g.transferEventName(y));const _=arguments[2],M=!!_&&("boolean"==typeof _||_.capture),j=arguments[1];if(!j)return L.apply(this,arguments);if(we&&!we(L,j,f,arguments))return;const F=Be[y];let O;F&&(O=F[M?te:me]);const G=O&&f[O];if(G)for(let ee=0;eefunction(h,m){h[yt]=!0,s&&s.apply(h,m)})}const r=R("zoneTask");function e(o,a,p,s){let h=null,m=null;p+=s;const x={};function b(H){const C=H.data;return C.args[0]=function(){return H.invoke.apply(this,arguments)},C.handleId=h.apply(o,C.args),H}function I(H){return m.call(o,H.data.handleId)}h=Oe(o,a+=s,H=>function(C,$){if("function"==typeof $[0]){const U={isPeriodic:"Interval"===s,delay:"Timeout"===s||"Interval"===s?$[1]||0:void 0,args:$},re=$[0];$[0]=function(){try{return re.apply(this,arguments)}finally{U.isPeriodic||("number"==typeof U.handleId?delete x[U.handleId]:U.handleId&&(U.handleId[r]=null))}};const ge=V(a,$[0],U,b,I);if(!ge)return ge;const oe=ge.data.handleId;return"number"==typeof oe?x[oe]=ge:oe&&(oe[r]=ge),oe&&oe.ref&&oe.unref&&"function"==typeof oe.ref&&"function"==typeof oe.unref&&(ge.ref=oe.ref.bind(oe),ge.unref=oe.unref.bind(oe)),"number"==typeof oe||oe?oe:ge}return H.apply(o,$)}),m=Oe(o,p,H=>function(C,$){const U=$[0];let re;"number"==typeof U?re=x[U]:(re=U&&U[r],re||(re=U)),re&&"string"==typeof re.type?"notScheduled"!==re.state&&(re.cancelFn&&re.data.isPeriodic||0===re.runCount)&&("number"==typeof U?delete x[U]:U&&(U[r]=null),re.zone.cancelTask(re)):H.apply(o,$)})}function d(o,a,p){if(!p||0===p.length)return a;const s=p.filter(m=>m.target===o);if(!s||0===s.length)return a;const h=s[0].ignoreProperties;return a.filter(m=>-1===h.indexOf(m))}function E(o,a,p,s){o&&it(o,d(o,a,p),s)}function J(o){return Object.getOwnPropertyNames(o).filter(a=>a.startsWith("on")&&a.length>2).map(a=>a.substring(2))}function Ke(o,a,p,s,h){const m=Zone.__symbol__(s);if(a[m])return;const x=a[m]=a[s];a[s]=function(b,I,H){return I&&I.prototype&&h.forEach(function(C){const $=`${p}.${s}::`+C,U=I.prototype;try{if(U.hasOwnProperty(C)){const re=o.ObjectGetOwnPropertyDescriptor(U,C);re&&re.value?(re.value=o.wrapWithCurrentZone(re.value,$),o._redefineProperty(I.prototype,C,re)):U[C]&&(U[C]=o.wrapWithCurrentZone(U[C],$))}else U[C]&&(U[C]=o.wrapWithCurrentZone(U[C],$))}catch{}}),x.call(a,b,I,H)},o.attachOriginToPatched(a[s],x)}const Ct=function P(){const o=globalThis,a=!0===o[D("forceDuplicateZoneCheck")];if(o.Zone&&(a||"function"!=typeof o.Zone.__symbol__))throw new Error("Zone already loaded.");return o.Zone??=function Y(){const o=Ce.performance;function a(X){o&&o.mark&&o.mark(X)}function p(X,k){o&&o.measure&&o.measure(X,k)}a("Zone");let s=(()=>{class X{static#e=this.__symbol__=D;static assertZonePatched(){if(Ce.Promise!==q.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let i=X.current;for(;i.parent;)i=i.parent;return i}static get current(){return L.zone}static get currentTask(){return W}static __load_patch(i,u,S=!1){if(q.hasOwnProperty(i)){const z=!0===Ce[D("forceDuplicateZoneCheck")];if(!S&&z)throw Error("Already loaded patch: "+i)}else if(!Ce["__Zone_disable_"+i]){const z="Zone:"+i;a(z),q[i]=u(Ce,X,Z),p(z,z)}}get parent(){return this._parent}get name(){return this._name}constructor(i,u){this._parent=i,this._name=u?u.name||"unnamed":"",this._properties=u&&u.properties||{},this._zoneDelegate=new m(this,this._parent&&this._parent._zoneDelegate,u)}get(i){const u=this.getZoneWith(i);if(u)return u._properties[i]}getZoneWith(i){let u=this;for(;u;){if(u._properties.hasOwnProperty(i))return u;u=u._parent}return null}fork(i){if(!i)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,i)}wrap(i,u){if("function"!=typeof i)throw new Error("Expecting function got: "+i);const S=this._zoneDelegate.intercept(this,i,u),z=this;return function(){return z.runGuarded(S,this,arguments,u)}}run(i,u,S,z){L={parent:L,zone:this};try{return this._zoneDelegate.invoke(this,i,u,S,z)}finally{L=L.parent}}runGuarded(i,u=null,S,z){L={parent:L,zone:this};try{try{return this._zoneDelegate.invoke(this,i,u,S,z)}catch(Ie){if(this._zoneDelegate.handleError(this,Ie))throw Ie}}finally{L=L.parent}}runTask(i,u,S){if(i.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(i.zone||Ze).name+"; Execution: "+this.name+")");if(i.state===Ae&&(i.type===ye||i.type===A))return;const z=i.state!=fe;z&&i._transitionTo(fe,g),i.runCount++;const Ie=W;W=i,L={parent:L,zone:this};try{i.type==A&&i.data&&!i.data.isPeriodic&&(i.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,i,u,S)}catch(Q){if(this._zoneDelegate.handleError(this,Q))throw Q}}finally{i.state!==Ae&&i.state!==Re&&(i.type==ye||i.data&&i.data.isPeriodic?z&&i._transitionTo(g,fe):(i.runCount=0,this._updateTaskCount(i,-1),z&&i._transitionTo(Ae,fe,Ae))),L=L.parent,W=Ie}}scheduleTask(i){if(i.zone&&i.zone!==this){let S=this;for(;S;){if(S===i.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${i.zone.name}`);S=S.parent}}i._transitionTo(N,Ae);const u=[];i._zoneDelegates=u,i._zone=this;try{i=this._zoneDelegate.scheduleTask(this,i)}catch(S){throw i._transitionTo(Re,N,Ae),this._zoneDelegate.handleError(this,S),S}return i._zoneDelegates===u&&this._updateTaskCount(i,1),i.state==N&&i._transitionTo(g,N),i}scheduleMicroTask(i,u,S,z){return this.scheduleTask(new x(de,i,u,S,z,void 0))}scheduleMacroTask(i,u,S,z,Ie){return this.scheduleTask(new x(A,i,u,S,z,Ie))}scheduleEventTask(i,u,S,z,Ie){return this.scheduleTask(new x(ye,i,u,S,z,Ie))}cancelTask(i){if(i.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(i.zone||Ze).name+"; Execution: "+this.name+")");if(i.state===g||i.state===fe){i._transitionTo(we,g,fe);try{this._zoneDelegate.cancelTask(this,i)}catch(u){throw i._transitionTo(Re,we),this._zoneDelegate.handleError(this,u),u}return this._updateTaskCount(i,-1),i._transitionTo(Ae,we),i.runCount=0,i}}_updateTaskCount(i,u){const S=i._zoneDelegates;-1==u&&(i._zoneDelegates=null);for(let z=0;zX.hasTask(i,u),onScheduleTask:(X,k,i,u)=>X.scheduleTask(i,u),onInvokeTask:(X,k,i,u,S,z)=>X.invokeTask(i,u,S,z),onCancelTask:(X,k,i,u)=>X.cancelTask(i,u)};class m{get zone(){return this._zone}constructor(k,i,u){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this._zone=k,this._parentDelegate=i,this._forkZS=u&&(u&&u.onFork?u:i._forkZS),this._forkDlgt=u&&(u.onFork?i:i._forkDlgt),this._forkCurrZone=u&&(u.onFork?this._zone:i._forkCurrZone),this._interceptZS=u&&(u.onIntercept?u:i._interceptZS),this._interceptDlgt=u&&(u.onIntercept?i:i._interceptDlgt),this._interceptCurrZone=u&&(u.onIntercept?this._zone:i._interceptCurrZone),this._invokeZS=u&&(u.onInvoke?u:i._invokeZS),this._invokeDlgt=u&&(u.onInvoke?i:i._invokeDlgt),this._invokeCurrZone=u&&(u.onInvoke?this._zone:i._invokeCurrZone),this._handleErrorZS=u&&(u.onHandleError?u:i._handleErrorZS),this._handleErrorDlgt=u&&(u.onHandleError?i:i._handleErrorDlgt),this._handleErrorCurrZone=u&&(u.onHandleError?this._zone:i._handleErrorCurrZone),this._scheduleTaskZS=u&&(u.onScheduleTask?u:i._scheduleTaskZS),this._scheduleTaskDlgt=u&&(u.onScheduleTask?i:i._scheduleTaskDlgt),this._scheduleTaskCurrZone=u&&(u.onScheduleTask?this._zone:i._scheduleTaskCurrZone),this._invokeTaskZS=u&&(u.onInvokeTask?u:i._invokeTaskZS),this._invokeTaskDlgt=u&&(u.onInvokeTask?i:i._invokeTaskDlgt),this._invokeTaskCurrZone=u&&(u.onInvokeTask?this._zone:i._invokeTaskCurrZone),this._cancelTaskZS=u&&(u.onCancelTask?u:i._cancelTaskZS),this._cancelTaskDlgt=u&&(u.onCancelTask?i:i._cancelTaskDlgt),this._cancelTaskCurrZone=u&&(u.onCancelTask?this._zone:i._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const S=u&&u.onHasTask;(S||i&&i._hasTaskZS)&&(this._hasTaskZS=S?u:h,this._hasTaskDlgt=i,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,u.onScheduleTask||(this._scheduleTaskZS=h,this._scheduleTaskDlgt=i,this._scheduleTaskCurrZone=this._zone),u.onInvokeTask||(this._invokeTaskZS=h,this._invokeTaskDlgt=i,this._invokeTaskCurrZone=this._zone),u.onCancelTask||(this._cancelTaskZS=h,this._cancelTaskDlgt=i,this._cancelTaskCurrZone=this._zone))}fork(k,i){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,k,i):new s(k,i)}intercept(k,i,u){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,k,i,u):i}invoke(k,i,u,S,z){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,k,i,u,S,z):i.apply(u,S)}handleError(k,i){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,k,i)}scheduleTask(k,i){let u=i;if(this._scheduleTaskZS)this._hasTaskZS&&u._zoneDelegates.push(this._hasTaskDlgtOwner),u=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,k,i),u||(u=i);else if(i.scheduleFn)i.scheduleFn(i);else{if(i.type!=de)throw new Error("Task is missing scheduleFn.");ge(i)}return u}invokeTask(k,i,u,S){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,k,i,u,S):i.callback.apply(u,S)}cancelTask(k,i){let u;if(this._cancelTaskZS)u=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,k,i);else{if(!i.cancelFn)throw Error("Task is not cancelable");u=i.cancelFn(i)}return u}hasTask(k,i){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,k,i)}catch(u){this.handleError(k,u)}}_updateTaskCount(k,i){const u=this._taskCounts,S=u[k],z=u[k]=S+i;if(z<0)throw new Error("More tasks executed then were scheduled.");0!=S&&0!=z||this.hasTask(this._zone,{microTask:u.microTask>0,macroTask:u.macroTask>0,eventTask:u.eventTask>0,change:k})}}class x{constructor(k,i,u,S,z,Ie){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=k,this.source=i,this.data=S,this.scheduleFn=z,this.cancelFn=Ie,!u)throw new Error("callback is not defined");this.callback=u;const Q=this;this.invoke=k===ye&&S&&S.useG?x.invokeTask:function(){return x.invokeTask.call(Ce,Q,this,arguments)}}static invokeTask(k,i,u){k||(k=this),Pe++;try{return k.runCount++,k.zone.runTask(k,i,u)}finally{1==Pe&&oe(),Pe--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(Ae,N)}_transitionTo(k,i,u){if(this._state!==i&&this._state!==u)throw new Error(`${this.type} '${this.source}': can not transition to '${k}', expecting state '${i}'${u?" or '"+u+"'":""}, was '${this._state}'.`);this._state=k,k==Ae&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const b=D("setTimeout"),I=D("Promise"),H=D("then");let U,C=[],$=!1;function re(X){if(U||Ce[I]&&(U=Ce[I].resolve(0)),U){let k=U[H];k||(k=U.then),k.call(U,X)}else Ce[b](X,0)}function ge(X){0===Pe&&0===C.length&&re(oe),X&&C.push(X)}function oe(){if(!$){for($=!0;C.length;){const X=C;C=[];for(let k=0;kL,onUnhandledError:ve,microtaskDrainDone:ve,scheduleMicroTask:ge,showUncaughtError:()=>!s[D("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:ve,patchMethod:()=>ve,bindArguments:()=>[],patchThen:()=>ve,patchMacroTask:()=>ve,patchEventPrototype:()=>ve,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>ve,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>ve,wrapWithCurrentZone:()=>ve,filterProperties:()=>[],attachOriginToPatched:()=>ve,_redefineProperty:()=>ve,patchCallbacks:()=>ve,nativeScheduleMicroTask:re};let L={parent:null,zone:new s(null,null)},W=null,Pe=0;function ve(){}return p("Zone","Zone"),s}(),o.Zone}();(function mt(o){(function Fe(o){o.__load_patch("ZoneAwarePromise",(a,p,s)=>{const h=Object.getOwnPropertyDescriptor,m=Object.defineProperty,b=s.symbol,I=[],H=!1!==a[b("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],C=b("Promise"),$=b("then"),U="__creationTrace__";s.onUnhandledError=T=>{if(s.showUncaughtError()){const f=T&&T.rejection;f?console.error("Unhandled Promise rejection:",f instanceof Error?f.message:f,"; Zone:",T.zone.name,"; Task:",T.task&&T.task.source,"; Value:",f,f instanceof Error?f.stack:void 0):console.error(T)}},s.microtaskDrainDone=()=>{for(;I.length;){const T=I.shift();try{T.zone.runGuarded(()=>{throw T.throwOriginal?T.rejection:T})}catch(f){ge(f)}}};const re=b("unhandledPromiseRejectionHandler");function ge(T){s.onUnhandledError(T);try{const f=p[re];"function"==typeof f&&f.call(this,T)}catch{}}function oe(T){return T&&T.then}function Ze(T){return T}function Ae(T){return Q.reject(T)}const N=b("state"),g=b("value"),fe=b("finally"),we=b("parentPromiseValue"),Re=b("parentPromiseState"),de="Promise.then",A=null,ye=!0,q=!1,Z=0;function L(T,f){return y=>{try{X(T,f,y)}catch(_){X(T,!1,_)}}}const W=function(){let T=!1;return function(y){return function(){T||(T=!0,y.apply(null,arguments))}}},Pe="Promise resolved with itself",ve=b("currentTaskTrace");function X(T,f,y){const _=W();if(T===y)throw new TypeError(Pe);if(T[N]===A){let M=null;try{("object"==typeof y||"function"==typeof y)&&(M=y&&y.then)}catch(j){return _(()=>{X(T,!1,j)})(),T}if(f!==q&&y instanceof Q&&y.hasOwnProperty(N)&&y.hasOwnProperty(g)&&y[N]!==A)i(y),X(T,y[N],y[g]);else if(f!==q&&"function"==typeof M)try{M.call(y,_(L(T,f)),_(L(T,!1)))}catch(j){_(()=>{X(T,!1,j)})()}else{T[N]=f;const j=T[g];if(T[g]=y,T[fe]===fe&&f===ye&&(T[N]=T[Re],T[g]=T[we]),f===q&&y instanceof Error){const F=p.currentTask&&p.currentTask.data&&p.currentTask.data[U];F&&m(y,ve,{configurable:!0,enumerable:!1,writable:!0,value:F})}for(let F=0;F{try{const O=T[g],G=!!y&&fe===y[fe];G&&(y[we]=O,y[Re]=j);const ee=f.run(F,void 0,G&&F!==Ae&&F!==Ze?[]:[O]);X(y,!0,ee)}catch(O){X(y,!1,O)}},y)}const z=function(){},Ie=a.AggregateError;class Q{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(f){return f instanceof Q?f:X(new this(null),ye,f)}static reject(f){return X(new this(null),q,f)}static withResolvers(){const f={};return f.promise=new Q((y,_)=>{f.resolve=y,f.reject=_}),f}static any(f){if(!f||"function"!=typeof f[Symbol.iterator])return Promise.reject(new Ie([],"All promises were rejected"));const y=[];let _=0;try{for(let F of f)_++,y.push(Q.resolve(F))}catch{return Promise.reject(new Ie([],"All promises were rejected"))}if(0===_)return Promise.reject(new Ie([],"All promises were rejected"));let M=!1;const j=[];return new Q((F,O)=>{for(let G=0;G{M||(M=!0,F(ee))},ee=>{j.push(ee),_--,0===_&&(M=!0,O(new Ie(j,"All promises were rejected")))})})}static race(f){let y,_,M=new this((O,G)=>{y=O,_=G});function j(O){y(O)}function F(O){_(O)}for(let O of f)oe(O)||(O=this.resolve(O)),O.then(j,F);return M}static all(f){return Q.allWithCallback(f)}static allSettled(f){return(this&&this.prototype instanceof Q?this:Q).allWithCallback(f,{thenCallback:_=>({status:"fulfilled",value:_}),errorCallback:_=>({status:"rejected",reason:_})})}static allWithCallback(f,y){let _,M,j=new this((ee,Ee)=>{_=ee,M=Ee}),F=2,O=0;const G=[];for(let ee of f){oe(ee)||(ee=this.resolve(ee));const Ee=O;try{ee.then(De=>{G[Ee]=y?y.thenCallback(De):De,F--,0===F&&_(G)},De=>{y?(G[Ee]=y.errorCallback(De),F--,0===F&&_(G)):M(De)})}catch(De){M(De)}F++,O++}return F-=2,0===F&&_(G),j}constructor(f){const y=this;if(!(y instanceof Q))throw new Error("Must be an instanceof Promise.");y[N]=A,y[g]=[];try{const _=W();f&&f(_(L(y,ye)),_(L(y,q)))}catch(_){X(y,!1,_)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return Q}then(f,y){let _=this.constructor?.[Symbol.species];(!_||"function"!=typeof _)&&(_=this.constructor||Q);const M=new _(z),j=p.current;return this[N]==A?this[g].push(j,M,f,y):u(this,j,M,f,y),M}catch(f){return this.then(null,f)}finally(f){let y=this.constructor?.[Symbol.species];(!y||"function"!=typeof y)&&(y=Q);const _=new y(z);_[fe]=fe;const M=p.current;return this[N]==A?this[g].push(M,_,f,f):u(this,M,_,f,f),_}}Q.resolve=Q.resolve,Q.reject=Q.reject,Q.race=Q.race,Q.all=Q.all;const Tt=a[C]=a.Promise;a.Promise=Q;const at=b("thenPatched");function ze(T){const f=T.prototype,y=h(f,"then");if(y&&(!1===y.writable||!y.configurable))return;const _=f.then;f[$]=_,T.prototype.then=function(M,j){return new Q((O,G)=>{_.call(this,O,G)}).then(M,j)},T[at]=!0}return s.patchThen=ze,Tt&&(ze(Tt),Oe(a,"fetch",T=>function _t(T){return function(f,y){let _=T.apply(f,y);if(_ instanceof Q)return _;let M=_.constructor;return M[at]||ze(M),_}}(T))),Promise[p.__symbol__("uncaughtPromiseErrors")]=I,Q})})(o),function pe(o){o.__load_patch("toString",a=>{const p=Function.prototype.toString,s=R("OriginalDelegate"),h=R("Promise"),m=R("Error"),x=function(){if("function"==typeof this){const C=this[s];if(C)return"function"==typeof C?p.call(C):Object.prototype.toString.call(C);if(this===Promise){const $=a[h];if($)return p.call($)}if(this===Error){const $=a[m];if($)return p.call($)}}return p.call(this)};x[s]=p,Function.prototype.toString=x;const b=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":b.call(this)}})}(o),function Et(o){o.__load_patch("util",(a,p,s)=>{const h=J(a);s.patchOnProperties=it,s.patchMethod=Oe,s.bindArguments=he,s.patchMacroTask=wt;const m=p.__symbol__("BLACK_LISTED_EVENTS"),x=p.__symbol__("UNPATCHED_EVENTS");a[x]&&(a[m]=a[x]),a[m]&&(p[m]=p[x]=a[m]),s.patchEventPrototype=st,s.patchEventTarget=Je,s.isIEOrEdge=pt,s.ObjectDefineProperty=Te,s.ObjectGetOwnPropertyDescriptor=ue,s.ObjectCreate=_e,s.ArraySlice=B,s.patchClass=We,s.wrapWithCurrentZone=v,s.filterProperties=d,s.attachOriginToPatched=Ue,s._redefineProperty=Object.defineProperty,s.patchCallbacks=Ke,s.getGlobalObjects=()=>({globalSources:$e,zoneSymbolEventNames:Be,eventNames:h,isBrowser:rt,isMix:lt,isNode:qe,TRUE_STR:te,FALSE_STR:me,ZONE_SYMBOL_PREFIX:w,ADD_EVENT_LISTENER_STR:l,REMOVE_EVENT_LISTENER_STR:se})})}(o)})(Ct),function ce(o){o.__load_patch("legacy",a=>{const p=a[o.__symbol__("legacyPatch")];p&&p()}),o.__load_patch("timers",a=>{const p="set",s="clear";e(a,p,s,"Timeout"),e(a,p,s,"Interval"),e(a,p,s,"Immediate")}),o.__load_patch("requestAnimationFrame",a=>{e(a,"request","cancel","AnimationFrame"),e(a,"mozRequest","mozCancel","AnimationFrame"),e(a,"webkitRequest","webkitCancel","AnimationFrame")}),o.__load_patch("blocking",(a,p)=>{const s=["alert","prompt","confirm"];for(let h=0;hfunction(H,C){return p.current.run(x,a,C,I)})}),o.__load_patch("EventTarget",(a,p,s)=>{(function c(o,a){a.patchEventPrototype(o,a)})(a,s),function n(o,a){if(Zone[a.symbol("patchEventTarget")])return;const{eventNames:p,zoneSymbolEventNames:s,TRUE_STR:h,FALSE_STR:m,ZONE_SYMBOL_PREFIX:x}=a.getGlobalObjects();for(let I=0;I{We("MutationObserver"),We("WebKitMutationObserver")}),o.__load_patch("IntersectionObserver",(a,p,s)=>{We("IntersectionObserver")}),o.__load_patch("FileReader",(a,p,s)=>{We("FileReader")}),o.__load_patch("on_property",(a,p,s)=>{!function ie(o,a){if(qe&&!lt||Zone[o.symbol("patchEvents")])return;const p=a.__Zone_ignore_on_properties;let s=[];if(rt){const h=window;s=s.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const m=function ht(){try{const o=ae.navigator.userAgent;if(-1!==o.indexOf("MSIE ")||-1!==o.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:h,ignoreProperties:["error"]}]:[];E(h,J(h),p&&p.concat(m),ne(h))}s=s.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let h=0;h{!function t(o,a){const{isBrowser:p,isMix:s}=a.getGlobalObjects();(p||s)&&o.customElements&&"customElements"in o&&a.patchCallbacks(a,o.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(a,s)}),o.__load_patch("XHR",(a,p)=>{!function H(C){const $=C.XMLHttpRequest;if(!$)return;const U=$.prototype;let ge=U[ke],oe=U[le];if(!ge){const Z=C.XMLHttpRequestEventTarget;if(Z){const L=Z.prototype;ge=L[ke],oe=L[le]}}const Ze="readystatechange",Ae="scheduled";function N(Z){const L=Z.data,W=L.target;W[x]=!1,W[I]=!1;const Pe=W[m];ge||(ge=W[ke],oe=W[le]),Pe&&oe.call(W,Ze,Pe);const ve=W[m]=()=>{if(W.readyState===W.DONE)if(!L.aborted&&W[x]&&Z.state===Ae){const k=W[p.__symbol__("loadfalse")];if(0!==W.status&&k&&k.length>0){const i=Z.invoke;Z.invoke=function(){const u=W[p.__symbol__("loadfalse")];for(let S=0;Sfunction(Z,L){return Z[h]=0==L[2],Z[b]=L[1],we.apply(Z,L)}),de=R("fetchTaskAborting"),A=R("fetchTaskScheduling"),ye=Oe(U,"send",()=>function(Z,L){if(!0===p.current[A]||Z[h])return ye.apply(Z,L);{const W={target:Z,url:Z[b],isPeriodic:!1,args:L,aborted:!1},Pe=V("XMLHttpRequest.send",g,W,N,fe);Z&&!0===Z[I]&&!W.aborted&&Pe.state===Ae&&Pe.invoke()}}),q=Oe(U,"abort",()=>function(Z,L){const W=function re(Z){return Z[s]}(Z);if(W&&"string"==typeof W.type){if(null==W.cancelFn||W.data&&W.data.aborted)return;W.zone.cancelTask(W)}else if(!0===p.current[de])return q.apply(Z,L)})}(a);const s=R("xhrTask"),h=R("xhrSync"),m=R("xhrListener"),x=R("xhrScheduled"),b=R("xhrURL"),I=R("xhrErrorBeforeScheduled")}),o.__load_patch("geolocation",a=>{a.navigator&&a.navigator.geolocation&&function ct(o,a){const p=o.constructor.name;for(let s=0;s{const I=function(){return b.apply(this,he(arguments,p+"."+h))};return Ue(I,b),I})(m)}}}(a.navigator.geolocation,["getCurrentPosition","watchPosition"])}),o.__load_patch("PromiseRejectionEvent",(a,p)=>{function s(h){return function(m){Ne(a,h).forEach(b=>{const I=a.PromiseRejectionEvent;if(I){const H=new I(h,{promise:m.promise,reason:m.rejection});b.invoke(H)}})}}a.PromiseRejectionEvent&&(p[R("unhandledPromiseRejectionHandler")]=s("unhandledrejection"),p[R("rejectionHandledHandler")]=s("rejectionhandled"))}),o.__load_patch("queueMicrotask",(a,p,s)=>{!function kt(o,a){a.patchMethod(o,"queueMicrotask",p=>function(s,h){Zone.current.scheduleMicroTask("queueMicrotask",h[0])})}(a,s)})}(Ct)}},Ce=>{var D=P=>Ce(Ce.s=P);D(6935),D(4050)}]); \ No newline at end of file diff --git a/frontend/runtime.491af5822cc47e09.js b/frontend/runtime.491af5822cc47e09.js deleted file mode 100644 index 7a0fb3ed..00000000 --- a/frontend/runtime.491af5822cc47e09.js +++ /dev/null @@ -1 +0,0 @@ -(()=>{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[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=(o,t,i,f)=>{if(!t){var a=1/0;for(n=0;n=f)&&Object.keys(r.O).every(b=>r.O[b](t[d]))?t.splice(d--,1):(s=!1,f0&&e[n-1][2]>f;n--)e[n]=e[n-1];e[n]=[t,i,f]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{125:"708b87b4f08ae30f",456:"21f2112ce22ca275",570:"1e18345ecab5f7fe",758:"8736aa34f95f1235"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="RTLApp:";r.l=(t,i,f,n)=>{if(e[t])e[t].push(i);else{var a,s;if(void 0!==f)for(var d=document.getElementsByTagName("script"),u=0;u{a.onerror=a.onload=null,clearTimeout(p);var h=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),h&&h.forEach(y=>y(b)),g)return g(b)},p=setTimeout(c.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=c.bind(null,a.onerror),a.onload=c.bind(null,a.onload),s&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&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:o=>o},typeof trustedTypes<"u"&&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=(i,f)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)f.push(n[2]);else if(666!=i){var a=new Promise((l,c)=>n=e[i]=[l,c]);f.push(n[2]=a);var s=r.p+r.u(i),d=new Error;r.l(s,l=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var c=l&&("load"===l.type?"missing":l.type),p=l&&l.target&&l.target.src;d.message="Loading chunk "+i+" failed.\n("+c+": "+p+")",d.name="ChunkLoadError",d.type=c,d.request=p,n[1](d)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,f)=>{var d,u,[n,a,s]=f,l=0;if(n.some(p=>0!==e[p])){for(d in a)r.o(a,d)&&(r.m[d]=a[d]);if(s)var c=s(r)}for(i&&i(f);l{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[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=(o,t,i,f)=>{if(!t){var a=1/0;for(n=0;n=f)&&Object.keys(r.O).every(b=>r.O[b](t[l]))?t.splice(l--,1):(c=!1,f0&&e[n-1][2]>f;n--)e[n]=e[n-1];e[n]=[t,i,f]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{17:"d00d31d08d7bad32",190:"88ca997666a3998a",193:"b1206fbf24aa1327",853:"c4ce8a9a0bef2bb7"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="RTLApp:";r.l=(t,i,f,n)=>{if(e[t])e[t].push(i);else{var a,c;if(void 0!==f)for(var l=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(y=>y(b)),g)return g(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=>{typeof Symbol<"u"&&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:o=>o},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={121:0};r.f.j=(i,f)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)f.push(n[2]);else if(121!=i){var a=new Promise((u,s)=>n=e[i]=[u,s]);f.push(n[2]=a);var c=r.p+r.u(i),l=new Error;r.l(c,u=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var s=u&&("load"===u.type?"missing":u.type),p=u&&u.target&&u.target.src;l.message="Loading chunk "+i+" failed.\n("+s+": "+p+")",l.name="ChunkLoadError",l.type=s,l.request=p,n[1](l)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,f)=>{var l,d,[n,a,c]=f,u=0;if(n.some(p=>0!==e[p])){for(l in a)r.o(a,l)&&(r.m[l]=a[l]);if(c)var s=c(r)}for(i&&i(f);u.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:95%}@media only screen and (max-width: 56.25em){html{font-size:90%}}@media only screen and (max-width: 37.5em){html{font-size:80%}}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:2.5rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:16rem;height:100%;overflow:hidden!important}span.page-text,.mat-mdc-slide-toggle,.material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:3rem}.mat-mdc-checkbox{min-height:4rem}.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:4rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.75rem}@media only screen and (max-width: 56.25em){.inner-sidenav-content{padding:.5rem}}@media only screen and (max-width: 37.5em){.inner-sidenav-content{padding:.5rem .25rem}}.top-50{top:50px}*{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:.625rem}.spinner-dialog-panel .mat-mdc-dialog-container .mat-mdc-dialog-surface{background:transparent;box-shadow:none}.mat-mdc-dialog-container .mat-mdc-dialog-surface{overflow:hidden}@media only screen and (max-width: 75em){button.mdc-button{min-width:50px}}@media only screen and (max-width: 56.25em){button.mdc-button{min-width:40px}}@media only screen and (max-width: 37.5em){button.mdc-button{min-width:20px}}button.mdc-button.mat-mdc-button-base{font-size:103%;font-weight:500;font-family:Roboto,sans-serif}button.mdc-button.mat-mdc-button-base.mat-mdc-unelevated-button{margin-bottom:1rem}.mat-mdc-icon-button.mat-mdc-button-base.btn-icon-small{height:40px;padding:.75rem}.mdc-floating-label{will-change:unset!important}.mat-mdc-form-field.mat-form-field-disabled,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper.mdc-text-field--disable,.mat-mdc-form-field.mat-form-field-disabled .mdc-floating-label.mat-mdc-floating-label,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-input-element.mat-mdc-form-field-input-control,.mat-mdc-slide-toggle .mdc-switch.mdc-switch--disabled{cursor:not-allowed}.padding-gap{padding:.5rem!important}@media only screen and (max-width: 56.25em){.padding-gap{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap{padding:.125rem!important}}.padding-gap-x{padding:0 .5rem!important}@media only screen and (max-width: 75em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x{padding:0 .125rem!important}}.padding-gap-large{padding:1rem!important}@media only screen and (max-width: 75em){.padding-gap-large{padding:2rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-large{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-large{padding:.125rem!important}}.padding-gap-x-large{padding:0 1rem!important}@media only screen and (max-width: 75em){.padding-gap-x-large{padding:0 .5rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x-large{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x-large{padding:0 .125rem!important}}.padding-gap-bottom-large{padding-bottom:1rem!important}@media only screen and (max-width: 56.25em){.padding-gap-bottom-large{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-bottom-large{padding-bottom:.125rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-mdc-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-mdc-card-original{padding:1rem!important;border-radius:4px!important}.mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix,.mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix{padding-right:1rem}mat-card-content.mat-mdc-card-content:first-child{padding-top:0}.card-content-gap{padding:.6rem 1rem!important;height:100%}@media only screen and (max-width: 56.25em){.card-content-gap{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.card-content-gap{padding:.25rem .125rem!important}}.routing-tabs-block .mat-mdc-tab-body-wrapper{padding:0!important;min-height:100px}.mat-mdc-card-actions{display:block;margin-bottom:1rem;padding-left:.3333333333rem;padding-right:.3333333333rem}.mat-mdc-card-content,.mat-mdc-card-subtitle,.mat-mdc-card-title{display:block;margin-bottom:1rem}.mat-mdc-card-content form,.mat-mdc-card-subtitle form,.mat-mdc-card-title form{overflow:hidden}.mat-mdc-card-title{font-size:125%}.mat-mdc-card-subtitle{font-size:120%}.mat-mdc-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-mdc-select{margin:0 1rem 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:.625rem!important}@media only screen and (max-width: 56.25em){.mt-1{margin-top:.5rem!important}}@media only screen and (max-width: 37.5em){.mt-1{margin-top:.5rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.mb-1{margin-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.mb-1{margin-bottom:.5rem!important}}.mb-6{margin-bottom:3.75rem!important}@media only screen and (max-width: 56.25em){.mb-6{margin-bottom:3rem!important}}@media only screen and (max-width: 37.5em){.mb-6{margin-bottom:3rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.25rem!important}.ml-1{margin-left:.625rem!important}@media only screen and (max-width: 56.25em){.ml-1{margin-left:.25rem!important}}@media only screen and (max-width: 37.5em){.ml-1{margin-left:2px!important}}.ml-minus-1{margin-left:-.625rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:3px!important}.mr-5px{margin-right:5px!important}.mr-1{margin-right:.625rem!important}@media only screen and (max-width: 56.25em){.mr-1{margin-right:.25rem!important}}@media only screen and (max-width: 37.5em){.mr-1{margin-right:2px!important}}.mx-1{margin:0 .625rem!important}@media only screen and (max-width: 56.25em){.mx-1{margin:0 .25rem!important}}@media only screen and (max-width: 37.5em){.mx-1{margin:0 2px!important}}.my-1{margin:.625rem 0!important}@media only screen and (max-width: 56.25em){.my-1{margin:.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-1{margin:.5rem 0!important}}.m-1{margin:.625rem!important}@media only screen and (max-width: 56.25em){.m-1{margin:.5rem!important}}@media only screen and (max-width: 37.5em){.m-1{margin:.5rem!important}}.mt-2{margin-top:1.25rem!important}@media only screen and (max-width: 56.25em){.mt-2{margin-top:1rem!important}}@media only screen and (max-width: 37.5em){.mt-2{margin-top:1rem!important}}.mt-3{margin-top:2rem!important}@media only screen and (max-width: 56.25em){.mt-3{margin-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.mt-3{margin-top:1.5rem!important}}.mt-4{margin-top:2.5rem!important}@media only screen and (max-width: 56.25em){.mt-4{margin-top:2rem!important}}@media only screen and (max-width: 37.5em){.mt-4{margin-top:2rem!important}}.mt-6{margin-top:3.75rem!important}@media only screen and (max-width: 56.25em){.mt-6{margin-top:3rem!important}}@media only screen and (max-width: 37.5em){.mt-6{margin-top:3rem!important}}.mt-minus-1{margin-top:-.625rem!important}@media only screen and (max-width: 56.25em){.mt-minus-1{margin-top:-.5rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-1{margin-top:-.5rem!important}}.mt-minus-2{margin-top:-1.25rem!important}@media only screen and (max-width: 56.25em){.mt-minus-2{margin-top:-1rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-2{margin-top:-1rem!important}}.mb-2{margin-bottom:1rem!important}@media only screen and (max-width: 56.25em){.mb-2{margin-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.mb-2{margin-bottom:1rem!important}}.mb-3{margin-bottom:2rem!important}@media only screen and (max-width: 56.25em){.mb-3{margin-bottom:1.5rem!important}}@media only screen and (max-width: 37.5em){.mb-3{margin-bottom:1.5rem!important}}.mb-4{margin-bottom:2.5rem!important}@media only screen and (max-width: 56.25em){.mb-4{margin-bottom:1.25rem!important}}@media only screen and (max-width: 37.5em){.mb-4{margin-bottom:1.25rem!important}}.ml-2{margin-left:1.25rem!important}@media only screen and (max-width: 56.25em){.ml-2{margin-left:.5rem!important}}@media only screen and (max-width: 37.5em){.ml-2{margin-left:.25rem!important}}.mr-2{margin-right:1.25rem!important}@media only screen and (max-width: 56.25em){.mr-2{margin-right:.5rem!important}}@media only screen and (max-width: 37.5em){.mr-2{margin-right:.25rem!important}}.ml-4{margin-left:2.5rem!important}@media only screen and (max-width: 56.25em){.ml-4{margin-left:1rem!important}}@media only screen and (max-width: 37.5em){.ml-4{margin-left:.5rem!important}}.ml-5{margin-left:3rem!important}@media only screen and (max-width: 56.25em){.ml-5{margin-left:1.25rem!important}}@media only screen and (max-width: 37.5em){.ml-5{margin-left:.625rem!important}}.mr-4{margin-right:2.5rem!important}@media only screen and (max-width: 56.25em){.mr-4{margin-right:1rem!important}}@media only screen and (max-width: 37.5em){.mr-4{margin-right:.5rem!important}}.mr-5{margin-right:3rem!important}@media only screen and (max-width: 56.25em){.mr-5{margin-right:1.25rem!important}}@media only screen and (max-width: 37.5em){.mr-5{margin-right:.625rem!important}}.mr-6{margin-right:3.75rem!important}@media only screen and (max-width: 56.25em){.mr-6{margin-right:2rem!important}}@media only screen and (max-width: 37.5em){.mr-6{margin-right:1.25rem!important}}.mx-2{margin:0 1.25rem!important}@media only screen and (max-width: 56.25em){.mx-2{margin:0 .5rem!important}}@media only screen and (max-width: 37.5em){.mx-2{margin:0 .25rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:1.25rem 0!important}@media only screen and (max-width: 56.25em){.my-2{margin:1rem 0!important}}@media only screen and (max-width: 37.5em){.my-2{margin:1rem 0!important}}.my-3{margin:2rem 0!important}@media only screen and (max-width: 56.25em){.my-3{margin:1.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-3{margin:1.5rem 0!important}}.my-4{margin:2.5rem 0!important}@media only screen and (max-width: 56.25em){.my-4{margin:1.25rem 0!important}}@media only screen and (max-width: 37.5em){.my-4{margin:1.25rem 0!important}}.m-2{margin:1.25rem!important}@media only screen and (max-width: 56.25em){.m-2{margin:1rem!important}}@media only screen and (max-width: 37.5em){.m-2{margin:1rem!important}}.pt-1{padding-top:.625rem!important}@media only screen and (max-width: 56.25em){.pt-1{padding-top:.5rem!important}}@media only screen and (max-width: 37.5em){.pt-1{padding-top:.5rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.pb-1{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.pb-1{padding-bottom:.5rem!important}}.pl-5px{padding-left:5px!important}@media only screen and (max-width: 56.25em){.pl-5px{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-5px{padding-left:3px!important}}.pl-1{padding-left:.625rem!important}@media only screen and (max-width: 56.25em){.pl-1{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-1{padding-left:2px!important}}.pl-15px{padding-left:1rem!important}@media only screen and (max-width: 56.25em){.pl-15px{padding-left:.3333333333rem!important}}@media only screen and (max-width: 37.5em){.pl-15px{padding-left:.25rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:.625rem!important}@media only screen and (max-width: 56.25em){.pr-1{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){.pr-1{padding-right:2px!important}}.pr-3{padding-right:2rem!important}@media only screen and (max-width: 56.25em){.pr-3{padding-right:.75rem!important}}@media only screen and (max-width: 37.5em){.pr-3{padding-right:.3333333333rem!important}}.pr-4{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-4{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-4{padding-right:.5rem!important}}.pr-4px{padding-right:.25rem!important}.pr-6px{padding-right:.3333333333rem!important}.p-0{padding:0!important}.p-5px{padding:5px!important}.pl-0{padding-left:0!important}.px-1{padding:0 .625rem!important}@media only screen and (max-width: 56.25em){.px-1{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.px-1{padding:0 2px!important}}.py-0{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-0{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-0{padding:.5rem 0!important}}.py-1{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-1{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-1{padding:.5rem 0!important}}.p-1{padding:.625rem!important}@media only screen and (max-width: 56.25em){.p-1{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-1{padding:.5rem!important}}.p-16{padding:1rem!important}@media only screen and (max-width: 56.25em){.p-16{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-16{padding:.25rem!important}}.pt-2{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-2{padding-top:1rem!important}}@media only screen and (max-width: 37.5em){.pt-2{padding-top:1rem!important}}.pt-3{padding-top:2rem!important}@media only screen and (max-width: 56.25em){.pt-3{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-3{padding-top:1.5rem!important}}.pb-2{padding-bottom:1.25rem!important}@media only screen and (max-width: 56.25em){.pb-2{padding-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.pb-2{padding-bottom:1rem!important}}.pl-2{padding-left:1.25rem!important}@media only screen and (max-width: 56.25em){.pl-2{padding-left:.5rem!important}}@media only screen and (max-width: 37.5em){.pl-2{padding-left:.25rem!important}}.pt-4{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-4{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-4{padding-top:1.5rem!important}}.pl-3{padding-left:2rem!important}@media only screen and (max-width: 56.25em){.pl-3{padding-left:.75rem!important}}@media only screen and (max-width: 37.5em){.pl-3{padding-left:.3333333333rem!important}}.pl-4{padding-left:2.5rem!important}@media only screen and (max-width: 56.25em){.pl-4{padding-left:1rem!important}}@media only screen and (max-width: 37.5em){.pl-4{padding-left:.5rem!important}}.pr-2{padding-right:1.25rem!important}@media only screen and (max-width: 56.25em){.pr-2{padding-right:.5rem!important}}@media only screen and (max-width: 37.5em){.pr-2{padding-right:.25rem!important}}.pr-5{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-5{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-5{padding-right:.5rem!important}}.px-2{padding:0 1.25rem!important}@media only screen and (max-width: 56.25em){.px-2{padding:0 .5rem!important}}@media only screen and (max-width: 37.5em){.px-2{padding:0 .25rem!important}}.px-3{padding:0 2rem!important}@media only screen and (max-width: 56.25em){.px-3{padding:0 .75rem!important}}@media only screen and (max-width: 37.5em){.px-3{padding:0 .3333333333rem!important}}.px-4{padding:0 2.5rem!important}@media only screen and (max-width: 56.25em){.px-4{padding:0 1rem!important}}@media only screen and (max-width: 37.5em){.px-4{padding:0 .5rem!important}}.py-2{padding:1.25rem 0!important}@media only screen and (max-width: 56.25em){.py-2{padding:1rem 0!important}}@media only screen and (max-width: 37.5em){.py-2{padding:1rem 0!important}}.p-2{padding:1.25rem!important}@media only screen and (max-width: 56.25em){.p-2{padding:1rem!important}}@media only screen and (max-width: 37.5em){.p-2{padding:1rem!important}}.p-24{padding:1.5rem!important}@media only screen and (max-width: 56.25em){.p-24{padding:.75rem!important}}@media only screen and (max-width: 37.5em){.p-24{padding:.625rem!important}}.ps-2{padding-left:1.25rem!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 .mdc-data-table__cell{border-bottom:none!important}.mat-mdc-form-field-infix{width:14rem!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.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:5px!important}.top-minus-5px{position:relative;top:-5px}.top-minus-25px{position:relative;top:-1.5rem;margin-bottom:-1.5rem!important}.top-minus-30px{position:relative;top:-2rem}.cursor-pointer:hover{cursor:pointer!important}.cursor-default:hover{cursor:default!important}.cursor-not-allowed:hover{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}.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:.25rem;height:2.5rem;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:1.25rem}.fa-icon-small svg,.top-icon-small svg{min-width:1.25rem}.botlz-icon-sm{min-width:1rem;width:1rem;max-width:1rem}.copy-icon{position:relative;top:.25rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:5px}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mt-minus-5{position:relative;margin-top:-5px}.color-white{color:#fff!important}.custom-card{padding:0 0 .5rem!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:400px!important}.h-46{height:460px!important}.h-50{height:500px!important}.h-10{height:100px!important}.h-4{height:12rem!important}.h-35px{height:35px!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:3rem;height:3rem;padding:0 .75rem;cursor:pointer}@media only screen and (max-width: 37.5em){.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem}}.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:6rem}.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:1rem;cursor:pointer;display:flex;align-content:center}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:2.5rem;width:2.5rem;max-width:2.5rem}.icon-large{margin-left:-100%}.icon-small{height:1.25rem!important;width:1.25rem!important}.icon-smaller{height:.625rem!important;width:.625rem!important}.mat-icon-36{width:2.25rem!important;height:2.25rem!important}.mat-mdc-select.multi-node-select{width:84%}.page-title-container{font-size:110%;padding:0 .75rem;margin-bottom:.5rem}@media only screen and (max-width: 56.25em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}@media only screen and (max-width: 37.5em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}table{width:100%}th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .5rem}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .25rem}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .125rem}}th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.125rem!important}}th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.125rem!important}}.dot{display:inline-flex;width:.8rem;height:.8rem;border-radius:.8rem;margin:.25rem 0 0}.dot.tiny-dot{width:.5rem;height:.5rem;border-radius:.5rem;margin:0 .3333333333rem 1px 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-500{font-weight:500!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-divider.mat-divider-horizontal.mat-divider-inset{margin-left:1rem}.mat-vertical-stepper-header{padding:.625rem .625rem .625rem .5rem!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:.625rem;padding:.3333333333rem .625rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:3rem}.mat-mdc-tab .mdc-tab__content{overflow:hidden!important}.mdc-tab__text-label{opacity:1;padding:0;min-width:11rem}@media only screen and (max-width: 56.25em){.mdc-tab__text-label{min-width:auto}}@media only screen and (max-width: 37.5em){.mdc-tab__text-label{min-width:auto}}.dashboard-card{margin-bottom:0}.dashboard-card .mat-mdc-card-header{padding:16px 0 0 16px}.dashboard-card .mat-mdc-card-content.dashboard-card-content{margin-bottom:0}.dashboard-tabs-group.mat-mdc-tab-group{max-width:91%}.dashboard-tabs-group .mat-mdc-tab-list{width:100%}.dashboard-tabs-group .mdc-tab{margin:0;padding:0 1.5rem;display:flex;flex:1 0 auto;justify-content:center}.dashboard-tabs-group.mat-mdc-tab-group .mat-mdc-tab .mdc-tab__content .mdc-tab__text-label{min-width:5.5rem}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:1.25rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:1.25rem!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:50px}.btn-sticky-container{height:0;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}.mat-mdc-tooltip-panel{max-width:25rem!important}.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-mdc-tooltip-panel .mdc-tooltip__surface{min-width:10rem;max-width:unset;text-align:start}.go-to-link{text-decoration:underline;font-weight:500;cursor:pointer}.mat-mdc-card.dashboard-card{padding:0 .75rem!important}@media only screen and (max-width: 56.25em){.mat-mdc-card.dashboard-card{padding:.25rem .625rem!important}}@media only screen and (max-width: 37.5em){.mat-mdc-card.dashboard-card{padding:.25rem .5rem!important}}.mat-mdc-card.dashboard-card.p-0{padding:0!important}.mat-mdc-card.dashboard-card .mat-mdc-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:3.25rem}@media only screen and (max-width: 37.5em){.mat-column-actions{min-height:4.1rem}}.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 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .25rem}}.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 1.5rem 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .5rem .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .25rem .125rem}}@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:.5rem}}@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:.25rem}}html{--mat-ripple-color: rgba(0, 0, 0, .1)}html{--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}.mat-pseudo-checkbox-full{color:#0000008a}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#5e4ea5}.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#5e4ea5}.mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b0b0b0}.mat-app-background{background-color:#fafafa;color:#000000de}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}html{--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px}html{--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54)}html{--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#5e4ea540;background-color:var(--mdc-linear-progress-track-color, rgba(94, 78, 165, .25))}@media (forced-colors: active){.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(94, 78, 165, 0.25)'/%3E%3C/svg%3E")}}.mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#5e4ea540;background-color:var(--mdc-linear-progress-track-color, rgba(94, 78, 165, .25))}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}html{--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px}html{--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff}html{--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px}html{--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.mat-mdc-form-field-infix{min-height:56px}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:28px}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY( -34.75px) scale(var(--mat-mdc-form-field-floating-label-scale, .75));transform:var(--mat-mdc-form-field-label-transform)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix{padding-top:16px;padding-bottom:16px}.mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix{padding-top:24px;padding-bottom:8px}.mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix{padding-top:16px;padding-bottom:16px}html{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html{--mat-autocomplete-background-color: white}html{--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px}html{--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6)}.mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height: 32px}.mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #56479d;--mdc-switch-selected-handle-color: #56479d;--mdc-switch-selected-hover-state-layer-color: #56479d;--mdc-switch-selected-pressed-state-layer-color: #56479d;--mdc-switch-selected-focus-handle-color: #312579;--mdc-switch-selected-hover-handle-color: #312579;--mdc-switch-selected-pressed-handle-color: #312579;--mdc-switch-selected-focus-track-color: #8e83c0;--mdc-switch-selected-hover-track-color: #8e83c0;--mdc-switch-selected-pressed-track-color: #8e83c0;--mdc-switch-selected-track-color: #8e83c0;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.mat-mdc-slide-toggle{--mdc-switch-state-layer-size: 48px}html{--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px}.mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}html{--mdc-radio-state-layer-size: 40px}html{--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6}html{--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #5e4ea5;--mat-mdc-slider-hover-ripple-color: rgba(94, 78, 165, .05);--mat-mdc-slider-focus-ripple-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .6}html .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}html .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}html{--mat-menu-container-shape: 4px}html{--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white}html{--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38}html{--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#5e4ea5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}html{--mdc-list-list-item-one-line-container-height: 48px;--mdc-list-list-item-two-line-container-height: 64px;--mdc-list-list-item-three-line-container-height: 88px}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-state-layer-size: 40px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12)}html{--mat-paginator-container-size: 56px}.mat-mdc-paginator .mat-mdc-form-field-infix{min-height:40px}.mat-mdc-paginator .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:20px}.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY( -26.75px) scale(var(--mat-mdc-form-field-floating-label-scale, .75));transform:var(--mat-mdc-form-field-label-transform)}.mat-mdc-paginator .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix{padding-top:8px;padding-bottom:8px}.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix{padding-top:8px;padding-bottom:8px}.mat-mdc-paginator .mdc-text-field--no-label:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mat-mdc-form-field-infix{padding-top:8px;padding-bottom:8px}.mat-mdc-paginator .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-floating-label{display:none}html{--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height: 48px}html{--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16}html{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}html{--mdc-checkbox-state-layer-size: 40px}.mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button:hover,.mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-button{--mdc-text-button-container-height: 36px}.mat-mdc-raised-button{--mdc-protected-button-container-height: 36px}.mat-mdc-unelevated-button{--mdc-filled-button-container-height: 36px}.mat-mdc-outlined-button{--mdc-outlined-button-container-height: 36px}.mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:12px}html{--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px}html{--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38)}html .mat-mdc-fab.mat-primary,html .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-accent,html .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-warn,html .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html{--mdc-snackbar-container-shape: 4px}html{--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242}html{--mat-table-row-item-outline-width: 1px}html{--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12)}html{--mat-table-header-container-height: 56px;--mat-table-footer-container-height: 52px;--mat-table-row-item-container-height: 52px}html{--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px}html{--mdc-circular-progress-active-indicator-color: #5e4ea5}html .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}html .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.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;background-color:var(--mat-badge-background-color);color:var(--mat-badge-text-color);font-family:Roboto,sans-serif;font-family:var(--mat-badge-text-font, Roboto, sans-serif);font-size:12px;font-size:var(--mat-badge-text-size, 12px);font-weight:600;font-weight:var(--mat-badge-text-weight, 600)}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color);color:var(--mat-badge-disabled-state-text-color)}.mat-badge-hidden .mat-badge-content{display:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px;font-size:9px;font-size:var(--mat-badge-small-size-text-size, 9px)}.mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px;font-size:24px;font-size:var(--mat-badge-large-size-text-size, 24px)}.mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}html{--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38)}.mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}html{--mat-bottom-sheet-container-shape: 4px}html{--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white}html{--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12}html{--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0}html{--mat-standard-button-toggle-height: 48px}html{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 40px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:8px}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base .mat-mdc-button-touch-target{display:none}html{--mat-divider-width: 1px}html{--mat-divider-color: rgba(0, 0, 0, .12)}html{--mat-expansion-container-shape: 4px}html{--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54)}html{--mat-expansion-header-collapsed-state-height: 48px;--mat-expansion-header-expanded-state-height: 64px}html{--mat-icon-color: inherit}.mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.mat-icon.mat-accent{--mat-icon-color: #424242}.mat-icon.mat-warn{--mat-icon-color: #b00020}html{--mat-sidenav-container-shape: 0}html{--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6)}html{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent}html .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}html .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}html{--mat-stepper-header-height: 72px}html{--mat-sort-arrow-color: #757575}html{--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}html{--mat-toolbar-standard-height: 64px;--mat-toolbar-mobile-height: 56px}html{--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}html{--mat-tree-node-min-height: 48px}.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:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.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-backdrop-noop-animation{transition:none}.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{position:relative}.rtl-container .mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.rtl-container .mat-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-focus-indicator-display: block}.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container .mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.rtl-container .mat-mdc-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-mdc-focus-indicator-display: block}.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;padding:0 2.5rem 0 1rem}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.purple.day .page-title,.rtl-container.purple.day .mat-mdc-select-value,.rtl-container.purple.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#5e4ea5}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#5e4ea5}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#5e4ea5;cursor:pointer}.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,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .spinner-container h2{color:#fff}.rtl-container.purple.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#5e4ea5}.rtl-container.purple.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#5e4ea5}.rtl-container.purple.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.purple.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.purple.day .mat-mdc-card,.rtl-container.purple.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.day svg .stroke-color-primary{stroke:#5e4ea5}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#5e4ea5}.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.mat-icon-no-color,.rtl-container.purple.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.purple.day .mat-mdc-card-subtitle,.rtl-container.purple.day .mat-mdc-card-title{color:#0000008a}.rtl-container.purple.day .mat-menu-panel{min-width:4rem}.rtl-container.purple.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.day table.mat-mdc-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:#000}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:8rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.day .dashboard-card-content .underline,.rtl-container.purple.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #5e4ea5;--mat-mdc-slider-hover-ripple-color: rgba(94, 78, 165, .05);--mat-mdc-slider-focus-ripple-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #5e4ea5;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.purple.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.purple.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#5e4ea5}.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#5e4ea5}.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.purple.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.purple.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.purple.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.purple.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.purple.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.purple.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.purple.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.purple.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.purple.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.purple.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.purple.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.purple.night .mat-app-background,.rtl-container.purple.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.purple.night .mat-elevation-z0,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#5e4ea540;background-color:var(--mdc-linear-progress-track-color, rgba(94, 78, 165, .25))}@media (forced-colors: active){.rtl-container.purple.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.purple.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(94, 78, 165, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.purple.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#5e4ea540;background-color:var(--mdc-linear-progress-track-color, rgba(94, 78, 165, .25))}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.purple.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #8e83c0;--mdc-switch-selected-handle-color: #8e83c0;--mdc-switch-selected-hover-state-layer-color: #8e83c0;--mdc-switch-selected-pressed-state-layer-color: #8e83c0;--mdc-switch-selected-focus-handle-color: #afa7d2;--mdc-switch-selected-hover-handle-color: #afa7d2;--mdc-switch-selected-pressed-handle-color: #afa7d2;--mdc-switch-selected-focus-track-color: #56479d;--mdc-switch-selected-hover-track-color: #56479d;--mdc-switch-selected-pressed-track-color: #56479d;--mdc-switch-selected-track-color: #56479d;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.purple.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.purple.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.purple.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.purple.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.purple.night .mat-mdc-tab-group,.rtl-container.purple.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.purple.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.purple.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.purple.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button:hover,.rtl-container.purple.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-mdc-raised-button:active,.rtl-container.purple.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-primary,.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-accent,.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-warn,.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.purple.night .mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.purple.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.purple.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-primary{color:#9787ff!important}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.purple.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.purple.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.purple.night .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.night .help-expansion .mat-expansion-panel-content,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.purple.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.purple.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.purple.night .mat-expansion-panel,.rtl-container.purple.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.purple.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .mdc-data-table__header-cell,.rtl-container.purple.night .mat-mdc-paginator,.rtl-container.purple.night .mat-mdc-form-field-focus-overlay,.rtl-container.purple.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.purple.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#9787ff}.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.purple.night .svg-donation{opacity:1!important}.rtl-container.purple.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#9787ff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#9787ff!important}.rtl-container.purple.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#5e4ea5}.rtl-container.purple.night a{color:#9787ff!important;cursor:pointer}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.purple.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.purple.night .mat-mdc-select-placeholder,.rtl-container.purple.night .mat-mdc-select-value,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#9787ff}.rtl-container.purple.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#9787ff}.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#9787ff}.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:#121212}.rtl-container.purple.night .mat-tree{background:#121212}.rtl-container.purple.night h4{color:#9787ff}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.purple.night .spinner-container h2{color:#9787ff}.rtl-container.purple.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.night svg .stroke-color-primary{stroke:#5e4ea5}.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-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{font-size:100%;color:#9787ff}.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(odd) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.purple.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.purple.night .mat-mdc-card-subtitle,.rtl-container.purple.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.purple.night .mat-menu-panel{min-width:4rem}.rtl-container.purple.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.purple.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.night table.mat-mdc-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,.12);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,.12)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .more-button{color:#fff}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:8rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.night .color-warn{color:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.rtl-container.purple.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.night .dashboard-card-content .underline,.rtl-container.purple.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #1976d2;--mat-mdc-slider-hover-ripple-color: rgba(25, 118, 210, .05);--mat-mdc-slider-focus-ripple-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-pseudo-checkbox-full{color:#0000008a}.rtl-container.blue.day .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#1976d2}.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#1976d2}.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.blue.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.blue.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.blue.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.blue.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.rtl-container.blue.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{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,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#1976d240;background-color:var(--mdc-linear-progress-track-color, rgba(25, 118, 210, .25))}@media (forced-colors: active){.rtl-container.blue.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.blue.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(25, 118, 210, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.blue.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#1976d240;background-color:var(--mdc-linear-progress-track-color, rgba(25, 118, 210, .25))}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.blue.day .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #1e88e5;--mdc-switch-selected-handle-color: #1e88e5;--mdc-switch-selected-hover-state-layer-color: #1e88e5;--mdc-switch-selected-pressed-state-layer-color: #1e88e5;--mdc-switch-selected-focus-handle-color: #0d47a1;--mdc-switch-selected-hover-handle-color: #0d47a1;--mdc-switch-selected-pressed-handle-color: #0d47a1;--mdc-switch-selected-focus-track-color: #64b5f6;--mdc-switch-selected-hover-track-color: #64b5f6;--mdc-switch-selected-pressed-track-color: #64b5f6;--mdc-switch-selected-track-color: #64b5f6;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.blue.day .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}.rtl-container.blue.day .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.blue.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#1976d2}.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.day .mat-mdc-tab-group,.rtl-container.blue.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.blue.day .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}.rtl-container.blue.day .mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.rtl-container.blue.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button:hover,.rtl-container.blue.day .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-mdc-raised-button:active,.rtl-container.blue.day .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-primary,.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-accent,.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-warn,.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.blue.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.blue.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.blue.day .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.blue.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.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;padding:0 2.5rem 0 1rem}.rtl-container.blue.day .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.blue.day .page-title,.rtl-container.blue.day .mat-mdc-select-value,.rtl-container.blue.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#1976d2}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#1976d2}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#1976d2;cursor:pointer}.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,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#1976d2}.rtl-container.blue.day .spinner-container h2{color:#fff}.rtl-container.blue.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#1976d2}.rtl-container.blue.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#1976d2}.rtl-container.blue.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.blue.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.blue.day .mat-mdc-card,.rtl-container.blue.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#1976d2}.rtl-container.blue.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.day svg .stroke-color-primary{stroke:#1976d2}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#1976d2}.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.mat-icon-no-color,.rtl-container.blue.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#1976d2}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.blue.day .mat-mdc-card-subtitle,.rtl-container.blue.day .mat-mdc-card-title{color:#0000008a}.rtl-container.blue.day .mat-menu-panel{min-width:4rem}.rtl-container.blue.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#1976d2}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#1976d2;opacity:1}.rtl-container.blue.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.day table.mat-mdc-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:#000}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:8rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.day .dashboard-card-content .underline,.rtl-container.blue.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #1976d2;--mat-mdc-slider-hover-ripple-color: rgba(25, 118, 210, .05);--mat-mdc-slider-focus-ripple-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.blue.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.blue.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#1976d2}.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#1976d2}.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.blue.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.blue.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.blue.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.blue.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.blue.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.blue.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.blue.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.blue.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.blue.night .mat-app-background,.rtl-container.blue.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.blue.night .mat-elevation-z0,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#1976d240;background-color:var(--mdc-linear-progress-track-color, rgba(25, 118, 210, .25))}@media (forced-colors: active){.rtl-container.blue.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.blue.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(25, 118, 210, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.blue.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#1976d240;background-color:var(--mdc-linear-progress-track-color, rgba(25, 118, 210, .25))}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.blue.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #64b5f6;--mdc-switch-selected-handle-color: #64b5f6;--mdc-switch-selected-hover-state-layer-color: #64b5f6;--mdc-switch-selected-pressed-state-layer-color: #64b5f6;--mdc-switch-selected-focus-handle-color: #90caf9;--mdc-switch-selected-hover-handle-color: #90caf9;--mdc-switch-selected-pressed-handle-color: #90caf9;--mdc-switch-selected-focus-track-color: #1e88e5;--mdc-switch-selected-hover-track-color: #1e88e5;--mdc-switch-selected-pressed-track-color: #1e88e5;--mdc-switch-selected-track-color: #1e88e5;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.blue.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.blue.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.blue.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.blue.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#1976d2}.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.night .mat-mdc-tab-group,.rtl-container.blue.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.blue.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.blue.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.blue.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button:hover,.rtl-container.blue.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-mdc-raised-button:active,.rtl-container.blue.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-primary,.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-accent,.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-warn,.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.blue.night .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.blue.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-primary{color:#448aff!important}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.blue.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.blue.night .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.blue.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.blue.night .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.night .help-expansion .mat-expansion-panel-content,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.blue.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.blue.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.blue.night .mat-expansion-panel,.rtl-container.blue.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.blue.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .mdc-data-table__header-cell,.rtl-container.blue.night .mat-mdc-paginator,.rtl-container.blue.night .mat-mdc-form-field-focus-overlay,.rtl-container.blue.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.blue.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#448aff}.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.blue.night .svg-donation{opacity:1!important}.rtl-container.blue.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#448aff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#448aff!important}.rtl-container.blue.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#1976d2}.rtl-container.blue.night a{color:#448aff!important;cursor:pointer}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.blue.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.blue.night .mat-mdc-select-placeholder,.rtl-container.blue.night .mat-mdc-select-value,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#448aff}.rtl-container.blue.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#448aff}.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#448aff}.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:#121212}.rtl-container.blue.night .mat-tree{background:#121212}.rtl-container.blue.night h4{color:#448aff}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.blue.night .spinner-container h2{color:#448aff}.rtl-container.blue.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.night svg .stroke-color-primary{stroke:#1976d2}.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-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{font-size:100%;color:#448aff}.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(odd) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.blue.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.blue.night .mat-mdc-card-subtitle,.rtl-container.blue.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.blue.night .mat-menu-panel{min-width:4rem}.rtl-container.blue.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.blue.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#1976d2}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#1976d2;opacity:1}.rtl-container.blue.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.night table.mat-mdc-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,.12);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,.12)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .more-button{color:#fff}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:8rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.night .color-warn{color:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.rtl-container.blue.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.night .dashboard-card-content .underline,.rtl-container.blue.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #3f51b5;--mat-mdc-slider-hover-ripple-color: rgba(63, 81, 181, .05);--mat-mdc-slider-focus-ripple-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-pseudo-checkbox-full{color:#0000008a}.rtl-container.indigo.day .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#3f51b5}.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#3f51b5}.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.indigo.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.indigo.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.indigo.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.indigo.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.rtl-container.indigo.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{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,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#3f51b540;background-color:var(--mdc-linear-progress-track-color, rgba(63, 81, 181, .25))}@media (forced-colors: active){.rtl-container.indigo.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.indigo.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(63, 81, 181, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.indigo.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#3f51b540;background-color:var(--mdc-linear-progress-track-color, rgba(63, 81, 181, .25))}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.indigo.day .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #3949ab;--mdc-switch-selected-handle-color: #3949ab;--mdc-switch-selected-hover-state-layer-color: #3949ab;--mdc-switch-selected-pressed-state-layer-color: #3949ab;--mdc-switch-selected-focus-handle-color: #1a237e;--mdc-switch-selected-hover-handle-color: #1a237e;--mdc-switch-selected-pressed-handle-color: #1a237e;--mdc-switch-selected-focus-track-color: #7986cb;--mdc-switch-selected-hover-track-color: #7986cb;--mdc-switch-selected-pressed-track-color: #7986cb;--mdc-switch-selected-track-color: #7986cb;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.indigo.day .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}.rtl-container.indigo.day .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.indigo.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.day .mat-mdc-tab-group,.rtl-container.indigo.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.indigo.day .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}.rtl-container.indigo.day .mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.rtl-container.indigo.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button:hover,.rtl-container.indigo.day .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-mdc-raised-button:active,.rtl-container.indigo.day .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-warn,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.indigo.day .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.indigo.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.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;padding:0 2.5rem 0 1rem}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.indigo.day .page-title,.rtl-container.indigo.day .mat-mdc-select-value,.rtl-container.indigo.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#3f51b5}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#3f51b5}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#3f51b5;cursor:pointer}.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,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .spinner-container h2{color:#fff}.rtl-container.indigo.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#3f51b5}.rtl-container.indigo.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#3f51b5}.rtl-container.indigo.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.indigo.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-mdc-card,.rtl-container.indigo.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.day svg .stroke-color-primary{stroke:#3f51b5}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#3f51b5}.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.mat-icon-no-color,.rtl-container.indigo.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.indigo.day .mat-mdc-card-subtitle,.rtl-container.indigo.day .mat-mdc-card-title{color:#0000008a}.rtl-container.indigo.day .mat-menu-panel{min-width:4rem}.rtl-container.indigo.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.day table.mat-mdc-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:#000}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:8rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.day .dashboard-card-content .underline,.rtl-container.indigo.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #3f51b5;--mat-mdc-slider-hover-ripple-color: rgba(63, 81, 181, .05);--mat-mdc-slider-focus-ripple-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.indigo.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.indigo.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#3f51b5}.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#3f51b5}.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.indigo.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.indigo.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.indigo.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.indigo.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.indigo.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.indigo.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.indigo.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.indigo.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.indigo.night .mat-app-background,.rtl-container.indigo.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.indigo.night .mat-elevation-z0,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#3f51b540;background-color:var(--mdc-linear-progress-track-color, rgba(63, 81, 181, .25))}@media (forced-colors: active){.rtl-container.indigo.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.indigo.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(63, 81, 181, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.indigo.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#3f51b540;background-color:var(--mdc-linear-progress-track-color, rgba(63, 81, 181, .25))}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.indigo.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #7986cb;--mdc-switch-selected-handle-color: #7986cb;--mdc-switch-selected-hover-state-layer-color: #7986cb;--mdc-switch-selected-pressed-state-layer-color: #7986cb;--mdc-switch-selected-focus-handle-color: #9fa8da;--mdc-switch-selected-hover-handle-color: #9fa8da;--mdc-switch-selected-pressed-handle-color: #9fa8da;--mdc-switch-selected-focus-track-color: #3949ab;--mdc-switch-selected-hover-track-color: #3949ab;--mdc-switch-selected-pressed-track-color: #3949ab;--mdc-switch-selected-track-color: #3949ab;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.indigo.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.indigo.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.indigo.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.indigo.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.night .mat-mdc-tab-group,.rtl-container.indigo.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.indigo.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.indigo.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.indigo.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button:hover,.rtl-container.indigo.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-mdc-raised-button:active,.rtl-container.indigo.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-warn,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.indigo.night .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.indigo.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-primary{color:#536dfe!important}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.indigo.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.indigo.night .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.indigo.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-expansion-panel,.rtl-container.indigo.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.indigo.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .mdc-data-table__header-cell,.rtl-container.indigo.night .mat-mdc-paginator,.rtl-container.indigo.night .mat-mdc-form-field-focus-overlay,.rtl-container.indigo.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.indigo.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#536dfe}.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.indigo.night .svg-donation{opacity:1!important}.rtl-container.indigo.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#536dfe!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#536dfe!important}.rtl-container.indigo.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#3f51b5}.rtl-container.indigo.night a{color:#536dfe!important;cursor:pointer}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.indigo.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.indigo.night .mat-mdc-select-placeholder,.rtl-container.indigo.night .mat-mdc-select-value,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#536dfe}.rtl-container.indigo.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#536dfe}.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#536dfe}.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:#121212}.rtl-container.indigo.night .mat-tree{background:#121212}.rtl-container.indigo.night h4{color:#536dfe}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.indigo.night .spinner-container h2{color:#536dfe}.rtl-container.indigo.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.night svg .stroke-color-primary{stroke:#3f51b5}.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-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{font-size:100%;color:#536dfe}.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(odd) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.indigo.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.indigo.night .mat-mdc-card-subtitle,.rtl-container.indigo.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.indigo.night .mat-menu-panel{min-width:4rem}.rtl-container.indigo.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.indigo.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.night table.mat-mdc-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,.12);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,.12)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .more-button{color:#fff}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:8rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.night .color-warn{color:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.rtl-container.indigo.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.night .dashboard-card-content .underline,.rtl-container.indigo.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #185127;--mat-mdc-slider-hover-ripple-color: rgba(24, 81, 39, .05);--mat-mdc-slider-focus-ripple-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-pseudo-checkbox-full{color:#0000008a}.rtl-container.green.day .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#185127}.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#185127}.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.green.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.green.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.green.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.green.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.rtl-container.green.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{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,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#18512740;background-color:var(--mdc-linear-progress-track-color, rgba(24, 81, 39, .25))}@media (forced-colors: active){.rtl-container.green.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.green.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(24, 81, 39, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.green.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#18512740;background-color:var(--mdc-linear-progress-track-color, rgba(24, 81, 39, .25))}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.rtl-container.green.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.green.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.rtl-container.green.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.green.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.green.day .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #154a23;--mdc-switch-selected-handle-color: #154a23;--mdc-switch-selected-hover-state-layer-color: #154a23;--mdc-switch-selected-pressed-state-layer-color: #154a23;--mdc-switch-selected-focus-handle-color: #08270e;--mdc-switch-selected-hover-handle-color: #08270e;--mdc-switch-selected-pressed-handle-color: #08270e;--mdc-switch-selected-focus-track-color: #5d8568;--mdc-switch-selected-hover-track-color: #5d8568;--mdc-switch-selected-pressed-track-color: #5d8568;--mdc-switch-selected-track-color: #5d8568;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.green.day .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}.rtl-container.green.day .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.green.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#185127}.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.day .mat-mdc-tab-group,.rtl-container.green.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.green.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.green.day .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}.rtl-container.green.day .mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.rtl-container.green.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button:hover,.rtl-container.green.day .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-mdc-raised-button:active,.rtl-container.green.day .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.rtl-container.green.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-fab.mat-primary,.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-accent,.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-warn,.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.green.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.green.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.green.day .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.green.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.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;padding:0 2.5rem 0 1rem}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.green.day .page-title,.rtl-container.green.day .mat-mdc-select-value,.rtl-container.green.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#185127}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#185127}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#185127;cursor:pointer}.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,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#185127}.rtl-container.green.day .spinner-container h2{color:#fff}.rtl-container.green.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#185127}.rtl-container.green.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#185127}.rtl-container.green.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.green.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.green.day .mat-mdc-card,.rtl-container.green.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.day svg .stroke-color-primary{stroke:#185127}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#185127}.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.mat-icon-no-color,.rtl-container.green.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.green.day .mat-mdc-card-subtitle,.rtl-container.green.day .mat-mdc-card-title{color:#0000008a}.rtl-container.green.day .mat-menu-panel{min-width:4rem}.rtl-container.green.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.day table.mat-mdc-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:#000}.rtl-container.green.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .rtl-select-overlay{min-width:7rem}}.rtl-container.green.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:8rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.green.day .dashboard-card-content .underline,.rtl-container.green.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #185127;--mat-mdc-slider-hover-ripple-color: rgba(24, 81, 39, .05);--mat-mdc-slider-focus-ripple-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.green.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.green.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#185127}.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#185127}.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.green.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.green.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.green.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.green.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.green.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.green.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.green.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.green.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.green.night .mat-app-background,.rtl-container.green.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.green.night .mat-elevation-z0,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#18512740;background-color:var(--mdc-linear-progress-track-color, rgba(24, 81, 39, .25))}@media (forced-colors: active){.rtl-container.green.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.green.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(24, 81, 39, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.green.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#18512740;background-color:var(--mdc-linear-progress-track-color, rgba(24, 81, 39, .25))}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.green.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.green.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.green.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.green.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.green.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #5d8568;--mdc-switch-selected-handle-color: #5d8568;--mdc-switch-selected-hover-state-layer-color: #5d8568;--mdc-switch-selected-pressed-state-layer-color: #5d8568;--mdc-switch-selected-focus-handle-color: #8ca893;--mdc-switch-selected-hover-handle-color: #8ca893;--mdc-switch-selected-pressed-handle-color: #8ca893;--mdc-switch-selected-focus-track-color: #154a23;--mdc-switch-selected-hover-track-color: #154a23;--mdc-switch-selected-pressed-track-color: #154a23;--mdc-switch-selected-track-color: #154a23;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.green.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.green.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.green.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.green.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#185127}.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.night .mat-mdc-tab-group,.rtl-container.green.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.green.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.green.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.green.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.green.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.green.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button:hover,.rtl-container.green.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-mdc-raised-button:active,.rtl-container.green.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.green.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-fab.mat-primary,.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-fab.mat-accent,.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-fab.mat-warn,.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.green.night .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.green.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-primary{color:#30ff4b!important}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.green.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.green.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.green.night .help-expansion .mat-expansion-indicator:after,.rtl-container.green.night .help-expansion .mat-expansion-panel-content,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.green.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.green.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.green.night .mat-expansion-panel,.rtl-container.green.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.green.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .mdc-data-table__header-cell,.rtl-container.green.night .mat-mdc-paginator,.rtl-container.green.night .mat-mdc-form-field-focus-overlay,.rtl-container.green.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.green.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#30ff4b}.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.green.night .svg-donation{opacity:1!important}.rtl-container.green.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#30ff4b!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#30ff4b!important}.rtl-container.green.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#185127}.rtl-container.green.night a{color:#30ff4b!important;cursor:pointer}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.green.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.green.night .mat-mdc-select-placeholder,.rtl-container.green.night .mat-mdc-select-value,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#30ff4b}.rtl-container.green.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#30ff4b}.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#30ff4b}.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:#121212}.rtl-container.green.night .mat-tree{background:#121212}.rtl-container.green.night h4{color:#30ff4b}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.green.night .spinner-container h2{color:#30ff4b}.rtl-container.green.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.night svg .stroke-color-primary{stroke:#185127}.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-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{font-size:100%;color:#30ff4b}.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(odd) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.green.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.green.night .mat-mdc-card-subtitle,.rtl-container.green.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.green.night .mat-menu-panel{min-width:4rem}.rtl-container.green.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.green.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.night table.mat-mdc-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,.12);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,.12)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .more-button{color:#fff}.rtl-container.green.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .rtl-select-overlay{min-width:7rem}}.rtl-container.green.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:8rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.night .color-warn{color:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.rtl-container.green.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.green.night .dashboard-card-content .underline,.rtl-container.green.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #00695c;--mat-mdc-slider-hover-ripple-color: rgba(0, 105, 92, .05);--mat-mdc-slider-focus-ripple-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-pseudo-checkbox-full{color:#0000008a}.rtl-container.teal.day .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#00695c}.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#00695c}.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.teal.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.teal.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.teal.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.teal.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.rtl-container.teal.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{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,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#00695c40;background-color:var(--mdc-linear-progress-track-color, rgba(0, 105, 92, .25))}@media (forced-colors: active){.rtl-container.teal.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.teal.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(0, 105, 92, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.teal.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#00695c40;background-color:var(--mdc-linear-progress-track-color, rgba(0, 105, 92, .25))}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.teal.day .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #00897b;--mdc-switch-selected-handle-color: #00897b;--mdc-switch-selected-hover-state-layer-color: #00897b;--mdc-switch-selected-pressed-state-layer-color: #00897b;--mdc-switch-selected-focus-handle-color: #004d40;--mdc-switch-selected-hover-handle-color: #004d40;--mdc-switch-selected-pressed-handle-color: #004d40;--mdc-switch-selected-focus-track-color: #4db6ac;--mdc-switch-selected-hover-track-color: #4db6ac;--mdc-switch-selected-pressed-track-color: #4db6ac;--mdc-switch-selected-track-color: #4db6ac;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.teal.day .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}.rtl-container.teal.day .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.teal.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#00695c}.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.day .mat-mdc-tab-group,.rtl-container.teal.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.teal.day .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}.rtl-container.teal.day .mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.rtl-container.teal.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button:hover,.rtl-container.teal.day .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-mdc-raised-button:active,.rtl-container.teal.day .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-primary,.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-accent,.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-warn,.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.teal.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.teal.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.teal.day .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.teal.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.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;padding:0 2.5rem 0 1rem}.rtl-container.teal.day .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.teal.day .page-title,.rtl-container.teal.day .mat-mdc-select-value,.rtl-container.teal.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#00695c}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#00695c}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#00695c;cursor:pointer}.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,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#00695c}.rtl-container.teal.day .spinner-container h2{color:#fff}.rtl-container.teal.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#00695c}.rtl-container.teal.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#00695c}.rtl-container.teal.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.teal.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.teal.day .mat-mdc-card,.rtl-container.teal.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#00695c}.rtl-container.teal.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.day svg .stroke-color-primary{stroke:#00695c}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#00695c}.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.mat-icon-no-color,.rtl-container.teal.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#00695c}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.teal.day .mat-mdc-card-subtitle,.rtl-container.teal.day .mat-mdc-card-title{color:#0000008a}.rtl-container.teal.day .mat-menu-panel{min-width:4rem}.rtl-container.teal.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#00695c}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#00695c;opacity:1}.rtl-container.teal.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.day table.mat-mdc-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:#000}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:8rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.day .dashboard-card-content .underline,.rtl-container.teal.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #00695c;--mat-mdc-slider-hover-ripple-color: rgba(0, 105, 92, .05);--mat-mdc-slider-focus-ripple-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.teal.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.teal.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#00695c}.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#00695c}.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.teal.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.teal.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.teal.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.teal.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.teal.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.teal.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.teal.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.teal.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.teal.night .mat-app-background,.rtl-container.teal.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.teal.night .mat-elevation-z0,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#00695c40;background-color:var(--mdc-linear-progress-track-color, rgba(0, 105, 92, .25))}@media (forced-colors: active){.rtl-container.teal.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.teal.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(0, 105, 92, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.teal.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#00695c40;background-color:var(--mdc-linear-progress-track-color, rgba(0, 105, 92, .25))}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.teal.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #4db6ac;--mdc-switch-selected-handle-color: #4db6ac;--mdc-switch-selected-hover-state-layer-color: #4db6ac;--mdc-switch-selected-pressed-state-layer-color: #4db6ac;--mdc-switch-selected-focus-handle-color: #80cbc4;--mdc-switch-selected-hover-handle-color: #80cbc4;--mdc-switch-selected-pressed-handle-color: #80cbc4;--mdc-switch-selected-focus-track-color: #00897b;--mdc-switch-selected-hover-track-color: #00897b;--mdc-switch-selected-pressed-track-color: #00897b;--mdc-switch-selected-track-color: #00897b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.teal.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.teal.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.teal.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.teal.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#00695c}.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.night .mat-mdc-tab-group,.rtl-container.teal.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.teal.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.teal.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.teal.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button:hover,.rtl-container.teal.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-mdc-raised-button:active,.rtl-container.teal.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-primary,.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-accent,.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-warn,.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.teal.night .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.teal.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-primary{color:#64ffda!important}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.teal.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.teal.night .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.teal.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.teal.night .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.night .help-expansion .mat-expansion-panel-content,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.teal.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.teal.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.teal.night .mat-expansion-panel,.rtl-container.teal.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.teal.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .mdc-data-table__header-cell,.rtl-container.teal.night .mat-mdc-paginator,.rtl-container.teal.night .mat-mdc-form-field-focus-overlay,.rtl-container.teal.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.teal.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#64ffda}.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.teal.night .svg-donation{opacity:1!important}.rtl-container.teal.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#64ffda!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#64ffda!important}.rtl-container.teal.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#00695c}.rtl-container.teal.night a{color:#64ffda!important;cursor:pointer}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.teal.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.teal.night .mat-mdc-select-placeholder,.rtl-container.teal.night .mat-mdc-select-value,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#64ffda}.rtl-container.teal.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#64ffda}.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#64ffda}.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:#121212}.rtl-container.teal.night .mat-tree{background:#121212}.rtl-container.teal.night h4{color:#64ffda}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.teal.night .spinner-container h2{color:#64ffda}.rtl-container.teal.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.night svg .stroke-color-primary{stroke:#00695c}.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-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{font-size:100%;color:#64ffda}.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(odd) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.teal.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.teal.night .mat-mdc-card-subtitle,.rtl-container.teal.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.teal.night .mat-menu-panel{min-width:4rem}.rtl-container.teal.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.teal.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#00695c}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#00695c;opacity:1}.rtl-container.teal.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.night table.mat-mdc-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,.12);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,.12)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .more-button{color:#fff}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:8rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.night .color-warn{color:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.rtl-container.teal.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.night .dashboard-card-content .underline,.rtl-container.teal.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #e91e63;--mat-mdc-slider-hover-ripple-color: rgba(233, 30, 99, .05);--mat-mdc-slider-focus-ripple-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-pseudo-checkbox-full{color:#0000008a}.rtl-container.pink.day .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#e91e63}.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#e91e63}.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.pink.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.pink.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.pink.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.pink.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.rtl-container.pink.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{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,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#e91e6340;background-color:var(--mdc-linear-progress-track-color, rgba(233, 30, 99, .25))}@media (forced-colors: active){.rtl-container.pink.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.pink.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(233, 30, 99, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.pink.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#e91e6340;background-color:var(--mdc-linear-progress-track-color, rgba(233, 30, 99, .25))}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.pink.day .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #d81b60;--mdc-switch-selected-handle-color: #d81b60;--mdc-switch-selected-hover-state-layer-color: #d81b60;--mdc-switch-selected-pressed-state-layer-color: #d81b60;--mdc-switch-selected-focus-handle-color: #880e4f;--mdc-switch-selected-hover-handle-color: #880e4f;--mdc-switch-selected-pressed-handle-color: #880e4f;--mdc-switch-selected-focus-track-color: #f06292;--mdc-switch-selected-hover-track-color: #f06292;--mdc-switch-selected-pressed-track-color: #f06292;--mdc-switch-selected-track-color: #f06292;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.pink.day .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}.rtl-container.pink.day .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.pink.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#e91e63}.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.day .mat-mdc-tab-group,.rtl-container.pink.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.pink.day .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}.rtl-container.pink.day .mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.rtl-container.pink.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button:hover,.rtl-container.pink.day .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-mdc-raised-button:active,.rtl-container.pink.day .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-primary,.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-accent,.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-warn,.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.pink.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.pink.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.pink.day .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.pink.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.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;padding:0 2.5rem 0 1rem}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.pink.day .page-title,.rtl-container.pink.day .mat-mdc-select-value,.rtl-container.pink.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#e91e63}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#e91e63}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#e91e63;cursor:pointer}.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,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .spinner-container h2{color:#fff}.rtl-container.pink.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#e91e63}.rtl-container.pink.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#e91e63}.rtl-container.pink.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.pink.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.pink.day .mat-mdc-card,.rtl-container.pink.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.day svg .stroke-color-primary{stroke:#e91e63}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#e91e63}.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.mat-icon-no-color,.rtl-container.pink.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.pink.day .mat-mdc-card-subtitle,.rtl-container.pink.day .mat-mdc-card-title{color:#0000008a}.rtl-container.pink.day .mat-menu-panel{min-width:4rem}.rtl-container.pink.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.day table.mat-mdc-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:#000}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:8rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.day .dashboard-card-content .underline,.rtl-container.pink.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #e91e63;--mat-mdc-slider-hover-ripple-color: rgba(233, 30, 99, .05);--mat-mdc-slider-focus-ripple-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.pink.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.pink.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#e91e63}.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#e91e63}.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.pink.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.pink.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.pink.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.pink.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.pink.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.pink.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.pink.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.pink.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.pink.night .mat-app-background,.rtl-container.pink.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.pink.night .mat-elevation-z0,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#e91e6340;background-color:var(--mdc-linear-progress-track-color, rgba(233, 30, 99, .25))}@media (forced-colors: active){.rtl-container.pink.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.pink.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(233, 30, 99, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.pink.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#e91e6340;background-color:var(--mdc-linear-progress-track-color, rgba(233, 30, 99, .25))}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.pink.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #f06292;--mdc-switch-selected-handle-color: #f06292;--mdc-switch-selected-hover-state-layer-color: #f06292;--mdc-switch-selected-pressed-state-layer-color: #f06292;--mdc-switch-selected-focus-handle-color: #f48fb1;--mdc-switch-selected-hover-handle-color: #f48fb1;--mdc-switch-selected-pressed-handle-color: #f48fb1;--mdc-switch-selected-focus-track-color: #d81b60;--mdc-switch-selected-hover-track-color: #d81b60;--mdc-switch-selected-pressed-track-color: #d81b60;--mdc-switch-selected-track-color: #d81b60;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.pink.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.pink.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.pink.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.pink.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#e91e63}.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.night .mat-mdc-tab-group,.rtl-container.pink.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.pink.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.pink.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.pink.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button:hover,.rtl-container.pink.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-mdc-raised-button:active,.rtl-container.pink.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-primary,.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-accent,.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-warn,.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.pink.night .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.pink.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-primary{color:#ff4081!important}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.pink.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.pink.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.pink.night .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.night .help-expansion .mat-expansion-panel-content,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.pink.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.pink.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.pink.night .mat-expansion-panel,.rtl-container.pink.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.pink.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .mdc-data-table__header-cell,.rtl-container.pink.night .mat-mdc-paginator,.rtl-container.pink.night .mat-mdc-form-field-focus-overlay,.rtl-container.pink.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.pink.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ff4081}.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.pink.night .svg-donation{opacity:1!important}.rtl-container.pink.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ff4081!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ff4081!important}.rtl-container.pink.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#e91e63}.rtl-container.pink.night a{color:#ff4081!important;cursor:pointer}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.pink.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.pink.night .mat-mdc-select-placeholder,.rtl-container.pink.night .mat-mdc-select-value,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ff4081}.rtl-container.pink.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ff4081}.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ff4081}.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:#121212}.rtl-container.pink.night .mat-tree{background:#121212}.rtl-container.pink.night h4{color:#ff4081}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.pink.night .spinner-container h2{color:#ff4081}.rtl-container.pink.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.night svg .stroke-color-primary{stroke:#e91e63}.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-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{font-size:100%;color:#ff4081}.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(odd) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.pink.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.pink.night .mat-mdc-card-subtitle,.rtl-container.pink.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.pink.night .mat-menu-panel{min-width:4rem}.rtl-container.pink.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.pink.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.night table.mat-mdc-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,.12);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,.12)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .more-button{color:#fff}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:8rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.night .color-warn{color:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.rtl-container.pink.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.night .dashboard-card-content .underline,.rtl-container.pink.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #945f1f;--mat-mdc-slider-hover-ripple-color: rgba(148, 95, 31, .05);--mat-mdc-slider-focus-ripple-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: white;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-pseudo-checkbox-full{color:#0000008a}.rtl-container.yellow.day .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#b0b0b0}.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#945f1f}.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#945f1f}.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.day .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.yellow.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.yellow.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.yellow.day .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.day .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#424242}.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#424242}.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.day .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b00020}.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#b00020}.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.day .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#fafafa}.rtl-container.yellow.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#b0b0b0}.rtl-container.yellow.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.day .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{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,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#945f1f40;background-color:var(--mdc-linear-progress-track-color, rgba(148, 95, 31, .25))}@media (forced-colors: active){.rtl-container.yellow.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.yellow.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(148, 95, 31, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.yellow.day .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#945f1f40;background-color:var(--mdc-linear-progress-track-color, rgba(148, 95, 31, .25))}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}@media (forced-colors: active){.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(66, 66, 66, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#42424240;background-color:var(--mdc-linear-progress-track-color, rgba(66, 66, 66, .25))}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}@media (forced-colors: active){.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(176, 0, 32, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#b0002040;background-color:var(--mdc-linear-progress-track-color, rgba(176, 0, 32, .25))}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.yellow.day .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #8c571b;--mdc-switch-selected-handle-color: #8c571b;--mdc-switch-selected-hover-state-layer-color: #8c571b;--mdc-switch-selected-pressed-state-layer-color: #8c571b;--mdc-switch-selected-focus-handle-color: #65320a;--mdc-switch-selected-hover-handle-color: #65320a;--mdc-switch-selected-pressed-handle-color: #65320a;--mdc-switch-selected-focus-track-color: #b48f62;--mdc-switch-selected-hover-track-color: #b48f62;--mdc-switch-selected-pressed-track-color: #b48f62;--mdc-switch-selected-track-color: #b48f62;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.yellow.day .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#00000061}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: #000;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-accent{--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #424242;--mat-mdc-slider-hover-ripple-color: rgba(66, 66, 66, .05);--mat-mdc-slider-focus-ripple-color: rgba(66, 66, 66, .2)}.rtl-container.yellow.day .mat-warn{--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #b00020;--mat-mdc-slider-hover-ripple-color: rgba(176, 0, 32, .05);--mat-mdc-slider-focus-ripple-color: rgba(176, 0, 32, .2)}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #000;--mdc-radio-disabled-unselected-icon-color: #000;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.yellow.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.day .mat-mdc-tab-group,.rtl-container.yellow.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: #000;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, .87))}.rtl-container.yellow.day .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#00000061}.rtl-container.yellow.day .mat-mdc-button{--mdc-text-button-label-text-color: #000;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: #000;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12}.rtl-container.yellow.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button{--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: #000;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button{--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: #000;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button:hover,.rtl-container.yellow.day .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-mdc-raised-button:active,.rtl-container.yellow.day .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: #000;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #000;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: #000;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-accent,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-warn,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.yellow.day .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.yellow.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.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;padding:0 2.5rem 0 1rem}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.yellow.day .page-title,.rtl-container.yellow.day .mat-mdc-select-value,.rtl-container.yellow.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#945f1f}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#945f1f}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#945f1f;cursor:pointer}.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,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .spinner-container h2{color:#fff}.rtl-container.yellow.day .mdc-tab__text-label.mdc-tab__text-label-active{color:#945f1f}.rtl-container.yellow.day .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#945f1f}.rtl-container.yellow.day .mdc-tab__text-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 table.mat-mdc-table thead tr th,.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 .mdc-tab__text-label,.rtl-container.yellow.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-mdc-card,.rtl-container.yellow.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-capacity-header,.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 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 .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.day svg .stroke-color-primary{stroke:#945f1f}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#945f1f}.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.mat-icon-no-color,.rtl-container.yellow.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.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(odd) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.yellow.day .mat-mdc-card-subtitle,.rtl-container.yellow.day .mat-mdc-card-title{color:#0000008a}.rtl-container.yellow.day .mat-menu-panel{min-width:4rem}.rtl-container.yellow.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.day table.mat-mdc-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:#000}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:8rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.day .dashboard-card-content .underline,.rtl-container.yellow.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-mdc-slider-ripple-color: #945f1f;--mat-mdc-slider-hover-ripple-color: rgba(148, 95, 31, .05);--mat-mdc-slider-focus-ripple-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.yellow.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-pseudo-checkbox-full{color:#ffffffb3}.rtl-container.yellow.night .mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{color:#686868}.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#945f1f}.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#945f1f}.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.night .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.yellow.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.yellow.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.yellow.night .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.night .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#eee}.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#eeeeee}.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.night .mat-accent .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#ff343b}.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#ff343b}.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full:after,.rtl-container.yellow.night .mat-warn .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full:after{color:#303030}.rtl-container.yellow.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal:after,.rtl-container.yellow.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal:after{color:#686868}.rtl-container.yellow.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-full,.rtl-container.yellow.night .mat-pseudo-checkbox-disabled.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-full{background:#686868}.rtl-container.yellow.night .mat-app-background,.rtl-container.yellow.night.mat-app-background{background-color:#303030;color:#fff}.rtl-container.yellow.night .mat-elevation-z0,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:#945f1f40;background-color:var(--mdc-linear-progress-track-color, rgba(148, 95, 31, .25))}@media (forced-colors: active){.rtl-container.yellow.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.yellow.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(148, 95, 31, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.yellow.night .mat-mdc-progress-bar .mdc-linear-progress__buffer-bar{background-color:#945f1f40;background-color:var(--mdc-linear-progress-track-color, rgba(148, 95, 31, .25))}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}@media (forced-colors: active){.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(238, 238, 238, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent .mdc-linear-progress__buffer-bar{background-color:#eeeeee40;background-color:var(--mdc-linear-progress-track-color, rgba(238, 238, 238, .25))}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}@keyframes mdc-linear-progress-buffering{}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}@media (forced-colors: active){.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-dots{background-color:transparent;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255, 52, 59, 0.25)'/%3E%3C/svg%3E")}}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn .mdc-linear-progress__buffer-bar{background-color:#ff343b40;background-color:var(--mdc-linear-progress-track-color, rgba(255, 52, 59, .25))}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mdc-switch{--mdc-switch-disabled-handle-opacity: .38;--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-state-layer-size: 40px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1}.rtl-container.yellow.night .mat-mdc-slide-toggle{--mdc-switch-selected-focus-state-layer-color: #b48f62;--mdc-switch-selected-handle-color: #b48f62;--mdc-switch-selected-hover-state-layer-color: #b48f62;--mdc-switch-selected-pressed-state-layer-color: #b48f62;--mdc-switch-selected-focus-handle-color: #caaf8f;--mdc-switch-selected-hover-handle-color: #caaf8f;--mdc-switch-selected-pressed-handle-color: #caaf8f;--mdc-switch-selected-focus-track-color: #8c571b;--mdc-switch-selected-hover-track-color: #8c571b;--mdc-switch-selected-pressed-track-color: #8c571b;--mdc-switch-selected-track-color: #8c571b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161}.rtl-container.yellow.night .mat-mdc-slide-toggle .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.yellow.night .mat-mdc-slide-toggle .mdc-switch--disabled+label{color:#ffffff80}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: #fff;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-accent{--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black;--mat-mdc-slider-ripple-color: #eeeeee;--mat-mdc-slider-hover-ripple-color: rgba(238, 238, 238, .05);--mat-mdc-slider-focus-ripple-color: rgba(238, 238, 238, .2)}.rtl-container.yellow.night .mat-warn{--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white;--mat-mdc-slider-ripple-color: #ff343b;--mat-mdc-slider-hover-ripple-color: rgba(255, 52, 59, .05);--mat-mdc-slider-focus-ripple-color: rgba(255, 52, 59, .2)}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: #fff;--mdc-radio-disabled-unselected-icon-color: #fff;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.yellow.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #000;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.night .mat-mdc-tab-group,.rtl-container.yellow.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: #fff;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox .mdc-form-field{color:var(--mdc-theme-text-primary-on-background, white)}.rtl-container.yellow.night .mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:#ffffff80}.rtl-container.yellow.night .mat-mdc-button{--mdc-text-button-label-text-color: #fff;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: #fff;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24}.rtl-container.yellow.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: #fff;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: #000;--mat-filled-button-state-layer-color: #000;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: #fff;--mat-filled-button-state-layer-color: #fff;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: #fff;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: #000;--mat-protected-button-state-layer-color: #000;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: #fff;--mat-protected-button-state-layer-color: #fff;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button:hover,.rtl-container.yellow.night .mat-mdc-raised-button:focus{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-mdc-raised-button:active,.rtl-container.yellow.night .mat-mdc-raised-button:focus:active{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-mdc-outlined-button{--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: #fff;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #fff;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-icon-button{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: #fff;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-accent,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000;--mat-fab-state-layer-color: #000;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-warn,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: #fff;--mat-fab-state-layer-color: #fff;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.yellow.night .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.yellow.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-primary{color:#ffa164!important}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.yellow.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:rgba(255,255,255,.7)}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.yellow.night .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.yellow.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-expansion-panel,.rtl-container.yellow.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.yellow.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .mdc-data-table__header-cell,.rtl-container.yellow.night .mat-mdc-paginator,.rtl-container.yellow.night .mat-mdc-form-field-focus-overlay,.rtl-container.yellow.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.yellow.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ffa164}.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.yellow.night .svg-donation{opacity:1!important}.rtl-container.yellow.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ffa164!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ffa164!important}.rtl-container.yellow.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#945f1f}.rtl-container.yellow.night a{color:#ffa164!important;cursor:pointer}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.yellow.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.yellow.night .mat-mdc-select-placeholder,.rtl-container.yellow.night .mat-mdc-select-value,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ffa164}.rtl-container.yellow.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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 .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ffa164}.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ffa164}.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:#121212}.rtl-container.yellow.night .mat-tree{background:#121212}.rtl-container.yellow.night h4{color:#ffa164}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.yellow.night .spinner-container h2{color:#ffa164}.rtl-container.yellow.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.night svg .stroke-color-primary{stroke:#945f1f}.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-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{font-size:100%;color:#ffa164}.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(odd) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.yellow.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.yellow.night .mat-mdc-card-subtitle,.rtl-container.yellow.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.yellow.night .mat-menu-panel{min-width:4rem}.rtl-container.yellow.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.yellow.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.night table.mat-mdc-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,.12);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,.12)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .more-button{color:#fff}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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:.88rem;border-radius:.96rem;padding:.25rem;overflow:visible}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:8rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.night .color-warn{color:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.rtl-container.yellow.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.night .dashboard-card-content .underline,.rtl-container.yellow.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.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)}}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;font-display:block;src:url(material-icons.59322316b3fd6063.woff2) format("woff2"),url(material-icons.4ad034d2c499d9b6.woff) format("woff")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-outlined.f86cb7b0aa53f0fe.woff2) format("woff2"),url(material-icons-outlined.78a93b2079680a08.woff) format("woff")}.material-icons-outlined{font-family:Material Icons Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Round;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-round.b10ec9db5b7fbc74.woff2) format("woff2"),url(material-icons-round.92dc7ca2f4c591e7.woff) format("woff")}.material-icons-round{font-family:Material Icons Round;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Sharp;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-sharp.3885863ee4746422.woff2) format("woff2"),url(material-icons-sharp.a71cb2bf66c604de.woff) format("woff")}.material-icons-sharp{font-family:Material Icons Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Two Tone;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-two-tone.675bd578bd14533e.woff2) format("woff2"),url(material-icons-two-tone.588d63134de807a7.woff) format("woff")}.material-icons-two-tone{font-family:Material Icons Two Tone;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;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")} diff --git a/frontend/styles.e57f489d97a0d3fc.css b/frontend/styles.e57f489d97a0d3fc.css new file mode 100644 index 00000000..d9deb60c --- /dev/null +++ b/frontend/styles.e57f489d97a0d3fc.css @@ -0,0 +1 @@ +.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:95%}@media only screen and (max-width: 56.25em){html{font-size:90%}}@media only screen and (max-width: 37.5em){html{font-size:80%}}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:2.5rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:16rem!important;height:100%;overflow:hidden!important}span.page-text,.mat-mdc-slide-toggle,.material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:3rem}.mat-mdc-checkbox{min-height:4rem}.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:4rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.75rem}@media only screen and (max-width: 56.25em){.inner-sidenav-content{padding:.5rem}}@media only screen and (max-width: 37.5em){.inner-sidenav-content{padding:.5rem .25rem}}.top-50{top:50px}*{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:.625rem}.spinner-dialog-panel .mat-mdc-dialog-container .mat-mdc-dialog-surface{background:transparent;box-shadow:none}.mat-mdc-dialog-container .mat-mdc-dialog-surface{overflow:hidden}@media only screen and (max-width: 75em){button.mdc-button{min-width:50px}}@media only screen and (max-width: 56.25em){button.mdc-button{min-width:40px}}@media only screen and (max-width: 37.5em){button.mdc-button{min-width:20px}}button.mdc-button.mat-mdc-button-base{font-size:103%;font-weight:500;font-family:Roboto,sans-serif}button.mdc-button.mat-mdc-button-base.mat-mdc-unelevated-button{margin-bottom:1rem}.mat-mdc-icon-button.mat-mdc-button-base.btn-icon-small{height:40px;padding:.75rem}.mdc-floating-label{will-change:unset!important}.mat-mdc-form-field.mat-form-field-disabled,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper.mdc-text-field--disable,.mat-mdc-form-field.mat-form-field-disabled .mdc-floating-label.mat-mdc-floating-label,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-input-element.mat-mdc-form-field-input-control,.mat-mdc-slide-toggle .mdc-switch.mdc-switch--disabled{cursor:not-allowed}.padding-gap{padding:.5rem!important}@media only screen and (max-width: 56.25em){.padding-gap{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap{padding:.125rem!important}}.padding-gap-x{padding:0 .5rem!important}@media only screen and (max-width: 75em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x{padding:0 .125rem!important}}.padding-gap-large{padding:1rem!important}@media only screen and (max-width: 75em){.padding-gap-large{padding:2rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-large{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-large{padding:.125rem!important}}.padding-gap-x-large{padding:0 1rem!important}@media only screen and (max-width: 75em){.padding-gap-x-large{padding:0 .5rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x-large{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x-large{padding:0 .125rem!important}}.padding-gap-bottom-large{padding-bottom:1rem!important}@media only screen and (max-width: 56.25em){.padding-gap-bottom-large{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-bottom-large{padding-bottom:.125rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-mdc-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-mdc-card-original{padding:1rem!important;border-radius:4px!important}.mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix,.mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix{padding-right:1rem}mat-card-content.mat-mdc-card-content:first-child{padding-top:0}.card-content-gap{padding:.6rem 1rem!important;height:100%}@media only screen and (max-width: 56.25em){.card-content-gap{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.card-content-gap{padding:.25rem .125rem!important}}.routing-tabs-block .mat-mdc-tab-body-wrapper{padding:0!important;min-height:100px}.mat-mdc-card-actions{display:block;margin-bottom:1rem;padding-left:.3333333333rem;padding-right:.3333333333rem}.mat-mdc-card-content,.mat-mdc-card-subtitle,.mat-mdc-card-title{display:block;margin-bottom:1rem}.mat-mdc-card-content form,.mat-mdc-card-subtitle form,.mat-mdc-card-title form{overflow:hidden}.mat-mdc-card-title{font-size:125%}.mat-mdc-card-subtitle{font-size:120%}.mat-mdc-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-mdc-select{margin:0 1rem 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:.625rem!important}@media only screen and (max-width: 56.25em){.mt-1{margin-top:.5rem!important}}@media only screen and (max-width: 37.5em){.mt-1{margin-top:.5rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.mb-1{margin-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.mb-1{margin-bottom:.5rem!important}}.mb-6{margin-bottom:3.75rem!important}@media only screen and (max-width: 56.25em){.mb-6{margin-bottom:3rem!important}}@media only screen and (max-width: 37.5em){.mb-6{margin-bottom:3rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.25rem!important}.ml-1{margin-left:.625rem!important}@media only screen and (max-width: 56.25em){.ml-1{margin-left:.25rem!important}}@media only screen and (max-width: 37.5em){.ml-1{margin-left:2px!important}}.ml-minus-1{margin-left:-.625rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:3px!important}.mr-5px{margin-right:5px!important}.mr-1{margin-right:.625rem!important}@media only screen and (max-width: 56.25em){.mr-1{margin-right:.25rem!important}}@media only screen and (max-width: 37.5em){.mr-1{margin-right:2px!important}}.mx-1{margin:0 .625rem!important}@media only screen and (max-width: 56.25em){.mx-1{margin:0 .25rem!important}}@media only screen and (max-width: 37.5em){.mx-1{margin:0 2px!important}}.my-1{margin:.625rem 0!important}@media only screen and (max-width: 56.25em){.my-1{margin:.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-1{margin:.5rem 0!important}}.m-1{margin:.625rem!important}@media only screen and (max-width: 56.25em){.m-1{margin:.5rem!important}}@media only screen and (max-width: 37.5em){.m-1{margin:.5rem!important}}.mt-2{margin-top:1.25rem!important}@media only screen and (max-width: 56.25em){.mt-2{margin-top:1rem!important}}@media only screen and (max-width: 37.5em){.mt-2{margin-top:1rem!important}}.mt-3{margin-top:2rem!important}@media only screen and (max-width: 56.25em){.mt-3{margin-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.mt-3{margin-top:1.5rem!important}}.mt-4{margin-top:2.5rem!important}@media only screen and (max-width: 56.25em){.mt-4{margin-top:2rem!important}}@media only screen and (max-width: 37.5em){.mt-4{margin-top:2rem!important}}.mt-6{margin-top:3.75rem!important}@media only screen and (max-width: 56.25em){.mt-6{margin-top:3rem!important}}@media only screen and (max-width: 37.5em){.mt-6{margin-top:3rem!important}}.mt-minus-1{margin-top:-.625rem!important}@media only screen and (max-width: 56.25em){.mt-minus-1{margin-top:-.5rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-1{margin-top:-.5rem!important}}.mt-minus-2{margin-top:-1.25rem!important}@media only screen and (max-width: 56.25em){.mt-minus-2{margin-top:-1rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-2{margin-top:-1rem!important}}.mb-2{margin-bottom:1rem!important}@media only screen and (max-width: 56.25em){.mb-2{margin-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.mb-2{margin-bottom:1rem!important}}.mb-3{margin-bottom:2rem!important}@media only screen and (max-width: 56.25em){.mb-3{margin-bottom:1.5rem!important}}@media only screen and (max-width: 37.5em){.mb-3{margin-bottom:1.5rem!important}}.mb-4{margin-bottom:2.5rem!important}@media only screen and (max-width: 56.25em){.mb-4{margin-bottom:1.25rem!important}}@media only screen and (max-width: 37.5em){.mb-4{margin-bottom:1.25rem!important}}.ml-2{margin-left:1.25rem!important}@media only screen and (max-width: 56.25em){.ml-2{margin-left:.5rem!important}}@media only screen and (max-width: 37.5em){.ml-2{margin-left:.25rem!important}}.mr-2{margin-right:1.25rem!important}@media only screen and (max-width: 56.25em){.mr-2{margin-right:.5rem!important}}@media only screen and (max-width: 37.5em){.mr-2{margin-right:.25rem!important}}.ml-4{margin-left:2.5rem!important}@media only screen and (max-width: 56.25em){.ml-4{margin-left:1rem!important}}@media only screen and (max-width: 37.5em){.ml-4{margin-left:.5rem!important}}.ml-5{margin-left:3rem!important}@media only screen and (max-width: 56.25em){.ml-5{margin-left:1.25rem!important}}@media only screen and (max-width: 37.5em){.ml-5{margin-left:.625rem!important}}.mr-4{margin-right:2.5rem!important}@media only screen and (max-width: 56.25em){.mr-4{margin-right:1rem!important}}@media only screen and (max-width: 37.5em){.mr-4{margin-right:.5rem!important}}.mr-5{margin-right:3rem!important}@media only screen and (max-width: 56.25em){.mr-5{margin-right:1.25rem!important}}@media only screen and (max-width: 37.5em){.mr-5{margin-right:.625rem!important}}.mr-6{margin-right:3.75rem!important}@media only screen and (max-width: 56.25em){.mr-6{margin-right:2rem!important}}@media only screen and (max-width: 37.5em){.mr-6{margin-right:1.25rem!important}}.mx-2{margin:0 1.25rem!important}@media only screen and (max-width: 56.25em){.mx-2{margin:0 .5rem!important}}@media only screen and (max-width: 37.5em){.mx-2{margin:0 .25rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:1.25rem 0!important}@media only screen and (max-width: 56.25em){.my-2{margin:1rem 0!important}}@media only screen and (max-width: 37.5em){.my-2{margin:1rem 0!important}}.my-3{margin:2rem 0!important}@media only screen and (max-width: 56.25em){.my-3{margin:1.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-3{margin:1.5rem 0!important}}.my-4{margin:2.5rem 0!important}@media only screen and (max-width: 56.25em){.my-4{margin:1.25rem 0!important}}@media only screen and (max-width: 37.5em){.my-4{margin:1.25rem 0!important}}.m-2{margin:1.25rem!important}@media only screen and (max-width: 56.25em){.m-2{margin:1rem!important}}@media only screen and (max-width: 37.5em){.m-2{margin:1rem!important}}.pt-1{padding-top:.625rem!important}@media only screen and (max-width: 56.25em){.pt-1{padding-top:.5rem!important}}@media only screen and (max-width: 37.5em){.pt-1{padding-top:.5rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.pb-1{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.pb-1{padding-bottom:.5rem!important}}.pl-5px{padding-left:5px!important}@media only screen and (max-width: 56.25em){.pl-5px{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-5px{padding-left:3px!important}}.pl-1{padding-left:.625rem!important}@media only screen and (max-width: 56.25em){.pl-1{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-1{padding-left:2px!important}}.pl-15px{padding-left:1rem!important}@media only screen and (max-width: 56.25em){.pl-15px{padding-left:.3333333333rem!important}}@media only screen and (max-width: 37.5em){.pl-15px{padding-left:.25rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:.625rem!important}@media only screen and (max-width: 56.25em){.pr-1{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){.pr-1{padding-right:2px!important}}.pr-3{padding-right:2rem!important}@media only screen and (max-width: 56.25em){.pr-3{padding-right:.75rem!important}}@media only screen and (max-width: 37.5em){.pr-3{padding-right:.3333333333rem!important}}.pr-4{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-4{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-4{padding-right:.5rem!important}}.pr-4px{padding-right:.25rem!important}.pr-6px{padding-right:.3333333333rem!important}.p-0{padding:0!important}.p-5px{padding:5px!important}.pl-0{padding-left:0!important}.px-1{padding:0 .625rem!important}@media only screen and (max-width: 56.25em){.px-1{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.px-1{padding:0 2px!important}}.py-0{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-0{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-0{padding:.5rem 0!important}}.py-1{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-1{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-1{padding:.5rem 0!important}}.p-1{padding:.625rem!important}@media only screen and (max-width: 56.25em){.p-1{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-1{padding:.5rem!important}}.p-16{padding:1rem!important}@media only screen and (max-width: 56.25em){.p-16{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-16{padding:.25rem!important}}.pt-2{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-2{padding-top:1rem!important}}@media only screen and (max-width: 37.5em){.pt-2{padding-top:1rem!important}}.pt-3{padding-top:2rem!important}@media only screen and (max-width: 56.25em){.pt-3{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-3{padding-top:1.5rem!important}}.pb-2{padding-bottom:1.25rem!important}@media only screen and (max-width: 56.25em){.pb-2{padding-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.pb-2{padding-bottom:1rem!important}}.pl-2{padding-left:1.25rem!important}@media only screen and (max-width: 56.25em){.pl-2{padding-left:.5rem!important}}@media only screen and (max-width: 37.5em){.pl-2{padding-left:.25rem!important}}.pt-4{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-4{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-4{padding-top:1.5rem!important}}.pl-3{padding-left:2rem!important}@media only screen and (max-width: 56.25em){.pl-3{padding-left:.75rem!important}}@media only screen and (max-width: 37.5em){.pl-3{padding-left:.3333333333rem!important}}.pl-4{padding-left:2.5rem!important}@media only screen and (max-width: 56.25em){.pl-4{padding-left:1rem!important}}@media only screen and (max-width: 37.5em){.pl-4{padding-left:.5rem!important}}.pr-2{padding-right:1.25rem!important}@media only screen and (max-width: 56.25em){.pr-2{padding-right:.5rem!important}}@media only screen and (max-width: 37.5em){.pr-2{padding-right:.25rem!important}}.pr-5{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-5{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-5{padding-right:.5rem!important}}.px-2{padding:0 1.25rem!important}@media only screen and (max-width: 56.25em){.px-2{padding:0 .5rem!important}}@media only screen and (max-width: 37.5em){.px-2{padding:0 .25rem!important}}.px-3{padding:0 2rem!important}@media only screen and (max-width: 56.25em){.px-3{padding:0 .75rem!important}}@media only screen and (max-width: 37.5em){.px-3{padding:0 .3333333333rem!important}}.px-4{padding:0 2.5rem!important}@media only screen and (max-width: 56.25em){.px-4{padding:0 1rem!important}}@media only screen and (max-width: 37.5em){.px-4{padding:0 .5rem!important}}.py-2{padding:1.25rem 0!important}@media only screen and (max-width: 56.25em){.py-2{padding:1rem 0!important}}@media only screen and (max-width: 37.5em){.py-2{padding:1rem 0!important}}.p-2{padding:1.25rem!important}@media only screen and (max-width: 56.25em){.p-2{padding:1rem!important}}@media only screen and (max-width: 37.5em){.p-2{padding:1rem!important}}.p-24{padding:1.5rem!important}@media only screen and (max-width: 56.25em){.p-24{padding:.75rem!important}}@media only screen and (max-width: 37.5em){.p-24{padding:.625rem!important}}.ps-2{padding-left:1.25rem!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 .mdc-data-table__cell{border-bottom:none!important}.mat-mdc-form-field-infix{width:14rem!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.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:5px!important}.top-minus-5px{position:relative;top:-5px}.top-minus-25px{position:relative;top:-1.5rem;margin-bottom:-1.5rem!important}.top-minus-30px{position:relative;top:-2rem}.cursor-pointer:hover{cursor:pointer!important}.cursor-default:hover{cursor:default!important}.cursor-not-allowed:hover{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}.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:.25rem;height:2.5rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.currency-icon.currency-icon-small{max-width:.8375rem;max-height:.8375rem}.currency-icon.currency-icon-medium{max-width:1rem;max-height:1rem}.currency-icon.currency-icon-large{max-width:1.125rem;max-height:1.125rem}.currency-icon.currency-icon-x-large{max-width:1.25rem;max-height:1.25rem}.fa-icon-small,.top-icon-small{min-width:1.25rem}.fa-icon-small svg,.top-icon-small svg{min-width:1.25rem}.botlz-icon-sm{min-width:1rem;width:1rem;max-width:1rem}.copy-icon{position:relative;top:.25rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:5px}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mt-minus-5{position:relative;margin-top:-5px}.color-white{color:#fff!important}.custom-card{padding:0 0 .5rem!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:400px!important}.h-46{height:460px!important}.h-50{height:500px!important}.h-10{height:100px!important}.h-4{height:12rem!important}.h-35px{height:35px!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:3rem;height:3rem;padding:0 .75rem;cursor:pointer}@media only screen and (max-width: 37.5em){.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem}}.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:6rem}.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:1rem;cursor:pointer;display:flex;align-content:center}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:2.5rem;width:2.5rem;max-width:2.5rem}.icon-large{margin-left:-100%}.icon-small{height:1.25rem!important;width:1.25rem!important}.icon-smaller{height:.625rem!important;width:.625rem!important}.mat-icon-36{width:2.25rem!important;height:2.25rem!important}.mat-mdc-select.multi-node-select{width:84%}.page-title-container{font-size:110%;padding:0 .75rem;margin-bottom:.5rem}@media only screen and (max-width: 56.25em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}@media only screen and (max-width: 37.5em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}table{width:100%}th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .5rem}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .25rem}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .125rem}}th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.125rem!important}}th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.125rem!important}}.dot{display:inline-flex;width:.8rem;height:.8rem;border-radius:.8rem;margin:.25rem 0 0}.dot.tiny-dot{width:.5rem;height:.5rem;border-radius:.5rem;margin:0 .3333333333rem 1px 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-500{font-weight:500!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-divider.mat-divider-horizontal.mat-divider-inset{margin-left:1rem}.mat-vertical-stepper-header{padding:.625rem .625rem .625rem .5rem!important}.mat-vertical-stepper-content{margin:0 .5rem}.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:.625rem;padding:.3333333333rem .625rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:3rem}.mat-mdc-tab .mdc-tab__content{overflow:hidden!important}.mdc-tab__text-label{opacity:1;padding:0;min-width:11rem}@media only screen and (max-width: 56.25em){.mdc-tab__text-label{min-width:auto}}@media only screen and (max-width: 37.5em){.mdc-tab__text-label{min-width:auto}}.dashboard-card{margin-bottom:0}.dashboard-card .mat-mdc-card-header{padding:16px 0 0 16px}.dashboard-card .mat-mdc-card-content.dashboard-card-content{margin-bottom:0}.dashboard-tabs-group.mat-mdc-tab-group{max-width:91%}.dashboard-tabs-group .mat-mdc-tab-list{width:100%}.dashboard-tabs-group .mdc-tab{margin:0;padding:0 1.5rem;display:flex;flex:1 0 auto;justify-content:center}.dashboard-tabs-group.mat-mdc-tab-group .mat-mdc-tab .mdc-tab__content .mdc-tab__text-label{min-width:5.5rem}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:1.25rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:1.25rem!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:50px}.btn-sticky-container{height:0;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}.mat-mdc-tooltip-panel{max-width:25rem!important}.ngx-charts-tooltip-content.type-tooltip{background:#323232e6!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-mdc-tooltip-panel .mdc-tooltip__surface{min-width:10rem;max-width:unset;text-align:start}.go-to-link{text-decoration:underline;font-weight:500;cursor:pointer}.mat-mdc-card.dashboard-card{padding:0 .75rem!important}@media only screen and (max-width: 56.25em){.mat-mdc-card.dashboard-card{padding:.25rem .625rem!important}}@media only screen and (max-width: 37.5em){.mat-mdc-card.dashboard-card{padding:.25rem .5rem!important}}.mat-mdc-card.dashboard-card.p-0{padding:0!important}.mat-mdc-card.dashboard-card .mat-mdc-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:3.25rem}@media only screen and (max-width: 37.5em){.mat-column-actions{min-height:4.1rem}}.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 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .25rem}}.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 1.5rem 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .5rem .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .25rem .125rem}}@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:.5rem}}@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:.25rem}}html{--mat-ripple-color: rgba(0, 0, 0, .1)}html{--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}.mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html,.mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}html{--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px}html{--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54)}html{--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}html{--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px}html{--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff}html{--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px}html{--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}html{--mat-form-field-container-height: 56px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 16px;--mat-form-field-filled-with-label-container-padding-top: 24px;--mat-form-field-filled-with-label-container-padding-bottom: 8px}html{--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html{--mat-select-arrow-transform: translateY(-8px)}html{--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-autocomplete-background-color: white}html{--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px}html{--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6)}.mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height: 32px}html{--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent}html{--mdc-switch-selected-focus-state-layer-color: #56479d;--mdc-switch-selected-handle-color: #56479d;--mdc-switch-selected-hover-state-layer-color: #56479d;--mdc-switch-selected-pressed-state-layer-color: #56479d;--mdc-switch-selected-focus-handle-color: #312579;--mdc-switch-selected-hover-handle-color: #312579;--mdc-switch-selected-pressed-handle-color: #312579;--mdc-switch-selected-focus-track-color: #8e83c0;--mdc-switch-selected-hover-track-color: #8e83c0;--mdc-switch-selected-pressed-track-color: #8e83c0;--mdc-switch-selected-track-color: #8e83c0;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38)}html .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}html .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}html .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}html{--mdc-switch-state-layer-size: 40px}html{--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px}.mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}html{--mdc-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6}html{--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .6}html .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}html .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}html{--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px}html{--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px}html{--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#5e4ea5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}html{--mdc-list-list-item-one-line-container-height: 48px;--mdc-list-list-item-two-line-container-height: 64px;--mdc-list-list-item-three-line-container-height: 88px;--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-state-layer-size: 40px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px}html{--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height: 48px}html{--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16}html{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}html{--mdc-checkbox-state-layer-size: 40px;--mat-checkbox-touch-target-display: block}html{--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px}html{--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}html{--mdc-text-button-container-height: 36px;--mdc-filled-button-container-height: 36px;--mdc-outlined-button-container-height: 36px;--mdc-protected-button-container-height: 36px;--mat-text-button-touch-target-display: block;--mat-filled-button-touch-target-display: block;--mat-protected-button-touch-target-display: block;--mat-outlined-button-touch-target-display: block}html{--mdc-icon-button-icon-size: 24px}html{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}html .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}html .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}html .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:12px}html{--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px}html{--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000}html .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html{--mat-fab-touch-target-display: block;--mat-fab-small-touch-target-display: block}html{--mdc-snackbar-container-shape: 4px}html{--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242}html{--mat-table-row-item-outline-width: 1px}html{--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12)}html{--mat-table-header-container-height: 56px;--mat-table-footer-container-height: 52px;--mat-table-row-item-container-height: 52px}html{--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px}html{--mdc-circular-progress-active-indicator-color: #5e4ea5}html .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}html .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}html{--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0}html{--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38)}.mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}html{--mat-bottom-sheet-container-shape: 4px}html{--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white}html{--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12}html{--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0}html{--mat-standard-button-toggle-height: 48px}html{--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.mat-calendar-controls{--mat-icon-button-touch-target-display: none}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 40px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:8px}html{--mat-divider-width: 1px}html{--mat-divider-color: rgba(0, 0, 0, .12)}html{--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none}html{--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54)}html{--mat-expansion-header-collapsed-state-height: 48px;--mat-expansion-header-expanded-state-height: 64px}html{--mat-icon-color: inherit}.mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.mat-icon.mat-accent{--mat-icon-color: #424242}.mat-icon.mat-warn{--mat-icon-color: #b00020}html{--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto}html{--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6)}html{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent}html .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}html .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}html{--mat-stepper-header-height: 72px}html{--mat-sort-arrow-color: #757575}html{--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}html{--mat-toolbar-standard-height: 64px;--mat-toolbar-mobile-height: 56px}html{--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}html{--mat-tree-node-min-height: 48px}.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:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.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:#00000052}.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-backdrop-noop-animation{transition:none}.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{position:relative}.rtl-container .mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.rtl-container .mat-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-focus-indicator-display: block}.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container .mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.rtl-container .mat-mdc-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.purple.day .page-title,.rtl-container.purple.day .mat-mdc-select-value,.rtl-container.purple.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#5e4ea5}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#5e4ea5}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#5e4ea5;cursor:pointer}.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,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.purple.day .mdc-tab__text-label,.rtl-container.purple.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.purple.day .mat-mdc-card,.rtl-container.purple.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.purple.day .mat-mdc-form-field-hint fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .currency-icon path,.rtl-container.purple.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.day svg .stroke-color-primary{stroke:#5e4ea5}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#5e4ea5}.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.mat-icon-no-color,.rtl-container.purple.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.purple.day .mat-mdc-card-subtitle,.rtl-container.purple.day .mat-mdc-card-title{color:#0000008a}.rtl-container.purple.day .mat-menu-panel{min-width:4rem}.rtl-container.purple.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.day table.mat-mdc-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:#000}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.purple.day .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:8rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.day .dashboard-card-content .underline,.rtl-container.purple.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8e83c0;--mdc-switch-selected-handle-color: #8e83c0;--mdc-switch-selected-hover-state-layer-color: #8e83c0;--mdc-switch-selected-pressed-state-layer-color: #8e83c0;--mdc-switch-selected-focus-handle-color: #afa7d2;--mdc-switch-selected-hover-handle-color: #afa7d2;--mdc-switch-selected-pressed-handle-color: #afa7d2;--mdc-switch-selected-focus-track-color: #56479d;--mdc-switch-selected-hover-track-color: #56479d;--mdc-switch-selected-pressed-track-color: #56479d;--mdc-switch-selected-track-color: #56479d;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #5e4ea5;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.purple.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-elevation-z0,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.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,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.purple.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.purple.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.purple.night .mat-mdc-tab-group,.rtl-container.purple.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.purple.night .mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.purple.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.purple.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-primary{color:#9787ff!important}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.purple.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.purple.night .currency-icon path,.rtl-container.purple.night .currency-icon polygon{fill:#fff}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.purple.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.purple.night .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.night .help-expansion .mat-expansion-panel-content,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.purple.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.purple.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.purple.night .mat-expansion-panel,.rtl-container.purple.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.purple.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .mdc-data-table__header-cell,.rtl-container.purple.night .mat-mdc-paginator,.rtl-container.purple.night .mat-mdc-form-field-focus-overlay,.rtl-container.purple.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.purple.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#9787ff}.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.purple.night .svg-donation{opacity:1!important}.rtl-container.purple.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#9787ff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#9787ff!important}.rtl-container.purple.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#5e4ea5}.rtl-container.purple.night a{color:#9787ff!important;cursor:pointer}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.purple.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.purple.night .mat-mdc-select-placeholder,.rtl-container.purple.night .mat-mdc-select-value,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#9787ff}.rtl-container.purple.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .boltz-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.purple.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#9787ff}.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#9787ff}.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:#121212}.rtl-container.purple.night .mat-tree{background:#121212}.rtl-container.purple.night h4{color:#9787ff}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.purple.night .spinner-container h2{color:#9787ff}.rtl-container.purple.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.night svg .stroke-color-primary{stroke:#5e4ea5}.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-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{font-size:100%;color:#9787ff}.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(odd) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.purple.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.purple.night .mat-mdc-card-subtitle,.rtl-container.purple.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.purple.night .mat-menu-panel{min-width:4rem}.rtl-container.purple.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.purple.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.night table.mat-mdc-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,.12);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,.12)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .more-button{color:#fff}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.purple.night .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:8rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.night .color-warn{color:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.rtl-container.purple.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.night .dashboard-card-content .underline,.rtl-container.purple.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #1e88e5;--mdc-switch-selected-handle-color: #1e88e5;--mdc-switch-selected-hover-state-layer-color: #1e88e5;--mdc-switch-selected-pressed-state-layer-color: #1e88e5;--mdc-switch-selected-focus-handle-color: #0d47a1;--mdc-switch-selected-hover-handle-color: #0d47a1;--mdc-switch-selected-pressed-handle-color: #0d47a1;--mdc-switch-selected-focus-track-color: #64b5f6;--mdc-switch-selected-hover-track-color: #64b5f6;--mdc-switch-selected-pressed-track-color: #64b5f6;--mdc-switch-selected-track-color: #64b5f6;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-elevation-z0,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.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,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.blue.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#1976d2}.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.day .mat-mdc-tab-group,.rtl-container.blue.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.blue.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.blue.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.blue.day .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.blue.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.blue.day .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.blue.day .page-title,.rtl-container.blue.day .mat-mdc-select-value,.rtl-container.blue.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#1976d2}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#1976d2}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#1976d2;cursor:pointer}.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,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#1976d2}.rtl-container.blue.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.blue.day .mdc-tab__text-label,.rtl-container.blue.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.blue.day .mat-mdc-card,.rtl-container.blue.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#1976d2}.rtl-container.blue.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.blue.day .mat-mdc-form-field-hint fa-icon svg path{fill:#1976d2}.rtl-container.blue.day .currency-icon path,.rtl-container.blue.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.day svg .stroke-color-primary{stroke:#1976d2}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#1976d2}.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.mat-icon-no-color,.rtl-container.blue.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#1976d2}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.blue.day .mat-mdc-card-subtitle,.rtl-container.blue.day .mat-mdc-card-title{color:#0000008a}.rtl-container.blue.day .mat-menu-panel{min-width:4rem}.rtl-container.blue.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#1976d2}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#1976d2;opacity:1}.rtl-container.blue.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.day table.mat-mdc-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:#000}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:8rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.day .dashboard-card-content .underline,.rtl-container.blue.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#1976d2}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#1976d2}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.day .fa-icon-primary{color:#1976d2}.rtl-container.blue.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #64b5f6;--mdc-switch-selected-handle-color: #64b5f6;--mdc-switch-selected-hover-state-layer-color: #64b5f6;--mdc-switch-selected-pressed-state-layer-color: #64b5f6;--mdc-switch-selected-focus-handle-color: #90caf9;--mdc-switch-selected-hover-handle-color: #90caf9;--mdc-switch-selected-pressed-handle-color: #90caf9;--mdc-switch-selected-focus-track-color: #1e88e5;--mdc-switch-selected-hover-track-color: #1e88e5;--mdc-switch-selected-pressed-track-color: #1e88e5;--mdc-switch-selected-track-color: #1e88e5;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.blue.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-elevation-z0,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.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,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.blue.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.blue.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#1976d2}.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.night .mat-mdc-tab-group,.rtl-container.blue.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.blue.night .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.blue.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-primary{color:#448aff!important}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.blue.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.blue.night .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.blue.night .currency-icon path,.rtl-container.blue.night .currency-icon polygon{fill:#fff}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.blue.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.blue.night .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.night .help-expansion .mat-expansion-panel-content,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.blue.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.blue.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.blue.night .mat-expansion-panel,.rtl-container.blue.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.blue.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .mdc-data-table__header-cell,.rtl-container.blue.night .mat-mdc-paginator,.rtl-container.blue.night .mat-mdc-form-field-focus-overlay,.rtl-container.blue.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.blue.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#448aff}.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.blue.night .svg-donation{opacity:1!important}.rtl-container.blue.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#448aff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#448aff!important}.rtl-container.blue.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#1976d2}.rtl-container.blue.night a{color:#448aff!important;cursor:pointer}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.blue.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.blue.night .mat-mdc-select-placeholder,.rtl-container.blue.night .mat-mdc-select-value,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#448aff}.rtl-container.blue.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#448aff}.rtl-container.blue.night .mat-tree-node:hover .boltz-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.blue.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#448aff}.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#448aff}.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:#121212}.rtl-container.blue.night .mat-tree{background:#121212}.rtl-container.blue.night h4{color:#448aff}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.blue.night .spinner-container h2{color:#448aff}.rtl-container.blue.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.night svg .stroke-color-primary{stroke:#1976d2}.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-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{font-size:100%;color:#448aff}.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(odd) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.blue.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.blue.night .mat-mdc-card-subtitle,.rtl-container.blue.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.blue.night .mat-menu-panel{min-width:4rem}.rtl-container.blue.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.blue.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#1976d2}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#1976d2;opacity:1}.rtl-container.blue.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.night table.mat-mdc-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,.12);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,.12)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .more-button{color:#fff}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:8rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.night .color-warn{color:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.rtl-container.blue.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.night .dashboard-card-content .underline,.rtl-container.blue.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#1976d2}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#1976d2}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.night .fa-icon-primary{color:#1976d2}.rtl-container.blue.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #3949ab;--mdc-switch-selected-handle-color: #3949ab;--mdc-switch-selected-hover-state-layer-color: #3949ab;--mdc-switch-selected-pressed-state-layer-color: #3949ab;--mdc-switch-selected-focus-handle-color: #1a237e;--mdc-switch-selected-hover-handle-color: #1a237e;--mdc-switch-selected-pressed-handle-color: #1a237e;--mdc-switch-selected-focus-track-color: #7986cb;--mdc-switch-selected-hover-track-color: #7986cb;--mdc-switch-selected-pressed-track-color: #7986cb;--mdc-switch-selected-track-color: #7986cb;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-elevation-z0,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.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,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.indigo.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.day .mat-mdc-tab-group,.rtl-container.indigo.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.indigo.day .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.indigo.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.indigo.day .page-title,.rtl-container.indigo.day .mat-mdc-select-value,.rtl-container.indigo.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#3f51b5}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#3f51b5}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#3f51b5;cursor:pointer}.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,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.indigo.day .mdc-tab__text-label,.rtl-container.indigo.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-mdc-card,.rtl-container.indigo.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.indigo.day .mat-mdc-form-field-hint fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .currency-icon path,.rtl-container.indigo.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.day svg .stroke-color-primary{stroke:#3f51b5}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#3f51b5}.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.mat-icon-no-color,.rtl-container.indigo.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.indigo.day .mat-mdc-card-subtitle,.rtl-container.indigo.day .mat-mdc-card-title{color:#0000008a}.rtl-container.indigo.day .mat-menu-panel{min-width:4rem}.rtl-container.indigo.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.day table.mat-mdc-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:#000}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.indigo.day .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:8rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.day .dashboard-card-content .underline,.rtl-container.indigo.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #7986cb;--mdc-switch-selected-handle-color: #7986cb;--mdc-switch-selected-hover-state-layer-color: #7986cb;--mdc-switch-selected-pressed-state-layer-color: #7986cb;--mdc-switch-selected-focus-handle-color: #9fa8da;--mdc-switch-selected-hover-handle-color: #9fa8da;--mdc-switch-selected-pressed-handle-color: #9fa8da;--mdc-switch-selected-focus-track-color: #3949ab;--mdc-switch-selected-hover-track-color: #3949ab;--mdc-switch-selected-pressed-track-color: #3949ab;--mdc-switch-selected-track-color: #3949ab;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.indigo.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-elevation-z0,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.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,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.indigo.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.indigo.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.night .mat-mdc-tab-group,.rtl-container.indigo.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.indigo.night .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.indigo.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-primary{color:#536dfe!important}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.indigo.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.indigo.night .currency-icon path,.rtl-container.indigo.night .currency-icon polygon{fill:#fff}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.indigo.night .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.indigo.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-expansion-panel,.rtl-container.indigo.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.indigo.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .mdc-data-table__header-cell,.rtl-container.indigo.night .mat-mdc-paginator,.rtl-container.indigo.night .mat-mdc-form-field-focus-overlay,.rtl-container.indigo.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.indigo.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#536dfe}.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.indigo.night .svg-donation{opacity:1!important}.rtl-container.indigo.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#536dfe!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#536dfe!important}.rtl-container.indigo.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#3f51b5}.rtl-container.indigo.night a{color:#536dfe!important;cursor:pointer}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.indigo.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.indigo.night .mat-mdc-select-placeholder,.rtl-container.indigo.night .mat-mdc-select-value,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#536dfe}.rtl-container.indigo.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.indigo.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#536dfe}.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#536dfe}.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:#121212}.rtl-container.indigo.night .mat-tree{background:#121212}.rtl-container.indigo.night h4{color:#536dfe}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.indigo.night .spinner-container h2{color:#536dfe}.rtl-container.indigo.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.night svg .stroke-color-primary{stroke:#3f51b5}.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-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{font-size:100%;color:#536dfe}.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(odd) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.indigo.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.indigo.night .mat-mdc-card-subtitle,.rtl-container.indigo.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.indigo.night .mat-menu-panel{min-width:4rem}.rtl-container.indigo.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.indigo.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.night table.mat-mdc-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,.12);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,.12)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .more-button{color:#fff}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.indigo.night .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:8rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.night .color-warn{color:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.rtl-container.indigo.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.night .dashboard-card-content .underline,.rtl-container.indigo.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #154a23;--mdc-switch-selected-handle-color: #154a23;--mdc-switch-selected-hover-state-layer-color: #154a23;--mdc-switch-selected-pressed-state-layer-color: #154a23;--mdc-switch-selected-focus-handle-color: #08270e;--mdc-switch-selected-hover-handle-color: #08270e;--mdc-switch-selected-pressed-handle-color: #08270e;--mdc-switch-selected-focus-track-color: #5d8568;--mdc-switch-selected-hover-track-color: #5d8568;--mdc-switch-selected-pressed-track-color: #5d8568;--mdc-switch-selected-track-color: #5d8568;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-elevation-z0,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.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,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.green.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#185127}.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.day .mat-mdc-tab-group,.rtl-container.green.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.green.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.green.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.green.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.green.day .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.green.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.green.day .page-title,.rtl-container.green.day .mat-mdc-select-value,.rtl-container.green.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#185127}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#185127}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#185127;cursor:pointer}.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,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#185127}.rtl-container.green.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.green.day .mdc-tab__text-label,.rtl-container.green.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.green.day .mat-mdc-card,.rtl-container.green.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.green.day .mat-mdc-form-field-hint fa-icon svg path{fill:#185127}.rtl-container.green.day .currency-icon path,.rtl-container.green.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.day svg .stroke-color-primary{stroke:#185127}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#185127}.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.mat-icon-no-color,.rtl-container.green.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.green.day .mat-mdc-card-subtitle,.rtl-container.green.day .mat-mdc-card-title{color:#0000008a}.rtl-container.green.day .mat-menu-panel{min-width:4rem}.rtl-container.green.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.day table.mat-mdc-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:#000}.rtl-container.green.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.green.day .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .rtl-select-overlay{min-width:7rem}}.rtl-container.green.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:8rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.green.day .dashboard-card-content .underline,.rtl-container.green.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.day .fa-icon-primary{color:#185127}.rtl-container.green.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #5d8568;--mdc-switch-selected-handle-color: #5d8568;--mdc-switch-selected-hover-state-layer-color: #5d8568;--mdc-switch-selected-pressed-state-layer-color: #5d8568;--mdc-switch-selected-focus-handle-color: #8ca893;--mdc-switch-selected-hover-handle-color: #8ca893;--mdc-switch-selected-pressed-handle-color: #8ca893;--mdc-switch-selected-focus-track-color: #154a23;--mdc-switch-selected-hover-track-color: #154a23;--mdc-switch-selected-pressed-track-color: #154a23;--mdc-switch-selected-track-color: #154a23;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.green.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-elevation-z0,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.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,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.green.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.green.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#185127}.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.night .mat-mdc-tab-group,.rtl-container.green.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.green.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.green.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.green.night .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.green.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-primary{color:#30ff4b!important}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.green.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.green.night .currency-icon path,.rtl-container.green.night .currency-icon polygon{fill:#fff}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.green.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.green.night .help-expansion .mat-expansion-indicator:after,.rtl-container.green.night .help-expansion .mat-expansion-panel-content,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.green.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.green.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.green.night .mat-expansion-panel,.rtl-container.green.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.green.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .mdc-data-table__header-cell,.rtl-container.green.night .mat-mdc-paginator,.rtl-container.green.night .mat-mdc-form-field-focus-overlay,.rtl-container.green.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.green.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#30ff4b}.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.green.night .svg-donation{opacity:1!important}.rtl-container.green.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#30ff4b!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#30ff4b!important}.rtl-container.green.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#185127}.rtl-container.green.night a{color:#30ff4b!important;cursor:pointer}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.green.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.green.night .mat-mdc-select-placeholder,.rtl-container.green.night .mat-mdc-select-value,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#30ff4b}.rtl-container.green.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .boltz-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.green.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#30ff4b}.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#30ff4b}.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:#121212}.rtl-container.green.night .mat-tree{background:#121212}.rtl-container.green.night h4{color:#30ff4b}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.green.night .spinner-container h2{color:#30ff4b}.rtl-container.green.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.night svg .stroke-color-primary{stroke:#185127}.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-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{font-size:100%;color:#30ff4b}.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(odd) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.green.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.green.night .mat-mdc-card-subtitle,.rtl-container.green.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.green.night .mat-menu-panel{min-width:4rem}.rtl-container.green.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.green.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.night table.mat-mdc-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,.12);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,.12)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .more-button{color:#fff}.rtl-container.green.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.green.night .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .rtl-select-overlay{min-width:7rem}}.rtl-container.green.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:8rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.night .color-warn{color:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.rtl-container.green.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.green.night .dashboard-card-content .underline,.rtl-container.green.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.night .fa-icon-primary{color:#185127}.rtl-container.green.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #00897b;--mdc-switch-selected-handle-color: #00897b;--mdc-switch-selected-hover-state-layer-color: #00897b;--mdc-switch-selected-pressed-state-layer-color: #00897b;--mdc-switch-selected-focus-handle-color: #004d40;--mdc-switch-selected-hover-handle-color: #004d40;--mdc-switch-selected-pressed-handle-color: #004d40;--mdc-switch-selected-focus-track-color: #4db6ac;--mdc-switch-selected-hover-track-color: #4db6ac;--mdc-switch-selected-pressed-track-color: #4db6ac;--mdc-switch-selected-track-color: #4db6ac;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-elevation-z0,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.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,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.teal.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#00695c}.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.day .mat-mdc-tab-group,.rtl-container.teal.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.teal.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.teal.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.teal.day .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.teal.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.teal.day .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.teal.day .page-title,.rtl-container.teal.day .mat-mdc-select-value,.rtl-container.teal.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#00695c}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#00695c}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#00695c;cursor:pointer}.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,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#00695c}.rtl-container.teal.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.teal.day .mdc-tab__text-label,.rtl-container.teal.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.teal.day .mat-mdc-card,.rtl-container.teal.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#00695c}.rtl-container.teal.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.teal.day .mat-mdc-form-field-hint fa-icon svg path{fill:#00695c}.rtl-container.teal.day .currency-icon path,.rtl-container.teal.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.day svg .stroke-color-primary{stroke:#00695c}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#00695c}.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.mat-icon-no-color,.rtl-container.teal.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#00695c}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.teal.day .mat-mdc-card-subtitle,.rtl-container.teal.day .mat-mdc-card-title{color:#0000008a}.rtl-container.teal.day .mat-menu-panel{min-width:4rem}.rtl-container.teal.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#00695c}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#00695c;opacity:1}.rtl-container.teal.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.day table.mat-mdc-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:#000}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:8rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.day .dashboard-card-content .underline,.rtl-container.teal.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#00695c}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#00695c}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.day .fa-icon-primary{color:#00695c}.rtl-container.teal.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #4db6ac;--mdc-switch-selected-handle-color: #4db6ac;--mdc-switch-selected-hover-state-layer-color: #4db6ac;--mdc-switch-selected-pressed-state-layer-color: #4db6ac;--mdc-switch-selected-focus-handle-color: #80cbc4;--mdc-switch-selected-hover-handle-color: #80cbc4;--mdc-switch-selected-pressed-handle-color: #80cbc4;--mdc-switch-selected-focus-track-color: #00897b;--mdc-switch-selected-hover-track-color: #00897b;--mdc-switch-selected-pressed-track-color: #00897b;--mdc-switch-selected-track-color: #00897b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.teal.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-elevation-z0,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.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,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.teal.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.teal.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#00695c}.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.night .mat-mdc-tab-group,.rtl-container.teal.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.teal.night .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.teal.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-primary{color:#64ffda!important}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.teal.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.teal.night .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.teal.night .currency-icon path,.rtl-container.teal.night .currency-icon polygon{fill:#fff}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.teal.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.teal.night .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.night .help-expansion .mat-expansion-panel-content,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.teal.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.teal.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.teal.night .mat-expansion-panel,.rtl-container.teal.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.teal.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .mdc-data-table__header-cell,.rtl-container.teal.night .mat-mdc-paginator,.rtl-container.teal.night .mat-mdc-form-field-focus-overlay,.rtl-container.teal.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.teal.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#64ffda}.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.teal.night .svg-donation{opacity:1!important}.rtl-container.teal.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#64ffda!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#64ffda!important}.rtl-container.teal.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#00695c}.rtl-container.teal.night a{color:#64ffda!important;cursor:pointer}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.teal.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.teal.night .mat-mdc-select-placeholder,.rtl-container.teal.night .mat-mdc-select-value,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#64ffda}.rtl-container.teal.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .boltz-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.teal.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#64ffda}.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#64ffda}.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:#121212}.rtl-container.teal.night .mat-tree{background:#121212}.rtl-container.teal.night h4{color:#64ffda}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.teal.night .spinner-container h2{color:#64ffda}.rtl-container.teal.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.night svg .stroke-color-primary{stroke:#00695c}.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-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{font-size:100%;color:#64ffda}.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(odd) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.teal.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.teal.night .mat-mdc-card-subtitle,.rtl-container.teal.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.teal.night .mat-menu-panel{min-width:4rem}.rtl-container.teal.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.teal.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#00695c}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#00695c;opacity:1}.rtl-container.teal.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.night table.mat-mdc-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,.12);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,.12)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .more-button{color:#fff}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:8rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.night .color-warn{color:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.rtl-container.teal.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.night .dashboard-card-content .underline,.rtl-container.teal.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#00695c}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#00695c}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.night .fa-icon-primary{color:#00695c}.rtl-container.teal.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #d81b60;--mdc-switch-selected-handle-color: #d81b60;--mdc-switch-selected-hover-state-layer-color: #d81b60;--mdc-switch-selected-pressed-state-layer-color: #d81b60;--mdc-switch-selected-focus-handle-color: #880e4f;--mdc-switch-selected-hover-handle-color: #880e4f;--mdc-switch-selected-pressed-handle-color: #880e4f;--mdc-switch-selected-focus-track-color: #f06292;--mdc-switch-selected-hover-track-color: #f06292;--mdc-switch-selected-pressed-track-color: #f06292;--mdc-switch-selected-track-color: #f06292;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-elevation-z0,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.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,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.pink.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#e91e63}.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.day .mat-mdc-tab-group,.rtl-container.pink.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.pink.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.pink.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.pink.day .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.pink.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.pink.day .page-title,.rtl-container.pink.day .mat-mdc-select-value,.rtl-container.pink.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#e91e63}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#e91e63}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#e91e63;cursor:pointer}.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,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.pink.day .mdc-tab__text-label,.rtl-container.pink.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.pink.day .mat-mdc-card,.rtl-container.pink.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.pink.day .mat-mdc-form-field-hint fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .currency-icon path,.rtl-container.pink.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.day svg .stroke-color-primary{stroke:#e91e63}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#e91e63}.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.mat-icon-no-color,.rtl-container.pink.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-text,.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(odd) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.pink.day .mat-mdc-card-subtitle,.rtl-container.pink.day .mat-mdc-card-title{color:#0000008a}.rtl-container.pink.day .mat-menu-panel{min-width:4rem}.rtl-container.pink.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.day table.mat-mdc-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:#000}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.pink.day .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:8rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.day .dashboard-card-content .underline,.rtl-container.pink.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.day .fa-icon-primary{color:#e91e63}.rtl-container.pink.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #f06292;--mdc-switch-selected-handle-color: #f06292;--mdc-switch-selected-hover-state-layer-color: #f06292;--mdc-switch-selected-pressed-state-layer-color: #f06292;--mdc-switch-selected-focus-handle-color: #f48fb1;--mdc-switch-selected-hover-handle-color: #f48fb1;--mdc-switch-selected-pressed-handle-color: #f48fb1;--mdc-switch-selected-focus-track-color: #d81b60;--mdc-switch-selected-hover-track-color: #d81b60;--mdc-switch-selected-pressed-track-color: #d81b60;--mdc-switch-selected-track-color: #d81b60;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.pink.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-elevation-z0,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.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,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.pink.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.pink.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#e91e63}.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.night .mat-mdc-tab-group,.rtl-container.pink.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.pink.night .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.pink.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-primary{color:#ff4081!important}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.pink.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.pink.night .currency-icon path,.rtl-container.pink.night .currency-icon polygon{fill:#fff}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.pink.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.pink.night .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.night .help-expansion .mat-expansion-panel-content,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.pink.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.pink.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.pink.night .mat-expansion-panel,.rtl-container.pink.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.pink.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .mdc-data-table__header-cell,.rtl-container.pink.night .mat-mdc-paginator,.rtl-container.pink.night .mat-mdc-form-field-focus-overlay,.rtl-container.pink.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.pink.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ff4081}.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.pink.night .svg-donation{opacity:1!important}.rtl-container.pink.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ff4081!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ff4081!important}.rtl-container.pink.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#e91e63}.rtl-container.pink.night a{color:#ff4081!important;cursor:pointer}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.pink.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.pink.night .mat-mdc-select-placeholder,.rtl-container.pink.night .mat-mdc-select-value,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ff4081}.rtl-container.pink.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .boltz-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.pink.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ff4081}.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ff4081}.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:#121212}.rtl-container.pink.night .mat-tree{background:#121212}.rtl-container.pink.night h4{color:#ff4081}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.pink.night .spinner-container h2{color:#ff4081}.rtl-container.pink.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.night svg .stroke-color-primary{stroke:#e91e63}.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-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{font-size:100%;color:#ff4081}.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(odd) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.pink.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.pink.night .mat-mdc-card-subtitle,.rtl-container.pink.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.pink.night .mat-menu-panel{min-width:4rem}.rtl-container.pink.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.pink.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.night table.mat-mdc-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,.12);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,.12)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .more-button{color:#fff}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.pink.night .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:8rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.night .color-warn{color:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.rtl-container.pink.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.night .dashboard-card-content .underline,.rtl-container.pink.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.night .fa-icon-primary{color:#e91e63}.rtl-container.pink.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8c571b;--mdc-switch-selected-handle-color: #8c571b;--mdc-switch-selected-hover-state-layer-color: #8c571b;--mdc-switch-selected-pressed-state-layer-color: #8c571b;--mdc-switch-selected-focus-handle-color: #65320a;--mdc-switch-selected-hover-handle-color: #65320a;--mdc-switch-selected-pressed-handle-color: #65320a;--mdc-switch-selected-focus-track-color: #b48f62;--mdc-switch-selected-hover-track-color: #b48f62;--mdc-switch-selected-pressed-track-color: #b48f62;--mdc-switch-selected-track-color: #b48f62;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-elevation-z0,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.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,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.yellow.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.day .mat-mdc-tab-group,.rtl-container.yellow.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.yellow.day .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.yellow.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.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;padding:0 2.5rem 0 1rem}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.yellow.day .page-title,.rtl-container.yellow.day .mat-mdc-select-value,.rtl-container.yellow.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#0000008a}.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-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#945f1f}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#945f1f}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.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,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#945f1f;cursor:pointer}.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,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .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,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .spinner-container h2{color:#fff}.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 table.mat-mdc-table thead tr th,.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:#0000000a}.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:#0000001f}.rtl-container.yellow.day .mdc-tab__text-label,.rtl-container.yellow.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-mdc-card,.rtl-container.yellow.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-capacity-header,.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-mdc-form-field-hint{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.yellow.day .mat-mdc-form-field-hint fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .currency-icon path,.rtl-container.yellow.day .currency-icon polygon{fill:#0000008a}.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 .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.day svg .stroke-color-primary{stroke:#945f1f}.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 .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#945f1f}.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.mat-icon-no-color,.rtl-container.yellow.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.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(odd) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:1.5rem}.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:4rem}.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:4px}.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:.4px;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.yellow.day .mat-mdc-card-subtitle,.rtl-container.yellow.day .mat-mdc-card-title{color:#0000008a}.rtl-container.yellow.day .mat-menu-panel{min-width:4rem}.rtl-container.yellow.day .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.day .cc-data-block .cc-data-value{color:#000}.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 .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.day table.mat-mdc-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:#000}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.yellow.day .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:8rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.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:#000;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 .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:1rem}.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{fill:#b00020;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.day .dashboard-card-content .underline,.rtl-container.yellow.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .fa-icon-primary{color:#945f1f}.rtl-container.yellow.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #b48f62;--mdc-switch-selected-handle-color: #b48f62;--mdc-switch-selected-hover-state-layer-color: #b48f62;--mdc-switch-selected-pressed-state-layer-color: #b48f62;--mdc-switch-selected-focus-handle-color: #caaf8f;--mdc-switch-selected-hover-handle-color: #caaf8f;--mdc-switch-selected-pressed-handle-color: #caaf8f;--mdc-switch-selected-focus-track-color: #8c571b;--mdc-switch-selected-hover-track-color: #8c571b;--mdc-switch-selected-pressed-track-color: #8c571b;--mdc-switch-selected-track-color: #8c571b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.yellow.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-elevation-z0,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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,.rtl-container.yellow.night .mat-mdc-elevation-specific.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-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.yellow.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.yellow.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.night .mat-mdc-tab-group,.rtl-container.yellow.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.yellow.night .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.yellow.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-primary{color:#ffa164!important}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.yellow.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.yellow.night .currency-icon path,.rtl-container.yellow.night .currency-icon polygon{fill:#fff}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-mdc-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 .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.yellow.night .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.yellow.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-expansion-panel,.rtl-container.yellow.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.yellow.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .mdc-data-table__header-cell,.rtl-container.yellow.night .mat-mdc-paginator,.rtl-container.yellow.night .mat-mdc-form-field-focus-overlay,.rtl-container.yellow.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.yellow.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ffa164}.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.yellow.night .svg-donation{opacity:1!important}.rtl-container.yellow.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ffa164!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ffa164!important}.rtl-container.yellow.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#945f1f}.rtl-container.yellow.night a{color:#ffa164!important;cursor:pointer}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.yellow.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.yellow.night .mat-mdc-select-placeholder,.rtl-container.yellow.night .mat-mdc-select-value,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ffa164}.rtl-container.yellow.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.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:#ffffff0f}.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-tree-node:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.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.mat-selected.mat-active .boltz-icon-fill,.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:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#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:#0009}.rtl-container.yellow.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ffa164}.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ffa164}.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:#121212}.rtl-container.yellow.night .mat-tree{background:#121212}.rtl-container.yellow.night h4{color:#ffa164}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-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:#121212}.rtl-container.yellow.night .spinner-container h2{color:#ffa164}.rtl-container.yellow.night table.mat-mdc-table thead tr th{color:#fff}.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 .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.night svg .stroke-color-primary{stroke:#945f1f}.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-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{font-size:100%;color:#ffa164}.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(odd) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) 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:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.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:4rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.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-icon-36{color:#ffffffb3}.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:4px}.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:.4px;width:100%;color:#ff343b}.rtl-container.yellow.night .mat-vertical-content{padding:0 0 .75rem}.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-mdc-card-content,.rtl-container.yellow.night .mat-mdc-card-subtitle,.rtl-container.yellow.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.yellow.night .mat-menu-panel{min-width:4rem}.rtl-container.yellow.night .horizontal-button{height:4rem;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:1.5rem;border-radius:1 1.25rem;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-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.night .cc-data-block .cc-data-value{color:#fff}.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:#ffffff1f}.rtl-container.yellow.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.night table.mat-mdc-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,.12);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,.12)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .more-button{color:#fff}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.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{font-size:90%;padding-bottom:2px}.rtl-container.yellow.night .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!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 .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:8rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.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-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 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-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.night .color-warn{color:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.rtl-container.yellow.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;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 .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:1rem}.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{fill:#ff343b;height:1.25rem}.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:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.night .dashboard-card-content .underline,.rtl-container.yellow.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .fa-icon-primary{color:#945f1f}.rtl-container.yellow.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.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)}}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;font-display:block;src:url(material-icons.59322316b3fd6063.woff2) format("woff2"),url(material-icons.4ad034d2c499d9b6.woff) format("woff")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-outlined.f86cb7b0aa53f0fe.woff2) format("woff2"),url(material-icons-outlined.78a93b2079680a08.woff) format("woff")}.material-icons-outlined{font-family:Material Icons Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Round;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-round.b10ec9db5b7fbc74.woff2) format("woff2"),url(material-icons-round.92dc7ca2f4c591e7.woff) format("woff")}.material-icons-round{font-family:Material Icons Round;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Sharp;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-sharp.3885863ee4746422.woff2) format("woff2"),url(material-icons-sharp.a71cb2bf66c604de.woff) format("woff")}.material-icons-sharp{font-family:Material Icons Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Two Tone;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-two-tone.675bd578bd14533e.woff2) format("woff2"),url(material-icons-two-tone.588d63134de807a7.woff) format("woff")}.material-icons-two-tone{font-family:Material Icons Two Tone;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;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")} diff --git a/package-lock.json b/package-lock.json index b01210ae..d6fe7685 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,217 +1,211 @@ { "name": "rtl", - "version": "0.15.0-beta", + "version": "0.15.1-beta", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rtl", - "version": "0.15.0-beta", + "version": "0.15.1-beta", "license": "MIT", "dependencies": { - "@ngrx/effects": "^17.0.0", - "@ngrx/store": "^17.0.0", + "@ngrx/effects": "^17.2.0", + "@ngrx/store": "^17.2.0", "@swimlane/ngx-charts": "^20.5.0", "angular-user-idle": "^4.0.0", "atob": "^2.1.2", "cookie-parser": "^1.4.6", "crypto-browserify": "^3.12.0", "csurf": "^1.11.0", - "express": "^4.18.2", - "express-session": "^1.17.3", + "express": "^4.19.2", + "express-session": "^1.18.0", "hocon-parser": "^1.0.1", - "ini": "^4.1.1", + "ini": "^4.1.3", "jsonwebtoken": "^9.0.2", - "ng-qrcode": "^17.0.0", + "ng-qrcode": "^18.0.0", "ngx-perfect-scrollbar-next": "^10.1.1", "otplib": "^12.0.1", - "pdfmake": "^0.2.8", + "pdfmake": "^0.2.10", + "process": "^0.11.10", "request": "^2.88.2", "request-promise": "^4.2.6", "rxjs": "^7.8.1", "sha256": "^0.2.0", - "socket.io-client": "^4.7.2", + "socket.io-client": "^4.7.5", "stream-browserify": "^3.0.0", "tslib": "^2.6.2", - "ws": "^8.14.2", - "zone.js": "^0.14.2" + "vm-browserify": "^1.1.2", + "ws": "^8.17.0", + "zone.js": "^0.14.6" }, "devDependencies": { - "@angular-devkit/build-angular": "^17.0.3", - "@angular-eslint/builder": "^17.1.0", - "@angular-eslint/eslint-plugin": "^17.1.0", - "@angular-eslint/eslint-plugin-template": "^17.1.0", - "@angular-eslint/schematics": "^17.1.0", - "@angular-eslint/template-parser": "^17.1.0", - "@angular/animations": "^17.0.4", + "@angular-devkit/build-angular": "^18.0.2", + "@angular-eslint/builder": "^18.0.1", + "@angular-eslint/eslint-plugin": "^18.0.1", + "@angular-eslint/eslint-plugin-template": "^18.0.1", + "@angular-eslint/schematics": "^18.0.1", + "@angular-eslint/template-parser": "^18.0.1", + "@angular/animations": "^18.0.1", "@angular/cdk": "^17.0.1", - "@angular/cli": "^17.0.3", - "@angular/common": "^17.0.4", - "@angular/compiler": "^17.0.4", - "@angular/compiler-cli": "^17.0.4", - "@angular/core": "^17.0.4", + "@angular/cli": "^18.0.2", + "@angular/common": "^18.0.1", + "@angular/compiler": "^18.0.1", + "@angular/compiler-cli": "^18.0.1", + "@angular/core": "^18.0.1", "@angular/flex-layout": "^15.0.0-beta.42", - "@angular/forms": "^17.0.4", + "@angular/forms": "^18.0.1", "@angular/material": "^17.0.1", - "@angular/platform-browser": "^17.0.4", - "@angular/platform-browser-dynamic": "^17.0.4", - "@angular/router": "^17.0.4", - "@fortawesome/angular-fontawesome": "^0.14.0", - "@fortawesome/fontawesome-svg-core": "^6.4.2", - "@fortawesome/free-regular-svg-icons": "^6.4.2", - "@fortawesome/free-solid-svg-icons": "^6.4.2", - "@ngrx/store-devtools": "^17.0.0", + "@angular/platform-browser": "^18.0.1", + "@angular/platform-browser-dynamic": "^18.0.1", + "@angular/router": "^18.0.1", + "@fortawesome/angular-fontawesome": "^0.15.0", + "@fortawesome/fontawesome-svg-core": "^6.5.2", + "@fortawesome/free-regular-svg-icons": "^6.5.2", + "@fortawesome/free-solid-svg-icons": "^6.5.2", + "@ngrx/store-devtools": "^17.2.0", "@types/jasmine": "^5.1.4", - "@types/node": "^20.9.4", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", - "dotenv": "^16.3.1", - "eslint": "^8.53.0", - "eslint-plugin-deprecation": "^2.0.0", - "jasmine-core": "^5.1.1", + "@types/node": "^20.14.1", + "@typescript-eslint/eslint-plugin": "^7.12.0", + "@typescript-eslint/parser": "^7.12.0", + "dotenv": "^16.4.5", + "eslint": "^9.4.0", + "eslint-plugin-deprecation": "^3.0.0", + "jasmine-core": "^5.1.2", "jasmine-spec-reporter": "^7.0.0", - "karma": "^6.4.2", + "karma": "^6.4.3", "karma-chrome-launcher": "^3.2.0", "karma-coverage": "^2.2.1", "karma-jasmine": "^5.1.0", "karma-jasmine-html-reporter": "^2.1.0", "material-icons": "^1.13.12", - "nodemon": "^3.0.1", + "nodemon": "^3.1.3", "protractor": "^7.0.0", "roboto-fontface": "^0.10.0", - "ts-node": "^10.9.1", - "typescript": "~5.2.2" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "ts-node": "^10.9.2", + "typescript": "~5.4.5" } }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", - "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@angular-devkit/architect": { - "version": "0.1700.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1700.3.tgz", - "integrity": "sha512-HUjx7vD16paWXHKHYc2LsSn/kaYbFr2YNnlzuSr9C0kauKS1e7sRpRvtGwQzXfohzgyKi81AAU5uA2KLRGq83w==", + "version": "0.1800.2", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.2.tgz", + "integrity": "sha512-PX7lCTAqWe9C40+fie+DAc8vhpGA+JgZKWWrMHUTV/iZx8RXx2X4xGQsqYu36p4i3MSfQdbn+0xLWGmjScPVOQ==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.0.3", + "@angular-devkit/core": "18.0.2", "rxjs": "7.8.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/build-angular": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.0.3.tgz", - "integrity": "sha512-1lx0mERC1eTHX4vf8q7kUHZNHS0jwZxbwYHAISOplwHjkzRociX0W6rx04yMXn2NCSNhK+w3xbWyAIgyYbP9nA==", + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.0.2.tgz", + "integrity": "sha512-cQkTx7XaIPj6+DXo6wZmO4iY0hOOfPDnSN/+m84XpBW0tuPGxH7Z9B6wV+Uwcpm9HGPqzRA7VZyPsqbK860b0Q==", "dev": true, "dependencies": { - "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1700.3", - "@angular-devkit/build-webpack": "0.1700.3", - "@angular-devkit/core": "17.0.3", - "@babel/core": "7.23.2", - "@babel/generator": "7.23.0", + "@ampproject/remapping": "2.3.0", + "@angular-devkit/architect": "0.1800.2", + "@angular-devkit/build-webpack": "0.1800.2", + "@angular-devkit/core": "18.0.2", + "@angular/build": "18.0.2", + "@babel/core": "7.24.5", + "@babel/generator": "7.24.5", "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.22.6", - "@babel/plugin-transform-async-generator-functions": "7.23.2", - "@babel/plugin-transform-async-to-generator": "7.22.5", - "@babel/plugin-transform-runtime": "7.23.2", - "@babel/preset-env": "7.23.2", - "@babel/runtime": "7.23.2", + "@babel/helper-split-export-declaration": "7.24.5", + "@babel/plugin-transform-async-generator-functions": "7.24.3", + "@babel/plugin-transform-async-to-generator": "7.24.1", + "@babel/plugin-transform-runtime": "7.24.3", + "@babel/preset-env": "7.24.5", + "@babel/runtime": "7.24.5", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "17.0.3", - "@vitejs/plugin-basic-ssl": "1.0.1", + "@ngtools/webpack": "18.0.2", + "@vitejs/plugin-basic-ssl": "1.1.0", "ansi-colors": "4.1.3", - "autoprefixer": "10.4.16", + "autoprefixer": "10.4.19", "babel-loader": "9.1.3", "babel-plugin-istanbul": "6.1.1", - "browser-sync": "2.29.3", "browserslist": "^4.21.5", - "chokidar": "3.5.3", "copy-webpack-plugin": "11.0.0", - "critters": "0.0.20", - "css-loader": "6.8.1", - "esbuild-wasm": "0.19.5", - "fast-glob": "3.3.1", - "http-proxy-middleware": "2.0.6", - "https-proxy-agent": "7.0.2", - "inquirer": "9.2.11", - "jsonc-parser": "3.2.0", + "critters": "0.0.22", + "css-loader": "7.1.1", + "esbuild-wasm": "0.21.3", + "fast-glob": "3.3.2", + "http-proxy-middleware": "3.0.0", + "https-proxy-agent": "7.0.4", + "inquirer": "9.2.22", + "jsonc-parser": "3.2.1", "karma-source-map-support": "1.4.0", "less": "4.2.0", - "less-loader": "11.1.0", + "less-loader": "12.2.0", "license-webpack-plugin": "4.0.2", "loader-utils": "3.2.1", - "magic-string": "0.30.5", - "mini-css-extract-plugin": "2.7.6", - "mrmime": "1.0.1", + "magic-string": "0.30.10", + "mini-css-extract-plugin": "2.9.0", + "mrmime": "2.0.0", "open": "8.4.2", "ora": "5.4.1", "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "3.0.1", - "piscina": "4.1.0", - "postcss": "8.4.31", - "postcss-loader": "7.3.3", + "picomatch": "4.0.2", + "piscina": "4.5.0", + "postcss": "8.4.38", + "postcss-loader": "8.1.1", "resolve-url-loader": "5.0.0", "rxjs": "7.8.1", - "sass": "1.69.5", - "sass-loader": "13.3.2", - "semver": "7.5.4", - "source-map-loader": "4.0.1", + "sass": "1.77.2", + "sass-loader": "14.2.1", + "semver": "7.6.2", + "source-map-loader": "5.0.0", "source-map-support": "0.5.21", - "terser": "5.24.0", - "text-table": "0.2.0", + "terser": "5.31.0", "tree-kill": "1.2.2", "tslib": "2.6.2", - "undici": "5.27.2", - "vite": "4.5.0", - "webpack": "5.89.0", - "webpack-dev-middleware": "6.1.1", - "webpack-dev-server": "4.15.1", + "undici": "6.18.0", + "vite": "5.2.11", + "watchpack": "2.4.1", + "webpack": "5.91.0", + "webpack-dev-middleware": "7.2.1", + "webpack-dev-server": "5.0.4", "webpack-merge": "5.10.0", "webpack-subresource-integrity": "5.1.0" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.19.5" + "esbuild": "0.21.3" }, "peerDependencies": { - "@angular/compiler-cli": "^17.0.0", - "@angular/localize": "^17.0.0", - "@angular/platform-server": "^17.0.0", - "@angular/service-worker": "^17.0.0", + "@angular/compiler-cli": "^18.0.0", + "@angular/localize": "^18.0.0", + "@angular/platform-server": "^18.0.0", + "@angular/service-worker": "^18.0.0", + "@web/test-runner": "^0.18.0", + "browser-sync": "^3.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "karma": "^6.3.0", - "ng-packagr": "^17.0.0", + "ng-packagr": "^18.0.0", "protractor": "^7.0.0", "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.2 <5.3" + "typescript": ">=5.4 <5.5" }, "peerDependenciesMeta": { "@angular/localize": { @@ -223,6 +217,12 @@ "@angular/service-worker": { "optional": true }, + "@web/test-runner": { + "optional": true + }, + "browser-sync": { + "optional": true + }, "jest": { "optional": true }, @@ -243,40 +243,46 @@ } } }, + "node_modules/@angular-devkit/build-angular/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1700.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1700.3.tgz", - "integrity": "sha512-r8nVakAnwV5Yy2AjWDpdcGUjHRQBcPljZDhX5tX2H7M3bxD6zG5owXDy8XmG64A7U1jd6D7dQv7zoW/tZwpYvw==", + "version": "0.1800.2", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1800.2.tgz", + "integrity": "sha512-CbTURBhZWzx+5KewS2Nkqy2rwBTFgDCvUwONGWuy1K68+85vOWUKqjkfvriHA+JkWN03w7FzWEtTfcOg0EzYkw==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1700.3", + "@angular-devkit/architect": "0.1800.2", "rxjs": "7.8.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { "webpack": "^5.30.0", - "webpack-dev-server": "^4.0.0" + "webpack-dev-server": "^5.0.2" } }, "node_modules/@angular-devkit/core": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.0.3.tgz", - "integrity": "sha512-SOngD3rKnwZWhhUV68AYlH8M3LRGvF69jnDrYKwtRy1ESqSH7tt+1vexGC290gKvqH7bNMgYv8f5BS1AASRfzw==", + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.2.tgz", + "integrity": "sha512-QXcEdfmODc0rKblBerk30yw70fypIkFm6gQBLJgsshpwc+TMA+fuMLcPQebOTzKLtD2tNUkk/7SrWPQIGqeXaA==", "dev": true, "dependencies": { - "ajv": "8.12.0", - "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "picomatch": "3.0.1", + "ajv": "8.13.0", + "ajv-formats": "3.0.1", + "jsonc-parser": "3.2.1", + "picomatch": "4.0.2", "rxjs": "7.8.1", "source-map": "0.7.4" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -290,125 +296,127 @@ } }, "node_modules/@angular-devkit/schematics": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.0.3.tgz", - "integrity": "sha512-gNocyYuNJRd24+JSM5kpO7g9Vg4THcoH5It8nJmS3muelLHDzegvDzXB7iPBjVR8Lxts6sbifYdIkKencUc4vg==", + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.2.tgz", + "integrity": "sha512-G9yGcoB67sH0eRNWoiQWNn2KwiI7sDasVscYPGKf1yo7JRiXmzX/LpfKRPsZTl+Bs0FItnwDInsqgMisK89/6g==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.0.3", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.5", + "@angular-devkit/core": "18.0.2", + "jsonc-parser": "3.2.1", + "magic-string": "0.30.10", "ora": "5.4.1", "rxjs": "7.8.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-eslint/builder": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-17.1.0.tgz", - "integrity": "sha512-rLIInxx9q82DDrfcg5gzjNftxhkqdLILUgjlA9XtA9LayU3rz4CS81we+vAOAPbbnGxoMsEeBg5nVecbKN3dVQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.0.1.tgz", + "integrity": "sha512-b/VUeTQznAmGdwP4OyPWyegqSRWub7E8/WXBqojrSFyLkFhpTiHpk/3/5G3LsgTb0zBfyAsqkA0yaadsHu9pjA==", "dev": true, "dependencies": { - "@nx/devkit": "17.1.2", - "nx": "17.1.2" + "@nx/devkit": "^19.0.6", + "nx": "^19.0.6" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-17.1.0.tgz", - "integrity": "sha512-Y+CN/8nQZaYjsb2b2sXbkQr0LrgBWhCzyLZ+rLfnLE60B9k4GeDt5b7z/OdSObi1xozXfqiaAZ1eXo0iQMN3JA==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.0.1.tgz", + "integrity": "sha512-lr4Ysoo28FBOKcJFQUGTMpbWDcak+gyuYvyggp37ERvazE6EDomPFxzEHNqVT9EI9sZ+GDBOoPR+EdFh0ALGNw==", "dev": true }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-17.1.0.tgz", - "integrity": "sha512-pQac5h+XwsquDzaasK/xs9tjdQ/f9eLq8e5An9eXJGHWy4KcrMmQ1XrpaMMMg503LF3rRG/dHKBskGsYgSN9oQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.0.1.tgz", + "integrity": "sha512-pS3SYLa9DA+ENklGxEUlcw6/xCxgDk9fgjyaheuSjDxL3TIh1pTa4V2TptODdcPh7XCYXiVmy+e/w79mXlGzOw==", "dev": true, "dependencies": { - "@angular-eslint/utils": "17.1.0", - "@typescript-eslint/utils": "6.11.0" + "@angular-eslint/bundled-angular-compiler": "18.0.1", + "@angular-eslint/utils": "18.0.1" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-17.1.0.tgz", - "integrity": "sha512-nL9VhChwFQLIRQM4xbTY8Vo095Q4/D77hPtqt3ShYIrORjYTwaWa8+neexToAqXVMapce7oFmFa/OqtxvEerLg==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.0.1.tgz", + "integrity": "sha512-u/eov/CFBb8l35D8dW78Dx5fBLd8FZFibKN9XQknhzXnDMpISuUOMny5g5/wvYYjqLgqEySXMiHKEAxEup7xtA==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.1.0", - "@angular-eslint/utils": "17.1.0", - "@typescript-eslint/type-utils": "6.11.0", - "@typescript-eslint/utils": "6.11.0", + "@angular-eslint/bundled-angular-compiler": "18.0.1", + "@angular-eslint/utils": "18.0.1", "aria-query": "5.3.0", "axobject-query": "4.0.0" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/schematics": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-17.1.0.tgz", - "integrity": "sha512-74gW1E5P4z3PvxNXOTXGaF6li/MLcSeJO8z7XtcP7wcXWu0fihOKlMJGgqB3rIcBa8lRcTDLekQERF+kRZ15aQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.0.1.tgz", + "integrity": "sha512-G9PgFrjyvBaQR8enMnP2scnQDLk99GMpifh3voiOmdEkxaQHRWqhCWncV7GATwpXDzeyj9J9XT9iHGJjnZTpJQ==", "dev": true, "dependencies": { - "@angular-eslint/eslint-plugin": "17.1.0", - "@angular-eslint/eslint-plugin-template": "17.1.0", - "@nx/devkit": "17.1.2", - "ignore": "5.2.4", - "nx": "17.1.2", - "strip-json-comments": "3.1.1", - "tmp": "0.2.1" + "@angular-eslint/eslint-plugin": "18.0.1", + "@angular-eslint/eslint-plugin-template": "18.0.1", + "@nx/devkit": "^19.0.6", + "ignore": "5.3.1", + "nx": "^19.0.6", + "semver": "7.6.2", + "strip-json-comments": "3.1.1" }, "peerDependencies": { - "@angular/cli": ">= 17.0.0 < 18.0.0" + "@angular-devkit/core": ">= 18.0.0 < 19.0.0", + "@angular-devkit/schematics": ">= 18.0.0 < 19.0.0" } }, "node_modules/@angular-eslint/template-parser": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-17.1.0.tgz", - "integrity": "sha512-CTxzB3stjynngTabdO8xTkiPc6Jvo15C2fxb1pYIlDIH2LgPJJxxCHi+IAt9oJpJOPa8QjLVF9VAXE3fLKAcpg==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.0.1.tgz", + "integrity": "sha512-22fKzkWo9Ts8aY/WHL1A6seS2tpltgRRXVfnZnnqvQRyRiuPnx1FC0ly7+QPZkThh8vdLwxU+BvtLq9Uiqh9OQ==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.1.0", - "eslint-scope": "^7.0.0" + "@angular-eslint/bundled-angular-compiler": "18.0.1", + "eslint-scope": "^8.0.0" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/utils": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-17.1.0.tgz", - "integrity": "sha512-AmG0xpRtnBQwrbHObonSilmD3hiFEtZHwFY3LT28VWxznB6WIAHFE7SrKWrRsRsXlib8LaRo4uobR5+MO8aLpw==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.0.1.tgz", + "integrity": "sha512-Q9lCySqg+9h2cz08+SoWj48cY1i04tL1k3bsQJmF2TsylAw2mSsNGX2X3h9WkdxY7sUoY0mP7MVW1iU54Gobcg==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "17.1.0", - "@typescript-eslint/utils": "6.11.0" + "@angular-eslint/bundled-angular-compiler": "18.0.1" }, "peerDependencies": { - "eslint": "^7.20.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular/animations": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-17.0.4.tgz", - "integrity": "sha512-XHkTBZAoYf1t4Hb06RkYa6cgtjEA5JGq1ArXu/DckOS6G/ZuY+dwWULEmaf9ejJem8O78ol223ZQ5d7sXqpixQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-18.0.1.tgz", + "integrity": "sha512-QAY/oxfuFY2Bjr3foniWlLAiddXHu8879lZvXHt1NVOsiav+vD15IEEQsnuQbJPy/EHEnAlUh9UptB4zQIBp/Q==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -416,13 +424,82 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "17.0.4" + "@angular/core": "18.0.1" + } + }, + "node_modules/@angular/build": { + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.2.tgz", + "integrity": "sha512-iPPHdAJ3LiR8t/+39xjvrqMWcTmRrfphzKxXoIVDcswQjVQIk00EYuxinC6EVa7dSKDl1thk1MeCNZ9DIjaAvQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "2.3.0", + "@angular-devkit/architect": "0.1800.2", + "@babel/core": "7.24.5", + "@babel/helper-annotate-as-pure": "7.22.5", + "@babel/helper-split-export-declaration": "7.24.5", + "@vitejs/plugin-basic-ssl": "1.1.0", + "ansi-colors": "4.1.3", + "browserslist": "^4.23.0", + "critters": "0.0.22", + "esbuild": "0.21.3", + "fast-glob": "3.3.2", + "https-proxy-agent": "7.0.4", + "inquirer": "9.2.22", + "lmdb": "3.0.8", + "magic-string": "0.30.10", + "mrmime": "2.0.0", + "ora": "5.4.1", + "parse5-html-rewriting-stream": "7.0.0", + "picomatch": "4.0.2", + "piscina": "4.5.0", + "sass": "1.77.2", + "semver": "7.6.2", + "undici": "6.18.0", + "vite": "5.2.11", + "watchpack": "2.4.1" + }, + "engines": { + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^18.0.0", + "@angular/localize": "^18.0.0", + "@angular/platform-server": "^18.0.0", + "@angular/service-worker": "^18.0.0", + "less": "^4.2.0", + "postcss": "^8.4.0", + "tailwindcss": "^2.0.0 || ^3.0.0", + "typescript": ">=5.4 <5.5" + }, + "peerDependenciesMeta": { + "@angular/localize": { + "optional": true + }, + "@angular/platform-server": { + "optional": true + }, + "@angular/service-worker": { + "optional": true + }, + "less": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tailwindcss": { + "optional": true + } } }, "node_modules/@angular/cdk": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.0.1.tgz", - "integrity": "sha512-0hrXm2D0s0/vUtDoLFRWTs75k5WY/hQmfnsaJXHeqinbE3eKOxmQxL1i7ymnMSQthEWzgRAhzS3Nfs7Alw3dQA==", + "version": "17.3.10", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.10.tgz", + "integrity": "sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -436,27 +513,26 @@ } }, "node_modules/@angular/cli": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-17.0.3.tgz", - "integrity": "sha512-pRGXms87aEqmB4yPdcPI/VM7JegjDcBIeLadms0wrBkoyQiv+jL5LesxODhid6ujXZOj1xqMCYbCnX7HY+mLcQ==", + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.0.2.tgz", + "integrity": "sha512-shrxMD1bcWWh7WpBN3KTV+Lt8E62gURSUFhs6kdGLepMDif8LPAv45+hpt8SBU9VfQuL6AHa4cW8uDL9BKGlYA==", "dev": true, "dependencies": { - "@angular-devkit/architect": "0.1700.3", - "@angular-devkit/core": "17.0.3", - "@angular-devkit/schematics": "17.0.3", - "@schematics/angular": "17.0.3", + "@angular-devkit/architect": "0.1800.2", + "@angular-devkit/core": "18.0.2", + "@angular-devkit/schematics": "18.0.2", + "@schematics/angular": "18.0.2", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.3", - "ini": "4.1.1", - "inquirer": "9.2.11", - "jsonc-parser": "3.2.0", - "npm-package-arg": "11.0.1", - "npm-pick-manifest": "9.0.0", - "open": "8.4.2", + "ini": "4.1.2", + "inquirer": "9.2.22", + "jsonc-parser": "3.2.1", + "npm-package-arg": "11.0.2", + "npm-pick-manifest": "9.0.1", "ora": "5.4.1", - "pacote": "17.0.4", + "pacote": "18.0.6", "resolve": "1.22.8", - "semver": "7.5.4", + "semver": "7.6.2", "symbol-observable": "4.0.0", "yargs": "17.7.2" }, @@ -464,15 +540,25 @@ "ng": "bin/ng.js" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, + "node_modules/@angular/cli/node_modules/ini": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", + "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, "node_modules/@angular/common": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-17.0.4.tgz", - "integrity": "sha512-/y38PbuiaWOuOmP5ZELTlJSjZGijc6Nq2XQloT5pKsaH935prxPjyWazwlY6cUnJMQgSRU644/ULosDJec7Zxw==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.0.1.tgz", + "integrity": "sha512-iADQC5m4fvk+VNXEoU1KR93b0eG218/GuNdzUNVJHcjxdFxPshKk5fiaGSosUCxXPRQOxDKzmS9EDang87E/Ew==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -480,14 +566,15 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "17.0.4", + "@angular/core": "18.0.1", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-17.0.4.tgz", - "integrity": "sha512-OweJui9EWCa1ZcZjkJHS5z1gqICqyryR1Gdmyr8vIa6HD8wU/5BaeBJPCDgYgt+qJkvcT/sPxgZQsc2pVeUwbQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.0.1.tgz", + "integrity": "sha512-zyG/ifCtN0drAuwz0oV6LtzTiDREsM1Ay7eJW9wTvp3NCv06goHLtHXX12eFfZQWJViBv924lyRDSWdZN7r3GQ==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -495,7 +582,7 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "17.0.4" + "@angular/core": "18.0.1" }, "peerDependenciesMeta": { "@angular/core": { @@ -504,16 +591,16 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-17.0.4.tgz", - "integrity": "sha512-ywj8XNI+hvHHYGcNWvXaVHSRtcd3S7MqJNgXWfnb0JjAb282oGSvjEc7wnH4ERqkvnSrpk1kQ2Fj3uJ2P5zfmQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.0.1.tgz", + "integrity": "sha512-Aoz70+/o8R2lG2EGDAYbj6yu2B7kqa/9loYEwG0fECJTtXoRBP+bEGpUxMmxOb59tMDnbIhBHmNPPEQVTXvgSQ==", "dev": true, "dependencies": { - "@babel/core": "7.23.2", + "@babel/core": "7.24.4", "@jridgewell/sourcemap-codec": "^1.4.14", "chokidar": "^3.0.0", "convert-source-map": "^1.5.1", - "reflect-metadata": "^0.1.2", + "reflect-metadata": "^0.2.0", "semver": "^7.0.0", "tslib": "^2.3.0", "yargs": "^17.2.1" @@ -527,14 +614,60 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/compiler": "17.0.4", - "typescript": ">=5.2 <5.3" + "@angular/compiler": "18.0.1", + "typescript": ">=5.4 <5.5" + } + }, + "node_modules/@angular/compiler-cli/node_modules/@babel/core": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", + "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.4", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.24.4", + "@babel/parser": "^7.24.4", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" } }, "node_modules/@angular/core": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-17.0.4.tgz", - "integrity": "sha512-zk+z5sYPZd87pLxECx27quB5FvSmoi9PjJlcSlaBwwqaGnh/tPJI14u3q1dRY/CoZgP9egEiwc428+DzvOzJew==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.0.1.tgz", + "integrity": "sha512-Db1livvugoLdLsWww5IqUS5v+yUN7/5Rj0trZv9BgxIuoNtoipfLqKHwZWpumH3yI5Ucu+UH9zZ1mlGyF0Kexw==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -564,9 +697,10 @@ } }, "node_modules/@angular/forms": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-17.0.4.tgz", - "integrity": "sha512-R5J87dfJNWwi5SESD7tRkZnqG4u8KNAT4vImX4oG70/6vWioKUSWpLoSp1gpzy9UW51E85AKb8DNvIex7LclSg==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.0.1.tgz", + "integrity": "sha512-j1nUzwnZHO/BRXK0joQbAV10JWxeRVKmPzIaDulY2o28Er1jVKyw2T8EwI+xSvBbAqyJyaAd+ysWUhm3FfH+GA==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -574,70 +708,70 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "17.0.4", - "@angular/core": "17.0.4", - "@angular/platform-browser": "17.0.4", + "@angular/common": "18.0.1", + "@angular/core": "18.0.1", + "@angular/platform-browser": "18.0.1", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/material": { - "version": "17.0.1", - "resolved": "https://registry.npmjs.org/@angular/material/-/material-17.0.1.tgz", - "integrity": "sha512-avicxHCJAeg26Tg8z6+g54tMTQZPP5kaaRmkd97QGtJn3wKiAen6WOgmEhlrA4jPJ71CsdyxcUruEX+BHB6X4Q==", + "version": "17.3.10", + "resolved": "https://registry.npmjs.org/@angular/material/-/material-17.3.10.tgz", + "integrity": "sha512-hHMQES0tQPH5JW33W+mpBPuM8ybsloDTqFPuRV8cboDjosAWfJhzAKF3ozICpNlUrs62La/2Wu/756GcQrxebg==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/auto-init": "15.0.0-canary.a246a4439.0", - "@material/banner": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/button": "15.0.0-canary.a246a4439.0", - "@material/card": "15.0.0-canary.a246a4439.0", - "@material/checkbox": "15.0.0-canary.a246a4439.0", - "@material/chips": "15.0.0-canary.a246a4439.0", - "@material/circular-progress": "15.0.0-canary.a246a4439.0", - "@material/data-table": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dialog": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/drawer": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/fab": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/floating-label": "15.0.0-canary.a246a4439.0", - "@material/form-field": "15.0.0-canary.a246a4439.0", - "@material/icon-button": "15.0.0-canary.a246a4439.0", - "@material/image-list": "15.0.0-canary.a246a4439.0", - "@material/layout-grid": "15.0.0-canary.a246a4439.0", - "@material/line-ripple": "15.0.0-canary.a246a4439.0", - "@material/linear-progress": "15.0.0-canary.a246a4439.0", - "@material/list": "15.0.0-canary.a246a4439.0", - "@material/menu": "15.0.0-canary.a246a4439.0", - "@material/menu-surface": "15.0.0-canary.a246a4439.0", - "@material/notched-outline": "15.0.0-canary.a246a4439.0", - "@material/radio": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/segmented-button": "15.0.0-canary.a246a4439.0", - "@material/select": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/slider": "15.0.0-canary.a246a4439.0", - "@material/snackbar": "15.0.0-canary.a246a4439.0", - "@material/switch": "15.0.0-canary.a246a4439.0", - "@material/tab": "15.0.0-canary.a246a4439.0", - "@material/tab-bar": "15.0.0-canary.a246a4439.0", - "@material/tab-indicator": "15.0.0-canary.a246a4439.0", - "@material/tab-scroller": "15.0.0-canary.a246a4439.0", - "@material/textfield": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tooltip": "15.0.0-canary.a246a4439.0", - "@material/top-app-bar": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/auto-init": "15.0.0-canary.7f224ddd4.0", + "@material/banner": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/button": "15.0.0-canary.7f224ddd4.0", + "@material/card": "15.0.0-canary.7f224ddd4.0", + "@material/checkbox": "15.0.0-canary.7f224ddd4.0", + "@material/chips": "15.0.0-canary.7f224ddd4.0", + "@material/circular-progress": "15.0.0-canary.7f224ddd4.0", + "@material/data-table": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dialog": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/drawer": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/fab": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/floating-label": "15.0.0-canary.7f224ddd4.0", + "@material/form-field": "15.0.0-canary.7f224ddd4.0", + "@material/icon-button": "15.0.0-canary.7f224ddd4.0", + "@material/image-list": "15.0.0-canary.7f224ddd4.0", + "@material/layout-grid": "15.0.0-canary.7f224ddd4.0", + "@material/line-ripple": "15.0.0-canary.7f224ddd4.0", + "@material/linear-progress": "15.0.0-canary.7f224ddd4.0", + "@material/list": "15.0.0-canary.7f224ddd4.0", + "@material/menu": "15.0.0-canary.7f224ddd4.0", + "@material/menu-surface": "15.0.0-canary.7f224ddd4.0", + "@material/notched-outline": "15.0.0-canary.7f224ddd4.0", + "@material/radio": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/segmented-button": "15.0.0-canary.7f224ddd4.0", + "@material/select": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/slider": "15.0.0-canary.7f224ddd4.0", + "@material/snackbar": "15.0.0-canary.7f224ddd4.0", + "@material/switch": "15.0.0-canary.7f224ddd4.0", + "@material/tab": "15.0.0-canary.7f224ddd4.0", + "@material/tab-bar": "15.0.0-canary.7f224ddd4.0", + "@material/tab-indicator": "15.0.0-canary.7f224ddd4.0", + "@material/tab-scroller": "15.0.0-canary.7f224ddd4.0", + "@material/textfield": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tooltip": "15.0.0-canary.7f224ddd4.0", + "@material/top-app-bar": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.3.0" }, "peerDependencies": { "@angular/animations": "^17.0.0 || ^18.0.0", - "@angular/cdk": "17.0.1", + "@angular/cdk": "17.3.10", "@angular/common": "^17.0.0 || ^18.0.0", "@angular/core": "^17.0.0 || ^18.0.0", "@angular/forms": "^17.0.0 || ^18.0.0", @@ -646,9 +780,10 @@ } }, "node_modules/@angular/platform-browser": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.0.4.tgz", - "integrity": "sha512-lApUzVPfCEz/4aot77qzWUNg7yQgT0JSzy3BrBm95+2TbgH894J9Fswhig0sEN9jxGSkc3A5Yp5fs1HJcPqUiw==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.0.1.tgz", + "integrity": "sha512-rQUsOxZxiwSPvyHdne60IKIGsvFoVc1rO4mDyXU+9sCCLmPKHzNyEzp7vybTZeiqa3k6v3sV/bfHWwrRzmvenw==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -656,9 +791,9 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/animations": "17.0.4", - "@angular/common": "17.0.4", - "@angular/core": "17.0.4" + "@angular/animations": "18.0.1", + "@angular/common": "18.0.1", + "@angular/core": "18.0.1" }, "peerDependenciesMeta": { "@angular/animations": { @@ -667,9 +802,10 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-17.0.4.tgz", - "integrity": "sha512-mZZNH+iFzFug0z7rBQKdFz375sR6Y4iBbHu2aJD2BpgA2/SJaZ0WHGlF4bHbtpCYkZi3f4wKF2+Cwe4G5ebPOQ==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.0.1.tgz", + "integrity": "sha512-lzjq7HjigGxO5oh5Sw0Vxa3mAVidYHpHFQr46/OSl9T5jLpStcjEqK0xcfQz9bf2hV+0qFfMqmd2k0XQl7feqg==", + "dev": true, "dependencies": { "tslib": "^2.3.0" }, @@ -677,16 +813,16 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "17.0.4", - "@angular/compiler": "17.0.4", - "@angular/core": "17.0.4", - "@angular/platform-browser": "17.0.4" + "@angular/common": "18.0.1", + "@angular/compiler": "18.0.1", + "@angular/core": "18.0.1", + "@angular/platform-browser": "18.0.1" } }, "node_modules/@angular/router": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-17.0.4.tgz", - "integrity": "sha512-hQ+T+h6YE9NqyOmjqAIHe/k8xtW+yh0Mp8FCcl8REBezNyLXmOdsScCIOOc7GeFtbjRnQyJrBo4QxZ81acHP7Q==", + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.0.1.tgz", + "integrity": "sha512-PapdvfATjRZI0cJ/RH8n/ixHDHa4HIBaOMwhgU73InU9t6NIhBXg6aRECYV2qGt7NtpLYSHmG5Z1Ws86rm5Tyw==", "dev": true, "dependencies": { "tslib": "^2.3.0" @@ -695,56 +831,50 @@ "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "17.0.4", - "@angular/core": "17.0.4", - "@angular/platform-browser": "17.0.4", + "@angular/common": "18.0.1", + "@angular/core": "18.0.1", + "@angular/platform-browser": "18.0.1", "rxjs": "^6.5.3 || ^7.4.0" } }, - "node_modules/@assemblyscript/loader": { - "version": "0.10.1", - "resolved": "https://registry.npmjs.org/@assemblyscript/loader/-/loader-0.10.1.tgz", - "integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==", - "dev": true - }, "node_modules/@babel/code-frame": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", - "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.6.tgz", + "integrity": "sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.6", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", - "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.6.tgz", + "integrity": "sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz", - "integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", + "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -775,14 +905,14 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", - "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", + "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.5", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -802,26 +932,26 @@ } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.6.tgz", + "integrity": "sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.6.tgz", + "integrity": "sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.24.6", + "@babel/helper-validator-option": "^7.24.6", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -839,19 +969,19 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", - "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.6.tgz", + "integrity": "sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.24.6", + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-function-name": "^7.24.6", + "@babel/helper-member-expression-to-functions": "^7.24.6", + "@babel/helper-optimise-call-expression": "^7.24.6", + "@babel/helper-replace-supers": "^7.24.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.6", + "@babel/helper-split-export-declaration": "^7.24.6", "semver": "^6.3.1" }, "engines": { @@ -861,6 +991,30 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz", + "integrity": "sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz", + "integrity": "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -871,12 +1025,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.6.tgz", + "integrity": "sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.6", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -887,6 +1041,18 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz", + "integrity": "sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -897,9 +1063,9 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", - "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", + "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", "dev": true, "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", @@ -913,74 +1079,74 @@ } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.6.tgz", + "integrity": "sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.6.tgz", + "integrity": "sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/template": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.6.tgz", + "integrity": "sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.6.tgz", + "integrity": "sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==", "dev": true, "dependencies": { - "@babel/types": "^7.23.0" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.6.tgz", + "integrity": "sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==", "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.6.tgz", + "integrity": "sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-module-imports": "^7.24.6", + "@babel/helper-simple-access": "^7.24.6", + "@babel/helper-split-export-declaration": "^7.24.6", + "@babel/helper-validator-identifier": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -989,36 +1155,48 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz", + "integrity": "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.6.tgz", + "integrity": "sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.6.tgz", + "integrity": "sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.6.tgz", + "integrity": "sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.6", + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-wrap-function": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1027,15 +1205,27 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz", + "integrity": "sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.6.tgz", + "integrity": "sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-member-expression-to-functions": "^7.24.6", + "@babel/helper-optimise-call-expression": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1045,114 +1235,114 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.6.tgz", + "integrity": "sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.6.tgz", + "integrity": "sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", + "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.6.tgz", + "integrity": "sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.6.tgz", + "integrity": "sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.6.tgz", + "integrity": "sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.6.tgz", + "integrity": "sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/helper-function-name": "^7.24.6", + "@babel/template": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.4.tgz", - "integrity": "sha512-HfcMizYz10cr3h29VqyfGL6ZWIjTwWfvYBMsBVGwpcbhNGe3wQ1ZXZRPzZoAHhd9OqHadHqjQ89iVKINXnbzuw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.6.tgz", + "integrity": "sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.4", - "@babel/types": "^7.23.4" + "@babel/template": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.6.tgz", + "integrity": "sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.6", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.4.tgz", - "integrity": "sha512-vf3Xna6UEprW+7t6EtOmFpHNAuxw3xqPZghy+brsnusscJRW5BMUzzHZc5ICjULee81WeUV2jjakG09MDglJXQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.6.tgz", + "integrity": "sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -1161,13 +1351,29 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", - "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.6.tgz", + "integrity": "sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.6.tgz", + "integrity": "sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1177,14 +1383,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", - "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.6.tgz", + "integrity": "sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.6", + "@babel/plugin-transform-optional-chaining": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1193,6 +1399,22 @@ "@babel/core": "^7.13.0" } }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.6.tgz", + "integrity": "sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", @@ -1269,12 +1491,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", - "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.6.tgz", + "integrity": "sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1284,12 +1506,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", - "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.6.tgz", + "integrity": "sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1441,12 +1663,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", - "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.6.tgz", + "integrity": "sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1456,13 +1678,13 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz", - "integrity": "sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0", "@babel/helper-remap-async-to-generator": "^7.22.20", "@babel/plugin-syntax-async-generators": "^7.8.4" }, @@ -1474,14 +1696,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz", - "integrity": "sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1491,12 +1713,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", - "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.6.tgz", + "integrity": "sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1506,12 +1728,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", - "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.6.tgz", + "integrity": "sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1521,13 +1743,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", - "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.6.tgz", + "integrity": "sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1537,13 +1759,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", - "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.6.tgz", + "integrity": "sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -1554,19 +1776,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", - "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.6.tgz", + "integrity": "sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.24.6", + "@babel/helper-compilation-targets": "^7.24.6", + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-function-name": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-replace-supers": "^7.24.6", + "@babel/helper-split-export-declaration": "^7.24.6", "globals": "^11.1.0" }, "engines": { @@ -1576,14 +1797,38 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", - "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz", + "integrity": "sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz", + "integrity": "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.6.tgz", + "integrity": "sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/template": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1593,12 +1838,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", - "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.6.tgz", + "integrity": "sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1608,13 +1853,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", - "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.6.tgz", + "integrity": "sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1624,12 +1869,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", - "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.6.tgz", + "integrity": "sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1639,12 +1884,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", - "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.6.tgz", + "integrity": "sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1655,13 +1900,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", - "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.6.tgz", + "integrity": "sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1671,12 +1916,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", - "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.6.tgz", + "integrity": "sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1687,12 +1932,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", - "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.6.tgz", + "integrity": "sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1702,14 +1948,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", - "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.6.tgz", + "integrity": "sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-compilation-targets": "^7.24.6", + "@babel/helper-function-name": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1719,12 +1965,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", - "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.6.tgz", + "integrity": "sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1735,12 +1981,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", - "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.6.tgz", + "integrity": "sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1750,12 +1996,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", - "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.6.tgz", + "integrity": "sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1766,12 +2012,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", - "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.6.tgz", + "integrity": "sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1781,13 +2027,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", - "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.6.tgz", + "integrity": "sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1797,14 +2043,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", - "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.6.tgz", + "integrity": "sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-simple-access": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1814,15 +2060,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", - "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.6.tgz", + "integrity": "sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-hoist-variables": "^7.24.6", + "@babel/helper-module-transforms": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-validator-identifier": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1832,13 +2078,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", - "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.6.tgz", + "integrity": "sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1848,13 +2094,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.6.tgz", + "integrity": "sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1864,12 +2110,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", - "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.6.tgz", + "integrity": "sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1879,12 +2125,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", - "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.6.tgz", + "integrity": "sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1895,12 +2141,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", - "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.6.tgz", + "integrity": "sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1911,16 +2157,15 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", - "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.6.tgz", + "integrity": "sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-compilation-targets": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.23.3" + "@babel/plugin-transform-parameters": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1930,13 +2175,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", - "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.6.tgz", + "integrity": "sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-replace-supers": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1946,12 +2191,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", - "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.6.tgz", + "integrity": "sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1962,13 +2207,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", - "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.6.tgz", + "integrity": "sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.6", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1979,12 +2224,12 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", - "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.6.tgz", + "integrity": "sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -1994,13 +2239,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", - "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.6.tgz", + "integrity": "sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2010,14 +2255,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", - "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.6.tgz", + "integrity": "sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.6", + "@babel/helper-create-class-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -2027,13 +2272,25 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", - "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.6.tgz", + "integrity": "sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.6.tgz", + "integrity": "sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2043,12 +2300,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", - "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.6.tgz", + "integrity": "sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.6", "regenerator-transform": "^0.15.2" }, "engines": { @@ -2059,12 +2316,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", - "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.6.tgz", + "integrity": "sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2074,16 +2331,16 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz", - "integrity": "sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz", + "integrity": "sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "@babel/helper-module-imports": "^7.24.3", + "@babel/helper-plugin-utils": "^7.24.0", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.1", + "babel-plugin-polyfill-regenerator": "^0.6.1", "semver": "^6.3.1" }, "engines": { @@ -2103,12 +2360,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", - "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.6.tgz", + "integrity": "sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2118,13 +2375,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", - "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.6.tgz", + "integrity": "sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2134,12 +2391,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", - "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.6.tgz", + "integrity": "sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2149,12 +2406,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", - "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.6.tgz", + "integrity": "sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2164,12 +2421,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", - "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.6.tgz", + "integrity": "sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2179,12 +2436,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", - "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.6.tgz", + "integrity": "sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2194,13 +2451,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", - "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.6.tgz", + "integrity": "sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2210,13 +2467,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", - "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.6.tgz", + "integrity": "sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2226,13 +2483,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", - "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.6.tgz", + "integrity": "sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.6", + "@babel/helper-plugin-utils": "^7.24.6" }, "engines": { "node": ">=6.9.0" @@ -2242,25 +2499,27 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.2.tgz", - "integrity": "sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", + "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.2", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.15", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.15", + "@babel/compat-data": "^7.24.4", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.5", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -2272,59 +2531,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.23.2", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.23.0", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.11", - "@babel/plugin-transform-classes": "^7.22.15", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.23.0", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.11", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.11", - "@babel/plugin-transform-for-of": "^7.22.15", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.11", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.11", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.23.0", - "@babel/plugin-transform-modules-commonjs": "^7.23.0", - "@babel/plugin-transform-modules-systemjs": "^7.23.0", - "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.5", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.4", + "@babel/plugin-transform-classes": "^7.24.5", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.5", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", - "@babel/plugin-transform-numeric-separator": "^7.22.11", - "@babel/plugin-transform-object-rest-spread": "^7.22.15", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.11", - "@babel/plugin-transform-optional-chaining": "^7.23.0", - "@babel/plugin-transform-parameters": "^7.22.15", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.11", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.10", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.10", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.5", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.5", + "@babel/plugin-transform-parameters": "^7.24.5", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.5", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.5", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", "@babel/preset-modules": "0.1.6-no-external-plugins", - "@babel/types": "^7.23.0", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -2365,9 +2623,9 @@ "dev": true }, "node_modules/@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "version": "7.24.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", + "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", "dev": true, "dependencies": { "regenerator-runtime": "^0.14.0" @@ -2377,34 +2635,34 @@ } }, "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.6.tgz", + "integrity": "sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/code-frame": "^7.24.6", + "@babel/parser": "^7.24.6", + "@babel/types": "^7.24.6" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.4.tgz", - "integrity": "sha512-IYM8wSUwunWTB6tFC2dkKZhxbIjHoWemdK+3f8/wq8aKhbUscxD5MX72ubd90fxvFknaLPeGw5ycU84V1obHJg==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.6.tgz", + "integrity": "sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.23.4", - "@babel/generator": "^7.23.4", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.4", - "@babel/types": "^7.23.4", - "debug": "^4.1.0", + "@babel/code-frame": "^7.24.6", + "@babel/generator": "^7.24.6", + "@babel/helper-environment-visitor": "^7.24.6", + "@babel/helper-function-name": "^7.24.6", + "@babel/helper-hoist-variables": "^7.24.6", + "@babel/helper-split-export-declaration": "^7.24.6", + "@babel/parser": "^7.24.6", + "@babel/types": "^7.24.6", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -2412,28 +2670,40 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.4.tgz", - "integrity": "sha512-esuS49Cga3HcThFNebGhlgsrVLkvhqvYDTzgjfFFlHJcIfLe5jFmRRfCQ1KuBfc4Jrtn3ndLgKWAKjBE+IraYQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.6.tgz", + "integrity": "sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==", "dev": true, "dependencies": { - "@babel/types": "^7.23.4", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.6", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/types": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.4.tgz", - "integrity": "sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==", + "node_modules/@babel/traverse/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.6.tgz", + "integrity": "sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/types": "^7.24.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.6.tgz", + "integrity": "sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.24.6", + "@babel/helper-validator-identifier": "^7.24.6", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2480,10 +2750,26 @@ "node": ">=10.0.0" } }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz", + "integrity": "sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/@esbuild/android-arm": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.5.tgz", - "integrity": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.3.tgz", + "integrity": "sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==", "cpu": [ "arm" ], @@ -2497,9 +2783,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz", - "integrity": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz", + "integrity": "sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==", "cpu": [ "arm64" ], @@ -2513,9 +2799,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.5.tgz", - "integrity": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.3.tgz", + "integrity": "sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==", "cpu": [ "x64" ], @@ -2529,9 +2815,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.5.tgz", - "integrity": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", + "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", "cpu": [ "arm64" ], @@ -2545,9 +2831,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.5.tgz", - "integrity": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz", + "integrity": "sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==", "cpu": [ "x64" ], @@ -2561,9 +2847,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.5.tgz", - "integrity": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz", + "integrity": "sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==", "cpu": [ "arm64" ], @@ -2577,9 +2863,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.5.tgz", - "integrity": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz", + "integrity": "sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==", "cpu": [ "x64" ], @@ -2593,9 +2879,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.5.tgz", - "integrity": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz", + "integrity": "sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==", "cpu": [ "arm" ], @@ -2609,9 +2895,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.5.tgz", - "integrity": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz", + "integrity": "sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==", "cpu": [ "arm64" ], @@ -2625,9 +2911,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.5.tgz", - "integrity": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz", + "integrity": "sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==", "cpu": [ "ia32" ], @@ -2641,9 +2927,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.5.tgz", - "integrity": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz", + "integrity": "sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==", "cpu": [ "loong64" ], @@ -2657,9 +2943,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.5.tgz", - "integrity": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz", + "integrity": "sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==", "cpu": [ "mips64el" ], @@ -2673,9 +2959,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.5.tgz", - "integrity": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz", + "integrity": "sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==", "cpu": [ "ppc64" ], @@ -2689,9 +2975,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.5.tgz", - "integrity": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz", + "integrity": "sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==", "cpu": [ "riscv64" ], @@ -2705,9 +2991,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.5.tgz", - "integrity": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz", + "integrity": "sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==", "cpu": [ "s390x" ], @@ -2721,9 +3007,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz", - "integrity": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz", + "integrity": "sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==", "cpu": [ "x64" ], @@ -2737,9 +3023,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.5.tgz", - "integrity": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz", + "integrity": "sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==", "cpu": [ "x64" ], @@ -2753,9 +3039,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.5.tgz", - "integrity": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz", + "integrity": "sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==", "cpu": [ "x64" ], @@ -2769,9 +3055,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.5.tgz", - "integrity": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz", + "integrity": "sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==", "cpu": [ "x64" ], @@ -2785,9 +3071,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.5.tgz", - "integrity": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz", + "integrity": "sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==", "cpu": [ "arm64" ], @@ -2801,9 +3087,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.5.tgz", - "integrity": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz", + "integrity": "sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==", "cpu": [ "ia32" ], @@ -2817,9 +3103,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.5.tgz", - "integrity": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz", + "integrity": "sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==", "cpu": [ "x64" ], @@ -2848,24 +3134,60 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz", + "integrity": "sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, + "node_modules/@eslint/config-array": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.15.1.tgz", + "integrity": "sha512-K4gzNq+yymn/EVsXYmf+SBcBro8MTf+aXJZUphM96CdzUEr+ClGDvAbpmaEK+cGVigVXIgs9gNmvHAlrzzY5JQ==", + "dev": true, + "dependencies": { + "@eslint/object-schema": "^2.1.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/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/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", + "espree": "^10.0.1", + "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -2873,7 +3195,7 @@ "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" @@ -2901,16 +3223,23 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "type-fest": "^0.20.2" - }, + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -2934,45 +3263,43 @@ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/@eslint/eslintrc/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, - "engines": { - "node": ">=10" + "dependencies": { + "brace-expansion": "^1.1.7" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "*" } }, "node_modules/@eslint/js": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.54.0.tgz", - "integrity": "sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==", + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.4.0.tgz", + "integrity": "sha512-fdI7VJjP3Rvc70lC4xkFXHB0fiPeojiL1PxVG6t1ZvXQrarj893PweuBTujxDUFk0Fxj4R7PIIAZ/aiiyZPZcg==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@fastify/busboy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz", - "integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==", + "node_modules/@eslint/object-schema": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.3.tgz", + "integrity": "sha512-HAbhAYKfsAC2EkTqve00ibWIZlaU74Z1EHwAjYr4PXF0YU2VEA1zSIKSSpKszRLRWwHzzRZXvK632u+uXzvsvw==", "dev": true, "engines": { - "node": ">=14" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@foliojs-fork/fontkit": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.1.tgz", - "integrity": "sha512-U589voc2/ROnvx1CyH9aNzOQWJp127JGU1QAylXGQ7LoEAF6hMmahZLQ4eqAcgHUw+uyW4PjtCItq9qudPkK3A==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.2.tgz", + "integrity": "sha512-IfB5EiIb+GZk+77TRB86AHroVaqfq8JRFlUbz0WEwsInyCG0epX2tCPOy+UfaWPju30DeVoUAXfzWXmhn753KA==", "dependencies": { "@foliojs-fork/restructure": "^2.0.2", - "brfs": "^2.0.0", "brotli": "^1.2.0", - "browserify-optional": "^1.0.1", "clone": "^1.0.4", "deep-equal": "^1.0.0", "dfa": "^1.2.0", @@ -2982,12 +3309,11 @@ } }, "node_modules/@foliojs-fork/linebreak": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@foliojs-fork/linebreak/-/linebreak-1.1.1.tgz", - "integrity": "sha512-pgY/+53GqGQI+mvDiyprvPWgkTlVBS8cxqee03ejm6gKAQNsR1tCYCIvN9FHy7otZajzMqCgPOgC4cHdt4JPig==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@foliojs-fork/linebreak/-/linebreak-1.1.2.tgz", + "integrity": "sha512-ZPohpxxbuKNE0l/5iBJnOAfUaMACwvUIKCvqtWGKIMv1lPYoNjYXRfhi9FeeV9McBkBLxsMFWTVVhHJA8cyzvg==", "dependencies": { "base64-js": "1.3.1", - "brfs": "^2.0.2", "unicode-trie": "^2.0.0" } }, @@ -3013,22 +3339,22 @@ "integrity": "sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==" }, "node_modules/@fortawesome/angular-fontawesome": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@fortawesome/angular-fontawesome/-/angular-fontawesome-0.14.0.tgz", - "integrity": "sha512-nB7an9t66nY0m/1MIBOIvi+vKyZaTskhtGtQwGTiMyte3Bmy9080pFpXguyox68/vxGVmLxZkRxYIgjMCvm7QQ==", + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@fortawesome/angular-fontawesome/-/angular-fontawesome-0.15.0.tgz", + "integrity": "sha512-oxmJDYGNSym5ycFR0LX4ZOPAU+wWmMAznYpkm5DNAtWWkhMLcrZl15eZQmVIEE+qruQ7JiVrg3tpo8bEkFlDgw==", "dev": true, "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.5.2", "tslib": "^2.6.2" }, "peerDependencies": { - "@angular/core": "^17.0.0", - "@fortawesome/fontawesome-svg-core": "~1.2.27 || ~1.3.0-beta2 || ^6.1.0" + "@angular/core": "^18.0.0" } }, "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.2.tgz", - "integrity": "sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA==", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.2.tgz", + "integrity": "sha512-gBxPg3aVO6J0kpfHNILc+NMhXnqHumFxOmjYCFfOiLZfwhnnfhtsdA2hfJlDnj+8PjAs6kKQPenOTKj3Rf7zHw==", "dev": true, "hasInstallScript": true, "engines": { @@ -3036,58 +3362,44 @@ } }, "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.2.tgz", - "integrity": "sha512-gjYDSKv3TrM2sLTOKBc5rH9ckje8Wrwgx1CxAPbN5N3Fm4prfi7NsJVWd1jklp7i5uSCVwhZS5qlhMXqLrpAIg==", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.2.tgz", + "integrity": "sha512-5CdaCBGl8Rh9ohNdxeeTMxIj8oc3KNBgIeLMvJosBMdslK/UnEB8rzyDRrbKdL1kDweqBPo4GT9wvnakHWucZw==", "dev": true, "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.4.2" + "@fortawesome/fontawesome-common-types": "6.5.2" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-regular-svg-icons": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.4.2.tgz", - "integrity": "sha512-0+sIUWnkgTVVXVAPQmW4vxb9ZTHv0WstOa3rBx9iPxrrrDH6bNLsDYuwXF9b6fGm+iR7DKQvQshUH/FJm3ed9Q==", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.5.2.tgz", + "integrity": "sha512-iabw/f5f8Uy2nTRtJ13XZTS1O5+t+anvlamJ3zJGLEVE2pKsAWhPv2lq01uQlfgCX7VaveT3EVs515cCN9jRbw==", "dev": true, "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.4.2" + "@fortawesome/fontawesome-common-types": "6.5.2" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.4.2.tgz", - "integrity": "sha512-sYwXurXUEQS32fZz9hVCUUv/xu49PEJEyUOsA51l6PU/qVgfbTb2glsTEaJngVVT8VqBATRIdh7XVgV1JF1LkA==", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.2.tgz", + "integrity": "sha512-QWFZYXFE7O1Gr1dTIp+D6UcFUF0qElOnZptpi7PBUMylJh+vFmIedVe1Ir6RM1t2tEQLLSV1k7bR4o92M+uqlw==", "dev": true, "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-common-types": "6.4.2" + "@fortawesome/fontawesome-common-types": "6.5.2" }, "engines": { "node": ">=6" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", @@ -3101,11 +3413,27 @@ "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", - "dev": true + "node_modules/@humanwhocodes/retry": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", + "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.3.tgz", + "integrity": "sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==", + "dev": true, + "engines": { + "node": ">=18" + } }, "node_modules/@isaacs/cliui": { "version": "8.0.2", @@ -3241,45 +3569,45 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", - "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dev": true, "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { @@ -3289,846 +3617,1056 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.0.4.tgz", + "integrity": "sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==", + "dev": true, + "dependencies": { + "@jsonjoy.com/base64": "^1.1.1", + "@jsonjoy.com/util": "^1.1.2", + "hyperdyperid": "^1.2.0", + "thingies": "^1.20.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/util": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.1.3.tgz", + "integrity": "sha512-g//kkF4kOwUjemValCtOc/xiYzmwMRmWq3Bn+YnzOzuZLHq2PpMOxxIayN3cKbo7Ko2Np65t6D9H81IvXbXhqg==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "dev": true }, "node_modules/@ljharb/through": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.11.tgz", - "integrity": "sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==", + "version": "2.3.13", + "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.13.tgz", + "integrity": "sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" }, "engines": { "node": ">= 0.4" } }, + "node_modules/@lmdb/lmdb-darwin-arm64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.8.tgz", + "integrity": "sha512-+lFwFvU+zQ9zVIFETNtmW++syh3Ps5JS8MPQ8zOYtQZoU+dTR8ivWHTaE2QVk1JG2payGDLUAvpndLAjGMdeeA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-darwin-x64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.8.tgz", + "integrity": "sha512-T98rfsgfdQMS5/mqdsPb6oHSJ+iBYNa+PQDLtXLh6rzTEBsYP9x2uXxIj6VS4qXVDWXVi8rv85NCOG+UBOsHXQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.8.tgz", + "integrity": "sha512-gVNCi3bYWatdPMeFpFjuZl6bzVL55FkeZU3sPeU+NsMRXC+Zl3qOx3M6cM4OMlJWbhHjYjf2b8q83K0mczaiWQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-arm64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.8.tgz", + "integrity": "sha512-uEBGCQIChsixpykL0pjCxfF64btv64vzsb1NoM5u0qvabKvKEvErhXGoqovyldDu9u1T/fswD8Kf6ih0vJEvDQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-linux-x64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.8.tgz", + "integrity": "sha512-6v0B4sa9ulNezmDZtVpLjNHmA0qZzUl3001YJ2RF0naxsuv/Jq/xEwNYpOzfcdizHfpCE0oBkWzk/r+Slr+0zw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@lmdb/lmdb-win32-x64": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.8.tgz", + "integrity": "sha512-lDLGRIMqdwYD39vinwNqqZUxCdL2m2iIdn+0HyQgIHEiT0g5rIAlzaMKzoGWon5NQumfxXFk9y0DarttkR7C1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@material/animation": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-0eV06UGYeuFwC/4t+yjg3LCRGRLq72ybBtJYzcBDpP4ASTjie0WmpAOFJYXRq2U5X/yxLviDMhpRemoSUjgZ0Q==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-1GSJaPKef+7HRuV+HusVZHps64cmZuOItDbt40tjJVaikcaZvwmHlcTxRIqzcRoCdt5ZKHh3NoO7GB9Khg4Jnw==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@material/auto-init": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/auto-init/-/auto-init-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-0QfmjT5elQ10hCxToVgq/WaC3301tVH1sJaO3O2yocVzr7s6iWm8/zch16V5hcHzQHbtcT3Rf4y1ZzmdNys2Iw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/auto-init/-/auto-init-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-t7ZGpRJ3ec0QDUO0nJu/SMgLW7qcuG2KqIsEYD1Ej8qhI2xpdR2ydSDQOkVEitXmKoGol1oq4nYSBjTlB65GqA==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/banner": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-PBLgH7JEbEpTkLy33oyWXUhIFmSsdOrR6Gn6qIgQRo1qrnk5RSBGW2gEq4Z6793vjxM107gKudDb23E4Fcu4vg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-g9wBUZzYBizyBcBQXTIafnRUUPi7efU9gPJfzeGgkynXiccP/vh5XMmH+PBxl5v+4MlP/d4cZ2NUYoAN7UTqSA==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/button": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/button": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/base": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-/ob3v3IFU8q2gGdVNWw5kNPjW2mRTeBIz1YdhGWUmRxKn2Kl8bdLOvrAmZtQMmPn/4cGXvinxpec/zVBWQKDkA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-I9KQOKXpLfJkP8MqZyr8wZIzdPHrwPjFvGd9zSK91/vPyE4hzHRJc/0njsh9g8Lm9PRYLbifXX+719uTbHxx+A==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@material/button": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-rGpVRde0Aqhv2t9QvT8Zl3HvG89BeUNPOpgfpaLBZ4SGGAO4rIrckl/eCENibKgmmdCKcYZlG9gc5abQVPfUvw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-BHB7iyHgRVH+JF16+iscR+Qaic+p7LU1FOLgP8KucRlpF9tTwIxQA6mJwGRi5gUtcG+vyCmzVS+hIQ6DqT/7BA==", "dev": true, "dependencies": { - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/card": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-+rYUnBPgv5QVF6BeUs3toIRdSwFVohGmjk2ptTXMZkKxqAJt7Nr9Znbm3Ym2hD8GUHJeh3pyGFvEs6rG6JMYAw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-kt7y9/IWOtJTr3Z/AoWJT3ZLN7CLlzXhx2udCLP9ootZU2bfGK0lzNwmo80bv/pJfrY9ihQKCtuGTtNxUy+vIw==", "dev": true, "dependencies": { - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/checkbox": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-sQwHzm1TSxHUoPrqplWTk/BhyzdDhzcwlbucwJK9W0o9WXMDk+d9PvcCxpP/9sAnVqZk42BfE89Y0T1DHglZ9A==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-rURcrL5O1u6hzWR+dNgiQ/n89vk6tdmdP3mZgnxJx61q4I/k1yijKqNJSLrkXH7Rto3bM5NRKMOlgvMvVd7UMQ==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/chips": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-TiV9WJ5taEHPGWPhXbxJvUJhLzThg+VpK7aAlvL4RurtmJ7pURuEdRS4Z6o0OEqi3wKQ4z/+K44kZUn/+9HALg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-AYAivV3GSk/T/nRIpH27sOHFPaSMrE3L0WYbnb5Wa93FgY8a0fbsFYtSH2QmtwnzXveg+B1zGTt7/xIIcynKdQ==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/checkbox": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/checkbox": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "safevalues": "^0.3.4", "tslib": "^2.1.0" } }, "node_modules/@material/circular-progress": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-+QTfyExPWzgm2tqMInd32qQOftsC1b8MUhAhZSfuecYBfqAc7KZkQEKa2nm4y8EHKMFWe8/DcxLV6IxMBLgHwA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-DJrqCKb+LuGtjNvKl8XigvyK02y36GRkfhMUYTcJEi3PrOE00bwXtyj7ilhzEVshQiXg6AHGWXtf5UqwNrx3Ow==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/progress-indicator": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/progress-indicator": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/data-table": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-89qVOjR7gqby6fsmh7tKj29SjQ2sGLXu2IzCeX3Vni4mz+xxo5dv11jxYNADvdgJDfhyDJFPh1FlqAH7O09nFA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-/2WZsuBIq9z9RWYF5Jo6b7P6u0fwit+29/mN7rmAZ6akqUR54nXyNfoSNiyydMkzPlZZsep5KrSHododDhBZbA==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/checkbox": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/icon-button": "15.0.0-canary.a246a4439.0", - "@material/linear-progress": "15.0.0-canary.a246a4439.0", - "@material/list": "15.0.0-canary.a246a4439.0", - "@material/menu": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/select": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/checkbox": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/icon-button": "15.0.0-canary.7f224ddd4.0", + "@material/linear-progress": "15.0.0-canary.7f224ddd4.0", + "@material/list": "15.0.0-canary.7f224ddd4.0", + "@material/menu": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/select": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/density": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-h8BJVCWkPR97WeWCN6/atVbSOP8J4+ZbbssidcwsnX7b3+3IaWdtBxGii25dsILX8pUVwwqxVis24y211b+8rg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-o9EXmGKVpiQ6mHhyV3oDDzc78Ow3E7v8dlaOhgaDSXgmqaE8v5sIlLNa/LKSyUga83/fpGk3QViSGXotpQx0jA==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@material/dialog": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/dialog/-/dialog-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-4lyxd+5ccOEMUGKzZcssaYyzkCsYTpYCSQSANR0toQPLv3voDwKMfA709uZI6+nL7Re6Xdf7jx8qe+QpTTjVcw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/dialog/-/dialog-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-u0XpTlv1JqWC/bQ3DavJ1JguofTelLT2wloj59l3/1b60jv42JQ6Am7jU3I8/SIUB1MKaW7dYocXjDWtWJakLA==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/button": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/icon-button": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/button": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/icon-button": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/dom": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-AftSOGQoQg/Ys2kOVjZzvqWmsnhg3Kam/2UC4Gj0DMMCu36J4MAoD+3PpnOd1aG3wiJKtUXR2vPIwE8I/PM9yg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-mQ1HT186GPQSkRg5S18i70typ5ZytfjL09R0gJ2Qg5/G+MLCGi7TAjZZSH65tuD/QGOjel4rDdWOTmYbPYV6HA==", "dev": true, "dependencies": { - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/drawer": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/drawer/-/drawer-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-/JUmbzRBaikdbZ250yA9ZTPqp2W5nGvvuHYoNVAAmtOmxuwGvvNNpWiVZy2lIYeYcf1hA7hJ5mEQxs0aSD7iWQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/drawer/-/drawer-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-qyO0W0KBftfH8dlLR0gVAgv7ZHNvU8ae11Ao6zJif/YxcvK4+gph1z8AO4H410YmC2kZiwpSKyxM1iQCCzbb4g==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/list": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/list": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/elevation": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-lwPIOb8fHyOljIWYcVLPT73dPIEOKat/CXu6gqYIVMQgZQIksQNUA7z1O3l7apkRSuYUOYSXqrgU7AnWP4KcJg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-tV6s4/pUBECedaI36Yj18KmRCk1vfue/JP/5yYRlFNnLMRVISePbZaKkn/BHXVf+26I3W879+XqIGlDVdmOoMA==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/fab": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/fab/-/fab-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-XUex3FNqxPD1i/4jITucB/RWTNkkdv52mbNmwrvbuThZlhuhyH9GzOQYTDop/b2783TPcv++xr8UUbuh8GWYzA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/fab/-/fab-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-4h76QrzfZTcPdd+awDPZ4Q0YdSqsXQnS540TPtyXUJ/5G99V6VwGpjMPIxAsW0y+pmI9UkLL/srrMaJec+7r4Q==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/feature-targeting": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-/SU9X5y8CRp6RS9qnjnM/N5qfsJ8bYILpR841eZmN6DLqMupaM9Yy7Mx8+v/QvpBLLhk+jmu79nFzwkwW54d6Q==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-SAjtxYh6YlKZriU83diDEQ7jNSP2MnxKsER0TvFeyG1vX/DWsUyYDOIJTOEa9K1N+fgJEBkNK8hY55QhQaspew==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@material/floating-label": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-832qZ/qxKx0KUatoeVY3Q2NmboVgiWBG0/1VsbJyodHrgQWfnBOHgLE+M322o6uM3OhvO+kWm4iYbvwhmLZGsw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-0KMo5ijjYaEHPiZ2pCVIcbaTS2LycvH9zEhEMKwPPGssBCX7iz5ffYQFk7e5yrQand1r3jnQQgYfHAwtykArnQ==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/focus-ring": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-ar0BtACFS3K14k/enAg0ePeEA/f/RJY4Ji4L/00Dw/B3XVpNRbqLH49jkcbtcQjdTS0FEyk2sWSNMZl6wVi0/A==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-Jmg1nltq4J6S6A10EGMZnvufrvU3YTi+8R8ZD9lkSbun0Fm2TVdICQt/Auyi6An9zP66oQN6c31eqO6KfIPsDg==", "dev": true, "dependencies": { - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0" + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0" } }, "node_modules/@material/form-field": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-Q/+ErgtAUFUPPUmWA1m5IP5voiN8XjPRwyoAlFxSTa/4t+EA5B18Z8Bsn9b6I0AC8RHke06H7UWrKz8XUDIFpw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-fEPWgDQEPJ6WF7hNnIStxucHR9LE4DoDSMqCsGWS2Yu+NLZYLuCEecgR0UqQsl1EQdNRaFh8VH93KuxGd2hiPg==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/icon-button": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-Igyo94rkIlqC91BR1Tv+WLTz1ZWcZZjl1xU7Vsx8mbWA1PnaRDUTNVV5LFi4e0ORp6GSblFTImpHngEy4agMEg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-DcK7IL4ICY/DW+48YQZZs9g0U1kRaW0Wb0BxhvppDMYziHo/CTpFdle4gjyuTyRxPOdHQz5a97ru48Z9O4muTw==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/image-list": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-Rcj3q7Tp7Nwbe5ht6ptTc3zqK8TSDJHaPDBf+kzi0kkh6MAB4qoHPgn+HnA+zIZ79CScU56bN7zjA6XYaZvsLw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-voMjG2p80XbjL1B2lmF65zO5gEgJOVKClLdqh4wbYzYfwY/SR9c8eLvlYG7DLdFaFBl/7gGxD8TvvZ329HUFPw==", "dev": true, "dependencies": { - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/layout-grid": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/layout-grid/-/layout-grid-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-bkfxZuVzgtjEJgR3n8pvDQbe88ffULDJ5d2DF34IR8SOiRmQcj7UzqAt95XwIUcWlfisLCoIryP4U8XSpFb1EQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/layout-grid/-/layout-grid-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-veDABLxMn2RmvfnUO2RUmC1OFfWr4cU+MrxKPoDD2hl3l3eDYv5fxws6r5T1JoSyXoaN+oEZpheS0+M9Ure8Pg==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@material/line-ripple": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-20WmwRrejmtOdI37+959UqEVIjbMtAXlkDOkfCIA3OUhp+oZSjVkCqKxI16jxxVlnzJ353fy8xeSKzOHe4sExQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-f60hVJhIU6I3/17Tqqzch1emUKEcfVVgHVqADbU14JD+oEIz429ZX9ksZ3VChoU3+eejFl+jVdZMLE/LrAuwpg==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/linear-progress": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-IcCd4476pXHloTYadHDJ+2c2lntoVigeNnQEiD/ASQTKqKrJqkIdvvczFm9Ryu+V2+TKhp7vvQGFLUMaLPcmhw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-pRDEwPQielDiC9Sc5XhCXrGxP8wWOnAO8sQlMebfBYHYqy5hhiIzibezS8CSaW4MFQFyXmCmpmqWlbqGYRmiyg==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/progress-indicator": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/progress-indicator": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/list": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-4H5dKIjCUGIPmKjfcegV0SBybD5NNdHp26OU6sovvWIvxSGQtDJr6z9I7i+0vF/HIS5ScbHD2+9/txtL80iqCA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-Is0NV91sJlXF5pOebYAtWLF4wU2MJDbYqztML/zQNENkQxDOvEXu3nWNb3YScMIYJJXvARO0Liur5K4yPagS1Q==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/menu": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-2HOHQAIdWQtXjSvEIrW3lnbcIwFf5XaQhFzCEZ04FcSGApc4iLwsmRFVW3PzWx+mVrUrEfO/K42DVULIX9J1Pg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-D11QU1dXqLbh5X1zKlEhS3QWh0b5BPNXlafc5MXfkdJHhOiieb7LC9hMJhbrHtj24FadJ7evaFW/T2ugJbJNnQ==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/list": "15.0.0-canary.a246a4439.0", - "@material/menu-surface": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/list": "15.0.0-canary.7f224ddd4.0", + "@material/menu-surface": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/menu-surface": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-4h4wZ0Rs7qBg1Otldw8ljp+LCULNL42pqbqcTXhKAkJM7pHcSw4k7IfoThSRLU3+V8T3/+qiAXyeQix2OGHzwg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-7RZHvw0gbwppaAJ/Oh5SWmfAKJ62aw1IMB3+3MRwsb5PLoV666wInYa+zJfE4i7qBeOn904xqT2Nko5hY0ssrg==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/notched-outline": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-zmRZHJ+5cOWsBatRyK50wuht78olXySyKOJIIEmy8lxSMZefI1764u0mr8tS1KYF8vSAl5cUlwCC3/2Njz1FPg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-Yg2usuKB2DKlKIBISbie9BFsOVuffF71xjbxPbybvqemxqUBd+bD5/t6H1fLE+F8/NCu5JMigho4ewUU+0RCiw==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/floating-label": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/floating-label": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/progress-indicator": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-92HM5niUnqG5Y3M/xkscBD+2lkaWPDcIRPo0RHPYcyldL+EhWRv/sdQpfdiXw/h3uvKSowKxBMCHm8krAyf+sQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-UPbDjE5CqT+SqTs0mNFG6uFEw7wBlgYmh+noSkQ6ty/EURm8lF125dmi4dv4kW0+octonMXqkGtAoZwLIHKf/w==", "dev": true, "dependencies": { "tslib": "^2.1.0" } }, "node_modules/@material/radio": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/radio/-/radio-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-on8EVztWXc/ajcaowFZ31ClGADYxQrhj4ulMne0NxdHHWQ44ttf5aXOVqtv5mxeOzrRACOkQyTUXBG07yTWCEQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/radio/-/radio-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-wR1X0Sr0KmQLu6+YOFKAI84G3L6psqd7Kys5kfb8WKBM36zxO5HQXC5nJm/Y0rdn22ixzsIz2GBo0MNU4V4k1A==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/ripple": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-Vl615/PIBpBD+IOI9Xypz0SV3RsmYJYSNx890Rih7irhUOaPsOUBmTYOWF5AsGBynqLcXoTNVhK92drYLKtJwQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-JqOsWM1f4aGdotP0rh1vZlPZTg6lZgh39FIYHFMfOwfhR+LAikUJ+37ciqZuewgzXB6iiRO6a8aUH6HR5SJYPg==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/rtl": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-pgJFw8ZRpWGpwv7ZuBTJ+WdNmFBKoLVoMbbxKQWTHXVwhAqn3aoIq95o62T5QeEG/+sguNShdquG45CpAMmSRw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-UVf14qAtmPiaaZjuJtmN36HETyoKWmsZM/qn1L5ciR2URb8O035dFWnz4ZWFMmAYBno/L7JiZaCkPurv2ZNrGA==", "dev": true, "dependencies": { - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/segmented-button": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/segmented-button/-/segmented-button-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-oqGHs2C7C+yJW/xZf/wP8jBGLs6HcerhM3CsorLAEMH3MGuIlVC17WcisBewEWucsILYEWbySXy/7T4h6/psZA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/segmented-button/-/segmented-button-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-LCnVRUSAhELTKI/9hSvyvIvQIpPpqF29BV+O9yM4WoNNmNWqTulvuiv7grHZl6Z+kJuxSg4BGbsPxxb9dXozPg==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/touch-target": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/touch-target": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/select": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-odoNLiVOgdwbEeePkjHtlr43pjskDwyO8hi4z3jcud1Rg1czk5zoJ2mUI0+olOJjBQ26PGocwrSLqf3qaThbIA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-WioZtQEXRpglum0cMSzSqocnhsGRr+ZIhvKb3FlaNrTaK8H3Y4QA7rVjv3emRtrLOOjaT6/RiIaUMTo9AGzWQQ==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/floating-label": "15.0.0-canary.a246a4439.0", - "@material/line-ripple": "15.0.0-canary.a246a4439.0", - "@material/list": "15.0.0-canary.a246a4439.0", - "@material/menu": "15.0.0-canary.a246a4439.0", - "@material/menu-surface": "15.0.0-canary.a246a4439.0", - "@material/notched-outline": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/floating-label": "15.0.0-canary.7f224ddd4.0", + "@material/line-ripple": "15.0.0-canary.7f224ddd4.0", + "@material/list": "15.0.0-canary.7f224ddd4.0", + "@material/menu": "15.0.0-canary.7f224ddd4.0", + "@material/menu-surface": "15.0.0-canary.7f224ddd4.0", + "@material/notched-outline": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/shape": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-rcWPlCoHyP79ozeEKk73KWt9WTWdh6R68+n75l08TSTvnWZB5RRTmsI9BMkz55O9OJD/8H8ZsOxBe4x2QXUT7w==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-8z8l1W3+cymObunJoRhwFPKZ+FyECfJ4MJykNiaZq7XJFZkV6xNmqAVrrbQj93FtLsECn9g4PjjIomguVn/OEw==", "dev": true, "dependencies": { - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/slider": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/slider/-/slider-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-is1BSBpxaXBBv+wSVpe9WGWmWl59yJEeDNubTES2UFD0er3BmA+PdKkL09vvytDnBcbKf77TbxaRiUSGVaKUQA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/slider/-/slider-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-QU/WSaSWlLKQRqOhJrPgm29wqvvzRusMqwAcrCh1JTrCl+xwJ43q5WLDfjYhubeKtrEEgGu9tekkAiYfMG7EBw==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/snackbar": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-2NAtC1qozR/uajszZnPy08Ej8HNnpgvCjNCBerDN4SLH2Q0/aWrVrUjqRCp2ayAvsX+szoroGbCboMhaWRzDuQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-sm7EbVKddaXpT/aXAYBdPoN0k8yeg9+dprgBUkrdqGzWJAeCkxb4fv2B3He88YiCtvkTz2KLY4CThPQBSEsMFQ==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/button": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/icon-button": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/button": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/icon-button": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/switch": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-o0wcbYgm2yRs4een5uxT4RJnJ003DxXe33rk8vTBG2o7cdiSR3X7GJQxeIK3D9wPgWCAwBLhNYSzXrlTL5pkMw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-lEDJfRvkVyyeHWIBfoxYjJVl+WlEAE2kZ/+6OqB1FW0OV8ftTODZGhHRSzjVBA1/p4FPuhAtKtoK9jTpa4AZjA==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", "safevalues": "^0.3.4", "tslib": "^2.1.0" } }, "node_modules/@material/tab": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/tab/-/tab-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-HGLK774uMeLnhbjDJBOjft7S6SurZnKb+6Und88OMDUVUEG6MkFBAKQQr09iBIeLE2sUAiGQhBVQtb7LJKwolQ==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/tab/-/tab-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-E1xGACImyCLurhnizyOTCgOiVezce4HlBFAI6YhJo/AyVwjN2Dtas4ZLQMvvWWqpyhITNkeYdOchwCC1mrz3AQ==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/focus-ring": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/tab-indicator": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/tab-indicator": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/tab-bar": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/tab-bar/-/tab-bar-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-dMQb1vXsBchQXcjbwgJZIGqTZHngm+3QGSOSb4LWjqHIgC5+w2RRrHsIAjNTyRhKssJ9nKKrbpM/Yz5vTPWH6w==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/tab-bar/-/tab-bar-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-p1Asb2NzrcECvAQU3b2SYrpyJGyJLQWR+nXTYzDKE8WOpLIRCXap2audNqD7fvN/A20UJ1J8U01ptrvCkwJ4eA==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/tab": "15.0.0-canary.a246a4439.0", - "@material/tab-indicator": "15.0.0-canary.a246a4439.0", - "@material/tab-scroller": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/tab": "15.0.0-canary.7f224ddd4.0", + "@material/tab-indicator": "15.0.0-canary.7f224ddd4.0", + "@material/tab-scroller": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/tab-indicator": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/tab-indicator/-/tab-indicator-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-gG2BgHT+ggKnUOaT8LjmH/+9nknRLh8v9qemrhUkDuCtZ8inlaC33OVbbxfrpQW3J+UzBh5YCUSC+2KrN39uUA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/tab-indicator/-/tab-indicator-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-h9Td3MPqbs33spcPS7ecByRHraYgU4tNCZpZzZXw31RypjKvISDv/PS5wcA4RmWqNGih78T7xg4QIGsZg4Pk4w==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/tab-scroller": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/tab-scroller/-/tab-scroller-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-6KvBpalc4SwLbHFm0rnuIE64VffUj7AKhnPc+mqM6VmxOvDzQ/ZSYga0rWlUfM4mCDFX3ZkSxim+iNzVF+Ejaw==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/tab-scroller/-/tab-scroller-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-LFeYNjQpdXecwECd8UaqHYbhscDCwhGln5Yh+3ctvcEgvmDPNjhKn/DL3sWprWvG8NAhP6sHMrsGhQFVdCWtTg==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/tab": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/tab": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/textfield": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/textfield/-/textfield-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-4BW5bUERPlIeiPnLSby21h1/xDmySuAG9Ucn1LM801a0+5mK3IwWb8031AP3filKZZqTx5JJvOJYZd6/OWBJVA==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/textfield/-/textfield-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-AExmFvgE5nNF0UA4l2cSzPghtxSUQeeoyRjFLHLy+oAaE4eKZFrSy0zEpqPeWPQpEMDZk+6Y+6T3cOFYBeSvsw==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/density": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/floating-label": "15.0.0-canary.a246a4439.0", - "@material/line-ripple": "15.0.0-canary.a246a4439.0", - "@material/notched-outline": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/density": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/floating-label": "15.0.0-canary.7f224ddd4.0", + "@material/line-ripple": "15.0.0-canary.7f224ddd4.0", + "@material/notched-outline": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/theme": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-HWxC5Nhz8JZKTLTVmAsNxIGB3Kzr53+YFMg327S8/XuEDmI0RFHFvtwM9rADmyrHFBmUaVhV4iELyxFdi67c9w==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-hs45hJoE9yVnoVOcsN1jklyOa51U4lzWsEnQEuJTPOk2+0HqCQ0yv/q0InpSnm2i69fNSyZC60+8HADZGF8ugQ==", "dev": true, "dependencies": { - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/tokens": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-+5iGfQ51YSb0Qau8uC6/jHXCSC3enKaQKDf/iPHfuXAe04UznW3tmm1/Ju227aZXNISTJcnQYa2rpm1M14MeUg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==", "dev": true, "dependencies": { - "@material/elevation": "15.0.0-canary.a246a4439.0" + "@material/elevation": "15.0.0-canary.7f224ddd4.0" } }, "node_modules/@material/tooltip": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-Ja2Z4aZQkYWD6InXA+MG4M9zdKR6dYsXXlYzQppYpfcQzXylZqh5Y7WBLulG5fA2o83pHVwILfwFZM7j7ht08Q==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-8qNk3pmPLTnam3XYC1sZuplQXW9xLn4Z4MI3D+U17Q7pfNZfoOugGr+d2cLA9yWAEjVJYB0mj8Yu86+udo4N9w==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/button": "15.0.0-canary.a246a4439.0", - "@material/dom": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/tokens": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/button": "15.0.0-canary.7f224ddd4.0", + "@material/dom": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/tokens": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "safevalues": "^0.3.4", "tslib": "^2.1.0" } }, "node_modules/@material/top-app-bar": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/top-app-bar/-/top-app-bar-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-twQchmCa1In/FFrALPYojgeM8vmV7KH96wRY9NmPSJ046ANgPCicLBgLuSzrLETCFqAwbztqzxSG4xMBL81rYg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/top-app-bar/-/top-app-bar-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-SARR5/ClYT4CLe9qAXakbr0i0cMY0V3V4pe3ElIJPfL2Z2c4wGR1mTR8m2LxU1MfGKK8aRoUdtfKaxWejp+eNA==", "dev": true, "dependencies": { - "@material/animation": "15.0.0-canary.a246a4439.0", - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/elevation": "15.0.0-canary.a246a4439.0", - "@material/ripple": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/shape": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", - "@material/typography": "15.0.0-canary.a246a4439.0", + "@material/animation": "15.0.0-canary.7f224ddd4.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/elevation": "15.0.0-canary.7f224ddd4.0", + "@material/ripple": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/shape": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", + "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/touch-target": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-ubyD1TUjZnRPEdDnk6Lrcm2ZsjnU7CV5y7IX8pj9IPawiM6bx4FkjZBxUvclbv3WiTGk5UOnwPOySYAJYAMQ1w==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-BJo/wFKHPYLGsRaIpd7vsQwKr02LtO2e89Psv0on/p0OephlNIgeB9dD9W+bQmaeZsZ6liKSKRl6wJWDiK71PA==", "dev": true, "dependencies": { - "@material/base": "15.0.0-canary.a246a4439.0", - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/rtl": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/base": "15.0.0-canary.7f224ddd4.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/rtl": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, "node_modules/@material/typography": { - "version": "15.0.0-canary.a246a4439.0", - "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.a246a4439.0.tgz", - "integrity": "sha512-eXzBl9ROzWZ+41nan5pCrn1C/Zq3o/VsrLFaGv8fdRmhRR6/wHMeuvCCwGf5VtEmWdAE9FpJzRU/4ZPiJCJUyg==", + "version": "15.0.0-canary.7f224ddd4.0", + "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.7f224ddd4.0.tgz", + "integrity": "sha512-kBaZeCGD50iq1DeRRH5OM5Jl7Gdk+/NOfKArkY4ksBZvJiStJ7ACAhpvb8MEGm4s3jvDInQFLsDq3hL+SA79sQ==", "dev": true, "dependencies": { - "@material/feature-targeting": "15.0.0-canary.a246a4439.0", - "@material/theme": "15.0.0-canary.a246a4439.0", + "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", + "@material/theme": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.1.0" } }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.2.tgz", + "integrity": "sha512-9bfjwDxIDWmmOKusUcqdS4Rw+SETlp9Dy39Xui9BEGEk19dDwH0jhipwFzEff/pFg95NKymc6TOTbRKcWeRqyQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.2.tgz", + "integrity": "sha512-lwriRAHm1Yg4iDf23Oxm9n/t5Zpw1lVnxYU3HnJPTi2lJRkKTrps1KVgvL6m7WvmhYVt/FIsssWay+k45QHeuw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.2.tgz", + "integrity": "sha512-MOI9Dlfrpi2Cuc7i5dXdxPbFIgbDBGgKR5F2yWEa6FVEtSWncfVNKW5AKjImAQ6CZlBK9tympdsZJ2xThBiWWA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.2.tgz", + "integrity": "sha512-FU20Bo66/f7He9Fp9sP2zaJ1Q8L9uLPZQDub/WlUip78JlPeMbVL8546HbZfcW9LNciEXc8d+tThSJjSC+tmsg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.2.tgz", + "integrity": "sha512-gsWNDCklNy7Ajk0vBBf9jEx04RUxuDQfBse918Ww+Qb9HCPoGzS+XJTLe96iN3BVK7grnLiYghP/M4L8VsaHeA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.2.tgz", + "integrity": "sha512-O+6Gs8UeDbyFpbSh2CPEz/UOrrdWPTBYNblZK5CxxLisYt4kGX3Sc+czffFonyjiGSq3jWLwJS/CCJc7tBr4sQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@ngrx/effects": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@ngrx/effects/-/effects-17.0.0.tgz", - "integrity": "sha512-1IK/N4ifyqZFlbstgH+mCBxwNW0FEWTINO2kWEGGb0IZ4lcZaN1GKAqDws69t0011H3bLQePdYLvXH9HJG1qTw==", + "version": "17.2.0", + "resolved": "https://registry.npmjs.org/@ngrx/effects/-/effects-17.2.0.tgz", + "integrity": "sha512-tXDJNsuBtbvI/7+vYnkDKKpUvLbopw1U5G6LoPnKNrbTPsPcUGmCqF5Su/ZoRN3BhXjt2j+eoeVdpBkxdxMRgg==", "dependencies": { "@ngrx/operators": "17.0.0-beta.0", "tslib": "^2.0.0" }, "peerDependencies": { "@angular/core": "^17.0.0", - "@ngrx/store": "17.0.0", + "@ngrx/store": "17.2.0", "rxjs": "^6.5.3 || ^7.5.0" } }, @@ -4144,9 +4682,9 @@ } }, "node_modules/@ngrx/store": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-17.0.0.tgz", - "integrity": "sha512-jIK4r3IUKPjHmhfgnUYrN7eie+NdFfPNArUQiL+NeiEeuomsYWaUF6PwiRSnRCqbZhRMvqPWiIWcd0/ql5YJlg==", + "version": "17.2.0", + "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-17.2.0.tgz", + "integrity": "sha512-7wKgZ59B/6yQSvvsU0DQXipDqpkAXv7LwcXLD5Ww7nvqN0fQoRPThMh4+Wv55DCJhE0bQc1NEMciLA47uRt7Wg==", "dependencies": { "tslib": "^2.0.0" }, @@ -4156,31 +4694,31 @@ } }, "node_modules/@ngrx/store-devtools": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/@ngrx/store-devtools/-/store-devtools-17.0.0.tgz", - "integrity": "sha512-DAi0ABROSUks+T3vhbuzHKmACG5NbbcepfibOsgw6R6btbITW4fT3fXepXOmsymXJRO5dmYv6sSM3PDjV8WF0A==", + "version": "17.2.0", + "resolved": "https://registry.npmjs.org/@ngrx/store-devtools/-/store-devtools-17.2.0.tgz", + "integrity": "sha512-ig0qr6hMexZGnrlxfHvZmu5CanRjH7hhx60XUbB5BdBvWJIIRaWKPLcsniiDUhljAD87gvzrrilbCTiML38+CA==", "dev": true, "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { - "@ngrx/store": "17.0.0", + "@ngrx/store": "17.2.0", "rxjs": "^6.5.3 || ^7.5.0" } }, "node_modules/@ngtools/webpack": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-17.0.3.tgz", - "integrity": "sha512-H39WQ/tM6kOErfiyU6QkPasMtuOZHbm6INkirSR3ol4e93o6gLJ0ptwg3IQlyGtZK2QexWagPC6jzsdGIaN3iw==", + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.0.2.tgz", + "integrity": "sha512-I+ZNFGBnykUWBwGPCXy6m9R2fIX/ovnAUHylvThYd/M+FUfc+Z/3DpKEUBYIOLVCLNZR5nuK0t9QLlazYhWFgg==", "dev": true, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { - "@angular/compiler-cli": "^17.0.0", - "typescript": ">=5.2 <5.3", + "@angular/compiler-cli": "^18.0.0", + "typescript": ">=5.4 <5.5", "webpack": "^5.54.0" } }, @@ -4220,34 +4758,34 @@ } }, "node_modules/@npmcli/agent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", - "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz", + "integrity": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==", "dev": true, "dependencies": { "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" + "socks-proxy-agent": "^8.0.3" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@npmcli/agent/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" } }, "node_modules/@npmcli/fs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", - "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", + "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -4257,15 +4795,15 @@ } }, "node_modules/@npmcli/git": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.3.tgz", - "integrity": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz", + "integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==", "dev": true, "dependencies": { "@npmcli/promise-spawn": "^7.0.0", "lru-cache": "^10.0.1", "npm-pick-manifest": "^9.0.0", - "proc-log": "^3.0.0", + "proc-log": "^4.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", @@ -4285,9 +4823,9 @@ } }, "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -4309,16 +4847,16 @@ } }, "node_modules/@npmcli/installed-package-contents": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", - "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz", + "integrity": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==", "dev": true, "dependencies": { "npm-bundled": "^3.0.0", "npm-normalize-package-bin": "^3.0.0" }, "bin": { - "installed-package-contents": "lib/index.js" + "installed-package-contents": "bin/index.js" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -4333,10 +4871,65 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/@npmcli/package-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz", + "integrity": "sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==", + "dev": true, + "dependencies": { + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^4.0.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/package-json/node_modules/glob": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@npmcli/package-json/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@npmcli/promise-spawn": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz", - "integrity": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz", + "integrity": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==", "dev": true, "dependencies": { "which": "^4.0.0" @@ -4369,16 +4962,26 @@ "node": "^16.13.0 || >=18.0.0" } }, + "node_modules/@npmcli/redact": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-2.0.0.tgz", + "integrity": "sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ==", + "dev": true, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, "node_modules/@npmcli/run-script": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz", - "integrity": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz", + "integrity": "sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==", "dev": true, "dependencies": { "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.0", "node-gyp": "^10.0.0", - "read-package-json-fast": "^3.0.0", + "proc-log": "^4.0.0", "which": "^4.0.0" }, "engines": { @@ -4410,21 +5013,21 @@ } }, "node_modules/@nrwl/devkit": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-17.1.2.tgz", - "integrity": "sha512-INPZk4qts3xNJt8E9fttuVTufXdigPUOvUiAiPJmR2oUGDF8SeOlIYNForbz+XMRvxyIVtf45O32azUsgeZe3Q==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-19.1.2.tgz", + "integrity": "sha512-vWI+OrTICE9Yw6C/jIwxybnvavI9dnQJ7tpzFbLcSVfFAGdFtYJGCLVe40IkWcvUfELoVmzpXtKP/sPy0D7J9w==", "dev": true, "dependencies": { - "@nx/devkit": "17.1.2" + "@nx/devkit": "19.1.2" } }, "node_modules/@nrwl/tao": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-17.1.2.tgz", - "integrity": "sha512-tL+dlygeor/kLG5fuK5qaiVFJ4hEtvJ/E+xY9epp20UKCNQSEkrSFiesiXtX6E/PPf4YbOQ4B4itWR2EYCm03Q==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-19.1.2.tgz", + "integrity": "sha512-OseWzHXNwOmZinUjHCD+edinvNJq5ngGrn/yKO81Zm/FDxkcYjud20dMsXi8zYfgDjvQv22eDtk5v1BTlSx57A==", "dev": true, "dependencies": { - "nx": "17.1.2", + "nx": "19.1.2", "tslib": "^2.3.0" }, "bin": { @@ -4432,60 +5035,29 @@ } }, "node_modules/@nx/devkit": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-17.1.2.tgz", - "integrity": "sha512-9Izd9jsa++AaZSSlhi0zkv58k4clzE0kICurx9DjfWN6zXnD08HqJoUYCVVaeYS/SrWlQUbMig8e49BO8ZV5mw==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-19.1.2.tgz", + "integrity": "sha512-oHYZzfmvogPh7z8pf1RjW7eJaS05VZ1Ts/axlWerzQauWT7aoeyCaxa0D9q3ThnUuDt1PqKjwJi5jmCihBT2Sw==", "dev": true, "dependencies": { - "@nrwl/devkit": "17.1.2", + "@nrwl/devkit": "19.1.2", "ejs": "^3.1.7", "enquirer": "~2.3.6", "ignore": "^5.0.4", - "semver": "7.5.3", + "minimatch": "9.0.3", + "semver": "^7.5.3", "tmp": "~0.2.1", - "tslib": "^2.3.0" + "tslib": "^2.3.0", + "yargs-parser": "21.1.1" }, "peerDependencies": { - "nx": ">= 16 <= 18" + "nx": ">= 17 <= 20" } }, - "node_modules/@nx/devkit/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/devkit/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nx/devkit/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/@nx/nx-darwin-arm64": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-17.1.2.tgz", - "integrity": "sha512-U8fwkuw0vmDfeRQX9LSMt1XiAXM57fxOiuHlrIBn8hUBvMAugAgSAYd7K9YQjrFf9UFUtQeSHDU9N/c/n63hdg==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-19.1.2.tgz", + "integrity": "sha512-YeT/u+r0iZSokbVFsuiFpF/eFAZmR1p6gkpHo6cVIb0KTkH6Sd1n3s1cjfOKEZg+M0emf9Q8QQ6tw41wGrUm4Q==", "cpu": [ "arm64" ], @@ -4499,9 +5071,9 @@ } }, "node_modules/@nx/nx-darwin-x64": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-17.1.2.tgz", - "integrity": "sha512-QR9Jrm32UK2nLdDRtjFabfCvF5SOQJ2IuYkw6Sxe16xGZU2DS9nQku0TQO3Uy2HV1xSR7vzj7ys5z4eI2k+/mA==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-19.1.2.tgz", + "integrity": "sha512-nmbz/4tgvXwYmxIQptny7Cij0OTAxIdB2l+qmI4tkBnN2mT5UVqdG9t8ziSyZHJbWQjIHTkbgAbg5ar6vK/srA==", "cpu": [ "x64" ], @@ -4515,9 +5087,9 @@ } }, "node_modules/@nx/nx-freebsd-x64": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-17.1.2.tgz", - "integrity": "sha512-6rDuFHJREVg5XpcM5RlE8pHP4bgcbns8sSemF/g75SV4iEkBqxRvSe88oBtF44b7IpX2zdONRDV4qQcRf3DxRg==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-19.1.2.tgz", + "integrity": "sha512-0wcBAr+IYOWBXNDdWHahjW1nCyFTP0O+dSsQa5ab5OBEo0UTvt1k/s27cUyaz2Ll070RTpzl54KD3O1i/1/X0Q==", "cpu": [ "x64" ], @@ -4531,9 +5103,9 @@ } }, "node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-17.1.2.tgz", - "integrity": "sha512-4FwqUX7NxVfJ0v7frBKNbjENz6pvp3slDfoG2/WmnAj5a6TCu7magwlg1qLQaHYJ1m/i8u7RrG0Uz4SYHWzkVw==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-19.1.2.tgz", + "integrity": "sha512-A1L7T/Y8nOq7tc84WuaWMEeZ2uTjhqHJDNEfgZhnwYfQ3S94B0O2EkyEp29n9E4eN9XZmvYJzDt1tBz2ziZ6iA==", "cpu": [ "arm" ], @@ -4547,9 +5119,9 @@ } }, "node_modules/@nx/nx-linux-arm64-gnu": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-17.1.2.tgz", - "integrity": "sha512-r6UATY0dVdxwpVJPf/f/KfRkFpMP06wC6HcfNMGbTBTKiKtsdYF42bWoSkDgtgP2bOx9FDH+Hwu3U/Rtj44FIA==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-19.1.2.tgz", + "integrity": "sha512-ze7FtI0hGMs6ap9Z8vo80nXMvuJGJP7CDcL8q2op/l9c23Qex+oG4khyZowJzq+fJPigqldAL3Fm+rHBzT4jhA==", "cpu": [ "arm64" ], @@ -4563,9 +5135,9 @@ } }, "node_modules/@nx/nx-linux-arm64-musl": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-17.1.2.tgz", - "integrity": "sha512-MXGYY/KCzQhbj5UKwnRO2/GhByOkRlI+EeH1Mazam8wZ1BiBfcVWZoOUybIlxxes1o4cAnkZwB527tCmwrHvGw==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-19.1.2.tgz", + "integrity": "sha512-JMiSRLe3K83GQw26jGgJYCLDww7K4z5rVDlWHpQEMyiQSukJBZ5OMYxotkDcPDAMmmrUERXjabOsCi0xnyqUlA==", "cpu": [ "arm64" ], @@ -4579,9 +5151,9 @@ } }, "node_modules/@nx/nx-linux-x64-gnu": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-17.1.2.tgz", - "integrity": "sha512-3cC131hJ3VhuxjzzBlwIdVp46onykOo78EmnURNdLxcWOpmcKgYXn7OnVwjrglYi+JL7D0vABGKKUpt1cs6/rA==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-19.1.2.tgz", + "integrity": "sha512-0XZSz37nrbABUxw2wOMsUP2djsYRxXn1+jbh/kcOH6PnlwiTPOJ6LwDENUh9lZ4PKflED5Tj0w6wx23/AH4z3g==", "cpu": [ "x64" ], @@ -4595,9 +5167,9 @@ } }, "node_modules/@nx/nx-linux-x64-musl": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-17.1.2.tgz", - "integrity": "sha512-1UrR87ByhE0zSXt0C+RNT5ZiAsctOSWZwPYQAGolz8K70BxomDeRVtIaRog5KK5SHlEd1ILvgsmrhovjLjrJNw==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-19.1.2.tgz", + "integrity": "sha512-tID0nKIUQZ5b1woFh3dtl7XK1Mv71kkwxxppMsOb0FVTigC8Yy7Zpu/ykKidnJ+VbHGSYhZ03BZXgAk/on9LXw==", "cpu": [ "x64" ], @@ -4611,9 +5183,9 @@ } }, "node_modules/@nx/nx-win32-arm64-msvc": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-17.1.2.tgz", - "integrity": "sha512-2M7FfzfPGAN7tCUWZilPGNk/RbbGcA00MKOA4MDqMwJtLobW8KqfMedilRNTEuyNibejOHwvGzA9T/Ac/ahHgA==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-19.1.2.tgz", + "integrity": "sha512-AXEwOk0lhbWdy4OZmde0iC1sP/AAUMrw5a8Ah7S0QOXBj8X9wK1zyThviQnY1NpUzYGBbMkv3UgPDTArTdAeKA==", "cpu": [ "arm64" ], @@ -4627,9 +5199,9 @@ } }, "node_modules/@nx/nx-win32-x64-msvc": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-17.1.2.tgz", - "integrity": "sha512-oxKCKunuo4wRusMlNu7PlhBijhtNy7eBZPAWyqUsdfnb+CjY2QncjCguW3fnsG9gHQFCa+y0b1WkSkvJ5G1DiQ==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-19.1.2.tgz", + "integrity": "sha512-H8ldXwXnVff2A9tDU8AD7QE/uZV06D0gHBdbnrzbg74NOrkKvvUPXky0D6BMlooljkU9QXu7M46CWRNIoPSzQw==", "cpu": [ "x64" ], @@ -4694,65 +5266,299 @@ "node": ">=14" } }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", + "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", + "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", + "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", + "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", + "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", + "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", + "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", + "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", + "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", + "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", + "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", + "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", + "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", + "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", + "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", + "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@schematics/angular": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.0.3.tgz", - "integrity": "sha512-pFHAqHMNm2WLoquJD4osSA/OAgH+wsFayPuqQnKjDEzeVW/YfJSbUksJ2iFt+uSfrhc/VxPf6pmGBMzi+9d0ng==", + "version": "18.0.2", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.2.tgz", + "integrity": "sha512-qkJs1oxHtneJ6QxDKpxNyneXGDM9SKVj+Bgi8xUAU3FEzpsYmE/aW3MfwYHOZl0pDBO8c2raqLvlyl3dGP6/Gg==", "dev": true, "dependencies": { - "@angular-devkit/core": "17.0.3", - "@angular-devkit/schematics": "17.0.3", - "jsonc-parser": "3.2.0" + "@angular-devkit/core": "18.0.2", + "@angular-devkit/schematics": "18.0.2", + "jsonc-parser": "3.2.1" }, "engines": { - "node": "^18.13.0 || >=20.9.0", + "node": "^18.19.1 || ^20.11.1 || >=22.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@sigstore/bundle": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.1.0.tgz", - "integrity": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.3.2.tgz", + "integrity": "sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.2.1" + "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sigstore/protobuf-specs": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz", - "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==", + "node_modules/@sigstore/core": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-1.1.0.tgz", + "integrity": "sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==", "dev": true, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/protobuf-specs": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz", + "integrity": "sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==", + "dev": true, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/sign": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.0.tgz", - "integrity": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.3.2.tgz", + "integrity": "sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==", "dev": true, "dependencies": { - "@sigstore/bundle": "^2.1.0", - "@sigstore/protobuf-specs": "^0.2.1", - "make-fetch-happen": "^13.0.0" + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.2", + "make-fetch-happen": "^13.0.1", + "proc-log": "^4.2.0", + "promise-retry": "^2.0.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@sigstore/tuf": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.2.0.tgz", - "integrity": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.4.tgz", + "integrity": "sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==", "dev": true, "dependencies": { - "@sigstore/protobuf-specs": "^0.2.1", - "tuf-js": "^2.1.0" + "@sigstore/protobuf-specs": "^0.3.2", + "tuf-js": "^2.2.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/verify": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-1.2.1.tgz", + "integrity": "sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==", + "dev": true, + "dependencies": { + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.1.0", + "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -4765,9 +5571,9 @@ "dev": true }, "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==" + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", + "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==" }, "node_modules/@swimlane/ngx-charts": { "version": "20.5.0", @@ -4802,9 +5608,9 @@ } }, "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", "dev": true }, "node_modules/@tsconfig/node12": { @@ -4835,31 +5641,22 @@ } }, "node_modules/@tufjs/models": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz", - "integrity": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.1.tgz", + "integrity": "sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==", "dev": true, "dependencies": { "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.3" + "minimatch": "^9.0.4" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@tufjs/models/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -4925,9 +5722,9 @@ } }, "node_modules/@types/eslint": { - "version": "8.44.7", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", - "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", + "version": "8.56.10", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", + "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", "dev": true, "dependencies": { "@types/estree": "*", @@ -4963,9 +5760,9 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.41", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", - "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.3.tgz", + "integrity": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==", "dev": true, "dependencies": { "@types/node": "*", @@ -5008,18 +5805,18 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.9.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.4.tgz", - "integrity": "sha512-wmyg8HUhcn6ACjsn8oKYjkN/zUzQeNtMy44weTJSM6p4MMzEOuKbA3OjJ267uPCOW7Xex9dyrNTful8XTQYoDA==", + "version": "20.14.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.1.tgz", + "integrity": "sha512-T2MzSGEu+ysB/FkWfqmhV3PLyQlowdptmmgD20C6QxsS8Fmv5SjpZ1ayXaEC0S21/h5UJ9iA6W/5vSNU5l00OA==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/node-forge": { - "version": "1.3.10", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.10.tgz", - "integrity": "sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==", + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -5032,9 +5829,9 @@ "dev": true }, "node_modules/@types/qs": { - "version": "6.9.10", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", - "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==", + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", "dev": true }, "node_modules/@types/range-parser": { @@ -5044,9 +5841,9 @@ "dev": true }, "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", "dev": true }, "node_modules/@types/selenium-webdriver": { @@ -5055,12 +5852,6 @@ "integrity": "sha512-dyIGFKXfUFiwkMfNGn1+F6b80ZjR3uSYv1j6xVJSDlft5waZ2cwkHW4e7zNzvq7hiEackcgvBpmnXZrI1GltPg==", "dev": true }, - "node_modules/@types/semver": { - "version": "7.5.6", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", - "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", - "dev": true - }, "node_modules/@types/send": { "version": "0.17.4", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", @@ -5081,14 +5872,14 @@ } }, "node_modules/@types/serve-static": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", - "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, "dependencies": { "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "@types/node": "*", + "@types/send": "*" } }, "node_modules/@types/sockjs": { @@ -5110,33 +5901,31 @@ } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.12.0.tgz", - "integrity": "sha512-XOpZ3IyJUIV1b15M7HVOpgQxPPF7lGXgsfcEIu3yDxFPaf/xZKt7s9QO/pbk7vpWQyVulpJbu4E5LwpZiQo4kA==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.12.0.tgz", + "integrity": "sha512-7F91fcbuDf/d3S8o21+r3ZncGIke/+eWk0EpO21LXhDfLahriZF9CGj4fbAetEjlaBdjdSm9a6VeXbpbT6Z40Q==", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.12.0", - "@typescript-eslint/type-utils": "6.12.0", - "@typescript-eslint/utils": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0", - "debug": "^4.3.4", + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "7.12.0", + "@typescript-eslint/type-utils": "7.12.0", + "@typescript-eslint/utils": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0", "graphemer": "^1.4.0", - "ignore": "^5.2.4", + "ignore": "^5.3.1", "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", - "eslint": "^7.0.0 || ^8.0.0" + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" }, "peerDependenciesMeta": { "typescript": { @@ -5144,79 +5933,27 @@ } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.12.0.tgz", - "integrity": "sha512-WWmRXxhm1X8Wlquj+MhsAG4dU/Blvf1xDgGaYCzfvStP2NwPQh6KBvCDbiOEvaE0filhranjIlK/2fSTVwtBng==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "6.12.0", - "@typescript-eslint/utils": "6.12.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.12.0.tgz", - "integrity": "sha512-LywPm8h3tGEbgfyjYnu3dauZ0U7R60m+miXgKcZS8c7QALO9uWJdvNoP+duKTk2XMWc7/Q3d/QiCuLN9X6SWyQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.12.0", - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/typescript-estree": "6.12.0", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, "node_modules/@typescript-eslint/parser": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.12.0.tgz", - "integrity": "sha512-s8/jNFPKPNRmXEnNXfuo1gemBdVmpQsK1pcu+QIvuNJuhFzGrpD7WjOcvDc/+uEdfzSYpNu7U/+MmbScjoQ6vg==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.12.0.tgz", + "integrity": "sha512-dm/J2UDY3oV3TKius2OUZIFHsomQmpHtsV0FTh1WO8EKgHLQ1QCADUqscPgTpU+ih1e21FQSRjXckHn3txn6kQ==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "6.12.0", - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/typescript-estree": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0", + "@typescript-eslint/scope-manager": "7.12.0", + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/typescript-estree": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0", "debug": "^4.3.4" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "eslint": "^8.56.0" }, "peerDependenciesMeta": { "typescript": { @@ -5225,16 +5962,16 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.12.0.tgz", - "integrity": "sha512-5gUvjg+XdSj8pcetdL9eXJzQNTl3RD7LgUiYTl8Aabdi8hFkaGSYnaS6BLc0BGNaDH+tVzVwmKtWvu0jLgWVbw==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.12.0.tgz", + "integrity": "sha512-itF1pTnN6F3unPak+kutH9raIkL3lhH1YRPGgt7QQOh43DQKVJXmWkpb+vpc/TiDHs6RSd9CTbDsc/Y+Ygq7kg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0" + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -5242,25 +5979,25 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.11.0.tgz", - "integrity": "sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.12.0.tgz", + "integrity": "sha512-lib96tyRtMhLxwauDWUp/uW3FMhLA6D0rJ8T7HmH7x23Gk1Gwwu8UZ94NMXBvOELn6flSPiBrCKlehkiXyaqwA==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "6.11.0", - "@typescript-eslint/utils": "6.11.0", + "@typescript-eslint/typescript-estree": "7.12.0", + "@typescript-eslint/utils": "7.12.0", "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "eslint": "^8.56.0" }, "peerDependenciesMeta": { "typescript": { @@ -5268,70 +6005,13 @@ } } }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.11.0.tgz", - "integrity": "sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.11.0.tgz", - "integrity": "sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.11.0.tgz", - "integrity": "sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.11.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, "node_modules/@typescript-eslint/types": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.12.0.tgz", - "integrity": "sha512-MA16p/+WxM5JG/F3RTpRIcuOghWO30//VEOvzubM8zuOOBYXsP+IfjoCXXiIfy2Ta8FRh9+IO9QLlaFQUU+10Q==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.12.0.tgz", + "integrity": "sha512-o+0Te6eWp2ppKY3mLCU+YA9pVJxhUJE15FV7kxuD9jgwIAa+w/ycGJBMrYDTpVGUM/tgpa9SeMOugSabWFq7bg==", "dev": true, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -5339,21 +6019,22 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.12.0.tgz", - "integrity": "sha512-vw9E2P9+3UUWzhgjyyVczLWxZ3GuQNT7QpnIY3o5OMeLO/c8oHljGc8ZpryBMIyympiAAaKgw9e5Hl9dCWFOYw==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.12.0.tgz", + "integrity": "sha512-5bwqLsWBULv1h6pn7cMW5dXX/Y2amRqLaKqsASVwbBHMZSnHqE/HN4vT4fE0aFsiwxYvr98kqOWh1a8ZKXalCQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.12.0", - "@typescript-eslint/visitor-keys": "6.12.0", + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/visitor-keys": "7.12.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", @@ -5365,144 +6046,76 @@ } } }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@typescript-eslint/utils": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.11.0.tgz", - "integrity": "sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.12.0.tgz", + "integrity": "sha512-Y6hhwxwDx41HNpjuYswYp6gDbkiZ8Hin9Bf5aJQn1bpTs3afYY4GX+MPYxma8jtoIV2GRwTM/UJm/2uGCVv+DQ==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.11.0", - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/typescript-estree": "6.11.0", - "semver": "^7.5.4" + "@typescript-eslint/scope-manager": "7.12.0", + "@typescript-eslint/types": "7.12.0", + "@typescript-eslint/typescript-estree": "7.12.0" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.11.0.tgz", - "integrity": "sha512-0A8KoVvIURG4uhxAdjSaxy8RdRE//HztaZdG8KiHLP8WOXSk0vlF7Pvogv+vlJA5Rnjj/wDcFENvDaHb+gKd1A==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.11.0.tgz", - "integrity": "sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.11.0.tgz", - "integrity": "sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.11.0", - "@typescript-eslint/visitor-keys": "6.11.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.11.0.tgz", - "integrity": "sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.11.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "eslint": "^8.56.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.12.0.tgz", - "integrity": "sha512-rg3BizTZHF1k3ipn8gfrzDXXSFKyOEB5zxYXInQ6z0hUvmQlhaZQzK+YmHmNViMA9HzW5Q9+bPPt90bU6GQwyw==", + "version": "7.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.12.0.tgz", + "integrity": "sha512-uZk7DevrQLL3vSnfFl5bj4sL75qC9D6EdjemIdbtkuUmIheWpuiiylSY01JxJE7+zGrOWDZrp1WxOuDntvKrHQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "6.12.0", - "eslint-visitor-keys": "^3.4.1" + "@typescript-eslint/types": "7.12.0", + "eslint-visitor-keys": "^3.4.3" }, "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, "node_modules/@vitejs/plugin-basic-ssl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.0.1.tgz", - "integrity": "sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.1.0.tgz", + "integrity": "sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==", "dev": true, "engines": { "node": ">=14.6.0" }, "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", "dev": true, "dependencies": { "@webassemblyjs/helper-numbers": "1.11.6", @@ -5522,9 +6135,9 @@ "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { @@ -5545,15 +6158,15 @@ "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/wasm-gen": "1.12.1" } }, "node_modules/@webassemblyjs/ieee754": { @@ -5581,28 +6194,28 @@ "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", "@webassemblyjs/leb128": "1.11.6", @@ -5610,24 +6223,24 @@ } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", @@ -5636,12 +6249,12 @@ } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.12.1", "@xtuc/long": "4.2.2" } }, @@ -5677,9 +6290,9 @@ } }, "node_modules/@zkochan/js-yaml": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", - "integrity": "sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==", + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.7.tgz", + "integrity": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==", "dev": true, "dependencies": { "argparse": "^2.0.1" @@ -5694,12 +6307,6 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "dev": true - }, "node_modules/abbrev": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", @@ -5722,9 +6329,9 @@ } }, "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -5751,31 +6358,11 @@ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "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", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "dev": true, "engines": { "node": ">=0.4.0" } @@ -5808,18 +6395,18 @@ } }, "node_modules/adm-zip": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", - "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", + "version": "0.5.14", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.14.tgz", + "integrity": "sha512-DnyqqifT4Jrcvb8USYjp6FHtBpEIz1mnXu6pTRHZ0RL69LbQYiO+0lDFg5+OKA7U29oWSs3a/i8fhn8ZcceIWg==", "dev": true, "engines": { - "node": ">=6.0" + "node": ">=12.0" } }, "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, "dependencies": { "debug": "^4.3.4" @@ -5842,15 +6429,15 @@ } }, "node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", + "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", + "fast-deep-equal": "^3.1.3", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "uri-js": "^4.4.1" }, "funding": { "type": "github", @@ -5858,9 +6445,9 @@ } }, "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", "dev": true, "dependencies": { "ajv": "^8.0.0" @@ -5886,15 +6473,6 @@ "ajv": "^8.8.2" } }, - "node_modules/amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", - "optional": true, - "engines": { - "node": ">=0.4.2" - } - }, "node_modules/angular-user-idle": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/angular-user-idle/-/angular-user-idle-4.0.0.tgz", @@ -6018,11 +6596,6 @@ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" }, - "node_modules/array-from": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz", - "integrity": "sha512-GQTc6Uupx1FCavi5mPzBvVT7nEOeWMmUA9P95wpfpW1XwMSKs+KaymD5C2Up7KAUKg/mYwbsUYzdZWcoajlNZg==" - }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", @@ -6059,14 +6632,13 @@ } }, "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", "dependencies": { "bn.js": "^4.0.0", "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" + "minimalistic-assert": "^1.0.0" } }, "node_modules/asn1.js/node_modules/bn.js": { @@ -6082,51 +6654,12 @@ "node": ">=0.8" } }, - "node_modules/ast-transform": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/ast-transform/-/ast-transform-0.0.0.tgz", - "integrity": "sha512-e/JfLiSoakfmL4wmTGPjv0HpTICVmxwXgYOB8x+mzozHL8v+dSfCbrJ8J8hJ0YBP0XcYu1aLZ6b/3TnxNK3P2A==", - "dependencies": { - "escodegen": "~1.2.0", - "esprima": "~1.0.4", - "through": "~2.3.4" - } - }, - "node_modules/ast-transform/node_modules/esprima": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", - "integrity": "sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ast-types": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.7.8.tgz", - "integrity": "sha512-RIOpVnVlltB6PcBJ5BMLx+H+6JJ/zjDGU0t7f0L6c2M1dqcK92VQopLBlPQ9R80AVXelfqYgjcPLtHtDbNFg0Q==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/async": { "version": "3.2.5", "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", "dev": true }, - "node_modules/async-each-series": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/async-each-series/-/async-each-series-0.1.1.tgz", - "integrity": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -6144,9 +6677,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "version": "10.4.19", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", + "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", "dev": true, "funding": [ { @@ -6163,9 +6696,9 @@ } ], "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001599", + "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", "postcss-value-parser": "^4.2.0" @@ -6189,17 +6722,19 @@ } }, "node_modules/aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.0.tgz", + "integrity": "sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==" }, "node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", + "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.0" + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, "node_modules/axobject-query": { @@ -6245,13 +6780,13 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", - "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", + "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", "dev": true, "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", + "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { @@ -6268,25 +6803,25 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", - "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3", - "core-js-compat": "^3.33.1" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", - "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3" + "@babel/helper-define-polyfill-provider": "^0.6.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -6350,12 +6885,15 @@ } }, "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "dev": true, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bl": { @@ -6369,6 +6907,20 @@ "readable-stream": "^3.4.0" } }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/blocking-proxy": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", @@ -6395,12 +6947,12 @@ "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" }, "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", "dependencies": { "bytes": "3.1.2", - "content-type": "~1.0.4", + "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -6408,7 +6960,7 @@ "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.11.0", - "raw-body": "2.5.1", + "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, @@ -6445,20 +6997,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/body-parser/node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/body-parser/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -6468,23 +7006,15 @@ } }, "node_modules/bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", + "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", "dev": true, "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } }, - "node_modules/bonjour-service/node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", - "dev": true - }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", @@ -6492,41 +7022,26 @@ "dev": true }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "balanced-match": "^1.0.0" } }, "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "fill-range": "^7.1.1" }, "engines": { "node": ">=8" } }, - "node_modules/brfs": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brfs/-/brfs-2.0.2.tgz", - "integrity": "sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ==", - "dependencies": { - "quote-stream": "^1.0.1", - "resolve": "^1.1.5", - "static-module": "^3.0.2", - "through2": "^2.0.0" - }, - "bin": { - "brfs": "bin/cmd.js" - } - }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -6540,231 +7055,6 @@ "base64-js": "^1.1.2" } }, - "node_modules/browser-resolve": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", - "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", - "dependencies": { - "resolve": "1.1.7" - } - }, - "node_modules/browser-resolve/node_modules/resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==" - }, - "node_modules/browser-sync": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.29.3.tgz", - "integrity": "sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==", - "dev": true, - "dependencies": { - "browser-sync-client": "^2.29.3", - "browser-sync-ui": "^2.29.3", - "bs-recipes": "1.3.4", - "chalk": "4.1.2", - "chokidar": "^3.5.1", - "connect": "3.6.6", - "connect-history-api-fallback": "^1", - "dev-ip": "^1.0.1", - "easy-extender": "^2.3.4", - "eazy-logger": "^4.0.1", - "etag": "^1.8.1", - "fresh": "^0.5.2", - "fs-extra": "3.0.1", - "http-proxy": "^1.18.1", - "immutable": "^3", - "localtunnel": "^2.0.1", - "micromatch": "^4.0.2", - "opn": "5.3.0", - "portscanner": "2.2.0", - "raw-body": "^2.3.2", - "resp-modifier": "6.0.2", - "rx": "4.1.0", - "send": "0.16.2", - "serve-index": "1.9.1", - "serve-static": "1.13.2", - "server-destroy": "1.0.1", - "socket.io": "^4.4.1", - "ua-parser-js": "^1.0.33", - "yargs": "^17.3.1" - }, - "bin": { - "browser-sync": "dist/bin.js" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/browser-sync-client": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/browser-sync-client/-/browser-sync-client-2.29.3.tgz", - "integrity": "sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==", - "dev": true, - "dependencies": { - "etag": "1.8.1", - "fresh": "0.5.2", - "mitt": "^1.1.3" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/browser-sync-ui": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/browser-sync-ui/-/browser-sync-ui-2.29.3.tgz", - "integrity": "sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==", - "dev": true, - "dependencies": { - "async-each-series": "0.1.1", - "chalk": "4.1.2", - "connect-history-api-fallback": "^1", - "immutable": "^3", - "server-destroy": "1.0.1", - "socket.io-client": "^4.4.1", - "stream-throttle": "^0.1.3" - } - }, - "node_modules/browser-sync-ui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/browser-sync-ui/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/browser-sync-ui/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/browser-sync-ui/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/browser-sync-ui/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-sync-ui/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-sync/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/browser-sync/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/browser-sync/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/browser-sync/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/browser-sync/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/browser-sync/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/browserify-aes": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", @@ -6799,16 +7089,6 @@ "safe-buffer": "^5.1.2" } }, - "node_modules/browserify-optional": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-optional/-/browserify-optional-1.0.1.tgz", - "integrity": "sha512-VrhjbZ+Ba5mDiSYEuPelekQMfTbhcA2DhLk2VQWqdcCROWeFqlTcXZ7yfRkXCIl8E+g4gINJYJiRB7WEtfomAQ==", - "dependencies": { - "ast-transform": "0.0.0", - "ast-types": "^0.7.0", - "browser-resolve": "^1.8.1" - } - }, "node_modules/browserify-rsa": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", @@ -6819,28 +7099,29 @@ } }, "node_modules/browserify-sign": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", - "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz", + "integrity": "sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==", "dependencies": { "bn.js": "^5.2.1", "browserify-rsa": "^4.1.0", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", - "elliptic": "^6.5.4", + "elliptic": "^6.5.5", + "hash-base": "~3.0", "inherits": "^2.0.4", - "parse-asn1": "^5.1.6", - "readable-stream": "^3.6.2", + "parse-asn1": "^5.1.7", + "readable-stream": "^2.3.8", "safe-buffer": "^5.2.1" }, "engines": { - "node": ">= 4" + "node": ">= 0.12" } }, "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", "dev": true, "funding": [ { @@ -6857,9 +7138,9 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", "update-browserslist-db": "^1.0.13" }, "bin": { @@ -6912,12 +7193,6 @@ "node": ">= 4.5.0" } }, - "node_modules/bs-recipes": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz", - "integrity": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==", - "dev": true - }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", @@ -6942,14 +7217,6 @@ "ieee754": "^1.1.13" } }, - "node_modules/buffer-equal": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", - "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", @@ -6958,20 +7225,27 @@ "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, "node_modules/buffer-xor": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dev": true, "dependencies": { - "semver": "^7.0.0" + "run-applescript": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bytes": { @@ -6983,9 +7257,9 @@ } }, "node_modules/cacache": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.0.tgz", - "integrity": "sha512-I7mVOPl3PUCeRub1U8YoGz2Lqv9WOBpobZ8RyWFXmReuILz+3OAyTa5oH3QPdtKZD7N0Yk00aLfzn0qvp8dZ1w==", + "version": "18.0.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz", + "integrity": "sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==", "dev": true, "dependencies": { "@npmcli/fs": "^3.1.0", @@ -6993,7 +7267,7 @@ "glob": "^10.2.2", "lru-cache": "^10.0.1", "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", + "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "p-map": "^4.0.0", @@ -7005,50 +7279,41 @@ "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, "node_modules/cacache/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" } }, "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -7061,13 +7326,18 @@ } }, "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -7091,9 +7361,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001564", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001564.tgz", - "integrity": "sha512-DqAOf+rhof+6GVx1y+xzbFPeOumfQnhYzVnZD6LAXijR77yPtm9mfOcqOnT3mpnJiZVT+kwLAFnRlZcIz+c6bg==", + "version": "1.0.30001627", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001627.tgz", + "integrity": "sha512-4zgNiB8nTyV/tHhwZrFs88ryjls/lHiqFhrxCW4qSTeuRByBVnPYpDInchOIySWknznucaf31Z4KYqjfbrecVw==", "dev": true, "funding": [ { @@ -7136,16 +7406,10 @@ "dev": true }, "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -7158,6 +7422,9 @@ "engines": { "node": ">= 8.10.0" }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, "optionalDependencies": { "fsevents": "~2.3.2" } @@ -7172,9 +7439,9 @@ } }, "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true, "engines": { "node": ">=6.0" @@ -7436,56 +7703,15 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "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", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/connect": { - "version": "3.6.6", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz", - "integrity": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==", + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", "dev": true, "dependencies": { "debug": "2.6.9", - "finalhandler": "1.1.0", - "parseurl": "~1.3.2", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", "utils-merge": "1.0.1" }, "engines": { @@ -7493,9 +7719,9 @@ } }, "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true, "engines": { "node": ">=0.8" @@ -7510,12 +7736,51 @@ "ms": "2.0.0" } }, + "node_modules/connect/node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/connect/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, + "node_modules/connect/node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/connect/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -7543,7 +7808,8 @@ "node_modules/convert-source-map": { "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==" + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true }, "node_modules/convert-string": { "version": "0.1.0", @@ -7655,12 +7921,12 @@ } }, "node_modules/core-js-compat": { - "version": "3.33.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.3.tgz", - "integrity": "sha512-cNzGqFsh3Ot+529GIXacjTJ7kegdt5fPXxCBVS1G0iaZpuo/tBz399ymceLJveQhFFZ8qThHiP3fzuoQjKN2ow==", + "version": "3.37.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", + "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", "dev": true, "dependencies": { - "browserslist": "^4.22.1" + "browserslist": "^4.23.0" }, "funding": { "type": "opencollective", @@ -7668,9 +7934,9 @@ } }, "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "node_modules/cors": { "version": "2.8.5", @@ -7686,15 +7952,15 @@ } }, "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "dependencies": { + "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "parse-json": "^5.2.0" }, "engines": { "node": ">=14" @@ -7775,9 +8041,9 @@ "dev": true }, "node_modules/critters": { - "version": "0.0.20", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.20.tgz", - "integrity": "sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==", + "version": "0.0.22", + "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.22.tgz", + "integrity": "sha512-NU7DEcQZM2Dy8XTKFHxtdnIM/drE312j2T4PCVaSUcS0oBeyT/NImpRw/Ap0zOr/1SE7SgPK9tGPg1WK/sVakw==", "dev": true, "dependencies": { "chalk": "^4.1.0", @@ -7786,7 +8052,7 @@ "domhandler": "^5.0.2", "htmlparser2": "^8.0.2", "postcss": "^8.4.23", - "pretty-bytes": "^5.3.0" + "postcss-media-query-parser": "^0.2.3" } }, "node_modules/critters/node_modules/ansi-styles": { @@ -7913,29 +8179,38 @@ } }, "node_modules/css-loader": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", - "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.1.tgz", + "integrity": "sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==", "dev": true, "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.4.21", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.3", - "postcss-modules-scope": "^3.0.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" + "semver": "^7.5.4" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^5.0.0" + "@rspack/core": "0.x || 1.x", + "webpack": "^5.27.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/css-select": { @@ -8007,15 +8282,6 @@ "integrity": "sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==", "dev": true }, - "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, "node_modules/d3-array": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", @@ -8248,11 +8514,6 @@ "d3-selection": "2 - 3" } }, - "node_modules/dash-ast": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-2.0.1.tgz", - "integrity": "sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ==" - }, "node_modules/dashdash": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", @@ -8274,9 +8535,9 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", "dependencies": { "ms": "2.1.2" }, @@ -8319,7 +8580,36 @@ "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dev": true, + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/default-gateway": { "version": "6.0.3", @@ -8346,16 +8636,19 @@ } }, "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/define-lazy-prop": { @@ -8434,6 +8727,7 @@ "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -8485,24 +8779,21 @@ "npm": "1.2.8000 || >= 1.4.16" } }, + "node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/detect-node": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "node_modules/dev-ip": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dev-ip/-/dev-ip-1.0.1.tgz", - "integrity": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==", - "dev": true, - "bin": { - "dev-ip": "lib/dev-ip.js" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/dfa": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", @@ -8564,12 +8855,6 @@ "node": ">=8" } }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, "node_modules/dns-packet": { "version": "5.6.1", "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", @@ -8582,18 +8867,6 @@ "node": ">=6" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/dom-serialize": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", @@ -8662,15 +8935,15 @@ } }, "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", "dev": true, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" + "url": "https://dotenvx.com" } }, "node_modules/dotenv-expand": { @@ -8688,141 +8961,12 @@ "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "node_modules/duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "dependencies": { - "readable-stream": "^2.0.2" - } - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "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", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true }, - "node_modules/easy-extender": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/easy-extender/-/easy-extender-2.3.4.tgz", - "integrity": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==", - "dev": true, - "dependencies": { - "lodash": "^4.17.10" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/eazy-logger": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/eazy-logger/-/eazy-logger-4.0.1.tgz", - "integrity": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==", - "dev": true, - "dependencies": { - "chalk": "4.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/eazy-logger/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eazy-logger/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eazy-logger/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eazy-logger/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eazy-logger/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eazy-logger/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -8832,6 +8976,11 @@ "safer-buffer": "^2.1.0" } }, + "node_modules/ecc-jsbn/node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", @@ -8846,9 +8995,9 @@ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/ejs": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", - "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", "dev": true, "dependencies": { "jake": "^10.8.5" @@ -8861,15 +9010,15 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.592", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.592.tgz", - "integrity": "sha512-D3NOkROIlF+d5ixnz7pAf3Lu/AuWpd6AYgI9O67GQXMXTcCP1gJQRotOq35eQy5Sb4hez33XH1YdTtILA7Udww==", + "version": "1.4.789", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.789.tgz", + "integrity": "sha512-0VbyiaXoT++Fi2vHGo2ThOeS6X3vgRCWrjPeO2FeIAWL6ItiSJ9BqlH8LfCXe3X1IdcG+S0iLoNaxQWhfZoGzQ==", "dev": true }, "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz", + "integrity": "sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==", "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -8998,9 +9147,9 @@ } }, "node_modules/engine.io-parser": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.1.tgz", - "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.2.tgz", + "integrity": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==", "engines": { "node": ">=10.0.0" } @@ -9027,9 +9176,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.17.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", + "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -9061,7 +9210,7 @@ "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "devOptional": true, + "dev": true, "engines": { "node": ">=0.12" }, @@ -9106,48 +9255,30 @@ "is-arrayish": "^0.2.1" } }, - "node_modules/es-module-lexer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", - "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", - "dev": true - }, - "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", - "hasInstallScript": true, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dependencies": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" + "get-intrinsic": "^1.2.4" }, "engines": { - "node": ">=0.10" + "node": ">= 0.4" } }, - "node_modules/es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "dependencies": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" } }, - "node_modules/es6-map": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", - "integrity": "sha512-mz3UqCh0uPCIqsw1SSAkB/p0rOzF/M0V++vyN7JqlPtSW/VsYgQBvVvqMLmfBuyMzTpLnNqi6JmcSizs4jy19A==", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-set": "~0.1.5", - "es6-symbol": "~3.1.1", - "event-emitter": "~0.3.5" - } + "node_modules/es-module-lexer": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.3.tgz", + "integrity": "sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==", + "dev": true }, "node_modules/es6-promise": { "version": "4.2.8", @@ -9164,43 +9295,12 @@ "es6-promise": "^4.0.3" } }, - "node_modules/es6-set": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.6.tgz", - "integrity": "sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==", - "dependencies": { - "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/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", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, "node_modules/esbuild": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.5.tgz", - "integrity": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", + "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", "dev": true, "hasInstallScript": true, - "optional": true, "bin": { "esbuild": "bin/esbuild" }, @@ -9208,34 +9308,35 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.19.5", - "@esbuild/android-arm64": "0.19.5", - "@esbuild/android-x64": "0.19.5", - "@esbuild/darwin-arm64": "0.19.5", - "@esbuild/darwin-x64": "0.19.5", - "@esbuild/freebsd-arm64": "0.19.5", - "@esbuild/freebsd-x64": "0.19.5", - "@esbuild/linux-arm": "0.19.5", - "@esbuild/linux-arm64": "0.19.5", - "@esbuild/linux-ia32": "0.19.5", - "@esbuild/linux-loong64": "0.19.5", - "@esbuild/linux-mips64el": "0.19.5", - "@esbuild/linux-ppc64": "0.19.5", - "@esbuild/linux-riscv64": "0.19.5", - "@esbuild/linux-s390x": "0.19.5", - "@esbuild/linux-x64": "0.19.5", - "@esbuild/netbsd-x64": "0.19.5", - "@esbuild/openbsd-x64": "0.19.5", - "@esbuild/sunos-x64": "0.19.5", - "@esbuild/win32-arm64": "0.19.5", - "@esbuild/win32-ia32": "0.19.5", - "@esbuild/win32-x64": "0.19.5" + "@esbuild/aix-ppc64": "0.21.3", + "@esbuild/android-arm": "0.21.3", + "@esbuild/android-arm64": "0.21.3", + "@esbuild/android-x64": "0.21.3", + "@esbuild/darwin-arm64": "0.21.3", + "@esbuild/darwin-x64": "0.21.3", + "@esbuild/freebsd-arm64": "0.21.3", + "@esbuild/freebsd-x64": "0.21.3", + "@esbuild/linux-arm": "0.21.3", + "@esbuild/linux-arm64": "0.21.3", + "@esbuild/linux-ia32": "0.21.3", + "@esbuild/linux-loong64": "0.21.3", + "@esbuild/linux-mips64el": "0.21.3", + "@esbuild/linux-ppc64": "0.21.3", + "@esbuild/linux-riscv64": "0.21.3", + "@esbuild/linux-s390x": "0.21.3", + "@esbuild/linux-x64": "0.21.3", + "@esbuild/netbsd-x64": "0.21.3", + "@esbuild/openbsd-x64": "0.21.3", + "@esbuild/sunos-x64": "0.21.3", + "@esbuild/win32-arm64": "0.21.3", + "@esbuild/win32-ia32": "0.21.3", + "@esbuild/win32-x64": "0.21.3" } }, "node_modules/esbuild-wasm": { - "version": "0.19.5", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.19.5.tgz", - "integrity": "sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==", + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.21.3.tgz", + "integrity": "sha512-DMOV+eeVra0yVq3XIojfczdEQsz+RiFnpEj7lqs8Gux9mlTpN7yIbw0a4KzLspn0Uhw6UVEH3nUAidSqc/rcQg==", "dev": true, "bin": { "esbuild": "bin/esbuild" @@ -9245,9 +9346,9 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, "engines": { "node": ">=6" @@ -9267,102 +9368,38 @@ "node": ">=0.8.0" } }, - "node_modules/escodegen": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.2.0.tgz", - "integrity": "sha512-yLy3Cc+zAC0WSmoT2fig3J87TpQ8UaZGx8ahCAs9FL8qNbyV7CVyPKS74DG4bsHiL5ew9sxdYx131OkBQMFnvA==", - "dependencies": { - "esprima": "~1.0.4", - "estraverse": "~1.5.0", - "esutils": "~1.0.0" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=0.4.0" - }, - "optionalDependencies": { - "source-map": "~0.1.30" - } - }, - "node_modules/escodegen/node_modules/esprima": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz", - "integrity": "sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/escodegen/node_modules/estraverse": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz", - "integrity": "sha512-FpCjJDfmo3vsc/1zKSeqR5k42tcIhxFIlvq+h9j0fO2q/h2uLKyweq7rYJ+0CoVvrGQOxIS5wyBrW/+vF58BUQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/escodegen/node_modules/esutils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz", - "integrity": "sha512-x/iYH53X3quDwfHRz4y8rn4XcEwwCJeWsul9pF1zldMbGtgOtMNBEOuYWwB1EQlK2LRa1fev3YAgym/RElp5Cg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==", - "optional": true, - "dependencies": { - "amdefine": ">=0.0.4" - }, - "engines": { - "node": ">=0.8.0" - } - }, "node_modules/eslint": { - "version": "8.54.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.54.0.tgz", - "integrity": "sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==", + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.4.0.tgz", + "integrity": "sha512-sjc7Y8cUD1IlwYcTS9qPSvGjAC8Ne9LctpxKKu3x/1IC9bnOg98Zy6GxEJUfr1NojMgVPlyANXYns8oE2c1TAA==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.54.0", - "@humanwhocodes/config-array": "^0.11.13", + "@eslint/config-array": "^0.15.1", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.4.0", "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", - "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", + "eslint-scope": "^8.0.1", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.0.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", + "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", @@ -9376,38 +9413,38 @@ "eslint": "bin/eslint.js" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-plugin-deprecation": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-2.0.0.tgz", - "integrity": "sha512-OAm9Ohzbj11/ZFyICyR5N6LbOIvQMp7ZU2zI7Ej0jIc8kiGUERXPNMfw2QqqHD1ZHtjMub3yPZILovYEYucgoQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-3.0.0.tgz", + "integrity": "sha512-JuVLdNg/uf0Adjg2tpTyYoYaMbwQNn/c78P1HcccokvhtRphgnRjZDKmhlxbxYptppex03zO76f97DD/yQHv7A==", "dev": true, "dependencies": { - "@typescript-eslint/utils": "^6.0.0", - "tslib": "^2.3.1", - "tsutils": "^3.21.0" + "@typescript-eslint/utils": "^7.0.0", + "ts-api-utils": "^1.3.0", + "tslib": "^2.3.1" }, "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0", + "eslint": "^8.0.0", "typescript": "^4.2.4 || ^5.0.0" } }, "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", + "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", "dev": true, "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" @@ -9456,11 +9493,15 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } }, "node_modules/eslint/node_modules/chalk": { "version": "4.1.2", @@ -9508,6 +9549,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, "node_modules/eslint/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -9536,21 +9589,6 @@ "node": ">=10.13.0" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/eslint/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -9560,18 +9598,6 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -9593,6 +9619,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/eslint/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/eslint/node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -9635,30 +9673,30 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.0.1.tgz", + "integrity": "sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==", "dev": true, "dependencies": { - "acorn": "^8.9.0", + "acorn": "^8.11.3", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "eslint-visitor-keys": "^4.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" @@ -9668,6 +9706,7 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -9709,15 +9748,11 @@ "node": ">=4.0" } }, - "node_modules/estree-is-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/estree-is-function/-/estree-is-function-1.0.0.tgz", - "integrity": "sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA==" - }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -9730,21 +9765,6 @@ "node": ">= 0.6" } }, - "node_modules/event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "node_modules/eventemitter-asyncresource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/eventemitter-asyncresource/-/eventemitter-asyncresource-1.0.0.tgz", - "integrity": "sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==", - "dev": true - }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", @@ -9808,16 +9828,16 @@ "dev": true }, "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.1", + "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -9849,12 +9869,12 @@ } }, "node_modules/express-session": { - "version": "1.17.3", - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.17.3.tgz", - "integrity": "sha512-4+otWXlShYlG1Ma+2Jnn+xgKUZTMJ5QD3YvfilX3AcocOAbIkVylSWEklzALe/+Pu4qV6TYBj5GwOBFfdKqLBw==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", + "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", "dependencies": { - "cookie": "0.4.2", - "cookie-signature": "1.0.6", + "cookie": "0.6.0", + "cookie-signature": "1.0.7", "debug": "2.6.9", "depd": "~2.0.0", "on-headers": "~1.0.2", @@ -9867,13 +9887,18 @@ } }, "node_modules/express-session/node_modules/cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", "engines": { "node": ">= 0.6" } }, + "node_modules/express-session/node_modules/cookie-signature": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" + }, "node_modules/express-session/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -9888,9 +9913,9 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", "engines": { "node": ">= 0.6" } @@ -9903,23 +9928,6 @@ "ms": "2.0.0" } }, - "node_modules/express/node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/express/node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", @@ -9935,64 +9943,11 @@ "node": ">= 0.8" } }, - "node_modules/express/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/express/node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/express/node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/express/node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/express/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -10001,19 +9956,6 @@ "node": ">=0.6" } }, - "node_modules/ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "dependencies": { - "type": "^2.7.2" - } - }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -10059,9 +10001,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -10082,12 +10024,13 @@ "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -10106,43 +10049,30 @@ } }, "node_modules/figures": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", - "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "dependencies": { - "escape-string-regexp": "^5.0.0", - "is-unicode-supported": "^1.2.0" + "escape-string-regexp": "^1.0.5" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "flat-cache": "^4.0.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=16.0.0" } }, "node_modules/filelist": { @@ -10154,15 +10084,6 @@ "minimatch": "^5.0.1" } }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, "node_modules/filelist/node_modules/minimatch": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", @@ -10176,9 +10097,9 @@ } }, "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "dependencies": { "to-regex-range": "^5.0.1" @@ -10188,17 +10109,16 @@ } }, "node_modules/finalhandler": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", - "integrity": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==", - "dev": true, + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.1", + "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.3.1", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { @@ -10209,7 +10129,6 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } @@ -10217,29 +10136,7 @@ "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/finalhandler/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, "node_modules/find-cache-dir": { "version": "4.0.0", @@ -10279,29 +10176,28 @@ } }, "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "dependencies": { "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "keyv": "^4.5.4" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=16" } }, "node_modules/flatted": { - "version": "3.2.9", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", - "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "dev": true, "funding": [ { @@ -10355,16 +10251,17 @@ } }, "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, "dependencies": { "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", + "combined-stream": "^1.0.8", "mime-types": "^2.1.12" }, "engines": { - "node": ">= 0.12" + "node": ">= 6" } }, "node_modules/forwarded": { @@ -10403,14 +10300,17 @@ "dev": true }, "node_modules/fs-extra": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", - "integrity": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^3.0.0", - "universalify": "^0.1.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" } }, "node_modules/fs-minipass": { @@ -10425,12 +10325,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/fs-monkey": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", - "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", - "dev": true - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -10476,11 +10370,6 @@ "node": ">=6.9.0" } }, - "node_modules/get-assigned-identifiers": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", - "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==" - }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -10490,15 +10379,19 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dependencies": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -10536,6 +10429,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -10570,6 +10464,28 @@ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob/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/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -10669,14 +10585,6 @@ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, - "node_modules/has": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", - "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-ansi": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", @@ -10708,20 +10616,20 @@ } }, "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dependencies": { - "get-intrinsic": "^1.2.2" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "engines": { "node": ">= 0.4" }, @@ -10741,11 +10649,11 @@ } }, "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dependencies": { - "has-symbols": "^1.0.2" + "has-symbols": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -10755,13 +10663,12 @@ } }, "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==", "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" }, "engines": { "node": ">=4" @@ -10777,9 +10684,9 @@ } }, "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dependencies": { "function-bind": "^1.1.2" }, @@ -10787,23 +10694,6 @@ "node": ">= 0.4" } }, - "node_modules/hdr-histogram-js": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hdr-histogram-js/-/hdr-histogram-js-2.0.3.tgz", - "integrity": "sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==", - "dev": true, - "dependencies": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" - } - }, - "node_modules/hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hdr-histogram-percentiles-obj/-/hdr-histogram-percentiles-obj-3.0.0.tgz", - "integrity": "sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==", - "dev": true - }, "node_modules/hmac-drbg": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", @@ -10820,9 +10710,9 @@ "integrity": "sha512-qMKuQh6pLPQc0gXsl91hAJEjD4JghV1VukO5gKOzjolCnupCbGHpERzMCkZLwVDLq7sL8xR6P4iWhcM1my3HtA==" }, "node_modules/hosted-git-info": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", - "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", "dev": true, "dependencies": { "lru-cache": "^10.0.1" @@ -10832,9 +10722,9 @@ } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -10852,40 +10742,10 @@ "wbuf": "^1.1.0" } }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "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", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", "dev": true, "funding": [ { @@ -10992,9 +10852,9 @@ } }, "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "dependencies": { "agent-base": "^7.1.0", @@ -11005,27 +10865,20 @@ } }, "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.0.tgz", + "integrity": "sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.8", + "@types/http-proxy": "^1.17.10", + "debug": "^4.3.4", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "micromatch": "^4.0.5" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/http-signature": { @@ -11043,9 +10896,9 @@ } }, "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", "dev": true, "dependencies": { "agent-base": "^7.0.2", @@ -11064,6 +10917,15 @@ "node": ">=10.17.0" } }, + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "dev": true, + "engines": { + "node": ">=10.18" + } + }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", @@ -11108,9 +10970,9 @@ ] }, "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", "dev": true, "engines": { "node": ">= 4" @@ -11123,9 +10985,9 @@ "dev": true }, "node_modules/ignore-walk": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz", - "integrity": "sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz", + "integrity": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==", "dev": true, "dependencies": { "minimatch": "^9.0.0" @@ -11134,30 +10996,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ignore-walk/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/image-size": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", @@ -11178,13 +11016,10 @@ "dev": true }, "node_modules/immutable": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", - "integrity": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", + "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", + "dev": true }, "node_modules/import-fresh": { "version": "3.3.0", @@ -11233,6 +11068,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { "once": "^1.3.0", @@ -11245,26 +11081,26 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", - "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", + "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/inquirer": { - "version": "9.2.11", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.11.tgz", - "integrity": "sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==", + "version": "9.2.22", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.22.tgz", + "integrity": "sha512-SqLLa/Oe5rZUagTR9z+Zd6izyatHglbmbvVofo1KzuVB54YHleWzeHNLoR7FOICGOeQSqeLh1cordb3MzhGcEw==", "dev": true, "dependencies": { - "@ljharb/through": "^2.3.9", + "@inquirer/figures": "^1.0.2", + "@ljharb/through": "^2.3.13", "ansi-escapes": "^4.3.2", "chalk": "^5.3.0", "cli-cursor": "^3.1.0", "cli-width": "^4.1.0", "external-editor": "^3.1.0", - "figures": "^5.0.0", "lodash": "^4.17.21", "mute-stream": "1.0.0", "ora": "^5.4.1", @@ -11275,7 +11111,7 @@ "wrap-ansi": "^6.2.0" }, "engines": { - "node": ">=14.18.0" + "node": ">=18" } }, "node_modules/inquirer/node_modules/chalk": { @@ -11298,10 +11134,23 @@ "node": ">=12" } }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "node_modules/ip-address": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", + "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "dev": true, + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/ip-address/node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", "dev": true }, "node_modules/ipaddr.js": { @@ -11349,6 +11198,7 @@ "version": "2.13.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, "dependencies": { "hasown": "^2.0.0" }, @@ -11414,6 +11264,39 @@ "node": ">=0.10.0" } }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", @@ -11429,6 +11312,18 @@ "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true }, + "node_modules/is-network-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", + "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -11438,15 +11333,6 @@ "node": ">=0.12.0" } }, - "node_modules/is-number-like": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/is-number-like/-/is-number-like-1.0.8.tgz", - "integrity": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==", - "dev": true, - "dependencies": { - "lodash.isfinite": "^3.3.2" - } - }, "node_modules/is-path-cwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", @@ -11546,12 +11432,12 @@ "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" }, "node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -11705,9 +11591,9 @@ } }, "node_modules/istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", "dev": true, "dependencies": { "html-escaper": "^2.0.0", @@ -11718,9 +11604,9 @@ } }, "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.3.0.tgz", + "integrity": "sha512-glPiBfKguqA7v8JsXO3iLjJWZ9FV1vNpoI0I9hI9Mnk5yetO9uPLSpiCEmiVijAssv2f54HpvtzvAHfhPieiDQ==", "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" @@ -11736,9 +11622,9 @@ } }, "node_modules/jake": { - "version": "10.8.7", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", - "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", + "version": "10.9.1", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", + "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", "dev": true, "dependencies": { "async": "^3.2.3", @@ -11768,6 +11654,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/jake/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/jake/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -11811,6 +11707,18 @@ "node": ">=8" } }, + "node_modules/jake/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/jake/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -11838,9 +11746,9 @@ } }, "node_modules/jasmine-core": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.1.1.tgz", - "integrity": "sha512-UrzO3fL7nnxlQXlvTynNAenL+21oUQRlzqQFsA2U11ryb4+NLOCOePZ70PTojEaUKhiFugh7dG0Q+I58xlPdWg==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.1.2.tgz", + "integrity": "sha512-2oIUMGn00FdUiqz6epiiJr7xcFyNYj3rDcfmnzfkBnHyBQ3cBQUs4mmyGsOb7TTLb9kxk7dBcmEmqhDKkBoDyA==", "dev": true }, "node_modules/jasmine-spec-reporter": { @@ -12000,9 +11908,9 @@ } }, "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.1.tgz", + "integrity": "sha512-KMXpzEJMsOFyRj6ZpDTnnlJrdr9umUY+eut5vlRvjVixohitnRFIRTFw9MEu9zPlBxTHZo6xD5ftKYiQZuJYQw==", "dev": true, "bin": { "jiti": "bin/jiti.js" @@ -12028,9 +11936,10 @@ } }, "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", + "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", + "dev": true }, "node_modules/jsesc": { "version": "2.5.2", @@ -12051,10 +11960,13 @@ "dev": true }, "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", + "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, "node_modules/json-schema": { "version": "0.4.0", @@ -12091,16 +12003,19 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", "dev": true }, "node_modules/jsonfile": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", - "integrity": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -12161,36 +12076,6 @@ "setimmediate": "^1.0.5" } }, - "node_modules/jszip/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "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", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/jwa": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", @@ -12211,9 +12096,9 @@ } }, "node_modules/karma": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.2.tgz", - "integrity": "sha512-C6SU/53LB31BEgRg+omznBEMY4SjHU3ricV6zBcAe1EeILKkeScr+fZXtaI5WyDbkVowJxxAI6h73NcFPmXolQ==", + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.3.tgz", + "integrity": "sha512-LuucC/RE92tJ8mlCwqEoRWXP38UMAqpnq98vktmS9SznSoUPPUJQbc91dHcxcunROvfQjdORVA/YFviH+Xci9Q==", "dev": true, "dependencies": { "@colors/colors": "1.5.0", @@ -12235,7 +12120,7 @@ "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", - "socket.io": "^4.4.1", + "socket.io": "^4.7.2", "source-map": "^0.6.1", "tmp": "^0.2.1", "ua-parser-js": "^0.7.30", @@ -12286,6 +12171,28 @@ "node": ">=10.0.0" } }, + "node_modules/karma-coverage/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/karma-coverage/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/karma-jasmine": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-5.1.0.tgz", @@ -12313,9 +12220,9 @@ } }, "node_modules/karma-jasmine/node_modules/jasmine-core": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.6.0.tgz", - "integrity": "sha512-O236+gd0ZXS8YAjFx8xKaJ94/erqUliEkJTDedyE7iHvv4ZVqi+q+8acJxu05/WJDKm512EUNn809In37nWlAQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.6.1.tgz", + "integrity": "sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==", "dev": true }, "node_modules/karma-source-map-support": { @@ -12342,6 +12249,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/karma/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, "node_modules/karma/node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -12371,64 +12288,16 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/karma/node_modules/connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "node_modules/karma/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": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/karma/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/karma/node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/karma/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/karma/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" + "node": "*" } }, "node_modules/karma/node_modules/source-map": { @@ -12440,38 +12309,6 @@ "node": ">=0.10.0" } }, - "node_modules/karma/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/karma/node_modules/ua-parser-js": { - "version": "0.7.37", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.37.tgz", - "integrity": "sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - }, - { - "type": "github", - "url": "https://github.com/sponsors/faisalman" - } - ], - "engines": { - "node": "*" - } - }, "node_modules/karma/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -12534,15 +12371,6 @@ "node": ">=0.10.0" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, "node_modules/launch-editor": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", @@ -12580,23 +12408,29 @@ } }, "node_modules/less-loader": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-11.1.0.tgz", - "integrity": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==", + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-12.2.0.tgz", + "integrity": "sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==", "dev": true, - "dependencies": { - "klona": "^2.0.4" - }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "less": "^3.5.0 || ^4.0.0", "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/less/node_modules/make-dir": { @@ -12695,12 +12529,6 @@ "immediate": "~3.0.5" } }, - "node_modules/limiter": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/limiter/-/limiter-1.1.5.tgz", - "integrity": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==", - "dev": true - }, "node_modules/lines-and-columns": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz", @@ -12710,6 +12538,31 @@ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, + "node_modules/lmdb": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.0.8.tgz", + "integrity": "sha512-9rp8JT4jPhCRJUL7vRARa2N06OLSYzLwQsEkhC6Qu5XbcLyM/XBLMzDlgS/K7l7c5CdURLdDk9uE+hPFIogHTQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "msgpackr": "^1.9.9", + "node-addon-api": "^6.1.0", + "node-gyp-build-optional-packages": "5.1.1", + "ordered-binary": "^1.4.1", + "weak-lru-cache": "^1.2.2" + }, + "bin": { + "download-lmdb-prebuilds": "bin/download-prebuilds.js" + }, + "optionalDependencies": { + "@lmdb/lmdb-darwin-arm64": "3.0.8", + "@lmdb/lmdb-darwin-x64": "3.0.8", + "@lmdb/lmdb-linux-arm": "3.0.8", + "@lmdb/lmdb-linux-arm64": "3.0.8", + "@lmdb/lmdb-linux-x64": "3.0.8", + "@lmdb/lmdb-win32-x64": "3.0.8" + } + }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -12728,129 +12581,6 @@ "node": ">= 12.13.0" } }, - "node_modules/localtunnel": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-2.0.2.tgz", - "integrity": "sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==", - "dev": true, - "dependencies": { - "axios": "0.21.4", - "debug": "4.3.2", - "openurl": "1.1.1", - "yargs": "17.1.1" - }, - "bin": { - "lt": "bin/lt.js" - }, - "engines": { - "node": ">=8.3.0" - } - }, - "node_modules/localtunnel/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/localtunnel/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/localtunnel/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/localtunnel/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/localtunnel/node_modules/debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/localtunnel/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/localtunnel/node_modules/yargs": { - "version": "17.1.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz", - "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==", - "dev": true, - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/localtunnel/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" - } - }, "node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -12883,12 +12613,6 @@ "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" }, - "node_modules/lodash.isfinite": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/lodash.isfinite/-/lodash.isfinite-3.3.2.tgz", - "integrity": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==", - "dev": true - }, "node_modules/lodash.isinteger": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", @@ -12994,18 +12718,6 @@ "node": ">=8" } }, - "node_modules/log-symbols/node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/log-symbols/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -13044,15 +12756,12 @@ } }, "node_modules/magic-string": { - "version": "0.30.5", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", - "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", "dev": true, "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" } }, "node_modules/make-dir": { @@ -13077,9 +12786,9 @@ "dev": true }, "node_modules/make-fetch-happen": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", - "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz", + "integrity": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==", "dev": true, "dependencies": { "@npmcli/agent": "^2.0.0", @@ -13091,6 +12800,7 @@ "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^0.6.3", + "proc-log": "^4.2.0", "promise-retry": "^2.0.1", "ssri": "^10.0.0" }, @@ -13123,15 +12833,22 @@ } }, "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.9.2.tgz", + "integrity": "sha512-f16coDZlTG1jskq3mxarwB+fGRrd0uXWt+o1WIhRfOwbXQZqUDsTVxQBFK9JjRQHblg8eAG2JSbprDXKjc7ijQ==", "dev": true, "dependencies": { - "fs-monkey": "^1.0.4" + "@jsonjoy.com/json-pack": "^1.0.3", + "@jsonjoy.com/util": "^1.1.2", + "sonic-forest": "^1.0.0", + "tslib": "^2.0.0" }, "engines": { "node": ">= 4.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" } }, "node_modules/merge-descriptors": { @@ -13139,22 +12856,6 @@ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" }, - "node_modules/merge-source-map": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.0.4.tgz", - "integrity": "sha512-PGSmS0kfnTnMJCzJ16BLLCEe6oeYCamKFFdQKshi4BmM6FUwipjVOcBFGxqtQtirtAG4iZvHlqST9CpZKqlRjA==", - "dependencies": { - "source-map": "^0.5.6" - } - }, - "node_modules/merge-source-map/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -13179,12 +12880,12 @@ } }, "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", + "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", "dev": true, "dependencies": { - "braces": "^3.0.2", + "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { @@ -13261,12 +12962,13 @@ } }, "node_modules/mini-css-extract-plugin": { - "version": "2.7.6", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", - "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", + "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", "dev": true, "dependencies": { - "schema-utils": "^4.0.0" + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" }, "engines": { "node": ">= 12.13.0" @@ -13290,68 +12992,54 @@ "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" }, "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", "dev": true, "dependencies": { - "minipass": "^3.0.0" + "minipass": "^7.0.3" }, "engines": { - "node": ">= 8" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-collect/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/minipass-fetch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", - "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz", + "integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==", "dev": true, "dependencies": { "minipass": "^7.0.3", @@ -13514,12 +13202,6 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/mitt": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", - "integrity": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==", - "dev": true - }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -13533,9 +13215,9 @@ } }, "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", "dev": true, "engines": { "node": ">=10" @@ -13546,6 +13228,49 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/msgpackr": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.2.tgz", + "integrity": "sha512-L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==", + "dev": true, + "optionalDependencies": { + "msgpackr-extract": "^3.0.2" + } + }, + "node_modules/msgpackr-extract": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.2.tgz", + "integrity": "sha512-SdzXp4kD/Qf8agZ9+iTu6eql0m3kWm1A2y1hkpTeVNENutaB0BwHlSvAIaMxwntmRUAUjon2V4L8Z/njd0Ct8A==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "dependencies": { + "node-gyp-build-optional-packages": "5.0.7" + }, + "bin": { + "download-msgpackr-prebuilds": "bin/download-prebuilds.js" + }, + "optionalDependencies": { + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.2", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.2", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.2", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.2", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.2", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.2" + } + }, + "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.0.7.tgz", + "integrity": "sha512-YlCCc6Wffkx0kHkmam79GKvDQ6x+QZkMjFGrIMxgFNILFvGSbCp2fCBC55pGTT9gVaz8Na5CLmxt/urtzRv36w==", + "dev": true, + "optional": true, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" + } + }, "node_modules/multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", @@ -13593,13 +13318,12 @@ "dev": true }, "node_modules/needle": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", - "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", + "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", "dev": true, "optional": true, "dependencies": { - "debug": "^3.2.6", "iconv-lite": "^0.6.3", "sax": "^1.2.4" }, @@ -13610,16 +13334,6 @@ "node": ">= 4.4.x" } }, - "node_modules/needle/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "optional": true, - "dependencies": { - "ms": "^2.1.1" - } - }, "node_modules/needle/node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -13647,22 +13361,17 @@ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - }, "node_modules/ng-qrcode": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/ng-qrcode/-/ng-qrcode-17.0.0.tgz", - "integrity": "sha512-dqnW/VwC4vaS9tIeUG9wlmKrGI8SzcOx9/LeHMbJSbKg1+Gm+MxwSnDbohn88idn4OukO9wscIMFfIj4NyOFnA==", + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/ng-qrcode/-/ng-qrcode-18.0.0.tgz", + "integrity": "sha512-qmtU6n8lxyTGxrtRbzXYPR7JNGwQ6SZXqnEUQksjmFsPLssZRchal9zlw4eUMPm/bRxy+hSV6dWe/59mTNtc8A==", "dependencies": { "qrcode": "^1.5.3", "tslib": "^2.6.2" }, "peerDependencies": { - "@angular/common": ">=17 <18", - "@angular/core": ">=17 <18" + "@angular/common": ">=18 <19", + "@angular/core": ">=18 <19" } }, "node_modules/ngx-perfect-scrollbar-next": { @@ -13694,13 +13403,19 @@ "node-gyp-build": "^4.2.2" } }, - "node_modules/node-addon-api": { + "node_modules/nice-napi/node_modules/node-addon-api": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", "dev": true, "optional": true }, + "node_modules/node-addon-api": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", + "dev": true + }, "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", @@ -13711,9 +13426,9 @@ } }, "node_modules/node-gyp": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", - "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz", + "integrity": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==", "dev": true, "dependencies": { "env-paths": "^2.2.0", @@ -13735,9 +13450,9 @@ } }, "node_modules/node-gyp-build": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.7.0.tgz", - "integrity": "sha512-PbZERfeFdrHQOOXiAKOY0VPbykZy90ndPKk0d+CFDegTKmWp1VgOTz2xACVbr1BjCWxrQp68CXtvNsveFhqDJg==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", "dev": true, "optional": true, "bin": { @@ -13746,32 +13461,37 @@ "node-gyp-build-test": "build-test.js" } }, - "node_modules/node-gyp/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/node-gyp-build-optional-packages": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz", + "integrity": "sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "detect-libc": "^2.0.1" + }, + "bin": { + "node-gyp-build-optional-packages": "bin.js", + "node-gyp-build-optional-packages-optional": "optional.js", + "node-gyp-build-optional-packages-test": "build-test.js" } }, "node_modules/node-gyp/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -13787,9 +13507,9 @@ } }, "node_modules/node-gyp/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -13801,6 +13521,15 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/node-gyp/node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, "node_modules/node-gyp/node_modules/which": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", @@ -13823,19 +13552,19 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "node_modules/nodemon": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.0.1.tgz", - "integrity": "sha512-g9AZ7HmkhQkqXkRc20w+ZfQ73cHLbE8hnPbtaFbFtCumZsjyMhKk9LajQ07U5Ux28lvFjZ5X7HvWR1xzU8jHVw==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.3.tgz", + "integrity": "sha512-m4Vqs+APdKzDFpuaL9F9EVOF85+h070FnkHVEoU4+rmT6Vw0bmNl7s61VEkY/cJkL7RCv1p4urnUDUMrS5rk2w==", "dev": true, "dependencies": { "chokidar": "^3.5.2", - "debug": "^3.2.7", + "debug": "^4", "ignore-by-default": "^1.0.1", "minimatch": "^3.1.2", "pstree.remy": "^1.1.8", @@ -13856,19 +13585,32 @@ "url": "https://opencollective.com/nodemon" } }, - "node_modules/nodemon/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/nodemon/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "balanced-match": "^1.0.0", + "concat-map": "0.0.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/nopt": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", - "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", + "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", "dev": true, "dependencies": { "abbrev": "^2.0.0" @@ -13881,9 +13623,9 @@ } }, "node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz", + "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==", "dev": true, "dependencies": { "hosted-git-info": "^7.0.0", @@ -13914,9 +13656,9 @@ } }, "node_modules/npm-bundled": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", - "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz", + "integrity": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==", "dev": true, "dependencies": { "npm-normalize-package-bin": "^3.0.0" @@ -13947,13 +13689,13 @@ } }, "node_modules/npm-package-arg": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", - "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz", + "integrity": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==", "dev": true, "dependencies": { "hosted-git-info": "^7.0.0", - "proc-log": "^3.0.0", + "proc-log": "^4.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^5.0.0" }, @@ -13962,21 +13704,21 @@ } }, "node_modules/npm-packlist": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.0.tgz", - "integrity": "sha512-ErAGFB5kJUciPy1mmx/C2YFbvxoJ0QJ9uwkCZOeR6CqLLISPZBOiFModAbSXnjjlwW5lOhuhXva+fURsSGJqyw==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz", + "integrity": "sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==", "dev": true, "dependencies": { - "ignore-walk": "^6.0.0" + "ignore-walk": "^6.0.4" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/npm-pick-manifest": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz", - "integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz", + "integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==", "dev": true, "dependencies": { "npm-install-checks": "^6.0.0", @@ -13989,18 +13731,19 @@ } }, "node_modules/npm-registry-fetch": { - "version": "16.1.0", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.1.0.tgz", - "integrity": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==", + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-17.0.1.tgz", + "integrity": "sha512-fLu9MTdZTlJAHUek/VLklE6EpIiP3VZpTiuN7OOMCt2Sd67NCpSEetMaxHHEZiZxllp8ZLsUpvbEszqTFEc+wA==", "dev": true, "dependencies": { + "@npmcli/redact": "^2.0.0", "make-fetch-happen": "^13.0.0", "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", "minipass-json-stream": "^1.0.1", "minizlib": "^2.1.2", "npm-package-arg": "^11.0.0", - "proc-log": "^3.0.0" + "proc-log": "^4.0.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -14031,17 +13774,17 @@ } }, "node_modules/nx": { - "version": "17.1.2", - "resolved": "https://registry.npmjs.org/nx/-/nx-17.1.2.tgz", - "integrity": "sha512-pf94ri36cAiSzbYcPTJwQzttgAsHSjCLEni0Ilw6aVdjpoV2l6cggYxwddX7pgtCWuokVp/6KhAxVkbzvH65wg==", + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/nx/-/nx-19.1.2.tgz", + "integrity": "sha512-hqD0HglmZCqgPLGcEfLq79El9iBUlinoncmsk6wsPHJM1IrASxHkemJZiehYilQx55QACd1MGBjC2nySZmgyLA==", "dev": true, "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "17.1.2", + "@nrwl/tao": "19.1.2", "@yarnpkg/lockfile": "^1.1.0", "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.6", - "axios": "^1.5.1", + "@zkochan/js-yaml": "0.0.7", + "axios": "^1.6.0", "chalk": "^4.1.0", "cli-cursor": "3.1.0", "cli-spinners": "2.6.1", @@ -14052,24 +13795,22 @@ "figures": "3.2.0", "flat": "^5.0.2", "fs-extra": "^11.1.0", - "glob": "7.1.4", "ignore": "^5.0.4", "jest-diff": "^29.4.1", - "js-yaml": "4.1.0", "jsonc-parser": "3.2.0", "lines-and-columns": "~2.0.3", - "minimatch": "3.0.5", + "minimatch": "9.0.3", "node-machine-id": "1.1.12", "npm-run-path": "^4.0.1", "open": "^8.4.0", - "semver": "7.5.3", + "ora": "5.3.0", + "semver": "^7.5.3", "string-width": "^4.2.3", "strong-log-transformer": "^2.1.0", "tar-stream": "~2.2.0", "tmp": "~0.2.1", "tsconfig-paths": "^4.1.2", "tslib": "^2.3.0", - "v8-compile-cache": "2.3.0", "yargs": "^17.6.2", "yargs-parser": "21.1.1" }, @@ -14078,19 +13819,19 @@ "nx-cloud": "bin/nx-cloud.js" }, "optionalDependencies": { - "@nx/nx-darwin-arm64": "17.1.2", - "@nx/nx-darwin-x64": "17.1.2", - "@nx/nx-freebsd-x64": "17.1.2", - "@nx/nx-linux-arm-gnueabihf": "17.1.2", - "@nx/nx-linux-arm64-gnu": "17.1.2", - "@nx/nx-linux-arm64-musl": "17.1.2", - "@nx/nx-linux-x64-gnu": "17.1.2", - "@nx/nx-linux-x64-musl": "17.1.2", - "@nx/nx-win32-arm64-msvc": "17.1.2", - "@nx/nx-win32-x64-msvc": "17.1.2" + "@nx/nx-darwin-arm64": "19.1.2", + "@nx/nx-darwin-x64": "19.1.2", + "@nx/nx-freebsd-x64": "19.1.2", + "@nx/nx-linux-arm-gnueabihf": "19.1.2", + "@nx/nx-linux-arm64-gnu": "19.1.2", + "@nx/nx-linux-arm64-musl": "19.1.2", + "@nx/nx-linux-x64-gnu": "19.1.2", + "@nx/nx-linux-x64-musl": "19.1.2", + "@nx/nx-win32-arm64-msvc": "19.1.2", + "@nx/nx-win32-x64-msvc": "19.1.2" }, "peerDependencies": { - "@swc-node/register": "^1.6.7", + "@swc-node/register": "^1.8.0", "@swc/core": "^1.3.85" }, "peerDependenciesMeta": { @@ -14117,23 +13858,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/nx/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/nx/node_modules/axios": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", - "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", - "dev": true, - "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, "node_modules/nx/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -14168,64 +13892,16 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, - "node_modules/nx/node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/nx/node_modules/dotenv": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz", + "integrity": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==", "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nx/node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/nx/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/nx/node_modules/glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" + "url": "https://github.com/motdotla/dotenv?sponsor=1" } }, "node_modules/nx/node_modules/has-flag": { @@ -14237,67 +13913,32 @@ "node": ">=8" } }, - "node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } + "node_modules/nx/node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true }, - "node_modules/nx/node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/nx/node_modules/ora": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz", + "integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==", "dev": true, "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/nx/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" + "bl": "^4.0.3", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "log-symbols": "^4.0.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "engines": { "node": ">=10" - } - }, - "node_modules/nx/node_modules/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" }, - "engines": { - "node": "*" - } - }, - "node_modules/nx/node_modules/semver": { - "version": "7.5.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", - "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/nx/node_modules/supports-color": { @@ -14312,21 +13953,6 @@ "node": ">=8" } }, - "node_modules/nx/node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/nx/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", @@ -14353,12 +13979,12 @@ } }, "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -14441,45 +14067,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/openurl": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/openurl/-/openurl-1.1.1.tgz", - "integrity": "sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==", - "dev": true - }, - "node_modules/opn": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.3.0.tgz", - "integrity": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==", - "dev": true, - "dependencies": { - "is-wsl": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/opn/node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -14566,18 +14165,6 @@ "node": ">=8" } }, - "node_modules/ora/node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/ora/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -14590,6 +14177,12 @@ "node": ">=8" } }, + "node_modules/ordered-binary": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.1.tgz", + "integrity": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==", + "dev": true + }, "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", @@ -14650,16 +14243,20 @@ } }, "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.0.tgz", + "integrity": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==", "dev": true, "dependencies": { - "@types/retry": "0.12.0", + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", "retry": "^0.13.1" }, "engines": { - "node": ">=8" + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-retry/node_modules/retry": { @@ -14680,32 +14277,31 @@ } }, "node_modules/pacote": { - "version": "17.0.4", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.4.tgz", - "integrity": "sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==", + "version": "18.0.6", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-18.0.6.tgz", + "integrity": "sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==", "dev": true, "dependencies": { "@npmcli/git": "^5.0.0", "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/package-json": "^5.1.0", "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.0", + "@npmcli/run-script": "^8.0.0", "cacache": "^18.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", "npm-package-arg": "^11.0.0", "npm-packlist": "^8.0.0", "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", - "proc-log": "^3.0.0", + "npm-registry-fetch": "^17.0.0", + "proc-log": "^4.0.0", "promise-retry": "^2.0.1", - "read-package-json": "^7.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^2.0.0", + "sigstore": "^2.2.0", "ssri": "^10.0.0", "tar": "^6.1.11" }, "bin": { - "pacote": "lib/bin.js" + "pacote": "bin/index.js" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -14730,15 +14326,19 @@ } }, "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz", + "integrity": "sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==", "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "asn1.js": "^4.10.1", + "browserify-aes": "^1.2.0", + "evp_bytestokey": "^1.0.3", + "hash-base": "~3.0", + "pbkdf2": "^3.1.2", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 0.10" } }, "node_modules/parse-json": { @@ -14759,6 +14359,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parse-json/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, "node_modules/parse-json/node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -14778,7 +14384,7 @@ "version": "7.1.2", "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", - "devOptional": true, + "dev": true, "dependencies": { "entities": "^4.4.0" }, @@ -14855,28 +14461,29 @@ "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", + "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -14912,9 +14519,9 @@ } }, "node_modules/pdfmake": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.8.tgz", - "integrity": "sha512-lI+amfIaUL8CrPhndxFdhIgMj9JB49Sj4DARltKC1gLm/5NsPohZqfB+D+II8HymtPB6eugUFD5oBxmzO57qHA==", + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.10.tgz", + "integrity": "sha512-doipFnmE1UHSk+Z3wfQuVweVQqx2pE/Ns2G5gCqZmWwqjDj+mZHnZYH/ryXWoIfD+iVdZUAutgI/VHkTCN+Xrw==", "dependencies": { "@foliojs-fork/linebreak": "^1.1.1", "@foliojs-fork/pdfkit": "^0.14.0", @@ -14947,18 +14554,18 @@ "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", "dev": true }, "node_modules/picomatch": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-3.0.1.tgz", - "integrity": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" @@ -14995,15 +14602,10 @@ } }, "node_modules/piscina": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.1.0.tgz", - "integrity": "sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.5.0.tgz", + "integrity": "sha512-iBaLWI56PFP81cfBSomWTmhOo9W2/yhIOL+Tk8O1vBCpK39cM0tGxB+wgYjG31qq4ohGvysfXSdnj8h7g4rZxA==", "dev": true, - "dependencies": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0" - }, "optionalDependencies": { "nice-napi": "^1.0.2" } @@ -15118,33 +14720,10 @@ "node": ">=10.13.0" } }, - "node_modules/portscanner": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.2.0.tgz", - "integrity": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==", - "dev": true, - "dependencies": { - "async": "^2.6.0", - "is-number-like": "^1.0.3" - }, - "engines": { - "node": ">=0.4", - "npm": ">=1.0.0" - } - }, - "node_modules/portscanner/node_modules/async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "dev": true, - "dependencies": { - "lodash": "^4.17.14" - } - }, "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", "dev": true, "funding": [ { @@ -15161,40 +14740,55 @@ } ], "dependencies": { - "nanoid": "^3.3.6", + "nanoid": "^3.3.7", "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "source-map-js": "^1.2.0" }, "engines": { "node": "^10 || ^12 || >=14" } }, "node_modules/postcss-loader": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.3.tgz", - "integrity": "sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.1.1.tgz", + "integrity": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==", "dev": true, "dependencies": { - "cosmiconfig": "^8.2.0", - "jiti": "^1.18.2", - "semver": "^7.3.8" + "cosmiconfig": "^9.0.0", + "jiti": "^1.20.0", + "semver": "^7.5.4" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "postcss": "^7.0.0 || ^8.0.1", "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, + "node_modules/postcss-media-query-parser": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", + "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", + "dev": true + }, "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", + "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true, "engines": { "node": "^10 || ^12 || >= 14" @@ -15204,9 +14798,9 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", + "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", "dev": true, "dependencies": { "icss-utils": "^5.0.0", @@ -15221,9 +14815,9 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", + "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.4" @@ -15251,9 +14845,9 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", + "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", "dev": true, "dependencies": { "cssesc": "^3.0.0", @@ -15278,18 +14872,6 @@ "node": ">= 0.8.0" } }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/pretty-format": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", @@ -15317,14 +14899,22 @@ } }, "node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", + "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", "dev": true, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -15706,19 +15296,6 @@ } ] }, - "node_modules/quote-stream": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz", - "integrity": "sha512-kKr2uQ2AokadPjvTyKJQad9xELbZwYzWlNfI3Uz2j/ib5u6H9lDP7fUUR//rMycd0gv4Z5P1qXMfXR8YpIxrjQ==", - "dependencies": { - "buffer-equal": "0.0.1", - "minimist": "^1.1.3", - "through2": "^2.0.0" - }, - "bin": { - "quote-stream": "bin/cmd.js" - } - }, "node_modules/random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", @@ -15756,7 +15333,6 @@ "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - "dev": true, "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -15771,7 +15347,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "dev": true, "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -15787,122 +15362,35 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, "engines": { "node": ">=0.6" } }, "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "dev": true }, - "node_modules/read-package-json": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz", - "integrity": "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==", - "dev": true, - "dependencies": { - "glob": "^10.2.2", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/read-package-json-fast": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", - "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", - "dev": true, - "dependencies": { - "json-parse-even-better-errors": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/read-package-json/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/read-package-json/node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/read-package-json/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, + "node_modules/readable-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/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -15928,9 +15416,9 @@ } }, "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", + "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", "dev": true }, "node_modules/regenerate": { @@ -15952,9 +15440,9 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true }, "node_modules/regenerator-transform": { @@ -15967,19 +15455,20 @@ } }, "node_modules/regex-parser": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", - "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz", + "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==", "dev": true }, "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -16089,6 +15578,19 @@ "request": "^2.34" } }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, "node_modules/request/node_modules/qs": { "version": "6.5.3", "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", @@ -16134,6 +15636,7 @@ "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, "dependencies": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", @@ -16194,34 +15697,6 @@ "node": ">=0.10.0" } }, - "node_modules/resp-modifier": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/resp-modifier/-/resp-modifier-6.0.2.tgz", - "integrity": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==", - "dev": true, - "dependencies": { - "debug": "^2.2.0", - "minimatch": "^3.0.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/resp-modifier/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/resp-modifier/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", @@ -16255,14 +15730,15 @@ } }, "node_modules/rfdc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz", - "integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==" + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.3.1.tgz", + "integrity": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==" }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -16295,21 +15771,52 @@ "dev": true }, "node_modules/rollup": { - "version": "3.29.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", - "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", + "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", "dev": true, + "dependencies": { + "@types/estree": "1.0.5" + }, "bin": { "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=14.18.0", + "node": ">=18.0.0", "npm": ">=8.0.0" }, "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.18.0", + "@rollup/rollup-android-arm64": "4.18.0", + "@rollup/rollup-darwin-arm64": "4.18.0", + "@rollup/rollup-darwin-x64": "4.18.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", + "@rollup/rollup-linux-arm-musleabihf": "4.18.0", + "@rollup/rollup-linux-arm64-gnu": "4.18.0", + "@rollup/rollup-linux-arm64-musl": "4.18.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", + "@rollup/rollup-linux-riscv64-gnu": "4.18.0", + "@rollup/rollup-linux-s390x-gnu": "4.18.0", + "@rollup/rollup-linux-x64-gnu": "4.18.0", + "@rollup/rollup-linux-x64-musl": "4.18.0", + "@rollup/rollup-win32-arm64-msvc": "4.18.0", + "@rollup/rollup-win32-ia32-msvc": "4.18.0", + "@rollup/rollup-win32-x64-msvc": "4.18.0", "fsevents": "~2.3.2" } }, + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-async": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", @@ -16342,12 +15849,6 @@ "queue-microtask": "^1.2.2" } }, - "node_modules/rx": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz", - "integrity": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==", - "dev": true - }, "node_modules/rxjs": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", @@ -16387,9 +15888,9 @@ "dev": true }, "node_modules/sass": { - "version": "1.69.5", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", - "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", + "version": "1.77.2", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", + "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -16404,29 +15905,29 @@ } }, "node_modules/sass-loader": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.2.tgz", - "integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==", + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", + "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", "dev": true, "dependencies": { "neo-async": "^2.6.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "fibers": ">= 3.1.0", + "@rspack/core": "0.x || 1.x", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "fibers": { + "@rspack/core": { "optional": true }, "node-sass": { @@ -16437,15 +15938,12 @@ }, "sass-embedded": { "optional": true + }, + "webpack": { + "optional": true } } }, - "node_modules/sass/node_modules/immutable": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", - "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", - "dev": true - }, "node_modules/saucelabs": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz", @@ -16493,9 +15991,9 @@ } }, "node_modules/sax": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", - "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" }, "node_modules/schema-utils": { "version": "4.2.0", @@ -16516,18 +16014,21 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/scope-analyzer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/scope-analyzer/-/scope-analyzer-2.1.2.tgz", - "integrity": "sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ==", + "node_modules/schema-utils/node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, "dependencies": { - "array-from": "^2.1.1", - "dash-ast": "^2.0.1", - "es6-map": "^0.1.5", - "es6-set": "^0.1.5", - "es6-symbol": "^3.1.1", - "estree-is-function": "^1.0.0", - "get-assigned-identifiers": "^1.1.0" + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, "node_modules/select-hose": { @@ -16555,6 +16056,7 @@ "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -16589,12 +16091,9 @@ } }, "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "bin": { "semver": "bin/semver.js" }, @@ -16602,41 +16101,24 @@ "node": ">=10" } }, - "node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, "node_modules/send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", - "dev": true, + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dependencies": { "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", + "depd": "2.0.0", + "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" @@ -16646,93 +16128,58 @@ "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { "ms": "2.0.0" } }, - "node_modules/send/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/send/node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==", - "dev": true - }, - "node_modules/send/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/send/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/send/node_modules/mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", - "dev": true, - "bin": { - "mime": "cli.js" - } - }, - "node_modules/send/node_modules/ms": { + "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "node_modules/send/node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", - "dev": true, + "node_modules/send/node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dependencies": { - "ee-first": "1.1.1" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.8" } }, - "node_modules/send/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/send/node_modules/statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", - "dev": true, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, "engines": { - "node": ">= 0.6" + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/send/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" } }, "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, "dependencies": { "randombytes": "^2.1.0" @@ -16817,53 +16264,49 @@ } }, "node_modules/serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", - "dev": true, + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" + "parseurl": "~1.3.3", + "send": "0.18.0" }, "engines": { "node": ">= 0.8.0" } }, - "node_modules/server-destroy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", - "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==", - "dev": true - }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" }, "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dependencies": { - "define-data-property": "^1.0.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -16913,11 +16356,6 @@ "node": ">=8" } }, - "node_modules/shallow-copy": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz", - "integrity": "sha512-b6i4ZpVuUxB9h5gfCxPiusKYkqTMOjEbBs4wMaFbkfia4yFv92UKZ6Df8WXcKbn08JNL/abvg3FnMAOfakDvUw==" - }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -16949,13 +16387,17 @@ } }, "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -16968,15 +16410,17 @@ "dev": true }, "node_modules/sigstore": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.1.0.tgz", - "integrity": "sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.3.1.tgz", + "integrity": "sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==", "dev": true, "dependencies": { - "@sigstore/bundle": "^2.1.0", - "@sigstore/protobuf-specs": "^0.2.1", - "@sigstore/sign": "^2.1.0", - "@sigstore/tuf": "^2.1.0" + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.2", + "@sigstore/sign": "^2.3.2", + "@sigstore/tuf": "^2.3.4", + "@sigstore/verify": "^1.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -17014,9 +16458,9 @@ } }, "node_modules/socket.io": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.2.tgz", - "integrity": "sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==", + "version": "4.7.5", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz", + "integrity": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==", "dev": true, "dependencies": { "accepts": "~1.3.4", @@ -17032,11 +16476,12 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", - "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.4.tgz", + "integrity": "sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==", "dev": true, "dependencies": { + "debug": "~4.3.4", "ws": "~8.11.0" } }, @@ -17062,9 +16507,9 @@ } }, "node_modules/socket.io-client": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.2.tgz", - "integrity": "sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==", + "version": "4.7.5", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.5.tgz", + "integrity": "sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", @@ -17108,26 +16553,26 @@ } }, "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", + "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", "dev": true, "dependencies": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 10.13.0", + "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, "node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz", + "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==", "dev": true, "dependencies": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.1", "debug": "^4.3.4", "socks": "^2.7.1" }, @@ -17135,6 +16580,25 @@ "node": ">= 14" } }, + "node_modules/sonic-forest": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sonic-forest/-/sonic-forest-1.0.3.tgz", + "integrity": "sha512-dtwajos6IWMEWXdEbW1IkEkyL2gztCAgDplRIX+OT5aRKnEd5e7r7YCxRgXZdhRP1FBdOBf8axeTPhzDv8T4wQ==", + "dev": true, + "dependencies": { + "tree-dump": "^1.0.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/source-map": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", @@ -17145,26 +16609,25 @@ } }, "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", "dev": true, "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-loader": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz", - "integrity": "sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-5.0.0.tgz", + "integrity": "sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==", "dev": true, "dependencies": { - "abab": "^2.0.6", "iconv-lite": "^0.6.3", "source-map-js": "^1.0.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -17205,12 +16668,6 @@ "node": ">=0.10.0" } }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "deprecated": "Please use @jridgewell/sourcemap-codec instead" - }, "node_modules/spdx-correct": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", @@ -17222,9 +16679,9 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true }, "node_modules/spdx-expression-parse": { @@ -17238,9 +16695,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", - "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "version": "3.0.18", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", + "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", "dev": true }, "node_modules/spdy": { @@ -17273,6 +16730,20 @@ "wbuf": "^1.7.3" } }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", @@ -17303,10 +16774,15 @@ "node": ">=0.10.0" } }, + "node_modules/sshpk/node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, "node_modules/ssri": { - "version": "10.0.5", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", - "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "version": "10.0.6", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", + "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", "dev": true, "dependencies": { "minipass": "^7.0.3" @@ -17315,240 +16791,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/static-eval": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.0.tgz", - "integrity": "sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==", - "dependencies": { - "escodegen": "^1.11.1" - } - }, - "node_modules/static-eval/node_modules/escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/static-eval/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/static-eval/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-eval/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-eval/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-eval/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-eval/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-module": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/static-module/-/static-module-3.0.4.tgz", - "integrity": "sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw==", - "dependencies": { - "acorn-node": "^1.3.0", - "concat-stream": "~1.6.0", - "convert-source-map": "^1.5.1", - "duplexer2": "~0.1.4", - "escodegen": "^1.11.1", - "has": "^1.0.1", - "magic-string": "0.25.1", - "merge-source-map": "1.0.4", - "object-inspect": "^1.6.0", - "readable-stream": "~2.3.3", - "scope-analyzer": "^2.0.1", - "shallow-copy": "~0.0.1", - "static-eval": "^2.0.5", - "through2": "~2.0.3" - } - }, - "node_modules/static-module/node_modules/escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/static-module/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/static-module/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-module/node_modules/magic-string": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.1.tgz", - "integrity": "sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg==", - "dependencies": { - "sourcemap-codec": "^1.4.1" - } - }, - "node_modules/static-module/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-module/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/static-module/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "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", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-module/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/static-module/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -17574,20 +16816,17 @@ "readable-stream": "^3.5.0" } }, - "node_modules/stream-throttle": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/stream-throttle/-/stream-throttle-0.1.3.tgz", - "integrity": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==", - "dev": true, + "node_modules/stream-browserify/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { - "commander": "^2.2.0", - "limiter": "^1.0.5" - }, - "bin": { - "throttleproxy": "bin/throttleproxy.js" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 6" } }, "node_modules/streamroller": { @@ -17627,14 +16866,28 @@ "graceful-fs": "^4.1.6" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" + "node_modules/streamroller/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" } }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder/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/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", @@ -17750,6 +17003,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, "engines": { "node": ">= 0.4" }, @@ -17776,9 +17030,9 @@ } }, "node_modules/tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "dev": true, "dependencies": { "chownr": "^2.0.0", @@ -17808,6 +17062,20 @@ "node": ">=6" } }, + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/tar/node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -17860,9 +17128,9 @@ "dev": true }, "node_modules/terser": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", - "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", + "version": "5.31.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", + "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", @@ -17878,16 +17146,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "terser": "^5.26.0" }, "engines": { "node": ">= 10.13.0" @@ -17974,12 +17242,46 @@ "node": ">=8" } }, + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/test-exclude/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/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, + "node_modules/thingies": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz", + "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==", + "dev": true, + "engines": { + "node": ">=10.18" + }, + "peerDependencies": { + "tslib": "^2" + } + }, "node_modules/thirty-two": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/thirty-two/-/thirty-two-1.0.2.tgz", @@ -17991,43 +17293,8 @@ "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "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", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true }, "node_modules/thunky": { "version": "1.1.0", @@ -18041,15 +17308,12 @@ "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" }, "node_modules/tmp": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", - "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", + "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", "dev": true, - "dependencies": { - "rimraf": "^3.0.0" - }, "engines": { - "node": ">=8.17.0" + "node": ">=14.14" } }, "node_modules/to-fast-properties": { @@ -18082,38 +17346,14 @@ } }, "node_modules/touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", + "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", "dev": true, - "dependencies": { - "nopt": "~1.0.10" - }, "bin": { "nodetouch": "bin/nodetouch.js" } }, - "node_modules/touch/node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "node_modules/touch/node_modules/nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", - "dev": true, - "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "*" - } - }, "node_modules/tough-cookie": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", @@ -18126,6 +17366,22 @@ "node": ">=0.8" } }, + "node_modules/tree-dump": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.1.tgz", + "integrity": "sha512-WCkcRBVPSlHHq1dc/px9iOfqklvzCbdRwvlNfxGZsrHqf6aZttfPrd7DJTt6oR10dwUfpFFQeVTkPbBIZxX/YA==", + "dev": true, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", @@ -18136,21 +17392,21 @@ } }, "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", "dev": true, "engines": { - "node": ">=16.13.0" + "node": ">=16" }, "peerDependencies": { "typescript": ">=4.2.0" } }, "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", @@ -18190,15 +17446,6 @@ } } }, - "node_modules/ts-node/node_modules/acorn-walk": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", - "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/tsconfig-paths": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", @@ -18214,9 +17461,9 @@ } }, "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" }, "node_modules/tsscmp": { "version": "1.0.6", @@ -18226,36 +17473,15 @@ "node": ">=0.6.x" } }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, "node_modules/tuf-js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.1.0.tgz", - "integrity": "sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.1.tgz", + "integrity": "sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==", "dev": true, "dependencies": { - "@tufjs/models": "2.0.0", + "@tufjs/models": "2.0.1", "debug": "^4.3.4", - "make-fetch-happen": "^13.0.0" + "make-fetch-happen": "^13.0.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -18277,11 +17503,6 @@ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -18324,15 +17545,10 @@ "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", "dev": true }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - }, "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -18343,9 +17559,9 @@ } }, "node_modules/ua-parser-js": { - "version": "1.0.37", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", - "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", + "version": "0.7.38", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.38.tgz", + "integrity": "sha512-fYmIy7fKTSFAhG3fuPlubeGaMoAd6r0rSnfEsO5nEY55i26KSLt9EH7PLQiiqPUhNqYIJvSkTy1oArIcXAbPbA==", "dev": true, "funding": [ { @@ -18383,15 +17599,12 @@ "dev": true }, "node_modules/undici": { - "version": "5.27.2", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.27.2.tgz", - "integrity": "sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==", + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.18.0.tgz", + "integrity": "sha512-nT8jjv/fE9Et1ilR6QoW8ingRTY2Pp4l2RUrdzV5Yz35RJDrtPc1DXvuNqcpsJSGIRHFdt3YKKktTzJA6r0fTA==", "dev": true, - "dependencies": { - "@fastify/busboy": "^2.0.0" - }, "engines": { - "node": ">=14.0" + "node": ">=18.17" } }, "node_modules/undici-types": { @@ -18488,12 +17701,12 @@ } }, "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "engines": { - "node": ">= 4.0.0" + "node": ">= 10.0.0" } }, "node_modules/unpipe": { @@ -18505,9 +17718,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", + "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", "dev": true, "funding": [ { @@ -18524,8 +17737,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -18564,12 +17777,6 @@ "uuid": "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", @@ -18587,13 +17794,10 @@ } }, "node_modules/validate-npm-package-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", - "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", + "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", "dev": true, - "dependencies": { - "builtins": "^5.0.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -18619,30 +17823,35 @@ "extsprintf": "^1.2.0" } }, + "node_modules/verror/node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" + }, "node_modules/vite": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.0.tgz", - "integrity": "sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==", + "version": "5.2.11", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", + "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", "dev": true, "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" + "esbuild": "^0.20.1", + "postcss": "^8.4.38", + "rollup": "^4.13.0" }, "bin": { "vite": "bin/vite.js" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^18.0.0 || >=20.0.0" }, "funding": { "url": "https://github.com/vitejs/vite?sponsor=1" }, "optionalDependencies": { - "fsevents": "~2.3.2" + "fsevents": "~2.3.3" }, "peerDependencies": { - "@types/node": ">= 14", + "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", @@ -18674,10 +17883,26 @@ } } }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", "cpu": [ "arm" ], @@ -18691,9 +17916,9 @@ } }, "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", "cpu": [ "arm64" ], @@ -18707,9 +17932,9 @@ } }, "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", "cpu": [ "x64" ], @@ -18723,9 +17948,9 @@ } }, "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", "cpu": [ "arm64" ], @@ -18739,9 +17964,9 @@ } }, "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", "cpu": [ "x64" ], @@ -18755,9 +17980,9 @@ } }, "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", "cpu": [ "arm64" ], @@ -18771,9 +17996,9 @@ } }, "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", "cpu": [ "x64" ], @@ -18787,9 +18012,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", "cpu": [ "arm" ], @@ -18803,9 +18028,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", "cpu": [ "arm64" ], @@ -18819,9 +18044,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", "cpu": [ "ia32" ], @@ -18835,9 +18060,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", "cpu": [ "loong64" ], @@ -18851,9 +18076,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", "cpu": [ "mips64el" ], @@ -18867,9 +18092,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", "cpu": [ "ppc64" ], @@ -18883,9 +18108,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", "cpu": [ "riscv64" ], @@ -18899,9 +18124,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", "cpu": [ "s390x" ], @@ -18915,9 +18140,9 @@ } }, "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", "cpu": [ "x64" ], @@ -18931,9 +18156,9 @@ } }, "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", "cpu": [ "x64" ], @@ -18947,9 +18172,9 @@ } }, "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", "cpu": [ "x64" ], @@ -18963,9 +18188,9 @@ } }, "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", "cpu": [ "x64" ], @@ -18979,9 +18204,9 @@ } }, "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", "cpu": [ "arm64" ], @@ -18995,9 +18220,9 @@ } }, "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", "cpu": [ "ia32" ], @@ -19011,9 +18236,9 @@ } }, "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", "cpu": [ "x64" ], @@ -19027,9 +18252,9 @@ } }, "node_modules/vite/node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "dev": true, "hasInstallScript": true, "bin": { @@ -19039,30 +18264,36 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, "node_modules/void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", @@ -19073,9 +18304,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", + "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -19103,6 +18334,12 @@ "defaults": "^1.0.3" } }, + "node_modules/weak-lru-cache": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", + "integrity": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==", + "dev": true + }, "node_modules/webdriver-js-extender": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/webdriver-js-extender/-/webdriver-js-extender-2.1.0.tgz", @@ -19185,6 +18422,7 @@ "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -19224,34 +18462,34 @@ } }, "node_modules/webpack": { - "version": "5.89.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", - "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "version": "5.91.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", + "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", "dev": true, "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", "acorn": "^8.7.1", "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.16.0", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -19271,19 +18509,20 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.1.tgz", - "integrity": "sha512-y51HrHaFeeWir0YO4f0g+9GwZawuigzcAdRNon6jErXy/SqV/+O6eaVAzDqE6t3e3NpGeR5CS+cCDaTC+V3yEQ==", + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.2.1.tgz", + "integrity": "sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==", "dev": true, "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.4.12", + "memfs": "^4.6.0", "mime-types": "^2.1.31", + "on-finished": "^2.4.1", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -19299,54 +18538,54 @@ } }, "node_modules/webpack-dev-server": { - "version": "4.15.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", - "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.0.4.tgz", + "integrity": "sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==", "dev": true, "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.5", + "@types/bonjour": "^3.5.13", + "@types/connect-history-api-fallback": "^1.5.4", + "@types/express": "^4.17.21", + "@types/serve-index": "^1.9.4", + "@types/serve-static": "^1.15.5", + "@types/sockjs": "^0.3.36", + "@types/ws": "^8.5.10", "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", + "bonjour-service": "^1.2.1", + "chokidar": "^3.6.0", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", + "html-entities": "^2.4.0", "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", + "ipaddr.js": "^2.1.0", + "launch-editor": "^2.6.1", + "open": "^10.0.3", + "p-retry": "^6.2.0", + "rimraf": "^5.0.5", + "schema-utils": "^4.2.0", + "selfsigned": "^2.4.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.13.0" + "webpack-dev-middleware": "^7.1.0", + "ws": "^8.16.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" + "webpack": "^5.0.0" }, "peerDependenciesMeta": { "webpack": { @@ -19357,45 +18596,137 @@ } } }, - "node_modules/webpack-dev-server/node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "node_modules/webpack-dev-server/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "dev": true, "engines": { - "node": ">=0.8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/glob": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.1.tgz", + "integrity": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", - "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", + "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", "dev": true, "engines": { "node": ">= 10" } }, - "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "node_modules/webpack-dev-server/node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dev": true, "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" + "is-inside-container": "^1.0.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">=16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webpack-dev-server/node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dev": true, + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/rimraf": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz", + "integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==", + "dev": true, + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/webpack-merge": { @@ -19489,6 +18820,12 @@ "node": ">=4.0" } }, + "node_modules/webpack/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, "node_modules/webpack/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -19566,6 +18903,7 @@ "version": "1.2.5", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -19671,9 +19009,9 @@ "dev": true }, "node_modules/ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz", + "integrity": "sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==", "engines": { "node": ">=10.0.0" }, @@ -19728,14 +19066,6 @@ "node": ">=0.4.0" } }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -19800,12 +19130,9 @@ } }, "node_modules/zone.js": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.2.tgz", - "integrity": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==", - "dependencies": { - "tslib": "^2.3.0" - } + "version": "0.14.6", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.6.tgz", + "integrity": "sha512-vyRNFqofdaHVdWAy7v3Bzmn84a1JHWSjpuTZROT/uYn8I3p2cmo7Ro9twFmYRQDPhiYOV7QLk0hhY4JJQVqS6Q==" } } } diff --git a/package.json b/package.json index 112e28da..3336eb40 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rtl", - "version": "0.15.0-beta", + "version": "0.15.1-beta", "license": "MIT", "type": "module", "scripts": { @@ -8,6 +8,7 @@ "start": "ng serve --open", "prebuildfrontendtest": "node src/prebuild.cjs", "prebuildfrontend": "node src/prebuild.cjs", + "watchfrontenddev": "ng build --configuration development --optimization false --watch", "buildfrontendtest": "ng test --watch=false && ng build", "buildfrontend": "ng build --configuration production", "buildbackend": "tsc --project ./server/tsconfig.server.json", @@ -21,77 +22,79 @@ }, "private": true, "dependencies": { - "@ngrx/effects": "^17.0.0", - "@ngrx/store": "^17.0.0", + "@ngrx/effects": "^17.2.0", + "@ngrx/store": "^17.2.0", "@swimlane/ngx-charts": "^20.5.0", "angular-user-idle": "^4.0.0", "atob": "^2.1.2", "cookie-parser": "^1.4.6", "crypto-browserify": "^3.12.0", "csurf": "^1.11.0", - "express": "^4.18.2", - "express-session": "^1.17.3", + "express": "^4.19.2", + "express-session": "^1.18.0", "hocon-parser": "^1.0.1", - "ini": "^4.1.1", + "ini": "^4.1.3", "jsonwebtoken": "^9.0.2", - "ng-qrcode": "^17.0.0", + "ng-qrcode": "^18.0.0", "ngx-perfect-scrollbar-next": "^10.1.1", "otplib": "^12.0.1", - "pdfmake": "^0.2.8", + "pdfmake": "^0.2.10", + "process": "^0.11.10", "request": "^2.88.2", "request-promise": "^4.2.6", "rxjs": "^7.8.1", "sha256": "^0.2.0", - "socket.io-client": "^4.7.2", + "socket.io-client": "^4.7.5", "stream-browserify": "^3.0.0", "tslib": "^2.6.2", - "ws": "^8.14.2", - "zone.js": "^0.14.2" + "vm-browserify": "^1.1.2", + "ws": "^8.17.0", + "zone.js": "^0.14.6" }, "devDependencies": { - "@angular-devkit/build-angular": "^17.0.3", - "@angular-eslint/builder": "^17.1.0", - "@angular-eslint/eslint-plugin": "^17.1.0", - "@angular-eslint/eslint-plugin-template": "^17.1.0", - "@angular-eslint/schematics": "^17.1.0", - "@angular-eslint/template-parser": "^17.1.0", - "@angular/animations": "^17.0.4", + "@angular-devkit/build-angular": "^18.0.2", + "@angular-eslint/builder": "^18.0.1", + "@angular-eslint/eslint-plugin": "^18.0.1", + "@angular-eslint/eslint-plugin-template": "^18.0.1", + "@angular-eslint/schematics": "^18.0.1", + "@angular-eslint/template-parser": "^18.0.1", + "@angular/animations": "^18.0.1", "@angular/cdk": "^17.0.1", - "@angular/cli": "^17.0.3", - "@angular/common": "^17.0.4", - "@angular/compiler": "^17.0.4", - "@angular/compiler-cli": "^17.0.4", - "@angular/core": "^17.0.4", + "@angular/cli": "^18.0.2", + "@angular/common": "^18.0.1", + "@angular/compiler": "^18.0.1", + "@angular/compiler-cli": "^18.0.1", + "@angular/core": "^18.0.1", "@angular/flex-layout": "^15.0.0-beta.42", - "@angular/forms": "^17.0.4", + "@angular/forms": "^18.0.1", "@angular/material": "^17.0.1", - "@angular/platform-browser": "^17.0.4", - "@angular/platform-browser-dynamic": "^17.0.4", - "@angular/router": "^17.0.4", - "@fortawesome/angular-fontawesome": "^0.14.0", - "@fortawesome/fontawesome-svg-core": "^6.4.2", - "@fortawesome/free-regular-svg-icons": "^6.4.2", - "@fortawesome/free-solid-svg-icons": "^6.4.2", - "@ngrx/store-devtools": "^17.0.0", + "@angular/platform-browser": "^18.0.1", + "@angular/platform-browser-dynamic": "^18.0.1", + "@angular/router": "^18.0.1", + "@fortawesome/angular-fontawesome": "^0.15.0", + "@fortawesome/fontawesome-svg-core": "^6.5.2", + "@fortawesome/free-regular-svg-icons": "^6.5.2", + "@fortawesome/free-solid-svg-icons": "^6.5.2", + "@ngrx/store-devtools": "^17.2.0", "@types/jasmine": "^5.1.4", - "@types/node": "^20.9.4", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", - "dotenv": "^16.3.1", - "eslint": "^8.53.0", - "eslint-plugin-deprecation": "^2.0.0", - "jasmine-core": "^5.1.1", + "@types/node": "^20.14.1", + "@typescript-eslint/eslint-plugin": "^7.12.0", + "@typescript-eslint/parser": "^7.12.0", + "dotenv": "^16.4.5", + "eslint": "^9.4.0", + "eslint-plugin-deprecation": "^3.0.0", + "jasmine-core": "^5.1.2", "jasmine-spec-reporter": "^7.0.0", - "karma": "^6.4.2", + "karma": "^6.4.3", "karma-chrome-launcher": "^3.2.0", "karma-coverage": "^2.2.1", "karma-jasmine": "^5.1.0", "karma-jasmine-html-reporter": "^2.1.0", "material-icons": "^1.13.12", - "nodemon": "^3.0.1", + "nodemon": "^3.1.3", "protractor": "^7.0.0", "roboto-fontface": "^0.10.0", - "ts-node": "^10.9.1", - "typescript": "~5.2.2" + "ts-node": "^10.9.2", + "typescript": "~5.4.5" } -} +} \ No newline at end of file diff --git a/rtl.js b/rtl.js index cfcbf7fd..4c10ef78 100644 --- a/rtl.js +++ b/rtl.js @@ -5,11 +5,16 @@ import { Config } from './backend/utils/config.js'; // Follow sequence to set se import { WSServer } from './backend/utils/webSocketServer.js'; import App from './backend/utils/app.js'; + const logger = Logger; const common = Common; const wsServer = WSServer; const app = new App(); +process.on('SIGINT', () => { + process.exit(); +}); + const onError = (error) => { if (error.syscall !== 'listen') { throw error; } switch (error.code) { diff --git a/server/controllers/cln/channels.ts b/server/controllers/cln/channels.ts index cc91f685..62f02914 100644 --- a/server/controllers/cln/channels.ts +++ b/server/controllers/cln/channels.ts @@ -11,7 +11,7 @@ export const listPeerChannels = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Peer Channels..' }); 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/listpeerchannels'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeerchannels'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Peer Channels List Received', data: body.channels }); return Promise.all(body.channels?.map((channel) => { @@ -32,7 +32,7 @@ export const openChannel = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Opening Channel..' }); 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/fundchannel'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/fundchannel'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Open Channel Options', data: options.body }); request.post(options).then((body) => { @@ -48,7 +48,7 @@ export const setChannelFee = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Setting Channel Fee..' }); 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/setchannel'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/setchannel'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Update Channel Policy Options', data: options.body }); request.post(options).then((body) => { @@ -65,7 +65,7 @@ export const closeChannel = (req, res, next) => { req.setTimeout(60000 * 10); // timeout 10 mins 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/close'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/close'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel', data: options.url }); request.post(options).then((body) => { @@ -78,14 +78,15 @@ export const closeChannel = (req, res, next) => { }; export const listForwards = (req, res, next) => { + const { status } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Channel List Forwards..' }); 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/listforwards'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listforwards'; options.body = req.body; request.post(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Forwarding History Received For Status ' + req.body.status, data: body }); - body.forwards = !body.forwards ? [] : (req.body.status === 'failed' || req.body.status === 'local_failed') ? body.forwards.slice(Math.max(0, body.forwards.length - 1000), Math.max(1000, body.forwards.length)).reverse() : body.forwards.reverse(); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Forwarding History Received For Status ' + status, data: body }); + body.forwards = !body.forwards ? [] : (status === 'failed' || status === 'local_failed') ? body.forwards.slice(Math.max(0, body.forwards.length - 1000), Math.max(1000, body.forwards.length)).reverse() : body.forwards.reverse(); res.status(200).json(body.forwards); }).catch((errRes) => { const err = common.handleError(errRes, 'Channels', 'Forwarding History Error', req.session.selectedNode); @@ -97,7 +98,7 @@ export const funderUpdatePolicy = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting or Updating Funder Policy..' }); 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/funderupdate'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/funderupdate'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Funder Update Body', data: options.body }); request.post(options).then((body) => { diff --git a/server/controllers/cln/getInfo.ts b/server/controllers/cln/getInfo.ts index f1630c4b..bdb773d9 100644 --- a/server/controllers/cln/getInfo.ts +++ b/server/controllers/cln/getInfo.ts @@ -16,8 +16,8 @@ export const getInfo = (req, res, next) => { common.setOptions(req); 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/getinfo'; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.ln_node }); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/getinfo'; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.lnNode }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Calling Info from Core Lightning server url ' + options.url }); if (!options.headers || !options.headers.rune) { const errMsg = 'Core lightning get info failed due to missing rune!'; @@ -45,7 +45,7 @@ export const getInfo = (req, res, next) => { body.uris.push(body.id + '@' + addr.address + ':' + addr.port); }); } - req.session.selectedNode.ln_version = body.version || ''; + req.session.selectedNode.lnVersion = body.version || ''; req.session.selectedNode.api_version = body.api_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); diff --git a/server/controllers/cln/invoices.ts b/server/controllers/cln/invoices.ts index 3cac3ee8..7ff9eee5 100644 --- a/server/controllers/cln/invoices.ts +++ b/server/controllers/cln/invoices.ts @@ -9,7 +9,7 @@ export const deleteExpiredInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Deleting Expired Invoices..' }); 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/delexpiredinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/delexpiredinvoice'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoices Deleted', data: body }); @@ -24,7 +24,7 @@ export const listInvoices = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Getting Invoices..' }); 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/listinvoices'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listinvoices'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List URL', data: options.url }); request.post(options).then((body) => { @@ -40,7 +40,7 @@ export const addInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); 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/invoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoice'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Created', data: body }); diff --git a/server/controllers/cln/network.ts b/server/controllers/cln/network.ts index 2286bf17..37cf8ad1 100644 --- a/server/controllers/cln/network.ts +++ b/server/controllers/cln/network.ts @@ -1,7 +1,7 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; @@ -11,7 +11,7 @@ export const getRoute = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Routes..' }); 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/getroute'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/getroute'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Routes Received', data: body }); @@ -29,7 +29,7 @@ export const listChannels = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Channel Lookup..' }); 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/listchannels'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listchannels'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Channel Lookup Finished', data: body }); @@ -41,13 +41,14 @@ export const listChannels = (req, res, next) => { }; export const feeRates = (req, res, next) => { + const { style } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Fee Rates..' }); 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/feerates'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/feerates'; options.body = req.body; request.post(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Fee Rates Received for ' + req.body.style, data: body }); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Fee Rates Received for ' + style, data: body }); res.status(200).json(body); }).catch((errRes) => { const err = common.handleError(errRes, 'Network', 'Fee Rates Error', req.session.selectedNode); @@ -56,12 +57,12 @@ export const feeRates = (req, res, next) => { }; export const listNodes = (req, res, next) => { + const filter_liquidity_ads = !!req.body.liquidity_ads; + delete req.body.liquidity_ads; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'List Nodes..' }); 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/listnodes'; - const filter_liquidity_ads = !!req.body.liquidity_ads; - delete req.body.liquidity_ads; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listnodes'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Network', msg: 'List Nodes URL' + options.url }); request.post(options).then((body) => { @@ -77,8 +78,8 @@ export const listNodes = (req, res, next) => { }); }; -export const getAlias = (selNode: CommonSelectedNode, peer: any, id: string) => { - options.url = selNode.ln_server_url + '/v1/listnodes'; +export const getAlias = (selNode: SelectedNode, peer: any, id: string) => { + options.url = selNode.settings.lnServerUrl + '/v1/listnodes'; if (!peer[id]) { logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Network', msg: 'Empty Peer ID' }); peer.alias = ''; diff --git a/server/controllers/cln/offers.ts b/server/controllers/cln/offers.ts index d9bfa453..993b852c 100644 --- a/server/controllers/cln/offers.ts +++ b/server/controllers/cln/offers.ts @@ -21,10 +21,11 @@ export const listOfferBookmarks = (req, res, next) => { }; export const deleteOfferBookmark = (req, res, next) => { + const { offer_str } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Deleting Offer Bookmark..' }); - databaseService.remove(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, req.body.offer_str).then((deleteRes) => { + databaseService.remove(req.session.selectedNode, CollectionsEnum.OFFERS, CollectionFieldsEnum.BOLT12, offer_str).then((deleteRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Bookmark Deleted', data: deleteRes }); - res.status(204).json(req.body.offer_str); + res.status(204).json(offer_str); }).catch((errRes) => { const err = common.handleError(errRes, 'Offers', 'Offer Bookmark Delete Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); @@ -35,7 +36,7 @@ export const listOffers = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Getting Offers..' }); 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/listoffers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listoffers'; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Offers', msg: 'Offers List URL', data: options.url }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offers List Received', data: body }); @@ -50,7 +51,7 @@ export const createOffer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Creating Offer..' }); 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/offer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/offer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Created', data: body }); @@ -65,7 +66,7 @@ export const fetchOfferInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Getting Offer Invoice..' }); 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/fetchinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/fetchinvoice'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Offers', msg: 'Offer Invoice Body', data: options.body }); request.post(options).then((body) => { @@ -81,7 +82,7 @@ export const disableOffer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Disabling Offer..' }); 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/disableOffer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableOffer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Disabled', data: body }); diff --git a/server/controllers/cln/onchain.ts b/server/controllers/cln/onchain.ts index 3763135c..0495499b 100644 --- a/server/controllers/cln/onchain.ts +++ b/server/controllers/cln/onchain.ts @@ -9,7 +9,7 @@ export const getNewAddress = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Generating New Address..' }); 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/newaddr'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/newaddr'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'New Address Generated', data: body }); @@ -24,7 +24,7 @@ export const onChainWithdraw = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Withdrawing from On Chain..' }); 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/withdraw'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/withdraw'; options.body = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'OnChain', msg: 'OnChain Withdraw Options', data: options.body }); request.post(options).then((body) => { @@ -40,7 +40,7 @@ export const getUTXOs = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Listing Funds..' }); 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/listfunds'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listfunds'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Funds List Received', data: body }); // Local Remote Balance Calculation diff --git a/server/controllers/cln/payments.ts b/server/controllers/cln/payments.ts index 735087bc..fbf424aa 100644 --- a/server/controllers/cln/payments.ts +++ b/server/controllers/cln/payments.ts @@ -3,15 +3,15 @@ import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { Database, DatabaseService } from '../../utils/database.js'; import { CollectionFieldsEnum, CollectionsEnum, Offer } from '../../models/database.model.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; const databaseService: DatabaseService = Database; -export const getMemo = (selNode: CommonSelectedNode, payment: any) => { - options.url = selNode.ln_server_url + '/v1/decode'; +export const getMemo = (selNode: SelectedNode, payment: any) => { + options.url = selNode.settings.lnServerUrl + '/v1/decode'; options.body = { string: payment.bolt11 }; return request.post(options).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment Decode Received', data: res }); @@ -74,7 +74,7 @@ export const listPayments = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'List Payments..' }); 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/listsendpays'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listsendpays'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment List Received', data: body.payments }); body.payments = body.payments && body.payments.length && body.payments.length > 0 ? groupBy(body.payments) : []; @@ -89,12 +89,13 @@ export const listPayments = (req, res, next) => { }; export const postPayment = (req, res, next) => { + const { paymentType, saveToDB, bolt12, zeroAmtOffer, amount_msat, title, issuer, description } = req.body; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } const options_body = JSON.parse(JSON.stringify(req.body)); - if (req.body.paymentType === 'KEYSEND') { + if (paymentType === 'KEYSEND') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Keysend Payment..' }); - options.url = req.session.selectedNode.ln_server_url + '/v1/keysend'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/keysend'; delete options_body.uiMessage; delete options_body.fromDialog; delete options_body.paymentType; @@ -112,12 +113,12 @@ export const postPayment = (req, res, next) => { delete options_body.saveToDB; options.body = options_body; } else { - if (req.body.paymentType === 'OFFER') { + if (paymentType === 'OFFER') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Offer Payment..' }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Invoice Payment..' }); } - if (req.body.paymentType === 'OFFER') { + if (paymentType === 'OFFER') { // delete amount for zero amt offer also as fetchinvoice already has amount information delete options_body.amount_msat; } @@ -133,18 +134,18 @@ export const postPayment = (req, res, next) => { delete options_body.pubkey; delete options_body.saveToDB; options.body = options_body; - options.url = req.session.selectedNode.ln_server_url + '/v1/pay'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/pay'; } request.post(options).then((body) => { 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_msat), title: req.body.title, lastUpdatedAt: new Date(Date.now()).getTime() }; - if (req.body.issuer) { offerToUpdate['issuer'] = req.body.issuer; } - if (req.body.description) { offerToUpdate['description'] = req.body.description; } + if (paymentType === 'OFFER') { + if (saveToDB && bolt12) { + const offerToUpdate: Offer = { bolt12: bolt12, amountMSat: (zeroAmtOffer ? 0 : amount_msat), title: title, lastUpdatedAt: new Date(Date.now()).getTime() }; + if (issuer) { offerToUpdate['issuer'] = issuer; } + if (description) { offerToUpdate['description'] = description; } // 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) => { + return databaseService.update(req.session.selectedNode, CollectionsEnum.OFFERS, offerToUpdate, CollectionFieldsEnum.BOLT12, 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) => { @@ -159,10 +160,10 @@ export const postPayment = (req, res, next) => { return res.status(201).json({ paymentResponse: body, saveToDBResponse: 'NA' }); } } - if (req.body.paymentType === 'INVOICE') { + if (paymentType === 'INVOICE') { return res.status(201).json({ paymentResponse: body, saveToDBResponse: 'NA' }); } - if (req.body.paymentType === 'KEYSEND') { + if (paymentType === 'KEYSEND') { return res.status(201).json(body); } }).catch((errRes) => { diff --git a/server/controllers/cln/peers.ts b/server/controllers/cln/peers.ts index 24e19a02..2772cf40 100644 --- a/server/controllers/cln/peers.ts +++ b/server/controllers/cln/peers.ts @@ -11,7 +11,7 @@ export const getPeers = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'List Peers..' }); 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/listpeers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; @@ -29,12 +29,12 @@ export const postPeer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Connecting Peer..' }); 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/connect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/connect'; options.body = req.body; request.post(options).then((connectRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: connectRes }); const listOptions = common.getOptions(req); - listOptions.url = req.session.selectedNode.ln_server_url + '/v1/listpeers'; + listOptions.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(listOptions).then((listPeersRes) => { const peers = listPeersRes && listPeersRes.peers ? common.newestOnTop(listPeersRes.peers, 'id', connectRes.id) : []; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); @@ -53,7 +53,7 @@ export const deletePeer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Disconnecting Peer..' }); 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/disconnect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disconnect'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peer Disconnected', data: body }); diff --git a/server/controllers/cln/utility.ts b/server/controllers/cln/utility.ts index 147a6656..2949d40d 100644 --- a/server/controllers/cln/utility.ts +++ b/server/controllers/cln/utility.ts @@ -10,7 +10,7 @@ export const decodePayment = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Decoding 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/decode'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/decode'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Decoded', data: body }); @@ -25,7 +25,7 @@ export const signMessage = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Signing Message..' }); 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/signmessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/signmessage'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Signed', data: body }); @@ -40,7 +40,7 @@ export const verifyMessage = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Verifying Message..' }); 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/checkmessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/checkmessage'; options.body = req.body; request.post(options, (error, response, body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); @@ -55,7 +55,7 @@ export const listConfigs = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Utility', msg: 'List Configs..' }); 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/listconfigs'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listconfigs'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Utility', msg: 'List Configs Received', data: body }); res.status(200).json(body); diff --git a/server/controllers/cln/webSocketClient.ts b/server/controllers/cln/webSocketClient.ts index f9191d59..25100a20 100644 --- a/server/controllers/cln/webSocketClient.ts +++ b/server/controllers/cln/webSocketClient.ts @@ -2,14 +2,14 @@ import socketIOClient from 'socket.io-client'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; export class CLWebSocketClient { public logger: LoggerService = Logger; public common: CommonService = Common; public wsServer = WSServer; - public webSocketClients: Array<{ selectedNode: CommonSelectedNode, reConnect: boolean, webSocketClient: any }> = []; + public webSocketClients: Array<{ selectedNode: SelectedNode, reConnect: boolean, webSocketClient: any }> = []; public reconnectTimeOut = null; public waitTime = 0.5; @@ -34,17 +34,17 @@ export class CLWebSocketClient { }, this.waitTime * 1000); }; - public connect = (selectedNode: CommonSelectedNode) => { + public connect = (selectedNode: SelectedNode) => { try { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (!clientExists) { - if (selectedNode.ln_server_url) { + if (selectedNode.settings.lnServerUrl) { const newWebSocketClient = { selectedNode: selectedNode, reConnect: true, webSocketClient: null }; this.connectWithClient(newWebSocketClient); this.webSocketClients.push(newWebSocketClient); } } else { - if ((!clientExists.webSocketClient || !clientExists.webSocketClient.connected) && selectedNode.ln_server_url) { + if ((!clientExists.webSocketClient || !clientExists.webSocketClient.connected) && selectedNode.settings.lnServerUrl) { clientExists.reConnect = true; this.connectWithClient(clientExists); } @@ -57,11 +57,11 @@ export class CLWebSocketClient { public connectWithClient = (clWsClt) => { this.logger.log({ selectedNode: clWsClt.selectedNode, level: 'INFO', fileName: 'CLWebSocket', msg: 'Connecting to the Core Lightning\'s Websocket Server..' }); try { - if (!clWsClt.selectedNode.rune_value) { - clWsClt.selectedNode.rune_value = this.common.getRuneValue(clWsClt.selectedNode.rune_path); + if (!clWsClt.selectedNode.authentication.runeValue) { + clWsClt.selectedNode.authentication.runeValue = this.common.getRuneValue(clWsClt.selectedNode.authentication.runePath); } - clWsClt.webSocketClient = socketIOClient(clWsClt.selectedNode.ln_server_url, { - extraHeaders: { rune: clWsClt.selectedNode.rune_value }, + clWsClt.webSocketClient = socketIOClient(clWsClt.selectedNode.settings.lnServerUrl, { + extraHeaders: { rune: clWsClt.selectedNode.authentication.runeValue }, transports: ['websocket'], secure: true, rejectUnauthorized: false @@ -76,7 +76,7 @@ export class CLWebSocketClient { }); clWsClt.webSocketClient.on('disconnect', (reason) => { - if (clWsClt && clWsClt.selectedNode && clWsClt.selectedNode.ln_implementation === 'CLN') { + if (clWsClt && clWsClt.selectedNode && clWsClt.selectedNode.lnImplementation === 'CLN') { this.logger.log({ selectedNode: clWsClt.selectedNode, level: 'INFO', fileName: 'CLWebSocket', msg: 'Web socket disconnected, will reconnect again...', data: reason }); clWsClt.webSocketClient.close(); if (clWsClt.reConnect) { this.reconnect(clWsClt); } @@ -97,7 +97,7 @@ export class CLWebSocketClient { }); }; - public disconnect = (selectedNode: CommonSelectedNode) => { + public disconnect = (selectedNode: SelectedNode) => { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (clientExists && clientExists.webSocketClient && clientExists.webSocketClient.connected) { this.logger.log({ selectedNode: clientExists.selectedNode, level: 'INFO', fileName: 'CLWebSocket', msg: 'Disconnecting from the Core Lightning\'s Websocket Server..' }); @@ -108,7 +108,7 @@ export class CLWebSocketClient { } }; - public updateSelectedNode = (newSelectedNode: CommonSelectedNode) => { + public updateSelectedNode = (newSelectedNode: SelectedNode) => { const clientIdx = this.webSocketClients.findIndex((wsc) => +wsc.selectedNode.index === +newSelectedNode.index); let newClient = this.webSocketClients[clientIdx]; if (!newClient) { newClient = { selectedNode: null, reConnect: true, webSocketClient: null }; } diff --git a/server/controllers/eclair/channels.ts b/server/controllers/eclair/channels.ts index 7bd5a4cf..2451d34c 100644 --- a/server/controllers/eclair/channels.ts +++ b/server/controllers/eclair/channels.ts @@ -1,7 +1,7 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; import { createInvoiceRequestCall, listPendingInvoicesRequestCall } from './invoices.js'; import { findRouteBetweenNodesRequestCall } from './network.js'; import { getSentInfoFromPaymentRequest, sendPaymentToRouteRequestCall } from './payments.js'; @@ -10,7 +10,7 @@ let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const simplifyAllChannels = (selNode: CommonSelectedNode, channels) => { +export const simplifyAllChannels = (selNode: SelectedNode, channels) => { let channelNodeIds = ''; const simplifiedChannels = []; channels.forEach((channel) => { @@ -30,7 +30,7 @@ export const simplifyAllChannels = (selNode: CommonSelectedNode, channels) => { }); }); channelNodeIds = channelNodeIds.substring(1); - options.url = selNode.ln_server_url + '/nodes'; + options.url = selNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: channelNodeIds }; logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Node Ids to find alias', data: channelNodeIds }); return request.post(options).then((nodes) => { @@ -49,7 +49,7 @@ export const getChannels = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'List Channels..' }); 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 + '/channels'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/channels'; options.form = {}; if (req.query && req.query.nodeId) { options.form = req.query; @@ -57,7 +57,7 @@ export const getChannels = (req, res, next) => { } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: options }); if (common.read_dummy_data) { - common.getDummyData('Channels', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(data); }); + common.getDummyData('Channels', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } else { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels List Received', data: body }); @@ -82,7 +82,7 @@ export const getChannelStats = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Channel States..' }); 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 + '/channelstats'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/channelstats'; const today = new Date(Date.now()); const tillToday = (Math.round(today.getTime() / 1000)).toString(); const fromLastMonth = (Math.round(new Date(today.getFullYear(), today.getMonth() - 1, today.getDate() + 1, 0, 0, 0).getTime() / 1000)).toString(); @@ -103,7 +103,7 @@ export const openChannel = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Opening Channel..' }); 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 + '/open'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/open'; options.form = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Open Channel Params', data: options.form }); request.post(options).then((body) => { @@ -119,7 +119,7 @@ export const updateChannelRelayFee = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Updating Channel Relay Fee..' }); 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 + '/updaterelayfee'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/updaterelayfee'; options.form = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Update Relay Fee Params', data: options.form }); request.post(options).then((body) => { @@ -136,10 +136,10 @@ export const closeChannel = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } if (req.query.force !== 'true') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closing Channel..' }); - options.url = req.session.selectedNode.ln_server_url + '/close'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/close'; } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Force Closing Channel..' }); - options.url = req.session.selectedNode.ln_server_url + '/forceclose'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/forceclose'; } options.form = { channelId: req.query.channelId }; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Close URL', data: options.url }); @@ -154,7 +154,8 @@ export const closeChannel = (req, res, next) => { }; export const circularRebalance = (req, res, next) => { - const crInvDescription = 'Circular rebalancing invoice for ' + (req.body.amountMsat / 1000) + ' Sats'; + const { amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format, sourceShortChannelId, targetShortChannelId } = req.body; + const crInvDescription = 'Circular rebalancing invoice for ' + (amountMsat / 1000) + ' Sats'; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.form = req.body; @@ -162,22 +163,22 @@ export const circularRebalance = (req, res, next) => { const tillToday = (Math.round(new Date(Date.now()).getTime() / 1000)).toString(); // Check if unpaid Invoice exists already listPendingInvoicesRequestCall(req.session.selectedNode).then((callRes: any[]) => { - const foundExistingInvoice = callRes.find((inv) => inv.description.includes(crInvDescription) && inv.amount === req.body.amountMsat && inv.expiry && inv.timestamp && ((inv.expiry + inv.timestamp) >= tillToday)); + const foundExistingInvoice = callRes.find((inv) => inv.description.includes(crInvDescription) && inv.amount === amountMsat && inv.expiry && inv.timestamp && ((inv.expiry + inv.timestamp) >= tillToday)); // Create new invoice if doesn't exist already const requestCalls = foundExistingInvoice && foundExistingInvoice.serialized ? - [findRouteBetweenNodesRequestCall(req.session.selectedNode, req.body.amountMsat, req.body.sourceNodeId, req.body.targetNodeId, req.body.ignoreNodeIds, req.body.format)] : - [findRouteBetweenNodesRequestCall(req.session.selectedNode, req.body.amountMsat, req.body.sourceNodeId, req.body.targetNodeId, req.body.ignoreNodeIds, req.body.format), createInvoiceRequestCall(req.session.selectedNode, crInvDescription, req.body.amountMsat)]; + [findRouteBetweenNodesRequestCall(req.session.selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format)] : + [findRouteBetweenNodesRequestCall(req.session.selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format), createInvoiceRequestCall(req.session.selectedNode, crInvDescription, amountMsat)]; Promise.all(requestCalls).then((values: any[]) => { // eslint-disable-next-line arrow-body-style const routes = values[0]?.routes?.filter((route) => { - return !((route.shortChannelIds[0] === req.body.sourceShortChannelId && route.shortChannelIds[1] === req.body.targetShortChannelId) || - (route.shortChannelIds[1] === req.body.sourceShortChannelId && route.shortChannelIds[0] === req.body.targetShortChannelId)); + return !((route.shortChannelIds[0] === sourceShortChannelId && route.shortChannelIds[1] === targetShortChannelId) || + (route.shortChannelIds[1] === sourceShortChannelId && route.shortChannelIds[0] === targetShortChannelId)); }); const firstRoute = routes[0].shortChannelIds.join() || ''; - const shortChannelIds = req.body.sourceShortChannelId + ',' + firstRoute + ',' + req.body.targetShortChannelId; + const shortChannelIds = sourceShortChannelId + ',' + firstRoute + ',' + targetShortChannelId; const invoice = (foundExistingInvoice && foundExistingInvoice.serialized ? foundExistingInvoice.serialized : (values[1] ? values[1].serialized : '')) || ''; const paymentHash = (foundExistingInvoice && foundExistingInvoice.paymentHash ? foundExistingInvoice.paymentHash : (values[1] ? values[1].paymentHash : '') || ''); - return sendPaymentToRouteRequestCall(req.session.selectedNode, shortChannelIds, invoice, req.body.amountMsat).then((payToRouteCallRes) => { + return sendPaymentToRouteRequestCall(req.session.selectedNode, shortChannelIds, invoice, amountMsat).then((payToRouteCallRes) => { // eslint-disable-next-line arrow-body-style setTimeout(() => { return getSentInfoFromPaymentRequest(req.session.selectedNode, paymentHash).then((sentInfoCallRes) => { diff --git a/server/controllers/eclair/fees.ts b/server/controllers/eclair/fees.ts index c4252d78..afd2b2ed 100644 --- a/server/controllers/eclair/fees.ts +++ b/server/controllers/eclair/fees.ts @@ -1,34 +1,35 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const arrangeFees = (selNode: CommonSelectedNode, body, current_time) => { +export const arrangeFees = (selNode: SelectedNode, body, current_time) => { const fees = { daily_fee: 0, daily_txs: 0, weekly_fee: 0, weekly_txs: 0, monthly_fee: 0, monthly_txs: 0 }; const week_start_time = current_time - 604800000; const day_start_time = current_time - 86400000; let fee = 0; body.relayed.forEach((relayedEle) => { fee = Math.round((relayedEle.amountIn - relayedEle.amountOut) / 1000); - if (relayedEle.timestamp) { - if (relayedEle.timestamp.unix) { - if ((relayedEle.timestamp.unix * 1000) >= day_start_time) { + const relayedEleTimestamp = relayedEle.settledAt ? relayedEle.settledAt : relayedEle.timestamp; + if (relayedEleTimestamp) { + if (relayedEleTimestamp.unix) { + if ((relayedEleTimestamp.unix * 1000) >= day_start_time) { fees.daily_fee = fees.daily_fee + fee; fees.daily_txs = fees.daily_txs + 1; } - if ((relayedEle.timestamp.unix * 1000) >= week_start_time) { + if ((relayedEleTimestamp.unix * 1000) >= week_start_time) { fees.weekly_fee = fees.weekly_fee + fee; fees.weekly_txs = fees.weekly_txs + 1; } } else { - if (relayedEle.timestamp >= day_start_time) { + if (relayedEleTimestamp >= day_start_time) { fees.daily_fee = fees.daily_fee + fee; fees.daily_txs = fees.daily_txs + 1; } - if (relayedEle.timestamp >= week_start_time) { + if (relayedEleTimestamp >= week_start_time) { fees.weekly_fee = fees.weekly_fee + fee; fees.weekly_txs = fees.weekly_txs + 1; } @@ -41,7 +42,7 @@ export const arrangeFees = (selNode: CommonSelectedNode, body, current_time) => return fees; }; -export const arrangePayments = (selNode: CommonSelectedNode, body) => { +export const arrangePayments = (selNode: SelectedNode, body) => { const payments = { sent: body && body.sent ? body.sent : [], received: body && body.received ? body.received : [], @@ -68,7 +69,10 @@ export const arrangePayments = (selNode: CommonSelectedNode, body) => { } }); payments.relayed.forEach((relayedEle) => { - if (relayedEle.timestamp.unix) { relayedEle.timestamp = relayedEle.timestamp.unix * 1000; } + // Changing the timestamp value to keep the response backward compatible. + // ECL < 0.7.0 sent timestamp in unix milliseconds, then in {"iso", "unix"} object. + // From v0.10.0, it sends settledAt in {"iso", "unix"} object too. + relayedEle.timestamp = relayedEle.settledAt && relayedEle.settledAt.unix ? relayedEle.settledAt.unix * 1000 : relayedEle.timestamp && relayedEle.timestamp.unix ? relayedEle.timestamp.unix * 1000 : relayedEle.timestamp; if (relayedEle.amountIn) { relayedEle.amountIn = Math.round(relayedEle.amountIn / 1000); } if (relayedEle.amountOut) { relayedEle.amountOut = Math.round(relayedEle.amountOut / 1000); } }); @@ -80,7 +84,7 @@ export const getFees = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Getting Fees..' }); 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 + '/audit'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/audit'; const today = new Date(Date.now()); const tillToday = (Math.round(today.getTime() / 1000)).toString(); const fromLastMonth = (Math.round(new Date(today.getFullYear(), today.getMonth() - 1, today.getDate() + 1, 0, 0, 0).getTime() / 1000)).toString(); @@ -90,7 +94,7 @@ export const getFees = (req, res, next) => { }; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Fees', msg: 'Fee Audit Options', data: options.form }); if (common.read_dummy_data) { - common.getDummyData('Fees', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(arrangeFees(req.session.selectedNode, data, Math.round((new Date().getTime())))); }); + common.getDummyData('Fees', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(arrangeFees(req.session.selectedNode, data, Math.round((new Date().getTime())))); }); } else { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Fee Received', data: body }); @@ -106,11 +110,13 @@ export const getPayments = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Getting Payments..' }); 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 + '/audit'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/audit'; const tillToday = (Math.round(new Date(Date.now()).getTime() / 1000)).toString(); options.form = { from: 0, to: tillToday }; + if (req.query.count) { options.form.count = req.query.count; } + if (req.query.skip) { options.form.skip = req.query.skip; } if (common.read_dummy_data) { - common.getDummyData('Payments', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(arrangePayments(req.session.selectedNode, data)); }); + common.getDummyData('Payments', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(arrangePayments(req.session.selectedNode, data)); }); } else { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Payments Received', data: body }); diff --git a/server/controllers/eclair/getInfo.ts b/server/controllers/eclair/getInfo.ts index 9c8bfbb3..ad7a0b3f 100644 --- a/server/controllers/eclair/getInfo.ts +++ b/server/controllers/eclair/getInfo.ts @@ -16,12 +16,12 @@ export const getInfo = (req, res, next) => { common.setOptions(req); 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 + '/getinfo'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/getinfo'; options.form = {}; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.ln_node }); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.lnNode }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Calling Info from Eclair server url ' + options.url }); if (common.read_dummy_data) { - common.getDummyData('GetInfo', req.session.selectedNode.ln_implementation).then((data: any) => { + common.getDummyData('GetInfo', req.session.selectedNode.lnImplementation).then((data: any) => { data.lnImplementation = 'Eclair'; return res.status(200).json(data); }); @@ -34,7 +34,7 @@ export const getInfo = (req, res, next) => { return request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Connecting to the Eclair\'s Websocket Server.' }); body.lnImplementation = 'Eclair'; - req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; + req.session.selectedNode.lnVersion = body.version.split('-')[0] || ''; eclWsClient.updateSelectedNode(req.session.selectedNode); 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/eclair/invoices.ts b/server/controllers/eclair/invoices.ts index 4b21b9b7..59013c3d 100644 --- a/server/controllers/eclair/invoices.ts +++ b/server/controllers/eclair/invoices.ts @@ -1,7 +1,7 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from 'server/models/config.model.js'; +import { SelectedNode } from 'server/models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; @@ -37,7 +37,7 @@ export const getInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Invoice..' }); 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 + '/getinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/getinvoice'; options.form = { paymentHash: req.params.paymentHash }; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Found', data: body }); @@ -52,11 +52,14 @@ export const getInvoice = (req, res, next) => { }); }; -export const listPendingInvoicesRequestCall = (selectedNode: CommonSelectedNode) => { +export const listPendingInvoicesRequestCall = (selectedNode: SelectedNode, count?: number, skip?: number) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'List Pending Invoices..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/listpendinginvoices'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/listpendinginvoices'; options.form = { from: 0, to: (Math.round(new Date(Date.now()).getTime() / 1000)).toString() }; + // Limit the number of invoices till provided count + if (count) { options.form.count = count; } + if (skip) { options.form.skip = skip; } return new Promise((resolve, reject) => { request.post(options).then((pendingInvoicesResponse) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Pending Invoices List ', data: pendingInvoicesResponse }); @@ -72,28 +75,28 @@ export const listInvoices = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } const tillToday = (Math.round(new Date(Date.now()).getTime() / 1000)).toString(); - options.form = { from: 0, to: tillToday }; const options1 = JSON.parse(JSON.stringify(options)); - options1.url = req.session.selectedNode.ln_server_url + '/listinvoices'; + options1.url = req.session.selectedNode.settings.lnServerUrl + '/listinvoices'; options1.form = { from: 0, to: tillToday }; + if (req.query.count) { options1.form.count = req.query.count; } + if (req.query.skip) { options1.form.skip = req.query.skip; } const options2 = JSON.parse(JSON.stringify(options)); - options2.url = req.session.selectedNode.ln_server_url + '/listpendinginvoices'; + options2.url = req.session.selectedNode.settings.lnServerUrl + '/listpendinginvoices'; options2.form = { from: 0, to: tillToday }; if (common.read_dummy_data) { - return common.getDummyData('Invoices', req.session.selectedNode.ln_implementation).then((body) => { - 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))). + return common.getDummyData('Invoices', req.session.selectedNode.lnImplementation).then(([invoices, pendingInvoicesRes]: any[]) => { + pendingInvoices = pendingInvoicesRes; + return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.settings.lnServerUrl, invoice))). then((values) => res.status(200).json(invoices)); }); } else { return Promise.all([request(options1), request(options2)]). - then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body }); - const invoices = (!body[0] || body[0].length <= 0) ? [] : body[0]; - pendingInvoices = (!body[1] || body[1].length <= 0) ? [] : body[1]; + then(([invoices, pendingInvoicesRes]) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: invoices }); + // pendingInvoices will be used to get the status (paid/unpaid) of the invoice via getReceivedPaymentInfo + pendingInvoices = pendingInvoicesRes; if (invoices && invoices.length > 0) { - return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.ln_server_url, invoice))). + return Promise.all(invoices?.map((invoice) => getReceivedPaymentInfo(req.session.selectedNode.settings.lnServerUrl, invoice))). then((values) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Sorted Invoices List Received', data: invoices }); return res.status(200).json(invoices); @@ -114,10 +117,10 @@ export const listInvoices = (req, res, next) => { } }; -export const createInvoiceRequestCall = (selectedNode: CommonSelectedNode, description: string, amount: number) => { +export const createInvoiceRequestCall = (selectedNode: SelectedNode, description: string, amount: number) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/createinvoice'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/createinvoice'; options.form = { description: description, amountMsat: amount }; return new Promise((resolve, reject) => { request.post(options).then((invResponse) => { @@ -131,10 +134,11 @@ export const createInvoiceRequestCall = (selectedNode: CommonSelectedNode, descr }; export const createInvoice = (req, res, next) => { + const { description, amountMsat } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - createInvoiceRequestCall(req.session.selectedNode, req.body.description, req.body.amountMsat).then((invRes) => { + createInvoiceRequestCall(req.session.selectedNode, description, amountMsat).then((invRes) => { res.status(201).json(invRes); }).catch((err) => res.status(err.statusCode).json({ message: err.message, error: err.error })); }; diff --git a/server/controllers/eclair/network.ts b/server/controllers/eclair/network.ts index 3b347eb8..934ec5f7 100644 --- a/server/controllers/eclair/network.ts +++ b/server/controllers/eclair/network.ts @@ -1,7 +1,7 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from 'server/models/config.model.js'; +import { SelectedNode } from 'server/models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; @@ -10,7 +10,7 @@ export const getNodes = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Node Lookup..' }); 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 + '/nodes'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: req.params.id }; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Node Lookup Finished', data: body }); @@ -21,10 +21,10 @@ export const getNodes = (req, res, next) => { }); }; -export const findRouteBetweenNodesRequestCall = (selectedNode: CommonSelectedNode, amountMsat: number, sourceNodeId: string, targetNodeId: string, ignoreNodeIds: string[] = [], format: string = 'shortChannelId') => { +export const findRouteBetweenNodesRequestCall = (selectedNode: SelectedNode, amountMsat: number, sourceNodeId: string, targetNodeId: string, ignoreNodeIds: string[] = [], format: string = 'shortChannelId') => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Network', msg: 'Find Route Between Nodes..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/findroutebetweennodes'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/findroutebetweennodes'; options.form = { amountMsat: amountMsat, sourceNodeId: sourceNodeId, targetNodeId: targetNodeId, ignoreNodeIds: ignoreNodeIds, format: format }; return new Promise((resolve, reject) => { request.post(options).then((body) => { @@ -37,9 +37,10 @@ export const findRouteBetweenNodesRequestCall = (selectedNode: CommonSelectedNod }; export const findRouteBetweenNodes = (req, res, next) => { + const { amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format } = req.body; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - findRouteBetweenNodesRequestCall(req.session.selectedNode, req.body.amountMsat, req.body.sourceNodeId, req.body.targetNodeId, req.body.ignoreNodeIds, req.body.format).then((callRes) => { + findRouteBetweenNodesRequestCall(req.session.selectedNode, amountMsat, sourceNodeId, targetNodeId, ignoreNodeIds, format).then((callRes) => { res.status(200).json(callRes); }).catch((err) => res.status(err.statusCode).json({ message: err.message, error: err.error })); }; diff --git a/server/controllers/eclair/onchain.ts b/server/controllers/eclair/onchain.ts index a431e8f8..4da0b24a 100644 --- a/server/controllers/eclair/onchain.ts +++ b/server/controllers/eclair/onchain.ts @@ -17,7 +17,7 @@ export const getNewAddress = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Generating New Address..' }); 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 + '/getnewaddress'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/getnewaddress'; options.form = {}; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'New Address Generated', data: body }); @@ -32,10 +32,10 @@ export const getBalance = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Getting On Chain Balance..' }); 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 + '/onchainbalance'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/onchainbalance'; options.form = {}; if (common.read_dummy_data) { - common.getDummyData('OnChainBalance', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(arrangeBalances(data)); }); + common.getDummyData('OnChainBalance', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(arrangeBalances(data)); }); } else { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'On Chain Balance Received', data: body }); @@ -52,7 +52,7 @@ export const getTransactions = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Getting On Chain Transactions..' }); 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 + '/onchaintransactions'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/onchaintransactions'; options.form = { count: req.query.count, skip: req.query.skip @@ -68,15 +68,12 @@ export const getTransactions = (req, res, next) => { }; export const sendFunds = (req, res, next) => { + const { address, amount, blocks } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'OnChain', msg: 'Sending On Chain Funds..' }); 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 + '/sendonchain'; - options.form = { - address: req.body.address, - amountSatoshis: req.body.amount, - confirmationTarget: req.body.blocks - }; + options.url = req.session.selectedNode.settings.lnServerUrl + '/sendonchain'; + options.form = { address: address, amountSatoshis: amount, confirmationTarget: blocks }; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Onchain', msg: 'Send Funds Options', data: options.form }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Onchain', msg: 'On Chain Funds Sent', data: body }); diff --git a/server/controllers/eclair/payments.ts b/server/controllers/eclair/payments.ts index 06c4ea0d..80339325 100644 --- a/server/controllers/eclair/payments.ts +++ b/server/controllers/eclair/payments.ts @@ -1,13 +1,13 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getSentInfoFromPaymentRequest = (selNode: CommonSelectedNode, payment) => { - options.url = selNode.ln_server_url + '/getsentinfo'; +export const getSentInfoFromPaymentRequest = (selNode: SelectedNode, payment) => { + options.url = selNode.settings.lnServerUrl + '/getsentinfo'; options.form = { paymentHash: payment }; return request.post(options).then((body) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Payments', msg: 'Payment Sent Information Received', data: body }); @@ -19,8 +19,8 @@ export const getSentInfoFromPaymentRequest = (selNode: CommonSelectedNode, payme }).catch((err) => err); }; -export const getQueryNodes = (selNode: CommonSelectedNode, nodeIds) => { - options.url = selNode.ln_server_url + '/nodes'; +export const getQueryNodes = (selNode: SelectedNode, nodeIds) => { + options.url = selNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: nodeIds?.reduce((acc, curr) => acc + ',' + curr) }; return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Payments', msg: 'Query Nodes Received', data: nodes }); @@ -32,7 +32,7 @@ export const decodePayment = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Decoding 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 + '/parseinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/parseinvoice'; options.form = { invoice: req.params.invoice }; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Decoded', data: body }); @@ -48,7 +48,7 @@ export const postPayment = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Paying Invoice..' }); 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 + '/payinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/payinvoice'; options.form = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment Options', data: options.form }); request.post(options).then((body) => { @@ -64,7 +64,7 @@ export const queryPaymentRoute = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Querying Payment Route..' }); 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 + '/findroutetonode'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/findroutetonode'; options.form = { nodeId: req.query.nodeId, amountMsat: req.query.amountMsat @@ -98,11 +98,12 @@ export const queryPaymentRoute = (req, res, next) => { }; export const getSentPaymentsInformation = (req, res, next) => { + const { payments } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Getting Sent Payment Information..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - if (req.body.payments) { - const paymentsArr = req.body.payments.split(','); + if (payments) { + const paymentsArr = payments.split(','); return Promise.all(paymentsArr?.map((payment) => getSentInfoFromPaymentRequest(req.session.selectedNode, payment))). then((values) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent Information Received', data: values }); @@ -118,10 +119,10 @@ export const getSentPaymentsInformation = (req, res, next) => { } }; -export const sendPaymentToRouteRequestCall = (selectedNode: CommonSelectedNode, shortChannelIds: string, invoice: string, amountMsat: number) => { +export const sendPaymentToRouteRequestCall = (selectedNode: SelectedNode, shortChannelIds: string, invoice: string, amountMsat: number) => { logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Creating Invoice..' }); - options = selectedNode.options; - options.url = selectedNode.ln_server_url + '/sendtoroute'; + options = selectedNode.authentication.options; + options.url = selectedNode.settings.lnServerUrl + '/sendtoroute'; options.form = { shortChannelIds: shortChannelIds, amountMsat: amountMsat, invoice: invoice }; return new Promise((resolve, reject) => { logger.log({ selectedNode: selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment To Route Options', data: options.form }); @@ -135,10 +136,11 @@ export const sendPaymentToRouteRequestCall = (selectedNode: CommonSelectedNode, }; export const sendPaymentToRoute = (req, res, next) => { + const { shortChannelIds, invoice, amountMsat } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Send Payment To Route..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - sendPaymentToRouteRequestCall(req.session.selectedNode, req.body.shortChannelIds, req.body.invoice, req.body.amountMsat).then((callRes) => { + sendPaymentToRouteRequestCall(req.session.selectedNode, shortChannelIds, invoice, amountMsat).then((callRes) => { res.status(200).json(callRes); }).catch((err) => res.status(err.statusCode).json({ message: err.message, error: err.error })); }; diff --git a/server/controllers/eclair/peers.ts b/server/controllers/eclair/peers.ts index 78dcfc0b..2690774d 100644 --- a/server/controllers/eclair/peers.ts +++ b/server/controllers/eclair/peers.ts @@ -1,13 +1,13 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getFilteredNodes = (selNode: CommonSelectedNode, peersNodeIds) => { - options.url = selNode.ln_server_url + '/nodes'; +export const getFilteredNodes = (selNode: SelectedNode, peersNodeIds) => { + options.url = selNode.settings.lnServerUrl + '/nodes'; options.form = { nodeIds: peersNodeIds }; return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Peers', msg: 'Filtered Nodes Received', data: nodes }); @@ -19,10 +19,10 @@ export const getPeers = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Getting Peers..' }); 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 + '/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/peers'; options.form = {}; if (common.read_dummy_data) { - common.getDummyData('Peers', req.session.selectedNode.ln_implementation).then((data) => { res.status(200).json(data); }); + common.getDummyData('Peers', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } else { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); @@ -56,7 +56,7 @@ export const connectPeer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Conneting Peer..' }); 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 + '/connect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/connect'; options.form = {}; if (req.query) { options.form = req.query; @@ -71,7 +71,7 @@ export const connectPeer = (req, res, next) => { const err = common.handleError({ statusCode: 500, message: 'Connect Peer Error', error: body }, 'Peers', body, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); } - options.url = req.session.selectedNode.ln_server_url + '/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/peers'; options.form = {}; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List after Connect', data: body }); @@ -107,7 +107,7 @@ export const deletePeer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Disconneting Peer..' }); 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 + '/disconnect'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/disconnect'; options.form = {}; if (req.params.nodeId) { options.form = { nodeId: req.params.nodeId }; diff --git a/server/controllers/eclair/webSocketClient.ts b/server/controllers/eclair/webSocketClient.ts index e24bdbf0..218d284d 100644 --- a/server/controllers/eclair/webSocketClient.ts +++ b/server/controllers/eclair/webSocketClient.ts @@ -3,7 +3,7 @@ import WebSocket from 'ws'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; import { ECLWSEventsEnum } from '../../models/ecl.model.js'; export class ECLWebSocketClient { @@ -11,7 +11,7 @@ export class ECLWebSocketClient { public logger: LoggerService = Logger; public common: CommonService = Common; public wsServer = WSServer; - public webSocketClients: Array<{ selectedNode: CommonSelectedNode, reConnect: boolean, webSocketClient: any }> = []; + public webSocketClients: Array<{ selectedNode: SelectedNode, reConnect: boolean, webSocketClient: any }> = []; public reconnectTimeOut = null; public waitTime = 0.5; @@ -36,17 +36,17 @@ export class ECLWebSocketClient { }, this.waitTime * 1000); }; - public connect = (selectedNode: CommonSelectedNode) => { + public connect = (selectedNode: SelectedNode) => { try { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (!clientExists) { - if (selectedNode.ln_server_url) { + if (selectedNode.settings.lnServerUrl) { const newWebSocketClient = { selectedNode: selectedNode, reConnect: true, webSocketClient: null }; this.connectWithClient(newWebSocketClient); this.webSocketClients.push(newWebSocketClient); } } else { - if ((!clientExists.webSocketClient || clientExists.webSocketClient.readyState !== WebSocket.OPEN) && selectedNode.ln_server_url) { + if ((!clientExists.webSocketClient || clientExists.webSocketClient.readyState !== WebSocket.OPEN) && selectedNode.settings.lnServerUrl) { clientExists.reConnect = true; this.connectWithClient(clientExists); } @@ -58,9 +58,9 @@ export class ECLWebSocketClient { public connectWithClient = (eclWsClt) => { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Connecting to the Eclair\'s Websocket Server..' }); - const UpdatedLNServerURL = (eclWsClt.selectedNode.ln_server_url)?.replace(/^http/, 'ws'); + const UpdatedLNServerURL = (eclWsClt.selectedNode.settings.lnServerUrl)?.replace(/^http/, 'ws'); const firstSubStrIndex = (UpdatedLNServerURL.indexOf('//') + 2); - const WS_LINK = UpdatedLNServerURL.slice(0, firstSubStrIndex) + ':' + eclWsClt.selectedNode.ln_api_password + '@' + UpdatedLNServerURL.slice(firstSubStrIndex) + '/ws'; + const WS_LINK = UpdatedLNServerURL.slice(0, firstSubStrIndex) + ':' + eclWsClt.selectedNode.authentication.lnApiPassword + '@' + UpdatedLNServerURL.slice(firstSubStrIndex) + '/ws'; eclWsClt.webSocketClient = new WebSocket(WS_LINK); eclWsClt.webSocketClient.onopen = () => { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Connected to the Eclair\'s Websocket Server..' }); @@ -69,7 +69,7 @@ export class ECLWebSocketClient { }; eclWsClt.webSocketClient.onclose = (e) => { - if (eclWsClt && eclWsClt.selectedNode && eclWsClt.selectedNode.ln_implementation === 'ECL') { + if (eclWsClt && eclWsClt.selectedNode && eclWsClt.selectedNode.lnImplementation === 'ECL') { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Web socket disconnected, will reconnect again...' }); eclWsClt.webSocketClient.close(); if (eclWsClt.reConnect) { this.reconnet(eclWsClt); } @@ -87,7 +87,7 @@ export class ECLWebSocketClient { }; eclWsClt.webSocketClient.onerror = (err) => { - if (eclWsClt.selectedNode.ln_version === '' || !eclWsClt.selectedNode.ln_version || this.common.isVersionCompatible(eclWsClt.selectedNode.ln, '0.5.0')) { + if (eclWsClt.selectedNode.lnVersion === '' || !eclWsClt.selectedNode.lnVersion || this.common.isVersionCompatible(eclWsClt.selectedNode.ln, '0.5.0')) { this.logger.log({ selectedNode: eclWsClt.selectedNode, level: 'ERROR', fileName: 'ECLWebSocket', msg: 'Web socket error', error: err }); const errStr = ((typeof err === 'object' && err.message) ? JSON.stringify({ error: err.message }) : (typeof err === 'object') ? JSON.stringify({ error: err }) : ('{ "error": ' + err + ' }')); this.wsServer.sendErrorToAllLNClients(errStr, eclWsClt.selectedNode); @@ -99,7 +99,7 @@ export class ECLWebSocketClient { }; }; - public disconnect = (selectedNode: CommonSelectedNode) => { + public disconnect = (selectedNode: SelectedNode) => { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (clientExists && clientExists.webSocketClient && clientExists.webSocketClient.readyState === WebSocket.OPEN) { this.logger.log({ selectedNode: clientExists.selectedNode, level: 'INFO', fileName: 'ECLWebSocket', msg: 'Disconnecting from the Eclair\'s Websocket Server..' }); @@ -110,7 +110,7 @@ export class ECLWebSocketClient { } }; - public updateSelectedNode = (newSelectedNode: CommonSelectedNode) => { + public updateSelectedNode = (newSelectedNode: SelectedNode) => { const clientIdx = this.webSocketClients.findIndex((wsc) => +wsc.selectedNode.index === +newSelectedNode.index); let newClient = this.webSocketClients[clientIdx]; if (!newClient) { newClient = { selectedNode: null, reConnect: true, webSocketClient: null }; } diff --git a/server/controllers/lnd/balance.ts b/server/controllers/lnd/balance.ts index 369fa4ad..fde5efa8 100644 --- a/server/controllers/lnd/balance.ts +++ b/server/controllers/lnd/balance.ts @@ -9,7 +9,7 @@ export const getBlockchainBalance = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Balance', msg: 'Getting Balance..' }); 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/balance/blockchain'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/balance/blockchain'; options.qs = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Balance', msg: 'Request params', data: req.params }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Balance', msg: 'Request Query', data: req.query }); diff --git a/server/controllers/lnd/channels.ts b/server/controllers/lnd/channels.ts index 58401a71..76e196c4 100644 --- a/server/controllers/lnd/channels.ts +++ b/server/controllers/lnd/channels.ts @@ -1,14 +1,14 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasForChannel = (selNode: CommonSelectedNode, channel) => { +export const getAliasForChannel = (selNode: SelectedNode, channel) => { const pubkey = (channel.remote_pubkey) ? channel.remote_pubkey : (channel.remote_node_pub) ? channel.remote_node_pub : ''; - options.url = selNode.ln_server_url + '/v1/graph/node/' + pubkey; + options.url = selNode.settings.lnServerUrl + '/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 && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); @@ -23,7 +23,7 @@ export const getAllChannels = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Channels..' }); 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'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels'; options.qs = req.query; let local = 0; let remote = 0; @@ -61,7 +61,7 @@ export const getPendingChannels = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Pending Channels..' }); 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/pending'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/pending'; options.qs = req.query; request(options).then((body) => { if (!body.total_limbo_balance) { @@ -98,7 +98,7 @@ export const getClosedChannels = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Getting Closed Channels..' }); 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/closed'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/closed'; options.qs = req.query; request(options).then((body) => { if (body.channels && body.channels.length > 0) { @@ -125,23 +125,24 @@ export const getClosedChannels = (req, res, next) => { }; export const postChannel = (req, res, next) => { + const { node_pubkey, private: privateChannel, spend_unconfirmed, local_funding_amount, trans_type, trans_type_value, commitment_type } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Opening Channel..' }); 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'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels'; options.form = { - node_pubkey_string: req.body.node_pubkey, - local_funding_amount: req.body.local_funding_amount, - private: req.body.private, - spend_unconfirmed: req.body.spend_unconfirmed + node_pubkey_string: node_pubkey, + local_funding_amount: local_funding_amount, + private: privateChannel, + spend_unconfirmed: spend_unconfirmed }; - if (req.body.trans_type === '1') { - options.form.target_conf = req.body.trans_type_value; - } else if (req.body.trans_type === '2') { - options.form.sat_per_byte = req.body.trans_type_value; + if (trans_type === '1') { + options.form.target_conf = trans_type_value; + } else if (trans_type === '2') { + options.form.sat_per_byte = trans_type_value; } - if (req.body.commitment_type) { - options.form.commitment_type = req.body.commitment_type; + if (commitment_type) { + options.form.commitment_type = commitment_type; } options.form = JSON.stringify(options.form); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channel Open Options', data: options.form }); @@ -155,18 +156,19 @@ export const postChannel = (req, res, next) => { }; export const postTransactions = (req, res, next) => { + const { paymentReq, paymentAmount, feeLimit, outgoingChannel, allowSelfPayment, lastHopPubkey } = req.body; 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/transaction-stream'; - options.form = { payment_request: req.body.paymentReq }; - if (req.body.paymentAmount) { - options.form.amt = req.body.paymentAmount; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/transaction-stream'; + options.form = { payment_request: paymentReq }; + if (paymentAmount) { + options.form.amt = paymentAmount; } - if (req.body.feeLimit) { options.form.fee_limit = req.body.feeLimit; } - if (req.body.outgoingChannel) { options.form.outgoing_chan_id = req.body.outgoingChannel; } - if (req.body.allowSelfPayment) { options.form.allow_self_payment = req.body.allowSelfPayment; } - if (req.body.lastHopPubkey) { options.form.last_hop_pubkey = Buffer.from(req.body.lastHopPubkey, 'hex').toString('base64'); } + if (feeLimit) { options.form.fee_limit = feeLimit; } + if (outgoingChannel) { options.form.outgoing_chan_id = outgoingChannel; } + if (allowSelfPayment) { options.form.allow_self_payment = allowSelfPayment; } + if (lastHopPubkey) { options.form.last_hop_pubkey = Buffer.from(lastHopPubkey, 'hex').toString('base64'); } options.form = JSON.stringify(options.form); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Send Payment Options', data: options.form }); request.post(options).then((body) => { @@ -194,7 +196,7 @@ export const closeChannel = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } const channelpoint = req.params.channelPoint?.replace(':', '/'); - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/' + channelpoint + '?force=' + req.query.force; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/' + channelpoint + '?force=' + req.query.force; if (req.query.target_conf) { options.url = options.url + '&target_conf=' + req.query.target_conf; } if (req.query.sat_per_byte) { options.url = options.url + '&sat_per_byte=' + req.query.sat_per_byte; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel Options URL', data: options.url }); @@ -208,32 +210,33 @@ export const closeChannel = (req, res, next) => { }; export const postChanPolicy = (req, res, next) => { + const { chanPoint, baseFeeMsat, feeRate, timeLockDelta, max_htlc_msat, min_htlc_msat } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Updating Channel Policy..' }); 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/chanpolicy'; - if (req.body.chanPoint === 'all') { + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/chanpolicy'; + if (chanPoint === 'all') { options.form = JSON.stringify({ global: true, - base_fee_msat: req.body.baseFeeMsat, - fee_rate: parseFloat((req.body.feeRate / 1000000).toString()), - time_lock_delta: parseInt(req.body.timeLockDelta) + base_fee_msat: baseFeeMsat, + fee_rate: parseFloat((feeRate / 1000000).toString()), + time_lock_delta: parseInt(timeLockDelta) }); } else { - const breakPoint = req.body.chanPoint.indexOf(':'); - const txid_str = req.body.chanPoint.substring(0, breakPoint); - const output_idx = req.body.chanPoint.substring(breakPoint + 1, req.body.chanPoint.length); + const breakPoint = chanPoint.indexOf(':'); + const txid_str = chanPoint.substring(0, breakPoint); + const output_idx = chanPoint.substring(breakPoint + 1, chanPoint.length); const optionsBody = { - base_fee_msat: req.body.baseFeeMsat, - fee_rate: parseFloat((req.body.feeRate / 1000000).toString()), - time_lock_delta: parseInt(req.body.timeLockDelta), + base_fee_msat: baseFeeMsat, + fee_rate: parseFloat((feeRate / 1000000).toString()), + time_lock_delta: parseInt(timeLockDelta), chan_point: { funding_txid_str: txid_str, output_index: parseInt(output_idx) } }; - if (req.body.max_htlc_msat) { - optionsBody['max_htlc_msat'] = req.body.max_htlc_msat; + if (max_htlc_msat) { + optionsBody['max_htlc_msat'] = max_htlc_msat; } - if (req.body.min_htlc_msat) { - optionsBody['min_htlc_msat'] = req.body.min_htlc_msat; + if (min_htlc_msat) { + optionsBody['min_htlc_msat'] = min_htlc_msat; optionsBody['min_htlc_msat_specified'] = true; } options.form = JSON.stringify(optionsBody); diff --git a/server/controllers/lnd/channelsBackup.ts b/server/controllers/lnd/channelsBackup.ts index 8cacb0c9..82eb0e95 100644 --- a/server/controllers/lnd/channelsBackup.ts +++ b/server/controllers/lnd/channelsBackup.ts @@ -39,14 +39,14 @@ export const getBackup = (req, res, next) => { let channel_backup_file = ''; let message = ''; if (req.params.channelPoint === 'ALL') { - channel_backup_file = req.session.selectedNode.channel_backup_path + sep + 'channel-all.bak'; + channel_backup_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-all.bak'; message = 'All Channels Backup Successful.'; - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/backup'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup'; } else { - channel_backup_file = req.session.selectedNode.channel_backup_path + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; + channel_backup_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; message = 'Channel Backup Successful.'; const channelpoint = req.params.channelPoint?.replace(':', '/'); - options.url = req.session.selectedNode.ln_server_url + '/v1/channels/backup/' + channelpoint; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup/' + channelpoint; const exists = fs.existsSync(channel_backup_file); if (exists) { fs.writeFile(channel_backup_file, '', () => { }); @@ -81,13 +81,13 @@ export const postBackupVerify = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'ChannelBackup', msg: 'Verifying Channel Backup..' }); 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/backup/verify'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup/verify'; let channel_verify_file = ''; let message = ''; let verify_backup = ''; if (req.params.channelPoint === 'ALL') { message = 'All Channels Verify Successful.'; - channel_verify_file = req.session.selectedNode.channel_backup_path + sep + 'channel-all.bak'; + channel_verify_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-all.bak'; const exists = fs.existsSync(channel_verify_file); if (exists) { verify_backup = fs.readFileSync(channel_verify_file, 'utf-8'); @@ -108,7 +108,7 @@ export const postBackupVerify = (req, res, next) => { } } else { message = 'Channel Verify Successful.'; - channel_verify_file = req.session.selectedNode.channel_backup_path + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; + channel_verify_file = req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; const exists = fs.existsSync(channel_verify_file); if (exists) { verify_backup = fs.readFileSync(channel_verify_file, 'utf-8'); @@ -136,13 +136,13 @@ export const postRestore = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'ChannelBackup', msg: 'Restoring Channel Backup..' }); 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/backup/restore'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/backup/restore'; let channel_restore_file = ''; let message = ''; let restore_backup = ''; if (req.params.channelPoint === 'ALL') { message = 'All Channels Restore Successful.'; - channel_restore_file = req.session.selectedNode.channel_backup_path + sep + 'restore' + sep; + channel_restore_file = req.session.selectedNode.settings.channelBackupPath + sep + 'restore' + sep; const exists = fs.existsSync(channel_restore_file + 'channel-all.bak'); const downloaded_exists = fs.existsSync(channel_restore_file + 'backup-channel-all.bak'); if (exists) { @@ -173,7 +173,7 @@ export const postRestore = (req, res, next) => { } } else { message = 'Channel Restore Successful.'; - channel_restore_file = req.session.selectedNode.channel_backup_path + sep + 'restore' + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; + channel_restore_file = req.session.selectedNode.settings.channelBackupPath + sep + 'restore' + sep + 'channel-' + req.params.channelPoint?.replace(':', '-') + '.bak'; const exists = fs.existsSync(channel_restore_file); if (exists) { restore_backup = fs.readFileSync(channel_restore_file, 'utf-8'); @@ -190,7 +190,7 @@ export const postRestore = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'ChannelBackup', msg: 'Channel Restored', data: body }); if (req.params.channelPoint === 'ALL') { channel_restore_file = channel_restore_file + 'channel-all.bak'; } fs.rename(channel_restore_file, channel_restore_file + '.restored', () => { - getFilesList(req.session.selectedNode.channel_backup_path, (getFilesListRes) => { + getFilesList(req.session.selectedNode.settings.channelBackupPath, (getFilesListRes) => { if (getFilesListRes.error) { const errMsg = getFilesListRes.error; const err = common.handleError({ statusCode: 500, message: 'Restore Channel Error', error: errMsg }, 'ChannelBackup', errMsg, req.session.selectedNode); @@ -210,7 +210,7 @@ export const postRestore = (req, res, next) => { }; export const getRestoreList = (req, res, next) => { - getFilesList(req.session.selectedNode.channel_backup_path, (getFilesListRes) => { + getFilesList(req.session.selectedNode.settings.channelBackupPath, (getFilesListRes) => { if (getFilesListRes.error) { return res.status(getFilesListRes.statusCode).json(getFilesListRes); } else { diff --git a/server/controllers/lnd/fees.ts b/server/controllers/lnd/fees.ts index 7459ca12..428b1a41 100644 --- a/server/controllers/lnd/fees.ts +++ b/server/controllers/lnd/fees.ts @@ -10,7 +10,7 @@ export const getFees = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Getting Fees..' }); 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/fees'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/fees'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Fees', msg: 'Fee Received', data: body }); const today = new Date(Date.now()); diff --git a/server/controllers/lnd/getInfo.ts b/server/controllers/lnd/getInfo.ts index 57010fa3..ad686995 100644 --- a/server/controllers/lnd/getInfo.ts +++ b/server/controllers/lnd/getInfo.ts @@ -16,8 +16,8 @@ export const getInfo = (req, res, next) => { common.setOptions(req); 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/getinfo'; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.ln_node }); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/getinfo'; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Selected Node ' + req.session.selectedNode.lnNode }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'GetInfo', msg: 'Calling Info from LND server url ' + options.url }); if (!options.headers || !options.headers['Grpc-Metadata-macaroon']) { const errMsg = 'LND Get info failed due to bad or missing macaroon! Please check RTL-Config.json to verify the setup!'; @@ -25,7 +25,7 @@ export const getInfo = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } else { common.nodes?.map((node: any) => { - if (node.ln_implementation === 'LND') { + if (node.lnImplementation === 'LND') { common.getAllNodeAllChannelBackup(node); } return node; @@ -38,7 +38,7 @@ export const getInfo = (req, res, next) => { const err = common.handleError(body, 'GetInfo', 'Get Info Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); } else { - req.session.selectedNode.ln_version = body.version.split('-')[0] || ''; + req.session.selectedNode.lnVersion = body.version.split('-')[0] || ''; lndWsClient.updateSelectedNode(req.session.selectedNode); 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 cb98cbd3..6f5ff67b 100644 --- a/server/controllers/lnd/graph.ts +++ b/server/controllers/lnd/graph.ts @@ -1,13 +1,13 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasFromPubkey = (selNode: CommonSelectedNode, pubkey) => { - options.url = selNode.ln_server_url + '/v1/graph/node/' + pubkey; +export const getAliasFromPubkey = (selNode: SelectedNode, pubkey) => { + options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; return request(options).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; @@ -19,7 +19,7 @@ export const getDescribeGraph = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Network Graph..' }); 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/graph'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph'; request.get(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Network Graph Received', data: body }); res.status(200).json(body); @@ -33,7 +33,7 @@ export const getGraphInfo = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Graph Information..' }); 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/graph/info'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/info'; request.get(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Information Received', data: body }); res.status(200).json(body); @@ -47,7 +47,7 @@ export const getGraphNode = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Graph Node Information..' }); 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/graph/node/' + req.params.pubKey; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/node/' + req.params.pubKey; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Node Information Received', data: body }); res.status(200).json(body); @@ -61,7 +61,7 @@ export const getGraphEdge = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Graph Edge Information..' }); 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/graph/edge/' + req.params.chanid; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/edge/' + req.params.chanid; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Edge Information Received', data: body }); res.status(200).json(body); @@ -75,7 +75,7 @@ export const getQueryRoutes = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Graph Routes..' }); 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/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; if (req.query.outgoing_chan_id) { options.url = options.url + '?outgoing_chan_id=' + req.query.outgoing_chan_id; } @@ -111,7 +111,7 @@ export const getRemoteFeePolicy = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Getting Remote Fee Policy..' }); 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/graph/edge/' + req.params.chanid; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/edge/' + req.params.chanid; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Edge Info Received', data: body }); let remoteNodeFee = {}; diff --git a/server/controllers/lnd/invoices.ts b/server/controllers/lnd/invoices.ts index 9db033ec..2897689f 100644 --- a/server/controllers/lnd/invoices.ts +++ b/server/controllers/lnd/invoices.ts @@ -12,7 +12,7 @@ export const invoiceLookup = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Getting Invoice Information..' }); 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 + '/v2/invoices/lookup'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/invoices/lookup'; if (req.query.payment_addr) { options.url = options.url + '?payment_addr=' + req.query.payment_addr; } else { @@ -34,7 +34,7 @@ export const listInvoices = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Getting List Invoices..' }); 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?num_max_invoices=' + req.query.num_max_invoices + '&index_offset=' + req.query.index_offset + + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoices?num_max_invoices=' + req.query.num_max_invoices + '&index_offset=' + req.query.index_offset + '&reversed=' + req.query.reversed; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Invoice', msg: 'Invoices List Received', data: body }); @@ -57,7 +57,7 @@ export const addInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Adding Invoice..' }); 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.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoices'; 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 }); diff --git a/server/controllers/lnd/message.ts b/server/controllers/lnd/message.ts index c859b9de..864dddd4 100644 --- a/server/controllers/lnd/message.ts +++ b/server/controllers/lnd/message.ts @@ -6,12 +6,13 @@ const logger: LoggerService = Logger; const common: CommonService = Common; export const signMessage = (req, res, next) => { + const { message } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Signing Message..' }); 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/signmessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/signmessage'; options.form = JSON.stringify({ - msg: Buffer.from(req.body.message).toString('base64') + msg: Buffer.from(message).toString('base64') }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Signed', data: body }); @@ -23,13 +24,14 @@ export const signMessage = (req, res, next) => { }; export const verifyMessage = (req, res, next) => { + const { message, signature } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Verifying Message..' }); 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/verifymessage'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/verifymessage'; options.form = JSON.stringify({ - msg: Buffer.from(req.body.message).toString('base64'), - signature: req.body.signature + msg: Buffer.from(message).toString('base64'), + signature: signature }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); diff --git a/server/controllers/lnd/newAddress.ts b/server/controllers/lnd/newAddress.ts index af53f9e2..cbeb6fc8 100644 --- a/server/controllers/lnd/newAddress.ts +++ b/server/controllers/lnd/newAddress.ts @@ -9,7 +9,7 @@ export const getNewAddress = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'NewAddress', msg: 'Getting New Address..' }); 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/newaddress?type=' + req.query.type; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/newaddress?type=' + req.query.type; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'NewAddress', msg: 'New Address Generated', data: body }); res.status(200).json(body); diff --git a/server/controllers/lnd/payments.ts b/server/controllers/lnd/payments.ts index 6122bbdd..dd927271 100644 --- a/server/controllers/lnd/payments.ts +++ b/server/controllers/lnd/payments.ts @@ -1,14 +1,14 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const decodePaymentFromPaymentRequest = (selNode: CommonSelectedNode, payment) => { - options.url = selNode.ln_server_url + '/v1/payreq/' + payment; +export const decodePaymentFromPaymentRequest = (selNode: SelectedNode, payment) => { + options.url = selNode.settings.lnServerUrl + '/v1/payreq/' + payment; return request(options).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'PayReq', msg: 'Description Received', data: res.description }); return res; @@ -19,7 +19,7 @@ export const decodePayment = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Decoding 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/payreq/' + req.params.payRequest; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/payreq/' + req.params.payRequest; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Payment Decoded', data: body }); res.status(200).json(body); @@ -30,11 +30,12 @@ export const decodePayment = (req, res, next) => { }; export const decodePayments = (req, res, next) => { + const { payments } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Decoding Payments List..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - if (req.body.payments) { - const paymentsArr = req.body.payments.split(','); + if (payments) { + const paymentsArr = payments.split(','); return Promise.all(paymentsArr?.map((payment) => decodePaymentFromPaymentRequest(req.session.selectedNode, payment))). then((values) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'PayRequest', msg: 'Payment List Decoded', data: values }); @@ -54,7 +55,7 @@ export const getPayments = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Getting Payments List..' }); 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/payments?max_payments=' + req.query.max_payments + '&index_offset=' + req.query.index_offset + '&reversed=' + req.query.reversed; + options.url = req.session.selectedNode.settings.lnServerUrl + '/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 }); res.status(200).json(body); @@ -68,8 +69,8 @@ export const getAllLightningTransactions = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Getting All Lightning Transactions..' }); const options1 = JSON.parse(JSON.stringify(common.getOptions(req))); const options2 = JSON.parse(JSON.stringify(common.getOptions(req))); - // options1.url = req.session.selectedNode.ln_server_url + '/v1/payments?max_payments=100000&index_offset=0&reversed=true'; - options2.url = req.session.selectedNode.ln_server_url + '/v1/invoices?num_max_invoices=100000&index_offset=0&reversed=true'; + // options1.url = req.session.selectedNode.settings.lnServerUrl + '/v1/payments?max_payments=100000&index_offset=0&reversed=true'; + options2.url = req.session.selectedNode.settings.lnServerUrl + '/v1/invoices?num_max_invoices=100000&index_offset=0&reversed=true'; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'All Payments Options', data: options1 }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'All Invoices Options', data: options2 }); // return Promise.all([request(options1), request(options2)]).then((values) => { @@ -86,7 +87,7 @@ export const paymentLookup = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Looking up 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 + '/v2/router/track/' + req.params.paymentHash; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/track/' + req.params.paymentHash; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Information Received for ' + req.params.paymentHash, data: body }); res.status(200).json(body.result || body); diff --git a/server/controllers/lnd/peers.ts b/server/controllers/lnd/peers.ts index af6e46c8..0723ea03 100644 --- a/server/controllers/lnd/peers.ts +++ b/server/controllers/lnd/peers.ts @@ -1,13 +1,13 @@ import request from 'request-promise'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasForPeers = (selNode: CommonSelectedNode, peer) => { - options.url = selNode.ln_server_url + '/v1/graph/node/' + peer.pub_key; +export const getAliasForPeers = (selNode: SelectedNode, peer) => { + options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + peer.pub_key; return request(options).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Peers', msg: 'Alias Received', data: aliasBody.node.alias }); peer.alias = aliasBody.node.alias; @@ -22,7 +22,7 @@ export const getPeers = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Getting Peers..' }); 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/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; @@ -37,22 +37,23 @@ export const getPeers = (req, res, next) => { }; export const postPeer = (req, res, next) => { + const { host, pubkey, perm } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Connecting Peer..' }); 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/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; options.form = JSON.stringify({ - addr: { host: req.body.host, pubkey: req.body.pubkey }, - perm: req.body.perm + addr: { host: host, pubkey: pubkey }, + perm: perm }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peer Connected', data: body }); - options.url = req.session.selectedNode.ln_server_url + '/v1/peers'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { 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.newestOnTop(body.peers, 'pub_key', req.body.pubkey); + body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); } res.status(201).json(body.peers); @@ -74,7 +75,7 @@ export const deletePeer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Disconnecting Peer..' }); 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/peers/' + req.params.peerPubKey; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers/' + req.params.peerPubKey; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peer Disconnect Pubkey', data: req.params.peerPubKey }); request.delete(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peer Disconneted', data: body }); diff --git a/server/controllers/lnd/switch.ts b/server/controllers/lnd/switch.ts index 6d634e9f..be755263 100644 --- a/server/controllers/lnd/switch.ts +++ b/server/controllers/lnd/switch.ts @@ -8,7 +8,8 @@ const responseData = { switch: { forwarding_events: [], last_offset_index: 0 }, const num_max_events = 100; export const forwardingHistory = (req, res, next) => { - getAllForwardingEvents(req, req.body.start_time, req.body.end_time, 0, 'switch', (eventsResponse) => { + const { start_time, end_time } = req.body; + getAllForwardingEvents(req, start_time, end_time, 0, 'switch', (eventsResponse) => { if (eventsResponse.error) { res.status(eventsResponse.error.statusCode).json(eventsResponse); } else { @@ -24,7 +25,7 @@ export const getAllForwardingEvents = (req, start, end, offset, caller, callback const err = common.handleError({ message: 'Session Expired after a day\'s inactivity.', statusCode: 401 }, 'Balance', 'Get Balance Error', req.session.selectedNode); return callback({ message: err.message, error: err.error, statusCode: err.statusCode }); } options = common.getOptions(req); - options.url = req.session.selectedNode.ln_server_url + '/v1/switch'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/switch'; options.form = {}; if (start) { options.form.start_time = start; } if (end) { options.form.end_time = end; } diff --git a/server/controllers/lnd/transactions.ts b/server/controllers/lnd/transactions.ts index 688ddb78..d92ea3ea 100644 --- a/server/controllers/lnd/transactions.ts +++ b/server/controllers/lnd/transactions.ts @@ -9,7 +9,7 @@ export const getTransactions = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Transactions', msg: 'Getting Transactions..' }); 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/transactions'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/transactions'; request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Transactions', msg: 'Transactions List Received', data: body }); res.status(200).json(body.transactions); @@ -20,19 +20,18 @@ export const getTransactions = (req, res, next) => { }; export const postTransactions = (req, res, next) => { + const { amount, address, fees, blocks, sendAll } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Transactions', msg: 'Sending Transaction..' }); 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/transactions'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/transactions'; options.form = { - amount: req.body.amount, - addr: req.body.address, - sat_per_byte: req.body.fees, - target_conf: req.body.blocks + amount: amount, + addr: address, + sat_per_byte: fees, + target_conf: blocks }; - if (req.body.sendAll) { - options.form.send_all = req.body.sendAll; - } + if (sendAll) { options.form.send_all = sendAll; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Transactions', msg: 'Transaction Sent', data: body }); diff --git a/server/controllers/lnd/wallet.ts b/server/controllers/lnd/wallet.ts index 063a2906..2782cd56 100644 --- a/server/controllers/lnd/wallet.ts +++ b/server/controllers/lnd/wallet.ts @@ -11,9 +11,9 @@ export const genSeed = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } if (req.params.passphrase) { - options.url = req.session.selectedNode.ln_server_url + '/v1/genseed?aezeed_passphrase=' + Buffer.from(atob(req.params.passphrase)).toString('base64'); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/genseed?aezeed_passphrase=' + Buffer.from(atob(req.params.passphrase)).toString('base64'); } else { - options.url = req.session.selectedNode.ln_server_url + '/v1/genseed'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/genseed'; } request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Seed Generated', data: body }); @@ -25,30 +25,31 @@ export const genSeed = (req, res, next) => { }; export const operateWallet = (req, res, next) => { + const { wallet_password, aezeed_passphrase, cipher_seed_mnemonic } = req.body; let err_message = ''; options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.method = 'POST'; if (!req.params.operation || req.params.operation === 'unlockwallet') { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Unlocking Wallet..' }); - options.url = req.session.selectedNode.ln_server_url + '/v1/unlockwallet'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/unlockwallet'; options.form = JSON.stringify({ - wallet_password: Buffer.from(atob(req.body.wallet_password)).toString('base64') + wallet_password: Buffer.from(atob(wallet_password)).toString('base64') }); err_message = 'Unlocking wallet failed! Verify that lnd is running and the wallet is locked!'; } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Initializing Wallet..' }); - options.url = req.session.selectedNode.ln_server_url + '/v1/initwallet'; - if (req.body.aezeed_passphrase && req.body.aezeed_passphrase !== '') { + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/initwallet'; + if (aezeed_passphrase && aezeed_passphrase !== '') { options.form = JSON.stringify({ - wallet_password: Buffer.from(atob(req.body.wallet_password)).toString('base64'), - cipher_seed_mnemonic: req.body.cipher_seed_mnemonic, - aezeed_passphrase: Buffer.from(atob(req.body.aezeed_passphrase)).toString('base64') + wallet_password: Buffer.from(atob(wallet_password)).toString('base64'), + cipher_seed_mnemonic: cipher_seed_mnemonic, + aezeed_passphrase: Buffer.from(atob(aezeed_passphrase)).toString('base64') }); } else { options.form = JSON.stringify({ - wallet_password: Buffer.from(atob(req.body.wallet_password)).toString('base64'), - cipher_seed_mnemonic: req.body.cipher_seed_mnemonic + wallet_password: Buffer.from(atob(wallet_password)).toString('base64'), + cipher_seed_mnemonic: cipher_seed_mnemonic }); } err_message = 'Initializing wallet failed!'; @@ -93,8 +94,8 @@ export const getUTXOs = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Getting UTXOs..' }); 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 + '/v2/wallet/utxos'; - if (common.isVersionCompatible(req.session.selectedNode.ln_version, '0.14.0')) { + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/utxos'; + if (common.isVersionCompatible(req.session.selectedNode.lnVersion, '0.14.0')) { options.form = JSON.stringify({ max_confs: req.query.max_confs }); } else { options.url = options.url + '?max_confs=' + req.query.max_confs; @@ -109,19 +110,20 @@ export const getUTXOs = (req, res, next) => { }; export const bumpFee = (req, res, next) => { + const { txid, outputIndex, targetConf, satPerByte } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Bumping Fee..' }); 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 + '/v2/wallet/bumpfee'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/bumpfee'; options.form = {}; options.form.outpoint = { - txid_str: req.body.txid, - output_index: req.body.outputIndex + txid_str: txid, + output_index: outputIndex }; - if (req.body.targetConf) { - options.form.target_conf = req.body.targetConf; - } else if (req.body.satPerByte) { - options.form.sat_per_byte = req.body.satPerByte; + if (targetConf) { + options.form.target_conf = targetConf; + } else if (satPerByte) { + options.form.sat_per_byte = satPerByte; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { @@ -137,12 +139,8 @@ export const labelTransaction = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Labelling Transaction..' }); 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 + '/v2/wallet/tx/label'; - options.form = {}; - options.form.txid = req.body.txid; - options.form.label = req.body.label; - options.form.overwrite = req.body.overwrite; - options.form = JSON.stringify(options.form); + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/tx/label'; + options.form = JSON.stringify(req.body); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Wallet', msg: 'Label Transaction Options', data: options.form }); request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Transaction Labelled', data: body }); @@ -154,15 +152,16 @@ export const labelTransaction = (req, res, next) => { }; export const leaseUTXO = (req, res, next) => { + const { txid, outputIndex } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Leasing UTXO..' }); 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 + '/v2/wallet/utxos/lease'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/utxos/lease'; options.form = {}; - options.form.id = req.body.txid; + options.form.id = txid; options.form.outpoint = { - txid_bytes: req.body.txid, - output_index: req.body.outputIndex + txid_bytes: txid, + output_index: outputIndex }; options.form = JSON.stringify(options.form); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Wallet', msg: 'UTXO Lease Options', data: options.form }); @@ -176,15 +175,16 @@ export const leaseUTXO = (req, res, next) => { }; export const releaseUTXO = (req, res, next) => { + const { txid, outputIndex } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Releasing UTXO..' }); 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 + '/v2/wallet/utxos/release'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/wallet/utxos/release'; options.form = {}; - options.form.id = req.body.txid; + options.form.id = txid; options.form.outpoint = { - txid_bytes: req.body.txid, - output_index: req.body.outputIndex + txid_bytes: txid, + output_index: outputIndex }; options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/server/controllers/lnd/webSocketClient.ts b/server/controllers/lnd/webSocketClient.ts index 359e06f3..09605704 100644 --- a/server/controllers/lnd/webSocketClient.ts +++ b/server/controllers/lnd/webSocketClient.ts @@ -5,14 +5,14 @@ import { join } from 'path'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; -import { CommonSelectedNode } from '../../models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; export class LNDWebSocketClient { public logger: LoggerService = Logger; public common: CommonService = Common; public wsServer = WSServer; - public webSocketClients: Array<{ selectedNode: CommonSelectedNode }> = []; + public webSocketClients: Array<{ selectedNode: SelectedNode }> = []; constructor() { this.wsServer.eventEmitterLND.on('CONNECT', (nodeIndex) => { @@ -23,10 +23,10 @@ export class LNDWebSocketClient { }); } - public connect = (selectedNode: CommonSelectedNode) => { + public connect = (selectedNode: SelectedNode) => { try { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); - if (!clientExists && selectedNode.ln_server_url) { + if (!clientExists && selectedNode.settings.lnServerUrl) { const newWebSocketClient = { selectedNode: selectedNode }; this.webSocketClients.push(newWebSocketClient); } @@ -35,10 +35,10 @@ export class LNDWebSocketClient { } }; - public fetchUnpaidInvoices = (selectedNode: CommonSelectedNode) => { + public fetchUnpaidInvoices = (selectedNode: SelectedNode) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Getting Unpaid Invoices..' }); const options = this.setOptionsForSelNode(selectedNode); - options.url = selectedNode.ln_server_url + '/v1/invoices?pending_only=true'; + options.url = selectedNode.settings.lnServerUrl + '/v1/invoices?pending_only=true'; return request(options).then((body) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Unpaid Invoices Received', data: body }); if (body.invoices && body.invoices.length > 0) { @@ -55,10 +55,10 @@ export class LNDWebSocketClient { }); }; - public subscribeToInvoice = (options: any, selectedNode: CommonSelectedNode, rHash: string) => { + public subscribeToInvoice = (options: any, selectedNode: SelectedNode, rHash: string) => { rHash = rHash?.replace(/\+/g, '-')?.replace(/[/]/g, '_'); this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Invoice ' + rHash + ' ..' }); - options.url = selectedNode.ln_server_url + '/v2/invoices/subscribe/' + rHash; + options.url = selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Invoice Information Received for ' + rHash }); if (typeof msg === 'string') { @@ -80,9 +80,9 @@ export class LNDWebSocketClient { }); }; - public subscribeToPayment = (options: any, selectedNode: CommonSelectedNode, paymentHash: string) => { + public subscribeToPayment = (options: any, selectedNode: SelectedNode, paymentHash: string) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Payment ' + paymentHash + ' ..' }); - options.url = selectedNode.ln_server_url + '/v2/router/track/' + paymentHash; + options.url = selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Payment Information Received for ' + paymentHash }); msg['type'] = 'payment'; @@ -97,17 +97,17 @@ export class LNDWebSocketClient { }); }; - public setOptionsForSelNode = (selectedNode: CommonSelectedNode) => { + public setOptionsForSelNode = (selectedNode: SelectedNode) => { const options = { url: '', rejectUnauthorized: false, json: true, form: null }; try { - options['headers'] = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(selectedNode.macaroon_path, 'admin.macaroon')).toString('hex') }; + options['headers'] = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(selectedNode.authentication.macaroonPath, 'admin.macaroon')).toString('hex') }; } catch (err) { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: 'WebSocketClient', msg: 'Set Options Error', error: JSON.stringify(err) }); } return options; }; - public disconnect = (selectedNode: CommonSelectedNode) => { + public disconnect = (selectedNode: SelectedNode) => { const clientExists = this.webSocketClients.find((wsc) => wsc.selectedNode.index === selectedNode.index); if (clientExists) { this.logger.log({ selectedNode: clientExists.selectedNode, level: 'INFO', fileName: 'CLWebSocket', msg: 'Disconnecting from the LND\'s Websocket Server..' }); @@ -116,13 +116,13 @@ export class LNDWebSocketClient { } }; - public updateSelectedNode = (newSelectedNode: CommonSelectedNode) => { + public updateSelectedNode = (newSelectedNode: SelectedNode) => { const clientIdx = this.webSocketClients.findIndex((wsc) => +wsc.selectedNode.index === +newSelectedNode.index); let newClient = this.webSocketClients[clientIdx]; if (!newClient) { newClient = { selectedNode: null }; } newClient.selectedNode = JSON.parse(JSON.stringify(newSelectedNode)); this.webSocketClients[clientIdx] = newClient; - if (this.webSocketClients[clientIdx].selectedNode.ln_version === '' || !this.webSocketClients[clientIdx].selectedNode.ln_version || this.common.isVersionCompatible(this.webSocketClients[clientIdx].selectedNode.ln_version, '0.11.0')) { + if (this.webSocketClients[clientIdx].selectedNode.lnVersion === '' || !this.webSocketClients[clientIdx].selectedNode.lnVersion || this.common.isVersionCompatible(this.webSocketClients[clientIdx].selectedNode.lnVersion, '0.11.0')) { this.fetchUnpaidInvoices(this.webSocketClients[clientIdx].selectedNode); } }; diff --git a/server/controllers/shared/RTLConf.ts b/server/controllers/shared/RTLConf.ts index e8eb23d4..ed0f0ed6 100644 --- a/server/controllers/shared/RTLConf.ts +++ b/server/controllers/shared/RTLConf.ts @@ -1,3 +1,4 @@ +import jwt from 'jsonwebtoken'; import * as fs from 'fs'; import { sep } from 'path'; import ini from 'ini'; @@ -7,18 +8,139 @@ import { Database, DatabaseService } from '../../utils/database.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; -import { AuthenticationConfiguration, NodeSettingsConfiguration } from '../../models/config.model.js'; +import { Authentication, SSO } from '../../models/config.model.js'; const options = { url: '' }; const logger: LoggerService = Logger; const common: CommonService = Common; const wsServer = WSServer; const databaseService: DatabaseService = Database; +// Set local block explorer URL after first API call +// if the selected node block explorer has working REST API suite +// otherwise set it to mempool.space +let blockExplorerUrl = ''; + +export const getExplorerFeesRecommended = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Recommended Fee Rates..' }); + options.url = (blockExplorerUrl === '') ? + req.session.selectedNode.settings.blockExplorerUrl + '/api/v1/fees/recommended' : + blockExplorerUrl + '/api/v1/fees/recommended'; + request(options).then((body) => { + blockExplorerUrl = req.session.selectedNode.settings.blockExplorerUrl; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Recommended Fee Rates Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + blockExplorerUrl = 'https://mempool.space'; + options.url = blockExplorerUrl + '/api/v1/fees/recommended'; + return request(options).then((body) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Recommended Fee Rates Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + const errMsg = 'Get Recommended Fee Rates Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + }); + }); +}; + +export const getExplorerTransaction = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Transaction From Block Explorer..' }); + options.url = (blockExplorerUrl === '') ? + req.session.selectedNode.settings.blockExplorerUrl + '/api/tx/' + req.params.txid : + blockExplorerUrl + '/api/tx/' + req.params.txid; + request(options).then((body) => { + blockExplorerUrl = req.session.selectedNode.settings.blockExplorerUrl; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Transaction From Block Explorer Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + blockExplorerUrl = 'https://mempool.space'; + options.url = blockExplorerUrl + '/api/tx/' + req.params.txid; + return request(options).then((body) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Transaction From Block Explorer Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + const errMsg = 'Get Transaction From Block Explorer Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + }); + }); +}; + +export const getCurrencyRates = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Currency Rates..' }); + options.url = 'https://blockchain.info/ticker'; + request(options).then((body) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Currency Rates Received', data: body }); + res.status(200).json(JSON.parse(body)); + }).catch((errRes) => { + const errMsg = 'Get Rates Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + }); +}; + +export const getFile = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); + const file = req.query.path ? req.query.path : (req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); + fs.readFile(file, 'utf8', (errRes, data) => { + if (errRes) { + if (errRes.code && errRes.code === 'ENOENT') { errRes.code = 'File Not Found!'; } + const errMsg = 'Reading File Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + } else { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); + res.status(200).json(data); + } + }); +}; + +export const getApplicationSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting RTL Configuration..' }); + const confFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; + fs.readFile(confFile, 'utf8', (errRes, data) => { + if (errRes) { + const errMsg = 'Get Node Config Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); + } else { + const appConfData = common.removeSecureData(JSON.parse(data)); + appConfData.allowPasswordUpdate = common.appConfig.allowPasswordUpdate; + appConfData.enable2FA = common.appConfig.enable2FA; + appConfData.selectedNodeIndex = (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.selectedNode.index); + common.appConfig.selectedNodeIndex = appConfData.selectedNodeIndex; + const token = req.headers.authorization ? req.headers.authorization.split(' ')[1] : ''; + jwt.verify(token, common.secret_key, (err, user) => { + if (err) { + // Delete unnecessary data for initial response (without security token) + const selNodeIdx = appConfData.nodes.findIndex((node) => node.index === appConfData.selectedNodeIndex) || 0; + appConfData.SSO = new SSO(); + appConfData.secret2FA = ''; + appConfData.dbDirectoryPath = ''; + appConfData.nodes[selNodeIdx].authentication = new Authentication(); + delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; + delete appConfData.nodes[selNodeIdx].settings.lnServerUrl; + delete appConfData.nodes[selNodeIdx].settings.swapServerUrl; + delete appConfData.nodes[selNodeIdx].settings.boltzServerUrl; + delete appConfData.nodes[selNodeIdx].settings.enableOffers; + delete appConfData.nodes[selNodeIdx].settings.enablePeerswap; + delete appConfData.nodes[selNodeIdx].settings.channelBackupPath; + appConfData.nodes = [appConfData.nodes[selNodeIdx]]; + } + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: appConfData }); + res.status(200).json(appConfData); + }); + } + }); +}; export const updateSelectedNode = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Selected Node..' }); - const selNodeIndex = req.params.currNodeIndex ? +req.params.currNodeIndex : common.initSelectedNode ? +common.initSelectedNode.index : 1; + const selNodeIndex = req.params.currNodeIndex ? +req.params.currNodeIndex : common.selectedNode ? +common.selectedNode.index : 1; req.session.selectedNode = common.findNode(selNodeIndex); + common.selectedNode = req.session.selectedNode; 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') { @@ -28,187 +150,9 @@ export const updateSelectedNode = (req, res, next) => { databaseService.loadDatabase(req.session); } } - const responseVal = !req.session.selectedNode.ln_node ? '' : req.session.selectedNode.ln_node; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Selected Node Updated To ' + responseVal }); - res.status(200).json({ status: 'Selected Node Updated To: ' + JSON.stringify(responseVal) + '!' }); -}; - -export const getRTLConfigInitial = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Initial RTL Configuration..' }); - const confFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - fs.readFile(confFile, 'utf8', (errRes, data) => { - if (errRes) { - if (errRes.code === 'ENOENT') { - logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'RTLConf', msg: 'Node config does not exist!', error: { error: 'Node config does not exist.' } }); - res.status(200).json({ defaultNodeIndex: 0, selectedNodeIndex: 0, sso: {}, nodes: [] }); - } else { - const errMsg = 'Get Node Config Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } - } else { - const nodeConfData = JSON.parse(data); - const sso = { rtlSSO: common.rtl_sso, logoutRedirectLink: common.logout_redirect_link }; - const enable2FA = !!common.rtl_secret2fa; - const allowPasswordUpdate = common.flg_allow_password_update; - const nodesArr = []; - if (common.nodes && common.nodes.length > 0) { - common.nodes.forEach((node, i) => { - 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({ - index: node.index, - lnNode: node.ln_node, - lnImplementation: node.ln_implementation, - settings: settings, - authentication: {} - }); - }); - } - const body = { defaultNodeIndex: nodeConfData.defaultNodeIndex, selectedNodeIndex: (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.initSelectedNode.index), sso: sso, enable2FA: enable2FA, allowPasswordUpdate: allowPasswordUpdate, nodes: nodesArr }; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Initial RTL Configuration Received', data: body }); - res.status(200).json(body); - } - }); -}; - -export const getRTLConfig = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting RTL Configuration..' }); - const confFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - fs.readFile(confFile, 'utf8', (errRes, data) => { - if (errRes) { - if (errRes.code === 'ENOENT') { - logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'RTLConf', msg: 'Node config does not exist!', error: { error: 'Node config does not exist.' } }); - res.status(200).json({ defaultNodeIndex: 0, selectedNodeIndex: 0, sso: {}, nodes: [] }); - } else { - const errMsg = 'Get Node Config Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } - } else { - const nodeConfData = JSON.parse(data); - const sso = { rtlSSO: common.rtl_sso, logoutRedirectLink: common.logout_redirect_link }; - const enable2FA = !!common.rtl_secret2fa; - const allowPasswordUpdate = common.flg_allow_password_update; - const nodesArr = []; - if (common.nodes && common.nodes.length > 0) { - common.nodes.forEach((node, i) => { - const authentication: AuthenticationConfiguration = {}; - 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 = { 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'; - settings.lnServerUrl = node.ln_server_url; - 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({ - index: node.index, - lnNode: node.ln_node, - lnImplementation: node.ln_implementation, - settings: settings, - authentication: authentication - }); - }); - } - const body = { defaultNodeIndex: nodeConfData.defaultNodeIndex, selectedNodeIndex: (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.initSelectedNode.index), sso: sso, enable2FA: enable2FA, allowPasswordUpdate: allowPasswordUpdate, nodes: nodesArr }; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: body }); - res.status(200).json(body); - } - }); -}; - -export const updateUISettings = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating UI Settings..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); - if (node && node.Settings) { - 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'; - } else { - delete node.Settings.currencyUnit; - } - const selectedNode = common.findNode(req.session.selectedNode.index); - 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'; - } else { - delete selectedNode.currency_unit; - } - common.replaceNode(req, selectedNode); - } - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'UI Settings Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'Node Settings Updated Successfully' }); - } catch (errRes) { - const errMsg = 'Update Node Settings Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } -}; - -export const update2FASettings = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating 2FA Settings..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - if (req.body.secret2fa && req.body.secret2fa.trim() !== '') { - config.secret2fa = req.body.secret2fa; - } else { - delete config.secret2fa; - } - const message = req.body.secret2fa.trim() === '' ? 'Two factor authentication disabled successfully.' : 'Two factor authentication enabled successfully.'; - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - common.rtl_secret2fa = config.secret2fa; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: message }); - res.status(201).json({ message: message }); - } catch (errRes) { - const errMsg = 'Update 2FA Settings Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } -}; - -export const updateDefaultNode = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Default Node..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - config.defaultNodeIndex = req.body.defaultNodeIndex; - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Default Node Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'Default Node Updated Successfully' }); - } catch (errRes) { - const errMsg = 'Update Default Node Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } + blockExplorerUrl = ''; + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Selected Node Updated To ' + req.session.selectedNode.lnNode || '' }); + res.status(200).json(common.removeAuthSecureData(JSON.parse(JSON.stringify(req.session.selectedNode)))); }; export const getConfig = (req, res, next) => { @@ -217,14 +161,14 @@ export const getConfig = (req, res, next) => { let fileFormat = 'INI'; switch (req.params.nodeType) { case 'ln': - confFile = req.session.selectedNode.config_path; + confFile = req.session.selectedNode.authentication.configPath; break; case 'bitcoind': - confFile = req.session.selectedNode.bitcoind_config_path; + confFile = req.session.selectedNode.settings.bitcoindConfigPath; break; case 'rtl': fileFormat = 'JSON'; - confFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; + confFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; break; default: confFile = ''; @@ -248,12 +192,12 @@ export const getConfig = (req, res, next) => { if (jsonConfig['Application Options'] && jsonConfig['Application Options'].color) { jsonConfig['Application Options'].color = '#' + jsonConfig['Application Options'].color; } - if (req.params.nodeType === 'ln' && req.session.selectedNode.ln_implementation === 'ECL' && !jsonConfig['eclair.api.password']) { + if (req.params.nodeType === 'ln' && req.session.selectedNode.lnImplementation === 'ECL' && !jsonConfig['eclair.api.password']) { fileFormat = 'HOCON'; jsonConfig = parseHocon(data); } } - jsonConfig = maskPasswords(jsonConfig); + jsonConfig = common.maskPasswords(jsonConfig); const responseJSON = (fileFormat === 'JSON') ? jsonConfig : ini.stringify(jsonConfig)?.replace('color=\\#', 'color=#'); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Configuration File Data Received', data: responseJSON }); res.status(200).json({ format: fileFormat, data: responseJSON }); @@ -261,134 +205,62 @@ export const getConfig = (req, res, next) => { }); }; -export const getFile = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); - const file = req.query.path ? req.query.path : (req.session.selectedNode.channel_backup_path + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); - fs.readFile(file, 'utf8', (errRes, data) => { - if (errRes) { - if (errRes.code && errRes.code === 'ENOENT') { errRes.code = 'File Not Found!'; } - const errMsg = 'Reading File Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); - res.status(200).json(data); - } - }); -}; - -export const getCurrencyRates = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting Currency Rates..' }); - options.url = 'https://blockchain.info/ticker'; - request(options).then((body) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Currency Rates Received', data: body }); - res.status(200).json(JSON.parse(body)); - }).catch((errRes) => { - const errMsg = 'Get Rates Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - }); -}; - -export const updateSSO = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating SSO Settings..' }); - const RTLConfFile = common.rtl_conf_file_path + sep + 'RTL-Config.json'; +export const updateNodeSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Node Settings..' }); + const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - delete config.SSO; - config.SSO = req.body.SSO; + const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); + if (node && node.settings) { + node.settings = req.body.settings; + if (req.body.authentication.boltzMacaroonPath) { + node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } else { + delete node.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } else { + delete node.authentication.swapMacaroonPath; + } + } try { fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'SSO Setting Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'SSO Updated Successfully' }); - } catch (errRes) { - const errMsg = 'Update SSO Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } -}; - -export const updateServiceSettings = (req, res, next) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Service Settings..' }); - 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.forEach((node) => { - if (node.index === req.session.selectedNode.index) { - switch (req.body.service) { - case 'LOOP': - if (req.body.settings.enable) { - node.Settings.swapServerUrl = req.body.settings.serverUrl; - node.Authentication.swapMacaroonPath = req.body.settings.macaroonPath; - selectedNode.swap_server_url = req.body.settings.serverUrl; - selectedNode.swap_macaroon_path = req.body.settings.macaroonPath; - } else { - delete node.Settings.swapServerUrl; - delete node.Authentication.swapMacaroonPath; - delete selectedNode.swap_server_url; - delete selectedNode.swap_macaroon_path; - } - break; - - case 'BOLTZ': - if (req.body.settings.enable) { - node.Settings.boltzServerUrl = req.body.settings.serverUrl; - node.Authentication.boltzMacaroonPath = req.body.settings.macaroonPath; - selectedNode.boltz_server_url = req.body.settings.serverUrl; - selectedNode.boltz_macaroon_path = req.body.settings.macaroonPath; - } else { - delete node.Settings.boltzServerUrl; - delete node.Authentication.boltzMacaroonPath; - delete selectedNode.boltz_server_url; - delete selectedNode.boltz_macaroon_path; - } - break; - - case 'OFFERS': - 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; - } + const selectedNode = common.findNode(req.session.selectedNode.index); + if (selectedNode && selectedNode.settings) { + selectedNode.settings = req.body.settings; + selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; common.replaceNode(req, selectedNode); } - return node; - }); - try { - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Service Settings Updated', data: maskPasswords(config) }); - res.status(201).json({ message: 'Service Settings Updated Successfully' }); + let responseNode = JSON.parse(JSON.stringify(common.selectedNode)); + responseNode = common.removeAuthSecureData(responseNode); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Node Settings Updated', data: responseNode }); + res.status(201).json(responseNode); } catch (errRes) { - const errMsg = 'Update Service Settings Error'; + const errMsg = 'Update Node Settings Error'; const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.error, error: err.error }); } }; -export const maskPasswords = (obj) => { - const keys = Object.keys(obj); - const length = keys.length; - if (length !== 0) { - for (let i = 0; i < length; i++) { - if (typeof obj[keys[i]] === 'object') { - keys[keys[i]] = maskPasswords(obj[keys[i]]); - } - 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('rpcuser')) - ) { - obj[keys[i]] = '********************'; - } - } +export const updateApplicationSettings = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Application Settings..' }); + const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; + try { + const config = common.addSecureData(req.body); + common.appConfig = JSON.parse(JSON.stringify(config)); + delete config.selectedNodeIndex; + delete config.enable2FA; + delete config.allowPasswordUpdate; + delete config.rtlConfFilePath; + delete config.rtlPass; + fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); + const newConfig = JSON.parse(JSON.stringify(common.appConfig)); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.maskPasswords(newConfig) }); + res.status(201).json(common.removeSecureData(newConfig)); + } catch (errRes) { + const errMsg = 'Update Default Node Error'; + const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.error, error: err.error }); } - return obj; }; diff --git a/server/controllers/shared/authenticate.ts b/server/controllers/shared/authenticate.ts index 1275ae48..607b2320 100644 --- a/server/controllers/shared/authenticate.ts +++ b/server/controllers/shared/authenticate.ts @@ -47,18 +47,19 @@ const handleMultipleFailedAttemptsError = (failed, currentTime, errMsg) => { } }; -export const verifyToken = (twoFAToken) => !!(common.rtl_secret2fa && common.rtl_secret2fa !== '' && otplib.authenticator.check(twoFAToken, common.rtl_secret2fa)); +export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && otplib.authenticator.check(twoFAToken, common.appConfig.secret2FA)); export const authenticateUser = (req, res, next) => { + const { authenticateWith, authenticationValue, twoFAToken } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Authenticating User..' }); - if (+common.rtl_sso) { - if (req.body.authenticateWith === 'JWT' && jwt.verify(req.body.authenticationValue, common.secret_key)) { + if (+common.appConfig.SSO.rtlSso) { + if (authenticateWith === 'JWT' && jwt.verify(authenticationValue, common.secret_key)) { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(406).json({ message: 'SSO Authentication Error', error: 'Login with Password is not allowed with SSO.' }); - } else if (req.body.authenticateWith === 'PASSWORD') { - if (common.cookie_value.trim().length >= 32 && crypto.timingSafeEqual(Buffer.from(crypto.createHash('sha256').update(common.cookie_value).digest('hex'), 'utf-8'), Buffer.from(req.body.authenticationValue, 'utf-8'))) { + } else if (authenticateWith === 'PASSWORD') { + if (common.appConfig.SSO.cookieValue.trim().length >= 32 && crypto.timingSafeEqual(Buffer.from(crypto.createHash('sha256').update(common.appConfig.SSO.cookieValue).digest('hex'), 'utf-8'), Buffer.from(authenticationValue, 'utf-8'))) { common.refreshCookie(); - if (!req.session.selectedNode) { req.session.selectedNode = common.initSelectedNode; } + if (!req.session.selectedNode) { req.session.selectedNode = common.selectedNode; } const token = jwt.sign({ user: 'SSO_USER' }, common.secret_key); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(200).json({ token: token }); @@ -72,40 +73,40 @@ export const authenticateUser = (req, res, next) => { const currentTime = new Date().getTime(); const reqIP = common.getRequestIP(req); const failed = getFailedInfo(reqIP, currentTime); - const password = req.body.authenticationValue; - if (common.rtl_pass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { - if (req.body.twoFAToken && req.body.twoFAToken !== '') { - if (!verifyToken(req.body.twoFAToken)) { + const password = authenticationValue; + if (common.appConfig.rtlPass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { + if (twoFAToken && twoFAToken !== '') { + if (!verifyToken(twoFAToken)) { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Token! Failed IP ' + reqIP, error: { error: 'Invalid token.' } }); failed.count = failed.count + 1; failed.lastTried = currentTime; return res.status(401).json(handleMultipleFailedAttemptsError(failed, currentTime, 'Invalid 2FA Token!')); } } - if (!req.session.selectedNode) { req.session.selectedNode = common.initSelectedNode; } + if (!req.session.selectedNode) { req.session.selectedNode = common.selectedNode; } delete failedLoginAttempts[reqIP]; const token = jwt.sign({ user: 'NODE_USER' }, common.secret_key); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(200).json({ token: token }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Password! Failed IP ' + reqIP, error: { error: 'Invalid password.' } }); - failed.count = common.rtl_pass !== password ? (failed.count + 1) : failed.count; - failed.lastTried = common.rtl_pass !== password ? currentTime : failed.lastTried; + failed.count = common.appConfig.rtlPass !== password ? (failed.count + 1) : failed.count; + failed.lastTried = common.appConfig.rtlPass !== password ? currentTime : failed.lastTried; return res.status(401).json(handleMultipleFailedAttemptsError(failed, currentTime, 'Invalid Password!')); } } }; export const resetPassword = (req, res, next) => { + const { currPassword, newPassword } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Resetting Password..' }); - if (+common.rtl_sso) { + if (+common.appConfig.SSO.rtlSso) { const errMsg = 'Password cannot be reset for SSO authentication'; const err = common.handleError({ statusCode: 401, message: 'Password Reset Error', error: errMsg }, 'Authenticate', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); } else { - const currPassword = req.body.currPassword; - if (common.rtl_pass === currPassword) { - common.rtl_pass = common.replacePasswordWithHash(req.body.newPassword); + if (common.appConfig.rtlPass === currPassword) { + common.appConfig.rtlPass = common.replacePasswordWithHash(newPassword); const token = jwt.sign({ user: 'NODE_USER' }, common.secret_key); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Password Reset Successful' }); res.status(200).json({ token: token }); diff --git a/server/controllers/shared/boltz.ts b/server/controllers/shared/boltz.ts index 533f0d62..35c9506b 100644 --- a/server/controllers/shared/boltz.ts +++ b/server/controllers/shared/boltz.ts @@ -80,6 +80,7 @@ export const getSwapInfo = (req, res, next) => { }; export const createSwap = (req, res, next) => { + const { amount, sendFromInternal, address } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Swap..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -88,8 +89,9 @@ export const createSwap = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createswap'; - options.body = { amount: req.body.amount }; - if (req.body.address !== '') { options.body.address = req.body.address; } + options.body = { amount: amount }; + if (sendFromInternal) { options.body.send_from_internal = sendFromInternal; } + if (address && address !== '') { options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Swap Options Body', data: options.body }); request.post(options).then((createSwapRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Swap Created', data: createSwapRes }); @@ -101,6 +103,7 @@ export const createSwap = (req, res, next) => { }; export const createReverseSwap = (req, res, next) => { + const { amount, acceptZeroConf, address } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Reverse Swap..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -109,8 +112,8 @@ export const createReverseSwap = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createreverseswap'; - options.body = { amount: req.body.amount }; - if (req.body.address !== '') { options.body.address = req.body.address; } + options.body = { amount: amount, accept_zero_conf: acceptZeroConf || false }; + if (address && address !== '') { options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Reverse Swap Body', data: options.body }); request.post(options).then((createReverseSwapRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Reverse Swap Created', data: createReverseSwapRes }); @@ -122,6 +125,7 @@ export const createReverseSwap = (req, res, next) => { }; export const createChannel = (req, res, next) => { + const { amount, address } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Boltz Channel..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -130,8 +134,8 @@ export const createChannel = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createchannel'; - options.body = { amount: req.body.amount }; - if (req.body.address !== '') { options.body.address = req.body.address; } + options.body = { amount: amount }; + if (address && address !== '') { options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Channel Options Body', data: options.body }); request.post(options).then((createChannelRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Boltz Channel Created', data: createChannelRes }); diff --git a/server/controllers/shared/loop.ts b/server/controllers/shared/loop.ts index 3f8dc76a..b86a81bd 100644 --- a/server/controllers/shared/loop.ts +++ b/server/controllers/shared/loop.ts @@ -6,21 +6,22 @@ const logger: LoggerService = Logger; const common: CommonService = Common; export const loopOut = (req, res, next) => { + const { amount, targetConf, swapRoutingFee, minerFee, prepayRoutingFee, prepayAmt, swapFee, swapPublicationDeadline, chanId, destAddress } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Looping Out..' }); options.uri = '/v1/loop/out'; options.body = { - amt: req.body.amount, - sweep_conf_target: req.body.targetConf, - max_swap_routing_fee: req.body.swapRoutingFee, - max_miner_fee: req.body.minerFee, - max_prepay_routing_fee: req.body.prepayRoutingFee, - max_prepay_amt: req.body.prepayAmt, - max_swap_fee: req.body.swapFee, - swap_publication_deadline: req.body.swapPublicationDeadline, + amt: amount, + sweep_conf_target: targetConf, + max_swap_routing_fee: swapRoutingFee, + max_miner_fee: minerFee, + max_prepay_routing_fee: prepayRoutingFee, + max_prepay_amt: prepayAmt, + max_swap_fee: swapFee, + swap_publication_deadline: swapPublicationDeadline, initiator: 'RTL' }; - if (req.body.chanId !== '') { options.body['loop_out_channel'] = req.body.chanId; } - if (req.body.destAddress !== '') { options.body['dest'] = req.body.destAddress; } + if (chanId !== '') { options.body['loop_out_channel'] = chanId; } + if (destAddress !== '') { options.body['dest'] = destAddress; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Loop', msg: 'Loop Out Body', data: options.body }); request.post(options).then((loopOutRes) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Looped Out', data: loopOutRes }); @@ -87,12 +88,13 @@ export const loopOutTermsAndQuotes = (req, res, next) => { }; export const loopIn = (req, res, next) => { + const { amount, swapFee, minerFee } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Looping In..' }); options.uri = '/v1/loop/in'; options.body = { - amt: req.body.amount, - max_swap_fee: req.body.swapFee, - max_miner_fee: req.body.minerFee, + amt: amount, + max_swap_fee: swapFee, + max_miner_fee: minerFee, initiator: 'RTL' }; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Loop', msg: 'Loop In Body', data: options.body }); diff --git a/server/models/config.model.ts b/server/models/config.model.ts index ea0d4545..ca53fbe0 100644 --- a/server/models/config.model.ts +++ b/server/models/config.model.ts @@ -1,71 +1,87 @@ -export class CommonSelectedNode { +export class SSO { constructor( - public options?: any, - public ln_server_url?: string, - public macaroon_path?: string, - public macaroon_value?: string, - public rune_path?: string, - public rune_value?: string, - public ln_api_password?: string, - public swap_server_url?: string, - public boltz_server_url?: string, - public config_path?: string, - public rtl_conf_file_path?: string, - public swap_macaroon_path?: string, - public boltz_macaroon_path?: string, - public bitcoind_config_path?: string, - public channel_backup_path?: string, - public log_level?: string, - public log_file?: string, - public index?: string, - public ln_node?: string, - public ln_implementation?: string, - 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_peerswap?: boolean + public rtlSso?: number, + public rtlCookiePath?: string, + public logoutRedirectLink?: string, + public cookieValue?: string ) { } } -export class AuthenticationConfiguration { - - constructor( - public configPath?: string, - public swapMacaroonPath?: string, - public boltzMacaroonPath?: string - ) { } - -} - -export class NodeSettingsConfiguration { +export class Settings { constructor( + public blockExplorerUrl: string, + public lnServerUrl?: string, + public swapServerUrl?: string, + public boltzServerUrl?: string, + public bitcoindConfigPath?: string, + public channelBackupPath?: string, + public logLevel?: string, + public logFile?: string, public userPersona?: string, public themeMode?: string, public themeColor?: string, public unannouncedChannels?: boolean, public fiatConversion?: boolean, public currencyUnit?: string, - public bitcoindConfigPath?: string, - public logLevel?: string, - public lnServerUrl?: string, - public swapServerUrl?: string, - public boltzServerUrl?: string, - public channelBackupPath?: string, public enableOffers?: boolean, public enablePeerswap?: boolean ) { } } +export class Authentication { + + constructor( + public options?: any, + public configPath?: string, + public macaroonPath?: string, + public macaroonValue?: string, + public runePath?: string, + public runeValue?: string, + public lnApiPassword?: string, + public swapMacaroonPath?: string, + public boltzMacaroonPath?: string + ) { } + +} + +export class ApplicationConfig { + + constructor( + public defaultNodeIndex: number, + public selectedNodeIndex: number, + public dbDirectoryPath?: string, + public rtlConfFilePath?: string, + public rtlPass?: string, + public multiPass?: string, + public multiPassHashed?: string, + public allowPasswordUpdate?: boolean, + public enable2FA?: boolean, + public secret2FA?: string, + public SSO?: SSO, + public nodes?: SelectedNode[] + ) {} + +} + +export class SelectedNode { + + constructor( + public logLevel?: string, + public logFile?: string, + public index?: number, + public lnNode?: string, + public lnImplementation?: string, + public lnVersion?: string, + public settings?: Settings, + public authentication?: Authentication + ) { } + +} + export class LogJSONObj { constructor( @@ -74,7 +90,7 @@ export class LogJSONObj { public data?: string | any | any[], public error?: string | any, public fileName?: string, - public selectedNode?: CommonSelectedNode + public selectedNode?: SelectedNode ) { } } diff --git a/server/routes/shared/RTLConf.ts b/server/routes/shared/RTLConf.ts index 032b87b8..3c1db498 100644 --- a/server/routes/shared/RTLConf.ts +++ b/server/routes/shared/RTLConf.ts @@ -1,20 +1,19 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { getRTLConfigInitial, getRTLConfig, updateUISettings, update2FASettings, getConfig, getFile, updateSelectedNode, updateDefaultNode, updateServiceSettings, updateSSO, getCurrencyRates } from '../../controllers/shared/RTLConf.js'; +import { updateNodeSettings, getConfig, getFile, updateSelectedNode, updateApplicationSettings, getCurrencyRates, getApplicationSettings, + getExplorerFeesRecommended, getExplorerTransaction } from '../../controllers/shared/RTLConf.js'; const router = Router(); -router.get('/rtlconfinit', getRTLConfigInitial); -router.get('/rtlconf', isAuthenticated, getRTLConfig); -router.post('/', isAuthenticated, updateUISettings); -router.post('/update2FA', isAuthenticated, update2FASettings); -router.get('/config/:nodeType', isAuthenticated, getConfig); +router.get('/', getApplicationSettings); +router.get('/rates', getCurrencyRates); router.get('/file', isAuthenticated, getFile); router.get('/updateSelNode/:currNodeIndex/:prevNodeIndex', updateSelectedNode); -router.post('/updateDefaultNode', updateDefaultNode); -router.post('/updateServiceSettings', updateServiceSettings); -router.post('/updateSSO', updateSSO); -router.get('/rates', getCurrencyRates); +router.get('/config/:nodeType', isAuthenticated, getConfig); +router.post('/node', isAuthenticated, updateNodeSettings); +router.post('/application', isAuthenticated, updateApplicationSettings); +router.get('/explorerFeesRecommended', getExplorerFeesRecommended); +router.get('/explorerTransaction/:txid', getExplorerTransaction); export default router; diff --git a/server/utils/app.ts b/server/utils/app.ts index 0a4a0e35..4c3c9e28 100644 --- a/server/utils/app.ts +++ b/server/utils/app.ts @@ -32,7 +32,7 @@ export class ExpressApplication { public directoryName = dirname(fileURLToPath(import.meta.url)); constructor() { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Starting Express Application..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Starting Express Application..' }); this.app.set('trust proxy', true); this.app.use(sessions({ secret: this.common.secret_key, saveUninitialized: true, cookie: { secure: false, maxAge: ONE_DAY }, resave: false })); this.app.use(cookieParser(this.common.secret_key)); @@ -52,7 +52,7 @@ export class ExpressApplication { public setCSRF = () => { CSRF.mount(this.app); }; public setApplicationRoutes = () => { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Setting up Application Routes..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Setting up Application Routes..' }); this.app.use(this.common.baseHref + '/api', sharedRoutes); this.app.use(this.common.baseHref + '/api/lnd', lndRoutes); this.app.use(this.common.baseHref + '/api/cln', clnRoutes); @@ -67,29 +67,29 @@ export class ExpressApplication { this.handleApplicationErrors(err, res); next(); }); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; public handleApplicationErrors = (err, res) => { switch (err.code) { case 'EACCES': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); res.status(406).send('Server requires elevated privileges.'); break; case 'EADDRINUSE': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is already in use' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is already in use' }); res.status(409).send('Server is already in use.'); break; case 'ECONNREFUSED': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is down/locked' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server is down/locked' }); res.status(401).send('Server is down/locked.'); break; case 'EBADCSRFTOKEN': - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); res.status(403).send('Invalid CSRF token, form tempered.'); break; default: - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'App', msg: 'DEFUALT ERROR', error: err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'DEFUALT ERROR', error: err }); res.status(400).send(JSON.stringify(err)); break; } diff --git a/server/utils/authCheck.ts b/server/utils/authCheck.ts index 5c46e8c2..16306ef7 100644 --- a/server/utils/authCheck.ts +++ b/server/utils/authCheck.ts @@ -44,7 +44,7 @@ export const verifyWSUser = (info, next) => { } catch (err) { cookies = {}; updatedReq['cookies'] = JSON.parse(cookies); - logger.log({ selectedNode: common.initSelectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to read CSRF token cookie', data: err }); + logger.log({ selectedNode: common.selectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to read CSRF token cookie', data: err }); } csurfProtection(updatedReq, null, (err) => { if (err) { @@ -54,7 +54,7 @@ export const verifyWSUser = (info, next) => { } }); } catch (err) { - logger.log({ selectedNode: common.initSelectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to verify CSRF token', data: err }); + logger.log({ selectedNode: common.selectedNode, level: 'WARN', fileName: 'AuthCheck', msg: '403 Unable to verify CSRF token', data: err }); next(true); } } diff --git a/server/utils/common.ts b/server/utils/common.ts index 7d56d2d1..654d8655 100644 --- a/server/utils/common.ts +++ b/server/utils/common.ts @@ -4,26 +4,17 @@ import { fileURLToPath } from 'url'; import * as crypto from 'crypto'; import request from 'request-promise'; import { Logger, LoggerService } from './logger.js'; -import { CommonSelectedNode } from '../models/config.model.js'; +import { ApplicationConfig, SelectedNode } from '../models/config.model.js'; export class CommonService { public logger: LoggerService = Logger; - public nodes: CommonSelectedNode[] = []; - public initSelectedNode: CommonSelectedNode = null; - public rtl_conf_file_path = ''; + public nodes: SelectedNode[] = []; + public selectedNode: SelectedNode = null; + public ssoInit = { rtlSso: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }; + public appConfig: ApplicationConfig = { defaultNodeIndex: 0, selectedNodeIndex: 0, rtlConfFilePath: '', dbDirectoryPath: join(dirname(fileURLToPath(import.meta.url)), '..', '..'), rtlPass: '', allowPasswordUpdate: true, enable2FA: false, secret2FA: '', SSO: this.ssoInit, nodes: [] }; public port = 3000; public host = ''; - public db_directory_path = join(dirname(fileURLToPath(import.meta.url)), '..', '..'); - public rtl_pass = ''; - public flg_allow_password_update = true; - public rtl_secret2fa = ''; - public rtl_sso = 0; - public rtl_cookie_path = ''; - public logout_redirect_link = ''; - public cookie_value = ''; - public ln_version = ''; - public api_version = ''; public secret_key = crypto.randomBytes(64).toString('hex'); public read_dummy_data = false; public baseHref = '/rtl'; @@ -33,101 +24,168 @@ export class CommonService { { 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() { } + constructor() {} + + public maskPasswords = (obj) => { + const keys = Object.keys(obj); + const length = keys.length; + if (length !== 0) { + for (let i = 0; i < length; i++) { + if (typeof obj[keys[i]] === 'object') { + keys[keys[i]] = this.maskPasswords(obj[keys[i]]); + } + if (typeof keys[i] === 'string' && + ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser')) + ) { + obj[keys[i]] = '*'.repeat(20); + } + } + } + return obj; + }; + + public removeAuthSecureData = (node: SelectedNode) => { + delete node.authentication.macaroonPath; + delete node.authentication.runePath; + delete node.authentication.runeValue; + delete node.authentication.lnApiPassword; + delete node.authentication.options; + return node; + }; + + public removeSecureData = (config: ApplicationConfig) => { + delete config.rtlConfFilePath; + delete config.rtlPass; + delete config.multiPass; + delete config.multiPassHashed; + delete config.secret2FA; + config.nodes?.map((node) => this.removeAuthSecureData(node)); + return config; + }; + + public addSecureData = (config: ApplicationConfig) => { + config.rtlConfFilePath = this.appConfig.rtlConfFilePath; + config.rtlPass = this.appConfig.rtlPass; + config.multiPassHashed = this.appConfig.multiPassHashed; + config.SSO.rtlCookiePath = this.appConfig.SSO.rtlCookiePath; + if (this.appConfig.multiPass) { + config.multiPass = this.appConfig.multiPass; + } + if (config.secret2FA === this.appConfig.secret2FA) { + config.secret2FA = this.appConfig.secret2FA; + } + config.nodes.map((node, i) => { + if (this.appConfig && this.appConfig.nodes && this.appConfig.nodes.length > i && this.appConfig.nodes[i].authentication) { + if (this.appConfig.nodes[i].authentication.macaroonPath) { + node.authentication.macaroonPath = this.appConfig.nodes[i].authentication.macaroonPath; + } + if (this.appConfig.nodes[i].authentication.runePath) { + node.authentication.runePath = this.appConfig.nodes[i].authentication.runePath; + } + if (this.appConfig.nodes[i].authentication.lnApiPassword) { + node.authentication.lnApiPassword = this.appConfig.nodes[i].authentication.lnApiPassword; + } + } + return node; + }); + return config; + }; public setSwapServerOptions = (req) => { const swapOptions = { - baseUrl: req.session.selectedNode.swap_server_url, + baseUrl: req.session.selectedNode.settings.swapServerUrl, uri: '', rejectUnauthorized: false, json: true, headers: { 'Grpc-Metadata-macaroon': '' } }; - if (req.session.selectedNode.swap_macaroon_path) { + if (req.session.selectedNode.authentication.swapMacaroonPath) { try { - swapOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.swap_macaroon_path, 'loop.macaroon')).toString('hex') }; + swapOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.authentication.swapMacaroonPath, 'loop.macaroon')).toString('hex') }; } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); return swapOptions; }; public getBoltzServerOptions = (req) => { const boltzOptions = { - url: req.session.selectedNode.boltz_server_url, + url: req.session.selectedNode.settings.boltzServerUrl, rejectUnauthorized: false, json: true, headers: { 'Grpc-Metadata-macaroon': '' } }; - if (req.session.selectedNode.boltz_macaroon_path) { + if (req.session.selectedNode.authentication.boltzMacaroonPath) { try { - boltzOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.boltz_macaroon_path, 'admin.macaroon')).toString('hex') }; + boltzOptions.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.authentication.boltzMacaroonPath, 'admin.macaroon')).toString('hex') }; } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); return boltzOptions; }; public getOptions = (req) => { - if (req.session.selectedNode && req.session.selectedNode.options) { - req.session.selectedNode.options.method = (req.session.selectedNode.ln_implementation && req.session.selectedNode.ln_implementation.toUpperCase() === 'LND') ? 'GET' : 'POST'; - delete req.session.selectedNode.options.form; - delete req.session.selectedNode.options.body; - req.session.selectedNode.options.qs = {}; - return req.session.selectedNode.options; + if (req.session.selectedNode && req.session.selectedNode.authentication.options) { + req.session.selectedNode.authentication.options.method = (req.session.selectedNode.lnImplementation && req.session.selectedNode.lnImplementation.toUpperCase() === 'LND') ? 'GET' : 'POST'; + delete req.session.selectedNode.authentication.options.form; + delete req.session.selectedNode.authentication.options.body; + req.session.selectedNode.authentication.options.qs = {}; + return req.session.selectedNode.authentication.options; } - return this.handleError({ statusCode: 401, message: 'Session expired after a day\'s inactivity' }, 'Session Expired', 'Session Expiry Error', this.initSelectedNode); + return this.handleError({ statusCode: 401, message: 'Session expired after a day\'s inactivity' }, 'Session Expired', 'Session Expiry Error', this.selectedNode); }; public updateSelectedNodeOptions = (req) => { if (!req.session.selectedNode) { req.session.selectedNode = {}; } - req.session.selectedNode.options = { + req.session.selectedNode.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: null }; try { - if (req.session.selectedNode && req.session.selectedNode.ln_implementation) { - switch (req.session.selectedNode.ln_implementation.toUpperCase()) { + if (req.session.selectedNode && req.session.selectedNode.lnImplementation) { + switch (req.session.selectedNode.lnImplementation.toUpperCase()) { case 'CLN': try { - if (!req.session.selectedNode.rune_value) { - req.session.selectedNode.rune_value = this.getRuneValue(req.session.selectedNode.rune_path); + if (!req.session.selectedNode.authentication.runeValue) { + req.session.selectedNode.authentication.runeValue = this.getRuneValue(req.session.selectedNode.authentication.runePath); } - req.session.selectedNode.options.headers = { rune: req.session.selectedNode.rune_value }; + req.session.selectedNode.authentication.options.headers = { rune: req.session.selectedNode.authentication.runeValue }; } catch (err) { throw new Error(err); } break; case 'ECL': - req.session.selectedNode.options.headers = { authorization: 'Basic ' + Buffer.from(':' + req.session.selectedNode.ln_api_password).toString('base64') }; + req.session.selectedNode.authentication.options.headers = { authorization: 'Basic ' + Buffer.from(':' + req.session.selectedNode.authentication.lnApiPassword).toString('base64') }; break; default: - req.session.selectedNode.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.macaroon_path, 'admin.macaroon')).toString('hex') }; + req.session.selectedNode.authentication.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(req.session.selectedNode.authentication.macaroonPath, 'admin.macaroon')).toString('hex') }; break; } } if (req.session.selectedNode) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.ln_node, data: req.session.selectedNode.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode, data: req.session.selectedNode.authentication.options }); } return { status: 200, message: 'Updated Successfully' }; } catch (err) { - req.session.selectedNode.options = { + req.session.selectedNode.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: null }; - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Update Selected Node Options Error', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Update Selected Node Options Error', error: err }); return { status: 502, message: err }; } }; @@ -144,48 +202,48 @@ export class CommonService { }; public setOptions = (req) => { - if (this.nodes[0].options && this.nodes[0].options.headers) { return; } + if (this.nodes[0].authentication.options && this.nodes[0].authentication.options.headers) { return; } if (this.nodes && this.nodes.length > 0) { this.nodes.forEach((node) => { - node.options = { + node.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: null }; try { - if (node.ln_implementation) { - switch (node.ln_implementation.toUpperCase()) { + if (node.lnImplementation) { + switch (node.lnImplementation.toUpperCase()) { case 'CLN': try { - if (!node.rune_value) { - node.rune_value = this.getRuneValue(node.rune_path); + if (!node.authentication.runeValue) { + node.authentication.runeValue = this.getRuneValue(node.authentication.runePath); } - node.options.headers = { rune: node.rune_value }; + node.authentication.options.headers = { rune: node.authentication.runeValue }; } catch (err) { throw new Error(err); } break; case 'ECL': - node.options.headers = { authorization: 'Basic ' + Buffer.from(':' + node.ln_api_password).toString('base64') }; + node.authentication.options.headers = { authorization: 'Basic ' + Buffer.from(':' + node.authentication.lnApiPassword).toString('base64') }; break; default: - node.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(node.macaroon_path, 'admin.macaroon')).toString('hex') }; + node.authentication.options.headers = { 'Grpc-Metadata-macaroon': fs.readFileSync(join(node.authentication.macaroonPath, 'admin.macaroon')).toString('hex') }; break; } } } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Common Set Options Error', error: err }); - node.options = { + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Common Set Options Error', error: err }); + node.authentication.options = { url: '', rejectUnauthorized: false, json: true, form: '' }; } - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.ln_node, data: node.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode, data: node.authentication.options }); }); this.updateSelectedNodeOptions(req); } @@ -264,17 +322,10 @@ export class CommonService { } }; - public handleError = (errRes, fileName, errMsg, selectedNode: CommonSelectedNode) => { - let err = JSON.parse(JSON.stringify(errRes)); - if (err && err.error && Object.keys(err.error).length === 0 && errRes.error && (errRes.error.stack || errRes.error.message)) { - errRes.error = errRes.error.stack || errRes.error.message; - err = JSON.parse(JSON.stringify(errRes)); - } else if (errRes.message || errRes.stack) { - errRes.error = errRes.message || errRes.stack; - err = JSON.parse(JSON.stringify(errRes)); - } - if (!selectedNode) { selectedNode = this.initSelectedNode; } - switch (selectedNode.ln_implementation) { + public handleError = (errRes, fileName, errMsg, selectedNode: SelectedNode) => { + const err = JSON.parse(JSON.stringify(errRes)); + if (!selectedNode) { selectedNode = this.selectedNode; } + switch (selectedNode.lnImplementation) { case 'LND': if (err.options && err.options.headers && err.options.headers['Grpc-Metadata-macaroon']) { delete err.options.headers['Grpc-Metadata-macaroon']; @@ -285,11 +336,11 @@ export class CommonService { break; case 'CLN': - if (err.options && err.options.headers && err.options.headers.macaroon) { - delete err.options.headers.macaroon; + if (err.options && err.options.headers && err.options.headers.rune) { + delete err.options.headers.rune; } - if (err.response && err.response.request && err.response.request.headers && err.response.request.headers.macaroon) { - delete err.response.request.headers.macaroon; + if (err.response && err.response.request && err.response.request.headers && err.response.request.headers.rune) { + delete err.response.request.headers.rune; } break; @@ -328,7 +379,7 @@ export class CommonService { ) }; } - if (selectedNode.ln_implementation === 'ECL' && err.message && err.message.indexOf('Authentication Error') < 0 && err.name && err.name === 'StatusCodeError') { newErrorObj.statusCode = 500; } + if (selectedNode.lnImplementation === 'ECL' && err.message && err.message.indexOf('Authentication Error') < 0 && err.name && err.name === 'StatusCodeError') { newErrorObj.statusCode = 500; } return newErrorObj; }; @@ -339,15 +390,15 @@ export class CommonService { (req.connection.socket ? req.connection.socket.remoteAddress : null)); public getDummyData = (dataKey, lnImplementation) => { - const dummyDataFile = this.rtl_conf_file_path + sep + 'ECLDummyData.log'; + const dummyDataFile = this.appConfig.rtlConfFilePath + sep + 'ECLDummyData.log'; return new Promise((resolve, reject) => { if (this.dummy_data_array_from_file.length === 0) { fs.readFile(dummyDataFile, 'utf8', (err, data) => { if (err) { if (err.code === 'ENOENT') { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Dummy data file does not exist' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Dummy data file does not exist' }); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Getting dummy data failed' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Getting dummy data failed' }); } } else { this.dummy_data_array_from_file = data.split('\n'); @@ -361,22 +412,22 @@ export class CommonService { }; public readCookie = () => { - const exists = fs.existsSync(this.rtl_cookie_path); + const exists = fs.existsSync(this.appConfig.SSO.rtlCookiePath); if (exists) { try { - this.cookie_value = fs.readFileSync(this.rtl_cookie_path, 'utf-8'); + this.appConfig.SSO.cookieValue = fs.readFileSync(this.appConfig.SSO.rtlCookiePath, 'utf-8'); } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading cookie: \n' + err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading cookie: \n' + err }); throw new Error(err); } } else { try { - const directoryName = dirname(this.rtl_cookie_path); + const directoryName = dirname(this.appConfig.SSO.rtlCookiePath); this.createDirectory(directoryName); - fs.writeFileSync(this.rtl_cookie_path, crypto.randomBytes(64).toString('hex')); - this.cookie_value = fs.readFileSync(this.rtl_cookie_path, 'utf-8'); + fs.writeFileSync(this.appConfig.SSO.rtlCookiePath, crypto.randomBytes(64).toString('hex')); + this.appConfig.SSO.cookieValue = fs.readFileSync(this.appConfig.SSO.rtlCookiePath, 'utf-8'); } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading the cookie: \n' + err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while reading the cookie: \n' + err }); throw new Error(err); } } @@ -384,10 +435,10 @@ export class CommonService { public refreshCookie = () => { try { - fs.writeFileSync(this.rtl_cookie_path, crypto.randomBytes(64).toString('hex')); - this.cookie_value = fs.readFileSync(this.rtl_cookie_path, 'utf-8'); + fs.writeFileSync(this.appConfig.SSO.rtlCookiePath, crypto.randomBytes(64).toString('hex')); + this.appConfig.SSO.cookieValue = fs.readFileSync(this.appConfig.SSO.rtlCookiePath, 'utf-8'); } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while refreshing cookie', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Something went wrong while refreshing cookie', error: err }); throw new Error(err); } }; @@ -414,47 +465,47 @@ export class CommonService { }; public replacePasswordWithHash = (multiPassHashed) => { - this.rtl_conf_file_path = process.env.RTL_CONFIG_PATH ? process.env.RTL_CONFIG_PATH : join(dirname(fileURLToPath(import.meta.url)), '../..'); + this.appConfig.rtlConfFilePath = process.env.RTL_CONFIG_PATH ? process.env.RTL_CONFIG_PATH : join(dirname(fileURLToPath(import.meta.url)), '../..'); try { - const RTLConfFile = this.rtl_conf_file_path + sep + 'RTL-Config.json'; + const RTLConfFile = this.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); config.multiPassHashed = multiPassHashed; delete config.multiPass; fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Please note that, RTL has encrypted the plaintext password into its corresponding hash' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Please note that, RTL has encrypted the plaintext password into its corresponding hash' }); return config.multiPassHashed; } catch (err) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Password hashing failed', error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Password hashing failed', error: err }); } }; - public getAllNodeAllChannelBackup = (node: CommonSelectedNode) => { - const channel_backup_file = node.channel_backup_path + sep + 'channel-all.bak'; + public getAllNodeAllChannelBackup = (node: SelectedNode) => { + const channel_backup_file = node.settings.channelBackupPath + sep + 'channel-all.bak'; const options = { - url: node.ln_server_url + '/v1/channels/backup', + url: node.settings.lnServerUrl + '/v1/channels/backup', rejectUnauthorized: false, json: true, - headers: { 'Grpc-Metadata-macaroon': fs.readFileSync(node.macaroon_path + '/admin.macaroon').toString('hex') } + headers: { 'Grpc-Metadata-macaroon': fs.readFileSync(node.authentication.macaroonPath + '/admin.macaroon').toString('hex') } }; - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Getting Channel Backup for Node ' + node.ln_node + '..' }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Getting Channel Backup for Node ' + node.lnNode + '..' }); request(options).then((body) => { fs.writeFile(channel_backup_file, JSON.stringify(body), (err) => { if (err) { - if (node.ln_node) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.ln_node, error: err }); + if (node.lnNode) { + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.lnNode, error: err }); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for File ' + channel_backup_file, error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for File ' + channel_backup_file, error: err }); } } else { - if (node.ln_node) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for Node ' + node.ln_node, data: body }); + if (node.lnNode) { + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for Node ' + node.lnNode, data: body }); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for File ' + channel_backup_file, data: body }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Successful in Channel Backup for File ' + channel_backup_file, data: body }); } } }); }, (err) => { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.ln_node, error: err }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Error in Channel Backup for Node ' + node.lnNode, error: err }); fs.writeFile(channel_backup_file, '', () => { }); }); }; @@ -465,8 +516,8 @@ export class CommonService { const pattern = /v?(\d+(\.\d+)*)/; const match = currentVersion.match(pattern); if (match && match.length && match.length > 1) { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Global Version ' + match[1] }); - this.logger.log({ selectedNode: this.initSelectedNode, level: 'INFO', fileName: 'Common', msg: 'Checking Compatiblility with Version ' + checkVersion }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Global Version ' + match[1] }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Checking Compatiblility with Version ' + checkVersion }); const currentVersionArr = match[1].split('.') || []; currentVersionArr[1] = currentVersionArr[1].substring(0, 2); const checkVersionsArr = checkVersion.split('.'); @@ -475,7 +526,7 @@ export class CommonService { (+currentVersionArr[0] === +checkVersionsArr[0] && +currentVersionArr[1] > +checkVersionsArr[1]) || (+currentVersionArr[0] === +checkVersionsArr[0] && +currentVersionArr[1] === +checkVersionsArr[1] && +currentVersionArr[2] >= +checkVersionsArr[2]); } else { - this.logger.log({ selectedNode: this.initSelectedNode, level: 'ERROR', fileName: 'Common', msg: 'Invalid Version String ' + currentVersion }); + this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Invalid Version String ' + currentVersion }); return false; } } @@ -485,20 +536,10 @@ export class CommonService { public getMonthDays = (selMonth, selYear) => ((selMonth === 1 && selYear % 4 === 0) ? (this.MONTHS[selMonth].days + 1) : this.MONTHS[selMonth].days); public logEnvVariables = (req) => { - const selNode = req.session.selectedNode; + const selNode = req.session.selectedNode; if (selNode && selNode.index) { - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'PORT: ' + this.port }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'HOST: ' + this.host }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'DB_DIRECTORY_PATH: ' + this.db_directory_path }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.rtl_sso }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'DEFAULT NODE INDEX: ' + selNode.index }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'INDEX: ' + selNode.index }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LN NODE: ' + selNode.ln_node }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LN IMPLEMENTATION: ' + selNode.ln_implementation }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'FIAT CONVERSION: ' + selNode.fiat_conversion }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'CURRENCY UNIT: ' + selNode.currency_unit }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LN SERVER URL: ' + selNode.ln_server_url }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'LOGOUT REDIRECT LINK: ' + this.logout_redirect_link + '\r\n' }); + this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup:', msg: JSON.stringify(this.removeSecureData(JSON.parse(JSON.stringify(this.appConfig)))) }); + this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.appConfig.SSO.rtlSso }); } }; diff --git a/server/utils/config.ts b/server/utils/config.ts index c6ed7dbb..362a722a 100644 --- a/server/utils/config.ts +++ b/server/utils/config.ts @@ -67,11 +67,11 @@ export class ConfigService { index: 1, lnNode: 'Node 1', lnImplementation: 'LND', - Authentication: { + authentication: { macaroonPath: macaroonPath, configPath: configPath }, - Settings: { + settings: { userPersona: 'MERCHANT', themeMode: 'DAY', themeColor: 'PURPLE', @@ -79,7 +79,8 @@ export class ConfigService { logLevel: 'ERROR', lnServerUrl: 'https://127.0.0.1:8080', fiatConversion: false, - unannouncedChannels: false + unannouncedChannels: false, + blockExplorerUrl: 'https://mempool.space' } } ] @@ -103,15 +104,15 @@ export class ConfigService { private updateLogByLevel = () => { let updateLogFlag = false; - this.common.rtl_conf_file_path = process?.env?.RTL_CONFIG_PATH ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); + this.common.appConfig.rtlConfFilePath = process?.env?.RTL_CONFIG_PATH ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); try { - const RTLConfFile = this.common.rtl_conf_file_path + sep + 'RTL-Config.json'; + const RTLConfFile = this.common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); config.nodes.forEach((node) => { - if (node.Settings.hasOwnProperty('enableLogging')) { + if (node.settings.hasOwnProperty('enableLogging')) { updateLogFlag = true; - node.Settings.logLevel = node.Settings.enableLogging ? 'INFO' : 'ERROR'; - delete node.Settings.enableLogging; + node.settings.logLevel = node.settings.enableLogging ? 'INFO' : 'ERROR'; + delete node.settings.enableLogging; } }); if (updateLogFlag) { @@ -123,18 +124,19 @@ export class ConfigService { }; private validateNodeConfig = (config) => { + config.allowPasswordUpdate = true; if ((process?.env?.RTL_SSO && +process?.env?.RTL_SSO === 0) || (typeof process?.env?.RTL_SSO === 'undefined' && +config.SSO.rtlSSO === 0)) { if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { - this.common.rtl_pass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); - this.common.flg_allow_password_update = false; + config.rtlPass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); + config.allowPasswordUpdate = false; } else if (config.multiPassHashed && config.multiPassHashed !== '') { - this.common.rtl_pass = config.multiPassHashed; + config.rtlPass = config.multiPassHashed; } else if (config.multiPass && config.multiPass !== '') { - this.common.rtl_pass = this.common.replacePasswordWithHash(this.hash.update(config.multiPass).digest('hex')); + config.rtlPass = this.common.replacePasswordWithHash(this.hash.update(config.multiPass).digest('hex')); } else { this.errMsg = this.errMsg + '\nNode Authentication can be set with multiPass only. Please set multiPass in RTL-Config.json'; } - this.common.rtl_secret2fa = config.secret2fa; + config.enable2FA = !!config.secret2FA; } else { if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { this.errMsg = this.errMsg + '\nRTL Password cannot be set with SSO. Please set SSO as 0 or remove password.'; @@ -142,20 +144,20 @@ export class ConfigService { } this.common.port = (process?.env?.PORT) ? this.normalizePort(process?.env?.PORT) : (config.port) ? this.normalizePort(config.port) : 3000; this.common.host = (process?.env?.HOST) ? process?.env?.HOST : (config.host) ? config.host : null; - this.common.db_directory_path = (process?.env?.DB_DIRECTORY_PATH) ? process?.env?.DB_DIRECTORY_PATH : (config.dbDirectoryPath) ? config.dbDirectoryPath : join(dirname(fileURLToPath(import.meta.url)), '..', '..'); + config.dbDirectoryPath = (process?.env?.DB_DIRECTORY_PATH) ? process?.env?.DB_DIRECTORY_PATH : (config.dbDirectoryPath) ? config.dbDirectoryPath : join(dirname(fileURLToPath(import.meta.url)), '..', '..'); if (config.nodes && config.nodes.length > 0) { config.nodes.forEach((node, idx) => { - this.common.nodes[idx] = {}; + this.common.nodes[idx] = { settings: { blockExplorerUrl: '' }, authentication: {} }; this.common.nodes[idx].index = node.index; - this.common.nodes[idx].ln_node = node.lnNode; - this.common.nodes[idx].ln_implementation = (process?.env?.LN_IMPLEMENTATION) ? process?.env?.LN_IMPLEMENTATION : node.lnImplementation ? node.lnImplementation : 'LND'; - if (this.common.nodes[idx].ln_implementation === 'CLT') { this.common.nodes[idx].ln_implementation = 'CLN'; } - switch (this.common.nodes[idx].ln_implementation) { + this.common.nodes[idx].lnNode = node.lnNode; + this.common.nodes[idx].lnImplementation = (process?.env?.lnImplementation) ? process?.env?.lnImplementation : node.lnImplementation ? node.lnImplementation : 'LND'; + if (this.common.nodes[idx].lnImplementation === 'CLT') { this.common.nodes[idx].lnImplementation = 'CLN'; } + switch (this.common.nodes[idx].lnImplementation) { case 'CLN': if (process?.env?.RUNE_PATH && process?.env?.RUNE_PATH.trim() !== '') { - this.common.nodes[idx].rune_path = process?.env?.RUNE_PATH; - } else if (node.Authentication && node.Authentication.runePath && node.Authentication.runePath.trim() !== '') { - this.common.nodes[idx].rune_path = node.Authentication.runePath; + this.common.nodes[idx].authentication.runePath = process?.env?.RUNE_PATH; + } else if (node.authentication && node.authentication.runePath && node.authentication.runePath.trim() !== '') { + this.common.nodes[idx].authentication.runePath = node.authentication.runePath; } else { this.errMsg = 'Please set rune path for node index ' + node.index + ' in RTL-Config.json!'; } @@ -163,118 +165,119 @@ export class ConfigService { case 'ECL': if (process?.env?.LN_API_PASSWORD) { - this.common.nodes[idx].ln_api_password = process?.env?.LN_API_PASSWORD; - } else if (node.Authentication && node.Authentication.lnApiPassword) { - this.common.nodes[idx].ln_api_password = node.Authentication.lnApiPassword; + this.common.nodes[idx].authentication.lnApiPassword = process?.env?.LN_API_PASSWORD; + } else if (node.authentication && node.authentication.lnApiPassword) { + this.common.nodes[idx].authentication.lnApiPassword = node.authentication.lnApiPassword; } else { - this.common.nodes[idx].ln_api_password = ''; + this.common.nodes[idx].authentication.lnApiPassword = ''; } break; default: if (process?.env?.MACAROON_PATH && process?.env?.MACAROON_PATH.trim() !== '') { - this.common.nodes[idx].macaroon_path = process?.env?.MACAROON_PATH; - } else if (node.Authentication && node.Authentication.macaroonPath && node.Authentication.macaroonPath.trim() !== '') { - this.common.nodes[idx].macaroon_path = node.Authentication.macaroonPath; + this.common.nodes[idx].authentication.macaroonPath = process?.env?.MACAROON_PATH; + } else if (node.authentication && node.authentication.macaroonPath && node.authentication.macaroonPath.trim() !== '') { + this.common.nodes[idx].authentication.macaroonPath = node.authentication.macaroonPath; } else { this.errMsg = 'Please set macaroon path for node index ' + node.index + ' in RTL-Config.json!'; } break; } if (process?.env?.CONFIG_PATH) { - this.common.nodes[idx].config_path = process?.env?.CONFIG_PATH; - } else if (node.Authentication && node.Authentication.configPath) { - this.common.nodes[idx].config_path = node.Authentication.configPath; + this.common.nodes[idx].authentication.configPath = process?.env?.CONFIG_PATH; + } else if (node.authentication && node.authentication.configPath) { + this.common.nodes[idx].authentication.configPath = node.authentication.configPath; } else { - this.common.nodes[idx].config_path = ''; + this.common.nodes[idx].authentication.configPath = ''; } - if (this.common.nodes[idx].ln_implementation === 'ECL' && this.common.nodes[idx].ln_api_password === '' && this.common.nodes[idx].config_path !== '') { + if (this.common.nodes[idx].lnImplementation === 'ECL' && this.common.nodes[idx].authentication.lnApiPassword === '' && this.common.nodes[idx].authentication.configPath !== '') { try { - const exists = fs.existsSync(this.common.nodes[idx].config_path || ''); + const exists = fs.existsSync(this.common.nodes[idx].authentication.configPath || ''); if (exists) { try { - const configFile = fs.readFileSync((this.common.nodes[idx].config_path || ''), 'utf-8'); + const configFile = fs.readFileSync((this.common.nodes[idx].authentication.configPath || ''), 'utf-8'); const iniParsed = ini.parse(configFile); - this.common.nodes[idx].ln_api_password = iniParsed['eclair.api.password'] ? iniParsed['eclair.api.password'] : parseHocon(configFile).eclair.api.password; + this.common.nodes[idx].authentication.lnApiPassword = iniParsed['eclair.api.password'] ? iniParsed['eclair.api.password'] : parseHocon(configFile).eclair.api.password; } catch (err) { this.errMsg = this.errMsg + '\nSomething went wrong while reading config file: \n' + err; } } else { - this.errMsg = this.errMsg + '\nInvalid config path: ' + this.common.nodes[idx].config_path; + this.errMsg = this.errMsg + '\nInvalid config path: ' + this.common.nodes[idx].authentication.configPath; } } catch (err) { this.errMsg = this.errMsg + '\nUnable to read config file: \n' + err; } } - if (this.common.nodes[idx].ln_implementation === 'ECL' && this.common.nodes[idx].ln_api_password === '') { + if (this.common.nodes[idx].lnImplementation === 'ECL' && this.common.nodes[idx].authentication.lnApiPassword === '') { this.errMsg = this.errMsg + '\nPlease set config path Or api password for node index ' + node.index + ' in RTL-Config.json! It is mandatory for Eclair authentication!'; } if (process?.env?.LN_SERVER_URL && process?.env?.LN_SERVER_URL.trim() !== '') { - this.common.nodes[idx].ln_server_url = process?.env?.LN_SERVER_URL.endsWith('/v1') ? process?.env?.LN_SERVER_URL.slice(0, -3) : process?.env?.LN_SERVER_URL; + this.common.nodes[idx].settings.lnServerUrl = process?.env?.LN_SERVER_URL.endsWith('/v1') ? process?.env?.LN_SERVER_URL.slice(0, -3) : process?.env?.LN_SERVER_URL; } else if (process?.env?.LND_SERVER_URL && process?.env?.LND_SERVER_URL.trim() !== '') { - this.common.nodes[idx].ln_server_url = process?.env?.LND_SERVER_URL.endsWith('/v1') ? process?.env?.LND_SERVER_URL.slice(0, -3) : process?.env?.LND_SERVER_URL; - } else if (node.Settings.lnServerUrl && node.Settings.lnServerUrl.trim() !== '') { - this.common.nodes[idx].ln_server_url = node.Settings.lnServerUrl.endsWith('/v1') ? node.Settings.lnServerUrl.slice(0, -3) : node.Settings.lnServerUrl; - } else if (node.Settings.lndServerUrl && node.Settings.lndServerUrl.trim() !== '') { - this.common.nodes[idx].ln_server_url = node.Settings.lndServerUrl.endsWith('/v1') ? node.Settings.lndServerUrl.slice(0, -3) : node.Settings.lndServerUrl; + this.common.nodes[idx].settings.lnServerUrl = process?.env?.LND_SERVER_URL.endsWith('/v1') ? process?.env?.LND_SERVER_URL.slice(0, -3) : process?.env?.LND_SERVER_URL; + } else if (node.settings.lnServerUrl && node.settings.lnServerUrl.trim() !== '') { + this.common.nodes[idx].settings.lnServerUrl = node.settings.lnServerUrl.endsWith('/v1') ? node.settings.lnServerUrl.slice(0, -3) : node.settings.lnServerUrl; + } else if (node.settings.lndServerUrl && node.settings.lndServerUrl.trim() !== '') { + this.common.nodes[idx].settings.lnServerUrl = node.settings.lndServerUrl.endsWith('/v1') ? node.settings.lndServerUrl.slice(0, -3) : node.settings.lndServerUrl; } else { this.errMsg = this.errMsg + '\nPlease set LN Server URL for node index ' + node.index + ' in RTL-Config.json!'; } - 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) { - this.common.nodes[idx].currency_unit = node.Settings.currencyUnit ? node.Settings.currencyUnit : 'USD'; + this.common.nodes[idx].settings.userPersona = node.settings.userPersona ? node.settings.userPersona : 'MERCHANT'; + this.common.nodes[idx].settings.themeMode = node.settings.themeMode ? node.settings.themeMode : 'DAY'; + this.common.nodes[idx].settings.themeColor = node.settings.themeColor ? node.settings.themeColor : 'PURPLE'; + this.common.nodes[idx].settings.unannouncedChannels = node.settings.unannouncedChannels ? !!node.settings.unannouncedChannels : false; + this.common.nodes[idx].settings.logLevel = node.settings.logLevel ? node.settings.logLevel : 'ERROR'; + this.common.nodes[idx].settings.fiatConversion = node.settings.fiatConversion ? !!node.settings.fiatConversion : false; + if (this.common.nodes[idx].settings.fiatConversion) { + this.common.nodes[idx].settings.currencyUnit = node.settings.currencyUnit ? node.settings.currencyUnit : 'USD'; } if (process?.env?.SWAP_SERVER_URL && process?.env?.SWAP_SERVER_URL.trim() !== '') { - this.common.nodes[idx].swap_server_url = process?.env?.SWAP_SERVER_URL.endsWith('/v1') ? process?.env?.SWAP_SERVER_URL.slice(0, -3) : process?.env?.SWAP_SERVER_URL; - this.common.nodes[idx].swap_macaroon_path = process?.env?.SWAP_MACAROON_PATH; - } else if (node.Settings.swapServerUrl && node.Settings.swapServerUrl.trim() !== '') { - this.common.nodes[idx].swap_server_url = node.Settings.swapServerUrl.endsWith('/v1') ? node.Settings.swapServerUrl.slice(0, -3) : node.Settings.swapServerUrl; - this.common.nodes[idx].swap_macaroon_path = node.Authentication.swapMacaroonPath ? node.Authentication.swapMacaroonPath : ''; + this.common.nodes[idx].settings.swapServerUrl = process?.env?.SWAP_SERVER_URL.endsWith('/v1') ? process?.env?.SWAP_SERVER_URL.slice(0, -3) : process?.env?.SWAP_SERVER_URL; + this.common.nodes[idx].authentication.swapMacaroonPath = process?.env?.SWAP_MACAROON_PATH; + } else if (node.settings.swapServerUrl && node.settings.swapServerUrl.trim() !== '') { + this.common.nodes[idx].settings.swapServerUrl = node.settings.swapServerUrl.endsWith('/v1') ? node.settings.swapServerUrl.slice(0, -3) : node.settings.swapServerUrl; + this.common.nodes[idx].authentication.swapMacaroonPath = node.authentication.swapMacaroonPath ? node.authentication.swapMacaroonPath : ''; } else { - this.common.nodes[idx].swap_server_url = ''; - this.common.nodes[idx].swap_macaroon_path = ''; + this.common.nodes[idx].settings.swapServerUrl = ''; + this.common.nodes[idx].authentication.swapMacaroonPath = ''; } if (process?.env?.BOLTZ_SERVER_URL && process?.env?.BOLTZ_SERVER_URL.trim() !== '') { - this.common.nodes[idx].boltz_server_url = process?.env?.BOLTZ_SERVER_URL.endsWith('/v1') ? process?.env?.BOLTZ_SERVER_URL.slice(0, -3) : process?.env?.BOLTZ_SERVER_URL; - this.common.nodes[idx].boltz_macaroon_path = process?.env?.BOLTZ_MACAROON_PATH; - } else if (node.Settings.boltzServerUrl && node.Settings.boltzServerUrl.trim() !== '') { - this.common.nodes[idx].boltz_server_url = node.Settings.boltzServerUrl.endsWith('/v1') ? node.Settings.boltzServerUrl.slice(0, -3) : node.Settings.boltzServerUrl; - this.common.nodes[idx].boltz_macaroon_path = node.Authentication.boltzMacaroonPath ? node.Authentication.boltzMacaroonPath : ''; + this.common.nodes[idx].settings.boltzServerUrl = process?.env?.BOLTZ_SERVER_URL.endsWith('/v1') ? process?.env?.BOLTZ_SERVER_URL.slice(0, -3) : process?.env?.BOLTZ_SERVER_URL; + this.common.nodes[idx].authentication.boltzMacaroonPath = process?.env?.BOLTZ_MACAROON_PATH; + } else if (node.settings.boltzServerUrl && node.settings.boltzServerUrl.trim() !== '') { + this.common.nodes[idx].settings.boltzServerUrl = node.settings.boltzServerUrl.endsWith('/v1') ? node.settings.boltzServerUrl.slice(0, -3) : node.settings.boltzServerUrl; + this.common.nodes[idx].authentication.boltzMacaroonPath = node.authentication.boltzMacaroonPath ? node.authentication.boltzMacaroonPath : ''; } else { - this.common.nodes[idx].boltz_server_url = ''; - this.common.nodes[idx].boltz_macaroon_path = ''; + this.common.nodes[idx].settings.boltzServerUrl = ''; + this.common.nodes[idx].authentication.boltzMacaroonPath = ''; } - 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; + this.common.nodes[idx].settings.enableOffers = process?.env?.ENABLE_OFFERS ? process?.env?.ENABLE_OFFERS : (node.settings.enableOffers) ? node.settings.enableOffers : false; + this.common.nodes[idx].settings.enablePeerswap = process?.env?.ENABLE_PEERSWAP ? process?.env?.ENABLE_PEERSWAP : (node.settings.enablePeerswap) ? node.settings.enablePeerswap : false; + this.common.nodes[idx].settings.bitcoindConfigPath = process?.env?.BITCOIND_CONFIG_PATH ? process?.env?.BITCOIND_CONFIG_PATH : (node.settings.bitcoindConfigPath) ? node.settings.bitcoindConfigPath : ''; + this.common.nodes[idx].settings.channelBackupPath = process?.env?.CHANNEL_BACKUP_PATH ? process?.env?.CHANNEL_BACKUP_PATH : (node.settings.channelBackupPath) ? node.settings.channelBackupPath : this.common.appConfig.rtlConfFilePath + sep + 'channels-backup' + sep + 'node-' + node.index; + this.common.nodes[idx].settings.blockExplorerUrl = process?.env?.BLOCK_EXPLORER_URL ? process.env.BLOCK_EXPLORER_URL : (node.settings.blockExplorerUrl) ? node.settings.blockExplorerUrl : 'https://mempool.space'; try { - this.common.createDirectory(this.common.nodes[idx].channel_backup_path); - const exists = fs.existsSync(this.common.nodes[idx].channel_backup_path + sep + 'channel-all.bak'); + this.common.createDirectory(this.common.nodes[idx].settings.channelBackupPath); + const exists = fs.existsSync(this.common.nodes[idx].settings.channelBackupPath + sep + 'channel-all.bak'); if (!exists) { try { - if (this.common.nodes[idx].ln_implementation === 'LND') { + if (this.common.nodes[idx].lnImplementation === 'LND') { this.common.getAllNodeAllChannelBackup(this.common.nodes[idx]); } else { - const createStream = fs.createWriteStream(this.common.nodes[idx].channel_backup_path + sep + 'channel-all.bak'); + const createStream = fs.createWriteStream(this.common.nodes[idx].settings.channelBackupPath + sep + 'channel-all.bak'); createStream.end(); } } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating backup file: \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating backup file: \n' + err }); } } } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); } - this.common.nodes[idx].log_file = this.common.rtl_conf_file_path + '/logs/RTL-Node-' + node.index + '.log'; - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); - const log_file = this.common.nodes[idx].log_file; + this.common.nodes[idx].settings.logFile = config.rtlConfFilePath + '/logs/RTL-Node-' + node.index + '.log'; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); + const log_file = this.common.nodes[idx].settings.logFile; if (fs.existsSync(log_file || '')) { fs.writeFile((log_file || ''), '', () => { }); } else { @@ -284,7 +287,7 @@ export class ConfigService { const createStream = fs.createWriteStream(log_file || ''); createStream.end(); } catch (err) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating log file ' + log_file + ': \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating log file ' + log_file + ': \n' + err }); } } }); @@ -295,27 +298,27 @@ export class ConfigService { private setSSOParams = (config) => { if (process?.env?.RTL_SSO) { - this.common.rtl_sso = +process?.env?.RTL_SSO; + config.SSO.rtlSso = +process?.env?.RTL_SSO; } else if (config.SSO && config.SSO.rtlSSO) { - this.common.rtl_sso = config.SSO.rtlSSO; + config.SSO.rtlSso = config.SSO.rtlSSO; } if (process?.env?.RTL_COOKIE_PATH) { - this.common.rtl_cookie_path = process?.env?.RTL_COOKIE_PATH; + config.SSO.rtlCookiePath = process?.env?.RTL_COOKIE_PATH; } else if (config.SSO && config.SSO.rtlCookiePath) { - this.common.rtl_cookie_path = config.SSO.rtlCookiePath; + config.SSO.rtlCookiePath = config.SSO.rtlCookiePath; } else { - this.common.rtl_cookie_path = ''; + config.SSO.rtlCookiePath = ''; } if (process?.env?.LOGOUT_REDIRECT_LINK) { - this.common.logout_redirect_link = process?.env?.LOGOUT_REDIRECT_LINK; + config.SSO.logoutRedirectLink = process?.env?.LOGOUT_REDIRECT_LINK; } else if (config.SSO && config.SSO.logoutRedirectLink) { - this.common.logout_redirect_link = config.SSO.logoutRedirectLink; + config.SSO.logoutRedirectLink = config.SSO.logoutRedirectLink; } - if (+this.common.rtl_sso) { - if (!this.common.rtl_cookie_path || this.common.rtl_cookie_path.trim() === '') { + if (+config.SSO.rtlSso) { + if (!config.SSO.rtlCookiePath || config.SSO.rtlCookiePath.trim() === '') { this.errMsg = 'Please set rtlCookiePath value for single sign on option!'; } else { this.common.readCookie(); @@ -325,25 +328,47 @@ export class ConfigService { private setSelectedNode = (config) => { if (config.defaultNodeIndex) { - this.common.initSelectedNode = this.common.findNode(config.defaultNodeIndex) || {}; + this.common.selectedNode = this.common.findNode(config.defaultNodeIndex) || {}; } else { - this.common.initSelectedNode = this.common.findNode(this.common.nodes[0].index) || {}; + this.common.selectedNode = this.common.findNode(this.common.nodes[0].index) || {}; } }; + private updateConfig = (confFileFullPath, config) => { + // Update Config file to change Settings to settings and Authentication to authentication + // Added in v0.15.1, remove in a year? + if (!config.nodes) { return; } + config.nodes.map((node) => { + if (node.Authentication) { + node.authentication = JSON.parse(JSON.stringify(node.Authentication)); + delete node.Authentication; + } + if (node.Settings) { + node.settings = JSON.parse(JSON.stringify(node.Settings)); + delete node.Settings; + } + return node; + }); + fs.writeFileSync(confFileFullPath, JSON.stringify(config, null, 2), 'utf-8'); + }; + public setServerConfiguration = () => { + const rtlConfFilePath = (process?.env?.RTL_CONFIG_PATH) ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); + const confFileFullPath = rtlConfFilePath + sep + 'RTL-Config.json'; try { - this.common.rtl_conf_file_path = (process?.env?.RTL_CONFIG_PATH) ? process?.env?.RTL_CONFIG_PATH : join(this.directoryName, '../..'); - const confFileFullPath = this.common.rtl_conf_file_path + sep + 'RTL-Config.json'; if (!fs.existsSync(confFileFullPath)) { - fs.writeFileSync(confFileFullPath, JSON.stringify(this.setDefaultConfig())); + fs.writeFileSync(confFileFullPath, JSON.stringify(this.setDefaultConfig(), null, 2), 'utf-8'); } const config = JSON.parse(fs.readFileSync(confFileFullPath, 'utf-8')); + this.updateConfig(confFileFullPath, config); + config.rtlConfFilePath = rtlConfFilePath; this.updateLogByLevel(); this.validateNodeConfig(config); this.setSelectedNode(config); + this.common.appConfig = config; } catch (err: any) { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while configuring the node server: \n' + err }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Config file path: ' + confFileFullPath }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while configuring the node server: \n' + err }); throw new Error(err); } }; diff --git a/server/utils/cors.ts b/server/utils/cors.ts index 57bec2d7..b3d31421 100644 --- a/server/utils/cors.ts +++ b/server/utils/cors.ts @@ -8,7 +8,7 @@ class CORS { public common: CommonService = Common; public mount(app: Application): Application { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CORS', msg: 'Setting up CORS..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CORS', msg: 'Setting up CORS..' }); app.use((req, res, next) => { res.setHeader('Cache-Control', 'no-cache'); res.setHeader('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, Authorization, filePath'); @@ -19,7 +19,7 @@ class CORS { } next(); }); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CORS', msg: 'CORS Set' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CORS', msg: 'CORS Set' }); return app; }; diff --git a/server/utils/csrf.ts b/server/utils/csrf.ts index 7b12a82f..074a2dea 100644 --- a/server/utils/csrf.ts +++ b/server/utils/csrf.ts @@ -10,11 +10,11 @@ class CSRF { public common: CommonService = Common; public mount(app: Application): Application { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); if (process.env.NODE_ENV !== 'development') { app.use((req, res, next) => this.csrfProtection(req, res, next)); } - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'CSRF', msg: 'CSRF Set' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'CSRF Set' }); return app; }; diff --git a/server/utils/database.ts b/server/utils/database.ts index 4675e053..43e408a7 100644 --- a/server/utils/database.ts +++ b/server/utils/database.ts @@ -3,20 +3,20 @@ import { join, sep } from 'path'; import { Common, CommonService } from '../utils/common.js'; import { Logger, LoggerService } from '../utils/logger.js'; import { Collections, CollectionsEnum, validateDocument, LNDCollection, ECLCollection, CLNCollection, ECL_UPDATED_DB } from '../models/database.model.js'; -import { CommonSelectedNode } from '../models/config.model.js'; +import { SelectedNode } from '../models/config.model.js'; export class DatabaseService { public common: CommonService = Common; public logger: LoggerService = Logger; - public dbDirectory = join(this.common.db_directory_path, 'database'); + public dbDirectory = join(this.common.appConfig.dbDirectoryPath, 'database'); public nodeDatabase: { id?: { adapter: DatabaseAdapter, data: Collections } } = {}; constructor() { } migrateDatabase() { this.common.nodes?.map((node: any) => { - if (node.ln_implementation === 'ECL') { + if (node.lnImplementation === 'ECL') { this.nodeDatabase[node.index] = { adapter: null, data: {} }; this.nodeDatabase[node.index].adapter = new DatabaseAdapter(this.dbDirectory, node); this.fetchNodeData(node); @@ -82,8 +82,8 @@ export class DatabaseService { } } - fetchNodeData(selectedNode: CommonSelectedNode) { - switch (selectedNode.ln_implementation) { + fetchNodeData(selectedNode: SelectedNode) { + switch (selectedNode.lnImplementation) { case 'CLN': for (const collectionName in CLNCollection) { if (CLNCollection.hasOwnProperty(collectionName)) { @@ -121,7 +121,7 @@ export class DatabaseService { }); } - insert(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, newCollection: any) { + insert(selectedNode: SelectedNode, collectionName: CollectionsEnum, newCollection: any) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { @@ -136,7 +136,7 @@ export class DatabaseService { }); } - update(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, updatedDocument: any, documentFieldName: string, documentFieldValue: string) { + update(selectedNode: SelectedNode, collectionName: CollectionsEnum, updatedDocument: any, documentFieldName: string, documentFieldValue: string) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { @@ -172,7 +172,7 @@ export class DatabaseService { }); } - find(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, documentFieldName?: string, documentFieldValue?: string) { + find(selectedNode: SelectedNode, collectionName: CollectionsEnum, documentFieldName?: string, documentFieldValue?: string) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { @@ -189,7 +189,7 @@ export class DatabaseService { }); } - remove(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum, documentFieldName: string, documentFieldValue: string) { + remove(selectedNode: SelectedNode, collectionName: CollectionsEnum, documentFieldName: string, documentFieldValue: string) { return new Promise((resolve, reject) => { try { if (!selectedNode || !selectedNode.index) { @@ -209,7 +209,7 @@ export class DatabaseService { }); } - saveDatabase(selectedNode: CommonSelectedNode, collectionName: CollectionsEnum) { + saveDatabase(selectedNode: SelectedNode, collectionName: CollectionsEnum) { const nodeIndex = +selectedNode.index; try { if (nodeIndex < 1) { @@ -250,17 +250,17 @@ export class DatabaseAdapter { private dbFilePath = ''; private userSessions = []; - constructor(public dbDirectoryPath: string, public selNode: CommonSelectedNode = null, public id: string = '') { + constructor(public dbDirectoryPath: string, public selNode: SelectedNode = null, public 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); } + if (selNode.lnImplementation === 'CLN' && fs.existsSync(oldFilePath)) { this.renameOldDB(oldFilePath, selNode); } // For backward compatibility End this.insertSession(id); } - renameOldDB(oldFilePath: string, selNode: CommonSelectedNode = null) { - const newFilePath = this.dbFilePath + sep + 'rtldb-' + selNode.ln_implementation + '-Offers.json'; + renameOldDB(oldFilePath: string, selNode: SelectedNode = null) { + const newFilePath = this.dbFilePath + sep + 'rtldb-' + selNode.lnImplementation + '-Offers.json'; try { this.common.createDirectory(this.dbFilePath); const oldOffers: any = JSON.parse(fs.readFileSync(oldFilePath, 'utf-8')); @@ -279,7 +279,7 @@ export class DatabaseAdapter { } catch (err) { throw new Error(JSON.stringify(err)); } - const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.lnImplementation + '-' + collectionName + '.json'; try { if (!fs.existsSync(collectionFilePath)) { fs.writeFileSync(collectionFilePath, '[]'); @@ -291,17 +291,17 @@ export class DatabaseAdapter { const otherFiles = fs.readdirSync(this.dbFilePath); otherFiles.forEach((oFileName) => { let collectionValid = false; - switch (this.selNode.ln_implementation) { + switch (this.selNode.lnImplementation) { case 'CLN': - collectionValid = CLNCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + collectionValid = CLNCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.lnImplementation + '-' + collection + '.json'), false); break; case 'ECL': - collectionValid = ECLCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + collectionValid = ECLCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.lnImplementation + '-' + collection + '.json'), false); break; default: - collectionValid = LNDCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.ln_implementation + '-' + collection + '.json'), false); + collectionValid = LNDCollection.reduce((acc, collection) => acc || oFileName === ('rtldb-' + this.selNode.lnImplementation + '-' + collection + '.json'), false); break; } if (oFileName.endsWith('.json') && !collectionValid) { @@ -327,7 +327,7 @@ export class DatabaseAdapter { saveData(collectionName: string, collectionData: any) { try { if (collectionData) { - const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.ln_implementation + '-' + collectionName + '.json'; + const collectionFilePath = this.dbFilePath + sep + 'rtldb-' + this.selNode.lnImplementation + '-' + collectionName + '.json'; const tempFile = collectionFilePath + '.tmp'; fs.writeFileSync(tempFile, JSON.stringify(collectionData, null, 2)); fs.renameSync(tempFile, collectionFilePath); diff --git a/server/utils/logger.ts b/server/utils/logger.ts index d0259407..37f8c7fb 100644 --- a/server/utils/logger.ts +++ b/server/utils/logger.ts @@ -17,16 +17,16 @@ export class LoggerService { msgStr = msgStr + '.\r\n'; } console.error(msgStr); - if (msgJSON.selectedNode && msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } break; case 'WARN': msgStr = prepMsgData(msgJSON, msgStr); - if (!msgJSON.selectedNode || msgJSON.selectedNode.log_level === 'WARN' || msgJSON.selectedNode.log_level === 'INFO' || msgJSON.selectedNode.log_level === 'DEBUG') { - if (msgJSON.selectedNode && msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (!msgJSON.selectedNode || msgJSON.selectedNode.settings.logLevel === 'WARN' || msgJSON.selectedNode.settings.logLevel === 'INFO' || msgJSON.selectedNode.settings.logLevel === 'DEBUG') { + if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } break; @@ -34,17 +34,17 @@ export class LoggerService { case 'INFO': if (!msgJSON.selectedNode && msgJSON.fileName === 'RTL') { console.log(msgStr + '.\r\n'); - } else if (msgJSON.selectedNode && msgJSON.selectedNode.log_level === 'INFO') { + } else if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logLevel === 'INFO') { msgStr = msgStr + '.\r\n'; console.log(msgStr); - if (msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } - } else if (msgJSON.selectedNode && msgJSON.selectedNode.log_level === 'DEBUG') { + } else if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logLevel === 'DEBUG') { msgStr = prepMsgData(msgJSON, msgStr); console.log(msgStr); - if (msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } break; @@ -52,11 +52,11 @@ export class LoggerService { case 'DEBUG': if (!msgJSON.selectedNode) { console.log(msgStr + '.\r\n'); - } else if (msgJSON.selectedNode && msgJSON.selectedNode.log_level === 'DEBUG') { + } else if (msgJSON.selectedNode && msgJSON.selectedNode.settings.logLevel === 'DEBUG') { msgStr = prepMsgData(msgJSON, msgStr); console.log(msgStr); - if (msgJSON.selectedNode.log_file) { - fs.appendFile(msgJSON.selectedNode.log_file, msgStr, () => { }); + if (msgJSON.selectedNode.settings.logFile) { + fs.appendFile(msgJSON.selectedNode.settings.logFile, msgStr, () => { }); } } break; diff --git a/server/utils/webSocketServer.ts b/server/utils/webSocketServer.ts index 4b8f6a72..80f0187d 100644 --- a/server/utils/webSocketServer.ts +++ b/server/utils/webSocketServer.ts @@ -6,7 +6,7 @@ import { Logger, LoggerService } from './logger.js'; import { Common, CommonService } from './common.js'; import { verifyWSUser } from './authCheck.js'; import { EventEmitter } from 'events'; -import { CommonSelectedNode } from '../models/config.model.js'; +import { SelectedNode } from '../models/config.model.js'; export class RTLWebSocketServer { @@ -32,7 +32,7 @@ export class RTLWebSocketServer { }, 1000 * 60 * 60); // Terminate broken connections every hour public mount = (httpServer) => { - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connecting Websocket Server..' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connecting Websocket Server..' }); this.webSocketServer = new WebSocketServer({ noServer: true, path: this.common.baseHref + '/api/ws', verifyClient: (process.env.NODE_ENV === 'development') ? null : verifyWSUser }); httpServer.on('upgrade', (request, socket, head) => { if (request.headers['upgrade'] !== 'websocket') { @@ -48,7 +48,7 @@ export class RTLWebSocketServer { }); this.webSocketServer.on('connection', this.mountEventsOnConnection); this.webSocketServer.on('close', () => clearInterval(this.pingInterval)); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Websocket Server Connected' }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Websocket Server Connected' }); }; public upgradeCallback = (websocket, request) => { @@ -62,13 +62,13 @@ export class RTLWebSocketServer { websocket.isAlive = true; 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 }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Connected: ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); websocket.on('error', this.sendErrorToAllLNClients); websocket.on('message', this.sendEventsToAllLNClients); websocket.on('pong', () => { websocket.isAlive = true; }); websocket.on('close', (code, reason) => { this.updateLNWSClientDetails(websocket.sessionId, -1, websocket.clientNodeIndex); - this.logger.log({ selectedNode: this.common.initSelectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Disconnected due to ' + code + ' : ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'WebSocketServer', msg: 'Disconnected due to ' + code + ' : ' + websocket.clientId + ', Total WS clients: ' + this.webSocketServer.clients.size }); }); }; @@ -87,7 +87,7 @@ export class RTLWebSocketServer { this.connectToNodeClient(sessionId, currNodeIndex); } else { const selectedNode = this.common.findNode(currNodeIndex); - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Invalid Node Selection. Previous and current node indices can not be less than zero.' }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Invalid Node Selection. Previous and current node indices can not be less than zero.' }); } }; @@ -102,8 +102,8 @@ export class RTLWebSocketServer { const foundClientIdx = this.clientDetails.findIndex((clientDetail) => clientDetail.index === +prevNodeIndex); this.clientDetails.splice(foundClientIdx, 1); const prevSelectedNode = this.common.findNode(prevNodeIndex); - if (prevSelectedNode && prevSelectedNode.ln_implementation) { - switch (prevSelectedNode.ln_implementation) { + if (prevSelectedNode && prevSelectedNode.lnImplementation) { + switch (prevSelectedNode.lnImplementation) { case 'LND': this.eventEmitterLND.emit('DISCONNECT', prevNodeIndex); break; @@ -132,8 +132,8 @@ export class RTLWebSocketServer { const currSelectedNode = this.common.findNode(currNodeIndex); foundClient = { index: currNodeIndex, sessionIds: [sessionId] }; this.clientDetails.push(foundClient); - if (currSelectedNode && currSelectedNode.ln_implementation) { - switch (currSelectedNode.ln_implementation) { + if (currSelectedNode && currSelectedNode.lnImplementation) { + switch (currSelectedNode.lnImplementation) { case 'LND': this.eventEmitterLND.emit('CONNECT', currNodeIndex); break; @@ -150,29 +150,29 @@ export class RTLWebSocketServer { } }; - public sendErrorToAllLNClients = (serverError, selectedNode: CommonSelectedNode) => { + public sendErrorToAllLNClients = (serverError, selectedNode: SelectedNode) => { try { this.webSocketServer.clients.forEach((client) => { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Broadcasting error to clients...: ' + serverError }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Broadcasting error to clients...: ' + serverError }); if (+client.clientNodeIndex === +selectedNode.index) { client.send(serverError); } }); } catch (err) { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); } }; - public sendEventsToAllLNClients = (newMessage, selectedNode: CommonSelectedNode) => { + public sendEventsToAllLNClients = (newMessage, selectedNode: SelectedNode) => { try { this.webSocketServer.clients.forEach((client) => { if (+client.clientNodeIndex === +selectedNode.index) { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'DEBUG', fileName: 'WebSocketServer', msg: 'Broadcasting message to client...: ' + client.clientId + ', Message: ' + newMessage }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'DEBUG', fileName: 'WebSocketServer', msg: 'Broadcasting message to client...: ' + client.clientId + ', Message: ' + newMessage }); client.send(newMessage); } }); } catch (err) { - this.logger.log({ selectedNode: !selectedNode ? this.common.initSelectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); + this.logger.log({ selectedNode: !selectedNode ? this.common.selectedNode : selectedNode, level: 'ERROR', fileName: 'WebSocketServer', msg: 'Error while broadcasting message: ' + JSON.stringify(err) }); } }; diff --git a/src/app/app.component.html b/src/app/app.component.html index 3f4b696f..5eca86a7 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,4 +1,4 @@ -
+
- + @@ -27,9 +27,9 @@
- > +
-
+

Loading RTL...

diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 4d9ab7cc..c082854a 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -14,7 +14,7 @@ import { CommonService } from './shared/services/common.service'; import { SessionService } from './shared/services/session.service'; import { AlertTypeEnum, RTLActions, ScreenSizeEnum } from './shared/services/consts-enums-functions'; import { rootAppConfig, rootNodeData, rootSelectedNode } from './store/rtl.selector'; -import { RTLConfiguration, Settings, GetInfoRoot } from './shared/models/RTLconfig'; +import { RTLConfiguration, GetInfoRoot } from './shared/models/RTLconfig'; import { closeAllDialogs, fetchRTLConfig, login, logout, openAlert } from './store/rtl.actions'; import { routeAnimation } from './shared/animation/route-animation'; @@ -30,11 +30,11 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild('sideNavigation', { static: false }) sideNavigation: any; @ViewChild('sideNavContent', { static: false }) sideNavContent: any; - public settings: Settings; public information: GetInfoRoot = {}; public flgLoading: Array = [true]; // 0: Info public flgSideNavOpened = true; public flgCopied = false; + public selNode: Node | any; public appConfig: RTLConfiguration; public accessKey = ''; public xSmallScreen = false; @@ -78,7 +78,6 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { this.store.dispatch(fetchRTLConfig()); this.accessKey = this.readAccessKey() || ''; this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])).subscribe((selNode) => { - this.settings = selNode.settings; if (!this.sessionService.getItem('token')) { this.flgLoggedIn = false; this.flgLoading[0] = false; @@ -86,6 +85,7 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { this.flgLoggedIn = true; this.userIdle.startWatching(); } + this.selNode = selNode; }); this.store.select(rootAppConfig).pipe(takeUntil(this.unSubs[2])).subscribe((appConfig) => { this.appConfig = appConfig; }); this.store.select(rootNodeData).pipe(takeUntil(this.unSubs[3])).subscribe((nodeData) => { @@ -98,18 +98,18 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { } this.actions.pipe( takeUntil(this.unSubs[4]), - filter((action) => action.type === RTLActions.SET_RTL_CONFIG || action.type === RTLActions.LOGIN || action.type === RTLActions.LOGOUT)). + filter((action) => action.type === RTLActions.FETCH_APPLICATION_SETTINGS || action.type === RTLActions.LOGIN || action.type === RTLActions.LOGOUT)). subscribe((action: (any)) => { - if (action.type === RTLActions.SET_RTL_CONFIG) { + if (action.type === RTLActions.SET_APPLICATION_SETTINGS) { if (!this.sessionService.getItem('token')) { - if (+action.payload.sso.rtlSSO) { + if (+action.payload.SSO.rtlSSO) { if (!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.' } }); } else { this.store.dispatch(login({ payload: { password: sha256(this.accessKey).toString(), defaultPassword: false } })); } } else { - this.router.navigate(['./login']); + this.router.navigate(['./login'], { state: { logoutReason: 'Access key too short. It should be at least 32 characters long.' } }); } } } @@ -145,7 +145,7 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { } } })); - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: 'Logging Out. Time limit exceeded for session inactivity.' })); } }); if (this.sessionService.getItem('defaultPassword') === 'true') { @@ -159,7 +159,9 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { } ngAfterViewInit() { - if (this.smallScreen || !this.flgLoggedIn) { this.sideNavigation.close(); } + if (this.smallScreen || !this.flgLoggedIn) { + this.sideNavigation.close(); + } this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth, this.sideNavContent.elementRef.nativeElement.clientHeight); } @@ -170,6 +172,14 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { onNavigationClicked(event: any) { if (this.smallScreen) { + this.flgSideNavOpened = !this.flgSideNavOpened; + this.sideNavigation.close(); + } + } + + backdropClicked() { + if (!this.flgSidenavPinned || this.smallScreen) { + this.flgSideNavOpened = !this.flgSideNavOpened; this.sideNavigation.close(); } } diff --git a/src/app/app.routing.ts b/src/app/app.routing.ts index 822e683a..c64b71d0 100644 --- a/src/app/app.routing.ts +++ b/src/app/app.routing.ts @@ -21,6 +21,7 @@ import { NotFoundComponent } from './shared/components/not-found/not-found.compo import { ErrorComponent } from './shared/components/error/error.component'; import { AuthGuard } from './shared/services/auth.guard'; import { ExperimentalSettingsComponent } from './shared/components/node-config/experimental-settings/experimental-settings.component'; +import { NoServiceFoundComponent } from './shared/components/node-config/services-settings/no-service-found/no-service-found.component'; type PathMatch = 'full' | 'prefix' | undefined; @@ -46,7 +47,8 @@ export const routes: Routes = [ path: 'services', component: ServicesSettingsComponent, canActivate: [AuthGuard()], children: [ { path: '', pathMatch: 'full', redirectTo: 'loop' }, { path: 'loop', component: LoopServiceSettingsComponent, canActivate: [AuthGuard()] }, - { path: 'boltz', component: BoltzServiceSettingsComponent, canActivate: [AuthGuard()] } + { path: 'boltz', component: BoltzServiceSettingsComponent, canActivate: [AuthGuard()] }, + { path: 'noservice', component: NoServiceFoundComponent } ] }, { path: 'experimental', component: ExperimentalSettingsComponent, canActivate: [AuthGuard()] }, 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 e1f7dfaa..4e4d444d 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 @@ -53,7 +53,7 @@ - +
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 d18df5e5..4e600c6c 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.html +++ b/src/app/cln/graph/query-routes/query-routes.component.html @@ -65,7 +65,7 @@
Actions
- + 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 81d02ad0..64a42bf7 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.ts +++ b/src/app/cln/graph/query-routes/query-routes.component.ts @@ -17,6 +17,7 @@ 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'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-query-routes', @@ -85,7 +86,7 @@ export class CLNQueryRoutesComponent implements OnInit, OnDestroy { } onHopClick(selHop: Routes, event: any) { - const reorderedHop = [ + const reorderedHop: MessageDataField[][] = [ [{ key: 'id', value: selHop.id, title: 'ID', width: 100, type: DataTypeEnum.STRING }], [{ key: 'channel', value: selHop.channel, title: 'Channel', width: 50, type: DataTypeEnum.STRING }, { key: 'alias', value: selHop.alias, title: 'Peer Alias', width: 50, type: DataTypeEnum.STRING }], diff --git a/src/app/cln/home/home.component.html b/src/app/cln/home/home.component.html index 4431d9d7..1fb20f0f 100644 --- a/src/app/cln/home/home.component.html +++ b/src/app/cln/home/home.component.html @@ -1,4 +1,4 @@ -
+
{{apiCallStatusNodeInfo.status === apiCallStatusEnum.COMPLETED ? 'Welcome ' + information.alias + '! Your node is up and running.' : apiCallStatusNodeInfo.status === apiCallStatusEnum.INITIATED ? 'Wait! Getting your node information...' : 'Error! Please check the server connection.'}} diff --git a/src/app/cln/home/home.component.ts b/src/app/cln/home/home.component.ts index 7fd8c7b3..7e0db06f 100644 --- a/src/app/cln/home/home.component.ts +++ b/src/app/cln/home/home.component.ts @@ -6,7 +6,7 @@ import { Store } from '@ngrx/store'; import { faSmile, faFrown } from '@fortawesome/free-regular-svg-icons'; import { faAngleDoubleDown, faAngleDoubleUp, faChartPie, faBolt, faServer, faNetworkWired } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { UserPersonaEnum, ScreenSizeEnum, APICallStatusEnum } from '../../shared/services/consts-enums-functions'; import { ChannelsStatus, GetInfo, Fees, Channel, Balance, LocalRemoteBalance, UTXO } from '../../shared/models/clnModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @@ -14,7 +14,8 @@ import { LoggerService } from '../../shared/services/logger.service'; import { CommonService } from '../../shared/services/common.service'; import { RTLState } from '../../store/rtl.state'; -import { channels, utxoBalances, nodeInfoAndNodeSettingsAndAPIsStatus } from '../store/cln.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { channels, utxoBalances, nodeInfoAndAPIsStatus } from '../store/cln.selector'; export interface Tile { id: string; @@ -43,7 +44,7 @@ export class CLNHomeComponent implements OnInit, OnDestroy { public faNetworkWired = faNetworkWired; public userPersonaEnum = UserPersonaEnum; public channelBalances = { localBalance: 0, remoteBalance: 0, balancedness: 0 }; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public fees: Fees; public information: GetInfo = {}; public totalBalance: Balance = {}; @@ -117,21 +118,22 @@ export class CLNHomeComponent implements OnInit, OnDestroy { } ngOnInit() { - this.store.select(nodeInfoAndNodeSettingsAndAPIsStatus).pipe(takeUntil(this.unSubs[0])). - subscribe((infoSettingsStatusSelector: { information: GetInfo, nodeSettings: SelNodeChild | null, fees: Fees, apisCallStatus: ApiCallStatusPayload[] }) => { + this.store.select(nodeInfoAndAPIsStatus).pipe(takeUntil(this.unSubs[0]), + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([infoFeeStatusSelector, nodeSettings]: [{ information: GetInfo, fees: Fees, apisCallStatus: ApiCallStatusPayload[] }, Node | null]) => { this.errorMessages[0] = ''; this.errorMessages[3] = ''; - this.apiCallStatusNodeInfo = infoSettingsStatusSelector.apisCallStatus[0]; - this.apiCallStatusFHistory = infoSettingsStatusSelector.apisCallStatus[1]; + this.apiCallStatusNodeInfo = infoFeeStatusSelector.apisCallStatus[0]; + this.apiCallStatusFHistory = infoFeeStatusSelector.apisCallStatus[1]; if (this.apiCallStatusNodeInfo.status === APICallStatusEnum.ERROR) { this.errorMessages[0] = !this.apiCallStatusNodeInfo.message ? '' : (typeof (this.apiCallStatusNodeInfo.message) === 'object') ? JSON.stringify(this.apiCallStatusNodeInfo.message) : this.apiCallStatusNodeInfo.message; } if (this.apiCallStatusFHistory.status === APICallStatusEnum.ERROR) { this.errorMessages[3] = !this.apiCallStatusFHistory.message ? '' : (typeof (this.apiCallStatusFHistory.message) === 'object') ? JSON.stringify(this.apiCallStatusFHistory.message) : this.apiCallStatusFHistory.message; } - this.selNode = infoSettingsStatusSelector.nodeSettings; - this.information = infoSettingsStatusSelector.information; - this.fees = infoSettingsStatusSelector.fees; + this.selNode = nodeSettings; + this.information = infoFeeStatusSelector.information; + this.fees = infoFeeStatusSelector.fees; }); this.store.select(channels).pipe(takeUntil(this.unSubs[2])). subscribe((channelsSeletor: { activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], apiCallStatus: ApiCallStatusPayload }) => { 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 418d8388..51820d10 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 @@ -6,6 +6,7 @@ import { MatTableDataSource } from '@angular/material/table'; import { MatSort } from '@angular/material/sort'; import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { faBullhorn, faExclamationTriangle, faUsers } from '@fortawesome/free-solid-svg-icons'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; @@ -18,11 +19,11 @@ 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 { clnPageSettings, nodeInfoAndNodeSettingsAndBalance } from '../../store/cln.selector'; +import { clnPageSettings, nodeInfoAndBalance } from '../../store/cln.selector'; import { DatePipe } from '@angular/common'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-liquidity-ads-list', @@ -93,12 +94,12 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { this.colWidth = this.displayedColumns.length ? ((this.commonService.getContainerSize().width / this.displayedColumns.length) / 14) + 'rem' : '20rem'; this.logger.info(this.displayedColumns); }); - combineLatest([this.store.select(nodeInfoAndNodeSettingsAndBalance), this.dataService.listNetworkNodes({ liquidity_ads: true })]).pipe(takeUntil(this.unSubs[1])). + combineLatest([this.store.select(nodeInfoAndBalance), this.dataService.listNetworkNodes({ liquidity_ads: true })]).pipe(takeUntil(this.unSubs[1])). subscribe({ - next: ([infoSettingsBalSelector, nodeListRes]) => { - this.information = infoSettingsBalSelector.information; - this.totalBalance = infoSettingsBalSelector.balance.totalBalance || 0; - this.logger.info(infoSettingsBalSelector); + next: ([infoBalSelector, nodeListRes]) => { + this.information = infoBalSelector.information; + this.totalBalance = infoBalSelector.balance.totalBalance || 0; + this.logger.info(infoBalSelector); if (nodeListRes && !(nodeListRes).length) { nodeListRes = []; } this.logger.info('Received Liquidity Ads Enabled Nodes: ' + JSON.stringify(nodeListRes)); this.listNodesCallStatus = APICallStatusEnum.COMPLETED; @@ -237,7 +238,7 @@ export class CLNLiquidityAdsListComponent implements OnInit, OnDestroy { } }); } - const reorderedLQNode = [ + const reorderedLQNode: MessageDataField[][] = [ [{ key: 'alias', value: lqNode.alias, title: 'Node Alias', width: 50, type: DataTypeEnum.STRING }, { key: 'last_timestamp', value: lqNode.last_timestamp, title: 'Last Timestamp', width: 50, type: DataTypeEnum.DATE_TIME }], [{ key: 'nodeid', value: lqNode.nodeid, title: 'Node ID', width: 100, type: DataTypeEnum.STRING }], 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 c1b76c59..ab8ec8b6 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 @@ -87,7 +87,7 @@ {{address?.port}} - +
diff --git a/src/app/cln/network-info/network-info.component.html b/src/app/cln/network-info/network-info.component.html index 92114d71..305166fa 100644 --- a/src/app/cln/network-info/network-info.component.html +++ b/src/app/cln/network-info/network-info.component.html @@ -1,5 +1,5 @@
- +
@@ -36,11 +36,11 @@
-
+
- +
@@ -77,7 +77,7 @@
-
+
diff --git a/src/app/cln/network-info/network-info.component.ts b/src/app/cln/network-info/network-info.component.ts index 7034e27f..86cf5c5d 100644 --- a/src/app/cln/network-info/network-info.component.ts +++ b/src/app/cln/network-info/network-info.component.ts @@ -4,7 +4,7 @@ import { takeUntil, withLatestFrom } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faBolt, faServer, faNetworkWired, faLink } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { GetInfo, Fees, ChannelsStatus, FeeRates, LocalRemoteBalance, Channel, ListForwards, UTXO, Balance } from '../../shared/models/clnModels'; import { APICallStatusEnum, ScreenSizeEnum, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @@ -12,7 +12,8 @@ import { LoggerService } from '../../shared/services/logger.service'; import { CommonService } from '../../shared/services/common.service'; import { RTLState } from '../../store/rtl.state'; -import { channels, feeRatesPerKB, feeRatesPerKW, forwardingHistory, utxoBalances, nodeInfoAndNodeSettingsAndAPIsStatus } from '../store/cln.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { channels, feeRatesPerKB, feeRatesPerKW, forwardingHistory, utxoBalances, nodeInfoAndAPIsStatus } from '../store/cln.selector'; @Component({ selector: 'rtl-cln-network-info', @@ -25,7 +26,7 @@ export class CLNNetworkInfoComponent implements OnInit, OnDestroy { public faServer = faServer; public faNetworkWired = faNetworkWired; public faLink = faLink; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public information: GetInfo = {}; public fees: Fees; public channelsStatus: ChannelsStatus = { active: {}, pending: {}, inactive: {} }; @@ -80,14 +81,15 @@ export class CLNNetworkInfoComponent implements OnInit, OnDestroy { } ngOnInit() { - this.store.select(nodeInfoAndNodeSettingsAndAPIsStatus).pipe(takeUntil(this.unSubs[0])). - subscribe((infoSettingsStatusSelector: { information: GetInfo, nodeSettings: SelNodeChild | null, fees: Fees, apisCallStatus: ApiCallStatusPayload[] }) => { + this.store.select(nodeInfoAndAPIsStatus).pipe(takeUntil(this.unSubs[0]), + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([infoSettingsStatusSelector, nodeSettings]: [{ information: GetInfo, fees: Fees, apisCallStatus: ApiCallStatusPayload[] }, (Node | null)]) => { this.errorMessages[0] = ''; this.apiCallStatusNodeInfo = infoSettingsStatusSelector.apisCallStatus[0]; if (this.apiCallStatusNodeInfo.status === APICallStatusEnum.ERROR) { this.errorMessages[0] = (typeof (this.apiCallStatusNodeInfo.message) === 'object') ? JSON.stringify(this.apiCallStatusNodeInfo.message) : this.apiCallStatusNodeInfo.message ? this.apiCallStatusNodeInfo.message : ''; } - this.selNode = infoSettingsStatusSelector.nodeSettings; + this.selNode = nodeSettings; this.information = infoSettingsStatusSelector.information; this.fees = infoSettingsStatusSelector.fees; this.logger.info(infoSettingsStatusSelector); 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 ba1929f1..ce79e989 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 @@ -38,7 +38,7 @@ Fee Rate (Sats/vByte) - + Fee Rate is required. @@ -74,7 +74,7 @@ - +
@@ -93,7 +93,7 @@
- +
{{passwordFormLabel}}
@@ -129,7 +129,7 @@ Fee Rate (Sats/vByte) - + Fee Rate is required.
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 9d5ad12d..0fe835f6 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 @@ -11,7 +11,7 @@ import { MatStepper } from '@angular/material/stepper'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import * as sha256 from 'sha256'; -import { SelNodeChild, RTLConfiguration } from '../../../shared/models/RTLconfig'; +import { Node, RTLConfiguration } from '../../../shared/models/RTLconfig'; import { CLNOnChainSendFunds } from '../../../shared/models/alertData'; import { GetInfo, Balance, OnChain, UTXO, LocalRemoteBalance } from '../../../shared/models/clnModels'; import { CURRENCY_UNITS, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, ADDRESS_TYPES, FEE_RATE_TYPES, APICallStatusEnum, CLNActions, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; @@ -38,7 +38,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; public sweepAll = false; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public appConfig: RTLConfiguration; public addressTypes = []; public utxos: UTXO[] = []; diff --git a/src/app/cln/on-chain/on-chain.component.ts b/src/app/cln/on-chain/on-chain.component.ts index 8e534229..7a590951 100644 --- a/src/app/cln/on-chain/on-chain.component.ts +++ b/src/app/cln/on-chain/on-chain.component.ts @@ -6,10 +6,11 @@ import { Store } from '@ngrx/store'; import { faExchangeAlt, faChartPie } from '@fortawesome/free-solid-svg-icons'; import { CLNOnChainSendModalComponent } from './on-chain-send-modal/on-chain-send-modal.component'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; +import { rootSelectedNode } from '../../store/rtl.selector'; import { openAlert } from '../../store/rtl.actions'; -import { utxoBalances, clnNodeSettings } from '../store/cln.selector'; +import { utxoBalances } from '../store/cln.selector'; import { Balance, LocalRemoteBalance, UTXO } from '../../shared/models/clnModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @@ -20,7 +21,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; }) export class CLNOnChainComponent implements OnInit, OnDestroy { - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public faExchangeAlt = faExchangeAlt; public faChartPie = faChartPie; public balances = [{ title: 'Total Balance', dataValue: 0 }, { title: 'Confirmed', dataValue: 0 }, { title: 'Unconfirmed', dataValue: 0 }]; @@ -44,8 +45,8 @@ export class CLNOnChainComponent implements OnInit, OnDestroy { this.selectedTable = this.tables.find((table) => table.name === (value).urlAfterRedirects.substring((value).urlAfterRedirects.lastIndexOf('/') + 1)) || this.tables[0]; } }); - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[1])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[2])). 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 da6bf625..68387a4e 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 @@ -6,6 +6,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { Balance, LocalRemoteBalance, UTXO } from '../../../../shared/models/clnModels'; 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'; @@ -17,7 +18,7 @@ import { openAlert } from '../../../../store/rtl.actions'; import { clnPageSettings, utxoBalances } from '../../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-on-chain-utxos', @@ -119,8 +120,8 @@ export class CLNOnChainUtxosComponent implements OnInit, AfterViewInit, OnDestro } onUTXOClick(selUtxo: UTXO, event: any) { - const reorderedUTXO = [ - [{ key: 'txid', value: selUtxo.txid, title: 'Transaction ID', width: 100 }], + const reorderedUTXO: MessageDataField[][] = [ + [{ key: 'txid', value: selUtxo.txid, title: 'Transaction ID', width: 100, type: DataTypeEnum.STRING, explorerLink: 'tx' }], [{ key: 'output', value: selUtxo.output, title: 'Output', width: 50, type: DataTypeEnum.NUMBER }, { key: 'amount_msat', value: (selUtxo.amount_msat || 0) / 1000, title: 'Value (Sats)', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'status', value: this.commonService.titleCase(selUtxo.status || ''), title: 'Status', width: 50, type: DataTypeEnum.STRING }, diff --git a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html index 6a97a3a4..3dfdf9b3 100644 --- a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html +++ b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html @@ -5,31 +5,33 @@ Bump Fee
- +

Bump fee for transaction id: {{bumpFeeChannel?.funding_txid}} - +

- Bumping fee on pending open channels is an advanced feature, attempt it only if you are familiar with the functionality of Bitcoin transactions. -
Before attempting fee bump ensure the following:
-
1: Use a Bitcoin block explorer to ensure that channel opening transaction is not confirmed.
-
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.
-
3: Find the index value of the change output via a block explorer.
-
4: Enter the index value of the change output in the form below and the desired fee rate.
-
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.
+ +
Fee rates recommended by mempool (sat/vByte):
+
- High: {{recommendedFee.fastestFee || 'Unknown'}}
+
- Medium: {{recommendedFee.halfHourFee || 'Unknown'}}
+
- Low: {{recommendedFee.hourFee || 'Unknown'}}
+
+ + Change output balance {{dustOutputValue | number}} (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates. +
Output Index - - Output Index required. - Invalid index value. + + Output Index required. + Invalid index value. Fees (Sats/vByte) diff --git a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts index c614d908..29a47122 100644 --- a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts +++ b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts @@ -4,15 +4,18 @@ import { Subject } from 'rxjs'; import { filter, take, takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; -import { faCopy, faInfoCircle, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faCopy, faInfoCircle, faExclamationTriangle, faUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; -import { MatSnackBar } from '@angular/material/snack-bar'; +import { RecommendedFeeRates, BlockExplorerTransaction } from '../../../../shared/models/rtlModels'; import { Channel } from '../../../../shared/models/clnModels'; import { CLNChannelInformation } from '../../../../shared/models/alertData'; import { ADDRESS_TYPES, APICallStatusEnum, CLNActions } from '../../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../../shared/services/logger.service'; +import { DataService } from '../../../../shared/services/data.service'; +import { Node } from '../../../../shared/models/RTLconfig'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { RTLState } from '../../../../store/rtl.state'; import { openSnackBar } from '../../../../store/rtl.actions'; import { getNewAddress, setChannelTransaction } from '../../../store/cln.actions'; @@ -25,12 +28,12 @@ import { getNewAddress, setChannelTransaction } from '../../../store/cln.actions export class CLNBumpFeeComponent implements OnInit, OnDestroy { private outputIdx: NgModel; - @ViewChild('outputIdx') set payReq(outIdx: NgModel) { + @ViewChild('outputIdx') set outputIndx(outIdx: NgModel) { if (outIdx) { this.outputIdx = outIdx; } } - + public faUpRightFromSquare = faUpRightFromSquare; public newAddress = ''; public bumpFeeChannel: Channel; public fees = null; @@ -39,12 +42,39 @@ export class CLNBumpFeeComponent implements OnInit, OnDestroy { public faInfoCircle = faInfoCircle; public faExclamationTriangle = faExclamationTriangle; public bumpFeeError = ''; - private unSubs: Array> = [new Subject(), new Subject()]; + public flgShowDustWarning = false; + public dustOutputValue = 0; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; + public selNode: Node; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private actions: Actions, public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNChannelInformation, private store: Store, private logger: LoggerService, private snackBar: MatSnackBar) { } + constructor(private actions: Actions, public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNChannelInformation, private store: Store, private logger: LoggerService, private dataService: DataService) { } ngOnInit() { this.bumpFeeChannel = this.data.channel; + this.logger.info(this.bumpFeeChannel); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((selNode) => { + this.selNode = selNode; + this.logger.info(this.selNode); + }); + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[1])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid). + pipe(takeUntil(this.unSubs[2])).subscribe({ + next: (txRes: BlockExplorerTransaction) => { + this.outputIndex = txRes.vout.findIndex((vout) => vout.value === this.bumpFeeChannel.to_us_msat) === 0 ? 1 : 0; + this.dustOutputValue = txRes.vout[this.outputIndex].value; + this.flgShowDustWarning = this.dustOutputValue < 1000; + }, error: (err) => { + this.logger.error(err); + } + }); } onBumpFee(): boolean | void { @@ -59,7 +89,7 @@ export class CLNBumpFeeComponent implements OnInit, OnDestroy { payload: { destination: action.payload, satoshi: 'all', - feerate: (+(this.fees || 0) * 1000).toString(), + feerate: (+(this.fees || 0) * 1000).toString() + 'perkb', utxos: [this.bumpFeeChannel.funding_txid + ':' + (this.outputIndex || '').toString()] } })); @@ -69,7 +99,7 @@ export class CLNBumpFeeComponent implements OnInit, OnDestroy { this.store.dispatch(openSnackBar({ payload: 'Successfully bumped the fee. Use the block explorer to verify transaction.' })); this.dialogRef.close(); }); - this.actions.pipe(filter((action) => action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN), takeUntil(this.unSubs[0])). + this.actions.pipe(filter((action) => action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN), takeUntil(this.unSubs[3])). subscribe((action: any) => { if (action.payload.status === APICallStatusEnum.ERROR && (action.payload.action === 'SetChannelTransaction' || action.payload.action === 'GenerateNewAddress')) { this.logger.error(action.payload.message); @@ -78,14 +108,15 @@ export class CLNBumpFeeComponent implements OnInit, OnDestroy { }); } - onCopyID(payload: string) { - this.snackBar.open('Transaction ID copied.'); + onExplorerClicked(txid: string) { + window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + txid, '_blank'); } resetData() { this.bumpFeeError = ''; this.fees = null; this.outputIndex = null; + this.flgShowDustWarning = false; this.outputIdx.control.setErrors(null); } 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 799f4aa2..16c9dd9f 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 @@ -12,7 +12,7 @@

Short Channel ID

- + {{channel.short_channel_id}}
@@ -32,7 +32,19 @@

Peer Public Key

- {{channel.peer_id}} + + {{channel.peer_id}} + +
+
+ +
+
+

Funding Transaction ID

+ + {{channel.funding_txid}} + +
@@ -89,21 +101,14 @@
-
-
-

Funding Transaction ID

- {{channel.funding_txid}} -
-
-
- - - + +
diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts index fae5aa00..ca24f676 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts @@ -23,7 +23,7 @@ describe('CLNChannelInformationComponent', () => { { provide: LoggerService, useClass: mockLoggerService }, { provide: DataService, useClass: mockDataService }, { provide: MatDialogRef, useClass: mockMatDialogRef }, - { provide: MAT_DIALOG_DATA, useValue: { channel: {} } } + { provide: MAT_DIALOG_DATA, useValue: { channel: {}, selNode: { settings: {} } } } ] }). compileComponents(); diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts index a952087b..ed0da577 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -1,12 +1,13 @@ import { Component, OnInit, Inject } from '@angular/core'; import { Router } from '@angular/router'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; -import { faReceipt } from '@fortawesome/free-solid-svg-icons'; +import { faReceipt, faUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'; import { MatSnackBar } from '@angular/material/snack-bar'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; import { CLNChannelInformation } from '../../../../shared/models/alertData'; +import { Node } from '../../../../shared/models/RTLconfig'; import { Channel } from '../../../../shared/models/clnModels'; import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; @@ -18,10 +19,12 @@ import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functio export class CLNChannelInformationComponent implements OnInit { public faReceipt = faReceipt; + public faUpRightFromSquare = faUpRightFromSquare; public showAdvanced = false; public showCopy = true; public showCopyField = null; public channel: Channel; + public selNode: Node; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; @@ -30,6 +33,7 @@ export class CLNChannelInformationComponent implements OnInit { ngOnInit() { this.channel = this.data.channel; this.showCopy = !!this.data.showCopy; + this.selNode = this.data.selNode; this.screenSize = this.commonService.getScreenSize(); } @@ -46,9 +50,13 @@ export class CLNChannelInformationComponent implements OnInit { this.logger.info('Copied Text: ' + payload); } - onGoToLink() { - this.router.navigateByUrl('/cln/graph/lookups', { state: { lookupType: '1', lookupValue: this.channel.short_channel_id } }); // 1 = Channel + onGoToLink(lookupType: string, lookupValue: string) { + this.router.navigateByUrl('/cln/graph/lookups', { state: { lookupType: lookupType, lookupValue: lookupValue } }); this.onClose(); } + onExplorerClicked() { + window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.channel.funding_txid, '_blank'); + } + } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts index fc7f677e..d86da482 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts @@ -5,6 +5,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { Channel, ChannelHTLC } from '../../../../../shared/models/clnModels'; 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'; @@ -17,7 +18,7 @@ import { RTLState } from '../../../../../store/rtl.state'; import { clnPageSettings, channels } from '../../../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-channel-active-htlcs-table', @@ -97,7 +98,7 @@ export class CLNChannelActiveHTLCsTableComponent implements OnInit, AfterViewIni } onHTLCClick(selHtlc: ChannelHTLC, selChannel: Channel) { - const reorderedHTLC = [ + const reorderedHTLC: MessageDataField[][] = [ [{ key: 'alias', value: selChannel.alias, title: 'Alias', width: 100, type: DataTypeEnum.STRING }], [{ key: 'amount_msat', value: ((selHtlc.amount_msat || 0) / 1000), title: 'Amount (Sats)', width: 50, type: DataTypeEnum.NUMBER }, { key: 'direction', value: this.commonService.titleCase(selHtlc.direction || ''), title: 'Direction', width: 50, type: DataTypeEnum.STRING }], 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 565b7f09..d599e0bc 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 @@ -116,7 +116,7 @@ Download CSV
- +
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 70c0969c..a1775037 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 @@ -7,6 +7,8 @@ import { faEye, faEyeSlash } 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; + import { Channel, GetInfo, ChannelEdge, Balance, LookupChannelEdge } from '../../../../../shared/models/clnModels'; 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'; @@ -23,7 +25,8 @@ import { channelLookup, closeChannel, updateChannel } from '../../../../store/cl import { channels, clnPageSettings, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; +import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ selector: 'rtl-cln-channel-open-table', @@ -56,6 +59,7 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe public selFilter = ''; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; + public selNode: Node | null; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public errorMessage = ''; @@ -111,6 +115,11 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } this.logger.info(channelsSeletor); }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[3])). + subscribe((nodeSettings) => { + this.selNode = nodeSettings; + }); + } ngAfterViewInit() { @@ -131,7 +140,7 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } else { remoteNode = resLookup.channels[1]; } - const reorderedChannelPolicy = [ + const reorderedChannelPolicy: MessageDataField[][] = [ [{ key: 'base_fee_millisatoshi', value: remoteNode.base_fee_millisatoshi, title: 'Base Fees (mSats)', width: 34, type: DataTypeEnum.NUMBER }, { key: 'fee_per_millionth', value: remoteNode.fee_per_millionth, title: 'Fee/Millionth', width: 33, type: DataTypeEnum.NUMBER }, { key: 'delay', value: remoteNode.delay, title: 'Delay', width: 33, type: DataTypeEnum.NUMBER }] @@ -174,7 +183,7 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } } })); - this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[3])).subscribe((confirmRes) => { + this.rtlEffects.closeConfirm.pipe(takeUntil(this.unSubs[4])).subscribe((confirmRes) => { if (confirmRes) { const base_fee = confirmRes[0].inputValue; const fee_rate = confirmRes[1].inputValue; @@ -182,43 +191,29 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe } }); } else { - this.myChanPolicy = { fee_base_msat: 0, fee_rate_milli_msat: 0 }; - this.store.dispatch(channelLookup({ payload: { uiMessage: UI_MESSAGES.GET_CHAN_POLICY, shortChannelID: channelToUpdate.short_channel_id, showError: false } })); - this.clnEffects.setLookupCL.pipe(take(1)).subscribe((resLookup: ChannelEdge) => { - if (resLookup.channels && resLookup.channels.length > 0 && resLookup.channels[0].source === this.information.id) { - this.myChanPolicy = { fee_base_msat: resLookup.channels[0].base_fee_millisatoshi, fee_rate_milli_msat: resLookup.channels[0].fee_per_millionth }; - } else if (resLookup.channels.length > 1 && resLookup.channels[1].source === this.information.id) { - this.myChanPolicy = { fee_base_msat: resLookup.channels[1].base_fee_millisatoshi, fee_rate_milli_msat: resLookup.channels[1].fee_per_millionth }; - } else { - this.myChanPolicy = { fee_base_msat: 0, fee_rate_milli_msat: 0 }; + 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 = []; + this.store.dispatch(openConfirmation({ + payload: { + data: { + type: AlertTypeEnum.CONFIRM, + alertTitle: 'Update Fee Policy', + noBtnText: 'Cancel', + yesBtnText: 'Update', + message: confirmationMsg, + titleMessage: titleMsg, + flgShowInput: true, + getInputs: [ + { placeholder: 'Base Fee (mSats)', inputType: DataTypeEnum.NUMBER, inputValue: (channelToUpdate.fee_base_msat === '') ? 0 : channelToUpdate.fee_base_msat, step: 100, width: 48 }, + { placeholder: 'Fee Rate (mili mSats)', inputType: DataTypeEnum.NUMBER, inputValue: channelToUpdate.fee_proportional_millionths, min: 1, width: 48, hintFunction: this.percentHintFunction } + ] + } } - 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 confirmationMsg = []; - setTimeout(() => { - this.store.dispatch(openConfirmation({ - payload: { - data: { - type: AlertTypeEnum.CONFIRM, - alertTitle: 'Update Fee Policy', - noBtnText: 'Cancel', - yesBtnText: 'Update', - message: confirmationMsg, - titleMessage: titleMsg, - flgShowInput: true, - getInputs: [ - { placeholder: 'Base Fee (mSats)', inputType: DataTypeEnum.NUMBER, inputValue: (this.myChanPolicy.fee_base_msat === '') ? 0 : this.myChanPolicy.fee_base_msat, step: 100, width: 48 }, - { placeholder: 'Fee Rate (mili mSats)', inputType: DataTypeEnum.NUMBER, inputValue: this.myChanPolicy.fee_rate_milli_msat, min: 1, width: 48, hintFunction: this.percentHintFunction } - ] - } - } - })); - }, 0); - }); + })); this.rtlEffects.closeConfirm. - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe((confirmRes) => { if (confirmRes) { const base_fee = confirmRes[0].inputValue; @@ -249,7 +244,7 @@ export class CLNChannelOpenTableComponent 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: { id: channelToClose.id || '', channelId: channelToClose.channel_id || '', force: false } })); @@ -262,6 +257,7 @@ export class CLNChannelOpenTableComponent implements OnInit, AfterViewInit, OnDe payload: { data: { channel: selChannel, + selNode: this.selNode, showCopy: true, component: CLNChannelInformationComponent } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts index 9266326b..583cff49 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts @@ -1,18 +1,19 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; import { Router, ResolveEnd, Event } from '@angular/router'; import { Subject } from 'rxjs'; -import { takeUntil, filter } from 'rxjs/operators'; +import { takeUntil, filter, withLatestFrom } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { CLNOpenChannelComponent } from '../open-channel-modal/open-channel.component'; import { CommonService } from '../../../../shared/services/common.service'; import { LoggerService } from '../../../../shared/services/logger.service'; import { Balance, Channel, GetInfo, LocalRemoteBalance, Peer, UTXO } from '../../../../shared/models/clnModels'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { Node } from '../../../../shared/models/RTLconfig'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert } from '../../../../store/rtl.actions'; -import { channels, nodeInfoAndNodeSettingsAndBalance, peers, utxoBalances } from '../../../store/cln.selector'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { channels, nodeInfoAndBalance, peers, utxoBalances } from '../../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ @@ -25,7 +26,7 @@ export class CLNChannelsTablesComponent implements OnInit, OnDestroy { public openChannels = 0; public pendingChannels = 0; public activeHTLCs = 0; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public information: GetInfo = {}; public peers: Peer[] = []; public utxos: UTXO[] = []; @@ -44,12 +45,13 @@ export class CLNChannelsTablesComponent implements OnInit, OnDestroy { this.activeLink = this.links.findIndex((link) => link.link === (value).urlAfterRedirects.substring((value).urlAfterRedirects.lastIndexOf('/') + 1)); } }); - this.store.select(nodeInfoAndNodeSettingsAndBalance).pipe(takeUntil(this.unSubs[1])). - subscribe((infoSettingsBalSelector: { information: GetInfo, nodeSettings: SelNodeChild | null, balance: Balance }) => { - this.selNode = infoSettingsBalSelector.nodeSettings; - this.information = infoSettingsBalSelector.information; - this.totalBalance = infoSettingsBalSelector.balance.totalBalance || 0; - this.logger.info(infoSettingsBalSelector); + this.store.select(nodeInfoAndBalance).pipe(takeUntil(this.unSubs[1]), + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([infoBalSelector, nodeSettings]: [{ information: GetInfo, balance: Balance }, (Node | null)]) => { + this.selNode = nodeSettings; + this.information = infoBalSelector.information; + this.totalBalance = infoBalSelector.balance.totalBalance || 0; + this.logger.info(infoBalSelector); }); this.store.select(peers).pipe(takeUntil(this.unSubs[2])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html index a1e864c6..e9baec0d 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -41,23 +41,38 @@
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
-
- +
+ Fee Rate - + {{feeRateType.feeRateType}} - + Fee Rate (Sats/vByte) - + + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) Fee Rate is required. + Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
-
+
Min Confirmation Blocks @@ -80,7 +95,7 @@ info_outline
- +
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 b3c74518..25c7de35 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 @@ -6,17 +6,20 @@ import { Subject, Observable } from 'rxjs'; import { takeUntil, filter, startWith, map } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; +import { LoggerService } from '../../../../shared/services/logger.service'; +import { DataService } from '../../../../shared/services/data.service'; import { CommonService } from '../../../../shared/services/common.service'; -import { Peer, GetInfo, UTXO } from '../../../../shared/models/clnModels'; +import { Peer, GetInfo, UTXO, SaveChannel } from '../../../../shared/models/clnModels'; import { CLNOpenChannelAlert } from '../../../../shared/models/alertData'; import { APICallStatusEnum, CLNActions, FEE_RATE_TYPES, ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; +import { RecommendedFeeRates } from '../../../../shared/models/rtlModels'; import { RTLState } from '../../../../store/rtl.state'; import { saveNewChannel } from '../../../store/cln.actions'; -import { clnNodeSettings } from '../../../store/cln.selector'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { Node } from '../../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-cln-open-channel', @@ -28,8 +31,9 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public selectedPeer = new UntypedFormControl(); public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public alertTitle: string; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public peer: Peer | null; public peers: Peer[]; public sortedPeers: Peer[]; @@ -52,9 +56,13 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { public minConfValue = null; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; 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) { + constructor(private logger: LoggerService, public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: CLNOpenChannelAlert, private store: Store, + private actions: Actions, private decimalPipe: DecimalPipe, private commonService: CommonService, + private dataService: DataService) { this.screenSize = this.commonService.getScreenSize(); } @@ -73,10 +81,10 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.peers = []; } this.alertTitle = this.data.alertTitle || 'Alert'; - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; - this.isPrivate = !!nodeSettings?.unannouncedChannels; + this.isPrivate = !!nodeSettings?.settings.unannouncedChannels; }); this.actions.pipe( takeUntil(this.unSubs[1]), @@ -136,7 +144,7 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.minConfValue = null; this.selectedPeer.setValue(''); this.fundingAmount = null; - this.isPrivate = !!this.selNode?.unannouncedChannels; + this.isPrivate = !!this.selNode?.settings.unannouncedChannels; this.channelConnectionError = ''; this.advancedTitle = 'Advanced Options'; this.form.resetForm(); @@ -185,11 +193,15 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { } onOpenChannel(): boolean | void { - if ((!this.peer && !this.selectedPubkey) || (!this.fundingAmount || ((this.totalBalance - this.fundingAmount) < 0) || (this.flgMinConf && !this.minConfValue)) || (this.selFeeRate === 'customperkb' && !this.flgMinConf && !this.customFeeRate)) { + if ((!this.peer && !this.selectedPubkey) || + (!this.fundingAmount || ((this.totalBalance - this.fundingAmount) < 0) || + (this.flgMinConf && !this.minConfValue)) || + (this.selFeeRate === 'customperkb' && !this.flgMinConf && !this.customFeeRate) || + (this.selFeeRate === 'customperkb' && this.recommendedFee.minimumFee > this.customFeeRate)) { return true; } - const newChannel = { peerId: ((!this.peer || !this.peer.id) ? this.selectedPubkey : this.peer.id), amount: (this.flgUseAllBalance) ? 'all' : this.fundingAmount.toString(), announce: !this.isPrivate, minconf: this.flgMinConf ? this.minConfValue : null }; - newChannel['feerate'] = (this.selFeeRate === 'customperkb' && !this.flgMinConf && this.customFeeRate) ? (this.customFeeRate * 1000) + 'perkb' : this.selFeeRate; + const newChannel: SaveChannel = { peerId: ((!this.peer || !this.peer.id) ? this.selectedPubkey : this.peer.id), amount: (this.flgUseAllBalance) ? 'all' : this.fundingAmount.toString(), announce: !this.isPrivate, minconf: this.flgMinConf ? this.minConfValue : null }; + newChannel.feeRate = (this.selFeeRate === 'customperkb' && !this.flgMinConf && this.customFeeRate) ? (this.customFeeRate * 1000) + 'perkb' : this.selFeeRate; if (this.selUTXOs.length && this.selUTXOs.length > 0) { newChannel['utxos'] = []; this.selUTXOs.forEach((utxo: UTXO) => newChannel['utxos'].push(utxo.txid + ':' + utxo.output)); @@ -197,6 +209,19 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.store.dispatch(saveNewChannel({ payload: newChannel })); } + onSelFeeRateChanged(event) { + this.customFeeRate = null; + if (event.value === 'customperkb') { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + } + } + ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); 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 ccfb4494..71b97fd8 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 @@ -5,13 +5,13 @@ Connect to a new peer
- +
- {{peerFormLabel}} + {{peerFormLabel}} Lightning Address (pubkey OR pubkey@ip:port) @@ -30,6 +30,19 @@ {{channelFormLabel}}
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Amount @@ -46,7 +59,7 @@
- + Fee Rate @@ -54,10 +67,12 @@ - + Fee Rate (Sats/vByte) - + + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) Fee Rate is required. + Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
@@ -80,7 +95,7 @@ -
+
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 981d675c..db1cbae6 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 @@ -6,8 +6,10 @@ import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; +import { RecommendedFeeRates } from '../../../shared/models/rtlModels'; +import { DataService } from '../../../shared/services/data.service'; import { CommonService } from '../../../shared/services/common.service'; import { LoggerService } from '../../../shared/services/logger.service'; import { Peer } from '../../../shared/models/clnModels'; @@ -16,8 +18,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'; +import { rootSelectedNode } from '../../../store/rtl.selector'; +import { Node } from '../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-cln-connect-peer', @@ -29,7 +31,8 @@ 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 faInfoCircle = faInfoCircle; + public selNode: Node | null; public peerAddress = ''; public totalBalance = 0; public feeRateTypes = FEE_RATE_TYPES; @@ -43,12 +46,14 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { public channelFormLabel = 'Open Channel (Optional)'; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; peerFormGroup: UntypedFormGroup; channelFormGroup: UntypedFormGroup; statusFormGroup: UntypedFormGroup; 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: UntypedFormBuilder, private actions: Actions, private logger: LoggerService, private commonService: CommonService) { + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNOpenChannelAlert, private store: Store, private formBuilder: UntypedFormBuilder, private actions: Actions, + private logger: LoggerService, private commonService: CommonService, private dataService: DataService) { this.screenSize = this.commonService.getScreenSize(); } @@ -67,7 +72,7 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { }); this.channelFormGroup = this.formBuilder.group({ fundingAmount: ['', [Validators.required, Validators.min(1), Validators.max(this.totalBalance)]], - isPrivate: [!!this.selNode?.unannouncedChannels], + isPrivate: [!!this.selNode?.settings.unannouncedChannels], selFeeRate: [null], customFeeRate: [null], flgMinConf: [false], @@ -75,10 +80,10 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { hiddenAmount: ['', [Validators.required]] }); this.statusFormGroup = this.formBuilder.group({}); - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; - this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.unannouncedChannels); + this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.settings.unannouncedChannels); }); this.channelFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((flg) => { if (flg) { @@ -126,6 +131,13 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { } } }); + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[4])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); } onConnectPeer(): boolean | void { @@ -137,6 +149,10 @@ export class CLNConnectPeerComponent implements OnInit, OnDestroy { } onOpenChannel(): boolean | void { + if (this.channelFormGroup.controls.selFeeRate.value === 'customperkb' && this.recommendedFee.minimumFee > this.channelFormGroup.controls.customFeeRate.value) { + this.channelFormGroup.controls.customFeeRate.setErrors({ minimum: true }); + return true; + } 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 true; } diff --git a/src/app/cln/peers-channels/peers/peers.component.ts b/src/app/cln/peers-channels/peers/peers.component.ts index ac4b7096..b33676d6 100644 --- a/src/app/cln/peers-channels/peers/peers.component.ts +++ b/src/app/cln/peers-channels/peers/peers.component.ts @@ -9,6 +9,7 @@ import { faUsers } 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { Peer, GetInfo, Balance, UTXO, LocalRemoteBalance } from '../../../shared/models/clnModels'; 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'; @@ -24,7 +25,7 @@ import { detachPeer } from '../../store/cln.actions'; import { clnPageSettings, nodeInfoAndBalance, peers, utxoBalances } from '../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-peers', @@ -125,7 +126,7 @@ export class CLNPeersComponent implements OnInit, AfterViewInit, OnDestroy { } onPeerClick(selPeer: Peer, event: any) { - const reorderedPeer = [ + const reorderedPeer: MessageDataField[][] = [ [{ key: 'id', value: selPeer.id, title: 'Public Key', width: 100 }], [{ key: 'netaddr', value: selPeer.netaddr, title: 'Address', width: 100 }], [{ key: 'alias', value: selPeer.alias, title: 'Alias', width: 50 }, diff --git a/src/app/cln/reports/reports.component.html b/src/app/cln/reports/reports.component.html index ad2cf712..81079649 100644 --- a/src/app/cln/reports/reports.component.html +++ b/src/app/cln/reports/reports.component.html @@ -9,7 +9,7 @@ - +
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 917543d2..07551d49 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.html +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.html @@ -47,13 +47,13 @@ Out Channel ID {{fhEvent?.out_channel}} - + Out Channel {{fhEvent?.out_channel_alias}} - + @@ -93,7 +93,7 @@
- + 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 b332efc1..ef72feb5 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.ts +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.ts @@ -6,6 +6,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ForwardingEvent, ListForwards } from '../../../shared/models/clnModels'; 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'; @@ -20,7 +21,7 @@ import { clnPageSettings, failedForwardingHistory } from '../../store/cln.select import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-failed-history', @@ -102,7 +103,7 @@ export class CLNFailedTransactionsComponent implements OnInit, AfterViewInit, On } onFailedEventClick(selFEvent: ForwardingEvent) { - const reorderedFHEvent = [ + const reorderedFHEvent: MessageDataField[][] = [ [{ key: 'received_time', value: selFEvent.received_time, title: 'Received Time', width: 50, type: DataTypeEnum.DATE_TIME }, { key: 'resolved_time', value: selFEvent.resolved_time, title: 'Resolved Time', width: 50, type: DataTypeEnum.DATE_TIME }], [{ key: 'in_channel_alias', value: selFEvent.in_channel_alias, title: 'Inbound Channel', width: 50, type: DataTypeEnum.STRING }, 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 f49e0a84..80bcb25e 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.html @@ -35,7 +35,7 @@
{{fhEvent?.in_channel_alias}} -
+
@@ -47,7 +47,7 @@
{{fhEvent?.out_channel_alias}} -
+
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 5b406b4f..63a903ab 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts @@ -6,6 +6,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ForwardingEvent, ListForwards } from '../../../shared/models/clnModels'; 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'; @@ -19,7 +20,7 @@ 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'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-forwarding-history', @@ -128,7 +129,7 @@ export class CLNForwardingHistoryComponent implements OnInit, OnChanges, AfterVi } onForwardingEventClick(selFEvent: ForwardingEvent, event: any) { - const reorderedFHEvent = [ + const reorderedFHEvent: MessageDataField[][] = [ [{ key: 'status', value: 'Settled', title: 'Status', width: 50, type: DataTypeEnum.STRING }, { key: 'fee', value: selFEvent.fee_msat, title: 'Fee (mSats)', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'received_time', value: selFEvent.received_time, title: 'Received Time', width: 50, type: DataTypeEnum.DATE_TIME }, 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 a5faa1bb..6e49b304 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 @@ -78,7 +78,7 @@
- + 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 e93204c4..3f8cb980 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 @@ -6,6 +6,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ListForwards, LocalFailedEvent } from '../../../shared/models/clnModels'; 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'; @@ -20,7 +21,7 @@ import { clnPageSettings, localFailedForwardingHistory } from '../../store/cln.s import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-local-failed-history', @@ -103,7 +104,7 @@ export class CLNLocalFailedTransactionsComponent implements OnInit, AfterViewIni } onFailedLocalEventClick(selFEvent: LocalFailedEvent) { - const reorderedFHEvent = [ + const reorderedFHEvent: MessageDataField[][] = [ [{ key: 'received_time', value: selFEvent.received_time, title: 'Received Time', width: 50, type: DataTypeEnum.DATE_TIME }, { key: 'in_channel_alias', value: selFEvent.in_channel_alias, title: 'Inbound Channel', width: 50, type: DataTypeEnum.STRING }], [{ key: 'in_msatoshi', value: selFEvent.in_msat, title: 'Amount In (mSats)', width: 100, type: DataTypeEnum.NUMBER }], diff --git a/src/app/cln/routing/routing.component.html b/src/app/cln/routing/routing.component.html index 8f07d9a2..2c978bbd 100644 --- a/src/app/cln/routing/routing.component.html +++ b/src/app/cln/routing/routing.component.html @@ -10,7 +10,7 @@ - +
diff --git a/src/app/cln/store/cln.actions.ts b/src/app/cln/store/cln.actions.ts index a3a3361d..3aeda285 100644 --- a/src/app/cln/store/cln.actions.ts +++ b/src/app/cln/store/cln.actions.ts @@ -2,16 +2,14 @@ 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, InvoicePaymentNotification, ListInvoices, OnChain, UTXO, SaveChannel, +import { Node } from '../../shared/models/RTLconfig'; +import { GetInfo, Peer, Payment, QueryRoutes, Channel, FeeRates, Invoice, InvoicePaymentNotification, 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 updateCLNAPICallStatus = createAction(CLNActions.UPDATE_API_CALL_STATUS_CLN, props<{ payload: ApiCallStatusPayload }>()); -export const resetCLNStore = createAction(CLNActions.RESET_CLN_STORE, props<{ payload: SelNodeChild | null }>()); - -export const setChildNodeSettingsCLN = createAction(CLNActions.SET_CHILD_NODE_SETTINGS_CLN, props<{ payload: SelNodeChild }>()); +export const resetCLNStore = createAction(CLNActions.RESET_CLN_STORE); export const fetchPageSettings = createAction(CLNActions.FETCH_PAGE_SETTINGS_CLN); diff --git a/src/app/cln/store/cln.effects.ts b/src/app/cln/store/cln.effects.ts index 85140a82..e7fba95b 100644 --- a/src/app/cln/store/cln.effects.ts +++ b/src/app/cln/store/cln.effects.ts @@ -99,7 +99,8 @@ export class CLNEffects implements OnDestroy { })); }, 500); return { - type: RTLActions.LOGOUT + type: RTLActions.LOGOUT, + payload: 'Sorry Not Sorry, RTL is Bitcoin Only!' }; } else { this.initializeRemainingData(info, action.payload.loadPage); @@ -114,7 +115,7 @@ export class CLNEffects implements OnDestroy { catchError((err) => { const code = this.commonService.extractErrorCode(err); const msg = (code === 'ETIMEDOUT') ? 'Unable to Connect to Core Lightning Server.' : this.commonService.extractErrorMessage(err); - this.router.navigate(['/error'], { state: { errorCode: code, errorMessage: msg } }); + this.router.navigate(['/login'], { state: { logoutReason: JSON.stringify(msg) } }); this.handleErrorWithoutAlert('FetchInfo', UI_MESSAGES.GET_NODE_INFO, 'Fetching Node Info Failed.', { status: code, error: msg }); return of({ type: RTLActions.VOID }); }) @@ -926,8 +927,7 @@ export class CLNEffects implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); const errMsg = this.commonService.extractErrorMessage(err, genericErrorMessage); @@ -940,8 +940,8 @@ export class CLNEffects implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); + this.store.dispatch(openSnackBar({ payload: 'Authentication Failed: ' + err.error })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); const errMsg = this.commonService.extractErrorMessage(err); diff --git a/src/app/cln/store/cln.reducers.ts b/src/app/cln/store/cln.reducers.ts index 420ec0a5..3831096f 100644 --- a/src/app/cln/store/cln.reducers.ts +++ b/src/app/cln/store/cln.reducers.ts @@ -2,9 +2,9 @@ import { createReducer, on } from '@ngrx/store'; import { initCLNState } from './cln.state'; import { addInvoice, addPeer, removeChannel, removePeer, resetCLNStore, setChannels, - setChildNodeSettingsCLN, setFeeRates, setForwardingHistory, - setInfo, setInvoices, setOffers, addOffer, setPayments, setPeers, setUTXOBalances, - updateCLNAPICallStatus, updateInvoice, updateOffer, setOfferBookmarks, addUpdateOfferBookmark, removeOfferBookmark, setPageSettings + setFeeRates, setForwardingHistory, setInfo, setInvoices, setOffers, addOffer, + setPayments, setPeers, setUTXOBalances, updateCLNAPICallStatus, updateInvoice, + updateOffer, setOfferBookmarks, addUpdateOfferBookmark, removeOfferBookmark, setPageSettings } from './cln.actions'; import { Channel, OfferBookmark } from '../../shared/models/clnModels'; import { CLNForwardingEventsStatusEnum, CLN_DEFAULT_PAGE_SETTINGS } from '../../shared/services/consts-enums-functions'; @@ -27,13 +27,8 @@ export const CLNReducer = createReducer(initCLNState, apisCallStatus: updatedApisCallStatus }; }), - on(setChildNodeSettingsCLN, (state, { payload }) => ({ - ...state, - nodeSettings: payload - })), - on(resetCLNStore, (state, { payload }) => ({ - ...initCLNState, - nodeSettings: payload + on(resetCLNStore, (state) => ({ + ...initCLNState })), on(setInfo, (state, { payload }) => ({ ...state, diff --git a/src/app/cln/store/cln.selector.ts b/src/app/cln/store/cln.selector.ts index c0212f7e..9984e189 100644 --- a/src/app/cln/store/cln.selector.ts +++ b/src/app/cln/store/cln.selector.ts @@ -3,7 +3,6 @@ import { Offer } from '../../shared/models/clnModels'; 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); @@ -15,15 +14,12 @@ export const feeRatesPerKW = createSelector(clnState, (state: CLNState) => ({ fe export const listInvoices = createSelector(clnState, (state: CLNState) => ({ listInvoices: state.invoices, apiCallStatus: state.apisCallStatus.FetchInvoices })); export const utxoBalances = createSelector(clnState, (state: CLNState) => ({ utxos: state.utxos, balance: state.balance, localRemoteBalance: state.localRemoteBalance, apiCallStatus: state.apisCallStatus.FetchUTXOBalances })); export const channels = createSelector(clnState, (state: CLNState) => ({ activeChannels: state.activeChannels, pendingChannels: state.pendingChannels, inactiveChannels: state.inactiveChannels, apiCallStatus: state.apisCallStatus.FetchChannels })); -// export const balance = createSelector(clnState, (state: CLNState) => ({ balance: state.balance, apiCallStatus: state.apisCallStatus.FetchBalance })); -// export const localRemoteBalance = createSelector(clnState, (state: CLNState) => ({ localRemoteBalance: state.localRemoteBalance, apiCallStatus: state.apisCallStatus.FetchLocalRemoteBalance })); export const forwardingHistory = createSelector(clnState, (state: CLNState) => ({ forwardingHistory: state.forwardingHistory, apiCallStatus: state.apisCallStatus.FetchForwardingHistoryS })); export const failedForwardingHistory = createSelector(clnState, (state: CLNState) => ({ failedForwardingHistory: state.failedForwardingHistory, apiCallStatus: state.apisCallStatus.FetchForwardingHistoryF })); export const localFailedForwardingHistory = createSelector(clnState, (state: CLNState) => ({ localFailedForwardingHistory: state.localFailedForwardingHistory, apiCallStatus: state.apisCallStatus.FetchForwardingHistoryL })); -export const nodeInfoAndNodeSettingsAndBalance = createSelector(clnState, (state: CLNState) => ({ information: state.information, nodeSettings: state.nodeSettings, balance: state.balance })); export const nodeInfoAndBalanceAndNumPeers = createSelector(clnState, (state: CLNState) => ({ information: state.information, balance: state.balance, numPeers: state.peers.length })); export const nodeInfoAndBalance = createSelector(clnState, (state: CLNState) => ({ information: state.information, balance: state.balance })); -export const nodeInfoAndNodeSettingsAndAPIsStatus = createSelector(clnState, (state: CLNState) => ({ information: state.information, nodeSettings: state.nodeSettings, fees: state.fees, apisCallStatus: [state.apisCallStatus.FetchInfo, state.apisCallStatus.FetchForwardingHistoryS] })); +export const nodeInfoAndAPIsStatus = createSelector(clnState, (state: CLNState) => ({ information: state.information, fees: state.fees, apisCallStatus: [state.apisCallStatus.FetchInfo, state.apisCallStatus.FetchForwardingHistoryS] })); export const offers = createSelector(clnState, (state: CLNState) => ({ offers: state.offers, apiCallStatus: state.apisCallStatus.FetchOffers })); export const offerBookmarks = createSelector(clnState, (state: CLNState) => ({ offersBookmarks: state.offersBookmarks, apiCallStatus: state.apisCallStatus.FetchOfferBookmarks })); export const getoffer = (bolt12Str) => createSelector(clnState, (state: CLNState) => (state.offers.find((offer: Offer) => offer.bolt12 === bolt12Str))); diff --git a/src/app/cln/store/cln.state.ts b/src/app/cln/store/cln.state.ts index 1e31a6e0..729ba1a9 100644 --- a/src/app/cln/store/cln.state.ts +++ b/src/app/cln/store/cln.state.ts @@ -1,12 +1,10 @@ -import { SelNodeChild } from '../../shared/models/RTLconfig'; -import { APICallStatusEnum, CLN_DEFAULT_PAGE_SETTINGS, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, CLN_DEFAULT_PAGE_SETTINGS } 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; @@ -45,7 +43,6 @@ export const initCLNState: CLNState = { FetchOffers: { status: APICallStatusEnum.UN_INITIATED }, FetchOfferBookmarks: { status: APICallStatusEnum.UN_INITIATED } }, - nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, unannouncedChannels: false, selCurrencyUnit: 'USD', fiatConversion: false, channelBackupPath: '', currencyUnits: [], enableOffers: false, enablePeerswap: false }, pageSettings: CLN_DEFAULT_PAGE_SETTINGS, information: {}, fees: {}, 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 a9a499b1..43f6f457 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 @@ -16,8 +16,15 @@ Amount - Sats - {{invoiceValueHint}} + Sats + + = + + + + + {{invoiceValueHint}} + Expiry @@ -44,5 +51,5 @@
-
+ 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 31c419ca..63eda2de 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 @@ -8,14 +8,16 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { CLNInvoiceInformation } from '../../../../shared/models/alertData'; -import { TimeUnitEnum, CurrencyUnitEnum, TIME_UNITS, CURRENCY_UNIT_FORMATS, PAGE_SIZE, APICallStatusEnum, CLNActions, DEFAULT_INVOICE_EXPIRY } from '../../../../shared/services/consts-enums-functions'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { TimeUnitEnum, CurrencyUnitEnum, TIME_UNITS, CURRENCY_UNIT_FORMATS, PAGE_SIZE, APICallStatusEnum, CLNActions, DEFAULT_INVOICE_EXPIRY, getSelectedCurrency } from '../../../../shared/services/consts-enums-functions'; +import { Node } from '../../../../shared/models/RTLconfig'; +import { ConvertedCurrency } from '../../../../shared/models/rtlModels'; import { GetInfo } from '../../../../shared/models/clnModels'; import { CommonService } from '../../../../shared/services/common.service'; import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { saveNewInvoice } from '../../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings } from '../../../store/cln.selector'; +import { clnNodeInformation } from '../../../store/cln.selector'; @Component({ selector: 'rtl-cln-create-invoices', @@ -25,7 +27,8 @@ import { clnNodeInformation, clnNodeSettings } from '../../../store/cln.selector export class CLNCreateInvoiceComponent implements OnInit, OnDestroy { public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public convertedCurrency: ConvertedCurrency = null; + public selNode: Node | null; public description = ''; public expiry: number | null; public invoiceValue: number | null; @@ -45,7 +48,7 @@ export class CLNCreateInvoiceComponent implements OnInit, OnDestroy { ngOnInit() { this.pageSize = this.data.pageSize; - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { @@ -93,17 +96,20 @@ export class CLNCreateInvoiceComponent implements OnInit, OnDestroy { } onInvoiceValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { + if (this.selNode && this.selNode.settings.fiatConversion) { 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[3])). - subscribe({ - next: (data) => { - this.invoiceValueHint = '= ' + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; - }, error: (err) => { - this.invoiceValueHint = 'Conversion Error: ' + err; - } - }); + if (this.invoiceValue && this.invoiceValue > 99) { + this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). + pipe(takeUntil(this.unSubs[3])). + subscribe({ + next: (data) => { + this.convertedCurrency = data; + this.invoiceValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; + }, error: (err) => { + this.invoiceValueHint = 'Conversion Error: ' + err; + } + }); + } } } diff --git a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html index 2eab1c8b..8431e4dc 100644 --- a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html +++ b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html @@ -55,7 +55,7 @@ - +

Date Expiry

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 3b9f67b1..9f839f8b 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 @@ -1,4 +1,4 @@ -
+
Description @@ -7,8 +7,15 @@ Amount - Sats - {{invoiceValueHint}} + Sats + + = + + + + + {{invoiceValueHint}} +
@@ -39,7 +46,7 @@
- + 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 8ee23e17..05f1d85c 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 @@ -8,10 +8,11 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, CLNActions, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum, CLN_PAGE_DEFS, DEFAULT_INVOICE_EXPIRY } from '../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { Node } from '../../../../shared/models/RTLconfig'; import { GetInfo, Invoice, ListInvoices } from '../../../../shared/models/clnModels'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; @@ -22,11 +23,12 @@ import { CLNInvoiceInformationComponent } from '../invoice-information-modal/inv import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { deleteExpiredInvoice, invoiceLookup, saveNewInvoice } from '../../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings, clnPageSettings, listInvoices } from '../../../store/cln.selector'; +import { clnNodeInformation, clnPageSettings, listInvoices } from '../../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { ConvertedCurrency } from '../../../../shared/models/rtlModels'; @Component({ selector: 'rtl-cln-lightning-invoices-table', @@ -44,11 +46,12 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; public nodePageDefs = CLN_PAGE_DEFS; + public convertedCurrency: ConvertedCurrency = null; 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 selNode: Node | null; public newlyAddedInvoiceMemo = ''; public newlyAddedInvoiceValue = 0; public description = ''; @@ -77,8 +80,8 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit } ngOnInit() { - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { - this.selNode = nodeSettings; + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { + this.selNode = nodeSettings; }); this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; @@ -253,13 +256,14 @@ export class CLNLightningInvoicesTableComponent implements OnInit, AfterViewInit } onInvoiceValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.invoiceValue! > 99) { + if (this.selNode && this.selNode.settings.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). + this.commonService.convertCurrency(this.invoiceValue!, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode?.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { - this.invoiceValueHint = '= ' + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; + this.convertedCurrency = data; + this.invoiceValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; }, error: (err) => { this.invoiceValueHint = 'Conversion Error: ' + err; } diff --git a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.html b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.html index 281c15e8..8feba956 100644 --- a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.html +++ b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.html @@ -16,7 +16,7 @@ Amount - Sats + Sats {{offerValueHint}} @@ -34,5 +34,5 @@ - + \ No newline at end of file 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 590e9e8f..b0341ff7 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 @@ -9,13 +9,14 @@ import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { CLNOfferInformation } from '../../../../shared/models/alertData'; import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, APICallStatusEnum, CLNActions } from '../../../../shared/services/consts-enums-functions'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { Node } from '../../../../shared/models/RTLconfig'; import { GetInfo } from '../../../../shared/models/clnModels'; import { CommonService } from '../../../../shared/services/common.service'; import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { saveNewOffer } from '../../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings } from '../../../store/cln.selector'; +import { clnNodeInformation } from '../../../store/cln.selector'; @Component({ selector: 'rtl-cln-create-offer', @@ -25,7 +26,7 @@ import { clnNodeInformation, clnNodeSettings } from '../../../store/cln.selector export class CLNCreateOfferComponent implements OnInit, OnDestroy { public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public description = ''; public offerValue: number | null; public issuer = ''; @@ -39,7 +40,7 @@ export class CLNCreateOfferComponent implements OnInit, OnDestroy { ngOnInit() { this.pageSize = this.data.pageSize; - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { @@ -76,9 +77,9 @@ export class CLNCreateOfferComponent implements OnInit, OnDestroy { } onOfferValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.offerValue && this.offerValue > 99) { + if (this.selNode && this.selNode.settings.fiatConversion && this.offerValue && this.offerValue > 99) { this.offerValueHint = ''; - this.commonService.convertCurrency(this.offerValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). + this.commonService.convertCurrency(this.offerValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[3])). subscribe({ next: (data) => { 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 855498d7..ba66caea 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 @@ -20,7 +20,7 @@
- +
diff --git a/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html b/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html index e790532d..1131b27e 100644 --- a/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html +++ b/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html @@ -32,7 +32,7 @@ - +

Description

@@ -41,7 +41,7 @@
- +

Offer

@@ -63,7 +63,7 @@ {{ !offer?.single_use ? 'N/K' : offer?.single_use ? 'Yes' : 'No' }}
-
+
@@ -92,7 +92,7 @@ {{offerDecoded?.offer_node_id}}
- +
- +
Updated At
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 99e8d8dd..a1a44d3b 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 @@ -13,7 +13,7 @@ import * as pdfFonts from 'pdfmake/build/vfs_fonts'; 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 { Node } from '../../../../shared/models/RTLconfig'; import { GetInfo, Offer, OfferRequest } from '../../../../shared/models/clnModels'; import { DataService } from '../../../../shared/services/data.service'; import { LoggerService } from '../../../../shared/services/logger.service'; @@ -25,8 +25,9 @@ import { CLNOfferInformationComponent } from '../offer-information-modal/offer-i import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { disableOffer } from '../../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings, clnPageSettings, offers } from '../../../store/cln.selector'; +import { clnNodeInformation, clnPageSettings, offers } from '../../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @@ -50,7 +51,7 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy 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 selNode: Node | null; public newlyAddedOfferMemo = ''; public newlyAddedOfferValue = 0; public description = ''; @@ -79,7 +80,7 @@ export class CLNOffersTableComponent implements OnInit, AfterViewInit, OnDestroy } ngOnInit() { - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { diff --git a/src/app/cln/transactions/payments/lightning-payments.component.html b/src/app/cln/transactions/payments/lightning-payments.component.html index 807fe276..77ce2b51 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.html +++ b/src/app/cln/transactions/payments/lightning-payments.component.html @@ -1,9 +1,16 @@ -
+
Payment Request - {{paymentDecodedHint}} + + {{paymentDecodedHintPre}} + + + + + {{paymentDecodedHintPost}} + Payment request is required.
diff --git a/src/app/cln/transactions/payments/lightning-payments.component.ts b/src/app/cln/transactions/payments/lightning-payments.component.ts index 9e1a2a49..da82e2f1 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.ts +++ b/src/app/cln/transactions/payments/lightning-payments.component.ts @@ -8,6 +8,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; 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, CLN_DEFAULT_PAGE_SETTINGS, SortOrderEnum, CLN_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @@ -16,16 +17,18 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { CLNLightningSendPaymentsComponent } from '../send-payment-modal/send-payment.component'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { sendPayment } from '../../store/cln.actions'; -import { clnNodeInformation, clnNodeSettings, clnPageSettings, payments } from '../../store/cln.selector'; +import { clnNodeInformation, clnPageSettings, payments } from '../../store/cln.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-cln-lightning-payments', @@ -42,6 +45,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD @ViewChild('sendPaymentForm', { static: false }) form; @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; + public convertedCurrency: ConvertedCurrency = null; public nodePageDefs = CLN_PAGE_DEFS; public selFilterBy = 'all'; public colWidth = '20rem'; @@ -49,7 +53,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public tableSetting: TableSetting = { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'created_at', sortOrder: SortOrderEnum.DESCENDING }; public faHistory = faHistory; public newlyAddedPayment = ''; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public information: GetInfo = {}; public payments: any = new MatTableDataSource([]); public paymentJSONArr: Payment[] = []; @@ -57,7 +61,8 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public mppColumns: string[] = []; public paymentDecoded: PayRequest = {}; public paymentRequest = ''; - public paymentDecodedHint = ''; + public paymentDecodedHintPre = ''; + public paymentDecodedHintPost = ''; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -82,7 +87,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } ngOnInit() { - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { @@ -160,7 +165,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD sendPayment() { this.newlyAddedPayment = this.paymentDecoded?.payment_hash || ''; if (!this.paymentDecoded.amount_msat || this.paymentDecoded.amount_msat === 0) { - const reorderedPaymentDecoded = [ + const reorderedPaymentDecoded: MessageDataField[][] = [ [{ 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 }], @@ -195,7 +200,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } }); } else { - const reorderedPaymentDecoded = [ + const reorderedPaymentDecoded: MessageDataField[][] = [ [{ 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 }], @@ -228,31 +233,37 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD onPaymentRequestEntry(event: any) { this.paymentRequest = event; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; if (this.paymentRequest && this.paymentRequest.length > 100) { this.dataService.decodePayment(this.paymentRequest, false). pipe(takeUntil(this.unSubs[5])).subscribe((decodedPayment: PayRequest) => { this.paymentDecoded = decodedPayment; if (this.paymentDecoded.amount_msat) { - if (this.selNode?.fiatConversion) { - this.commonService.convertCurrency(this.paymentDecoded.amount_msat / 1000 || 0, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). + if (this.selNode?.settings.fiatConversion) { + this.commonService.convertCurrency(this.paymentDecoded.amount_msat / 1000 || 0, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? - (this.paymentDecoded.amount_msat / 1000) : 0) + ' Sats (' + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), - CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit + ') | Memo: ' + this.paymentDecoded.description; + this.convertedCurrency = data; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? + (this.paymentDecoded.amount_msat / 1000) : 0) + ' Sats ('; + this.paymentDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.OTHER : 0), + CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } } else { - this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } }); } @@ -275,7 +286,7 @@ export class CLNLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } onPaymentClick(selPayment: Payment) { - const reorderedPayment = [ + const reorderedPayment: MessageDataField[][] = [ [{ key: 'payment_preimage', value: selPayment.payment_preimage, title: 'Payment Preimage', width: 100, type: DataTypeEnum.STRING }], [{ key: 'id', value: selPayment.id, title: 'ID', width: 20, type: DataTypeEnum.STRING }, { key: 'destination', value: selPayment.destination, title: 'Destination', width: 80, type: DataTypeEnum.STRING }], 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 fcd0b664..310ffd3b 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 @@ -10,7 +10,7 @@ Invoice Keysend - Offer + Offer @@ -30,7 +30,14 @@ Payment Request - {{paymentDecodedHint}} + + {{paymentDecodedHintPre}} + + + + + {{paymentDecodedHintPost}} + Payment request is required. {{paymentDecodedHint}} @@ -48,8 +55,17 @@ Pubkey is required. - Amount (Sats) - + Amount + + Sats + + = + + + + + {{keysendValueHint}} + Keysend amount is required. @@ -57,7 +73,14 @@ Offer Request - {{offerDecodedHint}} + + {{offerDecodedHintPre}} + + + + + {{offerDecodedHintPost}} + Offer request is required. {{offerDecodedHint}} @@ -70,7 +93,7 @@
Bookmark Offer info_outline -
+
Title to Save 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 58541d0a..61f84ea2 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 @@ -8,18 +8,20 @@ import { Actions } from '@ngrx/effects'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; -import { PayRequest, Channel, GetInfo, OfferRequest, OfferInvoice } from '../../../shared/models/clnModels'; +import { Node } from '../../../shared/models/RTLconfig'; +import { PayRequest, Channel, OfferRequest, OfferInvoice } from '../../../shared/models/clnModels'; import { APICallStatusEnum, CLNActions, PaymentTypes, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, FEE_LIMIT_TYPES, UI_MESSAGES } from '../../../shared/services/consts-enums-functions'; import { DataService } from '../../../shared/services/data.service'; import { CommonService } from '../../../shared/services/common.service'; import { LoggerService } from '../../../shared/services/logger.service'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { fetchOfferInvoice, sendPayment } from '../../store/cln.actions'; -import { channels, clnNodeInformation, clnNodeSettings } from '../../store/cln.selector'; +import { channels } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { CLNPaymentInformation } from '../../../shared/models/alertData'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-cln-lightning-send-payments', @@ -45,13 +47,14 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { } } public faExclamationTriangle = faExclamationTriangle; + public convertedCurrency: ConvertedCurrency = null; public paymentTypes = PaymentTypes; public paymentType = PaymentTypes.INVOICE; - public selNode: SelNodeChild | null = {}; - + public selNode: Node | null; public offerDecoded: OfferRequest = {}; public offerRequest = ''; - public offerDecodedHint = ''; + public offerDecodedHintPre = ''; + public offerDecodedHintPost = ''; public offerDescription = ''; public offerIssuer = ''; public offerTitle = ''; @@ -62,12 +65,14 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { public paymentDecoded: PayRequest = {}; public paymentRequest = ''; - public paymentDecodedHint = ''; + public paymentDecodedHintPre = ''; + public paymentDecodedHintPost = ''; public zeroAmtInvoice = false; public paymentAmount = null; public pubkey = ''; public keysendAmount = null; + public keysendValueHint = ''; public selActiveChannel: Channel | null = {}; public activeChannels = {}; public feeLimit = null; @@ -105,7 +110,7 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { break; } } - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(channels).pipe(takeUntil(this.unSubs[2])). @@ -131,13 +136,18 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { } if (action.payload.action === 'DecodePayment') { if (this.paymentType === PaymentTypes.INVOICE) { - this.paymentDecodedHint = 'ERROR: ' + action.payload.message; + this.paymentDecodedHintPre = 'ERROR: ' + action.payload.message; + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors({ decodeError: true }); } if (this.paymentType === PaymentTypes.OFFER) { - this.offerDecodedHint = 'ERROR: ' + action.payload.message; + this.offerDecodedHintPre = 'ERROR: ' + action.payload.message; + this.offerDecodedHintPost = ''; this.offerReq.control.setErrors({ decodeError: true }); } + if (this.paymentType === PaymentTypes.KEYSEND) { + this.keysendValueHint = 'ERROR: ' + action.payload.message; + } } if (action.payload.action === 'FetchOfferInvoice' && this.paymentType === PaymentTypes.OFFER) { this.paymentError = action.payload.message; @@ -166,7 +176,8 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { this.dataService.decodePayment(this.paymentRequest, true). pipe(takeUntil(this.unSubs[4])).subscribe((decodedPayment: PayRequest | OfferRequest) => { if (decodedPayment.type === 'bolt12 offer' && (decodedPayment).offer_id) { - this.paymentDecodedHint = 'ERROR: Select Offer option to pay the bolt12 offer invoice.'; + this.paymentDecodedHintPre = 'ERROR: Select Offer option to pay the bolt12 offer invoice.'; + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors({ decodeError: true }); } else { this.paymentDecoded = decodedPayment; @@ -189,7 +200,8 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { this.dataService.decodePayment(this.offerRequest, true). pipe(takeUntil(this.unSubs[5])).subscribe((decodedOffer: PayRequest | OfferRequest) => { if (decodedOffer.type === 'bolt11 invoice' && (decodedOffer).payment_hash) { - this.offerDecodedHint = 'ERROR: Select Invoice option to pay the bolt11 invoice.'; + this.offerDecodedHintPre = 'ERROR: Select Invoice option to pay the bolt11 invoice.'; + this.offerDecodedHintPost = ''; this.offerReq.control.setErrors({ decodeError: true }); } else { this.offerDecoded = decodedOffer; @@ -248,7 +260,8 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { this.dataService.decodePayment(event, true).pipe(takeUntil(this.unSubs[6])).subscribe((decodedRequest: PayRequest | OfferRequest) => { if (this.paymentType === PaymentTypes.INVOICE) { if (decodedRequest.type === 'bolt12 offer' && (decodedRequest).offer_id) { - this.paymentDecodedHint = 'ERROR: Select Offer option to pay the bolt12 offer invoice.'; + this.paymentDecodedHintPre = 'ERROR: Select Offer option to pay the bolt12 offer invoice.'; + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors({ decodeError: true }); } else { this.paymentDecoded = decodedRequest; @@ -256,7 +269,8 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { } } else if (this.paymentType === PaymentTypes.OFFER) { if (decodedRequest.type === 'bolt11 invoice' && (decodedRequest).payment_hash) { - this.offerDecodedHint = 'ERROR: Select Invoice option to pay the bolt11 invoice.'; + this.offerDecodedHintPre = 'ERROR: Select Invoice option to pay the bolt11 invoice.'; + this.offerDecodedHintPost = ''; this.offerReq.control.setErrors({ decodeError: true }); } else { this.offerDecoded = decodedRequest; @@ -270,7 +284,8 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { resetOfferDetails() { this.offerInvoice = null; this.offerAmount = null; - this.offerDecodedHint = ''; + this.offerDecodedHintPre = ''; + this.offerDecodedHintPost = ''; this.zeroAmtOffer = false; this.paymentError = ''; if (this.offerReq) { this.offerReq.control.setErrors(null); } @@ -278,7 +293,8 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { resetInvoiceDetails() { this.paymentAmount = null; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; this.zeroAmtInvoice = false; this.paymentError = ''; if (this.paymentReq) { this.paymentReq.control.setErrors(null); } @@ -297,8 +313,10 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { onPaymentTypeChange() { this.paymentError = ''; - this.paymentDecodedHint = ''; - this.offerDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; + this.offerDecodedHintPre = ''; + this.offerDecodedHintPost = ''; this.offerInvoice = null; } @@ -308,24 +326,29 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { this.zeroAmtOffer = true; this.offerDescription = this.offerDecoded.offer_description || ''; this.offerIssuer = this.offerDecoded.offer_issuer ? this.offerDecoded.offer_issuer : ''; - this.offerDecodedHint = 'Zero Amount Offer | Description: ' + this.offerDecoded.offer_description; + this.offerDecodedHintPre = 'Zero Amount Offer | Description: ' + this.offerDecoded.offer_description; + this.offerDecodedHintPost = ''; } else { this.zeroAmtOffer = false; this.offerAmount = this.offerDecoded.offer_amount_msat ? this.offerDecoded.offer_amount_msat / 1000 : 0; this.offerDescription = this.offerDecoded.offer_description || ''; this.offerIssuer = this.offerDecoded.offer_issuer ? this.offerDecoded.offer_issuer : ''; - if (this.selNode && this.selNode.fiatConversion) { - this.commonService.convertCurrency(this.offerAmount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). + if (this.selNode && this.selNode.settings.fiatConversion) { + this.commonService.convertCurrency(this.offerAmount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[7])). subscribe({ next: (data) => { - this.offerDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.offerAmount) + ' Sats (' + this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit + ') | Description: ' + this.offerDecoded.offer_description; + this.convertedCurrency = data; + this.offerDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.offerAmount) + ' Sats ('; + this.offerDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit + ') | Description: ' + this.offerDecoded.offer_description; }, error: (error) => { - this.offerDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.offerAmount) + ' Sats | Description: ' + this.offerDecoded.offer_description + '. Unable to convert currency.'; + this.offerDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.offerAmount) + ' Sats | Description: ' + this.offerDecoded.offer_description + '. Unable to convert currency.'; + this.offerDecodedHintPost = ''; } }); } else { - this.offerDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.offerAmount) + ' Sats | Description: ' + this.offerDecoded.offer_description; + this.offerDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.offerAmount) + ' Sats | Description: ' + this.offerDecoded.offer_description; + this.offerDecodedHintPost = ''; } } } @@ -334,22 +357,27 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { if (this.paymentDecoded.created_at && !this.paymentDecoded.amount_msat) { this.paymentDecoded.amount_msat = 0; this.zeroAmtInvoice = true; - this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } else { this.zeroAmtInvoice = false; - if (this.selNode && this.selNode.fiatConversion) { - this.commonService.convertCurrency(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.currencyUnits && this.selNode.currencyUnits.length > 2 ? this.selNode.currencyUnits[2] : ''), this.selNode.fiatConversion). + if (this.selNode && this.selNode.settings.fiatConversion) { + this.commonService.convertCurrency(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, + (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[8])). subscribe({ next: (data) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats (' + - this.decimalPipe.transform((data.OTHER ? data.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit + ') | Memo: ' + this.paymentDecoded.description; + this.convertedCurrency = data; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats ('; + this.paymentDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount_msat ? this.paymentDecoded.amount_msat / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } } } @@ -358,6 +386,7 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { switch (this.paymentType) { case PaymentTypes.KEYSEND: this.pubkey = ''; + this.keysendValueHint = ''; this.keysendAmount = null; break; @@ -382,6 +411,25 @@ export class CLNLightningSendPaymentsComponent implements OnInit, OnDestroy { this.paymentError = ''; } + onKeysendAmountChange() { + if (this.selNode && this.selNode.settings.fiatConversion) { + this.keysendValueHint = ''; + if (this.keysendAmount && this.keysendAmount > 99) { + this.commonService.convertCurrency(this.keysendAmount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). + pipe(takeUntil(this.unSubs[3])). + subscribe({ + next: (data) => { + this.convertedCurrency = data; + this.keysendValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; + }, error: (err) => { + this.keysendValueHint = 'Conversion Error: ' + err; + } + }); + } + } + } + + ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/transactions/transactions.component.ts b/src/app/cln/transactions/transactions.component.ts index 58caa182..6c851647 100644 --- a/src/app/cln/transactions/transactions.component.ts +++ b/src/app/cln/transactions/transactions.component.ts @@ -9,10 +9,11 @@ import { UserPersonaEnum } from '../../shared/services/consts-enums-functions'; import { LoggerService } from '../../shared/services/logger.service'; import { RTLState } from '../../store/rtl.state'; -import { clnNodeSettings, utxoBalances } from '../store/cln.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { utxoBalances } from '../store/cln.selector'; import { Balance, LocalRemoteBalance, UTXO } from '../../shared/models/clnModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { fetchOffers, fetchOfferBookmarks } from '../store/cln.actions'; @Component({ @@ -27,7 +28,7 @@ export class CLNTransactionsComponent implements OnInit, OnDestroy { currencyUnits: string[] = []; routerUrl = ''; balances = [{ title: 'Local Capacity', dataValue: 0, tooltip: 'Amount you can send' }, { title: 'Remote Capacity', dataValue: 0, tooltip: 'Amount you can receive' }]; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public links = [{ link: 'payments', name: 'Payments' }, { link: 'invoices', name: 'Invoices' }]; public activeLink = this.links[0].link; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; @@ -45,9 +46,9 @@ export class CLNTransactionsComponent implements OnInit, OnDestroy { this.routerUrl = (value).urlAfterRedirects; } }); - this.store.select(clnNodeSettings).pipe(takeUntil(this.unSubs[1])).subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; - if (this.selNode && this.selNode.enableOffers) { + if (this.selNode && this.selNode.settings.enableOffers) { this.store.dispatch(fetchOffers()); this.store.dispatch(fetchOfferBookmarks()); this.links.push({ link: 'offers', name: 'Offers' }); @@ -57,10 +58,10 @@ export class CLNTransactionsComponent implements OnInit, OnDestroy { } }); this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[2]), - withLatestFrom(this.store.select(clnNodeSettings))). - subscribe(([utxoBalancesSeletor, nodeSettings]: [{ utxos: UTXO[], balance: Balance, localRemoteBalance: LocalRemoteBalance, apiCallStatus: ApiCallStatusPayload }, (SelNodeChild | null)]) => { - this.currencyUnits = nodeSettings?.currencyUnits || []; - if (nodeSettings && nodeSettings.userPersona === UserPersonaEnum.OPERATOR) { + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([utxoBalancesSeletor, nodeSettings]: [{ utxos: UTXO[], balance: Balance, localRemoteBalance: LocalRemoteBalance, apiCallStatus: ApiCallStatusPayload }, (Node | null)]) => { + this.currencyUnits = nodeSettings?.settings.currencyUnits || []; + if (nodeSettings && nodeSettings.settings.userPersona === UserPersonaEnum.OPERATOR) { this.balances = [{ title: 'Local Capacity', dataValue: utxoBalancesSeletor.localRemoteBalance.localBalance, tooltip: 'Amount you can send' }, { title: 'Remote Capacity', dataValue: utxoBalancesSeletor.localRemoteBalance.remoteBalance, tooltip: 'Amount you can receive' }]; } else { this.balances = [{ title: 'Outbound Capacity', dataValue: utxoBalancesSeletor.localRemoteBalance.localBalance, tooltip: 'Amount you can send' }, { title: 'Inbound Capacity', dataValue: utxoBalancesSeletor.localRemoteBalance.remoteBalance, tooltip: 'Amount you can receive' }]; diff --git a/src/app/eclair/graph/lookups/lookups.component.html b/src/app/eclair/graph/lookups/lookups.component.html index d35cbe6d..227bcc8c 100644 --- a/src/app/eclair/graph/lookups/lookups.component.html +++ b/src/app/eclair/graph/lookups/lookups.component.html @@ -17,7 +17,7 @@
- +
{{lookupFields[selectedFieldId].name}} Details @@ -27,7 +27,7 @@ fxFlex="100"

Error! Unable to find details!

-
+
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 60ce1403..fd6574b1 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 @@ -52,7 +52,7 @@ - +
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 4284fdb8..5cf8124a 100644 --- a/src/app/eclair/graph/query-routes/query-routes.component.html +++ b/src/app/eclair/graph/query-routes/query-routes.component.html @@ -57,7 +57,7 @@ -
Actions
+
Actions
@@ -66,7 +66,7 @@ -
+
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 b96e7e1d..f0ce1465 100644 --- a/src/app/eclair/graph/query-routes/query-routes.component.ts +++ b/src/app/eclair/graph/query-routes/query-routes.component.ts @@ -13,6 +13,7 @@ import { ECLEffects } from '../../store/ecl.effects'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; import { getQueryRoutes } from '../../store/ecl.actions'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-ecl-query-routes', @@ -75,7 +76,7 @@ export class ECLQueryRoutesComponent implements OnInit, OnDestroy { } onHopClick(selHop: RouteNode) { - const reorderedHop = [ + const reorderedHop: MessageDataField[][] = [ [{ key: 'alias', value: selHop.alias, title: 'Alias', width: 100, type: DataTypeEnum.STRING }], [{ key: 'nodeId', value: selHop.nodeId, title: 'Node ID', width: 100, type: DataTypeEnum.STRING }] ]; diff --git a/src/app/eclair/home/home.component.html b/src/app/eclair/home/home.component.html index b4d5f1a7..168e9353 100644 --- a/src/app/eclair/home/home.component.html +++ b/src/app/eclair/home/home.component.html @@ -1,4 +1,4 @@ -
+
{{apiCallStatusNodeInfo.status === apiCallStatusEnum.COMPLETED ? 'Welcome ' + information.alias + '! Your node is up and running.' : apiCallStatusNodeInfo.status === apiCallStatusEnum.INITIATED ? 'Wait! Getting your node information...' : 'Error! Please check the server connection.'}} diff --git a/src/app/eclair/home/home.component.ts b/src/app/eclair/home/home.component.ts index 59408c6c..4def0b2e 100644 --- a/src/app/eclair/home/home.component.ts +++ b/src/app/eclair/home/home.component.ts @@ -11,10 +11,11 @@ import { CommonService } from '../../shared/services/common.service'; import { UserPersonaEnum, ScreenSizeEnum, APICallStatusEnum } from '../../shared/services/consts-enums-functions'; import { GetInfo, Channel, Fees, OnChainBalance, ChannelsStatus, LightningBalance } from '../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; -import { allChannelsInfo, eclNodeSettings, fees, nodeInfoStatus, onchainBalance } from '../store/ecl.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { allChannelsInfo, fees, nodeInfoStatus, onchainBalance } from '../store/ecl.selector'; export interface Tile { id: string; @@ -43,7 +44,7 @@ export class ECLHomeComponent implements OnInit, OnDestroy { public faNetworkWired = faNetworkWired; public userPersonaEnum = UserPersonaEnum; public channelBalances = { localBalance: 0, remoteBalance: 0, balancedness: 0 }; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public fees: Fees; public information: GetInfo = {}; public channels: Channel[] = []; @@ -117,7 +118,7 @@ export class ECLHomeComponent implements OnInit, OnDestroy { } ngOnInit() { - this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings) => { this.selNode = nodeSettings; }); diff --git a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 549aeafb..3ba5857e 100644 --- a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -7,7 +7,7 @@ import { Actions } from '@ngrx/effects'; import { MatDialogRef } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo, OnChainBalance, SendPaymentOnChain } from '../../../shared/models/eclModels'; import { CURRENCY_UNITS, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, ADDRESS_TYPES, APICallStatusEnum, ECLActions } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; @@ -27,7 +27,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public addressTypes = []; public selectedAddress = ADDRESS_TYPES[1]; public blockchainBalance: OnChainBalance = {}; 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 b1eaf885..48e426c0 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 @@ -89,7 +89,10 @@ + + +
\ No newline at end of file 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 aa0c661c..6a537483 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 @@ -4,12 +4,13 @@ import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faHistory } from '@fortawesome/free-solid-svg-icons'; -import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; +import { MatPaginator, MatPaginatorIntl, PageEvent } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; import { Transaction } from '../../../shared/models/eclModels'; -import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; +import { ApiCallStatusPayload, ApiCallsListECL } from '../../../shared/models/apiCallsPayload'; 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'; @@ -20,7 +21,7 @@ import { fetchTransactions } from '../../store/ecl.actions'; import { eclPageSettings, transactions } from '../../store/ecl.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-ecl-on-chain-transaction-history', @@ -51,6 +52,8 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; + public totalRecords = 0; + public flgInit = false; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, private datePipe: DatePipe, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { @@ -58,24 +61,32 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy } ngOnInit() { - this.store.dispatch(fetchTransactions()); this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload, allApiCallStatus: ApiCallsListECL }) => { 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)); + if (this.apiCallStatus.status === APICallStatusEnum.COMPLETED) { + 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) / 14) + 'rem' : '20rem'; + if (!this.flgInit) { + this.flgInit = true; + // Uncomment after paginator api is fixed + // this.store.dispatch(fetchTransactions({ payload : { count: this.pageSize, skip: 0 } })); + // Remove below one line after paginator api is fixed + this.store.dispatch(fetchTransactions({ payload : { count: 1000, skip: 0 } })); + } + this.logger.info(this.displayedColumns); } - 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) / 14) + 'rem' : '20rem'; - this.logger.info(this.displayedColumns); }); this.store.select(transactions).pipe(takeUntil(this.unSubs[1])). subscribe((transactionsSelector: { transactions: Transaction[], apiCallStatus: ApiCallStatusPayload }) => { @@ -84,7 +95,9 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy if (this.apiCallStatus.status === APICallStatusEnum.ERROR) { this.errorMessage = !this.apiCallStatus.message ? '' : (typeof (this.apiCallStatus.message) === 'object') ? JSON.stringify(this.apiCallStatus.message) : this.apiCallStatus.message; } - if (transactionsSelector.transactions && this.sort && this.paginator) { + // Uncomment after paginator api is fixed + // this.totalRecords = transactionsSelector.transactions.totalRecords; + if (transactionsSelector.transactions && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadTransactionsTable(transactionsSelector.transactions); } this.logger.info(transactionsSelector); @@ -121,9 +134,9 @@ export class ECLOnChainTransactionHistoryComponent implements OnInit, OnDestroy } onTransactionClick(selTransaction: Transaction, event: any) { - const reorderedTransactions = [ - [{ key: 'blockHash', value: selTransaction.blockHash, title: 'Block Hash', width: 100 }], - [{ key: 'txid', value: selTransaction.txid, title: 'Transaction ID', width: 100 }], + const reorderedTransactions: MessageDataField[][] = [ + [{ key: 'blockHash', value: selTransaction.blockHash || selTransaction.blockId_opt, title: 'Block Hash', width: 100, explorerLink: 'block' }], + [{ key: 'txid', value: selTransaction.txid, title: 'Transaction ID', width: 100, explorerLink: 'tx' }], [{ key: 'timestamp', value: selTransaction.timestamp, title: 'Date/Time', width: 50, type: DataTypeEnum.DATE_TIME }, { key: 'confirmations', value: selTransaction.confirmations, title: 'Number of Confirmations', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'fees', value: selTransaction.fees, title: 'Fees (Sats)', width: 50, type: DataTypeEnum.NUMBER }, @@ -145,12 +158,17 @@ 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); + // Remove below one line after paginator api is fixed this.listTransactions.paginator = this.paginator; this.setFilterPredicate(); this.applyFilter(); this.logger.info(this.listTransactions); } + onPageChange(event: PageEvent) { + this.store.dispatch(fetchTransactions({ payload : { count: this.pageSize, skip: event.pageIndex * event.pageSize } })); + } + onDownloadCSV() { if (this.listTransactions.data && this.listTransactions.data.length > 0) { this.commonService.downloadFile(this.listTransactions.data, 'Transactions'); diff --git a/src/app/eclair/on-chain/on-chain.component.ts b/src/app/eclair/on-chain/on-chain.component.ts index 231ec029..24edcefa 100644 --- a/src/app/eclair/on-chain/on-chain.component.ts +++ b/src/app/eclair/on-chain/on-chain.component.ts @@ -6,10 +6,11 @@ import { Store } from '@ngrx/store'; import { faExchangeAlt, faChartPie } from '@fortawesome/free-solid-svg-icons'; import { ECLOnChainSendModalComponent } from './on-chain-send-modal/on-chain-send-modal.component'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; +import { rootSelectedNode } from '../../store/rtl.selector'; import { openAlert } from '../../store/rtl.actions'; -import { eclNodeSettings, onchainBalance } from '../store/ecl.selector'; +import { onchainBalance } from '../store/ecl.selector'; import { OnChainBalance } from '../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @@ -20,7 +21,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; }) export class ECLOnChainComponent implements OnInit, OnDestroy { - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public faExchangeAlt = faExchangeAlt; public faChartPie = faChartPie; public balances = [{ title: 'Total Balance', dataValue: 0 }, { title: 'Confirmed', dataValue: 0 }, { title: 'Unconfirmed', dataValue: 0 }]; @@ -40,7 +41,7 @@ export class ECLOnChainComponent implements OnInit, OnDestroy { this.activeLink = linkFound ? linkFound.link : this.links[0].link; } }); - this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[1])). + this.store.select(rootSelectedNode).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 580e3030..f09cf49a 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 @@ -34,7 +34,9 @@

Peer Public Key

- {{channel.nodeId}} + + {{channel.nodeId}} +
@@ -81,12 +83,12 @@
- - - + +
diff --git a/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts index c0cc1974..c6e4da59 100644 --- a/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -1,4 +1,5 @@ import { Component, OnInit, Inject } from '@angular/core'; +import { Router } from '@angular/router'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { faReceipt } from '@fortawesome/free-solid-svg-icons'; import { MatSnackBar } from '@angular/material/snack-bar'; @@ -23,7 +24,14 @@ export class ECLChannelInformationComponent implements OnInit { public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: ECLChannelInformation, private logger: LoggerService, private commonService: CommonService, private snackBar: MatSnackBar) { } + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: ECLChannelInformation, + private logger: LoggerService, + private commonService: CommonService, + private snackBar: MatSnackBar, + private router: Router + ) { } ngOnInit() { this.channel = this.data.channel; @@ -44,4 +52,9 @@ export class ECLChannelInformationComponent implements OnInit { this.logger.info('Copied Text: ' + payload); } + onGoToLink(lookupType: string, lookupValue: string) { + this.router.navigateByUrl('/ecl/graph/lookups', { state: { lookupType: lookupType, lookupValue: lookupValue } }); + this.onClose(); + } + } diff --git a/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html b/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html index e6924b2a..a5204015 100644 --- a/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html +++ b/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.html @@ -26,7 +26,7 @@
{{inputFormLabel}} -
+
Amount @@ -94,7 +94,7 @@ -
+
diff --git a/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts b/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts index e9c77ac9..f32a0b42 100644 --- a/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts +++ b/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts @@ -15,7 +15,7 @@ import { opacityAnimation } from '../../../../shared/animation/opacity-animation import { DataService } from '../../../../shared/services/data.service'; import { LoggerService } from '../../../../shared/services/logger.service'; import { RTLState } from '../../../../store/rtl.state'; -import { fetchChannels, fetchInvoices } from '../../../store/ecl.actions'; +import { fetchChannels } from '../../../store/ecl.actions'; @Component({ selector: 'rtl-ecl-channel-rebalance', @@ -124,8 +124,7 @@ export class ECLChannelRebalanceComponent implements OnInit, OnDestroy { this.logger.info(rebalanceRes); this.rebalanceStatus = rebalanceRes; this.flgEditable = true; - this.store.dispatch(fetchInvoices()); - this.store.dispatch(fetchChannels({ payload: { fetchPayments: true } })); + this.store.dispatch(fetchChannels()); }, error: (error) => { this.logger.error(error); this.rebalanceStatus = error; 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 faf23bf6..94bf5d69 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 @@ -87,7 +87,7 @@ Download CSV
- +
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 0dca4a1b..43b7e294 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 @@ -94,7 +94,7 @@ Download CSV
- +
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 527bc054..271fba30 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 @@ -70,7 +70,7 @@ Download CSV
- + 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 39ff54d6..0f98ff4d 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 @@ -7,11 +7,12 @@ import { Store } from '@ngrx/store'; import { ECLOpenChannelComponent } from '../open-channel-modal/open-channel.component'; import { LoggerService } from '../../../../shared/services/logger.service'; import { Channel, ChannelsStatus, GetInfo, LightningBalance, OnChainBalance, Peer } from '../../../../shared/models/eclModels'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; +import { Node } from '../../../../shared/models/RTLconfig'; import { RTLState } from '../../../../store/rtl.state'; import { openAlert } from '../../../../store/rtl.actions'; -import { allChannelsInfo, eclNodeInformation, eclNodeSettings, onchainBalance, peers } from '../../../store/ecl.selector'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { allChannelsInfo, eclNodeInformation, onchainBalance, peers } from '../../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ @@ -24,7 +25,7 @@ export class ECLChannelsTablesComponent implements OnInit, OnDestroy { public numOfOpenChannels = 0; public numOfPendingChannels = 0; public numOfInactiveChannels = 0; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public information: GetInfo = {}; public peers: Peer[] = []; public totalBalance = 0; @@ -49,8 +50,8 @@ 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(eclNodeSettings).pipe(takeUntil(this.unSubs[2])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[2])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[3])). 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 1bae59a8..cf5b6e9f 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 @@ -26,7 +26,7 @@ Amount Remaining: {{totalBalance - ((fundingAmount) ? fundingAmount : 0) | number}} - Sats + Sats Amount is required. Amount must be less than or equal to {{totalBalance}}. @@ -41,16 +41,31 @@
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Fee (Sats/vByte) - + + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) + Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
- +
diff --git a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.spec.ts b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.spec.ts index a6785d08..c5ea7f58 100644 --- a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.spec.ts +++ b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.spec.ts @@ -3,13 +3,14 @@ import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { EffectsModule } from '@ngrx/effects'; import { StoreModule } from '@ngrx/store'; -import { mockCLEffects, mockECLEffects, mockLNDEffects, mockMatDialogRef, mockRTLEffects } from '../../../../shared/test-helpers/mock-services'; import { SharedModule } from '../../../../shared/shared.module'; +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'; import { ECLReducer } from '../../../../eclair/store/ecl.reducers'; +import { mockCLEffects, mockDataService, mockECLEffects, mockLNDEffects, mockMatDialogRef, mockRTLEffects } from '../../../../shared/test-helpers/mock-services'; import { ECLOpenChannelComponent } from './open-channel.component'; describe('ECLOpenChannelComponent', () => { @@ -26,6 +27,7 @@ describe('ECLOpenChannelComponent', () => { EffectsModule.forRoot([mockRTLEffects, mockLNDEffects, mockCLEffects, mockECLEffects]) ], providers: [ + { provide: DataService, useClass: mockDataService }, { provide: MatDialogRef, useClass: mockMatDialogRef }, { provide: MAT_DIALOG_DATA, useValue: { message: {} } } ] 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 f0829642..e8228a9c 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 @@ -5,16 +5,19 @@ import { Subject, Observable } from 'rxjs'; import { takeUntil, filter, startWith, map } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { Peer, GetInfo, SaveChannel } from '../../../../shared/models/eclModels'; import { APICallStatusEnum, ECLActions } from '../../../../shared/services/consts-enums-functions'; import { ECLOpenChannelAlert } from '../../../../shared/models/alertData'; import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { saveNewChannel } from '../../../store/ecl.actions'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; -import { eclNodeSettings } from '../../../store/ecl.selector'; +import { Node } from '../../../../shared/models/RTLconfig'; +import { RecommendedFeeRates } from '../../../../shared/models/rtlModels'; +import { LoggerService } from '../../../../shared/services/logger.service'; +import { DataService } from '../../../../shared/services/data.service'; @Component({ selector: 'rtl-ecl-open-channel', @@ -24,9 +27,10 @@ import { eclNodeSettings } from '../../../store/ecl.selector'; export class ECLOpenChannelComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public selectedPeer = new UntypedFormControl(); public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public alertTitle: string; public peer: Peer | null; public peers: Peer[]; @@ -40,9 +44,12 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { public selectedPubkey = ''; public isPrivate = false; public feeRate: number | null = null; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; 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) { } + constructor(private logger: LoggerService, public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: ECLOpenChannelAlert, private store: Store, + private actions: Actions, private dataService: DataService) { } ngOnInit() { if (this.data.message) { @@ -57,10 +64,10 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { this.peers = []; } this.alertTitle = this.data.alertTitle || 'Alert'; - this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; - this.isPrivate = !!nodeSettings?.unannouncedChannels; + this.isPrivate = !!nodeSettings?.settings.unannouncedChannels; }); this.actions.pipe( takeUntil(this.unSubs[1]), @@ -119,7 +126,7 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { this.feeRate = null; this.selectedPeer.setValue(''); this.fundingAmount = null; - this.isPrivate = !!this.selNode?.unannouncedChannels; + this.isPrivate = !!this.selNode?.settings.unannouncedChannels; this.channelConnectionError = ''; this.advancedTitle = 'Advanced Options'; this.form.resetForm(); @@ -131,11 +138,23 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { if (this.feeRate && this.feeRate > 0) { this.advancedTitle = this.advancedTitle + ' | Fee (Sats/vByte): ' + this.feeRate; } + } else { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); } } onOpenChannel(): boolean | void { - if ((!this.peer && !this.selectedPubkey) || (!this.fundingAmount || ((this.totalBalance - this.fundingAmount) < 0))) { + if ( + (!this.peer && !this.selectedPubkey) || + (!this.fundingAmount || ((this.totalBalance - this.fundingAmount) < 0)) || + (this.feeRate && this.recommendedFee.minimumFee > this.feeRate) + ) { return true; } const saveChannelPayload: SaveChannel = { nodeId: ((!this.peer || !this.peer.nodeId) ? this.selectedPubkey : this.peer.nodeId), amount: this.fundingAmount, private: this.isPrivate }; @@ -143,6 +162,7 @@ export class ECLOpenChannelComponent implements OnInit, OnDestroy { this.store.dispatch(saveNewChannel({ payload: saveChannelPayload })); } + ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); 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 b0441eaa..5867ca36 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 @@ -5,13 +5,13 @@ Connect to a new peer
- +
- {{peerFormLabel}} + {{peerFormLabel}} Lightning Address (pubkey OR pubkey@ip:port) @@ -30,8 +30,21 @@ {{channelFormLabel}}
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
- + Amount Remaining: {{totalBalance - ((channelFormGroup.controls.fundingAmount.value) ? channelFormGroup.controls.fundingAmount.value : 0) | number}} @@ -40,11 +53,13 @@ Amount must be a positive number. Amount must be less than or equal to {{totalBalance}}. - + Fee (Sats/vByte) - + + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) + Lower than min feerate {{recommendedFee.minimumFee}} in the mempool. -
+
Private Channel
@@ -59,7 +74,7 @@ -
+
diff --git a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.spec.ts b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.spec.ts index 14cf0c06..b475ee4d 100644 --- a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.spec.ts +++ b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.spec.ts @@ -1,4 +1,5 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; +import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { StoreModule } from '@ngrx/store'; @@ -10,9 +11,9 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { ECLConnectPeerComponent } from './connect-peer.component'; import { SharedModule } from '../../../shared/shared.module'; -import { mockCLEffects, mockECLEffects, mockLNDEffects, mockMatDialogRef, mockRTLEffects } from '../../../shared/test-helpers/mock-services'; +import { DataService } from '../../../shared/services/data.service'; +import { mockCLEffects, mockECLEffects, mockLNDEffects, mockMatDialogRef, mockRTLEffects, mockDataService } from '../../../shared/test-helpers/mock-services'; import { EffectsModule } from '@ngrx/effects'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; describe('ECLConnectPeerComponent', () => { let component: ECLConnectPeerComponent; @@ -30,7 +31,8 @@ describe('ECLConnectPeerComponent', () => { providers: [ LoggerService, { provide: MatDialogRef, useClass: mockMatDialogRef }, - { provide: MAT_DIALOG_DATA, useValue: { message: {} } } + { provide: MAT_DIALOG_DATA, useValue: { message: {} } }, + { provide: DataService, useClass: mockDataService } ] }). compileComponents(); 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 4d61042d..b20bec40 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 @@ -6,17 +6,18 @@ import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { Peer } from '../../../shared/models/eclModels'; import { APICallStatusEnum, ECLActions } from '../../../shared/services/consts-enums-functions'; import { ECLOpenChannelAlert } from '../../../shared/models/alertData'; import { LoggerService } from '../../../shared/services/logger.service'; - +import { RecommendedFeeRates } from '../../../shared/models/rtlModels'; +import { DataService } from '../../../shared/services/data.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'; +import { rootSelectedNode } from '../../../store/rtl.selector'; +import { Node } from '../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-ecl-connect-peer', @@ -28,7 +29,8 @@ 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 faInfoCircle = faInfoCircle; + public selNode: Node | null; public peerAddress = ''; public totalBalance = 0; public flgChannelOpened = false; @@ -39,12 +41,14 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { public channelConnectionError = ''; public peerFormLabel = 'Peer Details'; public channelFormLabel = 'Open Channel (Optional)'; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; peerFormGroup: UntypedFormGroup; channelFormGroup: UntypedFormGroup; statusFormGroup: UntypedFormGroup; - 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: ECLOpenChannelAlert, private store: Store, private formBuilder: UntypedFormBuilder, private actions: Actions, private logger: LoggerService) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: ECLOpenChannelAlert, private store: Store, private formBuilder: UntypedFormBuilder, private actions: Actions, + private logger: LoggerService, private dataService: DataService) { } ngOnInit() { if (this.data.message) { @@ -61,15 +65,15 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { }); this.channelFormGroup = this.formBuilder.group({ fundingAmount: ['', [Validators.required, Validators.min(1), Validators.max(this.totalBalance)]], - isPrivate: [!!this.selNode?.unannouncedChannels], + isPrivate: [!!this.selNode?.settings.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.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; - this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.unannouncedChannels); + this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.settings.unannouncedChannels); }); this.actions.pipe( takeUntil(this.unSubs[1]), @@ -93,6 +97,13 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { } } }); + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[2])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); } onConnectPeer(): boolean | void { @@ -104,6 +115,10 @@ export class ECLConnectPeerComponent implements OnInit, OnDestroy { } onOpenChannel(): boolean | void { + if (this.channelFormGroup.controls.feeRate.value && this.recommendedFee.minimumFee > this.channelFormGroup.controls.feeRate.value) { + this.channelFormGroup.controls.feeRate.setErrors({ minimum: true }); + return true; + } if (!this.channelFormGroup.controls.fundingAmount.value || ((this.totalBalance - this.channelFormGroup.controls.fundingAmount.value) < 0)) { return true; } diff --git a/src/app/eclair/peers-channels/peers/peers.component.ts b/src/app/eclair/peers-channels/peers/peers.component.ts index a750bc3e..225a7dd6 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.ts +++ b/src/app/eclair/peers-channels/peers/peers.component.ts @@ -1,14 +1,14 @@ import { Component, OnInit, AfterViewInit, OnDestroy, ViewChild } from '@angular/core'; - import { Subject } from 'rxjs'; import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { faUsers } 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; + import { Peer, GetInfo, OnChainBalance } from '../../../shared/models/eclModels'; 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'; @@ -24,7 +24,7 @@ import { disconnectPeer } from '../../store/ecl.actions'; import { eclNodeInformation, eclPageSettings, onchainBalance, peers } from '../../store/ecl.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-ecl-peers', @@ -119,7 +119,7 @@ export class ECLPeersComponent implements OnInit, AfterViewInit, OnDestroy { } onPeerClick(selPeer: Peer, event: any) { - const reorderedPeer = [ + const reorderedPeer: MessageDataField[][] = [ [{ key: 'nodeId', value: selPeer.nodeId, title: 'Public Key', width: 100 }], [{ key: 'address', value: selPeer.address, title: 'Address', width: 50 }, { key: 'alias', value: selPeer.alias, title: 'Alias', width: 50 }], diff --git a/src/app/eclair/reports/reports.component.html b/src/app/eclair/reports/reports.component.html index ca123cb3..0dfdaf50 100644 --- a/src/app/eclair/reports/reports.component.html +++ b/src/app/eclair/reports/reports.component.html @@ -9,7 +9,7 @@
{{link.name}}
- +
diff --git a/src/app/eclair/reports/transactions/transactions-report.component.html b/src/app/eclair/reports/transactions/transactions-report.component.html index 8372a0c8..19fccce7 100644 --- a/src/app/eclair/reports/transactions/transactions-report.component.html +++ b/src/app/eclair/reports/transactions/transactions-report.component.html @@ -32,7 +32,7 @@ {{model.name}}: {{(model.value || 0) | number:'1.0-2'}}/# {{model.name === 'Paid' ? 'Payments' : 'Invoices'}}: {{(model.extra?.total || 0) | number}} - +
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 ff46b133..c39f6115 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html @@ -16,7 +16,7 @@
- + 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 ba02bacc..1dfe7482 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts @@ -6,6 +6,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { PaymentRelayed, Payments } from '../../../shared/models/eclModels'; 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'; @@ -18,7 +19,7 @@ import { openAlert } from '../../../store/rtl.actions'; import { eclPageSettings, payments } from '../../store/ecl.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-ecl-forwarding-history', @@ -115,7 +116,7 @@ export class ECLForwardingHistoryComponent implements OnInit, OnChanges, AfterVi } onForwardingEventClick(selFEvent: PaymentRelayed, event: any) { - const reorderedFHEvent = [ + const reorderedFHEvent: MessageDataField[][] = [ [{ key: 'paymentHash', value: selFEvent.paymentHash, title: 'Payment Hash', width: 100, type: DataTypeEnum.STRING }], [{ key: 'timestamp', value: Math.round((selFEvent.timestamp || 0) / 1000), title: 'Date/Time', width: 50, type: DataTypeEnum.DATE_TIME }, { key: 'fee', value: ((selFEvent.amountIn || 0) - (selFEvent.amountOut || 0)), title: 'Fee Earned (Sats)', width: 50, type: DataTypeEnum.NUMBER }], diff --git a/src/app/eclair/routing/routing.component.html b/src/app/eclair/routing/routing.component.html index 2c24dc8e..691a82bf 100644 --- a/src/app/eclair/routing/routing.component.html +++ b/src/app/eclair/routing/routing.component.html @@ -10,7 +10,7 @@ - +
diff --git a/src/app/eclair/store/ecl.actions.ts b/src/app/eclair/store/ecl.actions.ts index 5e269a83..27b0ba3d 100644 --- a/src/app/eclair/store/ecl.actions.ts +++ b/src/app/eclair/store/ecl.actions.ts @@ -2,7 +2,7 @@ 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 { Node } 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'; @@ -10,9 +10,7 @@ import { PageSettings } from '../../shared/models/pageSettings'; export const updateECLAPICallStatus = createAction(ECLActions.UPDATE_API_CALL_STATUS_ECL, props<{ payload: ApiCallStatusPayload }>()); -export const resetECLStore = createAction(ECLActions.RESET_ECL_STORE, props<{ payload: SelNodeChild | null }>()); - -export const setChildNodeSettingsECL = createAction(ECLActions.SET_CHILD_NODE_SETTINGS_ECL, props<{ payload: SelNodeChild }>()); +export const resetECLStore = createAction(ECLActions.RESET_ECL_STORE); export const fetchPageSettings = createAction(ECLActions.FETCH_PAGE_SETTINGS_ECL); @@ -28,7 +26,7 @@ export const fetchFees = createAction(ECLActions.FETCH_FEES_ECL); export const setFees = createAction(ECLActions.SET_FEES_ECL, props<{ payload: Fees }>()); -export const fetchChannels = createAction(ECLActions.FETCH_CHANNELS_ECL, props<{ payload: { fetchPayments: boolean } }>()); +export const fetchChannels = createAction(ECLActions.FETCH_CHANNELS_ECL); export const setActiveChannels = createAction(ECLActions.SET_ACTIVE_CHANNELS_ECL, props<{ payload: Channel[] }>()); @@ -70,7 +68,7 @@ export const closeChannel = createAction(ECLActions.CLOSE_CHANNEL_ECL, props<{ p export const removeChannel = createAction(ECLActions.REMOVE_CHANNEL_ECL, props<{ payload: { channelId: string } }>()); -export const fetchPayments = createAction(ECLActions.FETCH_PAYMENTS_ECL); +export const fetchPayments = createAction(ECLActions.FETCH_PAYMENTS_ECL, props<{ payload: { count: number, skip: number } }>()); export const setPayments = createAction(ECLActions.SET_PAYMENTS_ECL, props<{ payload: Payments }>()); @@ -82,7 +80,7 @@ export const sendPayment = createAction(ECLActions.SEND_PAYMENT_ECL, props<{ pay export const sendPaymentStatus = createAction(ECLActions.SEND_PAYMENT_STATUS_ECL, props<{ payload: any }>()); -export const fetchTransactions = createAction(ECLActions.FETCH_TRANSACTIONS_ECL); +export const fetchTransactions = createAction(ECLActions.FETCH_TRANSACTIONS_ECL, props<{ payload: { count: number, skip: number } }>()); export const setTransactions = createAction(ECLActions.SET_TRANSACTIONS_ECL, props<{ payload: Transaction[] }>()); @@ -90,7 +88,7 @@ export const sendOnchainFunds = createAction(ECLActions.SEND_ONCHAIN_FUNDS_ECL, export const sendOnchainFundsRes = createAction(ECLActions.SEND_ONCHAIN_FUNDS_RES_ECL, props<{ payload: any }>()); -export const fetchInvoices = createAction(ECLActions.FETCH_INVOICES_ECL); +export const fetchInvoices = createAction(ECLActions.FETCH_INVOICES_ECL, props<{ payload: { count: number, skip: number } }>()); export const setInvoices = createAction(ECLActions.SET_INVOICES_ECL, props<{ payload: Invoice[] }>()); diff --git a/src/app/eclair/store/ecl.effects.ts b/src/app/eclair/store/ecl.effects.ts index 11383ab3..5b8a5e02 100644 --- a/src/app/eclair/store/ecl.effects.ts +++ b/src/app/eclair/store/ecl.effects.ts @@ -14,12 +14,12 @@ 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 { API_URL, API_END_POINTS, RTLActions, ECLActions, APICallStatusEnum, UI_MESSAGES, ECLWSEventTypeEnum } from '../../shared/services/consts-enums-functions'; +import { API_URL, API_END_POINTS, RTLActions, ECLActions, APICallStatusEnum, UI_MESSAGES, ECLWSEventTypeEnum, ECL_DEFAULT_PAGE_SETTINGS } 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, +import { fetchChannels, fetchFees, fetchOnchainBalance, fetchPayments, fetchPeers, sendPaymentStatus, setActiveChannels, setChannelsStatus, setInactiveChannels, setLightningBalance, setPeers, setPendingChannels, setQueryRoutes, updateECLAPICallStatus, updateChannelState, updateInvoice, updateRelayedPayment } from './ecl.actions'; import { allAPIsCallStatus } from './ecl.selector'; @@ -29,6 +29,8 @@ import { ApiCallsListECL } from '../../shared/models/apiCallsPayload'; export class ECLEffects implements OnDestroy { CHILD_API_URL = API_URL + '/ecl'; + private invoicesPageSettings = ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices'); + private paymentsPageSettings = ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments'); private flgInitialized = false; private flgReceivedPaymentUpdateFromWS = false; private latestPaymentRes = ''; @@ -167,9 +169,9 @@ export class ECLEffects implements OnDestroy { fetchPayments = createEffect(() => this.actions.pipe( ofType(ECLActions.FETCH_PAYMENTS_ECL), - mergeMap(() => { + mergeMap((action: { type: string, payload: { count: number, skip: number } }) => { this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchPayments', status: APICallStatusEnum.INITIATED } })); - return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.FEES_API + '/payments'). + return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.FEES_API + '/payments?count=' + action.payload.count + '&skip=' + action.payload.skip). pipe( map((payments: any) => { this.logger.info(payments); @@ -189,7 +191,7 @@ export class ECLEffects implements OnDestroy { channelsFetch = createEffect(() => this.actions.pipe( ofType(ECLActions.FETCH_CHANNELS_ECL), - mergeMap((action: { type: string, payload: { fetchPayments: boolean } }) => { + mergeMap((action: { type: string }) => { this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchChannels', status: APICallStatusEnum.INITIATED } })); return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.CHANNELS_API). pipe( @@ -198,9 +200,6 @@ export class ECLEffects implements OnDestroy { this.rawChannelsList = channelsRes; this.setChannelsAndStatusAndBalances(); this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchChannels', status: APICallStatusEnum.COMPLETED } })); - if (action.payload && action.payload.fetchPayments) { - this.store.dispatch(fetchPayments()); - } return { type: RTLActions.VOID }; }), catchError((err: any) => { @@ -412,7 +411,6 @@ export class ECLEffects implements OnDestroy { this.logger.info(postRes); setTimeout(() => { this.store.dispatch(closeSpinner({ payload: ((action.payload.force) ? UI_MESSAGES.FORCE_CLOSE_CHANNEL : UI_MESSAGES.CLOSE_CHANNEL) })); - this.store.dispatch(fetchChannels({ payload: { fetchPayments: false } })); this.store.dispatch(openSnackBar({ payload: (action.payload.force ? 'Channel Force Closed Successfully!' : 'Channel Closed Successfully!') })); }, 2000); return { @@ -487,9 +485,9 @@ export class ECLEffects implements OnDestroy { transactionsFetch = createEffect(() => this.actions.pipe( ofType(ECLActions.FETCH_TRANSACTIONS_ECL), - mergeMap(() => { + mergeMap((action: { type: string, payload: { count: number, skip: number } }) => { this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchTransactions', status: APICallStatusEnum.INITIATED } })); - return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.ON_CHAIN_API + '/transactions?count=1000&skip=0'); + return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.ON_CHAIN_API + '/transactions?count=' + action.payload.count + '&skip=' + action.payload.skip); }), map((transactions) => { this.logger.info(transactions); @@ -571,9 +569,9 @@ export class ECLEffects implements OnDestroy { invoicesFetch = createEffect(() => this.actions.pipe( ofType(ECLActions.FETCH_INVOICES_ECL), - mergeMap(() => { + mergeMap((action: { type: string, payload: { count: number, skip: number } }) => { this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchInvoices', status: APICallStatusEnum.INITIATED } })); - return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.INVOICES_API). + return this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.INVOICES_API + '?count=' + action.payload.count + '&skip=' + action.payload.skip). pipe( map((res: Invoice[]) => { this.logger.info(res); @@ -659,6 +657,10 @@ export class ECLEffects implements OnDestroy { map((pageSettings: any) => { this.logger.info(pageSettings); this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'FetchPageSettings', status: APICallStatusEnum.COMPLETED } })); + this.invoicesPageSettings = (pageSettings && Object.keys(pageSettings).length > 0 ? (pageSettings.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices')) : + ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices')); + this.paymentsPageSettings = (pageSettings && Object.keys(pageSettings).length > 0 ? (pageSettings.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments')) : + ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments')); return { type: ECLActions.SET_PAGE_SETTINGS_ECL, payload: pageSettings || [] @@ -684,6 +686,14 @@ export class ECLEffects implements OnDestroy { 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!' })); + const invPgSz = (postRes.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'invoices') || ECL_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') || ECL_DEFAULT_PAGE_SETTINGS.find((page) => page.pageId === 'transactions')?.tables.find((table) => table.tableId === 'payments'))?.recordsPerPage; + if (this.invoicesPageSettings && invPgSz !== this.invoicesPageSettings?.recordsPerPage) { + this.invoicesPageSettings.recordsPerPage = invPgSz; + } + if (this.paymentsPageSettings && payPgSz !== this.paymentsPageSettings?.recordsPerPage) { + this.paymentsPageSettings.recordsPerPage = payPgSz; + } return { type: ECLActions.SET_PAGE_SETTINGS_ECL, payload: postRes || [] @@ -748,7 +758,6 @@ export class ECLEffects implements OnDestroy { this.store.dispatch(updateECLAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.SEND_PAYMENT })); this.store.dispatch(sendPaymentStatus({ payload: this.latestPaymentRes })); - this.store.dispatch(fetchChannels({ payload: { fetchPayments: true } })); this.store.dispatch(openSnackBar({ payload: msg })); }; @@ -775,8 +784,7 @@ export class ECLEffects implements OnDestroy { newRoute = '/ecl/home'; } this.router.navigate([newRoute]); - this.store.dispatch(fetchInvoices()); - this.store.dispatch(fetchChannels({ payload: { fetchPayments: true } })); + this.store.dispatch(fetchChannels()); this.store.dispatch(fetchFees()); this.store.dispatch(fetchOnchainBalance()); this.store.dispatch(fetchPeers()); @@ -787,8 +795,7 @@ export class ECLEffects implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); this.store.dispatch(updateECLAPICallStatus({ payload: { action: actionName, status: APICallStatusEnum.ERROR, statusCode: err.status.toString(), message: this.commonService.extractErrorMessage(err, genericErrorMessage) } })); @@ -800,8 +807,7 @@ export class ECLEffects implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); const errMsg = this.commonService.extractErrorMessage(err); diff --git a/src/app/eclair/store/ecl.reducers.ts b/src/app/eclair/store/ecl.reducers.ts index 429e0214..5a160083 100644 --- a/src/app/eclair/store/ecl.reducers.ts +++ b/src/app/eclair/store/ecl.reducers.ts @@ -1,7 +1,7 @@ import { createReducer, on } from '@ngrx/store'; import { initECLState } from './ecl.state'; -import { addInvoice, removeChannel, removePeer, resetECLStore, setActiveChannels, setChannelsStatus, setChildNodeSettingsECL, +import { addInvoice, removeChannel, removePeer, resetECLStore, setActiveChannels, setChannelsStatus, 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'; @@ -25,13 +25,8 @@ export const ECLReducer = createReducer(initECLState, apisCallStatus: updatedApisCallStatus }; }), - on(setChildNodeSettingsECL, (state, { payload }) => ({ - ...state, - nodeSettings: payload - })), - on(resetECLStore, (state, { payload }) => ({ - ...initECLState, - nodeSettings: payload + on(resetECLStore, (state) => ({ + ...initECLState })), on(setInfo, (state, { payload }) => ({ ...state, diff --git a/src/app/eclair/store/ecl.selector.ts b/src/app/eclair/store/ecl.selector.ts index 5a3be0d7..638982cb 100644 --- a/src/app/eclair/store/ecl.selector.ts +++ b/src/app/eclair/store/ecl.selector.ts @@ -2,7 +2,6 @@ import { createFeatureSelector, createSelector } from '@ngrx/store'; import { ECLState } from './ecl.state'; export const eclState = createFeatureSelector('ecl'); -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 })); diff --git a/src/app/eclair/store/ecl.state.ts b/src/app/eclair/store/ecl.state.ts index 13406a3a..b46f0000 100644 --- a/src/app/eclair/store/ecl.state.ts +++ b/src/app/eclair/store/ecl.state.ts @@ -1,12 +1,10 @@ -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, ECL_DEFAULT_PAGE_SETTINGS, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, ECL_DEFAULT_PAGE_SETTINGS } 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; @@ -34,7 +32,6 @@ export const initECLState: ECLState = { FetchInvoices: { status: APICallStatusEnum.UN_INITIATED }, FetchTransactions: { status: APICallStatusEnum.UN_INITIATED } }, - nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, unannouncedChannels: false, selCurrencyUnit: 'USD', fiatConversion: false, channelBackupPath: '', currencyUnits: [] }, pageSettings: ECL_DEFAULT_PAGE_SETTINGS, information: {}, fees: {}, 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 113ea9c8..3fbb8556 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 @@ -17,8 +17,15 @@ Amount - Sats - {{invoiceValueHint}} + Sats + + = + + + + + {{invoiceValueHint}} + Expiry @@ -41,5 +48,5 @@
- + 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 068bd238..18da1cb5 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 @@ -9,13 +9,15 @@ import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { ECLInvoiceInformation } from '../../../shared/models/alertData'; import { TimeUnitEnum, CurrencyUnitEnum, TIME_UNITS, CURRENCY_UNIT_FORMATS, PAGE_SIZE, APICallStatusEnum, ECLActions, DEFAULT_INVOICE_EXPIRY } from '../../../shared/services/consts-enums-functions'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo } from '../../../shared/models/eclModels'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { createInvoice } from '../../store/ecl.actions'; -import { eclNodeInformation, eclNodeSettings } from '../../store/ecl.selector'; +import { eclNodeInformation } from '../../store/ecl.selector'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-ecl-create-invoices', @@ -25,7 +27,8 @@ import { eclNodeInformation, eclNodeSettings } from '../../store/ecl.selector'; export class ECLCreateInvoiceComponent implements OnInit, OnDestroy { public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public convertedCurrency: ConvertedCurrency = null; + public selNode: Node | null; public description = ''; public expiry: number | null; public invoiceValue: number | null = null; @@ -45,8 +48,8 @@ export class ECLCreateInvoiceComponent implements OnInit, OnDestroy { ngOnInit() { this.pageSize = this.data.pageSize; - this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[1])). @@ -97,13 +100,14 @@ export class ECLCreateInvoiceComponent implements OnInit, OnDestroy { } onInvoiceValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { + if (this.selNode && this.selNode.settings.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). + this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[3])). subscribe({ next: (data) => { - this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; + this.convertedCurrency = data; + this.invoiceValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; }, error: (err) => { this.invoiceValueHint = 'Conversion Error: ' + err; } 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 3b0c1edd..d2d988d4 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 @@ -42,7 +42,7 @@ - +

Date Created

@@ -53,7 +53,7 @@ {{invoice?.status | titlecase}}
- +

Description

diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.html b/src/app/eclair/transactions/invoices/lightning-invoices.component.html index 419b4112..6d7b2d94 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.html +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.html @@ -8,8 +8,15 @@ Amount - Sats - {{invoiceValueHint}} + Sats + + = + + + + + {{invoiceValueHint}} +
@@ -128,6 +135,9 @@
+ + + diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.ts b/src/app/eclair/transactions/invoices/lightning-invoices.component.ts index 39730c49..dc9f0446 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.ts +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.ts @@ -5,12 +5,13 @@ 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 { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; +import { MatPaginator, MatPaginatorIntl, PageEvent } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, ECLActions, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS, DEFAULT_INVOICE_EXPIRY } from '../../../shared/services/consts-enums-functions'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo, Invoice } from '../../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { LoggerService } from '../../../shared/services/logger.service'; @@ -20,12 +21,13 @@ import { ECLCreateInvoiceComponent } from '../create-invoice-modal/create-invoic import { ECLInvoiceInformationComponent } from '../invoice-information-modal/invoice-information.component'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { openAlert } from '../../../store/rtl.actions'; -import { createInvoice, invoiceLookup } from '../../store/ecl.actions'; -import { eclNodeInformation, eclNodeSettings, eclPageSettings, invoices } from '../../store/ecl.selector'; +import { createInvoice, fetchInvoices, invoiceLookup } from '../../store/ecl.actions'; +import { eclNodeInformation, eclPageSettings, invoices } from '../../store/ecl.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-ecl-lightning-invoices', @@ -42,12 +44,13 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD @ViewChild(MatSort, { static: false }) sort: MatSort | undefined; @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; faHistory = faHistory; + public convertedCurrency: ConvertedCurrency = null; 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 selNode: Node | null; public newlyAddedInvoiceMemo: string | null = ''; public newlyAddedInvoiceValue: number | null = 0; public description: string | null = ''; @@ -67,6 +70,8 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; + public totalRecords = 0; + public flgInit = false; 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, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { @@ -74,8 +79,8 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD } ngOnInit() { - this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[1])). @@ -99,6 +104,13 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD 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) / 14) + 'rem' : '20rem'; + if (!this.flgInit) { + this.flgInit = true; + // Uncomment after paginator api is fixed + // this.store.dispatch(fetchInvoices({ payload : { count: this.pageSize, skip: 0 } })); + // Remove below one line after paginator api is fixed + this.store.dispatch(fetchInvoices({ payload : { count: 1000000, skip: 0 } })); + } this.logger.info(this.displayedColumns); }); this.store.select(invoices).pipe(takeUntil(this.unSubs[3])). @@ -109,6 +121,8 @@ 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 : []; + // Uncomment after paginator api is fixed + // this.totalRecords = invoicesSelector.invoices.totalRecords; if (this.invoiceJSONArr && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadInvoicesTable(this.invoiceJSONArr); } @@ -223,6 +237,7 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD this.invoices = invs ? new MatTableDataSource([...invs]) : 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); + // Remove below one line after paginator api is fixed this.invoices.paginator = this.paginator; this.setFilterPredicate(); this.applyFilter(); @@ -236,13 +251,14 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD } onInvoiceValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { + if (this.selNode && this.selNode.settings.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). + this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[5])). subscribe({ next: (data) => { - this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; + this.convertedCurrency = data; + this.invoiceValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; }, error: (err) => { this.invoiceValueHint = 'Conversion Error: ' + err; } @@ -250,6 +266,10 @@ export class ECLLightningInvoicesComponent implements OnInit, AfterViewInit, OnD } } + onPageChange(event: PageEvent) { + this.store.dispatch(fetchInvoices({ payload : { count: this.pageSize, skip: event.pageIndex * event.pageSize } })); + } + onDownloadCSV() { if (this.invoices.data && this.invoices.data.length > 0) { this.commonService.downloadFile(this.invoices.data, 'Invoices'); diff --git a/src/app/eclair/transactions/payment-information-modal/payment-information.component.html b/src/app/eclair/transactions/payment-information-modal/payment-information.component.html index c4ff897f..b37a26d2 100644 --- a/src/app/eclair/transactions/payment-information-modal/payment-information.component.html +++ b/src/app/eclair/transactions/payment-information-modal/payment-information.component.html @@ -18,42 +18,42 @@ {{(payment.firstPartTimestamp) | date:'dd/MMM/y HH:mm'}} - +

ID

{{payment.id}}
- +

Payment Hash

{{payment.paymentHash}}
- +

Payment Preimage

{{payment.paymentPreimage}}
- +

Recipient Node

{{payment.recipientNodeAlias}}
- +

Description

{{description}}
- +
@@ -91,7 +91,7 @@
- + diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.html b/src/app/eclair/transactions/payments/lightning-payments.component.html index f7e64d8b..871fb044 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.html +++ b/src/app/eclair/transactions/payments/lightning-payments.component.html @@ -3,7 +3,14 @@ Payment Request - {{paymentDecodedHint}} + + {{paymentDecodedHintPre}} + + + + + {{paymentDecodedHintPost}} + Payment request is required.
@@ -103,7 +110,7 @@
- + @@ -242,6 +249,9 @@ + + + diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.ts b/src/app/eclair/transactions/payments/lightning-payments.component.ts index 0c779569..aa67cf13 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.ts +++ b/src/app/eclair/transactions/payments/lightning-payments.component.ts @@ -4,9 +4,10 @@ import { Subject } from 'rxjs'; import { takeUntil, take } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faHistory } from '@fortawesome/free-solid-svg-icons'; -import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; +import { MatPaginator, MatPaginatorIntl, PageEvent } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; 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, SortOrderEnum, ECL_DEFAULT_PAGE_SETTINGS, ECL_PAGE_DEFS } from '../../../shared/services/consts-enums-functions'; @@ -17,16 +18,18 @@ import { DataService } from '../../../shared/services/data.service'; import { ECLLightningSendPaymentsComponent } from '../send-payment-modal/send-payment.component'; import { ECLPaymentInformationComponent } from '../payment-information-modal/payment-information.component'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; -import { sendPayment } from '../../store/ecl.actions'; -import { eclNodeInformation, eclNodeSettings, eclPageSettings, payments } from '../../store/ecl.selector'; +import { fetchPayments, sendPayment } from '../../store/ecl.actions'; +import { eclNodeInformation, eclPageSettings, payments } from '../../store/ecl.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-ecl-lightning-payments', @@ -43,6 +46,7 @@ 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 convertedCurrency: ConvertedCurrency = null; public nodePageDefs = ECL_PAGE_DEFS; public selFilterBy = 'all'; public colWidth = '20rem'; @@ -50,7 +54,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public tableSetting: TableSetting = { tableId: 'payments', recordsPerPage: PAGE_SIZE, sortBy: 'firstPartTimestamp', sortOrder: SortOrderEnum.DESCENDING }; public faHistory = faHistory; public newlyAddedPayment = ''; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public information: GetInfo = {}; public payments: any = new MatTableDataSource([]); public paymentJSONArr: PaymentSent[] = []; @@ -58,7 +62,8 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public displayedColumns: any[] = []; public partColumns: string[] = []; public paymentRequest = ''; - public paymentDecodedHint = ''; + public paymentDecodedHintPre = ''; + public paymentDecodedHintPost = ''; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; public screenSize = ''; @@ -67,6 +72,8 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD public selFilter = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; + public totalRecords = 0; + public flgInit = false; 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, private camelCaseWithSpaces: CamelCaseWithSpacesPipe) { @@ -74,8 +81,8 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } ngOnInit() { - this.store.select(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(eclNodeInformation).pipe(takeUntil(this.unSubs[1])). @@ -100,6 +107,13 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD 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) / 14) + 'rem' : '20rem'; + if (!this.flgInit) { + this.flgInit = true; + // Uncomment after paginator api is fixed + // this.store.dispatch(fetchPayments({ payload : { count: this.pageSize, skip: 0 } })); + // Remove below one line after paginator api is fixed + this.store.dispatch(fetchPayments({ payload : { count: 1000000, skip: 0 } })); + } this.logger.info(this.displayedColumns); }); this.store.select(payments).pipe(takeUntil(this.unSubs[3])). @@ -110,6 +124,8 @@ 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 : []; + // Uncomment after paginator api is fixed + // this.totalRecords = paymentsSeletor.payments.totalRecords; if (this.paymentJSONArr && this.sort && this.paginator && this.displayedColumns.length > 0) { this.loadPaymentsTable(this.paymentJSONArr); } @@ -177,6 +193,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD return (data[sortHeaderId] && isNaN(data[sortHeaderId])) ? data[sortHeaderId].toLocaleLowerCase() : data[sortHeaderId] ? +data[sortHeaderId] : null; } }; + // Remove below one line after paginator api is fixed this.payments.paginator = this.paginator; this.setFilterPredicate(); this.applyFilter(); @@ -207,7 +224,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD sendPayment() { this.newlyAddedPayment = this.paymentDecoded.paymentHash || ''; if (!this.paymentDecoded.amount || this.paymentDecoded.amount === 0) { - const reorderedPaymentDecoded = [ + const reorderedPaymentDecoded: MessageDataField[][] = [ [{ 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 }], @@ -242,7 +259,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } }); } else { - const reorderedPaymentDecoded = [ + const reorderedPaymentDecoded: MessageDataField[][] = [ [{ 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 }], @@ -275,27 +292,33 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD onPaymentRequestEntry(event: any) { this.paymentRequest = event; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; if (this.paymentRequest && this.paymentRequest.length > 100) { this.dataService.decodePayment(this.paymentRequest, false). pipe(take(1)).subscribe((decodedPayment: PayRequest) => { this.paymentDecoded = decodedPayment; 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). + if (this.selNode && this.selNode.settings.fiatConversion) { + this.commonService.convertCurrency(+this.paymentDecoded.amount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). 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; + this.convertedCurrency = data; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats ('; + this.paymentDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } } else { - this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } }); } @@ -370,7 +393,7 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD } showPartView(selPart: PaymentSentPart, selPayment: PaymentSent, sentPaymentInfo?: any[]) { - const reorderedPart = [ + const reorderedPart: MessageDataField[][] = [ [{ key: 'paymentHash', value: selPayment.paymentHash, title: 'Payment Hash', width: 100, type: DataTypeEnum.STRING }], [{ key: 'paymentPreimage', value: selPayment.paymentPreimage, title: 'Payment Preimage', width: 100, type: DataTypeEnum.STRING }], [{ key: 'toChannelId', value: selPart.toChannelId, title: 'Channel', width: 100, type: DataTypeEnum.STRING }], @@ -393,6 +416,10 @@ export class ECLLightningPaymentsComponent implements OnInit, AfterViewInit, OnD })); } + onPageChange(event: PageEvent) { + this.store.dispatch(fetchPayments({ payload : { count: this.pageSize, skip: event.pageIndex * event.pageSize } })); + } + onDownloadCSV() { if (this.payments.data && this.payments.data.length > 0) { const paymentsDataCopy: PaymentSent[] = JSON.parse(JSON.stringify(this.payments.data)); diff --git a/src/app/eclair/transactions/send-payment-modal/send-payment.component.html b/src/app/eclair/transactions/send-payment-modal/send-payment.component.html index d7bf46cc..0604cb2b 100644 --- a/src/app/eclair/transactions/send-payment-modal/send-payment.component.html +++ b/src/app/eclair/transactions/send-payment-modal/send-payment.component.html @@ -11,7 +11,14 @@ Payment Request - {{paymentDecodedHint}} + + {{paymentDecodedHintPre}} + + + + + {{paymentDecodedHintPost}} + Payment request is required. {{paymentDecodedHint}} 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 1cfd2b50..61614b90 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 @@ -8,7 +8,7 @@ import { Actions } from '@ngrx/effects'; import { MatDialogRef } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { PayRequest, Channel, LightningBalance, ChannelsStatus } from '../../../shared/models/eclModels'; import { APICallStatusEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, ECLActions, FEE_LIMIT_TYPES } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; @@ -17,9 +17,11 @@ import { DataService } from '../../../shared/services/data.service'; import { ECLEffects } from '../../store/ecl.effects'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { sendPayment } from '../../store/ecl.actions'; -import { allChannelsInfo, eclNodeSettings } from '../../store/ecl.selector'; +import { allChannelsInfo } from '../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-ecl-lightning-send-payments', @@ -30,12 +32,14 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { @ViewChild('paymentReq', { static: false }) paymentReq: NgModel; public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public convertedCurrency: ConvertedCurrency = null; + public selNode: Node | null; public paymentDecoded: PayRequest = {}; public zeroAmtInvoice = false; public paymentAmount = null; public paymentRequest = ''; - public paymentDecodedHint = ''; + public paymentDecodedHintPre = ''; + public paymentDecodedHintPost = ''; public selActiveChannel: Channel | null = {}; public activeChannels = {}; public feeLimit = null; @@ -47,8 +51,8 @@ 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(eclNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[1])). @@ -79,7 +83,8 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { } else { this.paymentAmount = null; this.paymentError = ''; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors(null); this.dataService.decodePayment(this.paymentRequest, true). pipe(take(1)).subscribe({ @@ -88,26 +93,32 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { if (this.paymentDecoded.timestamp && !this.paymentDecoded.amount) { this.paymentDecoded.amount = 0; this.zeroAmtInvoice = true; - this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } else { this.zeroAmtInvoice = false; - if (this.selNode && this.selNode.fiatConversion && this.paymentDecoded.amount) { - 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). + if (this.selNode && this.selNode.settings.fiatConversion && this.paymentDecoded.amount) { + this.commonService.convertCurrency(+this.paymentDecoded.amount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[2])). 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; + this.convertedCurrency = data; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats ('; + this.paymentDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount / 1000 : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } } }, error: (err) => { this.logger.error(err); - this.paymentDecodedHint = 'ERROR: ' + ((err.message) ? err.message : ((typeof err === 'string') ? err : JSON.stringify(err))); + this.paymentDecodedHintPre = 'ERROR: ' + ((err.message) ? err.message : ((typeof err === 'string') ? err : JSON.stringify(err))); + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors({ decodeError: true }); } }); @@ -125,7 +136,8 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { onPaymentRequestEntry(event: any) { this.paymentRequest = event && typeof event === 'string' ? event.trim() : event; this.paymentError = ''; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; this.zeroAmtInvoice = false; if (this.paymentRequest && this.paymentRequest.length > 100) { this.paymentReq.control.setErrors(null); @@ -137,26 +149,32 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { if (this.paymentDecoded.timestamp && !this.paymentDecoded.amount) { this.paymentDecoded.amount = 0; this.zeroAmtInvoice = true; - this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } else { this.zeroAmtInvoice = false; - if (this.selNode && this.selNode.fiatConversion && this.paymentDecoded.amount) { - 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). + if (this.selNode && this.selNode.settings.fiatConversion && this.paymentDecoded.amount) { + this.commonService.convertCurrency(+this.paymentDecoded.amount, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[3])). 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; + next: (data1) => { + this.convertedCurrency = data1; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats ('; + this.paymentDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.OTHER : 0), CURRENCY_UNIT_FORMATS.OTHER) + ') | Memo: ' + this.paymentDecoded.description; }, error: (error) => { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.amount ? this.paymentDecoded.amount : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } } }, error: (err) => { this.logger.error(err); - this.paymentDecodedHint = 'ERROR: ' + ((err.message) ? err.message : ((typeof err === 'string') ? err : JSON.stringify(err))); + this.paymentDecodedHintPre = 'ERROR: ' + ((err.message) ? err.message : ((typeof err === 'string') ? err : JSON.stringify(err))); + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors({ decodeError: true }); } }); @@ -176,7 +194,8 @@ export class ECLLightningSendPaymentsComponent implements OnInit, OnDestroy { this.selFeeLimitType = FEE_LIMIT_TYPES[0]; this.paymentReq.control.setErrors(null); this.paymentError = ''; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; this.zeroAmtInvoice = false; } diff --git a/src/app/eclair/transactions/transactions.component.ts b/src/app/eclair/transactions/transactions.component.ts index cde890b7..ace7c5e6 100644 --- a/src/app/eclair/transactions/transactions.component.ts +++ b/src/app/eclair/transactions/transactions.component.ts @@ -8,10 +8,11 @@ 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 { eclNodeSettings, allChannelsInfo } from '../store/ecl.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { 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'; +import { Node } from '../../shared/models/RTLconfig'; @Component({ selector: 'rtl-ecl-transactions', @@ -41,10 +42,10 @@ export class ECLTransactionsComponent implements OnInit, OnDestroy { } }); this.store.select(allChannelsInfo).pipe(takeUntil(this.unSubs[1]), - 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) { + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([allChannels, nodeSettings]: [{ activeChannels: Channel[], pendingChannels: Channel[], inactiveChannels: Channel[], lightningBalance: LightningBalance, channelsStatus: ChannelsStatus, apiCallStatus: ApiCallStatusPayload }, (Node | null)]) => { + this.currencyUnits = nodeSettings?.settings.currencyUnits || []; + if (nodeSettings && nodeSettings.settings.userPersona === UserPersonaEnum.OPERATOR) { this.balances = [{ title: 'Local Capacity', dataValue: allChannels.lightningBalance.localBalance, tooltip: 'Amount you can send' }, { title: 'Remote Capacity', dataValue: allChannels.lightningBalance.remoteBalance, tooltip: 'Amount you can receive' }]; } else { this.balances = [{ title: 'Outbound Capacity', dataValue: allChannels.lightningBalance.localBalance, tooltip: 'Amount you can send' }, { title: 'Inbound Capacity', dataValue: allChannels.lightningBalance.remoteBalance, tooltip: 'Amount you can receive' }]; 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 66be0f2e..bff98dd7 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 @@ -6,7 +6,7 @@
- Backup Folder Location: {{selNode.channelBackupPath}}. + Backup Folder Location: {{selNode.settings.channelBackupPath}}.
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 5c99c213..1c5a61c0 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 @@ -9,7 +9,9 @@ import { ChannelInformationComponent } from '../../peers-channels/channels/chann import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; + +import { Node } from '../../../shared/models/RTLconfig'; import { Channel, ChannelsSummary, LightningBalance } from '../../../shared/models/lndModels'; import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, LNDActions, RTLActions } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @@ -17,10 +19,10 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { fetchFile, openAlert } from '../../../store/rtl.actions'; import { backupChannels, verifyChannel } from '../../store/lnd.actions'; -import { channels, lndNodeSettings } from '../../store/lnd.selector'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { channels } from '../../store/lnd.selector'; @Component({ selector: 'rtl-channel-backup-table', @@ -40,7 +42,7 @@ export class ChannelBackupTableComponent implements OnInit, AfterViewInit, OnDes public faArchive = faArchive; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public displayedColumns = ['channel_point', 'actions']; public selectedChannel: Channel | null; public channelsData: Channel[] = []; @@ -58,7 +60,7 @@ export class ChannelBackupTableComponent implements OnInit, AfterViewInit, OnDes } ngOnInit() { - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(channels).pipe(takeUntil(this.unSubs[1])). subscribe((channelsSeletor: { channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }) => { this.errorMessage = ''; 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 067bffdb..0f0c9135 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 @@ -1,16 +1,16 @@
-

Restore folder location: {{selNode.channelBackupPath}}/restore

+

Restore folder location: {{selNode.settings.channelBackupPath}}/restore

-

Restore folder location: {{selNode.channelBackupPath}}/restore

+

Restore folder location: {{selNode.settings.channelBackupPath}}/restore

All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location.

-

Restore folder location: {{selNode.channelBackupPath}}/restore

+

Restore folder location: {{selNode.settings.channelBackupPath}}/restore

@@ -35,11 +35,11 @@ -
Actions
+
Actions
- +
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 15e7ef3d..1b82c413 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 @@ -6,7 +6,7 @@ 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 { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { Channel } from '../../../shared/models/lndModels'; import { PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum } from '../../../shared/services/consts-enums-functions'; import { LoggerService } from '../../../shared/services/logger.service'; @@ -14,8 +14,8 @@ import { CommonService } from '../../../shared/services/common.service'; import { LNDEffects } from '../../store/lnd.effects'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { restoreChannels, restoreChannelsList } from '../../store/lnd.actions'; -import { lndNodeSettings } from '../../store/lnd.selector'; @Component({ selector: 'rtl-channel-restore-table', @@ -31,7 +31,7 @@ export class ChannelRestoreTableComponent implements OnInit, AfterViewInit, OnDe @ViewChild(MatPaginator, { static: false }) paginator: MatPaginator | undefined; public pageSize = PAGE_SIZE; public pageSizeOptions = PAGE_SIZE_OPTIONS; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public displayedColumns = ['channel_point', 'actions']; public selChannel: Channel; public channelsData = []; @@ -49,7 +49,7 @@ export class ChannelRestoreTableComponent implements OnInit, AfterViewInit, OnDe ngOnInit() { this.store.dispatch(restoreChannelsList()); - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.lndEffects.setRestoreChannelList.pipe(takeUntil(this.unSubs[1])). subscribe((resRCList) => { this.allRestoreExists = resRCList.all_restore_exists; diff --git a/src/app/lnd/graph/lookups/lookups.component.html b/src/app/lnd/graph/lookups/lookups.component.html index 6f5a1bd5..bec15788 100644 --- a/src/app/lnd/graph/lookups/lookups.component.html +++ b/src/app/lnd/graph/lookups/lookups.component.html @@ -32,7 +32,7 @@ fxFlex="100"

Error! Unable to find details!

-
+
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 2efc739e..f1ab35ae 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 @@ -60,7 +60,7 @@ - + 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 b1a2c809..4acee8a3 100644 --- a/src/app/lnd/graph/query-routes/query-routes.component.html +++ b/src/app/lnd/graph/query-routes/query-routes.component.html @@ -80,10 +80,10 @@ -
Actions
+
Actions
- +
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 d4cef23c..cb4c1b6d 100644 --- a/src/app/lnd/graph/query-routes/query-routes.component.ts +++ b/src/app/lnd/graph/query-routes/query-routes.component.ts @@ -18,6 +18,7 @@ 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'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-query-routes', @@ -88,7 +89,7 @@ export class QueryRoutesComponent implements OnInit, OnDestroy { } onHopClick(selHop: Hop, event: any) { - const reorderedHop = [ + const reorderedHop: MessageDataField[][] = [ [{ key: 'hop_sequence', value: selHop.hop_sequence, title: 'Sequence', width: 33, type: DataTypeEnum.NUMBER }, { key: 'amt_to_forward', value: selHop.amt_to_forward, title: 'Amount To Forward (Sats)', width: 33, type: DataTypeEnum.NUMBER }, { key: 'fee_msat', value: selHop.fee_msat, title: 'Fee (mSats)', width: 34, type: DataTypeEnum.NUMBER }], diff --git a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts index f3c826af..e82c6e62 100644 --- a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts +++ b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts @@ -12,8 +12,8 @@ import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; -import { lndNodeSettings } from '../../store/lnd.selector'; +import { rootSelectedNode } from '../../../store/rtl.selector'; +import { Node } from '../../../shared/models/RTLconfig'; @Component({ selector: 'rtl-channel-liquidity-info', @@ -36,8 +36,8 @@ export class ChannelLiquidityInfoComponent implements OnInit, OnDestroy { ngOnInit() { this.screenSize = this.commonService.getScreenSize(); - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { - this.showLoop = !!((nodeSettings?.swapServerUrl && nodeSettings.swapServerUrl.trim() !== '')); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { + this.showLoop = !!((nodeSettings?.settings.swapServerUrl && nodeSettings.settings.swapServerUrl.trim() !== '')); }); } diff --git a/src/app/lnd/home/fee-info/fee-info.component.html b/src/app/lnd/home/fee-info/fee-info.component.html index 12aafb26..9dbc9351 100644 --- a/src/app/lnd/home/fee-info/fee-info.component.html +++ b/src/app/lnd/home/fee-info/fee-info.component.html @@ -15,7 +15,7 @@

-
+
diff --git a/src/app/lnd/home/home.component.html b/src/app/lnd/home/home.component.html index d1d5fae0..4dd5225a 100644 --- a/src/app/lnd/home/home.component.html +++ b/src/app/lnd/home/home.component.html @@ -1,4 +1,4 @@ -
+
{{apiCallStatusNodeInfo.status === apiCallStatusEnum.COMPLETED ? 'Welcome ' + information.alias + '! Your node is up and running.' : apiCallStatusNodeInfo.status === apiCallStatusEnum.INITIATED ? 'Wait! Getting your node information...' : 'Error! Please check the server connection.'}} diff --git a/src/app/lnd/home/home.component.ts b/src/app/lnd/home/home.component.ts index 5fd55336..66523881 100644 --- a/src/app/lnd/home/home.component.ts +++ b/src/app/lnd/home/home.component.ts @@ -1,7 +1,7 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; import { Router } from '@angular/router'; import { Subject } from 'rxjs'; -import { takeUntil, filter } from 'rxjs/operators'; +import { takeUntil, filter, withLatestFrom } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { faSmile, faFrown } from '@fortawesome/free-regular-svg-icons'; @@ -12,10 +12,11 @@ import { CommonService } from '../../shared/services/common.service'; import { UserPersonaEnum, ScreenSizeEnum, APICallStatusEnum, LNDActions } from '../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { ChannelsStatus, GetInfo, Fees, Channel, BlockchainBalance, PendingChannels, PendingChannelsSummary, ChannelsSummary, LightningBalance } from '../../shared/models/lndModels'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; -import { blockchainBalance, channels, fees, nodeInfoAndNodeSettingsAndAPIStatus, pendingChannels } from '../store/lnd.selector'; +import { rootSelectedNode } from 'src/app/store/rtl.selector'; +import { blockchainBalance, channels, fees, nodeInfoAndAPIStatus, pendingChannels } from '../store/lnd.selector'; export interface Tile { id: string; @@ -47,7 +48,7 @@ export class HomeComponent implements OnInit, OnDestroy { public activeChannels = 0; public inactiveChannels = 0; public channelBalances = { localBalance: 0, remoteBalance: 0, balancedness: 0 }; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public fees: Fees; public information: GetInfo = {}; public balances = { onchain: -1, lightning: -1, total: 0 }; @@ -144,15 +145,16 @@ export class HomeComponent implements OnInit, OnDestroy { } ngOnInit() { - this.store.select(nodeInfoAndNodeSettingsAndAPIStatus).pipe(takeUntil(this.unSubs[0])). - subscribe((infoSettingsStatusSelector: { information: GetInfo, nodeSettings: SelNodeChild | null, apiCallStatus: ApiCallStatusPayload }) => { + this.store.select(nodeInfoAndAPIStatus).pipe(takeUntil(this.unSubs[0]), + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([infoStatusSelector, nodeSettings]: [{ information: GetInfo | null, apiCallStatus: ApiCallStatusPayload }, nodeSettings: Node]) => { this.errorMessages[0] = ''; - this.apiCallStatusNodeInfo = infoSettingsStatusSelector.apiCallStatus; + this.apiCallStatusNodeInfo = infoStatusSelector.apiCallStatus; if (this.apiCallStatusNodeInfo.status === APICallStatusEnum.ERROR) { this.errorMessages[0] = (typeof (this.apiCallStatusNodeInfo.message) === 'object') ? JSON.stringify(this.apiCallStatusNodeInfo.message) : this.apiCallStatusNodeInfo.message ? this.apiCallStatusNodeInfo.message : ''; } - this.selNode = infoSettingsStatusSelector.nodeSettings; - this.information = infoSettingsStatusSelector.information; + this.selNode = nodeSettings; + this.information = infoStatusSelector.information; }); this.store.select(fees).pipe(takeUntil(this.unSubs[1])). subscribe((feesSelector: { fees: Fees, apiCallStatus: ApiCallStatusPayload }) => { diff --git a/src/app/lnd/network-info/network-info.component.html b/src/app/lnd/network-info/network-info.component.html index 0bd11205..f9460fd6 100644 --- a/src/app/lnd/network-info/network-info.component.html +++ b/src/app/lnd/network-info/network-info.component.html @@ -1,5 +1,5 @@
- +
@@ -26,7 +26,7 @@
-
+
diff --git a/src/app/lnd/network-info/network-info.component.ts b/src/app/lnd/network-info/network-info.component.ts index fe42dcb5..4b54cb98 100644 --- a/src/app/lnd/network-info/network-info.component.ts +++ b/src/app/lnd/network-info/network-info.component.ts @@ -1,18 +1,19 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; -import { takeUntil } from 'rxjs/operators'; +import { takeUntil, withLatestFrom } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faProjectDiagram, faBolt, faServer, faNetworkWired } from '@fortawesome/free-solid-svg-icons'; import { LoggerService } from '../../shared/services/logger.service'; import { GetInfo, NetworkInfo, Fees, ChannelsStatus, PendingChannels, PendingChannelsSummary, Channel, ChannelsSummary, LightningBalance } from '../../shared/models/lndModels'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { CommonService } from '../../shared/services/common.service'; import { APICallStatusEnum, ScreenSizeEnum, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; -import { ApiCallsListLND, ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; +import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { RTLState } from '../../store/rtl.state'; -import { channels, fees, networkInfo, nodeInfoAndNodeSettingsAndAPIStatus, pendingChannels } from '../store/lnd.selector'; +import { rootSelectedNode } from 'src/app/store/rtl.selector'; +import { channels, fees, networkInfo, pendingChannels, nodeInfoAndAPIStatus } from '../store/lnd.selector'; @Component({ selector: 'rtl-network-info', @@ -25,7 +26,7 @@ export class NetworkInfoComponent implements OnInit, OnDestroy { public faBolt = faBolt; public faServer = faServer; public faNetworkWired = faNetworkWired; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public information: GetInfo = {}; public fees: Fees; public channelsStatus: ChannelsStatus = {}; @@ -72,15 +73,16 @@ export class NetworkInfoComponent implements OnInit, OnDestroy { } ngOnInit() { - this.store.select(nodeInfoAndNodeSettingsAndAPIStatus).pipe(takeUntil(this.unSubs[0])). - subscribe((infoSettingsStatusSelector: { information: GetInfo, nodeSettings: SelNodeChild | null, apiCallStatus: ApiCallStatusPayload }) => { + this.store.select(nodeInfoAndAPIStatus).pipe(takeUntil(this.unSubs[0]), + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([infoStatusSelector, nodeSettings]: [{ information: GetInfo | null, apiCallStatus: ApiCallStatusPayload }, nodeSettings: Node]) => { this.errorMessages[0] = ''; - this.apiCallStatusNodeInfo = infoSettingsStatusSelector.apiCallStatus; + this.apiCallStatusNodeInfo = infoStatusSelector.apiCallStatus; if (this.apiCallStatusNodeInfo.status === APICallStatusEnum.ERROR) { this.errorMessages[0] = (typeof (this.apiCallStatusNodeInfo.message) === 'object') ? JSON.stringify(this.apiCallStatusNodeInfo.message) : this.apiCallStatusNodeInfo.message ? this.apiCallStatusNodeInfo.message : ''; } - this.selNode = infoSettingsStatusSelector.nodeSettings; - this.information = infoSettingsStatusSelector.information; + this.selNode = nodeSettings; + this.information = infoStatusSelector.information; }); this.store.select(networkInfo).pipe(takeUntil(this.unSubs[1])). subscribe((networkInfoSelector: { networkInfo: NetworkInfo, apiCallStatus: ApiCallStatusPayload }) => { diff --git a/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.html b/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.html index cff28121..d4b3a8d2 100644 --- a/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.html +++ b/src/app/lnd/on-chain/on-chain-label-modal/on-chain-label-modal.component.html @@ -8,6 +8,10 @@
+
+ + Bump fee option will be disabled for unconfirmed UTXOs where label text includes "sweep" in its value. +
UTXO Label 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 5e1a8300..a5365c67 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 @@ -24,7 +24,7 @@ {{amountUnit}} -
+
@@ -60,7 +60,7 @@
- + {{passwordFormLabel}}
@@ -126,7 +126,7 @@ -
+
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 b8679b36..6199bd1a 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 @@ -11,7 +11,7 @@ import { MatStepper } from '@angular/material/stepper'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { OnChainSendFunds } from '../../../shared/models/alertData'; -import { SelNodeChild, RTLConfiguration } from '../../../shared/models/RTLconfig'; +import { Node, RTLConfiguration } from '../../../shared/models/RTLconfig'; import { GetInfo, AddressType, BlockchainBalance } from '../../../shared/models/lndModels'; import { CURRENCY_UNITS, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, APICallStatusEnum, LNDActions } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; @@ -36,7 +36,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; public sweepAll = false; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public appConfig: RTLConfiguration; public addressTypes = []; public selectedAddress: AddressType = {}; diff --git a/src/app/lnd/on-chain/on-chain.component.ts b/src/app/lnd/on-chain/on-chain.component.ts index ab591d38..c1c07464 100644 --- a/src/app/lnd/on-chain/on-chain.component.ts +++ b/src/app/lnd/on-chain/on-chain.component.ts @@ -5,9 +5,10 @@ import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faExchangeAlt, faChartPie } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { RTLState } from '../../store/rtl.state'; -import { blockchainBalance, lndNodeSettings } from '../store/lnd.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { blockchainBalance } from '../store/lnd.selector'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { BlockchainBalance } from '../../shared/models/lndModels'; @@ -18,7 +19,7 @@ import { BlockchainBalance } from '../../shared/models/lndModels'; }) export class OnChainComponent implements OnInit, OnDestroy { - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public faExchangeAlt = faExchangeAlt; public faChartPie = faChartPie; public balances = [{ title: 'Total Balance', dataValue: 0 }, { title: 'Confirmed', dataValue: 0 }, { title: 'Unconfirmed', dataValue: 0 }]; @@ -42,8 +43,8 @@ export class OnChainComponent implements OnInit, OnDestroy { this.selectedTable = this.tables.find((table) => table.name === (value).urlAfterRedirects.substring((value).urlAfterRedirects.lastIndexOf('/') + 1)) || this.tables[0]; } }); - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[1])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(blockchainBalance).pipe(takeUntil(this.unSubs[2])). 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 1628e4b5..070f00f5 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 @@ -8,18 +8,19 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; + import { Transaction } from '../../../../shared/models/lndModels'; 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 { lndPageSettings, transactions } from '../../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../shared/models/alertData'; @Component({ selector: 'rtl-on-chain-transaction-history', @@ -98,9 +99,9 @@ export class OnChainTransactionHistoryComponent implements OnInit, OnChanges, On } onTransactionClick(selTransaction: Transaction) { - const reorderedTransactions = [ - [{ key: 'block_hash', value: selTransaction.block_hash, title: 'Block Hash', width: 100 }], - [{ key: 'tx_hash', value: selTransaction.tx_hash, title: 'Transaction Hash', width: 100 }], + const reorderedTransactions: MessageDataField[][] = [ + [{ key: 'block_hash', value: selTransaction.block_hash, title: 'Block Hash', width: 100, explorerLink: 'block' }], + [{ key: 'tx_hash', value: selTransaction.tx_hash, title: 'Transaction Hash', width: 100, explorerLink: 'tx' }], [{ key: 'label', value: selTransaction.label, title: 'Label', width: 100, type: DataTypeEnum.STRING }], [{ key: 'time_stamp', value: selTransaction.time_stamp, title: 'Date/Time', width: 50, type: DataTypeEnum.DATE_TIME }, { key: 'block_height', value: selTransaction.block_height, title: 'Block Height', width: 50, type: DataTypeEnum.NUMBER }], 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 850e9fcc..6e426681 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 @@ -89,6 +89,7 @@ View Info Label Lease + Bump Fee
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 3f0afec8..74c5e3a5 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 @@ -9,6 +9,7 @@ import { MatPaginator, MatPaginatorIntl } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; import { MatSnackBar } from '@angular/material/snack-bar'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; import { UTXO } from '../../../../shared/models/lndModels'; 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'; @@ -24,7 +25,8 @@ import { openAlert, openConfirmation } from '../../../../store/rtl.actions'; import { lndPageSettings, utxos } from '../../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../shared/models/alertData'; +import { BumpFeeComponent } from '../../../peers-channels/channels/bump-fee-modal/bump-fee.component'; @Component({ selector: 'rtl-on-chain-utxos', @@ -158,8 +160,8 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { } onUTXOClick(selUTXO: UTXO) { - const reorderedUTXOs = [ - [{ key: 'txid', value: selUTXO.outpoint?.txid_str, title: 'Transaction ID', width: 100, type: DataTypeEnum.STRING }], + const reorderedUTXOs: MessageDataField[][] = [ + [{ key: 'txid', value: selUTXO.outpoint?.txid_str, title: 'Transaction ID', width: 100, type: DataTypeEnum.STRING, explorerLink: 'tx' }], [{ key: 'label', value: selUTXO.label, title: 'Label', width: 100, type: DataTypeEnum.STRING }], [{ key: 'output_index', value: selUTXO.outpoint?.output_index, title: 'Output Index', width: 34, type: DataTypeEnum.NUMBER }, { key: 'amount_sat', value: selUTXO.amount_sat, title: 'Amount (Sats)', width: 33, type: DataTypeEnum.NUMBER }, @@ -248,6 +250,17 @@ export class OnChainUTXOsComponent implements OnInit, OnChanges, OnDestroy { }); } + onBumpFee(selUTXO: UTXO) { + this.store.dispatch(openAlert({ + payload: { + data: { + selUTXO: selUTXO, + component: BumpFeeComponent + } + } + })); + } + onDownloadCSV() { if (this.listUTXOs.data && this.listUTXOs.data.length > 0) { this.commonService.downloadFile(this.listUTXOs.data, 'UTXOs'); diff --git a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html index 12345e30..9ce1c6ec 100644 --- a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html +++ b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html @@ -5,31 +5,34 @@ Bump Fee
- +
-

Bump fee for channel point: {{bumpFeeChannel?.channel?.channel_point}} - +

+ {{txid ? 'Bump fee for transaction ID: ' + txid : 'Bump fee: '}} +

- Bumping fee on pending open channels is an advanced feature, attempt it only if you are familiar with the functionality of Bitcoin transactions. -
Before attempting fee bump ensure the following:
-
1: Use a Bitcoin block explorer to ensure that channel opening transaction is not confirmed.
-
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.
-
3: Find the index value of the change output via a block explorer.
-
4: Enter the index value of the change output in the form below and the desired fee rate.
-
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.
+ +
Fee rates recommended by mempool (sat/vByte):
+
- High: {{recommendedFee.fastestFee || 'Unknown'}}
+
- Medium: {{recommendedFee.halfHourFee || 'Unknown'}}
+
- Low: {{recommendedFee.hourFee || 'Unknown'}}
-
+
+ + Change output balance {{dustOutputValue | number}} (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates. +
+
Index for Change Output - - Index for change output is required. - Invalid index value. + + Index for change output is required. + Invalid index value. @@ -38,16 +41,15 @@ - + Number of Blocks Number of blocks is required. - + Fees (Sats/vByte) - + Fees is required.
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 bfa1b690..ae000619 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 @@ -1,13 +1,16 @@ -import { Component, OnInit, OnDestroy, ViewChild, Inject } from '@angular/core'; +import { Component, OnInit, OnDestroy, Inject, ViewChild } from '@angular/core'; import { NgModel } from '@angular/forms'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; -import { MatSnackBar } from '@angular/material/snack-bar'; +import { Store } from '@ngrx/store'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; -import { faCopy, faInfoCircle, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faCopy, faInfoCircle, faExclamationTriangle, faUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'; -import { PendingOpenChannel } from '../../../../shared/models/lndModels'; -import { PendingOpenChannelInformation } from '../../../../shared/models/alertData'; +import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { Node } from '../../../../shared/models/RTLconfig'; +import { RecommendedFeeRates, BlockExplorerTransaction } from '../../../../shared/models/rtlModels'; +import { BumpFeeInformation } from '../../../../shared/models/alertData'; import { TRANS_TYPES } from '../../../../shared/services/consts-enums-functions'; import { DataService } from '../../../../shared/services/data.service'; import { LoggerService } from '../../../../shared/services/logger.service'; @@ -20,44 +23,77 @@ import { LoggerService } from '../../../../shared/services/logger.service'; export class BumpFeeComponent implements OnInit, OnDestroy { private outputIdx: NgModel; - @ViewChild('outputIdx') set payReq(outIdx: NgModel) { + @ViewChild('outputIdx') set outputIndx(outIdx: NgModel) { if (outIdx) { this.outputIdx = outIdx; } } - public bumpFeeChannel: PendingOpenChannel; + public faUpRightFromSquare = faUpRightFromSquare; + public txid: string = ''; + public outputIndex: number | null = null; public transTypes = [...TRANS_TYPES]; public selTransType = '2'; public blocks: number | null = null; public fees: number | null = null; - public outputIndex: number | null = null; public faCopy = faCopy; public faInfoCircle = faInfoCircle; public faExclamationTriangle = faExclamationTriangle; public bumpFeeError = ''; - private unSubs: Array> = [new Subject(), new Subject()]; + public flgShowDustWarning = false; + public dustOutputValue = 0; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; + public selNode: Node; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: PendingOpenChannelInformation, private logger: LoggerService, private dataService: DataService, private snackBar: MatSnackBar) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: BumpFeeInformation, private logger: LoggerService, private dataService: DataService, private store: Store) { } ngOnInit() { this.transTypes = this.transTypes.splice(1); - this.bumpFeeChannel = this.data.pendingChannel; - 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; + if (this.data.pendingChannel && this.data.pendingChannel.channel) { + const channelPointArr = this.data.pendingChannel.channel?.channel_point?.split(':') || []; + this.txid = channelPointArr[0] || (this.data.pendingChannel.channel && this.data.pendingChannel.channel.channel_point ? this.data.pendingChannel.channel.channel_point : ''); + this.outputIndex = channelPointArr[1] && channelPointArr[1] !== '' && +channelPointArr[1] === 0 ? 1 : 0; + } else if (this.data.selUTXO && this.data.selUTXO.outpoint) { + this.txid = this.data.selUTXO.outpoint.txid_str || ''; + this.outputIndex = this.data.selUTXO.outpoint.output_index || 0; } + this.logger.info(this.txid, this.outputIndex); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((selNode) => { + this.selNode = selNode; + this.logger.info(this.selNode); + }); + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[1])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + this.dataService.getBlockExplorerTransaction(this.txid). + pipe(takeUntil(this.unSubs[2])).subscribe({ + next: (txRes: BlockExplorerTransaction) => { + this.dustOutputValue = txRes.vout[this.outputIndex].value; + this.flgShowDustWarning = this.dustOutputValue < 1000; + }, error: (err) => { + this.logger.error(err); + } + }); } onBumpFee(): boolean | void { - if (this.outputIndex === this.bumpFeeChannel.channel?.output_index) { - this.outputIdx.control.setErrors({ pendingChannelOutputIndex: true }); - return true; + if (this.data.pendingChannel && this.data.pendingChannel.channel) { + const channelPointArr = this.data.pendingChannel.channel?.channel_point?.split(':') || []; + const chanIdx = channelPointArr.length > 1 && channelPointArr[1] && channelPointArr[1] !== '' ? +channelPointArr[1] : null; + if (chanIdx && this.outputIndex === chanIdx) { + this.outputIdx.control.setErrors({ pendingChannelOutputIndex: true }); + return true; + } } if ((!this.outputIndex && this.outputIndex !== 0) || (this.selTransType === '1' && (!this.blocks || this.blocks === 0)) || (this.selTransType === '2' && (!this.fees || this.fees === 0))) { return true; } - 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(takeUntil(this.unSubs[0])). + this.dataService.bumpFee(this.txid, this.outputIndex, (this.blocks || null), (this.fees || null)).pipe(takeUntil(this.unSubs[3])). subscribe({ next: (res) => { this.dialogRef.close(false); @@ -68,8 +104,8 @@ export class BumpFeeComponent implements OnInit, OnDestroy { }); } - onCopyID(payload: string) { - this.snackBar.open('Transaction ID copied.'); + onExplorerClicked() { + window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.txid, '_blank'); } resetData() { diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html index 3d1ebfac..4808f71f 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -12,9 +12,9 @@

Channel ID

- + {{channel.chan_id}} - +

Peer Alias

@@ -25,14 +25,19 @@

Channel Point

- {{channel.channel_point}} + + {{channel.channel_point}} + +

Peer Public Key

- {{channel.remote_pubkey}} + + {{channel.remote_pubkey}} +
diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts index 4bc47c1a..340bed85 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.spec.ts @@ -22,7 +22,7 @@ describe('ChannelInformationComponent', () => { { provide: LoggerService, useClass: mockLoggerService }, { provide: DataService, useClass: mockDataService }, { provide: MatDialogRef, useClass: mockMatDialogRef }, - { provide: MAT_DIALOG_DATA, useValue: { channel: {} } } + { provide: MAT_DIALOG_DATA, useValue: { channel: {}, selNode: { settings: {} } } } ] }). compileComponents(); diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts index 7e981352..359bf338 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -1,12 +1,13 @@ import { Component, OnInit, Inject } from '@angular/core'; import { Router } from '@angular/router'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; -import { faReceipt } from '@fortawesome/free-solid-svg-icons'; +import { faReceipt, faUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'; import { MatSnackBar } from '@angular/material/snack-bar'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; import { ChannelInformation } from '../../../../shared/models/alertData'; +import { Node } from '../../../../shared/models/RTLconfig'; import { Channel } from '../../../../shared/models/lndModels'; import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; @@ -18,10 +19,12 @@ import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functio export class ChannelInformationComponent implements OnInit { public faReceipt = faReceipt; + public faUpRightFromSquare = faUpRightFromSquare; public showAdvanced = false; public showCopy = true; public showCopyField = null; public channel: Channel; + public selNode: Node; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; @@ -30,6 +33,7 @@ export class ChannelInformationComponent implements OnInit { ngOnInit() { this.channel = this.data.channel; this.showCopy = !!this.data.showCopy; + this.selNode = this.data.selNode; this.screenSize = this.commonService.getScreenSize(); } @@ -46,8 +50,12 @@ export class ChannelInformationComponent implements OnInit { this.logger.info('Copied Text: ' + payload); } - onGoToLink() { - this.router.navigateByUrl('/lnd/graph/lookups', { state: { lookupType: '1', lookupValue: this.channel.chan_id } }); // 1 = Channel + onExplorerClicked() { + window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.channel.channel_point, '_blank'); + } + + onGoToLink(lookupType: string, lookupValue: string) { + this.router.navigateByUrl('/lnd/graph/lookups', { state: { lookupType: lookupType, lookupValue: lookupValue } }); this.onClose(); } 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 59611532..e586084e 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 @@ -26,7 +26,7 @@ {{inputFormLabel}} -
+
Amount @@ -70,7 +70,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. -
+
@@ -107,7 +107,7 @@ -
+
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 c02c6523..17c1dbf3 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 @@ -5,6 +5,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ChannelInformationComponent } from '../../channel-information-modal/channel-information.component'; import { Channel, ChannelHTLC, ChannelsSummary, LightningBalance } from '../../../../../shared/models/lndModels'; @@ -18,7 +19,7 @@ import { RTLState } from '../../../../../store/rtl.state'; import { channels, lndPageSettings } from '../../../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-channel-active-htlcs-table', @@ -97,7 +98,7 @@ export class ChannelActiveHTLCsTableComponent implements OnInit, AfterViewInit, } onHTLCClick(selHtlc: ChannelHTLC, selChannel: Channel) { - const reorderedHTLC = [ + const reorderedHTLC: MessageDataField[][] = [ [{ key: 'remote_alias', value: selChannel.remote_alias, title: 'Alias', width: 100, type: DataTypeEnum.STRING }], [{ key: 'amount', value: selHtlc.amount, title: 'Amount (Sats)', width: 50, type: DataTypeEnum.NUMBER }, { key: 'incoming', value: (selHtlc.incoming ? 'Yes' : 'No'), title: 'Incoming', width: 50, type: DataTypeEnum.STRING }], 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 ebbd4619..0748fcc8 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 @@ -113,7 +113,7 @@ - + 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 49f45fe9..90adc7a4 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 @@ -7,6 +7,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ClosedChannel } from '../../../../../shared/models/lndModels'; 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'; @@ -18,7 +19,7 @@ import { RTLState } from '../../../../../store/rtl.state'; import { closedChannels, lndPageSettings } from '../../../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-channel-closed-table', @@ -132,7 +133,7 @@ export class ChannelClosedTableComponent implements OnInit, AfterViewInit, OnDes } onClosedChannelClick(selChannel: ClosedChannel, event: any) { - const reorderedChannel = [ + const reorderedChannel: MessageDataField[][] = [ [{ key: 'close_type', value: this.channelClosureType[selChannel.close_type].name, title: 'Close Type', width: 30, type: DataTypeEnum.STRING }, { key: 'settled_balance', value: selChannel.settled_balance, title: 'Settled Balance', width: 30, type: DataTypeEnum.NUMBER }, { key: 'time_locked_balance', value: selChannel.time_locked_balance, title: 'Time Locked Balance', width: 40, type: DataTypeEnum.NUMBER }], 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 c96fea15..e7a0b282 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 @@ -145,7 +145,7 @@ Download CSV
- +
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 058ae149..30803b22 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 @@ -7,9 +7,10 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ChannelInformationComponent } from '../../channel-information-modal/channel-information.component'; -import { SelNodeChild } from '../../../../../shared/models/RTLconfig'; +import { Node } 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, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS } from '../../../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../../../shared/models/apiCallsPayload'; @@ -23,12 +24,13 @@ import { LoopModalComponent } from '../../../../../shared/components/ln-services import { LNDEffects } from '../../../../store/lnd.effects'; import { RTLEffects } from '../../../../../store/rtl.effects'; import { RTLState } from '../../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../../store/rtl.selector'; import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { channelLookup, fetchChannels, updateChannel } from '../../../../store/lnd.actions'; -import { blockchainBalance, channels, lndNodeInformation, lndNodeSettings, lndPageSettings, peers } from '../../../../store/lnd.selector'; +import { blockchainBalance, channels, lndNodeInformation, lndPageSettings, peers } from '../../../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-channel-open-table', @@ -50,7 +52,7 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr 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 selNode: Node | null; public totalBalance = 0; public displayedColumns: any[] = []; public channelsData: Channel[] = []; @@ -89,7 +91,7 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr this.selFilterBy = window.history.state.filterColumn || 'all'; this.selFilter = window.history.state.filterValue || ''; } - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])). + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). subscribe((nodeSettings) => { this.selNode = nodeSettings; }); @@ -155,7 +157,7 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr if (!resLookup.fee_base_msat && !resLookup.fee_rate_milli_msat && !resLookup.time_lock_delta) { return false; } - const reorderedChannelPolicy = [ + const reorderedChannelPolicy: MessageDataField[][] = [ [{ key: 'fee_base_msat', value: resLookup.fee_base_msat, title: 'Base Fees (mSats)', width: 25, type: DataTypeEnum.NUMBER }, { key: 'fee_rate_milli_msat', value: resLookup.fee_rate_milli_msat, title: 'Fee Rate (milli mSats)', width: 25, type: DataTypeEnum.NUMBER }, { key: 'fee_rate_milli_msat', value: resLookup.fee_rate_milli_msat / 10000, title: 'Fee Rate (%)', width: 25, type: DataTypeEnum.NUMBER, digitsInfo: '1.0-8' }, @@ -303,6 +305,7 @@ export class ChannelOpenTableComponent implements OnInit, AfterViewInit, OnDestr payload: { data: { channel: selChannel, + selNode: this.selNode, showCopy: true, component: ChannelInformationComponent } 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 0e61b76b..efa750ee 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 @@ -176,7 +176,7 @@
Actions
- + @@ -256,7 +256,7 @@
Actions
- +
@@ -336,11 +336,11 @@ {{channel.channel.remote_balance | number}} - fxLayoutAlign="end center" -
Actions
+ +
Actions
- +
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 4204f79c..339b4a44 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,20 +5,23 @@ import { Store } from '@ngrx/store'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MatPaginatorIntl } from '@angular/material/paginator'; + import { Channel, GetInfo, PendingChannels, PendingClosingChannel, PendingForceClosingChannel, PendingOpenChannel, WaitingCloseChannel } from '../../../../../shared/models/lndModels'; import { AlertTypeEnum, APICallStatusEnum, DataTypeEnum, getPaginatorLabel, 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 { Node } from '../../../../../shared/models/RTLconfig'; import { LoggerService } from '../../../../../shared/services/logger.service'; import { CommonService } from '../../../../../shared/services/common.service'; import { BumpFeeComponent } from '../../bump-fee-modal/bump-fee.component'; import { openAlert } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { lndNodeInformation, lndNodeSettings, lndPageSettings, pendingChannels } from '../../../../store/lnd.selector'; +import { rootSelectedNode } from '../../../../../store/rtl.selector'; +import { lndNodeInformation, lndPageSettings, pendingChannels } from '../../../../store/lnd.selector'; import { PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; -import { MatPaginatorIntl } from '@angular/material/paginator'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-channel-pending-table', @@ -37,7 +40,7 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe 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 selNode: Node | null; public information: GetInfo = {}; public pendingChannels: PendingChannels = {}; public displayedOpenColumns: any[] = []; @@ -64,7 +67,7 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe } ngOnInit() { - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[2])). subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { @@ -153,8 +156,8 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['remote_alias', 'channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2)); const preOrderedChannel: any = {}; Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2); - const reorderedChannel = [ - [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING }], + const reorderedChannel: MessageDataField[][] = [ + [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING, explorerLink: 'tx' }], [{ key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 100, type: DataTypeEnum.STRING }], [{ key: 'remote_alias', value: preOrderedChannel.remote_alias, title: 'Peer Alias', width: 100, type: DataTypeEnum.STRING }], [{ key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 25, type: DataTypeEnum.NUMBER }, @@ -192,9 +195,9 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['remote_alias', 'channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2)); const preOrderedChannel: any = {}; Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2); - const reorderedChannel = [ + const reorderedChannel: MessageDataField[][] = [ [{ key: 'closing_txid', value: preOrderedChannel.closing_txid, title: 'Closing Transaction ID', width: 100, type: DataTypeEnum.STRING }], - [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING }], + [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING, explorerLink: 'tx' }], [{ key: 'remote_alias', value: preOrderedChannel.remote_alias, title: 'Peer Alias', width: 25, type: DataTypeEnum.STRING }, { key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 75, type: DataTypeEnum.STRING }], [{ key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 25, type: DataTypeEnum.NUMBER }, @@ -221,9 +224,9 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe const fcChannelObj2 = JSON.parse(JSON.stringify(selChannel.channel, ['remote_alias', 'channel_point', 'remote_balance', 'local_balance', 'remote_node_pub', 'capacity'], 2)); const preOrderedChannel: any = {}; Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2); - const reorderedChannel = [ + const reorderedChannel: MessageDataField[][] = [ [{ key: 'closing_txid', value: preOrderedChannel.closing_txid, title: 'Closing Transaction ID', width: 50, type: DataTypeEnum.STRING }], - [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING }], + [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING, explorerLink: 'tx' }], [{ key: 'remote_alias', value: preOrderedChannel.remote_alias, title: 'Peer Alias', width: 25, type: DataTypeEnum.STRING }, { key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 75, type: DataTypeEnum.STRING }], [{ key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 25, type: DataTypeEnum.NUMBER }, @@ -247,9 +250,9 @@ export class ChannelPendingTableComponent implements OnInit, AfterViewInit, OnDe const fcChannelObj3 = JSON.parse(JSON.stringify(selChannel.commitments, ['local_txid'], 2)); const preOrderedChannel: any = {}; Object.assign(preOrderedChannel, fcChannelObj1, fcChannelObj2, fcChannelObj3); - const reorderedChannel = [ + const reorderedChannel: MessageDataField[][] = [ [{ key: 'local_txid', value: preOrderedChannel.local_txid, title: 'Transaction ID', width: 100, type: DataTypeEnum.STRING }], - [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING }], + [{ key: 'channel_point', value: preOrderedChannel.channel_point, title: 'Channel Point', width: 100, type: DataTypeEnum.STRING, explorerLink: 'tx' }], [{ key: 'remote_alias', value: preOrderedChannel.remote_alias, title: 'Peer Alias', width: 25, type: DataTypeEnum.STRING }, { key: 'remote_node_pub', value: preOrderedChannel.remote_node_pub, title: 'Peer Node Pubkey', width: 75, type: DataTypeEnum.STRING }], [{ key: 'capacity', value: preOrderedChannel.capacity, title: 'Capacity', width: 25, type: DataTypeEnum.NUMBER }, diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html index f2fe1d90..552010b1 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html @@ -5,7 +5,7 @@ {{channelToClose.active ? 'Close Channel' : 'Force Close Channel'}}
- +
@@ -22,9 +22,22 @@ Priority/Fee for force closing inactive channels cannot be modified.
-
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
+
- + {{transType.name}} @@ -47,7 +60,7 @@ Fees is required.
-
+
diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.spec.ts b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.spec.ts index 3c796613..fcc1d425 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.spec.ts +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.spec.ts @@ -9,10 +9,11 @@ import { ECLReducer } from '../../../../eclair/store/ecl.reducers'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CloseChannelComponent } from './close-channel.component'; -import { mockCLEffects, mockECLEffects, mockLNDEffects, mockMatDialogRef, mockRTLEffects } from '../../../../shared/test-helpers/mock-services'; +import { mockDataService, mockCLEffects, mockECLEffects, mockLNDEffects, mockMatDialogRef, mockRTLEffects } from '../../../../shared/test-helpers/mock-services'; import { EffectsModule } from '@ngrx/effects'; import { SharedModule } from '../../../../shared/shared.module'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { DataService } from '../../../../shared/services/data.service'; describe('CloseChannelComponent', () => { let component: CloseChannelComponent; @@ -30,7 +31,8 @@ describe('CloseChannelComponent', () => { providers: [ LoggerService, { provide: MatDialogRef, useClass: mockMatDialogRef }, - { provide: MAT_DIALOG_DATA, useValue: { channel: {} } } + { provide: MAT_DIALOG_DATA, useValue: { channel: {} } }, + { provide: DataService, useClass: mockDataService } ] }). compileComponents(); diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts index 96e55c6e..6d480b4b 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts @@ -13,6 +13,8 @@ import { APICallStatusEnum, LNDActions, TRANS_TYPES } from '../../../../shared/s import { RTLState } from '../../../../store/rtl.state'; import { closeChannel } from '../../../store/lnd.actions'; +import { RecommendedFeeRates } from '../../../../shared/models/rtlModels'; +import { DataService } from '../../../../shared/services/data.service'; @Component({ selector: 'rtl-close-channel', @@ -30,9 +32,16 @@ export class CloseChannelComponent implements OnInit, OnDestroy { public faInfoCircle = faInfoCircle; public flgPendingHtlcs = false; public errorMsg = 'Please wait for pending HTLCs to settle before attempting channel closure.'; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; private unSubs: Array> = [new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: ChannelInformation, private store: Store, private actions: Actions, private logger: LoggerService) { } + constructor( + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: ChannelInformation, + private dataService: DataService, + private store: Store, + private actions: Actions, + private logger: LoggerService) { } ngOnInit() { this.channelToClose = this.data.channel; @@ -73,6 +82,18 @@ export class CloseChannelComponent implements OnInit, OnDestroy { this.fees = null; } + onSelTransTypeChanged(event) { + if (event.value === '2') { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[1])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + } + } + onClose() { this.dialogRef.close(false); } diff --git a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html index ee5c3245..88f319b8 100644 --- a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -27,8 +27,8 @@ (Remaining: {{totalBalance - ((fundingAmount) ? fundingAmount : 0) | number}}) Sats - Amount is required. - Amount must be less than or equal to {{totalBalance}}. + Amount is required. + Amount must be less than or equal to {{totalBalance}}.
Private Channel @@ -41,9 +41,22 @@
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
- + {{transType.name}} @@ -51,11 +64,14 @@ {{selTransType==='0' ? 'Default' : selTransType==='1' ? 'Target Confirmation Blocks' : 'Fee (Sats/vByte)'}} - - {{selTransType === '1' ? 'Target Confirmation Blocks' : 'Fee'}} is required. + + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) + Target Confirmation Blocks is required. + Fee is required. + Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
-
+
Taproot Channel
@@ -64,7 +80,7 @@
- +
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 fe1dcb8c..ec0c9502 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 @@ -5,17 +5,20 @@ import { Subject, Observable } from 'rxjs'; import { takeUntil, filter, startWith, map } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { Peer, GetInfo } from '../../../../shared/models/lndModels'; import { OpenChannelAlert } from '../../../../shared/models/alertData'; import { APICallStatusEnum, LNDActions, TRANS_TYPES } from '../../../../shared/services/consts-enums-functions'; +import { RecommendedFeeRates } from '../../../../shared/models/rtlModels'; import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; import { saveNewChannel } from '../../../store/lnd.actions'; -import { SelNodeChild } from '../../../../shared/models/RTLconfig'; -import { lndNodeSettings } from '../../../store/lnd.selector'; -import { CommonService } from 'src/app/shared/services/common.service'; +import { Node } from '../../../../shared/models/RTLconfig'; +import { CommonService } from '../../../../shared/services/common.service'; +import { DataService } from '../../../../shared/services/data.service'; +import { LoggerService } from '../../../../shared/services/logger.service'; @Component({ selector: 'rtl-open-channel', @@ -26,9 +29,10 @@ export class OpenChannelComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public selectedPeer = new UntypedFormControl(); - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public amount = new UntypedFormControl(); public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public alertTitle: string; public peer: Peer | null; public peers: Peer[]; @@ -47,9 +51,12 @@ export class OpenChannelComponent implements OnInit, OnDestroy { public spendUnconfirmed = false; public transTypeValue = ''; public transTypes = TRANS_TYPES; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; 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, private commonService: CommonService) { } + constructor(private logger: LoggerService, public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: OpenChannelAlert, private store: Store, + private actions: Actions, private commonService: CommonService, private dataService: DataService) { } ngOnInit() { if (this.data.message) { @@ -66,10 +73,10 @@ export class OpenChannelComponent implements OnInit, OnDestroy { this.isTaprootAvailable = false; } this.alertTitle = this.data.alertTitle || 'Alert'; - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])). - subscribe((nodeSettings: SelNodeChild | null) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; - this.isPrivate = !!nodeSettings?.unannouncedChannels; + this.isPrivate = !!nodeSettings?.settings.unannouncedChannels; }); this.actions.pipe( takeUntil(this.unSubs[1]), @@ -127,7 +134,7 @@ export class OpenChannelComponent implements OnInit, OnDestroy { resetData() { this.selectedPeer.setValue(''); this.fundingAmount = null; - this.isPrivate = !!this.selNode?.unannouncedChannels; + this.isPrivate = !!this.selNode?.settings.unannouncedChannels; this.taprootChannel = false; this.spendUnconfirmed = false; this.selTransType = '0'; @@ -138,7 +145,12 @@ export class OpenChannelComponent implements OnInit, OnDestroy { } onOpenChannel(): boolean | void { - if ((!this.peer && !this.selectedPubkey) || (!this.fundingAmount || ((this.totalBalance - this.fundingAmount) < 0) || ((this.selTransType === '1' || this.selTransType === '2') && !this.transTypeValue))) { + if ( + (!this.peer && !this.selectedPubkey) || + (!this.fundingAmount || + ((this.totalBalance - this.fundingAmount) < 0) || ((this.selTransType === '1' || this.selTransType === '2') && !this.transTypeValue)) || + (this.selTransType === '2' && this.recommendedFee.minimumFee > +this.transTypeValue) + ) { return true; } // Taproot channel's commitment type is 5 @@ -160,6 +172,19 @@ export class OpenChannelComponent implements OnInit, OnDestroy { } } + onSelTransTypeChanged(event) { + this.transTypeValue = ''; + if (event.value === this.transTypes[2].id) { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + } + } + ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); 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 649f1aac..b5429979 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 @@ -5,13 +5,13 @@ Connect to a new peer
- +
- {{peerFormLabel}} + {{peerFormLabel}} Lightning Address (pubkey OR pubkey@ip:port) @@ -30,6 +30,19 @@ {{channelFormLabel}}
+
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Amount @@ -45,9 +58,9 @@
- + Transaction Type - + {{transType.name}} @@ -55,8 +68,10 @@ {{channelFormGroup.controls.selTransType.value === '0' ? 'Default' : channelFormGroup.controls.selTransType.value === '1' ? 'Target Confirmation Blocks' : 'Fee (Sats/vByte)'}} - + + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) {{channelFormGroup.controls.selTransType.value === '0' ? 'Default' : channelFormGroup.controls.selTransType.value === '1' ? 'Target Confirmation Blocks' : 'Fee (Sats/vByte)'}} is required. + Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
@@ -78,7 +93,7 @@ -
+
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 b8c19a19..9e947e63 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 @@ -1,25 +1,28 @@ import { Component, OnInit, OnDestroy, ViewChild, Inject } from '@angular/core'; import { UntypedFormGroup, UntypedFormBuilder, Validators } from '@angular/forms'; import { Subject } from 'rxjs'; -import { take, takeUntil, filter } from 'rxjs/operators'; +import { take, takeUntil, filter, withLatestFrom } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { LoggerService } from '../../../shared/services/logger.service'; import { GetInfo, Peer } from '../../../shared/models/lndModels'; import { OpenChannelAlert } from '../../../shared/models/alertData'; import { APICallStatusEnum, LNDActions, TRANS_TYPES } from '../../../shared/services/consts-enums-functions'; +import { RecommendedFeeRates } from '../../../shared/models/rtlModels'; import { LNDEffects } from '../../store/lnd.effects'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { fetchGraphNode, saveNewChannel, saveNewPeer } from '../../store/lnd.actions'; -import { nodeInfoAndNodeSettingsAndAPIStatus } from '../../store/lnd.selector'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; -import { CommonService } from 'src/app/shared/services/common.service'; -import { ApiCallStatusPayload } from 'src/app/shared/models/apiCallsPayload'; +import { nodeInfoAndAPIStatus } from '../../store/lnd.selector'; +import { Node } from '../../../shared/models/RTLconfig'; +import { DataService } from '../../../shared/services/data.service'; +import { CommonService } from '../../../shared/services/common.service'; +import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ selector: 'rtl-connect-peer', @@ -31,7 +34,8 @@ 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 faInfoCircle = faInfoCircle; + public selNode: Node | null; public peerAddress = ''; public totalBalance = 0; public transTypes = TRANS_TYPES; @@ -44,14 +48,15 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { public channelConnectionError = ''; public peerFormLabel = 'Peer Details'; public channelFormLabel = 'Open Channel (Optional)'; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; peerFormGroup: UntypedFormGroup; channelFormGroup: UntypedFormGroup; statusFormGroup: UntypedFormGroup; - 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(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: OpenChannelAlert, private store: Store, private lndEffects: LNDEffects, private formBuilder: UntypedFormBuilder, - private actions: Actions, private logger: LoggerService, private commonService: CommonService) { } + private actions: Actions, private logger: LoggerService, private commonService: CommonService, private dataService: DataService) { } ngOnInit() { this.totalBalance = this.data.message?.balance || 0; @@ -62,7 +67,7 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { }); this.channelFormGroup = this.formBuilder.group({ fundingAmount: ['', [Validators.required, Validators.min(1), Validators.max(this.totalBalance)]], - isPrivate: [!!this.selNode?.unannouncedChannels], + isPrivate: [!!this.selNode?.settings.unannouncedChannels], selTransType: [TRANS_TYPES[0].id], transTypeValue: [{ value: '', disabled: true }], taprootChannel: [false], @@ -70,11 +75,12 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { hiddenAmount: ['', [Validators.required]] }); this.statusFormGroup = this.formBuilder.group({}); - this.store.select(nodeInfoAndNodeSettingsAndAPIStatus).pipe(takeUntil(this.unSubs[0])). - subscribe((infoSettingsStatusSelector: { information: GetInfo, nodeSettings: SelNodeChild | null, apiCallStatus: ApiCallStatusPayload }) => { - this.selNode = infoSettingsStatusSelector.nodeSettings; - this.channelFormGroup.controls.isPrivate.setValue(!!infoSettingsStatusSelector.nodeSettings?.unannouncedChannels); - this.isTaprootAvailable = this.commonService.isVersionCompatible(infoSettingsStatusSelector.information.version, '0.17.0'); + this.store.select(nodeInfoAndAPIStatus).pipe(takeUntil(this.unSubs[0]), + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([infoStatusSelector, nodeSettings]: [{ information: GetInfo | null, apiCallStatus: ApiCallStatusPayload }, nodeSettings: Node]) => { + this.selNode = nodeSettings; + this.channelFormGroup.controls.isPrivate.setValue(!!nodeSettings?.settings.unannouncedChannels); + this.isTaprootAvailable = this.commonService.isVersionCompatible(infoStatusSelector.information.version, '0.17.0'); }); this.channelFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((transType) => { if (transType === TRANS_TYPES[0].id) { @@ -140,8 +146,16 @@ 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.selTransType.value === '2' && this.recommendedFee.minimumFee > this.channelFormGroup.controls.transTypeValue.value) { + this.channelFormGroup.controls.transTypeValue.setErrors({ minimum: true }); + return true; + } + 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 = ''; @@ -154,6 +168,19 @@ export class ConnectPeerComponent implements OnInit, OnDestroy { })); } + onSelTransTypeChanged(event) { + this.channelFormGroup.controls.transTypeValue.setValue(''); + if (event.value === this.transTypes[2].id) { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + } + } + onClose() { this.dialogRef.close(false); } diff --git a/src/app/lnd/peers-channels/connections.component.ts b/src/app/lnd/peers-channels/connections.component.ts index db8b1bf1..f33731e5 100644 --- a/src/app/lnd/peers-channels/connections.component.ts +++ b/src/app/lnd/peers-channels/connections.component.ts @@ -5,11 +5,12 @@ import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faUsers, faChartPie } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; import { LoggerService } from '../../shared/services/logger.service'; import { RTLState } from '../../store/rtl.state'; -import { blockchainBalance, channels, lndNodeSettings, peers } from '../store/lnd.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { blockchainBalance, channels, peers } from '../store/lnd.selector'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { BlockchainBalance, Channel, ChannelsSummary, LightningBalance, Peer } from '../../shared/models/lndModels'; @@ -20,7 +21,7 @@ import { BlockchainBalance, Channel, ChannelsSummary, LightningBalance, Peer } f }) export class ConnectionsComponent implements OnInit, OnDestroy { - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; public activePeers = 0; public activeChannels = 0; public faUsers = faUsers; @@ -40,7 +41,7 @@ export class ConnectionsComponent implements OnInit, OnDestroy { this.activeLink = this.links.findIndex((link) => link.link === (value).urlAfterRedirects.substring((value).urlAfterRedirects.lastIndexOf('/') + 1)); } }); - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[1])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(peers).pipe(takeUntil(this.unSubs[2])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { this.activePeers = (peersSelector.peers && peersSelector.peers.length) ? peersSelector.peers.length : 0; diff --git a/src/app/lnd/peers-channels/peers/peers.component.ts b/src/app/lnd/peers-channels/peers/peers.component.ts index ef55c99f..0e0d13e6 100644 --- a/src/app/lnd/peers-channels/peers/peers.component.ts +++ b/src/app/lnd/peers-channels/peers/peers.component.ts @@ -7,6 +7,7 @@ import { faUsers } 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { Peer, GetInfo, BlockchainBalance } from '../../../shared/models/lndModels'; 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'; @@ -22,7 +23,7 @@ import { detachPeer } from '../../store/lnd.actions'; import { blockchainBalance, lndNodeInformation, lndPageSettings, peers } from '../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-peers', @@ -108,8 +109,7 @@ export class PeersComponent implements OnInit, AfterViewInit, OnDestroy { } onPeerClick(selPeer: Peer, event: any) { - // const encodedStr = encodeURIComponent('µ'); - const reorderedPeer = [ + const reorderedPeer: MessageDataField[][] = [ [{ 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 (\u00B5s)', width: 30, type: DataTypeEnum.NUMBER }], diff --git a/src/app/lnd/reports/reports.component.html b/src/app/lnd/reports/reports.component.html index ca123cb3..0dfdaf50 100644 --- a/src/app/lnd/reports/reports.component.html +++ b/src/app/lnd/reports/reports.component.html @@ -9,7 +9,7 @@
{{link.name}}
- +
diff --git a/src/app/lnd/reports/transactions/transactions-report.component.html b/src/app/lnd/reports/transactions/transactions-report.component.html index 44da55f6..4e047163 100644 --- a/src/app/lnd/reports/transactions/transactions-report.component.html +++ b/src/app/lnd/reports/transactions/transactions-report.component.html @@ -38,7 +38,7 @@ {{model.name}}: {{(model.value || 0) | number:'1.0-2'}}/# {{model.name === 'Paid' ? 'Payments' : 'Invoices'}}: {{(model.extra?.total || 0) | number}} - +
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 fe8dd58c..5700bc62 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.html @@ -76,7 +76,7 @@
- + 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 b75c65d8..ba6651f1 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts @@ -6,6 +6,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ForwardingEvent, SwitchRes } from '../../../shared/models/lndModels'; 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'; @@ -18,7 +19,7 @@ import { RTLState } from '../../../store/rtl.state'; import { forwardingHistory, lndPageSettings } from '../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-forwarding-history', @@ -119,7 +120,7 @@ export class ForwardingHistoryComponent implements OnInit, AfterViewInit, OnChan } onForwardingEventClick(selFEvent: ForwardingEvent, event: any) { - const reorderedFHEvent = [ + const reorderedFHEvent: MessageDataField[][] = [ [{ key: 'timestamp', value: selFEvent.timestamp, title: 'Timestamp', width: 25, type: DataTypeEnum.DATE_TIME }, { key: 'amt_in', value: selFEvent.amt_in, title: 'Inbound Amount (Sats)', width: 25, type: DataTypeEnum.NUMBER }, { key: 'amt_out', value: selFEvent.amt_out, title: 'Outbound Amount (Sats)', width: 25, type: DataTypeEnum.NUMBER }, 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 59788a5c..dbb94284 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 @@ -164,31 +164,6 @@ export class NonRoutingPeersComponent implements OnInit, AfterViewInit, OnDestro this.router.navigate(['../../', 'connections', 'channels', 'open'], { relativeTo: this.activatedRoute, state: { filterValue: selNonRoutingChannel.chan_id } }); } - // groupRoutingPeers(forwardingEvents: ForwardingEvent[]) { - // const results: any[] = []; - // forwardingEvents.forEach((event: ForwardingEvent) => { - // const foundEntryInIdx = results.findIndex((result) => result.chan_id === event.chan_id_in); - // const foundEntryOutIdx = results.findIndex((result) => result.chan_id === event.chan_id_out); - // if (foundEntryInIdx < 0 && foundEntryOutIdx < 0) { - // results.push({ chan_id: event.chan_id_in, alias: event.alias_in, amt_in_msat: +event.amt_in_msat, amt_out_msat: 0 }); - // results.push({ chan_id: event.chan_id_out, alias: event.alias_out, amt_out_msat: +event.amt_out_msat, amt_in_msat: 0 }); - // } - // if (foundEntryInIdx < 0 && foundEntryOutIdx > -1) { - // results.push({ chan_id: event.chan_id_in, alias: event.alias_in, amt_in_msat: +event.amt_in_msat, amt_out_msat: 0 }); - // results[foundEntryOutIdx].amt_out_msat = results[foundEntryOutIdx].amt_out_msat + +event.amt_out_msat; - // } - // if (foundEntryInIdx > -1 && foundEntryOutIdx < 0) { - // results.push({ chan_id: event.chan_id_out, alias: event.alias_out, amt_out_msat: +event.amt_out_msat, amt_in_msat: 0 }); - // results[foundEntryInIdx].amt_in_msat = results[foundEntryInIdx].amt_in_msat + +event.amt_in_msat; - // } - // if (foundEntryInIdx > -1 && foundEntryOutIdx > -1) { - // results[foundEntryInIdx].amt_in_msat = results[foundEntryInIdx].amt_in_msat + +event.amt_in_msat; - // results[foundEntryOutIdx].amt_out_msat = results[foundEntryOutIdx].amt_out_msat + +event.amt_out_msat; - // } - // }); - // return this.commonService.sortDescByKey(results, 'alias'); - // } - applyFilter() { this.nonRoutingPeers.filter = this.selFilter.toLowerCase(); } 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 62ae2d5d..730de508 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.html +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.html @@ -47,7 +47,7 @@ -
Actions
+
Actions
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 7f8720d9..2598b4db 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.ts +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.ts @@ -16,6 +16,7 @@ import { RTLState } from '../../../store/rtl.state'; import { forwardingHistory, lndPageSettings } from '../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-routing-peers', @@ -107,7 +108,7 @@ export class RoutingPeersComponent implements OnInit, AfterViewInit, OnDestroy { } else { alertTitle = 'Outgoing' + alertTitle; } - const reorderedRoutingPeer = [ + const reorderedRoutingPeer: MessageDataField[][] = [ [{ key: 'chan_id', value: selRPeer.chan_id, title: 'Channel ID', width: 50, type: DataTypeEnum.STRING }, { key: 'alias', value: selRPeer.alias, title: 'Peer Alias', width: 50, type: DataTypeEnum.STRING }], [{ key: 'events', value: selRPeer.events, title: 'Events', width: 50, type: DataTypeEnum.NUMBER }, diff --git a/src/app/lnd/routing/routing.component.html b/src/app/lnd/routing/routing.component.html index 01279ba7..69a630c3 100644 --- a/src/app/lnd/routing/routing.component.html +++ b/src/app/lnd/routing/routing.component.html @@ -34,7 +34,7 @@ - +
diff --git a/src/app/lnd/store/lnd.actions.ts b/src/app/lnd/store/lnd.actions.ts index f6e3a4c7..84ccbb1b 100644 --- a/src/app/lnd/store/lnd.actions.ts +++ b/src/app/lnd/store/lnd.actions.ts @@ -2,7 +2,7 @@ import { createAction, props } from '@ngrx/store'; import { LNDActions } from '../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } 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, @@ -13,12 +13,12 @@ import { PageSettings } from '../../shared/models/pageSettings'; export const updateLNDAPICallStatus = createAction(LNDActions.UPDATE_API_CALL_STATUS_LND, props<{ payload: ApiCallStatusPayload }>()); -export const resetLNDStore = createAction(LNDActions.RESET_LND_STORE, props<{ payload: SelNodeChild | null }>()); - -export const setChildNodeSettingsLND = createAction(LNDActions.SET_CHILD_NODE_SETTINGS_LND, props<{ payload: SelNodeChild }>()); +export const resetLNDStore = createAction(LNDActions.RESET_LND_STORE); export const fetchPageSettings = createAction(LNDActions.FETCH_PAGE_SETTINGS_LND); +export const updateSelectedNodeOptions = createAction(LNDActions.UPDATE_SELECTED_NODE_OPTIONS); + export const setPageSettings = createAction(LNDActions.SET_PAGE_SETTINGS_LND, props<{ payload: PageSettings[] }>()); export const savePageSettings = createAction(LNDActions.SAVE_PAGE_SETTINGS_LND, props<{ payload: PageSettings[] }>()); diff --git a/src/app/lnd/store/lnd.effects.ts b/src/app/lnd/store/lnd.effects.ts index 379e6c91..2f4c1ef3 100644 --- a/src/app/lnd/store/lnd.effects.ts +++ b/src/app/lnd/store/lnd.effects.ts @@ -940,7 +940,7 @@ export class LNDEffects implements OnDestroy { ); updateSelNodeOptions = createEffect(() => this.actions.pipe( - ofType(RTLActions.UPDATE_SELECTED_NODE_OPTIONS), + ofType(LNDActions.UPDATE_SELECTED_NODE_OPTIONS), mergeMap(() => this.httpClient.get(this.CHILD_API_URL + API_END_POINTS.WALLET_API + '/updateSelNodeOptions').pipe( map((postRes: any) => { this.logger.info('Update Sel Node Successfull'); @@ -1295,8 +1295,7 @@ export class LNDEffects implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: actionName, status: APICallStatusEnum.ERROR, statusCode: err.status.toString(), message: this.commonService.extractErrorMessage(err, genericErrorMessage) } })); @@ -1308,8 +1307,7 @@ export class LNDEffects implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); const errMsg = this.commonService.extractErrorMessage(err); diff --git a/src/app/lnd/store/lnd.reducers.ts b/src/app/lnd/store/lnd.reducers.ts index dcee0652..13e02ba9 100644 --- a/src/app/lnd/store/lnd.reducers.ts +++ b/src/app/lnd/store/lnd.reducers.ts @@ -2,7 +2,7 @@ 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, + 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'; @@ -28,13 +28,8 @@ export const LNDReducer = createReducer(initLNDState, apisCallStatus: updatedApisCallStatus }; }), - on(setChildNodeSettingsLND, (state, { payload }) => ({ - ...state, - nodeSettings: payload - })), - on(resetLNDStore, (state, { payload }) => ({ - ...initLNDState, - nodeSettings: payload + on(resetLNDStore, (state) => ({ + ...initLNDState })), on(setInfo, (state, { payload }) => ({ ...state, diff --git a/src/app/lnd/store/lnd.selector.ts b/src/app/lnd/store/lnd.selector.ts index 064036ff..1de22bbd 100644 --- a/src/app/lnd/store/lnd.selector.ts +++ b/src/app/lnd/store/lnd.selector.ts @@ -2,7 +2,6 @@ import { createFeatureSelector, createSelector } from '@ngrx/store'; 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 })); @@ -23,4 +22,4 @@ export const utxos = createSelector(lndState, (state: LNDState) => ({ utxos: sta export const networkInfo = createSelector(lndState, (state: LNDState) => ({ networkInfo: state.networkInfo, apiCallStatus: state.apisCallStatus.FetchNetwork })); export const allLightningTransactions = createSelector(lndState, (state: LNDState) => ({ allLightningTransactions: state.allLightningTransactions, apiCallStatus: state.apisCallStatus.FetchLightningTransactions })); export const allChannels = createSelector(lndState, (state: LNDState) => ({ channels: state.channels, pendingChannels: state.pendingChannels, closedChannels: state.closedChannels })); -export const nodeInfoAndNodeSettingsAndAPIStatus = createSelector(lndState, (state: LNDState) => ({ information: state.information, nodeSettings: state.nodeSettings, apiCallStatus: state.apisCallStatus.FetchInfo })); +export const nodeInfoAndAPIStatus = createSelector(lndState, (state: LNDState) => ({ information: state.information, apiCallStatus: state.apisCallStatus.FetchInfo })); diff --git a/src/app/lnd/store/lnd.state.ts b/src/app/lnd/store/lnd.state.ts index 57d20b66..7eb91f18 100644 --- a/src/app/lnd/store/lnd.state.ts +++ b/src/app/lnd/store/lnd.state.ts @@ -1,12 +1,10 @@ -import { SelNodeChild } from '../../shared/models/RTLconfig'; import { ApiCallsListLND } from '../../shared/models/apiCallsPayload'; -import { APICallStatusEnum, LND_DEFAULT_PAGE_SETTINGS, UserPersonaEnum } from '../../shared/services/consts-enums-functions'; +import { APICallStatusEnum, LND_DEFAULT_PAGE_SETTINGS } 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[]; @@ -45,7 +43,6 @@ export const initLNDState: LNDState = { FetchLightningTransactions: { status: APICallStatusEnum.UN_INITIATED }, FetchNetwork: { status: APICallStatusEnum.UN_INITIATED } }, - nodeSettings: { userPersona: UserPersonaEnum.OPERATOR, unannouncedChannels: false, fiatConversion: false, channelBackupPath: '', currencyUnits: [], selCurrencyUnit: '', lnImplementation: '', swapServerUrl: '' }, pageSettings: LND_DEFAULT_PAGE_SETTINGS, information: {}, peers: [], 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 fbb785b6..0d160827 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 @@ -15,8 +15,15 @@ Amount - Sats - {{invoiceValueHint}} + Sats + + = + + + + + {{invoiceValueHint}} + Expiry @@ -48,5 +55,5 @@
-
+
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 83d890fc..3d716e50 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 @@ -9,13 +9,15 @@ import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { InvoiceInformation } from '../../../shared/models/alertData'; import { LNDActions, TimeUnitEnum, CurrencyUnitEnum, TIME_UNITS, CURRENCY_UNIT_FORMATS, PAGE_SIZE, APICallStatusEnum, UI_MESSAGES, DEFAULT_INVOICE_EXPIRY } from '../../../shared/services/consts-enums-functions'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo } from '../../../shared/models/lndModels'; import { CommonService } from '../../../shared/services/common.service'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { saveNewInvoice } from '../../store/lnd.actions'; -import { lndNodeInformation, lndNodeSettings } from '../../store/lnd.selector'; +import { lndNodeInformation } from '../../store/lnd.selector'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-create-invoices', @@ -25,7 +27,8 @@ import { lndNodeInformation, lndNodeSettings } from '../../store/lnd.selector'; export class CreateInvoiceComponent implements OnInit, OnDestroy { public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public selNode: Node | null; + public convertedCurrency: ConvertedCurrency = null; public memo = ''; public expiry: number | null; public isAmp = false; @@ -46,7 +49,7 @@ export class CreateInvoiceComponent implements OnInit, OnDestroy { ngOnInit() { this.pageSize = this.data.pageSize; - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); this.actions.pipe(takeUntil(this.unSubs[2]), filter((action) => action.type === LNDActions.UPDATE_API_CALL_STATUS_LND)). @@ -94,13 +97,14 @@ export class CreateInvoiceComponent implements OnInit, OnDestroy { } onInvoiceValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { + if (this.selNode && this.selNode.settings.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). + this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[3])). subscribe({ next: (data) => { - this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; + this.convertedCurrency = data; + this.invoiceValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; }, error: (err) => { this.invoiceValueHint = 'Conversion Error: ' + err; } 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 3fcdd205..19b153ff 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 @@ -125,7 +125,7 @@

AMP Invoice

{{invoice?.is_amp ? 'Yes' : 'No'}}
-
+
diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.html b/src/app/lnd/transactions/invoices/lightning-invoices.component.html index e456c047..25547bd6 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.html +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.html @@ -7,8 +7,15 @@ Amount - Sats - {{invoiceValueHint}} + Sats + + = + + + + + {{invoiceValueHint}} +
diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.ts b/src/app/lnd/transactions/invoices/lightning-invoices.component.ts index 5e64bf5e..351c21c1 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.ts +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.ts @@ -8,10 +8,11 @@ import { faHistory, faEye, faEyeSlash, faBurst, faMoneyBill1, faArrowsTurnToDots import { MatPaginator, MatPaginatorIntl, PageEvent } from '@angular/material/paginator'; import { MatSort } from '@angular/material/sort'; import { MatTableDataSource } from '@angular/material/table'; +import { MAT_SELECT_CONFIG } from '@angular/material/select'; import { CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, PAGE_SIZE, PAGE_SIZE_OPTIONS, getPaginatorLabel, ScreenSizeEnum, APICallStatusEnum, UI_MESSAGES, LNDActions, SortOrderEnum, LND_DEFAULT_PAGE_SETTINGS, LND_PAGE_DEFS, DEFAULT_INVOICE_EXPIRY } from '../../../shared/services/consts-enums-functions'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo, Invoice, ListInvoices } from '../../../shared/models/lndModels'; import { LoggerService } from '../../../shared/services/logger.service'; import { CommonService } from '../../../shared/services/common.service'; @@ -21,11 +22,12 @@ import { InvoiceInformationComponent } from '../invoice-information-modal/invoic import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { fetchInvoices, invoiceLookup, saveNewInvoice } from '../../store/lnd.actions'; -import { invoices, lndNodeInformation, lndNodeSettings, lndPageSettings } from '../../store/lnd.selector'; +import { invoices, lndNodeInformation, lndPageSettings } from '../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-lightning-invoices', @@ -48,12 +50,13 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest public faArrowsTurnRight = faArrowsTurnRight; public faBurst = faBurst; public faMoneyBill1 = faMoneyBill1; + public convertedCurrency: ConvertedCurrency = null; 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 selNode: Node | null; public newlyAddedInvoiceMemo: string | null = null; public newlyAddedInvoiceValue: number | null = null; public memo = ''; @@ -85,7 +88,7 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest } ngOnInit() { - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); this.store.select(lndPageSettings).pipe(takeUntil(this.unSubs[2])). subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { @@ -256,13 +259,14 @@ export class LightningInvoicesComponent implements OnInit, AfterViewInit, OnDest } onInvoiceValueChange() { - if (this.selNode && this.selNode.fiatConversion && this.invoiceValue && this.invoiceValue > 99) { + if (this.selNode && this.selNode.settings.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). + this.commonService.convertCurrency(this.invoiceValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). pipe(takeUntil(this.unSubs[5])). subscribe({ next: (data) => { - this.invoiceValueHint = '= ' + data.symbol + this.decimalPipe.transform(data.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + data.unit; + this.convertedCurrency = data; + this.invoiceValueHint = this.decimalPipe.transform(this.convertedCurrency.OTHER, CURRENCY_UNIT_FORMATS.OTHER) + ' ' + this.convertedCurrency.unit; }, error: (err) => { this.invoiceValueHint = 'Conversion Error: ' + err; } diff --git a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.html b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.html index b52f3b25..4baa32d6 100644 --- a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.html +++ b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.html @@ -32,7 +32,7 @@ fxFlex="100"

Error! Unable to find details!

-
+
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 9ae1ffbf..5c012e40 100644 --- a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts +++ b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts @@ -63,12 +63,6 @@ export class LookupTransactionsComponent implements OnInit, OnDestroy { break; case 1: this.store.dispatch(invoiceLookup({ payload: { openSnackBar: false, paymentHash: Buffer.from(this.lookupKey.trim(), 'hex').toString('base64')?.replace(/\+/g, '-')?.replace(/[/]/g, '_') } })); - // if (this.lookupKey.trim().length < 45) { - // this.store.dispatch(invoiceLookup({ payload: { openSnackBar: false, paymentAddress: this.lookupKey.trim()?.replace(/\+/g, '-')?.replace(/[/]/g, '_') } })); - // } - // if (this.lookupKey.trim().length > 45 && this.lookupKey.trim().length < 70) { - // this.store.dispatch(invoiceLookup({ payload: { openSnackBar: false, paymentHash: Buffer.from(this.lookupKey.trim(), 'hex').toString('base64')?.replace(/\+/g, '-')?.replace(/[/]/g, '_') } })); - // } break; default: break; diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.html b/src/app/lnd/transactions/payments/lightning-payments.component.html index d8228d2a..081755d7 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.html +++ b/src/app/lnd/transactions/payments/lightning-payments.component.html @@ -3,7 +3,14 @@ Payment Request - {{paymentDecodedHint}} + + {{paymentDecodedHintPre}} + + + + + {{paymentDecodedHintPost}} + Payment request is required.
@@ -111,7 +118,7 @@ Hops {{payment?.htlcs[0]?.route?.hops?.length || 0}} - +
@@ -122,7 +129,7 @@
- +
diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.ts b/src/app/lnd/transactions/payments/lightning-payments.component.ts index d14d740d..6e9cf859 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.ts +++ b/src/app/lnd/transactions/payments/lightning-payments.component.ts @@ -8,24 +8,27 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; + 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'; - import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { LightningSendPaymentsComponent } from '../send-payment-modal/send-payment.component'; import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { openAlert, openConfirmation } from '../../../store/rtl.actions'; import { sendPayment } from '../../store/lnd.actions'; -import { lndNodeInformation, lndNodeSettings, lndPageSettings, payments, peers } from '../../store/lnd.selector'; +import { lndNodeInformation, lndPageSettings, payments, peers } from '../../store/lnd.selector'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-lightning-payments', @@ -43,13 +46,14 @@ 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 convertedCurrency: ConvertedCurrency = null; 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 selNode: Node | null; public information: GetInfo = {}; public peers: Peer[] = []; public payments: any = new MatTableDataSource([]); @@ -59,7 +63,8 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest public htlcColumns: any[] = []; public paymentDecoded: PayRequest = {}; public paymentRequest = ''; - public paymentDecodedHint = ''; + public paymentDecodedHintPre = ''; + public paymentDecodedHintPost = ''; private firstOffset = -1; private lastOffset = -1; public selFilter = ''; @@ -77,7 +82,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest } ngOnInit() { - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(lndNodeInformation).pipe(takeUntil(this.unSubs[1])).subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); this.store.select(peers).pipe(takeUntil(this.unSubs[2])). subscribe((peersSelector: { peers: Peer[], apiCallStatus: ApiCallStatusPayload }) => { @@ -160,7 +165,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest this.paymentDecoded.num_satoshis = (+this.paymentDecoded.num_msat / 1000).toString(); } if (!this.paymentDecoded.num_satoshis || this.paymentDecoded.num_satoshis === '' || this.paymentDecoded.num_satoshis === '0') { - const reorderedPaymentDecoded = [ + const reorderedPaymentDecoded: MessageDataField[][] = [ [{ 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 }], @@ -195,7 +200,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest } }); } else { - const reorderedPaymentDecoded = [ + const reorderedPaymentDecoded: MessageDataField[][] = [ [{ 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 }], @@ -238,7 +243,8 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest onPaymentRequestEntry(event: any) { this.paymentRequest = event; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; if (this.paymentRequest && this.paymentRequest.length > 100) { this.dataService.decodePayment(this.paymentRequest, false). pipe(take(1)).subscribe((decodedPayment: PayRequest) => { @@ -247,22 +253,26 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest this.paymentDecoded.num_satoshis = (+this.paymentDecoded.num_msat / 1000).toString(); } 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). + if (this.selNode && this.selNode.settings.fiatConversion) { + this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : ''), this.selNode.settings.fiatConversion). 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.convertedCurrency = data; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats ('; + this.paymentDecodedHintPost = this.decimalPipe.transform((this.convertedCurrency.OTHER ? this.convertedCurrency.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.'; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats | Memo: ' + this.paymentDecoded.description + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis ? this.paymentDecoded.num_satoshis : 0) + ' Sats | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } } else { - this.paymentDecodedHint = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPre = 'Zero Amount Invoice | Memo: ' + this.paymentDecoded.description; + this.paymentDecodedHintPost = ''; } }); } @@ -394,7 +404,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest } showPaymentView(selPayment: Payment, pathAliases: string) { - const reorderedPayment = [ + const reorderedPayment: MessageDataField[][] = [ [{ key: 'payment_hash', value: selPayment.payment_hash, title: 'Payment Hash', width: 100, type: DataTypeEnum.STRING }], [{ key: 'payment_preimage', value: selPayment.payment_preimage, title: 'Payment Preimage', width: 100, type: DataTypeEnum.STRING }], [{ key: 'payment_request', value: selPayment.payment_request, title: 'Payment Request', width: 100, type: DataTypeEnum.STRING }], diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.html b/src/app/lnd/transactions/send-payment-modal/send-payment.component.html index 63bd9ccf..d9b1975e 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.html +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.html @@ -11,7 +11,14 @@ Payment Request - {{paymentDecodedHint}} + + {{paymentDecodedHintPre}} + + + + + {{paymentDecodedHintPost}} + Payment request is required. {{paymentDecodedHint}} 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 28a0a775..828e2a69 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 @@ -20,7 +20,7 @@ import { mockRTLStoreState } from '../../../shared/test-helpers/test-data'; import { RTLState } from '../../../store/rtl.state'; import { sendPayment } from '../../store/lnd.actions'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { SendPayment } from '../../../shared/models/lndModels'; describe('LightningSendPaymentsComponent', () => { @@ -65,7 +65,7 @@ describe('LightningSendPaymentsComponent', () => { }); it('should get lnd store value on ngOnInit', () => { - const storeSpy = spyOn(store, 'select').and.returnValue(of(mockRTLStoreState.lnd.nodeSettings)); + const storeSpy = spyOn(store, 'select').and.returnValue(of(mockRTLStoreState.root.selNode)); component.ngOnInit(); if (component.selNode) { expect(component.selNode.lnImplementation).toBe('LND'); @@ -112,7 +112,7 @@ describe('LightningSendPaymentsComponent', () => { expect(component.zeroAmtInvoice).toEqual(false); expect(component.paymentReq.control.errors).toBe(null); expect(component.paymentError).toEqual(''); - expect(component.paymentDecodedHint).toEqual(''); + expect(component.paymentDecodedHintPre).toEqual(''); }); it('should update title on advanced panel toggle', () => { @@ -130,7 +130,7 @@ describe('LightningSendPaymentsComponent', () => { it('should return from decode payment when pay request length is less than hundred ', () => { component.onPaymentRequestEntry('lntb4u1psvdzaypp55'); - expect(component.paymentDecodedHint).toEqual(''); + expect(component.paymentDecodedHintPre).toEqual(''); }); it('should decode payment when pay request is for the zero amount invoice', () => { @@ -142,7 +142,7 @@ describe('LightningSendPaymentsComponent', () => { component.onPaymentRequestEntry(component.paymentRequest); fixture.detectChanges(); expect(component.zeroAmtInvoice).toBe(true); - expect(component.paymentDecodedHint).toEqual('Memo: Testing Empty Invoice for LND 3'); + expect(component.paymentDecodedHintPre).toEqual('Memo: Testing Empty Invoice for LND 3'); expect(component.filteredMinAmtActvChannels).toEqual(component.activeChannels); }); @@ -153,7 +153,7 @@ describe('LightningSendPaymentsComponent', () => { 'cwjfjxgpcuqqqxsqqyqqqqlgqqqqqqgq9q9qy9qsqwf6a4w9uqthm3aslwt03ucqt03e8j2atxrmt022d5kaw65cmqc3pnghz5xmsh2tlz9syhaulrxtwmvh3gdx9j33gec6yryc' + 'wh2g05qgqdnftgk'); expect(component.zeroAmtInvoice).toBe(true); - expect(component.paymentDecodedHint).toEqual('Memo: Testing Empty Invoice for LND 3'); + expect(component.paymentDecodedHintPre).toEqual('Memo: Testing Empty Invoice for LND 3'); expect(component.filteredMinAmtActvChannels).toEqual(component.activeChannels); expect(component.paymentAmount).toBeNull(); component.onSendPayment(); @@ -164,15 +164,16 @@ describe('LightningSendPaymentsComponent', () => { }); it('should decode payment when pay request changed and fiat conversion is true', () => { - const updatedSelNode: SelNodeChild = JSON.parse(JSON.stringify(component.selNode)); - updatedSelNode.fiatConversion = true; - updatedSelNode.currencyUnits = ['BTC', 'SAT', 'USD']; + const updatedSelNode: Node = JSON.parse(JSON.stringify(component.selNode)); + updatedSelNode.settings.fiatConversion = true; + updatedSelNode.settings.currencyUnits = ['SATS', 'BTC', 'USD']; Object.defineProperty(component, 'selNode', { value: updatedSelNode }); component.onPaymentRequestEntry('lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3' + 'txvejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvr' + 'c8ss5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630a' + 'q38j0s3hrgpv4eel3'); - expect(component.paymentDecodedHint).toEqual('Sending: 400 Sats (USD 0.13) | Memo: Testing ngrx Effects 4'); + expect(component.paymentDecodedHintPre).toEqual('Sending: 400 Sats ('); + expect(component.paymentDecodedHintPost).toEqual('0.13) | Memo: Testing ngrx Effects 4'); }); it('should decode payment when pay request changed and fiat conversion is false', () => { @@ -180,12 +181,12 @@ describe('LightningSendPaymentsComponent', () => { 'vejkxarnyq6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8s' + 's5cqqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq38j' + '0s3hrgpv4eel3'); - expect(component.paymentDecodedHint).toEqual('Sending: 400 Sats | Memo: Testing ngrx Effects 4'); + expect(component.paymentDecodedHintPre).toEqual('Sending: 400 Sats | Memo: Testing ngrx Effects 4'); }); it('should throw an error from decode payment when pay request is not found', () => { component.onPaymentRequestEntry('p555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq6qcqp2sp3434dsfdsf'); - expect(component.paymentDecodedHint).toEqual('ERROR: Request Failed!'); + expect(component.paymentDecodedHintPre).toEqual('ERROR: Request Failed!'); }); it('should convert Sats to USD by calling convertCurrency method from CommonService', () => { 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 6ec79682..27b6c6d1 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 @@ -8,7 +8,7 @@ import { Actions } from '@ngrx/effects'; import { MatDialogRef } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { SelNodeChild } from '../../../shared/models/RTLconfig'; +import { Node } from '../../../shared/models/RTLconfig'; import { PayRequest, Channel, ChannelsSummary, LightningBalance } from '../../../shared/models/lndModels'; import { APICallStatusEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, FEE_LIMIT_TYPES, LNDActions, UI_MESSAGES } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; @@ -16,9 +16,11 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { DataService } from '../../../shared/services/data.service'; import { RTLState } from '../../../store/rtl.state'; +import { rootSelectedNode } from '../../../store/rtl.selector'; import { sendPayment } from '../../store/lnd.actions'; -import { channels, lndNodeSettings } from '../../store/lnd.selector'; +import { channels } from '../../store/lnd.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; +import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ selector: 'rtl-lightning-send-payments', @@ -29,12 +31,14 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { @ViewChild('paymentReq', { static: false }) paymentReq: NgModel; public faExclamationTriangle = faExclamationTriangle; - public selNode: SelNodeChild | null = {}; + public convertedCurrency: ConvertedCurrency = null; + public selNode: Node | null; public paymentDecoded: PayRequest = {}; public zeroAmtInvoice = false; public paymentAmount: number | null = null; public paymentRequest = ''; - public paymentDecodedHint = ''; + public paymentDecodedHintPre = ''; + public paymentDecodedHintPost = ''; public showAdvanced = false; public activeChannels: Channel[] = []; public filteredMinAmtActvChannels: Channel[] = []; @@ -49,7 +53,7 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { constructor(public dialogRef: MatDialogRef, private store: Store, private logger: LoggerService, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions, private dataService: DataService) { } ngOnInit() { - this.store.select(lndNodeSettings).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: SelNodeChild | null) => { this.selNode = nodeSettings; }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((nodeSettings: Node | null) => { this.selNode = nodeSettings; }); this.store.select(channels).pipe(takeUntil(this.unSubs[1])). subscribe((channelsSelector: { channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }) => { this.activeChannels = channelsSelector.channels && channelsSelector.channels.length ? channelsSelector.channels?.filter((channel) => channel.active) : []; @@ -153,7 +157,8 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { this.paymentRequest = event; this.paymentAmount = null; this.paymentError = ''; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; this.zeroAmtInvoice = false; if (this.paymentRequest && this.paymentRequest.length > 100) { this.paymentReq.control.setErrors(null); @@ -175,20 +180,23 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { this.selectedChannelCtrl.disable(); } this.zeroAmtInvoice = false; - 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). + if (this.selNode && this.selNode.settings.fiatConversion) { + this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, (this.selNode.settings.currencyUnits && this.selNode.settings.currencyUnits.length > 2 ? this.selNode.settings.currencyUnits[2] : 'BTC'), this.selNode.settings.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.convertedCurrency = data; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + ' Sats ('; + this.paymentDecodedHintPost = 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.'; + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + ' Sats | Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None') + '. Unable to convert currency.'; + this.paymentDecodedHintPost = ''; } }); } else { - this.paymentDecodedHint = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + ' Sats | Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None'); + this.paymentDecodedHintPre = 'Sending: ' + this.decimalPipe.transform(this.paymentDecoded.num_satoshis) + ' Sats | Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None'); + this.paymentDecodedHintPost = ''; } } else { this.zeroAmtInvoice = true; @@ -198,11 +206,13 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { } else { this.selectedChannelCtrl.disable(); } - this.paymentDecodedHint = 'Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None'); + this.paymentDecodedHintPre = 'Memo: ' + (this.paymentDecoded.description ? this.paymentDecoded.description : 'None'); + this.paymentDecodedHintPost = ''; } }, error: (err) => { this.logger.error(err); - this.paymentDecodedHint = 'ERROR: ' + err.message; + this.paymentDecodedHintPre = 'ERROR: ' + err.message; + this.paymentDecodedHintPost = ''; this.paymentReq.control.setErrors({ decodeError: true }); } }); @@ -234,7 +244,8 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { this.zeroAmtInvoice = false; this.paymentReq.control.setErrors(null); this.paymentError = ''; - this.paymentDecodedHint = ''; + this.paymentDecodedHintPre = ''; + this.paymentDecodedHintPost = ''; } ngOnDestroy() { diff --git a/src/app/lnd/transactions/transactions.component.ts b/src/app/lnd/transactions/transactions.component.ts index 317d7fea..09ef116e 100644 --- a/src/app/lnd/transactions/transactions.component.ts +++ b/src/app/lnd/transactions/transactions.component.ts @@ -8,10 +8,11 @@ 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 { channels, lndNodeSettings } from '../store/lnd.selector'; +import { rootSelectedNode } from '../../store/rtl.selector'; +import { channels } from '../store/lnd.selector'; import { Channel, ChannelsSummary, LightningBalance } from '../../shared/models/lndModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; -import { SelNodeChild } from '../../shared/models/RTLconfig'; +import { Node } from '../../shared/models/RTLconfig'; @Component({ selector: 'rtl-transactions', @@ -41,10 +42,10 @@ export class TransactionsComponent implements OnInit, OnDestroy { } }); this.store.select(channels).pipe(takeUntil(this.unSubs[1]), - withLatestFrom(this.store.select(lndNodeSettings))). - subscribe(([channelsSelector, nodeSettings]: [{ channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }, (SelNodeChild | null)]) => { - this.currencyUnits = nodeSettings?.currencyUnits || []; - if (nodeSettings?.userPersona === UserPersonaEnum.OPERATOR) { + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([channelsSelector, nodeSettings]: [{ channels: Channel[], channelsSummary: ChannelsSummary, lightningBalance: LightningBalance, apiCallStatus: ApiCallStatusPayload }, (Node | null)]) => { + this.currencyUnits = nodeSettings?.settings.currencyUnits || []; + if (nodeSettings?.settings.userPersona === UserPersonaEnum.OPERATOR) { this.balances = [{ title: 'Local Capacity', dataValue: (channelsSelector.lightningBalance.local || 0), tooltip: 'Amount you can send' }, { title: 'Remote Capacity', dataValue: (channelsSelector.lightningBalance.remote || 0), tooltip: 'Amount you can receive' }]; } else { this.balances = [{ title: 'Outbound Capacity', dataValue: (channelsSelector.lightningBalance.local || 0), tooltip: 'Amount you can send' }, { title: 'Inbound Capacity', dataValue: (channelsSelector.lightningBalance.remote || 0), tooltip: 'Amount you can receive' }]; diff --git a/src/app/lnd/wallet/initialize/initialize.component.ts b/src/app/lnd/wallet/initialize/initialize.component.ts index 135d1bbb..c4a913eb 100644 --- a/src/app/lnd/wallet/initialize/initialize.component.ts +++ b/src/app/lnd/wallet/initialize/initialize.component.ts @@ -8,8 +8,7 @@ import { MatStepper } from '@angular/material/stepper'; import { LNDEffects } from '../../store/lnd.effects'; import { RTLState } from '../../../store/rtl.state'; -import { updateSelectedNodeOptions } from '../../../store/rtl.actions'; -import { fetchInfoLND, genSeed, initWallet } from '../../store/lnd.actions'; +import { fetchInfoLND, genSeed, initWallet, updateSelectedNodeOptions } from '../../store/lnd.actions'; export function matchedPasswords(control: UntypedFormGroup): ValidationErrors | null { const initWalletPassword = control.get('initWalletPassword'); diff --git a/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts b/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts index 4dc4a9bb..13a9d6af 100644 --- a/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts +++ b/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts @@ -1,5 +1,5 @@ import { Component, Input, OnInit, OnChanges, OnDestroy } from '@angular/core'; -import { Subject } from 'rxjs'; +import { Subject, forkJoin } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; @@ -22,13 +22,13 @@ export class CurrencyUnitConverterComponent implements OnInit, OnChanges, OnDest public currencyUnits: string[] = []; public fiatConversion = false; public conversionErrorMsg = ''; - private unSubs = [new Subject(), new Subject(), new Subject()]; + private unSubs = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(public commonService: CommonService, private store: Store) { } ngOnChanges() { if (this.currencyUnits.length > 1 && this.values[0] && this.values[0].dataValue >= 0) { - this.getCurrencyValues(this.values); + this.getCurrencyValues(); } } @@ -40,35 +40,45 @@ export class CurrencyUnitConverterComponent implements OnInit, OnChanges, OnDest this.currencyUnits.splice(2, 1); } if (this.currencyUnits.length > 1 && this.values[0] && this.values[0].dataValue >= 0) { - this.getCurrencyValues(this.values); + this.getCurrencyValues(); } }); } - getCurrencyValues(values) { - values.forEach((value) => { - if (value.dataValue > 0) { - this.commonService.convertCurrency(value.dataValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.BTC, '', true). - pipe(takeUntil(this.unSubs[1])). - subscribe((data) => { - value[CurrencyUnitEnum.BTC] = data.BTC; - }); - this.commonService.convertCurrency(value.dataValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, this.currencyUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[2])). - subscribe({ - next: (data) => { - value[CurrencyUnitEnum.OTHER] = data.OTHER; - }, error: (err) => { - this.conversionErrorMsg = 'Conversion Error: ' + err; + getCurrencyValues() { + this.commonService.convertCurrency(this.values[0].dataValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.BTC, '', true). + pipe(takeUntil(this.unSubs[1])). + subscribe((data) => { + this.values[0][CurrencyUnitEnum.BTC] = data.BTC; + }); + this.commonService.convertCurrency(this.values[0].dataValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, this.currencyUnits[2], this.fiatConversion). + pipe(takeUntil(this.unSubs[2])). + subscribe({ + next: (data) => { + this.values[0][CurrencyUnitEnum.OTHER] = data.OTHER; + if (data.unit && data.unit !== '') { + for (let i = 1; i < this.values.length; i++) { + const value = this.values[i]; + this.commonService.convertCurrency(value.dataValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.BTC, '', true). + pipe(takeUntil(this.unSubs[3])). + subscribe((data) => { + this.values[i][CurrencyUnitEnum.BTC] = data.BTC; + }); + this.commonService.convertCurrency(value.dataValue, CurrencyUnitEnum.SATS, CurrencyUnitEnum.OTHER, this.currencyUnits[2], this.fiatConversion). + pipe(takeUntil(this.unSubs[4])). + subscribe({ + next: (data) => { + this.values[i][CurrencyUnitEnum.OTHER] = data.OTHER; + }, error: (err) => { + this.conversionErrorMsg = 'Conversion Error: ' + err; + } + }); } - }); - } else { - value[CurrencyUnitEnum.BTC] = value.dataValue; - if (this.conversionErrorMsg === '') { - value[CurrencyUnitEnum.OTHER] = value.dataValue; + } + }, error: (err) => { + this.conversionErrorMsg = 'Conversion Error: ' + err; } - } - }); + }); } ngOnDestroy() { 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 8bf5c1ec..022c356b 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 @@ -11,12 +11,12 @@ - + - +
@@ -48,7 +48,7 @@

{{obj.title}}

- + @@ -69,13 +69,14 @@ +   -
+
diff --git a/src/app/shared/components/data-modal/alert-message/alert-message.component.ts b/src/app/shared/components/data-modal/alert-message/alert-message.component.ts index 9475c9c2..98e61c82 100644 --- a/src/app/shared/components/data-modal/alert-message/alert-message.component.ts +++ b/src/app/shared/components/data-modal/alert-message/alert-message.component.ts @@ -1,11 +1,19 @@ import { Component, OnInit, AfterViewChecked, Inject, ViewChild, ElementRef, OnDestroy, Renderer2 } from '@angular/core'; import { Router } from '@angular/router'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; +import { Store } from '@ngrx/store'; + import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { MatSnackBar } from '@angular/material/snack-bar'; +import { faUpRightFromSquare } from '@fortawesome/free-solid-svg-icons'; +import { RTLState } from '../../../../store/rtl.state'; +import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { Node } from '../../../models/RTLconfig'; import { CommonService } from '../../../services/common.service'; import { LoggerService } from '../../../services/logger.service'; -import { AlertData } from '../../../models/alertData'; +import { AlertData, MessageDataField } from '../../../models/alertData'; import { AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, LoopStateEnum } from '../../../services/consts-enums-functions'; @Component({ @@ -31,6 +39,7 @@ export class AlertMessageComponent implements OnInit, AfterViewChecked, OnDestro } private unlistenStart: () => void; private unlistenEnd: () => void; + public faUpRightFromSquare = faUpRightFromSquare; public LoopStateEnum = LoopStateEnum; public goToFieldValue = ''; public goToName = ''; @@ -47,8 +56,10 @@ export class AlertMessageComponent implements OnInit, AfterViewChecked, OnDestro public screenSizeEnum = ScreenSizeEnum; public scrollDirection = 'DOWN'; public shouldScroll = true; + public selNode: Node; + private unSubs: Array> = [new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: AlertData, private logger: LoggerService, private snackBar: MatSnackBar, private commonService: CommonService, private renderer: Renderer2, private router: Router) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: AlertData, private logger: LoggerService, private snackBar: MatSnackBar, private commonService: CommonService, private renderer: Renderer2, private router: Router, private store: Store) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); @@ -66,6 +77,11 @@ export class AlertMessageComponent implements OnInit, AfterViewChecked, OnDestro } } this.logger.info(this.messageObjs); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])). + subscribe((selNode) => { + this.selNode = selNode; + this.logger.info(this.selNode); + }); } ngAfterViewChecked() { @@ -96,6 +112,10 @@ export class AlertMessageComponent implements OnInit, AfterViewChecked, OnDestro this.onClose(); } + onExplorerClicked(obj: MessageDataField) { + window.open(this.selNode.settings.blockExplorerUrl + '/' + obj.explorerLink + '/' + obj.value, '_blank'); + } + ngOnDestroy() { if (this.unlistenStart) { this.unlistenStart(); @@ -103,6 +123,10 @@ export class AlertMessageComponent implements OnInit, AfterViewChecked, OnDestro if (this.unlistenEnd) { this.unlistenEnd(); } + this.unSubs.forEach((completeSub) => { + completeSub.next(null); + completeSub.complete(); + }); } } 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 1f1dd1aa..50839f73 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 @@ -5,7 +5,7 @@ {{data.alertTitle || alertTypeEnum[data.type]}} - +
@@ -37,7 +37,7 @@   -
+ @@ -45,14 +45,14 @@

{{data.titleMessage}}

- + {{getInput.placeholder}} {{getInput.placeholder}} is required. {{getInput.hintFunction ? getInput.hintFunction(getInput.inputValue) : getInput.hintText}} -
+
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 f8c948d2..9e809197 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 @@ -32,7 +32,7 @@ You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator.
-
+
Secret Code @@ -49,7 +49,7 @@ {{tokenFormLabel}}
-
+
Token @@ -84,7 +84,7 @@ -
+
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 28a19be2..a499c5c9 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 @@ -12,10 +12,9 @@ import * as sha256 from 'sha256'; import { RTLConfiguration } from '../../../models/RTLconfig'; import { AuthConfig } from '../../../models/alertData'; - import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; -import { isAuthorized, twoFASaveSettings } from '../../../../store/rtl.actions'; +import { isAuthorized, updateApplicationSettings } from '../../../../store/rtl.actions'; @Component({ selector: 'rtl-two-factor-auth', @@ -92,7 +91,9 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { onVerifyToken(): boolean | void { if (this.appConfig?.enable2FA) { - this.store.dispatch(twoFASaveSettings({ payload: { secret2fa: '' } })); + this.appConfig.enable2FA = false; + this.appConfig.secret2FA = ''; + this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: false, message: 'Two factor authentication disabled successfully.', config: this.appConfig } })); this.generateSecret(); this.isTokenValid = true; } else { @@ -104,13 +105,12 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { this.tokenFormGroup.controls.token.setErrors({ notValid: true }); return true; } - this.store.dispatch(twoFASaveSettings({ payload: { secret2fa: this.secretFormGroup.controls.secret.value } })); + this.appConfig.enable2FA = true; + this.appConfig.secret2FA = this.secretFormGroup.controls.secret.value; + this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: false, message: 'Two factor authentication enabled successfully.', config: this.appConfig } })); this.tokenFormGroup.controls.token.setValue(''); } this.flgValidated = true; - if (this.appConfig) { - this.appConfig.enable2FA = !this.appConfig?.enable2FA; - } } stepSelectionChanged(event: any) { diff --git a/src/app/shared/components/help/help.component.ts b/src/app/shared/components/help/help.component.ts index 9fe62361..9465084b 100644 --- a/src/app/shared/components/help/help.component.ts +++ b/src/app/shared/components/help/help.component.ts @@ -4,7 +4,7 @@ import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faQuestion } from '@fortawesome/free-solid-svg-icons'; -import { HelpTopic, ConfigSettingsNode } from '../../models/RTLconfig'; +import { HelpTopic, Node } from '../../models/RTLconfig'; import { SessionService } from '../../services/session.service'; import { RTLState } from '../../../store/rtl.state'; @@ -19,7 +19,7 @@ export class HelpComponent implements OnInit, OnDestroy { public helpTopics: Array = []; public faQuestion = faQuestion; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; public LNPLink = '/lnd/'; public flgLoggedIn = false; private unSubs = [new Subject(), new Subject(), new Subject(), new Subject()]; @@ -272,7 +272,7 @@ export class HelpComponent implements OnInit, OnDestroy { ' Offers and Liquidity Ads can be enabled/disabled.\n' + 'Show LN Config (if configured)\n' + ' Shows lightning config file.\n', - link: '../config/layout', + link: '../config/nodesettings', linkCaption: 'Node Settings', lnImplementation: 'ALL' })); diff --git a/src/app/shared/components/ln-services/boltz/boltz-root.component.ts b/src/app/shared/components/ln-services/boltz/boltz-root.component.ts index a8b5668f..c7ca4218 100755 --- a/src/app/shared/components/ln-services/boltz/boltz-root.component.ts +++ b/src/app/shared/components/ln-services/boltz/boltz-root.component.ts @@ -32,6 +32,7 @@ export class BoltzRootComponent implements OnInit, OnDestroy { constructor(private router: Router, private store: Store, private boltzService: BoltzService) { } ngOnInit() { + this.boltzService.getBoltzInfo(); this.boltzService.listSwaps(); const linkFound = this.links.find((link) => this.router.url.includes(link.link)); this.activeTab = linkFound ? linkFound : this.links[0]; 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 51316703..934492ba 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 @@ -2,7 +2,7 @@
{{swapDirectionCaption}}
-
+
@@ -16,7 +16,7 @@
-
+
Amount @@ -26,6 +26,18 @@ Amount must be greater than or equal to {{serviceInfo?.limits?.minimal | number}}. Amount must be less than or equal to {{serviceInfo?.limits?.maximal | number}}. +
+
+ Accept Zero Conf + info_outline +
+
+
+
+ Send from Internal Wallet + info_outline +
+
@@ -73,7 +85,7 @@ -
+
@@ -81,7 +93,7 @@
- +
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 6f93f0fa..3ccf0256 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 @@ -1,24 +1,20 @@ import { Component, OnInit, Inject, OnDestroy, ViewChild, AfterViewInit } from '@angular/core'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms'; -import { Router } from '@angular/router'; import { DecimalPipe } from '@angular/common'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; import { MatStepper } from '@angular/material/stepper'; -import { Store } from '@ngrx/store'; import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { opacityAnimation } from '../../../../animation/opacity-animation'; import { ScreenSizeEnum, SwapTypeEnum } from '../../../../services/consts-enums-functions'; -import { ServiceInfo, CreateSwapResponse, CreateReverseSwapResponse } from '../../../../models/boltzModels'; +import { ServiceInfo, CreateSwapResponse, CreateReverseSwapResponse, BoltzInfo } from '../../../../models/boltzModels'; import { SwapAlert } from '../../../../models/alertData'; import { BoltzService } from '../../../../services/boltz.service'; import { LoggerService } from '../../../../services/logger.service'; import { CommonService } from '../../../../services/common.service'; -import { RTLState } from '../../../../../store/rtl.state'; - @Component({ selector: 'rtl-boltz-swap-modal', templateUrl: './swap-modal.component.html', @@ -29,6 +25,7 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { @ViewChild('stepper', { static: false }) stepper: MatStepper; public faInfoCircle = faInfoCircle; + public boltzInfo: BoltzInfo = null; public serviceInfo: ServiceInfo = { fees: { percentage: null, miner: { normal: null, reverse: null } }, limits: { minimal: 10000, maximal: 50000000 } }; public swapTypeEnum = SwapTypeEnum; public direction = SwapTypeEnum.SWAP_OUT; @@ -42,6 +39,7 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { public screenSizeEnum = ScreenSizeEnum; public animationDirection = 'forward'; public flgEditable = true; + public isSendFromInternalCompatible = true; inputFormGroup: UntypedFormGroup; addressFormGroup: UntypedFormGroup; statusFormGroup: UntypedFormGroup; @@ -56,7 +54,9 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { this.swapDirectionCaption = this.direction === SwapTypeEnum.SWAP_OUT ? 'Swap Out' : 'Swap in'; this.inputFormLabel = 'Amount to ' + this.swapDirectionCaption; this.inputFormGroup = this.formBuilder.group({ - amount: [this.serviceInfo.limits?.minimal, [Validators.required, Validators.min(this.serviceInfo.limits?.minimal || 0), Validators.max(this.serviceInfo.limits?.maximal || 0)]] + amount: [this.serviceInfo.limits?.minimal, [Validators.required, Validators.min(this.serviceInfo.limits?.minimal || 0), Validators.max(this.serviceInfo.limits?.maximal || 0)]], + acceptZeroConf: [false], + sendFromInternal: [true] }); this.addressFormGroup = this.formBuilder.group({ addressType: ['local', [Validators.required]], @@ -64,6 +64,17 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { }); this.statusFormGroup = this.formBuilder.group({}); this.onFormValueChanges(); + this.boltzService.boltzInfoChanged. + pipe(takeUntil(this.unSubs[0])). + subscribe({ + next: (boltzInfo: BoltzInfo) => { + this.boltzInfo = boltzInfo; + this.isSendFromInternalCompatible = this.commonService.isVersionCompatible(this.boltzInfo.version, '2.0.0'); + }, error: (err) => { + this.boltzInfo = { version: '2.0.0' }; + this.logger.error(err); + } + }); } ngAfterViewInit() { @@ -74,7 +85,7 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { onFormValueChanges() { if (this.direction === SwapTypeEnum.SWAP_OUT) { - this.addressFormGroup.valueChanges.pipe(takeUntil(this.unSubs[2])).subscribe((changedValues) => { + this.addressFormGroup.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((changedValues) => { this.addressFormGroup.setErrors({ Invalid: true }); }); } @@ -104,7 +115,7 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { this.stepper.selected?.stepControl.setErrors(null); this.stepper.next(); if (this.direction === SwapTypeEnum.SWAP_IN) { - this.boltzService.swapIn(this.inputFormGroup.controls.amount.value).pipe(takeUntil(this.unSubs[3])). + this.boltzService.swapIn(this.inputFormGroup.controls.amount.value, this.isSendFromInternalCompatible ? this.inputFormGroup.controls.sendFromInternal.value : null).pipe(takeUntil(this.unSubs[2])). subscribe({ next: (swapStatus: CreateSwapResponse) => { this.swapStatus = swapStatus; @@ -119,7 +130,7 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { }); } else { const destAddress = this.addressFormGroup.controls.addressType.value === 'external' ? this.addressFormGroup.controls.address.value : ''; - this.boltzService.swapOut(this.inputFormGroup.controls.amount.value, destAddress).pipe(takeUntil(this.unSubs[4])). + this.boltzService.swapOut(this.inputFormGroup.controls.amount.value, destAddress, this.inputFormGroup.controls.acceptZeroConf.value).pipe(takeUntil(this.unSubs[3])). subscribe({ next: (swapStatus: CreateReverseSwapResponse) => { this.swapStatus = swapStatus; @@ -145,9 +156,9 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { case 1: if (this.inputFormGroup.controls.amount.value) { if (this.direction === SwapTypeEnum.SWAP_IN) { - this.inputFormLabel = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats'; + this.inputFormLabel = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Send from Internal Wallet: ' + (this.inputFormGroup.controls.sendFromInternal.value ? 'Yes' : 'No'); } else { - this.inputFormLabel = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats'; + this.inputFormLabel = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Zero Conf: ' + (this.inputFormGroup.controls.acceptZeroConf.value ? 'Yes' : 'No'); } } else { this.inputFormLabel = 'Amount to ' + this.swapDirectionCaption; @@ -190,10 +201,11 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { onRestart() { this.stepper.reset(); this.flgEditable = true; - this.inputFormGroup.reset({ amount: this.serviceInfo.limits?.minimal }); + this.inputFormGroup.reset({ amount: this.serviceInfo.limits?.minimal, acceptZeroConf: false, sendFromInternal: true }); this.statusFormGroup.reset(); this.addressFormGroup.reset({ addressType: 'local', address: '' }); this.addressFormGroup.controls.address.disable(); + this.swapStatus = null; } ngOnDestroy() { diff --git a/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.html b/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.html index 9d07fe88..5c21ef15 100755 --- a/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.html +++ b/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.html @@ -43,7 +43,7 @@
- Step 1: Deciding to Reverse Submarine Swap + Step 1: Deciding to Reverse Submarine Swap
diff --git a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html index 8a42a96d..88c3c8f2 100755 --- a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html +++ b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html @@ -7,22 +7,22 @@
-
+

ID

{{swapStatus?.id}}
-
+

Routing Fee (mSats)

{{swapStatus?.routingFeeMilliSat | number}}
+
+

Claim Transaction ID

+ {{swapStatus?.claimTransactionId}} +
-
-

Claim Transaction ID

- {{swapStatus?.claimTransactionId}} -
-
+

Lockup Address

{{swapStatus?.lockupAddress}}
@@ -30,29 +30,48 @@
-
-
-
-

ID

- {{swapStatus?.id}} -
-
-

Expected Amount (Sats)

- {{swapStatus?.expectedAmount | number}} -
+
+ - -
-
-

Address

- {{swapStatus?.address}} -
-
- -
-
-

BIP 21

- {{swapStatus?.bip21}} +
+
+ + +
+
+

Transaction ID

+ {{swapStatus?.txId}} +
+
+
+
+

ID

+ {{swapStatus?.id}} +
+
+

Expected Amount (Sats)

+ {{swapStatus?.expectedAmount | number}} +
+
+ +
+
+

Address

+ {{swapStatus?.address}} +
+
+ +
+
+

BIP 21

+ {{swapStatus?.bip21}} +
+
diff --git a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.spec.ts b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.spec.ts index 35ad4e60..3f26919c 100755 --- a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.spec.ts +++ b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.spec.ts @@ -1,6 +1,9 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; import { SharedModule } from '../../../../shared.module'; +import { DataService } from '../../../../services/data.service'; +import { CommonService } from '../../../../services/common.service'; +import { mockDataService } from '../../../../test-helpers/mock-services'; import { SwapStatusComponent } from './swap-status.component'; describe('SwapStatusComponent', () => { @@ -10,7 +13,11 @@ describe('SwapStatusComponent', () => { beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [SwapStatusComponent], - imports: [SharedModule] + imports: [SharedModule], + providers: [ + CommonService, + { provide: DataService, useClass: mockDataService } + ] }). compileComponents(); })); diff --git a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts index 25a1b1ab..f4371625 100755 --- a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts @@ -1,18 +1,31 @@ -import { Component, Input } from '@angular/core'; +import { Component, Input, OnInit } from '@angular/core'; -import { SwapTypeEnum } from '../../../../services/consts-enums-functions'; +import { SwapTypeEnum, ScreenSizeEnum } from '../../../../services/consts-enums-functions'; +import { CommonService } from '../../../../services/common.service'; @Component({ selector: 'rtl-boltz-swap-status', templateUrl: './swap-status.component.html', styleUrls: ['./swap-status.component.scss'] }) -export class SwapStatusComponent { +export class SwapStatusComponent implements OnInit { @Input() swapStatus: any = null; @Input() direction = SwapTypeEnum.SWAP_OUT; + @Input() acceptZeroConf = false; + @Input() sendFromInternal = true; + public qrWidth = 240; + public screenSize = ''; + public screenSizeEnum = ScreenSizeEnum; public swapTypeEnum = SwapTypeEnum; - constructor() {} + constructor(private commonService: CommonService) {} + + ngOnInit() { + this.screenSize = this.commonService.getScreenSize(); + if (this.screenSize === ScreenSizeEnum.XS) { + this.qrWidth = 180; + } + } } 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 0b827638..87194159 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 @@ -7,6 +7,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { Swap, ReverseSwap } from '../../../../models/boltzModels'; 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'; @@ -19,7 +20,7 @@ import { ColumnDefinition, PageSettings, TableSetting } from '../../../../models import { lndPageSettings } from '../../../../../lnd/store/lnd.selector'; import { ApiCallStatusPayload } from '../../../../models/apiCallsPayload'; import { CamelCaseWithReplacePipe } from '../../../../pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-boltz-swaps', @@ -147,7 +148,7 @@ export class BoltzSwapsComponent implements OnInit, AfterViewInit, OnChanges, On 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 = [ + const reorderedSwap: MessageDataField[][] = [ [{ 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, 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 3bd2c8fd..bc9cd4e9 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 @@
-
+
Amount @@ -45,7 +45,7 @@ Percentage must be a positive number.
-
+
Fast info_outline
@@ -106,7 +106,7 @@ -
+
diff --git a/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.html b/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.html index be7a269c..231bc7a9 100755 --- a/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.html +++ b/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.html @@ -119,7 +119,7 @@
- Step 1: Deciding to Loop Out + Step 1: Deciding to Loop Out
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 96856ab9..0e29e1fd 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,4 +1,5 @@ import { Component, OnChanges, OnDestroy, ViewChild, Input, AfterViewInit, SimpleChanges, OnInit } from '@angular/core'; +import { DatePipe } from '@angular/common'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; @@ -7,6 +8,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; import { LoopSwapStatus } from '../../../../models/loopModels'; 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'; @@ -19,8 +21,7 @@ import { ColumnDefinition, PageSettings, TableSetting } from '../../../../models import { lndPageSettings } from '../../../../../lnd/store/lnd.selector'; import { ApiCallStatusPayload } from '../../../../models/apiCallsPayload'; import { CamelCaseWithReplacePipe } from '../../../../pipes/app.pipe'; -import { DatePipe } from '@angular/common'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ selector: 'rtl-swaps', @@ -127,7 +128,7 @@ export class SwapsComponent implements OnInit, AfterViewInit, OnChanges, OnDestr onSwapClick(selSwap: LoopSwapStatus, event: any) { this.loopService.getSwap(selSwap.id_bytes?.replace(/\//g, '_')?.replace(/\+/g, '-') || '').pipe(takeUntil(this.unSubs[1])). subscribe((fetchedSwap: LoopSwapStatus) => { - const reorderedSwap = [ + const reorderedSwap: MessageDataField[][] = [ [{ key: 'state', value: LoopStateEnum[fetchedSwap.state || ''], title: 'Status', width: 50, type: DataTypeEnum.STRING }, { key: 'amt', value: fetchedSwap.amt, title: 'Amount (Sats)', width: 50, type: DataTypeEnum.NUMBER }], [{ key: 'initiation_time', value: (fetchedSwap.initiation_time || 0) / 1000000000, title: 'Initiation Time', width: 50, type: DataTypeEnum.DATE_TIME }, diff --git a/src/app/shared/components/login/login.component.html b/src/app/shared/components/login/login.component.html index 40862cc8..a1342c7c 100644 --- a/src/app/shared/components/login/login.component.html +++ b/src/app/shared/components/login/login.component.html @@ -21,10 +21,14 @@ Password is required. -

- close +

+ close {{loginErrorMessage}}

+

+ close + {{logoutReason}} +

diff --git a/src/app/shared/components/login/login.component.ts b/src/app/shared/components/login/login.component.ts index d5359c05..83483729 100644 --- a/src/app/shared/components/login/login.component.ts +++ b/src/app/shared/components/login/login.component.ts @@ -1,13 +1,14 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; import { Subject, combineLatest } from 'rxjs'; -import { take, takeUntil } from 'rxjs/operators'; +import { filter, take, takeUntil } from 'rxjs/operators'; import * as sha256 from 'sha256'; import { Store } from '@ngrx/store'; +import { Actions } from '@ngrx/effects'; import { faUnlockAlt } from '@fortawesome/free-solid-svg-icons'; import { LoginTokenComponent } from '../data-modal/login-2fa-token/login-2fa-token.component'; import { RTLConfiguration } from '../../models/RTLconfig'; -import { APICallStatusEnum, PASSWORD_BLACKLIST, ScreenSizeEnum } from '../../services/consts-enums-functions'; +import { APICallStatusEnum, PASSWORD_BLACKLIST, RTLActions, ScreenSizeEnum } from '../../services/consts-enums-functions'; import { CommonService } from '../../services/common.service'; import { LoggerService } from '../../services/logger.service'; @@ -25,6 +26,7 @@ export class LoginComponent implements OnInit, OnDestroy { public faUnlockAlt = faUnlockAlt; public appConfig: RTLConfiguration; + public logoutReason = ''; public password = ''; public rtlSSO = 0; public rtlCookiePath = ''; @@ -36,7 +38,7 @@ export class LoginComponent implements OnInit, OnDestroy { public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { } + constructor(private actions: Actions, private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); @@ -56,6 +58,10 @@ export class LoginComponent implements OnInit, OnDestroy { this.appConfig = appConfig; this.logger.info(appConfig); }); + this.actions.pipe(filter((action) => action.type === RTLActions.LOGOUT), take(1)). + subscribe((action: any) => { + this.logoutReason = action.payload; + }); } onLogin(): boolean | void { @@ -63,6 +69,7 @@ export class LoginComponent implements OnInit, OnDestroy { return true; } this.loginErrorMessage = ''; + this.logoutReason = ''; if (this.appConfig.enable2FA) { this.store.dispatch(openAlert({ payload: { @@ -87,6 +94,7 @@ export class LoginComponent implements OnInit, OnDestroy { resetData() { this.password = ''; this.loginErrorMessage = ''; + this.logoutReason = ''; this.flgShow = false; } diff --git a/src/app/shared/components/navigation/side-navigation/side-navigation.component.html b/src/app/shared/components/navigation/side-navigation/side-navigation.component.html index 02313926..f98832b7 100644 --- a/src/app/shared/components/navigation/side-navigation/side-navigation.component.html +++ b/src/app/shared/components/navigation/side-navigation/side-navigation.component.html @@ -8,11 +8,11 @@ - + -
+
- + {{node.icon}} {{node.name}} 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 05f068d6..839784f1 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 @@ -8,7 +8,7 @@ import { NestedTreeControl } from '@angular/cdk/tree'; import { MatTreeNestedDataSource, MatTree } from '@angular/material/tree'; import { faEject, faEye } from '@fortawesome/free-solid-svg-icons'; -import { RTLConfiguration, ConfigSettingsNode, Settings, GetInfoRoot } from '../../../models/RTLconfig'; +import { RTLConfiguration, Node, GetInfoRoot } from '../../../models/RTLconfig'; import { LoggerService } from '../../../services/logger.service'; import { SessionService } from '../../../services/session.service'; import { GetInfoChain } from '../../../models/lndModels'; @@ -34,8 +34,7 @@ export class SideNavigationComponent implements OnInit, OnDestroy { faEye = faEye; public appConfig: RTLConfiguration; public selConfigNodeIndex: Number; - public selNode: ConfigSettingsNode | any; - public settings: Settings | null; + public selNode: Node | any; public version = ''; public information: GetInfoRoot = {}; public informationChain: GetInfoChain = {}; @@ -73,7 +72,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 | null }) => { + subscribe((rootData: { nodeDate: GetInfoRoot, selNode: Node | null }) => { this.information = rootData.nodeDate; if (this.information.identity_pubkey) { if (this.information.chains && typeof this.information.chains[0] === 'string') { @@ -93,7 +92,6 @@ export class SideNavigationComponent implements OnInit, OnDestroy { this.smallScreen = true; } this.selNode = rootData.selNode; - this.settings = this.selNode?.settings || null; this.selConfigNodeIndex = +(rootData.selNode?.index || 0); if (this.selNode && this.selNode.lnImplementation) { this.filterSideMenuNodes(); @@ -130,7 +128,7 @@ export class SideNavigationComponent implements OnInit, OnDestroy { subscribe((confirmRes) => { if (confirmRes) { this.showLogout = false; - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: '' })); } }); } @@ -162,12 +160,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.selNode.settings.userPersona) && navMenuChild.link !== '/services/loop' && navMenuChild.link !== '/services/boltz') || + (navMenuChild.link === '/services/loop' && this.selNode.settings.swapServerUrl && this.selNode.settings.swapServerUrl.trim() !== '') || + (navMenuChild.link === '/services/boltz' && this.selNode.settings.boltzServerUrl && this.selNode.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.selNode.settings.userPersona; }); } @@ -176,11 +174,12 @@ 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 !== '/services/peerswap') || - (navMenuChild.link === '/services/peerswap' && this.settings?.enablePeerswap)); + navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.selNode.settings.userPersona) && navMenuChild.link !== '/services/peerswap') || + (navMenuChild.link === '/services/peerswap' && this.selNode.settings.enablePeerswap) || + (navMenuChild.link === '/services/boltz' && this.selNode.settings.boltzServerUrl && this.selNode.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.selNode.settings.userPersona; }); } 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 f5124934..7526c1fc 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 @@ -90,7 +90,7 @@ export class TopMenuComponent implements OnInit, OnDestroy { subscribe((confirmRes) => { if (confirmRes) { this.showLogout = false; - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: '' })); } }); } 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 c939c7cb..893ea324 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 @@ -99,11 +99,11 @@
-
+
- +
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 cc200a70..33ac8480 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 @@ -7,14 +7,11 @@ import { faInfoCircle, faCode, faExclamationTriangle } from '@fortawesome/free-s import { LoggerService } from '../../../services/logger.service'; import { RTLState } from '../../../../store/rtl.state'; import { rootSelectedNode } from '../../../../store/rtl.selector'; -import { ConfigSettingsNode } from '../../../models/RTLconfig'; -import { updateServiceSettings } from '../../../../store/rtl.actions'; -import { setChildNodeSettingsLND } from '../../../../lnd/store/lnd.actions'; -import { setChildNodeSettingsCLN } from '../../../../cln/store/cln.actions'; -import { setChildNodeSettingsECL } from '../../../../eclair/store/ecl.actions'; +import { Node } from '../../../models/RTLconfig'; +import { updateNodeSettings } from '../../../../store/rtl.actions'; import { DataService } from '../../../services/data.service'; import { CommonService } from '../../../services/common.service'; -import { ServicesEnum, UI_MESSAGES, LADS_POLICY } from '../../../services/consts-enums-functions'; +import { LADS_POLICY } from '../../../services/consts-enums-functions'; import { utxoBalances } from '../../../../cln/store/cln.selector'; import { Balance, FunderPolicy, LocalRemoteBalance, UTXO } from '../../../models/clnModels'; import { ApiCallStatusPayload } from '../../../models/apiCallsPayload'; @@ -31,7 +28,7 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { public faCode = faCode; public features = [{ name: 'Offers', enabled: false }, { name: 'Channel Funding Policy', enabled: false }]; public enableOffers = false; - public selNode: ConfigSettingsNode; + public selNode: Node; public fundingPolicy: FunderPolicy = {}; public policyTypes = LADS_POLICY; public selPolicyType = LADS_POLICY[0]; @@ -44,7 +41,6 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { public updateMsg: { error?: string } | { data?: string } = {}; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(private logger: LoggerService, private store: Store, private dataService: DataService, private commonService: CommonService) { } ngOnInit() { @@ -91,25 +87,7 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { this.logger.info(this.selNode); this.selNode.settings.enableOffers = this.enableOffers; this.features[0].enabled = this.enableOffers; - this.store.dispatch(updateServiceSettings({ payload: { uiMessage: UI_MESSAGES.UPDATE_SETTING, service: ServicesEnum.OFFERS, settings: { enableOffers: this.enableOffers } } })); - 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.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers - } - })); - this.store.dispatch(setChildNodeSettingsCLN({ - 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(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.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl, enableOffers: this.enableOffers - } - })); + this.store.dispatch(updateNodeSettings({ payload: this.selNode })); } onUpdateFundingPolicy() { 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 26d0f07d..018e7c5b 100644 --- a/src/app/shared/components/node-config/node-config.component.html +++ b/src/app/shared/components/node-config/node-config.component.html @@ -8,7 +8,7 @@ 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 e4b01c0f..c676371a 100644 --- a/src/app/shared/components/node-config/node-config.component.ts +++ b/src/app/shared/components/node-config/node-config.component.ts @@ -8,7 +8,7 @@ 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, RTLConfiguration } from '../../models/RTLconfig'; +import { Node, RTLConfiguration } from '../../models/RTLconfig'; import { RTLState } from '../../../store/rtl.state'; import { rootAppConfig, rootSelectedNode } from '../../../store/rtl.selector'; @@ -22,7 +22,7 @@ export class NodeConfigComponent implements OnInit, OnDestroy { public faTools = faTools; public showLnConfig = false; public appConfig: RTLConfiguration; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; public 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 = ''; @@ -67,7 +67,7 @@ export class NodeConfigComponent implements OnInit, OnDestroy { } showLnConfigClicked() { - if (!this.appConfig.sso.rtlSSO) { + if (!this.appConfig.SSO.rtlSSO) { this.store.dispatch(openAlert({ payload: { maxWidth: '50rem', 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 62278c7f..da548a22 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,6 +1,27 @@
+ + + + + Block Explorer + + +
+
+ + Configure your own blockchain explorer url or mempool.space will be used. +
+
+ + Block Explorer URL + + Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info + +
+
+
@@ -31,12 +52,14 @@ Fiat conversion calls Blockchain.com API to get conversion rates.
- Enable Fiat Conversion - + Enable Fiat Conversion + Fiat Currency - + - {{currencyUnit.id}} + + + {{currencyUnit.name}} ({{currencyUnit.id}}) Currency unit is required. @@ -91,7 +114,7 @@
- +
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 e652bfcc..e77acb11 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 @@ -1,19 +1,17 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; +import { DomSanitizer } from '@angular/platform-browser'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; -import { faMoneyBillAlt, faPaintBrush, faInfoCircle, faExclamationTriangle, faEyeSlash } from '@fortawesome/free-solid-svg-icons'; +import { faMoneyBillAlt, faPaintBrush, faInfoCircle, faExclamationTriangle, faEyeSlash, faBarsStaggered } 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'; +import { UserPersonaEnum, ScreenSizeEnum, FIAT_CURRENCY_UNITS, NODE_SETTINGS, UI_MESSAGES } from '../../../services/consts-enums-functions'; +import { Node, Settings } from '../../../models/RTLconfig'; import { LoggerService } from '../../../services/logger.service'; import { CommonService } from '../../../services/common.service'; import { RTLState } from '../../../../store/rtl.state'; -import { saveSettings, setSelectedNode } from '../../../../store/rtl.actions'; -import { setChildNodeSettingsECL } from '../../../../eclair/store/ecl.actions'; -import { setChildNodeSettingsCLN } from '../../../../cln/store/cln.actions'; -import { setChildNodeSettingsLND } from '../../../../lnd/store/lnd.actions'; import { rootSelectedNode } from '../../../../store/rtl.selector'; +import { updateNodeSettings, setSelectedNode } from '../../../../store/rtl.actions'; @Component({ selector: 'rtl-node-settings', @@ -22,12 +20,13 @@ import { rootSelectedNode } from '../../../../store/rtl.selector'; }) export class NodeSettingsComponent implements OnInit, OnDestroy { + public faBarsStaggered = faBarsStaggered; public faExclamationTriangle = faExclamationTriangle; public faMoneyBillAlt = faMoneyBillAlt; public faPaintBrush = faPaintBrush; public faInfoCircle = faInfoCircle; public faEyeSlash = faEyeSlash; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; public userPersonas = [UserPersonaEnum.OPERATOR, UserPersonaEnum.MERCHANT]; public currencyUnits = FIAT_CURRENCY_UNITS; public themeModes = NODE_SETTINGS.modes; @@ -42,13 +41,20 @@ export class NodeSettingsComponent implements OnInit, OnDestroy { public screenSizeEnum = ScreenSizeEnum; unSubs: Array> = [new Subject(), new Subject()]; - constructor(private logger: LoggerService, private commonService: CommonService, private store: Store) { + constructor(private logger: LoggerService, private commonService: CommonService, private store: Store, public sanitizer: DomSanitizer) { this.screenSize = this.commonService.getScreenSize(); } ngOnInit() { + this.currencyUnits.map((currencyUnit) => { + if (currencyUnit.iconType === 'SVG' && typeof currencyUnit.symbol === 'string') { + currencyUnit.symbol = currencyUnit.symbol.replace('currencyUnit.symbol); + } + return currencyUnit; + }); this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { - this.selNode = selNode; + this.selNode = JSON.parse(JSON.stringify(selNode)); this.selectedThemeMode = this.themeModes.find((themeMode) => this.selNode.settings.themeMode === themeMode.id) || this.themeModes[0]; this.selectedThemeColor = this.selNode.settings.themeColor; if (!this.selNode.settings.fiatConversion) { @@ -59,31 +65,6 @@ export class NodeSettingsComponent implements OnInit, OnDestroy { }); } - onCurrencyChange(event: any) { - 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, unannouncedChannels: this.selNode.settings.unannouncedChannels, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl - } - })); - this.store.dispatch(setChildNodeSettingsCLN({ - payload: { - 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, unannouncedChannels: this.selNode.settings.unannouncedChannels, - lnImplementation: this.selNode.lnImplementation, swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl - } - })); - } - toggleSettings(toggleField: string, event?: any) { this.selNode.settings[toggleField] = !this.selNode.settings[toggleField]; } @@ -97,36 +78,19 @@ export class NodeSettingsComponent implements OnInit, OnDestroy { this.selNode.settings.themeMode = this.selectedThemeMode.id; } - onUpdateSettings(): boolean | void { + onFiatConversionChange(event: any) { + if (!this.selNode.settings.fiatConversion) { + delete this.selNode.settings.currencyUnit; + } + } + + onUpdateNodeSettings(): boolean | void { if (this.selNode.settings.fiatConversion && !this.selNode.settings.currencyUnit) { return true; } + this.selNode.settings.blockExplorerUrl = this.selNode.settings.blockExplorerUrl.replace(/\/$/, ''); this.logger.info(this.selNode.settings); - 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, unannouncedChannels: this.selNode.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, - swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl - } - })); - this.store.dispatch(setChildNodeSettingsCLN({ - 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(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.settings.unannouncedChannels, lnImplementation: this.selNode.lnImplementation, - swapServerUrl: this.selNode.settings.swapServerUrl, boltzServerUrl: this.selNode.settings.boltzServerUrl - } - })); + this.store.dispatch(updateNodeSettings({ payload: this.selNode })); } onResetSettings() { 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 index 59d99abb..d47ffbbb 100644 --- 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 @@ -72,7 +72,7 @@ close - {{error.message}} + {{error.message}} close 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 index fa15eb7d..98678c5c 100644 --- 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 @@ -11,13 +11,13 @@ 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 { Node } 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 { clnPageSettings } from '../../../../cln/store/cln.selector'; +import { 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 { eclPageSettings } from '../../../../eclair/store/ecl.selector'; import { savePageSettings as savePageSettingsECL } from '../../../../eclair/store/ecl.actions'; @Component({ @@ -29,7 +29,7 @@ export class PageSettingsComponent implements OnInit, OnDestroy { public faPenRuler = faPenRuler; public faExclamationTriangle = faExclamationTriangle; - public selNode: ConfigSettingsNode; + public selNode: Node; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; public pageSizeOptions = PAGE_SIZE_OPTIONS; @@ -57,8 +57,8 @@ export class PageSettingsComponent implements OnInit, OnDestroy { 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)]) => { + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([settings, nodeSettings]: [{ pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }, (Node | null)]) => { const updatedPageSettings = JSON.parse(JSON.stringify(settings.pageSettings)); this.errorMessage = null; this.apiCallStatus = settings.apiCallStatus; @@ -67,14 +67,14 @@ export class PageSettingsComponent implements OnInit, OnDestroy { this.pageSettings = updatedPageSettings; this.initialPageSettings = updatedPageSettings; } else { - if (!nodeSettings?.enableOffers) { + if (!nodeSettings?.settings.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) { + if (!nodeSettings?.settings.enablePeerswap) { const psIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'peerswap'); if (psIdx > -1) { updatedPageSettings.splice(psIdx, 1); } } @@ -95,9 +95,8 @@ export class PageSettingsComponent implements OnInit, OnDestroy { 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)]) => { + this.store.select(eclPageSettings).pipe(takeUntil(this.unSubs[1])). + subscribe((settings: { pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }) => { const updatedPageSettings = JSON.parse(JSON.stringify(settings.pageSettings)); this.errorMessage = null; this.apiCallStatus = settings.apiCallStatus; @@ -124,8 +123,8 @@ export class PageSettingsComponent implements OnInit, OnDestroy { 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)]) => { + withLatestFrom(this.store.select(rootSelectedNode))). + subscribe(([settings, nodeSettings]: [{ pageSettings: PageSettings[], apiCallStatus: ApiCallStatusPayload }, (Node | null)]) => { const updatedPageSettings: PageSettings[] = JSON.parse(JSON.stringify(settings.pageSettings)); this.errorMessage = null; this.apiCallStatus = settings.apiCallStatus; @@ -134,15 +133,15 @@ export class PageSettingsComponent implements OnInit, OnDestroy { this.pageSettings = updatedPageSettings; this.initialPageSettings = updatedPageSettings; } else { - if (!nodeSettings?.swapServerUrl || nodeSettings.swapServerUrl.trim() === '') { + if (!nodeSettings?.settings.swapServerUrl || nodeSettings.settings.swapServerUrl.trim() === '') { const loopIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'loop'); if (loopIdx > -1) { updatedPageSettings.splice(loopIdx, 1); } } - if (!nodeSettings?.boltzServerUrl || nodeSettings.boltzServerUrl.trim() === '') { + if (!nodeSettings?.settings.boltzServerUrl || nodeSettings.settings.boltzServerUrl.trim() === '') { const boltzIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'boltz'); if (boltzIdx > -1) { updatedPageSettings.splice(boltzIdx, 1); } } - if (!nodeSettings?.enablePeerswap) { + if (!nodeSettings?.settings.enablePeerswap) { const psIdx = updatedPageSettings.findIndex((pg) => pg.pageId === 'peerswap'); if (psIdx > -1) { updatedPageSettings.splice(psIdx, 1); } } diff --git a/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.html b/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.html index 59af1125..0c043996 100644 --- a/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.html +++ b/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.html @@ -1,7 +1,7 @@
- Please ensure that boltzd is running and accessible to RTL before enabling this service. Click here to learn more about the installation. + Please ensure that boltzd is running and accessible to RTL before enabling this service. Click here to learn more about the installation.
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 8007c70a..c30f39c4 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 @@ -3,15 +3,11 @@ 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 { Node } from '../../../../models/RTLconfig'; import { LoggerService } from '../../../../services/logger.service'; import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; -import { updateServiceSettings } from '../../../../../store/rtl.actions'; +import { updateNodeSettings } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { setChildNodeSettingsLND } from '../../../../../lnd/store/lnd.actions'; -import { setChildNodeSettingsCLN } from '../../../../../cln/store/cln.actions'; -import { setChildNodeSettingsECL } from '../../../../../eclair/store/ecl.actions'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ @@ -23,8 +19,8 @@ export class BoltzServiceSettingsComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public faInfoCircle = faInfoCircle; - public selNode: ConfigSettingsNode | any; - public previousSelNode: ConfigSettingsNode | any; + public selNode: Node | any; + public previousSelNode: Node | any; public enableBoltz = false; public serverUrl = ''; public macaroonPath = ''; @@ -67,27 +63,14 @@ export class BoltzServiceSettingsComponent implements OnInit, OnDestroy { return true; } this.logger.info(this.selNode); - this.selNode.settings.boltzServerUrl = this.serverUrl; - this.selNode.authentication.boltzMacaroonPath = this.macaroonPath; - this.store.dispatch(updateServiceSettings({ payload: { uiMessage: UI_MESSAGES.UPDATE_BOLTZ_SETTINGS, service: ServicesEnum.BOLTZ, settings: { enable: this.enableBoltz, serverUrl: this.serverUrl, macaroonPath: this.macaroonPath } } })); - 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.serverUrl, enableOffers: this.selNode.settings.enableOffers - } - })); - this.store.dispatch(setChildNodeSettingsCLN({ - 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(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.serverUrl, enableOffers: this.selNode.settings.enableOffers - } - })); + if (!this.enableBoltz) { + delete this.selNode.settings.boltzServerUrl; + delete this.selNode.authentication.boltzMacaroonPath; + } else { + this.selNode.settings.boltzServerUrl = this.serverUrl; + this.selNode.authentication.boltzMacaroonPath = this.macaroonPath; + } + this.store.dispatch(updateNodeSettings({ payload: this.selNode })); } onReset() { 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 3d2a1736..98b2f118 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 @@ -3,15 +3,11 @@ 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 { Node } from '../../../../models/RTLconfig'; import { LoggerService } from '../../../../services/logger.service'; import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; -import { updateServiceSettings } from '../../../../../store/rtl.actions'; +import { updateNodeSettings } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { setChildNodeSettingsLND } from '../../../../../lnd/store/lnd.actions'; -import { setChildNodeSettingsCLN } from '../../../../../cln/store/cln.actions'; -import { setChildNodeSettingsECL } from '../../../../../eclair/store/ecl.actions'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ @@ -23,8 +19,8 @@ export class LoopServiceSettingsComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public faInfoCircle = faInfoCircle; - public selNode: ConfigSettingsNode | any; - public previousSelNode: ConfigSettingsNode | any; + public selNode: Node | any; + public previousSelNode: Node | any; public enableLoop = false; unSubs: Array> = [new Subject(), new Subject()]; @@ -56,26 +52,12 @@ export class LoopServiceSettingsComponent implements OnInit, OnDestroy { if (this.enableLoop && (!this.selNode.settings.swapServerUrl || this.selNode.settings.swapServerUrl.trim() === '' || !this.selNode.authentication.swapMacaroonPath || this.selNode.authentication.swapMacaroonPath.trim() === '')) { return true; } + if (!this.enableLoop) { + delete this.selNode.settings.swapServerUrl; + delete this.selNode.authentication.swapMacaroonPath; + } this.logger.info(this.selNode); - this.store.dispatch(updateServiceSettings({ payload: { uiMessage: UI_MESSAGES.UPDATE_LOOP_SETTINGS, service: ServicesEnum.LOOP, settings: { enable: this.enableLoop, serverUrl: this.selNode.settings.swapServerUrl, macaroonPath: this.selNode.authentication.swapMacaroonPath } } })); - 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 - } - })); - this.store.dispatch(setChildNodeSettingsCLN({ - 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(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 - } - })); + this.store.dispatch(updateNodeSettings({ payload: this.selNode })); } onReset() { diff --git a/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.html b/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.html new file mode 100644 index 00000000..47da3211 --- /dev/null +++ b/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.html @@ -0,0 +1,9 @@ +
+ + +
+
No Service Found!
+
+
+
+
diff --git a/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts b/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts new file mode 100644 index 00000000..8048a129 --- /dev/null +++ b/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'rtl-no-service-found', + templateUrl: './no-service-found.component.html' +}) +export class NoServiceFoundComponent { + + constructor() {} + +} 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 index cdc736ff..89a2c1a6 100644 --- 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 @@ -3,15 +3,11 @@ 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 { Node } from '../../../../models/RTLconfig'; import { LoggerService } from '../../../../services/logger.service'; import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; -import { updateServiceSettings } from '../../../../../store/rtl.actions'; +import { updateNodeSettings } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; -import { setChildNodeSettingsLND } from '../../../../../lnd/store/lnd.actions'; -import { setChildNodeSettingsCLN } from '../../../../../cln/store/cln.actions'; -import { setChildNodeSettingsECL } from '../../../../../eclair/store/ecl.actions'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ @@ -22,7 +18,7 @@ import { rootSelectedNode } from '../../../../../store/rtl.selector'; export class PeerswapServiceSettingsComponent implements OnInit, OnDestroy { public faInfoCircle = faInfoCircle; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; public enablePeerswap = false; unSubs: Array> = [new Subject(), new Subject()]; @@ -39,25 +35,7 @@ export class PeerswapServiceSettingsComponent implements OnInit, OnDestroy { } 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(setChildNodeSettingsCLN({ - 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 - } - })); + this.store.dispatch(updateNodeSettings({ payload: this.selNode })); } ngOnDestroy() { 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 90faa757..44199bd2 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 @@ -8,9 +8,11 @@
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 8c564115..0eefd193 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 @@ -3,7 +3,7 @@ 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 { Node } from '../../../models/RTLconfig'; import { Store } from '@ngrx/store'; import { RTLState } from '../../../../store/rtl.state'; import { rootSelectedNode } from '../../../../store/rtl.selector'; @@ -16,36 +16,36 @@ import { rootSelectedNode } from '../../../../store/rtl.selector'; export class ServicesSettingsComponent implements OnInit, OnDestroy { public faLayerGroup = faLayerGroup; - public links = [{ link: 'loop', name: 'Loop' }, { link: 'boltz', name: 'Boltz' }, { link: 'peerswap', name: 'Peerswap' }]; + // public links = [{ link: 'loop', name: 'Loop' }, { link: 'boltz', name: 'Boltz' }, { link: 'peerswap', name: 'Peerswap' }, { link: 'noservice', name: 'No Service' }]; + public links = [{ link: 'loop', name: 'Loop' }, { link: 'boltz', name: 'Boltz' }, { link: 'noservice', name: 'No Service' }]; public activeLink = ''; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; constructor(private store: Store, private router: Router, private activatedRoute: ActivatedRoute) { } ngOnInit() { - const linkFound = this.links.find((link) => this.router.url.includes(link.link)); - this.activeLink = linkFound ? linkFound.link : this.links[0].link; - this.router.events.pipe(takeUntil(this.unSubs[0]), filter((e) => e instanceof ResolveEnd)). - subscribe({ - next: (value: ResolveEnd | Event) => { - const linkFound = this.links.find((link) => (value).urlAfterRedirects.includes(link.link)); - if (this.selNode.lnImplementation.toUpperCase() === 'CLN') { - this.activeLink = this.links[2].link; - } else { - this.activeLink = linkFound ? linkFound.link : this.links[0].link; - } - } - }); + this.setActiveLink(); 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 }); - } + this.setActiveLink(); + this.router.navigate(['./' + this.activeLink], { relativeTo: this.activatedRoute }); }); } + setActiveLink(link?: string) { + if (link && link !== '') { + this.activeLink = link; + } else { + const linkFound = this.links.find((link) => this.router.url.includes(link.link)); + if (linkFound) { + this.activeLink = this.selNode && this.selNode.lnImplementation === 'CLN' ? this.links[1].link : linkFound.link; + } else { + this.activeLink = this.links[this.links.length - 1].link; + } + } + } + ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/shared/components/settings/app-settings/app-settings.component.html b/src/app/shared/components/settings/app-settings/app-settings.component.html index c21b4650..99d69fab 100644 --- a/src/app/shared/components/settings/app-settings/app-settings.component.html +++ b/src/app/shared/components/settings/app-settings/app-settings.component.html @@ -5,10 +5,6 @@ Default Node
-
- - The setting will apply after RTL server restarts. -
@@ -21,7 +17,7 @@
- +
diff --git a/src/app/shared/components/settings/app-settings/app-settings.component.ts b/src/app/shared/components/settings/app-settings/app-settings.component.ts index 6f5716a4..faf7e509 100644 --- a/src/app/shared/components/settings/app-settings/app-settings.component.ts +++ b/src/app/shared/components/settings/app-settings/app-settings.component.ts @@ -2,14 +2,13 @@ import { Component, OnInit, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { Store } from '@ngrx/store'; -import { faWindowRestore, faPlus, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; +import { faWindowRestore, faPlus } from '@fortawesome/free-solid-svg-icons'; -import { UI_MESSAGES } from '../../../services/consts-enums-functions'; import { RTLConfiguration } from '../../../models/RTLconfig'; import { LoggerService } from '../../../services/logger.service'; import { RTLState } from '../../../../store/rtl.state'; -import { saveSettings } from '../../../../store/rtl.actions'; +import { updateApplicationSettings } from '../../../../store/rtl.actions'; import { rootAppConfig } from '../../../../store/rtl.selector'; @Component({ @@ -19,7 +18,6 @@ import { rootAppConfig } from '../../../../store/rtl.selector'; }) export class AppSettingsComponent implements OnInit, OnDestroy { - public faInfoCircle = faInfoCircle; public faWindowRestore = faWindowRestore; public faPlus = faPlus; public appConfig: RTLConfiguration; @@ -40,9 +38,9 @@ export class AppSettingsComponent implements OnInit, OnDestroy { this.logger.warn('ADD NEW NODE'); } - onUpdateSettings(): boolean | void { - const 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; - this.store.dispatch(saveSettings({ payload: { uiMessage: UI_MESSAGES.UPDATE_DEFAULT_NODE_SETTING, defaultNodeIndex: defaultNodeIndex } })); + onUpdateApplicationSettings(): boolean | void { + this.appConfig.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; + this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: true, message: 'Default Node Updated.', config: this.appConfig } })); } onResetSettings() { diff --git a/src/app/shared/components/settings/auth-settings/auth-settings.component.ts b/src/app/shared/components/settings/auth-settings/auth-settings.component.ts index 8c51782c..d1a06319 100644 --- a/src/app/shared/components/settings/auth-settings/auth-settings.component.ts +++ b/src/app/shared/components/settings/auth-settings/auth-settings.component.ts @@ -8,7 +8,7 @@ import { faUserLock, faUserClock, faInfoCircle, faLock } from '@fortawesome/free import * as sha256 from 'sha256'; import { TwoFactorAuthComponent } from '../../data-modal/two-factor-auth/two-factor-auth.component'; -import { RTLConfiguration, ConfigSettingsNode } from '../../../models/RTLconfig'; +import { RTLConfiguration, Node } from '../../../models/RTLconfig'; import { PASSWORD_BLACKLIST, RTLActions, UI_MESSAGES } from '../../../services/consts-enums-functions'; import { SessionService } from '../../../services/session.service'; import { openAlert, resetPassword, setSelectedNode } from '../../../../store/rtl.actions'; @@ -36,7 +36,7 @@ export class AuthSettingsComponent implements OnInit, OnDestroy { public errorConfirmMsg = ''; public initializeNodeData = false; public appConfig: RTLConfiguration; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; unSubs: Array> = [new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private actions: Actions, private router: Router, private sessionService: SessionService) { } diff --git a/src/app/shared/components/settings/settings.component.html b/src/app/shared/components/settings/settings.component.html index 9251ce97..1dfa2743 100644 --- a/src/app/shared/components/settings/settings.component.html +++ b/src/app/shared/components/settings/settings.component.html @@ -7,7 +7,7 @@ diff --git a/src/app/shared/components/settings/settings.component.ts b/src/app/shared/components/settings/settings.component.ts index 69cbadf5..45e70842 100644 --- a/src/app/shared/components/settings/settings.component.ts +++ b/src/app/shared/components/settings/settings.component.ts @@ -5,7 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { faUserCog } from '@fortawesome/free-solid-svg-icons'; -import { ConfigSettingsNode, RTLConfiguration } from '../../models/RTLconfig'; +import { Node, RTLConfiguration } from '../../models/RTLconfig'; import { RTLState } from '../../../store/rtl.state'; import { rootSelectedNode, rootAppConfig } from '../../../store/rtl.selector'; @@ -18,7 +18,7 @@ export class SettingsComponent implements OnInit, OnDestroy { public faUserCog = faUserCog; public showBitcoind = false; - public selNode: ConfigSettingsNode | any; + public selNode: Node | any; public appConfig: RTLConfiguration; public links = [{ link: 'app', name: 'Application' }, { link: 'auth', name: 'Authentication' }, { link: 'bconfig', name: 'BitcoinD Config' }]; public activeLink = ''; 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 79fb81bf..b703284a 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 @@ -5,6 +5,7 @@ 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 { MAT_SELECT_CONFIG } from '@angular/material/select'; 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'; @@ -14,7 +15,7 @@ import { ColumnDefinition, TableSetting } from '../../models/pageSettings'; import { Subject, takeUntil } from 'rxjs'; import { rootSelectedNode } from '../../../store/rtl.selector'; import { CamelCaseWithReplacePipe } from '../../pipes/app.pipe'; -import { MAT_SELECT_CONFIG } from '@angular/material/select'; +import { MessageDataField } from '../../../shared/models/alertData'; @Component({ selector: 'rtl-transactions-report-table', @@ -78,7 +79,7 @@ export class TransactionsReportTableComponent implements OnInit, AfterViewInit, } onTransactionClick(selTransaction: any) { - const reorderedTransactions = [ + const reorderedTransactions: MessageDataField[][] = [ [{ key: 'date', value: this.dataRange === SCROLL_RANGES[1] ? this.datePipe.transform(selTransaction.date, 'MMM/yyyy') : this.datePipe.transform(selTransaction.date, 'dd/MMM/yyyy'), title: 'Date', width: 100, type: DataTypeEnum.DATE }], [{ key: 'amount_paid', value: Math.round(selTransaction.amount_paid), title: 'Amount Paid (Sats)', width: 50, type: DataTypeEnum.NUMBER }, { key: 'num_payments', value: selTransaction.num_payments, title: '# Payments', width: 50, type: DataTypeEnum.NUMBER }], diff --git a/src/app/shared/directive/clipboard.directive.ts b/src/app/shared/directive/clipboard.directive.ts index 9745df08..7f69bf6e 100644 --- a/src/app/shared/directive/clipboard.directive.ts +++ b/src/app/shared/directive/clipboard.directive.ts @@ -13,12 +13,41 @@ export class ClipboardDirective { @HostListener('click', ['$event']) public onClick(event: MouseEvent): void { event.preventDefault(); - if (!this.payload || !navigator.clipboard) { - return; + + if (!this.payload) { return; } + + if (navigator.clipboard) { + this.copyUsingClipboardAPI(); + } else { + this.copyUsingFallbackMethod(); } + } + + private copyUsingFallbackMethod(): void { + const input = document.createElement('textarea'); + input.value = this.payload; + document.body.appendChild(input); + input.select(); + + try { + // Allowing deprecated command for older browsers where navigator is not available. + // For newer browsers where execCommand is deprecated, navigator should be available and this fallback will not be called. + // eslint-disable-next-line deprecation/deprecation + const result = document.execCommand('copy'); + if (result) { + this.copied.emit(this.payload.toString()); + } else { + this.copied.emit('Error could not copy text.'); + } + } finally { + document.body.removeChild(input); + } + } + + private copyUsingClipboardAPI(): void { navigator.clipboard.writeText(this.payload.toString()).then(() => { this.copied.emit(this.payload.toString()); - }, (err) => { + }).catch((err) => { this.copied.emit('Error could not copy text: ' + JSON.stringify(err)); }); } diff --git a/src/app/shared/models/RTLconfig.ts b/src/app/shared/models/RTLconfig.ts index 5d818525..810850b1 100644 --- a/src/app/shared/models/RTLconfig.ts +++ b/src/app/shared/models/RTLconfig.ts @@ -18,6 +18,7 @@ export class Settings { public unannouncedChannels: boolean, public fiatConversion: boolean, public currencyUnits: Array, + public selCurrencyUnit?: string, public bitcoindConfigPath?: string, public logLevel?: string, public lnServerUrl?: string, @@ -26,7 +27,8 @@ export class Settings { public channelBackupPath?: string, public currencyUnit?: string, public enableOffers?: boolean, - public enablePeerswap?: boolean + public enablePeerswap?: boolean, + public blockExplorerUrl?: string ) { } } @@ -41,7 +43,21 @@ export class Authentication { } -export class ConfigSettingsNode { +export class RTLConfiguration { + + constructor( + public defaultNodeIndex: number, + public selectedNodeIndex: number, + public SSO: SSO, + public enable2FA: boolean, + public secret2FA: string, + public allowPasswordUpdate: boolean, + public nodes: Node[] + ) { } + +} + +export class Node { constructor( public settings: Settings, @@ -53,19 +69,6 @@ export class ConfigSettingsNode { } -export class RTLConfiguration { - - constructor( - public defaultNodeIndex: number, - public selectedNodeIndex: number, - public sso: SSO, - public enable2FA: boolean, - public allowPasswordUpdate: boolean, - public nodes: ConfigSettingsNode[] - ) { } - -} - export interface GetInfoRoot { identity_pubkey?: string; alias?: string; @@ -76,20 +79,6 @@ export interface GetInfoRoot { api_version?: string; } -export interface SelNodeChild { - userPersona?: string; - channelBackupPath?: string; - selCurrencyUnit?: string; - currencyUnits?: string[]; - fiatConversion?: boolean; - unannouncedChannels?: boolean; - lnImplementation?: string; - swapServerUrl?: string; - boltzServerUrl?: string; - enableOffers?: boolean; - enablePeerswap?: boolean; -} - export class HelpTopic { constructor(public help: { question: string, answer: string, link?: string, linkCaption?: string, lnImplementation?: string }) { } diff --git a/src/app/shared/models/alertData.ts b/src/app/shared/models/alertData.ts index ea81e8e9..6aff20bc 100644 --- a/src/app/shared/models/alertData.ts +++ b/src/app/shared/models/alertData.ts @@ -18,6 +18,8 @@ export interface MessageDataField { title: string; width: number; type?: DataTypeEnum; + digitsInfo?: string; + explorerLink?: string; } export interface InputData { @@ -139,12 +141,14 @@ export interface ECLPaymentInformation { export interface ChannelInformation { channel: Channel; + selNode?: Node | any; showCopy?: boolean; component?: any; } export interface CLNChannelInformation { channel: ChannelCLN; + selNode?: Node | any; showCopy?: boolean; component?: any; } @@ -155,8 +159,9 @@ export interface ECLChannelInformation { component?: any; } -export interface PendingOpenChannelInformation { - pendingChannel: PendingOpenChannel; +export interface BumpFeeInformation { + pendingChannel?: PendingOpenChannel; + selUTXO?: UTXO; component?: any; } @@ -240,6 +245,6 @@ export interface DialogConfig { minHeight?: string; data: AlertData | ConfirmationData | ErrorData | ChannelRebalanceAlert | ECLChannelRebalanceAlert | OpenChannelAlert | CLNOpenChannelAlert | InvoiceInformation | CLNPaymentInformation | CLNInvoiceInformation | CLNOfferInformation | ECLInvoiceInformation | ECLPaymentInformation | ChannelInformation | CLNChannelInformation | - PendingOpenChannelInformation | OnChainAddressInformation | ShowPubkeyData | LoopAlert | SwapAlert | AuthConfig | + BumpFeeInformation | OnChainAddressInformation | ShowPubkeyData | LoopAlert | SwapAlert | AuthConfig | OnChainLabelUTXO | OnChainSendFunds | CLNOnChainSendFunds | ECLChannelInformation | ECLOpenChannelAlert; } diff --git a/src/app/shared/models/apiCallsPayload.ts b/src/app/shared/models/apiCallsPayload.ts index 1794cc34..8af7d3d3 100644 --- a/src/app/shared/models/apiCallsPayload.ts +++ b/src/app/shared/models/apiCallsPayload.ts @@ -13,9 +13,8 @@ export interface ApiCallsListRoot { Login: ApiCallStatusPayload; IsAuthorized: ApiCallStatusPayload; FetchRTLConfig?: ApiCallStatusPayload; - UpdateSettings?: ApiCallStatusPayload; - UpdateServiceSettings?: ApiCallStatusPayload; - Update2FASettings?: ApiCallStatusPayload; + UpdateNodeSettings?: ApiCallStatusPayload; + UpdateApplicationSettings?: ApiCallStatusPayload; fetchConfig?: ApiCallStatusPayload; VerifyToken?: ApiCallStatusPayload; ResetPassword?: ApiCallStatusPayload; diff --git a/src/app/shared/models/boltzModels.ts b/src/app/shared/models/boltzModels.ts index 0246ebb9..8f0c7c36 100644 --- a/src/app/shared/models/boltzModels.ts +++ b/src/app/shared/models/boltzModels.ts @@ -1,3 +1,12 @@ +export interface BoltzInfo { + version: string; + node?: string; + network?: string; + nodePubkey?: string; + autoSwapStatus?: string; + blockHeights?: any; +} + export interface ServiceInfo { fees?: {percentage?: number | null, miner: {normal?: number | null, reverse?: number | null}}; limits?: {minimal?: number | null, maximal?: number | null}; @@ -62,6 +71,7 @@ export interface CreateSwapResponse { address?: string; expectedAmount?: string; bip21?: string; + txId?: string; } export interface CreateReverseSwapRequest { diff --git a/src/app/shared/models/eclModels.ts b/src/app/shared/models/eclModels.ts index 4d448073..e849e2d5 100644 --- a/src/app/shared/models/eclModels.ts +++ b/src/app/shared/models/eclModels.ts @@ -174,6 +174,7 @@ export interface Transaction { amount?: number; fees?: number; blockHash?: string; + blockId_opt?: string; confirmations?: number; txid?: string; timestamp?: number; diff --git a/src/app/shared/models/navMenu.ts b/src/app/shared/models/navMenu.ts index e93c4b2a..85c6fbd1 100644 --- a/src/app/shared/models/navMenu.ts +++ b/src/app/shared/models/navMenu.ts @@ -64,11 +64,12 @@ 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: '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: 4, parentId: 0, name: 'Services', iconType: 'FA', icon: faLayerGroup, link: '/services/loop', userPersona: UserPersonaEnum.ALL, children: [ + // { id: 41, parentId: 4, name: 'Peerswap', iconType: 'FA', icon: faHandshake, link: '/services/peerswap', userPersona: UserPersonaEnum.ALL }, + { id: 42, parentId: 4, name: 'Boltz', iconType: 'SVG', icon: 'boltzIconBlock', link: '/services/boltz', 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 } ], diff --git a/src/app/shared/models/rtlModels.ts b/src/app/shared/models/rtlModels.ts index a10a60bf..92b587e3 100644 --- a/src/app/shared/models/rtlModels.ts +++ b/src/app/shared/models/rtlModels.ts @@ -1,5 +1,6 @@ -import { ServicesEnum } from '../services/consts-enums-functions'; -import { ConfigSettingsNode, Settings } from './RTLconfig'; +import { IconDefinition } from '@fortawesome/free-solid-svg-icons'; +import { Node, Settings } from './RTLconfig'; +import { SafeHtml } from '@angular/platform-browser'; export interface OpenSnackBar { message: string; @@ -7,23 +8,16 @@ export interface OpenSnackBar { type?: string; } -export interface SaveSettings { - uiMessage: string; - settings?: Settings; - defaultNodeIndex?: number; -} - -export interface SetSelectedNode { +export interface UpdateSelectedNode { uiMessage: string; prevLnNodeIndex: number; - currentLnNode: ConfigSettingsNode | null; + currentLnNode: Node | null; isInitialSetup: boolean; } -export interface UpdateServiceSetting { - uiMessage: string; - service: ServicesEnum; - settings: any; +export interface UpdateNodeSettings { + index: number; + settings: Settings; } export interface ResetPassword { @@ -46,3 +40,60 @@ export interface FetchFile { channelPoint: string; path?: string; } + +export interface FiatCurrency { + id: string; + name: string; + iconType: 'SVG' | 'FA'; + symbol: string | IconDefinition | SafeHtml; + class?: string; +} + +export interface ConvertedCurrency { + unit: string; + iconType: 'FA' | 'SVG'; + symbol: string | IconDefinition | SafeHtml; + Sats: number; + BTC: number; + OTHER: number; +}; + +export interface RecommendedFeeRates { + fastestFee: number; + halfHourFee: number; + hourFee: number; + economyFee?: number; + minimumFee?: number; +}; + +export interface BETransactionVOut { + value: number; + scriptpubkey?: string; + scriptpubkey_asm?: string; + scriptpubkey_type?: string; + scriptpubkey_address?: string; +} + +export interface BETransactionVIn { + txid: string; + vout?: string; + prevout?: BETransactionVOut; + scriptsig?: string; + scriptsig_asm?: string; + witness?: string[]; + is_coinbase?: boolean; + sequence?: number; +} + +export interface BlockExplorerTransaction { + txid: string; + version?: number; + locktime?: number; + size?: number; + weight?: number; + sigops?: number; + fee?: number; + status?: any; + vin?: BETransactionVIn[]; + vout?: BETransactionVOut[]; +} diff --git a/src/app/shared/services/boltz.service.ts b/src/app/shared/services/boltz.service.ts index ce744f06..cdf9d274 100644 --- a/src/app/shared/services/boltz.service.ts +++ b/src/app/shared/services/boltz.service.ts @@ -8,7 +8,7 @@ import { ErrorMessageComponent } from '../components/data-modal/error-message/er import { CommonService } from './common.service'; import { LoggerService } from './logger.service'; import { API_URL, API_END_POINTS, AlertTypeEnum, UI_MESSAGES } from './consts-enums-functions'; -import { ListSwaps } from '../models/boltzModels'; +import { ListSwaps, BoltzInfo } from '../models/boltzModels'; import { closeSpinner, logout, openAlert, openSpinner } from '../../store/rtl.actions'; import { RTLState } from '../../store/rtl.state'; @@ -18,8 +18,10 @@ export class BoltzService implements OnDestroy { private swapUrl = ''; private swaps: ListSwaps = {}; + private boltzInfo: BoltzInfo = null; + public boltzInfoChanged = new BehaviorSubject(null); public swapsChanged = new BehaviorSubject({}); - private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private httpClient: HttpClient, private logger: LoggerService, private store: Store, private commonService: CommonService) { } @@ -46,11 +48,29 @@ export class BoltzService implements OnDestroy { return this.httpClient.get(this.swapUrl).pipe(catchError((err) => of(this.handleErrorWithAlert(UI_MESSAGES.NO_SPINNER, this.swapUrl, err)))); } + getBoltzInfo() { + this.store.dispatch(openSpinner({ payload: UI_MESSAGES.GET_BOLTZ_INFO })); + this.swapUrl = API_URL + API_END_POINTS.BOLTZ_API + '/info'; + this.httpClient.get(this.swapUrl). + pipe(takeUntil(this.unSubs[1])). + subscribe({ + next: (res: BoltzInfo) => { + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.GET_BOLTZ_INFO })); + this.boltzInfo = res; + this.boltzInfoChanged.next(this.boltzInfo); + }, error: (err) => { + this.boltzInfo = { version: '2.0.0' }; + this.boltzInfoChanged.next(this.boltzInfo); + return of(this.handleErrorWithoutAlert(UI_MESSAGES.GET_BOLTZ_INFO, this.swapUrl, err)); + } + }); + } + serviceInfo() { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.GET_SERVICE_INFO })); this.swapUrl = API_URL + API_END_POINTS.BOLTZ_API + '/serviceInfo'; return this.httpClient.get(this.swapUrl).pipe( - takeUntil(this.unSubs[1]), + takeUntil(this.unSubs[2]), map((res) => { this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.GET_SERVICE_INFO })); return res; @@ -59,14 +79,14 @@ export class BoltzService implements OnDestroy { ); } - swapOut(amount: number, address: string) { - const requestBody = { amount: amount, address: address }; + swapOut(amount: number, address: string, acceptZeroConf: boolean) { + const requestBody = { amount: amount, address: address, acceptZeroConf: acceptZeroConf }; this.swapUrl = API_URL + API_END_POINTS.BOLTZ_API + '/createreverseswap'; return this.httpClient.post(this.swapUrl, requestBody).pipe(catchError((err) => this.handleErrorWithoutAlert('Swap Out for Address: ' + address, UI_MESSAGES.NO_SPINNER, err))); } - swapIn(amount: number) { - const requestBody = { amount: amount }; + swapIn(amount: number, sendFromInternal: boolean) { + const requestBody = { amount: amount, sendFromInternal: sendFromInternal }; this.swapUrl = API_URL + API_END_POINTS.BOLTZ_API + '/createswap'; return this.httpClient.post(this.swapUrl, requestBody).pipe(catchError((err) => this.handleErrorWithoutAlert('Swap In for Amount: ' + amount, UI_MESSAGES.NO_SPINNER, err))); } @@ -78,7 +98,7 @@ export class BoltzService implements OnDestroy { if (err.status === 401) { errMsg = 'Unauthorized User.'; this.logger.info('Redirecting to Login'); - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: errMsg })); } else if (err.status === 503) { errMsg = 'Unable to Connect to Boltz Server.'; this.store.dispatch(openAlert({ @@ -101,14 +121,14 @@ export class BoltzService implements OnDestroy { let errMsg = ''; if (err.status === 401) { this.logger.info('Redirecting to Login'); - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } this.logger.error(err); this.store.dispatch(closeSpinner({ payload: uiMessage })); if (err.status === 401) { errMsg = 'Unauthorized User.'; this.logger.info('Redirecting to Login'); - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: errMsg })); } else if (err.status === 503) { errMsg = 'Unable to Connect to Boltz Server.'; setTimeout(() => { diff --git a/src/app/shared/services/common.service.ts b/src/app/shared/services/common.service.ts index 9c627887..d8026b9c 100644 --- a/src/app/shared/services/common.service.ts +++ b/src/app/shared/services/common.service.ts @@ -1,11 +1,12 @@ import { Injectable, OnDestroy } from '@angular/core'; +import { DomSanitizer } from '@angular/platform-browser'; import { DatePipe } from '@angular/common'; -import { of, Observable, throwError, BehaviorSubject } from 'rxjs'; -import { take, map, catchError } from 'rxjs/operators'; +import { Subject, of, Observable, throwError, BehaviorSubject } from 'rxjs'; +import { catchError, switchMap, takeUntil } from 'rxjs/operators'; import { LoggerService } from './logger.service'; import { DataService } from './data.service'; -import { CurrencyUnitEnum, TimeUnitEnum, ScreenSizeEnum, APICallStatusEnum, HOUR_SECONDS } from './consts-enums-functions'; +import { CurrencyUnitEnum, TimeUnitEnum, ScreenSizeEnum, APICallStatusEnum, HOUR_SECONDS, getSelectedCurrency } from './consts-enums-functions'; @Injectable() export class CommonService implements OnDestroy { @@ -17,8 +18,9 @@ export class CommonService implements OnDestroy { private screenSize = ScreenSizeEnum.MD; private containerSize = { width: 0, height: 0 }; public containerSizeUpdated: BehaviorSubject = new BehaviorSubject(this.containerSize); + private unSubs = [new Subject(), new Subject(), new Subject()]; - constructor(public dataService: DataService, private logger: LoggerService, private datePipe: DatePipe) { } + constructor(public dataService: DataService, private logger: LoggerService, private datePipe: DatePipe, public sanitizer: DomSanitizer) { } getScreenSize() { return this.screenSize; @@ -91,26 +93,36 @@ export class CommonService implements OnDestroy { convertCurrency(value: number, from: string, to: string, otherCurrencyUnit: string, fiatConversion: boolean): Observable { const latest_date = new Date().valueOf(); - if (fiatConversion && otherCurrencyUnit && this.ratesAPIStatus !== APICallStatusEnum.INITIATED && (from === CurrencyUnitEnum.OTHER || to === CurrencyUnitEnum.OTHER)) { - if (this.conversionData.data && this.conversionData.last_fetched && (latest_date < (this.conversionData.last_fetched + 300000))) { - return of(this.convertWithFiat(value, from, otherCurrencyUnit)); + try { + if (fiatConversion && otherCurrencyUnit && (from === CurrencyUnitEnum.OTHER || to === CurrencyUnitEnum.OTHER)) { + if (this.ratesAPIStatus !== APICallStatusEnum.INITIATED) { + if (this.conversionData.data && this.conversionData.last_fetched && (latest_date < (this.conversionData.last_fetched + 300000))) { + return of(this.convertWithFiat(value, from, otherCurrencyUnit)); + } else { + this.ratesAPIStatus = APICallStatusEnum.INITIATED; + return this.dataService.getFiatRates().pipe(takeUntil(this.unSubs[0]), + switchMap((data) => { + this.ratesAPIStatus = APICallStatusEnum.COMPLETED; + this.conversionData.data = (data && typeof data === 'object') ? data : (data && typeof data === 'string') ? JSON.parse(data) : {}; + this.conversionData.last_fetched = latest_date; + return of(this.convertWithFiat(value, from, otherCurrencyUnit)); + }), + catchError((err) => { + this.ratesAPIStatus = APICallStatusEnum.ERROR; + return throwError(() => 'Currency Conversion Error.'); + }) + ); + } + } else if (this.conversionData.data && this.conversionData.last_fetched && (latest_date < (this.conversionData.last_fetched + 300000))) { + return of(this.convertWithFiat(value, from, otherCurrencyUnit)); + } else { + return of(this.convertWithoutFiat(value, from)); + } } else { - this.ratesAPIStatus = APICallStatusEnum.INITIATED; - return this.dataService.getFiatRates().pipe(take(1), - map((data: any) => { - this.ratesAPIStatus = APICallStatusEnum.COMPLETED; - this.conversionData.data = (data && typeof data === 'object') ? data : (data && typeof data === 'string') ? JSON.parse(data) : {}; - this.conversionData.last_fetched = latest_date; - return this.convertWithFiat(value, from, otherCurrencyUnit); - }), - catchError((err) => { - this.ratesAPIStatus = APICallStatusEnum.ERROR; - return throwError(() => this.extractErrorMessage(err, 'Currency Conversion Error.')); - }) - ); + return of(this.convertWithoutFiat(value, from)); } - } else { - return of(this.convertWithoutFiat(value, from)); + } catch (error) { + return throwError(() => 'Currency Conversion Error.'); } } @@ -134,7 +146,16 @@ export class CommonService implements OnDestroy { } convertWithFiat(value: number, from: string, otherCurrencyUnit: string) { - const returnValue = { unit: otherCurrencyUnit, symbol: this.conversionData.data[otherCurrencyUnit].symbol }; + const returnValue = { unit: otherCurrencyUnit, iconType: 'FA', symbol: null }; + if (otherCurrencyUnit) { + const selCurrency = getSelectedCurrency(this.conversionData.data[otherCurrencyUnit].symbol); + returnValue.iconType = selCurrency.iconType; + if (selCurrency && selCurrency.iconType === 'SVG' && selCurrency.symbol && typeof selCurrency.symbol === 'string') { + returnValue.symbol = this.sanitizer.bypassSecurityTrustHtml(selCurrency.symbol); + } else { + returnValue.symbol = selCurrency.symbol; + } + } returnValue[CurrencyUnitEnum.SATS] = 0; returnValue[CurrencyUnitEnum.BTC] = 0; returnValue[CurrencyUnitEnum.OTHER] = 0; diff --git a/src/app/shared/services/consts-enums-functions.ts b/src/app/shared/services/consts-enums-functions.ts index 414e4787..82cbc2a8 100644 --- a/src/app/shared/services/consts-enums-functions.ts +++ b/src/app/shared/services/consts-enums-functions.ts @@ -1,6 +1,9 @@ +/* eslint-disable max-len */ import { isDevMode } from '@angular/core'; import { MatPaginatorIntl } from '@angular/material/paginator'; import { CLNPageDefinitions, ECLPageDefinitions, LNDPageDefinitions, PageSettings } from '../models/pageSettings'; +import { FiatCurrency } from '../models/rtlModels'; +import { faBahtSign, faBrazilianRealSign, faDollarSign, faEuroSign, faFrancSign, faIndianRupeeSign, faRubleSign, faSterlingSign, faTurkishLiraSign, faWonSign, faYenSign } from '@fortawesome/free-solid-svg-icons'; export function getPaginatorLabel(field: string) { const appPaginator = new MatPaginatorIntl(); @@ -12,7 +15,7 @@ export const HOUR_SECONDS = 3600; export const DEFAULT_INVOICE_EXPIRY = HOUR_SECONDS * 24 * 7; -export const VERSION = '0.15.0-beta'; +export const VERSION = '0.15.1-beta'; export const API_URL = isDevMode() ? 'http://localhost:3000/rtl/api' : './api'; @@ -44,16 +47,6 @@ export const API_END_POINTS = { export const CURRENCY_UNITS = ['Sats', 'BTC']; export const CURRENCY_UNIT_FORMATS = { Sats: '1.0-0', BTC: '1.6-6', OTHER: '1.2-2' }; -export const FIAT_CURRENCY_UNITS = [ - { 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' } -]; export const TIME_UNITS = ['SECS', 'MINS', 'HOURS', 'DAYS']; export const DATA_FILTER_RANGE_UNITS = ['HOURS', 'DAYS', 'MONTHS', 'YEARS']; @@ -83,7 +76,7 @@ export const FEE_RATE_TYPES = [ { feeRateId: 'urgent', feeRateType: 'Urgent' }, { feeRateId: 'normal', feeRateType: 'Normal' }, { feeRateId: 'slow', feeRateType: 'Slow' }, - { feeRateId: 'customperkb', feeRateType: 'Custom (Sats/vByte)' } + { feeRateId: 'customperkb', feeRateType: 'Custom' } ]; export const NODE_SETTINGS = { @@ -276,6 +269,7 @@ export enum SwapStateEnum { 'transaction.claimed' = 'Transaction Claimed', 'transaction.refunded' = 'Transaction Refunded', 'transaction.confirmed' = 'Transaction Confirmed', + 'transaction.lockupFailed' = 'Lockup Transaction Failed', 'swap.refunded' = 'Swap Refunded', 'swap.abandoned' = 'Swap Abandoned' } @@ -356,10 +350,11 @@ export const UI_MESSAGES = { UPDATE_LOOP_SETTINGS: 'Updating Loop Service Settings...', UPDATE_PEERSWAP_SETTINGS: 'Updating Peerswap Service Settings...', UPDATE_SETTING: 'Updating Setting...', - UPDATE_UI_SETTINGS: 'Updating Settings...', + UPDATE_APPLICATION_SETTINGS: 'Updating Application Settings...', UPDATE_NODE_SETTINGS: 'Updating Node Settings...', UPDATE_SELECTED_NODE: 'Updating Selected Node...', OPEN_CONFIG_FILE: 'Opening Config File...', + GET_BOLTZ_INFO: 'Getting Boltz Info...', GET_SERVICE_INFO: 'Getting Service Info...', GET_QUOTE: 'Getting Quotes...', UPDATE_DEFAULT_NODE_SETTING: 'Updating Defaule Node Settings...', @@ -401,7 +396,6 @@ export enum ReportBy { export enum RTLActions { VOID = 'VOID', SET_API_URL_ECL = 'SET_API_URL_ECL', - UPDATE_SELECTED_NODE_OPTIONS = 'UPDATE_SELECTED_NODE_OPTIONS', UPDATE_API_CALL_STATUS_ROOT = 'UPDATE_API_CALL_STATUS_ROOT', RESET_ROOT_STORE = 'RESET_ROOT_STORE', CLOSE_ALL_DIALOGS = 'CLOSE_ALL_DIALOGS', @@ -417,14 +411,14 @@ export enum RTLActions { SHOW_CONFIG = 'SHOW_CONFIG', FETCH_STORE = 'FETCH_STORE', SET_STORE = 'SET_STORE', - FETCH_RTL_CONFIG = 'FETCH_RTL_CONFIG', - SET_RTL_CONFIG = 'SET_RTL_CONFIG', - SAVE_SSO = 'SAVE_SSO', + FETCH_APPLICATION_SETTINGS = 'FETCH_APPLICATION_SETTINGS', + SET_APPLICATION_SETTINGS = 'SET_APPLICATION_SETTINGS', SAVE_SETTINGS = 'SAVE_SETTINGS', - TWO_FA_SAVE_SETTINGS = 'TWO_FA_SAVE_SETTINGS', SET_SELECTED_NODE = 'SET_SELECTED_NODE', UPDATE_ROOT_NODE_SETTINGS = 'UPDATE_ROOT_NODE_SETTINGS', - UPDATE_SERVICE_SETTINGS = 'UPDATE_SERVICE_SETTINGS', + UPDATE_APPLICATION_SETTINGS = 'UPDATE_APPLICATION_SETTINGS', + UPDATE_NODE_SETTINGS = 'UPDATE_NODE_SETTINGS', + SET_SELECTED_NODE_SETTINGS = 'SET_SELECTED_NODE_SETTINGS', SET_NODE_DATA = 'SET_NODE_DATA', IS_AUTHORIZED = 'IS_AUTHORIZED', IS_AUTHORIZED_RES = 'IS_AUTHORIZED_RES', @@ -441,6 +435,7 @@ 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', + UPDATE_SELECTED_NODE_OPTIONS = 'UPDATE_SELECTED_NODE_OPTIONS', FETCH_PAGE_SETTINGS_LND = 'FETCH_PAGE_SETTINGS_LND', SET_PAGE_SETTINGS_LND = 'SET_PAGE_SETTINGS_LND', SAVE_PAGE_SETTINGS_LND = 'SAVE_PAGE_SETTINGS_LND', @@ -1260,3 +1255,144 @@ export const ECL_PAGE_DEFS: ECLPageDefinitions = { } } }; + +export const FIAT_CURRENCY_ICONS_SGV = { + CZK: ` + + + + + + + + `, + DKK: ` + + + + `, + HRK: ` + + + + + + + + + + `, + HUF: ` + + + + + + + + + + `, + PLN: ` + + + + + + + `, + RON: ` + + + + + + + + + + `, + TWD: ` + + + + + + + + + + ` +}; + +// Name and symbols confirmed from https://www.xe.com/symbols/ +// Most SVGs are copied from https://www.svgviewer.dev +export const FIAT_CURRENCY_UNITS: FiatCurrency[] = [ + { id: 'USD', name: 'United States Dollar', iconType: 'FA', symbol: faDollarSign }, { id: 'ARS', name: 'Argentina Peso', iconType: 'FA', symbol: faDollarSign }, { id: 'AUD', name: 'Australia Dollar', iconType: 'FA', symbol: faDollarSign }, + { id: 'BRL', name: 'Brazil Real', iconType: 'FA', symbol: faBrazilianRealSign }, { id: 'CAD', name: 'Canada Dollar', iconType: 'FA', symbol: faDollarSign }, { id: 'CHF', name: 'Switzerland Franc', iconType: 'FA', symbol: faFrancSign }, + { id: 'CLP', name: 'Chile Peso', iconType: 'FA', symbol: faDollarSign }, { id: 'CNY', name: 'China Yuan Renminbi', iconType: 'FA', symbol: faYenSign }, { id: 'CZK', name: 'Czech Republic Koruna', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.CZK, class: 'currency-icon-x-large' }, + { id: 'DKK', name: 'Denmark Krone', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.DKK, class: 'currency-icon-medium' }, { id: 'EUR', name: 'Euro Member Countries', iconType: 'FA', symbol: faEuroSign }, { id: 'GBP', name: 'United Kingdom Pound', iconType: 'FA', symbol: faSterlingSign }, + { id: 'HKD', name: 'Hong Kong Dollar', iconType: 'FA', symbol: faDollarSign }, { id: 'HRK', name: 'Croatia Kuna', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.HRK, class: 'currency-icon-medium' }, { id: 'HUF', name: 'Hungary Forint', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.HUF, class: 'currency-icon-small' }, + { id: 'INR', name: 'India Rupee', iconType: 'FA', symbol: faIndianRupeeSign }, { id: 'ISK', name: 'Iceland Krona', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.DKK, class: 'currency-icon-medium' }, { id: 'JPY', name: 'Japan Yen', iconType: 'FA', symbol: faYenSign }, + { id: 'KRW', name: 'Korea (South) Won', iconType: 'FA', symbol: faWonSign }, { id: 'NZD', name: 'New Zealand Dollar', iconType: 'FA', symbol: faDollarSign }, { id: 'PLN', name: 'Poland Zloty', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.PLN, class: 'currency-icon-large' }, + { id: 'RON', name: 'Romania Leu', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.RON, class: 'currency-icon-medium' }, { id: 'RUB', name: 'Russia Ruble', iconType: 'FA', symbol: faRubleSign }, { id: 'SEK', name: 'Sweden Krona', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.DKK, class: 'currency-icon-medium' }, + { id: 'SGD', name: 'Singapore Dollar', iconType: 'FA', symbol: faDollarSign }, { id: 'THB', name: 'Thailand Baht', iconType: 'FA', symbol: faBahtSign }, { id: 'TRY', name: 'Turkey Lira', iconType: 'FA', symbol: faTurkishLiraSign }, + { id: 'TWD', name: 'Taiwan New Dollar', iconType: 'SVG', symbol: FIAT_CURRENCY_ICONS_SGV.TWD, class: 'currency-icon-small' } +]; + +export function getSelectedCurrency(currencyID: string) { + const foundCurrency = FIAT_CURRENCY_UNITS.find((currencyUnit) => currencyUnit.id === currencyID); + if (foundCurrency.iconType === 'SVG' && typeof foundCurrency.symbol === 'string') { + foundCurrency.symbol = foundCurrency.symbol.replace(' { - this.handleErrorWithoutAlert('Lease UTXO', UI_MESSAGES.LABEL_UTXO, err); + this.handleErrorWithoutAlert('Label UTXO', UI_MESSAGES.LABEL_UTXO, err); return throwError(() => new Error(this.extractErrorMessage(err))); }) ); @@ -410,8 +418,7 @@ export class DataService implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); this.store.dispatch(updateRootAPICallStatus({ payload: { action: actionName, status: APICallStatusEnum.ERROR, statusCode: err.status.toString(), message: this.extractErrorMessage(err) } })); @@ -423,8 +430,7 @@ export class DataService implements OnDestroy { if (err.status === 401) { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); const errMsg = this.extractErrorMessage(err); diff --git a/src/app/shared/services/loop.service.ts b/src/app/shared/services/loop.service.ts index a5e25beb..b249e1b2 100644 --- a/src/app/shared/services/loop.service.ts +++ b/src/app/shared/services/loop.service.ts @@ -145,7 +145,7 @@ export class LoopService implements OnDestroy { if (err.status === 401) { errMsg = 'Unauthorized User.'; this.logger.info('Redirecting to Login'); - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: errMsg })); } else if (err.status === 503) { errMsg = 'Unable to Connect to Loop Server.'; this.store.dispatch(openAlert({ @@ -171,7 +171,7 @@ export class LoopService implements OnDestroy { if (err.status === 401) { errMsg = 'Unauthorized User.'; this.logger.info('Redirecting to Login'); - this.store.dispatch(logout()); + this.store.dispatch(logout({ payload: errMsg })); } else if (err.status === 503) { errMsg = 'Unable to Connect to Loop Server.'; setTimeout(() => { diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts index dd8e9262..3196dc8b 100644 --- a/src/app/shared/shared.module.ts +++ b/src/app/shared/shared.module.ts @@ -68,6 +68,7 @@ import { ServicesSettingsComponent } from './components/node-config/services-set 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 { NoServiceFoundComponent } from './components/node-config/services-settings/no-service-found/no-service-found.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'; @@ -256,6 +257,7 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { LoopServiceSettingsComponent, BoltzServiceSettingsComponent, PeerswapServiceSettingsComponent, + NoServiceFoundComponent, ExperimentalSettingsComponent, CurrencyUnitConverterComponent, HorizontalScrollerComponent, @@ -296,6 +298,7 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { LoopServiceSettingsComponent, BoltzServiceSettingsComponent, PeerswapServiceSettingsComponent, + NoServiceFoundComponent, ExperimentalSettingsComponent, CurrencyUnitConverterComponent, HorizontalScrollerComponent, diff --git a/src/app/shared/test-helpers/mock-services.ts b/src/app/shared/test-helpers/mock-services.ts index db4c5089..45233d78 100644 --- a/src/app/shared/test-helpers/mock-services.ts +++ b/src/app/shared/test-helpers/mock-services.ts @@ -22,7 +22,7 @@ export class mockLoggerService { export class mockHttpClient { post(url: string) { - return of(new HttpResponse(mockResponseData.setSelectedNodeSuccess)); + return of(new HttpResponse({ status: 200, body: mockResponseData.setSelectedNodeSuccess })); } } @@ -52,6 +52,14 @@ export class mockDataService { this.lnImplementationUpdated.next(this.lnImplementation); } + getRecommendedFeeRates() { + return of(mockResponseData.blockExplorerRecommendedFee); + } + + getBlockExplorerTransaction(txid: string) { + return of(mockResponseData.blockExplorerTransaction); + } + getFiatRates() { return of(mockResponseData.fiatRates); } @@ -174,6 +182,8 @@ export class mockLoopService { export class mockBoltzService { public swapsChanged = new BehaviorSubject([]); + public boltzInfoChanged = new BehaviorSubject({}); + getBoltzInfo() { }; getSwapsList() { }; listSwaps() { }; swapInfo(id: string) { }; diff --git a/src/app/shared/test-helpers/test-data.ts b/src/app/shared/test-helpers/test-data.ts index 4403faa4..567e742a 100644 --- a/src/app/shared/test-helpers/test-data.ts +++ b/src/app/shared/test-helpers/test-data.ts @@ -191,6 +191,62 @@ export const mockResponseData = { symbol: 'TWD' } }, + blockExplorerRecommendedFee: { + fastestFee: 19, + halfHourFee: 19, + hourFee: 19, + economyFee: 19, + minimumFee: 10 + }, + blockExplorerTransaction: { + txid: '44a33c87c35fb21da5140286b91b56489b9ffaf7f62bcd0cce30ab568a0129ae', + version: 1, + locktime: 0, + vin: [ + { + txid: 'a41831699ce28f98e75b333268c6f2b1703a77748c49d1aa914a3c2d538077cb', + vout: 0, + prevout: { + scriptpubkey: '0014378b753631273729605c694452ff89735dca7c19', + scriptpubkey_asm: 'OP_0 OP_PUSHBYTES_20 378b753631273729605c694452ff89735dca7c19', + scriptpubkey_type: 'v0_p2wpkh', + scriptpubkey_address: 'bc1qx79h2d33yumjjczud9z99lufwdwu5lqephsey4', + value: 1436617 + }, + scriptsig: '', + scriptsig_asm: '', + witness: [ + '3045022100936bf7c13a6b349f59b7824f98da84f271c16d4eb8c8cf4933ce8921ba45ab00022015daa05a9430a2647d7deb86e13f71e7534538e3f7b6e8af70ffaec6a7b74dda01', + '0227b8e44fb3deac91671c648707b575ce761dc35905d09a4ac1be31198ad23eef' + ], + is_coinbase: false, + sequence: 4294967293 + } + ], + vout: [ + { + scriptpubkey: '0014f8ec16db533ed1147d638e9425ad330d4d0cb1ce', + scriptpubkey_asm: 'OP_0 OP_PUSHBYTES_20 f8ec16db533ed1147d638e9425ad330d4d0cb1ce', + scriptpubkey_type: 'v0_p2wpkh', + scriptpubkey_address: 'bc1qlrkpdk6n8mg3gltr362zttfnp4xsevww8qc8md', + value: 1350761 + }, + { + scriptpubkey: '76a9145af54c7385fe38521bddf13cd78486a344fcae1c88ac', + scriptpubkey_asm: 'OP_DUP OP_HASH160 OP_PUSHBYTES_20 5af54c7385fe38521bddf13cd78486a344fcae1c OP_EQUALVERIFY OP_CHECKSIG', + scriptpubkey_type: 'p2pkh', + scriptpubkey_address: '19HwfuwwZUMTgvUEmoic2teLh7RU7L1HHf', + value: 84128 + } + ], + size: 226, + weight: 574, + sigops: 5, + fee: 1728, + status: { + confirmed: false + } + }, decodePayment: { destination: '031844beb16bf8dd8c7bc30588b8c37b36e62b71c6e812e9b6d976c0a57e151be2', payment_hash: 'a53968453af7ab6fc58d229a91bdf23d7c121963067f06cf02e1a7b581852c07', @@ -724,9 +780,31 @@ export const mockResponseData = { } ], setSelectedNodeSuccess: { - status: 200, - body: { - status: 'Selected Node Updated To: LN Node Name!' + index: 1, + lnNode: 'Node 1', + lnImplementation: 'LND', + authentication: { + configPath: '/user/.lnd/lnd.conf', + swapMacaroonPath: '/user/.loop', + boltzMacaroonPath: '/user/.boltz' + }, + settings: { + blockExplorerUrl: 'https://mempool.space/', + lnServerUrl: 'https://localhost:8080', + userPersona: 'MERCHANT', + themeMode: 'NIGHT', + themeColor: 'TEAL', + unannouncedChannels: true, + logLevel: 'DEBUG', + fiatConversion: true, + currencyUnit: 'CAD', + swapServerUrl: 'https://localhost:8081', + boltzServerUrl: 'https://localhost:9003', + enableOffers: false, + enablePeerswap: false, + bitcoindConfigPath: '', + channelBackupPath: '/user/RTL/channels-backup/node-1', + logFile: '/user/RTL/logs/RTL-Node-1.log' } }, error401: { @@ -749,8 +827,8 @@ export const mockActionsData = { unannouncedChannels: false, fiatConversion: true, currencyUnits: [ + 'Sats', 'BTC', - 'SATS', 'USD' ], bitcoindConfigPath: '', @@ -761,6 +839,7 @@ export const mockActionsData = { channelBackupPath: '', currencyUnit: '', enableOffers: false, + blockExplorerUrl: 'https://mempool.space', enablePeerswap: false }, authentication: { @@ -772,52 +851,38 @@ export const mockActionsData = { lnNode: 'LN Node Name', lnImplementation: 'LND' }, - resetChildrenStores: { - userPersona: 'MERCHANT', - channelBackupPath: '', - unannouncedChannels: false, - fiatConversion: true, - selCurrencyUnit: '', - currencyUnits: [ - 'Sats', - 'BTC' - ], - lnImplementation: 'LND', - swapServerUrl: '', - boltzServerUrl: '', - enableOffers: false, - enablePeerswap: false - }, setSelectedNode: { + index: 1, + lnNode: 'Node 1', + lnImplementation: 'LND', + authentication: { + configPath: '/user/.lnd/lnd.conf', + swapMacaroonPath: '/user/.loop', + boltzMacaroonPath: '/user/.boltz' + }, settings: { + blockExplorerUrl: 'https://mempool.space/', + lnServerUrl: 'https://localhost:8080', userPersona: 'MERCHANT', themeMode: 'NIGHT', themeColor: 'TEAL', - unannouncedChannels: false, + unannouncedChannels: true, + logLevel: 'DEBUG', fiatConversion: true, - currencyUnits: [ - 'BTC', - 'SATS', - 'USD' - ], - bitcoindConfigPath: '', - enableLogging: true, - lnServerUrl: '', - swapServerUrl: '', - boltzServerUrl: '', - channelBackupPath: '', - currencyUnit: '', + currencyUnit: 'CAD', + swapServerUrl: 'https://localhost:8081', + boltzServerUrl: 'https://localhost:9003', enableOffers: false, - enablePeerswap: false - }, - authentication: { - swapMacaroonPath: '', - boltzMacaroonPath: '', - configPath: '' - }, - index: 1, - lnNode: 'LN Node Name', - lnImplementation: 'LND' + enablePeerswap: false, + bitcoindConfigPath: '', + channelBackupPath: '/user/RTL/channels-backup/node-1', + logFile: '/user/RTL/logs/RTL-Node-1.log', + currencyUnits: [ + 'Sats', + 'BTC', + 'CAD' + ] + } }, errorSendPaymentStatus: { action: 'SendPayment', @@ -879,7 +944,8 @@ export const mockRTLStoreState = { 'Sats', 'BTC', 'USD' - ] + ], + blockExplorerUrl: 'https://mempool.space' }, authentication: { configPath: '../AppData/Local/Lnd/lnd.conf', @@ -917,7 +983,8 @@ export const mockRTLStoreState = { 'Sats', 'BTC', 'USD' - ] + ], + blockExplorerUrl: 'https://mempool.space' }, authentication: { configPath: '../AppData/Local/Lnd/lnd.conf', @@ -946,7 +1013,8 @@ export const mockRTLStoreState = { 'Sats', 'BTC', 'USD' - ] + ], + blockExplorerUrl: 'https://mempool.space' }, authentication: { configPath: '../Nodes/cln/config', @@ -969,13 +1037,14 @@ export const mockRTLStoreState = { lnServerUrl: 'http://127.0.0.1:9090', swapServerUrl: '', boltzServerUrl: '', - channelBackupPath: '..\\\\RTL\\\\backup\\\\node-3', + channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', currencyUnit: 'USD', currencyUnits: [ 'Sats', 'BTC', 'USD' - ] + ], + blockExplorerUrl: 'https://mempool.space' }, authentication: { configPath: '../.eclair/eclair.conf', @@ -1002,21 +1071,6 @@ export const mockRTLStoreState = { } }, lnd: { - nodeSettings: { - userPersona: 'OPERATOR', - channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', - unannouncedChannels: false, - fiatConversion: true, - selCurrencyUnit: 'USD', - currencyUnits: [ - 'Sats', - 'BTC', - 'USD' - ], - lnImplementation: 'LND', - swapServerUrl: 'https://127.0.0.1:8081', - boltzServerUrl: 'https://127.0.0.1:9003' - }, information: { version: '0.12.1-beta commit=v0.12.1-beta', commit_hash: 'd233f61383f2f950aa06f5b09da5b0e78e784fae', @@ -48640,21 +48694,6 @@ export const mockRTLStoreState = { } }, cln: { - nodeSettings: { - userPersona: 'OPERATOR', - channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', - unannouncedChannels: false, - fiatConversion: true, - selCurrencyUnit: 'USD', - currencyUnits: [ - 'Sats', - 'BTC', - 'USD' - ], - lnImplementation: 'LND', - swapServerUrl: 'https://127.0.0.1:8081', - boltzServerUrl: 'https://127.0.0.1:9003' - }, information: {}, fees: {}, feeRatesPerKB: {}, @@ -48674,21 +48713,6 @@ export const mockRTLStoreState = { utxos: [] }, ecl: { - nodeSettings: { - userPersona: 'OPERATOR', - channelBackupPath: '..\\\\RTL\\\\backup\\\\node-1', - unannouncedChannels: false, - fiatConversion: true, - selCurrencyUnit: 'USD', - currencyUnits: [ - 'Sats', - 'BTC', - 'USD' - ], - lnImplementation: 'LND', - swapServerUrl: 'https://127.0.0.1:8081', - boltzServerUrl: 'https://127.0.0.1:9003' - }, information: {}, fees: {}, activeChannels: [], diff --git a/src/app/shared/theme/styles/mixins.scss b/src/app/shared/theme/styles/mixins.scss index 136cfba6..1264c692 100644 --- a/src/app/shared/theme/styles/mixins.scss +++ b/src/app/shared/theme/styles/mixins.scss @@ -1,4 +1,4 @@ -// MEDIA QUERY MANAGER +/* MEDIA QUERY MANAGER */ /* 0 - 600px: Phone 600 - 900px: Tablet portrait @@ -19,16 +19,16 @@ ORDER: Base + typography > general layout + grid > page layout > components @mixin for_screensize($breakpoint) { @if $breakpoint == phone { - @media only screen and (max-width: 37.5em) { @content }; //600px + @media only screen and (max-width: 37.5em) { @content }; /* 600px */ } @if $breakpoint == tab-port { - @media only screen and (max-width: 56.25em) { @content }; //900px + @media only screen and (max-width: 56.25em) { @content }; /* 900px */ } @if $breakpoint == tab-land { - @media only screen and (max-width: 75em) { @content }; //1200px + @media only screen and (max-width: 75em) { @content }; /* 1200px */ } @if $breakpoint == big-desktop { - @media only screen and (min-width: 112.5em) { @content }; //1800px + @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 5d051f7e..f1219566 100644 --- a/src/app/shared/theme/styles/root.scss +++ b/src/app/shared/theme/styles/root.scss @@ -48,7 +48,7 @@ body { } .sidenav { - width: $regular-sidenav-width; + width: $regular-sidenav-width !important; height: 100%; overflow: hidden !important; } @@ -1127,6 +1127,28 @@ mat-card-content.mat-mdc-card-content:first-child { border-radius: 2px; } +.currency-icon { + &.currency-icon-small { + max-width: $gap * 1.675; + max-height: $gap * 1.675; + } + + &.currency-icon-medium { + max-width: $gap * 2; + max-height: $gap * 2; + } + + &.currency-icon-large { + max-width: $gap * 2.25; + max-height: $gap * 2.25; + } + + &.currency-icon-x-large { + max-width: $gap * 2.5; + max-height: $gap * 2.5; + } +} + .fa-icon-small, .top-icon-small { min-width: $fa-icon-small-size; svg { @@ -1451,6 +1473,10 @@ mat-cell:last-of-type, .mdc-data-table__header-cell:last-of-type, mat-footer-cel padding: ($gap*1.25) ($gap*1.25) ($gap*1.25) $gap !important; } +.mat-vertical-stepper-content { + margin: 0 $gap; +} + .ellipsis-child { flex: 1; white-space: nowrap; diff --git a/src/app/shared/theme/styles/theme-color.scss b/src/app/shared/theme/styles/theme-color.scss index b6fd489a..ed3f8828 100644 --- a/src/app/shared/theme/styles/theme-color.scss +++ b/src/app/shared/theme/styles/theme-color.scss @@ -46,7 +46,7 @@ white-space: pre-line; overflow-wrap: break-word; word-break: break-all; - min-height: ($gap*3); + min-height: ($gap*3); } .foreground.mat-progress-spinner circle, .foreground.mat-spinner circle { @@ -304,13 +304,11 @@ .tab-badge { & .mat-badge-content { - width: auto; - min-width: $badge-size; - height: $badge-size; - line-height: $badge-size * 1.1; - border-radius: $badge-size * 1.2; - padding: math.div($gap, 2); - overflow: visible; + font-size: 90%; + padding-bottom: 2px; + &.mat-badge-active { + background: $primary-color; + } } } @@ -507,6 +505,33 @@ border-bottom: 1px solid $foreground-divider; margin-bottom: $gap; } + + .mat-mdc-option.mdc-list-item:hover, .mat-mdc-option.mdc-list-item.mat-mdc-option-active { + fa-icon svg path { + fill: $primary-color; + } + & .currency-icon { + color: $primary-color; + & path { + fill: $primary-color; + } + } + } + + .mat-mdc-form-field-hint .currency-icon { + color: $primary-color; + & path { + fill: $primary-color; + } + } + + .fa-icon-primary { + color: $primary-color; + &:hover { + cursor: pointer; + @include mat.elevation(4); + } + } ngx-charts-bar-vertical, ngx-charts-bar-vertical-2d { & text { diff --git a/src/app/shared/theme/styles/theme-mode-dark.scss b/src/app/shared/theme/styles/theme-mode-dark.scss index 69d05ae1..695d2a69 100644 --- a/src/app/shared/theme/styles/theme-mode-dark.scss +++ b/src/app/shared/theme/styles/theme-mode-dark.scss @@ -55,14 +55,16 @@ color: $primary-darker; & .tab-badge .mat-badge-content { background: $primary-darker; - } + } } & .tab-badge .mat-badge-content { color: $dark-card-background-color; background: $foreground-secondary-text; - } + } + } + .currency-icon path, .currency-icon polygon { + fill: $foreground-text; } - .rtl-snack-bar.mat-mdc-snack-bar-container { max-width: 90vw !important; font-weight: 700; @@ -220,9 +222,12 @@ & .ng-fa-icon, & .mat-icon { color: $primary-darker; } - & .sidenav-img svg { + & .sidenav-img svg, & .boltz-icon-fill { fill: $primary-darker; } + & .boltz-icon { + stroke: $primary-darker; + } } .mat-tree-node .sidenav-img, .mat-nested-tree-node .sidenav-img, .mat-nested-tree-node-parent .sidenav-img, .page-title-container .page-title-img, svg.top-icon-small { diff --git a/src/app/shared/theme/styles/theme-mode-light.scss b/src/app/shared/theme/styles/theme-mode-light.scss index 5dbc504a..76802ae8 100644 --- a/src/app/shared/theme/styles/theme-mode-light.scss +++ b/src/app/shared/theme/styles/theme-mode-light.scss @@ -125,17 +125,13 @@ color: $background-color; } - .mdc-tab__text-label { - &.mdc-tab__text-label-active { - color: $primary-color; - & .tab-badge .mat-badge-content { - background: $primary-color; - } - } - & .tab-badge .mat-badge-content { - background: $foreground-secondary-text; - } - } + // .mdc-tab__text-label { + // color: $primary-color; + // .mat-badge-content.mat-badge-active { + // background: $primary-color; + // } + // } + .ng-fa-icon, .mat-nested-tree-node-parent .mat-icon, .mat-form-field-suffix { color: $foreground-secondary-text; } @@ -231,6 +227,15 @@ .mat-expansion-panel.flat-expansion-panel { border: 1px solid $foreground-divider; } + .mat-mdc-form-field-hint { + color: $primary-color; + .currency-icon path, .currency-icon polygon, fa-icon svg path { + fill: $primary-color; + } + } + .currency-icon path, .currency-icon polygon { + fill: $foreground-secondary-text; + } svg { & .boltz-icon { stroke:$foreground-secondary-text; stroke-width:4; } & .boltz-icon-fill { fill: $foreground-secondary-text; } diff --git a/src/app/store/rtl.actions.ts b/src/app/store/rtl.actions.ts index 9861c9fa..f1a5a4bf 100644 --- a/src/app/store/rtl.actions.ts +++ b/src/app/store/rtl.actions.ts @@ -2,8 +2,8 @@ import { createAction, props } from '@ngrx/store'; import { DialogConfig } from '../shared/models/alertData'; import { ApiCallStatusPayload } from '../shared/models/apiCallsPayload'; -import { RTLConfiguration, ConfigSettingsNode, GetInfoRoot, SSO } from '../shared/models/RTLconfig'; -import { FetchFile, Login, OpenSnackBar, ResetPassword, SaveSettings, SetSelectedNode, UpdateServiceSetting, VerifyTwoFA } from '../shared/models/rtlModels'; +import { RTLConfiguration, Node, GetInfoRoot } from '../shared/models/RTLconfig'; +import { FetchFile, Login, OpenSnackBar, ResetPassword, UpdateSelectedNode, VerifyTwoFA } from '../shared/models/rtlModels'; import { RTLActions } from '../shared/services/consts-enums-functions'; export const voidAction = createAction(RTLActions.VOID); @@ -34,29 +34,23 @@ export const fetchConfig = createAction(RTLActions.FETCH_CONFIG, props<{ payload export const showConfig = createAction(RTLActions.SHOW_CONFIG, props<{ payload: any }>()); -export const updateSelectedNodeOptions = createAction(RTLActions.UPDATE_SELECTED_NODE_OPTIONS); +export const resetRootStore = createAction(RTLActions.RESET_ROOT_STORE, props<{ payload: Node }>()); -export const resetRootStore = createAction(RTLActions.RESET_ROOT_STORE, props<{ payload: ConfigSettingsNode }>()); +export const fetchRTLConfig = createAction(RTLActions.FETCH_APPLICATION_SETTINGS); -export const fetchRTLConfig = createAction(RTLActions.FETCH_RTL_CONFIG); +export const setApplicationSettings = createAction(RTLActions.SET_APPLICATION_SETTINGS, props<{ payload: RTLConfiguration }>()); -export const setRTLConfig = createAction(RTLActions.SET_RTL_CONFIG, props<{ payload: RTLConfiguration }>()); +export const setSelectedNode = createAction(RTLActions.SET_SELECTED_NODE, props<{ payload: UpdateSelectedNode }>()); -export const saveSettings = createAction(RTLActions.SAVE_SETTINGS, props<{ payload: SaveSettings }>()); +export const updateNodeSettings = createAction(RTLActions.UPDATE_NODE_SETTINGS, props<{ payload: Node }>()); -export const twoFASaveSettings = createAction(RTLActions.TWO_FA_SAVE_SETTINGS, props<{ payload: { secret2fa: string } }>()); +export const setSelectedNodeSettings = createAction(RTLActions.SET_SELECTED_NODE_SETTINGS, props<{ payload: Node }>()); -export const setSelectedNode = createAction(RTLActions.SET_SELECTED_NODE, props<{ payload: SetSelectedNode }>()); - -export const updateRootNodeSettings = createAction(RTLActions.UPDATE_ROOT_NODE_SETTINGS, props<{ payload: UpdateServiceSetting }>()); - -export const updateServiceSettings = createAction(RTLActions.UPDATE_SERVICE_SETTINGS, props<{ payload: UpdateServiceSetting }>()); +export const updateApplicationSettings = createAction(RTLActions.UPDATE_APPLICATION_SETTINGS, props<{ payload: { showSnackBar: boolean, message: string, config: RTLConfiguration } }>()); export const setNodeData = createAction(RTLActions.SET_NODE_DATA, props<{ payload: GetInfoRoot }>()); -export const saveSSO = createAction(RTLActions.SAVE_SSO, props<{ payload: SSO }>()); - -export const logout = createAction(RTLActions.LOGOUT); +export const logout = createAction(RTLActions.LOGOUT, props<{ payload: string }>()); export const resetPassword = createAction(RTLActions.RESET_PASSWORD, props<{ payload: ResetPassword }>()); diff --git a/src/app/store/rtl.effects.spec.ts b/src/app/store/rtl.effects.spec.ts index eb406c21..2e0f498a 100644 --- a/src/app/store/rtl.effects.spec.ts +++ b/src/app/store/rtl.effects.spec.ts @@ -87,10 +87,10 @@ describe('RTL Root Effects', () => { expect(storeDispatchSpy.calls.all()[1].args[0]).toEqual(updateRootAPICallStatus({ payload: { action: 'UpdateSelNode', status: APICallStatusEnum.INITIATED } })); expect(storeDispatchSpy.calls.all()[2].args[0]).toEqual(updateRootAPICallStatus({ payload: { action: 'UpdateSelNode', status: APICallStatusEnum.COMPLETED } })); expect(storeDispatchSpy.calls.all()[3].args[0]).toEqual(closeSpinner({ payload: UI_MESSAGES.UPDATE_SELECTED_NODE })); - expect(storeDispatchSpy.calls.all()[4].args[0]).toEqual(resetRootStore({ payload: mockActionsData.resetRootStore })); - expect(storeDispatchSpy.calls.all()[5].args[0]).toEqual(resetLNDStore({ payload: mockActionsData.resetChildrenStores })); - expect(storeDispatchSpy.calls.all()[6].args[0]).toEqual(resetCLNStore({ payload: mockActionsData.resetChildrenStores })); - expect(storeDispatchSpy.calls.all()[7].args[0]).toEqual(resetECLStore({ payload: mockActionsData.resetChildrenStores })); + expect(storeDispatchSpy.calls.all()[4].args[0]).toEqual(resetRootStore({ payload: mockActionsData.setSelectedNode })); + expect(storeDispatchSpy.calls.all()[5].args[0]).toEqual(resetLNDStore()); + expect(storeDispatchSpy.calls.all()[6].args[0]).toEqual(resetCLNStore()); + expect(storeDispatchSpy.calls.all()[7].args[0]).toEqual(resetECLStore()); expect(storeDispatchSpy.calls.all()[8].args[0]).toEqual(fetchPageSettingsLND()); expect(storeDispatchSpy.calls.all()[9].args[0]).toEqual(fetchInfoLND({ payload: { loadPage: 'HOME' } })); expect(storeDispatchSpy).toHaveBeenCalledTimes(10); diff --git a/src/app/store/rtl.effects.ts b/src/app/store/rtl.effects.ts index 6598c5bf..a9072bce 100644 --- a/src/app/store/rtl.effects.ts +++ b/src/app/store/rtl.effects.ts @@ -3,7 +3,7 @@ import { HttpClient } from '@angular/common/http'; import { Router } from '@angular/router'; import { Store } from '@ngrx/store'; import { Actions, createEffect, ofType } from '@ngrx/effects'; -import { of, Subject, forkJoin, Observable } from 'rxjs'; +import { of, Subject } from 'rxjs'; import { map, mergeMap, catchError, take, withLatestFrom, takeUntil } from 'rxjs/operators'; import { MatDialog } from '@angular/material/dialog'; @@ -14,10 +14,10 @@ import { LoggerService } from '../shared/services/logger.service'; import { SessionService } from '../shared/services/session.service'; import { CommonService } from '../shared/services/common.service'; import { DataService } from '../shared/services/data.service'; -import { RTLConfiguration, Settings, ConfigSettingsNode, GetInfoRoot } from '../shared/models/RTLconfig'; +import { RTLConfiguration, Node, GetInfoRoot } from '../shared/models/RTLconfig'; import { API_URL, API_END_POINTS, RTLActions, APICallStatusEnum, AuthenticateWith, CURRENCY_UNITS, ScreenSizeEnum, UI_MESSAGES } from '../shared/services/consts-enums-functions'; import { DialogConfig } from '../shared/models/alertData'; -import { FetchFile, Login, OpenSnackBar, ResetPassword, SaveSettings, SetSelectedNode, UpdateServiceSetting, VerifyTwoFA } from '../shared/models/rtlModels'; +import { FetchFile, Login, OpenSnackBar, ResetPassword, UpdateSelectedNode, VerifyTwoFA } from '../shared/models/rtlModels'; import { SpinnerDialogComponent } from '../shared/components/data-modal/spinner-dialog/spinner-dialog.component'; import { AlertMessageComponent } from '../shared/components/data-modal/alert-message/alert-message.component'; @@ -26,7 +26,7 @@ import { ErrorMessageComponent } from '../shared/components/data-modal/error-mes import { ShowPubkeyComponent } from '../shared/components/data-modal/show-pubkey/show-pubkey.component'; import { RTLState } from './rtl.state'; -import { resetRootStore, setNodeData, setSelectedNode, updateRootAPICallStatus, closeSpinner, openAlert, openSpinner, openSnackBar, fetchRTLConfig, closeAllDialogs, logout, updateRootNodeSettings, setRTLConfig } from './rtl.actions'; +import { resetRootStore, setNodeData, setSelectedNode, updateRootAPICallStatus, closeSpinner, openAlert, openSpinner, openSnackBar, fetchRTLConfig, closeAllDialogs, logout, setSelectedNodeSettings } from './rtl.actions'; import { fetchInfoLND, resetLNDStore, fetchPageSettings as fetchPageSettingsLND } from '../lnd/store/lnd.actions'; import { fetchInfoCLN, resetCLNStore, fetchPageSettings as fetchPageSettingsCLN } from '../cln/store/cln.actions'; import { fetchInfoECL, resetECLStore, fetchPageSettings as fetchPageSettingsECL } from '../eclair/store/ecl.actions'; @@ -197,7 +197,7 @@ export class RTLEffects implements OnDestroy { appConfigFetch = createEffect( () => this.actions.pipe( - ofType(RTLActions.FETCH_RTL_CONFIG), + ofType(RTLActions.FETCH_APPLICATION_SETTINGS), mergeMap(() => { this.screenSize = this.commonService.getScreenSize(); if (this.screenSize === ScreenSizeEnum.XS || this.screenSize === ScreenSizeEnum.SM) { @@ -212,17 +212,13 @@ export class RTLEffects implements OnDestroy { } this.store.dispatch(openSpinner({ payload: UI_MESSAGES.GET_RTL_CONFIG })); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'FetchRTLConfig', status: APICallStatusEnum.INITIATED } })); - if (this.sessionService.getItem('token')) { - return this.httpClient.get(API_END_POINTS.CONF_API + '/rtlconf'); - } else { - return this.httpClient.get(API_END_POINTS.CONF_API + '/rtlconfinit'); - } + return this.httpClient.get(API_END_POINTS.CONF_API); }), map((rtlConfig: RTLConfiguration) => { this.logger.info(rtlConfig); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.GET_RTL_CONFIG })); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'FetchRTLConfig', status: APICallStatusEnum.COMPLETED } })); - let searchNode: ConfigSettingsNode | null = null; + let searchNode: Node | null = null; rtlConfig.nodes.forEach((node) => { node.settings.currencyUnits = [...CURRENCY_UNITS, (node.settings?.currencyUnit ? node.settings?.currencyUnit : '')]; if (+(node.index || -1) === rtlConfig.selectedNodeIndex) { @@ -232,7 +228,7 @@ export class RTLEffects implements OnDestroy { if (searchNode) { this.store.dispatch(setSelectedNode({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, prevLnNodeIndex: -1, currentLnNode: searchNode, isInitialSetup: true } })); return { - type: RTLActions.SET_RTL_CONFIG, + type: RTLActions.SET_APPLICATION_SETTINGS, payload: rtlConfig }; } else { @@ -247,83 +243,58 @@ export class RTLEffects implements OnDestroy { })) ); - settingSave = createEffect( + updateNodeSettings = createEffect( () => this.actions.pipe( - ofType(RTLActions.SAVE_SETTINGS), - mergeMap((action: { type: string, payload: SaveSettings }) => { - this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); - this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateSettings', status: APICallStatusEnum.INITIATED } })); - let updateSettingReq = new Observable(); - if (action.payload.settings && action.payload.defaultNodeIndex) { - const settingsRes = this.httpClient.post(API_END_POINTS.CONF_API, { updatedSettings: action.payload.settings }); - const defaultNodeRes = this.httpClient.post(API_END_POINTS.CONF_API + '/updateDefaultNode', { defaultNodeIndex: action.payload.defaultNodeIndex }); - updateSettingReq = forkJoin([settingsRes, defaultNodeRes]); - } else if (action.payload.settings && !action.payload.defaultNodeIndex) { - updateSettingReq = this.httpClient.post(API_END_POINTS.CONF_API, { updatedSettings: action.payload.settings }); - } else if (!action.payload.settings && action.payload.defaultNodeIndex) { - updateSettingReq = this.httpClient.post(API_END_POINTS.CONF_API + '/updateDefaultNode', { defaultNodeIndex: action.payload.defaultNodeIndex }); + ofType(RTLActions.UPDATE_NODE_SETTINGS), + mergeMap((action: { type: string, payload: Node }) => { + this.store.dispatch(openSpinner({ payload: UI_MESSAGES.UPDATE_NODE_SETTINGS })); + this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'updateNodeSettings', status: APICallStatusEnum.INITIATED } })); + if (!action.payload.settings.fiatConversion) { + delete action.payload.settings.currencyUnit; } - return updateSettingReq.pipe(map((updateStatus: any) => { - this.logger.info(updateStatus); - this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateSettings', status: APICallStatusEnum.COMPLETED } })); - this.store.dispatch(closeSpinner({ payload: action.payload.uiMessage })); - return { - type: RTLActions.OPEN_SNACK_BAR, - payload: (!updateStatus.length) ? updateStatus.message + '.' : updateStatus[0].message + '.' - }; - }), catchError((err) => { - this.handleErrorWithAlert('UpdateSettings', action.payload.uiMessage, 'Update Settings Failed!', API_END_POINTS.CONF_API, (!err.length) ? err : err[0]); - return of({ type: RTLActions.VOID }); - })); - })) - ); - - updateServicesettings = createEffect( - () => this.actions.pipe( - ofType(RTLActions.UPDATE_SERVICE_SETTINGS), - mergeMap((action: { type: string, payload: UpdateServiceSetting }) => { - this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); - this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateServiceSettings', status: APICallStatusEnum.INITIATED } })); - return this.httpClient.post(API_END_POINTS.CONF_API + '/updateServiceSettings', action.payload).pipe( - map((updateStatus: any) => { - this.logger.info(updateStatus); - this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateServiceSettings', status: APICallStatusEnum.COMPLETED } })); - this.store.dispatch(closeSpinner({ payload: action.payload.uiMessage })); - this.store.dispatch(updateRootNodeSettings({ payload: action.payload })); + delete action.payload.settings.currencyUnits; + return this.httpClient.post(API_END_POINTS.CONF_API + '/node', action.payload). + pipe(map((updatedNode: Node) => { + this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'updateNodeSettings', status: APICallStatusEnum.COMPLETED } })); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.UPDATE_NODE_SETTINGS })); + updatedNode.settings.currencyUnits = [...CURRENCY_UNITS, (updatedNode.settings?.currencyUnit ? updatedNode.settings?.currencyUnit : '')]; + this.store.dispatch(setSelectedNodeSettings({ payload: updatedNode })); return { type: RTLActions.OPEN_SNACK_BAR, - payload: updateStatus.message + '.' + payload: 'Node settings updated successfully!' }; - }), - catchError((err) => { - this.handleErrorWithAlert('UpdateServiceSettings', action.payload.uiMessage, 'Update Service Settings Failed!', API_END_POINTS.CONF_API, err); + }), catchError((err: any) => { + this.handleErrorWithAlert('updateNodeSettings', UI_MESSAGES.UPDATE_NODE_SETTINGS, 'Update Node Settings Failed!', API_END_POINTS.CONF_API + '/node', err); return of({ type: RTLActions.VOID }); - }) - ); + })); })) ); - twoFASettingSave = createEffect( + updateApplicationSettings = createEffect( () => this.actions.pipe( - ofType(RTLActions.TWO_FA_SAVE_SETTINGS), - mergeMap((action: { type: string, payload: { secret2fa: string } }) => { - this.store.dispatch(openSpinner({ payload: UI_MESSAGES.UPDATE_UI_SETTINGS })); - this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'Update2FASettings', status: APICallStatusEnum.INITIATED } })); - return this.httpClient.post(API_END_POINTS.CONF_API + '/update2FA', { secret2fa: action.payload.secret2fa }); - }), - withLatestFrom(this.store.select(rootAppConfig)), - map(([updateStatus, appConfig]: [any, RTLConfiguration]) => { - this.logger.info(updateStatus); - appConfig.enable2FA = !appConfig.enable2FA; - this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'Update2FASettings', status: APICallStatusEnum.COMPLETED } })); - this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.UPDATE_UI_SETTINGS })); - this.store.dispatch(setRTLConfig({ payload: appConfig })); - }), - catchError((err) => { - this.handleErrorWithAlert('Update2FASettings', UI_MESSAGES.UPDATE_UI_SETTINGS, 'Update 2FA Settings Failed!', API_END_POINTS.CONF_API, err); - return of({ type: RTLActions.VOID }); - })), - { dispatch: false } + ofType(RTLActions.UPDATE_APPLICATION_SETTINGS), + mergeMap((action: { type: string, payload: { showSnackBar: boolean, message: string, config: RTLConfiguration } }) => { + this.store.dispatch(openSpinner({ payload: UI_MESSAGES.UPDATE_APPLICATION_SETTINGS })); + this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'updateApplicationSettings', status: APICallStatusEnum.INITIATED } })); + action.payload.config.nodes.forEach((node) => { + delete node.settings.currencyUnits; + }); + return this.httpClient.post(API_END_POINTS.CONF_API + '/application', action.payload.config). + pipe(map((appConfig: RTLConfiguration) => { + this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'updateApplicationSettings', status: APICallStatusEnum.COMPLETED } })); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.UPDATE_APPLICATION_SETTINGS })); + if (action.payload.showSnackBar) { + this.store.dispatch(openSnackBar({ payload: action.payload.message })); + } + return { + type: RTLActions.SET_APPLICATION_SETTINGS, + payload: appConfig + }; + }), catchError((err: any) => { + this.handleErrorWithAlert('updateApplicationSettings', UI_MESSAGES.UPDATE_APPLICATION_SETTINGS, 'Update Application Settings Failed!', API_END_POINTS.CONF_API + '/application', err); + return of({ type: RTLActions.VOID }); + })); + })) ); configFetch = createEffect( @@ -392,9 +363,9 @@ export class RTLEffects implements OnDestroy { ofType(RTLActions.LOGIN), withLatestFrom(this.store.select(rootAppConfig)), mergeMap(([action, appConfig]: [{ type: string, payload: Login }, RTLConfiguration]) => { - this.store.dispatch(resetLNDStore({ payload: null })); - this.store.dispatch(resetCLNStore({ payload: null })); - this.store.dispatch(resetECLStore({ payload: null })); + this.store.dispatch(resetLNDStore()); + this.store.dispatch(resetCLNStore()); + this.store.dispatch(resetECLStore()); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'Login', status: APICallStatusEnum.INITIATED } })); return this.httpClient.post(API_END_POINTS.AUTHENTICATE_API, { authenticateWith: (!action.payload.password) ? AuthenticateWith.JWT : AuthenticateWith.PASSWORD, @@ -409,10 +380,10 @@ export class RTLEffects implements OnDestroy { catchError((err) => { this.logger.info('Redirecting to Login Error Page'); this.handleErrorWithoutAlert('Login', UI_MESSAGES.NO_SPINNER, err); - if (+appConfig.sso.rtlSSO) { + if (+appConfig.SSO.rtlSSO) { this.router.navigate(['/error'], { state: { errorCode: '406', errorMessage: err.error && err.error.error ? err.error.error : 'Single Sign On Failed!' } }); } else { - this.router.navigate(['./login']); + this.router.navigate(['./login'], { state: { logoutReason: err.error && err.error.error ? err.error.error : 'Single Sign On Failed!' } }); } return of({ type: RTLActions.VOID }); })); @@ -447,12 +418,13 @@ export class RTLEffects implements OnDestroy { logOut = createEffect( () => this.actions.pipe( ofType(RTLActions.LOGOUT), - mergeMap((appConfig: RTLConfiguration) => { + withLatestFrom(this.store.select(rootAppConfig)), + mergeMap(([action, appConfig]: [{ type: string, payload: string }, RTLConfiguration]) => { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.LOG_OUT })); - if (appConfig.sso && +appConfig.sso.rtlSSO) { - window.location.href = appConfig.sso.logoutRedirectLink; + if (appConfig.SSO && +appConfig.SSO.rtlSSO) { + window.location.href = appConfig.SSO.logoutRedirectLink; } else { - this.router.navigate(['./login']); + this.router.navigate(['./login'], { state: { logoutReason: action.payload } }); } this.sessionService.clearAll(); this.store.dispatch(setNodeData({ payload: {} })); @@ -497,7 +469,7 @@ export class RTLEffects implements OnDestroy { setSelectedNode = createEffect( () => this.actions.pipe( ofType(RTLActions.SET_SELECTED_NODE), - mergeMap((action: { type: string, payload: SetSelectedNode }) => { + mergeMap((action: { type: string, payload: UpdateSelectedNode }) => { this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'UpdateSelNode', status: APICallStatusEnum.INITIATED } })); return this.httpClient.get(API_END_POINTS.CONF_API + '/updateSelNode/' + action.payload.currentLnNode?.index + '/' + action.payload.prevLnNodeIndex).pipe( @@ -505,7 +477,7 @@ export class RTLEffects implements OnDestroy { 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(postRes, action.payload.isInitialSetup); return { type: RTLActions.VOID }; }), catchError((err: any) => { @@ -547,22 +519,17 @@ export class RTLEffects implements OnDestroy { { dispatch: false } ); - initializeNode(node: ConfigSettingsNode, isInitialSetup: boolean) { + initializeNode(node: Node, isInitialSetup: boolean) { this.logger.info('Initializing node from RTL Effects.'); const landingPage = isInitialSetup ? '' : 'HOME'; - 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['currencyUnits'] = [...CURRENCY_UNITS, node.settings.currencyUnit]; - } this.sessionService.removeItem('lndUnlocked'); this.sessionService.removeItem('clnUnlocked'); this.sessionService.removeItem('eclUnlocked'); + node.settings.currencyUnits = [...CURRENCY_UNITS, (node.settings?.currencyUnit ? node.settings?.currencyUnit : '')]; this.store.dispatch(resetRootStore({ payload: node })); - this.store.dispatch(resetLNDStore({ payload: selNode })); - this.store.dispatch(resetCLNStore({ payload: selNode })); - this.store.dispatch(resetECLStore({ payload: selNode })); + this.store.dispatch(resetLNDStore()); + this.store.dispatch(resetCLNStore()); + this.store.dispatch(resetECLStore()); if (this.sessionService.getItem('token')) { const nodeLnImplementation = node.lnImplementation ? node.lnImplementation.toUpperCase() : 'LND'; this.dataService.setLnImplementation(nodeLnImplementation); @@ -614,8 +581,7 @@ export class RTLEffects implements OnDestroy { if (err.status === 401 && actionName !== 'Login') { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); this.store.dispatch(updateRootAPICallStatus({ payload: { action: actionName, status: APICallStatusEnum.ERROR, statusCode: err.status ? err.status.toString() : '', message: this.commonService.extractErrorMessage(err) } })); @@ -630,8 +596,7 @@ export class RTLEffects implements OnDestroy { if (err.status === 401 && actionName !== 'Login') { this.logger.info('Redirecting to Login'); this.store.dispatch(closeAllDialogs()); - this.store.dispatch(logout()); - this.store.dispatch(openSnackBar({ payload: 'Authentication Failed. Redirecting to Login.' })); + this.store.dispatch(logout({ payload: 'Authentication Failed: ' + JSON.stringify(err.error) })); } else { this.store.dispatch(closeSpinner({ payload: uiMessage })); const errMsg = this.commonService.extractErrorMessage(err); diff --git a/src/app/store/rtl.reducers.spec.ts b/src/app/store/rtl.reducers.spec.ts index bfea3477..632ccebd 100644 --- a/src/app/store/rtl.reducers.spec.ts +++ b/src/app/store/rtl.reducers.spec.ts @@ -1,9 +1,8 @@ import { mockActionsData } from '../shared/test-helpers/test-data'; -import { UI_MESSAGES } from '../shared/services/consts-enums-functions'; import { initRootState } from './rtl.state'; import { RootReducer } from './rtl.reducers'; -import { setSelectedNode } from './rtl.actions'; +import { resetRootStore } from './rtl.actions'; describe('RTL reducer', () => { describe('default action', () => { @@ -13,10 +12,10 @@ describe('RTL reducer', () => { }); }); - describe('Action SetSelectedNode', () => { - it('should set selected node', () => { - const SetSelectedNodeAction = setSelectedNode({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, prevLnNodeIndex: -1, currentLnNode: mockActionsData.setSelectedNode, isInitialSetup: false } }); - const newState = RootReducer(initRootState, SetSelectedNodeAction); + describe('Action Reset Root Store', () => { + it('should reset root store with new setup', () => { + const ResetRootStoreAction = resetRootStore({ payload: mockActionsData.setSelectedNode }); + const newState = RootReducer(initRootState, ResetRootStoreAction); expect(newState.selNode.settings.themeMode).toBe('NIGHT'); expect(newState.selNode.settings.themeColor).toBe('TEAL'); diff --git a/src/app/store/rtl.reducers.ts b/src/app/store/rtl.reducers.ts index 20d94fc5..36d8a5ea 100644 --- a/src/app/store/rtl.reducers.ts +++ b/src/app/store/rtl.reducers.ts @@ -1,9 +1,7 @@ import { createReducer, on } from '@ngrx/store'; import { initRootState } from './rtl.state'; -import { resetRootStore, setNodeData, setRTLConfig, setSelectedNode, updateRootAPICallStatus, updateRootNodeSettings } from './rtl.actions'; -import { ServicesEnum } from '../shared/services/consts-enums-functions'; -import { ConfigSettingsNode } from '../shared/models/RTLconfig'; +import { resetRootStore, setNodeData, setApplicationSettings, setSelectedNodeSettings, updateRootAPICallStatus } from './rtl.actions'; export const RootReducer = createReducer(initRootState, on(updateRootAPICallStatus, (state, { payload }) => { @@ -28,39 +26,15 @@ export const RootReducer = createReducer(initRootState, appConfig: state.appConfig, selNode: payload })), - on(setSelectedNode, (state, { payload }) => ({ + on(setSelectedNodeSettings, (state, { payload }) => ({ ...state, - selNode: payload.currentLnNode + selNode: payload })), - on(updateRootNodeSettings, (state, { payload }) => { - const updatedSelNode: ConfigSettingsNode = JSON.parse(JSON.stringify(state.selNode)); - switch (payload.service) { - case ServicesEnum.BOLTZ: - updatedSelNode.settings.boltzServerUrl = payload.settings.boltzServerUrl; - break; - case ServicesEnum.LOOP: - updatedSelNode.settings.swapServerUrl = payload.settings.swapServerUrl; - break; - case ServicesEnum.OFFERS: - updatedSelNode.settings.enableOffers = payload.settings.enableOffers; - break; - case ServicesEnum.PEERSWAP: - updatedSelNode.settings.enablePeerswap = payload.settings.enablePeerswap; - break; - - default: - break; - } - return { - ...state, - selNode: updatedSelNode - }; - }), on(setNodeData, (state, { payload }) => ({ ...state, nodeData: payload })), - on(setRTLConfig, (state, { payload }) => ({ + on(setApplicationSettings, (state, { payload }) => ({ ...state, appConfig: payload })) diff --git a/src/app/store/rtl.state.ts b/src/app/store/rtl.state.ts index 1dd9c393..02255b8a 100644 --- a/src/app/store/rtl.state.ts +++ b/src/app/store/rtl.state.ts @@ -1,6 +1,6 @@ import { ApiCallsListRoot } from '../shared/models/apiCallsPayload'; -import { APICallStatusEnum } from '../shared/services/consts-enums-functions'; -import { RTLConfiguration, ConfigSettingsNode, GetInfoRoot } from '../shared/models/RTLconfig'; +import { APICallStatusEnum, UserPersonaEnum } from '../shared/services/consts-enums-functions'; +import { RTLConfiguration, Node, GetInfoRoot, Settings, Authentication } from '../shared/models/RTLconfig'; import { LNDState } from '../lnd/store/lnd.state'; import { CLNState } from '../cln/store/cln.state'; @@ -9,13 +9,16 @@ import { ECLState } from '../eclair/store/ecl.state'; export interface RootState { apiURL: string; apisCallStatus: ApiCallsListRoot; - selNode: ConfigSettingsNode | any; + selNode: Node | any; appConfig: RTLConfiguration; nodeData: GetInfoRoot; } -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: '' }; +const initNodeSettings: Settings = { userPersona: UserPersonaEnum.OPERATOR, themeMode: 'DAY', themeColor: 'PURPLE', + channelBackupPath: '', selCurrencyUnit: 'USD', unannouncedChannels: false, fiatConversion: false, + currencyUnits: ['Sats', 'BTC', 'USD'], bitcoindConfigPath: '', enableOffers: false, enablePeerswap: false, + logLevel: 'ERROR', lnServerUrl: '', swapServerUrl: '', boltzServerUrl: '', currencyUnit: 'USD', blockExplorerUrl: 'https://mempool.space' }; +const initNodeAuthentication: Authentication = { configPath: '', swapMacaroonPath: '', boltzMacaroonPath: '' }; export const initRootState: RootState = { apiURL: '', @@ -24,8 +27,9 @@ export const initRootState: RootState = { appConfig: { defaultNodeIndex: -1, selectedNodeIndex: -1, - sso: { rtlSSO: 0, logoutRedirectLink: '' }, + SSO: { rtlSSO: 0, logoutRedirectLink: '' }, enable2FA: false, + secret2FA: '', allowPasswordUpdate: true, nodes: [{ settings: initNodeSettings, authentication: initNodeAuthentication }] }, diff --git a/src/index.html b/src/index.html index 12d53dc0..9bc7b5bf 100644 --- a/src/index.html +++ b/src/index.html @@ -14,6 +14,6 @@ - + diff --git a/src/polyfills.ts b/src/polyfills.ts index 5188c8c0..a33e7723 100644 --- a/src/polyfills.ts +++ b/src/polyfills.ts @@ -1,2 +1,3 @@ window.global = window; window.global.Buffer = window.global.Buffer || require('buffer').Buffer; +window.global.process = window.global.process || require('process'); diff --git a/tsconfig.json b/tsconfig.json index 6af8d4ce..1ea81f1a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,7 +28,9 @@ ], "paths": { "crypto": ["node_modules/crypto-browserify"], - "stream": ["node_modules/stream-browserify"] + "stream": ["node_modules/stream-browserify"], + "vm": ["node_modules/vm-browserify"], + "process": ["node_modules/process/browser"] } }, "include": [